
    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_1e15e45ebaee5a6219adbaad.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_bb341ea290bcac2842d1dd52.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:0.727539;font-style:normal;font-weight:normal;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_6051de5170d6181b5fde3085.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00000;src:url('chunks/assets/font_d1671e75fc271393ade624df.woff2')format("woff");}.ff4_c00000{font-family:ff4_c00000;line-height:0.727539;font-style:normal;font-weight:normal;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_6eda3a3922709ff5fec7ff54.woff2')format("woff");}.ff5_c00000{font-family:ff5_c00000;line-height:0.727539;font-style:normal;font-weight:normal;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_867a27794672fc4dc4b43398.woff2')format("woff");}.ff6_c00000{font-family:ff6_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:ff7_c00000;src:url('chunks/assets/font_57d4788294051f9dc2e1a503.woff2')format("woff");}.ff7_c00000{font-family:ff7_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:ff8_c00000;src:url('chunks/assets/font_9512769b6b0de8509a7aa7f0.woff2')format("woff");}.ff8_c00000{font-family:ff8_c00000;line-height:1.201660;font-style:normal;font-weight: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_3397bfd887db8282aa54d2fe.woff2')format("woff");}.ff9_c00000{font-family:ff9_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:ffa_c00000;src:url('chunks/assets/font_6a2f978836d2cb0c530a759e.woff2')format("woff");}.ffa_c00000{font-family:ffa_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:ffb_c00000;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffb_c00000{font-family:ffb_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:ffc_c00000;src:url('chunks/assets/font_2e17d060b76dc616e58f50da.woff2')format("woff");}.ffc_c00000{font-family:ffc_c00000;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00000;src:url('chunks/assets/font_277003a5b701ba137de11b91.woff2')format("woff");}.ffd_c00000{font-family:ffd_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:ffe_c00000;src:url('chunks/assets/font_dc73e8d1ef0fd2ef598d428a.woff2')format("woff");}.ffe_c00000{font-family:ffe_c00000;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00000;src:url('chunks/assets/font_2e33ac3b87600674ed8bc58c.woff2')format("woff");}.fff_c00000{font-family:fff_c00000;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00000;src:url('chunks/assets/font_798d6417da79ff7323b5491f.woff2')format("woff");}.ff10_c00000{font-family:ff10_c00000;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00000;src:url('chunks/assets/font_e99370aaa6c82f6aec6054c5.woff2')format("woff");}.ff11_c00000{font-family:ff11_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:ff12_c00000;src:url('chunks/assets/font_773fcf8453559d0922532cfc.woff2')format("woff");}.ff12_c00000{font-family:ff12_c00000;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00000;src:url('chunks/assets/font_855a0fccb9076300ca68085a.woff2')format("woff");}.ff13_c00000{font-family:ff13_c00000;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00000;src:url('chunks/assets/font_b20c1ce5b961eba9c4574954.woff2')format("woff");}.ff14_c00000{font-family:ff14_c00000;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00000;src:url('chunks/assets/font_88d9b21216ef2b2795bee1cd.woff2')format("woff");}.ff15_c00000{font-family:ff15_c00000;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00000;src:url('chunks/assets/font_a3c4ace4409a4cf0e6db4b66.woff2')format("woff");}.ff16_c00000{font-family:ff16_c00000;line-height:0.933594;font-style:normal;font-weight: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_cd5a44a71ebf835d9cde1b01.woff2')format("woff");}.ff17_c00000{font-family:ff17_c00000;line-height:0.813965;font-style:normal;font-weight: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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff18_c00000{font-family:ff18_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:ff19_c00000;src:url('chunks/assets/font_76a40b682af9cea6c1c10540.woff2')format("woff");}.ff19_c00000{font-family:ff19_c00000;line-height:0.055000;font-style:normal;font-weight: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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff1a_c00000{font-family:ff1a_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:ff1b_c00000;src:url('chunks/assets/font_47f99b187997ff3224968b54.woff2')format("woff");}.ff1b_c00000{font-family:ff1b_c00000;line-height:0.688965;font-style:normal;font-weight: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_54e3fdac707588845479b79d.woff2')format("woff");}.ff1c_c00000{font-family:ff1c_c00000;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00000;src:url('chunks/assets/font_d5ea3925d6f3ad4b55ed8359.woff2')format("woff");}.ff1d_c00000{font-family:ff1d_c00000;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00000;src:url('chunks/assets/font_c241a5ce0d09e6e95f31d063.woff2')format("woff");}.ff1e_c00000{font-family:ff1e_c00000;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00000;src:url('chunks/assets/font_813fd8203405088cc84e8fd7.woff2')format("woff");}.ff1f_c00000{font-family:ff1f_c00000;line-height:0.813965;font-style:normal;font-weight: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_9b2ef2c314906cfeee78dcf1.woff2')format("woff");}.ff20_c00000{font-family:ff20_c00000;line-height:0.933594;font-style:normal;font-weight: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_40de50d28d8d90667f1ac259.woff2')format("woff");}.ff21_c00000{font-family:ff21_c00000;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00000;src:url('chunks/assets/font_7840e885043772a40112a045.woff2')format("woff");}.ff22_c00000{font-family:ff22_c00000;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00000;src:url('chunks/assets/font_89b3e77113c480301fe27f07.woff2')format("woff");}.ff23_c00000{font-family:ff23_c00000;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00000;src:url('chunks/assets/font_7b702afdadaaa86123a5bc23.woff2')format("woff");}.ff24_c00000{font-family:ff24_c00000;line-height:0.688965;font-style:normal;font-weight: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_cd5a44a71ebf835d9cde1b01.woff2')format("woff");}.ff25_c00000{font-family:ff25_c00000;line-height:0.813965;font-style:normal;font-weight: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_790f33ee2af1f2f461f9e460.woff2')format("woff");}.ff26_c00000{font-family:ff26_c00000;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00000;src:url('chunks/assets/font_ba6ad5506d75f0a0f912b6fb.woff2')format("woff");}.ff27_c00000{font-family:ff27_c00000;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00000;src:url('chunks/assets/font_e35f8ca9bfd8c0616db02700.woff2')format("woff");}.ff28_c00000{font-family:ff28_c00000;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00000;src:url('chunks/assets/font_bf64257054192426d2da9b54.woff2')format("woff");}.ff29_c00000{font-family:ff29_c00000;line-height:0.688965;font-style:normal;font-weight: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_998bcafb4b501056354328db.woff2')format("woff");}.ff2a_c00000{font-family:ff2a_c00000;line-height:0.813965;font-style:normal;font-weight: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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff2b_c00000{font-family:ff2b_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:ff2c_c00000;src:url('chunks/assets/font_2c0a2e6a612e7963227d1856.woff2')format("woff");}.ff2c_c00000{font-family:ff2c_c00000;line-height:0.933594;font-style:normal;font-weight: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_62fc3ec9fb13951c596e48d7.woff2')format("woff");}.ff2d_c00000{font-family:ff2d_c00000;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00000;src:url('chunks/assets/font_558f2cb02d00749bc749717f.woff2')format("woff");}.ff2e_c00000{font-family:ff2e_c00000;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00000;src:url('chunks/assets/font_5bf80019972f6b2556cf0cfa.woff2')format("woff");}.ff2f_c00000{font-family:ff2f_c00000;line-height:0.933594;font-style:normal;font-weight: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_d20a6f9e9a85b83f6e45a05c.woff2')format("woff");}.ff30_c00000{font-family:ff30_c00000;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00000;src:url('chunks/assets/font_47f99b187997ff3224968b54.woff2')format("woff");}.ff31_c00000{font-family:ff31_c00000;line-height:0.688965;font-style:normal;font-weight: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_b7605fc8e307a97ae359df89.woff2')format("woff");}.ff32_c00000{font-family:ff32_c00000;line-height:0.813965;font-style:normal;font-weight: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_b93a2863bcd36db2844fd460.woff2')format("woff");}.ff33_c00000{font-family:ff33_c00000;line-height:0.055000;font-style:normal;font-weight: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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff34_c00000{font-family:ff34_c00000;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00000;src:url('chunks/assets/font_d7df6d04db5b723e724f8765.woff2')format("woff");}.ff35_c00000{font-family:ff35_c00000;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00000;src:url('chunks/assets/font_1badb64b6e1d41b2710da9fd.woff2')format("woff");}.ff36_c00000{font-family:ff36_c00000;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00000;src:url('chunks/assets/font_cb7eaf719a851da340eab790.woff2')format("woff");}.ff37_c00000{font-family:ff37_c00000;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00000;src:url('chunks/assets/font_cd5a44a71ebf835d9cde1b01.woff2')format("woff");}.ff38_c00000{font-family:ff38_c00000;line-height:0.813965;font-style:normal;font-weight: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_47f99b187997ff3224968b54.woff2')format("woff");}.ff39_c00000{font-family:ff39_c00000;line-height:0.688965;font-style:normal;font-weight: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_7bead9cb968633965bf2cac4.woff2')format("woff");}.ff3a_c00000{font-family:ff3a_c00000;line-height:0.933594;font-style:normal;font-weight: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_7dea381360d7e72512066d3d.woff2')format("woff");}.ff3b_c00000{font-family:ff3b_c00000;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c_c00000;src:url('chunks/assets/font_f267d1ec23e08da122ff0d5d.woff2')format("woff");}.ff3c_c00000{font-family:ff3c_c00000;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d_c00000;src:url('chunks/assets/font_16e0372c4e296c1191301398.woff2')format("woff");}.ff3d_c00000{font-family:ff3d_c00000;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00000{transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);}
.m4_c00000{transform:matrix(0.157304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157304,0.000000,0.000000,0.250000,0,0);}
.m3_c00000{transform:matrix(0.199983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199983,0.000000,0.000000,0.250000,0,0);}
.m1_c00000{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6_c00000{transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);}
.m5_c00000{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);}
.m0_c00000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4_c00000{vertical-align:-192.968136px;}
.v3_c00000{vertical-align:-124.200000px;}
.v2_c00000{vertical-align:-121.320000px;}
.v1_c00000{vertical-align:-93.600000px;}
.v7_c00000{vertical-align:-33.120000px;}
.v9_c00000{vertical-align:-29.880600px;}
.v6_c00000{vertical-align:-27.000000px;}
.v0_c00000{vertical-align:0.000000px;}
.v8_c00000{vertical-align:29.871108px;}
.v5_c00000{vertical-align:33.120000px;}
.ls163_c00000{letter-spacing:-2.160000px;}
.ls168_c00000{letter-spacing:-2.152800px;}
.ls161_c00000{letter-spacing:-2.124000px;}
.ls12d_c00000{letter-spacing:-2.116800px;}
.ls165_c00000{letter-spacing:-2.109600px;}
.ls167_c00000{letter-spacing:-2.102400px;}
.ls15f_c00000{letter-spacing:-2.095200px;}
.ls15e_c00000{letter-spacing:-2.088000px;}
.ls162_c00000{letter-spacing:-2.080800px;}
.ls160_c00000{letter-spacing:-2.073600px;}
.ls169_c00000{letter-spacing:-2.066400px;}
.ls164_c00000{letter-spacing:-2.052000px;}
.ls166_c00000{letter-spacing:-2.044800px;}
.ls136_c00000{letter-spacing:-0.720000px;}
.ls15a_c00000{letter-spacing:-0.691200px;}
.ls13e_c00000{letter-spacing:-0.685368px;}
.ls137_c00000{letter-spacing:-0.684000px;}
.ls131_c00000{letter-spacing:-0.669600px;}
.ls157_c00000{letter-spacing:-0.662400px;}
.ls13c_c00000{letter-spacing:-0.655200px;}
.ls12e_c00000{letter-spacing:-0.648000px;}
.ls130_c00000{letter-spacing:-0.640800px;}
.ls134_c00000{letter-spacing:-0.633600px;}
.ls1a6_c00000{letter-spacing:-0.631260px;}
.ls139_c00000{letter-spacing:-0.626400px;}
.ls133_c00000{letter-spacing:-0.619200px;}
.ls12f_c00000{letter-spacing:-0.612000px;}
.ls135_c00000{letter-spacing:-0.604800px;}
.ls138_c00000{letter-spacing:-0.597600px;}
.ls175_c00000{letter-spacing:-0.590400px;}
.ls172_c00000{letter-spacing:-0.589176px;}
.ls156_c00000{letter-spacing:-0.583200px;}
.lsc8_c00000{letter-spacing:-0.583164px;}
.ls158_c00000{letter-spacing:-0.576000px;}
.ls159_c00000{letter-spacing:-0.568800px;}
.lsec_c00000{letter-spacing:-0.561600px;}
.ls13a_c00000{letter-spacing:-0.554400px;}
.ls15b_c00000{letter-spacing:-0.547200px;}
.ls119_c00000{letter-spacing:-0.541080px;}
.ls15c_c00000{letter-spacing:-0.540000px;}
.ls1a3_c00000{letter-spacing:-0.535068px;}
.ls13b_c00000{letter-spacing:-0.532800px;}
.ls15d_c00000{letter-spacing:-0.525600px;}
.ls117_c00000{letter-spacing:-0.518400px;}
.ls173_c00000{letter-spacing:-0.505008px;}
.ls1a4_c00000{letter-spacing:-0.498996px;}
.lse4_c00000{letter-spacing:-0.480924px;}
.ls1b1_c00000{letter-spacing:-0.468000px;}
.ls17a_c00000{letter-spacing:-0.438876px;}
.ls132_c00000{letter-spacing:-0.432000px;}
.ls120_c00000{letter-spacing:-0.426852px;}
.ls1b8_c00000{letter-spacing:-0.420840px;}
.lsa5_c00000{letter-spacing:-0.417600px;}
.ls1a5_c00000{letter-spacing:-0.414828px;}
.ls170_c00000{letter-spacing:-0.402804px;}
.ls9f_c00000{letter-spacing:-0.398160px;}
.ls19a_c00000{letter-spacing:-0.396792px;}
.ls16f_c00000{letter-spacing:-0.388800px;}
.ls18b_c00000{letter-spacing:-0.384768px;}
.lse9_c00000{letter-spacing:-0.378756px;}
.ls73_c00000{letter-spacing:-0.378252px;}
.ls13f_c00000{letter-spacing:-0.372744px;}
.lsd2_c00000{letter-spacing:-0.366732px;}
.ls110_c00000{letter-spacing:-0.360720px;}
.ls8a_c00000{letter-spacing:-0.360000px;}
.lsfe_c00000{letter-spacing:-0.348696px;}
.ls1b7_c00000{letter-spacing:-0.342684px;}
.ls154_c00000{letter-spacing:-0.336672px;}
.ls108_c00000{letter-spacing:-0.324648px;}
.lsdd_c00000{letter-spacing:-0.318636px;}
.ls12c_c00000{letter-spacing:-0.312624px;}
.ls16a_c00000{letter-spacing:-0.309600px;}
.ls18f_c00000{letter-spacing:-0.306612px;}
.lsfd_c00000{letter-spacing:-0.300600px;}
.ls8b_c00000{letter-spacing:-0.294588px;}
.lsa0_c00000{letter-spacing:-0.288000px;}
.ls188_c00000{letter-spacing:-0.282564px;}
.lsbe_c00000{letter-spacing:-0.280800px;}
.lsea_c00000{letter-spacing:-0.276552px;}
.ls10a_c00000{letter-spacing:-0.273600px;}
.ls80_c00000{letter-spacing:-0.270540px;}
.lsf2_c00000{letter-spacing:-0.270108px;}
.lscc_c00000{letter-spacing:-0.266400px;}
.lsd9_c00000{letter-spacing:-0.264528px;}
.ls127_c00000{letter-spacing:-0.259200px;}
.ls71_c00000{letter-spacing:-0.258516px;}
.lsc2_c00000{letter-spacing:-0.252504px;}
.ls197_c00000{letter-spacing:-0.252000px;}
.lsfc_c00000{letter-spacing:-0.246492px;}
.ls174_c00000{letter-spacing:-0.240480px;}
.lsdb_c00000{letter-spacing:-0.237600px;}
.ls91_c00000{letter-spacing:-0.234468px;}
.ls198_c00000{letter-spacing:-0.230400px;}
.lse8_c00000{letter-spacing:-0.228456px;}
.lsf1_c00000{letter-spacing:-0.223200px;}
.lsa6_c00000{letter-spacing:-0.222444px;}
.lsf6_c00000{letter-spacing:-0.216432px;}
.ls106_c00000{letter-spacing:-0.210420px;}
.ls1b3_c00000{letter-spacing:-0.208800px;}
.lsb9_c00000{letter-spacing:-0.204408px;}
.ls128_c00000{letter-spacing:-0.201600px;}
.ls7a_c00000{letter-spacing:-0.198396px;}
.ls11c_c00000{letter-spacing:-0.194400px;}
.ls66_c00000{letter-spacing:-0.192384px;}
.ls181_c00000{letter-spacing:-0.187200px;}
.ls8d_c00000{letter-spacing:-0.186372px;}
.ls74_c00000{letter-spacing:-0.180360px;}
.lsfa_c00000{letter-spacing:-0.180000px;}
.ls70_c00000{letter-spacing:-0.174348px;}
.lsf3_c00000{letter-spacing:-0.172800px;}
.ls5f_c00000{letter-spacing:-0.168336px;}
.ls199_c00000{letter-spacing:-0.165600px;}
.ls90_c00000{letter-spacing:-0.162324px;}
.ls112_c00000{letter-spacing:-0.158400px;}
.ls65_c00000{letter-spacing:-0.156312px;}
.ls88_c00000{letter-spacing:-0.150300px;}
.lsc5_c00000{letter-spacing:-0.144288px;}
.ls5c_c00000{letter-spacing:-0.138276px;}
.lsc1_c00000{letter-spacing:-0.136800px;}
.ls87_c00000{letter-spacing:-0.132264px;}
.lscd_c00000{letter-spacing:-0.130824px;}
.lsc9_c00000{letter-spacing:-0.129600px;}
.lsc6_c00000{letter-spacing:-0.126252px;}
.ls44_c00000{letter-spacing:-0.124956px;}
.lscb_c00000{letter-spacing:-0.122400px;}
.ls5d_c00000{letter-spacing:-0.120240px;}
.ls100_c00000{letter-spacing:-0.118800px;}
.ls1b4_c00000{letter-spacing:-0.115200px;}
.ls8f_c00000{letter-spacing:-0.114228px;}
.ls63_c00000{letter-spacing:-0.108216px;}
.lsb2_c00000{letter-spacing:-0.108000px;}
.ls25_c00000{letter-spacing:-0.105732px;}
.ls11a_c00000{letter-spacing:-0.105336px;}
.ls60_c00000{letter-spacing:-0.102204px;}
.ls10d_c00000{letter-spacing:-0.100872px;}
.lsa8_c00000{letter-spacing:-0.100800px;}
.ls93_c00000{letter-spacing:-0.096192px;}
.ls2b_c00000{letter-spacing:-0.096120px;}
.ls85_c00000{letter-spacing:-0.093600px;}
.ls171_c00000{letter-spacing:-0.090972px;}
.ls7c_c00000{letter-spacing:-0.090180px;}
.ls27_c00000{letter-spacing:-0.086508px;}
.ls86_c00000{letter-spacing:-0.086400px;}
.ls11d_c00000{letter-spacing:-0.086184px;}
.ls64_c00000{letter-spacing:-0.084168px;}
.ls17b_c00000{letter-spacing:-0.084060px;}
.ls98_c00000{letter-spacing:-0.079200px;}
.ls18e_c00000{letter-spacing:-0.079056px;}
.ls92_c00000{letter-spacing:-0.078156px;}
.ls23_c00000{letter-spacing:-0.076896px;}
.ls72_c00000{letter-spacing:-0.072144px;}
.ls3c_c00000{letter-spacing:-0.072000px;}
.ls29_c00000{letter-spacing:-0.067284px;}
.ls11_c00000{letter-spacing:-0.067248px;}
.ls10f_c00000{letter-spacing:-0.067032px;}
.ls7b_c00000{letter-spacing:-0.066132px;}
.ls3d_c00000{letter-spacing:-0.064800px;}
.lse_c00000{letter-spacing:-0.062496px;}
.ls9c_c00000{letter-spacing:-0.062244px;}
.ls8e_c00000{letter-spacing:-0.060120px;}
.ls26_c00000{letter-spacing:-0.057672px;}
.ls33_c00000{letter-spacing:-0.057600px;}
.lsf_c00000{letter-spacing:-0.054684px;}
.lsae_c00000{letter-spacing:-0.054108px;}
.ls102_c00000{letter-spacing:-0.052704px;}
.ls4e_c00000{letter-spacing:-0.050436px;}
.ls2f_c00000{letter-spacing:-0.050400px;}
.ls9a_c00000{letter-spacing:-0.048096px;}
.ls3a_c00000{letter-spacing:-0.048060px;}
.ls2c_c00000{letter-spacing:-0.043200px;}
.ls76_c00000{letter-spacing:-0.042084px;}
.lsaa_c00000{letter-spacing:-0.039816px;}
.ls39_c00000{letter-spacing:-0.038448px;}
.lsf9_c00000{letter-spacing:-0.038047px;}
.ls61_c00000{letter-spacing:-0.036072px;}
.ls34_c00000{letter-spacing:-0.036000px;}
.ls37_c00000{letter-spacing:-0.034128px;}
.ls10_c00000{letter-spacing:-0.031248px;}
.ls78_c00000{letter-spacing:-0.030060px;}
.lsc_c00000{letter-spacing:-0.030024px;}
.ls24_c00000{letter-spacing:-0.028836px;}
.ls2d_c00000{letter-spacing:-0.028800px;}
.ls21_c00000{letter-spacing:-0.026424px;}
.lsee_c00000{letter-spacing:-0.026352px;}
.ls75_c00000{letter-spacing:-0.024048px;}
.ls38_c00000{letter-spacing:-0.021600px;}
.lsef_c00000{letter-spacing:-0.019764px;}
.ls28_c00000{letter-spacing:-0.019224px;}
.ls104_c00000{letter-spacing:-0.019152px;}
.ls6f_c00000{letter-spacing:-0.018036px;}
.ls36_c00000{letter-spacing:-0.014400px;}
.ls101_c00000{letter-spacing:-0.013176px;}
.ls5e_c00000{letter-spacing:-0.012024px;}
.ls2e_c00000{letter-spacing:-0.007200px;}
.lse3_c00000{letter-spacing:-0.006588px;}
.ls62_c00000{letter-spacing:-0.006012px;}
.ls4_c00000{letter-spacing:-0.004200px;}
.ls0_c00000{letter-spacing:0.000000px;}
.ls6c_c00000{letter-spacing:0.006012px;}
.lsd4_c00000{letter-spacing:0.006588px;}
.ls1e_c00000{letter-spacing:0.007200px;}
.ls41_c00000{letter-spacing:0.008388px;}
.ls45_c00000{letter-spacing:0.010800px;}
.ls6e_c00000{letter-spacing:0.012024px;}
.lsd6_c00000{letter-spacing:0.013176px;}
.ls20_c00000{letter-spacing:0.014400px;}
.ls16_c00000{letter-spacing:0.016776px;}
.ls59_c00000{letter-spacing:0.018036px;}
.lsdf_c00000{letter-spacing:0.019764px;}
.ls30_c00000{letter-spacing:0.021600px;}
.ls111_c00000{letter-spacing:0.022752px;}
.ls58_c00000{letter-spacing:0.024048px;}
.ls19_c00000{letter-spacing:0.025164px;}
.lsb_c00000{letter-spacing:0.026352px;}
.ls1f_c00000{letter-spacing:0.028800px;}
.lsc4_c00000{letter-spacing:0.030060px;}
.lsed_c00000{letter-spacing:0.032940px;}
.ls3f_c00000{letter-spacing:0.033552px;}
.ls31_c00000{letter-spacing:0.036000px;}
.ls89_c00000{letter-spacing:0.036072px;}
.lsa_c00000{letter-spacing:0.039528px;}
.ls17_c00000{letter-spacing:0.041940px;}
.lsbc_c00000{letter-spacing:0.042084px;}
.ls22_c00000{letter-spacing:0.043200px;}
.lse2_c00000{letter-spacing:0.046116px;}
.lsc0_c00000{letter-spacing:0.048096px;}
.ls1c_c00000{letter-spacing:0.050328px;}
.ls47_c00000{letter-spacing:0.050400px;}
.ls53_c00000{letter-spacing:0.051192px;}
.lse1_c00000{letter-spacing:0.052704px;}
.ls83_c00000{letter-spacing:0.054108px;}
.ls3e_c00000{letter-spacing:0.057600px;}
.ls1d_c00000{letter-spacing:0.058716px;}
.lsd3_c00000{letter-spacing:0.059292px;}
.ls5b_c00000{letter-spacing:0.060120px;}
.ls48_c00000{letter-spacing:0.064800px;}
.lsd5_c00000{letter-spacing:0.065880px;}
.ls81_c00000{letter-spacing:0.066132px;}
.ls15_c00000{letter-spacing:0.067104px;}
.ls32_c00000{letter-spacing:0.072000px;}
.ls12_c00000{letter-spacing:0.072144px;}
.lsde_c00000{letter-spacing:0.072468px;}
.ls1b_c00000{letter-spacing:0.075492px;}
.ls67_c00000{letter-spacing:0.078156px;}
.lse5_c00000{letter-spacing:0.079056px;}
.ls4c_c00000{letter-spacing:0.079200px;}
.ls2a_c00000{letter-spacing:0.083880px;}
.ls79_c00000{letter-spacing:0.084168px;}
.lse6_c00000{letter-spacing:0.085644px;}
.ls68_c00000{letter-spacing:0.086400px;}
.ls46_c00000{letter-spacing:0.090180px;}
.lsd8_c00000{letter-spacing:0.092232px;}
.ls18_c00000{letter-spacing:0.092268px;}
.ls4b_c00000{letter-spacing:0.093600px;}
.ls95_c00000{letter-spacing:0.096192px;}
.lsff_c00000{letter-spacing:0.098820px;}
.ls40_c00000{letter-spacing:0.100656px;}
.ls4a_c00000{letter-spacing:0.100800px;}
.ls7f_c00000{letter-spacing:0.102204px;}
.lse7_c00000{letter-spacing:0.105408px;}
.lsb5_c00000{letter-spacing:0.108000px;}
.ls77_c00000{letter-spacing:0.108216px;}
.ls1a_c00000{letter-spacing:0.109044px;}
.lsfb_c00000{letter-spacing:0.111996px;}
.ls9e_c00000{letter-spacing:0.114228px;}
.ls84_c00000{letter-spacing:0.115200px;}
.ls3b_c00000{letter-spacing:0.117432px;}
.ls194_c00000{letter-spacing:0.118584px;}
.ls99_c00000{letter-spacing:0.120240px;}
.ls54_c00000{letter-spacing:0.122400px;}
.ls42_c00000{letter-spacing:0.125820px;}
.ls57_c00000{letter-spacing:0.126252px;}
.lsb1_c00000{letter-spacing:0.129600px;}
.ls9b_c00000{letter-spacing:0.132264px;}
.ls5a_c00000{letter-spacing:0.136512px;}
.lsd1_c00000{letter-spacing:0.136800px;}
.ls94_c00000{letter-spacing:0.138276px;}
.ls183_c00000{letter-spacing:0.138348px;}
.ls50_c00000{letter-spacing:0.142524px;}
.lsf7_c00000{letter-spacing:0.144000px;}
.ls96_c00000{letter-spacing:0.144288px;}
.ls7e_c00000{letter-spacing:0.150300px;}
.ls129_c00000{letter-spacing:0.151200px;}
.ls187_c00000{letter-spacing:0.151524px;}
.ls97_c00000{letter-spacing:0.156312px;}
.lsc7_c00000{letter-spacing:0.158400px;}
.ls8c_c00000{letter-spacing:0.162324px;}
.lsab_c00000{letter-spacing:0.165600px;}
.ls115_c00000{letter-spacing:0.168336px;}
.ls1ae_c00000{letter-spacing:0.172800px;}
.lsf8_c00000{letter-spacing:0.174348px;}
.lsa1_c00000{letter-spacing:0.176328px;}
.ls51_c00000{letter-spacing:0.180000px;}
.ls56_c00000{letter-spacing:0.180360px;}
.lsd7_c00000{letter-spacing:0.181116px;}
.ls82_c00000{letter-spacing:0.181944px;}
.ls176_c00000{letter-spacing:0.186372px;}
.ls107_c00000{letter-spacing:0.192384px;}
.ls189_c00000{letter-spacing:0.204408px;}
.ls178_c00000{letter-spacing:0.208800px;}
.ls12a_c00000{letter-spacing:0.210420px;}
.ls123_c00000{letter-spacing:0.216432px;}
.ls1b9_c00000{letter-spacing:0.223200px;}
.ls17d_c00000{letter-spacing:0.234468px;}
.lsbd_c00000{letter-spacing:0.252000px;}
.ls19c_c00000{letter-spacing:0.252504px;}
.ls14c_c00000{letter-spacing:0.259200px;}
.ls11e_c00000{letter-spacing:0.270000px;}
.ls121_c00000{letter-spacing:0.270540px;}
.ls153_c00000{letter-spacing:0.273600px;}
.ls140_c00000{letter-spacing:0.280800px;}
.ls141_c00000{letter-spacing:0.295200px;}
.ls14e_c00000{letter-spacing:0.302400px;}
.ls142_c00000{letter-spacing:0.309600px;}
.ls14d_c00000{letter-spacing:0.316800px;}
.ls105_c00000{letter-spacing:0.318636px;}
.ls144_c00000{letter-spacing:0.324000px;}
.ls35_c00000{letter-spacing:0.324216px;}
.ls145_c00000{letter-spacing:0.331200px;}
.ls14a_c00000{letter-spacing:0.338400px;}
.ls148_c00000{letter-spacing:0.345600px;}
.ls143_c00000{letter-spacing:0.352800px;}
.lsa4_c00000{letter-spacing:0.360000px;}
.ls146_c00000{letter-spacing:0.367200px;}
.ls147_c00000{letter-spacing:0.374400px;}
.ls151_c00000{letter-spacing:0.381600px;}
.ls14b_c00000{letter-spacing:0.396000px;}
.ls149_c00000{letter-spacing:0.410400px;}
.ls150_c00000{letter-spacing:0.417600px;}
.ls184_c00000{letter-spacing:0.439200px;}
.ls14f_c00000{letter-spacing:0.446400px;}
.lseb_c00000{letter-spacing:0.450900px;}
.ls152_c00000{letter-spacing:0.460800px;}
.ls124_c00000{letter-spacing:0.541080px;}
.lsb8_c00000{letter-spacing:0.811620px;}
.ls113_c00000{letter-spacing:0.900000px;}
.ls7d_c00000{letter-spacing:1.080000px;}
.ls6_c00000{letter-spacing:1.118376px;}
.ls180_c00000{letter-spacing:1.172340px;}
.ls5_c00000{letter-spacing:1.186848px;}
.lsb4_c00000{letter-spacing:1.260000px;}
.ls69_c00000{letter-spacing:1.440000px;}
.lsd0_c00000{letter-spacing:1.527048px;}
.ls118_c00000{letter-spacing:1.533060px;}
.ls6d_c00000{letter-spacing:1.800000px;}
.ls11b_c00000{letter-spacing:1.887768px;}
.ls6b_c00000{letter-spacing:2.160000px;}
.lsca_c00000{letter-spacing:2.248488px;}
.lsa2_c00000{letter-spacing:2.880000px;}
.lse0_c00000{letter-spacing:2.969928px;}
.ls17c_c00000{letter-spacing:3.060000px;}
.ls191_c00000{letter-spacing:3.330648px;}
.ls19b_c00000{letter-spacing:3.691368px;}
.ls1b0_c00000{letter-spacing:3.960000px;}
.ls1a8_c00000{letter-spacing:4.284120px;}
.ls3_c00000{letter-spacing:4.563000px;}
.ls8_c00000{letter-spacing:4.746600px;}
.ls109_c00000{letter-spacing:4.767516px;}
.ls7_c00000{letter-spacing:4.795200px;}
.ls1_c00000{letter-spacing:4.812840px;}
.ls2_c00000{letter-spacing:4.847760px;}
.lsd_c00000{letter-spacing:4.997700px;}
.lsb3_c00000{letter-spacing:5.040000px;}
.ls11f_c00000{letter-spacing:5.128236px;}
.ls10e_c00000{letter-spacing:5.400000px;}
.ls16e_c00000{letter-spacing:5.488956px;}
.ls1ad_c00000{letter-spacing:5.580000px;}
.lsbf_c00000{letter-spacing:5.670000px;}
.lsad_c00000{letter-spacing:5.760000px;}
.lsbb_c00000{letter-spacing:5.849676px;}
.lsf0_c00000{letter-spacing:5.850000px;}
.ls55_c00000{letter-spacing:6.120000px;}
.lsf4_c00000{letter-spacing:6.210396px;}
.ls1ab_c00000{letter-spacing:6.300000px;}
.lsdc_c00000{letter-spacing:6.480000px;}
.ls182_c00000{letter-spacing:6.571116px;}
.ls1bb_c00000{letter-spacing:6.840000px;}
.ls177_c00000{letter-spacing:6.841656px;}
.lscf_c00000{letter-spacing:6.931836px;}
.ls6a_c00000{letter-spacing:7.020000px;}
.ls125_c00000{letter-spacing:7.200000px;}
.ls155_c00000{letter-spacing:7.292556px;}
.ls19d_c00000{letter-spacing:8.007984px;}
.ls19e_c00000{letter-spacing:8.368704px;}
.lsaf_c00000{letter-spacing:8.640000px;}
.ls1a9_c00000{letter-spacing:8.820000px;}
.ls1a0_c00000{letter-spacing:9.090144px;}
.ls126_c00000{letter-spacing:9.273600px;}
.ls1b6_c00000{letter-spacing:9.450864px;}
.ls16b_c00000{letter-spacing:9.811584px;}
.lsb7_c00000{letter-spacing:9.900000px;}
.lsba_c00000{letter-spacing:9.990000px;}
.ls195_c00000{letter-spacing:10.080000px;}
.lsb0_c00000{letter-spacing:10.440000px;}
.ls52_c00000{letter-spacing:10.620000px;}
.ls18c_c00000{letter-spacing:10.887732px;}
.ls17e_c00000{letter-spacing:11.160000px;}
.ls186_c00000{letter-spacing:11.520000px;}
.ls190_c00000{letter-spacing:11.609172px;}
.ls1a2_c00000{letter-spacing:11.969892px;}
.lsa9_c00000{letter-spacing:12.240000px;}
.lsce_c00000{letter-spacing:12.330612px;}
.ls1ac_c00000{letter-spacing:12.600000px;}
.ls12b_c00000{letter-spacing:12.870000px;}
.ls103_c00000{letter-spacing:13.052052px;}
.lsa7_c00000{letter-spacing:13.320000px;}
.ls13d_c00000{letter-spacing:13.527000px;}
.ls114_c00000{letter-spacing:13.824000px;}
.ls19f_c00000{letter-spacing:14.040000px;}
.ls179_c00000{letter-spacing:14.128200px;}
.ls1aa_c00000{letter-spacing:14.400000px;}
.ls1ba_c00000{letter-spacing:14.760000px;}
.ls1a7_c00000{letter-spacing:15.120000px;}
.lsf5_c00000{letter-spacing:15.840000px;}
.ls1b2_c00000{letter-spacing:15.931800px;}
.lsda_c00000{letter-spacing:16.292520px;}
.lsac_c00000{letter-spacing:17.280000px;}
.ls1bc_c00000{letter-spacing:17.640000px;}
.ls16c_c00000{letter-spacing:17.729388px;}
.ls16d_c00000{letter-spacing:18.450828px;}
.ls122_c00000{letter-spacing:19.887696px;}
.ls1af_c00000{letter-spacing:21.240000px;}
.ls1a1_c00000{letter-spacing:22.052016px;}
.ls1b5_c00000{letter-spacing:22.412736px;}
.ls9d_c00000{letter-spacing:33.984000px;}
.lsc3_c00000{letter-spacing:34.470000px;}
.ls17f_c00000{letter-spacing:34.920000px;}
.lsb6_c00000{letter-spacing:41.040000px;}
.ls185_c00000{letter-spacing:42.480792px;}
.lsa3_c00000{letter-spacing:48.384000px;}
.ls192_c00000{letter-spacing:61.560000px;}
.ls18d_c00000{letter-spacing:90.000000px;}
.ls196_c00000{letter-spacing:144.000000px;}
.ls193_c00000{letter-spacing:151.560000px;}
.ls10c_c00000{letter-spacing:166.775040px;}
.ls116_c00000{letter-spacing:191.430936px;}
.ls49_c00000{letter-spacing:194.400000px;}
.ls18a_c00000{letter-spacing:198.000000px;}
.ls4d_c00000{letter-spacing:482.134536px;}
.ls9_c00000{letter-spacing:899.856000px;}
.ls14_c00000{letter-spacing:935.010000px;}
.ls43_c00000{letter-spacing:1248.480000px;}
.ls10b_c00000{letter-spacing:2424.960000px;}
.ls4f_c00000{letter-spacing:2460.960000px;}
.ls13_c00000{letter-spacing:2496.960000px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1be_c00000{word-spacing:-72.000000px;}
.ws13e5_c00000{word-spacing:-66.961656px;}
.ws127a_c00000{word-spacing:-63.539045px;}
.wsd2_c00000{word-spacing:-60.120000px;}
.ws0_c00000{word-spacing:-59.832000px;}
.ws2_c00000{word-spacing:-40.032000px;}
.ws14e6_c00000{word-spacing:-36.439200px;}
.ws1472_c00000{word-spacing:-36.000000px;}
.ws5_c00000{word-spacing:-33.509700px;}
.ws149c_c00000{word-spacing:-30.060000px;}
.ws3_c00000{word-spacing:-28.512000px;}
.ws4_c00000{word-spacing:-27.494040px;}
.ws11_c00000{word-spacing:-23.933880px;}
.ws13_c00000{word-spacing:-22.511304px;}
.ws10_c00000{word-spacing:-21.037104px;}
.ws5b_c00000{word-spacing:-21.028716px;}
.ws23_c00000{word-spacing:-19.996992px;}
.ws1f_c00000{word-spacing:-19.971828px;}
.ws10b8_c00000{word-spacing:-18.158400px;}
.wsf9e_c00000{word-spacing:-18.144000px;}
.ws1403_c00000{word-spacing:-18.129600px;}
.wsae6_c00000{word-spacing:-18.122400px;}
.wsfee_c00000{word-spacing:-18.115200px;}
.ws5a9_c00000{word-spacing:-18.108000px;}
.ws687_c00000{word-spacing:-18.100800px;}
.ws1bf_c00000{word-spacing:-18.093600px;}
.ws360_c00000{word-spacing:-18.086400px;}
.ws65c_c00000{word-spacing:-18.079200px;}
.wsc14_c00000{word-spacing:-18.072000px;}
.ws35e_c00000{word-spacing:-18.064800px;}
.ws241_c00000{word-spacing:-18.057600px;}
.wsd3_c00000{word-spacing:-18.050400px;}
.ws365_c00000{word-spacing:-18.043200px;}
.ws65b_c00000{word-spacing:-18.036000px;}
.ws16b_c00000{word-spacing:-18.028800px;}
.wsd4_c00000{word-spacing:-18.021600px;}
.ws5a8_c00000{word-spacing:-18.014400px;}
.ws362_c00000{word-spacing:-18.007200px;}
.ws16c_c00000{word-spacing:-18.000000px;}
.ws361_c00000{word-spacing:-17.992800px;}
.ws3aa_c00000{word-spacing:-17.985600px;}
.ws9eb_c00000{word-spacing:-17.978400px;}
.wsb24_c00000{word-spacing:-17.971200px;}
.ws363_c00000{word-spacing:-17.964000px;}
.ws16d_c00000{word-spacing:-17.956800px;}
.ws1afe_c00000{word-spacing:-17.949600px;}
.ws364_c00000{word-spacing:-17.942400px;}
.ws10e4_c00000{word-spacing:-17.935200px;}
.wsd5_c00000{word-spacing:-17.928000px;}
.ws101b_c00000{word-spacing:-17.920800px;}
.ws1851_c00000{word-spacing:-17.913600px;}
.ws2dc_c00000{word-spacing:-17.906400px;}
.ws13b6_c00000{word-spacing:-17.899200px;}
.wsc66_c00000{word-spacing:-17.892000px;}
.ws10f4_c00000{word-spacing:-17.877600px;}
.wscee_c00000{word-spacing:-17.820000px;}
.ws1a1f_c00000{word-spacing:-17.791200px;}
.ws81a_c00000{word-spacing:-17.762400px;}
.ws1027_c00000{word-spacing:-17.640000px;}
.ws3ab_c00000{word-spacing:-17.582400px;}
.ws191d_c00000{word-spacing:-17.481600px;}
.ws1387_c00000{word-spacing:-17.438400px;}
.ws12ad_c00000{word-spacing:-17.344800px;}
.ws18_c00000{word-spacing:-17.119908px;}
.ws67_c00000{word-spacing:-16.753716px;}
.ws14ef_c00000{word-spacing:-16.621524px;}
.ws14c9_c00000{word-spacing:-16.608348px;}
.ws17f4_c00000{word-spacing:-16.562232px;}
.ws1b4c_c00000{word-spacing:-16.549056px;}
.ws15bd_c00000{word-spacing:-16.542468px;}
.ws8c7_c00000{word-spacing:-16.529292px;}
.ws15b2_c00000{word-spacing:-16.522704px;}
.ws18dc_c00000{word-spacing:-16.516116px;}
.ws8e0_c00000{word-spacing:-16.509528px;}
.ws16a2_c00000{word-spacing:-16.502940px;}
.ws7f2_c00000{word-spacing:-16.496352px;}
.ws14ca_c00000{word-spacing:-16.489764px;}
.ws1887_c00000{word-spacing:-16.483176px;}
.ws14c8_c00000{word-spacing:-16.476588px;}
.ws15eb_c00000{word-spacing:-16.470000px;}
.wsba1_c00000{word-spacing:-16.417296px;}
.ws63_c00000{word-spacing:-16.046244px;}
.ws12ae_c00000{word-spacing:-15.876000px;}
.ws83c_c00000{word-spacing:-15.210360px;}
.wsafd_c00000{word-spacing:-15.204348px;}
.ws125c_c00000{word-spacing:-15.198336px;}
.wse67_c00000{word-spacing:-15.192324px;}
.ws13b7_c00000{word-spacing:-15.174288px;}
.ws145d_c00000{word-spacing:-15.168276px;}
.wsc95_c00000{word-spacing:-15.156252px;}
.ws5cf_c00000{word-spacing:-15.150240px;}
.ws1752_c00000{word-spacing:-15.144228px;}
.ws321_c00000{word-spacing:-15.138216px;}
.ws197f_c00000{word-spacing:-15.126192px;}
.ws1c3_c00000{word-spacing:-15.120180px;}
.ws1415_c00000{word-spacing:-15.108156px;}
.wsea4_c00000{word-spacing:-15.102144px;}
.ws631_c00000{word-spacing:-15.096132px;}
.wse28_c00000{word-spacing:-15.090120px;}
.wsc7c_c00000{word-spacing:-15.084108px;}
.ws1ac8_c00000{word-spacing:-15.078096px;}
.ws10a3_c00000{word-spacing:-15.072084px;}
.ws137a_c00000{word-spacing:-15.066072px;}
.ws131d_c00000{word-spacing:-15.060060px;}
.wsddb_c00000{word-spacing:-15.054048px;}
.ws106c_c00000{word-spacing:-15.048036px;}
.wsbc8_c00000{word-spacing:-15.042024px;}
.wsb70_c00000{word-spacing:-15.036012px;}
.wsd1_c00000{word-spacing:-15.030000px;}
.ws1c4_c00000{word-spacing:-15.023988px;}
.wsafe_c00000{word-spacing:-15.017976px;}
.ws127c_c00000{word-spacing:-15.011964px;}
.ws1c0_c00000{word-spacing:-15.005952px;}
.ws688_c00000{word-spacing:-14.999940px;}
.ws114d_c00000{word-spacing:-14.993928px;}
.ws1c1_c00000{word-spacing:-14.987916px;}
.wsa3e_c00000{word-spacing:-14.981904px;}
.wsc68_c00000{word-spacing:-14.975892px;}
.wsec4_c00000{word-spacing:-14.969880px;}
.ws959_c00000{word-spacing:-14.963868px;}
.ws6b7_c00000{word-spacing:-14.957856px;}
.ws5ab_c00000{word-spacing:-14.951844px;}
.ws1c5_c00000{word-spacing:-14.945832px;}
.ws5aa_c00000{word-spacing:-14.939820px;}
.ws367_c00000{word-spacing:-14.933808px;}
.ws2dd_c00000{word-spacing:-14.927796px;}
.wsf08_c00000{word-spacing:-14.921784px;}
.ws366_c00000{word-spacing:-14.915772px;}
.ws322_c00000{word-spacing:-14.909760px;}
.ws12bd_c00000{word-spacing:-14.903748px;}
.ws689_c00000{word-spacing:-14.897736px;}
.ws171_c00000{word-spacing:-14.891724px;}
.ws1336_c00000{word-spacing:-14.885712px;}
.ws9b5_c00000{word-spacing:-14.879700px;}
.wsb36_c00000{word-spacing:-14.873688px;}
.ws1235_c00000{word-spacing:-14.867676px;}
.ws1ac9_c00000{word-spacing:-14.861664px;}
.ws16e_c00000{word-spacing:-14.855652px;}
.ws607_c00000{word-spacing:-14.849640px;}
.ws127b_c00000{word-spacing:-14.843628px;}
.ws88b_c00000{word-spacing:-14.837616px;}
.ws958_c00000{word-spacing:-14.831604px;}
.ws13aa_c00000{word-spacing:-14.825592px;}
.wse50_c00000{word-spacing:-14.819580px;}
.ws1335_c00000{word-spacing:-14.813568px;}
.ws1343_c00000{word-spacing:-14.783508px;}
.ws65d_c00000{word-spacing:-14.777496px;}
.ws16f_c00000{word-spacing:-14.771484px;}
.ws1c2_c00000{word-spacing:-14.759460px;}
.wsf64_c00000{word-spacing:-14.753448px;}
.ws1a13_c00000{word-spacing:-14.735412px;}
.ws889_c00000{word-spacing:-14.711364px;}
.ws171f_c00000{word-spacing:-14.669280px;}
.ws91b_c00000{word-spacing:-14.663268px;}
.ws948_c00000{word-spacing:-14.651244px;}
.ws1670_c00000{word-spacing:-14.627196px;}
.wsfb2_c00000{word-spacing:-14.603148px;}
.ws144f_c00000{word-spacing:-14.591124px;}
.ws34_c00000{word-spacing:-14.544216px;}
.ws18c3_c00000{word-spacing:-14.531004px;}
.ws6b8_c00000{word-spacing:-14.446836px;}
.ws3a9_c00000{word-spacing:-14.396328px;}
.wsd7_c00000{word-spacing:-14.356512px;}
.wsd6_c00000{word-spacing:-14.271192px;}
.wsced_c00000{word-spacing:-14.242752px;}
.ws35_c00000{word-spacing:-14.185872px;}
.ws492_c00000{word-spacing:-14.180184px;}
.ws77b_c00000{word-spacing:-14.089176px;}
.ws70_c00000{word-spacing:-14.040000px;}
.ws35f_c00000{word-spacing:-13.821840px;}
.wsba0_c00000{word-spacing:-13.381200px;}
.ws76_c00000{word-spacing:-13.160772px;}
.ws75_c00000{word-spacing:-12.800088px;}
.ws50_c00000{word-spacing:-12.240000px;}
.ws20a_c00000{word-spacing:-12.151944px;}
.wsbc7_c00000{word-spacing:-11.950848px;}
.ws323_c00000{word-spacing:-11.907756px;}
.wsccd_c00000{word-spacing:-11.902968px;}
.wsf51_c00000{word-spacing:-11.883816px;}
.ws1394_c00000{word-spacing:-11.879028px;}
.ws49_c00000{word-spacing:-11.872800px;}
.wsec3_c00000{word-spacing:-11.864664px;}
.ws46_c00000{word-spacing:-11.717028px;}
.ws170_c00000{word-spacing:-11.591748px;}
.ws7f3_c00000{word-spacing:-10.711116px;}
.ws40_c00000{word-spacing:-10.425600px;}
.ws3a_c00000{word-spacing:-10.080000px;}
.wsd8_c00000{word-spacing:-9.720000px;}
.ws3f_c00000{word-spacing:-8.265600px;}
.ws42_c00000{word-spacing:-6.818400px;}
.ws66_c00000{word-spacing:-6.291000px;}
.ws4e_c00000{word-spacing:-6.127200px;}
.ws60_c00000{word-spacing:-6.120000px;}
.ws69_c00000{word-spacing:-5.955480px;}
.ws10b7_c00000{word-spacing:-5.760000px;}
.wsedf_c00000{word-spacing:-5.472000px;}
.ws14bb_c00000{word-spacing:-5.212800px;}
.ws17db_c00000{word-spacing:-5.054400px;}
.ws1688_c00000{word-spacing:-5.025600px;}
.ws1356_c00000{word-spacing:-4.939200px;}
.ws1077_c00000{word-spacing:-4.651200px;}
.wsec2_c00000{word-spacing:-4.237776px;}
.ws1a39_c00000{word-spacing:-3.938400px;}
.ws1342_c00000{word-spacing:-3.877776px;}
.ws819_c00000{word-spacing:-3.517776px;}
.wsdd9_c00000{word-spacing:-3.515832px;}
.ws9b4_c00000{word-spacing:-3.240000px;}
.ws1687_c00000{word-spacing:-3.157776px;}
.wsd40_c00000{word-spacing:-3.155832px;}
.ws1a2b_c00000{word-spacing:-2.952000px;}
.ws88a_c00000{word-spacing:-2.880000px;}
.wsc94_c00000{word-spacing:-2.797776px;}
.ws187b_c00000{word-spacing:-2.520000px;}
.ws8a7_c00000{word-spacing:-2.437776px;}
.ws6e_c00000{word-spacing:-2.160000px;}
.ws937_c00000{word-spacing:-2.077776px;}
.wsf9f_c00000{word-spacing:-1.800000px;}
.ws19e2_c00000{word-spacing:-1.715832px;}
.wsee1_c00000{word-spacing:-1.440000px;}
.wsa09_c00000{word-spacing:-1.357776px;}
.wsd60_c00000{word-spacing:-1.355832px;}
.wsd41_c00000{word-spacing:-1.080000px;}
.wsbe4_c00000{word-spacing:-0.997776px;}
.wsa3d_c00000{word-spacing:-0.720000px;}
.ws1689_c00000{word-spacing:-0.637776px;}
.wsd54_c00000{word-spacing:-0.632016px;}
.ws11e7_c00000{word-spacing:-0.446400px;}
.ws473_c00000{word-spacing:-0.439200px;}
.wse99_c00000{word-spacing:-0.432864px;}
.ws43b_c00000{word-spacing:-0.432000px;}
.ws35d_c00000{word-spacing:-0.426852px;}
.ws107_c00000{word-spacing:-0.424800px;}
.ws314_c00000{word-spacing:-0.420840px;}
.ws18bb_c00000{word-spacing:-0.417600px;}
.ws34f_c00000{word-spacing:-0.414828px;}
.wse51_c00000{word-spacing:-0.410400px;}
.ws7b8_c00000{word-spacing:-0.408816px;}
.ws955_c00000{word-spacing:-0.402804px;}
.ws5cb_c00000{word-spacing:-0.396792px;}
.wse8d_c00000{word-spacing:-0.396000px;}
.ws34d_c00000{word-spacing:-0.390780px;}
.ws1afa_c00000{word-spacing:-0.388800px;}
.ws67e_c00000{word-spacing:-0.384768px;}
.ws13e1_c00000{word-spacing:-0.381600px;}
.ws705_c00000{word-spacing:-0.378756px;}
.ws8f5_c00000{word-spacing:-0.375516px;}
.ws489_c00000{word-spacing:-0.374400px;}
.ws357_c00000{word-spacing:-0.372744px;}
.ws2c_c00000{word-spacing:-0.367200px;}
.ws34e_c00000{word-spacing:-0.366732px;}
.ws31c_c00000{word-spacing:-0.360720px;}
.ws8a8_c00000{word-spacing:-0.360000px;}
.ws1b7_c00000{word-spacing:-0.354708px;}
.ws1b07_c00000{word-spacing:-0.352800px;}
.ws7ba_c00000{word-spacing:-0.348696px;}
.ws1a3c_c00000{word-spacing:-0.345600px;}
.wsd0_c00000{word-spacing:-0.342684px;}
.ws58_c00000{word-spacing:-0.338400px;}
.ws319_c00000{word-spacing:-0.336672px;}
.ws86e_c00000{word-spacing:-0.330660px;}
.ws15dc_c00000{word-spacing:-0.324648px;}
.ws915_c00000{word-spacing:-0.318636px;}
.ws1b30_c00000{word-spacing:-0.316800px;}
.ws6e1_c00000{word-spacing:-0.312624px;}
.ws1886_c00000{word-spacing:-0.309600px;}
.wse65_c00000{word-spacing:-0.306612px;}
.wsdb5_c00000{word-spacing:-0.302400px;}
.wsc90_c00000{word-spacing:-0.300600px;}
.ws260_c00000{word-spacing:-0.295200px;}
.ws101a_c00000{word-spacing:-0.294588px;}
.ws1616_c00000{word-spacing:-0.288576px;}
.wsf73_c00000{word-spacing:-0.282564px;}
.ws938_c00000{word-spacing:-0.280800px;}
.ws10fd_c00000{word-spacing:-0.277176px;}
.ws1136_c00000{word-spacing:-0.276552px;}
.ws19c8_c00000{word-spacing:-0.275832px;}
.ws93b_c00000{word-spacing:-0.273600px;}
.ws6eb_c00000{word-spacing:-0.272916px;}
.wsb9b_c00000{word-spacing:-0.270540px;}
.ws30_c00000{word-spacing:-0.266400px;}
.wsad2_c00000{word-spacing:-0.264528px;}
.wsa54_c00000{word-spacing:-0.259200px;}
.wsd77_c00000{word-spacing:-0.258516px;}
.wse3f_c00000{word-spacing:-0.252504px;}
.ws292_c00000{word-spacing:-0.252000px;}
.ws8bf_c00000{word-spacing:-0.246492px;}
.ws5ba_c00000{word-spacing:-0.244800px;}
.ws8a6_c00000{word-spacing:-0.240480px;}
.ws992_c00000{word-spacing:-0.237600px;}
.ws111_c00000{word-spacing:-0.234468px;}
.ws2e1_c00000{word-spacing:-0.230400px;}
.wsafc_c00000{word-spacing:-0.228456px;}
.ws164_c00000{word-spacing:-0.223200px;}
.ws65a_c00000{word-spacing:-0.222444px;}
.ws6d_c00000{word-spacing:-0.218088px;}
.ws916_c00000{word-spacing:-0.216432px;}
.ws3e_c00000{word-spacing:-0.216000px;}
.ws62f_c00000{word-spacing:-0.210420px;}
.ws7a_c00000{word-spacing:-0.209700px;}
.ws1d4_c00000{word-spacing:-0.208800px;}
.wsf27_c00000{word-spacing:-0.204408px;}
.ws81_c00000{word-spacing:-0.201600px;}
.ws20_c00000{word-spacing:-0.201312px;}
.wsae5_c00000{word-spacing:-0.198396px;}
.ws908_c00000{word-spacing:-0.194400px;}
.ws65_c00000{word-spacing:-0.192924px;}
.ws7d5_c00000{word-spacing:-0.192384px;}
.ws411_c00000{word-spacing:-0.187200px;}
.ws117_c00000{word-spacing:-0.186372px;}
.ws19_c00000{word-spacing:-0.184536px;}
.ws914_c00000{word-spacing:-0.180360px;}
.wsfe_c00000{word-spacing:-0.180000px;}
.ws37_c00000{word-spacing:-0.176148px;}
.wsafb_c00000{word-spacing:-0.174348px;}
.ws5e0_c00000{word-spacing:-0.172800px;}
.ws6e5_c00000{word-spacing:-0.168336px;}
.wsccc_c00000{word-spacing:-0.168120px;}
.ws21_c00000{word-spacing:-0.167760px;}
.wsaba_c00000{word-spacing:-0.165600px;}
.ws61_c00000{word-spacing:-0.163404px;}
.ws6a2_c00000{word-spacing:-0.162324px;}
.ws15_c00000{word-spacing:-0.159372px;}
.ws27c_c00000{word-spacing:-0.158400px;}
.ws79d_c00000{word-spacing:-0.156312px;}
.wsbb_c00000{word-spacing:-0.151200px;}
.ws25_c00000{word-spacing:-0.150984px;}
.ws115_c00000{word-spacing:-0.150300px;}
.wsd_c00000{word-spacing:-0.144936px;}
.ws911_c00000{word-spacing:-0.144288px;}
.ws9f_c00000{word-spacing:-0.144000px;}
.ws22_c00000{word-spacing:-0.142596px;}
.ws777_c00000{word-spacing:-0.138276px;}
.ws26d_c00000{word-spacing:-0.136800px;}
.ws17_c00000{word-spacing:-0.134208px;}
.ws67c_c00000{word-spacing:-0.132264px;}
.ws41_c00000{word-spacing:-0.129600px;}
.ws795_c00000{word-spacing:-0.126252px;}
.wsd9_c00000{word-spacing:-0.125820px;}
.ws29c_c00000{word-spacing:-0.122400px;}
.ws7d6_c00000{word-spacing:-0.120240px;}
.ws51_c00000{word-spacing:-0.117432px;}
.ws32c_c00000{word-spacing:-0.115200px;}
.ws731_c00000{word-spacing:-0.114228px;}
.ws16_c00000{word-spacing:-0.109044px;}
.ws947_c00000{word-spacing:-0.108216px;}
.ws188_c00000{word-spacing:-0.108000px;}
.ws933_c00000{word-spacing:-0.102204px;}
.ws5e_c00000{word-spacing:-0.100800px;}
.ws6c_c00000{word-spacing:-0.100656px;}
.wsdfc_c00000{word-spacing:-0.096192px;}
.ws177_c00000{word-spacing:-0.093600px;}
.ws10e3_c00000{word-spacing:-0.090180px;}
.ws59_c00000{word-spacing:-0.086400px;}
.wscdc_c00000{word-spacing:-0.084168px;}
.ws2d_c00000{word-spacing:-0.079200px;}
.ws1535_c00000{word-spacing:-0.078156px;}
.ws73_c00000{word-spacing:-0.076896px;}
.ws1b8_c00000{word-spacing:-0.072144px;}
.ws3b_c00000{word-spacing:-0.072000px;}
.wse_c00000{word-spacing:-0.070308px;}
.ws1c_c00000{word-spacing:-0.067284px;}
.ws1090_c00000{word-spacing:-0.066132px;}
.ws5d_c00000{word-spacing:-0.064800px;}
.ws9c3_c00000{word-spacing:-0.060120px;}
.ws31_c00000{word-spacing:-0.057600px;}
.ws85a_c00000{word-spacing:-0.054108px;}
.ws5a_c00000{word-spacing:-0.050400px;}
.wsf07_c00000{word-spacing:-0.048096px;}
.ws54c_c00000{word-spacing:-0.048060px;}
.ws12_c00000{word-spacing:-0.043200px;}
.ws732_c00000{word-spacing:-0.042084px;}
.ws1d_c00000{word-spacing:-0.041940px;}
.ws9_c00000{word-spacing:-0.039060px;}
.ws78_c00000{word-spacing:-0.038448px;}
.ws116_c00000{word-spacing:-0.036072px;}
.ws4b_c00000{word-spacing:-0.036000px;}
.wsccb_c00000{word-spacing:-0.033624px;}
.ws27_c00000{word-spacing:-0.033552px;}
.ws9b3_c00000{word-spacing:-0.030060px;}
.ws32_c00000{word-spacing:-0.028800px;}
.ws3a8_c00000{word-spacing:-0.024048px;}
.ws3d_c00000{word-spacing:-0.021600px;}
.ws1875_c00000{word-spacing:-0.019764px;}
.ws2a6_c00000{word-spacing:-0.018036px;}
.ws33_c00000{word-spacing:-0.014400px;}
.ws16b6_c00000{word-spacing:-0.013176px;}
.ws626_c00000{word-spacing:-0.012024px;}
.ws77_c00000{word-spacing:-0.010800px;}
.ws44_c00000{word-spacing:-0.009612px;}
.ws64_c00000{word-spacing:-0.008388px;}
.ws2b_c00000{word-spacing:-0.007200px;}
.ws11c_c00000{word-spacing:-0.006012px;}
.ws1_c00000{word-spacing:0.000000px;}
.ws317_c00000{word-spacing:0.006012px;}
.ws1595_c00000{word-spacing:0.006588px;}
.ws2a_c00000{word-spacing:0.007200px;}
.ws1924_c00000{word-spacing:0.008388px;}
.ws79f_c00000{word-spacing:0.012024px;}
.ws1085_c00000{word-spacing:0.013176px;}
.ws43_c00000{word-spacing:0.014400px;}
.ws70c_c00000{word-spacing:0.016776px;}
.ws1470_c00000{word-spacing:0.016812px;}
.ws1ab_c00000{word-spacing:0.018036px;}
.ws1504_c00000{word-spacing:0.019764px;}
.ws5c_c00000{word-spacing:0.021600px;}
.ws240_c00000{word-spacing:0.024048px;}
.ws1e_c00000{word-spacing:0.025164px;}
.ws1551_c00000{word-spacing:0.026352px;}
.ws48_c00000{word-spacing:0.028800px;}
.ws10b_c00000{word-spacing:0.030060px;}
.ws14f6_c00000{word-spacing:0.032940px;}
.wsbbf_c00000{word-spacing:0.036000px;}
.ws6e0_c00000{word-spacing:0.036072px;}
.wsb79_c00000{word-spacing:0.039528px;}
.ws62_c00000{word-spacing:0.041940px;}
.ws67d_c00000{word-spacing:0.042084px;}
.ws53_c00000{word-spacing:0.043200px;}
.wsa5a_c00000{word-spacing:0.046116px;}
.wsc29_c00000{word-spacing:0.048096px;}
.ws3c_c00000{word-spacing:0.050400px;}
.ws8c9_c00000{word-spacing:0.052704px;}
.ws62c_c00000{word-spacing:0.054108px;}
.ws4c_c00000{word-spacing:0.057600px;}
.ws1a_c00000{word-spacing:0.057672px;}
.ws98e_c00000{word-spacing:0.059292px;}
.ws6a0_c00000{word-spacing:0.060120px;}
.ws145_c00000{word-spacing:0.064800px;}
.wsa62_c00000{word-spacing:0.065880px;}
.ws119_c00000{word-spacing:0.066132px;}
.ws6f_c00000{word-spacing:0.072000px;}
.wsa00_c00000{word-spacing:0.072144px;}
.ws1610_c00000{word-spacing:0.072468px;}
.ws36_c00000{word-spacing:0.075492px;}
.ws1ba_c00000{word-spacing:0.078156px;}
.ws1617_c00000{word-spacing:0.079056px;}
.ws5f_c00000{word-spacing:0.079200px;}
.ws91a_c00000{word-spacing:0.082224px;}
.ws6b_c00000{word-spacing:0.083880px;}
.ws1ad_c00000{word-spacing:0.084168px;}
.ws17cd_c00000{word-spacing:0.085644px;}
.ws52_c00000{word-spacing:0.086400px;}
.ws6dd_c00000{word-spacing:0.090180px;}
.ws17f0_c00000{word-spacing:0.092232px;}
.ws49d_c00000{word-spacing:0.093600px;}
.ws1bd_c00000{word-spacing:0.096192px;}
.ws2e_c00000{word-spacing:0.100800px;}
.wsa7b_c00000{word-spacing:0.102204px;}
.ws15c1_c00000{word-spacing:0.105408px;}
.ws55_c00000{word-spacing:0.108000px;}
.ws6df_c00000{word-spacing:0.108216px;}
.ws9e5_c00000{word-spacing:0.114228px;}
.ws29_c00000{word-spacing:0.115200px;}
.ws14_c00000{word-spacing:0.115344px;}
.ws1b22_c00000{word-spacing:0.118584px;}
.ws533_c00000{word-spacing:0.120240px;}
.ws643_c00000{word-spacing:0.122400px;}
.ws208_c00000{word-spacing:0.126252px;}
.ws38_c00000{word-spacing:0.129600px;}
.ws2d8_c00000{word-spacing:0.132264px;}
.wscf_c00000{word-spacing:0.134496px;}
.ws45_c00000{word-spacing:0.134568px;}
.ws2f_c00000{word-spacing:0.136800px;}
.ws62b_c00000{word-spacing:0.138276px;}
.ws4d_c00000{word-spacing:0.144000px;}
.ws79_c00000{word-spacing:0.144180px;}
.ws7d2_c00000{word-spacing:0.144288px;}
.ws71a_c00000{word-spacing:0.150300px;}
.ws39_c00000{word-spacing:0.151200px;}
.wsf_c00000{word-spacing:0.151308px;}
.ws1bb_c00000{word-spacing:0.156312px;}
.ws168a_c00000{word-spacing:0.158400px;}
.ws68_c00000{word-spacing:0.159372px;}
.ws5c3_c00000{word-spacing:0.162324px;}
.ws24_c00000{word-spacing:0.163404px;}
.ws6e8_c00000{word-spacing:0.165600px;}
.ws1471_c00000{word-spacing:0.168120px;}
.ws31b_c00000{word-spacing:0.168336px;}
.ws6e9_c00000{word-spacing:0.172800px;}
.ws1b_c00000{word-spacing:0.173016px;}
.ws9a6_c00000{word-spacing:0.174348px;}
.ws47_c00000{word-spacing:0.176148px;}
.wsbc0_c00000{word-spacing:0.180000px;}
.ws1bc_c00000{word-spacing:0.180360px;}
.ws31d_c00000{word-spacing:0.186372px;}
.ws56_c00000{word-spacing:0.187200px;}
.ws110_c00000{word-spacing:0.192384px;}
.ws152_c00000{word-spacing:0.194400px;}
.wsc_c00000{word-spacing:0.197640px;}
.ws50d_c00000{word-spacing:0.198396px;}
.ws446_c00000{word-spacing:0.201600px;}
.ws6de_c00000{word-spacing:0.204408px;}
.ws54_c00000{word-spacing:0.208800px;}
.ws26_c00000{word-spacing:0.209700px;}
.ws23f_c00000{word-spacing:0.210420px;}
.ws74_c00000{word-spacing:0.211464px;}
.ws261_c00000{word-spacing:0.216000px;}
.ws79e_c00000{word-spacing:0.216432px;}
.ws8a2_c00000{word-spacing:0.222444px;}
.ws28_c00000{word-spacing:0.223200px;}
.ws120_c00000{word-spacing:0.228456px;}
.ws32d_c00000{word-spacing:0.230400px;}
.ws6a1_c00000{word-spacing:0.234468px;}
.ws41b_c00000{word-spacing:0.237600px;}
.ws2db_c00000{word-spacing:0.240480px;}
.ws91c_c00000{word-spacing:0.244800px;}
.ws118_c00000{word-spacing:0.246492px;}
.ws3e5_c00000{word-spacing:0.252000px;}
.ws318_c00000{word-spacing:0.252504px;}
.ws112_c00000{word-spacing:0.258516px;}
.ws72a_c00000{word-spacing:0.259200px;}
.ws1473_c00000{word-spacing:0.260028px;}
.ws209_c00000{word-spacing:0.264528px;}
.ws4fa_c00000{word-spacing:0.266400px;}
.ws6d9_c00000{word-spacing:0.270540px;}
.ws4b5_c00000{word-spacing:0.273600px;}
.ws6d8_c00000{word-spacing:0.276552px;}
.ws72b_c00000{word-spacing:0.280800px;}
.ws35c_c00000{word-spacing:0.282564px;}
.ws9d0_c00000{word-spacing:0.288000px;}
.wsd52_c00000{word-spacing:0.288576px;}
.ws5f3_c00000{word-spacing:0.294588px;}
.ws5d5_c00000{word-spacing:0.295200px;}
.ws1ff_c00000{word-spacing:0.300600px;}
.ws6ea_c00000{word-spacing:0.302400px;}
.ws972_c00000{word-spacing:0.306612px;}
.ws14a_c00000{word-spacing:0.309600px;}
.wsb89_c00000{word-spacing:0.312624px;}
.ws95_c00000{word-spacing:0.316800px;}
.wsc13_c00000{word-spacing:0.318636px;}
.wsce_c00000{word-spacing:0.324000px;}
.wsdc8_c00000{word-spacing:0.324648px;}
.ws16b1_c00000{word-spacing:0.329400px;}
.ws10e8_c00000{word-spacing:0.330660px;}
.ws96_c00000{word-spacing:0.331200px;}
.ws16b2_c00000{word-spacing:0.335988px;}
.wsb8a_c00000{word-spacing:0.336672px;}
.ws93c_c00000{word-spacing:0.338400px;}
.ws6a3_c00000{word-spacing:0.342684px;}
.ws644_c00000{word-spacing:0.345600px;}
.ws9a1_c00000{word-spacing:0.348696px;}
.wsfd_c00000{word-spacing:0.352800px;}
.ws818_c00000{word-spacing:0.354708px;}
.ws6a_c00000{word-spacing:0.360000px;}
.wsdb0_c00000{word-spacing:0.360720px;}
.ws957_c00000{word-spacing:0.366732px;}
.ws646_c00000{word-spacing:0.367200px;}
.ws19a2_c00000{word-spacing:0.372744px;}
.wsf34_c00000{word-spacing:0.374400px;}
.ws157b_c00000{word-spacing:0.378756px;}
.ws114e_c00000{word-spacing:0.381600px;}
.ws192a_c00000{word-spacing:0.382104px;}
.ws116d_c00000{word-spacing:0.388800px;}
.wsc43_c00000{word-spacing:0.390780px;}
.wscd_c00000{word-spacing:0.396000px;}
.wsda7_c00000{word-spacing:0.403200px;}
.ws14da_c00000{word-spacing:0.408456px;}
.wsedc_c00000{word-spacing:0.408816px;}
.ws1b25_c00000{word-spacing:0.410400px;}
.wsbf3_c00000{word-spacing:0.414828px;}
.ws14c1_c00000{word-spacing:0.415044px;}
.ws116c_c00000{word-spacing:0.417600px;}
.ws1623_c00000{word-spacing:0.420840px;}
.wsead_c00000{word-spacing:0.421632px;}
.ws1967_c00000{word-spacing:0.424800px;}
.wsc78_c00000{word-spacing:0.426852px;}
.ws1abb_c00000{word-spacing:0.428220px;}
.wsdd0_c00000{word-spacing:0.432000px;}
.ws12cb_c00000{word-spacing:0.432864px;}
.ws14ea_c00000{word-spacing:0.438876px;}
.ws1797_c00000{word-spacing:0.439200px;}
.ws14c0_c00000{word-spacing:0.441396px;}
.ws161f_c00000{word-spacing:0.442224px;}
.ws19db_c00000{word-spacing:0.444168px;}
.ws15c5_c00000{word-spacing:0.444888px;}
.ws16b7_c00000{word-spacing:0.447984px;}
.wsc0c_c00000{word-spacing:0.450900px;}
.wsfea_c00000{word-spacing:0.456912px;}
.wsa45_c00000{word-spacing:0.460800px;}
.ws104c_c00000{word-spacing:0.462924px;}
.wsc89_c00000{word-spacing:0.468000px;}
.ws104d_c00000{word-spacing:0.468936px;}
.ws1162_c00000{word-spacing:0.474948px;}
.ws119d_c00000{word-spacing:0.475200px;}
.ws15c6_c00000{word-spacing:0.480960px;}
.ws213_c00000{word-spacing:0.482400px;}
.ws168b_c00000{word-spacing:0.486972px;}
.ws1b5d_c00000{word-spacing:0.489600px;}
.wsdc9_c00000{word-spacing:0.492984px;}
.ws2ce_c00000{word-spacing:0.496800px;}
.ws8dd_c00000{word-spacing:0.498996px;}
.ws5a0_c00000{word-spacing:0.504000px;}
.ws8fc_c00000{word-spacing:0.505008px;}
.ws8dc_c00000{word-spacing:0.511020px;}
.ws14fc_c00000{word-spacing:0.511200px;}
.wsfe9_c00000{word-spacing:0.517032px;}
.ws71b_c00000{word-spacing:0.518400px;}
.wsb88_c00000{word-spacing:0.523044px;}
.ws895_c00000{word-spacing:0.525600px;}
.ws1375_c00000{word-spacing:0.529056px;}
.ws71c_c00000{word-spacing:0.532800px;}
.ws6a4_c00000{word-spacing:0.535068px;}
.ws3ba_c00000{word-spacing:0.540000px;}
.ws3a4_c00000{word-spacing:0.547092px;}
.ws9d1_c00000{word-spacing:0.547200px;}
.ws10ec_c00000{word-spacing:0.553104px;}
.ws219_c00000{word-spacing:0.554400px;}
.ws6a5_c00000{word-spacing:0.559116px;}
.ws286_c00000{word-spacing:0.561600px;}
.ws675_c00000{word-spacing:0.565128px;}
.ws6cf_c00000{word-spacing:0.568800px;}
.wsb4b_c00000{word-spacing:0.571140px;}
.ws34a_c00000{word-spacing:0.576000px;}
.ws1019_c00000{word-spacing:0.577152px;}
.wsd51_c00000{word-spacing:0.583164px;}
.ws214_c00000{word-spacing:0.583200px;}
.ws11b6_c00000{word-spacing:0.589176px;}
.ws3b9_c00000{word-spacing:0.590400px;}
.ws12ed_c00000{word-spacing:0.595188px;}
.ws7a7_c00000{word-spacing:0.597600px;}
.wsf1d_c00000{word-spacing:0.601200px;}
.ws55a_c00000{word-spacing:0.604800px;}
.ws15c7_c00000{word-spacing:0.607212px;}
.ws37c_c00000{word-spacing:0.612000px;}
.ws442_c00000{word-spacing:0.619200px;}
.ws3a5_c00000{word-spacing:0.619236px;}
.ws8fb_c00000{word-spacing:0.625248px;}
.ws2fd_c00000{word-spacing:0.626400px;}
.ws12ec_c00000{word-spacing:0.631260px;}
.ws7d_c00000{word-spacing:0.633600px;}
.ws2e0_c00000{word-spacing:0.640800px;}
.ws1c9_c00000{word-spacing:0.648000px;}
.ws1c8_c00000{word-spacing:0.655200px;}
.ws10ed_c00000{word-spacing:0.661320px;}
.ws285_c00000{word-spacing:0.662400px;}
.wsdbb_c00000{word-spacing:0.667332px;}
.ws432_c00000{word-spacing:0.669600px;}
.ws1385_c00000{word-spacing:0.673344px;}
.ws37d_c00000{word-spacing:0.676800px;}
.wsc4c_c00000{word-spacing:0.679356px;}
.ws1da_c00000{word-spacing:0.684000px;}
.ws10e9_c00000{word-spacing:0.685368px;}
.ws287_c00000{word-spacing:0.691200px;}
.wsb4c_c00000{word-spacing:0.691380px;}
.wsb85_c00000{word-spacing:0.697392px;}
.ws431_c00000{word-spacing:0.698400px;}
.ws13d9_c00000{word-spacing:0.703404px;}
.ws1db_c00000{word-spacing:0.705600px;}
.ws817_c00000{word-spacing:0.709416px;}
.ws4b8_c00000{word-spacing:0.712800px;}
.wsf85_c00000{word-spacing:0.715428px;}
.ws16ae_c00000{word-spacing:0.718092px;}
.ws7e_c00000{word-spacing:0.720000px;}
.wsb4a_c00000{word-spacing:0.721440px;}
.ws21a_c00000{word-spacing:0.727200px;}
.ws17e4_c00000{word-spacing:0.727452px;}
.ws172d_c00000{word-spacing:0.731268px;}
.wsc77_c00000{word-spacing:0.733464px;}
.ws2fe_c00000{word-spacing:0.734400px;}
.ws107f_c00000{word-spacing:0.737856px;}
.ws9e3_c00000{word-spacing:0.739476px;}
.ws43a_c00000{word-spacing:0.741600px;}
.ws107e_c00000{word-spacing:0.744444px;}
.ws1a33_c00000{word-spacing:0.745488px;}
.ws284_c00000{word-spacing:0.748800px;}
.ws7ff_c00000{word-spacing:0.751032px;}
.wse38_c00000{word-spacing:0.751500px;}
.ws2cd_c00000{word-spacing:0.756000px;}
.ws930_c00000{word-spacing:0.757512px;}
.ws1944_c00000{word-spacing:0.757620px;}
.ws2cf_c00000{word-spacing:0.763200px;}
.ws14b2_c00000{word-spacing:0.763524px;}
.ws16ab_c00000{word-spacing:0.764208px;}
.ws11a0_c00000{word-spacing:0.770400px;}
.ws1609_c00000{word-spacing:0.770796px;}
.ws1355_c00000{word-spacing:0.775548px;}
.ws15f2_c00000{word-spacing:0.777384px;}
.ws1a68_c00000{word-spacing:0.781560px;}
.ws16ac_c00000{word-spacing:0.783972px;}
.ws9cc_c00000{word-spacing:0.784800px;}
.ws5f2_c00000{word-spacing:0.787572px;}
.wscce_c00000{word-spacing:0.788472px;}
.ws186f_c00000{word-spacing:0.790560px;}
.ws19cf_c00000{word-spacing:0.792000px;}
.ws11d0_c00000{word-spacing:0.793584px;}
.ws9f1_c00000{word-spacing:0.797148px;}
.ws2ac_c00000{word-spacing:0.799200px;}
.ws12b4_c00000{word-spacing:0.799596px;}
.wsee0_c00000{word-spacing:0.802224px;}
.ws160f_c00000{word-spacing:0.803736px;}
.ws606_c00000{word-spacing:0.804168px;}
.ws684_c00000{word-spacing:0.805608px;}
.ws100c_c00000{word-spacing:0.806400px;}
.ws13d7_c00000{word-spacing:0.811620px;}
.ws37f_c00000{word-spacing:0.813600px;}
.wsf84_c00000{word-spacing:0.817632px;}
.ws135c_c00000{word-spacing:0.820800px;}
.ws16a3_c00000{word-spacing:0.823500px;}
.wsbd4_c00000{word-spacing:0.823644px;}
.ws1432_c00000{word-spacing:0.828000px;}
.ws1669_c00000{word-spacing:0.829656px;}
.wsf52_c00000{word-spacing:0.835200px;}
.wsd16_c00000{word-spacing:0.835668px;}
.wsccf_c00000{word-spacing:0.838800px;}
.ws812_c00000{word-spacing:0.841680px;}
.ws11ef_c00000{word-spacing:0.842400px;}
.ws11cf_c00000{word-spacing:0.847692px;}
.ws6bd_c00000{word-spacing:0.849600px;}
.wse9b_c00000{word-spacing:0.853704px;}
.ws1d8_c00000{word-spacing:0.856800px;}
.ws1018_c00000{word-spacing:0.859716px;}
.ws36d_c00000{word-spacing:0.864000px;}
.ws92f_c00000{word-spacing:0.865728px;}
.ws9f3_c00000{word-spacing:0.871200px;}
.ws5ef_c00000{word-spacing:0.871740px;}
.ws1aac_c00000{word-spacing:0.877752px;}
.ws2f3_c00000{word-spacing:0.878400px;}
.wsd3b_c00000{word-spacing:0.883764px;}
.ws36c_c00000{word-spacing:0.885600px;}
.ws5f0_c00000{word-spacing:0.889776px;}
.wsbf0_c00000{word-spacing:0.892800px;}
.ws311_c00000{word-spacing:0.895788px;}
.ws3f9_c00000{word-spacing:0.900000px;}
.ws9a2_c00000{word-spacing:0.901800px;}
.wsab2_c00000{word-spacing:0.907200px;}
.wsb50_c00000{word-spacing:0.907812px;}
.ws153b_c00000{word-spacing:0.913824px;}
.ws183_c00000{word-spacing:0.914400px;}
.ws5f1_c00000{word-spacing:0.919836px;}
.wsb2d_c00000{word-spacing:0.921600px;}
.wsa7f_c00000{word-spacing:0.925848px;}
.ws394_c00000{word-spacing:0.928800px;}
.ws6e3_c00000{word-spacing:0.931860px;}
.ws4f9_c00000{word-spacing:0.936000px;}
.ws19a1_c00000{word-spacing:0.937872px;}
.ws9bc_c00000{word-spacing:0.943200px;}
.ws1234_c00000{word-spacing:0.943884px;}
.ws1174_c00000{word-spacing:0.949896px;}
.ws386_c00000{word-spacing:0.950400px;}
.ws18ac_c00000{word-spacing:0.955908px;}
.ws7f_c00000{word-spacing:0.957600px;}
.wsa80_c00000{word-spacing:0.961920px;}
.ws474_c00000{word-spacing:0.964800px;}
.ws1017_c00000{word-spacing:0.967932px;}
.ws37e_c00000{word-spacing:0.972000px;}
.wsd3c_c00000{word-spacing:0.973944px;}
.ws2ad_c00000{word-spacing:0.979200px;}
.wsd17_c00000{word-spacing:0.979956px;}
.wsb86_c00000{word-spacing:0.985968px;}
.ws385_c00000{word-spacing:0.986400px;}
.ws11db_c00000{word-spacing:0.991980px;}
.ws22d_c00000{word-spacing:0.993600px;}
.ws1882_c00000{word-spacing:0.997992px;}
.ws305_c00000{word-spacing:1.000800px;}
.wsa7e_c00000{word-spacing:1.004004px;}
.ws22b_c00000{word-spacing:1.008000px;}
.ws146f_c00000{word-spacing:1.010016px;}
.ws2f2_c00000{word-spacing:1.015200px;}
.ws1581_c00000{word-spacing:1.016028px;}
.ws584_c00000{word-spacing:1.022400px;}
.ws387_c00000{word-spacing:1.029600px;}
.ws1d9_c00000{word-spacing:1.036800px;}
.ws13e3_c00000{word-spacing:1.040076px;}
.ws1d7_c00000{word-spacing:1.044000px;}
.ws7f1_c00000{word-spacing:1.046088px;}
.wsff_c00000{word-spacing:1.051200px;}
.wsbf4_c00000{word-spacing:1.052100px;}
.wsa7d_c00000{word-spacing:1.058112px;}
.ws80_c00000{word-spacing:1.058400px;}
.wsd4a_c00000{word-spacing:1.064124px;}
.ws488_c00000{word-spacing:1.065600px;}
.wse7c_c00000{word-spacing:1.070136px;}
.ws184_c00000{word-spacing:1.072800px;}
.wsec1_c00000{word-spacing:1.076148px;}
.ws22e_c00000{word-spacing:1.080000px;}
.wsd71_c00000{word-spacing:1.082160px;}
.ws100_c00000{word-spacing:1.087200px;}
.ws3a7_c00000{word-spacing:1.088172px;}
.ws14d3_c00000{word-spacing:1.093608px;}
.wsdb9_c00000{word-spacing:1.094184px;}
.ws2f1_c00000{word-spacing:1.094400px;}
.wsb1d_c00000{word-spacing:1.100196px;}
.ws396_c00000{word-spacing:1.101600px;}
.ws1986_c00000{word-spacing:1.106208px;}
.ws16a6_c00000{word-spacing:1.106784px;}
.ws380_c00000{word-spacing:1.108800px;}
.wsdb8_c00000{word-spacing:1.112220px;}
.ws8ee_c00000{word-spacing:1.113372px;}
.ws1198_c00000{word-spacing:1.116000px;}
.ws1016_c00000{word-spacing:1.118232px;}
.ws879_c00000{word-spacing:1.123200px;}
.ws9fe_c00000{word-spacing:1.124244px;}
.ws8ed_c00000{word-spacing:1.126548px;}
.ws1766_c00000{word-spacing:1.130256px;}
.ws304_c00000{word-spacing:1.130400px;}
.ws16a5_c00000{word-spacing:1.133136px;}
.ws158a_c00000{word-spacing:1.136268px;}
.ws1a5_c00000{word-spacing:1.137600px;}
.ws9f0_c00000{word-spacing:1.139724px;}
.ws14a0_c00000{word-spacing:1.142280px;}
.wsd5d_c00000{word-spacing:1.148292px;}
.ws306_c00000{word-spacing:1.152000px;}
.ws1aa_c00000{word-spacing:1.154304px;}
.ws7af_c00000{word-spacing:1.159200px;}
.ws1823_c00000{word-spacing:1.160316px;}
.ws919_c00000{word-spacing:1.162224px;}
.wsd61_c00000{word-spacing:1.164168px;}
.ws14f4_c00000{word-spacing:1.166076px;}
.ws5ed_c00000{word-spacing:1.166328px;}
.ws1a71_c00000{word-spacing:1.166400px;}
.ws14a1_c00000{word-spacing:1.172340px;}
.ws4ea_c00000{word-spacing:1.173600px;}
.ws9fc_c00000{word-spacing:1.178352px;}
.wsc82_c00000{word-spacing:1.180800px;}
.wscd6_c00000{word-spacing:1.184364px;}
.ws1a9_c00000{word-spacing:1.190376px;}
.wsa17_c00000{word-spacing:1.195200px;}
.wsfa6_c00000{word-spacing:1.196388px;}
.ws5ee_c00000{word-spacing:1.202400px;}
.wsb35_c00000{word-spacing:1.208412px;}
.wscd0_c00000{word-spacing:1.209600px;}
.ws16b4_c00000{word-spacing:1.214424px;}
.ws11a4_c00000{word-spacing:1.216800px;}
.wsdee_c00000{word-spacing:1.220436px;}
.ws14ff_c00000{word-spacing:1.224000px;}
.wsa7c_c00000{word-spacing:1.226448px;}
.ws75e_c00000{word-spacing:1.231200px;}
.ws9d9_c00000{word-spacing:1.232460px;}
.ws63a_c00000{word-spacing:1.238400px;}
.wse34_c00000{word-spacing:1.238472px;}
.ws1651_c00000{word-spacing:1.244484px;}
.ws9ae_c00000{word-spacing:1.245600px;}
.ws9da_c00000{word-spacing:1.250496px;}
.ws13c2_c00000{word-spacing:1.252800px;}
.wsdb7_c00000{word-spacing:1.256508px;}
.wsc9a_c00000{word-spacing:1.260000px;}
.wsb1e_c00000{word-spacing:1.262520px;}
.ws76b_c00000{word-spacing:1.267200px;}
.wsd36_c00000{word-spacing:1.268532px;}
.ws65e_c00000{word-spacing:1.274400px;}
.ws1824_c00000{word-spacing:1.274544px;}
.wscd7_c00000{word-spacing:1.280556px;}
.ws409_c00000{word-spacing:1.281600px;}
.wsecf_c00000{word-spacing:1.286568px;}
.ws523_c00000{word-spacing:1.288800px;}
.ws6e2_c00000{word-spacing:1.292580px;}
.ws433_c00000{word-spacing:1.296000px;}
.ws1386_c00000{word-spacing:1.298592px;}
.ws8d7_c00000{word-spacing:1.303200px;}
.ws1650_c00000{word-spacing:1.304604px;}
.ws87c_c00000{word-spacing:1.310400px;}
.ws7f0_c00000{word-spacing:1.310616px;}
.wsecd_c00000{word-spacing:1.316628px;}
.ws4b3_c00000{word-spacing:1.317600px;}
.ws9fd_c00000{word-spacing:1.322640px;}
.wsb7b_c00000{word-spacing:1.324800px;}
.ws4e8_c00000{word-spacing:1.332000px;}
.wsdb6_c00000{word-spacing:1.334664px;}
.ws522_c00000{word-spacing:1.339200px;}
.ws1881_c00000{word-spacing:1.340676px;}
.wse3_c00000{word-spacing:1.346400px;}
.wsdba_c00000{word-spacing:1.346688px;}
.ws8_c00000{word-spacing:1.351080px;}
.ws1241_c00000{word-spacing:1.352700px;}
.ws3ec_c00000{word-spacing:1.353600px;}
.ws310_c00000{word-spacing:1.358712px;}
.ws1f2_c00000{word-spacing:1.360800px;}
.ws395_c00000{word-spacing:1.368000px;}
.ws4b1_c00000{word-spacing:1.375200px;}
.ws152c_c00000{word-spacing:1.376748px;}
.ws1a6_c00000{word-spacing:1.382400px;}
.wsd37_c00000{word-spacing:1.388772px;}
.ws3ef_c00000{word-spacing:1.389600px;}
.ws6e4_c00000{word-spacing:1.394784px;}
.ws4b2_c00000{word-spacing:1.396800px;}
.wsed4_c00000{word-spacing:1.400796px;}
.ws180_c00000{word-spacing:1.404000px;}
.wsca7_c00000{word-spacing:1.406808px;}
.ws3ed_c00000{word-spacing:1.411200px;}
.ws9db_c00000{word-spacing:1.412820px;}
.ws434_c00000{word-spacing:1.418400px;}
.ws1285_c00000{word-spacing:1.418832px;}
.ws7e4_c00000{word-spacing:1.424844px;}
.ws1f1_c00000{word-spacing:1.425600px;}
.wsc2e_c00000{word-spacing:1.430856px;}
.ws666_c00000{word-spacing:1.432800px;}
.ws138c_c00000{word-spacing:1.436868px;}
.ws181_c00000{word-spacing:1.440000px;}
.ws778_c00000{word-spacing:1.442880px;}
.ws639_c00000{word-spacing:1.447200px;}
.wsaa2_c00000{word-spacing:1.448892px;}
.ws1732_c00000{word-spacing:1.449360px;}
.ws4fb_c00000{word-spacing:1.454400px;}
.wsaa0_c00000{word-spacing:1.454904px;}
.ws169f_c00000{word-spacing:1.455948px;}
.wsb81_c00000{word-spacing:1.460916px;}
.ws90c_c00000{word-spacing:1.461600px;}
.ws7e5_c00000{word-spacing:1.466928px;}
.ws87d_c00000{word-spacing:1.468800px;}
.wsdc1_c00000{word-spacing:1.476000px;}
.wsf17_c00000{word-spacing:1.478952px;}
.ws14cd_c00000{word-spacing:1.482300px;}
.wsf1f_c00000{word-spacing:1.483200px;}
.ws8ec_c00000{word-spacing:1.490400px;}
.ws14ce_c00000{word-spacing:1.495476px;}
.ws76a_c00000{word-spacing:1.497600px;}
.ws14cc_c00000{word-spacing:1.502064px;}
.wsded_c00000{word-spacing:1.503000px;}
.ws18bc_c00000{word-spacing:1.504800px;}
.ws1912_c00000{word-spacing:1.508652px;}
.ws1497_c00000{word-spacing:1.509012px;}
.ws182_c00000{word-spacing:1.512000px;}
.ws14f8_c00000{word-spacing:1.515024px;}
.ws1b40_c00000{word-spacing:1.515240px;}
.ws223_c00000{word-spacing:1.519200px;}
.ws1227_c00000{word-spacing:1.521036px;}
.ws19f2_c00000{word-spacing:1.521828px;}
.ws12e3_c00000{word-spacing:1.522224px;}
.wsdbd_c00000{word-spacing:1.524168px;}
.ws1078_c00000{word-spacing:1.526400px;}
.wsaa1_c00000{word-spacing:1.527048px;}
.ws14f3_c00000{word-spacing:1.528416px;}
.wsfd2_c00000{word-spacing:1.533060px;}
.ws7e6_c00000{word-spacing:1.539072px;}
.ws1627_c00000{word-spacing:1.540800px;}
.wsd6f_c00000{word-spacing:1.545084px;}
.wsaf0_c00000{word-spacing:1.548000px;}
.ws14f7_c00000{word-spacing:1.551096px;}
.wsd70_c00000{word-spacing:1.557108px;}
.ws717_c00000{word-spacing:1.562400px;}
.ws14f9_c00000{word-spacing:1.563120px;}
.ws92e_c00000{word-spacing:1.569132px;}
.ws70d_c00000{word-spacing:1.569600px;}
.wsd06_c00000{word-spacing:1.575144px;}
.ws884_c00000{word-spacing:1.576800px;}
.wsfd3_c00000{word-spacing:1.581156px;}
.ws4e9_c00000{word-spacing:1.584000px;}
.ws1994_c00000{word-spacing:1.587168px;}
.ws3dc_c00000{word-spacing:1.591200px;}
.ws167e_c00000{word-spacing:1.593180px;}
.ws84c_c00000{word-spacing:1.598400px;}
.ws166d_c00000{word-spacing:1.599192px;}
.ws1463_c00000{word-spacing:1.605204px;}
.ws883_c00000{word-spacing:1.605600px;}
.ws1422_c00000{word-spacing:1.611216px;}
.wsd20_c00000{word-spacing:1.612800px;}
.ws605_c00000{word-spacing:1.617228px;}
.wsd7a_c00000{word-spacing:1.620000px;}
.ws1117_c00000{word-spacing:1.623240px;}
.ws58f_c00000{word-spacing:1.627200px;}
.ws166e_c00000{word-spacing:1.629252px;}
.ws87b_c00000{word-spacing:1.634400px;}
.ws159e_c00000{word-spacing:1.635264px;}
.ws1118_c00000{word-spacing:1.641276px;}
.ws84d_c00000{word-spacing:1.641600px;}
.wsf4d_c00000{word-spacing:1.647288px;}
.ws3dd_c00000{word-spacing:1.648800px;}
.wse23_c00000{word-spacing:1.653300px;}
.wsa13_c00000{word-spacing:1.656000px;}
.wsf7e_c00000{word-spacing:1.659312px;}
.ws173_c00000{word-spacing:1.663200px;}
.ws613_c00000{word-spacing:1.670400px;}
.wsc61_c00000{word-spacing:1.671336px;}
.wsd05_c00000{word-spacing:1.677348px;}
.ws714_c00000{word-spacing:1.677600px;}
.ws88c_c00000{word-spacing:1.684800px;}
.wsffa_c00000{word-spacing:1.689372px;}
.ws66a_c00000{word-spacing:1.692000px;}
.ws1152_c00000{word-spacing:1.695384px;}
.ws616_c00000{word-spacing:1.699200px;}
.wsd04_c00000{word-spacing:1.701396px;}
.ws4c8_c00000{word-spacing:1.706400px;}
.ws1427_c00000{word-spacing:1.707408px;}
.ws1629_c00000{word-spacing:1.713420px;}
.ws172_c00000{word-spacing:1.713600px;}
.wsaa_c00000{word-spacing:1.720800px;}
.ws1778_c00000{word-spacing:1.725444px;}
.ws635_c00000{word-spacing:1.728000px;}
.ws1811_c00000{word-spacing:1.731456px;}
.ws87a_c00000{word-spacing:1.735200px;}
.wse24_c00000{word-spacing:1.737468px;}
.ws475_c00000{word-spacing:1.742400px;}
.ws615_c00000{word-spacing:1.749600px;}
.ws33f_c00000{word-spacing:1.756800px;}
.ws15ae_c00000{word-spacing:1.761516px;}
.wsa9_c00000{word-spacing:1.764000px;}
.ws1376_c00000{word-spacing:1.767528px;}
.ws340_c00000{word-spacing:1.771200px;}
.ws839_c00000{word-spacing:1.773540px;}
.ws224_c00000{word-spacing:1.778400px;}
.wsebb_c00000{word-spacing:1.779552px;}
.ws14d9_c00000{word-spacing:1.785348px;}
.ws1677_c00000{word-spacing:1.785564px;}
.ws4c7_c00000{word-spacing:1.785600px;}
.ws341_c00000{word-spacing:1.792800px;}
.ws1038_c00000{word-spacing:1.797588px;}
.ws4f_c00000{word-spacing:1.800000px;}
.ws9df_c00000{word-spacing:1.803600px;}
.ws57f_c00000{word-spacing:1.807200px;}
.ws9c6_c00000{word-spacing:1.809612px;}
.ws18d3_c00000{word-spacing:1.811700px;}
.ws8b6_c00000{word-spacing:1.814400px;}
.wsb6e_c00000{word-spacing:1.815624px;}
.ws19ed_c00000{word-spacing:1.818288px;}
.ws690_c00000{word-spacing:1.821600px;}
.wsf5d_c00000{word-spacing:1.821636px;}
.ws17e0_c00000{word-spacing:1.824876px;}
.ws19de_c00000{word-spacing:1.827648px;}
.wsa12_c00000{word-spacing:1.828800px;}
.wsb5a_c00000{word-spacing:1.836000px;}
.ws1640_c00000{word-spacing:1.838052px;}
.ws15b0_c00000{word-spacing:1.839672px;}
.ws9af_c00000{word-spacing:1.843200px;}
.ws14d8_c00000{word-spacing:1.844640px;}
.ws1153_c00000{word-spacing:1.845684px;}
.wse18_c00000{word-spacing:1.850400px;}
.ws16f6_c00000{word-spacing:1.851228px;}
.ws1895_c00000{word-spacing:1.851696px;}
.wscbf_c00000{word-spacing:1.857600px;}
.ws18bd_c00000{word-spacing:1.857708px;}
.ws163f_c00000{word-spacing:1.857816px;}
.ws1138_c00000{word-spacing:1.863720px;}
.ws154f_c00000{word-spacing:1.864404px;}
.ws1582_c00000{word-spacing:1.869732px;}
.ws14d6_c00000{word-spacing:1.870992px;}
.ws718_c00000{word-spacing:1.872000px;}
.ws676_c00000{word-spacing:1.875744px;}
.ws164f_c00000{word-spacing:1.879200px;}
.ws15ad_c00000{word-spacing:1.881756px;}
.ws11d8_c00000{word-spacing:1.886400px;}
.ws92d_c00000{word-spacing:1.887768px;}
.ws19ee_c00000{word-spacing:1.890756px;}
.wse17_c00000{word-spacing:1.893600px;}
.ws677_c00000{word-spacing:1.893780px;}
.ws509_c00000{word-spacing:1.899792px;}
.wsd65_c00000{word-spacing:1.900800px;}
.ws7b7_c00000{word-spacing:1.905804px;}
.ws17a7_c00000{word-spacing:1.908000px;}
.ws1910_c00000{word-spacing:1.910520px;}
.wsb56_c00000{word-spacing:1.911816px;}
.ws1368_c00000{word-spacing:1.915200px;}
.wsc2d_c00000{word-spacing:1.917828px;}
.ws712_c00000{word-spacing:1.922400px;}
.ws9e0_c00000{word-spacing:1.923840px;}
.ws1746_c00000{word-spacing:1.929600px;}
.ws92c_c00000{word-spacing:1.929852px;}
.ws16dd_c00000{word-spacing:1.935864px;}
.ws1549_c00000{word-spacing:1.936800px;}
.ws17da_c00000{word-spacing:1.941876px;}
.ws93d_c00000{word-spacing:1.944000px;}
.ws1777_c00000{word-spacing:1.947888px;}
.wsfcd_c00000{word-spacing:1.951200px;}
.ws10f3_c00000{word-spacing:1.953900px;}
.ws336_c00000{word-spacing:1.958400px;}
.ws2da_c00000{word-spacing:1.959912px;}
.ws226_c00000{word-spacing:1.965600px;}
.ws1a7c_c00000{word-spacing:1.965924px;}
.ws15b1_c00000{word-spacing:1.971936px;}
.wsc88_c00000{word-spacing:1.972800px;}
.ws1283_c00000{word-spacing:1.977948px;}
.ws1183_c00000{word-spacing:1.980000px;}
.ws18a4_c00000{word-spacing:1.983960px;}
.ws17a0_c00000{word-spacing:1.987200px;}
.ws1377_c00000{word-spacing:1.989972px;}
.ws43e_c00000{word-spacing:1.994400px;}
.ws1284_c00000{word-spacing:1.995984px;}
.ws8e2_c00000{word-spacing:2.001600px;}
.wsf4e_c00000{word-spacing:2.001996px;}
.ws1154_c00000{word-spacing:2.008008px;}
.ws2ae_c00000{word-spacing:2.008800px;}
.ws6ad_c00000{word-spacing:2.014020px;}
.ws645_c00000{word-spacing:2.016000px;}
.ws18be_c00000{word-spacing:2.020032px;}
.ws4e4_c00000{word-spacing:2.023200px;}
.ws15af_c00000{word-spacing:2.026044px;}
.wsaf6_c00000{word-spacing:2.030400px;}
.wsdf7_c00000{word-spacing:2.032056px;}
.ws337_c00000{word-spacing:2.037600px;}
.ws50b_c00000{word-spacing:2.038068px;}
.ws50a_c00000{word-spacing:2.044080px;}
.ws2cc_c00000{word-spacing:2.044800px;}
.ws7db_c00000{word-spacing:2.050092px;}
.ws894_c00000{word-spacing:2.052000px;}
.ws527_c00000{word-spacing:2.059200px;}
.ws6ae_c00000{word-spacing:2.062116px;}
.wsb6_c00000{word-spacing:2.066400px;}
.wsed3_c00000{word-spacing:2.068128px;}
.ws51d_c00000{word-spacing:2.073600px;}
.wsf5e_c00000{word-spacing:2.074140px;}
.ws564_c00000{word-spacing:2.080800px;}
.wsc4f_c00000{word-spacing:2.086164px;}
.ws833_c00000{word-spacing:2.088000px;}
.ws7dc_c00000{word-spacing:2.092176px;}
.ws7cf_c00000{word-spacing:2.095200px;}
.ws12d0_c00000{word-spacing:2.098188px;}
.ws6f7_c00000{word-spacing:2.102400px;}
.ws1742_c00000{word-spacing:2.104200px;}
.ws165_c00000{word-spacing:2.109600px;}
.ws9dc_c00000{word-spacing:2.116224px;}
.ws3e2_c00000{word-spacing:2.116800px;}
.ws2af_c00000{word-spacing:2.124000px;}
.wsb7_c00000{word-spacing:2.131200px;}
.ws7da_c00000{word-spacing:2.134260px;}
.ws1a3_c00000{word-spacing:2.138400px;}
.wscdb_c00000{word-spacing:2.140272px;}
.ws2cb_c00000{word-spacing:2.145600px;}
.wsfd4_c00000{word-spacing:2.146284px;}
.wsb52_c00000{word-spacing:2.152296px;}
.ws4e3_c00000{word-spacing:2.152800px;}
.ws1000_c00000{word-spacing:2.158308px;}
.ws51c_c00000{word-spacing:2.160000px;}
.wsb51_c00000{word-spacing:2.164320px;}
.ws99e_c00000{word-spacing:2.167200px;}
.ws2a5_c00000{word-spacing:2.170332px;}
.ws14d4_c00000{word-spacing:2.174040px;}
.ws1a4_c00000{word-spacing:2.174400px;}
.wscfb_c00000{word-spacing:2.176344px;}
.ws178a_c00000{word-spacing:2.180628px;}
.ws8e5_c00000{word-spacing:2.181600px;}
.ws151c_c00000{word-spacing:2.182356px;}
.ws1686_c00000{word-spacing:2.188368px;}
.ws721_c00000{word-spacing:2.188800px;}
.ws4c3_c00000{word-spacing:2.196000px;}
.ws888_c00000{word-spacing:2.200392px;}
.ws66d_c00000{word-spacing:2.203200px;}
.ws146e_c00000{word-spacing:2.206404px;}
.ws8b7_c00000{word-spacing:2.210400px;}
.wsc87_c00000{word-spacing:2.217600px;}
.ws1143_c00000{word-spacing:2.218428px;}
.ws18c8_c00000{word-spacing:2.220156px;}
.ws11f_c00000{word-spacing:2.224440px;}
.wsef7_c00000{word-spacing:2.224800px;}
.ws16a1_c00000{word-spacing:2.226744px;}
.ws18a3_c00000{word-spacing:2.230452px;}
.ws1a20_c00000{word-spacing:2.232000px;}
.ws18c9_c00000{word-spacing:2.233332px;}
.wsa4e_c00000{word-spacing:2.236464px;}
.wsaf2_c00000{word-spacing:2.239200px;}
.ws172c_c00000{word-spacing:2.242224px;}
.ws5fe_c00000{word-spacing:2.242476px;}
.ws630_c00000{word-spacing:2.244168px;}
.ws18e1_c00000{word-spacing:2.246400px;}
.ws19d3_c00000{word-spacing:2.246508px;}
.ws1067_c00000{word-spacing:2.248488px;}
.ws5df_c00000{word-spacing:2.253600px;}
.wsd87_c00000{word-spacing:2.254500px;}
.ws7b6_c00000{word-spacing:2.260512px;}
.wsd88_c00000{word-spacing:2.266524px;}
.wse6c_c00000{word-spacing:2.268000px;}
.ws1242_c00000{word-spacing:2.272536px;}
.ws10a0_c00000{word-spacing:2.275200px;}
.wsb99_c00000{word-spacing:2.278548px;}
.ws90b_c00000{word-spacing:2.282400px;}
.ws1073_c00000{word-spacing:2.284560px;}
.wsb12_c00000{word-spacing:2.290572px;}
.wsc4d_c00000{word-spacing:2.296584px;}
.ws122b_c00000{word-spacing:2.296800px;}
.ws132c_c00000{word-spacing:2.302596px;}
.ws4be_c00000{word-spacing:2.304000px;}
.ws1166_c00000{word-spacing:2.308608px;}
.wsc1f_c00000{word-spacing:2.311200px;}
.wsc4e_c00000{word-spacing:2.314620px;}
.wse0e_c00000{word-spacing:2.318400px;}
.ws7be_c00000{word-spacing:2.320632px;}
.wsd9f_c00000{word-spacing:2.325600px;}
.ws67f_c00000{word-spacing:2.326644px;}
.ws18fb_c00000{word-spacing:2.332656px;}
.ws945_c00000{word-spacing:2.332800px;}
.ws1272_c00000{word-spacing:2.338668px;}
.wsec8_c00000{word-spacing:2.340000px;}
.wsa4d_c00000{word-spacing:2.344680px;}
.ws575_c00000{word-spacing:2.347200px;}
.ws1005_c00000{word-spacing:2.350692px;}
.wsda2_c00000{word-spacing:2.354400px;}
.ws7b5_c00000{word-spacing:2.356704px;}
.ws6ed_c00000{word-spacing:2.361600px;}
.ws1229_c00000{word-spacing:2.362716px;}
.wsdf6_c00000{word-spacing:2.368728px;}
.ws513_c00000{word-spacing:2.368800px;}
.ws887_c00000{word-spacing:2.374740px;}
.ws9ce_c00000{word-spacing:2.376000px;}
.ws2d9_c00000{word-spacing:2.380752px;}
.ws969_c00000{word-spacing:2.383200px;}
.ws9dd_c00000{word-spacing:2.386764px;}
.ws2e5_c00000{word-spacing:2.390400px;}
.ws126c_c00000{word-spacing:2.392776px;}
.wsa3_c00000{word-spacing:2.397600px;}
.ws6b6_c00000{word-spacing:2.398788px;}
.ws1d0_c00000{word-spacing:2.404800px;}
.ws12a5_c00000{word-spacing:2.410812px;}
.ws1ca_c00000{word-spacing:2.412000px;}
.ws1155_c00000{word-spacing:2.416824px;}
.ws2e9_c00000{word-spacing:2.419200px;}
.wsfd5_c00000{word-spacing:2.422836px;}
.wsa2_c00000{word-spacing:2.426400px;}
.ws1570_c00000{word-spacing:2.428848px;}
.ws578_c00000{word-spacing:2.433600px;}
.wseca_c00000{word-spacing:2.434860px;}
.ws6ba_c00000{word-spacing:2.440800px;}
.ws1adf_c00000{word-spacing:2.440872px;}
.ws2e4_c00000{word-spacing:2.448000px;}
.ws162a_c00000{word-spacing:2.452896px;}
.ws94_c00000{word-spacing:2.455200px;}
.ws90a_c00000{word-spacing:2.462400px;}
.ws453_c00000{word-spacing:2.469600px;}
.wsb16_c00000{word-spacing:2.470932px;}
.ws8da_c00000{word-spacing:2.476800px;}
.ws1074_c00000{word-spacing:2.476944px;}
.ws92_c00000{word-spacing:2.484000px;}
.ws17d8_c00000{word-spacing:2.488968px;}
.ws443_c00000{word-spacing:2.491200px;}
.ws77a_c00000{word-spacing:2.494980px;}
.ws1d1_c00000{word-spacing:2.498400px;}
.wsbd2_c00000{word-spacing:2.500992px;}
.ws536_c00000{word-spacing:2.505600px;}
.ws1499_c00000{word-spacing:2.507004px;}
.ws4b4_c00000{word-spacing:2.512800px;}
.ws3a0_c00000{word-spacing:2.513016px;}
.ws126b_c00000{word-spacing:2.519028px;}
.ws93_c00000{word-spacing:2.520000px;}
.ws9ff_c00000{word-spacing:2.525040px;}
.ws138_c00000{word-spacing:2.527200px;}
.ws11e_c00000{word-spacing:2.531052px;}
.ws6ee_c00000{word-spacing:2.534400px;}
.ws8bd_c00000{word-spacing:2.536380px;}
.ws159d_c00000{word-spacing:2.537064px;}
.ws1182_c00000{word-spacing:2.541600px;}
.ws17bc_c00000{word-spacing:2.542968px;}
.ws18db_c00000{word-spacing:2.543076px;}
.ws139_c00000{word-spacing:2.548800px;}
.ws1511_c00000{word-spacing:2.549088px;}
.ws7bc_c00000{word-spacing:2.555100px;}
.ws13a_c00000{word-spacing:2.556000px;}
.ws159b_c00000{word-spacing:2.561112px;}
.ws1834_c00000{word-spacing:2.562732px;}
.ws514_c00000{word-spacing:2.563200px;}
.ws137c_c00000{word-spacing:2.567124px;}
.ws2e6_c00000{word-spacing:2.570400px;}
.ws779_c00000{word-spacing:2.573136px;}
.ws1550_c00000{word-spacing:2.575908px;}
.ws94f_c00000{word-spacing:2.577600px;}
.ws8c0_c00000{word-spacing:2.579148px;}
.ws1626_c00000{word-spacing:2.584800px;}
.wse26_c00000{word-spacing:2.585160px;}
.ws11d_c00000{word-spacing:2.591172px;}
.wse47_c00000{word-spacing:2.592000px;}
.wsb9a_c00000{word-spacing:2.597184px;}
.ws124e_c00000{word-spacing:2.599200px;}
.ws166f_c00000{word-spacing:2.602224px;}
.ws8ea_c00000{word-spacing:2.606400px;}
.ws14f5_c00000{word-spacing:2.608848px;}
.wsbd5_c00000{word-spacing:2.609208px;}
.wse33_c00000{word-spacing:2.613600px;}
.wse25_c00000{word-spacing:2.615220px;}
.ws117e_c00000{word-spacing:2.620800px;}
.wsb10_c00000{word-spacing:2.621232px;}
.ws1144_c00000{word-spacing:2.627244px;}
.ws1645_c00000{word-spacing:2.628000px;}
.wsb11_c00000{word-spacing:2.633256px;}
.ws11c0_c00000{word-spacing:2.635200px;}
.ws1303_c00000{word-spacing:2.639268px;}
.ws1180_c00000{word-spacing:2.642400px;}
.ws5fc_c00000{word-spacing:2.645280px;}
.ws1a77_c00000{word-spacing:2.649600px;}
.ws5fd_c00000{word-spacing:2.651292px;}
.ws48f_c00000{word-spacing:2.656800px;}
.ws151e_c00000{word-spacing:2.657304px;}
.wsb15_c00000{word-spacing:2.663316px;}
.wsd79_c00000{word-spacing:2.664000px;}
.wsaae_c00000{word-spacing:2.671200px;}
.ws1996_c00000{word-spacing:2.675340px;}
.ws1ac0_c00000{word-spacing:2.678400px;}
.ws1a6f_c00000{word-spacing:2.681352px;}
.wsdb1_c00000{word-spacing:2.685600px;}
.ws15d4_c00000{word-spacing:2.687364px;}
.wsc26_c00000{word-spacing:2.692800px;}
.ws9de_c00000{word-spacing:2.693376px;}
.ws886_c00000{word-spacing:2.699388px;}
.ws4a4_c00000{word-spacing:2.700000px;}
.wsd81_c00000{word-spacing:2.705400px;}
.ws3ac_c00000{word-spacing:2.707200px;}
.wsb55_c00000{word-spacing:2.711412px;}
.ws9d8_c00000{word-spacing:2.714400px;}
.ws6b5_c00000{word-spacing:2.717424px;}
.ws663_c00000{word-spacing:2.721600px;}
.ws137d_c00000{word-spacing:2.723436px;}
.ws478_c00000{word-spacing:2.728800px;}
.ws7bd_c00000{word-spacing:2.729448px;}
.ws155e_c00000{word-spacing:2.735460px;}
.wsaa9_c00000{word-spacing:2.736000px;}
.ws507_c00000{word-spacing:2.741472px;}
.ws692_c00000{word-spacing:2.743200px;}
.ws5ff_c00000{word-spacing:2.747484px;}
.wsaf5_c00000{word-spacing:2.750400px;}
.wscf9_c00000{word-spacing:2.753496px;}
.wsacb_c00000{word-spacing:2.757600px;}
.wscfc_c00000{word-spacing:2.759508px;}
.wsaaa_c00000{word-spacing:2.764800px;}
.wsd75_c00000{word-spacing:2.771532px;}
.ws2df_c00000{word-spacing:2.772000px;}
.ws18da_c00000{word-spacing:2.777544px;}
.ws130_c00000{word-spacing:2.779200px;}
.ws1602_c00000{word-spacing:2.783556px;}
.ws691_c00000{word-spacing:2.786400px;}
.wsbd7_c00000{word-spacing:2.789568px;}
.ws23a_c00000{word-spacing:2.793600px;}
.ws159c_c00000{word-spacing:2.795580px;}
.wsb39_c00000{word-spacing:2.800800px;}
.ws19b1_c00000{word-spacing:2.801592px;}
.ws91_c00000{word-spacing:2.808000px;}
.ws4c9_c00000{word-spacing:2.815200px;}
.ws16e2_c00000{word-spacing:2.819628px;}
.ws5b9_c00000{word-spacing:2.822400px;}
.ws7b1_c00000{word-spacing:2.829600px;}
.wsa52_c00000{word-spacing:2.831652px;}
.ws2de_c00000{word-spacing:2.836800px;}
.ws859_c00000{word-spacing:2.837664px;}
.ws4d7_c00000{word-spacing:2.844000px;}
.ws18e4_c00000{word-spacing:2.849688px;}
.ws726_c00000{word-spacing:2.851200px;}
.ws7e0_c00000{word-spacing:2.855700px;}
.ws3b1_c00000{word-spacing:2.858400px;}
.ws12cc_c00000{word-spacing:2.861712px;}
.ws23b_c00000{word-spacing:2.865600px;}
.ws1b54_c00000{word-spacing:2.867724px;}
.ws48e_c00000{word-spacing:2.872800px;}
.ws358_c00000{word-spacing:2.873736px;}
.ws1039_c00000{word-spacing:2.879748px;}
.ws8e9_c00000{word-spacing:2.880000px;}
.ws129e_c00000{word-spacing:2.885760px;}
.ws4bf_c00000{word-spacing:2.887200px;}
.ws794_c00000{word-spacing:2.891772px;}
.ws90_c00000{word-spacing:2.894400px;}
.ws14a6_c00000{word-spacing:2.897784px;}
.ws1a65_c00000{word-spacing:2.898720px;}
.wsdac_c00000{word-spacing:2.901600px;}
.ws1072_c00000{word-spacing:2.903796px;}
.ws18d4_c00000{word-spacing:2.905308px;}
.ws3ad_c00000{word-spacing:2.908800px;}
.ws152d_c00000{word-spacing:2.909808px;}
.wsa5d_c00000{word-spacing:2.911896px;}
.ws1036_c00000{word-spacing:2.915820px;}
.ws147f_c00000{word-spacing:2.916000px;}
.ws17c9_c00000{word-spacing:2.918484px;}
.wse98_c00000{word-spacing:2.921832px;}
.ws825_c00000{word-spacing:2.923200px;}
.ws14df_c00000{word-spacing:2.925072px;}
.wsbd6_c00000{word-spacing:2.927844px;}
.ws7b0_c00000{word-spacing:2.930400px;}
.ws18d5_c00000{word-spacing:2.931660px;}
.wsaad_c00000{word-spacing:2.937600px;}
.ws1b03_c00000{word-spacing:2.938248px;}
.wsf28_c00000{word-spacing:2.939868px;}
.wsc01_c00000{word-spacing:2.944800px;}
.ws98d_c00000{word-spacing:2.944836px;}
.ws17d0_c00000{word-spacing:2.945880px;}
.ws1586_c00000{word-spacing:2.951424px;}
.wsf29_c00000{word-spacing:2.951892px;}
.ws1450_c00000{word-spacing:2.952000px;}
.wsfdc_c00000{word-spacing:2.957904px;}
.ws1b02_c00000{word-spacing:2.958012px;}
.ws1712_c00000{word-spacing:2.959200px;}
.ws1156_c00000{word-spacing:2.962224px;}
.ws11da_c00000{word-spacing:2.963916px;}
.ws82c_c00000{word-spacing:2.966400px;}
.ws9b6_c00000{word-spacing:2.968560px;}
.ws1920_c00000{word-spacing:2.969928px;}
.ws1585_c00000{word-spacing:2.971188px;}
.ws1841_c00000{word-spacing:2.973600px;}
.ws1b3_c00000{word-spacing:2.975940px;}
.ws16b0_c00000{word-spacing:2.977776px;}
.wsd9d_c00000{word-spacing:2.981952px;}
.ws1b59_c00000{word-spacing:2.984364px;}
.ws1b2_c00000{word-spacing:2.987964px;}
.ws1b58_c00000{word-spacing:2.990952px;}
.ws793_c00000{word-spacing:2.993976px;}
.ws542_c00000{word-spacing:2.995200px;}
.wsf2a_c00000{word-spacing:2.999988px;}
.ws1050_c00000{word-spacing:3.002400px;}
.wsb14_c00000{word-spacing:3.006000px;}
.wsa74_c00000{word-spacing:3.009600px;}
.ws13ef_c00000{word-spacing:3.012012px;}
.ws169d_c00000{word-spacing:3.016800px;}
.ws1341_c00000{word-spacing:3.018024px;}
.ws1921_c00000{word-spacing:3.024036px;}
.wsb13_c00000{word-spacing:3.030048px;}
.ws4b7_c00000{word-spacing:3.031200px;}
.ws1026_c00000{word-spacing:3.036060px;}
.ws1456_c00000{word-spacing:3.038400px;}
.ws8c1_c00000{word-spacing:3.042072px;}
.wsd7b_c00000{word-spacing:3.045600px;}
.ws11c6_c00000{word-spacing:3.048084px;}
.ws110e_c00000{word-spacing:3.052800px;}
.wsf7c_c00000{word-spacing:3.054096px;}
.ws563_c00000{word-spacing:3.060000px;}
.wse3b_c00000{word-spacing:3.060108px;}
.ws1998_c00000{word-spacing:3.066120px;}
.ws1357_c00000{word-spacing:3.067200px;}
.wsbf5_c00000{word-spacing:3.072132px;}
.ws1058_c00000{word-spacing:3.074400px;}
.ws858_c00000{word-spacing:3.078144px;}
.wsaf4_c00000{word-spacing:3.081600px;}
.ws11c7_c00000{word-spacing:3.084156px;}
.ws89b_c00000{word-spacing:3.088800px;}
.ws146a_c00000{word-spacing:3.090168px;}
.ws1062_c00000{word-spacing:3.096000px;}
.wsd89_c00000{word-spacing:3.096180px;}
.ws149a_c00000{word-spacing:3.102192px;}
.ws199_c00000{word-spacing:3.103200px;}
.ws1107_c00000{word-spacing:3.108204px;}
.ws52b_c00000{word-spacing:3.110400px;}
.ws1025_c00000{word-spacing:3.114216px;}
.ws19a_c00000{word-spacing:3.117600px;}
.wsbf7_c00000{word-spacing:3.120228px;}
.ws262_c00000{word-spacing:3.124800px;}
.wsbf6_c00000{word-spacing:3.126240px;}
.ws19b_c00000{word-spacing:3.132000px;}
.wscf8_c00000{word-spacing:3.132252px;}
.ws10e1_c00000{word-spacing:3.138264px;}
.ws192_c00000{word-spacing:3.139200px;}
.ws1037_c00000{word-spacing:3.144276px;}
.ws221_c00000{word-spacing:3.146400px;}
.wse19_c00000{word-spacing:3.150288px;}
.ws263_c00000{word-spacing:3.153600px;}
.ws18ec_c00000{word-spacing:3.156300px;}
.ws543_c00000{word-spacing:3.160800px;}
.ws104f_c00000{word-spacing:3.162312px;}
.wsb9_c00000{word-spacing:3.168000px;}
.ws1498_c00000{word-spacing:3.174336px;}
.ws5d8_c00000{word-spacing:3.175200px;}
.ws172b_c00000{word-spacing:3.180348px;}
.ws4b6_c00000{word-spacing:3.182400px;}
.ws1a5c_c00000{word-spacing:3.186360px;}
.ws5d7_c00000{word-spacing:3.189600px;}
.ws10e0_c00000{word-spacing:3.192372px;}
.ws3b2_c00000{word-spacing:3.196800px;}
.ws12d7_c00000{word-spacing:3.198384px;}
.ws222_c00000{word-spacing:3.204000px;}
.ws14b6_c00000{word-spacing:3.204396px;}
.ws1ad6_c00000{word-spacing:3.210408px;}
.ws193_c00000{word-spacing:3.211200px;}
.wsb9c_c00000{word-spacing:3.216420px;}
.wsae_c00000{word-spacing:3.218400px;}
.wsb32_c00000{word-spacing:3.222432px;}
.wsb8_c00000{word-spacing:3.225600px;}
.ws407_c00000{word-spacing:3.228444px;}
.ws297_c00000{word-spacing:3.232800px;}
.ws678_c00000{word-spacing:3.234456px;}
.ws37a_c00000{word-spacing:3.240000px;}
.wsea2_c00000{word-spacing:3.240468px;}
.ws174e_c00000{word-spacing:3.241296px;}
.wsbe0_c00000{word-spacing:3.246480px;}
.wsa53_c00000{word-spacing:3.247200px;}
.ws8ef_c00000{word-spacing:3.247884px;}
.ws151d_c00000{word-spacing:3.252492px;}
.ws264_c00000{word-spacing:3.254400px;}
.wsa51_c00000{word-spacing:3.258504px;}
.ws1566_c00000{word-spacing:3.261060px;}
.ws37b_c00000{word-spacing:3.261600px;}
.wsb33_c00000{word-spacing:3.264516px;}
.ws174d_c00000{word-spacing:3.267648px;}
.ws84e_c00000{word-spacing:3.268800px;}
.ws19a8_c00000{word-spacing:3.270528px;}
.ws89a_c00000{word-spacing:3.276000px;}
.ws1520_c00000{word-spacing:3.276540px;}
.ws1634_c00000{word-spacing:3.280824px;}
.ws1106_c00000{word-spacing:3.282552px;}
.wsa84_c00000{word-spacing:3.283200px;}
.ws17f9_c00000{word-spacing:3.287412px;}
.ws1327_c00000{word-spacing:3.288564px;}
.ws769_c00000{word-spacing:3.290400px;}
.ws16b5_c00000{word-spacing:3.294000px;}
.ws110d_c00000{word-spacing:3.297600px;}
.ws1681_c00000{word-spacing:3.300588px;}
.wse44_c00000{word-spacing:3.304800px;}
.ws18aa_c00000{word-spacing:3.306600px;}
.ws14dd_c00000{word-spacing:3.307176px;}
.ws1697_c00000{word-spacing:3.312000px;}
.ws14a2_c00000{word-spacing:3.312612px;}
.ws1959_c00000{word-spacing:3.313764px;}
.ws14a4_c00000{word-spacing:3.318624px;}
.ws8d9_c00000{word-spacing:3.319200px;}
.ws918_c00000{word-spacing:3.322224px;}
.ws1516_c00000{word-spacing:3.324168px;}
.ws14a3_c00000{word-spacing:3.324636px;}
.ws17d3_c00000{word-spacing:3.326400px;}
.ws14b5_c00000{word-spacing:3.330648px;}
.ws14de_c00000{word-spacing:3.333528px;}
.wsf83_c00000{word-spacing:3.336660px;}
.ws113c_c00000{word-spacing:3.340800px;}
.ws1105_c00000{word-spacing:3.342672px;}
.ws568_c00000{word-spacing:3.348000px;}
.ws1098_c00000{word-spacing:3.348684px;}
.ws1a4d_c00000{word-spacing:3.354696px;}
.ws455_c00000{word-spacing:3.355200px;}
.ws857_c00000{word-spacing:3.360708px;}
.wsaf3_c00000{word-spacing:3.362400px;}
.ws1099_c00000{word-spacing:3.366720px;}
.ws560_c00000{word-spacing:3.369600px;}
.ws12e9_c00000{word-spacing:3.372732px;}
.ws565_c00000{word-spacing:3.376800px;}
.ws18ab_c00000{word-spacing:3.378744px;}
.ws963_c00000{word-spacing:3.384000px;}
.ws17ac_c00000{word-spacing:3.384756px;}
.ws2ef_c00000{word-spacing:3.391200px;}
.ws18ef_c00000{word-spacing:3.396780px;}
.ws11d2_c00000{word-spacing:3.398400px;}
.ws1662_c00000{word-spacing:3.402792px;}
.ws2d0_c00000{word-spacing:3.405600px;}
.ws1068_c00000{word-spacing:3.408804px;}
.ws106_c00000{word-spacing:3.412800px;}
.ws408_c00000{word-spacing:3.414816px;}
.ws1129_c00000{word-spacing:3.420000px;}
.ws1a69_c00000{word-spacing:3.420828px;}
.ws14c6_c00000{word-spacing:3.426840px;}
.wsb61_c00000{word-spacing:3.427200px;}
.ws109a_c00000{word-spacing:3.432852px;}
.ws567_c00000{word-spacing:3.434400px;}
.wsb9d_c00000{word-spacing:3.438864px;}
.wseee_c00000{word-spacing:3.441600px;}
.ws1ad7_c00000{word-spacing:3.444876px;}
.ws783_c00000{word-spacing:3.448800px;}
.ws143b_c00000{word-spacing:3.450888px;}
.ws330_c00000{word-spacing:3.456000px;}
.ws1517_c00000{word-spacing:3.456900px;}
.wse97_c00000{word-spacing:3.462912px;}
.ws782_c00000{word-spacing:3.463200px;}
.ws11fd_c00000{word-spacing:3.468924px;}
.ws2d1_c00000{word-spacing:3.470400px;}
.wscfa_c00000{word-spacing:3.474936px;}
.ws2f0_c00000{word-spacing:3.477600px;}
.ws1775_c00000{word-spacing:3.480948px;}
.ws561_c00000{word-spacing:3.484800px;}
.ws1774_c00000{word-spacing:3.486960px;}
.ws90f_c00000{word-spacing:3.492000px;}
.wsbe1_c00000{word-spacing:3.492972px;}
.ws12d6_c00000{word-spacing:3.498984px;}
.ws2ee_c00000{word-spacing:3.499200px;}
.wse96_c00000{word-spacing:3.504996px;}
.ws1d2_c00000{word-spacing:3.506400px;}
.wsb5_c00000{word-spacing:3.513600px;}
.ws18e3_c00000{word-spacing:3.517020px;}
.wsb2a_c00000{word-spacing:3.520800px;}
.ws7a3_c00000{word-spacing:3.528000px;}
.wsb34_c00000{word-spacing:3.529044px;}
.ws1dc_c00000{word-spacing:3.535200px;}
.wsbe2_c00000{word-spacing:3.541068px;}
.ws840_c00000{word-spacing:3.542400px;}
.ws331_c00000{word-spacing:3.549600px;}
.ws1ae5_c00000{word-spacing:3.553092px;}
.ws8e_c00000{word-spacing:3.556800px;}
.ws173a_c00000{word-spacing:3.559104px;}
.wsba_c00000{word-spacing:3.564000px;}
.wscda_c00000{word-spacing:3.571128px;}
.ws479_c00000{word-spacing:3.571200px;}
.ws762_c00000{word-spacing:3.578400px;}
.ws1554_c00000{word-spacing:3.583152px;}
.ws197_c00000{word-spacing:3.585600px;}
.wsd6b_c00000{word-spacing:3.589164px;}
.ws186b_c00000{word-spacing:3.590460px;}
.ws8f_c00000{word-spacing:3.592800px;}
.wsa04_c00000{word-spacing:3.595176px;}
.wsbba_c00000{word-spacing:3.597048px;}
.ws454_c00000{word-spacing:3.600000px;}
.wsb4_c00000{word-spacing:3.607200px;}
.ws167d_c00000{word-spacing:3.613212px;}
.ws59d_c00000{word-spacing:3.614400px;}
.ws1873_c00000{word-spacing:3.616812px;}
.ws1181_c00000{word-spacing:3.619224px;}
.ws878_c00000{word-spacing:3.621600px;}
.ws172f_c00000{word-spacing:3.623400px;}
.ws9a3_c00000{word-spacing:3.625236px;}
.wsec7_c00000{word-spacing:3.628800px;}
.ws17ba_c00000{word-spacing:3.629988px;}
.ws5c1_c00000{word-spacing:3.631248px;}
.wsbe9_c00000{word-spacing:3.636000px;}
.ws1941_c00000{word-spacing:3.636576px;}
.ws73c_c00000{word-spacing:3.643200px;}
.ws1271_c00000{word-spacing:3.649284px;}
.ws186a_c00000{word-spacing:3.649752px;}
.ws1aa5_c00000{word-spacing:3.650400px;}
.wsf26_c00000{word-spacing:3.657600px;}
.ws1270_c00000{word-spacing:3.661308px;}
.ws14cb_c00000{word-spacing:3.662928px;}
.ws926_c00000{word-spacing:3.664800px;}
.ws16f9_c00000{word-spacing:3.667320px;}
.wsbbb_c00000{word-spacing:3.669516px;}
.ws1997_c00000{word-spacing:3.673332px;}
.ws16bb_c00000{word-spacing:3.676104px;}
.ws1969_c00000{word-spacing:3.679200px;}
.wsef2_c00000{word-spacing:3.679344px;}
.ws16ba_c00000{word-spacing:3.682692px;}
.ws150c_c00000{word-spacing:3.685356px;}
.wsf47_c00000{word-spacing:3.686400px;}
.wsb46_c00000{word-spacing:3.691368px;}
.ws602_c00000{word-spacing:3.697380px;}
.ws11c2_c00000{word-spacing:3.703392px;}
.wsea1_c00000{word-spacing:3.709404px;}
.ws17fb_c00000{word-spacing:3.715200px;}
.wse4e_c00000{word-spacing:3.715416px;}
.ws150d_c00000{word-spacing:3.721428px;}
.ws1194_c00000{word-spacing:3.722400px;}
.ws5c2_c00000{word-spacing:3.727440px;}
.wsbf_c00000{word-spacing:3.729600px;}
.ws181c_c00000{word-spacing:3.733452px;}
.ws4e6_c00000{word-spacing:3.736800px;}
.ws1964_c00000{word-spacing:3.739464px;}
.wsc19_c00000{word-spacing:3.744000px;}
.ws12d8_c00000{word-spacing:3.745476px;}
.ws12a3_c00000{word-spacing:3.751200px;}
.ws600_c00000{word-spacing:3.751488px;}
.ws1a1a_c00000{word-spacing:3.757500px;}
.wsb71_c00000{word-spacing:3.758400px;}
.ws94c_c00000{word-spacing:3.765600px;}
.ws977_c00000{word-spacing:3.772800px;}
.ws155f_c00000{word-spacing:3.775536px;}
.ws944_c00000{word-spacing:3.780000px;}
.wsf62_c00000{word-spacing:3.781548px;}
.ws138e_c00000{word-spacing:3.787200px;}
.wse5c_c00000{word-spacing:3.787560px;}
.wsab5_c00000{word-spacing:3.794400px;}
.ws17c6_c00000{word-spacing:3.799584px;}
.ws562_c00000{word-spacing:3.801600px;}
.ws1151_c00000{word-spacing:3.805596px;}
.wsae3_c00000{word-spacing:3.808800px;}
.wse4f_c00000{word-spacing:3.811608px;}
.ws10a_c00000{word-spacing:3.816000px;}
.wscfd_c00000{word-spacing:3.817620px;}
.ws870_c00000{word-spacing:3.823200px;}
.ws1289_c00000{word-spacing:3.823632px;}
.ws19ff_c00000{word-spacing:3.829644px;}
.ws81f_c00000{word-spacing:3.830400px;}
.ws168c_c00000{word-spacing:3.835656px;}
.ws36e_c00000{word-spacing:3.837600px;}
.ws402_c00000{word-spacing:3.844800px;}
.ws12c3_c00000{word-spacing:3.847680px;}
.ws126_c00000{word-spacing:3.852000px;}
.ws155c_c00000{word-spacing:3.853692px;}
.ws141_c00000{word-spacing:3.859200px;}
.wsd76_c00000{word-spacing:3.859704px;}
.ws1ace_c00000{word-spacing:3.865716px;}
.ws242_c00000{word-spacing:3.866400px;}
.ws1745_c00000{word-spacing:3.871728px;}
.ws125_c00000{word-spacing:3.873600px;}
.ws172a_c00000{word-spacing:3.877740px;}
.ws27d_c00000{word-spacing:3.880800px;}
.ws4e5_c00000{word-spacing:3.888000px;}
.ws7cc_c00000{word-spacing:3.895200px;}
.ws18f0_c00000{word-spacing:3.901788px;}
.ws7f7_c00000{word-spacing:3.902400px;}
.ws7f8_c00000{word-spacing:3.909600px;}
.ws724_c00000{word-spacing:3.916800px;}
.ws12d9_c00000{word-spacing:3.919824px;}
.ws109_c00000{word-spacing:3.924000px;}
.ws344_c00000{word-spacing:3.931200px;}
.ws18ad_c00000{word-spacing:3.937860px;}
.wsbe_c00000{word-spacing:3.938400px;}
.ws1a58_c00000{word-spacing:3.943872px;}
.ws3b3_c00000{word-spacing:3.945600px;}
.ws12aa_c00000{word-spacing:3.949884px;}
.ws142_c00000{word-spacing:3.952800px;}
.ws14ee_c00000{word-spacing:3.955896px;}
.ws4a_c00000{word-spacing:3.960000px;}
.wsb6a_c00000{word-spacing:3.961908px;}
.ws1913_c00000{word-spacing:3.965976px;}
.ws544_c00000{word-spacing:3.967200px;}
.wsb92_c00000{word-spacing:3.967920px;}
.ws1b21_c00000{word-spacing:3.972564px;}
.ws986_c00000{word-spacing:3.973932px;}
.ws4a1_c00000{word-spacing:3.974400px;}
.ws158e_c00000{word-spacing:3.979152px;}
.wsa28_c00000{word-spacing:3.979944px;}
.ws243_c00000{word-spacing:3.981600px;}
.wsf61_c00000{word-spacing:3.985956px;}
.ws27e_c00000{word-spacing:3.988800px;}
.wsd5c_c00000{word-spacing:3.991968px;}
.ws2ff_c00000{word-spacing:3.996000px;}
.ws6b1_c00000{word-spacing:3.997980px;}
.wsadf_c00000{word-spacing:3.998916px;}
.ws68d_c00000{word-spacing:4.003200px;}
.ws17cb_c00000{word-spacing:4.005504px;}
.wsc1a_c00000{word-spacing:4.010400px;}
.wsa5e_c00000{word-spacing:4.012092px;}
.wscff_c00000{word-spacing:4.016016px;}
.ws1583_c00000{word-spacing:4.017600px;}
.wsade_c00000{word-spacing:4.018680px;}
.ws820_c00000{word-spacing:4.024800px;}
.ws1ac5_c00000{word-spacing:4.025268px;}
.ws1611_c00000{word-spacing:4.032000px;}
.wsd74_c00000{word-spacing:4.034052px;}
.ws1593_c00000{word-spacing:4.038444px;}
.wsa36_c00000{word-spacing:4.039200px;}
.ws1580_c00000{word-spacing:4.040064px;}
.ws18ae_c00000{word-spacing:4.046076px;}
.ws148_c00000{word-spacing:4.046400px;}
.ws17cc_c00000{word-spacing:4.051620px;}
.wsd9c_c00000{word-spacing:4.052088px;}
.ws13cb_c00000{word-spacing:4.053600px;}
.ws987_c00000{word-spacing:4.058100px;}
.ws1fe_c00000{word-spacing:4.060800px;}
.ws157f_c00000{word-spacing:4.064112px;}
.ws64a_c00000{word-spacing:4.068000px;}
.wsb47_c00000{word-spacing:4.070124px;}
.wsf3b_c00000{word-spacing:4.075200px;}
.ws11c3_c00000{word-spacing:4.076136px;}
.ws19a5_c00000{word-spacing:4.082400px;}
.ws18bf_c00000{word-spacing:4.088160px;}
.wsb3_c00000{word-spacing:4.089600px;}
.wsf2e_c00000{word-spacing:4.094172px;}
.ws11f0_c00000{word-spacing:4.096800px;}
.ws8a3_c00000{word-spacing:4.100184px;}
.ws345_c00000{word-spacing:4.104000px;}
.ws8a5_c00000{word-spacing:4.106196px;}
.ws1061_c00000{word-spacing:4.111200px;}
.ws19da_c00000{word-spacing:4.112208px;}
.wsbf8_c00000{word-spacing:4.118220px;}
.ws11c1_c00000{word-spacing:4.118400px;}
.ws8a4_c00000{word-spacing:4.124232px;}
.ws9b2_c00000{word-spacing:4.125600px;}
.wsf2d_c00000{word-spacing:4.130244px;}
.wscc4_c00000{word-spacing:4.132800px;}
.ws1615_c00000{word-spacing:4.136256px;}
.ws132_c00000{word-spacing:4.140000px;}
.ws654_c00000{word-spacing:4.142268px;}
.ws4ff_c00000{word-spacing:4.147200px;}
.ws15d2_c00000{word-spacing:4.154292px;}
.ws771_c00000{word-spacing:4.154400px;}
.wsb68_c00000{word-spacing:4.160304px;}
.ws149_c00000{word-spacing:4.161600px;}
.wsd6a_c00000{word-spacing:4.166316px;}
.ws94e_c00000{word-spacing:4.168800px;}
.ws621_c00000{word-spacing:4.176000px;}
.ws19ba_c00000{word-spacing:4.178340px;}
.ws97b_c00000{word-spacing:4.183200px;}
.ws1765_c00000{word-spacing:4.184352px;}
.ws1739_c00000{word-spacing:4.190364px;}
.wsa10_c00000{word-spacing:4.190400px;}
.ws1999_c00000{word-spacing:4.196376px;}
.ws346_c00000{word-spacing:4.197600px;}
.ws139b_c00000{word-spacing:4.202388px;}
.ws772_c00000{word-spacing:4.204800px;}
.wsdfb_c00000{word-spacing:4.208400px;}
.wsa86_c00000{word-spacing:4.212000px;}
.ws601_c00000{word-spacing:4.214412px;}
.ws86_c00000{word-spacing:4.219200px;}
.ws988_c00000{word-spacing:4.220424px;}
.ws649_c00000{word-spacing:4.226400px;}
.ws1890_c00000{word-spacing:4.226436px;}
.ws65f_c00000{word-spacing:4.233600px;}
.ws907_c00000{word-spacing:4.240800px;}
.ws660_c00000{word-spacing:4.248000px;}
.ws12f1_c00000{word-spacing:4.250484px;}
.ws94d_c00000{word-spacing:4.255200px;}
.ws14b1_c00000{word-spacing:4.256496px;}
.ws620_c00000{word-spacing:4.262400px;}
.ws17c4_c00000{word-spacing:4.268520px;}
.ws288_c00000{word-spacing:4.269600px;}
.wsf74_c00000{word-spacing:4.274532px;}
.wsb1_c00000{word-spacing:4.276800px;}
.wse8_c00000{word-spacing:4.284000px;}
.ws674_c00000{word-spacing:4.286556px;}
.ws28c_c00000{word-spacing:4.291200px;}
.wsc3c_c00000{word-spacing:4.292568px;}
.wse9_c00000{word-spacing:4.298400px;}
.ws19fb_c00000{word-spacing:4.298580px;}
.wsf7_c00000{word-spacing:4.305600px;}
.ws1b44_c00000{word-spacing:4.308552px;}
.wsc0b_c00000{word-spacing:4.310604px;}
.wsb2_c00000{word-spacing:4.312800px;}
.ws397_c00000{word-spacing:4.316616px;}
.ws500_c00000{word-spacing:4.320000px;}
.wsbc3_c00000{word-spacing:4.322628px;}
.ws87_c00000{word-spacing:4.327200px;}
.ws813_c00000{word-spacing:4.328640px;}
.ws75b_c00000{word-spacing:4.334400px;}
.wsa02_c00000{word-spacing:4.334652px;}
.wsb83_c00000{word-spacing:4.340664px;}
.wsa61_c00000{word-spacing:4.341492px;}
.ws131_c00000{word-spacing:4.341600px;}
.ws5a5_c00000{word-spacing:4.346676px;}
.ws17f8_c00000{word-spacing:4.348080px;}
.ws501_c00000{word-spacing:4.348800px;}
.ws11b5_c00000{word-spacing:4.352688px;}
.ws1d3_c00000{word-spacing:4.356000px;}
.ws673_c00000{word-spacing:4.358700px;}
.ws17b9_c00000{word-spacing:4.361256px;}
.wsa8c_c00000{word-spacing:4.363200px;}
.wsa60_c00000{word-spacing:4.367844px;}
.ws10c8_c00000{word-spacing:4.370400px;}
.ws31a_c00000{word-spacing:4.370724px;}
.wsad8_c00000{word-spacing:4.374432px;}
.ws139c_c00000{word-spacing:4.376736px;}
.ws773_c00000{word-spacing:4.377600px;}
.wsad9_c00000{word-spacing:4.381020px;}
.ws1a19_c00000{word-spacing:4.382748px;}
.wse59_c00000{word-spacing:4.384800px;}
.ws15d3_c00000{word-spacing:4.388760px;}
.wsf3c_c00000{word-spacing:4.392000px;}
.ws16f4_c00000{word-spacing:4.394196px;}
.ws867_c00000{word-spacing:4.394772px;}
.ws12dd_c00000{word-spacing:4.399200px;}
.ws10f0_c00000{word-spacing:4.400784px;}
.ws1702_c00000{word-spacing:4.402224px;}
.ws1940_c00000{word-spacing:4.406400px;}
.ws13d8_c00000{word-spacing:4.406796px;}
.ws868_c00000{word-spacing:4.412808px;}
.ws1187_c00000{word-spacing:4.413600px;}
.ws1add_c00000{word-spacing:4.418820px;}
.ws9fb_c00000{word-spacing:4.424832px;}
.ws116f_c00000{word-spacing:4.430844px;}
.wsb8c_c00000{word-spacing:4.435200px;}
.wsc06_c00000{word-spacing:4.436856px;}
.ws75c_c00000{word-spacing:4.442400px;}
.ws1372_c00000{word-spacing:4.442868px;}
.ws148b_c00000{word-spacing:4.448880px;}
.ws1a08_c00000{word-spacing:4.454892px;}
.ws12e7_c00000{word-spacing:4.456800px;}
.wsbc2_c00000{word-spacing:4.460904px;}
.ws11df_c00000{word-spacing:4.464000px;}
.wsbc1_c00000{word-spacing:4.466916px;}
.wsa6c_c00000{word-spacing:4.471200px;}
.ws131f_c00000{word-spacing:4.472928px;}
.wsc71_c00000{word-spacing:4.478400px;}
.ws162b_c00000{word-spacing:4.478940px;}
.wsa01_c00000{word-spacing:4.484952px;}
.ws1832_c00000{word-spacing:4.485600px;}
.ws10df_c00000{word-spacing:4.490964px;}
.ws73b_c00000{word-spacing:4.492800px;}
.wseda_c00000{word-spacing:4.496976px;}
.ws975_c00000{word-spacing:4.500000px;}
.ws9ac_c00000{word-spacing:4.507200px;}
.ws4f8_c00000{word-spacing:4.514400px;}
.ws148a_c00000{word-spacing:4.515012px;}
.ws1756_c00000{word-spacing:4.521024px;}
.ws3be_c00000{word-spacing:4.521600px;}
.wseef_c00000{word-spacing:4.527036px;}
.ws2c6_c00000{word-spacing:4.528800px;}
.ws6af_c00000{word-spacing:4.533048px;}
.ws557_c00000{word-spacing:4.536000px;}
.ws12b9_c00000{word-spacing:4.539060px;}
.ws20c_c00000{word-spacing:4.543200px;}
.ws1401_c00000{word-spacing:4.545072px;}
.wsb29_c00000{word-spacing:4.550400px;}
.ws162c_c00000{word-spacing:4.551084px;}
.ws12f2_c00000{word-spacing:4.557096px;}
.ws56e_c00000{word-spacing:4.557600px;}
.wsedb_c00000{word-spacing:4.563108px;}
.ws880_c00000{word-spacing:4.564800px;}
.ws290_c00000{word-spacing:4.572000px;}
.ws1400_c00000{word-spacing:4.575132px;}
.ws2a0_c00000{word-spacing:4.579200px;}
.ws141e_c00000{word-spacing:4.581144px;}
.ws3bf_c00000{word-spacing:4.586400px;}
.wsca6_c00000{word-spacing:4.587156px;}
.ws53e_c00000{word-spacing:4.593600px;}
.ws63b_c00000{word-spacing:4.600800px;}
.ws33d_c00000{word-spacing:4.608000px;}
.ws2c5_c00000{word-spacing:4.615200px;}
.ws20d_c00000{word-spacing:4.622400px;}
.wsae4_c00000{word-spacing:4.623228px;}
.ws140e_c00000{word-spacing:4.629240px;}
.ws18c_c00000{word-spacing:4.629600px;}
.ws6b0_c00000{word-spacing:4.635252px;}
.ws349_c00000{word-spacing:4.636800px;}
.ws140d_c00000{word-spacing:4.641264px;}
.ws4f7_c00000{word-spacing:4.644000px;}
.ws12b8_c00000{word-spacing:4.647276px;}
.ws18d_c00000{word-spacing:4.651200px;}
.ws19d4_c00000{word-spacing:4.653288px;}
.ws435_c00000{word-spacing:4.658400px;}
.wsb84_c00000{word-spacing:4.659300px;}
.ws1277_c00000{word-spacing:4.665312px;}
.ws28f_c00000{word-spacing:4.665600px;}
.ws1874_c00000{word-spacing:4.670892px;}
.ws860_c00000{word-spacing:4.671324px;}
.ws198_c00000{word-spacing:4.672800px;}
.ws23c_c00000{word-spacing:4.677336px;}
.ws3bd_c00000{word-spacing:4.680000px;}
.wsbdd_c00000{word-spacing:4.683348px;}
.ws33e_c00000{word-spacing:4.687200px;}
.ws1244_c00000{word-spacing:4.689360px;}
.ws56f_c00000{word-spacing:4.694400px;}
.ws1354_c00000{word-spacing:4.695372px;}
.ws1b46_c00000{word-spacing:4.697244px;}
.ws154e_c00000{word-spacing:4.701384px;}
.ws5b6_c00000{word-spacing:4.701600px;}
.ws1081_c00000{word-spacing:4.703832px;}
.ws109e_c00000{word-spacing:4.708800px;}
.ws158b_c00000{word-spacing:4.710420px;}
.wse53_c00000{word-spacing:4.716000px;}
.ws194a_c00000{word-spacing:4.717008px;}
.ws199f_c00000{word-spacing:4.719420px;}
.wsfb7_c00000{word-spacing:4.723200px;}
.ws167f_c00000{word-spacing:4.723596px;}
.ws85c_c00000{word-spacing:4.725432px;}
.ws1949_c00000{word-spacing:4.730184px;}
.ws1720_c00000{word-spacing:4.730400px;}
.wsb69_c00000{word-spacing:4.731444px;}
.ws14c4_c00000{word-spacing:4.736772px;}
.ws15f0_c00000{word-spacing:4.737600px;}
.ws1082_c00000{word-spacing:4.743360px;}
.ws1406_c00000{word-spacing:4.744800px;}
.ws141d_c00000{word-spacing:4.749480px;}
.ws1889_c00000{word-spacing:4.749948px;}
.ws246_c00000{word-spacing:4.752000px;}
.ws13d2_c00000{word-spacing:4.755492px;}
.ws17ed_c00000{word-spacing:4.756536px;}
.wsa_c00000{word-spacing:4.757508px;}
.ws11e0_c00000{word-spacing:4.759200px;}
.wsfdf_c00000{word-spacing:4.761504px;}
.wsb0a_c00000{word-spacing:4.766400px;}
.ws1076_c00000{word-spacing:4.767516px;}
.wsdf8_c00000{word-spacing:4.773528px;}
.ws132b_c00000{word-spacing:4.773600px;}
.wse9a_c00000{word-spacing:4.779540px;}
.ws1410_c00000{word-spacing:4.780800px;}
.ws10ef_c00000{word-spacing:4.785552px;}
.ws1b13_c00000{word-spacing:4.788000px;}
.ws188a_c00000{word-spacing:4.789476px;}
.wsfd0_c00000{word-spacing:4.791564px;}
.ws11a7_c00000{word-spacing:4.795200px;}
.ws655_c00000{word-spacing:4.797576px;}
.ws16fe_c00000{word-spacing:4.802400px;}
.ws1075_c00000{word-spacing:4.803588px;}
.wsae7_c00000{word-spacing:4.809600px;}
.wsc1c_c00000{word-spacing:4.816800px;}
.ws88f_c00000{word-spacing:4.824000px;}
.wsfd1_c00000{word-spacing:4.827636px;}
.ws890_c00000{word-spacing:4.831200px;}
.ws1755_c00000{word-spacing:4.833648px;}
.ws9f6_c00000{word-spacing:4.838400px;}
.wsc07_c00000{word-spacing:4.839660px;}
.wsb0b_c00000{word-spacing:4.845600px;}
.ws10ee_c00000{word-spacing:4.845672px;}
.wsc3b_c00000{word-spacing:4.851684px;}
.ws11bc_c00000{word-spacing:4.852800px;}
.ws16ec_c00000{word-spacing:4.857696px;}
.ws11ae_c00000{word-spacing:4.860000px;}
.wsfe0_c00000{word-spacing:4.863708px;}
.ws59c_c00000{word-spacing:4.867200px;}
.ws166b_c00000{word-spacing:4.869720px;}
.ws1658_c00000{word-spacing:4.874400px;}
.ws861_c00000{word-spacing:4.875732px;}
.ws162_c00000{word-spacing:4.881600px;}
.wsc3a_c00000{word-spacing:4.881744px;}
.wsed7_c00000{word-spacing:4.887756px;}
.ws2bf_c00000{word-spacing:4.888800px;}
.wsed0_c00000{word-spacing:4.893768px;}
.ws83_c00000{word-spacing:4.896000px;}
.ws7e8_c00000{word-spacing:4.899780px;}
.ws3bb_c00000{word-spacing:4.903200px;}
.wsdfa_c00000{word-spacing:4.905792px;}
.ws82_c00000{word-spacing:4.910400px;}
.wse77_c00000{word-spacing:4.911804px;}
.ws1f5_c00000{word-spacing:4.917600px;}
.ws18fd_c00000{word-spacing:4.917816px;}
.wsbde_c00000{word-spacing:4.923828px;}
.ws161_c00000{word-spacing:4.924800px;}
.ws1ad8_c00000{word-spacing:4.929840px;}
.ws9d_c00000{word-spacing:4.932000px;}
.wsede_c00000{word-spacing:4.935852px;}
.ws4e1_c00000{word-spacing:4.939200px;}
.ws59b_c00000{word-spacing:4.946400px;}
.wsa03_c00000{word-spacing:4.947876px;}
.ws274_c00000{word-spacing:4.953600px;}
.ws672_c00000{word-spacing:4.953888px;}
.ws582_c00000{word-spacing:4.960800px;}
.ws160_c00000{word-spacing:4.968000px;}
.ws1e4_c00000{word-spacing:4.975200px;}
.ws4fe_c00000{word-spacing:4.982400px;}
.wsf14_c00000{word-spacing:4.983948px;}
.ws247_c00000{word-spacing:4.989600px;}
.wsb_c00000{word-spacing:4.991868px;}
.ws108_c00000{word-spacing:4.996800px;}
.ws5b8_c00000{word-spacing:5.004000px;}
.ws98a_c00000{word-spacing:5.007996px;}
.ws4e2_c00000{word-spacing:5.011200px;}
.ws1466_c00000{word-spacing:5.014008px;}
.ws105_c00000{word-spacing:5.018400px;}
.ws29f_c00000{word-spacing:5.025600px;}
.ws10aa_c00000{word-spacing:5.026032px;}
.ws989_c00000{word-spacing:5.032044px;}
.ws393_c00000{word-spacing:5.032800px;}
.wsc3f_c00000{word-spacing:5.038056px;}
.ws2be_c00000{word-spacing:5.040000px;}
.wse84_c00000{word-spacing:5.044068px;}
.ws9f7_c00000{word-spacing:5.047200px;}
.ws11fc_c00000{word-spacing:5.050080px;}
.ws9e_c00000{word-spacing:5.054400px;}
.wsc62_c00000{word-spacing:5.056092px;}
.ws392_c00000{word-spacing:5.061600px;}
.wsdf9_c00000{word-spacing:5.062104px;}
.ws17bb_c00000{word-spacing:5.066172px;}
.ws1ade_c00000{word-spacing:5.068116px;}
.ws3bc_c00000{word-spacing:5.068800px;}
.ws1260_c00000{word-spacing:5.074128px;}
.wsc58_c00000{word-spacing:5.076000px;}
.ws1563_c00000{word-spacing:5.079348px;}
.ws104_c00000{word-spacing:5.083200px;}
.ws1871_c00000{word-spacing:5.085936px;}
.ws1261_c00000{word-spacing:5.086152px;}
.ws124b_c00000{word-spacing:5.090400px;}
.wsfed_c00000{word-spacing:5.092164px;}
.ws15be_c00000{word-spacing:5.092524px;}
.ws11e4_c00000{word-spacing:5.097600px;}
.wsfa9_c00000{word-spacing:5.098176px;}
.ws98b_c00000{word-spacing:5.104188px;}
.ws780_c00000{word-spacing:5.104800px;}
.ws17ea_c00000{word-spacing:5.105700px;}
.wsf13_c00000{word-spacing:5.110200px;}
.ws77f_c00000{word-spacing:5.112000px;}
.ws85b_c00000{word-spacing:5.116212px;}
.ws1897_c00000{word-spacing:5.119200px;}
.ws1295_c00000{word-spacing:5.122224px;}
.ws16a4_c00000{word-spacing:5.125464px;}
.ws4a8_c00000{word-spacing:5.126400px;}
.wsfeb_c00000{word-spacing:5.128236px;}
.ws17eb_c00000{word-spacing:5.132052px;}
.ws19b3_c00000{word-spacing:5.133600px;}
.ws656_c00000{word-spacing:5.134248px;}
.ws1806_c00000{word-spacing:5.140260px;}
.ws4a7_c00000{word-spacing:5.140800px;}
.ws763_c00000{word-spacing:5.148000px;}
.ws85d_c00000{word-spacing:5.152284px;}
.wscba_c00000{word-spacing:5.155200px;}
.wscb9_c00000{word-spacing:5.162400px;}
.ws1a4b_c00000{word-spacing:5.164308px;}
.ws127f_c00000{word-spacing:5.169600px;}
.wsfa8_c00000{word-spacing:5.176332px;}
.ws140f_c00000{word-spacing:5.176800px;}
.ws14ed_c00000{word-spacing:5.182344px;}
.ws8cb_c00000{word-spacing:5.184000px;}
.ws1278_c00000{word-spacing:5.188356px;}
.ws572_c00000{word-spacing:5.191200px;}
.ws1146_c00000{word-spacing:5.198400px;}
.ws149b_c00000{word-spacing:5.200380px;}
.ws18cb_c00000{word-spacing:5.205600px;}
.wsb1a_c00000{word-spacing:5.206392px;}
.ws1449_c00000{word-spacing:5.212404px;}
.ws8ca_c00000{word-spacing:5.212800px;}
.ws1389_c00000{word-spacing:5.218416px;}
.wsc70_c00000{word-spacing:5.220000px;}
.wsb19_c00000{word-spacing:5.224428px;}
.ws9f8_c00000{word-spacing:5.227200px;}
.ws1a9d_c00000{word-spacing:5.230440px;}
.ws108a_c00000{word-spacing:5.234400px;}
.ws182c_c00000{word-spacing:5.236452px;}
.wsae0_c00000{word-spacing:5.241600px;}
.ws1a73_c00000{word-spacing:5.242464px;}
.ws17a3_c00000{word-spacing:5.248476px;}
.wsaa6_c00000{word-spacing:5.248800px;}
.wsdd4_c00000{word-spacing:5.254488px;}
.wsc72_c00000{word-spacing:5.256000px;}
.wsfa7_c00000{word-spacing:5.260500px;}
.wsa5b_c00000{word-spacing:5.263200px;}
.ws67b_c00000{word-spacing:5.266512px;}
.ws6f3_c00000{word-spacing:5.270400px;}
.wsfec_c00000{word-spacing:5.272524px;}
.wsb8e_c00000{word-spacing:5.277600px;}
.ws7e7_c00000{word-spacing:5.278536px;}
.ws124f_c00000{word-spacing:5.284548px;}
.wsc98_c00000{word-spacing:5.284800px;}
.ws320_c00000{word-spacing:5.290560px;}
.ws496_c00000{word-spacing:5.292000px;}
.ws156c_c00000{word-spacing:5.296572px;}
.wscd3_c00000{word-spacing:5.299200px;}
.ws67a_c00000{word-spacing:5.302584px;}
.ws6f4_c00000{word-spacing:5.306400px;}
.wsb05_c00000{word-spacing:5.313600px;}
.wsbff_c00000{word-spacing:5.320800px;}
.ws9f9_c00000{word-spacing:5.328000px;}
.ws12b_c00000{word-spacing:5.335200px;}
.wsf3_c00000{word-spacing:5.342400px;}
.ws2c2_c00000{word-spacing:5.349600px;}
.wsd03_c00000{word-spacing:5.356692px;}
.ws485_c00000{word-spacing:5.356800px;}
.wsc38_c00000{word-spacing:5.362704px;}
.ws497_c00000{word-spacing:5.364000px;}
.ws1aa1_c00000{word-spacing:5.368716px;}
.ws484_c00000{word-spacing:5.371200px;}
.ws936_c00000{word-spacing:5.374728px;}
.ws7f9_c00000{word-spacing:5.378400px;}
.ws1b4_c00000{word-spacing:5.380740px;}
.ws4a9_c00000{word-spacing:5.385600px;}
.ws98c_c00000{word-spacing:5.386752px;}
.ws1294_c00000{word-spacing:5.392764px;}
.wsf4_c00000{word-spacing:5.392800px;}
.ws19f0_c00000{word-spacing:5.395572px;}
.wsd01_c00000{word-spacing:5.398776px;}
.ws59a_c00000{word-spacing:5.400000px;}
.ws7ea_c00000{word-spacing:5.404788px;}
.ws832_c00000{word-spacing:5.407200px;}
.ws7e9_c00000{word-spacing:5.410800px;}
.ws710_c00000{word-spacing:5.414400px;}
.wsa82_c00000{word-spacing:5.416812px;}
.ws82f_c00000{word-spacing:5.421600px;}
.ws10b4_c00000{word-spacing:5.422824px;}
.ws1592_c00000{word-spacing:5.428512px;}
.wsb59_c00000{word-spacing:5.428800px;}
.ws797_c00000{word-spacing:5.428836px;}
.wsa9f_c00000{word-spacing:5.434848px;}
.ws19f1_c00000{word-spacing:5.435100px;}
.wsb0f_c00000{word-spacing:5.436000px;}
.ws1565_c00000{word-spacing:5.441688px;}
.ws12c_c00000{word-spacing:5.443200px;}
.ws12d_c00000{word-spacing:5.450400px;}
.ws1351_c00000{word-spacing:5.452884px;}
.ws19b9_c00000{word-spacing:5.454864px;}
.ws16d7_c00000{word-spacing:5.457600px;}
.ws798_c00000{word-spacing:5.458896px;}
.ws18ee_c00000{word-spacing:5.464908px;}
.ws6b4_c00000{word-spacing:5.470920px;}
.ws1968_c00000{word-spacing:5.472000px;}
.ws19b8_c00000{word-spacing:5.474628px;}
.wsc3d_c00000{word-spacing:5.476932px;}
.ws7c5_c00000{word-spacing:5.479200px;}
.ws981_c00000{word-spacing:5.481216px;}
.wse66_c00000{word-spacing:5.482224px;}
.ws11c4_c00000{word-spacing:5.482944px;}
.ws1af5_c00000{word-spacing:5.486400px;}
.ws1564_c00000{word-spacing:5.487804px;}
.ws1614_c00000{word-spacing:5.488956px;}
.ws175d_c00000{word-spacing:5.493600px;}
.wsc3e_c00000{word-spacing:5.494968px;}
.ws1711_c00000{word-spacing:5.500800px;}
.ws6b3_c00000{word-spacing:5.500980px;}
.wsf05_c00000{word-spacing:5.506992px;}
.ws13f3_c00000{word-spacing:5.508000px;}
.wse83_c00000{word-spacing:5.513004px;}
.ws982_c00000{word-spacing:5.514156px;}
.ws14e0_c00000{word-spacing:5.519016px;}
.wsb0c_c00000{word-spacing:5.522400px;}
.wsf12_c00000{word-spacing:5.525028px;}
.ws1059_c00000{word-spacing:5.529600px;}
.ws1352_c00000{word-spacing:5.531040px;}
.ws64d_c00000{word-spacing:5.536800px;}
.ws14e1_c00000{word-spacing:5.543064px;}
.ws61a_c00000{word-spacing:5.544000px;}
.wsf60_c00000{word-spacing:5.549076px;}
.ws6cb_c00000{word-spacing:5.551200px;}
.wsb1c_c00000{word-spacing:5.555088px;}
.ws13c_c00000{word-spacing:5.558400px;}
.ws182e_c00000{word-spacing:5.561100px;}
.wsb5d_c00000{word-spacing:5.565600px;}
.wsd3e_c00000{word-spacing:5.567112px;}
.wsbcf_c00000{word-spacing:5.572800px;}
.wsf06_c00000{word-spacing:5.573124px;}
.ws1708_c00000{word-spacing:5.579136px;}
.ws1b37_c00000{word-spacing:5.580000px;}
.wsf04_c00000{word-spacing:5.585148px;}
.ws13b9_c00000{word-spacing:5.587200px;}
.wsa83_c00000{word-spacing:5.591160px;}
.ws518_c00000{word-spacing:5.594400px;}
.wsb40_c00000{word-spacing:5.597172px;}
.ws69d_c00000{word-spacing:5.601600px;}
.wsff9_c00000{word-spacing:5.603184px;}
.ws74d_c00000{word-spacing:5.608800px;}
.wse82_c00000{word-spacing:5.609196px;}
.ws3f0_c00000{word-spacing:5.616000px;}
.wsc63_c00000{word-spacing:5.621220px;}
.ws236_c00000{word-spacing:5.623200px;}
.wsb1b_c00000{word-spacing:5.627232px;}
.wsbce_c00000{word-spacing:5.630400px;}
.wsd02_c00000{word-spacing:5.633244px;}
.ws229_c00000{word-spacing:5.637600px;}
.ws18ed_c00000{word-spacing:5.639256px;}
.ws86f_c00000{word-spacing:5.644800px;}
.ws1288_c00000{word-spacing:5.645268px;}
.ws1173_c00000{word-spacing:5.651280px;}
.ws61b_c00000{word-spacing:5.652000px;}
.ws129f_c00000{word-spacing:5.657292px;}
.ws265_c00000{word-spacing:5.659200px;}
.ws237_c00000{word-spacing:5.666400px;}
.ws46a_c00000{word-spacing:5.673600px;}
.ws5e3_c00000{word-spacing:5.680800px;}
.ws2ca_c00000{word-spacing:5.688000px;}
.wsc39_c00000{word-spacing:5.693364px;}
.ws5da_c00000{word-spacing:5.695200px;}
.ws17c5_c00000{word-spacing:5.699376px;}
.ws7c9_c00000{word-spacing:5.702400px;}
.ws13d_c00000{word-spacing:5.709600px;}
.ws7c8_c00000{word-spacing:5.716800px;}
.ws354_c00000{word-spacing:5.717412px;}
.ws708_c00000{word-spacing:5.724000px;}
.ws217_c00000{word-spacing:5.731200px;}
.ws1378_c00000{word-spacing:5.735448px;}
.ws17d_c00000{word-spacing:5.738400px;}
.ws133e_c00000{word-spacing:5.741460px;}
.wse2_c00000{word-spacing:5.745600px;}
.ws934_c00000{word-spacing:5.747472px;}
.ws13e_c00000{word-spacing:5.752800px;}
.ws735_c00000{word-spacing:5.753484px;}
.ws1976_c00000{word-spacing:5.759496px;}
.ws7a2_c00000{word-spacing:5.760000px;}
.ws35b_c00000{word-spacing:5.765508px;}
.ws925_c00000{word-spacing:5.767200px;}
.ws18c7_c00000{word-spacing:5.771088px;}
.wsa9e_c00000{word-spacing:5.771520px;}
.ws17f_c00000{word-spacing:5.774400px;}
.wsb23_c00000{word-spacing:5.777532px;}
.wsb5c_c00000{word-spacing:5.781600px;}
.wseff_c00000{word-spacing:5.783544px;}
.ws494_c00000{word-spacing:5.788800px;}
.wsa81_c00000{word-spacing:5.789556px;}
.ws1084_c00000{word-spacing:5.790852px;}
.ws1ad4_c00000{word-spacing:5.795568px;}
.ws2c9_c00000{word-spacing:5.796000px;}
.ws1642_c00000{word-spacing:5.797440px;}
.ws1a5f_c00000{word-spacing:5.801580px;}
.ws1888_c00000{word-spacing:5.803200px;}
.ws628_c00000{word-spacing:5.807592px;}
.ws416_c00000{word-spacing:5.810400px;}
.ws14d1_c00000{word-spacing:5.810616px;}
.ws1a84_c00000{word-spacing:5.813604px;}
.ws1955_c00000{word-spacing:5.817204px;}
.ws1044_c00000{word-spacing:5.817600px;}
.ws1956_c00000{word-spacing:5.823792px;}
.ws1ae1_c00000{word-spacing:5.825628px;}
.wsfde_c00000{word-spacing:5.831640px;}
.ws457_c00000{word-spacing:5.832000px;}
.ws15e6_c00000{word-spacing:5.836968px;}
.ws1b5_c00000{word-spacing:5.837652px;}
.ws17e_c00000{word-spacing:5.839200px;}
.ws1a6a_c00000{word-spacing:5.842224px;}
.ws1603_c00000{word-spacing:5.843664px;}
.wscf5_c00000{word-spacing:5.846400px;}
.wsefe_c00000{word-spacing:5.849676px;}
.ws14d2_c00000{word-spacing:5.850144px;}
.wsb22_c00000{word-spacing:5.855688px;}
.ws64e_c00000{word-spacing:5.860800px;}
.ws629_c00000{word-spacing:5.867712px;}
.ws1808_c00000{word-spacing:5.868000px;}
.ws683_c00000{word-spacing:5.873724px;}
.ws1157_c00000{word-spacing:5.875200px;}
.ws1b6_c00000{word-spacing:5.879736px;}
.ws73a_c00000{word-spacing:5.882400px;}
.ws935_c00000{word-spacing:5.885748px;}
.ws36f_c00000{word-spacing:5.889600px;}
.ws356_c00000{word-spacing:5.891760px;}
.ws11f6_c00000{word-spacing:5.896800px;}
.ws352_c00000{word-spacing:5.897772px;}
.ws168f_c00000{word-spacing:5.903784px;}
.ws942_c00000{word-spacing:5.904000px;}
.ws117a_c00000{word-spacing:5.909796px;}
.ws6e7_c00000{word-spacing:5.911200px;}
.ws1ae0_c00000{word-spacing:5.915808px;}
.ws1b09_c00000{word-spacing:5.918400px;}
.wsdb4_c00000{word-spacing:5.925600px;}
.ws1172_c00000{word-spacing:5.927832px;}
.ws7f5_c00000{word-spacing:5.932800px;}
.wsa8f_c00000{word-spacing:5.940000px;}
.wsd3f_c00000{word-spacing:5.945868px;}
.ws9d4_c00000{word-spacing:5.947200px;}
.ws62a_c00000{word-spacing:5.951880px;}
.wse90_c00000{word-spacing:5.954400px;}
.ws1287_c00000{word-spacing:5.957892px;}
.wsdd1_c00000{word-spacing:5.961600px;}
.ws627_c00000{word-spacing:5.963904px;}
.ws12a_c00000{word-spacing:5.968800px;}
.wsa9d_c00000{word-spacing:5.969916px;}
.ws13fe_c00000{word-spacing:5.975928px;}
.wsd92_c00000{word-spacing:5.976000px;}
.ws13ff_c00000{word-spacing:5.981940px;}
.wsb2f_c00000{word-spacing:5.983200px;}
.ws1aa7_c00000{word-spacing:5.987952px;}
.wsbc9_c00000{word-spacing:5.990400px;}
.ws15c_c00000{word-spacing:5.997600px;}
.ws1705_c00000{word-spacing:5.999976px;}
.ws27b_c00000{word-spacing:6.004800px;}
.wsca8_c00000{word-spacing:6.005988px;}
.ws15d_c00000{word-spacing:6.012000px;}
.ws495_c00000{word-spacing:6.019200px;}
.ws211_c00000{word-spacing:6.026400px;}
.ws75f_c00000{word-spacing:6.033600px;}
.wsd3d_c00000{word-spacing:6.036048px;}
.ws4fd_c00000{word-spacing:6.040800px;}
.ws1479_c00000{word-spacing:6.042060px;}
.ws6f8_c00000{word-spacing:6.048000px;}
.ws682_c00000{word-spacing:6.048072px;}
.ws129_c00000{word-spacing:6.055200px;}
.ws370_c00000{word-spacing:6.062400px;}
.ws4cf_c00000{word-spacing:6.069600px;}
.ws68e_c00000{word-spacing:6.076800px;}
.ws2bd_c00000{word-spacing:6.084000px;}
.ws1512_c00000{word-spacing:6.084144px;}
.ws943_c00000{word-spacing:6.091200px;}
.wsed5_c00000{word-spacing:6.096168px;}
.ws47b_c00000{word-spacing:6.098400px;}
.ws126e_c00000{word-spacing:6.102180px;}
.ws51e_c00000{word-spacing:6.105600px;}
.ws353_c00000{word-spacing:6.108192px;}
.ws210_c00000{word-spacing:6.112800px;}
.wse9f_c00000{word-spacing:6.114204px;}
.ws15b_c00000{word-spacing:6.120000px;}
.ws1002_c00000{word-spacing:6.120216px;}
.ws1951_c00000{word-spacing:6.120252px;}
.wse21_c00000{word-spacing:6.126228px;}
.ws8f3_c00000{word-spacing:6.126840px;}
.ws4fc_c00000{word-spacing:6.127200px;}
.ws403_c00000{word-spacing:6.132240px;}
.ws456_c00000{word-spacing:6.134400px;}
.ws10ea_c00000{word-spacing:6.138252px;}
.ws1568_c00000{word-spacing:6.140016px;}
.ws4ca_c00000{word-spacing:6.141600px;}
.ws19a0_c00000{word-spacing:6.144264px;}
.ws15b7_c00000{word-spacing:6.146604px;}
.wsd43_c00000{word-spacing:6.148800px;}
.ws204_c00000{word-spacing:6.150276px;}
.ws1b45_c00000{word-spacing:6.153192px;}
.ws5e9_c00000{word-spacing:6.156000px;}
.ws1469_c00000{word-spacing:6.156288px;}
.ws1567_c00000{word-spacing:6.159780px;}
.ws4cb_c00000{word-spacing:6.163200px;}
.ws2b6_c00000{word-spacing:6.170400px;}
.wsa7a_c00000{word-spacing:6.174324px;}
.ws7f6_c00000{word-spacing:6.177600px;}
.ws1353_c00000{word-spacing:6.180336px;}
.ws6b9_c00000{word-spacing:6.184800px;}
.ws8f4_c00000{word-spacing:6.186132px;}
.ws12b0_c00000{word-spacing:6.192000px;}
.ws1af_c00000{word-spacing:6.192360px;}
.ws1468_c00000{word-spacing:6.198372px;}
.ws9be_c00000{word-spacing:6.199200px;}
.ws17ee_c00000{word-spacing:6.199308px;}
.ws1966_c00000{word-spacing:6.204168px;}
.ws203_c00000{word-spacing:6.204384px;}
.ws1325_c00000{word-spacing:6.206400px;}
.ws201_c00000{word-spacing:6.210396px;}
.ws3ee_c00000{word-spacing:6.213600px;}
.ws1480_c00000{word-spacing:6.216408px;}
.ws1a1e_c00000{word-spacing:6.222420px;}
.ws1685_c00000{word-spacing:6.228000px;}
.wsf00_c00000{word-spacing:6.228432px;}
.ws1b0_c00000{word-spacing:6.234444px;}
.ws207_c00000{word-spacing:6.246468px;}
.ws1896_c00000{word-spacing:6.249600px;}
.ws1b1_c00000{word-spacing:6.252480px;}
.wsda4_c00000{word-spacing:6.256800px;}
.ws355_c00000{word-spacing:6.258492px;}
.ws190d_c00000{word-spacing:6.264000px;}
.ws105b_c00000{word-spacing:6.264504px;}
.ws1a5e_c00000{word-spacing:6.270516px;}
.ws6be_c00000{word-spacing:6.271200px;}
.ws781_c00000{word-spacing:6.278400px;}
.ws1a5d_c00000{word-spacing:6.282540px;}
.ws9cd_c00000{word-spacing:6.285600px;}
.ws126d_c00000{word-spacing:6.288552px;}
.ws1706_c00000{word-spacing:6.292800px;}
.ws1178_c00000{word-spacing:6.294564px;}
.ws80e_c00000{word-spacing:6.300000px;}
.ws206_c00000{word-spacing:6.300576px;}
.ws7ee_c00000{word-spacing:6.306588px;}
.ws741_c00000{word-spacing:6.307200px;}
.ws1a7f_c00000{word-spacing:6.312600px;}
.wsa4a_c00000{word-spacing:6.314400px;}
.wsacf_c00000{word-spacing:6.318612px;}
.wsb8d_c00000{word-spacing:6.321600px;}
.ws10eb_c00000{word-spacing:6.324624px;}
.wsab6_c00000{word-spacing:6.328800px;}
.wsa8d_c00000{word-spacing:6.336000px;}
.ws7ef_c00000{word-spacing:6.336648px;}
.ws126f_c00000{word-spacing:6.342660px;}
.ws14e_c00000{word-spacing:6.343200px;}
.wsf01_c00000{word-spacing:6.348672px;}
.ws73f_c00000{word-spacing:6.350400px;}
.ws19a6_c00000{word-spacing:6.354684px;}
.ws3c5_c00000{word-spacing:6.357600px;}
.ws14d_c00000{word-spacing:6.364800px;}
.ws2f5_c00000{word-spacing:6.372000px;}
.ws105a_c00000{word-spacing:6.378732px;}
.ws761_c00000{word-spacing:6.379200px;}
.ws871_c00000{word-spacing:6.386400px;}
.ws1179_c00000{word-spacing:6.390756px;}
.ws3e8_c00000{word-spacing:6.393600px;}
.ws8e4_c00000{word-spacing:6.400800px;}
.ws3c1_c00000{word-spacing:6.408000px;}
.wsfc7_c00000{word-spacing:6.414804px;}
.wsc8a_c00000{word-spacing:6.415200px;}
.ws14c_c00000{word-spacing:6.422400px;}
.ws760_c00000{word-spacing:6.429600px;}
.ws9bf_c00000{word-spacing:6.436800px;}
.ws14ba_c00000{word-spacing:6.438852px;}
.ws6f9_c00000{word-spacing:6.444000px;}
.ws141a_c00000{word-spacing:6.450876px;}
.ws499_c00000{word-spacing:6.451200px;}
.ws343_c00000{word-spacing:6.458400px;}
.wsb6c_c00000{word-spacing:6.462900px;}
.ws595_c00000{word-spacing:6.465600px;}
.ws205_c00000{word-spacing:6.468912px;}
.ws3e7_c00000{word-spacing:6.472800px;}
.ws659_c00000{word-spacing:6.474924px;}
.ws596_c00000{word-spacing:6.480000px;}
.ws790_c00000{word-spacing:6.480936px;}
.ws19eb_c00000{word-spacing:6.482592px;}
.ws190f_c00000{word-spacing:6.486948px;}
.ws3c0_c00000{word-spacing:6.487200px;}
.ws17e9_c00000{word-spacing:6.489180px;}
.ws508_c00000{word-spacing:6.492960px;}
.ws2f6_c00000{word-spacing:6.494400px;}
.ws163b_c00000{word-spacing:6.495768px;}
.wse5d_c00000{word-spacing:6.498972px;}
.ws89d_c00000{word-spacing:6.501600px;}
.ws866_c00000{word-spacing:6.504984px;}
.ws342_c00000{word-spacing:6.508800px;}
.ws196f_c00000{word-spacing:6.508944px;}
.ws58e_c00000{word-spacing:6.510996px;}
.ws188c_c00000{word-spacing:6.515532px;}
.ws80d_c00000{word-spacing:6.516000px;}
.ws1419_c00000{word-spacing:6.517008px;}
.ws17e8_c00000{word-spacing:6.522120px;}
.wsa78_c00000{word-spacing:6.523020px;}
.ws109f_c00000{word-spacing:6.523200px;}
.wsadd_c00000{word-spacing:6.528708px;}
.wsca9_c00000{word-spacing:6.529032px;}
.ws1719_c00000{word-spacing:6.530400px;}
.wsa79_c00000{word-spacing:6.535044px;}
.ws1506_c00000{word-spacing:6.537600px;}
.wsd00_c00000{word-spacing:6.541056px;}
.wsdb3_c00000{word-spacing:6.544800px;}
.ws1465_c00000{word-spacing:6.547068px;}
.ws163c_c00000{word-spacing:6.548472px;}
.wsa6f_c00000{word-spacing:6.552000px;}
.ws202_c00000{word-spacing:6.553080px;}
.ws1721_c00000{word-spacing:6.559092px;}
.ws7e3_c00000{word-spacing:6.565104px;}
.wsf45_c00000{word-spacing:6.566400px;}
.ws1515_c00000{word-spacing:6.571116px;}
.wsa93_c00000{word-spacing:6.573600px;}
.ws1001_c00000{word-spacing:6.577128px;}
.wsb64_c00000{word-spacing:6.580800px;}
.wsd5e_c00000{word-spacing:6.583140px;}
.wsa39_c00000{word-spacing:6.588000px;}
.ws14a7_c00000{word-spacing:6.595200px;}
.wsb18_c00000{word-spacing:6.601176px;}
.wscc8_c00000{word-spacing:6.602400px;}
.ws12a0_c00000{word-spacing:6.609600px;}
.ws200_c00000{word-spacing:6.613200px;}
.wsb17_c00000{word-spacing:6.619212px;}
.ws19c4_c00000{word-spacing:6.624000px;}
.ws1a59_c00000{word-spacing:6.625224px;}
.ws4f2_c00000{word-spacing:6.631200px;}
.ws197e_c00000{word-spacing:6.637248px;}
.wscc9_c00000{word-spacing:6.638400px;}
.ws19c3_c00000{word-spacing:6.645600px;}
.ws163d_c00000{word-spacing:6.647292px;}
.wsf1e_c00000{word-spacing:6.652800px;}
.ws7b9_c00000{word-spacing:6.655284px;}
.ws155_c00000{word-spacing:6.660000px;}
.ws1306_c00000{word-spacing:6.661296px;}
.wsdcc_c00000{word-spacing:6.667200px;}
.ws792_c00000{word-spacing:6.667308px;}
.ws1048_c00000{word-spacing:6.674400px;}
.ws6ce_c00000{word-spacing:6.681600px;}
.ws351_c00000{word-spacing:6.685344px;}
.wsa91_c00000{word-spacing:6.688800px;}
.wse20_c00000{word-spacing:6.691356px;}
.ws24b_c00000{word-spacing:6.696000px;}
.ws1003_c00000{word-spacing:6.697368px;}
.ws5db_c00000{word-spacing:6.703200px;}
.wscaa_c00000{word-spacing:6.703380px;}
.ws19ca_c00000{word-spacing:6.709392px;}
.ws150_c00000{word-spacing:6.710400px;}
.ws141b_c00000{word-spacing:6.715404px;}
.ws8b4_c00000{word-spacing:6.717600px;}
.ws7dd_c00000{word-spacing:6.721416px;}
.wsa1_c00000{word-spacing:6.724800px;}
.ws1b2e_c00000{word-spacing:6.727428px;}
.ws125a_c00000{word-spacing:6.732000px;}
.ws10cc_c00000{word-spacing:6.733440px;}
.ws5bc_c00000{word-spacing:6.739200px;}
.ws962_c00000{word-spacing:6.746400px;}
.wsd5f_c00000{word-spacing:6.751476px;}
.ws5bb_c00000{word-spacing:6.753600px;}
.wseb9_c00000{word-spacing:6.757488px;}
.ws4a0_c00000{word-spacing:6.760800px;}
.ws974_c00000{word-spacing:6.768000px;}
.ws24a_c00000{word-spacing:6.775200px;}
.ws1004_c00000{word-spacing:6.775524px;}
.ws618_c00000{word-spacing:6.782400px;}
.ws14f_c00000{word-spacing:6.789600px;}
.wsc5c_c00000{word-spacing:6.796800px;}
.ws956_c00000{word-spacing:6.799572px;}
.ws789_c00000{word-spacing:6.804000px;}
.wsb6b_c00000{word-spacing:6.805584px;}
.ws5bd_c00000{word-spacing:6.811200px;}
.ws1163_c00000{word-spacing:6.811596px;}
.ws4f1_c00000{word-spacing:6.818400px;}
.ws12ab_c00000{word-spacing:6.823620px;}
.wsc8_c00000{word-spacing:6.825600px;}
.wsed8_c00000{word-spacing:6.829632px;}
.ws163a_c00000{word-spacing:6.831756px;}
.ws72f_c00000{word-spacing:6.832800px;}
.wse64_c00000{word-spacing:6.835644px;}
.wsa0_c00000{word-spacing:6.840000px;}
.ws7de_c00000{word-spacing:6.841656px;}
.wsc7_c00000{word-spacing:6.847200px;}
.ws658_c00000{word-spacing:6.847668px;}
.ws791_c00000{word-spacing:6.853680px;}
.ws8b3_c00000{word-spacing:6.854400px;}
.ws1869_c00000{word-spacing:6.858108px;}
.ws1505_c00000{word-spacing:6.859692px;}
.wsb04_c00000{word-spacing:6.861600px;}
.ws160c_c00000{word-spacing:6.864696px;}
.wsf44_c00000{word-spacing:6.868800px;}
.ws17ec_c00000{word-spacing:6.871284px;}
.ws15a8_c00000{word-spacing:6.871716px;}
.ws90d_c00000{word-spacing:6.876000px;}
.wsb41_c00000{word-spacing:6.877728px;}
.ws188b_c00000{word-spacing:6.877872px;}
.ws151_c00000{word-spacing:6.883200px;}
.wsb42_c00000{word-spacing:6.889752px;}
.ws13e2_c00000{word-spacing:6.890400px;}
.ws16af_c00000{word-spacing:6.891048px;}
.wsd82_c00000{word-spacing:6.895764px;}
.wsa5f_c00000{word-spacing:6.904224px;}
.ws2eb_c00000{word-spacing:6.904800px;}
.ws350_c00000{word-spacing:6.907788px;}
.ws8be_c00000{word-spacing:6.910812px;}
.wsf89_c00000{word-spacing:6.912000px;}
.ws1722_c00000{word-spacing:6.913800px;}
.ws1847_c00000{word-spacing:6.919200px;}
.ws169c_c00000{word-spacing:6.922224px;}
.ws86c_c00000{word-spacing:6.925824px;}
.ws14b8_c00000{word-spacing:6.926400px;}
.ws1991_c00000{word-spacing:6.928236px;}
.ws1a8e_c00000{word-spacing:6.930576px;}
.ws12f8_c00000{word-spacing:6.931836px;}
.ws18e2_c00000{word-spacing:6.933600px;}
.ws113_c00000{word-spacing:6.937848px;}
.ws1024_c00000{word-spacing:6.940800px;}
.ws19e1_c00000{word-spacing:6.943860px;}
.wsc5b_c00000{word-spacing:6.955200px;}
.wsfc5_c00000{word-spacing:6.955884px;}
.ws11b_c00000{word-spacing:6.967908px;}
.ws516_c00000{word-spacing:6.969600px;}
.ws7df_c00000{word-spacing:6.973920px;}
.ws5b3_c00000{word-spacing:6.976800px;}
.ws193b_c00000{word-spacing:6.979932px;}
.ws68f_c00000{word-spacing:6.984000px;}
.wsb20_c00000{word-spacing:6.985944px;}
.wsda3_c00000{word-spacing:6.991200px;}
.ws5f5_c00000{word-spacing:6.991956px;}
.ws165c_c00000{word-spacing:6.997968px;}
.ws38f_c00000{word-spacing:6.998400px;}
.wsb21_c00000{word-spacing:7.003980px;}
.ws10e5_c00000{word-spacing:7.005600px;}
.wsfef_c00000{word-spacing:7.012800px;}
.ws15a7_c00000{word-spacing:7.016004px;}
.ws8f9_c00000{word-spacing:7.020000px;}
.ws19d6_c00000{word-spacing:7.022016px;}
.ws517_c00000{word-spacing:7.027200px;}
.wsfc6_c00000{word-spacing:7.028028px;}
.ws17d9_c00000{word-spacing:7.034040px;}
.wsceb_c00000{word-spacing:7.034400px;}
.ws114_c00000{word-spacing:7.040052px;}
.ws720_c00000{word-spacing:7.041600px;}
.ws12f9_c00000{word-spacing:7.046064px;}
.ws6ff_c00000{word-spacing:7.048800px;}
.ws11c8_c00000{word-spacing:7.052076px;}
.ws74f_c00000{word-spacing:7.056000px;}
.wsc8b_c00000{word-spacing:7.058088px;}
.ws5b4_c00000{word-spacing:7.063200px;}
.ws865_c00000{word-spacing:7.070112px;}
.ws291_c00000{word-spacing:7.070400px;}
.ws3cd_c00000{word-spacing:7.077600px;}
.ws14c5_c00000{word-spacing:7.082136px;}
.ws515_c00000{word-spacing:7.084800px;}
.ws14c7_c00000{word-spacing:7.088148px;}
.ws3cc_c00000{word-spacing:7.092000px;}
.wseba_c00000{word-spacing:7.094160px;}
.ws750_c00000{word-spacing:7.099200px;}
.ws10f_c00000{word-spacing:7.100172px;}
.ws657_c00000{word-spacing:7.106184px;}
.ws1a8_c00000{word-spacing:7.106400px;}
.ws1e9_c00000{word-spacing:7.113600px;}
.ws24e_c00000{word-spacing:7.120800px;}
.ws1655_c00000{word-spacing:7.124220px;}
.ws15e_c00000{word-spacing:7.128000px;}
.ws6fe_c00000{word-spacing:7.135200px;}
.ws15f_c00000{word-spacing:7.142400px;}
.ws7c0_c00000{word-spacing:7.149600px;}
.ws18e_c00000{word-spacing:7.156800px;}
.ws24c_c00000{word-spacing:7.164000px;}
.ws5f6_c00000{word-spacing:7.166304px;}
.wsa48_c00000{word-spacing:7.171200px;}
.ws1663_c00000{word-spacing:7.178328px;}
.ws1a7_c00000{word-spacing:7.178400px;}
.ws4c6_c00000{word-spacing:7.185600px;}
.ws1664_c00000{word-spacing:7.190352px;}
.ws18f_c00000{word-spacing:7.192800px;}
.ws1167_c00000{word-spacing:7.196364px;}
.ws24f_c00000{word-spacing:7.200000px;}
.ws1398_c00000{word-spacing:7.202376px;}
.ws4f5_c00000{word-spacing:7.207200px;}
.ws5f4_c00000{word-spacing:7.208388px;}
.ws74e_c00000{word-spacing:7.214400px;}
.ws8a1_c00000{word-spacing:7.220412px;}
.ws16f7_c00000{word-spacing:7.220448px;}
.ws467_c00000{word-spacing:7.221600px;}
.ws1958_c00000{word-spacing:7.227036px;}
.ws8fa_c00000{word-spacing:7.228800px;}
.ws12b3_c00000{word-spacing:7.232436px;}
.ws558_c00000{word-spacing:7.236000px;}
.ws12ac_c00000{word-spacing:7.238448px;}
.ws15b8_c00000{word-spacing:7.240212px;}
.ws24d_c00000{word-spacing:7.243200px;}
.ws19fd_c00000{word-spacing:7.244460px;}
.ws14c2_c00000{word-spacing:7.246800px;}
.ws1684_c00000{word-spacing:7.250400px;}
.ws1399_c00000{word-spacing:7.250472px;}
.ws14c3_c00000{word-spacing:7.253388px;}
.ws12af_c00000{word-spacing:7.257600px;}
.wsa56_c00000{word-spacing:7.259976px;}
.ws1e8_c00000{word-spacing:7.264800px;}
.ws16f8_c00000{word-spacing:7.266564px;}
.ws757_c00000{word-spacing:7.268508px;}
.ws15cf_c00000{word-spacing:7.272000px;}
.ws14dc_c00000{word-spacing:7.273152px;}
.ws9c5_c00000{word-spacing:7.274520px;}
.wseec_c00000{word-spacing:7.279200px;}
.ws18ca_c00000{word-spacing:7.279740px;}
.wsab3_c00000{word-spacing:7.282224px;}
.ws9b9_c00000{word-spacing:7.286400px;}
.wsf7b_c00000{word-spacing:7.286544px;}
.ws15d0_c00000{word-spacing:7.292556px;}
.ws14db_c00000{word-spacing:7.292916px;}
.ws1282_c00000{word-spacing:7.293600px;}
.ws15e1_c00000{word-spacing:7.298568px;}
.ws14fe_c00000{word-spacing:7.300800px;}
.ws5bf_c00000{word-spacing:7.304580px;}
.ws1785_c00000{word-spacing:7.308000px;}
.wsb93_c00000{word-spacing:7.310592px;}
.wsff8_c00000{word-spacing:7.315200px;}
.ws1668_c00000{word-spacing:7.322616px;}
.ws1042_c00000{word-spacing:7.328628px;}
.wsd62_c00000{word-spacing:7.329600px;}
.ws15df_c00000{word-spacing:7.334640px;}
.ws18a5_c00000{word-spacing:7.336800px;}
.ws1750_c00000{word-spacing:7.346664px;}
.ws1045_c00000{word-spacing:7.351200px;}
.ws138a_c00000{word-spacing:7.352676px;}
.wsd57_c00000{word-spacing:7.358400px;}
.wsc76_c00000{word-spacing:7.358688px;}
.ws836_c00000{word-spacing:7.365600px;}
.ws6da_c00000{word-spacing:7.370712px;}
.wsdcf_c00000{word-spacing:7.372800px;}
.ws1990_c00000{word-spacing:7.376724px;}
.ws283_c00000{word-spacing:7.380000px;}
.ws6dc_c00000{word-spacing:7.382736px;}
.ws96f_c00000{word-spacing:7.387200px;}
.ws9c4_c00000{word-spacing:7.388748px;}
.ws1031_c00000{word-spacing:7.394400px;}
.ws138b_c00000{word-spacing:7.400772px;}
.wsc99_c00000{word-spacing:7.401600px;}
.ws912_c00000{word-spacing:7.406784px;}
.ws970_c00000{word-spacing:7.408800px;}
.ws5f7_c00000{word-spacing:7.412796px;}
.wsca3_c00000{word-spacing:7.416000px;}
.ws1a34_c00000{word-spacing:7.418808px;}
.ws2b9_c00000{word-spacing:7.423200px;}
.ws6db_c00000{word-spacing:7.424820px;}
.ws4c5_c00000{word-spacing:7.430400px;}
.ws913_c00000{word-spacing:7.430832px;}
.wse63_c00000{word-spacing:7.436844px;}
.wsaa3_c00000{word-spacing:7.437600px;}
.ws3fc_c00000{word-spacing:7.444800px;}
.ws1a37_c00000{word-spacing:7.448868px;}
.ws2b8_c00000{word-spacing:7.452000px;}
.ws12c5_c00000{word-spacing:7.454880px;}
.ws9f2_c00000{word-spacing:7.459200px;}
.ws198f_c00000{word-spacing:7.460892px;}
.wsb06_c00000{word-spacing:7.466400px;}
.ws15e0_c00000{word-spacing:7.472916px;}
.ws1cf_c00000{word-spacing:7.473600px;}
.wsbfd_c00000{word-spacing:7.480800px;}
.ws11a_c00000{word-spacing:7.484940px;}
.ws250_c00000{word-spacing:7.488000px;}
.wsb43_c00000{word-spacing:7.490952px;}
.ws281_c00000{word-spacing:7.495200px;}
.wsd1f_c00000{word-spacing:7.502400px;}
.ws12b2_c00000{word-spacing:7.508988px;}
.ws25c_c00000{word-spacing:7.509600px;}
.ws9a7_c00000{word-spacing:7.516800px;}
.ws2b7_c00000{word-spacing:7.524000px;}
.ws52d_c00000{word-spacing:7.531200px;}
.ws1701_c00000{word-spacing:7.533036px;}
.ws52c_c00000{word-spacing:7.538400px;}
.ws139a_c00000{word-spacing:7.539048px;}
.ws6c8_c00000{word-spacing:7.545600px;}
.ws15bf_c00000{word-spacing:7.549848px;}
.wseb7_c00000{word-spacing:7.551072px;}
.ws3fd_c00000{word-spacing:7.552800px;}
.wse1f_c00000{word-spacing:7.557084px;}
.wseb_c00000{word-spacing:7.560000px;}
.ws1731_c00000{word-spacing:7.563024px;}
.ws1738_c00000{word-spacing:7.563096px;}
.wsfb6_c00000{word-spacing:7.567200px;}
.ws6aa_c00000{word-spacing:7.569108px;}
.ws1730_c00000{word-spacing:7.569612px;}
.wsea_c00000{word-spacing:7.574400px;}
.ws157d_c00000{word-spacing:7.575120px;}
.wse62_c00000{word-spacing:7.581132px;}
.ws282_c00000{word-spacing:7.581600px;}
.ws15a6_c00000{word-spacing:7.588800px;}
.ws6ac_c00000{word-spacing:7.593156px;}
.ws1080_c00000{word-spacing:7.595964px;}
.ws13e6_c00000{word-spacing:7.596000px;}
.ws835_c00000{word-spacing:7.603200px;}
.ws192c_c00000{word-spacing:7.609140px;}
.ws7c7_c00000{word-spacing:7.610400px;}
.ws1402_c00000{word-spacing:7.611192px;}
.ws1612_c00000{word-spacing:7.615728px;}
.ws11ed_c00000{word-spacing:7.617600px;}
.ws17e1_c00000{word-spacing:7.622316px;}
.ws15a5_c00000{word-spacing:7.624800px;}
.wsc57_c00000{word-spacing:7.632000px;}
.ws150e_c00000{word-spacing:7.635240px;}
.wsf9_c00000{word-spacing:7.639200px;}
.ws12b1_c00000{word-spacing:7.641252px;}
.ws150f_c00000{word-spacing:7.653276px;}
.wsc80_c00000{word-spacing:7.653600px;}
.ws7eb_c00000{word-spacing:7.659288px;}
.ws7ec_c00000{word-spacing:7.665300px;}
.ws5c0_c00000{word-spacing:7.671312px;}
.ws1530_c00000{word-spacing:7.677324px;}
.wsffc_c00000{word-spacing:7.683336px;}
.wse1d_c00000{word-spacing:7.689348px;}
.ws130c_c00000{word-spacing:7.689600px;}
.ws157e_c00000{word-spacing:7.695360px;}
.ws1a9f_c00000{word-spacing:7.696800px;}
.ws904_c00000{word-spacing:7.704000px;}
.ws5be_c00000{word-spacing:7.707384px;}
.ws905_c00000{word-spacing:7.711200px;}
.ws19c2_c00000{word-spacing:7.718400px;}
.ws12c4_c00000{word-spacing:7.719408px;}
.wsa4f_c00000{word-spacing:7.725420px;}
.ws6d1_c00000{word-spacing:7.725600px;}
.ws17f1_c00000{word-spacing:7.732800px;}
.ws18af_c00000{word-spacing:7.737444px;}
.wsf55_c00000{word-spacing:7.740000px;}
.ws142a_c00000{word-spacing:7.743456px;}
.ws157_c00000{word-spacing:7.747200px;}
.ws1510_c00000{word-spacing:7.749468px;}
.ws901_c00000{word-spacing:7.754400px;}
.ws1836_c00000{word-spacing:7.755480px;}
.ws155b_c00000{word-spacing:7.761492px;}
.ws111d_c00000{word-spacing:7.761600px;}
.ws14b3_c00000{word-spacing:7.767504px;}
.ws2f9_c00000{word-spacing:7.768800px;}
.ws18f1_c00000{word-spacing:7.773516px;}
.ws1231_c00000{word-spacing:7.776000px;}
.wse1c_c00000{word-spacing:7.779528px;}
.ws719_c00000{word-spacing:7.783200px;}
.wsdd7_c00000{word-spacing:7.785540px;}
.wsfa_c00000{word-spacing:7.790400px;}
.ws155a_c00000{word-spacing:7.791552px;}
.ws1508_c00000{word-spacing:7.797600px;}
.ws483_c00000{word-spacing:7.804800px;}
.wsdd6_c00000{word-spacing:7.809588px;}
.wsa18_c00000{word-spacing:7.812000px;}
.ws1043_c00000{word-spacing:7.815600px;}
.ws4b0_c00000{word-spacing:7.819200px;}
.ws4d2_c00000{word-spacing:7.826400px;}
.ws1c7_c00000{word-spacing:7.833600px;}
.ws142b_c00000{word-spacing:7.839648px;}
.ws4d3_c00000{word-spacing:7.840800px;}
.ws158_c00000{word-spacing:7.848000px;}
.wse1e_c00000{word-spacing:7.851672px;}
.wsf56_c00000{word-spacing:7.855200px;}
.ws1a70_c00000{word-spacing:7.857684px;}
.ws4eb_c00000{word-spacing:7.862400px;}
.ws1364_c00000{word-spacing:7.863696px;}
.ws574_c00000{word-spacing:7.869600px;}
.ws17d2_c00000{word-spacing:7.869708px;}
.ws1142_c00000{word-spacing:7.875720px;}
.ws2fa_c00000{word-spacing:7.876800px;}
.ws1c6_c00000{word-spacing:7.884000px;}
.ws482_c00000{word-spacing:7.891200px;}
.wsffb_c00000{word-spacing:7.893756px;}
.ws552_c00000{word-spacing:7.898400px;}
.ws5a1_c00000{word-spacing:7.905600px;}
.wsc0d_c00000{word-spacing:7.905780px;}
.wse1a_c00000{word-spacing:7.911792px;}
.wsf8_c00000{word-spacing:7.912800px;}
.ws1571_c00000{word-spacing:7.917804px;}
.ws156_c00000{word-spacing:7.920000px;}
.wsb6d_c00000{word-spacing:7.923816px;}
.ws17f7_c00000{word-spacing:7.925364px;}
.wsae1_c00000{word-spacing:7.927200px;}
.ws6ab_c00000{word-spacing:7.929828px;}
.wseae_c00000{word-spacing:7.931952px;}
.wsb2b_c00000{word-spacing:7.934400px;}
.wsef1_c00000{word-spacing:7.935840px;}
.ws7ac_c00000{word-spacing:7.941600px;}
.wse1b_c00000{word-spacing:7.941852px;}
.ws1a99_c00000{word-spacing:7.947864px;}
.ws7bf_c00000{word-spacing:7.948800px;}
.ws17f6_c00000{word-spacing:7.951716px;}
.ws23d_c00000{word-spacing:7.953876px;}
.ws900_c00000{word-spacing:7.956000px;}
.wsadc_c00000{word-spacing:7.958304px;}
.ws1487_c00000{word-spacing:7.959888px;}
.ws1093_c00000{word-spacing:7.963200px;}
.wsa57_c00000{word-spacing:7.964892px;}
.wse7d_c00000{word-spacing:7.965900px;}
.ws12dc_c00000{word-spacing:7.970400px;}
.ws15f9_c00000{word-spacing:7.971480px;}
.ws4d4_c00000{word-spacing:7.977600px;}
.ws12fa_c00000{word-spacing:7.977924px;}
.ws15fa_c00000{word-spacing:7.978068px;}
.ws55e_c00000{word-spacing:7.984800px;}
.ws8d5_c00000{word-spacing:7.991244px;}
.ws13ad_c00000{word-spacing:7.992000px;}
.wse94_c00000{word-spacing:7.995960px;}
.wsb65_c00000{word-spacing:7.999200px;}
.wsacc_c00000{word-spacing:8.001972px;}
.ws118a_c00000{word-spacing:8.002224px;}
.ws1b2d_c00000{word-spacing:8.007984px;}
.ws786_c00000{word-spacing:8.013600px;}
.wsacd_c00000{word-spacing:8.013996px;}
.wsffe_c00000{word-spacing:8.020008px;}
.ws1a74_c00000{word-spacing:8.020800px;}
.ws15ea_c00000{word-spacing:8.026020px;}
.wse95_c00000{word-spacing:8.032032px;}
.ws11e5_c00000{word-spacing:8.035200px;}
.ws1414_c00000{word-spacing:8.038044px;}
.ws1165_c00000{word-spacing:8.044056px;}
.wsa70_c00000{word-spacing:8.049600px;}
.wse93_c00000{word-spacing:8.050068px;}
.wsace_c00000{word-spacing:8.056080px;}
.ws11cd_c00000{word-spacing:8.056800px;}
.ws18fe_c00000{word-spacing:8.062092px;}
.ws787_c00000{word-spacing:8.064000px;}
.wsbca_c00000{word-spacing:8.071200px;}
.wscfe_c00000{word-spacing:8.074116px;}
.ws8cc_c00000{word-spacing:8.078400px;}
.wsffd_c00000{word-spacing:8.080128px;}
.ws11bd_c00000{word-spacing:8.085600px;}
.wse7e_c00000{word-spacing:8.086140px;}
.wsc65_c00000{word-spacing:8.092152px;}
.wsda1_c00000{word-spacing:8.092800px;}
.ws157c_c00000{word-spacing:8.098164px;}
.ws11b7_c00000{word-spacing:8.100000px;}
.ws1164_c00000{word-spacing:8.104176px;}
.ws7ab_c00000{word-spacing:8.107200px;}
.ws17c7_c00000{word-spacing:8.110188px;}
.wsa4_c00000{word-spacing:8.114400px;}
.wsc64_c00000{word-spacing:8.116200px;}
.ws1883_c00000{word-spacing:8.121600px;}
.ws50c_c00000{word-spacing:8.122212px;}
.ws1141_c00000{word-spacing:8.128224px;}
.ws1507_c00000{word-spacing:8.128800px;}
.wse7f_c00000{word-spacing:8.134236px;}
.ws89_c00000{word-spacing:8.136000px;}
.ws14e2_c00000{word-spacing:8.140248px;}
.wsae9_c00000{word-spacing:8.143200px;}
.ws23e_c00000{word-spacing:8.146260px;}
.ws821_c00000{word-spacing:8.150400px;}
.wsed9_c00000{word-spacing:8.152272px;}
.ws48a_c00000{word-spacing:8.157600px;}
.ws1965_c00000{word-spacing:8.158284px;}
.ws14b4_c00000{word-spacing:8.164296px;}
.ws7a5_c00000{word-spacing:8.164800px;}
.ws704_c00000{word-spacing:8.170308px;}
.ws8b9_c00000{word-spacing:8.172000px;}
.ws146b_c00000{word-spacing:8.176320px;}
.ws4ba_c00000{word-spacing:8.179200px;}
.ws4b9_c00000{word-spacing:8.186400px;}
.ws15a4_c00000{word-spacing:8.193600px;}
.ws13a9_c00000{word-spacing:8.194356px;}
.ws5dd_c00000{word-spacing:8.200800px;}
.wsa22_c00000{word-spacing:8.208000px;}
.ws88_c00000{word-spacing:8.215200px;}
.ws1488_c00000{word-spacing:8.218404px;}
.wsac_c00000{word-spacing:8.222400px;}
.ws18f6_c00000{word-spacing:8.224416px;}
.ws93e_c00000{word-spacing:8.229600px;}
.ws19a9_c00000{word-spacing:8.230428px;}
.ws32f_c00000{word-spacing:8.236800px;}
.ws7a6_c00000{word-spacing:8.244000px;}
.wsb6f_c00000{word-spacing:8.248464px;}
.ws14b_c00000{word-spacing:8.251200px;}
.ws12a6_c00000{word-spacing:8.254476px;}
.ws5ae_c00000{word-spacing:8.258400px;}
.ws62e_c00000{word-spacing:8.260488px;}
.ws822_c00000{word-spacing:8.265600px;}
.wsfff_c00000{word-spacing:8.266500px;}
.ws5fa_c00000{word-spacing:8.272512px;}
.ws89c_c00000{word-spacing:8.272800px;}
.wsca5_c00000{word-spacing:8.278524px;}
.ws32e_c00000{word-spacing:8.280000px;}
.ws680_c00000{word-spacing:8.284536px;}
.ws8a_c00000{word-spacing:8.287200px;}
.ws681_c00000{word-spacing:8.290548px;}
.wsa35_c00000{word-spacing:8.294400px;}
.ws10fb_c00000{word-spacing:8.296560px;}
.ws1584_c00000{word-spacing:8.300880px;}
.ws5af_c00000{word-spacing:8.301600px;}
.ws1104_c00000{word-spacing:8.302572px;}
.wsab_c00000{word-spacing:8.308800px;}
.ws1362_c00000{word-spacing:8.314596px;}
.wsabb_c00000{word-spacing:8.316000px;}
.wsc11_c00000{word-spacing:8.320608px;}
.ws1789_c00000{word-spacing:8.320644px;}
.wsb38_c00000{word-spacing:8.323200px;}
.ws1572_c00000{word-spacing:8.326620px;}
.ws16a7_c00000{word-spacing:8.327232px;}
.ws19bd_c00000{word-spacing:8.330400px;}
.ws398_c00000{word-spacing:8.332632px;}
.ws1747_c00000{word-spacing:8.337600px;}
.ws1866_c00000{word-spacing:8.340408px;}
.wse39_c00000{word-spacing:8.344656px;}
.ws16b8_c00000{word-spacing:8.346996px;}
.ws1a23_c00000{word-spacing:8.350668px;}
.ws6ec_c00000{word-spacing:8.352000px;}
.ws1a25_c00000{word-spacing:8.356680px;}
.ws1a21_c00000{word-spacing:8.359200px;}
.ws1109_c00000{word-spacing:8.362224px;}
.ws1176_c00000{word-spacing:8.362692px;}
.wscc0_c00000{word-spacing:8.366400px;}
.ws1175_c00000{word-spacing:8.368704px;}
.ws17c1_c00000{word-spacing:8.369424px;}
.ws178b_c00000{word-spacing:8.373348px;}
.ws17d4_c00000{word-spacing:8.373600px;}
.ws1b26_c00000{word-spacing:8.374716px;}
.ws7ed_c00000{word-spacing:8.380728px;}
.ws11fe_c00000{word-spacing:8.388000px;}
.wsabc_c00000{word-spacing:8.395200px;}
.ws1363_c00000{word-spacing:8.398764px;}
.ws17d5_c00000{word-spacing:8.402400px;}
.ws14b0_c00000{word-spacing:8.404776px;}
.ws33a_c00000{word-spacing:8.409600px;}
.ws171a_c00000{word-spacing:8.416800px;}
.ws17d1_c00000{word-spacing:8.428824px;}
.wse46_c00000{word-spacing:8.431200px;}
.ws5fb_c00000{word-spacing:8.434836px;}
.ws4d8_c00000{word-spacing:8.438400px;}
.ws1ac_c00000{word-spacing:8.440848px;}
.wsa27_c00000{word-spacing:8.445600px;}
.wsc8c_c00000{word-spacing:8.446860px;}
.ws941_c00000{word-spacing:8.452800px;}
.ws12a7_c00000{word-spacing:8.452872px;}
.ws399_c00000{word-spacing:8.458884px;}
.ws873_c00000{word-spacing:8.460000px;}
.wsc0f_c00000{word-spacing:8.464896px;}
.ws1cb_c00000{word-spacing:8.467200px;}
.ws1177_c00000{word-spacing:8.470908px;}
.ws195_c00000{word-spacing:8.474400px;}
.ws733_c00000{word-spacing:8.476920px;}
.ws33b_c00000{word-spacing:8.481600px;}
.ws120c_c00000{word-spacing:8.488800px;}
.ws1329_c00000{word-spacing:8.488944px;}
.ws734_c00000{word-spacing:8.494956px;}
.ws874_c00000{word-spacing:8.496000px;}
.wse3a_c00000{word-spacing:8.500968px;}
.ws3c4_c00000{word-spacing:8.503200px;}
.wsd13_c00000{word-spacing:8.510400px;}
.ws12d5_c00000{word-spacing:8.512992px;}
.ws133_c00000{word-spacing:8.517600px;}
.ws1a4e_c00000{word-spacing:8.519004px;}
.ws696_c00000{word-spacing:8.524800px;}
.ws19bb_c00000{word-spacing:8.525016px;}
.ws165a_c00000{word-spacing:8.531028px;}
.ws906_c00000{word-spacing:8.532000px;}
.ws1aa0_c00000{word-spacing:8.537040px;}
.ws1cc_c00000{word-spacing:8.539200px;}
.wsbe3_c00000{word-spacing:8.543052px;}
.ws194_c00000{word-spacing:8.546400px;}
.ws1246_c00000{word-spacing:8.549064px;}
.ws91e_c00000{word-spacing:8.553600px;}
.ws27f_c00000{word-spacing:8.560800px;}
.ws1652_c00000{word-spacing:8.561088px;}
.wsa5_c00000{word-spacing:8.568000px;}
.ws91d_c00000{word-spacing:8.575200px;}
.ws7b2_c00000{word-spacing:8.582400px;}
.ws784_c00000{word-spacing:8.589600px;}
.wsec_c00000{word-spacing:8.596800px;}
.ws4bc_c00000{word-spacing:8.604000px;}
.ws280_c00000{word-spacing:8.611200px;}
.ws1a61_c00000{word-spacing:8.617104px;}
.ws29a_c00000{word-spacing:8.618400px;}
.wsec0_c00000{word-spacing:8.621208px;}
.ws53a_c00000{word-spacing:8.625600px;}
.ws4da_c00000{word-spacing:8.632800px;}
.wsc8e_c00000{word-spacing:8.633232px;}
.ws651_c00000{word-spacing:8.639244px;}
.ws196_c00000{word-spacing:8.640000px;}
.ws1245_c00000{word-spacing:8.645256px;}
.wsa6_c00000{word-spacing:8.647200px;}
.ws62d_c00000{word-spacing:8.651268px;}
.ws38e_c00000{word-spacing:8.654400px;}
.ws7bb_c00000{word-spacing:8.657280px;}
.ws38d_c00000{word-spacing:8.661600px;}
.ws1950_c00000{word-spacing:8.663220px;}
.ws1af7_c00000{word-spacing:8.663292px;}
.ws134_c00000{word-spacing:8.668800px;}
.ws194f_c00000{word-spacing:8.669808px;}
.wse85_c00000{word-spacing:8.675316px;}
.wsb02_c00000{word-spacing:8.676000px;}
.ws18de_c00000{word-spacing:8.676396px;}
.wsa06_c00000{word-spacing:8.681328px;}
.ws16a0_c00000{word-spacing:8.682984px;}
.ws4d9_c00000{word-spacing:8.683200px;}
.ws1946_c00000{word-spacing:8.689572px;}
.ws106f_c00000{word-spacing:8.690400px;}
.ws10c4_c00000{word-spacing:8.693352px;}
.ws8ba_c00000{word-spacing:8.697600px;}
.ws1481_c00000{word-spacing:8.699364px;}
.ws156d_c00000{word-spacing:8.705376px;}
.ws10b9_c00000{word-spacing:8.712000px;}
.ws19ec_c00000{word-spacing:8.715924px;}
.ws194c_c00000{word-spacing:8.722512px;}
.ws1ada_c00000{word-spacing:8.723412px;}
.ws1009_c00000{word-spacing:8.726400px;}
.ws652_c00000{word-spacing:8.729424px;}
.ws181f_c00000{word-spacing:8.733600px;}
.ws897_c00000{word-spacing:8.740800px;}
.ws9e7_c00000{word-spacing:8.741448px;}
.ws653_c00000{word-spacing:8.747460px;}
.ws997_c00000{word-spacing:8.748000px;}
.ws9e6_c00000{word-spacing:8.753472px;}
.wsb53_c00000{word-spacing:8.759484px;}
.ws751_c00000{word-spacing:8.762400px;}
.ws14ae_c00000{word-spacing:8.765496px;}
.wscec_c00000{word-spacing:8.769600px;}
.ws153f_c00000{word-spacing:8.771508px;}
.wscc5_c00000{word-spacing:8.776800px;}
.ws156e_c00000{word-spacing:8.783532px;}
.ws872_c00000{word-spacing:8.784000px;}
.wsc10_c00000{word-spacing:8.789544px;}
.wsda5_c00000{word-spacing:8.791200px;}
.ws10ae_c00000{word-spacing:8.795556px;}
.wsda6_c00000{word-spacing:8.798400px;}
.ws8ae_c00000{word-spacing:8.805600px;}
.ws13c7_c00000{word-spacing:8.807580px;}
.wsa8a_c00000{word-spacing:8.812800px;}
.ws14af_c00000{word-spacing:8.813592px;}
.ws174f_c00000{word-spacing:8.819604px;}
.ws9a9_c00000{word-spacing:8.820000px;}
.ws10ac_c00000{word-spacing:8.825616px;}
.ws1211_c00000{word-spacing:8.827200px;}
.ws10ad_c00000{word-spacing:8.831628px;}
.ws69a_c00000{word-spacing:8.834400px;}
.wsb54_c00000{word-spacing:8.837640px;}
.ws4bd_c00000{word-spacing:8.841600px;}
.wsb67_c00000{word-spacing:8.848800px;}
.ws1379_c00000{word-spacing:8.849664px;}
.ws194e_c00000{word-spacing:8.855676px;}
.ws827_c00000{word-spacing:8.856000px;}
.ws1f6_c00000{word-spacing:8.856216px;}
.ws17a4_c00000{word-spacing:8.861688px;}
.ws1e6_c00000{word-spacing:8.863200px;}
.ws69c_c00000{word-spacing:8.870400px;}
.wsc8d_c00000{word-spacing:8.873712px;}
.ws49b_c00000{word-spacing:8.877600px;}
.ws1328_c00000{word-spacing:8.879724px;}
.ws685_c00000{word-spacing:8.884800px;}
.ws1122_c00000{word-spacing:8.891748px;}
.ws27a_c00000{word-spacing:8.892000px;}
.ws1902_c00000{word-spacing:8.897760px;}
.wsaf1_c00000{word-spacing:8.899200px;}
.wsf87_c00000{word-spacing:8.903772px;}
.ws2e8_c00000{word-spacing:8.906400px;}
.ws1a24_c00000{word-spacing:8.909784px;}
.wsc7d_c00000{word-spacing:8.913600px;}
.wsc12_c00000{word-spacing:8.915796px;}
.ws2e7_c00000{word-spacing:8.920800px;}
.ws1e5_c00000{word-spacing:8.928000px;}
.ws896_c00000{word-spacing:8.935200px;}
.ws2a1_c00000{word-spacing:8.942400px;}
.ws69b_c00000{word-spacing:8.949600px;}
.ws8d0_c00000{word-spacing:8.956800px;}
.ws13fd_c00000{word-spacing:8.963892px;}
.ws54e_c00000{word-spacing:8.964000px;}
.ws13fb_c00000{word-spacing:8.969904px;}
.wsde_c00000{word-spacing:8.971200px;}
.ws10b2_c00000{word-spacing:8.975916px;}
.ws381_c00000{word-spacing:8.978400px;}
.ws1978_c00000{word-spacing:8.981928px;}
.ws9a8_c00000{word-spacing:8.985600px;}
.ws54f_c00000{word-spacing:8.992800px;}
.ws1907_c00000{word-spacing:8.993952px;}
.ws1226_c00000{word-spacing:8.999964px;}
.wsdf_c00000{word-spacing:9.000000px;}
.ws10fc_c00000{word-spacing:9.005976px;}
.ws6c4_c00000{word-spacing:9.007200px;}
.ws17b6_c00000{word-spacing:9.011988px;}
.ws8af_c00000{word-spacing:9.014400px;}
.ws851_c00000{word-spacing:9.018000px;}
.wsae8_c00000{word-spacing:9.021600px;}
.ws826_c00000{word-spacing:9.028800px;}
.ws1682_c00000{word-spacing:9.032148px;}
.wscc6_c00000{word-spacing:9.036000px;}
.ws1683_c00000{word-spacing:9.038736px;}
.ws49a_c00000{word-spacing:9.043200px;}
.ws17b2_c00000{word-spacing:9.050400px;}
.ws13fc_c00000{word-spacing:9.054072px;}
.wsa8b_c00000{word-spacing:9.057600px;}
.wsfc8_c00000{word-spacing:9.060084px;}
.ws133b_c00000{word-spacing:9.066096px;}
.wsd0c_c00000{word-spacing:9.072000px;}
.ws1384_c00000{word-spacing:9.072108px;}
.ws1825_c00000{word-spacing:9.078120px;}
.ws752_c00000{word-spacing:9.079200px;}
.ws1839_c00000{word-spacing:9.082224px;}
.ws1850_c00000{word-spacing:9.084132px;}
.ws17a8_c00000{word-spacing:9.086400px;}
.ws13d4_c00000{word-spacing:9.090144px;}
.ws178f_c00000{word-spacing:9.093600px;}
.ws231_c00000{word-spacing:9.100800px;}
.wsf86_c00000{word-spacing:9.102168px;}
.ws1782_c00000{word-spacing:9.108000px;}
.ws10b0_c00000{word-spacing:9.108180px;}
.ws15db_c00000{word-spacing:9.115200px;}
.ws19cc_c00000{word-spacing:9.120204px;}
.ws10e6_c00000{word-spacing:9.122400px;}
.ws13d3_c00000{word-spacing:9.126216px;}
.ws13d5_c00000{word-spacing:9.132228px;}
.ws1557_c00000{word-spacing:9.136800px;}
.ws1790_c00000{word-spacing:9.144000px;}
.ws16ff_c00000{word-spacing:9.144252px;}
.ws16e1_c00000{word-spacing:9.151200px;}
.ws1631_c00000{word-spacing:9.158400px;}
.ws88d_c00000{word-spacing:9.165600px;}
.ws133c_c00000{word-spacing:9.168300px;}
.wsa99_c00000{word-spacing:9.172800px;}
.ws603_c00000{word-spacing:9.174312px;}
.ws233_c00000{word-spacing:9.180000px;}
.ws1826_c00000{word-spacing:9.186336px;}
.ws11aa_c00000{word-spacing:9.187200px;}
.wsa05_c00000{word-spacing:9.192348px;}
.ws2a3_c00000{word-spacing:9.194400px;}
.ws15a0_c00000{word-spacing:9.198360px;}
.wsf9d_c00000{word-spacing:9.201600px;}
.ws182b_c00000{word-spacing:9.204372px;}
.wse89_c00000{word-spacing:9.208800px;}
.ws5d3_c00000{word-spacing:9.216000px;}
.wsf88_c00000{word-spacing:9.216396px;}
.ws1700_c00000{word-spacing:9.222408px;}
.ws161a_c00000{word-spacing:9.223200px;}
.wsb3f_c00000{word-spacing:9.230400px;}
.ws154d_c00000{word-spacing:9.234432px;}
.wsec6_c00000{word-spacing:9.237600px;}
.ws604_c00000{word-spacing:9.240444px;}
.wsaaf_c00000{word-spacing:9.244800px;}
.ws2a2_c00000{word-spacing:9.252000px;}
.ws10b1_c00000{word-spacing:9.252468px;}
.ws154c_c00000{word-spacing:9.258480px;}
.ws95b_c00000{word-spacing:9.259200px;}
.ws711_c00000{word-spacing:9.266400px;}
.ws1e7_c00000{word-spacing:9.273600px;}
.wsc9_c00000{word-spacing:9.280800px;}
.ws650_c00000{word-spacing:9.288000px;}
.ws6c1_c00000{word-spacing:9.295200px;}
.ws159f_c00000{word-spacing:9.300564px;}
.ws5d4_c00000{word-spacing:9.302400px;}
.ws1699_c00000{word-spacing:9.306576px;}
.wsb37_c00000{word-spacing:9.309600px;}
.ws18e7_c00000{word-spacing:9.312588px;}
.ws373_c00000{word-spacing:9.316800px;}
.ws648_c00000{word-spacing:9.324000px;}
.ws1859_c00000{word-spacing:9.324612px;}
.ws503_c00000{word-spacing:9.331200px;}
.ws12b6_c00000{word-spacing:9.336636px;}
.ws68c_c00000{word-spacing:9.338400px;}
.wsbac_c00000{word-spacing:9.341784px;}
.ws587_c00000{word-spacing:9.345600px;}
.ws232_c00000{word-spacing:9.352800px;}
.wsc60_c00000{word-spacing:9.354672px;}
.wsca_c00000{word-spacing:9.360000px;}
.wsfac_c00000{word-spacing:9.360684px;}
.ws30c_c00000{word-spacing:9.366696px;}
.ws244_c00000{word-spacing:9.367200px;}
.ws5a7_c00000{word-spacing:9.372708px;}
.ws88e_c00000{word-spacing:9.374400px;}
.ws19b6_c00000{word-spacing:9.374724px;}
.wse78_c00000{word-spacing:9.378720px;}
.ws16a8_c00000{word-spacing:9.381312px;}
.ws72c_c00000{word-spacing:9.381600px;}
.ws30d_c00000{word-spacing:9.384732px;}
.ws16a9_c00000{word-spacing:9.387900px;}
.ws245_c00000{word-spacing:9.388800px;}
.ws796_c00000{word-spacing:9.390744px;}
.ws147a_c00000{word-spacing:9.396000px;}
.wsbaa_c00000{word-spacing:9.401076px;}
.ws374_c00000{word-spacing:9.403200px;}
.ws1737_c00000{word-spacing:9.417600px;}
.wsc1d_c00000{word-spacing:9.424800px;}
.ws983_c00000{word-spacing:9.427428px;}
.ws1502_c00000{word-spacing:9.434016px;}
.ws1802_c00000{word-spacing:9.438840px;}
.wscc1_c00000{word-spacing:9.439200px;}
.ws1801_c00000{word-spacing:9.444852px;}
.ws1afd_c00000{word-spacing:9.446400px;}
.ws1503_c00000{word-spacing:9.447192px;}
.wsdf2_c00000{word-spacing:9.450864px;}
.ws1066_c00000{word-spacing:9.462888px;}
.ws984_c00000{word-spacing:9.466956px;}
.ws1218_c00000{word-spacing:9.468000px;}
.ws1818_c00000{word-spacing:9.468900px;}
.wsaa4_c00000{word-spacing:9.475200px;}
.wse3e_c00000{word-spacing:9.480924px;}
.ws1060_c00000{word-spacing:9.482400px;}
.wsfc9_c00000{word-spacing:9.486936px;}
.ws184e_c00000{word-spacing:9.489600px;}
.ws188f_c00000{word-spacing:9.496800px;}
.ws15de_c00000{word-spacing:9.498960px;}
.ws107b_c00000{word-spacing:9.504000px;}
.ws532_c00000{word-spacing:9.504972px;}
.ws315_c00000{word-spacing:9.510984px;}
.ws885_c00000{word-spacing:9.511200px;}
.wsdf0_c00000{word-spacing:9.516996px;}
.wsb8f_c00000{word-spacing:9.518400px;}
.ws1a2a_c00000{word-spacing:9.525600px;}
.ws42e_c00000{word-spacing:9.532800px;}
.wsdf1_c00000{word-spacing:9.535032px;}
.ws1b0d_c00000{word-spacing:9.540000px;}
.wse79_c00000{word-spacing:9.541044px;}
.ws1862_c00000{word-spacing:9.547200px;}
.ws12b5_c00000{word-spacing:9.553068px;}
.ws10e7_c00000{word-spacing:9.554400px;}
.wsfca_c00000{word-spacing:9.559080px;}
.ws1704_c00000{word-spacing:9.561600px;}
.ws316_c00000{word-spacing:9.565092px;}
.ws107c_c00000{word-spacing:9.568800px;}
.ws1ac3_c00000{word-spacing:9.576000px;}
.ws1587_c00000{word-spacing:9.577116px;}
.wsdef_c00000{word-spacing:9.583128px;}
.ws808_c00000{word-spacing:9.583200px;}
.ws178c_c00000{word-spacing:9.589140px;}
.wsb3a_c00000{word-spacing:9.590400px;}
.ws1065_c00000{word-spacing:9.595152px;}
.ws445_c00000{word-spacing:9.597600px;}
.ws1b08_c00000{word-spacing:9.601164px;}
.ws64c_c00000{word-spacing:9.604800px;}
.ws184f_c00000{word-spacing:9.607176px;}
.ws525_c00000{word-spacing:9.612000px;}
.ws308_c00000{word-spacing:9.619200px;}
.ws4a5_c00000{word-spacing:9.626400px;}
.ws307_c00000{word-spacing:9.633600px;}
.ws725_c00000{word-spacing:9.640800px;}
.ws3e1_c00000{word-spacing:9.648000px;}
.ws829_c00000{word-spacing:9.655200px;}
.ws526_c00000{word-spacing:9.662400px;}
.ws42f_c00000{word-spacing:9.669600px;}
.ws169b_c00000{word-spacing:9.673308px;}
.ws668_c00000{word-spacing:9.676800px;}
.ws146d_c00000{word-spacing:9.679320px;}
.ws946_c00000{word-spacing:9.684000px;}
.ws1332_c00000{word-spacing:9.685332px;}
.wsc0_c00000{word-spacing:9.691200px;}
.ws146c_c00000{word-spacing:9.697356px;}
.ws42d_c00000{word-spacing:9.698400px;}
.ws8e8_c00000{word-spacing:9.705600px;}
.ws18d7_c00000{word-spacing:9.710712px;}
.ws18a_c00000{word-spacing:9.712800px;}
.wsd5b_c00000{word-spacing:9.715392px;}
.ws82a_c00000{word-spacing:9.720000px;}
.ws39f_c00000{word-spacing:9.721404px;}
.ws524_c00000{word-spacing:9.727200px;}
.ws10f2_c00000{word-spacing:9.727416px;}
.ws313_c00000{word-spacing:9.733428px;}
.wsad4_c00000{word-spacing:9.734400px;}
.ws312_c00000{word-spacing:9.739440px;}
.ws95c_c00000{word-spacing:9.741600px;}
.wsd99_c00000{word-spacing:9.748800px;}
.ws158c_c00000{word-spacing:9.750240px;}
.ws164d_c00000{word-spacing:9.751464px;}
.ws82b_c00000{word-spacing:9.756000px;}
.ws158d_c00000{word-spacing:9.756828px;}
.ws590_c00000{word-spacing:9.763200px;}
.ws1590_c00000{word-spacing:9.763416px;}
.wsbab_c00000{word-spacing:9.770004px;}
.ws195e_c00000{word-spacing:9.770400px;}
.ws1993_c00000{word-spacing:9.775512px;}
.ws1591_c00000{word-spacing:9.776592px;}
.ws96a_c00000{word-spacing:9.777600px;}
.ws18d6_c00000{word-spacing:9.783180px;}
.ws148f_c00000{word-spacing:9.784800px;}
.ws1628_c00000{word-spacing:9.787536px;}
.ws17ef_c00000{word-spacing:9.789768px;}
.ws5e4_c00000{word-spacing:9.792000px;}
.ws1aa8_c00000{word-spacing:9.793548px;}
.ws1a8f_c00000{word-spacing:9.796356px;}
.ws1b1c_c00000{word-spacing:9.799200px;}
.wsd27_c00000{word-spacing:9.799560px;}
.ws1771_c00000{word-spacing:9.805572px;}
.ws1a22_c00000{word-spacing:9.806400px;}
.ws1751_c00000{word-spacing:9.811584px;}
.wsd26_c00000{word-spacing:9.817596px;}
.ws1abf_c00000{word-spacing:9.820800px;}
.ws39e_c00000{word-spacing:9.823608px;}
.ws189_c00000{word-spacing:9.828000px;}
.ws39d_c00000{word-spacing:9.829620px;}
.ws121d_c00000{word-spacing:9.835200px;}
.ws531_c00000{word-spacing:9.835632px;}
.ws11af_c00000{word-spacing:9.842400px;}
.ws105c_c00000{word-spacing:9.847656px;}
.ws14be_c00000{word-spacing:9.849600px;}
.ws1340_c00000{word-spacing:9.853668px;}
.ws11de_c00000{word-spacing:9.856800px;}
.ws18d8_c00000{word-spacing:9.859680px;}
.wsc53_c00000{word-spacing:9.864000px;}
.ws1a85_c00000{word-spacing:9.871200px;}
.ws271_c00000{word-spacing:9.878400px;}
.ws504_c00000{word-spacing:9.885600px;}
.ws18e6_c00000{word-spacing:9.889740px;}
.ws71_c00000{word-spacing:9.890748px;}
.ws18e5_c00000{word-spacing:9.895752px;}
.wscb0_c00000{word-spacing:9.900000px;}
.wsa77_c00000{word-spacing:9.901764px;}
.wsc02_c00000{word-spacing:9.907200px;}
.ws1abc_c00000{word-spacing:9.907776px;}
.ws164b_c00000{word-spacing:9.913788px;}
.ws32b_c00000{word-spacing:9.914400px;}
.ws164a_c00000{word-spacing:9.919800px;}
.wsbfe_c00000{word-spacing:9.921600px;}
.ws12d2_c00000{word-spacing:9.925812px;}
.ws581_c00000{word-spacing:9.928800px;}
.wsc69_c00000{word-spacing:9.936000px;}
.ws14ec_c00000{word-spacing:9.937836px;}
.ws436_c00000{word-spacing:9.943200px;}
.ws12d1_c00000{word-spacing:9.943848px;}
.ws5d6_c00000{word-spacing:9.950400px;}
.ws12b7_c00000{word-spacing:9.955872px;}
.wsb01_c00000{word-spacing:9.957600px;}
.ws1647_c00000{word-spacing:9.961884px;}
.ws5e6_c00000{word-spacing:9.964800px;}
.ws133f_c00000{word-spacing:9.967896px;}
.ws8e3_c00000{word-spacing:9.972000px;}
.ws3b4_c00000{word-spacing:9.979200px;}
.ws1a32_c00000{word-spacing:9.979920px;}
.ws18d9_c00000{word-spacing:9.985932px;}
.ws14a8_c00000{word-spacing:9.986400px;}
.ws18e8_c00000{word-spacing:9.991944px;}
.ws3b5_c00000{word-spacing:9.993600px;}
.ws586_c00000{word-spacing:10.000800px;}
.wse5_c00000{word-spacing:10.008000px;}
.wse4_c00000{word-spacing:10.015200px;}
.wsf0d_c00000{word-spacing:10.022400px;}
.ws1a31_c00000{word-spacing:10.028016px;}
.ws389_c00000{word-spacing:10.029600px;}
.ws64f_c00000{word-spacing:10.036800px;}
.ws428_c00000{word-spacing:10.044000px;}
.ws437_c00000{word-spacing:10.051200px;}
.ws19d5_c00000{word-spacing:10.058076px;}
.ws32a_c00000{word-spacing:10.058400px;}
.wsd68_c00000{word-spacing:10.064088px;}
.ws502_c00000{word-spacing:10.065600px;}
.ws5e5_c00000{word-spacing:10.072800px;}
.ws1366_c00000{word-spacing:10.076112px;}
.ws299_c00000{word-spacing:10.080000px;}
.wse5e_c00000{word-spacing:10.082124px;}
.ws270_c00000{word-spacing:10.087200px;}
.wsebf_c00000{word-spacing:10.088136px;}
.ws163e_c00000{word-spacing:10.092816px;}
.ws6a9_c00000{word-spacing:10.094148px;}
.ws9ec_c00000{word-spacing:10.094400px;}
.ws931_c00000{word-spacing:10.100160px;}
.ws110b_c00000{word-spacing:10.101600px;}
.ws8ff_c00000{word-spacing:10.106172px;}
.ws9ed_c00000{word-spacing:10.108800px;}
.ws1af4_c00000{word-spacing:10.112184px;}
.ws580_c00000{word-spacing:10.116000px;}
.ws9a4_c00000{word-spacing:10.118196px;}
.ws1b41_c00000{word-spacing:10.119168px;}
.ws298_c00000{word-spacing:10.123200px;}
.ws72_c00000{word-spacing:10.131048px;}
.ws17a1_c00000{word-spacing:10.137600px;}
.ws8fd_c00000{word-spacing:10.142244px;}
.ws1b1b_c00000{word-spacing:10.148256px;}
.ws12c8_c00000{word-spacing:10.152000px;}
.ws85e_c00000{word-spacing:10.154268px;}
.ws9ef_c00000{word-spacing:10.158696px;}
.ws1987_c00000{word-spacing:10.159200px;}
.ws1b18_c00000{word-spacing:10.162224px;}
.ws1269_c00000{word-spacing:10.166292px;}
.ws1619_c00000{word-spacing:10.166400px;}
.ws85f_c00000{word-spacing:10.172304px;}
.ws272_c00000{word-spacing:10.173600px;}
.ws6a8_c00000{word-spacing:10.178316px;}
.ws185d_c00000{word-spacing:10.180800px;}
.ws9a5_c00000{word-spacing:10.184328px;}
.ws1374_c00000{word-spacing:10.190340px;}
.wsaa8_c00000{word-spacing:10.195200px;}
.ws111f_c00000{word-spacing:10.196352px;}
.ws38a_c00000{word-spacing:10.202400px;}
.ws105e_c00000{word-spacing:10.208376px;}
.ws119b_c00000{word-spacing:10.209600px;}
.ws18a2_c00000{word-spacing:10.216800px;}
.ws105f_c00000{word-spacing:10.220400px;}
.wsb7e_c00000{word-spacing:10.224000px;}
.ws154b_c00000{word-spacing:10.226412px;}
.ws1830_c00000{word-spacing:10.232424px;}
.ws4aa_c00000{word-spacing:10.238400px;}
.ws74a_c00000{word-spacing:10.245600px;}
.wsb98_c00000{word-spacing:10.250460px;}
.ws170c_c00000{word-spacing:10.256472px;}
.ws476_c00000{word-spacing:10.260000px;}
.wsd69_c00000{word-spacing:10.262484px;}
.ws470_c00000{word-spacing:10.267200px;}
.ws7cb_c00000{word-spacing:10.274400px;}
.ws8fe_c00000{word-spacing:10.274508px;}
.wsb2e_c00000{word-spacing:10.281600px;}
.ws6b2_c00000{word-spacing:10.286532px;}
.ws477_c00000{word-spacing:10.288800px;}
.ws96e_c00000{word-spacing:10.296000px;}
.ws1228_c00000{word-spacing:10.298556px;}
.ws748_c00000{word-spacing:10.303200px;}
.ws3d9_c00000{word-spacing:10.310400px;}
.ws177e_c00000{word-spacing:10.310580px;}
.ws58a_c00000{word-spacing:10.317600px;}
.ws3d8_c00000{word-spacing:10.324800px;}
.ws55d_c00000{word-spacing:10.332000px;}
.ws4bb_c00000{word-spacing:10.339200px;}
.ws1365_c00000{word-spacing:10.340640px;}
.ws8cf_c00000{word-spacing:10.346400px;}
.ws1331_c00000{word-spacing:10.346652px;}
.ws4ab_c00000{word-spacing:10.353600px;}
.ws17a_c00000{word-spacing:10.360800px;}
.ws8d_c00000{word-spacing:10.368000px;}
.ws46f_c00000{word-spacing:10.375200px;}
.ws3f1_c00000{word-spacing:10.382400px;}
.ws293_c00000{word-spacing:10.389600px;}
.ws5b7_c00000{word-spacing:10.396800px;}
.ws1428_c00000{word-spacing:10.400760px;}
.ws179_c00000{word-spacing:10.404000px;}
.ws105d_c00000{word-spacing:10.406772px;}
.ws8c_c00000{word-spacing:10.411200px;}
.ws1574_c00000{word-spacing:10.412784px;}
.ws388_c00000{word-spacing:10.418400px;}
.ws932_c00000{word-spacing:10.424808px;}
.ws3c3_c00000{word-spacing:10.425600px;}
.ws149f_c00000{word-spacing:10.430820px;}
.ws8b_c00000{word-spacing:10.432800px;}
.wsb57_c00000{word-spacing:10.436832px;}
.wsaa7_c00000{word-spacing:10.440000px;}
.wsadb_c00000{word-spacing:10.441980px;}
.wsc7e_c00000{word-spacing:10.447200px;}
.wsd86_c00000{word-spacing:10.448856px;}
.ws78a_c00000{word-spacing:10.454400px;}
.wsc36_c00000{word-spacing:10.461600px;}
.ws909_c00000{word-spacing:10.468800px;}
.wsf46_c00000{word-spacing:10.476000px;}
.ws194b_c00000{word-spacing:10.481508px;}
.ws185c_c00000{word-spacing:10.483200px;}
.ws1268_c00000{word-spacing:10.484928px;}
.ws102f_c00000{word-spacing:10.490400px;}
.ws197d_c00000{word-spacing:10.490940px;}
.ws15fe_c00000{word-spacing:10.494684px;}
.ws1a76_c00000{word-spacing:10.496952px;}
.wsdb2_c00000{word-spacing:10.497600px;}
.wsada_c00000{word-spacing:10.501272px;}
.ws197b_c00000{word-spacing:10.502964px;}
.ws3c2_c00000{word-spacing:10.504800px;}
.ws19d2_c00000{word-spacing:10.507860px;}
.ws128c_c00000{word-spacing:10.508976px;}
.ws13bb_c00000{word-spacing:10.512000px;}
.ws1b47_c00000{word-spacing:10.514448px;}
.ws97c_c00000{word-spacing:10.519200px;}
.ws99c_c00000{word-spacing:10.526400px;}
.ws15e7_c00000{word-spacing:10.527012px;}
.ws1429_c00000{word-spacing:10.533024px;}
.wsc7f_c00000{word-spacing:10.533600px;}
.ws1087_c00000{word-spacing:10.539036px;}
.ws11b0_c00000{word-spacing:10.548000px;}
.ws1209_c00000{word-spacing:10.555200px;}
.wsb97_c00000{word-spacing:10.557072px;}
.ws1088_c00000{word-spacing:10.563084px;}
.ws971_c00000{word-spacing:10.569600px;}
.ws120a_c00000{word-spacing:10.576800px;}
.ws3de_c00000{word-spacing:10.584000px;}
.wsb58_c00000{word-spacing:10.587132px;}
.ws749_c00000{word-spacing:10.591200px;}
.ws171e_c00000{word-spacing:10.593144px;}
.ws1249_c00000{word-spacing:10.598400px;}
.ws19af_c00000{word-spacing:10.611180px;}
.ws124d_c00000{word-spacing:10.612800px;}
.ws185b_c00000{word-spacing:10.617192px;}
.ws472_c00000{word-spacing:10.620000px;}
.ws197c_c00000{word-spacing:10.623204px;}
.ws1f7_c00000{word-spacing:10.627200px;}
.ws1361_c00000{word-spacing:10.629216px;}
.wseb6_c00000{word-spacing:10.634400px;}
.ws1ae7_c00000{word-spacing:10.635228px;}
.wsd85_c00000{word-spacing:10.641240px;}
.wsc85_c00000{word-spacing:10.641600px;}
.ws745_c00000{word-spacing:10.648800px;}
.ws1648_c00000{word-spacing:10.653264px;}
.ws121b_c00000{word-spacing:10.656000px;}
.ws1ae6_c00000{word-spacing:10.659276px;}
.ws61c_c00000{word-spacing:10.663200px;}
.ws831_c00000{word-spacing:10.670400px;}
.ws917_c00000{word-spacing:10.671300px;}
.ws20b_c00000{word-spacing:10.677600px;}
.ws1fd_c00000{word-spacing:10.684800px;}
.ws126a_c00000{word-spacing:10.689336px;}
.ws697_c00000{word-spacing:10.692000px;}
.ws22a_c00000{word-spacing:10.699200px;}
.ws371_c00000{word-spacing:10.706400px;}
.ws372_c00000{word-spacing:10.713600px;}
.ws1f8_c00000{word-spacing:10.720800px;}
.ws13db_c00000{word-spacing:10.725408px;}
.ws1091_c00000{word-spacing:10.728000px;}
.wsc18_c00000{word-spacing:10.735200px;}
.ws1fc_c00000{word-spacing:10.742400px;}
.wsbf2_c00000{word-spacing:10.749600px;}
.ws15e9_c00000{word-spacing:10.755468px;}
.wsab4_c00000{word-spacing:10.756800px;}
.ws1452_c00000{word-spacing:10.761480px;}
.ws12e_c00000{word-spacing:10.764000px;}
.ws12f_c00000{word-spacing:10.771200px;}
.ws4d1_c00000{word-spacing:10.778400px;}
.ws13ec_c00000{word-spacing:10.785528px;}
.ws348_c00000{word-spacing:10.785600px;}
.wsf18_c00000{word-spacing:10.791540px;}
.ws3df_c00000{word-spacing:10.792800px;}
.ws132e_c00000{word-spacing:10.797552px;}
.wsc67_c00000{word-spacing:10.800000px;}
.ws1490_c00000{word-spacing:10.803564px;}
.ws8f0_c00000{word-spacing:10.804320px;}
.wsd30_c00000{word-spacing:10.807200px;}
.ws1035_c00000{word-spacing:10.809576px;}
.ws1952_c00000{word-spacing:10.810908px;}
.wsc20_c00000{word-spacing:10.814400px;}
.wsebe_c00000{word-spacing:10.815588px;}
.ws347_c00000{word-spacing:10.821600px;}
.ws8f1_c00000{word-spacing:10.824084px;}
.wsf15_c00000{word-spacing:10.827612px;}
.wsbf1_c00000{word-spacing:10.828800px;}
.ws16e8_c00000{word-spacing:10.830672px;}
.wsa11_c00000{word-spacing:10.836000px;}
.wsba8_c00000{word-spacing:10.837260px;}
.ws61d_c00000{word-spacing:10.843200px;}
.ws15c0_c00000{word-spacing:10.843848px;}
.ws14a9_c00000{word-spacing:10.850400px;}
.ws800_c00000{word-spacing:10.850436px;}
.ws108d_c00000{word-spacing:10.857600px;}
.ws132d_c00000{word-spacing:10.857672px;}
.ws19f3_c00000{word-spacing:10.863612px;}
.ws12f5_c00000{word-spacing:10.864800px;}
.ws1b48_c00000{word-spacing:10.870200px;}
.ws78c_c00000{word-spacing:10.872000px;}
.ws404_c00000{word-spacing:10.875708px;}
.ws180a_c00000{word-spacing:10.879200px;}
.ws1451_c00000{word-spacing:10.881720px;}
.ws801_c00000{word-spacing:10.883376px;}
.wsa29_c00000{word-spacing:10.886400px;}
.ws406_c00000{word-spacing:10.887732px;}
.ws667_c00000{word-spacing:10.893600px;}
.ws1ae_c00000{word-spacing:10.893744px;}
.wsf16_c00000{word-spacing:10.899756px;}
.ws1b4b_c00000{word-spacing:10.905768px;}
.ws135b_c00000{word-spacing:10.908000px;}
.ws1439_c00000{word-spacing:10.911780px;}
.ws19e7_c00000{word-spacing:10.915200px;}
.ws405_c00000{word-spacing:10.917792px;}
.ws1857_c00000{word-spacing:10.923804px;}
.ws108f_c00000{word-spacing:10.929600px;}
.wsad1_c00000{word-spacing:10.929816px;}
.ws15e8_c00000{word-spacing:10.935828px;}
.ws463_c00000{word-spacing:10.936800px;}
.ws128a_c00000{word-spacing:10.941840px;}
.wsd78_c00000{word-spacing:10.951200px;}
.ws1a72_c00000{word-spacing:10.953864px;}
.ws4cd_c00000{word-spacing:10.958400px;}
.ws143a_c00000{word-spacing:10.959876px;}
.wsac6_c00000{word-spacing:10.965600px;}
.wsad0_c00000{word-spacing:10.971900px;}
.wsa76_c00000{word-spacing:10.972800px;}
.ws1438_c00000{word-spacing:10.977912px;}
.ws145e_c00000{word-spacing:10.980000px;}
.ws11d9_c00000{word-spacing:10.983924px;}
.wsde8_c00000{word-spacing:10.987200px;}
.ws11dc_c00000{word-spacing:10.989936px;}
.ws3af_c00000{word-spacing:10.994400px;}
.ws70a_c00000{word-spacing:11.001600px;}
.ws1649_c00000{word-spacing:11.001960px;}
.wsf0f_c00000{word-spacing:11.007972px;}
.wsd98_c00000{word-spacing:11.008800px;}
.ws1484_c00000{word-spacing:11.013984px;}
.ws11fa_c00000{word-spacing:11.016000px;}
.ws12a1_c00000{word-spacing:11.023200px;}
.wsf11_c00000{word-spacing:11.026008px;}
.wsc9f_c00000{word-spacing:11.030400px;}
.ws11f5_c00000{word-spacing:11.032020px;}
.ws7fd_c00000{word-spacing:11.037600px;}
.ws1485_c00000{word-spacing:11.038032px;}
.ws439_c00000{word-spacing:11.044800px;}
.ws128b_c00000{word-spacing:11.050056px;}
.ws256_c00000{word-spacing:11.052000px;}
.ws238_c00000{word-spacing:11.059200px;}
.wsf10_c00000{word-spacing:11.062080px;}
.ws108e_c00000{word-spacing:11.066400px;}
.ws15a_c00000{word-spacing:11.073600px;}
.ws4cc_c00000{word-spacing:11.080800px;}
.ws1230_c00000{word-spacing:11.088000px;}
.ws1a09_c00000{word-spacing:11.092140px;}
.ws70b_c00000{word-spacing:11.095200px;}
.ws33c_c00000{word-spacing:11.102400px;}
.ws864_c00000{word-spacing:11.104164px;}
.ws534_c00000{word-spacing:11.109600px;}
.ws1301_c00000{word-spacing:11.110176px;}
.ws774_c00000{word-spacing:11.116800px;}
.ws7fe_c00000{word-spacing:11.124000px;}
.ws3ae_c00000{word-spacing:11.131200px;}
.ws1171_c00000{word-spacing:11.134224px;}
.ws159_c00000{word-spacing:11.138400px;}
.ws3b0_c00000{word-spacing:11.145600px;}
.ws142d_c00000{word-spacing:11.146248px;}
.ws1086_c00000{word-spacing:11.152260px;}
.ws4e7_c00000{word-spacing:11.152800px;}
.ws10e_c00000{word-spacing:11.158272px;}
.ws239_c00000{word-spacing:11.160000px;}
.ws141c_c00000{word-spacing:11.164284px;}
.ws124_c00000{word-spacing:11.167200px;}
.wse80_c00000{word-spacing:11.170296px;}
.ws123_c00000{word-spacing:11.174400px;}
.ws11ce_c00000{word-spacing:11.176308px;}
.ws16e7_c00000{word-spacing:11.179836px;}
.ws462_c00000{word-spacing:11.181600px;}
.ws83b_c00000{word-spacing:11.182320px;}
.ws19c_c00000{word-spacing:11.188800px;}
.wse6b_c00000{word-spacing:11.196000px;}
.ws8c8_c00000{word-spacing:11.199600px;}
.ws1a48_c00000{word-spacing:11.200356px;}
.ws1298_c00000{word-spacing:11.203200px;}
.ws1a04_c00000{word-spacing:11.206368px;}
.ws12de_c00000{word-spacing:11.210400px;}
.ws15f6_c00000{word-spacing:11.212776px;}
.wsa2a_c00000{word-spacing:11.217600px;}
.ws13da_c00000{word-spacing:11.224404px;}
.ws97a_c00000{word-spacing:11.224800px;}
.ws17ca_c00000{word-spacing:11.225952px;}
.ws1803_c00000{word-spacing:11.230416px;}
.ws15f5_c00000{word-spacing:11.232540px;}
.ws168e_c00000{word-spacing:11.236428px;}
.ws1a8d_c00000{word-spacing:11.239128px;}
.ws1898_c00000{word-spacing:11.242224px;}
.wsc2a_c00000{word-spacing:11.242440px;}
.wsba9_c00000{word-spacing:11.245716px;}
.wsf4a_c00000{word-spacing:11.248452px;}
.ws1a8c_c00000{word-spacing:11.252304px;}
.ws168d_c00000{word-spacing:11.254464px;}
.wsc2c_c00000{word-spacing:11.260476px;}
.wsbd1_c00000{word-spacing:11.260800px;}
.wsba7_c00000{word-spacing:11.265480px;}
.wsc2b_c00000{word-spacing:11.266488px;}
.ws1256_c00000{word-spacing:11.268000px;}
.wsc52_c00000{word-spacing:11.275200px;}
.ws1170_c00000{word-spacing:11.278512px;}
.ws121e_c00000{word-spacing:11.282400px;}
.ws13ea_c00000{word-spacing:11.284524px;}
.ws15e2_c00000{word-spacing:11.289600px;}
.ws1754_c00000{word-spacing:11.296548px;}
.ws929_c00000{word-spacing:11.296800px;}
.ws1238_c00000{word-spacing:11.304000px;}
.ws1a0d_c00000{word-spacing:11.308572px;}
.wsf33_c00000{word-spacing:11.311200px;}
.ws13dc_c00000{word-spacing:11.314584px;}
.ws1760_c00000{word-spacing:11.318400px;}
.ws1625_c00000{word-spacing:11.320596px;}
.ws1b27_c00000{word-spacing:11.325600px;}
.ws1804_c00000{word-spacing:11.332620px;}
.ws640_c00000{word-spacing:11.332800px;}
.ws19a4_c00000{word-spacing:11.338632px;}
.ws13eb_c00000{word-spacing:11.344644px;}
.ws4df_c00000{word-spacing:11.347200px;}
.ws19a3_c00000{word-spacing:11.350656px;}
.wsa65_c00000{word-spacing:11.354400px;}
.ws1624_c00000{word-spacing:11.356668px;}
.ws973_c00000{word-spacing:11.361600px;}
.wsee_c00000{word-spacing:11.368800px;}
.ws3eb_c00000{word-spacing:11.376000px;}
.ws83a_c00000{word-spacing:11.380716px;}
.wsd0f_c00000{word-spacing:11.383200px;}
.wsa3a_c00000{word-spacing:11.390400px;}
.wsa0c_c00000{word-spacing:11.397600px;}
.ws186_c00000{word-spacing:11.404800px;}
.wsf63_c00000{word-spacing:11.410776px;}
.wsed_c00000{word-spacing:11.412000px;}
.wsf4c_c00000{word-spacing:11.416788px;}
.ws80f_c00000{word-spacing:11.419200px;}
.ws137f_c00000{word-spacing:11.422800px;}
.ws63f_c00000{word-spacing:11.426400px;}
.ws4c4_c00000{word-spacing:11.433600px;}
.wsa1d_c00000{word-spacing:11.440800px;}
.wsc59_c00000{word-spacing:11.448000px;}
.ws417_c00000{word-spacing:11.455200px;}
.ws785_c00000{word-spacing:11.462400px;}
.wsa3b_c00000{word-spacing:11.469600px;}
.ws115c_c00000{word-spacing:11.476800px;}
.ws13b_c00000{word-spacing:11.484000px;}
.ws1af3_c00000{word-spacing:11.488932px;}
.ws1dd_c00000{word-spacing:11.491200px;}
.ws1a7e_c00000{word-spacing:11.494944px;}
.wsef_c00000{word-spacing:11.498400px;}
.ws418_c00000{word-spacing:11.505600px;}
.ws142c_c00000{word-spacing:11.506968px;}
.ws4e0_c00000{word-spacing:11.512800px;}
.wsef0_c00000{word-spacing:11.512980px;}
.ws1741_c00000{word-spacing:11.518992px;}
.ws619_c00000{word-spacing:11.520000px;}
.wsd39_c00000{word-spacing:11.525004px;}
.ws185_c00000{word-spacing:11.527200px;}
.wsd18_c00000{word-spacing:11.531016px;}
.ws324_c00000{word-spacing:11.534400px;}
.ws151f_c00000{word-spacing:11.537028px;}
.wsa1e_c00000{word-spacing:11.541600px;}
.ws11d1_c00000{word-spacing:11.543040px;}
.ws1a92_c00000{word-spacing:11.548764px;}
.ws187_c00000{word-spacing:11.548800px;}
.wsd28_c00000{word-spacing:11.555064px;}
.ws8d4_c00000{word-spacing:11.555352px;}
.ws1729_c00000{word-spacing:11.556000px;}
.ws1957_c00000{word-spacing:11.561940px;}
.ws1a28_c00000{word-spacing:11.563200px;}
.ws1a7d_c00000{word-spacing:11.567088px;}
.ws43d_c00000{word-spacing:11.570400px;}
.ws1437_c00000{word-spacing:11.577600px;}
.ws863_c00000{word-spacing:11.579112px;}
.ws1594_c00000{word-spacing:11.581704px;}
.ws1761_c00000{word-spacing:11.584800px;}
.ws115e_c00000{word-spacing:11.592000px;}
.ws1a91_c00000{word-spacing:11.594880px;}
.wsfe6_c00000{word-spacing:11.597148px;}
.ws43c_c00000{word-spacing:11.599200px;}
.ws30a_c00000{word-spacing:11.603160px;}
.ws103e_c00000{word-spacing:11.606400px;}
.ws185a_c00000{word-spacing:11.609172px;}
.ws136e_c00000{word-spacing:11.613600px;}
.ws8d3_c00000{word-spacing:11.614644px;}
.wsfe5_c00000{word-spacing:11.615184px;}
.ws114f_c00000{word-spacing:11.620800px;}
.ws10d_c00000{word-spacing:11.621196px;}
.ws1716_c00000{word-spacing:11.627208px;}
.wsd29_c00000{word-spacing:11.633220px;}
.ws15ce_c00000{word-spacing:11.635200px;}
.ws15d5_c00000{word-spacing:11.639232px;}
.ws12ff_c00000{word-spacing:11.645244px;}
.ws1a30_c00000{word-spacing:11.656800px;}
.ws18b5_c00000{word-spacing:11.663280px;}
.wsc45_c00000{word-spacing:11.664000px;}
.wsc44_c00000{word-spacing:11.671200px;}
.ws113e_c00000{word-spacing:11.675304px;}
.wsa0d_c00000{word-spacing:11.678400px;}
.ws13ab_c00000{word-spacing:11.685600px;}
.ws1434_c00000{word-spacing:11.692800px;}
.ws103f_c00000{word-spacing:11.700000px;}
.wsc49_c00000{word-spacing:11.707200px;}
.ws862_c00000{word-spacing:11.711376px;}
.ws115d_c00000{word-spacing:11.714400px;}
.ws34c_c00000{word-spacing:11.717388px;}
.wse16_c00000{word-spacing:11.721600px;}
.ws4a3_c00000{word-spacing:11.728800px;}
.ws1698_c00000{word-spacing:11.736000px;}
.wsc48_c00000{word-spacing:11.743200px;}
.ws4a2_c00000{word-spacing:11.750400px;}
.wsfe8_c00000{word-spacing:11.753460px;}
.ws553_c00000{word-spacing:11.757600px;}
.ws6a6_c00000{word-spacing:11.759472px;}
.ws77d_c00000{word-spacing:11.764800px;}
.wsf4b_c00000{word-spacing:11.771496px;}
.ws554_c00000{word-spacing:11.772000px;}
.ws15d6_c00000{word-spacing:11.777508px;}
.ws83d_c00000{word-spacing:11.779200px;}
.ws44b_c00000{word-spacing:11.786400px;}
.ws44c_c00000{word-spacing:11.793600px;}
.ws1906_c00000{word-spacing:11.795544px;}
.ws375_c00000{word-spacing:11.800800px;}
.ws6f6_c00000{word-spacing:11.808000px;}
.ws77c_c00000{word-spacing:11.815200px;}
.wsb2c_c00000{word-spacing:11.822400px;}
.ws1a0e_c00000{word-spacing:11.825604px;}
.ws376_c00000{word-spacing:11.829600px;}
.ws147c_c00000{word-spacing:11.831616px;}
.ws49c_c00000{word-spacing:11.836800px;}
.wsd3a_c00000{word-spacing:11.843640px;}
.ws57c_c00000{word-spacing:11.844000px;}
.ws830_c00000{word-spacing:11.851200px;}
.wsb9f_c00000{word-spacing:11.855664px;}
.ws7ad_c00000{word-spacing:11.858400px;}
.ws647_c00000{word-spacing:11.865600px;}
.ws1714_c00000{word-spacing:11.867688px;}
.ws83f_c00000{word-spacing:11.872800px;}
.ws10d6_c00000{word-spacing:11.873700px;}
.ws1a88_c00000{word-spacing:11.879712px;}
.ws7a0_c00000{word-spacing:11.880000px;}
.wseb2_c00000{word-spacing:11.884752px;}
.ws461_c00000{word-spacing:11.887200px;}
.ws9cf_c00000{word-spacing:11.894400px;}
.ws573_c00000{word-spacing:11.901600px;}
.ws165b_c00000{word-spacing:11.903760px;}
.ws1865_c00000{word-spacing:11.904516px;}
.ws1208_c00000{word-spacing:11.908800px;}
.ws1300_c00000{word-spacing:11.909772px;}
.ws1954_c00000{word-spacing:11.911104px;}
.ws1749_c00000{word-spacing:11.916000px;}
.ws1188_c00000{word-spacing:11.923200px;}
.ws1953_c00000{word-spacing:11.924280px;}
.ws1740_c00000{word-spacing:11.927808px;}
.ws115f_c00000{word-spacing:11.930400px;}
.wseb3_c00000{word-spacing:11.930868px;}
.ws7a1_c00000{word-spacing:11.937600px;}
.wsfb8_c00000{word-spacing:11.944800px;}
.ws1adc_c00000{word-spacing:11.945844px;}
.wsfd7_c00000{word-spacing:11.951856px;}
.wsc0a_c00000{word-spacing:11.957868px;}
.ws1838_c00000{word-spacing:11.963880px;}
.ws154a_c00000{word-spacing:11.966400px;}
.ws1adb_c00000{word-spacing:11.969892px;}
.ws1a87_c00000{word-spacing:11.975904px;}
.wsfd8_c00000{word-spacing:11.987928px;}
.ws83e_c00000{word-spacing:11.988000px;}
.ws1a78_c00000{word-spacing:11.993940px;}
.ws18e0_c00000{word-spacing:11.995200px;}
.wsc08_c00000{word-spacing:11.999952px;}
.wsb9e_c00000{word-spacing:12.005964px;}
.wsfcf_c00000{word-spacing:12.016800px;}
.ws1863_c00000{word-spacing:12.024000px;}
.ws1ae4_c00000{word-spacing:12.031200px;}
.ws1816_c00000{word-spacing:12.038400px;}
.ws1d6_c00000{word-spacing:12.045600px;}
.wsc09_c00000{word-spacing:12.048048px;}
.ws1148_c00000{word-spacing:12.052800px;}
.ws10d5_c00000{word-spacing:12.060072px;}
.wsa90_c00000{word-spacing:12.067200px;}
.ws8c6_c00000{word-spacing:12.072096px;}
.ws1844_c00000{word-spacing:12.078108px;}
.ws1147_c00000{word-spacing:12.081600px;}
.ws15dd_c00000{word-spacing:12.084120px;}
.ws638_c00000{word-spacing:12.088800px;}
.wse7b_c00000{word-spacing:12.090132px;}
.ws961_c00000{word-spacing:12.096000px;}
.ws34b_c00000{word-spacing:12.102156px;}
.ws121_c00000{word-spacing:12.103200px;}
.ws15d1_c00000{word-spacing:12.108168px;}
.ws19e4_c00000{word-spacing:12.110400px;}
.ws8b8_c00000{word-spacing:12.117600px;}
.ws6a7_c00000{word-spacing:12.120192px;}
.ws21f_c00000{word-spacing:12.124800px;}
.wsc75_c00000{word-spacing:12.132000px;}
.ws8c5_c00000{word-spacing:12.132216px;}
.wsfce_c00000{word-spacing:12.139200px;}
.wsfe7_c00000{word-spacing:12.144240px;}
.ws585_c00000{word-spacing:12.146400px;}
.ws1af6_c00000{word-spacing:12.150252px;}
.ws55f_c00000{word-spacing:12.153600px;}
.ws18b4_c00000{word-spacing:12.156264px;}
.ws669_c00000{word-spacing:12.160800px;}
.ws122_c00000{word-spacing:12.168000px;}
.ws1713_c00000{word-spacing:12.168288px;}
.ws1eb_c00000{word-spacing:12.175200px;}
.ws25f_c00000{word-spacing:12.182400px;}
.ws9c2_c00000{word-spacing:12.189600px;}
.wsa9b_c00000{word-spacing:12.192336px;}
.ws5a4_c00000{word-spacing:12.196800px;}
.ws1ad5_c00000{word-spacing:12.198348px;}
.ws1d5_c00000{word-spacing:12.204000px;}
.ws5a2_c00000{word-spacing:12.211200px;}
.ws1af0_c00000{word-spacing:12.216384px;}
.ws1ea_c00000{word-spacing:12.218400px;}
.wsa9c_c00000{word-spacing:12.222396px;}
.wscae_c00000{word-spacing:12.225600px;}
.ws9d7_c00000{word-spacing:12.232800px;}
.ws1097_c00000{word-spacing:12.234420px;}
.wse01_c00000{word-spacing:12.240000px;}
.ws181a_c00000{word-spacing:12.240432px;}
.wse37_c00000{word-spacing:12.246444px;}
.ws9bd_c00000{word-spacing:12.247200px;}
.ws1723_c00000{word-spacing:12.252456px;}
.ws764_c00000{word-spacing:12.254400px;}
.ws1113_c00000{word-spacing:12.258468px;}
.ws15c8_c00000{word-spacing:12.260268px;}
.ws220_c00000{word-spacing:12.261600px;}
.ws14d5_c00000{word-spacing:12.266856px;}
.wscbe_c00000{word-spacing:12.268800px;}
.ws15d7_c00000{word-spacing:12.276000px;}
.wsba3_c00000{word-spacing:12.280032px;}
.ws1925_c00000{word-spacing:12.283200px;}
.wseb0_c00000{word-spacing:12.286620px;}
.wse72_c00000{word-spacing:12.290400px;}
.ws1aca_c00000{word-spacing:12.293208px;}
.ws1149_c00000{word-spacing:12.304800px;}
.wsba4_c00000{word-spacing:12.306384px;}
.ws1020_c00000{word-spacing:12.312000px;}
.ws5a3_c00000{word-spacing:12.319200px;}
.ws14f2_c00000{word-spacing:12.319560px;}
.ws135f_c00000{word-spacing:12.324600px;}
.wsba2_c00000{word-spacing:12.326148px;}
.ws11ea_c00000{word-spacing:12.326400px;}
.ws1691_c00000{word-spacing:12.330612px;}
.ws190c_c00000{word-spacing:12.333600px;}
.ws15ee_c00000{word-spacing:12.340800px;}
.ws1654_c00000{word-spacing:12.342636px;}
.ws124a_c00000{word-spacing:12.348000px;}
.ws1423_c00000{word-spacing:12.348648px;}
.ws1360_c00000{word-spacing:12.354660px;}
.ws1988_c00000{word-spacing:12.360672px;}
.ws951_c00000{word-spacing:12.362400px;}
.ws66c_c00000{word-spacing:12.369600px;}
.ws147b_c00000{word-spacing:12.372696px;}
.ws19c6_c00000{word-spacing:12.376800px;}
.ws1a54_c00000{word-spacing:12.384000px;}
.ws1653_c00000{word-spacing:12.384720px;}
.ws87e_c00000{word-spacing:12.391200px;}
.ws1597_c00000{word-spacing:12.398400px;}
.ws979_c00000{word-spacing:12.405600px;}
.ws151b_c00000{word-spacing:12.412800px;}
.ws66b_c00000{word-spacing:12.420000px;}
.ws181b_c00000{word-spacing:12.426804px;}
.ws1158_c00000{word-spacing:12.427200px;}
.ws17c3_c00000{word-spacing:12.434400px;}
.ws1529_c00000{word-spacing:12.438828px;}
.ws9c1_c00000{word-spacing:12.441600px;}
.ws13c1_c00000{word-spacing:12.444840px;}
.ws1455_c00000{word-spacing:12.448800px;}
.ws1773_c00000{word-spacing:12.450852px;}
.wse45_c00000{word-spacing:12.456000px;}
.ws1af2_c00000{word-spacing:12.462876px;}
.ws47c_c00000{word-spacing:12.463200px;}
.ws1424_c00000{word-spacing:12.468888px;}
.ws47a_c00000{word-spacing:12.470400px;}
.ws636_c00000{word-spacing:12.477600px;}
.wsc34_c00000{word-spacing:12.484800px;}
.wsb7a_c00000{word-spacing:12.492000px;}
.ws144_c00000{word-spacing:12.499200px;}
.ws235_c00000{word-spacing:12.506400px;}
.ws152a_c00000{word-spacing:12.510972px;}
.ws2fc_c00000{word-spacing:12.513600px;}
.ws978_c00000{word-spacing:12.520800px;}
.ws1de_c00000{word-spacing:12.528000px;}
.wse00_c00000{word-spacing:12.535200px;}
.ws583_c00000{word-spacing:12.542400px;}
.ws234_c00000{word-spacing:12.549600px;}
.ws8f8_c00000{word-spacing:12.556800px;}
.ws12a9_c00000{word-spacing:12.559068px;}
.ws828_c00000{word-spacing:12.564000px;}
.ws75a_c00000{word-spacing:12.565080px;}
.ws2fb_c00000{word-spacing:12.571200px;}
.ws143_c00000{word-spacing:12.578400px;}
.ws1a55_c00000{word-spacing:12.583116px;}
.wsc33_c00000{word-spacing:12.585600px;}
.ws758_c00000{word-spacing:12.589128px;}
.ws47d_c00000{word-spacing:12.592800px;}
.ws1860_c00000{word-spacing:12.595140px;}
.ws218_c00000{word-spacing:12.600000px;}
.ws173c_c00000{word-spacing:12.601152px;}
.ws156f_c00000{word-spacing:12.607164px;}
.ws1df_c00000{word-spacing:12.607200px;}
.ws1608_c00000{word-spacing:12.609432px;}
.ws86d_c00000{word-spacing:12.613176px;}
.ws1e0_c00000{word-spacing:12.614400px;}
.ws7d7_c00000{word-spacing:12.619188px;}
.ws637_c00000{word-spacing:12.621600px;}
.ws1870_c00000{word-spacing:12.622608px;}
.ws130d_c00000{word-spacing:12.628800px;}
.ws16e6_c00000{word-spacing:12.629196px;}
.wsafa_c00000{word-spacing:12.636000px;}
.ws7d9_c00000{word-spacing:12.637224px;}
.ws9c0_c00000{word-spacing:12.643200px;}
.ws9ee_c00000{word-spacing:12.648960px;}
.wsb91_c00000{word-spacing:12.650400px;}
.wsd4b_c00000{word-spacing:12.655260px;}
.ws179c_c00000{word-spacing:12.657600px;}
.wsd4c_c00000{word-spacing:12.661272px;}
.wsd72_c00000{word-spacing:12.667284px;}
.ws1945_c00000{word-spacing:12.668724px;}
.ws19f9_c00000{word-spacing:12.672000px;}
.ws1af1_c00000{word-spacing:12.679308px;}
.wsd73_c00000{word-spacing:12.685320px;}
.wsf5f_c00000{word-spacing:12.691332px;}
.ws1748_c00000{word-spacing:12.693600px;}
.ws10b6_c00000{word-spacing:12.697344px;}
.ws1989_c00000{word-spacing:12.703356px;}
.ws2b2_c00000{word-spacing:12.708000px;}
.ws1491_c00000{word-spacing:12.709368px;}
.wsa9a_c00000{word-spacing:12.715380px;}
.ws16c9_c00000{word-spacing:12.722400px;}
.wsf48_c00000{word-spacing:12.727404px;}
.wsa98_c00000{word-spacing:12.729600px;}
.ws1069_c00000{word-spacing:12.733416px;}
.ws1868_c00000{word-spacing:12.736800px;}
.ws1983_c00000{word-spacing:12.744000px;}
.ws3a1_c00000{word-spacing:12.751452px;}
.ws1411_c00000{word-spacing:12.758400px;}
.ws1131_c00000{word-spacing:12.765600px;}
.ws1262_c00000{word-spacing:12.769488px;}
.ws111b_c00000{word-spacing:12.772800px;}
.ws13c0_c00000{word-spacing:12.775500px;}
.ws1918_c00000{word-spacing:12.780000px;}
.ws1772_c00000{word-spacing:12.781512px;}
.wsa96_c00000{word-spacing:12.787200px;}
.ws759_c00000{word-spacing:12.793536px;}
.ws706_c00000{word-spacing:12.794400px;}
.ws10b5_c00000{word-spacing:12.799548px;}
.ws25e_c00000{word-spacing:12.801600px;}
.ws7d8_c00000{word-spacing:12.805560px;}
.wsc6a_c00000{word-spacing:12.808800px;}
.wsa97_c00000{word-spacing:12.816000px;}
.ws125b_c00000{word-spacing:12.823200px;}
.ws11b4_c00000{word-spacing:12.823596px;}
.ws3b8_c00000{word-spacing:12.830400px;}
.ws768_c00000{word-spacing:12.837600px;}
.wsbb5_c00000{word-spacing:12.844800px;}
.ws2b3_c00000{word-spacing:12.852000px;}
.ws767_c00000{word-spacing:12.859200px;}
.ws1573_c00000{word-spacing:12.865680px;}
.ws3c6_c00000{word-spacing:12.866400px;}
.wsa88_c00000{word-spacing:12.873600px;}
.wsb62_c00000{word-spacing:12.880800px;}
.wsa2f_c00000{word-spacing:12.888000px;}
.ws707_c00000{word-spacing:12.895200px;}
.wsa71_c00000{word-spacing:12.902400px;}
.ws1302_c00000{word-spacing:12.907764px;}
.wsa2e_c00000{word-spacing:12.909600px;}
.ws3b7_c00000{word-spacing:12.916800px;}
.ws267_c00000{word-spacing:12.924000px;}
.ws178_c00000{word-spacing:12.931200px;}
.ws25d_c00000{word-spacing:12.938400px;}
.wsed6_c00000{word-spacing:12.943836px;}
.ws713_c00000{word-spacing:12.945600px;}
.ws1264_c00000{word-spacing:12.949848px;}
.wsc47_c00000{word-spacing:12.952800px;}
.wsb63_c00000{word-spacing:12.960000px;}
.ws5c7_c00000{word-spacing:12.961872px;}
.ws766_c00000{word-spacing:12.967200px;}
.ws1263_c00000{word-spacing:12.967884px;}
.ws1601_c00000{word-spacing:12.973896px;}
.wsa87_c00000{word-spacing:12.974400px;}
.wsf49_c00000{word-spacing:12.979908px;}
.ws13ca_c00000{word-spacing:12.981600px;}
.wsd38_c00000{word-spacing:12.985920px;}
.ws1130_c00000{word-spacing:12.988800px;}
.wsb1f_c00000{word-spacing:12.991932px;}
.ws1984_c00000{word-spacing:12.996000px;}
.wsbc4_c00000{word-spacing:12.997944px;}
.ws1638_c00000{word-spacing:12.998124px;}
.wsdcd_c00000{word-spacing:13.003200px;}
.ws16aa_c00000{word-spacing:13.004712px;}
.ws852_c00000{word-spacing:13.009968px;}
.ws12c9_c00000{word-spacing:13.010400px;}
.ws1639_c00000{word-spacing:13.024476px;}
.ws266_c00000{word-spacing:13.024800px;}
.ws144c_c00000{word-spacing:13.028004px;}
.ws127e_c00000{word-spacing:13.039200px;}
.ws853_c00000{word-spacing:13.040028px;}
.wsd9e_c00000{word-spacing:13.044168px;}
.wsbc5_c00000{word-spacing:13.046040px;}
.ws167c_c00000{word-spacing:13.046400px;}
.ws1aa6_c00000{word-spacing:13.052052px;}
.ws9d3_c00000{word-spacing:13.053600px;}
.ws1459_c00000{word-spacing:13.058064px;}
.ws144d_c00000{word-spacing:13.064076px;}
.ws5c5_c00000{word-spacing:13.070088px;}
.ws19c1_c00000{word-spacing:13.075200px;}
.ws12a8_c00000{word-spacing:13.076100px;}
.ws854_c00000{word-spacing:13.082112px;}
.ws922_c00000{word-spacing:13.082400px;}
.wsfc2_c00000{word-spacing:13.088124px;}
.wsa50_c00000{word-spacing:13.094136px;}
.ws11d7_c00000{word-spacing:13.096800px;}
.ws1861_c00000{word-spacing:13.104000px;}
.ws4ec_c00000{word-spacing:13.111200px;}
.ws55c_c00000{word-spacing:13.118400px;}
.ws823_c00000{word-spacing:13.125600px;}
.ws5c6_c00000{word-spacing:13.130208px;}
.ws195d_c00000{word-spacing:13.132800px;}
.ws849_c00000{word-spacing:13.140000px;}
.ws848_c00000{word-spacing:13.147200px;}
.ws3a3_c00000{word-spacing:13.148244px;}
.ws17a5_c00000{word-spacing:13.154256px;}
.ws824_c00000{word-spacing:13.154400px;}
.ws12df_c00000{word-spacing:13.161600px;}
.ws3a2_c00000{word-spacing:13.166280px;}
.ws1225_c00000{word-spacing:13.168800px;}
.wsb48_c00000{word-spacing:13.172292px;}
.ws9d2_c00000{word-spacing:13.176000px;}
.ws1656_c00000{word-spacing:13.184316px;}
.ws11dd_c00000{word-spacing:13.190328px;}
.ws8d2_c00000{word-spacing:13.190400px;}
.ws17a6_c00000{word-spacing:13.196340px;}
.ws1a2_c00000{word-spacing:13.197600px;}
.wsa47_c00000{word-spacing:13.204800px;}
.ws71f_c00000{word-spacing:13.212000px;}
.ws5d9_c00000{word-spacing:13.219200px;}
.ws2c0_c00000{word-spacing:13.226400px;}
.ws8d1_c00000{word-spacing:13.233600px;}
.ws1a1_c00000{word-spacing:13.240800px;}
.ws48d_c00000{word-spacing:13.248000px;}
.ws2b4_c00000{word-spacing:13.255200px;}
.ws2ec_c00000{word-spacing:13.262400px;}
.ws19d9_c00000{word-spacing:13.268484px;}
.ws9b7_c00000{word-spacing:13.269600px;}
.ws7b3_c00000{word-spacing:13.276800px;}
.ws84a_c00000{word-spacing:13.284000px;}
.ws4ed_c00000{word-spacing:13.291200px;}
.wsabd_c00000{word-spacing:13.298400px;}
.ws12f0_c00000{word-spacing:13.304556px;}
.ws73d_c00000{word-spacing:13.305600px;}
.ws2b5_c00000{word-spacing:13.312800px;}
.wsbc6_c00000{word-spacing:13.316580px;}
.ws2c1_c00000{word-spacing:13.320000px;}
.ws12ee_c00000{word-spacing:13.322592px;}
.ws441_c00000{word-spacing:13.327200px;}
.ws19d7_c00000{word-spacing:13.328604px;}
.ws160d_c00000{word-spacing:13.334112px;}
.ws4ee_c00000{word-spacing:13.334400px;}
.wse9e_c00000{word-spacing:13.334616px;}
.ws2ed_c00000{word-spacing:13.341600px;}
.ws10af_c00000{word-spacing:13.346640px;}
.ws55b_c00000{word-spacing:13.348800px;}
.ws11c5_c00000{word-spacing:13.352652px;}
.ws160e_c00000{word-spacing:13.353876px;}
.wsc9b_c00000{word-spacing:13.356000px;}
.ws19e8_c00000{word-spacing:13.363200px;}
.wsd6e_c00000{word-spacing:13.364676px;}
.ws995_c00000{word-spacing:13.370400px;}
.wsf70_c00000{word-spacing:13.370688px;}
.wsc6f_c00000{word-spacing:13.384800px;}
.ws196e_c00000{word-spacing:13.386816px;}
.wsd6d_c00000{word-spacing:13.388724px;}
.ws1215_c00000{word-spacing:13.392000px;}
.ws10d4_c00000{word-spacing:13.394736px;}
.wsf25_c00000{word-spacing:13.399200px;}
.ws1b36_c00000{word-spacing:13.402224px;}
.ws12f3_c00000{word-spacing:13.406400px;}
.ws18b8_c00000{word-spacing:13.406760px;}
.ws1291_c00000{word-spacing:13.412772px;}
.wsd6c_c00000{word-spacing:13.418784px;}
.ws119a_c00000{word-spacing:13.420800px;}
.ws152e_c00000{word-spacing:13.430808px;}
.ws7ca_c00000{word-spacing:13.435200px;}
.ws1a98_c00000{word-spacing:13.436820px;}
.ws1189_c00000{word-spacing:13.442400px;}
.wsfc1_c00000{word-spacing:13.442832px;}
.wsb90_c00000{word-spacing:13.449600px;}
.wsb31_c00000{word-spacing:13.456800px;}
.wsb03_c00000{word-spacing:13.471200px;}
.ws10da_c00000{word-spacing:13.478400px;}
.ws8c3_c00000{word-spacing:13.478904px;}
.ws1ad2_c00000{word-spacing:13.484916px;}
.ws253_c00000{word-spacing:13.485600px;}
.ws19aa_c00000{word-spacing:13.492800px;}
.ws137e_c00000{word-spacing:13.496940px;}
.wsaf7_c00000{word-spacing:13.500000px;}
.wse9c_c00000{word-spacing:13.502952px;}
.ws1598_c00000{word-spacing:13.507200px;}
.ws1b28_c00000{word-spacing:13.508964px;}
.wsc6e_c00000{word-spacing:13.514400px;}
.wsfc3_c00000{word-spacing:13.514976px;}
.ws747_c00000{word-spacing:13.521600px;}
.ws26c_c00000{word-spacing:13.528800px;}
.ws180e_c00000{word-spacing:13.533012px;}
.ws642_c00000{word-spacing:13.536000px;}
.ws11e1_c00000{word-spacing:13.543200px;}
.ws592_c00000{word-spacing:13.550400px;}
.ws8c2_c00000{word-spacing:13.551048px;}
.wsa38_c00000{word-spacing:13.557600px;}
.ws746_c00000{word-spacing:13.564800px;}
.ws10d3_c00000{word-spacing:13.569084px;}
.ws6f5_c00000{word-spacing:13.572000px;}
.ws593_c00000{word-spacing:13.579200px;}
.ws400_c00000{word-spacing:13.586400px;}
.ws140_c00000{word-spacing:13.593600px;}
.ws152f_c00000{word-spacing:13.599144px;}
.wscf7_c00000{word-spacing:13.600800px;}
.wsb49_c00000{word-spacing:13.605156px;}
.ws910_c00000{word-spacing:13.608000px;}
.ws1395_c00000{word-spacing:13.611168px;}
.ws2d2_c00000{word-spacing:13.615200px;}
.ws589_c00000{word-spacing:13.622400px;}
.ws7c_c00000{word-spacing:13.629600px;}
.wsfc4_c00000{word-spacing:13.635216px;}
.ws212_c00000{word-spacing:13.636800px;}
.ws26b_c00000{word-spacing:13.644000px;}
.ws145c_c00000{word-spacing:13.647240px;}
.ws740_c00000{word-spacing:13.651200px;}
.ws1393_c00000{word-spacing:13.653252px;}
.ws641_c00000{word-spacing:13.658400px;}
.ws145a_c00000{word-spacing:13.659264px;}
.ws79b_c00000{word-spacing:13.665276px;}
.ws7b_c00000{word-spacing:13.665600px;}
.ws1776_c00000{word-spacing:13.671288px;}
.ws452_c00000{word-spacing:13.672800px;}
.ws1901_c00000{word-spacing:13.677300px;}
.ws401_c00000{word-spacing:13.680000px;}
.ws155d_c00000{word-spacing:13.683312px;}
.ws13f_c00000{word-spacing:13.687200px;}
.ws153a_c00000{word-spacing:13.689324px;}
.ws194d_c00000{word-spacing:13.689864px;}
.ws277_c00000{word-spacing:13.694400px;}
.ws2d3_c00000{word-spacing:13.701600px;}
.ws903_c00000{word-spacing:13.708800px;}
.ws79c_c00000{word-spacing:13.713372px;}
.ws617_c00000{word-spacing:13.716000px;}
.ws1ad1_c00000{word-spacing:13.719384px;}
.ws47e_c00000{word-spacing:13.723200px;}
.ws11ec_c00000{word-spacing:13.730400px;}
.ws594_c00000{word-spacing:13.737600px;}
.ws1635_c00000{word-spacing:13.742568px;}
.ws1900_c00000{word-spacing:13.743432px;}
.ws1474_c00000{word-spacing:13.744800px;}
.ws187a_c00000{word-spacing:13.749156px;}
.ws160a_c00000{word-spacing:13.755744px;}
.ws1063_c00000{word-spacing:13.759200px;}
.wsa66_c00000{word-spacing:13.761468px;}
.ws160b_c00000{word-spacing:13.762332px;}
.wsa67_c00000{word-spacing:13.767480px;}
.ws1820_c00000{word-spacing:13.780800px;}
.ws1880_c00000{word-spacing:13.785516px;}
.wse4b_c00000{word-spacing:13.788000px;}
.ws1448_c00000{word-spacing:13.791528px;}
.ws11d6_c00000{word-spacing:13.795200px;}
.ws19d8_c00000{word-spacing:13.809564px;}
.ws1193_c00000{word-spacing:13.809600px;}
.ws1827_c00000{word-spacing:13.816800px;}
.ws1a57_c00000{word-spacing:13.821588px;}
.ws954_c00000{word-spacing:13.824000px;}
.wse05_c00000{word-spacing:13.831200px;}
.ws93f_c00000{word-spacing:13.845600px;}
.ws187f_c00000{word-spacing:13.845636px;}
.ws15ef_c00000{word-spacing:13.852800px;}
.ws1290_c00000{word-spacing:13.857660px;}
.ws1358_c00000{word-spacing:13.860000px;}
.ws1a67_c00000{word-spacing:13.867200px;}
.ws1b23_c00000{word-spacing:13.869684px;}
.ws699_c00000{word-spacing:13.874400px;}
.ws60e_c00000{word-spacing:13.881600px;}
.ws14ad_c00000{word-spacing:13.887720px;}
.wsddf_c00000{word-spacing:13.888800px;}
.ws811_c00000{word-spacing:13.896000px;}
.ws5b1_c00000{word-spacing:13.903200px;}
.wsf72_c00000{word-spacing:13.905756px;}
.wse04_c00000{word-spacing:13.910400px;}
.wse9d_c00000{word-spacing:13.911768px;}
.ws1845_c00000{word-spacing:13.917600px;}
.ws847_c00000{word-spacing:13.924800px;}
.ws1034_c00000{word-spacing:13.932000px;}
.wsbc_c00000{word-spacing:13.939200px;}
.ws438_c00000{word-spacing:13.946400px;}
.ws810_c00000{word-spacing:13.953600px;}
.wsf71_c00000{word-spacing:13.953852px;}
.ws60f_c00000{word-spacing:13.960800px;}
.ws2ea_c00000{word-spacing:13.968000px;}
.ws469_c00000{word-spacing:13.975200px;}
.ws99d_c00000{word-spacing:13.982400px;}
.ws39a_c00000{word-spacing:13.983912px;}
.ws73e_c00000{word-spacing:13.989600px;}
.ws273_c00000{word-spacing:13.996800px;}
.ws76c_c00000{word-spacing:14.004000px;}
.ws1397_c00000{word-spacing:14.007960px;}
.ws468_c00000{word-spacing:14.011200px;}
.ws18eb_c00000{word-spacing:14.013972px;}
.wsc1_c00000{word-spacing:14.018400px;}
.ws18ea_c00000{word-spacing:14.019984px;}
.ws549_c00000{word-spacing:14.025600px;}
.ws128d_c00000{word-spacing:14.032008px;}
.ws498_c00000{word-spacing:14.032800px;}
.ws169a_c00000{word-spacing:14.038020px;}
.ws505_c00000{word-spacing:14.040000px;}
.ws106a_c00000{word-spacing:14.044032px;}
.ws1791_c00000{word-spacing:14.045616px;}
.ws698_c00000{word-spacing:14.047200px;}
.ws359_c00000{word-spacing:14.050044px;}
.ws5b2_c00000{word-spacing:14.054400px;}
.ws128f_c00000{word-spacing:14.056056px;}
.ws756_c00000{word-spacing:14.061600px;}
.ws1ad3_c00000{word-spacing:14.062068px;}
.ws1a1b_c00000{word-spacing:14.068080px;}
.ws506_c00000{word-spacing:14.068800px;}
.ws76d_c00000{word-spacing:14.076000px;}
.wsbd_c00000{word-spacing:14.083200px;}
.wsc2_c00000{word-spacing:14.090400px;}
.ws17ce_c00000{word-spacing:14.091732px;}
.ws1a1d_c00000{word-spacing:14.092128px;}
.wseb1_c00000{word-spacing:14.098320px;}
.ws133d_c00000{word-spacing:14.104152px;}
.ws15fd_c00000{word-spacing:14.104908px;}
.ws1a79_c00000{word-spacing:14.110164px;}
.ws39c_c00000{word-spacing:14.116176px;}
.ws1812_c00000{word-spacing:14.119200px;}
.ws1a1c_c00000{word-spacing:14.122188px;}
.wscb5_c00000{word-spacing:14.126400px;}
.ws1a56_c00000{word-spacing:14.128200px;}
.wsb82_c00000{word-spacing:14.134212px;}
.wsc28_c00000{word-spacing:14.140800px;}
.ws8de_c00000{word-spacing:14.146236px;}
.ws1846_c00000{word-spacing:14.148000px;}
.ws8df_c00000{word-spacing:14.152248px;}
.ws5c4_c00000{word-spacing:14.158260px;}
.ws799_c00000{word-spacing:14.164272px;}
.wsc27_c00000{word-spacing:14.169600px;}
.ws39b_c00000{word-spacing:14.176296px;}
.wsd42_c00000{word-spacing:14.184000px;}
.ws19a7_c00000{word-spacing:14.194332px;}
.ws16d1_c00000{word-spacing:14.198400px;}
.ws19df_c00000{word-spacing:14.200344px;}
.ws22f_c00000{word-spacing:14.205600px;}
.ws1b35_c00000{word-spacing:14.206356px;}
.ws19e0_c00000{word-spacing:14.212368px;}
.ws1b34_c00000{word-spacing:14.218380px;}
.ws26f_c00000{word-spacing:14.220000px;}
.ws11bf_c00000{word-spacing:14.227200px;}
.ws79a_c00000{word-spacing:14.230404px;}
.wsf20_c00000{word-spacing:14.234400px;}
.ws1513_c00000{word-spacing:14.236416px;}
.ws6cd_c00000{word-spacing:14.241600px;}
.ws128e_c00000{word-spacing:14.242428px;}
.ws1514_c00000{word-spacing:14.248440px;}
.ws1101_c00000{word-spacing:14.248800px;}
.ws1396_c00000{word-spacing:14.254452px;}
.ws189c_c00000{word-spacing:14.256000px;}
.wse42_c00000{word-spacing:14.263200px;}
.ws104e_c00000{word-spacing:14.266476px;}
.wse41_c00000{word-spacing:14.270400px;}
.wscb4_c00000{word-spacing:14.277600px;}
.ws106b_c00000{word-spacing:14.284512px;}
.wscb3_c00000{word-spacing:14.284800px;}
.wse92_c00000{word-spacing:14.290524px;}
.ws546_c00000{word-spacing:14.292000px;}
.ws13fa_c00000{word-spacing:14.296536px;}
.wsf21_c00000{word-spacing:14.299200px;}
.ws145b_c00000{word-spacing:14.302548px;}
.ws5e8_c00000{word-spacing:14.306400px;}
.ws4db_c00000{word-spacing:14.313600px;}
.ws4ac_c00000{word-spacing:14.320800px;}
.ws614_c00000{word-spacing:14.328000px;}
.ws26e_c00000{word-spacing:14.335200px;}
.ws309_c00000{word-spacing:14.342400px;}
.wscc_c00000{word-spacing:14.349600px;}
.ws12fb_c00000{word-spacing:14.356656px;}
.wsd59_c00000{word-spacing:14.356800px;}
.ws923_c00000{word-spacing:14.364000px;}
.ws10e2_c00000{word-spacing:14.368680px;}
.wsd5a_c00000{word-spacing:14.371200px;}
.ws230_c00000{word-spacing:14.378400px;}
.wscb_c00000{word-spacing:14.385600px;}
.ws1266_c00000{word-spacing:14.392728px;}
.ws548_c00000{word-spacing:14.392800px;}
.ws101f_c00000{word-spacing:14.400000px;}
.ws152b_c00000{word-spacing:14.404752px;}
.ws1032_c00000{word-spacing:14.407200px;}
.ws12ea_c00000{word-spacing:14.410764px;}
.ws736_c00000{word-spacing:14.414400px;}
.wsa55_c00000{word-spacing:14.421132px;}
.ws5e7_c00000{word-spacing:14.421600px;}
.ws35a_c00000{word-spacing:14.422788px;}
.ws547_c00000{word-spacing:14.428800px;}
.ws1840_c00000{word-spacing:14.436000px;}
.ws8d6_c00000{word-spacing:14.440896px;}
.ws12e4_c00000{word-spacing:14.443200px;}
.ws198d_c00000{word-spacing:14.446836px;}
.ws332_c00000{word-spacing:14.450400px;}
.ws1033_c00000{word-spacing:14.457600px;}
.ws1ac7_c00000{word-spacing:14.460660px;}
.ws333_c00000{word-spacing:14.464800px;}
.wscd8_c00000{word-spacing:14.464872px;}
.ws1467_c00000{word-spacing:14.470884px;}
.ws1ac6_c00000{word-spacing:14.473836px;}
.ws1621_c00000{word-spacing:14.486400px;}
.ws198e_c00000{word-spacing:14.494932px;}
.ws198c_c00000{word-spacing:14.500944px;}
.ws1102_c00000{word-spacing:14.508000px;}
.ws1ac2_c00000{word-spacing:14.512968px;}
.wsc1b_c00000{word-spacing:14.515200px;}
.ws13d1_c00000{word-spacing:14.524992px;}
.ws16d9_c00000{word-spacing:14.529600px;}
.ws17b1_c00000{word-spacing:14.536800px;}
.ws1ac1_c00000{word-spacing:14.537016px;}
.ws16d6_c00000{word-spacing:14.544000px;}
.ws119f_c00000{word-spacing:14.551200px;}
.wsb5b_c00000{word-spacing:14.558400px;}
.ws1b57_c00000{word-spacing:14.565600px;}
.wsf6_c00000{word-spacing:14.572800px;}
.ws14a5_c00000{word-spacing:14.579100px;}
.ws15c2_c00000{word-spacing:14.580000px;}
.ws1267_c00000{word-spacing:14.585112px;}
.ws539_c00000{word-spacing:14.587200px;}
.ws1265_c00000{word-spacing:14.597136px;}
.ws12f6_c00000{word-spacing:14.601600px;}
.ws129d_c00000{word-spacing:14.603148px;}
.ws1089_c00000{word-spacing:14.608800px;}
.ws967_c00000{word-spacing:14.616000px;}
.ws97d_c00000{word-spacing:14.623200px;}
.ws450_c00000{word-spacing:14.630400px;}
.ws13f9_c00000{word-spacing:14.633208px;}
.ws99_c00000{word-spacing:14.637600px;}
.ws50f_c00000{word-spacing:14.644800px;}
.ws1a86_c00000{word-spacing:14.645232px;}
.ws968_c00000{word-spacing:14.652000px;}
.wscbb_c00000{word-spacing:14.659200px;}
.ws538_c00000{word-spacing:14.666400px;}
.ws1763_c00000{word-spacing:14.669280px;}
.ws59e_c00000{word-spacing:14.673600px;}
.wsa92_c00000{word-spacing:14.680800px;}
.ws7e2_c00000{word-spacing:14.687316px;}
.ws537_c00000{word-spacing:14.688000px;}
.ws44f_c00000{word-spacing:14.695200px;}
.ws1132_c00000{word-spacing:14.702400px;}
.ws100e_c00000{word-spacing:14.709600px;}
.ws869_c00000{word-spacing:14.711364px;}
.ws69e_c00000{word-spacing:14.716800px;}
.wsebc_c00000{word-spacing:14.723388px;}
.ws5b5_c00000{word-spacing:14.724000px;}
.wsed1_c00000{word-spacing:14.729400px;}
.wsaf_c00000{word-spacing:14.731200px;}
.wsfdb_c00000{word-spacing:14.735412px;}
.wsaa5_c00000{word-spacing:14.738400px;}
.wsc0e_c00000{word-spacing:14.741424px;}
.wsf5_c00000{word-spacing:14.745600px;}
.ws1462_c00000{word-spacing:14.747436px;}
.ws69f_c00000{word-spacing:14.752800px;}
.wsfda_c00000{word-spacing:14.759460px;}
.ws98f_c00000{word-spacing:14.760000px;}
.ws5ac_c00000{word-spacing:14.762880px;}
.wsf80_c00000{word-spacing:14.765472px;}
.wsc03_c00000{word-spacing:14.767200px;}
.ws3a6_c00000{word-spacing:14.771484px;}
.ws6d0_c00000{word-spacing:14.774400px;}
.ws12f7_c00000{word-spacing:14.781600px;}
.wsf7f_c00000{word-spacing:14.783508px;}
.ws50e_c00000{word-spacing:14.788800px;}
.ws1632_c00000{word-spacing:14.795532px;}
.ws1047_c00000{word-spacing:14.796000px;}
.ws837_c00000{word-spacing:14.801544px;}
.ws9a_c00000{word-spacing:14.803200px;}
.ws16c0_c00000{word-spacing:14.803236px;}
.ws19f4_c00000{word-spacing:14.809824px;}
.ws1a3b_c00000{word-spacing:14.810400px;}
.wsd25_c00000{word-spacing:14.813568px;}
.ws15b5_c00000{word-spacing:14.816412px;}
.wsc5a_c00000{word-spacing:14.817600px;}
.wsd24_c00000{word-spacing:14.825592px;}
.ws177f_c00000{word-spacing:14.831604px;}
.wsb0_c00000{word-spacing:14.832000px;}
.ws1128_c00000{word-spacing:14.839200px;}
.wsfd9_c00000{word-spacing:14.843628px;}
.ws5ad_c00000{word-spacing:14.846760px;}
.ws1762_c00000{word-spacing:14.849640px;}
.ws10bd_c00000{word-spacing:14.853600px;}
.ws279_c00000{word-spacing:14.860800px;}
.wscd9_c00000{word-spacing:14.867676px;}
.ws1736_c00000{word-spacing:14.875200px;}
.ws13d0_c00000{word-spacing:14.879700px;}
.ws1281_c00000{word-spacing:14.889600px;}
.ws1764_c00000{word-spacing:14.891724px;}
.ws1559_c00000{word-spacing:14.904000px;}
.ws171c_c00000{word-spacing:14.909760px;}
.ws127d_c00000{word-spacing:14.911200px;}
.ws38b_c00000{word-spacing:14.918400px;}
.ws171d_c00000{word-spacing:14.921784px;}
.wsd64_c00000{word-spacing:14.925600px;}
.ws45f_c00000{word-spacing:14.932800px;}
.wsb07_c00000{word-spacing:14.940000px;}
.ws838_c00000{word-spacing:14.945832px;}
.ws11ba_c00000{word-spacing:14.947200px;}
.ws1780_c00000{word-spacing:14.951844px;}
.ws278_c00000{word-spacing:14.954400px;}
.ws13f0_c00000{word-spacing:14.961600px;}
.ws1633_c00000{word-spacing:14.963868px;}
.ws4f0_c00000{word-spacing:14.968800px;}
.ws1337_c00000{word-spacing:14.976000px;}
.ws113a_c00000{word-spacing:14.983200px;}
.ws10c_c00000{word-spacing:14.987916px;}
.ws19e_c00000{word-spacing:14.990400px;}
.wsb08_c00000{word-spacing:14.997600px;}
.ws12fe_c00000{word-spacing:14.999940px;}
.ws38c_c00000{word-spacing:15.004800px;}
.wscd4_c00000{word-spacing:15.005952px;}
.ws460_c00000{word-spacing:15.012000px;}
.ws3cb_c00000{word-spacing:15.019200px;}
.ws19d_c00000{word-spacing:15.026400px;}
.wscd5_c00000{word-spacing:15.030000px;}
.ws53b_c00000{word-spacing:15.033600px;}
.ws21d_c00000{word-spacing:15.040800px;}
.ws4ef_c00000{word-spacing:15.048000px;}
.ws84b_c00000{word-spacing:15.055200px;}
.wsf9c_c00000{word-spacing:15.062400px;}
.ws95f_c00000{word-spacing:15.069600px;}
.ws559_c00000{word-spacing:15.076800px;}
.ws2f4_c00000{word-spacing:15.084000px;}
.wsa3f_c00000{word-spacing:15.091200px;}
.ws1486_c00000{word-spacing:15.096132px;}
.ws512_c00000{word-spacing:15.098400px;}
.ws16be_c00000{word-spacing:15.099696px;}
.ws11a1_c00000{word-spacing:15.105600px;}
.ws1534_c00000{word-spacing:15.108156px;}
.ws960_c00000{word-spacing:15.112800px;}
.wsebd_c00000{word-spacing:15.114168px;}
.ws511_c00000{word-spacing:15.120000px;}
.ws99f_c00000{word-spacing:15.127200px;}
.ws11f3_c00000{word-spacing:15.134400px;}
.wsb09_c00000{word-spacing:15.141600px;}
.wse43_c00000{word-spacing:15.148800px;}
.ws48c_c00000{word-spacing:15.156000px;}
.ws19bf_c00000{word-spacing:15.156252px;}
.wsf2f_c00000{word-spacing:15.162264px;}
.ws48b_c00000{word-spacing:15.163200px;}
.ws1307_c00000{word-spacing:15.168276px;}
.ws1556_c00000{word-spacing:15.170400px;}
.ws16bd_c00000{word-spacing:15.172164px;}
.ws1405_c00000{word-spacing:15.177600px;}
.ws5ca_c00000{word-spacing:15.186312px;}
.ws196d_c00000{word-spacing:15.191928px;}
.ws1315_c00000{word-spacing:15.198336px;}
.ws1210_c00000{word-spacing:15.199200px;}
.ws686_c00000{word-spacing:15.204168px;}
.ws5c8_c00000{word-spacing:15.210360px;}
.ws150b_c00000{word-spacing:15.213600px;}
.ws1308_c00000{word-spacing:15.216372px;}
.ws1461_c00000{word-spacing:15.220800px;}
.ws5c9_c00000{word-spacing:15.222384px;}
.wsbb0_c00000{word-spacing:15.228000px;}
.ws86b_c00000{word-spacing:15.228396px;}
.ws86a_c00000{word-spacing:15.240420px;}
.wsfa5_c00000{word-spacing:15.246432px;}
.wsd47_c00000{word-spacing:15.249600px;}
.wsfa4_c00000{word-spacing:15.258456px;}
.ws1a36_c00000{word-spacing:15.264000px;}
.ws965_c00000{word-spacing:15.271200px;}
.ws1433_c00000{word-spacing:15.278400px;}
.wsa64_c00000{word-spacing:15.285600px;}
.ws4ad_c00000{word-spacing:15.292800px;}
.ws19b0_c00000{word-spacing:15.300000px;}
.ws1aa2_c00000{word-spacing:15.312564px;}
.ws1030_c00000{word-spacing:15.314400px;}
.ws7e1_c00000{word-spacing:15.318576px;}
.wsc86_c00000{word-spacing:15.321600px;}
.ws52a_c00000{word-spacing:15.328800px;}
.wse02_c00000{word-spacing:15.336000px;}
.wsc73_c00000{word-spacing:15.343200px;}
.ws19c0_c00000{word-spacing:15.348636px;}
.ws2a4_c00000{word-spacing:15.350400px;}
.ws4ae_c00000{word-spacing:15.357600px;}
.wsf30_c00000{word-spacing:15.360660px;}
.ws9fa_c00000{word-spacing:15.364800px;}
.wse87_c00000{word-spacing:15.372000px;}
.ws7c3_c00000{word-spacing:15.379200px;}
.ws10de_c00000{word-spacing:15.386400px;}
.ws12fc_c00000{word-spacing:15.390720px;}
.wsbb1_c00000{word-spacing:15.393600px;}
.wsa7_c00000{word-spacing:15.400800px;}
.ws4af_c00000{word-spacing:15.408000px;}
.ws1257_c00000{word-spacing:15.415200px;}
.wsfbc_c00000{word-spacing:15.422400px;}
.ws12fd_c00000{word-spacing:15.426792px;}
.ws6c5_c00000{word-spacing:15.429600px;}
.ws1119_c00000{word-spacing:15.436800px;}
.ws529_c00000{word-spacing:15.444000px;}
.ws444_c00000{word-spacing:15.451200px;}
.ws147e_c00000{word-spacing:15.456852px;}
.ws329_c00000{word-spacing:15.458400px;}
.ws1314_c00000{word-spacing:15.462864px;}
.ws716_c00000{word-spacing:15.465600px;}
.wsa8_c00000{word-spacing:15.472800px;}
.ws419_c00000{word-spacing:15.480000px;}
.ws172e_c00000{word-spacing:15.481800px;}
.ws9c7_c00000{word-spacing:15.486912px;}
.ws8b5_c00000{word-spacing:15.487200px;}
.wsfb3_c00000{word-spacing:15.494400px;}
.wsdd5_c00000{word-spacing:15.498936px;}
.ws7a4_c00000{word-spacing:15.501600px;}
.ws147d_c00000{word-spacing:15.504948px;}
.ws1646_c00000{word-spacing:15.508800px;}
.ws1948_c00000{word-spacing:15.514740px;}
.wsdde_c00000{word-spacing:15.516000px;}
.ws803_c00000{word-spacing:15.521328px;}
.ws1781_c00000{word-spacing:15.523200px;}
.ws802_c00000{word-spacing:15.527916px;}
.ws1872_c00000{word-spacing:15.530400px;}
.ws1094_c00000{word-spacing:15.537600px;}
.ws16bc_c00000{word-spacing:15.547680px;}
.ws7c4_c00000{word-spacing:15.552000px;}
.ws1947_c00000{word-spacing:15.554268px;}
.ws739_c00000{word-spacing:15.573600px;}
.wse35_c00000{word-spacing:15.577092px;}
.ws1f9_c00000{word-spacing:15.580800px;}
.ws1316_c00000{word-spacing:15.589116px;}
.ws1ab1_c00000{word-spacing:15.602400px;}
.ws1547_c00000{word-spacing:15.609600px;}
.wsa07_c00000{word-spacing:15.613164px;}
.wsa08_c00000{word-spacing:15.631200px;}
.wscac_c00000{word-spacing:15.638400px;}
.ws9c8_c00000{word-spacing:15.643224px;}
.ws168_c00000{word-spacing:15.645600px;}
.wse36_c00000{word-spacing:15.655248px;}
.wseed_c00000{word-spacing:15.667200px;}
.ws737_c00000{word-spacing:15.674400px;}
.ws114c_c00000{word-spacing:15.681600px;}
.ws8bb_c00000{word-spacing:15.688800px;}
.wse68_c00000{word-spacing:15.696000px;}
.ws9c9_c00000{word-spacing:15.703344px;}
.wseaa_c00000{word-spacing:15.710400px;}
.ws123d_c00000{word-spacing:15.717600px;}
.ws738_c00000{word-spacing:15.724800px;}
.wsa14_c00000{word-spacing:15.732000px;}
.ws249_c00000{word-spacing:15.739200px;}
.ws1fb_c00000{word-spacing:15.746400px;}
.wsed2_c00000{word-spacing:15.751440px;}
.ws167_c00000{word-spacing:15.753600px;}
.ws248_c00000{word-spacing:15.760800px;}
.wsa0e_c00000{word-spacing:15.768000px;}
.wsc35_c00000{word-spacing:15.775200px;}
.wsf2c_c00000{word-spacing:15.775488px;}
.wsd21_c00000{word-spacing:15.782400px;}
.ws609_c00000{word-spacing:15.789600px;}
.ws1837_c00000{word-spacing:15.793524px;}
.ws20e_c00000{word-spacing:15.796800px;}
.wsad_c00000{word-spacing:15.804000px;}
.ws92b_c00000{word-spacing:15.811200px;}
.ws16f0_c00000{word-spacing:15.817572px;}
.ws166_c00000{word-spacing:15.818400px;}
.ws1974_c00000{word-spacing:15.823584px;}
.ws843_c00000{word-spacing:15.825600px;}
.wsd09_c00000{word-spacing:15.832800px;}
.wsba6_c00000{word-spacing:15.837552px;}
.wsb72_c00000{word-spacing:15.840000px;}
.ws5dc_c00000{word-spacing:15.847200px;}
.ws1779_c00000{word-spacing:15.847632px;}
.ws1a4c_c00000{word-spacing:15.853644px;}
.wsa8e_c00000{word-spacing:15.854400px;}
.wsd1e_c00000{word-spacing:15.861600px;}
.ws16dc_c00000{word-spacing:15.865668px;}
.ws60b_c00000{word-spacing:15.868800px;}
.wsba5_c00000{word-spacing:15.870492px;}
.ws1b1f_c00000{word-spacing:15.876000px;}
.ws1911_c00000{word-spacing:15.877080px;}
.ws18c1_c00000{word-spacing:15.877692px;}
.ws20f_c00000{word-spacing:15.883200px;}
.ws1ad0_c00000{word-spacing:15.883704px;}
.ws158f_c00000{word-spacing:15.890256px;}
.ws1fa_c00000{word-spacing:15.897600px;}
.ws1b4a_c00000{word-spacing:15.903432px;}
.ws59f_c00000{word-spacing:15.912000px;}
.ws1b49_c00000{word-spacing:15.916608px;}
.wsa0f_c00000{word-spacing:15.919200px;}
.ws1a3d_c00000{word-spacing:15.925788px;}
.wsd32_c00000{word-spacing:15.926400px;}
.ws1893_c00000{word-spacing:15.933600px;}
.ws1973_c00000{word-spacing:15.943824px;}
.ws18c0_c00000{word-spacing:15.949836px;}
.ws89f_c00000{word-spacing:15.967872px;}
.wsd31_c00000{word-spacing:15.969600px;}
.ws17e3_c00000{word-spacing:15.973884px;}
.wsbaf_c00000{word-spacing:15.984000px;}
.ws60a_c00000{word-spacing:15.991200px;}
.ws182d_c00000{word-spacing:15.991920px;}
.ws846_c00000{word-spacing:15.998400px;}
.ws13ed_c00000{word-spacing:16.003944px;}
.ws7f4_c00000{word-spacing:16.005600px;}
.ws1a8a_c00000{word-spacing:16.012800px;}
.ws12ca_c00000{word-spacing:16.034400px;}
.ws17a9_c00000{word-spacing:16.041600px;}
.wsf3d_c00000{word-spacing:16.048800px;}
.ws1831_c00000{word-spacing:16.056000px;}
.ws12bc_c00000{word-spacing:16.058052px;}
.ws87f_c00000{word-spacing:16.063200px;}
.ws1279_c00000{word-spacing:16.064064px;}
.ws2d7_c00000{word-spacing:16.070400px;}
.wsf2b_c00000{word-spacing:16.076088px;}
.wsfa1_c00000{word-spacing:16.077600px;}
.ws1604_c00000{word-spacing:16.084800px;}
.wsdd_c00000{word-spacing:16.092000px;}
.ws6c6_c00000{word-spacing:16.099200px;}
.ws13ee_c00000{word-spacing:16.106148px;}
.wsd15_c00000{word-spacing:16.106400px;}
.ws2d6_c00000{word-spacing:16.113600px;}
.ws1064_c00000{word-spacing:16.120800px;}
.ws845_c00000{word-spacing:16.128000px;}
.ws1975_c00000{word-spacing:16.130196px;}
.ws3d4_c00000{word-spacing:16.135200px;}
.wsa3c_c00000{word-spacing:16.142400px;}
.ws6c7_c00000{word-spacing:16.149600px;}
.ws11ad_c00000{word-spacing:16.156800px;}
.wsd9a_c00000{word-spacing:16.164000px;}
.ws2a8_c00000{word-spacing:16.171200px;}
.wsd9b_c00000{word-spacing:16.178400px;}
.wsb77_c00000{word-spacing:16.180128px;}
.ws139f_c00000{word-spacing:16.184304px;}
.ws2a7_c00000{word-spacing:16.185600px;}
.wsdc_c00000{word-spacing:16.192800px;}
.ws1482_c00000{word-spacing:16.196328px;}
.ws95e_c00000{word-spacing:16.200000px;}
.ws139e_c00000{word-spacing:16.202340px;}
.ws1942_c00000{word-spacing:16.206480px;}
.ws844_c00000{word-spacing:16.207200px;}
.wsd58_c00000{word-spacing:16.214400px;}
.ws816_c00000{word-spacing:16.220376px;}
.wsa1b_c00000{word-spacing:16.221600px;}
.wsb78_c00000{word-spacing:16.226244px;}
.wsbd3_c00000{word-spacing:16.226388px;}
.wsd14_c00000{word-spacing:16.228800px;}
.wse81_c00000{word-spacing:16.232400px;}
.wsf09_c00000{word-spacing:16.236000px;}
.ws1b4f_c00000{word-spacing:16.243200px;}
.wsfa2_c00000{word-spacing:16.250400px;}
.ws1792_c00000{word-spacing:16.252596px;}
.ws89e_c00000{word-spacing:16.256448px;}
.ws1150_c00000{word-spacing:16.257600px;}
.wsa1c_c00000{word-spacing:16.264800px;}
.ws1849_c00000{word-spacing:16.279200px;}
.ws1015_c00000{word-spacing:16.280496px;}
.ws1992_c00000{word-spacing:16.286400px;}
.ws13ce_c00000{word-spacing:16.292520px;}
.ws1212_c00000{word-spacing:16.293600px;}
.ws1acf_c00000{word-spacing:16.304544px;}
.ws64b_c00000{word-spacing:16.308000px;}
.ws1af9_c00000{word-spacing:16.322400px;}
.ws1a0a_c00000{word-spacing:16.328592px;}
.ws1b12_c00000{word-spacing:16.329600px;}
.ws193f_c00000{word-spacing:16.336800px;}
.wsea3_c00000{word-spacing:16.340616px;}
.ws1417_c00000{word-spacing:16.344000px;}
.ws40e_c00000{word-spacing:16.351200px;}
.ws1744_c00000{word-spacing:16.352640px;}
.ws122f_c00000{word-spacing:16.358400px;}
.wsf22_c00000{word-spacing:16.365600px;}
.ws139d_c00000{word-spacing:16.370676px;}
.ws187d_c00000{word-spacing:16.372800px;}
.ws40d_c00000{word-spacing:16.380000px;}
.wsf35_c00000{word-spacing:16.387200px;}
.ws1e3_c00000{word-spacing:16.394400px;}
.ws5a6_c00000{word-spacing:16.394724px;}
.wsfe1_c00000{word-spacing:16.401600px;}
.ws709_c00000{word-spacing:16.408800px;}
.ws1483_c00000{word-spacing:16.412760px;}
.wsa24_c00000{word-spacing:16.416000px;}
.ws1280_c00000{word-spacing:16.423200px;}
.ws8a0_c00000{word-spacing:16.424784px;}
.ws976_c00000{word-spacing:16.430400px;}
.wsf41_c00000{word-spacing:16.437600px;}
.wsf36_c00000{word-spacing:16.444800px;}
.ws97e_c00000{word-spacing:16.452000px;}
.ws28b_c00000{word-spacing:16.459200px;}
.ws1743_c00000{word-spacing:16.460856px;}
.ws608_c00000{word-spacing:16.466400px;}
.ws1858_c00000{word-spacing:16.472880px;}
.ws6d2_c00000{word-spacing:16.473600px;}
.ws1e1_c00000{word-spacing:16.480800px;}
.ws196c_c00000{word-spacing:16.484904px;}
.wsa40_c00000{word-spacing:16.488000px;}
.ws60c_c00000{word-spacing:16.495200px;}
.ws40c_c00000{word-spacing:16.502400px;}
.ws31e_c00000{word-spacing:16.508952px;}
.ws163_c00000{word-spacing:16.509600px;}
.wsc15_c00000{word-spacing:16.516800px;}
.ws28a_c00000{word-spacing:16.524000px;}
.ws98_c00000{word-spacing:16.531200px;}
.ws97_c00000{word-spacing:16.538400px;}
.wsc37_c00000{word-spacing:16.545600px;}
.ws815_c00000{word-spacing:16.551036px;}
.ws60d_c00000{word-spacing:16.552800px;}
.ws624_c00000{word-spacing:16.557048px;}
.wsf42_c00000{word-spacing:16.560000px;}
.ws1e2_c00000{word-spacing:16.567200px;}
.ws17df_c00000{word-spacing:16.568820px;}
.wsc16_c00000{word-spacing:16.574400px;}
.ws183f_c00000{word-spacing:16.575084px;}
.wsc17_c00000{word-spacing:16.581600px;}
.ws1418_c00000{word-spacing:16.588800px;}
.ws1273_c00000{word-spacing:16.593120px;}
.ws1867_c00000{word-spacing:16.595172px;}
.ws6d3_c00000{word-spacing:16.596000px;}
.ws13b5_c00000{word-spacing:16.603200px;}
.wsfb5_c00000{word-spacing:16.610400px;}
.ws15e5_c00000{word-spacing:16.614936px;}
.ws1877_c00000{word-spacing:16.617600px;}
.ws1014_c00000{word-spacing:16.623180px;}
.ws8f2_c00000{word-spacing:16.628112px;}
.ws1985_c00000{word-spacing:16.632000px;}
.ws1788_c00000{word-spacing:16.641288px;}
.wse27_c00000{word-spacing:16.644168px;}
.ws1770_c00000{word-spacing:16.646400px;}
.ws814_c00000{word-spacing:16.647228px;}
.ws1070_c00000{word-spacing:16.660800px;}
.wsa23_c00000{word-spacing:16.668000px;}
.ws1ab2_c00000{word-spacing:16.675200px;}
.ws1055_c00000{word-spacing:16.682400px;}
.ws1274_c00000{word-spacing:16.683300px;}
.wse07_c00000{word-spacing:16.689312px;}
.ws12f4_c00000{word-spacing:16.689600px;}
.ws1416_c00000{word-spacing:16.704000px;}
.ws13cf_c00000{word-spacing:16.707348px;}
.ws1056_c00000{word-spacing:16.711200px;}
.ws2f8_c00000{word-spacing:16.732800px;}
.ws78d_c00000{word-spacing:16.747200px;}
.ws31f_c00000{word-spacing:16.749432px;}
.wse06_c00000{word-spacing:16.767468px;}
.ws1552_c00000{word-spacing:16.768800px;}
.ws1071_c00000{word-spacing:16.776000px;}
.ws2c8_c00000{word-spacing:16.783200px;}
.wse7a_c00000{word-spacing:16.785504px;}
.ws876_c00000{word-spacing:16.790400px;}
.wsb30_c00000{word-spacing:16.797600px;}
.ws877_c00000{word-spacing:16.804800px;}
.ws12c6_c00000{word-spacing:16.812000px;}
.ws1a0b_c00000{word-spacing:16.815564px;}
.ws448_c00000{word-spacing:16.819200px;}
.ws2c7_c00000{word-spacing:16.826400px;}
.ws2f7_c00000{word-spacing:16.833600px;}
.ws137b_c00000{word-spacing:16.840800px;}
.ws6c0_c00000{word-spacing:16.848000px;}
.ws326_c00000{word-spacing:16.855200px;}
.ws6c2_c00000{word-spacing:16.862400px;}
.ws6bf_c00000{word-spacing:16.869600px;}
.wsef8_c00000{word-spacing:16.876800px;}
.ws952_c00000{word-spacing:16.884000px;}
.wse03_c00000{word-spacing:16.891200px;}
.ws447_c00000{word-spacing:16.898400px;}
.ws1ad9_c00000{word-spacing:16.899732px;}
.ws29e_c00000{word-spacing:16.905600px;}
.ws1a9a_c00000{word-spacing:16.905744px;}
.ws1275_c00000{word-spacing:16.911756px;}
.ws325_c00000{word-spacing:16.912800px;}
.ws90e_c00000{word-spacing:16.920000px;}
.ws29d_c00000{word-spacing:16.927200px;}
.ws108b_c00000{word-spacing:16.934400px;}
.ws1206_c00000{word-spacing:16.935804px;}
.ws1970_c00000{word-spacing:16.937748px;}
.wsef9_c00000{word-spacing:16.941600px;}
.ws13b4_c00000{word-spacing:16.948800px;}
.ws198b_c00000{word-spacing:16.953840px;}
.ws6c3_c00000{word-spacing:16.956000px;}
.ws15b6_c00000{word-spacing:16.957512px;}
.ws108c_c00000{word-spacing:16.963200px;}
.wsd2c_c00000{word-spacing:16.970400px;}
.wsb76_c00000{word-spacing:16.977276px;}
.wsf77_c00000{word-spacing:16.977600px;}
.ws1690_c00000{word-spacing:16.977888px;}
.wsa63_c00000{word-spacing:16.984800px;}
.ws1b4d_c00000{word-spacing:16.990452px;}
.ws52e_c00000{word-spacing:16.992000px;}
.wsfc0_c00000{word-spacing:16.995924px;}
.ws10d2_c00000{word-spacing:16.999200px;}
.ws1276_c00000{word-spacing:17.001936px;}
.wsdce_c00000{word-spacing:17.013600px;}
.ws17d6_c00000{word-spacing:17.013960px;}
.ws17d7_c00000{word-spacing:17.019972px;}
.ws530_c00000{word-spacing:17.028000px;}
.ws1a2f_c00000{word-spacing:17.035200px;}
.ws1979_c00000{word-spacing:17.038008px;}
.wsb80_c00000{word-spacing:17.042400px;}
.ws186d_c00000{word-spacing:17.049600px;}
.wsfbf_c00000{word-spacing:17.056044px;}
.ws1a80_c00000{word-spacing:17.056800px;}
.ws1a26_c00000{word-spacing:17.062056px;}
.ws1a41_c00000{word-spacing:17.071200px;}
.wsd63_c00000{word-spacing:17.078400px;}
.ws1a66_c00000{word-spacing:17.085600px;}
.wsef4_c00000{word-spacing:17.092116px;}
.ws1885_c00000{word-spacing:17.092800px;}
.wsc6c_c00000{word-spacing:17.100000px;}
.ws147_c00000{word-spacing:17.107200px;}
.ws16ee_c00000{word-spacing:17.110152px;}
.ws1a42_c00000{word-spacing:17.114400px;}
.ws625_c00000{word-spacing:17.116164px;}
.ws17fc_c00000{word-spacing:17.121600px;}
.ws21b_c00000{word-spacing:17.128800px;}
.ws12db_c00000{word-spacing:17.134200px;}
.wsd0b_c00000{word-spacing:17.136000px;}
.ws52f_c00000{word-spacing:17.143200px;}
.ws1a9c_c00000{word-spacing:17.146224px;}
.ws1092_c00000{word-spacing:17.150400px;}
.ws12da_c00000{word-spacing:17.152236px;}
.wsbb8_c00000{word-spacing:17.157600px;}
.ws1a27_c00000{word-spacing:17.158248px;}
.wsc3_c00000{word-spacing:17.164800px;}
.ws1783_c00000{word-spacing:17.172000px;}
.ws19f8_c00000{word-spacing:17.176284px;}
.ws57b_c00000{word-spacing:17.179200px;}
.wsc4_c00000{word-spacing:17.186400px;}
.ws146_c00000{word-spacing:17.193600px;}
.ws21c_c00000{word-spacing:17.200800px;}
.ws9b8_c00000{word-spacing:17.208000px;}
.ws902_c00000{word-spacing:17.215200px;}
.wse4a_c00000{word-spacing:17.222400px;}
.ws1317_c00000{word-spacing:17.224380px;}
.wsdb_c00000{word-spacing:17.229600px;}
.wsda_c00000{word-spacing:17.236800px;}
.ws1135_c00000{word-spacing:17.244000px;}
.ws528_c00000{word-spacing:17.251200px;}
.wsa75_c00000{word-spacing:17.258400px;}
.wsc5f_c00000{word-spacing:17.260452px;}
.ws3f2_c00000{word-spacing:17.265600px;}
.wsef3_c00000{word-spacing:17.272476px;}
.ws8e1_c00000{word-spacing:17.272800px;}
.wsc40_c00000{word-spacing:17.278488px;}
.ws510_c00000{word-spacing:17.280000px;}
.wsb44_c00000{word-spacing:17.284500px;}
.ws591_c00000{word-spacing:17.287200px;}
.ws8eb_c00000{word-spacing:17.294400px;}
.ws1a9b_c00000{word-spacing:17.296524px;}
.wsc6b_c00000{word-spacing:17.301600px;}
.ws1605_c00000{word-spacing:17.308800px;}
.wsbb9_c00000{word-spacing:17.319852px;}
.ws1aea_c00000{word-spacing:17.320572px;}
.ws197a_c00000{word-spacing:17.326584px;}
.ws199a_c00000{word-spacing:17.330400px;}
.ws1010_c00000{word-spacing:17.337600px;}
.ws1829_c00000{word-spacing:17.344800px;}
.ws18df_c00000{word-spacing:17.352792px;}
.ws1536_c00000{word-spacing:17.356644px;}
.ws1046_c00000{word-spacing:17.359200px;}
.ws1318_c00000{word-spacing:17.368668px;}
.ws1879_c00000{word-spacing:17.372556px;}
.ws182a_c00000{word-spacing:17.373600px;}
.wsd4e_c00000{word-spacing:17.380692px;}
.ws19be_c00000{word-spacing:17.380800px;}
.ws16ed_c00000{word-spacing:17.386704px;}
.wsc41_c00000{word-spacing:17.398728px;}
.wsd0a_c00000{word-spacing:17.409600px;}
.wsef5_c00000{word-spacing:17.410752px;}
.ws198a_c00000{word-spacing:17.416764px;}
.ws174a_c00000{word-spacing:17.416800px;}
.ws1ae8_c00000{word-spacing:17.422776px;}
.ws171b_c00000{word-spacing:17.424000px;}
.ws1b31_c00000{word-spacing:17.431200px;}
.ws16ef_c00000{word-spacing:17.434800px;}
.wsc42_c00000{word-spacing:17.440812px;}
.ws1a7b_c00000{word-spacing:17.446824px;}
.ws1917_c00000{word-spacing:17.458848px;}
.ws191f_c00000{word-spacing:17.460000px;}
.wsf69_c00000{word-spacing:17.467200px;}
.ws1116_c00000{word-spacing:17.470872px;}
.ws14e7_c00000{word-spacing:17.474400px;}
.ws953_c00000{word-spacing:17.488800px;}
.ws18f2_c00000{word-spacing:17.494920px;}
.ws1435_c00000{word-spacing:17.496000px;}
.ws12e2_c00000{word-spacing:17.500932px;}
.ws76f_c00000{word-spacing:17.503200px;}
.wsc93_c00000{word-spacing:17.506944px;}
.ws1f3_c00000{word-spacing:17.510400px;}
.ws12d4_c00000{word-spacing:17.517600px;}
.ws1319_c00000{word-spacing:17.518968px;}
.ws78e_c00000{word-spacing:17.524800px;}
.ws167a_c00000{word-spacing:17.532000px;}
.wsb45_c00000{word-spacing:17.537004px;}
.ws14e9_c00000{word-spacing:17.539200px;}
.ws153_c00000{word-spacing:17.546400px;}
.ws154_c00000{word-spacing:17.553600px;}
.ws58d_c00000{word-spacing:17.560800px;}
.wsb3c_c00000{word-spacing:17.568000px;}
.wsc05_c00000{word-spacing:17.575200px;}
.wsfe2_c00000{word-spacing:17.582400px;}
.ws95a_c00000{word-spacing:17.589600px;}
.wsd8e_c00000{word-spacing:17.596800px;}
.ws3fa_c00000{word-spacing:17.604000px;}
.ws1539_c00000{word-spacing:17.609148px;}
.ws58c_c00000{word-spacing:17.611200px;}
.ws257_c00000{word-spacing:17.618400px;}
.ws856_c00000{word-spacing:17.621172px;}
.ws3fb_c00000{word-spacing:17.625600px;}
.ws1409_c00000{word-spacing:17.627184px;}
.ws1f4_c00000{word-spacing:17.632800px;}
.ws18b3_c00000{word-spacing:17.633196px;}
.ws1333_c00000{word-spacing:17.639208px;}
.ws1a0_c00000{word-spacing:17.640000px;}
.ws199c_c00000{word-spacing:17.647200px;}
.wsd4f_c00000{word-spacing:17.651232px;}
.wsc00_c00000{word-spacing:17.654400px;}
.ws258_c00000{word-spacing:17.661600px;}
.ws14bf_c00000{word-spacing:17.662428px;}
.wsf68_c00000{word-spacing:17.668800px;}
.ws18f3_c00000{word-spacing:17.669268px;}
.wsd50_c00000{word-spacing:17.675280px;}
.ws184b_c00000{word-spacing:17.676000px;}
.ws192d_c00000{word-spacing:17.682192px;}
.ws11a8_c00000{word-spacing:17.683200px;}
.ws10a2_c00000{word-spacing:17.687304px;}
.ws1a81_c00000{word-spacing:17.690400px;}
.ws1a75_c00000{word-spacing:17.697600px;}
.ws1538_c00000{word-spacing:17.699328px;}
.ws10c3_c00000{word-spacing:17.704800px;}
.wsad7_c00000{word-spacing:17.712000px;}
.ws11a9_c00000{word-spacing:17.719200px;}
.ws16e5_c00000{word-spacing:17.721720px;}
.ws1b2c_c00000{word-spacing:17.723376px;}
.wsd4d_c00000{word-spacing:17.729388px;}
.ws1537_c00000{word-spacing:17.735400px;}
.wsd84_c00000{word-spacing:17.741412px;}
.ws10a1_c00000{word-spacing:17.747424px;}
.ws1243_c00000{word-spacing:17.753436px;}
.ws569_c00000{word-spacing:17.755200px;}
.ws11d3_c00000{word-spacing:17.769600px;}
.ws1500_c00000{word-spacing:17.784000px;}
.ws1916_c00000{word-spacing:17.798400px;}
.ws19f_c00000{word-spacing:17.805600px;}
.wsc46_c00000{word-spacing:17.820000px;}
.ws135a_c00000{word-spacing:17.827200px;}
.wse0f_c00000{word-spacing:17.834400px;}
.ws189a_c00000{word-spacing:17.841600px;}
.ws1ed_c00000{word-spacing:17.848800px;}
.wsbd0_c00000{word-spacing:17.856000px;}
.wsd80_c00000{word-spacing:17.863200px;}
.ws117f_c00000{word-spacing:17.870400px;}
.wsd83_c00000{word-spacing:17.873676px;}
.ws1501_c00000{word-spacing:17.877600px;}
.ws1ee_c00000{word-spacing:17.884800px;}
.ws1828_c00000{word-spacing:17.892000px;}
.ws53f_c00000{word-spacing:17.899200px;}
.ws5e1_c00000{word-spacing:17.906400px;}
.ws1ae9_c00000{word-spacing:17.909748px;}
.wsa2d_c00000{word-spacing:17.913600px;}
.ws56a_c00000{word-spacing:17.920800px;}
.wse09_c00000{word-spacing:17.928000px;}
.ws540_c00000{word-spacing:17.935200px;}
.wsd19_c00000{word-spacing:17.942400px;}
.ws765_c00000{word-spacing:17.949600px;}
.ws423_c00000{word-spacing:17.956800px;}
.ws225_c00000{word-spacing:17.964000px;}
.ws623_c00000{word-spacing:17.969868px;}
.ws1ec_c00000{word-spacing:17.971200px;}
.ws6f1_c00000{word-spacing:17.978400px;}
.ws5e2_c00000{word-spacing:17.985600px;}
.ws12eb_c00000{word-spacing:17.987904px;}
.ws1930_c00000{word-spacing:17.991828px;}
.ws6ef_c00000{word-spacing:17.992800px;}
.ws1408_c00000{word-spacing:17.993916px;}
.wsbbd_c00000{word-spacing:17.998416px;}
.ws622_c00000{word-spacing:17.999928px;}
.ws424_c00000{word-spacing:18.000000px;}
.ws855_c00000{word-spacing:18.005940px;}
.ws1359_c00000{word-spacing:18.007200px;}
.wse10_c00000{word-spacing:18.014400px;}
.ws634_c00000{word-spacing:18.021600px;}
.ws192f_c00000{word-spacing:18.024768px;}
.ws10c0_c00000{word-spacing:18.028800px;}
.wsfaf_c00000{word-spacing:18.029988px;}
.ws541_c00000{word-spacing:18.036000px;}
.ws1b05_c00000{word-spacing:18.037944px;}
.ws1a29_c00000{word-spacing:18.043200px;}
.wsbbc_c00000{word-spacing:18.044532px;}
.ws1a7a_c00000{word-spacing:18.050400px;}
.ws1561_c00000{word-spacing:18.051120px;}
.wsc50_c00000{word-spacing:18.054036px;}
.ws10c2_c00000{word-spacing:18.057600px;}
.ws19cb_c00000{word-spacing:18.060048px;}
.wse0a_c00000{word-spacing:18.064800px;}
.ws10c1_c00000{word-spacing:18.072000px;}
.ws1562_c00000{word-spacing:18.077472px;}
.ws6f2_c00000{word-spacing:18.079200px;}
.ws1548_c00000{word-spacing:18.086400px;}
.ws14e4_c00000{word-spacing:18.090108px;}
.wsfae_c00000{word-spacing:18.096120px;}
.ws1367_c00000{word-spacing:18.108144px;}
.wsa4b_c00000{word-spacing:18.114156px;}
.ws14e3_c00000{word-spacing:18.120168px;}
.wsfad_c00000{word-spacing:18.138204px;}
.wsf5b_c00000{word-spacing:18.144216px;}
.wsde4_c00000{word-spacing:18.158400px;}
.ws1b9_c00000{word-spacing:18.162252px;}
.ws10cd_c00000{word-spacing:18.172800px;}
.ws5eb_c00000{word-spacing:18.180000px;}
.ws17e2_c00000{word-spacing:18.180288px;}
.ws1334_c00000{word-spacing:18.186300px;}
.ws57e_c00000{word-spacing:18.194400px;}
.wsa4c_c00000{word-spacing:18.204336px;}
.ws11cc_c00000{word-spacing:18.208800px;}
.ws170a_c00000{word-spacing:18.216000px;}
.ws1407_c00000{word-spacing:18.216360px;}
.ws1489_c00000{word-spacing:18.222372px;}
.wse57_c00000{word-spacing:18.223200px;}
.wsf5c_c00000{word-spacing:18.228384px;}
.wsac1_c00000{word-spacing:18.230400px;}
.ws57d_c00000{word-spacing:18.237600px;}
.ws1221_c00000{word-spacing:18.244800px;}
.ws14e5_c00000{word-spacing:18.246420px;}
.wsac2_c00000{word-spacing:18.252000px;}
.ws715_c00000{word-spacing:18.259200px;}
.ws3fe_c00000{word-spacing:18.266400px;}
.ws5ec_c00000{word-spacing:18.273600px;}
.wse5b_c00000{word-spacing:18.280800px;}
.ws1390_c00000{word-spacing:18.288000px;}
.ws3ff_c00000{word-spacing:18.295200px;}
.ws6f0_c00000{word-spacing:18.302400px;}
.ws11e2_c00000{word-spacing:18.309600px;}
.ws8ce_c00000{word-spacing:18.316800px;}
.wsc1e_c00000{word-spacing:18.324000px;}
.ws170e_c00000{word-spacing:18.330588px;}
.wscea_c00000{word-spacing:18.331200px;}
.wsf58_c00000{word-spacing:18.338400px;}
.wsce9_c00000{word-spacing:18.345600px;}
.ws5ea_c00000{word-spacing:18.352800px;}
.wsc22_c00000{word-spacing:18.360000px;}
.ws1373_c00000{word-spacing:18.366660px;}
.wsde3_c00000{word-spacing:18.367200px;}
.ws1a3f_c00000{word-spacing:18.373932px;}
.wsc21_c00000{word-spacing:18.374400px;}
.wsfb0_c00000{word-spacing:18.378684px;}
.ws14b7_c00000{word-spacing:18.381600px;}
.wse58_c00000{word-spacing:18.388800px;}
.wsc51_c00000{word-spacing:18.390708px;}
.wsda8_c00000{word-spacing:18.396000px;}
.ws3e3_c00000{word-spacing:18.403200px;}
.ws8cd_c00000{word-spacing:18.417600px;}
.ws14d7_c00000{word-spacing:18.420048px;}
.ws170d_c00000{word-spacing:18.420768px;}
.ws148c_c00000{word-spacing:18.424800px;}
.ws3e4_c00000{word-spacing:18.432000px;}
.ws18d1_c00000{word-spacing:18.432792px;}
.ws16f5_c00000{word-spacing:18.439812px;}
.ws1b1a_c00000{word-spacing:18.450828px;}
.ws1972_c00000{word-spacing:18.459576px;}
.ws18d2_c00000{word-spacing:18.480888px;}
.ws17b5_c00000{word-spacing:18.489600px;}
.wse8f_c00000{word-spacing:18.496800px;}
.ws16c5_c00000{word-spacing:18.504000px;}
.ws70f_c00000{word-spacing:18.525600px;}
.ws1a2d_c00000{word-spacing:18.540000px;}
.ws1558_c00000{word-spacing:18.547200px;}
.wsf82_c00000{word-spacing:18.553032px;}
.ws10bc_c00000{word-spacing:18.554400px;}
.wsfcb_c00000{word-spacing:18.561600px;}
.ws1431_c00000{word-spacing:18.568800px;}
.ws46e_c00000{word-spacing:18.576000px;}
.ws8c4_c00000{word-spacing:18.577080px;}
.wsdc2_c00000{word-spacing:18.583200px;}
.wsfb1_c00000{word-spacing:18.589104px;}
.ws16c4_c00000{word-spacing:18.590400px;}
.ws1833_c00000{word-spacing:18.597600px;}
.wse8e_c00000{word-spacing:18.604800px;}
.ws1100_c00000{word-spacing:18.612000px;}
.ws70e_c00000{word-spacing:18.619200px;}
.ws118f_c00000{word-spacing:18.626400px;}
.wsec9_c00000{word-spacing:18.633600px;}
.wse5a_c00000{word-spacing:18.640800px;}
.wsbfc_c00000{word-spacing:18.648000px;}
.ws1190_c00000{word-spacing:18.655200px;}
.ws92a_c00000{word-spacing:18.662400px;}
.ws1aa4_c00000{word-spacing:18.667260px;}
.wsc32_c00000{word-spacing:18.669600px;}
.ws1a40_c00000{word-spacing:18.676800px;}
.ws4de_c00000{word-spacing:18.684000px;}
.ws1526_c00000{word-spacing:18.685296px;}
.ws129a_c00000{word-spacing:18.691200px;}
.ws182f_c00000{word-spacing:18.691308px;}
.ws111c_c00000{word-spacing:18.698400px;}
.ws3e0_c00000{word-spacing:18.705600px;}
.wsa46_c00000{word-spacing:18.712800px;}
.ws16d5_c00000{word-spacing:18.720000px;}
.wsfcc_c00000{word-spacing:18.727200px;}
.wsece_c00000{word-spacing:18.727380px;}
.ws46d_c00000{word-spacing:18.734400px;}
.wsfa0_c00000{word-spacing:18.741600px;}
.ws1083_c00000{word-spacing:18.742860px;}
.ws9aa_c00000{word-spacing:18.748800px;}
.ws1692_c00000{word-spacing:18.763200px;}
.wsb8b_c00000{word-spacing:18.770400px;}
.ws985_c00000{word-spacing:18.775800px;}
.ws1b17_c00000{word-spacing:18.784800px;}
.ws124c_c00000{word-spacing:18.792000px;}
.ws806_c00000{word-spacing:18.795564px;}
.ws807_c00000{word-spacing:18.802152px;}
.ws134f_c00000{word-spacing:18.805536px;}
.ws11f1_c00000{word-spacing:18.820800px;}
.ws1527_c00000{word-spacing:18.835596px;}
.ws7cd_c00000{word-spacing:18.849600px;}
.ws14aa_c00000{word-spacing:18.856800px;}
.wsc9d_c00000{word-spacing:18.878400px;}
.wsf23_c00000{word-spacing:18.885600px;}
.wse91_c00000{word-spacing:18.892800px;}
.wsd53_c00000{word-spacing:18.900000px;}
.ws30e_c00000{word-spacing:18.901728px;}
.ws136a_c00000{word-spacing:18.907200px;}
.ws10f7_c00000{word-spacing:18.914400px;}
.ws1528_c00000{word-spacing:18.919764px;}
.ws122e_c00000{word-spacing:18.921600px;}
.ws40a_c00000{word-spacing:18.928800px;}
.ws694_c00000{word-spacing:18.936000px;}
.ws1350_c00000{word-spacing:18.937800px;}
.ws1239_c00000{word-spacing:18.943200px;}
.ws134e_c00000{word-spacing:18.943812px;}
.wsb0d_c00000{word-spacing:18.957600px;}
.wseb8_c00000{word-spacing:18.961848px;}
.wsa31_c00000{word-spacing:18.964800px;}
.ws1207_c00000{word-spacing:18.972000px;}
.wsb0e_c00000{word-spacing:18.979200px;}
.wsa30_c00000{word-spacing:18.986400px;}
.ws695_c00000{word-spacing:18.993600px;}
.ws135_c00000{word-spacing:19.000800px;}
.ws1809_c00000{word-spacing:19.008000px;}
.ws30f_c00000{word-spacing:19.009944px;}
.ws118c_c00000{word-spacing:19.015200px;}
.wsf24_c00000{word-spacing:19.022400px;}
.wsde0_c00000{word-spacing:19.029600px;}
.ws136_c00000{word-spacing:19.036800px;}
.ws1884_c00000{word-spacing:19.044000px;}
.ws493_c00000{word-spacing:19.051200px;}
.ws10d9_c00000{word-spacing:19.052028px;}
.wsdfd_c00000{word-spacing:19.058400px;}
.ws693_c00000{word-spacing:19.065600px;}
.ws54d_c00000{word-spacing:19.072800px;}
.ws7ce_c00000{word-spacing:19.080000px;}
.ws153e_c00000{word-spacing:19.082088px;}
.ws40b_c00000{word-spacing:19.087200px;}
.ws122c_c00000{word-spacing:19.094400px;}
.ws166a_c00000{word-spacing:19.100124px;}
.ws122d_c00000{word-spacing:19.101600px;}
.ws137_c00000{word-spacing:19.108800px;}
.ws170b_c00000{word-spacing:19.116000px;}
.ws1b0b_c00000{word-spacing:19.123200px;}
.ws1293_c00000{word-spacing:19.124172px;}
.ws53d_c00000{word-spacing:19.130400px;}
.ws175a_c00000{word-spacing:19.144728px;}
.ws10fe_c00000{word-spacing:19.144800px;}
.ws1943_c00000{word-spacing:19.151316px;}
.ws1b0a_c00000{word-spacing:19.152000px;}
.ws153c_c00000{word-spacing:19.154232px;}
.ws1aa3_c00000{word-spacing:19.166256px;}
.wsa95_c00000{word-spacing:19.166400px;}
.ws16fa_c00000{word-spacing:19.173600px;}
.wsa0a_c00000{word-spacing:19.202400px;}
.ws81c_c00000{word-spacing:19.209600px;}
.wse8a_c00000{word-spacing:19.224000px;}
.ws81e_c00000{word-spacing:19.238400px;}
.wsb3e_c00000{word-spacing:19.245600px;}
.ws11a3_c00000{word-spacing:19.252800px;}
.ws13a3_c00000{word-spacing:19.260000px;}
.ws1521_c00000{word-spacing:19.262448px;}
.ws16c7_c00000{word-spacing:19.267200px;}
.ws53c_c00000{word-spacing:19.274400px;}
.ws1606_c00000{word-spacing:19.280484px;}
.ws427_c00000{word-spacing:19.281600px;}
.ws1815_c00000{word-spacing:19.288800px;}
.wse8b_c00000{word-spacing:19.296000px;}
.wsde6_c00000{word-spacing:19.303200px;}
.wsd66_c00000{word-spacing:19.310400px;}
.ws13a4_c00000{word-spacing:19.317600px;}
.ws13b0_c00000{word-spacing:19.322568px;}
.wsa94_c00000{word-spacing:19.324800px;}
.ws82d_c00000{word-spacing:19.332000px;}
.ws169_c00000{word-spacing:19.339200px;}
.wsa1f_c00000{word-spacing:19.346400px;}
.ws1607_c00000{word-spacing:19.352628px;}
.ws82e_c00000{word-spacing:19.353600px;}
.ws11fb_c00000{word-spacing:19.360800px;}
.ws10bb_c00000{word-spacing:19.368000px;}
.ws1aff_c00000{word-spacing:19.375200px;}
.ws8b2_c00000{word-spacing:19.382400px;}
.ws128_c00000{word-spacing:19.389600px;}
.ws123c_c00000{word-spacing:19.396800px;}
.ws127_c00000{word-spacing:19.404000px;}
.ws5de_c00000{word-spacing:19.411200px;}
.wsde5_c00000{word-spacing:19.418400px;}
.ws18f5_c00000{word-spacing:19.424772px;}
.wsd96_c00000{word-spacing:19.425600px;}
.wse6d_c00000{word-spacing:19.432800px;}
.ws426_c00000{word-spacing:19.440000px;}
.ws81d_c00000{word-spacing:19.447200px;}
.ws1011_c00000{word-spacing:19.448820px;}
.ws16a_c00000{word-spacing:19.454400px;}
.ws10d8_c00000{word-spacing:19.460844px;}
.ws1717_c00000{word-spacing:19.461600px;}
.ws16b9_c00000{word-spacing:19.467540px;}
.wsde7_c00000{word-spacing:19.468800px;}
.ws1680_c00000{word-spacing:19.474128px;}
.ws16c6_c00000{word-spacing:19.476000px;}
.wsa0b_c00000{word-spacing:19.483200px;}
.ws134d_c00000{word-spacing:19.490400px;}
.ws18f4_c00000{word-spacing:19.502928px;}
.wsf5a_c00000{word-spacing:19.504800px;}
.wsa20_c00000{word-spacing:19.519200px;}
.wsbdc_c00000{word-spacing:19.526976px;}
.wsde9_c00000{word-spacing:19.533600px;}
.wsa6d_c00000{word-spacing:19.555200px;}
.ws1013_c00000{word-spacing:19.557036px;}
.ws10ce_c00000{word-spacing:19.562400px;}
.ws10d7_c00000{word-spacing:19.569060px;}
.wsf59_c00000{word-spacing:19.569600px;}
.ws1a2c_c00000{word-spacing:19.576800px;}
.ws136d_c00000{word-spacing:19.598400px;}
.ws195f_c00000{word-spacing:19.605600px;}
.ws1079_c00000{word-spacing:19.612800px;}
.ws1b06_c00000{word-spacing:19.620000px;}
.ws1b38_c00000{word-spacing:19.627200px;}
.ws1894_c00000{word-spacing:19.634400px;}
.ws1a94_c00000{word-spacing:19.635192px;}
.ws1a95_c00000{word-spacing:19.641204px;}
.ws487_c00000{word-spacing:19.641600px;}
.wsa21_c00000{word-spacing:19.648800px;}
.ws153d_c00000{word-spacing:19.653228px;}
.ws94b_c00000{word-spacing:19.656000px;}
.wsf39_c00000{word-spacing:19.663200px;}
.ws1224_c00000{word-spacing:19.670400px;}
.ws136c_c00000{word-spacing:19.677600px;}
.wsdfe_c00000{word-spacing:19.684800px;}
.ws10cf_c00000{word-spacing:19.692000px;}
.wsdea_c00000{word-spacing:19.706400px;}
.ws882_c00000{word-spacing:19.713600px;}
.ws16c2_c00000{word-spacing:19.720800px;}
.ws8e6_c00000{word-spacing:19.728000px;}
.ws881_c00000{word-spacing:19.735200px;}
.ws135d_c00000{word-spacing:19.742400px;}
.ws1a5b_c00000{word-spacing:19.749420px;}
.wsa6e_c00000{word-spacing:19.749600px;}
.ws2ba_c00000{word-spacing:19.756800px;}
.ws15aa_c00000{word-spacing:19.764000px;}
.ws8e7_c00000{word-spacing:19.771200px;}
.ws94a_c00000{word-spacing:19.778400px;}
.ws13a7_c00000{word-spacing:19.779480px;}
.ws1006_c00000{word-spacing:19.785600px;}
.wsdff_c00000{word-spacing:19.792800px;}
.ws1369_c00000{word-spacing:19.800000px;}
.ws13a8_c00000{word-spacing:19.803528px;}
.wsf43_c00000{word-spacing:19.807200px;}
.ws15f1_c00000{word-spacing:19.810116px;}
.ws16c3_c00000{word-spacing:19.814400px;}
.wsf7d_c00000{word-spacing:19.815552px;}
.ws1674_c00000{word-spacing:19.821600px;}
.ws51b_c00000{word-spacing:19.828800px;}
.ws135e_c00000{word-spacing:19.836000px;}
.wsf3a_c00000{word-spacing:19.850400px;}
.ws17fa_c00000{word-spacing:19.872000px;}
.ws1718_c00000{word-spacing:19.879200px;}
.wsdbc_c00000{word-spacing:19.884168px;}
.ws1007_c00000{word-spacing:19.893600px;}
.ws1509_c00000{word-spacing:19.900800px;}
.ws7aa_c00000{word-spacing:19.929600px;}
.ws1961_c00000{word-spacing:19.944000px;}
.ws12c1_c00000{word-spacing:19.947816px;}
.wsc96_c00000{word-spacing:19.951200px;}
.wse4c_c00000{word-spacing:19.959840px;}
.ws1012_c00000{word-spacing:19.971864px;}
.wsc5_c00000{word-spacing:19.972800px;}
.ws1734_c00000{word-spacing:19.980000px;}
.wse4d_c00000{word-spacing:19.983888px;}
.wsc6_c00000{word-spacing:19.994400px;}
.ws1a5a_c00000{word-spacing:19.995912px;}
.ws16de_c00000{word-spacing:20.001600px;}
.wsa72_c00000{word-spacing:20.008800px;}
.ws727_c00000{word-spacing:20.016000px;}
.ws10db_c00000{word-spacing:20.023200px;}
.ws1021_c00000{word-spacing:20.030400px;}
.ws1464_c00000{word-spacing:20.031984px;}
.ws121c_c00000{word-spacing:20.037600px;}
.ws1023_c00000{word-spacing:20.044800px;}
.ws9a0_c00000{word-spacing:20.052000px;}
.wsb7f_c00000{word-spacing:20.059200px;}
.ws51a_c00000{word-spacing:20.066400px;}
.ws3db_c00000{word-spacing:20.073600px;}
.ws161b_c00000{word-spacing:20.080800px;}
.ws7a9_c00000{word-spacing:20.088000px;}
.wsc97_c00000{word-spacing:20.095200px;}
.wsa73_c00000{word-spacing:20.102400px;}
.ws12c2_c00000{word-spacing:20.104128px;}
.ws545_c00000{word-spacing:20.109600px;}
.ws117c_c00000{word-spacing:20.116800px;}
.ws429_c00000{word-spacing:20.124000px;}
.ws730_c00000{word-spacing:20.131200px;}
.ws3da_c00000{word-spacing:20.138400px;}
.ws430_c00000{word-spacing:20.145600px;}
.wse5f_c00000{word-spacing:20.152224px;}
.ws1008_c00000{word-spacing:20.152800px;}
.wsc81_c00000{word-spacing:20.160000px;}
.ws1522_c00000{word-spacing:20.164248px;}
.ws42a_c00000{word-spacing:20.167200px;}
.ws729_c00000{word-spacing:20.174400px;}
.wse60_c00000{word-spacing:20.176272px;}
.ws519_c00000{word-spacing:20.181600px;}
.ws16b3_c00000{word-spacing:20.185632px;}
.ws78f_c00000{word-spacing:20.188296px;}
.ws1022_c00000{word-spacing:20.188800px;}
.ws728_c00000{word-spacing:20.196000px;}
.ws191c_c00000{word-spacing:20.203200px;}
.ws18b7_c00000{word-spacing:20.206332px;}
.ws12a4_c00000{word-spacing:20.217600px;}
.ws1120_c00000{word-spacing:20.230380px;}
.ws13c5_c00000{word-spacing:20.232000px;}
.wse61_c00000{word-spacing:20.236392px;}
.ws157a_c00000{word-spacing:20.268000px;}
.ws18b6_c00000{word-spacing:20.290500px;}
.wsef6_c00000{word-spacing:20.325600px;}
.wsa49_c00000{word-spacing:20.340000px;}
.ws1494_c00000{word-spacing:20.347200px;}
.ws12a2_c00000{word-spacing:20.354400px;}
.ws44e_c00000{word-spacing:20.361600px;}
.wsca0_c00000{word-spacing:20.383200px;}
.wsca1_c00000{word-spacing:20.390400px;}
.ws412_c00000{word-spacing:20.397600px;}
.ws1168_c00000{word-spacing:20.398716px;}
.ws1121_c00000{word-spacing:20.404728px;}
.ws11eb_c00000{word-spacing:20.404800px;}
.ws996_c00000{word-spacing:20.412000px;}
.wsc55_c00000{word-spacing:20.419200px;}
.ws13b8_c00000{word-spacing:20.426400px;}
.ws44d_c00000{word-spacing:20.433600px;}
.wsbe8_c00000{word-spacing:20.440800px;}
.ws13c9_c00000{word-spacing:20.448000px;}
.ws994_c00000{word-spacing:20.455200px;}
.ws993_c00000{word-spacing:20.462400px;}
.ws6fa_c00000{word-spacing:20.469600px;}
.ws18b_c00000{word-spacing:20.476800px;}
.ws21e_c00000{word-spacing:20.484000px;}
.wsc6d_c00000{word-spacing:20.491200px;}
.ws413_c00000{word-spacing:20.498400px;}
.ws8a9_c00000{word-spacing:20.505600px;}
.ws1a38_c00000{word-spacing:20.506932px;}
.ws6fb_c00000{word-spacing:20.512800px;}
.wsc56_c00000{word-spacing:20.520000px;}
.ws12e1_c00000{word-spacing:20.524968px;}
.ws1545_c00000{word-spacing:20.527200px;}
.ws6fc_c00000{word-spacing:20.534400px;}
.ws1219_c00000{word-spacing:20.541600px;}
.ws18c4_c00000{word-spacing:20.548800px;}
.ws15f8_c00000{word-spacing:20.554560px;}
.ws11be_c00000{word-spacing:20.556000px;}
.ws16e9_c00000{word-spacing:20.563200px;}
.ws18dd_c00000{word-spacing:20.567736px;}
.ws13c6_c00000{word-spacing:20.570400px;}
.ws1492_c00000{word-spacing:20.573064px;}
.ws1644_c00000{word-spacing:20.577600px;}
.ws15f7_c00000{word-spacing:20.594088px;}
.ws1b20_c00000{word-spacing:20.606400px;}
.ws18f9_c00000{word-spacing:20.609136px;}
.ws18fa_c00000{word-spacing:20.627172px;}
.ws2c3_c00000{word-spacing:20.642400px;}
.ws9e2_c00000{word-spacing:20.651220px;}
.ws9e1_c00000{word-spacing:20.663244px;}
.ws13ba_c00000{word-spacing:20.671200px;}
.ws56c_c00000{word-spacing:20.678400px;}
.wsff6_c00000{word-spacing:20.685600px;}
.ws10a6_c00000{word-spacing:20.692800px;}
.ws1145_c00000{word-spacing:20.700000px;}
.wseab_c00000{word-spacing:20.714400px;}
.ws15a1_c00000{word-spacing:20.717352px;}
.ws11bb_c00000{word-spacing:20.721600px;}
.wsff7_c00000{word-spacing:20.736000px;}
.wsf0e_c00000{word-spacing:20.743200px;}
.wsec5_c00000{word-spacing:20.750400px;}
.ws950_c00000{word-spacing:20.757600px;}
.ws1a83_c00000{word-spacing:20.764800px;}
.ws84_c00000{word-spacing:20.772000px;}
.wsf0a_c00000{word-spacing:20.779200px;}
.ws85_c00000{word-spacing:20.786400px;}
.ws15d9_c00000{word-spacing:20.793600px;}
.wse6e_c00000{word-spacing:20.800800px;}
.ws63e_c00000{word-spacing:20.808000px;}
.ws2a9_c00000{word-spacing:20.815200px;}
.ws131e_c00000{word-spacing:20.822400px;}
.wseac_c00000{word-spacing:20.829600px;}
.ws56b_c00000{word-spacing:20.836800px;}
.ws5d0_c00000{word-spacing:20.844000px;}
.ws940_c00000{word-spacing:20.851200px;}
.ws7a8_c00000{word-spacing:20.858400px;}
.ws5d2_c00000{word-spacing:20.865600px;}
.ws56d_c00000{word-spacing:20.872800px;}
.wsf0b_c00000{word-spacing:20.880000px;}
.ws1540_c00000{word-spacing:20.885688px;}
.ws2c4_c00000{word-spacing:20.887200px;}
.wse22_c00000{word-spacing:20.891700px;}
.wse6f_c00000{word-spacing:20.894400px;}
.wsf0c_c00000{word-spacing:20.901600px;}
.ws11c9_c00000{word-spacing:20.916000px;}
.ws1636_c00000{word-spacing:20.916900px;}
.ws17aa_c00000{word-spacing:20.923200px;}
.ws17c8_c00000{word-spacing:20.930076px;}
.ws187c_c00000{word-spacing:20.937600px;}
.wsa32_c00000{word-spacing:20.944800px;}
.ws18ff_c00000{word-spacing:20.963844px;}
.ws6e6_c00000{word-spacing:20.964168px;}
.ws10a7_c00000{word-spacing:20.966400px;}
.ws19bc_c00000{word-spacing:20.976192px;}
.ws5d1_c00000{word-spacing:20.980800px;}
.ws179b_c00000{word-spacing:20.988000px;}
.ws1805_c00000{word-spacing:21.005928px;}
.ws186e_c00000{word-spacing:21.016800px;}
.ws7d4_c00000{word-spacing:21.017952px;}
.wsda9_c00000{word-spacing:21.031200px;}
.ws7fa_c00000{word-spacing:21.052800px;}
.ws12e0_c00000{word-spacing:21.054024px;}
.wsdab_c00000{word-spacing:21.067200px;}
.wsecb_c00000{word-spacing:21.072060px;}
.wsaff_c00000{word-spacing:21.074400px;}
.ws1541_c00000{word-spacing:21.078072px;}
.ws138f_c00000{word-spacing:21.081600px;}
.ws13e9_c00000{word-spacing:21.084084px;}
.ws1133_c00000{word-spacing:21.096000px;}
.ws166c_c00000{word-spacing:21.096108px;}
.ws16fb_c00000{word-spacing:21.110400px;}
.ws7d3_c00000{word-spacing:21.114144px;}
.wsdaa_c00000{word-spacing:21.117600px;}
.ws149d_c00000{word-spacing:21.124800px;}
.ws7fb_c00000{word-spacing:21.132000px;}
.wse2a_c00000{word-spacing:21.139200px;}
.ws1134_c00000{word-spacing:21.146400px;}
.wsa42_c00000{word-spacing:21.153600px;}
.ws14bd_c00000{word-spacing:21.160800px;}
.wsf2_c00000{word-spacing:21.168000px;}
.ws1326_c00000{word-spacing:21.175200px;}
.ws7c2_c00000{word-spacing:21.182400px;}
.ws980_c00000{word-spacing:21.189600px;}
.ws10a8_c00000{word-spacing:21.196800px;}
.ws97f_c00000{word-spacing:21.204000px;}
.ws19b2_c00000{word-spacing:21.204324px;}
.wsa2b_c00000{word-spacing:21.211200px;}
.ws18e9_c00000{word-spacing:21.216348px;}
.ws22c_c00000{word-spacing:21.218400px;}
.wsb00_c00000{word-spacing:21.225600px;}
.ws193c_c00000{word-spacing:21.228372px;}
.wsf0_c00000{word-spacing:21.232800px;}
.wsa41_c00000{word-spacing:21.240000px;}
.ws1576_c00000{word-spacing:21.240396px;}
.ws7c1_c00000{word-spacing:21.247200px;}
.ws7fc_c00000{word-spacing:21.254400px;}
.wsa2c_c00000{word-spacing:21.261600px;}
.ws16f2_c00000{word-spacing:21.266064px;}
.wsf1_c00000{word-spacing:21.268800px;}
.ws1575_c00000{word-spacing:21.270456px;}
.ws123e_c00000{word-spacing:21.276000px;}
.ws1a60_c00000{word-spacing:21.279240px;}
.ws1b42_c00000{word-spacing:21.285828px;}
.ws1a43_c00000{word-spacing:21.304800px;}
.wsee5_c00000{word-spacing:21.333600px;}
.ws1afb_c00000{word-spacing:21.355200px;}
.ws181e_c00000{word-spacing:21.360636px;}
.ws13f1_c00000{word-spacing:21.391200px;}
.ws181d_c00000{word-spacing:21.396708px;}
.wse69_c00000{word-spacing:21.398400px;}
.wsb7c_c00000{word-spacing:21.420000px;}
.ws115a_c00000{word-spacing:21.434400px;}
.ws1255_c00000{word-spacing:21.444804px;}
.ws18fc_c00000{word-spacing:21.448800px;}
.wsecc_c00000{word-spacing:21.450816px;}
.wsaec_c00000{word-spacing:21.456000px;}
.ws42c_c00000{word-spacing:21.470400px;}
.ws302_c00000{word-spacing:21.477600px;}
.wsfb4_c00000{word-spacing:21.484800px;}
.ws303_c00000{word-spacing:21.499200px;}
.ws42b_c00000{word-spacing:21.506400px;}
.ws75d_c00000{word-spacing:21.520800px;}
.wsa15_c00000{word-spacing:21.535200px;}
.ws12e8_c00000{word-spacing:21.542400px;}
.ws19d1_c00000{word-spacing:21.549600px;}
.ws3e6_c00000{word-spacing:21.556800px;}
.ws2b1_c00000{word-spacing:21.564000px;}
.ws2b0_c00000{word-spacing:21.571200px;}
.wsc5e_c00000{word-spacing:21.577068px;}
.ws19e3_c00000{word-spacing:21.578400px;}
.ws12ce_c00000{word-spacing:21.583080px;}
.ws1322_c00000{word-spacing:21.589092px;}
.wsaea_c00000{word-spacing:21.592800px;}
.ws1ab5_c00000{word-spacing:21.600000px;}
.wsa43_c00000{word-spacing:21.607200px;}
.ws1323_c00000{word-spacing:21.613140px;}
.ws13f2_c00000{word-spacing:21.621600px;}
.ws193d_c00000{word-spacing:21.625164px;}
.wsaeb_c00000{word-spacing:21.628800px;}
.ws12cd_c00000{word-spacing:21.631176px;}
.ws99b_c00000{word-spacing:21.643200px;}
.ws1914_c00000{word-spacing:21.648168px;}
.ws16f3_c00000{word-spacing:21.661344px;}
.wsa16_c00000{word-spacing:21.672000px;}
.ws1794_c00000{word-spacing:21.686400px;}
.ws1b55_c00000{word-spacing:21.693600px;}
.wsa85_c00000{word-spacing:21.715200px;}
.ws1b53_c00000{word-spacing:21.758400px;}
.ws112d_c00000{word-spacing:21.769452px;}
.ws1b56_c00000{word-spacing:21.780000px;}
.ws193e_c00000{word-spacing:21.781476px;}
.ws17dd_c00000{word-spacing:21.787200px;}
.ws12cf_c00000{word-spacing:21.787488px;}
.ws1029_c00000{word-spacing:21.794400px;}
.ws1254_c00000{word-spacing:21.799512px;}
.ws1184_c00000{word-spacing:21.801600px;}
.ws1324_c00000{word-spacing:21.805524px;}
.ws191a_c00000{word-spacing:21.808800px;}
.ws16cc_c00000{word-spacing:21.816000px;}
.ws28e_c00000{word-spacing:21.823200px;}
.ws1525_c00000{word-spacing:21.829572px;}
.ws11ee_c00000{word-spacing:21.830400px;}
.ws334_c00000{word-spacing:21.844800px;}
.ws1878_c00000{word-spacing:21.852000px;}
.ws1b51_c00000{word-spacing:21.859200px;}
.ws112e_c00000{word-spacing:21.859632px;}
.ws1982_c00000{word-spacing:21.866400px;}
.wsc2f_c00000{word-spacing:21.873600px;}
.ws191b_c00000{word-spacing:21.880800px;}
.ws4d0_c00000{word-spacing:21.888000px;}
.ws1185_c00000{word-spacing:21.902400px;}
.ws13de_c00000{word-spacing:21.907728px;}
.ws13cc_c00000{word-spacing:21.909600px;}
.ws1028_c00000{word-spacing:21.916800px;}
.ws17dc_c00000{word-spacing:21.924000px;}
.wsbe5_c00000{word-spacing:21.931200px;}
.wsc74_c00000{word-spacing:21.938400px;}
.ws335_c00000{word-spacing:21.945600px;}
.ws18b2_c00000{word-spacing:21.949812px;}
.ws8bc_c00000{word-spacing:21.960000px;}
.wse88_c00000{word-spacing:21.967200px;}
.ws18b0_c00000{word-spacing:21.967848px;}
.ws19c7_c00000{word-spacing:21.973860px;}
.ws1899_c00000{word-spacing:21.974400px;}
.wsbe6_c00000{word-spacing:21.981600px;}
.ws28d_c00000{word-spacing:21.988800px;}
.ws119c_c00000{word-spacing:21.996000px;}
.ws1793_c00000{word-spacing:22.003200px;}
.ws17de_c00000{word-spacing:22.010400px;}
.ws13dd_c00000{word-spacing:22.015944px;}
.wsbbe_c00000{word-spacing:22.023684px;}
.ws1057_c00000{word-spacing:22.024800px;}
.ws5f8_c00000{word-spacing:22.052016px;}
.wsc5d_c00000{word-spacing:22.064040px;}
.ws5f9_c00000{word-spacing:22.070052px;}
.wsaab_c00000{word-spacing:22.082400px;}
.ws191_c00000{word-spacing:22.104000px;}
.ws893_c00000{word-spacing:22.111200px;}
.ws891_c00000{word-spacing:22.118400px;}
.ws95d_c00000{word-spacing:22.125600px;}
.wse08_c00000{word-spacing:22.140000px;}
.ws13df_c00000{word-spacing:22.142196px;}
.ws328_c00000{word-spacing:22.154400px;}
.ws46c_c00000{word-spacing:22.168800px;}
.ws1596_c00000{word-spacing:22.176000px;}
.wse0_c00000{word-spacing:22.183200px;}
.wsaac_c00000{word-spacing:22.190400px;}
.wsc8f_c00000{word-spacing:22.196304px;}
.ws327_c00000{word-spacing:22.197600px;}
.ws190_c00000{word-spacing:22.204800px;}
.ws120d_c00000{word-spacing:22.212000px;}
.wsdae_c00000{word-spacing:22.219200px;}
.ws1531_c00000{word-spacing:22.220352px;}
.ws14ab_c00000{word-spacing:22.226400px;}
.ws3ce_c00000{word-spacing:22.233600px;}
.ws18b1_c00000{word-spacing:22.238388px;}
.wse11_c00000{word-spacing:22.240800px;}
.ws892_c00000{word-spacing:22.248000px;}
.ws1618_c00000{word-spacing:22.255200px;}
.ws36a_c00000{word-spacing:22.262400px;}
.ws11e6_c00000{word-spacing:22.269600px;}
.ws966_c00000{word-spacing:22.276800px;}
.wse1_c00000{word-spacing:22.284000px;}
.ws3cf_c00000{word-spacing:22.291200px;}
.ws46b_c00000{word-spacing:22.298400px;}
.ws13a6_c00000{word-spacing:22.305600px;}
.ws120e_c00000{word-spacing:22.312800px;}
.wsa44_c00000{word-spacing:22.320000px;}
.ws101e_c00000{word-spacing:22.327200px;}
.wsdad_c00000{word-spacing:22.334400px;}
.ws338_c00000{word-spacing:22.341600px;}
.wsb4e_c00000{word-spacing:22.346604px;}
.ws369_c00000{word-spacing:22.348800px;}
.ws339_c00000{word-spacing:22.356000px;}
.ws1641_c00000{word-spacing:22.386024px;}
.ws17f5_c00000{word-spacing:22.402224px;}
.ws17b0_c00000{word-spacing:22.424760px;}
.wsb4f_c00000{word-spacing:22.454820px;}
.ws19d0_c00000{word-spacing:22.464000px;}
.wscf4_c00000{word-spacing:22.478400px;}
.ws115b_c00000{word-spacing:22.500000px;}
.ws15c3_c00000{word-spacing:22.521600px;}
.ws742_c00000{word-spacing:22.528800px;}
.ws4ce_c00000{word-spacing:22.536000px;}
.wsf4f_c00000{word-spacing:22.538988px;}
.ws16da_c00000{word-spacing:22.545000px;}
.ws743_c00000{word-spacing:22.550400px;}
.ws16e0_c00000{word-spacing:22.557600px;}
.ws120f_c00000{word-spacing:22.579200px;}
.ws17af_c00000{word-spacing:22.581072px;}
.ws2bc_c00000{word-spacing:22.586400px;}
.ws1715_c00000{word-spacing:22.587084px;}
.ws451_c00000{word-spacing:22.593600px;}
.ws116b_c00000{word-spacing:22.600800px;}
.ws744_c00000{word-spacing:22.608000px;}
.ws10f6_c00000{word-spacing:22.615200px;}
.ws3b6_c00000{word-spacing:22.622400px;}
.ws4a6_c00000{word-spacing:22.629600px;}
.ws4d6_c00000{word-spacing:22.636800px;}
.ws755_c00000{word-spacing:22.644000px;}
.ws1103_c00000{word-spacing:22.651200px;}
.ws144e_c00000{word-spacing:22.653216px;}
.wsac9_c00000{word-spacing:22.658400px;}
.ws15d8_c00000{word-spacing:22.665600px;}
.ws1aab_c00000{word-spacing:22.671252px;}
.ws16f1_c00000{word-spacing:22.672800px;}
.ws1a12_c00000{word-spacing:22.677264px;}
.ws96b_c00000{word-spacing:22.680000px;}
.ws2bb_c00000{word-spacing:22.687200px;}
.ws1613_c00000{word-spacing:22.689072px;}
.ws16df_c00000{word-spacing:22.694400px;}
.wsdaf_c00000{word-spacing:22.701312px;}
.ws1927_c00000{word-spacing:22.701600px;}
.ws1b3f_c00000{word-spacing:22.702248px;}
.ws173b_c00000{word-spacing:22.708800px;}
.wseaf_c00000{word-spacing:22.715424px;}
.ws4d5_c00000{word-spacing:22.716000px;}
.ws17a2_c00000{word-spacing:22.730400px;}
.ws10f5_c00000{word-spacing:22.744800px;}
.ws1852_c00000{word-spacing:22.773600px;}
.ws1a00_c00000{word-spacing:22.788000px;}
.ws18c2_c00000{word-spacing:22.791492px;}
.ws111a_c00000{word-spacing:22.809600px;}
.ws177b_c00000{word-spacing:22.821552px;}
.ws177a_c00000{word-spacing:22.827564px;}
.wsc24_c00000{word-spacing:22.845600px;}
.ws78b_c00000{word-spacing:22.867200px;}
.ws295_c00000{word-spacing:22.874400px;}
.wsb87_c00000{word-spacing:22.875660px;}
.wsaca_c00000{word-spacing:22.881600px;}
.wsd1d_c00000{word-spacing:22.896000px;}
.wsf50_c00000{word-spacing:22.905720px;}
.ws80b_c00000{word-spacing:22.910400px;}
.ws1b0f_c00000{word-spacing:22.917600px;}
.ws80c_c00000{word-spacing:22.924800px;}
.ws1622_c00000{word-spacing:22.932000px;}
.wsb4d_c00000{word-spacing:22.935780px;}
.ws1579_c00000{word-spacing:22.939200px;}
.wsc23_c00000{word-spacing:22.946400px;}
.ws949_c00000{word-spacing:22.953600px;}
.ws10bf_c00000{word-spacing:22.975200px;}
.ws61e_c00000{word-spacing:22.982400px;}
.ws294_c00000{word-spacing:22.989600px;}
.ws927_c00000{word-spacing:22.996800px;}
.ws770_c00000{word-spacing:23.004000px;}
.ws6d6_c00000{word-spacing:23.011200px;}
.ws6d4_c00000{word-spacing:23.018400px;}
.wsd7c_c00000{word-spacing:23.025600px;}
.wscf6_c00000{word-spacing:23.032800px;}
.ws6d7_c00000{word-spacing:23.040000px;}
.ws174b_c00000{word-spacing:23.044824px;}
.ws296_c00000{word-spacing:23.047200px;}
.ws1330_c00000{word-spacing:23.050008px;}
.ws6d5_c00000{word-spacing:23.054400px;}
.ws1864_c00000{word-spacing:23.061600px;}
.ws928_c00000{word-spacing:23.068800px;}
.ws120b_c00000{word-spacing:23.076000px;}
.ws61f_c00000{word-spacing:23.083200px;}
.ws174c_c00000{word-spacing:23.104116px;}
.ws1661_c00000{word-spacing:23.119200px;}
.ws132f_c00000{word-spacing:23.140188px;}
.wsc25_c00000{word-spacing:23.140800px;}
.ws1935_c00000{word-spacing:23.164236px;}
.ws920_c00000{word-spacing:23.184000px;}
.wsf67_c00000{word-spacing:23.191200px;}
.ws1b1d_c00000{word-spacing:23.205600px;}
.ws161d_c00000{word-spacing:23.234400px;}
.ws165f_c00000{word-spacing:23.241600px;}
.wsf65_c00000{word-spacing:23.256000px;}
.ws1b1e_c00000{word-spacing:23.263200px;}
.wsf66_c00000{word-spacing:23.270400px;}
.ws1aaa_c00000{word-spacing:23.272452px;}
.ws161c_c00000{word-spacing:23.284800px;}
.ws1620_c00000{word-spacing:23.292000px;}
.ws10a9_c00000{word-spacing:23.299200px;}
.ws190a_c00000{word-spacing:23.306400px;}
.ws91f_c00000{word-spacing:23.313600px;}
.wsf6d_c00000{word-spacing:23.320800px;}
.ws173f_c00000{word-spacing:23.328000px;}
.wsd97_c00000{word-spacing:23.335200px;}
.ws102c_c00000{word-spacing:23.342400px;}
.ws13ac_c00000{word-spacing:23.356800px;}
.ws215_c00000{word-spacing:23.364000px;}
.ws216_c00000{word-spacing:23.371200px;}
.ws1600_c00000{word-spacing:23.378400px;}
.ws16d0_c00000{word-spacing:23.385600px;}
.ws1936_c00000{word-spacing:23.392692px;}
.wsd1a_c00000{word-spacing:23.392800px;}
.ws14ac_c00000{word-spacing:23.398704px;}
.wsf76_c00000{word-spacing:23.400000px;}
.ws45b_c00000{word-spacing:23.407200px;}
.ws161e_c00000{word-spacing:23.414400px;}
.ws173e_c00000{word-spacing:23.421600px;}
.ws804_c00000{word-spacing:23.426928px;}
.ws1ae3_c00000{word-spacing:23.428800px;}
.ws1757_c00000{word-spacing:23.433516px;}
.ws190b_c00000{word-spacing:23.436000px;}
.ws17b8_c00000{word-spacing:23.440788px;}
.ws805_c00000{word-spacing:23.492808px;}
.wsb7d_c00000{word-spacing:23.500800px;}
.ws17b7_c00000{word-spacing:23.512932px;}
.ws1b0c_c00000{word-spacing:23.522400px;}
.ws93a_c00000{word-spacing:23.544000px;}
.ws1937_c00000{word-spacing:23.555016px;}
.ws612_c00000{word-spacing:23.565600px;}
.ws114b_c00000{word-spacing:23.580000px;}
.ws10ba_c00000{word-spacing:23.587200px;}
.ws842_c00000{word-spacing:23.594400px;}
.ws122a_c00000{word-spacing:23.601600px;}
.ws383_c00000{word-spacing:23.608800px;}
.ws11e3_c00000{word-spacing:23.623200px;}
.ws36b_c00000{word-spacing:23.630400px;}
.ws1798_c00000{word-spacing:23.637600px;}
.ws610_c00000{word-spacing:23.644800px;}
.ws382_c00000{word-spacing:23.652000px;}
.ws100f_c00000{word-spacing:23.659200px;}
.ws1186_c00000{word-spacing:23.666400px;}
.wsd2b_c00000{word-spacing:23.673600px;}
.ws611_c00000{word-spacing:23.688000px;}
.ws15ac_c00000{word-spacing:23.693292px;}
.ws116e_c00000{word-spacing:23.695200px;}
.ws1696_c00000{word-spacing:23.702400px;}
.ws535_c00000{word-spacing:23.709600px;}
.ws45e_c00000{word-spacing:23.716800px;}
.ws555_c00000{word-spacing:23.724000px;}
.ws14bc_c00000{word-spacing:23.731200px;}
.ws104a_c00000{word-spacing:23.738400px;}
.ws1440_c00000{word-spacing:23.741388px;}
.ws384_c00000{word-spacing:23.745600px;}
.ws19fc_c00000{word-spacing:23.747400px;}
.ws556_c00000{word-spacing:23.752800px;}
.ws1807_c00000{word-spacing:23.760000px;}
.ws176c_c00000{word-spacing:23.767200px;}
.ws114a_c00000{word-spacing:23.774400px;}
.ws104b_c00000{word-spacing:23.781600px;}
.ws1a8b_c00000{word-spacing:23.782680px;}
.ws939_c00000{word-spacing:23.788800px;}
.ws176d_c00000{word-spacing:23.796000px;}
.ws841_c00000{word-spacing:23.803200px;}
.ws1a3a_c00000{word-spacing:23.810400px;}
.ws188e_c00000{word-spacing:23.822208px;}
.ws10ff_c00000{word-spacing:23.824800px;}
.ws188d_c00000{word-spacing:23.835384px;}
.wsd07_c00000{word-spacing:23.844168px;}
.ws1b3d_c00000{word-spacing:23.889600px;}
.wscd2_c00000{word-spacing:23.918400px;}
.ws41d_c00000{word-spacing:23.940000px;}
.wsde2_c00000{word-spacing:23.954400px;}
.wsf9b_c00000{word-spacing:23.968800px;}
.wseeb_c00000{word-spacing:23.976000px;}
.wsd67_c00000{word-spacing:23.983200px;}
.ws1b14_c00000{word-spacing:23.990400px;}
.ws185e_c00000{word-spacing:23.997600px;}
.ws420_c00000{word-spacing:24.004800px;}
.ws4f4_c00000{word-spacing:24.012000px;}
.ws4f3_c00000{word-spacing:24.019200px;}
.wscd1_c00000{word-spacing:24.026400px;}
.ws10be_c00000{word-spacing:24.033600px;}
.ws3ca_c00000{word-spacing:24.040800px;}
.wscab_c00000{word-spacing:24.048000px;}
.wseea_c00000{word-spacing:24.055200px;}
.ws41e_c00000{word-spacing:24.062400px;}
.ws1040_c00000{word-spacing:24.069600px;}
.ws130e_c00000{word-spacing:24.076800px;}
.wsd2e_c00000{word-spacing:24.084000px;}
.ws924_c00000{word-spacing:24.091200px;}
.wsaef_c00000{word-spacing:24.098400px;}
.ws1041_c00000{word-spacing:24.105600px;}
.ws3c9_c00000{word-spacing:24.112800px;}
.ws19b5_c00000{word-spacing:24.118668px;}
.wsd2d_c00000{word-spacing:24.120000px;}
.ws1ef_c00000{word-spacing:24.127200px;}
.ws185f_c00000{word-spacing:24.134400px;}
.ws41a_c00000{word-spacing:24.141600px;}
.ws1344_c00000{word-spacing:24.148800px;}
.ws11b2_c00000{word-spacing:24.156000px;}
.ws1f0_c00000{word-spacing:24.177600px;}
.ws1b3e_c00000{word-spacing:24.184800px;}
.wse70_c00000{word-spacing:24.206400px;}
.ws1125_c00000{word-spacing:24.213600px;}
.wsf79_c00000{word-spacing:24.220800px;}
.ws1a15_c00000{word-spacing:24.242400px;}
.ws1b0e_c00000{word-spacing:24.256800px;}
.ws13cd_c00000{word-spacing:24.271200px;}
.ws100b_c00000{word-spacing:24.285600px;}
.ws1915_c00000{word-spacing:24.292800px;}
.ws1b19_c00000{word-spacing:24.314400px;}
.wsdd8_c00000{word-spacing:24.324552px;}
.ws12d3_c00000{word-spacing:24.328800px;}
.ws1909_c00000{word-spacing:24.336000px;}
.ws178d_c00000{word-spacing:24.343200px;}
.wsf7a_c00000{word-spacing:24.350400px;}
.wsaee_c00000{word-spacing:24.357600px;}
.wsf78_c00000{word-spacing:24.364800px;}
.wse86_c00000{word-spacing:24.372000px;}
.ws16db_c00000{word-spacing:24.372648px;}
.ws109b_c00000{word-spacing:24.379200px;}
.ws11b3_c00000{word-spacing:24.386400px;}
.wsdcb_c00000{word-spacing:24.393600px;}
.ws1678_c00000{word-spacing:24.400800px;}
.ws176f_c00000{word-spacing:24.415200px;}
.wsaed_c00000{word-spacing:24.422400px;}
.ws19fe_c00000{word-spacing:24.429600px;}
.ws12e5_c00000{word-spacing:24.436800px;}
.wse71_c00000{word-spacing:24.444000px;}
.ws259_c00000{word-spacing:24.451200px;}
.ws4f6_c00000{word-spacing:24.458400px;}
.wse2b_c00000{word-spacing:24.465600px;}
.ws9ba_c00000{word-spacing:24.472800px;}
.ws14cf_c00000{word-spacing:24.474420px;}
.ws1ab3_c00000{word-spacing:24.474852px;}
.ws107a_c00000{word-spacing:24.480000px;}
.ws178e_c00000{word-spacing:24.487200px;}
.ws9bb_c00000{word-spacing:24.501600px;}
.ws1b04_c00000{word-spacing:24.507360px;}
.ws1458_c00000{word-spacing:24.508800px;}
.ws14e8_c00000{word-spacing:24.516000px;}
.ws14d0_c00000{word-spacing:24.520536px;}
.ws100a_c00000{word-spacing:24.523200px;}
.ws12e6_c00000{word-spacing:24.530400px;}
.wsdca_c00000{word-spacing:24.537600px;}
.ws19b4_c00000{word-spacing:24.546888px;}
.ws964_c00000{word-spacing:24.559200px;}
.wsdc5_c00000{word-spacing:24.566400px;}
.ws1710_c00000{word-spacing:24.573600px;}
.ws1acc_c00000{word-spacing:24.616800px;}
.ws1195_c00000{word-spacing:24.652800px;}
.ws3f7_c00000{word-spacing:24.660000px;}
.ws1ab4_c00000{word-spacing:24.661224px;}
.ws18a6_c00000{word-spacing:24.667200px;}
.ws415_c00000{word-spacing:24.688800px;}
.ws15ab_c00000{word-spacing:24.691284px;}
.ws1493_c00000{word-spacing:24.703200px;}
.wsf6b_c00000{word-spacing:24.710400px;}
.ws3e9_c00000{word-spacing:24.732000px;}
.ws1630_c00000{word-spacing:24.739200px;}
.ws1acb_c00000{word-spacing:24.746400px;}
.ws3f6_c00000{word-spacing:24.753600px;}
.ws191e_c00000{word-spacing:24.775200px;}
.ws13c3_c00000{word-spacing:24.782400px;}
.ws3ea_c00000{word-spacing:24.789600px;}
.ws5b0_c00000{word-spacing:24.796800px;}
.ws414_c00000{word-spacing:24.804000px;}
.ws71e_c00000{word-spacing:24.811200px;}
.ws71d_c00000{word-spacing:24.818400px;}
.ws3f8_c00000{word-spacing:24.825600px;}
.wsf6a_c00000{word-spacing:24.832800px;}
.wsd2f_c00000{word-spacing:24.840000px;}
.ws1258_c00000{word-spacing:24.847200px;}
.ws13c4_c00000{word-spacing:24.854400px;}
.wsdc7_c00000{word-spacing:24.861600px;}
.ws74c_c00000{word-spacing:24.868800px;}
.ws15f3_c00000{word-spacing:24.876288px;}
.wsdc6_c00000{word-spacing:24.883200px;}
.ws170f_c00000{word-spacing:24.890400px;}
.wsd95_c00000{word-spacing:24.897600px;}
.ws1436_c00000{word-spacing:24.904800px;}
.ws107d_c00000{word-spacing:24.915816px;}
.ws15f4_c00000{word-spacing:24.922404px;}
.ws13f7_c00000{word-spacing:24.967836px;}
.ws1259_c00000{word-spacing:24.976800px;}
.ws13f8_c00000{word-spacing:25.003908px;}
.ws1b29_c00000{word-spacing:25.020000px;}
.ws1903_c00000{word-spacing:25.033968px;}
.ws1733_c00000{word-spacing:25.034400px;}
.ws1905_c00000{word-spacing:25.039980px;}
.ws1aaf_c00000{word-spacing:25.041600px;}
.ws1b2a_c00000{word-spacing:25.048800px;}
.wsfba_c00000{word-spacing:25.063200px;}
.ws1216_c00000{word-spacing:25.077600px;}
.wsfb9_c00000{word-spacing:25.084800px;}
.wsbec_c00000{word-spacing:25.092000px;}
.ws10f9_c00000{word-spacing:25.099200px;}
.ws1904_c00000{word-spacing:25.106112px;}
.ws665_c00000{word-spacing:25.106400px;}
.wsaf8_c00000{word-spacing:25.120800px;}
.ws1217_c00000{word-spacing:25.128000px;}
.ws664_c00000{word-spacing:25.135200px;}
.ws1a9e_c00000{word-spacing:25.142400px;}
.ws15c4_c00000{word-spacing:25.149600px;}
.ws63c_c00000{word-spacing:25.156800px;}
.wsaf9_c00000{word-spacing:25.164000px;}
.ws74b_c00000{word-spacing:25.171200px;}
.ws3d6_c00000{word-spacing:25.178400px;}
.ws10c9_c00000{word-spacing:25.185600px;}
.ws125e_c00000{word-spacing:25.192800px;}
.wsbed_c00000{word-spacing:25.200000px;}
.wscf3_c00000{word-spacing:25.207200px;}
.ws116a_c00000{word-spacing:25.214400px;}
.ws63d_c00000{word-spacing:25.221600px;}
.ws3d7_c00000{word-spacing:25.228800px;}
.ws1a03_c00000{word-spacing:25.232364px;}
.ws1169_c00000{word-spacing:25.236000px;}
.ws19ea_c00000{word-spacing:25.238628px;}
.ws18c5_c00000{word-spacing:25.243200px;}
.ws125f_c00000{word-spacing:25.250400px;}
.ws169e_c00000{word-spacing:25.251804px;}
.ws11b9_c00000{word-spacing:25.351200px;}
.ws1a93_c00000{word-spacing:25.358400px;}
.ws12be_c00000{word-spacing:25.401600px;}
.ws14b9_c00000{word-spacing:25.408800px;}
.ws136f_c00000{word-spacing:25.416000px;}
.ws1707_c00000{word-spacing:25.437600px;}
.ws632_c00000{word-spacing:25.452000px;}
.ws9ab_c00000{word-spacing:25.459200px;}
.ws8ad_c00000{word-spacing:25.466400px;}
.ws125d_c00000{word-spacing:25.473600px;}
.ws11ff_c00000{word-spacing:25.480800px;}
.ws1577_c00000{word-spacing:25.488000px;}
.ws1578_c00000{word-spacing:25.502400px;}
.ws11f7_c00000{word-spacing:25.509600px;}
.ws1657_c00000{word-spacing:25.516800px;}
.ws81b_c00000{word-spacing:25.524000px;}
.ws72e_c00000{word-spacing:25.531200px;}
.ws1370_c00000{word-spacing:25.538400px;}
.ws15bb_c00000{word-spacing:25.545600px;}
.ws633_c00000{word-spacing:25.552800px;}
.wsf03_c00000{word-spacing:25.557012px;}
.ws1371_c00000{word-spacing:25.560000px;}
.ws72d_c00000{word-spacing:25.567200px;}
.ws1200_c00000{word-spacing:25.574400px;}
.ws1995_c00000{word-spacing:25.581600px;}
.ws1a02_c00000{word-spacing:25.587072px;}
.ws1b4e_c00000{word-spacing:25.594380px;}
.ws1553_c00000{word-spacing:25.596000px;}
.ws1a97_c00000{word-spacing:25.603200px;}
.ws17c2_c00000{word-spacing:25.610400px;}
.ws1971_c00000{word-spacing:25.614144px;}
.ws16c1_c00000{word-spacing:25.632000px;}
.ws1095_c00000{word-spacing:25.639200px;}
.ws1a90_c00000{word-spacing:25.640496px;}
.wsf02_c00000{word-spacing:25.647192px;}
.ws1b2f_c00000{word-spacing:25.682400px;}
.ws199b_c00000{word-spacing:25.711200px;}
.wsa5c_c00000{word-spacing:25.732800px;}
.ws6_c00000{word-spacing:25.734060px;}
.ws1810_c00000{word-spacing:25.737372px;}
.ws1a51_c00000{word-spacing:25.761600px;}
.ws1a52_c00000{word-spacing:25.776000px;}
.ws175f_c00000{word-spacing:25.783200px;}
.ws180f_c00000{word-spacing:25.791480px;}
.ws15bc_c00000{word-spacing:25.797492px;}
.ws179e_c00000{word-spacing:25.804800px;}
.ws179f_c00000{word-spacing:25.812000px;}
.ws425_c00000{word-spacing:25.819200px;}
.ws898_c00000{word-spacing:25.833600px;}
.ws465_c00000{word-spacing:25.848000px;}
.ws16e3_c00000{word-spacing:25.869600px;}
.ws255_c00000{word-spacing:25.876800px;}
.ws1843_c00000{word-spacing:25.884000px;}
.ws6cc_c00000{word-spacing:25.891200px;}
.ws112c_c00000{word-spacing:25.893684px;}
.ws2d4_c00000{word-spacing:25.898400px;}
.ws254_c00000{word-spacing:25.905600px;}
.ws2d5_c00000{word-spacing:25.912800px;}
.ws1096_c00000{word-spacing:25.920000px;}
.wsbdf_c00000{word-spacing:25.923744px;}
.ws1159_c00000{word-spacing:25.927200px;}
.ws466_c00000{word-spacing:25.934400px;}
.ws175e_c00000{word-spacing:25.941600px;}
.ws9ad_c00000{word-spacing:25.948800px;}
.ws899_c00000{word-spacing:25.977600px;}
.ws140a_c00000{word-spacing:26.001900px;}
.ws112a_c00000{word-spacing:26.025948px;}
.ws7_c00000{word-spacing:26.030772px;}
.ws1b2b_c00000{word-spacing:26.031960px;}
.wsbcb_c00000{word-spacing:26.071200px;}
.ws1922_c00000{word-spacing:26.121600px;}
.ws140b_c00000{word-spacing:26.122140px;}
.ws1675_c00000{word-spacing:26.143200px;}
.ws19ab_c00000{word-spacing:26.150400px;}
.ws187e_c00000{word-spacing:26.157600px;}
.wsff2_c00000{word-spacing:26.164800px;}
.ws13f4_c00000{word-spacing:26.172000px;}
.ws119e_c00000{word-spacing:26.179200px;}
.ws1676_c00000{word-spacing:26.186400px;}
.ws1923_c00000{word-spacing:26.193600px;}
.wsbcd_c00000{word-spacing:26.200800px;}
.wsbb2_c00000{word-spacing:26.215200px;}
.ws26a_c00000{word-spacing:26.222400px;}
.wsd46_c00000{word-spacing:26.236800px;}
.wsf6e_c00000{word-spacing:26.244000px;}
.wsf6f_c00000{word-spacing:26.251200px;}
.wsf6c_c00000{word-spacing:26.258400px;}
.ws921_c00000{word-spacing:26.265600px;}
.ws13f5_c00000{word-spacing:26.272800px;}
.wsd35_c00000{word-spacing:26.280000px;}
.wsbb3_c00000{word-spacing:26.287200px;}
.wsd45_c00000{word-spacing:26.301600px;}
.wsbcc_c00000{word-spacing:26.308800px;}
.wsd34_c00000{word-spacing:26.316000px;}
.ws19e9_c00000{word-spacing:26.358588px;}
.wsb73_c00000{word-spacing:26.371764px;}
.ws199d_c00000{word-spacing:26.395200px;}
.ws11ac_c00000{word-spacing:26.409600px;}
.wsff3_c00000{word-spacing:26.416800px;}
.ws722_c00000{word-spacing:26.424000px;}
.ws121a_c00000{word-spacing:26.431200px;}
.ws703_c00000{word-spacing:26.452800px;}
.ws723_c00000{word-spacing:26.510400px;}
.wsa34_c00000{word-spacing:26.517600px;}
.ws199e_c00000{word-spacing:26.524800px;}
.wscc7_c00000{word-spacing:26.539200px;}
.ws1a35_c00000{word-spacing:26.546400px;}
.wscc2_c00000{word-spacing:26.553600px;}
.ws140c_c00000{word-spacing:26.555004px;}
.ws1892_c00000{word-spacing:26.560800px;}
.ws702_c00000{word-spacing:26.567028px;}
.ws102_c00000{word-spacing:26.568000px;}
.ws1a18_c00000{word-spacing:26.575200px;}
.ws1a50_c00000{word-spacing:26.582400px;}
.wscc3_c00000{word-spacing:26.596800px;}
.ws1768_c00000{word-spacing:26.604000px;}
.wsa33_c00000{word-spacing:26.611200px;}
.ws112b_c00000{word-spacing:26.615124px;}
.ws17ad_c00000{word-spacing:26.618400px;}
.ws11ab_c00000{word-spacing:26.625600px;}
.ws1a4f_c00000{word-spacing:26.632800px;}
.wsdd2_c00000{word-spacing:26.640000px;}
.ws1891_c00000{word-spacing:26.654400px;}
.ws101_c00000{word-spacing:26.661600px;}
.ws19ef_c00000{word-spacing:26.674812px;}
.ws1a2e_c00000{word-spacing:26.676000px;}
.ws103_c00000{word-spacing:26.683200px;}
.ws1a63_c00000{word-spacing:26.694576px;}
.ws1919_c00000{word-spacing:26.769600px;}
.wsa19_c00000{word-spacing:26.791200px;}
.ws130f_c00000{word-spacing:26.798400px;}
.ws1769_c00000{word-spacing:26.827200px;}
.ws111e_c00000{word-spacing:26.831556px;}
.wsa1a_c00000{word-spacing:26.834400px;}
.ws123a_c00000{word-spacing:26.841600px;}
.ws17c0_c00000{word-spacing:26.848800px;}
.wsd23_c00000{word-spacing:26.856000px;}
.ws100d_c00000{word-spacing:26.863200px;}
.ws15e3_c00000{word-spacing:26.870400px;}
.ws15b3_c00000{word-spacing:26.877600px;}
.ws1a0c_c00000{word-spacing:26.892000px;}
.ws1767_c00000{word-spacing:26.899200px;}
.ws1310_c00000{word-spacing:26.913600px;}
.wsab1_c00000{word-spacing:26.920800px;}
.wsc04_c00000{word-spacing:26.928000px;}
.ws136b_c00000{word-spacing:26.935200px;}
.ws15b4_c00000{word-spacing:26.949600px;}
.ws15e4_c00000{word-spacing:26.956800px;}
.ws576_c00000{word-spacing:26.964000px;}
.wsfc_c00000{word-spacing:26.971200px;}
.ws19c5_c00000{word-spacing:26.978400px;}
.wsfb_c00000{word-spacing:26.985600px;}
.ws1555_c00000{word-spacing:26.992800px;}
.wsd22_c00000{word-spacing:27.000000px;}
.ws1842_c00000{word-spacing:27.007200px;}
.wsbf9_c00000{word-spacing:27.014400px;}
.ws662_c00000{word-spacing:27.036000px;}
.ws18ba_c00000{word-spacing:27.043200px;}
.wsab0_c00000{word-spacing:27.050400px;}
.ws577_c00000{word-spacing:27.057600px;}
.ws15fb_c00000{word-spacing:27.070092px;}
.ws15fc_c00000{word-spacing:27.103032px;}
.ws1380_c00000{word-spacing:27.144180px;}
.ws1694_c00000{word-spacing:27.165600px;}
.ws6ca_c00000{word-spacing:27.208800px;}
.ws1381_c00000{word-spacing:27.210312px;}
.ws1202_c00000{word-spacing:27.216000px;}
.ws175c_c00000{word-spacing:27.230400px;}
.ws184c_c00000{word-spacing:27.237600px;}
.ws11b8_c00000{word-spacing:27.259200px;}
.ws1703_c00000{word-spacing:27.266400px;}
.wsa25_c00000{word-spacing:27.273600px;}
.ws15da_c00000{word-spacing:27.288000px;}
.wsa26_c00000{word-spacing:27.295200px;}
.ws1753_c00000{word-spacing:27.309600px;}
.ws30b_c00000{word-spacing:27.324540px;}
.ws6c9_c00000{word-spacing:27.331200px;}
.ws8b1_c00000{word-spacing:27.338400px;}
.ws459_c00000{word-spacing:27.345600px;}
.ws458_c00000{word-spacing:27.352800px;}
.ws29b_c00000{word-spacing:27.360000px;}
.ws184d_c00000{word-spacing:27.374400px;}
.ws1695_c00000{word-spacing:27.381600px;}
.ws45a_c00000{word-spacing:27.388800px;}
.wsd2a_c00000{word-spacing:27.396000px;}
.ws1201_c00000{word-spacing:27.410400px;}
.ws8b0_c00000{word-spacing:27.417600px;}
.ws150a_c00000{word-spacing:27.460800px;}
.ws11f8_c00000{word-spacing:27.482400px;}
.wsbfb_c00000{word-spacing:27.511200px;}
.wsd48_c00000{word-spacing:27.532800px;}
.wsf9a_c00000{word-spacing:27.561600px;}
.wsd8b_c00000{word-spacing:27.568800px;}
.ws16d2_c00000{word-spacing:27.583200px;}
.ws875_c00000{word-spacing:27.619200px;}
.wsbfa_c00000{word-spacing:27.633600px;}
.wsd8a_c00000{word-spacing:27.648000px;}
.ws1a6e_c00000{word-spacing:27.662400px;}
.wsd44_c00000{word-spacing:27.669600px;}
.wse56_c00000{word-spacing:27.676800px;}
.ws1795_c00000{word-spacing:27.684000px;}
.ws77e_c00000{word-spacing:27.698400px;}
.wsd93_c00000{word-spacing:27.705600px;}
.wsf99_c00000{word-spacing:27.712800px;}
.ws1796_c00000{word-spacing:27.720000px;}
.ws1199_c00000{word-spacing:27.733356px;}
.wsd49_c00000{word-spacing:27.734400px;}
.ws11f9_c00000{word-spacing:27.741600px;}
.ws110c_c00000{word-spacing:27.748800px;}
.wse52_c00000{word-spacing:27.756000px;}
.wsd94_c00000{word-spacing:27.777600px;}
.ws10a5_c00000{word-spacing:27.813600px;}
.ws14fb_c00000{word-spacing:27.849600px;}
.ws1392_c00000{word-spacing:27.864000px;}
.ws1297_c00000{word-spacing:27.892800px;}
.ws1391_c00000{word-spacing:27.921600px;}
.ws3d2_c00000{word-spacing:27.943200px;}
.ws2e2_c00000{word-spacing:27.964800px;}
.ws551_c00000{word-spacing:27.979200px;}
.ws9ca_c00000{word-spacing:27.986400px;}
.ws3d3_c00000{word-spacing:27.993600px;}
.ws1a01_c00000{word-spacing:28.000800px;}
.wsd08_c00000{word-spacing:28.008000px;}
.ws550_c00000{word-spacing:28.015200px;}
.ws13ae_c00000{word-spacing:28.029600px;}
.ws1908_c00000{word-spacing:28.036800px;}
.ws14fa_c00000{word-spacing:28.044000px;}
.ws1296_c00000{word-spacing:28.051200px;}
.ws138d_c00000{word-spacing:28.058400px;}
.ws7b4_c00000{word-spacing:28.065600px;}
.ws10a4_c00000{word-spacing:28.072800px;}
.ws2e3_c00000{word-spacing:28.080000px;}
.ws9cb_c00000{word-spacing:28.087200px;}
.ws775_c00000{word-spacing:28.094400px;}
.ws776_c00000{word-spacing:28.108800px;}
.ws11a2_c00000{word-spacing:28.152000px;}
.ws10d1_c00000{word-spacing:28.252800px;}
.ws164c_c00000{word-spacing:28.262412px;}
.ws4c1_c00000{word-spacing:28.296000px;}
.ws44a_c00000{word-spacing:28.303200px;}
.ws10d0_c00000{word-spacing:28.310400px;}
.wse76_c00000{word-spacing:28.317600px;}
.wsefa_c00000{word-spacing:28.324800px;}
.wsee4_c00000{word-spacing:28.339200px;}
.ws4c0_c00000{word-spacing:28.375200px;}
.ws1724_c00000{word-spacing:28.382400px;}
.ws16cb_c00000{word-spacing:28.389600px;}
.wsbb4_c00000{word-spacing:28.404000px;}
.ws449_c00000{word-spacing:28.411200px;}
.wsee3_c00000{word-spacing:28.418400px;}
.ws834_c00000{word-spacing:28.425600px;}
.ws1052_c00000{word-spacing:28.432800px;}
.wsefb_c00000{word-spacing:28.440000px;}
.wsb3d_c00000{word-spacing:28.447200px;}
.ws192e_c00000{word-spacing:28.453572px;}
.wse75_c00000{word-spacing:28.468800px;}
.ws1049_c00000{word-spacing:28.497600px;}
.ws15cd_c00000{word-spacing:28.526400px;}
.ws15cc_c00000{word-spacing:28.540800px;}
.ws16ca_c00000{word-spacing:28.562400px;}
.ws184a_c00000{word-spacing:28.677600px;}
.ws1a6c_c00000{word-spacing:28.684800px;}
.ws11a5_c00000{word-spacing:28.692000px;}
.ws1299_c00000{word-spacing:28.699200px;}
.ws16ea_c00000{word-spacing:28.713600px;}
.ws12c7_c00000{word-spacing:28.735200px;}
.ws1a6b_c00000{word-spacing:28.749600px;}
.ws102d_c00000{word-spacing:28.756800px;}
.ws1205_c00000{word-spacing:28.764000px;}
.ws368_c00000{word-spacing:28.771200px;}
.wsc9c_c00000{word-spacing:28.778400px;}
.ws1204_c00000{word-spacing:28.785600px;}
.ws18f7_c00000{word-spacing:28.791468px;}
.ws148e_c00000{word-spacing:28.792800px;}
.ws148d_c00000{word-spacing:28.807200px;}
.ws102e_c00000{word-spacing:28.836000px;}
.ws17e7_c00000{word-spacing:28.842264px;}
.ws11a6_c00000{word-spacing:28.857600px;}
.ws17e6_c00000{word-spacing:28.875636px;}
.ws1a6d_c00000{word-spacing:28.893600px;}
.ws17e5_c00000{word-spacing:28.899684px;}
.ws18d0_c00000{word-spacing:28.905696px;}
.wsf40_c00000{word-spacing:28.936800px;}
.ws2aa_c00000{word-spacing:28.972800px;}
.ws177d_c00000{word-spacing:28.989864px;}
.ws1b32_c00000{word-spacing:28.994400px;}
.ws18f8_c00000{word-spacing:28.995876px;}
.ws276_c00000{word-spacing:29.001600px;}
.ws999_c00000{word-spacing:29.016000px;}
.ws3c8_c00000{word-spacing:29.044800px;}
.ws1814_c00000{word-spacing:29.066400px;}
.wsd10_c00000{word-spacing:29.073600px;}
.ws9b_c00000{word-spacing:29.080800px;}
.ws99a_c00000{word-spacing:29.088000px;}
.ws1813_c00000{word-spacing:29.095200px;}
.wsa37_c00000{word-spacing:29.102400px;}
.ws173d_c00000{word-spacing:29.109600px;}
.ws3c7_c00000{word-spacing:29.116800px;}
.ws9c_c00000{word-spacing:29.124000px;}
.ws11b1_c00000{word-spacing:29.131200px;}
.wsca4_c00000{word-spacing:29.138400px;}
.ws1ac4_c00000{word-spacing:29.145600px;}
.wsb66_c00000{word-spacing:29.152800px;}
.ws16d8_c00000{word-spacing:29.160000px;}
.ws275_c00000{word-spacing:29.174400px;}
.ws16bf_c00000{word-spacing:29.191428px;}
.ws2ab_c00000{word-spacing:29.196000px;}
.wsc30_c00000{word-spacing:29.210400px;}
.ws1939_c00000{word-spacing:29.239200px;}
.ws671_c00000{word-spacing:29.361600px;}
.ws1240_c00000{word-spacing:29.368800px;}
.ws1931_c00000{word-spacing:29.383200px;}
.ws159a_c00000{word-spacing:29.390400px;}
.ws1321_c00000{word-spacing:29.398680px;}
.ws661_c00000{word-spacing:29.404800px;}
.ws1938_c00000{word-spacing:29.412000px;}
.ws1599_c00000{word-spacing:29.426400px;}
.wsc9e_c00000{word-spacing:29.433600px;}
.ws177c_c00000{word-spacing:29.440764px;}
.ws123f_c00000{word-spacing:29.440800px;}
.wsb25_c00000{word-spacing:29.455200px;}
.ws16c8_c00000{word-spacing:29.462400px;}
.ws570_c00000{word-spacing:29.476800px;}
.ws571_c00000{word-spacing:29.484000px;}
.ws1932_c00000{word-spacing:29.491200px;}
.ws18c6_c00000{word-spacing:29.498400px;}
.ws186c_c00000{word-spacing:29.505600px;}
.wsc7a_c00000{word-spacing:29.518920px;}
.ws670_c00000{word-spacing:29.520000px;}
.wsc79_c00000{word-spacing:29.524932px;}
.wsc31_c00000{word-spacing:29.527200px;}
.ws1b5a_c00000{word-spacing:29.570400px;}
.wsabf_c00000{word-spacing:29.606400px;}
.ws10dc_c00000{word-spacing:29.649600px;}
.ws17cf_c00000{word-spacing:29.664000px;}
.ws1430_c00000{word-spacing:29.678400px;}
.ws132a_c00000{word-spacing:29.692800px;}
.ws1236_c00000{word-spacing:29.764800px;}
.ws117d_c00000{word-spacing:29.786400px;}
.ws1787_c00000{word-spacing:29.808000px;}
.ws14fd_c00000{word-spacing:29.822400px;}
.wsbe7_c00000{word-spacing:29.829600px;}
.ws142e_c00000{word-spacing:29.836800px;}
.ws1160_c00000{word-spacing:29.844000px;}
.ws1aba_c00000{word-spacing:29.850228px;}
.ws788_c00000{word-spacing:29.851200px;}
.wsabe_c00000{word-spacing:29.858400px;}
.wsac0_c00000{word-spacing:29.865600px;}
.ws142f_c00000{word-spacing:29.872800px;}
.wsfa3_c00000{word-spacing:29.880000px;}
.ws1237_c00000{word-spacing:29.894400px;}
.wsb26_c00000{word-spacing:29.908800px;}
.ws1a64_c00000{word-spacing:29.949048px;}
.ws1161_c00000{word-spacing:29.959200px;}
.wsca2_c00000{word-spacing:30.052800px;}
.wsa69_c00000{word-spacing:30.060000px;}
.ws1223_c00000{word-spacing:30.074400px;}
.ws18b9_c00000{word-spacing:30.081600px;}
.ws1222_c00000{word-spacing:30.088800px;}
.ws1476_c00000{word-spacing:30.103200px;}
.ws1475_c00000{word-spacing:30.110400px;}
.wsa6a_c00000{word-spacing:30.117600px;}
.ws1412_c00000{word-spacing:30.139200px;}
.ws8db_c00000{word-spacing:30.160800px;}
.ws149e_c00000{word-spacing:30.168000px;}
.ws754_c00000{word-spacing:30.182400px;}
.ws1413_c00000{word-spacing:30.189600px;}
.ws8d8_c00000{word-spacing:30.196800px;}
.wscca_c00000{word-spacing:30.204000px;}
.ws41c_c00000{word-spacing:30.211200px;}
.ws1a96_c00000{word-spacing:30.218400px;}
.ws1b52_c00000{word-spacing:30.225600px;}
.ws51f_c00000{word-spacing:30.232800px;}
.wsa6b_c00000{word-spacing:30.247200px;}
.ws521_c00000{word-spacing:30.254400px;}
.wsa59_c00000{word-spacing:30.258684px;}
.ws520_c00000{word-spacing:30.261600px;}
.wsa58_c00000{word-spacing:30.304800px;}
.ws753_c00000{word-spacing:30.312000px;}
.wsb3b_c00000{word-spacing:30.412800px;}
.ws491_c00000{word-spacing:30.448800px;}
.ws566_c00000{word-spacing:30.463200px;}
.ws490_c00000{word-spacing:30.484800px;}
.wse8c_c00000{word-spacing:30.499200px;}
.wsab8_c00000{word-spacing:30.506400px;}
.ws58b_c00000{word-spacing:30.528000px;}
.ws1123_c00000{word-spacing:30.542400px;}
.wsab7_c00000{word-spacing:30.549600px;}
.wscb6_c00000{word-spacing:30.564000px;}
.ws1b33_c00000{word-spacing:30.571200px;}
.ws1b24_c00000{word-spacing:30.578400px;}
.ws1a89_c00000{word-spacing:30.585600px;}
.wse40_c00000{word-spacing:30.600000px;}
.ws1a82_c00000{word-spacing:30.607200px;}
.ws1124_c00000{word-spacing:30.628800px;}
.wsab9_c00000{word-spacing:30.657600px;}
.wsd8d_c00000{word-spacing:30.736800px;}
.ws165d_c00000{word-spacing:30.751200px;}
.ws118d_c00000{word-spacing:30.794400px;}
.wsb27_c00000{word-spacing:30.808800px;}
.ws1928_c00000{word-spacing:30.859200px;}
.ws19b7_c00000{word-spacing:30.866400px;}
.ws1b11_c00000{word-spacing:30.873600px;}
.ws109d_c00000{word-spacing:30.888000px;}
.ws1b10_c00000{word-spacing:30.895200px;}
.wse49_c00000{word-spacing:30.909600px;}
.wsd8c_c00000{word-spacing:30.924000px;}
.ws109c_c00000{word-spacing:30.931200px;}
.wsde1_c00000{word-spacing:30.938400px;}
.ws165e_c00000{word-spacing:30.967200px;}
.wsb28_c00000{word-spacing:30.981600px;}
.ws1759_c00000{word-spacing:30.983364px;}
.wse2e_c00000{word-spacing:30.988800px;}
.ws1876_c00000{word-spacing:30.996000px;}
.ws1758_c00000{word-spacing:31.003128px;}
.ws118e_c00000{word-spacing:31.017600px;}
.wsbb7_c00000{word-spacing:31.053600px;}
.wse48_c00000{word-spacing:31.060800px;}
.ws134b_c00000{word-spacing:31.197600px;}
.wsae2_c00000{word-spacing:31.212000px;}
.wsbb6_c00000{word-spacing:31.219200px;}
.ws1ab0_c00000{word-spacing:31.226400px;}
.ws1848_c00000{word-spacing:31.233600px;}
.wsc54_c00000{word-spacing:31.255200px;}
.ws102b_c00000{word-spacing:31.269600px;}
.ws300_c00000{word-spacing:31.284000px;}
.ws84f_c00000{word-spacing:31.291200px;}
.wscb7_c00000{word-spacing:31.298400px;}
.ws1111_c00000{word-spacing:31.305600px;}
.ws301_c00000{word-spacing:31.312800px;}
.ws850_c00000{word-spacing:31.320000px;}
.ws1709_c00000{word-spacing:31.334400px;}
.ws102a_c00000{word-spacing:31.348800px;}
.ws1112_c00000{word-spacing:31.363200px;}
.ws134c_c00000{word-spacing:31.399200px;}
.ws18a7_c00000{word-spacing:31.420800px;}
.ws113b_c00000{word-spacing:31.435200px;}
.ws1aef_c00000{word-spacing:31.449600px;}
.ws19e6_c00000{word-spacing:31.478400px;}
.ws10f8_c00000{word-spacing:31.514400px;}
.ws1933_c00000{word-spacing:31.521600px;}
.ws18a9_c00000{word-spacing:31.536000px;}
.wsfbb_c00000{word-spacing:31.579200px;}
.ws1457_c00000{word-spacing:31.600800px;}
.ws1aee_c00000{word-spacing:31.608000px;}
.ws19e5_c00000{word-spacing:31.629600px;}
.wsee6_c00000{word-spacing:31.644000px;}
.wsdd3_c00000{word-spacing:31.651200px;}
.wsa89_c00000{word-spacing:31.658400px;}
.ws18a8_c00000{word-spacing:31.672800px;}
.ws1934_c00000{word-spacing:31.680000px;}
.ws1108_c00000{word-spacing:31.683240px;}
.ws1a47_c00000{word-spacing:31.687200px;}
.ws7ae_c00000{word-spacing:31.716000px;}
.ws1a46_c00000{word-spacing:31.723200px;}
.ws1ab8_c00000{word-spacing:31.747572px;}
.ws1ab9_c00000{word-spacing:31.787100px;}
.wsd0d_c00000{word-spacing:31.824000px;}
.ws599_c00000{word-spacing:31.852800px;}
.ws440_c00000{word-spacing:31.924800px;}
.ws597_c00000{word-spacing:31.946400px;}
.wsd33_c00000{word-spacing:31.960800px;}
.ws43f_c00000{word-spacing:31.982400px;}
.wscb2_c00000{word-spacing:32.011200px;}
.ws598_c00000{word-spacing:32.040000px;}
.wsd0e_c00000{word-spacing:32.047200px;}
.ws19fa_c00000{word-spacing:32.054400px;}
.wscb1_c00000{word-spacing:32.068800px;}
.wsb75_c00000{word-spacing:32.083560px;}
.ws1305_c00000{word-spacing:32.086044px;}
.ws183e_c00000{word-spacing:32.090400px;}
.ws183d_c00000{word-spacing:32.097600px;}
.wsb74_c00000{word-spacing:32.109912px;}
.ws16fd_c00000{word-spacing:32.148000px;}
.ws19dd_c00000{word-spacing:32.191200px;}
.ws16fc_c00000{word-spacing:32.299200px;}
.ws1b5c_c00000{word-spacing:32.328000px;}
.ws118b_c00000{word-spacing:32.335200px;}
.ws1b5b_c00000{word-spacing:32.356800px;}
.wsd55_c00000{word-spacing:32.364000px;}
.ws19dc_c00000{word-spacing:32.371200px;}
.wse6a_c00000{word-spacing:32.378400px;}
.wsd56_c00000{word-spacing:32.392800px;}
.wsf8a_c00000{word-spacing:32.407200px;}
.ws1977_c00000{word-spacing:32.580000px;}
.ws13a2_c00000{word-spacing:32.597064px;}
.ws6bc_c00000{word-spacing:32.616000px;}
.wsefc_c00000{word-spacing:32.630400px;}
.wsea7_c00000{word-spacing:32.652000px;}
.ws41f_c00000{word-spacing:32.659200px;}
.wsefd_c00000{word-spacing:32.666400px;}
.ws117b_c00000{word-spacing:32.709600px;}
.ws6bb_c00000{word-spacing:32.724000px;}
.ws1ae2_c00000{word-spacing:32.738400px;}
.wsea8_c00000{word-spacing:32.745600px;}
.ws1388_c00000{word-spacing:32.752800px;}
.ws13a0_c00000{word-spacing:32.765400px;}
.ws1191_c00000{word-spacing:32.774400px;}
.wsea9_c00000{word-spacing:32.781600px;}
.ws1192_c00000{word-spacing:32.788800px;}
.ws3f5_c00000{word-spacing:32.904000px;}
.ws13a1_c00000{word-spacing:32.957784px;}
.ws195c_c00000{word-spacing:33.012000px;}
.ws3f4_c00000{word-spacing:33.019200px;}
.ws1232_c00000{word-spacing:33.033600px;}
.ws1233_c00000{word-spacing:33.055200px;}
.ws16d4_c00000{word-spacing:33.076800px;}
.ws1051_c00000{word-spacing:33.084000px;}
.ws176e_c00000{word-spacing:33.112800px;}
.ws15ba_c00000{word-spacing:33.124464px;}
.ws3f3_c00000{word-spacing:33.127200px;}
.ws15b9_c00000{word-spacing:33.131052px;}
.ws16d3_c00000{word-spacing:33.134400px;}
.ws1a62_c00000{word-spacing:33.157404px;}
.ws1aae_c00000{word-spacing:33.278400px;}
.ws1817_c00000{word-spacing:33.292800px;}
.ws1aad_c00000{word-spacing:33.328800px;}
.ws162f_c00000{word-spacing:33.350400px;}
.ws1671_c00000{word-spacing:33.386400px;}
.ws1672_c00000{word-spacing:33.400800px;}
.wsc83_c00000{word-spacing:33.415200px;}
.ws998_c00000{word-spacing:33.436800px;}
.ws16cf_c00000{word-spacing:33.444000px;}
.ws7c6_c00000{word-spacing:33.451200px;}
.ws66e_c00000{word-spacing:33.458400px;}
.wsc84_c00000{word-spacing:33.465600px;}
.ws1a45_c00000{word-spacing:33.472800px;}
.ws18ce_c00000{word-spacing:33.480828px;}
.wsee2_c00000{word-spacing:33.487200px;}
.ws1a44_c00000{word-spacing:33.494400px;}
.ws66f_c00000{word-spacing:33.508800px;}
.wscaf_c00000{word-spacing:33.530400px;}
.ws192b_c00000{word-spacing:33.552684px;}
.wsf38_c00000{word-spacing:33.652800px;}
.ws17f3_c00000{word-spacing:33.696000px;}
.ws16cd_c00000{word-spacing:33.732000px;}
.wsf37_c00000{word-spacing:33.739200px;}
.ws167b_c00000{word-spacing:33.775200px;}
.ws464_c00000{word-spacing:33.782400px;}
.ws4dc_c00000{word-spacing:33.804000px;}
.ws10ca_c00000{word-spacing:33.811200px;}
.ws991_c00000{word-spacing:33.825600px;}
.ws990_c00000{word-spacing:33.832800px;}
.ws1a53_c00000{word-spacing:33.840000px;}
.ws10cb_c00000{word-spacing:33.854400px;}
.ws16ce_c00000{word-spacing:33.876000px;}
.ws4dd_c00000{word-spacing:33.904800px;}
.ws17f2_c00000{word-spacing:33.926400px;}
.ws1519_c00000{word-spacing:34.048800px;}
.ws11ca_c00000{word-spacing:34.092000px;}
.ws1821_c00000{word-spacing:34.099200px;}
.ws190e_c00000{word-spacing:34.156800px;}
.wse6_c00000{word-spacing:34.164000px;}
.ws289_c00000{word-spacing:34.171200px;}
.wsd91_c00000{word-spacing:34.178400px;}
.ws1518_c00000{word-spacing:34.185600px;}
.wse7_c00000{word-spacing:34.192800px;}
.ws11cb_c00000{word-spacing:34.200000px;}
.ws1a14_c00000{word-spacing:34.207200px;}
.ws151a_c00000{word-spacing:34.257600px;}
.ws1822_c00000{word-spacing:34.272000px;}
.ws11d4_c00000{word-spacing:34.387200px;}
.ws18cf_c00000{word-spacing:34.466796px;}
.ws11d5_c00000{word-spacing:34.473600px;}
.ws377_c00000{word-spacing:34.495200px;}
.ws1679_c00000{word-spacing:34.538400px;}
.ws1926_c00000{word-spacing:34.545600px;}
.ws189b_c00000{word-spacing:34.552800px;}
.wsd7f_c00000{word-spacing:34.560000px;}
.wsf53_c00000{word-spacing:34.567200px;}
.ws379_c00000{word-spacing:34.588800px;}
.ws130a_c00000{word-spacing:34.596000px;}
.ws378_c00000{word-spacing:34.603200px;}
.wsf54_c00000{word-spacing:34.610400px;}
.wsddc_c00000{word-spacing:34.689600px;}
.wsddd_c00000{word-spacing:34.718400px;}
.ws1cd_c00000{word-spacing:34.740000px;}
.ws228_c00000{word-spacing:34.761600px;}
.wsd7e_c00000{word-spacing:34.833600px;}
.ws8f7_c00000{word-spacing:34.848000px;}
.wscf2_c00000{word-spacing:34.869600px;}
.ws130b_c00000{word-spacing:34.884000px;}
.ws227_c00000{word-spacing:34.891200px;}
.ws8f6_c00000{word-spacing:34.912800px;}
.ws17ae_c00000{word-spacing:34.920000px;}
.ws1ce_c00000{word-spacing:34.927200px;}
.wsd7d_c00000{word-spacing:34.948800px;}
.ws15a3_c00000{word-spacing:35.078400px;}
.ws10f1_c00000{word-spacing:35.098056px;}
.ws103a_c00000{word-spacing:35.107200px;}
.ws1339_c00000{word-spacing:35.143200px;}
.wscf1_c00000{word-spacing:35.157600px;}
.ws1203_c00000{word-spacing:35.179200px;}
.ws1338_c00000{word-spacing:35.186400px;}
.ws809_c00000{word-spacing:35.229600px;}
.ws15a2_c00000{word-spacing:35.244000px;}
.ws16eb_c00000{word-spacing:35.251200px;}
.ws80a_c00000{word-spacing:35.258400px;}
.ws11f4_c00000{word-spacing:35.265600px;}
.wsd8f_c00000{word-spacing:35.272800px;}
.ws103b_c00000{word-spacing:35.280000px;}
.wsd90_c00000{word-spacing:35.308800px;}
.ws1637_c00000{word-spacing:35.318268px;}
.ws133a_c00000{word-spacing:35.330400px;}
.ws1929_c00000{word-spacing:35.331444px;}
.wsee7_c00000{word-spacing:35.352000px;}
.wsa68_c00000{word-spacing:35.386632px;}
.ws96c_c00000{word-spacing:35.488800px;}
.ws25a_c00000{word-spacing:35.539200px;}
.wsee8_c00000{word-spacing:35.560800px;}
.ws96d_c00000{word-spacing:35.589600px;}
.ws25b_c00000{word-spacing:35.596800px;}
.ws486_c00000{word-spacing:35.611200px;}
.ws1962_c00000{word-spacing:35.625600px;}
.ws1963_c00000{word-spacing:35.640000px;}
.ws15ec_c00000{word-spacing:35.641080px;}
.ws1a05_c00000{word-spacing:35.657172px;}
.wsee9_c00000{word-spacing:35.668800px;}
.ws15ed_c00000{word-spacing:35.693784px;}
.ws391_c00000{word-spacing:35.755200px;}
.wsbad_c00000{word-spacing:35.827200px;}
.ws390_c00000{word-spacing:35.863200px;}
.wsbae_c00000{word-spacing:35.920800px;}
.ws174_c00000{word-spacing:35.928000px;}
.ws9b0_c00000{word-spacing:35.935200px;}
.ws175_c00000{word-spacing:35.949600px;}
.wsd1b_c00000{word-spacing:35.956800px;}
.wsda0_c00000{word-spacing:35.971200px;}
.ws176_c00000{word-spacing:35.985600px;}
.wscad_c00000{word-spacing:35.992800px;}
.ws57_c00000{word-spacing:36.000000px;}
.ws1a07_c00000{word-spacing:36.017892px;}
.wsd1c_c00000{word-spacing:36.021600px;}
.ws1981_c00000{word-spacing:36.043200px;}
.ws9b1_c00000{word-spacing:36.064800px;}
.ws18cd_c00000{word-spacing:36.122400px;}
.ws8ab_c00000{word-spacing:36.158400px;}
.ws8ac_c00000{word-spacing:36.201600px;}
.ws1b3a_c00000{word-spacing:36.252000px;}
.ws1a06_c00000{word-spacing:36.264384px;}
.ws76e_c00000{word-spacing:36.316800px;}
.ws8aa_c00000{word-spacing:36.338400px;}
.ws1b39_c00000{word-spacing:36.367200px;}
.ws1980_c00000{word-spacing:36.374400px;}
.ws18a0_c00000{word-spacing:36.496800px;}
.ws189f_c00000{word-spacing:36.554400px;}
.ws1213_c00000{word-spacing:36.583200px;}
.ws121f_c00000{word-spacing:36.597600px;}
.ws1786_c00000{word-spacing:36.626400px;}
.ws176b_c00000{word-spacing:36.640800px;}
.ws1214_c00000{word-spacing:36.655200px;}
.ws176a_c00000{word-spacing:36.684000px;}
.wscb8_c00000{word-spacing:36.691200px;}
.ws1220_c00000{word-spacing:36.720000px;}
.ws18a1_c00000{word-spacing:36.770400px;}
.ws14f1_c00000{word-spacing:36.774216px;}
.ws40f_c00000{word-spacing:36.813600px;}
.ws410_c00000{word-spacing:36.950400px;}
.ws269_c00000{word-spacing:36.957600px;}
.wse12_c00000{word-spacing:36.964800px;}
.ws1196_c00000{word-spacing:36.972000px;}
.wse13_c00000{word-spacing:36.979200px;}
.ws19ad_c00000{word-spacing:37.029600px;}
.ws1197_c00000{word-spacing:37.044000px;}
.ws14f0_c00000{word-spacing:37.051200px;}
.wseb4_c00000{word-spacing:37.065600px;}
.wseb5_c00000{word-spacing:37.072800px;}
.wsf75_c00000{word-spacing:37.080000px;}
.ws19ae_c00000{word-spacing:37.087200px;}
.ws268_c00000{word-spacing:37.108800px;}
.wsc4a_c00000{word-spacing:37.166400px;}
.ws1725_c00000{word-spacing:37.173600px;}
.wsc4b_c00000{word-spacing:37.202400px;}
.wse0c_c00000{word-spacing:37.238400px;}
.ws1726_c00000{word-spacing:37.288800px;}
.ws10fa_c00000{word-spacing:37.316484px;}
.wse0d_c00000{word-spacing:37.368000px;}
.ws1afc_c00000{word-spacing:37.382400px;}
.ws11f2_c00000{word-spacing:37.396800px;}
.ws421_c00000{word-spacing:37.411200px;}
.ws422_c00000{word-spacing:37.418400px;}
.ws1693_c00000{word-spacing:37.425600px;}
.wse0b_c00000{word-spacing:37.440000px;}
.ws17ab_c00000{word-spacing:37.538928px;}
.ws106e_c00000{word-spacing:37.540800px;}
.ws1855_c00000{word-spacing:37.648800px;}
.ws17b3_c00000{word-spacing:37.670400px;}
.ws7d1_c00000{word-spacing:37.677600px;}
.ws1960_c00000{word-spacing:37.713600px;}
.ws7d0_c00000{word-spacing:37.728000px;}
.ws1854_c00000{word-spacing:37.735200px;}
.ws12c0_c00000{word-spacing:37.742400px;}
.ws17b4_c00000{word-spacing:37.749600px;}
.ws10dd_c00000{word-spacing:37.764000px;}
.ws12bf_c00000{word-spacing:37.785600px;}
.ws1853_c00000{word-spacing:37.800000px;}
.ws1856_c00000{word-spacing:37.814400px;}
.ws106d_c00000{word-spacing:37.828800px;}
.ws19ac_c00000{word-spacing:37.857600px;}
.ws1a3e_c00000{word-spacing:37.861236px;}
.ws68b_c00000{word-spacing:38.095200px;}
.ws252_c00000{word-spacing:38.102400px;}
.ws68a_c00000{word-spacing:38.145600px;}
.ws1404_c00000{word-spacing:38.160000px;}
.ws251_c00000{word-spacing:38.167200px;}
.ws1346_c00000{word-spacing:38.390400px;}
.ws13e7_c00000{word-spacing:38.426400px;}
.wsad3_c00000{word-spacing:38.512800px;}
.ws13e8_c00000{word-spacing:38.563200px;}
.ws13c8_c00000{word-spacing:38.757600px;}
.ws1799_c00000{word-spacing:38.764800px;}
.ws1313_c00000{word-spacing:38.765376px;}
.wse15_c00000{word-spacing:38.772000px;}
.ws1a16_c00000{word-spacing:38.800800px;}
.wse14_c00000{word-spacing:38.858400px;}
.ws17c_c00000{word-spacing:38.872800px;}
.ws17b_c00000{word-spacing:38.880000px;}
.ws179a_c00000{word-spacing:38.887200px;}
.ws1a17_c00000{word-spacing:38.894400px;}
.ws1345_c00000{word-spacing:38.908800px;}
.ws103d_c00000{word-spacing:39.110400px;}
.wsbee_c00000{word-spacing:39.160800px;}
.ws193a_c00000{word-spacing:39.168000px;}
.ws588_c00000{word-spacing:39.189600px;}
.wsbef_c00000{word-spacing:39.196800px;}
.ws1735_c00000{word-spacing:39.204000px;}
.ws103c_c00000{word-spacing:39.290400px;}
.ws700_c00000{word-spacing:39.513600px;}
.ws701_c00000{word-spacing:39.556800px;}
.ws1660_c00000{word-spacing:39.564000px;}
.wse2f_c00000{word-spacing:39.751200px;}
.wsfe4_c00000{word-spacing:39.808800px;}
.wse30_c00000{word-spacing:39.859200px;}
.wsfe3_c00000{word-spacing:39.873600px;}
.ws134a_c00000{word-spacing:39.888000px;}
.wse32_c00000{word-spacing:39.902400px;}
.ws4c2_c00000{word-spacing:39.938400px;}
.ws123b_c00000{word-spacing:39.945600px;}
.wse31_c00000{word-spacing:39.952800px;}
.ws1659_c00000{word-spacing:40.003200px;}
.ws113f_c00000{word-spacing:40.142124px;}
.ws1140_c00000{word-spacing:40.184208px;}
.wsad5_c00000{word-spacing:40.226400px;}
.ws1349_c00000{word-spacing:40.262400px;}
.ws1b3b_c00000{word-spacing:40.276800px;}
.ws471_c00000{word-spacing:40.284000px;}
.ws1b3c_c00000{word-spacing:40.291200px;}
.ws15cb_c00000{word-spacing:40.298400px;}
.ws15ca_c00000{word-spacing:40.348800px;}
.wsad6_c00000{word-spacing:40.356000px;}
.ws1aed_c00000{word-spacing:40.500000px;}
.ws1477_c00000{word-spacing:40.514400px;}
.ws189e_c00000{word-spacing:40.572000px;}
.ws1aec_c00000{word-spacing:40.586400px;}
.ws189d_c00000{word-spacing:40.593600px;}
.ws1478_c00000{word-spacing:40.636800px;}
.wsbdb_c00000{word-spacing:40.659156px;}
.ws1aeb_c00000{word-spacing:40.680000px;}
.ws1a10_c00000{word-spacing:40.797432px;}
.ws1727_c00000{word-spacing:40.852800px;}
.wse29_c00000{word-spacing:40.968000px;}
.wsea6_c00000{word-spacing:40.982400px;}
.ws1abd_c00000{word-spacing:41.004000px;}
.ws1728_c00000{word-spacing:41.018400px;}
.wsea5_c00000{word-spacing:41.032800px;}
.ws1247_c00000{word-spacing:41.040000px;}
.wsbd8_c00000{word-spacing:41.043924px;}
.ws1abe_c00000{word-spacing:41.047200px;}
.wsea0_c00000{word-spacing:41.110056px;}
.ws1a0f_c00000{word-spacing:41.176188px;}
.ws1054_c00000{word-spacing:41.241600px;}
.wsbda_c00000{word-spacing:41.248332px;}
.ws1053_c00000{word-spacing:41.248800px;}
.ws162e_c00000{word-spacing:41.284800px;}
.ws11e8_c00000{word-spacing:41.342400px;}
.ws1a11_c00000{word-spacing:41.362560px;}
.wsbd9_c00000{word-spacing:41.398632px;}
.ws1b50_c00000{word-spacing:41.400000px;}
.ws11e9_c00000{word-spacing:41.421600px;}
.ws162d_c00000{word-spacing:41.428800px;}
.ws1b01_c00000{word-spacing:41.515200px;}
.ws1b00_c00000{word-spacing:41.630400px;}
.wsb5f_c00000{word-spacing:41.637600px;}
.wsb60_c00000{word-spacing:41.688000px;}
.wsb5e_c00000{word-spacing:41.767200px;}
.ws16ad_c00000{word-spacing:41.833800px;}
.ws1447_c00000{word-spacing:41.951736px;}
.wsfbe_c00000{word-spacing:42.091200px;}
.ws13d6_c00000{word-spacing:42.096024px;}
.wsfbd_c00000{word-spacing:42.156000px;}
.ws180d_c00000{word-spacing:42.342516px;}
.ws9d6_c00000{word-spacing:42.393600px;}
.ws9d5_c00000{word-spacing:42.436800px;}
.ws180b_c00000{word-spacing:42.558948px;}
.ws180c_c00000{word-spacing:42.613056px;}
.ws13b3_c00000{word-spacing:42.775200px;}
.ws1af8_c00000{word-spacing:42.804000px;}
.ws1b43_c00000{word-spacing:42.832800px;}
.ws1673_c00000{word-spacing:42.847200px;}
.ws1569_c00000{word-spacing:42.894468px;}
.ws19f6_c00000{word-spacing:43.005600px;}
.ws145f_c00000{word-spacing:43.020000px;}
.wsdc0_c00000{word-spacing:43.048800px;}
.ws1460_c00000{word-spacing:43.063200px;}
.ws10ab_c00000{word-spacing:43.075980px;}
.ws19f5_c00000{word-spacing:43.099200px;}
.ws579_c00000{word-spacing:43.142400px;}
.wsdbe_c00000{word-spacing:43.149600px;}
.ws57a_c00000{word-spacing:43.164000px;}
.wsdbf_c00000{word-spacing:43.192800px;}
.ws19f7_c00000{word-spacing:43.221600px;}
.ws1126_c00000{word-spacing:43.524000px;}
.ws1127_c00000{word-spacing:43.531200px;}
.ws1819_c00000{word-spacing:43.550928px;}
.ws49e_c00000{word-spacing:43.855200px;}
.wsf57_c00000{word-spacing:43.862400px;}
.ws49f_c00000{word-spacing:43.869600px;}
.ws6fd_c00000{word-spacing:43.898400px;}
.ws54b_c00000{word-spacing:44.176752px;}
.wsac7_c00000{word-spacing:44.215200px;}
.ws1546_c00000{word-spacing:44.222400px;}
.ws481_c00000{word-spacing:44.244000px;}
.wsac8_c00000{word-spacing:44.251200px;}
.ws47f_c00000{word-spacing:44.280000px;}
.ws480_c00000{word-spacing:44.294400px;}
.ws54a_c00000{word-spacing:44.330544px;}
.wse2c_c00000{word-spacing:44.539200px;}
.ws1784_c00000{word-spacing:44.553600px;}
.wse2d_c00000{word-spacing:44.683200px;}
.ws195b_c00000{word-spacing:44.798400px;}
.ws195a_c00000{word-spacing:44.928000px;}
.wsff1_c00000{word-spacing:45.158400px;}
.wsdc3_c00000{word-spacing:45.237600px;}
.wsdc4_c00000{word-spacing:45.259200px;}
.ws15c9_c00000{word-spacing:45.324000px;}
.wsff0_c00000{word-spacing:45.360000px;}
.ws17ff_c00000{word-spacing:45.367200px;}
.ws17fe_c00000{word-spacing:45.691200px;}
.wsf31_c00000{word-spacing:45.720000px;}
.ws17fd_c00000{word-spacing:45.734400px;}
.wsc7b_c00000{word-spacing:46.080000px;}
.ws3d5_c00000{word-spacing:46.094400px;}
.ws1b16_c00000{word-spacing:46.252800px;}
.ws1b15_c00000{word-spacing:46.332000px;}
.ws9f4_c00000{word-spacing:46.375200px;}
.ws9f5_c00000{word-spacing:46.454400px;}
.ws131b_c00000{word-spacing:46.629072px;}
.ws16e4_c00000{word-spacing:46.656000px;}
.wsd11_c00000{word-spacing:46.699200px;}
.ws131c_c00000{word-spacing:46.701216px;}
.ws18cc_c00000{word-spacing:46.728000px;}
.ws45c_c00000{word-spacing:46.785600px;}
.ws45d_c00000{word-spacing:46.792800px;}
.wsd12_c00000{word-spacing:46.850400px;}
.ws17be_c00000{word-spacing:46.951200px;}
.ws1445_c00000{word-spacing:47.085984px;}
.ws17bd_c00000{word-spacing:47.138400px;}
.ws183c_c00000{word-spacing:47.152800px;}
.ws1446_c00000{word-spacing:47.176164px;}
.ws17bf_c00000{word-spacing:47.181600px;}
.wsac4_c00000{word-spacing:47.340000px;}
.wsbea_c00000{word-spacing:47.368800px;}
.wsac3_c00000{word-spacing:47.426400px;}
.ws3d0_c00000{word-spacing:47.455200px;}
.wsbeb_c00000{word-spacing:47.498400px;}
.ws3d1_c00000{word-spacing:47.512800px;}
.wsac5_c00000{word-spacing:47.520000px;}
.ws1444_c00000{word-spacing:47.705220px;}
.ws196b_c00000{word-spacing:48.153600px;}
.ws196a_c00000{word-spacing:48.218400px;}
.ws1835_c00000{word-spacing:48.639204px;}
.ws19ce_c00000{word-spacing:49.168800px;}
.ws19cd_c00000{word-spacing:49.226400px;}
.ws5cc_c00000{word-spacing:50.025852px;}
.ws5ce_c00000{word-spacing:50.043888px;}
.ws5cd_c00000{word-spacing:50.236272px;}
.ws15ff_c00000{word-spacing:50.385600px;}
.ws1ab6_c00000{word-spacing:50.580000px;}
.wscbc_c00000{word-spacing:50.630400px;}
.wscbd_c00000{word-spacing:50.702400px;}
.ws1348_c00000{word-spacing:50.752800px;}
.ws1ab7_c00000{word-spacing:50.760000px;}
.wse74_c00000{word-spacing:51.336000px;}
.wse73_c00000{word-spacing:51.364800px;}
.wse54_c00000{word-spacing:51.436800px;}
.wse55_c00000{word-spacing:51.501600px;}
.ws14eb_c00000{word-spacing:51.877548px;}
.ws1347_c00000{word-spacing:52.416000px;}
.ws10c5_c00000{word-spacing:53.609004px;}
.ws10c7_c00000{word-spacing:53.843472px;}
.ws10c6_c00000{word-spacing:54.126036px;}
.ws13a5_c00000{word-spacing:54.662400px;}
.ws13e0_c00000{word-spacing:54.676800px;}
.ws1382_c00000{word-spacing:55.298376px;}
.ws1248_c00000{word-spacing:55.440000px;}
.ws183a_c00000{word-spacing:55.764000px;}
.ws110a_c00000{word-spacing:55.800000px;}
.ws183b_c00000{word-spacing:55.807200px;}
.ws1454_c00000{word-spacing:55.900800px;}
.wsf81_c00000{word-spacing:56.049876px;}
.ws1453_c00000{word-spacing:56.152800px;}
.ws1426_c00000{word-spacing:56.651076px;}
.ws1425_c00000{word-spacing:56.669112px;}
.ws12ef_c00000{word-spacing:57.023820px;}
.wsff4_c00000{word-spacing:57.931200px;}
.wsff5_c00000{word-spacing:58.053600px;}
.ws1495_c00000{word-spacing:58.269600px;}
.ws1496_c00000{word-spacing:58.370400px;}
.ws1589_c00000{word-spacing:59.049864px;}
.ws1542_c00000{word-spacing:59.140044px;}
.ws1543_c00000{word-spacing:59.146056px;}
.ws1250_c00000{word-spacing:59.729220px;}
.ws1251_c00000{word-spacing:59.957676px;}
.ws1252_c00000{word-spacing:60.011784px;}
.ws1544_c00000{word-spacing:60.540840px;}
.ws13b2_c00000{word-spacing:60.883524px;}
.ws13b1_c00000{word-spacing:60.919596px;}
.wscef_c00000{word-spacing:62.316000px;}
.wscf0_c00000{word-spacing:62.402400px;}
.ws1309_c00000{word-spacing:62.640000px;}
.wsfaa_c00000{word-spacing:63.805356px;}
.wsfab_c00000{word-spacing:64.009764px;}
.wsf3e_c00000{word-spacing:64.424592px;}
.wsc91_c00000{word-spacing:65.368476px;}
.wsc92_c00000{word-spacing:65.440620px;}
.ws1666_c00000{word-spacing:70.214148px;}
.ws1665_c00000{word-spacing:70.430580px;}
.ws1667_c00000{word-spacing:70.484688px;}
.ws1115_c00000{word-spacing:73.713132px;}
.ws1253_c00000{word-spacing:74.254212px;}
.ws1114_c00000{word-spacing:74.747196px;}
.ws1523_c00000{word-spacing:76.286268px;}
.ws1524_c00000{word-spacing:76.677048px;}
.wsf91_c00000{word-spacing:76.821336px;}
.ws13bd_c00000{word-spacing:76.917528px;}
.ws13be_c00000{word-spacing:76.959612px;}
.ws131a_c00000{word-spacing:77.236164px;}
.ws1311_c00000{word-spacing:81.438552px;}
.ws144a_c00000{word-spacing:81.528732px;}
.ws1312_c00000{word-spacing:81.582840px;}
.ws144b_c00000{word-spacing:81.679032px;}
.ws1292_c00000{word-spacing:82.665000px;}
.ws1421_c00000{word-spacing:84.606876px;}
.ws141f_c00000{word-spacing:84.709080px;}
.ws1420_c00000{word-spacing:85.159980px;}
.ws12ba_c00000{word-spacing:85.646952px;}
.ws12bb_c00000{word-spacing:85.664988px;}
.wse3d_c00000{word-spacing:87.095844px;}
.wse3c_c00000{word-spacing:87.312276px;}
.ws9ea_c00000{word-spacing:90.691020px;}
.ws9e8_c00000{word-spacing:90.727092px;}
.ws9e9_c00000{word-spacing:90.871380px;}
.ws110f_c00000{word-spacing:96.458400px;}
.ws1110_c00000{word-spacing:96.494400px;}
.ws1441_c00000{word-spacing:99.606816px;}
.ws1442_c00000{word-spacing:99.937476px;}
.ws1443_c00000{word-spacing:99.967536px;}
.ws1139_c00000{word-spacing:102.600000px;}
.ws143e_c00000{word-spacing:105.378336px;}
.wsdf5_c00000{word-spacing:105.444468px;}
.wsdf3_c00000{word-spacing:105.528636px;}
.wsdf4_c00000{word-spacing:106.081740px;}
.ws10b3_c00000{word-spacing:109.177920px;}
.ws13bc_c00000{word-spacing:111.847248px;}
.ws129c_c00000{word-spacing:113.254056px;}
.ws129b_c00000{word-spacing:113.392332px;}
.ws113d_c00000{word-spacing:121.640796px;}
.wscdd_c00000{word-spacing:122.488488px;}
.ws1560_c00000{word-spacing:124.560000px;}
.wsce7_c00000{word-spacing:125.602704px;}
.wsce5_c00000{word-spacing:125.608716px;}
.wsce8_c00000{word-spacing:125.614728px;}
.wsce6_c00000{word-spacing:125.638776px;}
.wsce4_c00000{word-spacing:125.807112px;}
.ws1304_c00000{word-spacing:126.191880px;}
.ws1a49_c00000{word-spacing:127.881252px;}
.ws1a4a_c00000{word-spacing:127.977444px;}
.ws1532_c00000{word-spacing:132.576624px;}
.ws1533_c00000{word-spacing:132.762996px;}
.wsf1b_c00000{word-spacing:134.049564px;}
.wsf19_c00000{word-spacing:134.109684px;}
.wsf1a_c00000{word-spacing:134.434332px;}
.wsf1c_c00000{word-spacing:134.548560px;}
.ws1acd_c00000{word-spacing:136.080000px;}
.ws101d_c00000{word-spacing:138.385224px;}
.ws101c_c00000{word-spacing:138.561372px;}
.wsb96_c00000{word-spacing:140.728896px;}
.wsfd6_c00000{word-spacing:140.993424px;}
.wsb94_c00000{word-spacing:141.119676px;}
.wsb95_c00000{word-spacing:141.342120px;}
.ws156a_c00000{word-spacing:143.939304px;}
.ws156b_c00000{word-spacing:143.999424px;}
.wsdda_c00000{word-spacing:144.360000px;}
.ws143f_c00000{word-spacing:153.588564px;}
.wsce0_c00000{word-spacing:155.446272px;}
.wsce3_c00000{word-spacing:155.470320px;}
.wscde_c00000{word-spacing:155.476332px;}
.wscdf_c00000{word-spacing:155.506392px;}
.wsce1_c00000{word-spacing:155.512404px;}
.wsce2_c00000{word-spacing:155.602584px;}
.wsdeb_c00000{word-spacing:163.279908px;}
.wsdec_c00000{word-spacing:163.442232px;}
.ws13f6_c00000{word-spacing:173.704716px;}
.ws1800_c00000{word-spacing:179.650584px;}
.ws13af_c00000{word-spacing:183.029328px;}
.ws143d_c00000{word-spacing:186.341940px;}
.ws143c_c00000{word-spacing:186.384024px;}
.wsf32_c00000{word-spacing:192.240000px;}
.ws179d_c00000{word-spacing:194.349600px;}
.ws19c9_c00000{word-spacing:194.400000px;}
.ws112f_c00000{word-spacing:197.280000px;}
.ws15a9_c00000{word-spacing:197.942400px;}
.ws175b_c00000{word-spacing:198.000000px;}
.wsf3f_c00000{word-spacing:211.411980px;}
.ws1137_c00000{word-spacing:216.191520px;}
.ws1aa9_c00000{word-spacing:217.688508px;}
.ws1383_c00000{word-spacing:231.666408px;}
.ws9e4_c00000{word-spacing:233.512092px;}
.ws13e4_c00000{word-spacing:278.409708px;}
.ws13bf_c00000{word-spacing:283.303476px;}
.ws679_c00000{word-spacing:292.441716px;}
.wsf8d_c00000{word-spacing:309.966696px;}
.wsf95_c00000{word-spacing:323.253216px;}
.wsf8b_c00000{word-spacing:343.375380px;}
.wsf8e_c00000{word-spacing:346.663944px;}
.wsf8f_c00000{word-spacing:350.343288px;}
.wsf94_c00000{word-spacing:356.746068px;}
.wsf98_c00000{word-spacing:359.968500px;}
.wsf90_c00000{word-spacing:363.202956px;}
.wsfdd_c00000{word-spacing:369.124776px;}
.wsedd_c00000{word-spacing:370.772064px;}
.wsf93_c00000{word-spacing:376.483464px;}
.wsf8c_c00000{word-spacing:379.717920px;}
.wsf92_c00000{word-spacing:383.361192px;}
.wsf96_c00000{word-spacing:384.329124px;}
.wsf97_c00000{word-spacing:416.860056px;}
.ws1320_c00000{word-spacing:439.062372px;}
.ws1643_c00000{word-spacing:621.720000px;}
.ws164e_c00000{word-spacing:640.602648px;}
.ws1588_c00000{word-spacing:1004.911812px;}
.ws1286_c00000{word-spacing:1136.520504px;}
._77_c00000{margin-left:-640.440324px;}
._52_c00000{margin-left:-369.617760px;}
._49_c00000{margin-left:-211.321800px;}
._82_c00000{margin-left:-198.000000px;}
._8e_c00000{margin-left:-194.400000px;}
._6f_c00000{margin-left:-191.779200px;}
._83_c00000{margin-left:-185.428800px;}
._3a_c00000{margin-left:-156.642660px;}
._58_c00000{margin-left:-95.616000px;}
._5d_c00000{margin-left:-81.360396px;}
._59_c00000{margin-left:-74.518740px;}
._38_c00000{margin-left:-65.158056px;}
._5b_c00000{margin-left:-59.759280px;}
._61_c00000{margin-left:-56.879532px;}
._4a_c00000{margin-left:-55.797372px;}
._55_c00000{margin-left:-53.639064px;}
._2d_c00000{margin-left:-50.037876px;}
._54_c00000{margin-left:-42.841512px;}
._57_c00000{margin-left:-37.082016px;}
._36_c00000{margin-left:-29.518920px;}
._2f_c00000{margin-left:-27.864000px;}
._5a_c00000{margin-left:-25.917732px;}
._21_c00000{margin-left:-24.337836px;}
._37_c00000{margin-left:-21.961836px;}
._46_c00000{margin-left:-20.879676px;}
._9_c00000{margin-left:-19.770516px;}
._5f_c00000{margin-left:-18.721368px;}
._12_c00000{margin-left:-17.604000px;}
._d_c00000{margin-left:-16.245036px;}
._15_c00000{margin-left:-14.508000px;}
._b_c00000{margin-left:-13.341600px;}
._a_c00000{margin-left:-11.880000px;}
._8_c00000{margin-left:-10.652760px;}
._13_c00000{margin-left:-9.619200px;}
._11_c00000{margin-left:-8.006400px;}
._c_c00000{margin-left:-6.120000px;}
._10_c00000{margin-left:-4.780800px;}
._14_c00000{margin-left:-3.528000px;}
._f_c00000{margin-left:-2.160000px;}
._7_c00000{margin-left:-1.106964px;}
._0_c00000{width:1.056000px;}
._2_c00000{width:2.076000px;}
._5_c00000{width:3.654081px;}
._4_c00000{width:5.057959px;}
._6_c00000{width:6.060122px;}
._1d_c00000{width:7.100172px;}
._27_c00000{width:8.647200px;}
._e_c00000{width:10.440000px;}
._24_c00000{width:12.342636px;}
._97_c00000{width:13.370688px;}
._16_c00000{width:14.400000px;}
._26_c00000{width:15.429600px;}
._17_c00000{width:16.523028px;}
._48_c00000{width:17.939808px;}
._34_c00000{width:19.353600px;}
._30_c00000{width:20.771460px;}
._63_c00000{width:21.775464px;}
._31_c00000{width:23.817600px;}
._2e_c00000{width:25.158438px;}
._3_c00000{width:27.079206px;}
._47_c00000{width:28.483200px;}
._67_c00000{width:30.086160px;}
._5c_c00000{width:31.110648px;}
._2a_c00000{width:32.676000px;}
._65_c00000{width:35.136000px;}
._35_c00000{width:39.034728px;}
._18_c00000{width:43.552800px;}
._5e_c00000{width:45.937692px;}
._8b_c00000{width:53.825364px;}
._1_c00000{width:54.846000px;}
._64_c00000{width:58.030164px;}
._3d_c00000{width:60.890292px;}
._71_c00000{width:73.800000px;}
._60_c00000{width:77.243868px;}
._73_c00000{width:78.420132px;}
._23_c00000{width:81.720000px;}
._7a_c00000{width:83.160000px;}
._22_c00000{width:85.320000px;}
._72_c00000{width:87.120000px;}
._70_c00000{width:98.640000px;}
._93_c00000{width:112.320000px;}
._7c_c00000{width:114.480000px;}
._7e_c00000{width:121.320000px;}
._7b_c00000{width:124.560000px;}
._7d_c00000{width:127.080000px;}
._6b_c00000{width:132.708888px;}
._3f_c00000{width:135.750960px;}
._4c_c00000{width:140.405940px;}
._3e_c00000{width:141.702840px;}
._6c_c00000{width:143.277984px;}
._74_c00000{width:147.600000px;}
._3c_c00000{width:149.266692px;}
._29_c00000{width:151.245036px;}
._40_c00000{width:152.290728px;}
._42_c00000{width:159.608268px;}
._85_c00000{width:161.640000px;}
._45_c00000{width:163.438332px;}
._25_c00000{width:165.600000px;}
._75_c00000{width:167.040000px;}
._79_c00000{width:169.200000px;}
._28_c00000{width:170.280000px;}
._7f_c00000{width:172.080000px;}
._32_c00000{width:173.160000px;}
._66_c00000{width:174.600000px;}
._68_c00000{width:175.680000px;}
._78_c00000{width:176.760000px;}
._6a_c00000{width:178.653600px;}
._19_c00000{width:180.720000px;}
._1e_c00000{width:181.800000px;}
._20_c00000{width:183.312000px;}
._1c_c00000{width:185.090400px;}
._33_c00000{width:186.192000px;}
._1f_c00000{width:187.257600px;}
._6d_c00000{width:188.280000px;}
._1a_c00000{width:189.432000px;}
._2b_c00000{width:190.533600px;}
._2c_c00000{width:192.297600px;}
._1b_c00000{width:194.040000px;}
._69_c00000{width:195.840000px;}
._6e_c00000{width:197.280000px;}
._44_c00000{width:209.248416px;}
._43_c00000{width:218.175480px;}
._3b_c00000{width:225.269640px;}
._4f_c00000{width:232.545852px;}
._41_c00000{width:275.969592px;}
._4d_c00000{width:290.770380px;}
._39_c00000{width:295.561944px;}
._51_c00000{width:314.066880px;}
._4b_c00000{width:338.168988px;}
._50_c00000{width:347.679972px;}
._4e_c00000{width:368.637804px;}
._89_c00000{width:602.640000px;}
._99_c00000{width:659.160000px;}
._a0_c00000{width:724.320000px;}
._9e_c00000{width:729.000000px;}
._8a_c00000{width:747.720000px;}
._91_c00000{width:792.384804px;}
._a3_c00000{width:794.160000px;}
._a1_c00000{width:797.040000px;}
._a2_c00000{width:820.080000px;}
._9b_c00000{width:851.760000px;}
._90_c00000{width:853.560000px;}
._92_c00000{width:857.880000px;}
._a4_c00000{width:863.280000px;}
._8f_c00000{width:870.120000px;}
._98_c00000{width:905.760000px;}
._80_c00000{width:911.160000px;}
._62_c00000{width:924.783768px;}
._53_c00000{width:933.137472px;}
._56_c00000{width:947.409372px;}
._96_c00000{width:950.130000px;}
._88_c00000{width:951.480000px;}
._95_c00000{width:960.840000px;}
._9a_c00000{width:970.200000px;}
._9d_c00000{width:1026.000000px;}
._86_c00000{width:1041.120000px;}
._8d_c00000{width:1076.399400px;}
._9f_c00000{width:1079.640000px;}
._84_c00000{width:1087.200000px;}
._8c_c00000{width:1126.080000px;}
._87_c00000{width:1219.680000px;}
._94_c00000{width:1238.400000px;}
._81_c00000{width:1243.439400px;}
._76_c00000{width:1339.560000px;}
._9c_c00000{width:1343.520000px;}
.fc5_c00000{color:transparent;}
.fc6_c00000{color:rgb(36,64,97);}
.fc4_c00000{color:rgb(36,64,97);}
.fc2_c00000{color:rgb(210,218,227);}
.fc7_c00000{color:rgb(51,101,255);}
.fc1_c00000{color:rgb(55,102,156);}
.fc3_c00000{color:rgb(0,0,0);}
.fc0_c00000{color:rgb(255,255,255);}
.fs16_c00000{font-size:38.880000px;}
.fs17_c00000{font-size:42.120000px;}
.fs15_c00000{font-size:47.880000px;}
.fs19_c00000{font-size:54.000000px;}
.fs14_c00000{font-size:56.880000px;}
.fs10_c00000{font-size:60.120000px;}
.fs1a_c00000{font-size:63.539045px;}
.fsd_c00000{font-size:65.880000px;}
.fs7_c00000{font-size:66.000000px;}
.fse_c00000{font-size:72.000000px;}
.fs18_c00000{font-size:76.094487px;}
.fs4_c00000{font-size:78.000000px;}
.fsc_c00000{font-size:78.120000px;}
.fsb_c00000{font-size:81.000000px;}
.fs12_c00000{font-size:83.880000px;}
.fs5_c00000{font-size:84.000000px;}
.fs13_c00000{font-size:96.120000px;}
.fsa_c00000{font-size:101.880000px;}
.fs6_c00000{font-size:108.000000px;}
.fs8_c00000{font-size:114.120000px;}
.fs11_c00000{font-size:132.120000px;}
.fs2_c00000{font-size:144.000000px;}
.fs9_c00000{font-size:150.120000px;}
.fsf_c00000{font-size:168.120000px;}
.fs0_c00000{font-size:180.000000px;}
.fs3_c00000{font-size:216.000000px;}
.fs1_c00000{font-size:300.000000px;}
.y17_c00000{bottom:-2427.000000px;}
.y18_c00000{bottom:-2101.500000px;}
.y14_c00000{bottom:-1872.000000px;}
.y16_c00000{bottom:-1744.500000px;}
.y15_c00000{bottom:-1417.500000px;}
.y0_c00000{bottom:0.000000px;}
.yb_c00000{bottom:6.000000px;}
.yd_c00000{bottom:7.500000px;}
.y28_c00000{bottom:9.000000px;}
.y2a_c00000{bottom:12.000000px;}
.y5_c00000{bottom:16.500000px;}
.y2_c00000{bottom:19.500000px;}
.y23_c00000{bottom:28.500000px;}
.y32_c00000{bottom:30.000000px;}
.y26_c00000{bottom:32.997000px;}
.yf_c00000{bottom:39.000000px;}
.y2b_c00000{bottom:42.000000px;}
.y25_c00000{bottom:57.000000px;}
.y74_c00000{bottom:57.360450px;}
.y339_c00000{bottom:57.450450px;}
.y12_c00000{bottom:82.497000px;}
.y11_c00000{bottom:106.500000px;}
.y1b4_c00000{bottom:109.920639px;}
.y1f4_c00000{bottom:109.920648px;}
.y2b1_c00000{bottom:109.920657px;}
.y210_c00000{bottom:109.920846px;}
.y717_c00000{bottom:109.920855px;}
.y719_c00000{bottom:109.920864px;}
.y75c_c00000{bottom:109.921053px;}
.y633_c00000{bottom:109.921062px;}
.y283_c00000{bottom:109.921071px;}
.y104c_c00000{bottom:109.921269px;}
.y96a_c00000{bottom:109.921692px;}
.yd98_c00000{bottom:109.921890px;}
.y846_c00000{bottom:109.922031px;}
.y388_c00000{bottom:110.010639px;}
.y43b_c00000{bottom:110.010648px;}
.y411_c00000{bottom:110.010657px;}
.y3a1_c00000{bottom:110.010855px;}
.y3e7_c00000{bottom:110.010864px;}
.y402_c00000{bottom:110.010996px;}
.y30a_c00000{bottom:110.550450px;}
.y8dd_c00000{bottom:110.730963px;}
.y598_c00000{bottom:111.630450px;}
.y71d_c00000{bottom:111.720450px;}
.y2d6_c00000{bottom:112.170450px;}
.yea4_c00000{bottom:112.260450px;}
.y2ff_c00000{bottom:113.430450px;}
.yf7_c00000{bottom:113.520450px;}
.y22b_c00000{bottom:115.680450px;}
.ye40_c00000{bottom:116.490450px;}
.y260_c00000{bottom:116.670450px;}
.y3cb_c00000{bottom:116.760450px;}
.yddc_c00000{bottom:117.300450px;}
.ye22_c00000{bottom:117.480450px;}
.y362_c00000{bottom:118.290450px;}
.y100f_c00000{bottom:119.820450px;}
.y10_c00000{bottom:121.500000px;}
.ye75_c00000{bottom:123.510450px;}
.y165_c00000{bottom:124.590450px;}
.y1d9_c00000{bottom:126.300450px;}
.y827_c00000{bottom:127.110450px;}
.y1f3_c00000{bottom:127.110459px;}
.y25f_c00000{bottom:127.110468px;}
.y20f_c00000{bottom:127.110657px;}
.y616_c00000{bottom:127.110666px;}
.y718_c00000{bottom:127.110675px;}
.y74d_c00000{bottom:127.110864px;}
.y632_c00000{bottom:127.110873px;}
.y282_c00000{bottom:127.110882px;}
.y104b_c00000{bottom:127.111080px;}
.y754_c00000{bottom:127.111089px;}
.y969_c00000{bottom:127.111503px;}
.yd97_c00000{bottom:127.111701px;}
.y845_c00000{bottom:127.111842px;}
.y43a_c00000{bottom:127.200459px;}
.y410_c00000{bottom:127.200468px;}
.y3a0_c00000{bottom:127.200666px;}
.y3e6_c00000{bottom:127.200675px;}
.y401_c00000{bottom:127.200807px;}
.y46d_c00000{bottom:127.200882px;}
.y98_c00000{bottom:127.560450px;}
.y2e0_c00000{bottom:127.830450px;}
.y587_c00000{bottom:127.920450px;}
.y104f_c00000{bottom:128.550450px;}
.ye21_c00000{bottom:129.360855px;}
.y1171_c00000{bottom:129.540450px;}
.y8dc_c00000{bottom:130.170765px;}
.yddb_c00000{bottom:130.621557px;}
.y309_c00000{bottom:131.250450px;}
.ydd1_c00000{bottom:133.770450px;}
.y1b3_c00000{bottom:133.860450px;}
.y387_c00000{bottom:133.950450px;}
.yf6_c00000{bottom:134.040450px;}
.y597_c00000{bottom:135.210450px;}
.y71c_c00000{bottom:135.300450px;}
.y2d5_c00000{bottom:135.750450px;}
.y64_c00000{bottom:136.650450px;}
.y2fe_c00000{bottom:137.010450px;}
.y22a_c00000{bottom:139.260450px;}
.ye3f_c00000{bottom:140.160450px;}
.y3a_c00000{bottom:140.220000px;}
.y310_c00000{bottom:140.970450px;}
.y361_c00000{bottom:141.960450px;}
.y11a_c00000{bottom:142.680873px;}
.yea3_c00000{bottom:143.760450px;}
.ydd0_c00000{bottom:144.121278px;}
.y113c_c00000{bottom:144.390450px;}
.y250_c00000{bottom:144.390459px;}
.y1b2_c00000{bottom:144.390648px;}
.y5fb_c00000{bottom:144.390657px;}
.y642_c00000{bottom:144.390666px;}
.y74c_c00000{bottom:144.390855px;}
.y631_c00000{bottom:144.390864px;}
.y281_c00000{bottom:144.390873px;}
.y104a_c00000{bottom:144.391071px;}
.y753_c00000{bottom:144.391080px;}
.y783_c00000{bottom:144.391287px;}
.y968_c00000{bottom:144.391494px;}
.y8af_c00000{bottom:144.391626px;}
.yd96_c00000{bottom:144.391692px;}
.y844_c00000{bottom:144.391833px;}
.y40f_c00000{bottom:144.480459px;}
.y39f_c00000{bottom:144.480657px;}
.y3e5_c00000{bottom:144.480666px;}
.y3ca_c00000{bottom:144.480798px;}
.y46c_c00000{bottom:144.480873px;}
.y234_c00000{bottom:145.020450px;}
.y1073_c00000{bottom:145.020600px;}
.y386_c00000{bottom:145.110450px;}
.y108d_c00000{bottom:145.740450px;}
.ye20_c00000{bottom:146.640846px;}
.ye74_c00000{bottom:147.090450px;}
.ydda_c00000{bottom:147.721188px;}
.y97_c00000{bottom:148.260450px;}
.yc6_c00000{bottom:148.440450px;}
.y1d8_c00000{bottom:149.970450px;}
.yc2a_c00000{bottom:150.060450px;}
.y1f2_c00000{bottom:151.140450px;}
.y3f0_c00000{bottom:151.230450px;}
.y337_c00000{bottom:151.570614px;}
.y599_c00000{bottom:151.660614px;}
.y308_c00000{bottom:151.950450px;}
.y104e_c00000{bottom:152.220450px;}
.y10d1_c00000{bottom:152.400450px;}
.y119e_c00000{bottom:152.580450px;}
.yf5_c00000{bottom:154.920450px;}
.y13e_c00000{bottom:155.010108px;}
.y2df_c00000{bottom:155.550450px;}
.y586_c00000{bottom:156.360450px;}
.y11b4_c00000{bottom:156.991107px;}
.y164_c00000{bottom:157.260450px;}
.y596_c00000{bottom:158.880450px;}
.y71b_c00000{bottom:158.970450px;}
.y10de_c00000{bottom:159.240450px;}
.y2d4_c00000{bottom:159.420450px;}
.y749_c00000{bottom:159.870450px;}
.y28f_c00000{bottom:160.680450px;}
.ydcf_c00000{bottom:161.311089px;}
.y1b1_c00000{bottom:161.670639px;}
.y5e0_c00000{bottom:161.670648px;}
.y5f2_c00000{bottom:161.670657px;}
.y648_c00000{bottom:161.670846px;}
.y1f1_c00000{bottom:161.670855px;}
.y280_c00000{bottom:161.670864px;}
.y716_c00000{bottom:161.671053px;}
.y1049_c00000{bottom:161.671062px;}
.y752_c00000{bottom:161.671071px;}
.y733_c00000{bottom:161.671269px;}
.y782_c00000{bottom:161.671278px;}
.y967_c00000{bottom:161.671485px;}
.y8ae_c00000{bottom:161.671617px;}
.yd95_c00000{bottom:161.671683px;}
.y843_c00000{bottom:161.671824px;}
.y39e_c00000{bottom:161.760648px;}
.y3e4_c00000{bottom:161.760657px;}
.y3c9_c00000{bottom:161.760789px;}
.y439_c00000{bottom:161.760855px;}
.y46b_c00000{bottom:161.760864px;}
.y4e7_c00000{bottom:161.760996px;}
.y44d_c00000{bottom:161.761476px;}
.y1170_c00000{bottom:162.210450px;}
.y21c_c00000{bottom:162.300450px;}
.y8a8_c00000{bottom:162.300600px;}
.y229_c00000{bottom:162.930450px;}
.ye3e_c00000{bottom:163.740450px;}
.ye1f_c00000{bottom:163.830657px;}
.y63_c00000{bottom:164.280108px;}
.y30f_c00000{bottom:164.550450px;}
.ydd9_c00000{bottom:164.820819px;}
.y72e_c00000{bottom:165.000450px;}
.yfd6_c00000{bottom:165.360450px;}
.y360_c00000{bottom:165.540450px;}
.y8db_c00000{bottom:166.080639px;}
.y119_c00000{bottom:166.800567px;}
.yb36_c00000{bottom:167.610450px;}
.y39_c00000{bottom:167.850000px;}
.y69f_c00000{bottom:167.970450px;}
.y24f_c00000{bottom:168.420450px;}
.y3ef_c00000{bottom:168.510450px;}
.y96_c00000{bottom:168.780450px;}
.y1088_c00000{bottom:168.960459px;}
.yc5_c00000{bottom:169.140450px;}
.y108c_c00000{bottom:169.320450px;}
.yf93_c00000{bottom:170.220450px;}
.y107e_c00000{bottom:170.310459px;}
.ye73_c00000{bottom:170.760450px;}
.yea2_c00000{bottom:171.390450px;}
.ye60_c00000{bottom:172.110450px;}
.y826_c00000{bottom:172.200450px;}
.y307_c00000{bottom:172.650450px;}
.y1d7_c00000{bottom:173.550450px;}
.yc29_c00000{bottom:173.730450px;}
.yf4_c00000{bottom:175.620450px;}
.y10d0_c00000{bottom:176.070450px;}
.y119d_c00000{bottom:176.160450px;}
.yf91_c00000{bottom:177.600450px;}
.ydce_c00000{bottom:178.591080px;}
.y11b3_c00000{bottom:178.680450px;}
.y5df_c00000{bottom:178.860459px;}
.y5f1_c00000{bottom:178.860468px;}
.y647_c00000{bottom:178.860657px;}
.y1f0_c00000{bottom:178.860666px;}
.y27f_c00000{bottom:178.860675px;}
.y715_c00000{bottom:178.860864px;}
.y1048_c00000{bottom:178.860873px;}
.y751_c00000{bottom:178.860882px;}
.y5d5_c00000{bottom:178.861071px;}
.y732_c00000{bottom:178.861080px;}
.y781_c00000{bottom:178.861089px;}
.y966_c00000{bottom:178.861296px;}
.y8ad_c00000{bottom:178.861428px;}
.yd94_c00000{bottom:178.861494px;}
.y842_c00000{bottom:178.861635px;}
.ydc3_c00000{bottom:178.861842px;}
.y39d_c00000{bottom:178.950459px;}
.y3e3_c00000{bottom:178.950468px;}
.y40e_c00000{bottom:178.950666px;}
.y46a_c00000{bottom:178.950675px;}
.y4e6_c00000{bottom:178.950807px;}
.y569_c00000{bottom:178.950864px;}
.y51d_c00000{bottom:178.950873px;}
.y44c_c00000{bottom:178.951287px;}
.y2de_c00000{bottom:179.220450px;}
.y677_c00000{bottom:179.580450px;}
.y2b0_c00000{bottom:179.580600px;}
.y585_c00000{bottom:179.940450px;}
.y163_c00000{bottom:180.840450px;}
.ye1e_c00000{bottom:181.110648px;}
.y325_c00000{bottom:181.470450px;}
.y4e4_c00000{bottom:182.460450px;}
.yda3_c00000{bottom:182.460600px;}
.yf3e_c00000{bottom:182.550450px;}
.y10dd_c00000{bottom:182.910450px;}
.y2d3_c00000{bottom:183.000450px;}
.y748_c00000{bottom:183.540450px;}
.yc4f_c00000{bottom:183.720450px;}
.y2fd_c00000{bottom:184.260450px;}
.y62_c00000{bottom:184.350450px;}
.yc53_c00000{bottom:184.800450px;}
.y1b0_c00000{bottom:185.610450px;}
.y3c8_c00000{bottom:185.700600px;}
.y1087_c00000{bottom:186.240450px;}
.y110f_c00000{bottom:186.330450px;}
.y6be_c00000{bottom:186.420450px;}
.y228_c00000{bottom:186.510450px;}
.y1085_c00000{bottom:186.690450px;}
.y1096_c00000{bottom:187.051359px;}
.y107d_c00000{bottom:187.590450px;}
.y86c_c00000{bottom:187.680600px;}
.y38_c00000{bottom:187.830000px;}
.y21b_c00000{bottom:188.220450px;}
.y72d_c00000{bottom:188.580450px;}
.ydd8_c00000{bottom:188.670450px;}
.yfd5_c00000{bottom:188.940450px;}
.y35f_c00000{bottom:189.210450px;}
.ye13_c00000{bottom:189.390450px;}
.y95_c00000{bottom:189.480450px;}
.yc4_c00000{bottom:189.840450px;}
.y8da_c00000{bottom:190.020450px;}
.y8a7_c00000{bottom:190.020600px;}
.y1072_c00000{bottom:190.200600px;}
.y118_c00000{bottom:191.010432px;}
.y385_c00000{bottom:191.460450px;}
.y69e_c00000{bottom:191.550450px;}
.yd32_c00000{bottom:192.990450px;}
.yba3_c00000{bottom:193.170450px;}
.y306_c00000{bottom:193.350450px;}
.yf92_c00000{bottom:193.800450px;}
.ye72_c00000{bottom:194.340450px;}
.y116f_c00000{bottom:194.790450px;}
.yea1_c00000{bottom:195.060450px;}
.y10b4_c00000{bottom:195.420450px;}
.y1067_c00000{bottom:195.422421px;}
.ye5f_c00000{bottom:195.780450px;}
.y825_c00000{bottom:195.870450px;}
.ydcd_c00000{bottom:195.871071px;}
.y1af_c00000{bottom:196.140459px;}
.y25e_c00000{bottom:196.140648px;}
.y1ef_c00000{bottom:196.140657px;}
.y27e_c00000{bottom:196.140666px;}
.y714_c00000{bottom:196.140855px;}
.y1047_c00000{bottom:196.140864px;}
.y750_c00000{bottom:196.140873px;}
.y5d4_c00000{bottom:196.141062px;}
.y731_c00000{bottom:196.141071px;}
.y780_c00000{bottom:196.141080px;}
.y965_c00000{bottom:196.141287px;}
.y8ac_c00000{bottom:196.141419px;}
.yd93_c00000{bottom:196.141485px;}
.y841_c00000{bottom:196.141626px;}
.ydc2_c00000{bottom:196.141833px;}
.y860_c00000{bottom:196.230450px;}
.y3e2_c00000{bottom:196.230459px;}
.y40d_c00000{bottom:196.230657px;}
.y469_c00000{bottom:196.230666px;}
.y4e5_c00000{bottom:196.230798px;}
.y568_c00000{bottom:196.230855px;}
.y51c_c00000{bottom:196.230864px;}
.y44b_c00000{bottom:196.231278px;}
.yf3_c00000{bottom:196.320450px;}
.ye3d_c00000{bottom:196.410450px;}
.y20e_c00000{bottom:196.770450px;}
.ye00_c00000{bottom:196.770600px;}
.y431_c00000{bottom:196.860450px;}
.y807_c00000{bottom:197.040963px;}
.y13d_c00000{bottom:197.130450px;}
.y30e_c00000{bottom:197.220450px;}
.yb35_c00000{bottom:197.490600px;}
.ye54_c00000{bottom:198.030450px;}
.yf33_c00000{bottom:198.300450px;}
.ye1d_c00000{bottom:198.390639px;}
.ya5a_c00000{bottom:199.111080px;}
.y10cf_c00000{bottom:199.650450px;}
.y119c_c00000{bottom:199.830450px;}
.y336_c00000{bottom:199.900911px;}
.y189_c00000{bottom:199.902648px;}
.y8d9_c00000{bottom:200.550648px;}
.y1155_c00000{bottom:200.640450px;}
.yb67_c00000{bottom:200.730450px;}
.y108b_c00000{bottom:201.990450px;}
.y243_c00000{bottom:202.260450px;}
.y2dd_c00000{bottom:202.800450px;}
.y24e_c00000{bottom:202.890450px;}
.y39c_c00000{bottom:202.980450px;}
.y1183_c00000{bottom:203.340450px;}
.y584_c00000{bottom:203.610450px;}
.yd4b_c00000{bottom:203.700450px;}
.y162_c00000{bottom:204.510450px;}
.y61_c00000{bottom:204.600450px;}
.y324_c00000{bottom:205.140450px;}
.ydd7_c00000{bottom:205.770450px;}
.y105c_c00000{bottom:205.860450px;}
.y4e3_c00000{bottom:206.130450px;}
.y1d6_c00000{bottom:206.220450px;}
.yc28_c00000{bottom:206.400600px;}
.yaf4_c00000{bottom:206.490450px;}
.y2d2_c00000{bottom:206.670450px;}
.y747_c00000{bottom:207.120450px;}
.yc4e_c00000{bottom:207.300450px;}
.y28e_c00000{bottom:207.930450px;}
.ye46_c00000{bottom:208.382673px;}
.yc52_c00000{bottom:208.470450px;}
.y1095_c00000{bottom:208.651764px;}
.yf00_c00000{bottom:209.280450px;}
.y100e_c00000{bottom:209.730450px;}
.y11b2_c00000{bottom:209.910450px;}
.y6bd_c00000{bottom:210.000450px;}
.y94_c00000{bottom:210.180450px;}
.y1084_c00000{bottom:210.270450px;}
.yc3_c00000{bottom:210.540450px;}
.y86b_c00000{bottom:211.260600px;}
.y7d2_c00000{bottom:211.620600px;}
.y21a_c00000{bottom:211.800450px;}
.y1086_c00000{bottom:211.980450px;}
.y72c_c00000{bottom:212.250450px;}
.y113b_c00000{bottom:212.340450px;}
.yfd4_c00000{bottom:212.610450px;}
.y35e_c00000{bottom:212.790450px;}
.y37_c00000{bottom:213.030000px;}
.ye12_c00000{bottom:213.060450px;}
.ydcc_c00000{bottom:213.060882px;}
.yfca_c00000{bottom:213.240702px;}
.yff6_c00000{bottom:213.420450px;}
.y24d_c00000{bottom:213.420639px;}
.y1ee_c00000{bottom:213.420648px;}
.y27d_c00000{bottom:213.420657px;}
.y67c_c00000{bottom:213.420846px;}
.y1046_c00000{bottom:213.420855px;}
.y646_c00000{bottom:213.420864px;}
.y91a_c00000{bottom:213.421044px;}
.y5d3_c00000{bottom:213.421053px;}
.y730_c00000{bottom:213.421062px;}
.y77f_c00000{bottom:213.421071px;}
.y964_c00000{bottom:213.421278px;}
.y8ab_c00000{bottom:213.421410px;}
.yd92_c00000{bottom:213.421476px;}
.y840_c00000{bottom:213.421617px;}
.ydc1_c00000{bottom:213.421824px;}
.yc2f_c00000{bottom:213.510531px;}
.y40c_c00000{bottom:213.510648px;}
.y3c7_c00000{bottom:213.510657px;}
.y416_c00000{bottom:213.510789px;}
.y567_c00000{bottom:213.510846px;}
.y400_c00000{bottom:213.510855px;}
.y44a_c00000{bottom:213.511269px;}
.y8a6_c00000{bottom:213.600600px;}
.y1071_c00000{bottom:213.870600px;}
.y305_c00000{bottom:214.050450px;}
.y764_c00000{bottom:214.050600px;}
.y39b_c00000{bottom:214.140450px;}
.y769_c00000{bottom:214.680450px;}
.y384_c00000{bottom:215.130450px;}
.y69d_c00000{bottom:215.220450px;}
.y8ea_c00000{bottom:215.221359px;}
.y10dc_c00000{bottom:215.490450px;}
.y806_c00000{bottom:215.580468px;}
.ydd6_c00000{bottom:216.210468px;}
.ya59_c00000{bottom:216.391071px;}
.yd31_c00000{bottom:216.660450px;}
.y2fc_c00000{bottom:216.930450px;}
.yf2_c00000{bottom:217.020450px;}
.y1066_c00000{bottom:217.111764px;}
.y6a2_c00000{bottom:217.470450px;}
.y8d8_c00000{bottom:217.830639px;}
.ye71_c00000{bottom:218.010450px;}
.y1018_c00000{bottom:218.460600px;}
.y10b3_c00000{bottom:219.090450px;}
.y824_c00000{bottom:219.450450px;}
.y1ae_c00000{bottom:220.170450px;}
.y3e1_c00000{bottom:220.260450px;}
.y30d_c00000{bottom:220.800450px;}
.y676_c00000{bottom:221.340450px;}
.ye53_c00000{bottom:221.610450px;}
.y2f1_c00000{bottom:221.880450px;}
.y107c_c00000{bottom:222.240450px;}
.ye1c_c00000{bottom:222.330450px;}
.y430_c00000{bottom:222.420450px;}
.y6a9_c00000{bottom:222.870639px;}
.y10ce_c00000{bottom:223.320450px;}
.y119b_c00000{bottom:223.410450px;}
.y117_c00000{bottom:224.130450px;}
.y1154_c00000{bottom:224.220450px;}
.yb66_c00000{bottom:224.400450px;}
.y108a_c00000{bottom:225.660450px;}
.yba2_c00000{bottom:225.840450px;}
.y242_c00000{bottom:225.930450px;}
.y2dc_c00000{bottom:226.470450px;}
.y60_c00000{bottom:226.830378px;}
.y583_c00000{bottom:227.280450px;}
.y116e_c00000{bottom:227.460450px;}
.yea0_c00000{bottom:227.730450px;}
.y161_c00000{bottom:228.090450px;}
.yb17_c00000{bottom:228.720450px;}
.ye3c_c00000{bottom:228.810450px;}
.y85f_c00000{bottom:228.900450px;}
.y105b_c00000{bottom:229.440450px;}
.y1d5_c00000{bottom:229.800450px;}
.yf3d_c00000{bottom:229.890450px;}
.yc27_c00000{bottom:229.980600px;}
.yb34_c00000{bottom:230.070600px;}
.ye45_c00000{bottom:230.072016px;}
.yaf3_c00000{bottom:230.160450px;}
.ydcb_c00000{bottom:230.340873px;}
.y1094_c00000{bottom:230.341107px;}
.y742_c00000{bottom:230.610450px;}
.y1ed_c00000{bottom:230.610459px;}
.y27c_c00000{bottom:230.610468px;}
.y1ad_c00000{bottom:230.610657px;}
.y680_c00000{bottom:230.610666px;}
.y645_c00000{bottom:230.610675px;}
.y5d2_c00000{bottom:230.610864px;}
.y72f_c00000{bottom:230.610873px;}
.y77e_c00000{bottom:230.610882px;}
.y963_c00000{bottom:230.611089px;}
.y641_c00000{bottom:230.611221px;}
.yd91_c00000{bottom:230.611287px;}
.y83f_c00000{bottom:230.611428px;}
.y857_c00000{bottom:230.611476px;}
.ydc0_c00000{bottom:230.611635px;}
.y40b_c00000{bottom:230.700459px;}
.y3c6_c00000{bottom:230.700468px;}
.y566_c00000{bottom:230.700657px;}
.y3ff_c00000{bottom:230.700666px;}
.y54a_c00000{bottom:230.700873px;}
.y449_c00000{bottom:230.701080px;}
.y746_c00000{bottom:230.790450px;}
.y93_c00000{bottom:230.880450px;}
.yc4d_c00000{bottom:230.970450px;}
.yc2_c00000{bottom:231.240450px;}
.y5de_c00000{bottom:231.330450px;}
.ycd9_c00000{bottom:231.330600px;}
.y46e_c00000{bottom:231.420450px;}
.y8c7_c00000{bottom:231.510765px;}
.y919_c00000{bottom:231.511152px;}
.y28d_c00000{bottom:231.600450px;}
.yc51_c00000{bottom:232.140450px;}
.ydff_c00000{bottom:232.410600px;}
.y805_c00000{bottom:232.860459px;}
.yeff_c00000{bottom:232.950450px;}
.yf5e_c00000{bottom:233.040600px;}
.y100d_c00000{bottom:233.400450px;}
.ydd5_c00000{bottom:233.490459px;}
.y110e_c00000{bottom:233.580450px;}
.ya58_c00000{bottom:233.580882px;}
.y6bc_c00000{bottom:233.670450px;}
.y227_c00000{bottom:233.760450px;}
.yc2e_c00000{bottom:233.761359px;}
.y1083_c00000{bottom:233.940450px;}
.y304_c00000{bottom:234.750450px;}
.yfc9_c00000{bottom:234.930045px;}
.y86a_c00000{bottom:234.930600px;}
.yfd8_c00000{bottom:235.110450px;}
.y1182_c00000{bottom:235.292166px;}
.y219_c00000{bottom:235.470450px;}
.y11a2_c00000{bottom:235.740450px;}
.y72b_c00000{bottom:235.920450px;}
.yfd3_c00000{bottom:236.190450px;}
.yd6e_c00000{bottom:236.280702px;}
.y35d_c00000{bottom:236.460450px;}
.y7f5_c00000{bottom:236.550450px;}
.ye11_c00000{bottom:236.640450px;}
.y8e9_c00000{bottom:236.910702px;}
.y1081_c00000{bottom:237.090450px;}
.y8a5_c00000{bottom:237.270600px;}
.y24c_c00000{bottom:237.360450px;}
.y934_c00000{bottom:237.450450px;}
.y3e0_c00000{bottom:237.450600px;}
.yc70_c00000{bottom:237.630450px;}
.y1189_c00000{bottom:237.632673px;}
.yf1_c00000{bottom:237.720450px;}
.y768_c00000{bottom:238.350450px;}
.y1123_c00000{bottom:238.710450px;}
.y383_c00000{bottom:238.800450px;}
.y1065_c00000{bottom:238.801107px;}
.y69c_c00000{bottom:238.890450px;}
.y10db_c00000{bottom:239.160450px;}
.y2d1_c00000{bottom:239.340450px;}
.y2af_c00000{bottom:239.790450px;}
.y13c_c00000{bottom:240.060450px;}
.yd30_c00000{bottom:240.330450px;}
.y6b4_c00000{bottom:240.510450px;}
.y5f0_c00000{bottom:241.140450px;}
.ycc0_c00000{bottom:241.320144px;}
.y1157_c00000{bottom:241.410450px;}
.ye70_c00000{bottom:241.680450px;}
.y8d7_c00000{bottom:241.770450px;}
.yebe_c00000{bottom:242.040450px;}
.y1017_c00000{bottom:242.040600px;}
.yab9_c00000{bottom:242.400450px;}
.y11b1_c00000{bottom:242.580450px;}
.y763_c00000{bottom:242.580600px;}
.y10b2_c00000{bottom:242.670450px;}
.y1a_c00000{bottom:243.000000px;}
.ye5e_c00000{bottom:243.030450px;}
.y823_c00000{bottom:243.120450px;}
.y4c1_c00000{bottom:244.380450px;}
.y30c_c00000{bottom:244.470450px;}
.y29_c00000{bottom:244.500000px;}
.y675_c00000{bottom:245.010450px;}
.ye52_c00000{bottom:245.280450px;}
.yf32_c00000{bottom:245.550450px;}
.y42f_c00000{bottom:246.090450px;}
.y7d7_c00000{bottom:246.720450px;}
.y10cd_c00000{bottom:246.900450px;}
.yc18_c00000{bottom:247.620450px;}
.ydca_c00000{bottom:247.620864px;}
.y76a_c00000{bottom:247.890450px;}
.y25d_c00000{bottom:247.890459px;}
.y1ac_c00000{bottom:247.890648px;}
.y67f_c00000{bottom:247.890657px;}
.y644_c00000{bottom:247.890666px;}
.y5d1_c00000{bottom:247.890855px;}
.y24b_c00000{bottom:247.890864px;}
.y77d_c00000{bottom:247.890873px;}
.y962_c00000{bottom:247.891080px;}
.y640_c00000{bottom:247.891212px;}
.yd90_c00000{bottom:247.891278px;}
.y83e_c00000{bottom:247.891419px;}
.y856_c00000{bottom:247.891467px;}
.ydbf_c00000{bottom:247.891626px;}
.yb65_c00000{bottom:247.980450px;}
.y3c5_c00000{bottom:247.980459px;}
.y3df_c00000{bottom:247.980648px;}
.y3fe_c00000{bottom:247.980657px;}
.y593_c00000{bottom:247.980846px;}
.y549_c00000{bottom:247.980864px;}
.y448_c00000{bottom:247.981071px;}
.y335_c00000{bottom:248.142945px;}
.yd1c_c00000{bottom:248.160450px;}
.y188_c00000{bottom:248.232945px;}
.y5b7_c00000{bottom:248.520450px;}
.yd88_c00000{bottom:248.520600px;}
.y432_c00000{bottom:248.610450px;}
.y1089_c00000{bottom:249.240450px;}
.y241_c00000{bottom:249.510450px;}
.y2db_c00000{bottom:250.140450px;}
.y20d_c00000{bottom:250.410450px;}
.y582_c00000{bottom:250.860450px;}
.ya57_c00000{bottom:250.860873px;}
.y918_c00000{bottom:250.950954px;}
.ye9f_c00000{bottom:251.310450px;}
.y92_c00000{bottom:251.580450px;}
.y160_c00000{bottom:251.760450px;}
.ye44_c00000{bottom:251.761359px;}
.yc1_c00000{bottom:251.940450px;}
.y1093_c00000{bottom:252.030450px;}
.yb16_c00000{bottom:252.390450px;}
.y85e_c00000{bottom:252.480450px;}
.y1102_c00000{bottom:253.020450px;}
.y105a_c00000{bottom:253.110450px;}
.y94b_c00000{bottom:253.200450px;}
.y435_c00000{bottom:253.380450px;}
.y1d4_c00000{bottom:253.470450px;}
.yc_c00000{bottom:253.500000px;}
.yc26_c00000{bottom:253.650600px;}
.y7e5_c00000{bottom:253.740450px;}
.yb33_c00000{bottom:253.740600px;}
.y939_c00000{bottom:254.280450px;}
.y2f0_c00000{bottom:254.550450px;}
.y1ec_c00000{bottom:254.640450px;}
.y3ee_c00000{bottom:254.730450px;}
.yc2d_c00000{bottom:255.361764px;}
.y303_c00000{bottom:255.450450px;}
.yc50_c00000{bottom:255.720450px;}
.y119a_c00000{bottom:256.080450px;}
.ydfe_c00000{bottom:256.080600px;}
.yfc8_c00000{bottom:256.530450px;}
.ybde_c00000{bottom:256.620600px;}
.yf5d_c00000{bottom:256.710600px;}
.y804_c00000{bottom:256.890450px;}
.y100c_c00000{bottom:256.980450px;}
.y1181_c00000{bottom:256.981509px;}
.y110d_c00000{bottom:257.250450px;}
.y502_c00000{bottom:257.340450px;}
.y226_c00000{bottom:257.430450px;}
.ydd4_c00000{bottom:257.520450px;}
.yd6d_c00000{bottom:257.881107px;}
.y6a8_c00000{bottom:257.970450px;}
.yf0_c00000{bottom:258.420450px;}
.y869_c00000{bottom:258.510600px;}
.y8e8_c00000{bottom:258.600045px;}
.y79d_c00000{bottom:258.780450px;}
.y8d6_c00000{bottom:259.050450px;}
.y218_c00000{bottom:259.140450px;}
.y11a1_c00000{bottom:259.320450px;}
.y1188_c00000{bottom:259.322016px;}
.y72a_c00000{bottom:259.500450px;}
.y113a_c00000{bottom:259.590450px;}
.y8b2_c00000{bottom:259.590459px;}
.yfd2_c00000{bottom:259.860450px;}
.yd4a_c00000{bottom:259.950450px;}
.y116d_c00000{bottom:260.040450px;}
.y35c_c00000{bottom:260.130450px;}
.ye10_c00000{bottom:260.310450px;}
.y1064_c00000{bottom:260.490450px;}
.y1080_c00000{bottom:260.760450px;}
.y8a4_c00000{bottom:260.850600px;}
.yfd7_c00000{bottom:260.940450px;}
.y933_c00000{bottom:261.120450px;}
.y1070_c00000{bottom:261.120600px;}
.y323_c00000{bottom:261.390450px;}
.ye3b_c00000{bottom:261.660450px;}
.y767_c00000{bottom:261.930450px;}
.y6d1_c00000{bottom:262.020450px;}
.yd33_c00000{bottom:262.200450px;}
.y382_c00000{bottom:262.380450px;}
.y5dd_c00000{bottom:262.470450px;}
.y10da_c00000{bottom:262.740450px;}
.y2d0_c00000{bottom:262.920450px;}
.y745_c00000{bottom:263.370450px;}
.y2ae_c00000{bottom:263.460450px;}
.yd57_c00000{bottom:263.910450px;}
.yf90_c00000{bottom:264.090450px;}
.y5ef_c00000{bottom:264.720450px;}
.ydc9_c00000{bottom:264.810675px;}
.y535_c00000{bottom:264.990450px;}
.y11a8_c00000{bottom:265.080450px;}
.y9f3_c00000{bottom:265.170450px;}
.y1ab_c00000{bottom:265.170639px;}
.y653_c00000{bottom:265.170648px;}
.y643_c00000{bottom:265.170657px;}
.y740_c00000{bottom:265.170738px;}
.y5d0_c00000{bottom:265.170846px;}
.y24a_c00000{bottom:265.170855px;}
.y615_c00000{bottom:265.170864px;}
.y872_c00000{bottom:265.171062px;}
.y961_c00000{bottom:265.171071px;}
.y63f_c00000{bottom:265.171203px;}
.yd8f_c00000{bottom:265.171269px;}
.y83d_c00000{bottom:265.171410px;}
.y855_c00000{bottom:265.171458px;}
.ydbe_c00000{bottom:265.171617px;}
.ye6f_c00000{bottom:265.260450px;}
.y3de_c00000{bottom:265.260639px;}
.y3ed_c00000{bottom:265.260648px;}
.y438_c00000{bottom:265.260837px;}
.y548_c00000{bottom:265.260855px;}
.y447_c00000{bottom:265.261062px;}
.y28c_c00000{bottom:265.530450px;}
.y1016_c00000{bottom:265.710600px;}
.y5fc_c00000{bottom:265.800450px;}
.yad7_c00000{bottom:265.800600px;}
.y3f1_c00000{bottom:265.890450px;}
.y11b0_c00000{bottom:266.160450px;}
.y762_c00000{bottom:266.250600px;}
.y13b_c00000{bottom:266.880450px;}
.y116_c00000{bottom:267.060450px;}
.y803_c00000{bottom:267.960450px;}
.y503_c00000{bottom:268.050450px;}
.y30b_c00000{bottom:268.140450px;}
.ya56_c00000{bottom:268.140864px;}
.y674_c00000{bottom:268.590450px;}
.ye51_c00000{bottom:268.860450px;}
.yf31_c00000{bottom:269.130450px;}
.y917_c00000{bottom:269.580639px;}
.y42e_c00000{bottom:269.670450px;}
.ycbf_c00000{bottom:270.030450px;}
.y8d5_c00000{bottom:270.210450px;}
.y7d6_c00000{bottom:270.390450px;}
.y10cc_c00000{bottom:270.570450px;}
.y4a4_c00000{bottom:270.840450px;}
.yc94_c00000{bottom:271.020450px;}
.yc17_c00000{bottom:271.290450px;}
.yb64_c00000{bottom:271.650450px;}
.yd1b_c00000{bottom:271.830450px;}
.y25c_c00000{bottom:271.920450px;}
.y3c4_c00000{bottom:272.010450px;}
.y75b_c00000{bottom:272.190450px;}
.y91_c00000{bottom:272.280450px;}
.y6b3_c00000{bottom:272.553177px;}
.yc0_c00000{bottom:272.640450px;}
.yd2f_c00000{bottom:272.910450px;}
.yba1_c00000{bottom:273.090450px;}
.y240_c00000{bottom:273.180450px;}
.y94a_c00000{bottom:273.181428px;}
.ye43_c00000{bottom:273.361764px;}
.y2da_c00000{bottom:273.720450px;}
.y8d4_c00000{bottom:273.900450px;}
.y20c_c00000{bottom:274.080450px;}
.y581_c00000{bottom:274.530450px;}
.yebd_c00000{bottom:274.620450px;}
.ydd3_c00000{bottom:274.800450px;}
.ye9e_c00000{bottom:274.980450px;}
.y11bc_c00000{bottom:275.250600px;}
.y10b1_c00000{bottom:275.340450px;}
.y15f_c00000{bottom:275.430450px;}
.y822_c00000{bottom:275.700450px;}
.yf45_c00000{bottom:275.970450px;}
.y5b6_c00000{bottom:276.060450px;}
.y302_c00000{bottom:276.150450px;}
.y1101_c00000{bottom:276.600450px;}
.y1059_c00000{bottom:276.780450px;}
.y8b1_c00000{bottom:276.870450px;}
.y434_c00000{bottom:277.050450px;}
.yc2c_c00000{bottom:277.051107px;}
.y1d3_c00000{bottom:277.140450px;}
.yc25_c00000{bottom:277.230600px;}
.yb32_c00000{bottom:277.320600px;}
.y7e4_c00000{bottom:277.410450px;}
.yd87_c00000{bottom:277.950600px;}
.y6d0_c00000{bottom:278.130450px;}
.y7d1_c00000{bottom:278.310450px;}
.y5f_c00000{bottom:278.400450px;}
.y6de_c00000{bottom:278.490450px;}
.y1180_c00000{bottom:278.670852px;}
.yff5_c00000{bottom:278.760450px;}
.yef_c00000{bottom:278.940450px;}
.y652_c00000{bottom:279.390450px;}
.y107b_c00000{bottom:279.480450px;}
.yd6c_c00000{bottom:279.570450px;}
.ydfd_c00000{bottom:279.750600px;}
.y8e7_c00000{bottom:280.200450px;}
.ybdd_c00000{bottom:280.290600px;}
.y1153_c00000{bottom:280.470450px;}
.y100b_c00000{bottom:280.650450px;}
.y110c_c00000{bottom:280.830450px;}
.y225_c00000{bottom:281.010450px;}
.y1187_c00000{bottom:281.011359px;}
.ydc8_c00000{bottom:282.090666px;}
.y868_c00000{bottom:282.180600px;}
.y655_c00000{bottom:282.360450px;}
.y1eb_c00000{bottom:282.360459px;}
.y5f3_c00000{bottom:282.360468px;}
.y73f_c00000{bottom:282.360549px;}
.y5cf_c00000{bottom:282.360657px;}
.y249_c00000{bottom:282.360666px;}
.y614_c00000{bottom:282.360675px;}
.y871_c00000{bottom:282.360873px;}
.y960_c00000{bottom:282.360882px;}
.y63e_c00000{bottom:282.361014px;}
.yd8e_c00000{bottom:282.361080px;}
.y83c_c00000{bottom:282.361221px;}
.y854_c00000{bottom:282.361269px;}
.ydbd_c00000{bottom:282.361428px;}
.y79c_c00000{bottom:282.450450px;}
.y3ec_c00000{bottom:282.450459px;}
.y3c3_c00000{bottom:282.450648px;}
.y547_c00000{bottom:282.450666px;}
.y446_c00000{bottom:282.450873px;}
.y233_c00000{bottom:282.720450px;}
.y11a0_c00000{bottom:282.990450px;}
.y27b_c00000{bottom:283.080450px;}
.y9f2_c00000{bottom:283.080600px;}
.y1139_c00000{bottom:283.170450px;}
.y1092_c00000{bottom:283.260450px;}
.yfd1_c00000{bottom:283.440450px;}
.yd49_c00000{bottom:283.530450px;}
.y35b_c00000{bottom:283.710450px;}
.y7f4_c00000{bottom:283.800450px;}
.yf55_c00000{bottom:284.430450px;}
.y8a3_c00000{bottom:284.520600px;}
.ye1b_c00000{bottom:284.610639px;}
.y932_c00000{bottom:284.700450px;}
.y106f_c00000{bottom:284.700600px;}
.y322_c00000{bottom:284.970450px;}
.ya55_c00000{bottom:285.330675px;}
.ye3a_c00000{bottom:285.420450px;}
.ydd2_c00000{bottom:285.780450px;}
.y1122_c00000{bottom:285.960450px;}
.y381_c00000{bottom:286.050450px;}
.y5dc_c00000{bottom:286.140450px;}
.y938_c00000{bottom:286.322016px;}
.y10d9_c00000{bottom:286.410450px;}
.y2cf_c00000{bottom:286.590450px;}
.y107a_c00000{bottom:286.860450px;}
.y2ad_c00000{bottom:287.040450px;}
.y1040_c00000{bottom:287.040600px;}
.yc4c_c00000{bottom:287.220450px;}
.y1033_c00000{bottom:287.402808px;}
.y1199_c00000{bottom:287.490450px;}
.yb93_c00000{bottom:287.580450px;}
.yf8f_c00000{bottom:287.670450px;}
.yfc7_c00000{bottom:287.850450px;}
.y5ee_c00000{bottom:288.390450px;}
.y2ef_c00000{bottom:288.480450px;}
.y534_c00000{bottom:288.660450px;}
.y11a7_c00000{bottom:288.750450px;}
.ye6e_c00000{bottom:288.930450px;}
.y8bc_c00000{bottom:289.109316px;}
.y1aa_c00000{bottom:289.110450px;}
.y3dd_c00000{bottom:289.200450px;}
.ycd8_c00000{bottom:289.290600px;}
.y11af_c00000{bottom:289.830450px;}
.y761_c00000{bottom:289.830600px;}
.y6bb_c00000{bottom:289.920600px;}
.y1082_c00000{bottom:290.190450px;}
.y949_c00000{bottom:290.461419px;}
.y6a7_c00000{bottom:290.640450px;}
.yb8f_c00000{bottom:291.180450px;}
.y4a7_c00000{bottom:291.630450px;}
.y217_c00000{bottom:291.720450px;}
.y74b_c00000{bottom:291.990450px;}
.yb07_c00000{bottom:291.991611px;}
.y729_c00000{bottom:292.170450px;}
.y673_c00000{bottom:292.260450px;}
.y13a_c00000{bottom:292.440600px;}
.ye50_c00000{bottom:292.530450px;}
.yf30_c00000{bottom:292.800450px;}
.ya9e_c00000{bottom:292.801107px;}
.y90_c00000{bottom:292.980450px;}
.ybf_c00000{bottom:293.340450px;}
.y115_c00000{bottom:293.520450px;}
.y1076_c00000{bottom:293.610450px;}
.y7d5_c00000{bottom:293.970450px;}
.yed5_c00000{bottom:294.060450px;}
.y10cb_c00000{bottom:294.240450px;}
.y6b2_c00000{bottom:294.242520px;}
.y4a3_c00000{bottom:294.510450px;}
.y766_c00000{bottom:294.600450px;}
.yc93_c00000{bottom:294.690450px;}
.y8c6_c00000{bottom:294.780600px;}
.y744_c00000{bottom:294.870450px;}
.ye42_c00000{bottom:295.051107px;}
.yb63_c00000{bottom:295.230450px;}
.yd1a_c00000{bottom:295.410450px;}
.yca1_c00000{bottom:295.680600px;}
.y75a_c00000{bottom:295.860450px;}
.y334_c00000{bottom:296.473242px;}
.yd56_c00000{bottom:296.490450px;}
.y187_c00000{bottom:296.563242px;}
.yd2e_c00000{bottom:296.580450px;}
.y23f_c00000{bottom:296.760450px;}
.y2d9_c00000{bottom:297.390450px;}
.yfb4_c00000{bottom:297.660600px;}
.y20b_c00000{bottom:297.750450px;}
.yd08_c00000{bottom:298.020450px;}
.y580_c00000{bottom:298.110450px;}
.yebc_c00000{bottom:298.290450px;}
.yc7b_c00000{bottom:298.470450px;}
.ye9d_c00000{bottom:298.560450px;}
.yc2b_c00000{bottom:298.740450px;}
.y10b0_c00000{bottom:298.920450px;}
.y11bb_c00000{bottom:298.920600px;}
.y15e_c00000{bottom:299.010450px;}
.ye5d_c00000{bottom:299.280450px;}
.y821_c00000{bottom:299.370450px;}
.ydc7_c00000{bottom:299.370657px;}
.yee_c00000{bottom:299.640450px;}
.y25b_c00000{bottom:299.640459px;}
.y73e_c00000{bottom:299.640540px;}
.y5ce_c00000{bottom:299.640648px;}
.y248_c00000{bottom:299.640657px;}
.y613_c00000{bottom:299.640666px;}
.y870_c00000{bottom:299.640864px;}
.y95f_c00000{bottom:299.640873px;}
.y63d_c00000{bottom:299.641005px;}
.yd8d_c00000{bottom:299.641071px;}
.y83b_c00000{bottom:299.641212px;}
.y853_c00000{bottom:299.641260px;}
.ydbc_c00000{bottom:299.641419px;}
.y3eb_c00000{bottom:299.730450px;}
.y3c2_c00000{bottom:299.730639px;}
.y546_c00000{bottom:299.730657px;}
.y445_c00000{bottom:299.730864px;}
.ycbe_c00000{bottom:299.910450px;}
.y5e_c00000{bottom:300.270450px;}
.y7ba_c00000{bottom:300.270600px;}
.y117f_c00000{bottom:300.271257px;}
.y54b_c00000{bottom:300.360450px;}
.y433_c00000{bottom:300.630450px;}
.y1d2_c00000{bottom:300.720450px;}
.yc24_c00000{bottom:300.900600px;}
.yb31_c00000{bottom:300.990600px;}
.y7e3_c00000{bottom:301.080450px;}
.y4c0_c00000{bottom:301.260450px;}
.yd86_c00000{bottom:301.530600px;}
.y10f0_c00000{bottom:301.710450px;}
.y6cf_c00000{bottom:301.800450px;}
.y7d0_c00000{bottom:301.980450px;}
.y496_c00000{bottom:302.070450px;}
.y6dd_c00000{bottom:302.160450px;}
.yab5_c00000{bottom:302.430450px;}
.y712_c00000{bottom:302.520450px;}
.ya54_c00000{bottom:302.610666px;}
.y1186_c00000{bottom:302.611764px;}
.y8b0_c00000{bottom:302.700450px;}
.y9db_c00000{bottom:302.880450px;}
.y651_c00000{bottom:302.970450px;}
.ydfc_c00000{bottom:303.330600px;}
.yf5c_c00000{bottom:303.960450px;}
.ybdc_c00000{bottom:303.960600px;}
.y1152_c00000{bottom:304.140450px;}
.y501_c00000{bottom:304.590450px;}
.y224_c00000{bottom:304.680450px;}
.ya34_c00000{bottom:304.771665px;}
.yd7a_c00000{bottom:304.950450px;}
.y301_c00000{bottom:305.130450px;}
.y891_c00000{bottom:305.400450px;}
.y867_c00000{bottom:305.850600px;}
.y8bb_c00000{bottom:306.389307px;}
.y1ea_c00000{bottom:306.390450px;}
.y3dc_c00000{bottom:306.480450px;}
.yed7_c00000{bottom:306.570450px;}
.y8d3_c00000{bottom:306.750600px;}
.y1138_c00000{bottom:306.840450px;}
.yfd0_c00000{bottom:307.110450px;}
.yd48_c00000{bottom:307.200450px;}
.y116c_c00000{bottom:307.290450px;}
.y35a_c00000{bottom:307.380450px;}
.y948_c00000{bottom:307.741410px;}
.y937_c00000{bottom:308.011359px;}
.yf54_c00000{bottom:308.100450px;}
.y8a2_c00000{bottom:308.190600px;}
.y106e_c00000{bottom:308.370600px;}
.ye1a_c00000{bottom:308.550450px;}
.y790_c00000{bottom:308.640450px;}
.y5b5_c00000{bottom:308.730450px;}
.y741_c00000{bottom:309.000450px;}
.y462_c00000{bottom:309.090450px;}
.y1032_c00000{bottom:309.092151px;}
.ye39_c00000{bottom:309.180450px;}
.y1100_c00000{bottom:309.270450px;}
.y474_c00000{bottom:309.630045px;}
.y380_c00000{bottom:309.630450px;}
.y5db_c00000{bottom:309.720450px;}
.y10d8_c00000{bottom:309.990450px;}
.yaf2_c00000{bottom:310.080450px;}
.y2ce_c00000{bottom:310.170450px;}
.y1079_c00000{bottom:310.440450px;}
.y22_c00000{bottom:310.500000px;}
.y103f_c00000{bottom:310.620600px;}
.ya8a_c00000{bottom:310.890450px;}
.y516_c00000{bottom:311.070450px;}
.yb75_c00000{bottom:311.160450px;}
.yf8e_c00000{bottom:311.340450px;}
.y8e6_c00000{bottom:311.520450px;}
.y5ed_c00000{bottom:311.970450px;}
.y11a6_c00000{bottom:312.330600px;}
.ye6d_c00000{bottom:312.510450px;}
.y28b_c00000{bottom:312.780450px;}
.y1015_c00000{bottom:312.960450px;}
.ycd7_c00000{bottom:312.960600px;}
.ye0f_c00000{bottom:312.961476px;}
.y100a_c00000{bottom:313.230450px;}
.y11ae_c00000{bottom:313.410450px;}
.y110b_c00000{bottom:313.500450px;}
.y760_c00000{bottom:313.500600px;}
.y6ba_c00000{bottom:313.590600px;}
.yb06_c00000{bottom:313.592016px;}
.y8f_c00000{bottom:313.680450px;}
.ybe_c00000{bottom:314.040450px;}
.y984_c00000{bottom:314.220450px;}
.yc61_c00000{bottom:314.310450px;}
.ya9d_c00000{bottom:314.490450px;}
.yb8e_c00000{bottom:314.850600px;}
.y79b_c00000{bottom:315.030450px;}
.y4a6_c00000{bottom:315.300450px;}
.y216_c00000{bottom:315.390450px;}
.y672_c00000{bottom:315.840450px;}
.y6b1_c00000{bottom:315.842925px;}
.y1091_c00000{bottom:315.930450px;}
.ye4f_c00000{bottom:316.110600px;}
.y7f3_c00000{bottom:316.380450px;}
.yf2f_c00000{bottom:316.470450px;}
.ydc6_c00000{bottom:316.560468px;}
.ye41_c00000{bottom:316.740450px;}
.y25a_c00000{bottom:316.920450px;}
.y3fd_c00000{bottom:316.920459px;}
.y545_c00000{bottom:316.920468px;}
.y73d_c00000{bottom:316.920531px;}
.y1e9_c00000{bottom:316.920639px;}
.y247_c00000{bottom:316.920648px;}
.y612_c00000{bottom:316.920657px;}
.y444_c00000{bottom:316.920675px;}
.y86f_c00000{bottom:316.920855px;}
.y95e_c00000{bottom:316.920864px;}
.y61c_c00000{bottom:316.920996px;}
.yd8c_c00000{bottom:316.921062px;}
.y83a_c00000{bottom:316.921203px;}
.y852_c00000{bottom:316.921251px;}
.ydbb_c00000{bottom:316.921410px;}
.y42d_c00000{bottom:317.010450px;}
.y931_c00000{bottom:317.370450px;}
.yb15_c00000{bottom:317.460450px;}
.y300_c00000{bottom:317.550450px;}
.y7a7_c00000{bottom:317.550600px;}
.y321_c00000{bottom:317.640450px;}
.y10ca_c00000{bottom:317.820450px;}
.y4a2_c00000{bottom:318.090450px;}
.ybe2_c00000{bottom:318.180450px;}
.yc92_c00000{bottom:318.270450px;}
.y8c5_c00000{bottom:318.450600px;}
.yc16_c00000{bottom:318.540450px;}
.y4c7_c00000{bottom:318.630450px;}
.y69b_c00000{bottom:318.720450px;}
.yb62_c00000{bottom:318.900450px;}
.yd19_c00000{bottom:319.080450px;}
.yb92_c00000{bottom:319.080639px;}
.yca0_c00000{bottom:319.350600px;}
.y759_c00000{bottom:319.440450px;}
.y2ac_c00000{bottom:319.710450px;}
.ya53_c00000{bottom:319.890657px;}
.yd2d_c00000{bottom:320.160450px;}
.yed_c00000{bottom:320.340450px;}
.y23e_c00000{bottom:320.430450px;}
.y743_c00000{bottom:320.610450px;}
.y4ab_c00000{bottom:320.610702px;}
.y27a_c00000{bottom:320.970450px;}
.y533_c00000{bottom:321.240450px;}
.y20a_c00000{bottom:321.330450px;}
.yfb3_c00000{bottom:321.330600px;}
.yd07_c00000{bottom:321.690450px;}
.y57f_c00000{bottom:321.780450px;}
.yebb_c00000{bottom:321.870450px;}
.y117e_c00000{bottom:321.960600px;}
.ya33_c00000{bottom:321.961476px;}
.y5d_c00000{bottom:322.140450px;}
.y2ee_c00000{bottom:322.410450px;}
.y11ba_c00000{bottom:322.500600px;}
.y1005_c00000{bottom:322.590450px;}
.y60d_c00000{bottom:322.680450px;}
.y820_c00000{bottom:322.950450px;}
.y6a6_c00000{bottom:323.220450px;}
.y1075_c00000{bottom:323.310450px;}
.y85d_c00000{bottom:323.400450px;}
.y74a_c00000{bottom:323.490450px;}
.y139_c00000{bottom:323.490600px;}
.y8ba_c00000{bottom:323.579118px;}
.y728_c00000{bottom:323.580450px;}
.y3c1_c00000{bottom:323.670450px;}
.y415_c00000{bottom:324.300450px;}
.y1185_c00000{bottom:324.301107px;}
.y1d1_c00000{bottom:324.390450px;}
.yc23_c00000{bottom:324.480600px;}
.yb30_c00000{bottom:324.570600px;}
.y4bf_c00000{bottom:324.840450px;}
.y947_c00000{bottom:324.931221px;}
.yd85_c00000{bottom:325.200600px;}
.y10ef_c00000{bottom:325.380450px;}
.y6ce_c00000{bottom:325.470450px;}
.y495_c00000{bottom:325.740450px;}
.ye19_c00000{bottom:325.830450px;}
.y765_c00000{bottom:326.100450px;}
.y7d4_c00000{bottom:326.190450px;}
.yeeb_c00000{bottom:326.280450px;}
.y9da_c00000{bottom:326.460450px;}
.y650_c00000{bottom:326.640450px;}
.ye_c00000{bottom:327.000000px;}
.ydfb_c00000{bottom:327.000600px;}
.yf5b_c00000{bottom:327.540450px;}
.ybdb_c00000{bottom:327.540600px;}
.y1151_c00000{bottom:327.720450px;}
.yc5f_c00000{bottom:327.810450px;}
.y500_c00000{bottom:328.260450px;}
.y7b9_c00000{bottom:328.350600px;}
.yd79_c00000{bottom:328.530600px;}
.y5b4_c00000{bottom:328.800648px;}
.y1063_c00000{bottom:328.890450px;}
.y890_c00000{bottom:329.070450px;}
.ybbc_c00000{bottom:329.160450px;}
.y2fb_c00000{bottom:329.430450px;}
.y866_c00000{bottom:329.430600px;}
.y936_c00000{bottom:329.611764px;}
.y232_c00000{bottom:329.970450px;}
.yecc_c00000{bottom:330.060450px;}
.ye0e_c00000{bottom:330.241467px;}
.y8d2_c00000{bottom:330.330600px;}
.y1137_c00000{bottom:330.420450px;}
.yfcf_c00000{bottom:330.780450px;}
.yd47_c00000{bottom:330.870450px;}
.y116b_c00000{bottom:330.960450px;}
.y473_c00000{bottom:331.230450px;}
.y15d_c00000{bottom:331.680450px;}
.y8a1_c00000{bottom:331.770600px;}
.y78f_c00000{bottom:332.220450px;}
.yed6_c00000{bottom:332.310450px;}
.y6f6_c00000{bottom:332.400450px;}
.y461_c00000{bottom:332.760450px;}
.y9f1_c00000{bottom:332.760600px;}
.y10ff_c00000{bottom:332.850450px;}
.ye38_c00000{bottom:332.940450px;}
.y1058_c00000{bottom:333.030600px;}
.y1121_c00000{bottom:333.210450px;}
.y37f_c00000{bottom:333.300450px;}
.y5da_c00000{bottom:333.390450px;}
.y7e2_c00000{bottom:333.660450px;}
.y2cd_c00000{bottom:333.840450px;}
.ydc5_c00000{bottom:333.840459px;}
.ya25_c00000{bottom:333.840600px;}
.y73c_c00000{bottom:334.110342px;}
.yfad_c00000{bottom:334.110450px;}
.y246_c00000{bottom:334.110459px;}
.y611_c00000{bottom:334.110468px;}
.y86e_c00000{bottom:334.110666px;}
.y624_c00000{bottom:334.110675px;}
.y61b_c00000{bottom:334.110807px;}
.yd8b_c00000{bottom:334.110873px;}
.y839_c00000{bottom:334.111014px;}
.y851_c00000{bottom:334.111062px;}
.ydba_c00000{bottom:334.111221px;}
.y4e2_c00000{bottom:334.200450px;}
.y4c9_c00000{bottom:334.200459px;}
.y443_c00000{bottom:334.200666px;}
.y468_c00000{bottom:334.200855px;}
.y9b0_c00000{bottom:334.290045px;}
.y103e_c00000{bottom:334.290600px;}
.y8e_c00000{bottom:334.380450px;}
.y7cf_c00000{bottom:334.560450px;}
.ybd_c00000{bottom:334.740450px;}
.y259_c00000{bottom:334.830450px;}
.yf8d_c00000{bottom:334.920450px;}
.yff4_c00000{bottom:335.010450px;}
.y711_c00000{bottom:335.100450px;}
.yb05_c00000{bottom:335.281359px;}
.y5ec_c00000{bottom:335.640450px;}
.y11a5_c00000{bottom:336.000600px;}
.ye6c_c00000{bottom:336.180450px;}
.yb91_c00000{bottom:336.270450px;}
.y28a_c00000{bottom:336.450450px;}
.y1014_c00000{bottom:336.540450px;}
.ycd6_c00000{bottom:336.540600px;}
.ye18_c00000{bottom:336.990600px;}
.y110a_c00000{bottom:337.080450px;}
.ya52_c00000{bottom:337.080468px;}
.y6b9_c00000{bottom:337.170600px;}
.y7d3_c00000{bottom:337.350450px;}
.y6b0_c00000{bottom:337.532268px;}
.yab4_c00000{bottom:337.888326px;}
.y90b_c00000{bottom:337.890450px;}
.yb8d_c00000{bottom:338.430600px;}
.y79a_c00000{bottom:338.700450px;}
.y4a5_c00000{bottom:338.880450px;}
.y215_c00000{bottom:338.970450px;}
.y119f_c00000{bottom:339.240450px;}
.ya32_c00000{bottom:339.241467px;}
.y671_c00000{bottom:339.510450px;}
.yd74_c00000{bottom:339.600324px;}
.y1031_c00000{bottom:339.691764px;}
.y565_c00000{bottom:339.780450px;}
.ye4e_c00000{bottom:339.780600px;}
.yae5_c00000{bottom:339.870600px;}
.y359_c00000{bottom:339.960450px;}
.y7f2_c00000{bottom:340.050450px;}
.y7a6_c00000{bottom:340.500600px;}
.y42c_c00000{bottom:340.590450px;}
.y8b9_c00000{bottom:340.859109px;}
.y1e8_c00000{bottom:340.860450px;}
.y3fc_c00000{bottom:340.950450px;}
.y106d_c00000{bottom:341.040600px;}
.yec_c00000{bottom:341.220450px;}
.yed4_c00000{bottom:341.310450px;}
.yf0f_c00000{bottom:341.400450px;}
.y4a1_c00000{bottom:341.760450px;}
.yc91_c00000{bottom:341.940450px;}
.y8c4_c00000{bottom:342.030600px;}
.yaf1_c00000{bottom:342.032166px;}
.y9ca_c00000{bottom:342.120450px;}
.yc15_c00000{bottom:342.210450px;}
.y4aa_c00000{bottom:342.211107px;}
.y946_c00000{bottom:342.211212px;}
.y4c6_c00000{bottom:342.300450px;}
.y69a_c00000{bottom:342.390450px;}
.yd18_c00000{bottom:342.660450px;}
.yc9f_c00000{bottom:342.930600px;}
.y758_c00000{bottom:343.110450px;}
.yd6b_c00000{bottom:343.470450px;}
.yd2c_c00000{bottom:343.830450px;}
.y5c_c00000{bottom:344.010450px;}
.y23d_c00000{bottom:344.100450px;}
.y8e5_c00000{bottom:344.190450px;}
.ya37_c00000{bottom:344.280702px;}
.y279_c00000{bottom:344.640450px;}
.y333_c00000{bottom:344.715276px;}
.y1009_c00000{bottom:344.730450px;}
.y186_c00000{bottom:344.805276px;}
.y532_c00000{bottom:344.910450px;}
.yfb2_c00000{bottom:344.910600px;}
.y209_c00000{bottom:345.000450px;}
.yd06_c00000{bottom:345.270450px;}
.y57e_c00000{bottom:345.360450px;}
.ye89_c00000{bottom:345.450450px;}
.yeba_c00000{bottom:345.540450px;}
.ya9c_c00000{bottom:345.720450px;}
.y1184_c00000{bottom:345.990450px;}
.y5b3_c00000{bottom:345.990459px;}
.y1004_c00000{bottom:346.170450px;}
.y11b9_c00000{bottom:346.170600px;}
.y1007_c00000{bottom:346.260450px;}
.y223_c00000{bottom:346.350450px;}
.ye5c_c00000{bottom:346.530450px;}
.y81f_c00000{bottom:346.620450px;}
.yf44_c00000{bottom:346.890450px;}
.y85c_c00000{bottom:346.980450px;}
.y1a9_c00000{bottom:347.070450px;}
.ycbd_c00000{bottom:347.160450px;}
.ye0d_c00000{bottom:347.431278px;}
.y414_c00000{bottom:347.880450px;}
.y1d0_c00000{bottom:347.970450px;}
.yc22_c00000{bottom:348.150600px;}
.yb2f_c00000{bottom:348.240600px;}
.y4be_c00000{bottom:348.510450px;}
.yd84_c00000{bottom:348.870600px;}
.y10ee_c00000{bottom:348.960450px;}
.y6cd_c00000{bottom:349.050450px;}
.y494_c00000{bottom:349.320450px;}
.y930_c00000{bottom:349.322925px;}
.y6dc_c00000{bottom:349.410450px;}
.yeea_c00000{bottom:349.950450px;}
.y9d9_c00000{bottom:350.130450px;}
.y64f_c00000{bottom:350.220450px;}
.y10c9_c00000{bottom:350.490450px;}
.y107f_c00000{bottom:350.580450px;}
.ydfa_c00000{bottom:350.580600px;}
.ybda_c00000{bottom:351.210600px;}
.y935_c00000{bottom:351.301107px;}
.y6df_c00000{bottom:351.390450px;}
.y60e_c00000{bottom:351.390459px;}
.y86d_c00000{bottom:351.390657px;}
.y623_c00000{bottom:351.390666px;}
.y61a_c00000{bottom:351.390798px;}
.yd8a_c00000{bottom:351.390864px;}
.y838_c00000{bottom:351.391005px;}
.y850_c00000{bottom:351.391053px;}
.ydb9_c00000{bottom:351.391212px;}
.yb61_c00000{bottom:351.480450px;}
.y442_c00000{bottom:351.480657px;}
.y467_c00000{bottom:351.480846px;}
.y4ff_c00000{bottom:351.840450px;}
.y1e7_c00000{bottom:352.020450px;}
.y7b8_c00000{bottom:352.020600px;}
.y2ab_c00000{bottom:352.110450px;}
.y73b_c00000{bottom:352.200450px;}
.yd78_c00000{bottom:352.200600px;}
.yc4b_c00000{bottom:352.470450px;}
.y88f_c00000{bottom:352.650450px;}
.yd55_c00000{bottom:352.740450px;}
.yba0_c00000{bottom:353.010450px;}
.y865_c00000{bottom:353.100600px;}
.y117d_c00000{bottom:353.280450px;}
.ybd0_c00000{bottom:353.370600px;}
.y654_c00000{bottom:353.640450px;}
.y8d1_c00000{bottom:354.000600px;}
.y1136_c00000{bottom:354.090450px;}
.ya51_c00000{bottom:354.360459px;}
.yd46_c00000{bottom:354.450450px;}
.ycfa_c00000{bottom:354.450600px;}
.y116a_c00000{bottom:354.540450px;}
.y8d_c00000{bottom:355.080450px;}
.y15c_c00000{bottom:355.260450px;}
.yf53_c00000{bottom:355.350450px;}
.ybc_c00000{bottom:355.440450px;}
.y8a0_c00000{bottom:355.440600px;}
.y33_c00000{bottom:355.500000px;}
.yded_c00000{bottom:355.620600px;}
.y6a5_c00000{bottom:355.890450px;}
.y6f5_c00000{bottom:355.980450px;}
.y2ed_c00000{bottom:356.340450px;}
.y9f0_c00000{bottom:356.430600px;}
.ya31_c00000{bottom:356.431278px;}
.y10fe_c00000{bottom:356.520450px;}
.y1057_c00000{bottom:356.610600px;}
.ye37_c00000{bottom:356.790450px;}
.y37e_c00000{bottom:356.880450px;}
.y5d9_c00000{bottom:356.970450px;}
.yb04_c00000{bottom:356.970702px;}
.y7e1_c00000{bottom:357.330450px;}
.y2cc_c00000{bottom:357.420450px;}
.ya24_c00000{bottom:357.420600px;}
.yab3_c00000{bottom:357.508488px;}
.ydc4_c00000{bottom:357.870450px;}
.y103d_c00000{bottom:357.870600px;}
.y8b8_c00000{bottom:358.139100px;}
.y245_c00000{bottom:358.140450px;}
.y3fb_c00000{bottom:358.230450px;}
.y515_c00000{bottom:358.320450px;}
.yb74_c00000{bottom:358.410450px;}
.y101b_c00000{bottom:358.500450px;}
.yf8c_c00000{bottom:358.590450px;}
.yff3_c00000{bottom:358.680450px;}
.y710_c00000{bottom:358.770450px;}
.y5eb_c00000{bottom:359.220450px;}
.y6af_c00000{bottom:359.221611px;}
.yf4c_c00000{bottom:359.310450px;}
.y945_c00000{bottom:359.491203px;}
.y289_c00000{bottom:360.030450px;}
.yefe_c00000{bottom:360.120450px;}
.ycd5_c00000{bottom:360.210450px;}
.ya74_c00000{bottom:360.660450px;}
.y1109_c00000{bottom:360.750450px;}
.y6b8_c00000{bottom:360.840600px;}
.y1030_c00000{bottom:361.381107px;}
.y90a_c00000{bottom:361.470450px;}
.ybbb_c00000{bottom:361.740450px;}
.yeb_c00000{bottom:361.920450px;}
.yb90_c00000{bottom:362.010450px;}
.y2fa_c00000{bottom:362.100450px;}
.yb8c_c00000{bottom:362.100600px;}
.y799_c00000{bottom:362.280450px;}
.y472_c00000{bottom:362.550450px;}
.y214_c00000{bottom:362.640450px;}
.y670_c00000{bottom:363.180450px;}
.ye9c_c00000{bottom:363.184491px;}
.y5b2_c00000{bottom:363.270450px;}
.y564_c00000{bottom:363.360450px;}
.yae4_c00000{bottom:363.450600px;}
.y358_c00000{bottom:363.630450px;}
.yf2e_c00000{bottom:363.720450px;}
.yaf0_c00000{bottom:363.721509px;}
.y4a9_c00000{bottom:363.900450px;}
.y42b_c00000{bottom:364.260450px;}
.y106c_c00000{bottom:364.620600px;}
.ye0c_c00000{bottom:364.711269px;}
.y320_c00000{bottom:364.890450px;}
.yf0e_c00000{bottom:364.980450px;}
.y916_c00000{bottom:365.250450px;}
.y4a0_c00000{bottom:365.340450px;}
.yc90_c00000{bottom:365.520450px;}
.yad6_c00000{bottom:365.610600px;}
.y9c9_c00000{bottom:365.700450px;}
.y8c3_c00000{bottom:365.700600px;}
.yc14_c00000{bottom:365.790450px;}
.y5b_c00000{bottom:365.880450px;}
.ya36_c00000{bottom:365.970045px;}
.y699_c00000{bottom:365.970450px;}
.y7ce_c00000{bottom:366.060972px;}
.yd17_c00000{bottom:366.330450px;}
.yd9c_c00000{bottom:366.509649px;}
.yc9e_c00000{bottom:366.600600px;}
.y1078_c00000{bottom:366.690450px;}
.yc60_c00000{bottom:366.960600px;}
.yd6a_c00000{bottom:367.140450px;}
.yfa2_c00000{bottom:367.410450px;}
.y8e4_c00000{bottom:367.770450px;}
.y278_c00000{bottom:368.220450px;}
.y531_c00000{bottom:368.490450px;}
.y208_c00000{bottom:368.580450px;}
.y11a4_c00000{bottom:368.580600px;}
.y96b_c00000{bottom:368.670450px;}
.y441_c00000{bottom:368.670468px;}
.y4c8_c00000{bottom:368.670609px;}
.y5f6_c00000{bottom:368.670648px;}
.y466_c00000{bottom:368.670657px;}
.y619_c00000{bottom:368.670789px;}
.yd89_c00000{bottom:368.670855px;}
.y837_c00000{bottom:368.670996px;}
.y84f_c00000{bottom:368.671044px;}
.ydb8_c00000{bottom:368.671203px;}
.ye6b_c00000{bottom:368.760450px;}
.yd05_c00000{bottom:368.940450px;}
.y57d_c00000{bottom:369.030450px;}
.yeb9_c00000{bottom:369.120450px;}
.y1013_c00000{bottom:369.210450px;}
.y244_c00000{bottom:369.300450px;}
.y594_c00000{bottom:369.390450px;}
.y75f_c00000{bottom:369.750600px;}
.y1003_c00000{bottom:369.840450px;}
.y60c_c00000{bottom:369.930450px;}
.y1156_c00000{bottom:370.110450px;}
.ye5b_c00000{bottom:370.200450px;}
.y81e_c00000{bottom:370.290450px;}
.y983_c00000{bottom:370.470450px;}
.y1008_c00000{bottom:370.560450px;}
.y1a8_c00000{bottom:370.650450px;}
.ycbc_c00000{bottom:370.830450px;}
.y73a_c00000{bottom:370.830816px;}
.y92f_c00000{bottom:371.012268px;}
.y1029_c00000{bottom:371.370600px;}
.y413_c00000{bottom:371.550450px;}
.y1cf_c00000{bottom:371.640450px;}
.yc21_c00000{bottom:371.730600px;}
.yb2e_c00000{bottom:371.910600px;}
.y4bd_c00000{bottom:372.090450px;}
.ya0e_c00000{bottom:372.450600px;}
.y10ed_c00000{bottom:372.630450px;}
.y6cc_c00000{bottom:372.720450px;}
.y6db_c00000{bottom:372.990450px;}
.y7a5_c00000{bottom:373.080450px;}
.y2c_c00000{bottom:373.500000px;}
.yee9_c00000{bottom:373.530450px;}
.y9d8_c00000{bottom:373.710450px;}
.ya30_c00000{bottom:373.711269px;}
.y727_c00000{bottom:373.890450px;}
.y10c8_c00000{bottom:374.070450px;}
.ybe1_c00000{bottom:374.430450px;}
.ybd9_c00000{bottom:374.790600px;}
.yc5e_c00000{bottom:375.060450px;}
.yb60_c00000{bottom:375.150450px;}
.y74f_c00000{bottom:375.331122px;}
.y3fa_c00000{bottom:375.420450px;}
.y7b7_c00000{bottom:375.600600px;}
.y757_c00000{bottom:375.690450px;}
.yd77_c00000{bottom:375.780600px;}
.ybb_c00000{bottom:376.140450px;}
.y88e_c00000{bottom:376.320450px;}
.yd2b_c00000{bottom:376.410450px;}
.yb9f_c00000{bottom:376.590450px;}
.y23c_c00000{bottom:376.680450px;}
.y864_c00000{bottom:376.680600px;}
.y114_c00000{bottom:376.681005px;}
.y944_c00000{bottom:376.681014px;}
.yfc6_c00000{bottom:376.770450px;}
.y7cc_c00000{bottom:376.860450px;}
.ybcf_c00000{bottom:376.950600px;}
.y5fa_c00000{bottom:377.220450px;}
.yfb1_c00000{bottom:377.580450px;}
.y8d0_c00000{bottom:377.580600px;}
.yd45_c00000{bottom:378.120450px;}
.ycf9_c00000{bottom:378.120600px;}
.y1169_c00000{bottom:378.210450px;}
.y3c0_c00000{bottom:378.300450px;}
.ya9b_c00000{bottom:378.390450px;}
.yb03_c00000{bottom:378.571107px;}
.y15b_c00000{bottom:378.930450px;}
.yf52_c00000{bottom:379.020450px;}
.y89f_c00000{bottom:379.020600px;}
.ydec_c00000{bottom:379.200600px;}
.y78e_c00000{bottom:379.470450px;}
.y19_c00000{bottom:379.500000px;}
.y6f4_c00000{bottom:379.650450px;}
.y460_c00000{bottom:380.010450px;}
.y10fd_c00000{bottom:380.100450px;}
.y1056_c00000{bottom:380.280600px;}
.y37d_c00000{bottom:380.550450px;}
.y11be_c00000{bottom:380.551107px;}
.y5d8_c00000{bottom:380.640450px;}
.y6ae_c00000{bottom:380.822016px;}
.y7e0_c00000{bottom:380.910450px;}
.y2cb_c00000{bottom:381.090450px;}
.ya23_c00000{bottom:381.090600px;}
.ya89_c00000{bottom:381.810450px;}
.y493_c00000{bottom:381.990450px;}
.ye0b_c00000{bottom:381.991260px;}
.yf8b_c00000{bottom:382.170450px;}
.yff2_c00000{bottom:382.350450px;}
.y70f_c00000{bottom:382.440450px;}
.yea_c00000{bottom:382.620450px;}
.y5ea_c00000{bottom:382.890450px;}
.y102f_c00000{bottom:383.070450px;}
.ydf9_c00000{bottom:383.250600px;}
.y288_c00000{bottom:383.700450px;}
.ycd4_c00000{bottom:383.790450px;}
.y1150_c00000{bottom:384.060450px;}
.y1108_c00000{bottom:384.420450px;}
.y6b7_c00000{bottom:384.420600px;}
.y4fe_c00000{bottom:384.510450px;}
.ye9b_c00000{bottom:384.873834px;}
.y2aa_c00000{bottom:384.960450px;}
.y909_c00000{bottom:385.140450px;}
.y8c_c00000{bottom:385.319673px;}
.ybba_c00000{bottom:385.410450px;}
.yaef_c00000{bottom:385.410852px;}
.y138_c00000{bottom:385.590600px;}
.y2f9_c00000{bottom:385.680450px;}
.yb8b_c00000{bottom:385.680600px;}
.y117c_c00000{bottom:385.860450px;}
.y5f5_c00000{bottom:385.860459px;}
.y622_c00000{bottom:385.860468px;}
.y67e_c00000{bottom:385.860600px;}
.yadb_c00000{bottom:385.860666px;}
.y836_c00000{bottom:385.860807px;}
.y84e_c00000{bottom:385.860855px;}
.ydb7_c00000{bottom:385.861014px;}
.y798_c00000{bottom:385.950450px;}
.y3f9_c00000{bottom:385.950459px;}
.y465_c00000{bottom:385.950648px;}
.yab2_c00000{bottom:386.218794px;}
.y213_c00000{bottom:386.220450px;}
.yecb_c00000{bottom:386.310450px;}
.y67b_c00000{bottom:386.580450px;}
.y77c_c00000{bottom:386.580600px;}
.y1135_c00000{bottom:386.670450px;}
.y8b7_c00000{bottom:386.759226px;}
.y66f_c00000{bottom:386.760450px;}
.y563_c00000{bottom:387.030450px;}
.ye4d_c00000{bottom:387.030600px;}
.y357_c00000{bottom:387.210450px;}
.y7f1_c00000{bottom:387.300450px;}
.y1074_c00000{bottom:387.390450px;}
.ya35_c00000{bottom:387.570450px;}
.y5a_c00000{bottom:387.750450px;}
.y42a_c00000{bottom:387.840450px;}
.y739_c00000{bottom:388.110807px;}
.yf75_c00000{bottom:388.200600px;}
.y106b_c00000{bottom:388.290600px;}
.y31f_c00000{bottom:388.470450px;}
.yed3_c00000{bottom:388.560450px;}
.yf0d_c00000{bottom:388.650450px;}
.y49f_c00000{bottom:389.010450px;}
.y9ef_c00000{bottom:389.100600px;}
.yc8f_c00000{bottom:389.190450px;}
.ye17_c00000{bottom:389.190600px;}
.y8c2_c00000{bottom:389.280600px;}
.y9c8_c00000{bottom:389.370450px;}
.yc13_c00000{bottom:389.460450px;}
.y3db_c00000{bottom:389.550450px;}
.y698_c00000{bottom:389.640450px;}
.yd16_c00000{bottom:389.910450px;}
.y2ec_c00000{bottom:390.270450px;}
.yc9d_c00000{bottom:390.270600px;}
.y103c_c00000{bottom:390.540600px;}
.yd69_c00000{bottom:390.720450px;}
.yfa1_c00000{bottom:390.990450px;}
.ya2f_c00000{bottom:390.991260px;}
.y101a_c00000{bottom:391.170450px;}
.y7cd_c00000{bottom:391.350450px;}
.y8e3_c00000{bottom:391.440450px;}
.ya_c00000{bottom:391.500000px;}
.y277_c00000{bottom:391.890450px;}
.y530_c00000{bottom:392.160450px;}
.y207_c00000{bottom:392.250450px;}
.yd04_c00000{bottom:392.520450px;}
.y57c_c00000{bottom:392.610450px;}
.y610_c00000{bottom:392.610600px;}
.y40a_c00000{bottom:392.700600px;}
.y92e_c00000{bottom:392.701611px;}
.yeb8_c00000{bottom:392.790450px;}
.yc7a_c00000{bottom:392.970450px;}
.y332_c00000{bottom:393.045573px;}
.y185_c00000{bottom:393.135573px;}
.y5b1_c00000{bottom:393.150450px;}
.ya73_c00000{bottom:393.240450px;}
.y11ad_c00000{bottom:393.330450px;}
.y1002_c00000{bottom:393.420450px;}
.y11b8_c00000{bottom:393.420600px;}
.y60b_c00000{bottom:393.600450px;}
.ye5a_c00000{bottom:393.780450px;}
.y943_c00000{bottom:393.961005px;}
.y4e1_c00000{bottom:394.050450px;}
.y982_c00000{bottom:394.140450px;}
.y7bc_c00000{bottom:394.230450px;}
.y1a7_c00000{bottom:394.320450px;}
.ycbb_c00000{bottom:394.410450px;}
.y103a_c00000{bottom:394.950450px;}
.y1028_c00000{bottom:394.950600px;}
.y93a_c00000{bottom:395.040450px;}
.yffb_c00000{bottom:395.130450px;}
.y1ce_c00000{bottom:395.220450px;}
.yc20_c00000{bottom:395.400600px;}
.yb2d_c00000{bottom:395.490600px;}
.y5c8_c00000{bottom:395.940450px;}
.ya0d_c00000{bottom:396.120600px;}
.y10ec_c00000{bottom:396.210450px;}
.y6cb_c00000{bottom:396.300450px;}
.y6da_c00000{bottom:396.660450px;}
.yba_c00000{bottom:396.750450px;}
.yd9b_c00000{bottom:397.199847px;}
.yee8_c00000{bottom:397.200450px;}
.y726_c00000{bottom:397.470450px;}
.yda2_c00000{bottom:397.470837px;}
.y10c7_c00000{bottom:397.740450px;}
.y915_c00000{bottom:397.830450px;}
.y1077_c00000{bottom:398.100450px;}
.ybd8_c00000{bottom:398.460600px;}
.yc5d_c00000{bottom:398.640450px;}
.yb5f_c00000{bottom:398.730450px;}
.ye0a_c00000{bottom:399.181071px;}
.y1062_c00000{bottom:399.720450px;}
.y88d_c00000{bottom:399.990450px;}
.yd2a_c00000{bottom:400.080450px;}
.yb02_c00000{bottom:400.260450px;}
.yfc5_c00000{bottom:400.350450px;}
.y863_c00000{bottom:400.350600px;}
.y7cb_c00000{bottom:400.530450px;}
.y74e_c00000{bottom:400.620600px;}
.y113_c00000{bottom:400.800699px;}
.y5f9_c00000{bottom:400.890450px;}
.y802_c00000{bottom:401.250450px;}
.y75e_c00000{bottom:401.250600px;}
.ya50_c00000{bottom:401.430450px;}
.yd44_c00000{bottom:401.700450px;}
.ycf8_c00000{bottom:401.700600px;}
.y1168_c00000{bottom:401.880450px;}
.y3bf_c00000{bottom:401.970450px;}
.y11bd_c00000{bottom:402.240450px;}
.y15a_c00000{bottom:402.510450px;}
.y6ad_c00000{bottom:402.511359px;}
.yf51_c00000{bottom:402.600450px;}
.y89e_c00000{bottom:402.690600px;}
.y81d_c00000{bottom:402.870450px;}
.ydeb_c00000{bottom:402.870600px;}
.y78d_c00000{bottom:403.140450px;}
.y60f_c00000{bottom:403.140459px;}
.yada_c00000{bottom:403.140657px;}
.y835_c00000{bottom:403.140798px;}
.y84d_c00000{bottom:403.140846px;}
.y63c_c00000{bottom:403.140864px;}
.ydb6_c00000{bottom:403.141005px;}
.y464_c00000{bottom:403.230639px;}
.ye9_c00000{bottom:403.320450px;}
.y45f_c00000{bottom:403.590450px;}
.y618_c00000{bottom:403.770450px;}
.y8aa_c00000{bottom:403.770600px;}
.y409_c00000{bottom:403.860450px;}
.y37c_c00000{bottom:404.220450px;}
.ye36_c00000{bottom:404.400450px;}
.y7df_c00000{bottom:404.580450px;}
.y2ca_c00000{bottom:404.670450px;}
.ya22_c00000{bottom:404.670600px;}
.y4bc_c00000{bottom:404.760450px;}
.y7a9_c00000{bottom:404.940450px;}
.y738_c00000{bottom:405.300618px;}
.ya1f_c00000{bottom:405.390450px;}
.ya88_c00000{bottom:405.480450px;}
.y492_c00000{bottom:405.570450px;}
.yb73_c00000{bottom:405.660450px;}
.yf8a_c00000{bottom:405.840450px;}
.yff1_c00000{bottom:405.930450px;}
.ybe0_c00000{bottom:405.930789px;}
.y70e_c00000{bottom:406.020450px;}
.y9d7_c00000{bottom:406.380450px;}
.y5e9_c00000{bottom:406.470450px;}
.yf4b_c00000{bottom:406.560450px;}
.ye9a_c00000{bottom:406.563177px;}
.ydf8_c00000{bottom:406.830600px;}
.yaee_c00000{bottom:407.011257px;}
.y756_c00000{bottom:407.190450px;}
.yefd_c00000{bottom:407.370450px;}
.ycd3_c00000{bottom:407.460450px;}
.y114f_c00000{bottom:407.640450px;}
.yb4a_c00000{bottom:408.000450px;}
.y4fd_c00000{bottom:408.090450px;}
.ya2e_c00000{bottom:408.181071px;}
.yda7_c00000{bottom:408.181359px;}
.y7b6_c00000{bottom:408.270600px;}
.yd76_c00000{bottom:408.450600px;}
.y908_c00000{bottom:408.720450px;}
.ybb9_c00000{bottom:408.990450px;}
.yb8a_c00000{bottom:409.350600px;}
.y8b_c00000{bottom:409.529538px;}
.y797_c00000{bottom:409.530450px;}
.y59_c00000{bottom:409.620450px;}
.y51b_c00000{bottom:409.800450px;}
.y212_c00000{bottom:409.890450px;}
.y3f8_c00000{bottom:409.980450px;}
.y23b_c00000{bottom:410.159829px;}
.y8cf_c00000{bottom:410.250450px;}
.y1134_c00000{bottom:410.340450px;}
.y66e_c00000{bottom:410.430450px;}
.y562_c00000{bottom:410.610450px;}
.ybeb_c00000{bottom:410.700450px;}
.ye4c_c00000{bottom:410.700600px;}
.y356_c00000{bottom:410.880450px;}
.y7f0_c00000{bottom:410.970450px;}
.y942_c00000{bottom:411.240996px;}
.yf43_c00000{bottom:411.511359px;}
.y6f0_c00000{bottom:411.780600px;}
.yf74_c00000{bottom:411.870600px;}
.y31e_c00000{bottom:412.140450px;}
.y6f3_c00000{bottom:412.230450px;}
.y222_c00000{bottom:412.410450px;}
.y49e_c00000{bottom:412.590450px;}
.y9ee_c00000{bottom:412.680600px;}
.yc8e_c00000{bottom:412.770450px;}
.yad5_c00000{bottom:412.860600px;}
.y9c7_c00000{bottom:412.950450px;}
.y8c1_c00000{bottom:412.950600px;}
.y1120_c00000{bottom:413.130450px;}
.y3da_c00000{bottom:413.220450px;}
.y5c7_c00000{bottom:413.940450px;}
.y102e_c00000{bottom:414.300450px;}
.yd68_c00000{bottom:414.390450px;}
.y92d_c00000{bottom:414.390954px;}
.yfa0_c00000{bottom:414.660450px;}
.y137_c00000{bottom:414.840600px;}
.yab1_c00000{bottom:414.929100px;}
.y8e2_c00000{bottom:415.020450px;}
.y8b6_c00000{bottom:415.469532px;}
.y2d8_c00000{bottom:415.470450px;}
.y1045_c00000{bottom:415.740450px;}
.y206_c00000{bottom:415.830450px;}
.yd03_c00000{bottom:416.190450px;}
.y57b_c00000{bottom:416.280450px;}
.yeb7_c00000{bottom:416.460450px;}
.ye09_c00000{bottom:416.461062px;}
.yc79_c00000{bottom:416.640450px;}
.ya72_c00000{bottom:416.910450px;}
.y11ac_c00000{bottom:417.000450px;}
.y1001_c00000{bottom:417.090450px;}
.y6b6_c00000{bottom:417.090600px;}
.yc4a_c00000{bottom:417.180954px;}
.yb9_c00000{bottom:417.450450px;}
.y287_c00000{bottom:417.630450px;}
.y4e0_c00000{bottom:417.720450px;}
.y85b_c00000{bottom:417.900450px;}
.ycba_c00000{bottom:418.080450px;}
.y2f8_c00000{bottom:418.350450px;}
.y1039_c00000{bottom:418.620450px;}
.y1027_c00000{bottom:418.620600px;}
.yd9a_c00000{bottom:418.800252px;}
.y39a_c00000{bottom:418.800450px;}
.y1cd_c00000{bottom:418.890450px;}
.yc1f_c00000{bottom:419.070600px;}
.yb2c_c00000{bottom:419.160450px;}
.ya0c_c00000{bottom:419.700600px;}
.y9af_c00000{bottom:419.790450px;}
.y6ca_c00000{bottom:419.970450px;}
.y7bb_c00000{bottom:420.060450px;}
.y6d9_c00000{bottom:420.330450px;}
.yabb_c00000{bottom:420.420648px;}
.y834_c00000{bottom:420.420789px;}
.y84c_c00000{bottom:420.420837px;}
.y63b_c00000{bottom:420.420855px;}
.ydb5_c00000{bottom:420.420996px;}
.y429_c00000{bottom:420.510450px;}
.y5f4_c00000{bottom:421.050450px;}
.y32c_c00000{bottom:421.140450px;}
.y10c6_c00000{bottom:421.320450px;}
.y914_c00000{bottom:421.500450px;}
.ye16_c00000{bottom:421.860450px;}
.y103b_c00000{bottom:421.950600px;}
.yc12_c00000{bottom:422.040450px;}
.yc5c_c00000{bottom:422.310450px;}
.yb5e_c00000{bottom:422.400450px;}
.yd15_c00000{bottom:422.580450px;}
.y737_c00000{bottom:422.580609px;}
.y1019_c00000{bottom:422.581122px;}
.yc9c_c00000{bottom:422.850600px;}
.y77b_c00000{bottom:423.120600px;}
.y88c_c00000{bottom:423.570450px;}
.yd54_c00000{bottom:423.660450px;}
.yd29_c00000{bottom:423.750450px;}
.ye8_c00000{bottom:423.930450px;}
.yfc4_c00000{bottom:424.020450px;}
.y7ca_c00000{bottom:424.110450px;}
.y2eb_c00000{bottom:424.200450px;}
.y99a_c00000{bottom:424.200600px;}
.y6ac_c00000{bottom:424.200702px;}
.y276_c00000{bottom:424.470450px;}
.y801_c00000{bottom:424.830450px;}
.y592_c00000{bottom:425.280450px;}
.yd43_c00000{bottom:425.370450px;}
.ycf7_c00000{bottom:425.370600px;}
.y1167_c00000{bottom:425.460450px;}
.ya2d_c00000{bottom:425.461062px;}
.y3be_c00000{bottom:425.550450px;}
.ya9a_c00000{bottom:425.640450px;}
.y5b0_c00000{bottom:425.730450px;}
.y11a3_c00000{bottom:425.820450px;}
.y11b7_c00000{bottom:426.000600px;}
.y10af_c00000{bottom:426.090450px;}
.y60a_c00000{bottom:426.180450px;}
.y89d_c00000{bottom:426.270450px;}
.yf96_c00000{bottom:426.270600px;}
.ydea_c00000{bottom:426.450600px;}
.y81c_c00000{bottom:426.540450px;}
.y78c_c00000{bottom:426.810450px;}
.y1a6_c00000{bottom:426.900450px;}
.y75d_c00000{bottom:427.080450px;}
.y3f7_c00000{bottom:427.170450px;}
.yfac_c00000{bottom:427.260450px;}
.y1055_c00000{bottom:427.530450px;}
.y37b_c00000{bottom:427.800450px;}
.y5d7_c00000{bottom:427.890450px;}
.yda1_c00000{bottom:428.072016px;}
.y7de_c00000{bottom:428.160450px;}
.ye99_c00000{bottom:428.163582px;}
.y2c9_c00000{bottom:428.340450px;}
.y941_c00000{bottom:428.430807px;}
.yaed_c00000{bottom:428.700600px;}
.yf3c_c00000{bottom:428.880450px;}
.ya87_c00000{bottom:429.060450px;}
.y491_c00000{bottom:429.240450px;}
.y630_c00000{bottom:429.330450px;}
.yf89_c00000{bottom:429.510450px;}
.yff0_c00000{bottom:429.600450px;}
.yee7_c00000{bottom:429.780450px;}
.yda6_c00000{bottom:429.781764px;}
.y9d6_c00000{bottom:429.960450px;}
.y5e8_c00000{bottom:430.140450px;}
.ydf7_c00000{bottom:430.500600px;}
.y7a8_c00000{bottom:430.680600px;}
.yefc_c00000{bottom:430.950450px;}
.ycd2_c00000{bottom:431.040450px;}
.ybd7_c00000{bottom:431.040600px;}
.y114e_c00000{bottom:431.310450px;}
.y58_c00000{bottom:431.490450px;}
.yb01_c00000{bottom:431.580450px;}
.y1107_c00000{bottom:431.670450px;}
.y4fc_c00000{bottom:431.760450px;}
.y7b5_c00000{bottom:431.850600px;}
.y5c6_c00000{bottom:431.940450px;}
.y1061_c00000{bottom:432.390450px;}
.yaca_c00000{bottom:432.480450px;}
.ybb8_c00000{bottom:432.660450px;}
.yb9e_c00000{bottom:432.930450px;}
.y862_c00000{bottom:432.930600px;}
.y755_c00000{bottom:433.020600px;}
.y117b_c00000{bottom:433.110450px;}
.yf42_c00000{bottom:433.200702px;}
.y211_c00000{bottom:433.470450px;}
.yeca_c00000{bottom:433.560450px;}
.ye08_c00000{bottom:433.741053px;}
.y8ce_c00000{bottom:433.920450px;}
.y112_c00000{bottom:433.920717px;}
.ye6a_c00000{bottom:434.010450px;}
.ya4f_c00000{bottom:434.100450px;}
.y561_c00000{bottom:434.280450px;}
.ybea_c00000{bottom:434.370450px;}
.y8a_c00000{bottom:434.370756px;}
.y355_c00000{bottom:434.460450px;}
.y7ef_c00000{bottom:434.550450px;}
.y159_c00000{bottom:435.180450px;}
.yf67_c00000{bottom:435.270450px;}
.y6ef_c00000{bottom:435.450600px;}
.y106a_c00000{bottom:435.540600px;}
.yed2_c00000{bottom:435.810450px;}
.yf0c_c00000{bottom:435.900450px;}
.y92c_c00000{bottom:435.991359px;}
.y45e_c00000{bottom:436.260450px;}
.y9ed_c00000{bottom:436.350600px;}
.yc8d_c00000{bottom:436.440450px;}
.y8c0_c00000{bottom:436.530600px;}
.y9c6_c00000{bottom:436.620450px;}
.y8a9_c00000{bottom:436.620600px;}
.y3d9_c00000{bottom:436.800450px;}
.y697_c00000{bottom:436.890450px;}
.ybfe_c00000{bottom:437.070450px;}
.ya21_c00000{bottom:437.340600px;}
.y109c_c00000{bottom:437.430450px;}
.yaba_c00000{bottom:437.610459px;}
.y84b_c00000{bottom:437.610648px;}
.y63a_c00000{bottom:437.610666px;}
.ydb4_c00000{bottom:437.610807px;}
.ya1e_c00000{bottom:438.060450px;}
.yb8_c00000{bottom:438.150450px;}
.yf9f_c00000{bottom:438.240450px;}
.y463_c00000{bottom:438.330450px;}
.y70d_c00000{bottom:438.690450px;}
.yc49_c00000{bottom:438.781359px;}
.y6a1_c00000{bottom:439.140450px;}
.yf4a_c00000{bottom:439.230450px;}
.y1044_c00000{bottom:439.320450px;}
.y52f_c00000{bottom:439.410450px;}
.y205_c00000{bottom:439.500450px;}
.yd02_c00000{bottom:439.770450px;}
.yd75_c00000{bottom:439.950600px;}
.yeb6_c00000{bottom:440.040450px;}
.y1012_c00000{bottom:440.130450px;}
.ya71_c00000{bottom:440.580450px;}
.yb49_c00000{bottom:440.670450px;}
.y1000_c00000{bottom:440.760450px;}
.yca5_c00000{bottom:440.761359px;}
.ye59_c00000{bottom:441.120450px;}
.y286_c00000{bottom:441.210450px;}
.y4df_c00000{bottom:441.300450px;}
.y331_c00000{bottom:441.375870px;}
.y184_c00000{bottom:441.377607px;}
.y907_c00000{bottom:441.390450px;}
.y85a_c00000{bottom:441.570450px;}
.ycb9_c00000{bottom:441.660450px;}
.yb89_c00000{bottom:442.020450px;}
.y796_c00000{bottom:442.200450px;}
.y1026_c00000{bottom:442.200600px;}
.y1cc_c00000{bottom:442.470450px;}
.yb2b_c00000{bottom:442.740450px;}
.ya2c_c00000{bottom:442.741053px;}
.y66d_c00000{bottom:443.010450px;}
.ye4b_c00000{bottom:443.280600px;}
.ya0b_c00000{bottom:443.370600px;}
.y9ae_c00000{bottom:443.460450px;}
.y6c9_c00000{bottom:443.550450px;}
.yab0_c00000{bottom:443.639406px;}
.y6f2_c00000{bottom:443.731122px;}
.y6d8_c00000{bottom:443.910450px;}
.y7a4_c00000{bottom:444.000450px;}
.y428_c00000{bottom:444.090450px;}
.y8b5_c00000{bottom:444.179838px;}
.y621_c00000{bottom:444.360600px;}
.ye7_c00000{bottom:444.450450px;}
.y3f6_c00000{bottom:444.450600px;}
.y31d_c00000{bottom:444.810450px;}
.y136_c00000{bottom:444.900582px;}
.y10c5_c00000{bottom:444.990450px;}
.y913_c00000{bottom:445.080450px;}
.y49d_c00000{bottom:445.260450px;}
.yad4_c00000{bottom:445.530450px;}
.yc11_c00000{bottom:445.710450px;}
.y940_c00000{bottom:445.710798px;}
.y6ab_c00000{bottom:445.801107px;}
.yd14_c00000{bottom:446.250450px;}
.y736_c00000{bottom:446.610600px;}
.y77a_c00000{bottom:446.700450px;}
.y23a_c00000{bottom:446.790225px;}
.ye15_c00000{bottom:446.970450px;}
.y88b_c00000{bottom:447.240450px;}
.yd28_c00000{bottom:447.330450px;}
.yfc3_c00000{bottom:447.600450px;}
.y7c9_c00000{bottom:447.780450px;}
.y999_c00000{bottom:447.870600px;}
.y221_c00000{bottom:448.140450px;}
.y6b5_c00000{bottom:448.500450px;}
.yc1e_c00000{bottom:448.770600px;}
.y57a_c00000{bottom:448.950450px;}
.ybdf_c00000{bottom:448.950600px;}
.y1166_c00000{bottom:449.130450px;}
.ya99_c00000{bottom:449.220450px;}
.yd99_c00000{bottom:449.490450px;}
.y10ae_c00000{bottom:449.760450px;}
.yda0_c00000{bottom:449.761359px;}
.yf50_c00000{bottom:449.850450px;}
.ye98_c00000{bottom:449.852925px;}
.y89c_c00000{bottom:449.940450px;}
.y5c5_c00000{bottom:449.940600px;}
.yb72_c00000{bottom:450.030450px;}
.y81b_c00000{bottom:450.120450px;}
.yde9_c00000{bottom:450.120600px;}
.y78b_c00000{bottom:450.390450px;}
.y1a5_c00000{bottom:450.570450px;}
.yfab_c00000{bottom:450.840450px;}
.ye07_c00000{bottom:450.930864px;}
.y1054_c00000{bottom:451.200450px;}
.yffa_c00000{bottom:451.380450px;}
.y258_c00000{bottom:451.470450px;}
.yda5_c00000{bottom:451.471107px;}
.y2f7_c00000{bottom:451.829979px;}
.y7dd_c00000{bottom:451.830450px;}
.y2c8_c00000{bottom:452.010450px;}
.yd83_c00000{bottom:452.370600px;}
.y10eb_c00000{bottom:452.550450px;}
.ya86_c00000{bottom:452.730450px;}
.y490_c00000{bottom:452.820450px;}
.y62f_c00000{bottom:452.910450px;}
.yf88_c00000{bottom:453.090450px;}
.yfef_c00000{bottom:453.180450px;}
.y57_c00000{bottom:453.360450px;}
.y9d5_c00000{bottom:453.630450px;}
.y32b_c00000{bottom:453.810450px;}
.ydf6_c00000{bottom:454.080600px;}
.yefb_c00000{bottom:454.620450px;}
.ycd1_c00000{bottom:454.710450px;}
.ybd6_c00000{bottom:454.710600px;}
.yf41_c00000{bottom:454.801107px;}
.yc5b_c00000{bottom:454.890450px;}
.y84a_c00000{bottom:454.890639px;}
.y639_c00000{bottom:454.890657px;}
.ydb3_c00000{bottom:454.890798px;}
.y95d_c00000{bottom:454.891071px;}
.yb5d_c00000{bottom:455.070450px;}
.y1106_c00000{bottom:455.250450px;}
.y4fb_c00000{bottom:455.430450px;}
.y7b4_c00000{bottom:455.520450px;}
.yc9b_c00000{bottom:455.520600px;}
.y3f5_c00000{bottom:455.610450px;}
.y1116_c00000{bottom:456.060450px;}
.yac9_c00000{bottom:456.150450px;}
.ybb7_c00000{bottom:456.330450px;}
.yb9d_c00000{bottom:456.510450px;}
.y117a_c00000{bottom:456.780450px;}
.ybce_c00000{bottom:456.870450px;}
.y51a_c00000{bottom:457.050450px;}
.y231_c00000{bottom:457.140450px;}
.yec9_c00000{bottom:457.230450px;}
.y8cd_c00000{bottom:457.500450px;}
.y1133_c00000{bottom:457.590450px;}
.ya4e_c00000{bottom:457.680450px;}
.y92b_c00000{bottom:457.680702px;}
.y735_c00000{bottom:457.770450px;}
.yfce_c00000{bottom:457.860450px;}
.y560_c00000{bottom:457.950450px;}
.ycf6_c00000{bottom:457.950600px;}
.y2ea_c00000{bottom:458.130450px;}
.y111_c00000{bottom:458.130582px;}
.y3bd_c00000{bottom:458.220450px;}
.y5af_c00000{bottom:458.400450px;}
.y609_c00000{bottom:458.670450px;}
.y158_c00000{bottom:458.760450px;}
.yb7_c00000{bottom:458.850450px;}
.yf73_c00000{bottom:459.120600px;}
.yf1a_c00000{bottom:459.301107px;}
.yed1_c00000{bottom:459.480450px;}
.y1006_c00000{bottom:459.750450px;}
.y45d_c00000{bottom:459.840450px;}
.y9ec_c00000{bottom:459.930450px;}
.ya2b_c00000{bottom:459.930864px;}
.yc8c_c00000{bottom:460.020450px;}
.y9c5_c00000{bottom:460.200450px;}
.y8bf_c00000{bottom:460.200600px;}
.y111f_c00000{bottom:460.380450px;}
.y3d8_c00000{bottom:460.470450px;}
.yc48_c00000{bottom:460.470702px;}
.y696_c00000{bottom:460.560450px;}
.ybfd_c00000{bottom:460.650450px;}
.y620_c00000{bottom:461.640450px;}
.y440_c00000{bottom:461.730450px;}
.y514_c00000{bottom:461.820450px;}
.yf9e_c00000{bottom:461.910450px;}
.y89_c00000{bottom:462.000450px;}
.y70c_c00000{bottom:462.270450px;}
.yca4_c00000{bottom:462.450702px;}
.yf3f_c00000{bottom:462.630450px;}
.y5e7_c00000{bottom:462.810450px;}
.y93f_c00000{bottom:462.900609px;}
.y1043_c00000{bottom:462.990450px;}
.y204_c00000{bottom:463.080450px;}
.yd01_c00000{bottom:463.440450px;}
.yeb5_c00000{bottom:463.710450px;}
.y114d_c00000{bottom:463.890450px;}
.ya70_c00000{bottom:464.160450px;}
.yb48_c00000{bottom:464.250450px;}
.yfff_c00000{bottom:464.340450px;}
.y861_c00000{bottom:464.430600px;}
.y1060_c00000{bottom:464.431359px;}
.ye58_c00000{bottom:464.700450px;}
.y285_c00000{bottom:464.880450px;}
.y4de_c00000{bottom:464.970450px;}
.y981_c00000{bottom:465.060450px;}
.y859_c00000{bottom:465.150450px;}
.ye6_c00000{bottom:465.330450px;}
.yb88_c00000{bottom:465.600450px;}
.y1038_c00000{bottom:465.870450px;}
.y1025_c00000{bottom:465.870600px;}
.y471_c00000{bottom:466.050450px;}
.y1cb_c00000{bottom:466.140450px;}
.yb2a_c00000{bottom:466.410450px;}
.y66c_c00000{bottom:466.680450px;}
.yae3_c00000{bottom:466.950600px;}
.y7ee_c00000{bottom:467.220450px;}
.y6aa_c00000{bottom:467.490450px;}
.y7a3_c00000{bottom:467.670450px;}
.y427_c00000{bottom:467.760450px;}
.y5c4_c00000{bottom:467.940600px;}
.y6ee_c00000{bottom:468.030600px;}
.y1069_c00000{bottom:468.120600px;}
.ye06_c00000{bottom:468.210855px;}
.y725_c00000{bottom:468.390450px;}
.y10c4_c00000{bottom:468.660450px;}
.y912_c00000{bottom:468.750450px;}
.ya20_c00000{bottom:468.840600px;}
.y6f1_c00000{bottom:469.020600px;}
.yad3_c00000{bottom:469.110450px;}
.yc10_c00000{bottom:469.290450px;}
.yd13_c00000{bottom:469.830450px;}
.y109b_c00000{bottom:470.100450px;}
.y779_c00000{bottom:470.370450px;}
.y102d_c00000{bottom:470.550450px;}
.yb71_c00000{bottom:470.730450px;}
.y88a_c00000{bottom:470.820450px;}
.yd53_c00000{bottom:470.910450px;}
.yd27_c00000{bottom:471.000450px;}
.yfc2_c00000{bottom:471.270450px;}
.y7c8_c00000{bottom:471.450450px;}
.yd9f_c00000{bottom:471.450702px;}
.ye97_c00000{bottom:471.542268px;}
.y275_c00000{bottom:471.810450px;}
.y52e_c00000{bottom:472.080450px;}
.y638_c00000{bottom:472.080468px;}
.ydb2_c00000{bottom:472.080609px;}
.y95c_c00000{bottom:472.080882px;}
.y43f_c00000{bottom:472.170609px;}
.yaaf_c00000{bottom:472.349712px;}
.y579_c00000{bottom:472.530450px;}
.yd42_c00000{bottom:472.620450px;}
.y1165_c00000{bottom:472.710450px;}
.y61f_c00000{bottom:472.800450px;}
.y8b4_c00000{bottom:472.890144px;}
.ya98_c00000{bottom:472.890450px;}
.yda4_c00000{bottom:473.160450px;}
.y906_c00000{bottom:473.433177px;}
.y89b_c00000{bottom:473.520450px;}
.ye14_c00000{bottom:473.610450px;}
.yde8_c00000{bottom:473.700600px;}
.y81a_c00000{bottom:473.790450px;}
.y78a_c00000{bottom:474.060450px;}
.y1a4_c00000{bottom:474.150450px;}
.ycb8_c00000{bottom:474.330450px;}
.yfaa_c00000{bottom:474.510450px;}
.ye4a_c00000{bottom:474.690600px;}
.y1053_c00000{bottom:474.780450px;}
.y795_c00000{bottom:474.870450px;}
.y37a_c00000{bottom:475.050450px;}
.y257_c00000{bottom:475.140450px;}
.y56_c00000{bottom:475.230450px;}
.y7dc_c00000{bottom:475.410450px;}
.y2c7_c00000{bottom:475.590450px;}
.y4bb_c00000{bottom:475.680450px;}
.ye35_c00000{bottom:475.770450px;}
.ya0a_c00000{bottom:475.950450px;}
.yd82_c00000{bottom:475.950600px;}
.y9ad_c00000{bottom:476.040450px;}
.y10ea_c00000{bottom:476.130450px;}
.y6c8_c00000{bottom:476.220450px;}
.ya85_c00000{bottom:476.310450px;}
.yf40_c00000{bottom:476.490450px;}
.y62e_c00000{bottom:476.580450px;}
.yf87_c00000{bottom:476.760450px;}
.yfee_c00000{bottom:476.850450px;}
.ya2a_c00000{bottom:477.210855px;}
.y9d4_c00000{bottom:477.300450px;}
.y49c_c00000{bottom:477.301611px;}
.y31c_c00000{bottom:477.390450px;}
.ydf5_c00000{bottom:477.750600px;}
.yc1d_c00000{bottom:477.750609px;}
.y135_c00000{bottom:478.020600px;}
.yefa_c00000{bottom:478.200450px;}
.ybd5_c00000{bottom:478.290600px;}
.ycd0_c00000{bottom:478.380450px;}
.yc5a_c00000{bottom:478.560450px;}
.y849_c00000{bottom:478.830450px;}
.y7b3_c00000{bottom:479.100450px;}
.y92a_c00000{bottom:479.370045px;}
.yb6_c00000{bottom:479.550450px;}
.y1115_c00000{bottom:479.640450px;}
.yac8_c00000{bottom:479.730450px;}
.ybb6_c00000{bottom:479.910450px;}
.yb9c_c00000{bottom:480.180450px;}
.y93e_c00000{bottom:480.180600px;}
.y1179_c00000{bottom:480.360450px;}
.ybcd_c00000{bottom:480.450450px;}
.y2d7_c00000{bottom:480.630450px;}
.y519_c00000{bottom:480.720450px;}
.y220_c00000{bottom:480.810450px;}
.yf19_c00000{bottom:480.990450px;}
.y8cc_c00000{bottom:481.170450px;}
.y1132_c00000{bottom:481.260450px;}
.ya4d_c00000{bottom:481.350450px;}
.y1090_c00000{bottom:481.350600px;}
.y55f_c00000{bottom:481.530450px;}
.ybe9_c00000{bottom:481.620450px;}
.y3bc_c00000{bottom:481.800450px;}
.y833_c00000{bottom:481.890450px;}
.yc47_c00000{bottom:482.160045px;}
.y608_c00000{bottom:482.250450px;}
.y10ad_c00000{bottom:482.340450px;}
.y157_c00000{bottom:482.430450px;}
.yf66_c00000{bottom:482.520450px;}
.yf72_c00000{bottom:482.700600px;}
.yed0_c00000{bottom:483.060450px;}
.y239_c00000{bottom:483.330450px;}
.y45c_c00000{bottom:483.510450px;}
.y9eb_c00000{bottom:483.600450px;}
.yc8b_c00000{bottom:483.690450px;}
.y9c4_c00000{bottom:483.870450px;}
.y3d7_c00000{bottom:484.050450px;}
.yca3_c00000{bottom:484.051107px;}
.y695_c00000{bottom:484.140450px;}
.ybfc_c00000{bottom:484.320450px;}
.ya1d_c00000{bottom:485.310450px;}
.y48f_c00000{bottom:485.490450px;}
.ye05_c00000{bottom:485.490846px;}
.yf9d_c00000{bottom:485.580450px;}
.y70b_c00000{bottom:485.940450px;}
.y5c3_c00000{bottom:485.940600px;}
.ye5_c00000{bottom:486.030450px;}
.y105f_c00000{bottom:486.031764px;}
.y32a_c00000{bottom:486.390450px;}
.yf49_c00000{bottom:486.480450px;}
.y1042_c00000{bottom:486.660450px;}
.y203_c00000{bottom:486.750450px;}
.yb5c_c00000{bottom:487.022268px;}
.yd00_c00000{bottom:487.110450px;}
.yeb4_c00000{bottom:487.290450px;}
.y1011_c00000{bottom:487.380450px;}
.y114c_c00000{bottom:487.560450px;}
.ya6f_c00000{bottom:487.830450px;}
.yb47_c00000{bottom:487.920450px;}
.y4fa_c00000{bottom:488.010450px;}
.yc9a_c00000{bottom:488.100600px;}
.y2f6_c00000{bottom:488.370204px;}
.ye57_c00000{bottom:488.370450px;}
.y2a9_c00000{bottom:488.460450px;}
.y284_c00000{bottom:488.550450px;}
.y980_c00000{bottom:488.640450px;}
.y88_c00000{bottom:488.820666px;}
.yb87_c00000{bottom:489.270450px;}
.y637_c00000{bottom:489.360459px;}
.ycea_c00000{bottom:489.360657px;}
.y95b_c00000{bottom:489.360873px;}
.y1037_c00000{bottom:489.450450px;}
.y1024_c00000{bottom:489.450600px;}
.y330_c00000{bottom:489.617904px;}
.y183_c00000{bottom:489.707904px;}
.y408_c00000{bottom:489.720450px;}
.y1ca_c00000{bottom:489.810450px;}
.yb29_c00000{bottom:489.990450px;}
.ycf5_c00000{bottom:489.992016px;}
.y66b_c00000{bottom:490.260450px;}
.yae2_c00000{bottom:490.620450px;}
.y354_c00000{bottom:490.800450px;}
.y5ae_c00000{bottom:490.980450px;}
.y7a2_c00000{bottom:491.250450px;}
.y110_c00000{bottom:491.250600px;}
.y426_c00000{bottom:491.430450px;}
.y6ed_c00000{bottom:491.700600px;}
.y2e9_c00000{bottom:492.060450px;}
.yf0b_c00000{bottom:492.150450px;}
.y10c3_c00000{bottom:492.240450px;}
.y911_c00000{bottom:492.420450px;}
.yaec_c00000{bottom:492.600450px;}
.yad2_c00000{bottom:492.780450px;}
.y8be_c00000{bottom:492.870600px;}
.yc0f_c00000{bottom:492.960450px;}
.yd9e_c00000{bottom:493.051107px;}
.yc1a_c00000{bottom:493.140450px;}
.ye96_c00000{bottom:493.231611px;}
.yd12_c00000{bottom:493.500450px;}
.y109a_c00000{bottom:493.680450px;}
.y778_c00000{bottom:493.950450px;}
.y102c_c00000{bottom:494.220450px;}
.y889_c00000{bottom:494.490450px;}
.ya29_c00000{bottom:494.490846px;}
.yd26_c00000{bottom:494.580450px;}
.yef2_c00000{bottom:494.670450px;}
.yfc1_c00000{bottom:494.850450px;}
.y7c7_c00000{bottom:495.030450px;}
.yc1c_c00000{bottom:495.030600px;}
.y905_c00000{bottom:495.033582px;}
.y998_c00000{bottom:495.120450px;}
.y544_c00000{bottom:495.300450px;}
.y274_c00000{bottom:495.390450px;}
.y52d_c00000{bottom:495.660450px;}
.y800_c00000{bottom:495.750450px;}
.y848_c00000{bottom:496.110600px;}
.y578_c00000{bottom:496.200450px;}
.y43e_c00000{bottom:496.200600px;}
.yd41_c00000{bottom:496.290450px;}
.y1164_c00000{bottom:496.380450px;}
.ya97_c00000{bottom:496.560450px;}
.y55_c00000{bottom:497.100450px;}
.y89a_c00000{bottom:497.190450px;}
.y819_c00000{bottom:497.370450px;}
.yde7_c00000{bottom:497.370600px;}
.ycf0_c00000{bottom:497.640450px;}
.y1a3_c00000{bottom:497.820450px;}
.yfa9_c00000{bottom:498.090450px;}
.y1052_c00000{bottom:498.450450px;}
.y379_c00000{bottom:498.720450px;}
.y256_c00000{bottom:498.810450px;}
.y49b_c00000{bottom:498.902016px;}
.y2c6_c00000{bottom:499.260450px;}
.ye69_c00000{bottom:499.350450px;}
.y24_c00000{bottom:499.500000px;}
.ya09_c00000{bottom:499.620450px;}
.yd81_c00000{bottom:499.620600px;}
.y9ac_c00000{bottom:499.710450px;}
.y6c7_c00000{bottom:499.800450px;}
.ya84_c00000{bottom:499.980450px;}
.y62d_c00000{bottom:500.160450px;}
.yb5_c00000{bottom:500.250450px;}
.yf86_c00000{bottom:500.340450px;}
.yfed_c00000{bottom:500.430450px;}
.y9d3_c00000{bottom:500.880450px;}
.yaae_c00000{bottom:500.969838px;}
.y929_c00000{bottom:500.970450px;}
.y31b_c00000{bottom:501.060450px;}
.ydf4_c00000{bottom:501.420600px;}
.y8b3_c00000{bottom:501.600450px;}
.yef9_c00000{bottom:501.870450px;}
.yccf_c00000{bottom:501.960450px;}
.yc59_c00000{bottom:502.140450px;}
.ye04_c00000{bottom:502.680657px;}
.y7b2_c00000{bottom:502.770450px;}
.y134_c00000{bottom:502.950756px;}
.y1114_c00000{bottom:503.310450px;}
.yac7_c00000{bottom:503.400450px;}
.ybb5_c00000{bottom:503.580450px;}
.yb9b_c00000{bottom:503.760450px;}
.y5c2_c00000{bottom:503.940600px;}
.ybcc_c00000{bottom:504.120450px;}
.y230_c00000{bottom:504.390450px;}
.yec8_c00000{bottom:504.480450px;}
.y8cb_c00000{bottom:504.750450px;}
.y1131_c00000{bottom:504.840450px;}
.ya4c_c00000{bottom:504.930450px;}
.yfcd_c00000{bottom:505.110450px;}
.y55e_c00000{bottom:505.200450px;}
.ybe8_c00000{bottom:505.290450px;}
.y3bb_c00000{bottom:505.470450px;}
.y832_c00000{bottom:505.560450px;}
.yca2_c00000{bottom:505.740450px;}
.y10ac_c00000{bottom:506.010450px;}
.y156_c00000{bottom:506.100450px;}
.ycb7_c00000{bottom:506.284626px;}
.y789_c00000{bottom:506.640450px;}
.yce9_c00000{bottom:506.640648px;}
.y95a_c00000{bottom:506.640864px;}
.ye4_c00000{bottom:506.730450px;}
.y45b_c00000{bottom:507.180450px;}
.y847_c00000{bottom:507.270450px;}
.y43d_c00000{bottom:507.360450px;}
.y794_c00000{bottom:507.450450px;}
.y3d6_c00000{bottom:507.720450px;}
.y105e_c00000{bottom:507.721107px;}
.y6a4_c00000{bottom:507.810450px;}
.ybfb_c00000{bottom:507.900450px;}
.y7db_c00000{bottom:508.080450px;}
.yf22_c00000{bottom:508.350450px;}
.yb5b_c00000{bottom:508.711611px;}
.ya1c_c00000{bottom:508.890450px;}
.y513_c00000{bottom:509.070450px;}
.yc6f_c00000{bottom:509.430450px;}
.y70a_c00000{bottom:509.520450px;}
.y5e6_c00000{bottom:510.060450px;}
.y202_c00000{bottom:510.420450px;}
.ycff_c00000{bottom:510.690450px;}
.yeb3_c00000{bottom:510.960450px;}
.ybd4_c00000{bottom:510.960600px;}
.y114b_c00000{bottom:511.140450px;}
.ya6e_c00000{bottom:511.410450px;}
.yb46_c00000{bottom:511.500450px;}
.yffe_c00000{bottom:511.590450px;}
.y4f9_c00000{bottom:511.680450px;}
.ya28_c00000{bottom:511.680657px;}
.ycf4_c00000{bottom:511.681359px;}
.ye56_c00000{bottom:511.950450px;}
.y2a8_c00000{bottom:512.130450px;}
.y4dd_c00000{bottom:512.220450px;}
.y97f_c00000{bottom:512.310450px;}
.y8bd_c00000{bottom:512.850450px;}
.y1178_c00000{bottom:513.030450px;}
.y1036_c00000{bottom:513.120450px;}
.y407_c00000{bottom:513.300450px;}
.y1e6_c00000{bottom:513.390450px;}
.y66a_c00000{bottom:513.930450px;}
.y108f_c00000{bottom:513.930600px;}
.yae1_c00000{bottom:514.290450px;}
.y353_c00000{bottom:514.380450px;}
.y7ed_c00000{bottom:514.470450px;}
.yd9d_c00000{bottom:514.740450px;}
.ye95_c00000{bottom:514.832016px;}
.y7a1_c00000{bottom:514.920450px;}
.y425_c00000{bottom:515.010450px;}
.y607_c00000{bottom:515.100450px;}
.y6ec_c00000{bottom:515.370450px;}
.yecf_c00000{bottom:515.730450px;}
.yf0a_c00000{bottom:515.820450px;}
.y10c2_c00000{bottom:515.910450px;}
.y910_c00000{bottom:516.000450px;}
.yaeb_c00000{bottom:516.270450px;}
.yad1_c00000{bottom:516.360450px;}
.yc0e_c00000{bottom:516.540450px;}
.y111e_c00000{bottom:516.630450px;}
.y4c5_c00000{bottom:516.720450px;}
.y904_c00000{bottom:516.722925px;}
.y694_c00000{bottom:516.810450px;}
.yd11_c00000{bottom:517.080450px;}
.y1099_c00000{bottom:517.350450px;}
.y48e_c00000{bottom:517.530954px;}
.yf9c_c00000{bottom:518.160450px;}
.yef1_c00000{bottom:518.250450px;}
.yfc0_c00000{bottom:518.520450px;}
.yee6_c00000{bottom:518.700450px;}
.y997_c00000{bottom:518.790450px;}
.y54_c00000{bottom:518.970450px;}
.y273_c00000{bottom:519.060450px;}
.y1041_c00000{bottom:519.240450px;}
.y52c_c00000{bottom:519.330450px;}
.y7ff_c00000{bottom:519.420450px;}
.y577_c00000{bottom:519.780450px;}
.yd40_c00000{bottom:519.870450px;}
.y1163_c00000{bottom:519.960450px;}
.ye03_c00000{bottom:519.960648px;}
.ya96_c00000{bottom:520.140450px;}
.y49a_c00000{bottom:520.591359px;}
.yc1b_c00000{bottom:520.770600px;}
.y899_c00000{bottom:520.860450px;}
.yb4_c00000{bottom:520.950450px;}
.y818_c00000{bottom:521.040450px;}
.ycef_c00000{bottom:521.310450px;}
.y1a2_c00000{bottom:521.400450px;}
.yfa8_c00000{bottom:521.760450px;}
.y5c1_c00000{bottom:521.940600px;}
.y87_c00000{bottom:522.030855px;}
.y1023_c00000{bottom:522.120450px;}
.y378_c00000{bottom:522.300450px;}
.y1c9_c00000{bottom:522.390450px;}
.yb28_c00000{bottom:522.660450px;}
.y2c5_c00000{bottom:522.840450px;}
.y4ba_c00000{bottom:522.930450px;}
.ya08_c00000{bottom:523.290450px;}
.y9ab_c00000{bottom:523.380450px;}
.y6c6_c00000{bottom:523.470450px;}
.ya83_c00000{bottom:523.560450px;}
.y5ad_c00000{bottom:523.650450px;}
.y62c_c00000{bottom:523.830450px;}
.yce8_c00000{bottom:523.830459px;}
.y636_c00000{bottom:523.830468px;}
.y959_c00000{bottom:523.830675px;}
.yf85_c00000{bottom:524.010450px;}
.y9d2_c00000{bottom:524.550450px;}
.y31a_c00000{bottom:524.640450px;}
.ydf3_c00000{bottom:525.000450px;}
.y2f5_c00000{bottom:525.000600px;}
.y1068_c00000{bottom:525.360600px;}
.ycce_c00000{bottom:525.630450px;}
.yc58_c00000{bottom:525.810450px;}
.y2e8_c00000{bottom:525.900450px;}
.y7b1_c00000{bottom:526.350450px;}
.y777_c00000{bottom:526.620450px;}
.y102b_c00000{bottom:526.800450px;}
.y888_c00000{bottom:527.070450px;}
.ybb4_c00000{bottom:527.160450px;}
.yd25_c00000{bottom:527.250450px;}
.ye3_c00000{bottom:527.430450px;}
.y7c6_c00000{bottom:527.700450px;}
.ybcb_c00000{bottom:527.790450px;}
.y6a0_c00000{bottom:527.880450px;}
.ycb6_c00000{bottom:527.973969px;}
.y238_c00000{bottom:528.060450px;}
.y8ca_c00000{bottom:528.420450px;}
.y1130_c00000{bottom:528.510450px;}
.yfcc_c00000{bottom:528.780450px;}
.ye88_c00000{bottom:528.870450px;}
.ya27_c00000{bottom:528.960648px;}
.y3ba_c00000{bottom:529.050450px;}
.y831_c00000{bottom:529.140450px;}
.y858_c00000{bottom:529.320450px;}
.y105d_c00000{bottom:529.410450px;}
.y10ab_c00000{bottom:529.590450px;}
.yaad_c00000{bottom:529.680144px;}
.y155_c00000{bottom:529.680450px;}
.yf65_c00000{bottom:529.770450px;}
.yb5a_c00000{bottom:530.400954px;}
.y133_c00000{bottom:530.580450px;}
.y45a_c00000{bottom:530.760450px;}
.y9ea_c00000{bottom:530.850450px;}
.y10fc_c00000{bottom:530.940450px;}
.y1051_c00000{bottom:531.030450px;}
.ybd3_c00000{bottom:531.030639px;}
.y9c3_c00000{bottom:531.120450px;}
.y3d5_c00000{bottom:531.300450px;}
.y255_c00000{bottom:531.390450px;}
.ybfa_c00000{bottom:531.570450px;}
.y10d7_c00000{bottom:531.660450px;}
.y928_c00000{bottom:532.290450px;}
.ya1b_c00000{bottom:532.560450px;}
.y512_c00000{bottom:532.740450px;}
.yfec_c00000{bottom:533.100450px;}
.y709_c00000{bottom:533.190450px;}
.ycf3_c00000{bottom:533.281764px;}
.y5e5_c00000{bottom:533.640450px;}
.yf48_c00000{bottom:533.730450px;}
.y10f_c00000{bottom:534.180450px;}
.ycfe_c00000{bottom:534.360450px;}
.yeb2_c00000{bottom:534.540450px;}
.yf5a_c00000{bottom:534.630450px;}
.y114a_c00000{bottom:534.810450px;}
.ya6d_c00000{bottom:535.080450px;}
.yb45_c00000{bottom:535.170450px;}
.y4f8_c00000{bottom:535.260450px;}
.yd52_c00000{bottom:535.533330px;}
.y2a7_c00000{bottom:535.710450px;}
.y4dc_c00000{bottom:535.800450px;}
.y97e_c00000{bottom:535.890450px;}
.yb86_c00000{bottom:536.520450px;}
.ye94_c00000{bottom:536.521359px;}
.y1177_c00000{bottom:536.700450px;}
.y1035_c00000{bottom:536.790450px;}
.y406_c00000{bottom:536.970450px;}
.y1e5_c00000{bottom:537.060450px;}
.ye02_c00000{bottom:537.240639px;}
.y669_c00000{bottom:537.510450px;}
.ya4b_c00000{bottom:537.600450px;}
.yf4f_c00000{bottom:537.600459px;}
.y55d_c00000{bottom:537.780450px;}
.yae0_c00000{bottom:537.870450px;}
.y32f_c00000{bottom:537.948201px;}
.y182_c00000{bottom:538.038201px;}
.y352_c00000{bottom:538.050450px;}
.yf2d_c00000{bottom:538.140450px;}
.y903_c00000{bottom:538.412268px;}
.y424_c00000{bottom:538.680450px;}
.y6eb_c00000{bottom:538.950450px;}
.yf71_c00000{bottom:539.040450px;}
.y48d_c00000{bottom:539.131359px;}
.y788_c00000{bottom:539.310450px;}
.yf09_c00000{bottom:539.400450px;}
.y10c1_c00000{bottom:539.490450px;}
.y90f_c00000{bottom:539.670450px;}
.yaea_c00000{bottom:539.850450px;}
.y5c0_c00000{bottom:539.940450px;}
.y793_c00000{bottom:540.030450px;}
.yc0d_c00000{bottom:540.210450px;}
.y4c4_c00000{bottom:540.300450px;}
.y693_c00000{bottom:540.390450px;}
.yc99_c00000{bottom:540.750162px;}
.y7da_c00000{bottom:540.750450px;}
.y53_c00000{bottom:540.840450px;}
.yf21_c00000{bottom:540.930450px;}
.y635_c00000{bottom:541.110459px;}
.y958_c00000{bottom:541.110666px;}
.yb3_c00000{bottom:541.650450px;}
.yf9b_c00000{bottom:541.830450px;}
.yef0_c00000{bottom:541.920450px;}
.yc6e_c00000{bottom:542.100450px;}
.y499_c00000{bottom:542.280702px;}
.y996_c00000{bottom:542.370450px;}
.y104d_c00000{bottom:542.460450px;}
.y543_c00000{bottom:542.550450px;}
.y329_c00000{bottom:542.640450px;}
.y52b_c00000{bottom:542.910450px;}
.y201_c00000{bottom:543.000450px;}
.y591_c00000{bottom:543.450450px;}
.ya95_c00000{bottom:543.810450px;}
.y898_c00000{bottom:544.440450px;}
.y817_c00000{bottom:544.620450px;}
.yb70_c00000{bottom:544.710450px;}
.yf18_c00000{bottom:544.890450px;}
.y1a1_c00000{bottom:545.070450px;}
.yfa7_c00000{bottom:545.430450px;}
.y1022_c00000{bottom:545.790450px;}
.y377_c00000{bottom:545.970450px;}
.y1c8_c00000{bottom:546.060450px;}
.ya26_c00000{bottom:546.240639px;}
.y2c4_c00000{bottom:546.510450px;}
.ye68_c00000{bottom:546.600450px;}
.ya07_c00000{bottom:546.870450px;}
.y9aa_c00000{bottom:546.960450px;}
.y7ec_c00000{bottom:547.050450px;}
.y6c5_c00000{bottom:547.140450px;}
.ya82_c00000{bottom:547.230450px;}
.y6d7_c00000{bottom:547.410450px;}
.y7a0_c00000{bottom:547.500450px;}
.y606_c00000{bottom:547.680450px;}
.yce7_c00000{bottom:547.860450px;}
.ye2_c00000{bottom:548.130450px;}
.ybd2_c00000{bottom:548.220450px;}
.y319_c00000{bottom:548.310450px;}
.ydf2_c00000{bottom:548.670450px;}
.yccd_c00000{bottom:549.210450px;}
.yc57_c00000{bottom:549.480450px;}
.ycb5_c00000{bottom:549.663312px;}
.y7b0_c00000{bottom:550.020450px;}
.y776_c00000{bottom:550.290450px;}
.y887_c00000{bottom:550.740450px;}
.ybb3_c00000{bottom:550.830450px;}
.yb9a_c00000{bottom:551.010450px;}
.y7c5_c00000{bottom:551.280450px;}
.ybca_c00000{bottom:551.370450px;}
.y237_c00000{bottom:551.640450px;}
.y7fe_c00000{bottom:552.000450px;}
.yb59_c00000{bottom:552.001359px;}
.y112f_c00000{bottom:552.090450px;}
.y576_c00000{bottom:552.450450px;}
.yd3f_c00000{bottom:552.540450px;}
.y1162_c00000{bottom:552.630450px;}
.y3b9_c00000{bottom:552.720450px;}
.y830_c00000{bottom:552.810450px;}
.y10aa_c00000{bottom:553.260450px;}
.y154_c00000{bottom:553.350450px;}
.ycee_c00000{bottom:553.890450px;}
.ye01_c00000{bottom:554.430450px;}
.y9e9_c00000{bottom:554.520450px;}
.yb27_c00000{bottom:554.701359px;}
.yf4e_c00000{bottom:554.880450px;}
.y3d4_c00000{bottom:554.970450px;}
.ycf2_c00000{bottom:554.971107px;}
.y254_c00000{bottom:555.060450px;}
.y86_c00000{bottom:555.150873px;}
.y10d6_c00000{bottom:555.330450px;}
.ya1a_c00000{bottom:556.140450px;}
.y5ac_c00000{bottom:556.230450px;}
.y511_c00000{bottom:556.410450px;}
.yf84_c00000{bottom:556.590450px;}
.yfeb_c00000{bottom:556.680450px;}
.y708_c00000{bottom:556.770450px;}
.yd51_c00000{bottom:557.222673px;}
.y5e4_c00000{bottom:557.310450px;}
.y132_c00000{bottom:557.400450px;}
.ydb1_c00000{bottom:557.850450px;}
.y5bf_c00000{bottom:557.940450px;}
.yc98_c00000{bottom:558.030153px;}
.yeb1_c00000{bottom:558.210450px;}
.ye93_c00000{bottom:558.210702px;}
.y102a_c00000{bottom:558.300450px;}
.yaac_c00000{bottom:558.390450px;}
.y957_c00000{bottom:558.390657px;}
.y1149_c00000{bottom:558.480450px;}
.ya6c_c00000{bottom:558.660450px;}
.y11ab_c00000{bottom:558.750450px;}
.y7aa_c00000{bottom:558.750639px;}
.yb44_c00000{bottom:558.840450px;}
.y4f7_c00000{bottom:558.930450px;}
.yce6_c00000{bottom:559.020450px;}
.y2a6_c00000{bottom:559.380450px;}
.y4db_c00000{bottom:559.470450px;}
.y97d_c00000{bottom:559.560450px;}
.yac6_c00000{bottom:559.650450px;}
.y2e7_c00000{bottom:559.830450px;}
.y902_c00000{bottom:560.012673px;}
.yb85_c00000{bottom:560.100450px;}
.y1176_c00000{bottom:560.280450px;}
.y470_c00000{bottom:560.550450px;}
.y10e_c00000{bottom:560.640450px;}
.yec7_c00000{bottom:560.730450px;}
.y48c_c00000{bottom:560.820702px;}
.ya4a_c00000{bottom:561.270450px;}
.y55c_c00000{bottom:561.450450px;}
.yadf_c00000{bottom:561.540450px;}
.y351_c00000{bottom:561.630450px;}
.yf2c_c00000{bottom:561.720450px;}
.y423_c00000{bottom:562.260450px;}
.yb2_c00000{bottom:562.350450px;}
.y1050_c00000{bottom:562.530450px;}
.y6ea_c00000{bottom:562.620450px;}
.y52_c00000{bottom:562.710450px;}
.yf08_c00000{bottom:563.070450px;}
.y90e_c00000{bottom:563.250450px;}
.y459_c00000{bottom:563.430450px;}
.yae9_c00000{bottom:563.520450px;}
.yc8a_c00000{bottom:563.610450px;}
.yad0_c00000{bottom:563.700450px;}
.y9c2_c00000{bottom:563.790450px;}
.yc0c_c00000{bottom:563.880450px;}
.y498_c00000{bottom:563.881107px;}
.y3ea_c00000{bottom:563.970450px;}
.y692_c00000{bottom:564.060450px;}
.ybf9_c00000{bottom:564.150450px;}
.yd73_c00000{bottom:564.600450px;}
.y927_c00000{bottom:564.870600px;}
.y634_c00000{bottom:565.140450px;}
.yce5_c00000{bottom:565.410450px;}
.yeef_c00000{bottom:565.500450px;}
.yc6d_c00000{bottom:565.680450px;}
.yfbf_c00000{bottom:565.770450px;}
.y8e1_c00000{bottom:565.860450px;}
.yef8_c00000{bottom:565.950450px;}
.y542_c00000{bottom:566.220450px;}
.y328_c00000{bottom:566.310450px;}
.y52a_c00000{bottom:566.580450px;}
.y200_c00000{bottom:566.670450px;}
.ycfd_c00000{bottom:566.940450px;}
.y590_c00000{bottom:567.030450px;}
.ya94_c00000{bottom:567.390450px;}
.yc46_c00000{bottom:567.660450px;}
.yffd_c00000{bottom:567.840450px;}
.y897_c00000{bottom:568.110450px;}
.y816_c00000{bottom:568.290450px;}
.yb6f_c00000{bottom:568.380450px;}
.yf17_c00000{bottom:568.560450px;}
.ye1_c00000{bottom:568.650450px;}
.y1021_c00000{bottom:569.370450px;}
.y399_c00000{bottom:569.550450px;}
.y1c7_c00000{bottom:569.640450px;}
.ybe7_c00000{bottom:569.912016px;}
.y2c3_c00000{bottom:570.090450px;}
.y4b9_c00000{bottom:570.180450px;}
.ya06_c00000{bottom:570.540450px;}
.y9a9_c00000{bottom:570.630450px;}
.y6c4_c00000{bottom:570.720450px;}
.ya81_c00000{bottom:570.900450px;}
.ybd1_c00000{bottom:570.990450px;}
.y6d6_c00000{bottom:571.080450px;}
.y108e_c00000{bottom:571.170450px;}
.ycb4_c00000{bottom:571.263717px;}
.y605_c00000{bottom:571.350450px;}
.y9d1_c00000{bottom:571.800450px;}
.y724_c00000{bottom:571.890450px;}
.y10c0_c00000{bottom:572.160450px;}
.y792_c00000{bottom:572.700450px;}
.yccc_c00000{bottom:572.880450px;}
.yece_c00000{bottom:572.970450px;}
.y7d9_c00000{bottom:573.330450px;}
.y7af_c00000{bottom:573.690450px;}
.yb58_c00000{bottom:573.690702px;}
.y775_c00000{bottom:573.870450px;}
.y886_c00000{bottom:574.410450px;}
.yd24_c00000{bottom:574.500450px;}
.yb99_c00000{bottom:574.680450px;}
.y7c4_c00000{bottom:574.950450px;}
.y995_c00000{bottom:575.040450px;}
.yc97_c00000{bottom:575.310144px;}
.y272_c00000{bottom:575.310450px;}
.y956_c00000{bottom:575.580468px;}
.y7fd_c00000{bottom:575.670450px;}
.y112e_c00000{bottom:575.760450px;}
.y5be_c00000{bottom:575.940450px;}
.y575_c00000{bottom:576.030450px;}
.yd3e_c00000{bottom:576.120450px;}
.y3b8_c00000{bottom:576.300450px;}
.yb26_c00000{bottom:576.301764px;}
.ycf1_c00000{bottom:576.660450px;}
.yf64_c00000{bottom:577.020450px;}
.y1a0_c00000{bottom:577.740450px;}
.yfa6_c00000{bottom:578.010450px;}
.y9e8_c00000{bottom:578.100450px;}
.y10fb_c00000{bottom:578.190450px;}
.y376_c00000{bottom:578.550450px;}
.y253_c00000{bottom:578.640450px;}
.yd50_c00000{bottom:578.912016px;}
.y79f_c00000{bottom:579.000450px;}
.y10e9_c00000{bottom:579.630450px;}
.y7eb_c00000{bottom:579.720450px;}
.ya19_c00000{bottom:579.810450px;}
.ye92_c00000{bottom:579.811107px;}
.y510_c00000{bottom:579.990450px;}
.yf83_c00000{bottom:580.260450px;}
.yfea_c00000{bottom:580.350450px;}
.y707_c00000{bottom:580.440450px;}
.yf4d_c00000{bottom:580.620450px;}
.y318_c00000{bottom:580.890450px;}
.y131_c00000{bottom:580.980450px;}
.ydf1_c00000{bottom:581.250450px;}
.y10d_c00000{bottom:581.340450px;}
.ydb0_c00000{bottom:581.520450px;}
.y901_c00000{bottom:581.702016px;}
.yf59_c00000{bottom:581.880450px;}
.yc56_c00000{bottom:582.060450px;}
.ya6b_c00000{bottom:582.330450px;}
.yb43_c00000{bottom:582.420450px;}
.y48b_c00000{bottom:582.510045px;}
.y2a5_c00000{bottom:582.960450px;}
.yb1_c00000{bottom:583.050450px;}
.y4da_c00000{bottom:583.140450px;}
.yac5_c00000{bottom:583.320450px;}
.ybb2_c00000{bottom:583.410450px;}
.yb84_c00000{bottom:583.770450px;}
.yee5_c00000{bottom:583.950450px;}
.ybc9_c00000{bottom:584.040450px;}
.y46f_c00000{bottom:584.220450px;}
.y1e4_c00000{bottom:584.310450px;}
.y51_c00000{bottom:584.580450px;}
.y8c9_c00000{bottom:584.670450px;}
.ya49_c00000{bottom:584.850450px;}
.y2f_c00000{bottom:585.000000px;}
.y55b_c00000{bottom:585.030450px;}
.y350_c00000{bottom:585.300450px;}
.y82f_c00000{bottom:585.390450px;}
.y497_c00000{bottom:585.570450px;}
.y8e0_c00000{bottom:585.840459px;}
.y153_c00000{bottom:585.930450px;}
.y6e9_c00000{bottom:586.200450px;}
.y32e_c00000{bottom:586.278498px;}
.y181_c00000{bottom:586.280235px;}
.yf70_c00000{bottom:586.290450px;}
.yced_c00000{bottom:586.560450px;}
.yf07_c00000{bottom:586.650450px;}
.y458_c00000{bottom:587.010450px;}
.yc89_c00000{bottom:587.190450px;}
.yacf_c00000{bottom:587.280450px;}
.y9c1_c00000{bottom:587.370450px;}
.yc0b_c00000{bottom:587.460450px;}
.y3e9_c00000{bottom:587.550450px;}
.y691_c00000{bottom:587.640450px;}
.yaab_c00000{bottom:588.270450px;}
.y85_c00000{bottom:588.270891px;}
.y90d_c00000{bottom:588.360450px;}
.y62b_c00000{bottom:588.452268px;}
.y926_c00000{bottom:588.540600px;}
.y5ab_c00000{bottom:588.900450px;}
.yce4_c00000{bottom:589.080450px;}
.ye0_c00000{bottom:589.350450px;}
.yfbe_c00000{bottom:589.440450px;}
.y541_c00000{bottom:589.890450px;}
.y529_c00000{bottom:590.160450px;}
.y1ff_c00000{bottom:590.250450px;}
.y668_c00000{bottom:590.250648px;}
.y58f_c00000{bottom:590.700450px;}
.yeb0_c00000{bottom:590.790450px;}
.y1010_c00000{bottom:590.880450px;}
.ya93_c00000{bottom:591.060450px;}
.yc45_c00000{bottom:591.330450px;}
.y4f6_c00000{bottom:591.510450px;}
.ybe6_c00000{bottom:591.512421px;}
.y896_c00000{bottom:591.690450px;}
.yef7_c00000{bottom:591.780450px;}
.yde6_c00000{bottom:591.870450px;}
.yb6e_c00000{bottom:591.960450px;}
.yf16_c00000{bottom:592.140450px;}
.y955_c00000{bottom:592.860459px;}
.ycb3_c00000{bottom:592.953060px;}
.y1020_c00000{bottom:593.040450px;}
.y398_c00000{bottom:593.220450px;}
.y1c6_c00000{bottom:593.310450px;}
.y2c2_c00000{bottom:593.760450px;}
.ye67_c00000{bottom:593.850450px;}
.y5bd_c00000{bottom:593.940450px;}
.ya05_c00000{bottom:594.120450px;}
.y9a8_c00000{bottom:594.210450px;}
.y6c3_c00000{bottom:594.390450px;}
.ya80_c00000{bottom:594.480450px;}
.ye34_c00000{bottom:594.840450px;}
.y422_c00000{bottom:594.930450px;}
.y604_c00000{bottom:595.020450px;}
.yb57_c00000{bottom:595.380045px;}
.y9d0_c00000{bottom:595.380450px;}
.y723_c00000{bottom:595.560450px;}
.y10bf_c00000{bottom:595.740450px;}
.yae8_c00000{bottom:596.100450px;}
.ybf8_c00000{bottom:596.191359px;}
.yd10_c00000{bottom:597.000450px;}
.y7ae_c00000{bottom:597.270450px;}
.y774_c00000{bottom:597.540450px;}
.yd67_c00000{bottom:597.810450px;}
.y885_c00000{bottom:597.990450px;}
.yb25_c00000{bottom:597.991107px;}
.yd23_c00000{bottom:598.080450px;}
.yeee_c00000{bottom:598.170450px;}
.yb98_c00000{bottom:598.260450px;}
.ycfc_c00000{bottom:598.440450px;}
.y7c3_c00000{bottom:598.530450px;}
.y271_c00000{bottom:598.890450px;}
.y1198_c00000{bottom:599.160450px;}
.y7fc_c00000{bottom:599.250450px;}
.yffc_c00000{bottom:599.340450px;}
.y574_c00000{bottom:599.700450px;}
.yd3d_c00000{bottom:599.790450px;}
.y1161_c00000{bottom:599.880450px;}
.y3b7_c00000{bottom:599.970450px;}
.yd4f_c00000{bottom:600.512421px;}
.yf63_c00000{bottom:600.690450px;}
.y1034_c00000{bottom:600.870450px;}
.y815_c00000{bottom:600.960450px;}
.y19f_c00000{bottom:601.320450px;}
.ye91_c00000{bottom:601.500450px;}
.y130_c00000{bottom:601.680450px;}
.y10fa_c00000{bottom:601.770450px;}
.ye55_c00000{bottom:601.860450px;}
.y10c_c00000{bottom:602.040450px;}
.yc55_c00000{bottom:602.130648px;}
.y375_c00000{bottom:602.220450px;}
.y252_c00000{bottom:602.310450px;}
.y10d5_c00000{bottom:602.580450px;}
.y4b8_c00000{bottom:602.760450px;}
.y21_c00000{bottom:603.000000px;}
.y8df_c00000{bottom:603.120450px;}
.y10e8_c00000{bottom:603.300450px;}
.ya18_c00000{bottom:603.390450px;}
.y900_c00000{bottom:603.391359px;}
.y50f_c00000{bottom:603.660450px;}
.y6d5_c00000{bottom:603.750450px;}
.yf82_c00000{bottom:603.840600px;}
.yc96_c00000{bottom:604.020450px;}
.y48a_c00000{bottom:604.110450px;}
.y791_c00000{bottom:604.200450px;}
.y317_c00000{bottom:604.560450px;}
.y7d8_c00000{bottom:604.740450px;}
.y79e_c00000{bottom:604.830450px;}
.ydf0_c00000{bottom:604.920450px;}
.ydaf_c00000{bottom:605.100450px;}
.yccb_c00000{bottom:605.460450px;}
.y1148_c00000{bottom:605.730450px;}
.ya6a_c00000{bottom:605.910450px;}
.y11aa_c00000{bottom:606.000450px;}
.y50_c00000{bottom:606.540450px;}
.y2a4_c00000{bottom:606.630450px;}
.y97c_c00000{bottom:606.810450px;}
.yac4_c00000{bottom:606.900450px;}
.ybb1_c00000{bottom:607.080450px;}
.yb83_c00000{bottom:607.350450px;}
.y994_c00000{bottom:607.440450px;}
.y667_c00000{bottom:607.440459px;}
.y1175_c00000{bottom:607.530450px;}
.ybc8_c00000{bottom:607.620450px;}
.y1e3_c00000{bottom:607.890450px;}
.yec6_c00000{bottom:607.980450px;}
.y112d_c00000{bottom:608.430450px;}
.ya48_c00000{bottom:608.520450px;}
.y55a_c00000{bottom:608.700450px;}
.ye87_c00000{bottom:608.790450px;}
.y34f_c00000{bottom:608.880450px;}
.yf2b_c00000{bottom:608.970450px;}
.y82e_c00000{bottom:609.060450px;}
.y10a9_c00000{bottom:609.510450px;}
.yfa5_c00000{bottom:609.510459px;}
.y152_c00000{bottom:609.600450px;}
.y6e8_c00000{bottom:609.870450px;}
.ydf_c00000{bottom:610.050450px;}
.y62a_c00000{bottom:610.141611px;}
.yf06_c00000{bottom:610.320450px;}
.y457_c00000{bottom:610.680450px;}
.y9e7_c00000{bottom:610.770450px;}
.yc88_c00000{bottom:610.860450px;}
.yace_c00000{bottom:610.950450px;}
.y9c0_c00000{bottom:611.040450px;}
.yc0a_c00000{bottom:611.130450px;}
.y3e8_c00000{bottom:611.220450px;}
.y690_c00000{bottom:611.310450px;}
.yf20_c00000{bottom:611.850450px;}
.y5bc_c00000{bottom:611.940450px;}
.y925_c00000{bottom:612.210600px;}
.y7ea_c00000{bottom:612.300450px;}
.y84_c00000{bottom:612.480756px;}
.yf9a_c00000{bottom:612.660450px;}
.yce3_c00000{bottom:612.750450px;}
.yc6c_c00000{bottom:613.020450px;}
.y706_c00000{bottom:613.110450px;}
.ybe5_c00000{bottom:613.201764px;}
.yb0_c00000{bottom:613.380450px;}
.y540_c00000{bottom:613.470450px;}
.y5e3_c00000{bottom:613.560450px;}
.y528_c00000{bottom:613.830450px;}
.y1fe_c00000{bottom:613.920450px;}
.y58e_c00000{bottom:614.370450px;}
.yeaf_c00000{bottom:614.460450px;}
.ya92_c00000{bottom:614.640450px;}
.ycb2_c00000{bottom:614.642403px;}
.yc44_c00000{bottom:614.910450px;}
.yb42_c00000{bottom:615.090450px;}
.y895_c00000{bottom:615.360450px;}
.yde5_c00000{bottom:615.540450px;}
.yb6d_c00000{bottom:615.630450px;}
.y4d9_c00000{bottom:615.720450px;}
.yf15_c00000{bottom:615.810450px;}
.yfcb_c00000{bottom:616.440450px;}
.y101f_c00000{bottom:616.620450px;}
.yff9_c00000{bottom:616.800450px;}
.y1c5_c00000{bottom:616.890450px;}
.yb56_c00000{bottom:616.980450px;}
.y2c1_c00000{bottom:617.430450px;}
.ya04_c00000{bottom:617.790450px;}
.y9a7_c00000{bottom:617.880450px;}
.ybf7_c00000{bottom:617.880702px;}
.y6c2_c00000{bottom:617.970450px;}
.ya7f_c00000{bottom:618.150450px;}
.y421_c00000{bottom:618.510450px;}
.y603_c00000{bottom:618.600450px;}
.y9cf_c00000{bottom:619.050450px;}
.y722_c00000{bottom:619.230450px;}
.yc54_c00000{bottom:619.320459px;}
.y10be_c00000{bottom:619.410450px;}
.yb24_c00000{bottom:619.680450px;}
.yd0f_c00000{bottom:620.580450px;}
.yaaa_c00000{bottom:620.850450px;}
.y72_c00000{bottom:621.020496px;}
.y773_c00000{bottom:621.120450px;}
.y5aa_c00000{bottom:621.480450px;}
.y884_c00000{bottom:621.660450px;}
.yd22_c00000{bottom:621.750450px;}
.yb97_c00000{bottom:621.930450px;}
.y7c2_c00000{bottom:622.200450px;}
.yd4e_c00000{bottom:622.201764px;}
.y12f_c00000{bottom:622.380450px;}
.y10b_c00000{bottom:622.560450px;}
.y1197_c00000{bottom:622.830450px;}
.y7fb_c00000{bottom:622.920450px;}
.y573_c00000{bottom:623.370450px;}
.y1160_c00000{bottom:623.550450px;}
.y4f5_c00000{bottom:623.552016px;}
.y3b6_c00000{bottom:623.640450px;}
.ycfb_c00000{bottom:624.180450px;}
.yf62_c00000{bottom:624.270450px;}
.y814_c00000{bottom:624.540450px;}
.y666_c00000{bottom:624.720450px;}
.y19e_c00000{bottom:624.990450px;}
.y8ff_c00000{bottom:624.991764px;}
.y10f9_c00000{bottom:625.440450px;}
.y22f_c00000{bottom:625.890450px;}
.y10d4_c00000{bottom:626.250450px;}
.y4b7_c00000{bottom:626.430450px;}
.yfa4_c00000{bottom:626.790450px;}
.y10e7_c00000{bottom:626.970450px;}
.ya17_c00000{bottom:627.060450px;}
.y50e_c00000{bottom:627.240450px;}
.y954_c00000{bottom:627.330882px;}
.yf81_c00000{bottom:627.510600px;}
.yfe9_c00000{bottom:627.600450px;}
.yae7_c00000{bottom:627.600972px;}
.y2e6_c00000{bottom:627.690450px;}
.y316_c00000{bottom:628.230450px;}
.y4f_c00000{bottom:628.410450px;}
.ydef_c00000{bottom:628.500450px;}
.ydae_c00000{bottom:628.770450px;}
.y8de_c00000{bottom:628.860450px;}
.ycca_c00000{bottom:629.130450px;}
.y1147_c00000{bottom:629.310450px;}
.ya69_c00000{bottom:629.580450px;}
.yeed_c00000{bottom:629.670450px;}
.y5bb_c00000{bottom:629.940450px;}
.y97b_c00000{bottom:630.390450px;}
.y8c8_c00000{bottom:630.480450px;}
.yac3_c00000{bottom:630.570450px;}
.yde_c00000{bottom:630.750450px;}
.yee4_c00000{bottom:631.200450px;}
.ybc7_c00000{bottom:631.290450px;}
.y518_c00000{bottom:631.470450px;}
.y1e2_c00000{bottom:631.560450px;}
.yec5_c00000{bottom:631.650450px;}
.y629_c00000{bottom:631.742016px;}
.y112c_c00000{bottom:632.010450px;}
.y559_c00000{bottom:632.370450px;}
.y34e_c00000{bottom:632.550450px;}
.y82d_c00000{bottom:632.640450px;}
.ye90_c00000{bottom:632.730450px;}
.y151_c00000{bottom:633.180450px;}
.y6e7_c00000{bottom:633.450450px;}
.yf6f_c00000{bottom:633.540450px;}
.yc95_c00000{bottom:633.810450px;}
.yf05_c00000{bottom:633.900450px;}
.y456_c00000{bottom:634.260450px;}
.y9e6_c00000{bottom:634.350450px;}
.yc87_c00000{bottom:634.440450px;}
.y32d_c00000{bottom:634.520532px;}
.y180_c00000{bottom:634.610532px;}
.y9bf_c00000{bottom:634.620450px;}
.yc09_c00000{bottom:634.710450px;}
.y111d_c00000{bottom:634.800450px;}
.y3d3_c00000{bottom:634.890450px;}
.ybe4_c00000{bottom:634.891107px;}
.y68f_c00000{bottom:634.980450px;}
.y489_c00000{bottom:635.430450px;}
.yf1f_c00000{bottom:635.520450px;}
.y924_c00000{bottom:635.790600px;}
.y6d4_c00000{bottom:636.150450px;}
.yce2_c00000{bottom:636.330450px;}
.ycb1_c00000{bottom:636.331746px;}
.y83_c00000{bottom:636.600450px;}
.y705_c00000{bottom:636.690450px;}
.y53f_c00000{bottom:637.140450px;}
.y5e2_c00000{bottom:637.230450px;}
.y1fd_c00000{bottom:637.500450px;}
.yeae_c00000{bottom:638.130450px;}
.yc43_c00000{bottom:638.580450px;}
.yb41_c00000{bottom:638.670450px;}
.y894_c00000{bottom:638.940450px;}
.yde4_c00000{bottom:639.120450px;}
.yb6c_c00000{bottom:639.210450px;}
.y2a3_c00000{bottom:639.300450px;}
.y4d8_c00000{bottom:639.390450px;}
.ybf6_c00000{bottom:639.481107px;}
.yb82_c00000{bottom:640.020450px;}
.y993_c00000{bottom:640.290450px;}
.y6f9_c00000{bottom:640.380450px;}
.y397_c00000{bottom:640.470450px;}
.y1c4_c00000{bottom:640.560450px;}
.ye86_c00000{bottom:640.746444px;}
.y2c0_c00000{bottom:641.010450px;}
.ya47_c00000{bottom:641.100450px;}
.ya03_c00000{bottom:641.370450px;}
.y9a6_c00000{bottom:641.460450px;}
.y6c1_c00000{bottom:641.640450px;}
.ya7e_c00000{bottom:641.730450px;}
.y420_c00000{bottom:642.180450px;}
.y602_c00000{bottom:642.270450px;}
.ye33_c00000{bottom:642.450450px;}
.y721_c00000{bottom:642.810450px;}
.y10bd_c00000{bottom:642.990450px;}
.y12e_c00000{bottom:643.080450px;}
.y10a_c00000{bottom:643.260450px;}
.yacd_c00000{bottom:643.530450px;}
.yd4d_c00000{bottom:643.891107px;}
.yd0e_c00000{bottom:644.250450px;}
.yaa9_c00000{bottom:644.520450px;}
.y953_c00000{bottom:644.610873px;}
.y772_c00000{bottom:644.790450px;}
.y7e9_c00000{bottom:644.880450px;}
.y883_c00000{bottom:645.240450px;}
.y4f4_c00000{bottom:645.241359px;}
.yd21_c00000{bottom:645.420450px;}
.yb96_c00000{bottom:645.600450px;}
.y270_c00000{bottom:646.230450px;}
.yfb0_c00000{bottom:646.500450px;}
.y8fe_c00000{bottom:646.681107px;}
.y572_c00000{bottom:646.950450px;}
.yd3c_c00000{bottom:647.040450px;}
.y3b5_c00000{bottom:647.220450px;}
.ya91_c00000{bottom:647.310450px;}
.y5ba_c00000{bottom:647.940450px;}
.y813_c00000{bottom:648.210450px;}
.yb55_c00000{bottom:648.300450px;}
.y19d_c00000{bottom:648.570450px;}
.y374_c00000{bottom:649.470450px;}
.y9_c00000{bottom:649.495500px;}
.y22e_c00000{bottom:649.560450px;}
.y10d3_c00000{bottom:649.830450px;}
.y4b6_c00000{bottom:650.010450px;}
.ye66_c00000{bottom:650.100450px;}
.y4e_c00000{bottom:650.280450px;}
.yd80_c00000{bottom:650.370450px;}
.y10e6_c00000{bottom:650.550450px;}
.ya16_c00000{bottom:650.730450px;}
.y50d_c00000{bottom:650.910450px;}
.yf80_c00000{bottom:651.180600px;}
.yfe8_c00000{bottom:651.270450px;}
.ydd_c00000{bottom:651.450450px;}
.y9ce_c00000{bottom:651.630450px;}
.y665_c00000{bottom:651.720450px;}
.y315_c00000{bottom:651.810450px;}
.yf47_c00000{bottom:651.900450px;}
.ydad_c00000{bottom:652.350450px;}
.yfa3_c00000{bottom:652.530450px;}
.ycc9_c00000{bottom:652.800450px;}
.yae6_c00000{bottom:652.890450px;}
.y1146_c00000{bottom:652.980450px;}
.ya68_c00000{bottom:653.250450px;}
.y628_c00000{bottom:653.431359px;}
.ydee_c00000{bottom:653.700450px;}
.y97a_c00000{bottom:654.060450px;}
.y5a9_c00000{bottom:654.150450px;}
.ybb0_c00000{bottom:654.330450px;}
.y7c1_c00000{bottom:654.780450px;}
.ybc6_c00000{bottom:654.870450px;}
.y517_c00000{bottom:655.140450px;}
.y21f_c00000{bottom:655.230450px;}
.yeec_c00000{bottom:655.410450px;}
.y7fa_c00000{bottom:655.500450px;}
.y112b_c00000{bottom:655.680450px;}
.yc78_c00000{bottom:655.682925px;}
.y558_c00000{bottom:655.950450px;}
.y115f_c00000{bottom:656.130450px;}
.y34d_c00000{bottom:656.220450px;}
.yaf_c00000{bottom:656.220756px;}
.y82c_c00000{bottom:656.310450px;}
.ybe3_c00000{bottom:656.580450px;}
.y10a8_c00000{bottom:656.760450px;}
.y150_c00000{bottom:656.850450px;}
.yf6e_c00000{bottom:657.120450px;}
.yf04_c00000{bottom:657.570450px;}
.y455_c00000{bottom:657.930450px;}
.y9e5_c00000{bottom:658.020450px;}
.y10f8_c00000{bottom:658.110450px;}
.y9be_c00000{bottom:658.290450px;}
.y3d2_c00000{bottom:658.470450px;}
.y6a3_c00000{bottom:658.560450px;}
.yf1e_c00000{bottom:659.100450px;}
.yf99_c00000{bottom:659.910450px;}
.yce1_c00000{bottom:660.000450px;}
.yb81_c00000{bottom:660.088254px;}
.yc6b_c00000{bottom:660.270450px;}
.y704_c00000{bottom:660.360450px;}
.y53e_c00000{bottom:660.720450px;}
.y5e1_c00000{bottom:660.810450px;}
.y527_c00000{bottom:661.080450px;}
.ybf5_c00000{bottom:661.170450px;}
.y2e5_c00000{bottom:661.620450px;}
.yead_c00000{bottom:661.710450px;}
.y952_c00000{bottom:661.890864px;}
.yc42_c00000{bottom:662.250450px;}
.yb40_c00000{bottom:662.340450px;}
.ye85_c00000{bottom:662.435787px;}
.y7ad_c00000{bottom:662.520450px;}
.yf95_c00000{bottom:662.610450px;}
.yde3_c00000{bottom:662.790450px;}
.y2a2_c00000{bottom:662.880450px;}
.y4d7_c00000{bottom:662.970450px;}
.yd66_c00000{bottom:663.060450px;}
.yacc_c00000{bottom:663.600450px;}
.y12d_c00000{bottom:663.780450px;}
.y109_c00000{bottom:663.960450px;}
.yb18_c00000{bottom:664.050450px;}
.y396_c00000{bottom:664.140450px;}
.y1e1_c00000{bottom:664.230450px;}
.y2bf_c00000{bottom:664.680450px;}
.ya46_c00000{bottom:664.770450px;}
.yade_c00000{bottom:665.040450px;}
.y9a5_c00000{bottom:665.130450px;}
.ya7d_c00000{bottom:665.400450px;}
.yd4c_c00000{bottom:665.580450px;}
.y5b9_c00000{bottom:665.760117px;}
.y41f_c00000{bottom:665.760450px;}
.y601_c00000{bottom:665.850450px;}
.y6e6_c00000{bottom:666.120600px;}
.ye32_c00000{bottom:666.210450px;}
.y720_c00000{bottom:666.480450px;}
.y10bc_c00000{bottom:666.660450px;}
.y4f3_c00000{bottom:666.841764px;}
.ycb0_c00000{bottom:666.931359px;}
.yc86_c00000{bottom:667.110450px;}
.yc08_c00000{bottom:667.380450px;}
.y68e_c00000{bottom:667.560450px;}
.yd0d_c00000{bottom:667.920450px;}
.y488_c00000{bottom:668.010450px;}
.yaa8_c00000{bottom:668.100450px;}
.y771_c00000{bottom:668.370450px;}
.y923_c00000{bottom:668.460600px;}
.y6d3_c00000{bottom:669.000450px;}
.y664_c00000{bottom:669.720450px;}
.y26f_c00000{bottom:669.810450px;}
.y1196_c00000{bottom:670.080450px;}
.y1fc_c00000{bottom:670.170450px;}
.yd3b_c00000{bottom:670.620450px;}
.yf61_c00000{bottom:671.520450px;}
.y893_c00000{bottom:671.610450px;}
.y812_c00000{bottom:671.790450px;}
.y4d_c00000{bottom:672.150450px;}
.y19c_c00000{bottom:672.240450px;}
.y992_c00000{bottom:672.870450px;}
.y412_c00000{bottom:673.140450px;}
.y1c3_c00000{bottom:673.230450px;}
.y4b5_c00000{bottom:673.680450px;}
.y71_c00000{bottom:673.852206px;}
.ya02_c00000{bottom:674.040450px;}
.y10e5_c00000{bottom:674.220450px;}
.ya15_c00000{bottom:674.310450px;}
.yf7f_c00000{bottom:674.760600px;}
.yfe7_c00000{bottom:674.850450px;}
.y1c_c00000{bottom:675.000000px;}
.y627_c00000{bottom:675.120702px;}
.y176_c00000{bottom:675.480450px;}
.ydac_c00000{bottom:676.020450px;}
.ycc8_c00000{bottom:676.380450px;}
.ya67_c00000{bottom:676.830450px;}
.yb80_c00000{bottom:677.278065px;}
.yc77_c00000{bottom:677.372268px;}
.y7e8_c00000{bottom:677.640450px;}
.y979_c00000{bottom:677.730450px;}
.yac2_c00000{bottom:677.820450px;}
.y882_c00000{bottom:677.910450px;}
.ybaf_c00000{bottom:678.000450px;}
.yb95_c00000{bottom:678.180450px;}
.ybc5_c00000{bottom:678.540450px;}
.y21e_c00000{bottom:678.810450px;}
.yec4_c00000{bottom:678.900450px;}
.y58d_c00000{bottom:678.990954px;}
.y951_c00000{bottom:679.080675px;}
.y112a_c00000{bottom:679.260450px;}
.ya90_c00000{bottom:679.351863px;}
.y82_c00000{bottom:679.529667px;}
.y557_c00000{bottom:679.620450px;}
.y34c_c00000{bottom:679.800450px;}
.y3b4_c00000{bottom:679.890450px;}
.y82b_c00000{bottom:679.980450px;}
.y10a7_c00000{bottom:680.430450px;}
.y14f_c00000{bottom:680.520450px;}
.yf6d_c00000{bottom:680.790450px;}
.yb54_c00000{bottom:680.970450px;}
.y9e4_c00000{bottom:681.600450px;}
.y10f7_c00000{bottom:681.690450px;}
.y9bd_c00000{bottom:681.870450px;}
.y373_c00000{bottom:682.140450px;}
.y61e_c00000{bottom:682.230450px;}
.yd7f_c00000{bottom:682.412016px;}
.y10d2_c00000{bottom:682.500450px;}
.yf1d_c00000{bottom:682.770450px;}
.y6f_c00000{bottom:682.850829px;}
.y873_c00000{bottom:682.940829px;}
.y5b8_c00000{bottom:682.949928px;}
.y9cd_c00000{bottom:683.130459px;}
.y50c_c00000{bottom:683.490450px;}
.yb23_c00000{bottom:683.580450px;}
.yae_c00000{bottom:683.850450px;}
.y703_c00000{bottom:683.940450px;}
.ye84_c00000{bottom:684.125130px;}
.y53d_c00000{bottom:684.390450px;}
.y12c_c00000{bottom:684.480450px;}
.y108_c00000{bottom:684.660450px;}
.y1145_c00000{bottom:685.560450px;}
.yc41_c00000{bottom:685.830450px;}
.yb3f_c00000{bottom:685.920450px;}
.yacb_c00000{bottom:686.370450px;}
.yb6b_c00000{bottom:686.460450px;}
.y2a1_c00000{bottom:686.550450px;}
.y4d6_c00000{bottom:686.640450px;}
.yd65_c00000{bottom:686.730450px;}
.y5a8_c00000{bottom:686.820450px;}
.y7c0_c00000{bottom:687.450450px;}
.yee3_c00000{bottom:687.540600px;}
.y5f8_c00000{bottom:687.630450px;}
.y395_c00000{bottom:687.720450px;}
.y1e0_c00000{bottom:687.810450px;}
.y7f9_c00000{bottom:688.170450px;}
.y2be_c00000{bottom:688.260450px;}
.ya45_c00000{bottom:688.350450px;}
.y4f2_c00000{bottom:688.531107px;}
.ycaf_c00000{bottom:688.620702px;}
.ya7c_c00000{bottom:688.980450px;}
.ye8f_c00000{bottom:689.070450px;}
.y41e_c00000{bottom:689.430450px;}
.y600_c00000{bottom:689.520450px;}
.y6e5_c00000{bottom:689.700600px;}
.y6c0_c00000{bottom:689.880450px;}
.y5cb_c00000{bottom:690.060450px;}
.yf03_c00000{bottom:690.240450px;}
.y10bb_c00000{bottom:690.330450px;}
.y454_c00000{bottom:690.600450px;}
.yc85_c00000{bottom:690.780450px;}
.yc07_c00000{bottom:690.960450px;}
.y111c_c00000{bottom:691.050450px;}
.yd0c_c00000{bottom:691.500450px;}
.y487_c00000{bottom:691.680450px;}
.yaa7_c00000{bottom:691.770450px;}
.y770_c00000{bottom:692.040450px;}
.y922_c00000{bottom:692.040600px;}
.ybf4_c00000{bottom:692.490450px;}
.ydc_c00000{bottom:692.850450px;}
.yfbd_c00000{bottom:692.940450px;}
.yf3b_c00000{bottom:693.300450px;}
.y67d_c00000{bottom:693.480450px;}
.y526_c00000{bottom:693.750450px;}
.y1fb_c00000{bottom:693.840450px;}
.y4c_c00000{bottom:694.020450px;}
.yd3a_c00000{bottom:694.290450px;}
.yeac_c00000{bottom:694.380450px;}
.yb7f_c00000{bottom:694.558056px;}
.y7ac_c00000{bottom:695.190450px;}
.yde2_c00000{bottom:695.370450px;}
.y811_c00000{bottom:695.460450px;}
.y2e4_c00000{bottom:695.550450px;}
.y19b_c00000{bottom:695.820450px;}
.y11a9_c00000{bottom:695.910450px;}
.y950_c00000{bottom:696.360666px;}
.y991_c00000{bottom:696.540450px;}
.y3f4_c00000{bottom:696.720450px;}
.y626_c00000{bottom:696.810045px;}
.y1c2_c00000{bottom:696.810450px;}
.ye65_c00000{bottom:697.350450px;}
.ya01_c00000{bottom:697.620450px;}
.y9a4_c00000{bottom:697.800450px;}
.y6d2_c00000{bottom:697.980450px;}
.yf7e_c00000{bottom:698.430600px;}
.yfe6_c00000{bottom:698.520450px;}
.yc76_c00000{bottom:698.972673px;}
.y6f8_c00000{bottom:699.060450px;}
.y8fd_c00000{bottom:699.510450px;}
.ydab_c00000{bottom:699.600450px;}
.y68d_c00000{bottom:700.050450px;}
.y9cc_c00000{bottom:700.410450px;}
.yb00_c00000{bottom:700.500450px;}
.y58c_c00000{bottom:700.591359px;}
.ya8f_c00000{bottom:700.952268px;}
.y978_c00000{bottom:701.310450px;}
.yac1_c00000{bottom:701.400450px;}
.ybae_c00000{bottom:701.580450px;}
.yd20_c00000{bottom:701.670450px;}
.ybc4_c00000{bottom:702.210600px;}
.y713_c00000{bottom:702.300450px;}
.y21d_c00000{bottom:702.480450px;}
.y1129_c00000{bottom:702.930450px;}
.y892_c00000{bottom:703.110450px;}
.y571_c00000{bottom:703.200450px;}
.y115e_c00000{bottom:703.380450px;}
.y3b3_c00000{bottom:703.470450px;}
.y10a6_c00000{bottom:704.010450px;}
.y14e_c00000{bottom:704.100450px;}
.yd7e_c00000{bottom:704.101359px;}
.yf60_c00000{bottom:704.190450px;}
.yf6c_c00000{bottom:704.370450px;}
.yb53_c00000{bottom:704.550450px;}
.y101e_c00000{bottom:704.913732px;}
.y12b_c00000{bottom:705.180450px;}
.y9e3_c00000{bottom:705.270450px;}
.y107_c00000{bottom:705.360450px;}
.y9bc_c00000{bottom:705.540450px;}
.y372_c00000{bottom:705.720450px;}
.ye83_c00000{bottom:705.725535px;}
.y61d_c00000{bottom:705.810450px;}
.y4b4_c00000{bottom:706.350450px;}
.ya14_c00000{bottom:706.980450px;}
.y81_c00000{bottom:707.070450px;}
.yb22_c00000{bottom:707.160450px;}
.yce0_c00000{bottom:707.250450px;}
.y702_c00000{bottom:707.610450px;}
.y53c_c00000{bottom:707.970450px;}
.y175_c00000{bottom:708.060450px;}
.y11b6_c00000{bottom:708.330450px;}
.y7e7_c00000{bottom:709.050450px;}
.y1144_c00000{bottom:709.230450px;}
.ya66_c00000{bottom:709.500450px;}
.yb3e_c00000{bottom:709.590450px;}
.yb94_c00000{bottom:709.680450px;}
.yad_c00000{bottom:710.130450px;}
.y4d5_c00000{bottom:710.220450px;}
.ycae_c00000{bottom:710.310045px;}
.y881_c00000{bottom:710.310450px;}
.yee2_c00000{bottom:711.120600px;}
.yadc_c00000{bottom:711.300450px;}
.y394_c00000{bottom:711.390450px;}
.y1df_c00000{bottom:711.480450px;}
.y2bd_c00000{bottom:711.930450px;}
.ya44_c00000{bottom:712.020450px;}
.y556_c00000{bottom:712.200450px;}
.y34b_c00000{bottom:712.470450px;}
.y8_c00000{bottom:712.497000px;}
.y31_c00000{bottom:712.500000px;}
.y82a_c00000{bottom:712.560450px;}
.ya7b_c00000{bottom:712.650450px;}
.y41d_c00000{bottom:713.100450px;}
.y6e4_c00000{bottom:713.370600px;}
.ydb_c00000{bottom:713.550450px;}
.y94f_c00000{bottom:713.640657px;}
.ye31_c00000{bottom:713.820450px;}
.y10ba_c00000{bottom:713.910450px;}
.yc84_c00000{bottom:714.360600px;}
.yc06_c00000{bottom:714.630450px;}
.y4c3_c00000{bottom:714.720450px;}
.yd0b_c00000{bottom:715.170450px;}
.y486_c00000{bottom:715.350450px;}
.y50b_c00000{bottom:715.532268px;}
.y921_c00000{bottom:715.710600px;}
.y4b_c00000{bottom:715.890450px;}
.yc6a_c00000{bottom:716.520450px;}
.y67a_c00000{bottom:717.060450px;}
.y525_c00000{bottom:717.330450px;}
.y1fa_c00000{bottom:717.420450px;}
.yd39_c00000{bottom:717.960450px;}
.y625_c00000{bottom:718.410450px;}
.y1113_c00000{bottom:718.681359px;}
.y1174_c00000{bottom:718.950450px;}
.y810_c00000{bottom:719.040450px;}
.y5a7_c00000{bottom:719.400450px;}
.y19a_c00000{bottom:719.490450px;}
.y7bf_c00000{bottom:720.120450px;}
.y990_c00000{bottom:720.210450px;}
.y5f7_c00000{bottom:720.300450px;}
.y3f3_c00000{bottom:720.390450px;}
.y1c1_c00000{bottom:720.480450px;}
.yc75_c00000{bottom:720.662016px;}
.y7f8_c00000{bottom:720.750450px;}
.ye64_c00000{bottom:721.020450px;}
.ya00_c00000{bottom:721.290450px;}
.y9a3_c00000{bottom:721.380450px;}
.y10e4_c00000{bottom:721.470450px;}
.yf02_c00000{bottom:721.650450px;}
.yf7d_c00000{bottom:722.010600px;}
.yfe5_c00000{bottom:722.100450px;}
.y58b_c00000{bottom:722.280702px;}
.y453_c00000{bottom:722.552673px;}
.ya8e_c00000{bottom:722.641611px;}
.y5ca_c00000{bottom:722.730450px;}
.yb7e_c00000{bottom:723.268362px;}
.ydaa_c00000{bottom:723.270450px;}
.ycc7_c00000{bottom:723.630450px;}
.y663_c00000{bottom:723.720450px;}
.yaff_c00000{bottom:724.080450px;}
.y76f_c00000{bottom:724.620450px;}
.y977_c00000{bottom:724.980450px;}
.yac0_c00000{bottom:725.070450px;}
.ybad_c00000{bottom:725.250450px;}
.yd7d_c00000{bottom:725.701764px;}
.ybc3_c00000{bottom:725.790600px;}
.y12a_c00000{bottom:725.880450px;}
.yf3a_c00000{bottom:725.970450px;}
.y106_c00000{bottom:726.060450px;}
.yec3_c00000{bottom:726.150450px;}
.y9cb_c00000{bottom:726.240450px;}
.y1128_c00000{bottom:726.510450px;}
.y70_c00000{bottom:726.591450px;}
.y7ab_c00000{bottom:726.600450px;}
.y101d_c00000{bottom:726.603075px;}
.yf94_c00000{bottom:726.690450px;}
.y570_c00000{bottom:726.870450px;}
.y115d_c00000{bottom:727.050450px;}
.y3b2_c00000{bottom:727.140450px;}
.yde1_c00000{bottom:727.411359px;}
.ye82_c00000{bottom:727.414878px;}
.y10a5_c00000{bottom:727.680450px;}
.yf6b_c00000{bottom:728.040450px;}
.yb52_c00000{bottom:728.220450px;}
.yef6_c00000{bottom:728.310648px;}
.y10f6_c00000{bottom:728.940450px;}
.y9bb_c00000{bottom:729.210450px;}
.y371_c00000{bottom:729.390450px;}
.y2e3_c00000{bottom:729.480450px;}
.y4b3_c00000{bottom:729.930450px;}
.yf1c_c00000{bottom:730.020450px;}
.yf46_c00000{bottom:730.290450px;}
.y1b_c00000{bottom:730.500000px;}
.yb21_c00000{bottom:730.830450px;}
.y94e_c00000{bottom:730.830468px;}
.yac_c00000{bottom:731.010450px;}
.y6e_c00000{bottom:731.092863px;}
.y17f_c00000{bottom:731.182863px;}
.y53b_c00000{bottom:731.640450px;}
.y314_c00000{bottom:731.730450px;}
.ycad_c00000{bottom:731.910450px;}
.y8fc_c00000{bottom:732.270450px;}
.y68c_c00000{bottom:732.810450px;}
.yc40_c00000{bottom:733.080450px;}
.yb3d_c00000{bottom:733.260450px;}
.y80_c00000{bottom:733.530450px;}
.y2a0_c00000{bottom:733.800450px;}
.y4d4_c00000{bottom:733.890450px;}
.yd64_c00000{bottom:733.980450px;}
.yda_c00000{bottom:734.250450px;}
.yee1_c00000{bottom:734.790600px;}
.y7e6_c00000{bottom:734.880450px;}
.y405_c00000{bottom:734.970450px;}
.y1de_c00000{bottom:735.060450px;}
.y2bc_c00000{bottom:735.510450px;}
.ya43_c00000{bottom:735.690450px;}
.y555_c00000{bottom:735.870450px;}
.y34a_c00000{bottom:736.050450px;}
.yf2a_c00000{bottom:736.140450px;}
.ya7a_c00000{bottom:736.230450px;}
.ye8e_c00000{bottom:736.320450px;}
.y41c_c00000{bottom:736.680450px;}
.y14d_c00000{bottom:736.770450px;}
.y6e3_c00000{bottom:737.040600px;}
.y50a_c00000{bottom:737.221611px;}
.y10b9_c00000{bottom:737.580450px;}
.ye30_c00000{bottom:737.670450px;}
.y9e2_c00000{bottom:737.850450px;}
.yc83_c00000{bottom:738.030600px;}
.yc05_c00000{bottom:738.210450px;}
.y111b_c00000{bottom:738.300450px;}
.y4c2_c00000{bottom:738.390450px;}
.y485_c00000{bottom:738.930450px;}
.yaa6_c00000{bottom:739.020450px;}
.y36_c00000{bottom:739.230000px;}
.y920_c00000{bottom:739.290600px;}
.y4a_c00000{bottom:739.380450px;}
.yf98_c00000{bottom:739.830450px;}
.yc69_c00000{bottom:740.100450px;}
.y701_c00000{bottom:740.190450px;}
.yfbc_c00000{bottom:740.190600px;}
.y1112_c00000{bottom:740.370702px;}
.yb14_c00000{bottom:740.550450px;}
.y174_c00000{bottom:740.730450px;}
.y524_c00000{bottom:741.000450px;}
.y1f9_c00000{bottom:741.090450px;}
.y4f1_c00000{bottom:741.450600px;}
.ya65_c00000{bottom:741.453834px;}
.yeab_c00000{bottom:741.630450px;}
.y662_c00000{bottom:741.720450px;}
.y1105_c00000{bottom:742.170450px;}
.yc74_c00000{bottom:742.351359px;}
.y80f_c00000{bottom:742.710450px;}
.y199_c00000{bottom:743.160450px;}
.y98f_c00000{bottom:743.790450px;}
.y58a_c00000{bottom:743.970045px;}
.y393_c00000{bottom:743.970450px;}
.y1c0_c00000{bottom:744.060450px;}
.y452_c00000{bottom:744.242016px;}
.ya8d_c00000{bottom:744.330954px;}
.ye63_c00000{bottom:744.600450px;}
.y9ff_c00000{bottom:744.960450px;}
.y9a2_c00000{bottom:745.050450px;}
.y829_c00000{bottom:745.230450px;}
.yef5_c00000{bottom:745.500459px;}
.yf7c_c00000{bottom:745.680600px;}
.yfe4_c00000{bottom:745.770450px;}
.y93d_c00000{bottom:746.310450px;}
.y129_c00000{bottom:746.580450px;}
.y105_c00000{bottom:746.760450px;}
.yda9_c00000{bottom:746.850450px;}
.y5ff_c00000{bottom:746.940450px;}
.ycc6_c00000{bottom:747.300450px;}
.yd7c_c00000{bottom:747.391107px;}
.yf01_c00000{bottom:747.480450px;}
.yafe_c00000{bottom:747.750450px;}
.y94d_c00000{bottom:748.110459px;}
.y101c_c00000{bottom:748.203480px;}
.y976_c00000{bottom:748.560450px;}
.ybf3_c00000{bottom:748.740450px;}
.ybac_c00000{bottom:748.830450px;}
.yd1f_c00000{bottom:748.920450px;}
.yde0_c00000{bottom:749.100702px;}
.yb12_c00000{bottom:749.103327px;}
.ye81_c00000{bottom:749.104221px;}
.ybc2_c00000{bottom:749.460600px;}
.yf39_c00000{bottom:749.550450px;}
.y26e_c00000{bottom:749.730450px;}
.yfaf_c00000{bottom:750.000450px;}
.y1127_c00000{bottom:750.180450px;}
.y56f_c00000{bottom:750.450450px;}
.yd38_c00000{bottom:750.540450px;}
.y115c_c00000{bottom:750.630450px;}
.y3b1_c00000{bottom:750.720450px;}
.y10a4_c00000{bottom:751.260450px;}
.y7be_c00000{bottom:751.530450px;}
.yab_c00000{bottom:751.710450px;}
.yb51_c00000{bottom:751.800450px;}
.yb7d_c00000{bottom:751.978668px;}
.y5a6_c00000{bottom:752.070450px;}
.y7f7_c00000{bottom:752.250450px;}
.y10f5_c00000{bottom:752.610450px;}
.y9ba_c00000{bottom:752.790450px;}
.y370_c00000{bottom:752.970450px;}
.y2e2_c00000{bottom:753.060450px;}
.y4b2_c00000{bottom:753.600450px;}
.yf1b_c00000{bottom:753.690450px;}
.y10e3_c00000{bottom:754.050450px;}
.yb20_c00000{bottom:754.410450px;}
.yd9_c00000{bottom:754.950450px;}
.y53a_c00000{bottom:755.220450px;}
.y5c9_c00000{bottom:755.310450px;}
.y8fb_c00000{bottom:755.850450px;}
.y1143_c00000{bottom:756.480450px;}
.yc3f_c00000{bottom:756.750450px;}
.yb3c_c00000{bottom:756.840450px;}
.y76e_c00000{bottom:757.290450px;}
.y29f_c00000{bottom:757.380450px;}
.y4d3_c00000{bottom:757.470450px;}
.yf14_c00000{bottom:757.560450px;}
.yabf_c00000{bottom:757.740450px;}
.yee0_c00000{bottom:758.370600px;}
.y404_c00000{bottom:758.640450px;}
.y1dd_c00000{bottom:758.730450px;}
.y509_c00000{bottom:758.822016px;}
.y2bb_c00000{bottom:759.180450px;}
.ya42_c00000{bottom:759.270450px;}
.y554_c00000{bottom:759.450450px;}
.y349_c00000{bottom:759.720450px;}
.yf29_c00000{bottom:759.810450px;}
.ya79_c00000{bottom:759.900450px;}
.y14c_c00000{bottom:760.350450px;}
.y6e2_c00000{bottom:760.620600px;}
.yf6a_c00000{bottom:760.710450px;}
.yf5f_c00000{bottom:760.890450px;}
.y10b8_c00000{bottom:761.160450px;}
.ye2f_c00000{bottom:761.430450px;}
.yc82_c00000{bottom:761.610600px;}
.yc04_c00000{bottom:761.880450px;}
.y43c_c00000{bottom:761.970450px;}
.y1111_c00000{bottom:762.060045px;}
.yc19_c00000{bottom:762.060450px;}
.y484_c00000{bottom:762.600450px;}
.yaa5_c00000{bottom:762.690450px;}
.yef4_c00000{bottom:762.780450px;}
.y91f_c00000{bottom:762.960600px;}
.ya64_c00000{bottom:763.143177px;}
.ycac_c00000{bottom:763.230450px;}
.ycdf_c00000{bottom:763.500450px;}
.y7f_c00000{bottom:763.590375px;}
.yc68_c00000{bottom:763.770450px;}
.y700_c00000{bottom:763.860450px;}
.yfbb_c00000{bottom:763.860600px;}
.yc73_c00000{bottom:764.040702px;}
.y313_c00000{bottom:764.310450px;}
.y523_c00000{bottom:764.580450px;}
.y1f8_c00000{bottom:764.670450px;}
.yeaa_c00000{bottom:765.210450px;}
.y68b_c00000{bottom:765.480450px;}
.y589_c00000{bottom:765.570450px;}
.y451_c00000{bottom:765.931359px;}
.yd63_c00000{bottom:766.560450px;}
.y198_c00000{bottom:766.740450px;}
.y104_c00000{bottom:767.460450px;}
.y392_c00000{bottom:767.640450px;}
.y1bf_c00000{bottom:767.730450px;}
.y128_c00000{bottom:767.820666px;}
.ye62_c00000{bottom:768.270450px;}
.y9fe_c00000{bottom:768.540450px;}
.y9a1_c00000{bottom:768.630450px;}
.yd7b_c00000{bottom:769.080450px;}
.yf7b_c00000{bottom:769.260600px;}
.y9e1_c00000{bottom:769.892823px;}
.y1173_c00000{bottom:769.980450px;}
.yda8_c00000{bottom:770.520450px;}
.yddf_c00000{bottom:770.790045px;}
.yb11_c00000{bottom:770.792670px;}
.ye80_c00000{bottom:770.793564px;}
.ycc5_c00000{bottom:770.880450px;}
.yf97_c00000{bottom:771.240450px;}
.yafd_c00000{bottom:771.330450px;}
.ye49_c00000{bottom:771.690450px;}
.y94c_c00000{bottom:772.140450px;}
.ya13_c00000{bottom:772.230450px;}
.ybf2_c00000{bottom:772.320450px;}
.yaa_c00000{bottom:772.410450px;}
.ybab_c00000{bottom:772.500450px;}
.ybc1_c00000{bottom:773.040450px;}
.yb13_c00000{bottom:773.130450px;}
.yf38_c00000{bottom:773.220450px;}
.y173_c00000{bottom:773.310450px;}
.y1195_c00000{bottom:773.580450px;}
.y1104_c00000{bottom:773.670450px;}
.y4f0_c00000{bottom:774.120600px;}
.yd37_c00000{bottom:774.210450px;}
.y115b_c00000{bottom:774.300450px;}
.y3b0_c00000{bottom:774.390450px;}
.y10a3_c00000{bottom:774.930450px;}
.y80e_c00000{bottom:775.290450px;}
.yb50_c00000{bottom:775.470450px;}
.y7_c00000{bottom:775.498500px;}
.yd8_c00000{bottom:775.650450px;}
.y880_c00000{bottom:775.740450px;}
.y10f4_c00000{bottom:776.190450px;}
.y98e_c00000{bottom:776.460450px;}
.y36f_c00000{bottom:776.640450px;}
.y2e1_c00000{bottom:776.730450px;}
.y4b1_c00000{bottom:777.180450px;}
.y7bd_c00000{bottom:777.270450px;}
.y661_c00000{bottom:777.720450px;}
.yabe_c00000{bottom:777.721161px;}
.y828_c00000{bottom:777.810450px;}
.y7f6_c00000{bottom:778.080450px;}
.yfe3_c00000{bottom:778.440450px;}
.y787_c00000{bottom:778.980450px;}
.yd0a_c00000{bottom:779.250108px;}
.y6d_c00000{bottom:779.423160px;}
.y17e_c00000{bottom:779.513160px;}
.y8fa_c00000{bottom:779.520450px;}
.y1142_c00000{bottom:780.150450px;}
.yc3e_c00000{bottom:780.330450px;}
.yd1e_c00000{bottom:780.420474px;}
.yb3b_c00000{bottom:780.510450px;}
.y508_c00000{bottom:780.511359px;}
.yb7c_c00000{bottom:780.598794px;}
.y29e_c00000{bottom:781.050450px;}
.y4d2_c00000{bottom:781.140450px;}
.y975_c00000{bottom:781.230450px;}
.yfae_c00000{bottom:781.500450px;}
.yedf_c00000{bottom:782.040600px;}
.y5fe_c00000{bottom:782.130450px;}
.y403_c00000{bottom:782.220450px;}
.y1dc_c00000{bottom:782.310450px;}
.yec2_c00000{bottom:782.400450px;}
.y2ba_c00000{bottom:782.760450px;}
.ya41_c00000{bottom:782.940450px;}
.y553_c00000{bottom:783.120450px;}
.y348_c00000{bottom:783.300450px;}
.yf28_c00000{bottom:783.390450px;}
.ya78_c00000{bottom:783.570450px;}
.y1110_c00000{bottom:783.660450px;}
.y41b_c00000{bottom:783.930450px;}
.y14b_c00000{bottom:784.020450px;}
.y10b7_c00000{bottom:784.830450px;}
.ya63_c00000{bottom:784.832520px;}
.ye2e_c00000{bottom:785.280450px;}
.yc81_c00000{bottom:785.280600px;}
.yc03_c00000{bottom:785.550450px;}
.y3d1_c00000{bottom:785.640450px;}
.yc72_c00000{bottom:785.641107px;}
.yad9_c00000{bottom:785.730450px;}
.y483_c00000{bottom:786.180450px;}
.yaa4_c00000{bottom:786.270450px;}
.ycde_c00000{bottom:787.080450px;}
.yc67_c00000{bottom:787.440450px;}
.yfba_c00000{bottom:787.440600px;}
.y6ff_c00000{bottom:787.530450px;}
.y450_c00000{bottom:787.531764px;}
.ya8c_c00000{bottom:787.620702px;}
.y6f7_c00000{bottom:787.800450px;}
.y539_c00000{bottom:787.890450px;}
.y312_c00000{bottom:787.980450px;}
.y103_c00000{bottom:788.070450px;}
.y522_c00000{bottom:788.250450px;}
.y1f7_c00000{bottom:788.340450px;}
.yef3_c00000{bottom:788.610600px;}
.yea9_c00000{bottom:788.880450px;}
.y76d_c00000{bottom:789.960450px;}
.yd62_c00000{bottom:790.230450px;}
.y197_c00000{bottom:790.410450px;}
.y391_c00000{bottom:791.220450px;}
.y1be_c00000{bottom:791.310450px;}
.y9e0_c00000{bottom:791.582166px;}
.y9fd_c00000{bottom:792.210450px;}
.y9a0_c00000{bottom:792.300450px;}
.ydde_c00000{bottom:792.390450px;}
.yb10_c00000{bottom:792.393075px;}
.yf69_c00000{bottom:792.664086px;}
.yf7a_c00000{bottom:792.930600px;}
.ya9_c00000{bottom:793.110450px;}
.y6e1_c00000{bottom:793.290600px;}
.y1172_c00000{bottom:793.560450px;}
.yf58_c00000{bottom:794.550450px;}
.yabd_c00000{bottom:795.001152px;}
.ye48_c00000{bottom:795.270450px;}
.y91e_c00000{bottom:795.540600px;}
.y660_c00000{bottom:795.720450px;}
.ycab_c00000{bottom:795.810450px;}
.ybf1_c00000{bottom:795.990450px;}
.yd7_c00000{bottom:796.350450px;}
.ybc0_c00000{bottom:796.710450px;}
.yf37_c00000{bottom:796.800450px;}
.y7e_c00000{bottom:796.800564px;}
.y588_c00000{bottom:796.890450px;}
.y26d_c00000{bottom:796.980450px;}
.y1194_c00000{bottom:797.250450px;}
.y4ef_c00000{bottom:797.700600px;}
.yd36_c00000{bottom:797.790450px;}
.y115a_c00000{bottom:797.970450px;}
.y3af_c00000{bottom:798.060450px;}
.y10a2_c00000{bottom:798.600450px;}
.yd09_c00000{bottom:798.960450px;}
.yb4f_c00000{bottom:799.050450px;}
.y5a5_c00000{bottom:799.320450px;}
.y1103_c00000{bottom:799.410450px;}
.y10f3_c00000{bottom:799.860450px;}
.y35_c00000{bottom:799.890000px;}
.y9b9_c00000{bottom:800.040450px;}
.y49_c00000{bottom:800.040600px;}
.y36e_c00000{bottom:800.220450px;}
.y251_c00000{bottom:800.310450px;}
.y4b0_c00000{bottom:800.850450px;}
.y1098_c00000{bottom:800.940450px;}
.y127_c00000{bottom:800.940684px;}
.yb6a_c00000{bottom:801.030495px;}
.y10e2_c00000{bottom:801.300450px;}
.ye7f_c00000{bottom:801.393177px;}
.yb1f_c00000{bottom:801.750450px;}
.y507_c00000{bottom:802.200702px;}
.ycc4_c00000{bottom:802.380198px;}
.ycec_c00000{bottom:802.560450px;}
.y8f9_c00000{bottom:803.190450px;}
.y1141_c00000{bottom:803.730450px;}
.yafc_c00000{bottom:804.000450px;}
.y4d1_c00000{bottom:804.810450px;}
.ybaa_c00000{bottom:805.080450px;}
.yede_c00000{bottom:805.620600px;}
.y5fd_c00000{bottom:805.800450px;}
.y4a8_c00000{bottom:805.890450px;}
.y172_c00000{bottom:805.980450px;}
.y2b9_c00000{bottom:806.430450px;}
.ya62_c00000{bottom:806.432925px;}
.ya40_c00000{bottom:806.520450px;}
.y552_c00000{bottom:806.700450px;}
.y347_c00000{bottom:806.970450px;}
.yf27_c00000{bottom:807.060450px;}
.ye8d_c00000{bottom:807.150450px;}
.yc71_c00000{bottom:807.330450px;}
.y14a_c00000{bottom:807.600450px;}
.y80d_c00000{bottom:807.960450px;}
.y87f_c00000{bottom:808.410450px;}
.y98d_c00000{bottom:808.413582px;}
.y102_c00000{bottom:808.770450px;}
.yc80_c00000{bottom:808.860600px;}
.ye2d_c00000{bottom:809.040450px;}
.yd1d_c00000{bottom:809.040600px;}
.y3d0_c00000{bottom:809.220450px;}
.y44f_c00000{bottom:809.221107px;}
.yb7b_c00000{bottom:809.309100px;}
.ya8b_c00000{bottom:809.310045px;}
.yad8_c00000{bottom:809.310450px;}
.y482_c00000{bottom:809.850450px;}
.yaa3_c00000{bottom:809.940450px;}
.yfe2_c00000{bottom:810.393177px;}
.ycdd_c00000{bottom:810.750450px;}
.yc66_c00000{bottom:811.020450px;}
.y6fe_c00000{bottom:811.110450px;}
.yfb9_c00000{bottom:811.110600px;}
.y93c_c00000{bottom:811.380450px;}
.y311_c00000{bottom:811.560450px;}
.y521_c00000{bottom:811.830450px;}
.yb3a_c00000{bottom:811.919817px;}
.y1f6_c00000{bottom:811.920450px;}
.yea8_c00000{bottom:812.460450px;}
.y9df_c00000{bottom:813.271509px;}
.ya8_c00000{bottom:813.630450px;}
.y29d_c00000{bottom:813.720450px;}
.yd61_c00000{bottom:813.810450px;}
.y196_c00000{bottom:813.990450px;}
.yb0f_c00000{bottom:814.082418px;}
.y1126_c00000{bottom:814.260609px;}
.yf68_c00000{bottom:814.353429px;}
.y390_c00000{bottom:814.890450px;}
.y1bd_c00000{bottom:814.980450px;}
.y56e_c00000{bottom:815.161359px;}
.y9fc_c00000{bottom:815.790450px;}
.y99f_c00000{bottom:815.880450px;}
.ya77_c00000{bottom:816.150450px;}
.yf79_c00000{bottom:816.600600px;}
.yd6_c00000{bottom:817.050450px;}
.yc02_c00000{bottom:818.130450px;}
.ye47_c00000{bottom:818.940450px;}
.ycaa_c00000{bottom:819.480450px;}
.ybf0_c00000{bottom:819.570450px;}
.ycc3_c00000{bottom:819.660189px;}
.yabc_c00000{bottom:820.200450px;}
.y538_c00000{bottom:820.380450px;}
.y71f_c00000{bottom:820.470450px;}
.y26c_c00000{bottom:820.560450px;}
.y1193_c00000{bottom:820.920450px;}
.y76c_c00000{bottom:821.370450px;}
.y4ee_c00000{bottom:821.370600px;}
.y1159_c00000{bottom:821.550450px;}
.y3ae_c00000{bottom:821.640450px;}
.y68a_c00000{bottom:821.730450px;}
.y10a1_c00000{bottom:822.180450px;}
.yf13_c00000{bottom:822.271509px;}
.y5a4_c00000{bottom:822.900450px;}
.ye7e_c00000{bottom:823.082520px;}
.yddd_c00000{bottom:823.710600px;}
.y506_c00000{bottom:823.801107px;}
.y36d_c00000{bottom:823.890450px;}
.y236_c00000{bottom:823.980450px;}
.y4af_c00000{bottom:824.430450px;}
.y6e0_c00000{bottom:824.700450px;}
.y10e1_c00000{bottom:824.970450px;}
.yb1e_c00000{bottom:825.330450px;}
.yceb_c00000{bottom:826.230450px;}
.y20_c00000{bottom:826.495500px;}
.y8f8_c00000{bottom:826.770450px;}
.y91d_c00000{bottom:827.040459px;}
.yf57_c00000{bottom:827.130450px;}
.yb69_c00000{bottom:827.310450px;}
.y1140_c00000{bottom:827.400450px;}
.y6c_c00000{bottom:827.753457px;}
.y17d_c00000{bottom:827.755194px;}
.ya61_c00000{bottom:828.122268px;}
.ybbf_c00000{bottom:828.210324px;}
.y4d0_c00000{bottom:828.390450px;}
.y974_c00000{bottom:828.480450px;}
.yba9_c00000{bottom:828.750450px;}
.yb39_c00000{bottom:829.199808px;}
.yedd_c00000{bottom:829.290450px;}
.y90c_c00000{bottom:829.380450px;}
.y101_c00000{bottom:829.470450px;}
.y2f4_c00000{bottom:829.560450px;}
.yec1_c00000{bottom:829.650450px;}
.y7d_c00000{bottom:829.920582px;}
.y2b8_c00000{bottom:830.100450px;}
.y98c_c00000{bottom:830.102925px;}
.ya3f_c00000{bottom:830.190450px;}
.yd35_c00000{bottom:830.460450px;}
.y346_c00000{bottom:830.550450px;}
.yf26_c00000{bottom:830.640450px;}
.ye8c_c00000{bottom:830.820450px;}
.y44e_c00000{bottom:830.910450px;}
.y41a_c00000{bottom:831.180450px;}
.y1125_c00000{bottom:831.540600px;}
.y65f_c00000{bottom:831.720450px;}
.y87e_c00000{bottom:832.080450px;}
.yfe1_c00000{bottom:832.082520px;}
.ye61_c00000{bottom:832.260450px;}
.y10f2_c00000{bottom:832.440450px;}
.yc7f_c00000{bottom:832.530600px;}
.y9b8_c00000{bottom:832.710450px;}
.y3cf_c00000{bottom:832.890450px;}
.y71a_c00000{bottom:832.980450px;}
.y481_c00000{bottom:833.430450px;}
.yaa2_c00000{bottom:833.520450px;}
.y126_c00000{bottom:834.150873px;}
.ya7_c00000{bottom:834.330450px;}
.ycdc_c00000{bottom:834.420600px;}
.yc65_c00000{bottom:834.690450px;}
.yfb8_c00000{bottom:834.690600px;}
.y6fd_c00000{bottom:834.780450px;}
.y9de_c00000{bottom:834.871914px;}
.y64e_c00000{bottom:835.230450px;}
.y520_c00000{bottom:835.500450px;}
.yb0e_c00000{bottom:835.771761px;}
.yafb_c00000{bottom:836.042772px;}
.yc3d_c00000{bottom:836.670450px;}
.y56d_c00000{bottom:836.761764px;}
.ycc2_c00000{bottom:836.850000px;}
.ya12_c00000{bottom:836.851359px;}
.y1f5_c00000{bottom:837.030450px;}
.y29c_c00000{bottom:837.300450px;}
.yd60_c00000{bottom:837.480450px;}
.y195_c00000{bottom:837.660450px;}
.yd5_c00000{bottom:837.750450px;}
.yb7a_c00000{bottom:838.019406px;}
.yc01_c00000{bottom:838.200639px;}
.yff8_c00000{bottom:838.470450px;}
.y6_c00000{bottom:838.500000px;}
.y171_c00000{bottom:838.560450px;}
.y551_c00000{bottom:839.370450px;}
.y9fb_c00000{bottom:839.460450px;}
.y99e_c00000{bottom:839.550450px;}
.y149_c00000{bottom:840.270450px;}
.y80c_c00000{bottom:840.630450px;}
.y111a_c00000{bottom:841.890450px;}
.yd72_c00000{bottom:842.520450px;}
.y34_c00000{bottom:843.540000px;}
.y48_c00000{bottom:843.690450px;}
.yf12_c00000{bottom:843.871914px;}
.yea7_c00000{bottom:843.960144px;}
.y93b_c00000{bottom:844.050450px;}
.y26b_c00000{bottom:844.230450px;}
.y91c_c00000{bottom:844.320450px;}
.y1192_c00000{bottom:844.500450px;}
.ye7d_c00000{bottom:844.771863px;}
.y3ad_c00000{bottom:845.310450px;}
.y505_c00000{bottom:845.490450px;}
.y10a0_c00000{bottom:845.850450px;}
.yb38_c00000{bottom:846.479799px;}
.y5a3_c00000{bottom:846.570450px;}
.y76b_c00000{bottom:847.110600px;}
.yecd_c00000{bottom:847.290600px;}
.y235_c00000{bottom:847.560450px;}
.ya76_c00000{bottom:847.650450px;}
.y10e0_c00000{bottom:848.640450px;}
.yb1d_c00000{bottom:849.000450px;}
.yf78_c00000{bottom:849.180600px;}
.y65e_c00000{bottom:849.720450px;}
.ya60_c00000{bottom:849.811611px;}
.yb68_c00000{bottom:850.080450px;}
.y100_c00000{bottom:850.170450px;}
.y8f7_c00000{bottom:850.440450px;}
.y113f_c00000{bottom:850.980450px;}
.yb4e_c00000{bottom:851.790648px;}
.y98b_c00000{bottom:851.792268px;}
.y4cf_c00000{bottom:852.060450px;}
.y973_c00000{bottom:852.150450px;}
.ybef_c00000{bottom:852.240450px;}
.yba8_c00000{bottom:852.420450px;}
.yedc_c00000{bottom:852.870450px;}
.y6bf_c00000{bottom:853.050450px;}
.y537_c00000{bottom:853.140450px;}
.y2f3_c00000{bottom:853.230450px;}
.yec0_c00000{bottom:853.320450px;}
.yfe0_c00000{bottom:853.771863px;}
.y4ed_c00000{bottom:854.040600px;}
.y345_c00000{bottom:854.220450px;}
.ye8b_c00000{bottom:854.490450px;}
.y419_c00000{bottom:854.850450px;}
.ya6_c00000{bottom:855.030450px;}
.yc00_c00000{bottom:855.390450px;}
.y87d_c00000{bottom:855.660450px;}
.y9b7_c00000{bottom:856.290450px;}
.y3ce_c00000{bottom:856.560450px;}
.y9dd_c00000{bottom:856.561257px;}
.ye2c_c00000{bottom:856.650450px;}
.ybbe_c00000{bottom:856.830450px;}
.y480_c00000{bottom:857.100450px;}
.yaa1_c00000{bottom:857.190450px;}
.y1124_c00000{bottom:857.280450px;}
.yb0d_c00000{bottom:857.372166px;}
.yafa_c00000{bottom:857.643177px;}
.ycdb_c00000{bottom:858.000450px;}
.yc64_c00000{bottom:858.270450px;}
.y125_c00000{bottom:858.270567px;}
.y6fc_c00000{bottom:858.360450px;}
.yd4_c00000{bottom:858.450450px;}
.y56c_c00000{bottom:858.451107px;}
.yf56_c00000{bottom:858.540600px;}
.ya11_c00000{bottom:858.540702px;}
.y679_c00000{bottom:858.900450px;}
.y51f_c00000{bottom:859.170450px;}
.ycc1_c00000{bottom:859.620450px;}
.yc3c_c00000{bottom:860.250450px;}
.y29b_c00000{bottom:860.970450px;}
.yd5f_c00000{bottom:861.150450px;}
.y38f_c00000{bottom:862.140450px;}
.y1bc_c00000{bottom:862.230450px;}
.yd34_c00000{bottom:862.500954px;}
.y2b7_c00000{bottom:862.680450px;}
.ya3e_c00000{bottom:862.770450px;}
.y9fa_c00000{bottom:863.040450px;}
.y7c_c00000{bottom:863.040600px;}
.yf25_c00000{bottom:863.310450px;}
.y148_c00000{bottom:863.850450px;}
.y10f1_c00000{bottom:863.940450px;}
.yc7e_c00000{bottom:865.110600px;}
.yf11_c00000{bottom:865.561257px;}
.yd71_c00000{bottom:866.190450px;}
.ye7c_c00000{bottom:866.372268px;}
.yb79_c00000{bottom:866.729712px;}
.yfb7_c00000{bottom:867.360600px;}
.y65d_c00000{bottom:867.720450px;}
.y64d_c00000{bottom:867.900450px;}
.y1191_c00000{bottom:868.170450px;}
.y1f_c00000{bottom:868.497000px;}
.y3ac_c00000{bottom:868.890450px;}
.y689_c00000{bottom:868.980450px;}
.yb4d_c00000{bottom:868.980459px;}
.y109f_c00000{bottom:869.430450px;}
.y91b_c00000{bottom:870.060450px;}
.y5a2_c00000{bottom:870.150450px;}
.y194_c00000{bottom:870.240450px;}
.yff_c00000{bottom:870.870450px;}
.y36c_c00000{bottom:871.140450px;}
.y170_c00000{bottom:871.230450px;}
.y550_c00000{bottom:871.410954px;}
.ya5f_c00000{bottom:871.500954px;}
.yb37_c00000{bottom:871.680600px;}
.y99d_c00000{bottom:872.130450px;}
.ybee_c00000{bottom:872.310189px;}
.yb1c_c00000{bottom:872.580450px;}
.yea6_c00000{bottom:872.670450px;}
.y80b_c00000{bottom:873.120450px;}
.ya75_c00000{bottom:873.390450px;}
.y1119_c00000{bottom:873.390639px;}
.y98a_c00000{bottom:873.392673px;}
.y8f6_c00000{bottom:874.020450px;}
.yfdf_c00000{bottom:875.372268px;}
.ya5_c00000{bottom:875.730450px;}
.y6b_c00000{bottom:875.995491px;}
.y47_c00000{bottom:876.000450px;}
.y17c_c00000{bottom:876.085491px;}
.yedb_c00000{bottom:876.540450px;}
.y327_c00000{bottom:876.720450px;}
.y504_c00000{bottom:876.810450px;}
.y26a_c00000{bottom:876.900450px;}
.y344_c00000{bottom:877.890450px;}
.y9dc_c00000{bottom:878.250600px;}
.yb0c_c00000{bottom:879.061509px;}
.yd3_c00000{bottom:879.150450px;}
.y87c_c00000{bottom:879.330450px;}
.yaf9_c00000{bottom:879.332520px;}
.y9b6_c00000{bottom:879.960450px;}
.y56b_c00000{bottom:880.140045px;}
.y3cd_c00000{bottom:880.140450px;}
.ya10_c00000{bottom:880.141107px;}
.y617_c00000{bottom:880.230450px;}
.ye2b_c00000{bottom:880.410450px;}
.y47f_c00000{bottom:880.680450px;}
.yf77_c00000{bottom:880.680600px;}
.yaa0_c00000{bottom:880.770450px;}
.ybff_c00000{bottom:881.220450px;}
.yc63_c00000{bottom:881.940450px;}
.y678_c00000{bottom:882.480450px;}
.ybbd_c00000{bottom:882.660450px;}
.y11b5_c00000{bottom:882.750450px;}
.yf24_c00000{bottom:883.380450px;}
.y113e_c00000{bottom:883.650450px;}
.yc3b_c00000{bottom:883.920450px;}
.yca9_c00000{bottom:884.101359px;}
.y51e_c00000{bottom:884.280450px;}
.y29a_c00000{bottom:884.550450px;}
.y4ce_c00000{bottom:884.640450px;}
.yd5e_c00000{bottom:884.730450px;}
.y1158_c00000{bottom:885.630450px;}
.y65c_c00000{bottom:885.720450px;}
.y3f2_c00000{bottom:885.810450px;}
.y1bb_c00000{bottom:885.900450px;}
.y4ec_c00000{bottom:885.992016px;}
.yb4c_c00000{bottom:886.260450px;}
.y2b6_c00000{bottom:886.350450px;}
.yadd_c00000{bottom:886.710450px;}
.ye8a_c00000{bottom:887.070450px;}
.yf10_c00000{bottom:887.250600px;}
.y147_c00000{bottom:887.520450px;}
.ye7b_c00000{bottom:888.061611px;}
.ybed_c00000{bottom:889.500000px;}
.yd70_c00000{bottom:889.770450px;}
.y1118_c00000{bottom:890.580450px;}
.ycda_c00000{bottom:890.670450px;}
.y6fb_c00000{bottom:891.030450px;}
.yf36_c00000{bottom:891.390450px;}
.y124_c00000{bottom:891.390585px;}
.y64c_c00000{bottom:891.480450px;}
.yfe_c00000{bottom:891.750450px;}
.y99c_c00000{bottom:892.200459px;}
.y3ab_c00000{bottom:892.560450px;}
.y688_c00000{bottom:892.650450px;}
.y54f_c00000{bottom:893.011359px;}
.ya5e_c00000{bottom:893.101359px;}
.y5a1_c00000{bottom:893.820450px;}
.y193_c00000{bottom:893.910450px;}
.yc7d_c00000{bottom:894.180600px;}
.y36b_c00000{bottom:894.810450px;}
.y16f_c00000{bottom:894.900450px;}
.y989_c00000{bottom:895.082016px;}
.ya3d_c00000{bottom:895.260450px;}
.yb78_c00000{bottom:895.440018px;}
.y9f9_c00000{bottom:895.710450px;}
.ya4_c00000{bottom:896.430450px;}
.yfde_c00000{bottom:897.061611px;}
.y8f5_c00000{bottom:897.690450px;}
.y46_c00000{bottom:897.870450px;}
.yea5_c00000{bottom:898.410450px;}
.yfb6_c00000{bottom:898.860450px;}
.y972_c00000{bottom:899.400450px;}
.yba7_c00000{bottom:899.670450px;}
.y269_c00000{bottom:900.480450px;}
.yb0b_c00000{bottom:900.750852px;}
.yaf8_c00000{bottom:901.021863px;}
.y343_c00000{bottom:901.470450px;}
.y56a_c00000{bottom:901.740450px;}
.ya0f_c00000{bottom:901.830450px;}
.y109e_c00000{bottom:902.100450px;}
.y87b_c00000{bottom:902.910450px;}
.yab8_c00000{bottom:903.273429px;}
.y9b5_c00000{bottom:903.540450px;}
.y65b_c00000{bottom:903.720450px;}
.y3cc_c00000{bottom:903.810450px;}
.y5d6_c00000{bottom:903.900450px;}
.ye2a_c00000{bottom:904.260450px;}
.y4ae_c00000{bottom:904.350450px;}
.ya9f_c00000{bottom:904.440450px;}
.yb1b_c00000{bottom:905.250450px;}
.yca8_c00000{bottom:905.790702px;}
.y80a_c00000{bottom:905.880450px;}
.y7b_c00000{bottom:905.969883px;}
.yf23_c00000{bottom:906.150450px;}
.yf76_c00000{bottom:906.420450px;}
.yc3a_c00000{bottom:907.500450px;}
.y4eb_c00000{bottom:907.681359px;}
.yeda_c00000{bottom:909.210450px;}
.yd2_c00000{bottom:909.390450px;}
.y1ba_c00000{bottom:909.480450px;}
.ye7a_c00000{bottom:909.750954px;}
.y1e_c00000{bottom:910.498500px;}
.yf35_c00000{bottom:910.830450px;}
.y146_c00000{bottom:911.190450px;}
.y10b6_c00000{bottom:911.820450px;}
.yb4b_c00000{bottom:912.000450px;}
.ybec_c00000{bottom:912.270450px;}
.yfd_c00000{bottom:912.450450px;}
.y10df_c00000{bottom:912.720450px;}
.y47e_c00000{bottom:913.350450px;}
.yd6f_c00000{bottom:913.440450px;}
.yc62_c00000{bottom:914.520450px;}
.y54e_c00000{bottom:914.700702px;}
.ya5d_c00000{bottom:914.790702px;}
.y64b_c00000{bottom:915.150450px;}
.y1190_c00000{bottom:915.420450px;}
.y123_c00000{bottom:915.600450px;}
.y3aa_c00000{bottom:916.140450px;}
.y687_c00000{bottom:916.230450px;}
.y1117_c00000{bottom:916.410450px;}
.y4cd_c00000{bottom:916.681359px;}
.y988_c00000{bottom:916.771359px;}
.ya3_c00000{bottom:917.130450px;}
.y299_c00000{bottom:917.220450px;}
.yd5d_c00000{bottom:917.400450px;}
.y192_c00000{bottom:917.490450px;}
.y38e_c00000{bottom:918.390450px;}
.y16e_c00000{bottom:918.480450px;}
.yfdd_c00000{bottom:918.750954px;}
.y9f8_c00000{bottom:919.380450px;}
.y45_c00000{bottom:919.740450px;}
.yc7c_c00000{bottom:919.920450px;}
.y2b5_c00000{bottom:920.280450px;}
.y418_c00000{bottom:921.000450px;}
.y8f4_c00000{bottom:921.270450px;}
.y65a_c00000{bottom:921.720450px;}
.yb0a_c00000{bottom:922.351257px;}
.y6fa_c00000{bottom:922.440450px;}
.yaf7_c00000{bottom:922.622268px;}
.y971_c00000{bottom:922.980450px;}
.yba6_c00000{bottom:923.250450px;}
.yb77_c00000{bottom:924.060144px;}
.y268_c00000{bottom:924.150450px;}
.y6a_c00000{bottom:924.325788px;}
.y17b_c00000{bottom:924.415788px;}
.yfb5_c00000{bottom:924.600450px;}
.yab7_c00000{bottom:924.873834px;}
.yb1a_c00000{bottom:925.230000px;}
.yff7_c00000{bottom:926.220450px;}
.y87a_c00000{bottom:926.580450px;}
.y36a_c00000{bottom:927.390450px;}
.yca7_c00000{bottom:927.480045px;}
.y22d_c00000{bottom:927.480450px;}
.y4ad_c00000{bottom:928.020450px;}
.y4ea_c00000{bottom:929.370702px;}
.y4_c00000{bottom:930.000000px;}
.yc39_c00000{bottom:931.170450px;}
.ye79_c00000{bottom:931.351359px;}
.y437_c00000{bottom:933.060450px;}
.yd1_c00000{bottom:933.150450px;}
.y109d_c00000{bottom:933.510450px;}
.y342_c00000{bottom:934.140450px;}
.y145_c00000{bottom:934.770450px;}
.y99b_c00000{bottom:935.220450px;}
.y9b4_c00000{bottom:936.210450px;}
.y54d_c00000{bottom:936.390045px;}
.ya5c_c00000{bottom:936.480045px;}
.yf34_c00000{bottom:936.660450px;}
.y47d_c00000{bottom:937.020450px;}
.ya2_c00000{bottom:937.830450px;}
.y4cc_c00000{bottom:938.370702px;}
.y987_c00000{bottom:938.371764px;}
.y809_c00000{bottom:938.460450px;}
.y64a_c00000{bottom:938.730450px;}
.y118f_c00000{bottom:939.000450px;}
.y659_c00000{bottom:939.720450px;}
.yfdc_c00000{bottom:940.351359px;}
.yed9_c00000{bottom:940.620450px;}
.y298_c00000{bottom:940.800450px;}
.y113d_c00000{bottom:940.890450px;}
.yd5c_c00000{bottom:940.980450px;}
.y5a0_c00000{bottom:941.070450px;}
.y191_c00000{bottom:941.160450px;}
.y44_c00000{bottom:941.610450px;}
.y38d_c00000{bottom:942.060450px;}
.y16d_c00000{bottom:942.150450px;}
.y9f7_c00000{bottom:942.960450px;}
.yebf_c00000{bottom:943.140450px;}
.y10b5_c00000{bottom:943.410450px;}
.yb09_c00000{bottom:944.040600px;}
.yaf6_c00000{bottom:944.311611px;}
.y8f3_c00000{bottom:944.940450px;}
.yab6_c00000{bottom:946.563177px;}
.yba5_c00000{bottom:946.920450px;}
.y267_c00000{bottom:947.730450px;}
.yb19_c00000{bottom:948.000450px;}
.y3a9_c00000{bottom:948.810450px;}
.y686_c00000{bottom:948.900450px;}
.yca6_c00000{bottom:949.080450px;}
.y879_c00000{bottom:950.160450px;}
.y4e9_c00000{bottom:950.971107px;}
.y369_c00000{bottom:951.060450px;}
.y22c_c00000{bottom:951.150450px;}
.y7a_c00000{bottom:951.600450px;}
.y1097_c00000{bottom:951.690450px;}
.ye29_c00000{bottom:951.870450px;}
.y1d_c00000{bottom:952.500000px;}
.yb76_c00000{bottom:952.770450px;}
.ye78_c00000{bottom:953.040702px;}
.yd0_c00000{bottom:953.670450px;}
.yfc_c00000{bottom:953.850450px;}
.y2b4_c00000{bottom:954.210450px;}
.yc38_c00000{bottom:954.750450px;}
.y970_c00000{bottom:955.650450px;}
.y417_c00000{bottom:956.640450px;}
.y1b9_c00000{bottom:956.730450px;}
.y341_c00000{bottom:957.720450px;}
.y54c_c00000{bottom:957.990450px;}
.ya5b_c00000{bottom:958.080450px;}
.y122_c00000{bottom:958.440450px;}
.ya1_c00000{bottom:958.530450px;}
.y4cb_c00000{bottom:959.971107px;}
.y986_c00000{bottom:960.061107px;}
.y47c_c00000{bottom:960.600450px;}
.ya3c_c00000{bottom:960.690450px;}
.yfdb_c00000{bottom:962.040702px;}
.y734_c00000{bottom:962.400450px;}
.y118e_c00000{bottom:962.670450px;}
.y43_c00000{bottom:963.480450px;}
.y297_c00000{bottom:964.470450px;}
.yd5b_c00000{bottom:964.650450px;}
.y59f_c00000{bottom:964.740450px;}
.y190_c00000{bottom:965.010450px;}
.y38c_c00000{bottom:965.640450px;}
.y1db_c00000{bottom:965.730450px;}
.yaf5_c00000{bottom:966.000954px;}
.yed8_c00000{bottom:966.450450px;}
.y9f6_c00000{bottom:966.630450px;}
.y9b3_c00000{bottom:968.252520px;}
.y8f2_c00000{bottom:968.610450px;}
.y808_c00000{bottom:969.960450px;}
.y266_c00000{bottom:971.400450px;}
.y3a8_c00000{bottom:972.390450px;}
.y685_c00000{bottom:972.480450px;}
.y69_c00000{bottom:972.567822px;}
.y17a_c00000{bottom:972.657822px;}
.y4e8_c00000{bottom:972.660450px;}
.ycf_c00000{bottom:974.370450px;}
.y368_c00000{bottom:974.640450px;}
.ye77_c00000{bottom:974.730045px;}
.y16c_c00000{bottom:974.730450px;}
.yb08_c00000{bottom:975.180450px;}
.y4ac_c00000{bottom:975.270450px;}
.ye28_c00000{bottom:975.630450px;}
.y658_c00000{bottom:975.720450px;}
.y2b3_c00000{bottom:977.790450px;}
.yc37_c00000{bottom:978.420450px;}
.ya0_c00000{bottom:979.230450px;}
.yba4_c00000{bottom:979.500450px;}
.y79_c00000{bottom:979.860450px;}
.y436_c00000{bottom:980.310450px;}
.y1b8_c00000{bottom:980.400450px;}
.y340_c00000{bottom:981.390450px;}
.y4ca_c00000{bottom:981.660450px;}
.y985_c00000{bottom:981.750450px;}
.y878_c00000{bottom:982.830450px;}
.yfda_c00000{bottom:983.730045px;}
.y47b_c00000{bottom:984.270450px;}
.ya3b_c00000{bottom:984.360450px;}
.y42_c00000{bottom:985.350450px;}
.y786_c00000{bottom:985.980450px;}
.y118d_c00000{bottom:986.250450px;}
.y96f_c00000{bottom:987.601359px;}
.y296_c00000{bottom:988.050450px;}
.yd5a_c00000{bottom:988.230450px;}
.y59e_c00000{bottom:988.320450px;}
.y18f_c00000{bottom:988.860450px;}
.y326_c00000{bottom:989.220450px;}
.y38b_c00000{bottom:989.310450px;}
.y1da_c00000{bottom:989.400450px;}
.y9b2_c00000{bottom:989.852925px;}
.y9f5_c00000{bottom:990.210450px;}
.y144_c00000{bottom:991.020450px;}
.y657_c00000{bottom:993.720450px;}
.y265_c00000{bottom:994.980450px;}
.yce_c00000{bottom:995.070450px;}
.yfb_c00000{bottom:995.250450px;}
.y3a7_c00000{bottom:996.060450px;}
.y684_c00000{bottom:996.150450px;}
.ye76_c00000{bottom:996.330450px;}
.y367_c00000{bottom:998.310450px;}
.y16b_c00000{bottom:998.400450px;}
.ye27_c00000{bottom:999.480450px;}
.y9f_c00000{bottom:999.930450px;}
.y8f1_c00000{bottom:1001.190450px;}
.y649_c00000{bottom:1003.800450px;}
.y2f2_c00000{bottom:1003.980450px;}
.y33f_c00000{bottom:1004.970450px;}
.yfd9_c00000{bottom:1005.330450px;}
.y877_c00000{bottom:1006.410450px;}
.y41_c00000{bottom:1007.220450px;}
.y47a_c00000{bottom:1007.850450px;}
.ya3a_c00000{bottom:1007.940450px;}
.y121_c00000{bottom:1008.930450px;}
.y96e_c00000{bottom:1009.290702px;}
.y785_c00000{bottom:1009.650450px;}
.y118c_c00000{bottom:1009.920450px;}
.y78_c00000{bottom:1010.910450px;}
.yc36_c00000{bottom:1011.000450px;}
.y9b1_c00000{bottom:1011.542268px;}
.y295_c00000{bottom:1011.720450px;}
.yd59_c00000{bottom:1011.900450px;}
.y59d_c00000{bottom:1011.990450px;}
.y18e_c00000{bottom:1012.530450px;}
.y536_c00000{bottom:1012.890450px;}
.y1b7_c00000{bottom:1012.980450px;}
.y143_c00000{bottom:1014.690450px;}
.ycd_c00000{bottom:1015.950450px;}
.y3a6_c00000{bottom:1019.730450px;}
.y9e_c00000{bottom:1020.630450px;}
.y68_c00000{bottom:1020.898119px;}
.y179_c00000{bottom:1020.988119px;}
.y16a_c00000{bottom:1021.980450px;}
.y9f4_c00000{bottom:1022.880450px;}
.ye26_c00000{bottom:1023.240450px;}
.y264_c00000{bottom:1027.650450px;}
.y33e_c00000{bottom:1028.640450px;}
.y40_c00000{bottom:1029.090450px;}
.y656_c00000{bottom:1029.540450px;}
.y120_c00000{bottom:1029.630450px;}
.y876_c00000{bottom:1030.080450px;}
.y96d_c00000{bottom:1030.980045px;}
.y479_c00000{bottom:1031.520450px;}
.ya39_c00000{bottom:1031.610450px;}
.y8f0_c00000{bottom:1033.231611px;}
.y118b_c00000{bottom:1033.590450px;}
.y294_c00000{bottom:1035.390450px;}
.y59c_c00000{bottom:1035.570450px;}
.y18d_c00000{bottom:1036.110450px;}
.y38a_c00000{bottom:1036.560450px;}
.ycc_c00000{bottom:1036.650450px;}
.y142_c00000{bottom:1038.270450px;}
.y30_c00000{bottom:1039.500000px;}
.y9d_c00000{bottom:1041.330450px;}
.y784_c00000{bottom:1042.230450px;}
.yc35_c00000{bottom:1043.039046px;}
.y3a5_c00000{bottom:1043.310450px;}
.y683_c00000{bottom:1043.400450px;}
.yd58_c00000{bottom:1044.480450px;}
.y366_c00000{bottom:1045.560450px;}
.y169_c00000{bottom:1045.650450px;}
.ye25_c00000{bottom:1047.090450px;}
.y27_c00000{bottom:1048.500000px;}
.y11f_c00000{bottom:1050.330450px;}
.y3f_c00000{bottom:1050.960450px;}
.y263_c00000{bottom:1051.230450px;}
.y33d_c00000{bottom:1052.220450px;}
.y96c_c00000{bottom:1052.580450px;}
.y8ef_c00000{bottom:1054.832016px;}
.y478_c00000{bottom:1055.100450px;}
.y875_c00000{bottom:1055.190450px;}
.ycb_c00000{bottom:1057.350450px;}
.y293_c00000{bottom:1058.970450px;}
.y59b_c00000{bottom:1059.240450px;}
.y18c_c00000{bottom:1059.780450px;}
.y5cd_c00000{bottom:1060.050450px;}
.y1b6_c00000{bottom:1060.230450px;}
.y141_c00000{bottom:1061.940450px;}
.y9c_c00000{bottom:1062.030450px;}
.yc34_c00000{bottom:1064.189262px;}
.y118a_c00000{bottom:1066.170450px;}
.y67_c00000{bottom:1069.228416px;}
.y168_c00000{bottom:1069.230450px;}
.y178_c00000{bottom:1069.318416px;}
.ye24_c00000{bottom:1070.850450px;}
.y11e_c00000{bottom:1071.030450px;}
.y77_c00000{bottom:1072.290450px;}
.y3e_c00000{bottom:1072.830450px;}
.y262_c00000{bottom:1074.900450px;}
.y3a4_c00000{bottom:1075.980450px;}
.y682_c00000{bottom:1076.070450px;}
.y8ee_c00000{bottom:1076.521359px;}
.yca_c00000{bottom:1077.870450px;}
.yfa_c00000{bottom:1078.050450px;}
.y874_c00000{bottom:1081.830450px;}
.y2b2_c00000{bottom:1082.640450px;}
.y18b_c00000{bottom:1083.360450px;}
.y389_c00000{bottom:1083.810450px;}
.yc33_c00000{bottom:1083.899604px;}
.y1b5_c00000{bottom:1083.900450px;}
.y33c_c00000{bottom:1084.890450px;}
.y477_c00000{bottom:1087.770450px;}
.ya38_c00000{bottom:1087.860450px;}
.y292_c00000{bottom:1091.640450px;}
.y11d_c00000{bottom:1091.730450px;}
.y59a_c00000{bottom:1091.910450px;}
.y9b_c00000{bottom:1092.270756px;}
.y5cc_c00000{bottom:1092.720450px;}
.y365_c00000{bottom:1092.810450px;}
.y167_c00000{bottom:1092.900450px;}
.y140_c00000{bottom:1094.610450px;}
.y3d_c00000{bottom:1094.700450px;}
.y8ed_c00000{bottom:1098.210702px;}
.yc9_c00000{bottom:1098.570450px;}
.yf9_c00000{bottom:1098.750450px;}
.y76_c00000{bottom:1099.200450px;}
.yc32_c00000{bottom:1103.609946px;}
.ye23_c00000{bottom:1103.610450px;}
.y33b_c00000{bottom:1106.759667px;}
.y71e_c00000{bottom:1107.390450px;}
.y261_c00000{bottom:1107.570450px;}
.y3a3_c00000{bottom:1109.460549px;}
.y681_c00000{bottom:1109.550549px;}
.y11c_c00000{bottom:1112.970756px;}
.y1_c00000{bottom:1114.500000px;}
.y291_c00000{bottom:1115.220450px;}
.y18a_c00000{bottom:1116.030450px;}
.y9a_c00000{bottom:1116.390450px;}
.y364_c00000{bottom:1116.480450px;}
.y3c_c00000{bottom:1116.570450px;}
.y66_c00000{bottom:1117.470450px;}
.y177_c00000{bottom:1117.560450px;}
.yc8_c00000{bottom:1119.270450px;}
.yf8_c00000{bottom:1119.450450px;}
.y476_c00000{bottom:1119.810045px;}
.y8ec_c00000{bottom:1119.811107px;}
.yc31_c00000{bottom:1123.230108px;}
.y75_c00000{bottom:1125.930450px;}
.y3_c00000{bottom:1126.753500px;}
.y65_c00000{bottom:1132.500450px;}
.y33a_c00000{bottom:1134.300450px;}
.y13f_c00000{bottom:1134.390450px;}
.y3a2_c00000{bottom:1137.000450px;}
.y11b_c00000{bottom:1137.090450px;}
.y3b_c00000{bottom:1138.440450px;}
.y290_c00000{bottom:1138.890450px;}
.y595_c00000{bottom:1139.880450px;}
.yc7_c00000{bottom:1139.970450px;}
.y363_c00000{bottom:1140.060450px;}
.y99_c00000{bottom:1140.150450px;}
.y475_c00000{bottom:1141.410450px;}
.y8eb_c00000{bottom:1141.500450px;}
.yc30_c00000{bottom:1142.940450px;}
.y166_c00000{bottom:1176.060450px;}
.y338_c00000{bottom:1196.040600px;}
.y73_c00000{bottom:1196.130450px;}
.y13_c00000{bottom:1246.500000px;}
.y2e_c00000{bottom:1471.500000px;}
.y2d_c00000{bottom:1608.000000px;}
.hd_c00000{height:0.000000px;}
.h15_c00000{height:22.500000px;}
.h7_c00000{height:25.500000px;}
.h9_c00000{height:28.500000px;}
.h30_c00000{height:34.114922px;}
.h13_c00000{height:34.500000px;}
.h14_c00000{height:37.500000px;}
.h35_c00000{height:42.011895px;}
.hf_c00000{height:43.989258px;}
.h4_c00000{height:48.000000px;}
.h8_c00000{height:51.987305px;}
.h4f_c00000{height:52.121873px;}
.h2d_c00000{height:52.751777px;}
.h4b_c00000{height:52.752341px;}
.h50_c00000{height:52.897727px;}
.h4a_c00000{height:52.897799px;}
.h31_c00000{height:52.898555px;}
.hb_c00000{height:55.986328px;}
.h3a_c00000{height:57.805840px;}
.h51_c00000{height:57.966680px;}
.ha_c00000{height:58.500000px;}
.h46_c00000{height:58.974237px;}
.h38_c00000{height:58.975137px;}
.h24_c00000{height:59.004492px;}
.h10_c00000{height:60.128906px;}
.h48_c00000{height:60.589687px;}
.h1_c00000{height:61.500000px;}
.h43_c00000{height:62.421259px;}
.h4e_c00000{height:62.703281px;}
.h5b_c00000{height:63.172937px;}
.h6e_c00000{height:63.173093px;}
.h5c_c00000{height:63.173693px;}
.h61_c00000{height:63.174989px;}
.h2c_c00000{height:63.175781px;}
.h39_c00000{height:63.176381px;}
.h59_c00000{height:63.184277px;}
.h5f_c00000{height:63.184565px;}
.h2e_c00000{height:63.351562px;}
.h3d_c00000{height:64.625449px;}
.h45_c00000{height:64.627069px;}
.h1b_c00000{height:65.912168px;}
.h69_c00000{height:66.813856px;}
.h6a_c00000{height:66.821668px;}
.h63_c00000{height:66.821728px;}
.h6c_c00000{height:66.823288px;}
.h57_c00000{height:66.824296px;}
.h6f_c00000{height:66.824704px;}
.h54_c00000{height:66.825304px;}
.h5a_c00000{height:66.825916px;}
.h67_c00000{height:66.826312px;}
.h5e_c00000{height:66.826324px;}
.h4c_c00000{height:66.826924px;}
.h6d_c00000{height:66.827524px;}
.h62_c00000{height:66.827932px;}
.h70_c00000{height:66.828400px;}
.h53_c00000{height:66.828532px;}
.h5d_c00000{height:66.828544px;}
.h3b_c00000{height:66.828940px;}
.h55_c00000{height:66.829552px;}
.h66_c00000{height:66.830152px;}
.h42_c00000{height:66.830560px;}
.h72_c00000{height:66.830968px;}
.h41_c00000{height:66.831568px;}
.h64_c00000{height:66.832168px;}
.h58_c00000{height:66.832180px;}
.h52_c00000{height:66.833188px;}
.h6b_c00000{height:66.833596px;}
.h3f_c00000{height:66.833788px;}
.h40_c00000{height:66.834196px;}
.h56_c00000{height:66.835204px;}
.h44_c00000{height:66.835816px;}
.h3e_c00000{height:66.836416px;}
.h73_c00000{height:66.836824px;}
.h47_c00000{height:66.837832px;}
.h3c_c00000{height:66.839452px;}
.h68_c00000{height:66.841036px;}
.h60_c00000{height:66.843448px;}
.h21_c00000{height:70.293960px;}
.h36_c00000{height:70.628906px;}
.h25_c00000{height:70.664062px;}
.he_c00000{height:71.982422px;}
.h2a_c00000{height:72.562500px;}
.h49_c00000{height:73.599785px;}
.h33_c00000{height:75.093750px;}
.h4d_c00000{height:75.131295px;}
.h2f_c00000{height:75.131895px;}
.h32_c00000{height:75.132495px;}
.h71_c00000{height:75.248189px;}
.h65_c00000{height:75.248789px;}
.h12_c00000{height:76.500000px;}
.h1c_c00000{height:76.824000px;}
.h1a_c00000{height:78.158145px;}
.h37_c00000{height:80.088223px;}
.h34_c00000{height:81.374663px;}
.h20_c00000{height:83.354040px;}
.h27_c00000{height:84.535312px;}
.h5_c00000{height:95.976562px;}
.h28_c00000{height:96.870938px;}
.h19_c00000{height:101.929746px;}
.h11_c00000{height:103.078125px;}
.h1f_c00000{height:108.705960px;}
.h2b_c00000{height:108.843126px;}
.h29_c00000{height:108.843750px;}
.h17_c00000{height:114.175723px;}
.h2_c00000{height:119.970703px;}
.h1d_c00000{height:121.766040px;}
.hc_c00000{height:126.000000px;}
.h26_c00000{height:133.152187px;}
.h18_c00000{height:150.193301px;}
.h6_c00000{height:154.617188px;}
.h1e_c00000{height:160.178040px;}
.h22_c00000{height:165.000586px;}
.h23_c00000{height:169.433437px;}
.h3_c00000{height:199.951172px;}
.h16_c00000{height:1262.880000px;}
.h0_c00000{height:1263.000000px;}
.w5_c00000{width:0.000000px;}
.w9_c00000{width:118.500000px;}
.w1_c00000{width:120.000000px;}
.w3_c00000{width:124.500000px;}
.w8_c00000{width:172.500000px;}
.w4_c00000{width:421.500000px;}
.wa_c00000{width:603.000000px;}
.w7_c00000{width:675.000000px;}
.w6_c00000{width:687.000000px;}
.w2_c00000{width:697.500000px;}
.w0_c00000{width:892.500000px;}
.wd_c00000{width:892.830000px;}
.wb_c00000{width:892.980000px;}
.wc_c00000{width:893.250000px;}
.x0_c00000{left:0.000000px;}
.xc_c00000{left:1.500000px;}
.x2_c00000{left:9.960000px;}
.xd_c00000{left:16.500000px;}
.x22_c00000{left:29.226000px;}
.x13_c00000{left:54.000000px;}
.xb_c00000{left:69.000000px;}
.xa_c00000{left:70.500000px;}
.x1b_c00000{left:94.500000px;}
.x1d_c00000{left:103.500000px;}
.x11_c00000{left:105.387000px;}
.x4_c00000{left:112.500000px;}
.x23_c00000{left:121.500000px;}
.x25_c00000{left:127.650000px;}
.x17_c00000{left:131.929500px;}
.x97_c00000{left:133.740216px;}
.x9b_c00000{left:135.630000px;}
.x88_c00000{left:138.510000px;}
.x9d_c00000{left:140.220000px;}
.x92_c00000{left:142.380162px;}
.x77_c00000{left:145.441719px;}
.x42_c00000{left:149.489208px;}
.xb8_c00000{left:151.830000px;}
.xa3_c00000{left:153.270000px;}
.x31_c00000{left:154.620000px;}
.x6a_c00000{left:157.050000px;}
.xc5_c00000{left:164.250000px;}
.x41_c00000{left:168.120000px;}
.xb7_c00000{left:171.990000px;}
.x98_c00000{left:174.690000px;}
.xa5_c00000{left:176.580000px;}
.x90_c00000{left:178.470000px;}
.x39_c00000{left:180.720000px;}
.xb9_c00000{left:184.050000px;}
.x59_c00000{left:187.740000px;}
.x3f_c00000{left:191.430000px;}
.x32_c00000{left:193.320135px;}
.x33_c00000{left:195.120000px;}
.x18_c00000{left:199.983000px;}
.xb6_c00000{left:201.690000px;}
.x1f_c00000{left:203.898000px;}
.x8d_c00000{left:205.020000px;}
.xa0_c00000{left:206.550000px;}
.x40_c00000{left:207.720000px;}
.xac_c00000{left:209.790081px;}
.xab_c00000{left:211.590252px;}
.x45_c00000{left:212.669991px;}
.x95_c00000{left:214.290648px;}
.x7b_c00000{left:217.980000px;}
.x94_c00000{left:222.839334px;}
.xcd_c00000{left:226.708884px;}
.x87_c00000{left:227.970000px;}
.x1e_c00000{left:230.169000px;}
.x38_c00000{left:233.820000px;}
.x34_c00000{left:235.620000px;}
.x9_c00000{left:236.803500px;}
.x8b_c00000{left:239.490000px;}
.x99_c00000{left:242.369613px;}
.x47_c00000{left:244.620000px;}
.x16_c00000{left:246.210000px;}
.x85_c00000{left:249.120000px;}
.xce_c00000{left:250.830000px;}
.xbc_c00000{left:252.177984px;}
.x44_c00000{left:255.240000px;}
.x12_c00000{left:256.752000px;}
.xd4_c00000{left:261.180000px;}
.x8c_c00000{left:262.620000px;}
.x46_c00000{left:265.860000px;}
.x1c_c00000{left:268.866000px;}
.x54_c00000{left:270.900000px;}
.x24_c00000{left:273.252000px;}
.x9f_c00000{left:274.319613px;}
.x35_c00000{left:276.120000px;}
.xbf_c00000{left:277.829685px;}
.x84_c00000{left:279.001044px;}
.x66_c00000{left:280.440000px;}
.x78_c00000{left:282.602421px;}
.x8_c00000{left:290.646000px;}
.xa1_c00000{left:293.220495px;}
.x4b_c00000{left:294.480639px;}
.x26_c00000{left:296.310000px;}
.x79_c00000{left:299.520000px;}
.xcf_c00000{left:301.050000px;}
.x29_c00000{left:303.960000px;}
.xd2_c00000{left:305.730000px;}
.x55_c00000{left:307.530000px;}
.xd1_c00000{left:309.150000px;}
.x81_c00000{left:310.500000px;}
.x6d_c00000{left:312.120000px;}
.x15_c00000{left:313.518000px;}
.x37_c00000{left:316.620000px;}
.x62_c00000{left:317.700000px;}
.x19_c00000{left:319.005000px;}
.xbd_c00000{left:320.220000px;}
.x4e_c00000{left:322.290000px;}
.x2e_c00000{left:323.458317px;}
.x28_c00000{left:325.920000px;}
.x5f_c00000{left:327.690000px;}
.x64_c00000{left:329.580000px;}
.x7_c00000{left:332.856000px;}
.x6c_c00000{left:334.170333px;}
.x69_c00000{left:335.430000px;}
.x4c_c00000{left:336.510531px;}
.x7f_c00000{left:338.400000px;}
.x68_c00000{left:340.110000px;}
.xb0_c00000{left:342.360000px;}
.x5_c00000{left:343.548000px;}
.x83_c00000{left:344.610000px;}
.x6e_c00000{left:345.780000px;}
.x7c_c00000{left:347.759541px;}
.xf_c00000{left:349.551000px;}
.xc9_c00000{left:351.090000px;}
.x4a_c00000{left:353.700000px;}
.xaf_c00000{left:357.120000px;}
.x27_c00000{left:358.980000px;}
.x3a_c00000{left:362.160900px;}
.x75_c00000{left:364.050000px;}
.x20_c00000{left:366.000000px;}
.xe_c00000{left:367.500000px;}
.x6_c00000{left:369.036000px;}
.x72_c00000{left:370.440000px;}
.x2c_c00000{left:372.420000px;}
.x8a_c00000{left:373.950000px;}
.x21_c00000{left:378.000000px;}
.x4f_c00000{left:380.068956px;}
.xd0_c00000{left:381.600000px;}
.x1a_c00000{left:384.000000px;}
.x10_c00000{left:385.500000px;}
.x36_c00000{left:393.120000px;}
.xb3_c00000{left:395.820000px;}
.xc1_c00000{left:397.170000px;}
.xae_c00000{left:399.780000px;}
.x14_c00000{left:402.000000px;}
.x67_c00000{left:403.920000px;}
.x50_c00000{left:406.170000px;}
.xc8_c00000{left:409.410000px;}
.xb4_c00000{left:411.120000px;}
.xa9_c00000{left:412.380000px;}
.x8e_c00000{left:414.810000px;}
.x52_c00000{left:416.070000px;}
.xba_c00000{left:417.240000px;}
.xc4_c00000{left:419.940000px;}
.x2a_c00000{left:421.800000px;}
.x5a_c00000{left:424.260000px;}
.x7a_c00000{left:427.770000px;}
.x48_c00000{left:431.460000px;}
.x58_c00000{left:437.940000px;}
.xc6_c00000{left:443.070000px;}
.xaa_c00000{left:444.870000px;}
.x2b_c00000{left:446.490000px;}
.xc3_c00000{left:447.930000px;}
.x73_c00000{left:451.620000px;}
.xd6_c00000{left:455.760000px;}
.x7d_c00000{left:465.120000px;}
.x56_c00000{left:468.450000px;}
.xbb_c00000{left:469.710000px;}
.x82_c00000{left:473.040000px;}
.xc2_c00000{left:476.280000px;}
.x6f_c00000{left:478.440000px;}
.x51_c00000{left:479.880000px;}
.x4d_c00000{left:484.290342px;}
.xc7_c00000{left:486.630000px;}
.xd3_c00000{left:491.130000px;}
.xcb_c00000{left:496.800000px;}
.xbe_c00000{left:503.370000px;}
.xd5_c00000{left:505.890000px;}
.x96_c00000{left:517.320000px;}
.xa6_c00000{left:518.580000px;}
.xd7_c00000{left:521.730000px;}
.x5c_c00000{left:525.960000px;}
.xa7_c00000{left:535.230000px;}
.x5d_c00000{left:538.560000px;}
.xcc_c00000{left:555.570000px;}
.x43_c00000{left:563.220000px;}
.x5b_c00000{left:565.650000px;}
.xb2_c00000{left:567.900000px;}
.x91_c00000{left:573.660000px;}
.x3d_c00000{left:575.550000px;}
.x1_c00000{left:585.000000px;}
.xc0_c00000{left:588.510000px;}
.x74_c00000{left:590.490000px;}
.x7e_c00000{left:592.560000px;}
.x53_c00000{left:593.640000px;}
.x60_c00000{left:594.810000px;}
.x93_c00000{left:597.420000px;}
.x5e_c00000{left:599.130000px;}
.x61_c00000{left:600.570000px;}
.x70_c00000{left:602.640000px;}
.x3c_c00000{left:605.430000px;}
.x71_c00000{left:606.690000px;}
.x65_c00000{left:607.860000px;}
.xa2_c00000{left:609.930000px;}
.x49_c00000{left:611.370000px;}
.x9c_c00000{left:613.620000px;}
.x76_c00000{left:614.700000px;}
.xb5_c00000{left:618.120000px;}
.x3b_c00000{left:621.180000px;}
.xa4_c00000{left:622.350000px;}
.x80_c00000{left:629.010000px;}
.xa8_c00000{left:630.720000px;}
.x8f_c00000{left:633.870000px;}
.x57_c00000{left:635.580000px;}
.x3e_c00000{left:638.730000px;}
.x89_c00000{left:640.170000px;}
.x9a_c00000{left:641.430000px;}
.x86_c00000{left:642.690000px;}
.x6b_c00000{left:645.570000px;}
.x9e_c00000{left:647.640000px;}
.xad_c00000{left:654.209973px;}
.xca_c00000{left:658.710000px;}
.x63_c00000{left:662.400000px;}
.x2f_c00000{left:702.451233px;}
.x30_c00000{left:714.510000px;}
.xb1_c00000{left:737.280000px;}
.x3_c00000{left:747.166500px;}
.x2d_c00000{left:765.450000px;}
@media print{
.v4_c00000{vertical-align:-171.527232pt;}
.v3_c00000{vertical-align:-110.400000pt;}
.v2_c00000{vertical-align:-107.840000pt;}
.v1_c00000{vertical-align:-83.200000pt;}
.v7_c00000{vertical-align:-29.440000pt;}
.v9_c00000{vertical-align:-26.560533pt;}
.v6_c00000{vertical-align:-24.000000pt;}
.v0_c00000{vertical-align:0.000000pt;}
.v8_c00000{vertical-align:26.552096pt;}
.v5_c00000{vertical-align:29.440000pt;}
.ls163_c00000{letter-spacing:-1.920000pt;}
.ls168_c00000{letter-spacing:-1.913600pt;}
.ls161_c00000{letter-spacing:-1.888000pt;}
.ls12d_c00000{letter-spacing:-1.881600pt;}
.ls165_c00000{letter-spacing:-1.875200pt;}
.ls167_c00000{letter-spacing:-1.868800pt;}
.ls15f_c00000{letter-spacing:-1.862400pt;}
.ls15e_c00000{letter-spacing:-1.856000pt;}
.ls162_c00000{letter-spacing:-1.849600pt;}
.ls160_c00000{letter-spacing:-1.843200pt;}
.ls169_c00000{letter-spacing:-1.836800pt;}
.ls164_c00000{letter-spacing:-1.824000pt;}
.ls166_c00000{letter-spacing:-1.817600pt;}
.ls136_c00000{letter-spacing:-0.640000pt;}
.ls15a_c00000{letter-spacing:-0.614400pt;}
.ls13e_c00000{letter-spacing:-0.609216pt;}
.ls137_c00000{letter-spacing:-0.608000pt;}
.ls131_c00000{letter-spacing:-0.595200pt;}
.ls157_c00000{letter-spacing:-0.588800pt;}
.ls13c_c00000{letter-spacing:-0.582400pt;}
.ls12e_c00000{letter-spacing:-0.576000pt;}
.ls130_c00000{letter-spacing:-0.569600pt;}
.ls134_c00000{letter-spacing:-0.563200pt;}
.ls1a6_c00000{letter-spacing:-0.561120pt;}
.ls139_c00000{letter-spacing:-0.556800pt;}
.ls133_c00000{letter-spacing:-0.550400pt;}
.ls12f_c00000{letter-spacing:-0.544000pt;}
.ls135_c00000{letter-spacing:-0.537600pt;}
.ls138_c00000{letter-spacing:-0.531200pt;}
.ls175_c00000{letter-spacing:-0.524800pt;}
.ls172_c00000{letter-spacing:-0.523712pt;}
.ls156_c00000{letter-spacing:-0.518400pt;}
.lsc8_c00000{letter-spacing:-0.518368pt;}
.ls158_c00000{letter-spacing:-0.512000pt;}
.ls159_c00000{letter-spacing:-0.505600pt;}
.lsec_c00000{letter-spacing:-0.499200pt;}
.ls13a_c00000{letter-spacing:-0.492800pt;}
.ls15b_c00000{letter-spacing:-0.486400pt;}
.ls119_c00000{letter-spacing:-0.480960pt;}
.ls15c_c00000{letter-spacing:-0.480000pt;}
.ls1a3_c00000{letter-spacing:-0.475616pt;}
.ls13b_c00000{letter-spacing:-0.473600pt;}
.ls15d_c00000{letter-spacing:-0.467200pt;}
.ls117_c00000{letter-spacing:-0.460800pt;}
.ls173_c00000{letter-spacing:-0.448896pt;}
.ls1a4_c00000{letter-spacing:-0.443552pt;}
.lse4_c00000{letter-spacing:-0.427488pt;}
.ls1b1_c00000{letter-spacing:-0.416000pt;}
.ls17a_c00000{letter-spacing:-0.390112pt;}
.ls132_c00000{letter-spacing:-0.384000pt;}
.ls120_c00000{letter-spacing:-0.379424pt;}
.ls1b8_c00000{letter-spacing:-0.374080pt;}
.lsa5_c00000{letter-spacing:-0.371200pt;}
.ls1a5_c00000{letter-spacing:-0.368736pt;}
.ls170_c00000{letter-spacing:-0.358048pt;}
.ls9f_c00000{letter-spacing:-0.353920pt;}
.ls19a_c00000{letter-spacing:-0.352704pt;}
.ls16f_c00000{letter-spacing:-0.345600pt;}
.ls18b_c00000{letter-spacing:-0.342016pt;}
.lse9_c00000{letter-spacing:-0.336672pt;}
.ls73_c00000{letter-spacing:-0.336224pt;}
.ls13f_c00000{letter-spacing:-0.331328pt;}
.lsd2_c00000{letter-spacing:-0.325984pt;}
.ls110_c00000{letter-spacing:-0.320640pt;}
.ls8a_c00000{letter-spacing:-0.320000pt;}
.lsfe_c00000{letter-spacing:-0.309952pt;}
.ls1b7_c00000{letter-spacing:-0.304608pt;}
.ls154_c00000{letter-spacing:-0.299264pt;}
.ls108_c00000{letter-spacing:-0.288576pt;}
.lsdd_c00000{letter-spacing:-0.283232pt;}
.ls12c_c00000{letter-spacing:-0.277888pt;}
.ls16a_c00000{letter-spacing:-0.275200pt;}
.ls18f_c00000{letter-spacing:-0.272544pt;}
.lsfd_c00000{letter-spacing:-0.267200pt;}
.ls8b_c00000{letter-spacing:-0.261856pt;}
.lsa0_c00000{letter-spacing:-0.256000pt;}
.ls188_c00000{letter-spacing:-0.251168pt;}
.lsbe_c00000{letter-spacing:-0.249600pt;}
.lsea_c00000{letter-spacing:-0.245824pt;}
.ls10a_c00000{letter-spacing:-0.243200pt;}
.ls80_c00000{letter-spacing:-0.240480pt;}
.lsf2_c00000{letter-spacing:-0.240096pt;}
.lscc_c00000{letter-spacing:-0.236800pt;}
.lsd9_c00000{letter-spacing:-0.235136pt;}
.ls127_c00000{letter-spacing:-0.230400pt;}
.ls71_c00000{letter-spacing:-0.229792pt;}
.lsc2_c00000{letter-spacing:-0.224448pt;}
.ls197_c00000{letter-spacing:-0.224000pt;}
.lsfc_c00000{letter-spacing:-0.219104pt;}
.ls174_c00000{letter-spacing:-0.213760pt;}
.lsdb_c00000{letter-spacing:-0.211200pt;}
.ls91_c00000{letter-spacing:-0.208416pt;}
.ls198_c00000{letter-spacing:-0.204800pt;}
.lse8_c00000{letter-spacing:-0.203072pt;}
.lsf1_c00000{letter-spacing:-0.198400pt;}
.lsa6_c00000{letter-spacing:-0.197728pt;}
.lsf6_c00000{letter-spacing:-0.192384pt;}
.ls106_c00000{letter-spacing:-0.187040pt;}
.ls1b3_c00000{letter-spacing:-0.185600pt;}
.lsb9_c00000{letter-spacing:-0.181696pt;}
.ls128_c00000{letter-spacing:-0.179200pt;}
.ls7a_c00000{letter-spacing:-0.176352pt;}
.ls11c_c00000{letter-spacing:-0.172800pt;}
.ls66_c00000{letter-spacing:-0.171008pt;}
.ls181_c00000{letter-spacing:-0.166400pt;}
.ls8d_c00000{letter-spacing:-0.165664pt;}
.ls74_c00000{letter-spacing:-0.160320pt;}
.lsfa_c00000{letter-spacing:-0.160000pt;}
.ls70_c00000{letter-spacing:-0.154976pt;}
.lsf3_c00000{letter-spacing:-0.153600pt;}
.ls5f_c00000{letter-spacing:-0.149632pt;}
.ls199_c00000{letter-spacing:-0.147200pt;}
.ls90_c00000{letter-spacing:-0.144288pt;}
.ls112_c00000{letter-spacing:-0.140800pt;}
.ls65_c00000{letter-spacing:-0.138944pt;}
.ls88_c00000{letter-spacing:-0.133600pt;}
.lsc5_c00000{letter-spacing:-0.128256pt;}
.ls5c_c00000{letter-spacing:-0.122912pt;}
.lsc1_c00000{letter-spacing:-0.121600pt;}
.ls87_c00000{letter-spacing:-0.117568pt;}
.lscd_c00000{letter-spacing:-0.116288pt;}
.lsc9_c00000{letter-spacing:-0.115200pt;}
.lsc6_c00000{letter-spacing:-0.112224pt;}
.ls44_c00000{letter-spacing:-0.111072pt;}
.lscb_c00000{letter-spacing:-0.108800pt;}
.ls5d_c00000{letter-spacing:-0.106880pt;}
.ls100_c00000{letter-spacing:-0.105600pt;}
.ls1b4_c00000{letter-spacing:-0.102400pt;}
.ls8f_c00000{letter-spacing:-0.101536pt;}
.ls63_c00000{letter-spacing:-0.096192pt;}
.lsb2_c00000{letter-spacing:-0.096000pt;}
.ls25_c00000{letter-spacing:-0.093984pt;}
.ls11a_c00000{letter-spacing:-0.093632pt;}
.ls60_c00000{letter-spacing:-0.090848pt;}
.ls10d_c00000{letter-spacing:-0.089664pt;}
.lsa8_c00000{letter-spacing:-0.089600pt;}
.ls93_c00000{letter-spacing:-0.085504pt;}
.ls2b_c00000{letter-spacing:-0.085440pt;}
.ls85_c00000{letter-spacing:-0.083200pt;}
.ls171_c00000{letter-spacing:-0.080864pt;}
.ls7c_c00000{letter-spacing:-0.080160pt;}
.ls27_c00000{letter-spacing:-0.076896pt;}
.ls86_c00000{letter-spacing:-0.076800pt;}
.ls11d_c00000{letter-spacing:-0.076608pt;}
.ls64_c00000{letter-spacing:-0.074816pt;}
.ls17b_c00000{letter-spacing:-0.074720pt;}
.ls98_c00000{letter-spacing:-0.070400pt;}
.ls18e_c00000{letter-spacing:-0.070272pt;}
.ls92_c00000{letter-spacing:-0.069472pt;}
.ls23_c00000{letter-spacing:-0.068352pt;}
.ls72_c00000{letter-spacing:-0.064128pt;}
.ls3c_c00000{letter-spacing:-0.064000pt;}
.ls29_c00000{letter-spacing:-0.059808pt;}
.ls11_c00000{letter-spacing:-0.059776pt;}
.ls10f_c00000{letter-spacing:-0.059584pt;}
.ls7b_c00000{letter-spacing:-0.058784pt;}
.ls3d_c00000{letter-spacing:-0.057600pt;}
.lse_c00000{letter-spacing:-0.055552pt;}
.ls9c_c00000{letter-spacing:-0.055328pt;}
.ls8e_c00000{letter-spacing:-0.053440pt;}
.ls26_c00000{letter-spacing:-0.051264pt;}
.ls33_c00000{letter-spacing:-0.051200pt;}
.lsf_c00000{letter-spacing:-0.048608pt;}
.lsae_c00000{letter-spacing:-0.048096pt;}
.ls102_c00000{letter-spacing:-0.046848pt;}
.ls4e_c00000{letter-spacing:-0.044832pt;}
.ls2f_c00000{letter-spacing:-0.044800pt;}
.ls9a_c00000{letter-spacing:-0.042752pt;}
.ls3a_c00000{letter-spacing:-0.042720pt;}
.ls2c_c00000{letter-spacing:-0.038400pt;}
.ls76_c00000{letter-spacing:-0.037408pt;}
.lsaa_c00000{letter-spacing:-0.035392pt;}
.ls39_c00000{letter-spacing:-0.034176pt;}
.lsf9_c00000{letter-spacing:-0.033820pt;}
.ls61_c00000{letter-spacing:-0.032064pt;}
.ls34_c00000{letter-spacing:-0.032000pt;}
.ls37_c00000{letter-spacing:-0.030336pt;}
.ls10_c00000{letter-spacing:-0.027776pt;}
.ls78_c00000{letter-spacing:-0.026720pt;}
.lsc_c00000{letter-spacing:-0.026688pt;}
.ls24_c00000{letter-spacing:-0.025632pt;}
.ls2d_c00000{letter-spacing:-0.025600pt;}
.ls21_c00000{letter-spacing:-0.023488pt;}
.lsee_c00000{letter-spacing:-0.023424pt;}
.ls75_c00000{letter-spacing:-0.021376pt;}
.ls38_c00000{letter-spacing:-0.019200pt;}
.lsef_c00000{letter-spacing:-0.017568pt;}
.ls28_c00000{letter-spacing:-0.017088pt;}
.ls104_c00000{letter-spacing:-0.017024pt;}
.ls6f_c00000{letter-spacing:-0.016032pt;}
.ls36_c00000{letter-spacing:-0.012800pt;}
.ls101_c00000{letter-spacing:-0.011712pt;}
.ls5e_c00000{letter-spacing:-0.010688pt;}
.ls2e_c00000{letter-spacing:-0.006400pt;}
.lse3_c00000{letter-spacing:-0.005856pt;}
.ls62_c00000{letter-spacing:-0.005344pt;}
.ls4_c00000{letter-spacing:-0.003733pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ls6c_c00000{letter-spacing:0.005344pt;}
.lsd4_c00000{letter-spacing:0.005856pt;}
.ls1e_c00000{letter-spacing:0.006400pt;}
.ls41_c00000{letter-spacing:0.007456pt;}
.ls45_c00000{letter-spacing:0.009600pt;}
.ls6e_c00000{letter-spacing:0.010688pt;}
.lsd6_c00000{letter-spacing:0.011712pt;}
.ls20_c00000{letter-spacing:0.012800pt;}
.ls16_c00000{letter-spacing:0.014912pt;}
.ls59_c00000{letter-spacing:0.016032pt;}
.lsdf_c00000{letter-spacing:0.017568pt;}
.ls30_c00000{letter-spacing:0.019200pt;}
.ls111_c00000{letter-spacing:0.020224pt;}
.ls58_c00000{letter-spacing:0.021376pt;}
.ls19_c00000{letter-spacing:0.022368pt;}
.lsb_c00000{letter-spacing:0.023424pt;}
.ls1f_c00000{letter-spacing:0.025600pt;}
.lsc4_c00000{letter-spacing:0.026720pt;}
.lsed_c00000{letter-spacing:0.029280pt;}
.ls3f_c00000{letter-spacing:0.029824pt;}
.ls31_c00000{letter-spacing:0.032000pt;}
.ls89_c00000{letter-spacing:0.032064pt;}
.lsa_c00000{letter-spacing:0.035136pt;}
.ls17_c00000{letter-spacing:0.037280pt;}
.lsbc_c00000{letter-spacing:0.037408pt;}
.ls22_c00000{letter-spacing:0.038400pt;}
.lse2_c00000{letter-spacing:0.040992pt;}
.lsc0_c00000{letter-spacing:0.042752pt;}
.ls1c_c00000{letter-spacing:0.044736pt;}
.ls47_c00000{letter-spacing:0.044800pt;}
.ls53_c00000{letter-spacing:0.045504pt;}
.lse1_c00000{letter-spacing:0.046848pt;}
.ls83_c00000{letter-spacing:0.048096pt;}
.ls3e_c00000{letter-spacing:0.051200pt;}
.ls1d_c00000{letter-spacing:0.052192pt;}
.lsd3_c00000{letter-spacing:0.052704pt;}
.ls5b_c00000{letter-spacing:0.053440pt;}
.ls48_c00000{letter-spacing:0.057600pt;}
.lsd5_c00000{letter-spacing:0.058560pt;}
.ls81_c00000{letter-spacing:0.058784pt;}
.ls15_c00000{letter-spacing:0.059648pt;}
.ls32_c00000{letter-spacing:0.064000pt;}
.ls12_c00000{letter-spacing:0.064128pt;}
.lsde_c00000{letter-spacing:0.064416pt;}
.ls1b_c00000{letter-spacing:0.067104pt;}
.ls67_c00000{letter-spacing:0.069472pt;}
.lse5_c00000{letter-spacing:0.070272pt;}
.ls4c_c00000{letter-spacing:0.070400pt;}
.ls2a_c00000{letter-spacing:0.074560pt;}
.ls79_c00000{letter-spacing:0.074816pt;}
.lse6_c00000{letter-spacing:0.076128pt;}
.ls68_c00000{letter-spacing:0.076800pt;}
.ls46_c00000{letter-spacing:0.080160pt;}
.lsd8_c00000{letter-spacing:0.081984pt;}
.ls18_c00000{letter-spacing:0.082016pt;}
.ls4b_c00000{letter-spacing:0.083200pt;}
.ls95_c00000{letter-spacing:0.085504pt;}
.lsff_c00000{letter-spacing:0.087840pt;}
.ls40_c00000{letter-spacing:0.089472pt;}
.ls4a_c00000{letter-spacing:0.089600pt;}
.ls7f_c00000{letter-spacing:0.090848pt;}
.lse7_c00000{letter-spacing:0.093696pt;}
.lsb5_c00000{letter-spacing:0.096000pt;}
.ls77_c00000{letter-spacing:0.096192pt;}
.ls1a_c00000{letter-spacing:0.096928pt;}
.lsfb_c00000{letter-spacing:0.099552pt;}
.ls9e_c00000{letter-spacing:0.101536pt;}
.ls84_c00000{letter-spacing:0.102400pt;}
.ls3b_c00000{letter-spacing:0.104384pt;}
.ls194_c00000{letter-spacing:0.105408pt;}
.ls99_c00000{letter-spacing:0.106880pt;}
.ls54_c00000{letter-spacing:0.108800pt;}
.ls42_c00000{letter-spacing:0.111840pt;}
.ls57_c00000{letter-spacing:0.112224pt;}
.lsb1_c00000{letter-spacing:0.115200pt;}
.ls9b_c00000{letter-spacing:0.117568pt;}
.ls5a_c00000{letter-spacing:0.121344pt;}
.lsd1_c00000{letter-spacing:0.121600pt;}
.ls94_c00000{letter-spacing:0.122912pt;}
.ls183_c00000{letter-spacing:0.122976pt;}
.ls50_c00000{letter-spacing:0.126688pt;}
.lsf7_c00000{letter-spacing:0.128000pt;}
.ls96_c00000{letter-spacing:0.128256pt;}
.ls7e_c00000{letter-spacing:0.133600pt;}
.ls129_c00000{letter-spacing:0.134400pt;}
.ls187_c00000{letter-spacing:0.134688pt;}
.ls97_c00000{letter-spacing:0.138944pt;}
.lsc7_c00000{letter-spacing:0.140800pt;}
.ls8c_c00000{letter-spacing:0.144288pt;}
.lsab_c00000{letter-spacing:0.147200pt;}
.ls115_c00000{letter-spacing:0.149632pt;}
.ls1ae_c00000{letter-spacing:0.153600pt;}
.lsf8_c00000{letter-spacing:0.154976pt;}
.lsa1_c00000{letter-spacing:0.156736pt;}
.ls51_c00000{letter-spacing:0.160000pt;}
.ls56_c00000{letter-spacing:0.160320pt;}
.lsd7_c00000{letter-spacing:0.160992pt;}
.ls82_c00000{letter-spacing:0.161728pt;}
.ls176_c00000{letter-spacing:0.165664pt;}
.ls107_c00000{letter-spacing:0.171008pt;}
.ls189_c00000{letter-spacing:0.181696pt;}
.ls178_c00000{letter-spacing:0.185600pt;}
.ls12a_c00000{letter-spacing:0.187040pt;}
.ls123_c00000{letter-spacing:0.192384pt;}
.ls1b9_c00000{letter-spacing:0.198400pt;}
.ls17d_c00000{letter-spacing:0.208416pt;}
.lsbd_c00000{letter-spacing:0.224000pt;}
.ls19c_c00000{letter-spacing:0.224448pt;}
.ls14c_c00000{letter-spacing:0.230400pt;}
.ls11e_c00000{letter-spacing:0.240000pt;}
.ls121_c00000{letter-spacing:0.240480pt;}
.ls153_c00000{letter-spacing:0.243200pt;}
.ls140_c00000{letter-spacing:0.249600pt;}
.ls141_c00000{letter-spacing:0.262400pt;}
.ls14e_c00000{letter-spacing:0.268800pt;}
.ls142_c00000{letter-spacing:0.275200pt;}
.ls14d_c00000{letter-spacing:0.281600pt;}
.ls105_c00000{letter-spacing:0.283232pt;}
.ls144_c00000{letter-spacing:0.288000pt;}
.ls35_c00000{letter-spacing:0.288192pt;}
.ls145_c00000{letter-spacing:0.294400pt;}
.ls14a_c00000{letter-spacing:0.300800pt;}
.ls148_c00000{letter-spacing:0.307200pt;}
.ls143_c00000{letter-spacing:0.313600pt;}
.lsa4_c00000{letter-spacing:0.320000pt;}
.ls146_c00000{letter-spacing:0.326400pt;}
.ls147_c00000{letter-spacing:0.332800pt;}
.ls151_c00000{letter-spacing:0.339200pt;}
.ls14b_c00000{letter-spacing:0.352000pt;}
.ls149_c00000{letter-spacing:0.364800pt;}
.ls150_c00000{letter-spacing:0.371200pt;}
.ls184_c00000{letter-spacing:0.390400pt;}
.ls14f_c00000{letter-spacing:0.396800pt;}
.lseb_c00000{letter-spacing:0.400800pt;}
.ls152_c00000{letter-spacing:0.409600pt;}
.ls124_c00000{letter-spacing:0.480960pt;}
.lsb8_c00000{letter-spacing:0.721440pt;}
.ls113_c00000{letter-spacing:0.800000pt;}
.ls7d_c00000{letter-spacing:0.960000pt;}
.ls6_c00000{letter-spacing:0.994112pt;}
.ls180_c00000{letter-spacing:1.042080pt;}
.ls5_c00000{letter-spacing:1.054976pt;}
.lsb4_c00000{letter-spacing:1.120000pt;}
.ls69_c00000{letter-spacing:1.280000pt;}
.lsd0_c00000{letter-spacing:1.357376pt;}
.ls118_c00000{letter-spacing:1.362720pt;}
.ls6d_c00000{letter-spacing:1.600000pt;}
.ls11b_c00000{letter-spacing:1.678016pt;}
.ls6b_c00000{letter-spacing:1.920000pt;}
.lsca_c00000{letter-spacing:1.998656pt;}
.lsa2_c00000{letter-spacing:2.560000pt;}
.lse0_c00000{letter-spacing:2.639936pt;}
.ls17c_c00000{letter-spacing:2.720000pt;}
.ls191_c00000{letter-spacing:2.960576pt;}
.ls19b_c00000{letter-spacing:3.281216pt;}
.ls1b0_c00000{letter-spacing:3.520000pt;}
.ls1a8_c00000{letter-spacing:3.808106pt;}
.ls3_c00000{letter-spacing:4.056000pt;}
.ls8_c00000{letter-spacing:4.219200pt;}
.ls109_c00000{letter-spacing:4.237792pt;}
.ls7_c00000{letter-spacing:4.262400pt;}
.ls1_c00000{letter-spacing:4.278080pt;}
.ls2_c00000{letter-spacing:4.309120pt;}
.lsd_c00000{letter-spacing:4.442400pt;}
.lsb3_c00000{letter-spacing:4.480000pt;}
.ls11f_c00000{letter-spacing:4.558432pt;}
.ls10e_c00000{letter-spacing:4.800000pt;}
.ls16e_c00000{letter-spacing:4.879072pt;}
.ls1ad_c00000{letter-spacing:4.960000pt;}
.lsbf_c00000{letter-spacing:5.040000pt;}
.lsad_c00000{letter-spacing:5.120000pt;}
.lsbb_c00000{letter-spacing:5.199712pt;}
.lsf0_c00000{letter-spacing:5.200000pt;}
.ls55_c00000{letter-spacing:5.440000pt;}
.lsf4_c00000{letter-spacing:5.520352pt;}
.ls1ab_c00000{letter-spacing:5.600000pt;}
.lsdc_c00000{letter-spacing:5.760000pt;}
.ls182_c00000{letter-spacing:5.840992pt;}
.ls1bb_c00000{letter-spacing:6.080000pt;}
.ls177_c00000{letter-spacing:6.081472pt;}
.lscf_c00000{letter-spacing:6.161632pt;}
.ls6a_c00000{letter-spacing:6.240000pt;}
.ls125_c00000{letter-spacing:6.400000pt;}
.ls155_c00000{letter-spacing:6.482272pt;}
.ls19d_c00000{letter-spacing:7.118208pt;}
.ls19e_c00000{letter-spacing:7.438848pt;}
.lsaf_c00000{letter-spacing:7.680000pt;}
.ls1a9_c00000{letter-spacing:7.840000pt;}
.ls1a0_c00000{letter-spacing:8.080128pt;}
.ls126_c00000{letter-spacing:8.243200pt;}
.ls1b6_c00000{letter-spacing:8.400768pt;}
.ls16b_c00000{letter-spacing:8.721408pt;}
.lsb7_c00000{letter-spacing:8.800000pt;}
.lsba_c00000{letter-spacing:8.880000pt;}
.ls195_c00000{letter-spacing:8.960000pt;}
.lsb0_c00000{letter-spacing:9.280000pt;}
.ls52_c00000{letter-spacing:9.440000pt;}
.ls18c_c00000{letter-spacing:9.677984pt;}
.ls17e_c00000{letter-spacing:9.920000pt;}
.ls186_c00000{letter-spacing:10.240000pt;}
.ls190_c00000{letter-spacing:10.319264pt;}
.ls1a2_c00000{letter-spacing:10.639904pt;}
.lsa9_c00000{letter-spacing:10.880000pt;}
.lsce_c00000{letter-spacing:10.960544pt;}
.ls1ac_c00000{letter-spacing:11.200000pt;}
.ls12b_c00000{letter-spacing:11.440000pt;}
.ls103_c00000{letter-spacing:11.601824pt;}
.lsa7_c00000{letter-spacing:11.840000pt;}
.ls13d_c00000{letter-spacing:12.024000pt;}
.ls114_c00000{letter-spacing:12.288000pt;}
.ls19f_c00000{letter-spacing:12.480000pt;}
.ls179_c00000{letter-spacing:12.558400pt;}
.ls1aa_c00000{letter-spacing:12.800000pt;}
.ls1ba_c00000{letter-spacing:13.120000pt;}
.ls1a7_c00000{letter-spacing:13.440000pt;}
.lsf5_c00000{letter-spacing:14.080000pt;}
.ls1b2_c00000{letter-spacing:14.161600pt;}
.lsda_c00000{letter-spacing:14.482240pt;}
.lsac_c00000{letter-spacing:15.360000pt;}
.ls1bc_c00000{letter-spacing:15.680000pt;}
.ls16c_c00000{letter-spacing:15.759456pt;}
.ls16d_c00000{letter-spacing:16.400736pt;}
.ls122_c00000{letter-spacing:17.677952pt;}
.ls1af_c00000{letter-spacing:18.880000pt;}
.ls1a1_c00000{letter-spacing:19.601792pt;}
.ls1b5_c00000{letter-spacing:19.922432pt;}
.ls9d_c00000{letter-spacing:30.208000pt;}
.lsc3_c00000{letter-spacing:30.640000pt;}
.ls17f_c00000{letter-spacing:31.040000pt;}
.lsb6_c00000{letter-spacing:36.480000pt;}
.ls185_c00000{letter-spacing:37.760704pt;}
.lsa3_c00000{letter-spacing:43.008000pt;}
.ls192_c00000{letter-spacing:54.720000pt;}
.ls18d_c00000{letter-spacing:80.000000pt;}
.ls196_c00000{letter-spacing:128.000000pt;}
.ls193_c00000{letter-spacing:134.720000pt;}
.ls10c_c00000{letter-spacing:148.244480pt;}
.ls116_c00000{letter-spacing:170.160832pt;}
.ls49_c00000{letter-spacing:172.800000pt;}
.ls18a_c00000{letter-spacing:176.000000pt;}
.ls4d_c00000{letter-spacing:428.564032pt;}
.ls9_c00000{letter-spacing:799.872000pt;}
.ls14_c00000{letter-spacing:831.120000pt;}
.ls43_c00000{letter-spacing:1109.760000pt;}
.ls10b_c00000{letter-spacing:2155.520000pt;}
.ls4f_c00000{letter-spacing:2187.520000pt;}
.ls13_c00000{letter-spacing:2219.520000pt;}
.ws1be_c00000{word-spacing:-64.000000pt;}
.ws13e5_c00000{word-spacing:-59.521472pt;}
.ws127a_c00000{word-spacing:-56.479151pt;}
.wsd2_c00000{word-spacing:-53.440000pt;}
.ws0_c00000{word-spacing:-53.184000pt;}
.ws2_c00000{word-spacing:-35.584000pt;}
.ws14e6_c00000{word-spacing:-32.390400pt;}
.ws1472_c00000{word-spacing:-32.000000pt;}
.ws5_c00000{word-spacing:-29.786400pt;}
.ws149c_c00000{word-spacing:-26.720000pt;}
.ws3_c00000{word-spacing:-25.344000pt;}
.ws4_c00000{word-spacing:-24.439147pt;}
.ws11_c00000{word-spacing:-21.274560pt;}
.ws13_c00000{word-spacing:-20.010048pt;}
.ws10_c00000{word-spacing:-18.699648pt;}
.ws5b_c00000{word-spacing:-18.692192pt;}
.ws23_c00000{word-spacing:-17.775104pt;}
.ws1f_c00000{word-spacing:-17.752736pt;}
.ws10b8_c00000{word-spacing:-16.140800pt;}
.wsf9e_c00000{word-spacing:-16.128000pt;}
.ws1403_c00000{word-spacing:-16.115200pt;}
.wsae6_c00000{word-spacing:-16.108800pt;}
.wsfee_c00000{word-spacing:-16.102400pt;}
.ws5a9_c00000{word-spacing:-16.096000pt;}
.ws687_c00000{word-spacing:-16.089600pt;}
.ws1bf_c00000{word-spacing:-16.083200pt;}
.ws360_c00000{word-spacing:-16.076800pt;}
.ws65c_c00000{word-spacing:-16.070400pt;}
.wsc14_c00000{word-spacing:-16.064000pt;}
.ws35e_c00000{word-spacing:-16.057600pt;}
.ws241_c00000{word-spacing:-16.051200pt;}
.wsd3_c00000{word-spacing:-16.044800pt;}
.ws365_c00000{word-spacing:-16.038400pt;}
.ws65b_c00000{word-spacing:-16.032000pt;}
.ws16b_c00000{word-spacing:-16.025600pt;}
.wsd4_c00000{word-spacing:-16.019200pt;}
.ws5a8_c00000{word-spacing:-16.012800pt;}
.ws362_c00000{word-spacing:-16.006400pt;}
.ws16c_c00000{word-spacing:-16.000000pt;}
.ws361_c00000{word-spacing:-15.993600pt;}
.ws3aa_c00000{word-spacing:-15.987200pt;}
.ws9eb_c00000{word-spacing:-15.980800pt;}
.wsb24_c00000{word-spacing:-15.974400pt;}
.ws363_c00000{word-spacing:-15.968000pt;}
.ws16d_c00000{word-spacing:-15.961600pt;}
.ws1afe_c00000{word-spacing:-15.955200pt;}
.ws364_c00000{word-spacing:-15.948800pt;}
.ws10e4_c00000{word-spacing:-15.942400pt;}
.wsd5_c00000{word-spacing:-15.936000pt;}
.ws101b_c00000{word-spacing:-15.929600pt;}
.ws1851_c00000{word-spacing:-15.923200pt;}
.ws2dc_c00000{word-spacing:-15.916800pt;}
.ws13b6_c00000{word-spacing:-15.910400pt;}
.wsc66_c00000{word-spacing:-15.904000pt;}
.ws10f4_c00000{word-spacing:-15.891200pt;}
.wscee_c00000{word-spacing:-15.840000pt;}
.ws1a1f_c00000{word-spacing:-15.814400pt;}
.ws81a_c00000{word-spacing:-15.788800pt;}
.ws1027_c00000{word-spacing:-15.680000pt;}
.ws3ab_c00000{word-spacing:-15.628800pt;}
.ws191d_c00000{word-spacing:-15.539200pt;}
.ws1387_c00000{word-spacing:-15.500800pt;}
.ws12ad_c00000{word-spacing:-15.417600pt;}
.ws18_c00000{word-spacing:-15.217696pt;}
.ws67_c00000{word-spacing:-14.892192pt;}
.ws14ef_c00000{word-spacing:-14.774688pt;}
.ws14c9_c00000{word-spacing:-14.762976pt;}
.ws17f4_c00000{word-spacing:-14.721984pt;}
.ws1b4c_c00000{word-spacing:-14.710272pt;}
.ws15bd_c00000{word-spacing:-14.704416pt;}
.ws8c7_c00000{word-spacing:-14.692704pt;}
.ws15b2_c00000{word-spacing:-14.686848pt;}
.ws18dc_c00000{word-spacing:-14.680992pt;}
.ws8e0_c00000{word-spacing:-14.675136pt;}
.ws16a2_c00000{word-spacing:-14.669280pt;}
.ws7f2_c00000{word-spacing:-14.663424pt;}
.ws14ca_c00000{word-spacing:-14.657568pt;}
.ws1887_c00000{word-spacing:-14.651712pt;}
.ws14c8_c00000{word-spacing:-14.645856pt;}
.ws15eb_c00000{word-spacing:-14.640000pt;}
.wsba1_c00000{word-spacing:-14.593152pt;}
.ws63_c00000{word-spacing:-14.263328pt;}
.ws12ae_c00000{word-spacing:-14.112000pt;}
.ws83c_c00000{word-spacing:-13.520320pt;}
.wsafd_c00000{word-spacing:-13.514976pt;}
.ws125c_c00000{word-spacing:-13.509632pt;}
.wse67_c00000{word-spacing:-13.504288pt;}
.ws13b7_c00000{word-spacing:-13.488256pt;}
.ws145d_c00000{word-spacing:-13.482912pt;}
.wsc95_c00000{word-spacing:-13.472224pt;}
.ws5cf_c00000{word-spacing:-13.466880pt;}
.ws1752_c00000{word-spacing:-13.461536pt;}
.ws321_c00000{word-spacing:-13.456192pt;}
.ws197f_c00000{word-spacing:-13.445504pt;}
.ws1c3_c00000{word-spacing:-13.440160pt;}
.ws1415_c00000{word-spacing:-13.429472pt;}
.wsea4_c00000{word-spacing:-13.424128pt;}
.ws631_c00000{word-spacing:-13.418784pt;}
.wse28_c00000{word-spacing:-13.413440pt;}
.wsc7c_c00000{word-spacing:-13.408096pt;}
.ws1ac8_c00000{word-spacing:-13.402752pt;}
.ws10a3_c00000{word-spacing:-13.397408pt;}
.ws137a_c00000{word-spacing:-13.392064pt;}
.ws131d_c00000{word-spacing:-13.386720pt;}
.wsddb_c00000{word-spacing:-13.381376pt;}
.ws106c_c00000{word-spacing:-13.376032pt;}
.wsbc8_c00000{word-spacing:-13.370688pt;}
.wsb70_c00000{word-spacing:-13.365344pt;}
.wsd1_c00000{word-spacing:-13.360000pt;}
.ws1c4_c00000{word-spacing:-13.354656pt;}
.wsafe_c00000{word-spacing:-13.349312pt;}
.ws127c_c00000{word-spacing:-13.343968pt;}
.ws1c0_c00000{word-spacing:-13.338624pt;}
.ws688_c00000{word-spacing:-13.333280pt;}
.ws114d_c00000{word-spacing:-13.327936pt;}
.ws1c1_c00000{word-spacing:-13.322592pt;}
.wsa3e_c00000{word-spacing:-13.317248pt;}
.wsc68_c00000{word-spacing:-13.311904pt;}
.wsec4_c00000{word-spacing:-13.306560pt;}
.ws959_c00000{word-spacing:-13.301216pt;}
.ws6b7_c00000{word-spacing:-13.295872pt;}
.ws5ab_c00000{word-spacing:-13.290528pt;}
.ws1c5_c00000{word-spacing:-13.285184pt;}
.ws5aa_c00000{word-spacing:-13.279840pt;}
.ws367_c00000{word-spacing:-13.274496pt;}
.ws2dd_c00000{word-spacing:-13.269152pt;}
.wsf08_c00000{word-spacing:-13.263808pt;}
.ws366_c00000{word-spacing:-13.258464pt;}
.ws322_c00000{word-spacing:-13.253120pt;}
.ws12bd_c00000{word-spacing:-13.247776pt;}
.ws689_c00000{word-spacing:-13.242432pt;}
.ws171_c00000{word-spacing:-13.237088pt;}
.ws1336_c00000{word-spacing:-13.231744pt;}
.ws9b5_c00000{word-spacing:-13.226400pt;}
.wsb36_c00000{word-spacing:-13.221056pt;}
.ws1235_c00000{word-spacing:-13.215712pt;}
.ws1ac9_c00000{word-spacing:-13.210368pt;}
.ws16e_c00000{word-spacing:-13.205024pt;}
.ws607_c00000{word-spacing:-13.199680pt;}
.ws127b_c00000{word-spacing:-13.194336pt;}
.ws88b_c00000{word-spacing:-13.188992pt;}
.ws958_c00000{word-spacing:-13.183648pt;}
.ws13aa_c00000{word-spacing:-13.178304pt;}
.wse50_c00000{word-spacing:-13.172960pt;}
.ws1335_c00000{word-spacing:-13.167616pt;}
.ws1343_c00000{word-spacing:-13.140896pt;}
.ws65d_c00000{word-spacing:-13.135552pt;}
.ws16f_c00000{word-spacing:-13.130208pt;}
.ws1c2_c00000{word-spacing:-13.119520pt;}
.wsf64_c00000{word-spacing:-13.114176pt;}
.ws1a13_c00000{word-spacing:-13.098144pt;}
.ws889_c00000{word-spacing:-13.076768pt;}
.ws171f_c00000{word-spacing:-13.039360pt;}
.ws91b_c00000{word-spacing:-13.034016pt;}
.ws948_c00000{word-spacing:-13.023328pt;}
.ws1670_c00000{word-spacing:-13.001952pt;}
.wsfb2_c00000{word-spacing:-12.980576pt;}
.ws144f_c00000{word-spacing:-12.969888pt;}
.ws34_c00000{word-spacing:-12.928192pt;}
.ws18c3_c00000{word-spacing:-12.916448pt;}
.ws6b8_c00000{word-spacing:-12.841632pt;}
.ws3a9_c00000{word-spacing:-12.796736pt;}
.wsd7_c00000{word-spacing:-12.761344pt;}
.wsd6_c00000{word-spacing:-12.685504pt;}
.wsced_c00000{word-spacing:-12.660224pt;}
.ws35_c00000{word-spacing:-12.609664pt;}
.ws492_c00000{word-spacing:-12.604608pt;}
.ws77b_c00000{word-spacing:-12.523712pt;}
.ws70_c00000{word-spacing:-12.480000pt;}
.ws35f_c00000{word-spacing:-12.286080pt;}
.wsba0_c00000{word-spacing:-11.894400pt;}
.ws76_c00000{word-spacing:-11.698464pt;}
.ws75_c00000{word-spacing:-11.377856pt;}
.ws50_c00000{word-spacing:-10.880000pt;}
.ws20a_c00000{word-spacing:-10.801728pt;}
.wsbc7_c00000{word-spacing:-10.622976pt;}
.ws323_c00000{word-spacing:-10.584672pt;}
.wsccd_c00000{word-spacing:-10.580416pt;}
.wsf51_c00000{word-spacing:-10.563392pt;}
.ws1394_c00000{word-spacing:-10.559136pt;}
.ws49_c00000{word-spacing:-10.553600pt;}
.wsec3_c00000{word-spacing:-10.546368pt;}
.ws46_c00000{word-spacing:-10.415136pt;}
.ws170_c00000{word-spacing:-10.303776pt;}
.ws7f3_c00000{word-spacing:-9.520992pt;}
.ws40_c00000{word-spacing:-9.267200pt;}
.ws3a_c00000{word-spacing:-8.960000pt;}
.wsd8_c00000{word-spacing:-8.640000pt;}
.ws3f_c00000{word-spacing:-7.347200pt;}
.ws42_c00000{word-spacing:-6.060800pt;}
.ws66_c00000{word-spacing:-5.592000pt;}
.ws4e_c00000{word-spacing:-5.446400pt;}
.ws60_c00000{word-spacing:-5.440000pt;}
.ws69_c00000{word-spacing:-5.293760pt;}
.ws10b7_c00000{word-spacing:-5.120000pt;}
.wsedf_c00000{word-spacing:-4.864000pt;}
.ws14bb_c00000{word-spacing:-4.633600pt;}
.ws17db_c00000{word-spacing:-4.492800pt;}
.ws1688_c00000{word-spacing:-4.467200pt;}
.ws1356_c00000{word-spacing:-4.390400pt;}
.ws1077_c00000{word-spacing:-4.134400pt;}
.wsec2_c00000{word-spacing:-3.766912pt;}
.ws1a39_c00000{word-spacing:-3.500800pt;}
.ws1342_c00000{word-spacing:-3.446912pt;}
.ws819_c00000{word-spacing:-3.126912pt;}
.wsdd9_c00000{word-spacing:-3.125184pt;}
.ws9b4_c00000{word-spacing:-2.880000pt;}
.ws1687_c00000{word-spacing:-2.806912pt;}
.wsd40_c00000{word-spacing:-2.805184pt;}
.ws1a2b_c00000{word-spacing:-2.624000pt;}
.ws88a_c00000{word-spacing:-2.560000pt;}
.wsc94_c00000{word-spacing:-2.486912pt;}
.ws187b_c00000{word-spacing:-2.240000pt;}
.ws8a7_c00000{word-spacing:-2.166912pt;}
.ws6e_c00000{word-spacing:-1.920000pt;}
.ws937_c00000{word-spacing:-1.846912pt;}
.wsf9f_c00000{word-spacing:-1.600000pt;}
.ws19e2_c00000{word-spacing:-1.525184pt;}
.wsee1_c00000{word-spacing:-1.280000pt;}
.wsa09_c00000{word-spacing:-1.206912pt;}
.wsd60_c00000{word-spacing:-1.205184pt;}
.wsd41_c00000{word-spacing:-0.960000pt;}
.wsbe4_c00000{word-spacing:-0.886912pt;}
.wsa3d_c00000{word-spacing:-0.640000pt;}
.ws1689_c00000{word-spacing:-0.566912pt;}
.wsd54_c00000{word-spacing:-0.561792pt;}
.ws11e7_c00000{word-spacing:-0.396800pt;}
.ws473_c00000{word-spacing:-0.390400pt;}
.wse99_c00000{word-spacing:-0.384768pt;}
.ws43b_c00000{word-spacing:-0.384000pt;}
.ws35d_c00000{word-spacing:-0.379424pt;}
.ws107_c00000{word-spacing:-0.377600pt;}
.ws314_c00000{word-spacing:-0.374080pt;}
.ws18bb_c00000{word-spacing:-0.371200pt;}
.ws34f_c00000{word-spacing:-0.368736pt;}
.wse51_c00000{word-spacing:-0.364800pt;}
.ws7b8_c00000{word-spacing:-0.363392pt;}
.ws955_c00000{word-spacing:-0.358048pt;}
.ws5cb_c00000{word-spacing:-0.352704pt;}
.wse8d_c00000{word-spacing:-0.352000pt;}
.ws34d_c00000{word-spacing:-0.347360pt;}
.ws1afa_c00000{word-spacing:-0.345600pt;}
.ws67e_c00000{word-spacing:-0.342016pt;}
.ws13e1_c00000{word-spacing:-0.339200pt;}
.ws705_c00000{word-spacing:-0.336672pt;}
.ws8f5_c00000{word-spacing:-0.333792pt;}
.ws489_c00000{word-spacing:-0.332800pt;}
.ws357_c00000{word-spacing:-0.331328pt;}
.ws2c_c00000{word-spacing:-0.326400pt;}
.ws34e_c00000{word-spacing:-0.325984pt;}
.ws31c_c00000{word-spacing:-0.320640pt;}
.ws8a8_c00000{word-spacing:-0.320000pt;}
.ws1b7_c00000{word-spacing:-0.315296pt;}
.ws1b07_c00000{word-spacing:-0.313600pt;}
.ws7ba_c00000{word-spacing:-0.309952pt;}
.ws1a3c_c00000{word-spacing:-0.307200pt;}
.wsd0_c00000{word-spacing:-0.304608pt;}
.ws58_c00000{word-spacing:-0.300800pt;}
.ws319_c00000{word-spacing:-0.299264pt;}
.ws86e_c00000{word-spacing:-0.293920pt;}
.ws15dc_c00000{word-spacing:-0.288576pt;}
.ws915_c00000{word-spacing:-0.283232pt;}
.ws1b30_c00000{word-spacing:-0.281600pt;}
.ws6e1_c00000{word-spacing:-0.277888pt;}
.ws1886_c00000{word-spacing:-0.275200pt;}
.wse65_c00000{word-spacing:-0.272544pt;}
.wsdb5_c00000{word-spacing:-0.268800pt;}
.wsc90_c00000{word-spacing:-0.267200pt;}
.ws260_c00000{word-spacing:-0.262400pt;}
.ws101a_c00000{word-spacing:-0.261856pt;}
.ws1616_c00000{word-spacing:-0.256512pt;}
.wsf73_c00000{word-spacing:-0.251168pt;}
.ws938_c00000{word-spacing:-0.249600pt;}
.ws10fd_c00000{word-spacing:-0.246379pt;}
.ws1136_c00000{word-spacing:-0.245824pt;}
.ws19c8_c00000{word-spacing:-0.245184pt;}
.ws93b_c00000{word-spacing:-0.243200pt;}
.ws6eb_c00000{word-spacing:-0.242592pt;}
.wsb9b_c00000{word-spacing:-0.240480pt;}
.ws30_c00000{word-spacing:-0.236800pt;}
.wsad2_c00000{word-spacing:-0.235136pt;}
.wsa54_c00000{word-spacing:-0.230400pt;}
.wsd77_c00000{word-spacing:-0.229792pt;}
.wse3f_c00000{word-spacing:-0.224448pt;}
.ws292_c00000{word-spacing:-0.224000pt;}
.ws8bf_c00000{word-spacing:-0.219104pt;}
.ws5ba_c00000{word-spacing:-0.217600pt;}
.ws8a6_c00000{word-spacing:-0.213760pt;}
.ws992_c00000{word-spacing:-0.211200pt;}
.ws111_c00000{word-spacing:-0.208416pt;}
.ws2e1_c00000{word-spacing:-0.204800pt;}
.wsafc_c00000{word-spacing:-0.203072pt;}
.ws164_c00000{word-spacing:-0.198400pt;}
.ws65a_c00000{word-spacing:-0.197728pt;}
.ws6d_c00000{word-spacing:-0.193856pt;}
.ws916_c00000{word-spacing:-0.192384pt;}
.ws3e_c00000{word-spacing:-0.192000pt;}
.ws62f_c00000{word-spacing:-0.187040pt;}
.ws7a_c00000{word-spacing:-0.186400pt;}
.ws1d4_c00000{word-spacing:-0.185600pt;}
.wsf27_c00000{word-spacing:-0.181696pt;}
.ws81_c00000{word-spacing:-0.179200pt;}
.ws20_c00000{word-spacing:-0.178944pt;}
.wsae5_c00000{word-spacing:-0.176352pt;}
.ws908_c00000{word-spacing:-0.172800pt;}
.ws65_c00000{word-spacing:-0.171488pt;}
.ws7d5_c00000{word-spacing:-0.171008pt;}
.ws411_c00000{word-spacing:-0.166400pt;}
.ws117_c00000{word-spacing:-0.165664pt;}
.ws19_c00000{word-spacing:-0.164032pt;}
.ws914_c00000{word-spacing:-0.160320pt;}
.wsfe_c00000{word-spacing:-0.160000pt;}
.ws37_c00000{word-spacing:-0.156576pt;}
.wsafb_c00000{word-spacing:-0.154976pt;}
.ws5e0_c00000{word-spacing:-0.153600pt;}
.ws6e5_c00000{word-spacing:-0.149632pt;}
.wsccc_c00000{word-spacing:-0.149440pt;}
.ws21_c00000{word-spacing:-0.149120pt;}
.wsaba_c00000{word-spacing:-0.147200pt;}
.ws61_c00000{word-spacing:-0.145248pt;}
.ws6a2_c00000{word-spacing:-0.144288pt;}
.ws15_c00000{word-spacing:-0.141664pt;}
.ws27c_c00000{word-spacing:-0.140800pt;}
.ws79d_c00000{word-spacing:-0.138944pt;}
.wsbb_c00000{word-spacing:-0.134400pt;}
.ws25_c00000{word-spacing:-0.134208pt;}
.ws115_c00000{word-spacing:-0.133600pt;}
.wsd_c00000{word-spacing:-0.128832pt;}
.ws911_c00000{word-spacing:-0.128256pt;}
.ws9f_c00000{word-spacing:-0.128000pt;}
.ws22_c00000{word-spacing:-0.126752pt;}
.ws777_c00000{word-spacing:-0.122912pt;}
.ws26d_c00000{word-spacing:-0.121600pt;}
.ws17_c00000{word-spacing:-0.119296pt;}
.ws67c_c00000{word-spacing:-0.117568pt;}
.ws41_c00000{word-spacing:-0.115200pt;}
.ws795_c00000{word-spacing:-0.112224pt;}
.wsd9_c00000{word-spacing:-0.111840pt;}
.ws29c_c00000{word-spacing:-0.108800pt;}
.ws7d6_c00000{word-spacing:-0.106880pt;}
.ws51_c00000{word-spacing:-0.104384pt;}
.ws32c_c00000{word-spacing:-0.102400pt;}
.ws731_c00000{word-spacing:-0.101536pt;}
.ws16_c00000{word-spacing:-0.096928pt;}
.ws947_c00000{word-spacing:-0.096192pt;}
.ws188_c00000{word-spacing:-0.096000pt;}
.ws933_c00000{word-spacing:-0.090848pt;}
.ws5e_c00000{word-spacing:-0.089600pt;}
.ws6c_c00000{word-spacing:-0.089472pt;}
.wsdfc_c00000{word-spacing:-0.085504pt;}
.ws177_c00000{word-spacing:-0.083200pt;}
.ws10e3_c00000{word-spacing:-0.080160pt;}
.ws59_c00000{word-spacing:-0.076800pt;}
.wscdc_c00000{word-spacing:-0.074816pt;}
.ws2d_c00000{word-spacing:-0.070400pt;}
.ws1535_c00000{word-spacing:-0.069472pt;}
.ws73_c00000{word-spacing:-0.068352pt;}
.ws1b8_c00000{word-spacing:-0.064128pt;}
.ws3b_c00000{word-spacing:-0.064000pt;}
.wse_c00000{word-spacing:-0.062496pt;}
.ws1c_c00000{word-spacing:-0.059808pt;}
.ws1090_c00000{word-spacing:-0.058784pt;}
.ws5d_c00000{word-spacing:-0.057600pt;}
.ws9c3_c00000{word-spacing:-0.053440pt;}
.ws31_c00000{word-spacing:-0.051200pt;}
.ws85a_c00000{word-spacing:-0.048096pt;}
.ws5a_c00000{word-spacing:-0.044800pt;}
.wsf07_c00000{word-spacing:-0.042752pt;}
.ws54c_c00000{word-spacing:-0.042720pt;}
.ws12_c00000{word-spacing:-0.038400pt;}
.ws732_c00000{word-spacing:-0.037408pt;}
.ws1d_c00000{word-spacing:-0.037280pt;}
.ws9_c00000{word-spacing:-0.034720pt;}
.ws78_c00000{word-spacing:-0.034176pt;}
.ws116_c00000{word-spacing:-0.032064pt;}
.ws4b_c00000{word-spacing:-0.032000pt;}
.wsccb_c00000{word-spacing:-0.029888pt;}
.ws27_c00000{word-spacing:-0.029824pt;}
.ws9b3_c00000{word-spacing:-0.026720pt;}
.ws32_c00000{word-spacing:-0.025600pt;}
.ws3a8_c00000{word-spacing:-0.021376pt;}
.ws3d_c00000{word-spacing:-0.019200pt;}
.ws1875_c00000{word-spacing:-0.017568pt;}
.ws2a6_c00000{word-spacing:-0.016032pt;}
.ws33_c00000{word-spacing:-0.012800pt;}
.ws16b6_c00000{word-spacing:-0.011712pt;}
.ws626_c00000{word-spacing:-0.010688pt;}
.ws77_c00000{word-spacing:-0.009600pt;}
.ws44_c00000{word-spacing:-0.008544pt;}
.ws64_c00000{word-spacing:-0.007456pt;}
.ws2b_c00000{word-spacing:-0.006400pt;}
.ws11c_c00000{word-spacing:-0.005344pt;}
.ws1_c00000{word-spacing:0.000000pt;}
.ws317_c00000{word-spacing:0.005344pt;}
.ws1595_c00000{word-spacing:0.005856pt;}
.ws2a_c00000{word-spacing:0.006400pt;}
.ws1924_c00000{word-spacing:0.007456pt;}
.ws79f_c00000{word-spacing:0.010688pt;}
.ws1085_c00000{word-spacing:0.011712pt;}
.ws43_c00000{word-spacing:0.012800pt;}
.ws70c_c00000{word-spacing:0.014912pt;}
.ws1470_c00000{word-spacing:0.014944pt;}
.ws1ab_c00000{word-spacing:0.016032pt;}
.ws1504_c00000{word-spacing:0.017568pt;}
.ws5c_c00000{word-spacing:0.019200pt;}
.ws240_c00000{word-spacing:0.021376pt;}
.ws1e_c00000{word-spacing:0.022368pt;}
.ws1551_c00000{word-spacing:0.023424pt;}
.ws48_c00000{word-spacing:0.025600pt;}
.ws10b_c00000{word-spacing:0.026720pt;}
.ws14f6_c00000{word-spacing:0.029280pt;}
.wsbbf_c00000{word-spacing:0.032000pt;}
.ws6e0_c00000{word-spacing:0.032064pt;}
.wsb79_c00000{word-spacing:0.035136pt;}
.ws62_c00000{word-spacing:0.037280pt;}
.ws67d_c00000{word-spacing:0.037408pt;}
.ws53_c00000{word-spacing:0.038400pt;}
.wsa5a_c00000{word-spacing:0.040992pt;}
.wsc29_c00000{word-spacing:0.042752pt;}
.ws3c_c00000{word-spacing:0.044800pt;}
.ws8c9_c00000{word-spacing:0.046848pt;}
.ws62c_c00000{word-spacing:0.048096pt;}
.ws4c_c00000{word-spacing:0.051200pt;}
.ws1a_c00000{word-spacing:0.051264pt;}
.ws98e_c00000{word-spacing:0.052704pt;}
.ws6a0_c00000{word-spacing:0.053440pt;}
.ws145_c00000{word-spacing:0.057600pt;}
.wsa62_c00000{word-spacing:0.058560pt;}
.ws119_c00000{word-spacing:0.058784pt;}
.ws6f_c00000{word-spacing:0.064000pt;}
.wsa00_c00000{word-spacing:0.064128pt;}
.ws1610_c00000{word-spacing:0.064416pt;}
.ws36_c00000{word-spacing:0.067104pt;}
.ws1ba_c00000{word-spacing:0.069472pt;}
.ws1617_c00000{word-spacing:0.070272pt;}
.ws5f_c00000{word-spacing:0.070400pt;}
.ws91a_c00000{word-spacing:0.073088pt;}
.ws6b_c00000{word-spacing:0.074560pt;}
.ws1ad_c00000{word-spacing:0.074816pt;}
.ws17cd_c00000{word-spacing:0.076128pt;}
.ws52_c00000{word-spacing:0.076800pt;}
.ws6dd_c00000{word-spacing:0.080160pt;}
.ws17f0_c00000{word-spacing:0.081984pt;}
.ws49d_c00000{word-spacing:0.083200pt;}
.ws1bd_c00000{word-spacing:0.085504pt;}
.ws2e_c00000{word-spacing:0.089600pt;}
.wsa7b_c00000{word-spacing:0.090848pt;}
.ws15c1_c00000{word-spacing:0.093696pt;}
.ws55_c00000{word-spacing:0.096000pt;}
.ws6df_c00000{word-spacing:0.096192pt;}
.ws9e5_c00000{word-spacing:0.101536pt;}
.ws29_c00000{word-spacing:0.102400pt;}
.ws14_c00000{word-spacing:0.102528pt;}
.ws1b22_c00000{word-spacing:0.105408pt;}
.ws533_c00000{word-spacing:0.106880pt;}
.ws643_c00000{word-spacing:0.108800pt;}
.ws208_c00000{word-spacing:0.112224pt;}
.ws38_c00000{word-spacing:0.115200pt;}
.ws2d8_c00000{word-spacing:0.117568pt;}
.wscf_c00000{word-spacing:0.119552pt;}
.ws45_c00000{word-spacing:0.119616pt;}
.ws2f_c00000{word-spacing:0.121600pt;}
.ws62b_c00000{word-spacing:0.122912pt;}
.ws4d_c00000{word-spacing:0.128000pt;}
.ws79_c00000{word-spacing:0.128160pt;}
.ws7d2_c00000{word-spacing:0.128256pt;}
.ws71a_c00000{word-spacing:0.133600pt;}
.ws39_c00000{word-spacing:0.134400pt;}
.wsf_c00000{word-spacing:0.134496pt;}
.ws1bb_c00000{word-spacing:0.138944pt;}
.ws168a_c00000{word-spacing:0.140800pt;}
.ws68_c00000{word-spacing:0.141664pt;}
.ws5c3_c00000{word-spacing:0.144288pt;}
.ws24_c00000{word-spacing:0.145248pt;}
.ws6e8_c00000{word-spacing:0.147200pt;}
.ws1471_c00000{word-spacing:0.149440pt;}
.ws31b_c00000{word-spacing:0.149632pt;}
.ws6e9_c00000{word-spacing:0.153600pt;}
.ws1b_c00000{word-spacing:0.153792pt;}
.ws9a6_c00000{word-spacing:0.154976pt;}
.ws47_c00000{word-spacing:0.156576pt;}
.wsbc0_c00000{word-spacing:0.160000pt;}
.ws1bc_c00000{word-spacing:0.160320pt;}
.ws31d_c00000{word-spacing:0.165664pt;}
.ws56_c00000{word-spacing:0.166400pt;}
.ws110_c00000{word-spacing:0.171008pt;}
.ws152_c00000{word-spacing:0.172800pt;}
.wsc_c00000{word-spacing:0.175680pt;}
.ws50d_c00000{word-spacing:0.176352pt;}
.ws446_c00000{word-spacing:0.179200pt;}
.ws6de_c00000{word-spacing:0.181696pt;}
.ws54_c00000{word-spacing:0.185600pt;}
.ws26_c00000{word-spacing:0.186400pt;}
.ws23f_c00000{word-spacing:0.187040pt;}
.ws74_c00000{word-spacing:0.187968pt;}
.ws261_c00000{word-spacing:0.192000pt;}
.ws79e_c00000{word-spacing:0.192384pt;}
.ws8a2_c00000{word-spacing:0.197728pt;}
.ws28_c00000{word-spacing:0.198400pt;}
.ws120_c00000{word-spacing:0.203072pt;}
.ws32d_c00000{word-spacing:0.204800pt;}
.ws6a1_c00000{word-spacing:0.208416pt;}
.ws41b_c00000{word-spacing:0.211200pt;}
.ws2db_c00000{word-spacing:0.213760pt;}
.ws91c_c00000{word-spacing:0.217600pt;}
.ws118_c00000{word-spacing:0.219104pt;}
.ws3e5_c00000{word-spacing:0.224000pt;}
.ws318_c00000{word-spacing:0.224448pt;}
.ws112_c00000{word-spacing:0.229792pt;}
.ws72a_c00000{word-spacing:0.230400pt;}
.ws1473_c00000{word-spacing:0.231136pt;}
.ws209_c00000{word-spacing:0.235136pt;}
.ws4fa_c00000{word-spacing:0.236800pt;}
.ws6d9_c00000{word-spacing:0.240480pt;}
.ws4b5_c00000{word-spacing:0.243200pt;}
.ws6d8_c00000{word-spacing:0.245824pt;}
.ws72b_c00000{word-spacing:0.249600pt;}
.ws35c_c00000{word-spacing:0.251168pt;}
.ws9d0_c00000{word-spacing:0.256000pt;}
.wsd52_c00000{word-spacing:0.256512pt;}
.ws5f3_c00000{word-spacing:0.261856pt;}
.ws5d5_c00000{word-spacing:0.262400pt;}
.ws1ff_c00000{word-spacing:0.267200pt;}
.ws6ea_c00000{word-spacing:0.268800pt;}
.ws972_c00000{word-spacing:0.272544pt;}
.ws14a_c00000{word-spacing:0.275200pt;}
.wsb89_c00000{word-spacing:0.277888pt;}
.ws95_c00000{word-spacing:0.281600pt;}
.wsc13_c00000{word-spacing:0.283232pt;}
.wsce_c00000{word-spacing:0.288000pt;}
.wsdc8_c00000{word-spacing:0.288576pt;}
.ws16b1_c00000{word-spacing:0.292800pt;}
.ws10e8_c00000{word-spacing:0.293920pt;}
.ws96_c00000{word-spacing:0.294400pt;}
.ws16b2_c00000{word-spacing:0.298656pt;}
.wsb8a_c00000{word-spacing:0.299264pt;}
.ws93c_c00000{word-spacing:0.300800pt;}
.ws6a3_c00000{word-spacing:0.304608pt;}
.ws644_c00000{word-spacing:0.307200pt;}
.ws9a1_c00000{word-spacing:0.309952pt;}
.wsfd_c00000{word-spacing:0.313600pt;}
.ws818_c00000{word-spacing:0.315296pt;}
.ws6a_c00000{word-spacing:0.320000pt;}
.wsdb0_c00000{word-spacing:0.320640pt;}
.ws957_c00000{word-spacing:0.325984pt;}
.ws646_c00000{word-spacing:0.326400pt;}
.ws19a2_c00000{word-spacing:0.331328pt;}
.wsf34_c00000{word-spacing:0.332800pt;}
.ws157b_c00000{word-spacing:0.336672pt;}
.ws114e_c00000{word-spacing:0.339200pt;}
.ws192a_c00000{word-spacing:0.339648pt;}
.ws116d_c00000{word-spacing:0.345600pt;}
.wsc43_c00000{word-spacing:0.347360pt;}
.wscd_c00000{word-spacing:0.352000pt;}
.wsda7_c00000{word-spacing:0.358400pt;}
.ws14da_c00000{word-spacing:0.363072pt;}
.wsedc_c00000{word-spacing:0.363392pt;}
.ws1b25_c00000{word-spacing:0.364800pt;}
.wsbf3_c00000{word-spacing:0.368736pt;}
.ws14c1_c00000{word-spacing:0.368928pt;}
.ws116c_c00000{word-spacing:0.371200pt;}
.ws1623_c00000{word-spacing:0.374080pt;}
.wsead_c00000{word-spacing:0.374784pt;}
.ws1967_c00000{word-spacing:0.377600pt;}
.wsc78_c00000{word-spacing:0.379424pt;}
.ws1abb_c00000{word-spacing:0.380640pt;}
.wsdd0_c00000{word-spacing:0.384000pt;}
.ws12cb_c00000{word-spacing:0.384768pt;}
.ws14ea_c00000{word-spacing:0.390112pt;}
.ws1797_c00000{word-spacing:0.390400pt;}
.ws14c0_c00000{word-spacing:0.392352pt;}
.ws161f_c00000{word-spacing:0.393088pt;}
.ws19db_c00000{word-spacing:0.394816pt;}
.ws15c5_c00000{word-spacing:0.395456pt;}
.ws16b7_c00000{word-spacing:0.398208pt;}
.wsc0c_c00000{word-spacing:0.400800pt;}
.wsfea_c00000{word-spacing:0.406144pt;}
.wsa45_c00000{word-spacing:0.409600pt;}
.ws104c_c00000{word-spacing:0.411488pt;}
.wsc89_c00000{word-spacing:0.416000pt;}
.ws104d_c00000{word-spacing:0.416832pt;}
.ws1162_c00000{word-spacing:0.422176pt;}
.ws119d_c00000{word-spacing:0.422400pt;}
.ws15c6_c00000{word-spacing:0.427520pt;}
.ws213_c00000{word-spacing:0.428800pt;}
.ws168b_c00000{word-spacing:0.432864pt;}
.ws1b5d_c00000{word-spacing:0.435200pt;}
.wsdc9_c00000{word-spacing:0.438208pt;}
.ws2ce_c00000{word-spacing:0.441600pt;}
.ws8dd_c00000{word-spacing:0.443552pt;}
.ws5a0_c00000{word-spacing:0.448000pt;}
.ws8fc_c00000{word-spacing:0.448896pt;}
.ws8dc_c00000{word-spacing:0.454240pt;}
.ws14fc_c00000{word-spacing:0.454400pt;}
.wsfe9_c00000{word-spacing:0.459584pt;}
.ws71b_c00000{word-spacing:0.460800pt;}
.wsb88_c00000{word-spacing:0.464928pt;}
.ws895_c00000{word-spacing:0.467200pt;}
.ws1375_c00000{word-spacing:0.470272pt;}
.ws71c_c00000{word-spacing:0.473600pt;}
.ws6a4_c00000{word-spacing:0.475616pt;}
.ws3ba_c00000{word-spacing:0.480000pt;}
.ws3a4_c00000{word-spacing:0.486304pt;}
.ws9d1_c00000{word-spacing:0.486400pt;}
.ws10ec_c00000{word-spacing:0.491648pt;}
.ws219_c00000{word-spacing:0.492800pt;}
.ws6a5_c00000{word-spacing:0.496992pt;}
.ws286_c00000{word-spacing:0.499200pt;}
.ws675_c00000{word-spacing:0.502336pt;}
.ws6cf_c00000{word-spacing:0.505600pt;}
.wsb4b_c00000{word-spacing:0.507680pt;}
.ws34a_c00000{word-spacing:0.512000pt;}
.ws1019_c00000{word-spacing:0.513024pt;}
.wsd51_c00000{word-spacing:0.518368pt;}
.ws214_c00000{word-spacing:0.518400pt;}
.ws11b6_c00000{word-spacing:0.523712pt;}
.ws3b9_c00000{word-spacing:0.524800pt;}
.ws12ed_c00000{word-spacing:0.529056pt;}
.ws7a7_c00000{word-spacing:0.531200pt;}
.wsf1d_c00000{word-spacing:0.534400pt;}
.ws55a_c00000{word-spacing:0.537600pt;}
.ws15c7_c00000{word-spacing:0.539744pt;}
.ws37c_c00000{word-spacing:0.544000pt;}
.ws442_c00000{word-spacing:0.550400pt;}
.ws3a5_c00000{word-spacing:0.550432pt;}
.ws8fb_c00000{word-spacing:0.555776pt;}
.ws2fd_c00000{word-spacing:0.556800pt;}
.ws12ec_c00000{word-spacing:0.561120pt;}
.ws7d_c00000{word-spacing:0.563200pt;}
.ws2e0_c00000{word-spacing:0.569600pt;}
.ws1c9_c00000{word-spacing:0.576000pt;}
.ws1c8_c00000{word-spacing:0.582400pt;}
.ws10ed_c00000{word-spacing:0.587840pt;}
.ws285_c00000{word-spacing:0.588800pt;}
.wsdbb_c00000{word-spacing:0.593184pt;}
.ws432_c00000{word-spacing:0.595200pt;}
.ws1385_c00000{word-spacing:0.598528pt;}
.ws37d_c00000{word-spacing:0.601600pt;}
.wsc4c_c00000{word-spacing:0.603872pt;}
.ws1da_c00000{word-spacing:0.608000pt;}
.ws10e9_c00000{word-spacing:0.609216pt;}
.ws287_c00000{word-spacing:0.614400pt;}
.wsb4c_c00000{word-spacing:0.614560pt;}
.wsb85_c00000{word-spacing:0.619904pt;}
.ws431_c00000{word-spacing:0.620800pt;}
.ws13d9_c00000{word-spacing:0.625248pt;}
.ws1db_c00000{word-spacing:0.627200pt;}
.ws817_c00000{word-spacing:0.630592pt;}
.ws4b8_c00000{word-spacing:0.633600pt;}
.wsf85_c00000{word-spacing:0.635936pt;}
.ws16ae_c00000{word-spacing:0.638304pt;}
.ws7e_c00000{word-spacing:0.640000pt;}
.wsb4a_c00000{word-spacing:0.641280pt;}
.ws21a_c00000{word-spacing:0.646400pt;}
.ws17e4_c00000{word-spacing:0.646624pt;}
.ws172d_c00000{word-spacing:0.650016pt;}
.wsc77_c00000{word-spacing:0.651968pt;}
.ws2fe_c00000{word-spacing:0.652800pt;}
.ws107f_c00000{word-spacing:0.655872pt;}
.ws9e3_c00000{word-spacing:0.657312pt;}
.ws43a_c00000{word-spacing:0.659200pt;}
.ws107e_c00000{word-spacing:0.661728pt;}
.ws1a33_c00000{word-spacing:0.662656pt;}
.ws284_c00000{word-spacing:0.665600pt;}
.ws7ff_c00000{word-spacing:0.667584pt;}
.wse38_c00000{word-spacing:0.668000pt;}
.ws2cd_c00000{word-spacing:0.672000pt;}
.ws930_c00000{word-spacing:0.673344pt;}
.ws1944_c00000{word-spacing:0.673440pt;}
.ws2cf_c00000{word-spacing:0.678400pt;}
.ws14b2_c00000{word-spacing:0.678688pt;}
.ws16ab_c00000{word-spacing:0.679296pt;}
.ws11a0_c00000{word-spacing:0.684800pt;}
.ws1609_c00000{word-spacing:0.685152pt;}
.ws1355_c00000{word-spacing:0.689376pt;}
.ws15f2_c00000{word-spacing:0.691008pt;}
.ws1a68_c00000{word-spacing:0.694720pt;}
.ws16ac_c00000{word-spacing:0.696864pt;}
.ws9cc_c00000{word-spacing:0.697600pt;}
.ws5f2_c00000{word-spacing:0.700064pt;}
.wscce_c00000{word-spacing:0.700864pt;}
.ws186f_c00000{word-spacing:0.702720pt;}
.ws19cf_c00000{word-spacing:0.704000pt;}
.ws11d0_c00000{word-spacing:0.705408pt;}
.ws9f1_c00000{word-spacing:0.708576pt;}
.ws2ac_c00000{word-spacing:0.710400pt;}
.ws12b4_c00000{word-spacing:0.710752pt;}
.wsee0_c00000{word-spacing:0.713088pt;}
.ws160f_c00000{word-spacing:0.714432pt;}
.ws606_c00000{word-spacing:0.714816pt;}
.ws684_c00000{word-spacing:0.716096pt;}
.ws100c_c00000{word-spacing:0.716800pt;}
.ws13d7_c00000{word-spacing:0.721440pt;}
.ws37f_c00000{word-spacing:0.723200pt;}
.wsf84_c00000{word-spacing:0.726784pt;}
.ws135c_c00000{word-spacing:0.729600pt;}
.ws16a3_c00000{word-spacing:0.732000pt;}
.wsbd4_c00000{word-spacing:0.732128pt;}
.ws1432_c00000{word-spacing:0.736000pt;}
.ws1669_c00000{word-spacing:0.737472pt;}
.wsf52_c00000{word-spacing:0.742400pt;}
.wsd16_c00000{word-spacing:0.742816pt;}
.wsccf_c00000{word-spacing:0.745600pt;}
.ws812_c00000{word-spacing:0.748160pt;}
.ws11ef_c00000{word-spacing:0.748800pt;}
.ws11cf_c00000{word-spacing:0.753504pt;}
.ws6bd_c00000{word-spacing:0.755200pt;}
.wse9b_c00000{word-spacing:0.758848pt;}
.ws1d8_c00000{word-spacing:0.761600pt;}
.ws1018_c00000{word-spacing:0.764192pt;}
.ws36d_c00000{word-spacing:0.768000pt;}
.ws92f_c00000{word-spacing:0.769536pt;}
.ws9f3_c00000{word-spacing:0.774400pt;}
.ws5ef_c00000{word-spacing:0.774880pt;}
.ws1aac_c00000{word-spacing:0.780224pt;}
.ws2f3_c00000{word-spacing:0.780800pt;}
.wsd3b_c00000{word-spacing:0.785568pt;}
.ws36c_c00000{word-spacing:0.787200pt;}
.ws5f0_c00000{word-spacing:0.790912pt;}
.wsbf0_c00000{word-spacing:0.793600pt;}
.ws311_c00000{word-spacing:0.796256pt;}
.ws3f9_c00000{word-spacing:0.800000pt;}
.ws9a2_c00000{word-spacing:0.801600pt;}
.wsab2_c00000{word-spacing:0.806400pt;}
.wsb50_c00000{word-spacing:0.806944pt;}
.ws153b_c00000{word-spacing:0.812288pt;}
.ws183_c00000{word-spacing:0.812800pt;}
.ws5f1_c00000{word-spacing:0.817632pt;}
.wsb2d_c00000{word-spacing:0.819200pt;}
.wsa7f_c00000{word-spacing:0.822976pt;}
.ws394_c00000{word-spacing:0.825600pt;}
.ws6e3_c00000{word-spacing:0.828320pt;}
.ws4f9_c00000{word-spacing:0.832000pt;}
.ws19a1_c00000{word-spacing:0.833664pt;}
.ws9bc_c00000{word-spacing:0.838400pt;}
.ws1234_c00000{word-spacing:0.839008pt;}
.ws1174_c00000{word-spacing:0.844352pt;}
.ws386_c00000{word-spacing:0.844800pt;}
.ws18ac_c00000{word-spacing:0.849696pt;}
.ws7f_c00000{word-spacing:0.851200pt;}
.wsa80_c00000{word-spacing:0.855040pt;}
.ws474_c00000{word-spacing:0.857600pt;}
.ws1017_c00000{word-spacing:0.860384pt;}
.ws37e_c00000{word-spacing:0.864000pt;}
.wsd3c_c00000{word-spacing:0.865728pt;}
.ws2ad_c00000{word-spacing:0.870400pt;}
.wsd17_c00000{word-spacing:0.871072pt;}
.wsb86_c00000{word-spacing:0.876416pt;}
.ws385_c00000{word-spacing:0.876800pt;}
.ws11db_c00000{word-spacing:0.881760pt;}
.ws22d_c00000{word-spacing:0.883200pt;}
.ws1882_c00000{word-spacing:0.887104pt;}
.ws305_c00000{word-spacing:0.889600pt;}
.wsa7e_c00000{word-spacing:0.892448pt;}
.ws22b_c00000{word-spacing:0.896000pt;}
.ws146f_c00000{word-spacing:0.897792pt;}
.ws2f2_c00000{word-spacing:0.902400pt;}
.ws1581_c00000{word-spacing:0.903136pt;}
.ws584_c00000{word-spacing:0.908800pt;}
.ws387_c00000{word-spacing:0.915200pt;}
.ws1d9_c00000{word-spacing:0.921600pt;}
.ws13e3_c00000{word-spacing:0.924512pt;}
.ws1d7_c00000{word-spacing:0.928000pt;}
.ws7f1_c00000{word-spacing:0.929856pt;}
.wsff_c00000{word-spacing:0.934400pt;}
.wsbf4_c00000{word-spacing:0.935200pt;}
.wsa7d_c00000{word-spacing:0.940544pt;}
.ws80_c00000{word-spacing:0.940800pt;}
.wsd4a_c00000{word-spacing:0.945888pt;}
.ws488_c00000{word-spacing:0.947200pt;}
.wse7c_c00000{word-spacing:0.951232pt;}
.ws184_c00000{word-spacing:0.953600pt;}
.wsec1_c00000{word-spacing:0.956576pt;}
.ws22e_c00000{word-spacing:0.960000pt;}
.wsd71_c00000{word-spacing:0.961920pt;}
.ws100_c00000{word-spacing:0.966400pt;}
.ws3a7_c00000{word-spacing:0.967264pt;}
.ws14d3_c00000{word-spacing:0.972096pt;}
.wsdb9_c00000{word-spacing:0.972608pt;}
.ws2f1_c00000{word-spacing:0.972800pt;}
.wsb1d_c00000{word-spacing:0.977952pt;}
.ws396_c00000{word-spacing:0.979200pt;}
.ws1986_c00000{word-spacing:0.983296pt;}
.ws16a6_c00000{word-spacing:0.983808pt;}
.ws380_c00000{word-spacing:0.985600pt;}
.wsdb8_c00000{word-spacing:0.988640pt;}
.ws8ee_c00000{word-spacing:0.989664pt;}
.ws1198_c00000{word-spacing:0.992000pt;}
.ws1016_c00000{word-spacing:0.993984pt;}
.ws879_c00000{word-spacing:0.998400pt;}
.ws9fe_c00000{word-spacing:0.999328pt;}
.ws8ed_c00000{word-spacing:1.001376pt;}
.ws1766_c00000{word-spacing:1.004672pt;}
.ws304_c00000{word-spacing:1.004800pt;}
.ws16a5_c00000{word-spacing:1.007232pt;}
.ws158a_c00000{word-spacing:1.010016pt;}
.ws1a5_c00000{word-spacing:1.011200pt;}
.ws9f0_c00000{word-spacing:1.013088pt;}
.ws14a0_c00000{word-spacing:1.015360pt;}
.wsd5d_c00000{word-spacing:1.020704pt;}
.ws306_c00000{word-spacing:1.024000pt;}
.ws1aa_c00000{word-spacing:1.026048pt;}
.ws7af_c00000{word-spacing:1.030400pt;}
.ws1823_c00000{word-spacing:1.031392pt;}
.ws919_c00000{word-spacing:1.033088pt;}
.wsd61_c00000{word-spacing:1.034816pt;}
.ws14f4_c00000{word-spacing:1.036512pt;}
.ws5ed_c00000{word-spacing:1.036736pt;}
.ws1a71_c00000{word-spacing:1.036800pt;}
.ws14a1_c00000{word-spacing:1.042080pt;}
.ws4ea_c00000{word-spacing:1.043200pt;}
.ws9fc_c00000{word-spacing:1.047424pt;}
.wsc82_c00000{word-spacing:1.049600pt;}
.wscd6_c00000{word-spacing:1.052768pt;}
.ws1a9_c00000{word-spacing:1.058112pt;}
.wsa17_c00000{word-spacing:1.062400pt;}
.wsfa6_c00000{word-spacing:1.063456pt;}
.ws5ee_c00000{word-spacing:1.068800pt;}
.wsb35_c00000{word-spacing:1.074144pt;}
.wscd0_c00000{word-spacing:1.075200pt;}
.ws16b4_c00000{word-spacing:1.079488pt;}
.ws11a4_c00000{word-spacing:1.081600pt;}
.wsdee_c00000{word-spacing:1.084832pt;}
.ws14ff_c00000{word-spacing:1.088000pt;}
.wsa7c_c00000{word-spacing:1.090176pt;}
.ws75e_c00000{word-spacing:1.094400pt;}
.ws9d9_c00000{word-spacing:1.095520pt;}
.ws63a_c00000{word-spacing:1.100800pt;}
.wse34_c00000{word-spacing:1.100864pt;}
.ws1651_c00000{word-spacing:1.106208pt;}
.ws9ae_c00000{word-spacing:1.107200pt;}
.ws9da_c00000{word-spacing:1.111552pt;}
.ws13c2_c00000{word-spacing:1.113600pt;}
.wsdb7_c00000{word-spacing:1.116896pt;}
.wsc9a_c00000{word-spacing:1.120000pt;}
.wsb1e_c00000{word-spacing:1.122240pt;}
.ws76b_c00000{word-spacing:1.126400pt;}
.wsd36_c00000{word-spacing:1.127584pt;}
.ws65e_c00000{word-spacing:1.132800pt;}
.ws1824_c00000{word-spacing:1.132928pt;}
.wscd7_c00000{word-spacing:1.138272pt;}
.ws409_c00000{word-spacing:1.139200pt;}
.wsecf_c00000{word-spacing:1.143616pt;}
.ws523_c00000{word-spacing:1.145600pt;}
.ws6e2_c00000{word-spacing:1.148960pt;}
.ws433_c00000{word-spacing:1.152000pt;}
.ws1386_c00000{word-spacing:1.154304pt;}
.ws8d7_c00000{word-spacing:1.158400pt;}
.ws1650_c00000{word-spacing:1.159648pt;}
.ws87c_c00000{word-spacing:1.164800pt;}
.ws7f0_c00000{word-spacing:1.164992pt;}
.wsecd_c00000{word-spacing:1.170336pt;}
.ws4b3_c00000{word-spacing:1.171200pt;}
.ws9fd_c00000{word-spacing:1.175680pt;}
.wsb7b_c00000{word-spacing:1.177600pt;}
.ws4e8_c00000{word-spacing:1.184000pt;}
.wsdb6_c00000{word-spacing:1.186368pt;}
.ws522_c00000{word-spacing:1.190400pt;}
.ws1881_c00000{word-spacing:1.191712pt;}
.wse3_c00000{word-spacing:1.196800pt;}
.wsdba_c00000{word-spacing:1.197056pt;}
.ws8_c00000{word-spacing:1.200960pt;}
.ws1241_c00000{word-spacing:1.202400pt;}
.ws3ec_c00000{word-spacing:1.203200pt;}
.ws310_c00000{word-spacing:1.207744pt;}
.ws1f2_c00000{word-spacing:1.209600pt;}
.ws395_c00000{word-spacing:1.216000pt;}
.ws4b1_c00000{word-spacing:1.222400pt;}
.ws152c_c00000{word-spacing:1.223776pt;}
.ws1a6_c00000{word-spacing:1.228800pt;}
.wsd37_c00000{word-spacing:1.234464pt;}
.ws3ef_c00000{word-spacing:1.235200pt;}
.ws6e4_c00000{word-spacing:1.239808pt;}
.ws4b2_c00000{word-spacing:1.241600pt;}
.wsed4_c00000{word-spacing:1.245152pt;}
.ws180_c00000{word-spacing:1.248000pt;}
.wsca7_c00000{word-spacing:1.250496pt;}
.ws3ed_c00000{word-spacing:1.254400pt;}
.ws9db_c00000{word-spacing:1.255840pt;}
.ws434_c00000{word-spacing:1.260800pt;}
.ws1285_c00000{word-spacing:1.261184pt;}
.ws7e4_c00000{word-spacing:1.266528pt;}
.ws1f1_c00000{word-spacing:1.267200pt;}
.wsc2e_c00000{word-spacing:1.271872pt;}
.ws666_c00000{word-spacing:1.273600pt;}
.ws138c_c00000{word-spacing:1.277216pt;}
.ws181_c00000{word-spacing:1.280000pt;}
.ws778_c00000{word-spacing:1.282560pt;}
.ws639_c00000{word-spacing:1.286400pt;}
.wsaa2_c00000{word-spacing:1.287904pt;}
.ws1732_c00000{word-spacing:1.288320pt;}
.ws4fb_c00000{word-spacing:1.292800pt;}
.wsaa0_c00000{word-spacing:1.293248pt;}
.ws169f_c00000{word-spacing:1.294176pt;}
.wsb81_c00000{word-spacing:1.298592pt;}
.ws90c_c00000{word-spacing:1.299200pt;}
.ws7e5_c00000{word-spacing:1.303936pt;}
.ws87d_c00000{word-spacing:1.305600pt;}
.wsdc1_c00000{word-spacing:1.312000pt;}
.wsf17_c00000{word-spacing:1.314624pt;}
.ws14cd_c00000{word-spacing:1.317600pt;}
.wsf1f_c00000{word-spacing:1.318400pt;}
.ws8ec_c00000{word-spacing:1.324800pt;}
.ws14ce_c00000{word-spacing:1.329312pt;}
.ws76a_c00000{word-spacing:1.331200pt;}
.ws14cc_c00000{word-spacing:1.335168pt;}
.wsded_c00000{word-spacing:1.336000pt;}
.ws18bc_c00000{word-spacing:1.337600pt;}
.ws1912_c00000{word-spacing:1.341024pt;}
.ws1497_c00000{word-spacing:1.341344pt;}
.ws182_c00000{word-spacing:1.344000pt;}
.ws14f8_c00000{word-spacing:1.346688pt;}
.ws1b40_c00000{word-spacing:1.346880pt;}
.ws223_c00000{word-spacing:1.350400pt;}
.ws1227_c00000{word-spacing:1.352032pt;}
.ws19f2_c00000{word-spacing:1.352736pt;}
.ws12e3_c00000{word-spacing:1.353088pt;}
.wsdbd_c00000{word-spacing:1.354816pt;}
.ws1078_c00000{word-spacing:1.356800pt;}
.wsaa1_c00000{word-spacing:1.357376pt;}
.ws14f3_c00000{word-spacing:1.358592pt;}
.wsfd2_c00000{word-spacing:1.362720pt;}
.ws7e6_c00000{word-spacing:1.368064pt;}
.ws1627_c00000{word-spacing:1.369600pt;}
.wsd6f_c00000{word-spacing:1.373408pt;}
.wsaf0_c00000{word-spacing:1.376000pt;}
.ws14f7_c00000{word-spacing:1.378752pt;}
.wsd70_c00000{word-spacing:1.384096pt;}
.ws717_c00000{word-spacing:1.388800pt;}
.ws14f9_c00000{word-spacing:1.389440pt;}
.ws92e_c00000{word-spacing:1.394784pt;}
.ws70d_c00000{word-spacing:1.395200pt;}
.wsd06_c00000{word-spacing:1.400128pt;}
.ws884_c00000{word-spacing:1.401600pt;}
.wsfd3_c00000{word-spacing:1.405472pt;}
.ws4e9_c00000{word-spacing:1.408000pt;}
.ws1994_c00000{word-spacing:1.410816pt;}
.ws3dc_c00000{word-spacing:1.414400pt;}
.ws167e_c00000{word-spacing:1.416160pt;}
.ws84c_c00000{word-spacing:1.420800pt;}
.ws166d_c00000{word-spacing:1.421504pt;}
.ws1463_c00000{word-spacing:1.426848pt;}
.ws883_c00000{word-spacing:1.427200pt;}
.ws1422_c00000{word-spacing:1.432192pt;}
.wsd20_c00000{word-spacing:1.433600pt;}
.ws605_c00000{word-spacing:1.437536pt;}
.wsd7a_c00000{word-spacing:1.440000pt;}
.ws1117_c00000{word-spacing:1.442880pt;}
.ws58f_c00000{word-spacing:1.446400pt;}
.ws166e_c00000{word-spacing:1.448224pt;}
.ws87b_c00000{word-spacing:1.452800pt;}
.ws159e_c00000{word-spacing:1.453568pt;}
.ws1118_c00000{word-spacing:1.458912pt;}
.ws84d_c00000{word-spacing:1.459200pt;}
.wsf4d_c00000{word-spacing:1.464256pt;}
.ws3dd_c00000{word-spacing:1.465600pt;}
.wse23_c00000{word-spacing:1.469600pt;}
.wsa13_c00000{word-spacing:1.472000pt;}
.wsf7e_c00000{word-spacing:1.474944pt;}
.ws173_c00000{word-spacing:1.478400pt;}
.ws613_c00000{word-spacing:1.484800pt;}
.wsc61_c00000{word-spacing:1.485632pt;}
.wsd05_c00000{word-spacing:1.490976pt;}
.ws714_c00000{word-spacing:1.491200pt;}
.ws88c_c00000{word-spacing:1.497600pt;}
.wsffa_c00000{word-spacing:1.501664pt;}
.ws66a_c00000{word-spacing:1.504000pt;}
.ws1152_c00000{word-spacing:1.507008pt;}
.ws616_c00000{word-spacing:1.510400pt;}
.wsd04_c00000{word-spacing:1.512352pt;}
.ws4c8_c00000{word-spacing:1.516800pt;}
.ws1427_c00000{word-spacing:1.517696pt;}
.ws1629_c00000{word-spacing:1.523040pt;}
.ws172_c00000{word-spacing:1.523200pt;}
.wsaa_c00000{word-spacing:1.529600pt;}
.ws1778_c00000{word-spacing:1.533728pt;}
.ws635_c00000{word-spacing:1.536000pt;}
.ws1811_c00000{word-spacing:1.539072pt;}
.ws87a_c00000{word-spacing:1.542400pt;}
.wse24_c00000{word-spacing:1.544416pt;}
.ws475_c00000{word-spacing:1.548800pt;}
.ws615_c00000{word-spacing:1.555200pt;}
.ws33f_c00000{word-spacing:1.561600pt;}
.ws15ae_c00000{word-spacing:1.565792pt;}
.wsa9_c00000{word-spacing:1.568000pt;}
.ws1376_c00000{word-spacing:1.571136pt;}
.ws340_c00000{word-spacing:1.574400pt;}
.ws839_c00000{word-spacing:1.576480pt;}
.ws224_c00000{word-spacing:1.580800pt;}
.wsebb_c00000{word-spacing:1.581824pt;}
.ws14d9_c00000{word-spacing:1.586976pt;}
.ws1677_c00000{word-spacing:1.587168pt;}
.ws4c7_c00000{word-spacing:1.587200pt;}
.ws341_c00000{word-spacing:1.593600pt;}
.ws1038_c00000{word-spacing:1.597856pt;}
.ws4f_c00000{word-spacing:1.600000pt;}
.ws9df_c00000{word-spacing:1.603200pt;}
.ws57f_c00000{word-spacing:1.606400pt;}
.ws9c6_c00000{word-spacing:1.608544pt;}
.ws18d3_c00000{word-spacing:1.610400pt;}
.ws8b6_c00000{word-spacing:1.612800pt;}
.wsb6e_c00000{word-spacing:1.613888pt;}
.ws19ed_c00000{word-spacing:1.616256pt;}
.ws690_c00000{word-spacing:1.619200pt;}
.wsf5d_c00000{word-spacing:1.619232pt;}
.ws17e0_c00000{word-spacing:1.622112pt;}
.ws19de_c00000{word-spacing:1.624576pt;}
.wsa12_c00000{word-spacing:1.625600pt;}
.wsb5a_c00000{word-spacing:1.632000pt;}
.ws1640_c00000{word-spacing:1.633824pt;}
.ws15b0_c00000{word-spacing:1.635264pt;}
.ws9af_c00000{word-spacing:1.638400pt;}
.ws14d8_c00000{word-spacing:1.639680pt;}
.ws1153_c00000{word-spacing:1.640608pt;}
.wse18_c00000{word-spacing:1.644800pt;}
.ws16f6_c00000{word-spacing:1.645536pt;}
.ws1895_c00000{word-spacing:1.645952pt;}
.wscbf_c00000{word-spacing:1.651200pt;}
.ws18bd_c00000{word-spacing:1.651296pt;}
.ws163f_c00000{word-spacing:1.651392pt;}
.ws1138_c00000{word-spacing:1.656640pt;}
.ws154f_c00000{word-spacing:1.657248pt;}
.ws1582_c00000{word-spacing:1.661984pt;}
.ws14d6_c00000{word-spacing:1.663104pt;}
.ws718_c00000{word-spacing:1.664000pt;}
.ws676_c00000{word-spacing:1.667328pt;}
.ws164f_c00000{word-spacing:1.670400pt;}
.ws15ad_c00000{word-spacing:1.672672pt;}
.ws11d8_c00000{word-spacing:1.676800pt;}
.ws92d_c00000{word-spacing:1.678016pt;}
.ws19ee_c00000{word-spacing:1.680672pt;}
.wse17_c00000{word-spacing:1.683200pt;}
.ws677_c00000{word-spacing:1.683360pt;}
.ws509_c00000{word-spacing:1.688704pt;}
.wsd65_c00000{word-spacing:1.689600pt;}
.ws7b7_c00000{word-spacing:1.694048pt;}
.ws17a7_c00000{word-spacing:1.696000pt;}
.ws1910_c00000{word-spacing:1.698240pt;}
.wsb56_c00000{word-spacing:1.699392pt;}
.ws1368_c00000{word-spacing:1.702400pt;}
.wsc2d_c00000{word-spacing:1.704736pt;}
.ws712_c00000{word-spacing:1.708800pt;}
.ws9e0_c00000{word-spacing:1.710080pt;}
.ws1746_c00000{word-spacing:1.715200pt;}
.ws92c_c00000{word-spacing:1.715424pt;}
.ws16dd_c00000{word-spacing:1.720768pt;}
.ws1549_c00000{word-spacing:1.721600pt;}
.ws17da_c00000{word-spacing:1.726112pt;}
.ws93d_c00000{word-spacing:1.728000pt;}
.ws1777_c00000{word-spacing:1.731456pt;}
.wsfcd_c00000{word-spacing:1.734400pt;}
.ws10f3_c00000{word-spacing:1.736800pt;}
.ws336_c00000{word-spacing:1.740800pt;}
.ws2da_c00000{word-spacing:1.742144pt;}
.ws226_c00000{word-spacing:1.747200pt;}
.ws1a7c_c00000{word-spacing:1.747488pt;}
.ws15b1_c00000{word-spacing:1.752832pt;}
.wsc88_c00000{word-spacing:1.753600pt;}
.ws1283_c00000{word-spacing:1.758176pt;}
.ws1183_c00000{word-spacing:1.760000pt;}
.ws18a4_c00000{word-spacing:1.763520pt;}
.ws17a0_c00000{word-spacing:1.766400pt;}
.ws1377_c00000{word-spacing:1.768864pt;}
.ws43e_c00000{word-spacing:1.772800pt;}
.ws1284_c00000{word-spacing:1.774208pt;}
.ws8e2_c00000{word-spacing:1.779200pt;}
.wsf4e_c00000{word-spacing:1.779552pt;}
.ws1154_c00000{word-spacing:1.784896pt;}
.ws2ae_c00000{word-spacing:1.785600pt;}
.ws6ad_c00000{word-spacing:1.790240pt;}
.ws645_c00000{word-spacing:1.792000pt;}
.ws18be_c00000{word-spacing:1.795584pt;}
.ws4e4_c00000{word-spacing:1.798400pt;}
.ws15af_c00000{word-spacing:1.800928pt;}
.wsaf6_c00000{word-spacing:1.804800pt;}
.wsdf7_c00000{word-spacing:1.806272pt;}
.ws337_c00000{word-spacing:1.811200pt;}
.ws50b_c00000{word-spacing:1.811616pt;}
.ws50a_c00000{word-spacing:1.816960pt;}
.ws2cc_c00000{word-spacing:1.817600pt;}
.ws7db_c00000{word-spacing:1.822304pt;}
.ws894_c00000{word-spacing:1.824000pt;}
.ws527_c00000{word-spacing:1.830400pt;}
.ws6ae_c00000{word-spacing:1.832992pt;}
.wsb6_c00000{word-spacing:1.836800pt;}
.wsed3_c00000{word-spacing:1.838336pt;}
.ws51d_c00000{word-spacing:1.843200pt;}
.wsf5e_c00000{word-spacing:1.843680pt;}
.ws564_c00000{word-spacing:1.849600pt;}
.wsc4f_c00000{word-spacing:1.854368pt;}
.ws833_c00000{word-spacing:1.856000pt;}
.ws7dc_c00000{word-spacing:1.859712pt;}
.ws7cf_c00000{word-spacing:1.862400pt;}
.ws12d0_c00000{word-spacing:1.865056pt;}
.ws6f7_c00000{word-spacing:1.868800pt;}
.ws1742_c00000{word-spacing:1.870400pt;}
.ws165_c00000{word-spacing:1.875200pt;}
.ws9dc_c00000{word-spacing:1.881088pt;}
.ws3e2_c00000{word-spacing:1.881600pt;}
.ws2af_c00000{word-spacing:1.888000pt;}
.wsb7_c00000{word-spacing:1.894400pt;}
.ws7da_c00000{word-spacing:1.897120pt;}
.ws1a3_c00000{word-spacing:1.900800pt;}
.wscdb_c00000{word-spacing:1.902464pt;}
.ws2cb_c00000{word-spacing:1.907200pt;}
.wsfd4_c00000{word-spacing:1.907808pt;}
.wsb52_c00000{word-spacing:1.913152pt;}
.ws4e3_c00000{word-spacing:1.913600pt;}
.ws1000_c00000{word-spacing:1.918496pt;}
.ws51c_c00000{word-spacing:1.920000pt;}
.wsb51_c00000{word-spacing:1.923840pt;}
.ws99e_c00000{word-spacing:1.926400pt;}
.ws2a5_c00000{word-spacing:1.929184pt;}
.ws14d4_c00000{word-spacing:1.932480pt;}
.ws1a4_c00000{word-spacing:1.932800pt;}
.wscfb_c00000{word-spacing:1.934528pt;}
.ws178a_c00000{word-spacing:1.938336pt;}
.ws8e5_c00000{word-spacing:1.939200pt;}
.ws151c_c00000{word-spacing:1.939872pt;}
.ws1686_c00000{word-spacing:1.945216pt;}
.ws721_c00000{word-spacing:1.945600pt;}
.ws4c3_c00000{word-spacing:1.952000pt;}
.ws888_c00000{word-spacing:1.955904pt;}
.ws66d_c00000{word-spacing:1.958400pt;}
.ws146e_c00000{word-spacing:1.961248pt;}
.ws8b7_c00000{word-spacing:1.964800pt;}
.wsc87_c00000{word-spacing:1.971200pt;}
.ws1143_c00000{word-spacing:1.971936pt;}
.ws18c8_c00000{word-spacing:1.973472pt;}
.ws11f_c00000{word-spacing:1.977280pt;}
.wsef7_c00000{word-spacing:1.977600pt;}
.ws16a1_c00000{word-spacing:1.979328pt;}
.ws18a3_c00000{word-spacing:1.982624pt;}
.ws1a20_c00000{word-spacing:1.984000pt;}
.ws18c9_c00000{word-spacing:1.985184pt;}
.wsa4e_c00000{word-spacing:1.987968pt;}
.wsaf2_c00000{word-spacing:1.990400pt;}
.ws172c_c00000{word-spacing:1.993088pt;}
.ws5fe_c00000{word-spacing:1.993312pt;}
.ws630_c00000{word-spacing:1.994816pt;}
.ws18e1_c00000{word-spacing:1.996800pt;}
.ws19d3_c00000{word-spacing:1.996896pt;}
.ws1067_c00000{word-spacing:1.998656pt;}
.ws5df_c00000{word-spacing:2.003200pt;}
.wsd87_c00000{word-spacing:2.004000pt;}
.ws7b6_c00000{word-spacing:2.009344pt;}
.wsd88_c00000{word-spacing:2.014688pt;}
.wse6c_c00000{word-spacing:2.016000pt;}
.ws1242_c00000{word-spacing:2.020032pt;}
.ws10a0_c00000{word-spacing:2.022400pt;}
.wsb99_c00000{word-spacing:2.025376pt;}
.ws90b_c00000{word-spacing:2.028800pt;}
.ws1073_c00000{word-spacing:2.030720pt;}
.wsb12_c00000{word-spacing:2.036064pt;}
.wsc4d_c00000{word-spacing:2.041408pt;}
.ws122b_c00000{word-spacing:2.041600pt;}
.ws132c_c00000{word-spacing:2.046752pt;}
.ws4be_c00000{word-spacing:2.048000pt;}
.ws1166_c00000{word-spacing:2.052096pt;}
.wsc1f_c00000{word-spacing:2.054400pt;}
.wsc4e_c00000{word-spacing:2.057440pt;}
.wse0e_c00000{word-spacing:2.060800pt;}
.ws7be_c00000{word-spacing:2.062784pt;}
.wsd9f_c00000{word-spacing:2.067200pt;}
.ws67f_c00000{word-spacing:2.068128pt;}
.ws18fb_c00000{word-spacing:2.073472pt;}
.ws945_c00000{word-spacing:2.073600pt;}
.ws1272_c00000{word-spacing:2.078816pt;}
.wsec8_c00000{word-spacing:2.080000pt;}
.wsa4d_c00000{word-spacing:2.084160pt;}
.ws575_c00000{word-spacing:2.086400pt;}
.ws1005_c00000{word-spacing:2.089504pt;}
.wsda2_c00000{word-spacing:2.092800pt;}
.ws7b5_c00000{word-spacing:2.094848pt;}
.ws6ed_c00000{word-spacing:2.099200pt;}
.ws1229_c00000{word-spacing:2.100192pt;}
.wsdf6_c00000{word-spacing:2.105536pt;}
.ws513_c00000{word-spacing:2.105600pt;}
.ws887_c00000{word-spacing:2.110880pt;}
.ws9ce_c00000{word-spacing:2.112000pt;}
.ws2d9_c00000{word-spacing:2.116224pt;}
.ws969_c00000{word-spacing:2.118400pt;}
.ws9dd_c00000{word-spacing:2.121568pt;}
.ws2e5_c00000{word-spacing:2.124800pt;}
.ws126c_c00000{word-spacing:2.126912pt;}
.wsa3_c00000{word-spacing:2.131200pt;}
.ws6b6_c00000{word-spacing:2.132256pt;}
.ws1d0_c00000{word-spacing:2.137600pt;}
.ws12a5_c00000{word-spacing:2.142944pt;}
.ws1ca_c00000{word-spacing:2.144000pt;}
.ws1155_c00000{word-spacing:2.148288pt;}
.ws2e9_c00000{word-spacing:2.150400pt;}
.wsfd5_c00000{word-spacing:2.153632pt;}
.wsa2_c00000{word-spacing:2.156800pt;}
.ws1570_c00000{word-spacing:2.158976pt;}
.ws578_c00000{word-spacing:2.163200pt;}
.wseca_c00000{word-spacing:2.164320pt;}
.ws6ba_c00000{word-spacing:2.169600pt;}
.ws1adf_c00000{word-spacing:2.169664pt;}
.ws2e4_c00000{word-spacing:2.176000pt;}
.ws162a_c00000{word-spacing:2.180352pt;}
.ws94_c00000{word-spacing:2.182400pt;}
.ws90a_c00000{word-spacing:2.188800pt;}
.ws453_c00000{word-spacing:2.195200pt;}
.wsb16_c00000{word-spacing:2.196384pt;}
.ws8da_c00000{word-spacing:2.201600pt;}
.ws1074_c00000{word-spacing:2.201728pt;}
.ws92_c00000{word-spacing:2.208000pt;}
.ws17d8_c00000{word-spacing:2.212416pt;}
.ws443_c00000{word-spacing:2.214400pt;}
.ws77a_c00000{word-spacing:2.217760pt;}
.ws1d1_c00000{word-spacing:2.220800pt;}
.wsbd2_c00000{word-spacing:2.223104pt;}
.ws536_c00000{word-spacing:2.227200pt;}
.ws1499_c00000{word-spacing:2.228448pt;}
.ws4b4_c00000{word-spacing:2.233600pt;}
.ws3a0_c00000{word-spacing:2.233792pt;}
.ws126b_c00000{word-spacing:2.239136pt;}
.ws93_c00000{word-spacing:2.240000pt;}
.ws9ff_c00000{word-spacing:2.244480pt;}
.ws138_c00000{word-spacing:2.246400pt;}
.ws11e_c00000{word-spacing:2.249824pt;}
.ws6ee_c00000{word-spacing:2.252800pt;}
.ws8bd_c00000{word-spacing:2.254560pt;}
.ws159d_c00000{word-spacing:2.255168pt;}
.ws1182_c00000{word-spacing:2.259200pt;}
.ws17bc_c00000{word-spacing:2.260416pt;}
.ws18db_c00000{word-spacing:2.260512pt;}
.ws139_c00000{word-spacing:2.265600pt;}
.ws1511_c00000{word-spacing:2.265856pt;}
.ws7bc_c00000{word-spacing:2.271200pt;}
.ws13a_c00000{word-spacing:2.272000pt;}
.ws159b_c00000{word-spacing:2.276544pt;}
.ws1834_c00000{word-spacing:2.277984pt;}
.ws514_c00000{word-spacing:2.278400pt;}
.ws137c_c00000{word-spacing:2.281888pt;}
.ws2e6_c00000{word-spacing:2.284800pt;}
.ws779_c00000{word-spacing:2.287232pt;}
.ws1550_c00000{word-spacing:2.289696pt;}
.ws94f_c00000{word-spacing:2.291200pt;}
.ws8c0_c00000{word-spacing:2.292576pt;}
.ws1626_c00000{word-spacing:2.297600pt;}
.wse26_c00000{word-spacing:2.297920pt;}
.ws11d_c00000{word-spacing:2.303264pt;}
.wse47_c00000{word-spacing:2.304000pt;}
.wsb9a_c00000{word-spacing:2.308608pt;}
.ws124e_c00000{word-spacing:2.310400pt;}
.ws166f_c00000{word-spacing:2.313088pt;}
.ws8ea_c00000{word-spacing:2.316800pt;}
.ws14f5_c00000{word-spacing:2.318976pt;}
.wsbd5_c00000{word-spacing:2.319296pt;}
.wse33_c00000{word-spacing:2.323200pt;}
.wse25_c00000{word-spacing:2.324640pt;}
.ws117e_c00000{word-spacing:2.329600pt;}
.wsb10_c00000{word-spacing:2.329984pt;}
.ws1144_c00000{word-spacing:2.335328pt;}
.ws1645_c00000{word-spacing:2.336000pt;}
.wsb11_c00000{word-spacing:2.340672pt;}
.ws11c0_c00000{word-spacing:2.342400pt;}
.ws1303_c00000{word-spacing:2.346016pt;}
.ws1180_c00000{word-spacing:2.348800pt;}
.ws5fc_c00000{word-spacing:2.351360pt;}
.ws1a77_c00000{word-spacing:2.355200pt;}
.ws5fd_c00000{word-spacing:2.356704pt;}
.ws48f_c00000{word-spacing:2.361600pt;}
.ws151e_c00000{word-spacing:2.362048pt;}
.wsb15_c00000{word-spacing:2.367392pt;}
.wsd79_c00000{word-spacing:2.368000pt;}
.wsaae_c00000{word-spacing:2.374400pt;}
.ws1996_c00000{word-spacing:2.378080pt;}
.ws1ac0_c00000{word-spacing:2.380800pt;}
.ws1a6f_c00000{word-spacing:2.383424pt;}
.wsdb1_c00000{word-spacing:2.387200pt;}
.ws15d4_c00000{word-spacing:2.388768pt;}
.wsc26_c00000{word-spacing:2.393600pt;}
.ws9de_c00000{word-spacing:2.394112pt;}
.ws886_c00000{word-spacing:2.399456pt;}
.ws4a4_c00000{word-spacing:2.400000pt;}
.wsd81_c00000{word-spacing:2.404800pt;}
.ws3ac_c00000{word-spacing:2.406400pt;}
.wsb55_c00000{word-spacing:2.410144pt;}
.ws9d8_c00000{word-spacing:2.412800pt;}
.ws6b5_c00000{word-spacing:2.415488pt;}
.ws663_c00000{word-spacing:2.419200pt;}
.ws137d_c00000{word-spacing:2.420832pt;}
.ws478_c00000{word-spacing:2.425600pt;}
.ws7bd_c00000{word-spacing:2.426176pt;}
.ws155e_c00000{word-spacing:2.431520pt;}
.wsaa9_c00000{word-spacing:2.432000pt;}
.ws507_c00000{word-spacing:2.436864pt;}
.ws692_c00000{word-spacing:2.438400pt;}
.ws5ff_c00000{word-spacing:2.442208pt;}
.wsaf5_c00000{word-spacing:2.444800pt;}
.wscf9_c00000{word-spacing:2.447552pt;}
.wsacb_c00000{word-spacing:2.451200pt;}
.wscfc_c00000{word-spacing:2.452896pt;}
.wsaaa_c00000{word-spacing:2.457600pt;}
.wsd75_c00000{word-spacing:2.463584pt;}
.ws2df_c00000{word-spacing:2.464000pt;}
.ws18da_c00000{word-spacing:2.468928pt;}
.ws130_c00000{word-spacing:2.470400pt;}
.ws1602_c00000{word-spacing:2.474272pt;}
.ws691_c00000{word-spacing:2.476800pt;}
.wsbd7_c00000{word-spacing:2.479616pt;}
.ws23a_c00000{word-spacing:2.483200pt;}
.ws159c_c00000{word-spacing:2.484960pt;}
.wsb39_c00000{word-spacing:2.489600pt;}
.ws19b1_c00000{word-spacing:2.490304pt;}
.ws91_c00000{word-spacing:2.496000pt;}
.ws4c9_c00000{word-spacing:2.502400pt;}
.ws16e2_c00000{word-spacing:2.506336pt;}
.ws5b9_c00000{word-spacing:2.508800pt;}
.ws7b1_c00000{word-spacing:2.515200pt;}
.wsa52_c00000{word-spacing:2.517024pt;}
.ws2de_c00000{word-spacing:2.521600pt;}
.ws859_c00000{word-spacing:2.522368pt;}
.ws4d7_c00000{word-spacing:2.528000pt;}
.ws18e4_c00000{word-spacing:2.533056pt;}
.ws726_c00000{word-spacing:2.534400pt;}
.ws7e0_c00000{word-spacing:2.538400pt;}
.ws3b1_c00000{word-spacing:2.540800pt;}
.ws12cc_c00000{word-spacing:2.543744pt;}
.ws23b_c00000{word-spacing:2.547200pt;}
.ws1b54_c00000{word-spacing:2.549088pt;}
.ws48e_c00000{word-spacing:2.553600pt;}
.ws358_c00000{word-spacing:2.554432pt;}
.ws1039_c00000{word-spacing:2.559776pt;}
.ws8e9_c00000{word-spacing:2.560000pt;}
.ws129e_c00000{word-spacing:2.565120pt;}
.ws4bf_c00000{word-spacing:2.566400pt;}
.ws794_c00000{word-spacing:2.570464pt;}
.ws90_c00000{word-spacing:2.572800pt;}
.ws14a6_c00000{word-spacing:2.575808pt;}
.ws1a65_c00000{word-spacing:2.576640pt;}
.wsdac_c00000{word-spacing:2.579200pt;}
.ws1072_c00000{word-spacing:2.581152pt;}
.ws18d4_c00000{word-spacing:2.582496pt;}
.ws3ad_c00000{word-spacing:2.585600pt;}
.ws152d_c00000{word-spacing:2.586496pt;}
.wsa5d_c00000{word-spacing:2.588352pt;}
.ws1036_c00000{word-spacing:2.591840pt;}
.ws147f_c00000{word-spacing:2.592000pt;}
.ws17c9_c00000{word-spacing:2.594208pt;}
.wse98_c00000{word-spacing:2.597184pt;}
.ws825_c00000{word-spacing:2.598400pt;}
.ws14df_c00000{word-spacing:2.600064pt;}
.wsbd6_c00000{word-spacing:2.602528pt;}
.ws7b0_c00000{word-spacing:2.604800pt;}
.ws18d5_c00000{word-spacing:2.605920pt;}
.wsaad_c00000{word-spacing:2.611200pt;}
.ws1b03_c00000{word-spacing:2.611776pt;}
.wsf28_c00000{word-spacing:2.613216pt;}
.wsc01_c00000{word-spacing:2.617600pt;}
.ws98d_c00000{word-spacing:2.617632pt;}
.ws17d0_c00000{word-spacing:2.618560pt;}
.ws1586_c00000{word-spacing:2.623488pt;}
.wsf29_c00000{word-spacing:2.623904pt;}
.ws1450_c00000{word-spacing:2.624000pt;}
.wsfdc_c00000{word-spacing:2.629248pt;}
.ws1b02_c00000{word-spacing:2.629344pt;}
.ws1712_c00000{word-spacing:2.630400pt;}
.ws1156_c00000{word-spacing:2.633088pt;}
.ws11da_c00000{word-spacing:2.634592pt;}
.ws82c_c00000{word-spacing:2.636800pt;}
.ws9b6_c00000{word-spacing:2.638720pt;}
.ws1920_c00000{word-spacing:2.639936pt;}
.ws1585_c00000{word-spacing:2.641056pt;}
.ws1841_c00000{word-spacing:2.643200pt;}
.ws1b3_c00000{word-spacing:2.645280pt;}
.ws16b0_c00000{word-spacing:2.646912pt;}
.wsd9d_c00000{word-spacing:2.650624pt;}
.ws1b59_c00000{word-spacing:2.652768pt;}
.ws1b2_c00000{word-spacing:2.655968pt;}
.ws1b58_c00000{word-spacing:2.658624pt;}
.ws793_c00000{word-spacing:2.661312pt;}
.ws542_c00000{word-spacing:2.662400pt;}
.wsf2a_c00000{word-spacing:2.666656pt;}
.ws1050_c00000{word-spacing:2.668800pt;}
.wsb14_c00000{word-spacing:2.672000pt;}
.wsa74_c00000{word-spacing:2.675200pt;}
.ws13ef_c00000{word-spacing:2.677344pt;}
.ws169d_c00000{word-spacing:2.681600pt;}
.ws1341_c00000{word-spacing:2.682688pt;}
.ws1921_c00000{word-spacing:2.688032pt;}
.wsb13_c00000{word-spacing:2.693376pt;}
.ws4b7_c00000{word-spacing:2.694400pt;}
.ws1026_c00000{word-spacing:2.698720pt;}
.ws1456_c00000{word-spacing:2.700800pt;}
.ws8c1_c00000{word-spacing:2.704064pt;}
.wsd7b_c00000{word-spacing:2.707200pt;}
.ws11c6_c00000{word-spacing:2.709408pt;}
.ws110e_c00000{word-spacing:2.713600pt;}
.wsf7c_c00000{word-spacing:2.714752pt;}
.ws563_c00000{word-spacing:2.720000pt;}
.wse3b_c00000{word-spacing:2.720096pt;}
.ws1998_c00000{word-spacing:2.725440pt;}
.ws1357_c00000{word-spacing:2.726400pt;}
.wsbf5_c00000{word-spacing:2.730784pt;}
.ws1058_c00000{word-spacing:2.732800pt;}
.ws858_c00000{word-spacing:2.736128pt;}
.wsaf4_c00000{word-spacing:2.739200pt;}
.ws11c7_c00000{word-spacing:2.741472pt;}
.ws89b_c00000{word-spacing:2.745600pt;}
.ws146a_c00000{word-spacing:2.746816pt;}
.ws1062_c00000{word-spacing:2.752000pt;}
.wsd89_c00000{word-spacing:2.752160pt;}
.ws149a_c00000{word-spacing:2.757504pt;}
.ws199_c00000{word-spacing:2.758400pt;}
.ws1107_c00000{word-spacing:2.762848pt;}
.ws52b_c00000{word-spacing:2.764800pt;}
.ws1025_c00000{word-spacing:2.768192pt;}
.ws19a_c00000{word-spacing:2.771200pt;}
.wsbf7_c00000{word-spacing:2.773536pt;}
.ws262_c00000{word-spacing:2.777600pt;}
.wsbf6_c00000{word-spacing:2.778880pt;}
.ws19b_c00000{word-spacing:2.784000pt;}
.wscf8_c00000{word-spacing:2.784224pt;}
.ws10e1_c00000{word-spacing:2.789568pt;}
.ws192_c00000{word-spacing:2.790400pt;}
.ws1037_c00000{word-spacing:2.794912pt;}
.ws221_c00000{word-spacing:2.796800pt;}
.wse19_c00000{word-spacing:2.800256pt;}
.ws263_c00000{word-spacing:2.803200pt;}
.ws18ec_c00000{word-spacing:2.805600pt;}
.ws543_c00000{word-spacing:2.809600pt;}
.ws104f_c00000{word-spacing:2.810944pt;}
.wsb9_c00000{word-spacing:2.816000pt;}
.ws1498_c00000{word-spacing:2.821632pt;}
.ws5d8_c00000{word-spacing:2.822400pt;}
.ws172b_c00000{word-spacing:2.826976pt;}
.ws4b6_c00000{word-spacing:2.828800pt;}
.ws1a5c_c00000{word-spacing:2.832320pt;}
.ws5d7_c00000{word-spacing:2.835200pt;}
.ws10e0_c00000{word-spacing:2.837664pt;}
.ws3b2_c00000{word-spacing:2.841600pt;}
.ws12d7_c00000{word-spacing:2.843008pt;}
.ws222_c00000{word-spacing:2.848000pt;}
.ws14b6_c00000{word-spacing:2.848352pt;}
.ws1ad6_c00000{word-spacing:2.853696pt;}
.ws193_c00000{word-spacing:2.854400pt;}
.wsb9c_c00000{word-spacing:2.859040pt;}
.wsae_c00000{word-spacing:2.860800pt;}
.wsb32_c00000{word-spacing:2.864384pt;}
.wsb8_c00000{word-spacing:2.867200pt;}
.ws407_c00000{word-spacing:2.869728pt;}
.ws297_c00000{word-spacing:2.873600pt;}
.ws678_c00000{word-spacing:2.875072pt;}
.ws37a_c00000{word-spacing:2.880000pt;}
.wsea2_c00000{word-spacing:2.880416pt;}
.ws174e_c00000{word-spacing:2.881152pt;}
.wsbe0_c00000{word-spacing:2.885760pt;}
.wsa53_c00000{word-spacing:2.886400pt;}
.ws8ef_c00000{word-spacing:2.887008pt;}
.ws151d_c00000{word-spacing:2.891104pt;}
.ws264_c00000{word-spacing:2.892800pt;}
.wsa51_c00000{word-spacing:2.896448pt;}
.ws1566_c00000{word-spacing:2.898720pt;}
.ws37b_c00000{word-spacing:2.899200pt;}
.wsb33_c00000{word-spacing:2.901792pt;}
.ws174d_c00000{word-spacing:2.904576pt;}
.ws84e_c00000{word-spacing:2.905600pt;}
.ws19a8_c00000{word-spacing:2.907136pt;}
.ws89a_c00000{word-spacing:2.912000pt;}
.ws1520_c00000{word-spacing:2.912480pt;}
.ws1634_c00000{word-spacing:2.916288pt;}
.ws1106_c00000{word-spacing:2.917824pt;}
.wsa84_c00000{word-spacing:2.918400pt;}
.ws17f9_c00000{word-spacing:2.922144pt;}
.ws1327_c00000{word-spacing:2.923168pt;}
.ws769_c00000{word-spacing:2.924800pt;}
.ws16b5_c00000{word-spacing:2.928000pt;}
.ws110d_c00000{word-spacing:2.931200pt;}
.ws1681_c00000{word-spacing:2.933856pt;}
.wse44_c00000{word-spacing:2.937600pt;}
.ws18aa_c00000{word-spacing:2.939200pt;}
.ws14dd_c00000{word-spacing:2.939712pt;}
.ws1697_c00000{word-spacing:2.944000pt;}
.ws14a2_c00000{word-spacing:2.944544pt;}
.ws1959_c00000{word-spacing:2.945568pt;}
.ws14a4_c00000{word-spacing:2.949888pt;}
.ws8d9_c00000{word-spacing:2.950400pt;}
.ws918_c00000{word-spacing:2.953088pt;}
.ws1516_c00000{word-spacing:2.954816pt;}
.ws14a3_c00000{word-spacing:2.955232pt;}
.ws17d3_c00000{word-spacing:2.956800pt;}
.ws14b5_c00000{word-spacing:2.960576pt;}
.ws14de_c00000{word-spacing:2.963136pt;}
.wsf83_c00000{word-spacing:2.965920pt;}
.ws113c_c00000{word-spacing:2.969600pt;}
.ws1105_c00000{word-spacing:2.971264pt;}
.ws568_c00000{word-spacing:2.976000pt;}
.ws1098_c00000{word-spacing:2.976608pt;}
.ws1a4d_c00000{word-spacing:2.981952pt;}
.ws455_c00000{word-spacing:2.982400pt;}
.ws857_c00000{word-spacing:2.987296pt;}
.wsaf3_c00000{word-spacing:2.988800pt;}
.ws1099_c00000{word-spacing:2.992640pt;}
.ws560_c00000{word-spacing:2.995200pt;}
.ws12e9_c00000{word-spacing:2.997984pt;}
.ws565_c00000{word-spacing:3.001600pt;}
.ws18ab_c00000{word-spacing:3.003328pt;}
.ws963_c00000{word-spacing:3.008000pt;}
.ws17ac_c00000{word-spacing:3.008672pt;}
.ws2ef_c00000{word-spacing:3.014400pt;}
.ws18ef_c00000{word-spacing:3.019360pt;}
.ws11d2_c00000{word-spacing:3.020800pt;}
.ws1662_c00000{word-spacing:3.024704pt;}
.ws2d0_c00000{word-spacing:3.027200pt;}
.ws1068_c00000{word-spacing:3.030048pt;}
.ws106_c00000{word-spacing:3.033600pt;}
.ws408_c00000{word-spacing:3.035392pt;}
.ws1129_c00000{word-spacing:3.040000pt;}
.ws1a69_c00000{word-spacing:3.040736pt;}
.ws14c6_c00000{word-spacing:3.046080pt;}
.wsb61_c00000{word-spacing:3.046400pt;}
.ws109a_c00000{word-spacing:3.051424pt;}
.ws567_c00000{word-spacing:3.052800pt;}
.wsb9d_c00000{word-spacing:3.056768pt;}
.wseee_c00000{word-spacing:3.059200pt;}
.ws1ad7_c00000{word-spacing:3.062112pt;}
.ws783_c00000{word-spacing:3.065600pt;}
.ws143b_c00000{word-spacing:3.067456pt;}
.ws330_c00000{word-spacing:3.072000pt;}
.ws1517_c00000{word-spacing:3.072800pt;}
.wse97_c00000{word-spacing:3.078144pt;}
.ws782_c00000{word-spacing:3.078400pt;}
.ws11fd_c00000{word-spacing:3.083488pt;}
.ws2d1_c00000{word-spacing:3.084800pt;}
.wscfa_c00000{word-spacing:3.088832pt;}
.ws2f0_c00000{word-spacing:3.091200pt;}
.ws1775_c00000{word-spacing:3.094176pt;}
.ws561_c00000{word-spacing:3.097600pt;}
.ws1774_c00000{word-spacing:3.099520pt;}
.ws90f_c00000{word-spacing:3.104000pt;}
.wsbe1_c00000{word-spacing:3.104864pt;}
.ws12d6_c00000{word-spacing:3.110208pt;}
.ws2ee_c00000{word-spacing:3.110400pt;}
.wse96_c00000{word-spacing:3.115552pt;}
.ws1d2_c00000{word-spacing:3.116800pt;}
.wsb5_c00000{word-spacing:3.123200pt;}
.ws18e3_c00000{word-spacing:3.126240pt;}
.wsb2a_c00000{word-spacing:3.129600pt;}
.ws7a3_c00000{word-spacing:3.136000pt;}
.wsb34_c00000{word-spacing:3.136928pt;}
.ws1dc_c00000{word-spacing:3.142400pt;}
.wsbe2_c00000{word-spacing:3.147616pt;}
.ws840_c00000{word-spacing:3.148800pt;}
.ws331_c00000{word-spacing:3.155200pt;}
.ws1ae5_c00000{word-spacing:3.158304pt;}
.ws8e_c00000{word-spacing:3.161600pt;}
.ws173a_c00000{word-spacing:3.163648pt;}
.wsba_c00000{word-spacing:3.168000pt;}
.wscda_c00000{word-spacing:3.174336pt;}
.ws479_c00000{word-spacing:3.174400pt;}
.ws762_c00000{word-spacing:3.180800pt;}
.ws1554_c00000{word-spacing:3.185024pt;}
.ws197_c00000{word-spacing:3.187200pt;}
.wsd6b_c00000{word-spacing:3.190368pt;}
.ws186b_c00000{word-spacing:3.191520pt;}
.ws8f_c00000{word-spacing:3.193600pt;}
.wsa04_c00000{word-spacing:3.195712pt;}
.wsbba_c00000{word-spacing:3.197376pt;}
.ws454_c00000{word-spacing:3.200000pt;}
.wsb4_c00000{word-spacing:3.206400pt;}
.ws167d_c00000{word-spacing:3.211744pt;}
.ws59d_c00000{word-spacing:3.212800pt;}
.ws1873_c00000{word-spacing:3.214944pt;}
.ws1181_c00000{word-spacing:3.217088pt;}
.ws878_c00000{word-spacing:3.219200pt;}
.ws172f_c00000{word-spacing:3.220800pt;}
.ws9a3_c00000{word-spacing:3.222432pt;}
.wsec7_c00000{word-spacing:3.225600pt;}
.ws17ba_c00000{word-spacing:3.226656pt;}
.ws5c1_c00000{word-spacing:3.227776pt;}
.wsbe9_c00000{word-spacing:3.232000pt;}
.ws1941_c00000{word-spacing:3.232512pt;}
.ws73c_c00000{word-spacing:3.238400pt;}
.ws1271_c00000{word-spacing:3.243808pt;}
.ws186a_c00000{word-spacing:3.244224pt;}
.ws1aa5_c00000{word-spacing:3.244800pt;}
.wsf26_c00000{word-spacing:3.251200pt;}
.ws1270_c00000{word-spacing:3.254496pt;}
.ws14cb_c00000{word-spacing:3.255936pt;}
.ws926_c00000{word-spacing:3.257600pt;}
.ws16f9_c00000{word-spacing:3.259840pt;}
.wsbbb_c00000{word-spacing:3.261792pt;}
.ws1997_c00000{word-spacing:3.265184pt;}
.ws16bb_c00000{word-spacing:3.267648pt;}
.ws1969_c00000{word-spacing:3.270400pt;}
.wsef2_c00000{word-spacing:3.270528pt;}
.ws16ba_c00000{word-spacing:3.273504pt;}
.ws150c_c00000{word-spacing:3.275872pt;}
.wsf47_c00000{word-spacing:3.276800pt;}
.wsb46_c00000{word-spacing:3.281216pt;}
.ws602_c00000{word-spacing:3.286560pt;}
.ws11c2_c00000{word-spacing:3.291904pt;}
.wsea1_c00000{word-spacing:3.297248pt;}
.ws17fb_c00000{word-spacing:3.302400pt;}
.wse4e_c00000{word-spacing:3.302592pt;}
.ws150d_c00000{word-spacing:3.307936pt;}
.ws1194_c00000{word-spacing:3.308800pt;}
.ws5c2_c00000{word-spacing:3.313280pt;}
.wsbf_c00000{word-spacing:3.315200pt;}
.ws181c_c00000{word-spacing:3.318624pt;}
.ws4e6_c00000{word-spacing:3.321600pt;}
.ws1964_c00000{word-spacing:3.323968pt;}
.wsc19_c00000{word-spacing:3.328000pt;}
.ws12d8_c00000{word-spacing:3.329312pt;}
.ws12a3_c00000{word-spacing:3.334400pt;}
.ws600_c00000{word-spacing:3.334656pt;}
.ws1a1a_c00000{word-spacing:3.340000pt;}
.wsb71_c00000{word-spacing:3.340800pt;}
.ws94c_c00000{word-spacing:3.347200pt;}
.ws977_c00000{word-spacing:3.353600pt;}
.ws155f_c00000{word-spacing:3.356032pt;}
.ws944_c00000{word-spacing:3.360000pt;}
.wsf62_c00000{word-spacing:3.361376pt;}
.ws138e_c00000{word-spacing:3.366400pt;}
.wse5c_c00000{word-spacing:3.366720pt;}
.wsab5_c00000{word-spacing:3.372800pt;}
.ws17c6_c00000{word-spacing:3.377408pt;}
.ws562_c00000{word-spacing:3.379200pt;}
.ws1151_c00000{word-spacing:3.382752pt;}
.wsae3_c00000{word-spacing:3.385600pt;}
.wse4f_c00000{word-spacing:3.388096pt;}
.ws10a_c00000{word-spacing:3.392000pt;}
.wscfd_c00000{word-spacing:3.393440pt;}
.ws870_c00000{word-spacing:3.398400pt;}
.ws1289_c00000{word-spacing:3.398784pt;}
.ws19ff_c00000{word-spacing:3.404128pt;}
.ws81f_c00000{word-spacing:3.404800pt;}
.ws168c_c00000{word-spacing:3.409472pt;}
.ws36e_c00000{word-spacing:3.411200pt;}
.ws402_c00000{word-spacing:3.417600pt;}
.ws12c3_c00000{word-spacing:3.420160pt;}
.ws126_c00000{word-spacing:3.424000pt;}
.ws155c_c00000{word-spacing:3.425504pt;}
.ws141_c00000{word-spacing:3.430400pt;}
.wsd76_c00000{word-spacing:3.430848pt;}
.ws1ace_c00000{word-spacing:3.436192pt;}
.ws242_c00000{word-spacing:3.436800pt;}
.ws1745_c00000{word-spacing:3.441536pt;}
.ws125_c00000{word-spacing:3.443200pt;}
.ws172a_c00000{word-spacing:3.446880pt;}
.ws27d_c00000{word-spacing:3.449600pt;}
.ws4e5_c00000{word-spacing:3.456000pt;}
.ws7cc_c00000{word-spacing:3.462400pt;}
.ws18f0_c00000{word-spacing:3.468256pt;}
.ws7f7_c00000{word-spacing:3.468800pt;}
.ws7f8_c00000{word-spacing:3.475200pt;}
.ws724_c00000{word-spacing:3.481600pt;}
.ws12d9_c00000{word-spacing:3.484288pt;}
.ws109_c00000{word-spacing:3.488000pt;}
.ws344_c00000{word-spacing:3.494400pt;}
.ws18ad_c00000{word-spacing:3.500320pt;}
.wsbe_c00000{word-spacing:3.500800pt;}
.ws1a58_c00000{word-spacing:3.505664pt;}
.ws3b3_c00000{word-spacing:3.507200pt;}
.ws12aa_c00000{word-spacing:3.511008pt;}
.ws142_c00000{word-spacing:3.513600pt;}
.ws14ee_c00000{word-spacing:3.516352pt;}
.ws4a_c00000{word-spacing:3.520000pt;}
.wsb6a_c00000{word-spacing:3.521696pt;}
.ws1913_c00000{word-spacing:3.525312pt;}
.ws544_c00000{word-spacing:3.526400pt;}
.wsb92_c00000{word-spacing:3.527040pt;}
.ws1b21_c00000{word-spacing:3.531168pt;}
.ws986_c00000{word-spacing:3.532384pt;}
.ws4a1_c00000{word-spacing:3.532800pt;}
.ws158e_c00000{word-spacing:3.537024pt;}
.wsa28_c00000{word-spacing:3.537728pt;}
.ws243_c00000{word-spacing:3.539200pt;}
.wsf61_c00000{word-spacing:3.543072pt;}
.ws27e_c00000{word-spacing:3.545600pt;}
.wsd5c_c00000{word-spacing:3.548416pt;}
.ws2ff_c00000{word-spacing:3.552000pt;}
.ws6b1_c00000{word-spacing:3.553760pt;}
.wsadf_c00000{word-spacing:3.554592pt;}
.ws68d_c00000{word-spacing:3.558400pt;}
.ws17cb_c00000{word-spacing:3.560448pt;}
.wsc1a_c00000{word-spacing:3.564800pt;}
.wsa5e_c00000{word-spacing:3.566304pt;}
.wscff_c00000{word-spacing:3.569792pt;}
.ws1583_c00000{word-spacing:3.571200pt;}
.wsade_c00000{word-spacing:3.572160pt;}
.ws820_c00000{word-spacing:3.577600pt;}
.ws1ac5_c00000{word-spacing:3.578016pt;}
.ws1611_c00000{word-spacing:3.584000pt;}
.wsd74_c00000{word-spacing:3.585824pt;}
.ws1593_c00000{word-spacing:3.589728pt;}
.wsa36_c00000{word-spacing:3.590400pt;}
.ws1580_c00000{word-spacing:3.591168pt;}
.ws18ae_c00000{word-spacing:3.596512pt;}
.ws148_c00000{word-spacing:3.596800pt;}
.ws17cc_c00000{word-spacing:3.601440pt;}
.wsd9c_c00000{word-spacing:3.601856pt;}
.ws13cb_c00000{word-spacing:3.603200pt;}
.ws987_c00000{word-spacing:3.607200pt;}
.ws1fe_c00000{word-spacing:3.609600pt;}
.ws157f_c00000{word-spacing:3.612544pt;}
.ws64a_c00000{word-spacing:3.616000pt;}
.wsb47_c00000{word-spacing:3.617888pt;}
.wsf3b_c00000{word-spacing:3.622400pt;}
.ws11c3_c00000{word-spacing:3.623232pt;}
.ws19a5_c00000{word-spacing:3.628800pt;}
.ws18bf_c00000{word-spacing:3.633920pt;}
.wsb3_c00000{word-spacing:3.635200pt;}
.wsf2e_c00000{word-spacing:3.639264pt;}
.ws11f0_c00000{word-spacing:3.641600pt;}
.ws8a3_c00000{word-spacing:3.644608pt;}
.ws345_c00000{word-spacing:3.648000pt;}
.ws8a5_c00000{word-spacing:3.649952pt;}
.ws1061_c00000{word-spacing:3.654400pt;}
.ws19da_c00000{word-spacing:3.655296pt;}
.wsbf8_c00000{word-spacing:3.660640pt;}
.ws11c1_c00000{word-spacing:3.660800pt;}
.ws8a4_c00000{word-spacing:3.665984pt;}
.ws9b2_c00000{word-spacing:3.667200pt;}
.wsf2d_c00000{word-spacing:3.671328pt;}
.wscc4_c00000{word-spacing:3.673600pt;}
.ws1615_c00000{word-spacing:3.676672pt;}
.ws132_c00000{word-spacing:3.680000pt;}
.ws654_c00000{word-spacing:3.682016pt;}
.ws4ff_c00000{word-spacing:3.686400pt;}
.ws15d2_c00000{word-spacing:3.692704pt;}
.ws771_c00000{word-spacing:3.692800pt;}
.wsb68_c00000{word-spacing:3.698048pt;}
.ws149_c00000{word-spacing:3.699200pt;}
.wsd6a_c00000{word-spacing:3.703392pt;}
.ws94e_c00000{word-spacing:3.705600pt;}
.ws621_c00000{word-spacing:3.712000pt;}
.ws19ba_c00000{word-spacing:3.714080pt;}
.ws97b_c00000{word-spacing:3.718400pt;}
.ws1765_c00000{word-spacing:3.719424pt;}
.ws1739_c00000{word-spacing:3.724768pt;}
.wsa10_c00000{word-spacing:3.724800pt;}
.ws1999_c00000{word-spacing:3.730112pt;}
.ws346_c00000{word-spacing:3.731200pt;}
.ws139b_c00000{word-spacing:3.735456pt;}
.ws772_c00000{word-spacing:3.737600pt;}
.wsdfb_c00000{word-spacing:3.740800pt;}
.wsa86_c00000{word-spacing:3.744000pt;}
.ws601_c00000{word-spacing:3.746144pt;}
.ws86_c00000{word-spacing:3.750400pt;}
.ws988_c00000{word-spacing:3.751488pt;}
.ws649_c00000{word-spacing:3.756800pt;}
.ws1890_c00000{word-spacing:3.756832pt;}
.ws65f_c00000{word-spacing:3.763200pt;}
.ws907_c00000{word-spacing:3.769600pt;}
.ws660_c00000{word-spacing:3.776000pt;}
.ws12f1_c00000{word-spacing:3.778208pt;}
.ws94d_c00000{word-spacing:3.782400pt;}
.ws14b1_c00000{word-spacing:3.783552pt;}
.ws620_c00000{word-spacing:3.788800pt;}
.ws17c4_c00000{word-spacing:3.794240pt;}
.ws288_c00000{word-spacing:3.795200pt;}
.wsf74_c00000{word-spacing:3.799584pt;}
.wsb1_c00000{word-spacing:3.801600pt;}
.wse8_c00000{word-spacing:3.808000pt;}
.ws674_c00000{word-spacing:3.810272pt;}
.ws28c_c00000{word-spacing:3.814400pt;}
.wsc3c_c00000{word-spacing:3.815616pt;}
.wse9_c00000{word-spacing:3.820800pt;}
.ws19fb_c00000{word-spacing:3.820960pt;}
.wsf7_c00000{word-spacing:3.827200pt;}
.ws1b44_c00000{word-spacing:3.829824pt;}
.wsc0b_c00000{word-spacing:3.831648pt;}
.wsb2_c00000{word-spacing:3.833600pt;}
.ws397_c00000{word-spacing:3.836992pt;}
.ws500_c00000{word-spacing:3.840000pt;}
.wsbc3_c00000{word-spacing:3.842336pt;}
.ws87_c00000{word-spacing:3.846400pt;}
.ws813_c00000{word-spacing:3.847680pt;}
.ws75b_c00000{word-spacing:3.852800pt;}
.wsa02_c00000{word-spacing:3.853024pt;}
.wsb83_c00000{word-spacing:3.858368pt;}
.wsa61_c00000{word-spacing:3.859104pt;}
.ws131_c00000{word-spacing:3.859200pt;}
.ws5a5_c00000{word-spacing:3.863712pt;}
.ws17f8_c00000{word-spacing:3.864960pt;}
.ws501_c00000{word-spacing:3.865600pt;}
.ws11b5_c00000{word-spacing:3.869056pt;}
.ws1d3_c00000{word-spacing:3.872000pt;}
.ws673_c00000{word-spacing:3.874400pt;}
.ws17b9_c00000{word-spacing:3.876672pt;}
.wsa8c_c00000{word-spacing:3.878400pt;}
.wsa60_c00000{word-spacing:3.882528pt;}
.ws10c8_c00000{word-spacing:3.884800pt;}
.ws31a_c00000{word-spacing:3.885088pt;}
.wsad8_c00000{word-spacing:3.888384pt;}
.ws139c_c00000{word-spacing:3.890432pt;}
.ws773_c00000{word-spacing:3.891200pt;}
.wsad9_c00000{word-spacing:3.894240pt;}
.ws1a19_c00000{word-spacing:3.895776pt;}
.wse59_c00000{word-spacing:3.897600pt;}
.ws15d3_c00000{word-spacing:3.901120pt;}
.wsf3c_c00000{word-spacing:3.904000pt;}
.ws16f4_c00000{word-spacing:3.905952pt;}
.ws867_c00000{word-spacing:3.906464pt;}
.ws12dd_c00000{word-spacing:3.910400pt;}
.ws10f0_c00000{word-spacing:3.911808pt;}
.ws1702_c00000{word-spacing:3.913088pt;}
.ws1940_c00000{word-spacing:3.916800pt;}
.ws13d8_c00000{word-spacing:3.917152pt;}
.ws868_c00000{word-spacing:3.922496pt;}
.ws1187_c00000{word-spacing:3.923200pt;}
.ws1add_c00000{word-spacing:3.927840pt;}
.ws9fb_c00000{word-spacing:3.933184pt;}
.ws116f_c00000{word-spacing:3.938528pt;}
.wsb8c_c00000{word-spacing:3.942400pt;}
.wsc06_c00000{word-spacing:3.943872pt;}
.ws75c_c00000{word-spacing:3.948800pt;}
.ws1372_c00000{word-spacing:3.949216pt;}
.ws148b_c00000{word-spacing:3.954560pt;}
.ws1a08_c00000{word-spacing:3.959904pt;}
.ws12e7_c00000{word-spacing:3.961600pt;}
.wsbc2_c00000{word-spacing:3.965248pt;}
.ws11df_c00000{word-spacing:3.968000pt;}
.wsbc1_c00000{word-spacing:3.970592pt;}
.wsa6c_c00000{word-spacing:3.974400pt;}
.ws131f_c00000{word-spacing:3.975936pt;}
.wsc71_c00000{word-spacing:3.980800pt;}
.ws162b_c00000{word-spacing:3.981280pt;}
.wsa01_c00000{word-spacing:3.986624pt;}
.ws1832_c00000{word-spacing:3.987200pt;}
.ws10df_c00000{word-spacing:3.991968pt;}
.ws73b_c00000{word-spacing:3.993600pt;}
.wseda_c00000{word-spacing:3.997312pt;}
.ws975_c00000{word-spacing:4.000000pt;}
.ws9ac_c00000{word-spacing:4.006400pt;}
.ws4f8_c00000{word-spacing:4.012800pt;}
.ws148a_c00000{word-spacing:4.013344pt;}
.ws1756_c00000{word-spacing:4.018688pt;}
.ws3be_c00000{word-spacing:4.019200pt;}
.wseef_c00000{word-spacing:4.024032pt;}
.ws2c6_c00000{word-spacing:4.025600pt;}
.ws6af_c00000{word-spacing:4.029376pt;}
.ws557_c00000{word-spacing:4.032000pt;}
.ws12b9_c00000{word-spacing:4.034720pt;}
.ws20c_c00000{word-spacing:4.038400pt;}
.ws1401_c00000{word-spacing:4.040064pt;}
.wsb29_c00000{word-spacing:4.044800pt;}
.ws162c_c00000{word-spacing:4.045408pt;}
.ws12f2_c00000{word-spacing:4.050752pt;}
.ws56e_c00000{word-spacing:4.051200pt;}
.wsedb_c00000{word-spacing:4.056096pt;}
.ws880_c00000{word-spacing:4.057600pt;}
.ws290_c00000{word-spacing:4.064000pt;}
.ws1400_c00000{word-spacing:4.066784pt;}
.ws2a0_c00000{word-spacing:4.070400pt;}
.ws141e_c00000{word-spacing:4.072128pt;}
.ws3bf_c00000{word-spacing:4.076800pt;}
.wsca6_c00000{word-spacing:4.077472pt;}
.ws53e_c00000{word-spacing:4.083200pt;}
.ws63b_c00000{word-spacing:4.089600pt;}
.ws33d_c00000{word-spacing:4.096000pt;}
.ws2c5_c00000{word-spacing:4.102400pt;}
.ws20d_c00000{word-spacing:4.108800pt;}
.wsae4_c00000{word-spacing:4.109536pt;}
.ws140e_c00000{word-spacing:4.114880pt;}
.ws18c_c00000{word-spacing:4.115200pt;}
.ws6b0_c00000{word-spacing:4.120224pt;}
.ws349_c00000{word-spacing:4.121600pt;}
.ws140d_c00000{word-spacing:4.125568pt;}
.ws4f7_c00000{word-spacing:4.128000pt;}
.ws12b8_c00000{word-spacing:4.130912pt;}
.ws18d_c00000{word-spacing:4.134400pt;}
.ws19d4_c00000{word-spacing:4.136256pt;}
.ws435_c00000{word-spacing:4.140800pt;}
.wsb84_c00000{word-spacing:4.141600pt;}
.ws1277_c00000{word-spacing:4.146944pt;}
.ws28f_c00000{word-spacing:4.147200pt;}
.ws1874_c00000{word-spacing:4.151904pt;}
.ws860_c00000{word-spacing:4.152288pt;}
.ws198_c00000{word-spacing:4.153600pt;}
.ws23c_c00000{word-spacing:4.157632pt;}
.ws3bd_c00000{word-spacing:4.160000pt;}
.wsbdd_c00000{word-spacing:4.162976pt;}
.ws33e_c00000{word-spacing:4.166400pt;}
.ws1244_c00000{word-spacing:4.168320pt;}
.ws56f_c00000{word-spacing:4.172800pt;}
.ws1354_c00000{word-spacing:4.173664pt;}
.ws1b46_c00000{word-spacing:4.175328pt;}
.ws154e_c00000{word-spacing:4.179008pt;}
.ws5b6_c00000{word-spacing:4.179200pt;}
.ws1081_c00000{word-spacing:4.181184pt;}
.ws109e_c00000{word-spacing:4.185600pt;}
.ws158b_c00000{word-spacing:4.187040pt;}
.wse53_c00000{word-spacing:4.192000pt;}
.ws194a_c00000{word-spacing:4.192896pt;}
.ws199f_c00000{word-spacing:4.195040pt;}
.wsfb7_c00000{word-spacing:4.198400pt;}
.ws167f_c00000{word-spacing:4.198752pt;}
.ws85c_c00000{word-spacing:4.200384pt;}
.ws1949_c00000{word-spacing:4.204608pt;}
.ws1720_c00000{word-spacing:4.204800pt;}
.wsb69_c00000{word-spacing:4.205728pt;}
.ws14c4_c00000{word-spacing:4.210464pt;}
.ws15f0_c00000{word-spacing:4.211200pt;}
.ws1082_c00000{word-spacing:4.216320pt;}
.ws1406_c00000{word-spacing:4.217600pt;}
.ws141d_c00000{word-spacing:4.221760pt;}
.ws1889_c00000{word-spacing:4.222176pt;}
.ws246_c00000{word-spacing:4.224000pt;}
.ws13d2_c00000{word-spacing:4.227104pt;}
.ws17ed_c00000{word-spacing:4.228032pt;}
.wsa_c00000{word-spacing:4.228896pt;}
.ws11e0_c00000{word-spacing:4.230400pt;}
.wsfdf_c00000{word-spacing:4.232448pt;}
.wsb0a_c00000{word-spacing:4.236800pt;}
.ws1076_c00000{word-spacing:4.237792pt;}
.wsdf8_c00000{word-spacing:4.243136pt;}
.ws132b_c00000{word-spacing:4.243200pt;}
.wse9a_c00000{word-spacing:4.248480pt;}
.ws1410_c00000{word-spacing:4.249600pt;}
.ws10ef_c00000{word-spacing:4.253824pt;}
.ws1b13_c00000{word-spacing:4.256000pt;}
.ws188a_c00000{word-spacing:4.257312pt;}
.wsfd0_c00000{word-spacing:4.259168pt;}
.ws11a7_c00000{word-spacing:4.262400pt;}
.ws655_c00000{word-spacing:4.264512pt;}
.ws16fe_c00000{word-spacing:4.268800pt;}
.ws1075_c00000{word-spacing:4.269856pt;}
.wsae7_c00000{word-spacing:4.275200pt;}
.wsc1c_c00000{word-spacing:4.281600pt;}
.ws88f_c00000{word-spacing:4.288000pt;}
.wsfd1_c00000{word-spacing:4.291232pt;}
.ws890_c00000{word-spacing:4.294400pt;}
.ws1755_c00000{word-spacing:4.296576pt;}
.ws9f6_c00000{word-spacing:4.300800pt;}
.wsc07_c00000{word-spacing:4.301920pt;}
.wsb0b_c00000{word-spacing:4.307200pt;}
.ws10ee_c00000{word-spacing:4.307264pt;}
.wsc3b_c00000{word-spacing:4.312608pt;}
.ws11bc_c00000{word-spacing:4.313600pt;}
.ws16ec_c00000{word-spacing:4.317952pt;}
.ws11ae_c00000{word-spacing:4.320000pt;}
.wsfe0_c00000{word-spacing:4.323296pt;}
.ws59c_c00000{word-spacing:4.326400pt;}
.ws166b_c00000{word-spacing:4.328640pt;}
.ws1658_c00000{word-spacing:4.332800pt;}
.ws861_c00000{word-spacing:4.333984pt;}
.ws162_c00000{word-spacing:4.339200pt;}
.wsc3a_c00000{word-spacing:4.339328pt;}
.wsed7_c00000{word-spacing:4.344672pt;}
.ws2bf_c00000{word-spacing:4.345600pt;}
.wsed0_c00000{word-spacing:4.350016pt;}
.ws83_c00000{word-spacing:4.352000pt;}
.ws7e8_c00000{word-spacing:4.355360pt;}
.ws3bb_c00000{word-spacing:4.358400pt;}
.wsdfa_c00000{word-spacing:4.360704pt;}
.ws82_c00000{word-spacing:4.364800pt;}
.wse77_c00000{word-spacing:4.366048pt;}
.ws1f5_c00000{word-spacing:4.371200pt;}
.ws18fd_c00000{word-spacing:4.371392pt;}
.wsbde_c00000{word-spacing:4.376736pt;}
.ws161_c00000{word-spacing:4.377600pt;}
.ws1ad8_c00000{word-spacing:4.382080pt;}
.ws9d_c00000{word-spacing:4.384000pt;}
.wsede_c00000{word-spacing:4.387424pt;}
.ws4e1_c00000{word-spacing:4.390400pt;}
.ws59b_c00000{word-spacing:4.396800pt;}
.wsa03_c00000{word-spacing:4.398112pt;}
.ws274_c00000{word-spacing:4.403200pt;}
.ws672_c00000{word-spacing:4.403456pt;}
.ws582_c00000{word-spacing:4.409600pt;}
.ws160_c00000{word-spacing:4.416000pt;}
.ws1e4_c00000{word-spacing:4.422400pt;}
.ws4fe_c00000{word-spacing:4.428800pt;}
.wsf14_c00000{word-spacing:4.430176pt;}
.ws247_c00000{word-spacing:4.435200pt;}
.wsb_c00000{word-spacing:4.437216pt;}
.ws108_c00000{word-spacing:4.441600pt;}
.ws5b8_c00000{word-spacing:4.448000pt;}
.ws98a_c00000{word-spacing:4.451552pt;}
.ws4e2_c00000{word-spacing:4.454400pt;}
.ws1466_c00000{word-spacing:4.456896pt;}
.ws105_c00000{word-spacing:4.460800pt;}
.ws29f_c00000{word-spacing:4.467200pt;}
.ws10aa_c00000{word-spacing:4.467584pt;}
.ws989_c00000{word-spacing:4.472928pt;}
.ws393_c00000{word-spacing:4.473600pt;}
.wsc3f_c00000{word-spacing:4.478272pt;}
.ws2be_c00000{word-spacing:4.480000pt;}
.wse84_c00000{word-spacing:4.483616pt;}
.ws9f7_c00000{word-spacing:4.486400pt;}
.ws11fc_c00000{word-spacing:4.488960pt;}
.ws9e_c00000{word-spacing:4.492800pt;}
.wsc62_c00000{word-spacing:4.494304pt;}
.ws392_c00000{word-spacing:4.499200pt;}
.wsdf9_c00000{word-spacing:4.499648pt;}
.ws17bb_c00000{word-spacing:4.503264pt;}
.ws1ade_c00000{word-spacing:4.504992pt;}
.ws3bc_c00000{word-spacing:4.505600pt;}
.ws1260_c00000{word-spacing:4.510336pt;}
.wsc58_c00000{word-spacing:4.512000pt;}
.ws1563_c00000{word-spacing:4.514976pt;}
.ws104_c00000{word-spacing:4.518400pt;}
.ws1871_c00000{word-spacing:4.520832pt;}
.ws1261_c00000{word-spacing:4.521024pt;}
.ws124b_c00000{word-spacing:4.524800pt;}
.wsfed_c00000{word-spacing:4.526368pt;}
.ws15be_c00000{word-spacing:4.526688pt;}
.ws11e4_c00000{word-spacing:4.531200pt;}
.wsfa9_c00000{word-spacing:4.531712pt;}
.ws98b_c00000{word-spacing:4.537056pt;}
.ws780_c00000{word-spacing:4.537600pt;}
.ws17ea_c00000{word-spacing:4.538400pt;}
.wsf13_c00000{word-spacing:4.542400pt;}
.ws77f_c00000{word-spacing:4.544000pt;}
.ws85b_c00000{word-spacing:4.547744pt;}
.ws1897_c00000{word-spacing:4.550400pt;}
.ws1295_c00000{word-spacing:4.553088pt;}
.ws16a4_c00000{word-spacing:4.555968pt;}
.ws4a8_c00000{word-spacing:4.556800pt;}
.wsfeb_c00000{word-spacing:4.558432pt;}
.ws17eb_c00000{word-spacing:4.561824pt;}
.ws19b3_c00000{word-spacing:4.563200pt;}
.ws656_c00000{word-spacing:4.563776pt;}
.ws1806_c00000{word-spacing:4.569120pt;}
.ws4a7_c00000{word-spacing:4.569600pt;}
.ws763_c00000{word-spacing:4.576000pt;}
.ws85d_c00000{word-spacing:4.579808pt;}
.wscba_c00000{word-spacing:4.582400pt;}
.wscb9_c00000{word-spacing:4.588800pt;}
.ws1a4b_c00000{word-spacing:4.590496pt;}
.ws127f_c00000{word-spacing:4.595200pt;}
.wsfa8_c00000{word-spacing:4.601184pt;}
.ws140f_c00000{word-spacing:4.601600pt;}
.ws14ed_c00000{word-spacing:4.606528pt;}
.ws8cb_c00000{word-spacing:4.608000pt;}
.ws1278_c00000{word-spacing:4.611872pt;}
.ws572_c00000{word-spacing:4.614400pt;}
.ws1146_c00000{word-spacing:4.620800pt;}
.ws149b_c00000{word-spacing:4.622560pt;}
.ws18cb_c00000{word-spacing:4.627200pt;}
.wsb1a_c00000{word-spacing:4.627904pt;}
.ws1449_c00000{word-spacing:4.633248pt;}
.ws8ca_c00000{word-spacing:4.633600pt;}
.ws1389_c00000{word-spacing:4.638592pt;}
.wsc70_c00000{word-spacing:4.640000pt;}
.wsb19_c00000{word-spacing:4.643936pt;}
.ws9f8_c00000{word-spacing:4.646400pt;}
.ws1a9d_c00000{word-spacing:4.649280pt;}
.ws108a_c00000{word-spacing:4.652800pt;}
.ws182c_c00000{word-spacing:4.654624pt;}
.wsae0_c00000{word-spacing:4.659200pt;}
.ws1a73_c00000{word-spacing:4.659968pt;}
.ws17a3_c00000{word-spacing:4.665312pt;}
.wsaa6_c00000{word-spacing:4.665600pt;}
.wsdd4_c00000{word-spacing:4.670656pt;}
.wsc72_c00000{word-spacing:4.672000pt;}
.wsfa7_c00000{word-spacing:4.676000pt;}
.wsa5b_c00000{word-spacing:4.678400pt;}
.ws67b_c00000{word-spacing:4.681344pt;}
.ws6f3_c00000{word-spacing:4.684800pt;}
.wsfec_c00000{word-spacing:4.686688pt;}
.wsb8e_c00000{word-spacing:4.691200pt;}
.ws7e7_c00000{word-spacing:4.692032pt;}
.ws124f_c00000{word-spacing:4.697376pt;}
.wsc98_c00000{word-spacing:4.697600pt;}
.ws320_c00000{word-spacing:4.702720pt;}
.ws496_c00000{word-spacing:4.704000pt;}
.ws156c_c00000{word-spacing:4.708064pt;}
.wscd3_c00000{word-spacing:4.710400pt;}
.ws67a_c00000{word-spacing:4.713408pt;}
.ws6f4_c00000{word-spacing:4.716800pt;}
.wsb05_c00000{word-spacing:4.723200pt;}
.wsbff_c00000{word-spacing:4.729600pt;}
.ws9f9_c00000{word-spacing:4.736000pt;}
.ws12b_c00000{word-spacing:4.742400pt;}
.wsf3_c00000{word-spacing:4.748800pt;}
.ws2c2_c00000{word-spacing:4.755200pt;}
.wsd03_c00000{word-spacing:4.761504pt;}
.ws485_c00000{word-spacing:4.761600pt;}
.wsc38_c00000{word-spacing:4.766848pt;}
.ws497_c00000{word-spacing:4.768000pt;}
.ws1aa1_c00000{word-spacing:4.772192pt;}
.ws484_c00000{word-spacing:4.774400pt;}
.ws936_c00000{word-spacing:4.777536pt;}
.ws7f9_c00000{word-spacing:4.780800pt;}
.ws1b4_c00000{word-spacing:4.782880pt;}
.ws4a9_c00000{word-spacing:4.787200pt;}
.ws98c_c00000{word-spacing:4.788224pt;}
.ws1294_c00000{word-spacing:4.793568pt;}
.wsf4_c00000{word-spacing:4.793600pt;}
.ws19f0_c00000{word-spacing:4.796064pt;}
.wsd01_c00000{word-spacing:4.798912pt;}
.ws59a_c00000{word-spacing:4.800000pt;}
.ws7ea_c00000{word-spacing:4.804256pt;}
.ws832_c00000{word-spacing:4.806400pt;}
.ws7e9_c00000{word-spacing:4.809600pt;}
.ws710_c00000{word-spacing:4.812800pt;}
.wsa82_c00000{word-spacing:4.814944pt;}
.ws82f_c00000{word-spacing:4.819200pt;}
.ws10b4_c00000{word-spacing:4.820288pt;}
.ws1592_c00000{word-spacing:4.825344pt;}
.wsb59_c00000{word-spacing:4.825600pt;}
.ws797_c00000{word-spacing:4.825632pt;}
.wsa9f_c00000{word-spacing:4.830976pt;}
.ws19f1_c00000{word-spacing:4.831200pt;}
.wsb0f_c00000{word-spacing:4.832000pt;}
.ws1565_c00000{word-spacing:4.837056pt;}
.ws12c_c00000{word-spacing:4.838400pt;}
.ws12d_c00000{word-spacing:4.844800pt;}
.ws1351_c00000{word-spacing:4.847008pt;}
.ws19b9_c00000{word-spacing:4.848768pt;}
.ws16d7_c00000{word-spacing:4.851200pt;}
.ws798_c00000{word-spacing:4.852352pt;}
.ws18ee_c00000{word-spacing:4.857696pt;}
.ws6b4_c00000{word-spacing:4.863040pt;}
.ws1968_c00000{word-spacing:4.864000pt;}
.ws19b8_c00000{word-spacing:4.866336pt;}
.wsc3d_c00000{word-spacing:4.868384pt;}
.ws7c5_c00000{word-spacing:4.870400pt;}
.ws981_c00000{word-spacing:4.872192pt;}
.wse66_c00000{word-spacing:4.873088pt;}
.ws11c4_c00000{word-spacing:4.873728pt;}
.ws1af5_c00000{word-spacing:4.876800pt;}
.ws1564_c00000{word-spacing:4.878048pt;}
.ws1614_c00000{word-spacing:4.879072pt;}
.ws175d_c00000{word-spacing:4.883200pt;}
.wsc3e_c00000{word-spacing:4.884416pt;}
.ws1711_c00000{word-spacing:4.889600pt;}
.ws6b3_c00000{word-spacing:4.889760pt;}
.wsf05_c00000{word-spacing:4.895104pt;}
.ws13f3_c00000{word-spacing:4.896000pt;}
.wse83_c00000{word-spacing:4.900448pt;}
.ws982_c00000{word-spacing:4.901472pt;}
.ws14e0_c00000{word-spacing:4.905792pt;}
.wsb0c_c00000{word-spacing:4.908800pt;}
.wsf12_c00000{word-spacing:4.911136pt;}
.ws1059_c00000{word-spacing:4.915200pt;}
.ws1352_c00000{word-spacing:4.916480pt;}
.ws64d_c00000{word-spacing:4.921600pt;}
.ws14e1_c00000{word-spacing:4.927168pt;}
.ws61a_c00000{word-spacing:4.928000pt;}
.wsf60_c00000{word-spacing:4.932512pt;}
.ws6cb_c00000{word-spacing:4.934400pt;}
.wsb1c_c00000{word-spacing:4.937856pt;}
.ws13c_c00000{word-spacing:4.940800pt;}
.ws182e_c00000{word-spacing:4.943200pt;}
.wsb5d_c00000{word-spacing:4.947200pt;}
.wsd3e_c00000{word-spacing:4.948544pt;}
.wsbcf_c00000{word-spacing:4.953600pt;}
.wsf06_c00000{word-spacing:4.953888pt;}
.ws1708_c00000{word-spacing:4.959232pt;}
.ws1b37_c00000{word-spacing:4.960000pt;}
.wsf04_c00000{word-spacing:4.964576pt;}
.ws13b9_c00000{word-spacing:4.966400pt;}
.wsa83_c00000{word-spacing:4.969920pt;}
.ws518_c00000{word-spacing:4.972800pt;}
.wsb40_c00000{word-spacing:4.975264pt;}
.ws69d_c00000{word-spacing:4.979200pt;}
.wsff9_c00000{word-spacing:4.980608pt;}
.ws74d_c00000{word-spacing:4.985600pt;}
.wse82_c00000{word-spacing:4.985952pt;}
.ws3f0_c00000{word-spacing:4.992000pt;}
.wsc63_c00000{word-spacing:4.996640pt;}
.ws236_c00000{word-spacing:4.998400pt;}
.wsb1b_c00000{word-spacing:5.001984pt;}
.wsbce_c00000{word-spacing:5.004800pt;}
.wsd02_c00000{word-spacing:5.007328pt;}
.ws229_c00000{word-spacing:5.011200pt;}
.ws18ed_c00000{word-spacing:5.012672pt;}
.ws86f_c00000{word-spacing:5.017600pt;}
.ws1288_c00000{word-spacing:5.018016pt;}
.ws1173_c00000{word-spacing:5.023360pt;}
.ws61b_c00000{word-spacing:5.024000pt;}
.ws129f_c00000{word-spacing:5.028704pt;}
.ws265_c00000{word-spacing:5.030400pt;}
.ws237_c00000{word-spacing:5.036800pt;}
.ws46a_c00000{word-spacing:5.043200pt;}
.ws5e3_c00000{word-spacing:5.049600pt;}
.ws2ca_c00000{word-spacing:5.056000pt;}
.wsc39_c00000{word-spacing:5.060768pt;}
.ws5da_c00000{word-spacing:5.062400pt;}
.ws17c5_c00000{word-spacing:5.066112pt;}
.ws7c9_c00000{word-spacing:5.068800pt;}
.ws13d_c00000{word-spacing:5.075200pt;}
.ws7c8_c00000{word-spacing:5.081600pt;}
.ws354_c00000{word-spacing:5.082144pt;}
.ws708_c00000{word-spacing:5.088000pt;}
.ws217_c00000{word-spacing:5.094400pt;}
.ws1378_c00000{word-spacing:5.098176pt;}
.ws17d_c00000{word-spacing:5.100800pt;}
.ws133e_c00000{word-spacing:5.103520pt;}
.wse2_c00000{word-spacing:5.107200pt;}
.ws934_c00000{word-spacing:5.108864pt;}
.ws13e_c00000{word-spacing:5.113600pt;}
.ws735_c00000{word-spacing:5.114208pt;}
.ws1976_c00000{word-spacing:5.119552pt;}
.ws7a2_c00000{word-spacing:5.120000pt;}
.ws35b_c00000{word-spacing:5.124896pt;}
.ws925_c00000{word-spacing:5.126400pt;}
.ws18c7_c00000{word-spacing:5.129856pt;}
.wsa9e_c00000{word-spacing:5.130240pt;}
.ws17f_c00000{word-spacing:5.132800pt;}
.wsb23_c00000{word-spacing:5.135584pt;}
.wsb5c_c00000{word-spacing:5.139200pt;}
.wseff_c00000{word-spacing:5.140928pt;}
.ws494_c00000{word-spacing:5.145600pt;}
.wsa81_c00000{word-spacing:5.146272pt;}
.ws1084_c00000{word-spacing:5.147424pt;}
.ws1ad4_c00000{word-spacing:5.151616pt;}
.ws2c9_c00000{word-spacing:5.152000pt;}
.ws1642_c00000{word-spacing:5.153280pt;}
.ws1a5f_c00000{word-spacing:5.156960pt;}
.ws1888_c00000{word-spacing:5.158400pt;}
.ws628_c00000{word-spacing:5.162304pt;}
.ws416_c00000{word-spacing:5.164800pt;}
.ws14d1_c00000{word-spacing:5.164992pt;}
.ws1a84_c00000{word-spacing:5.167648pt;}
.ws1955_c00000{word-spacing:5.170848pt;}
.ws1044_c00000{word-spacing:5.171200pt;}
.ws1956_c00000{word-spacing:5.176704pt;}
.ws1ae1_c00000{word-spacing:5.178336pt;}
.wsfde_c00000{word-spacing:5.183680pt;}
.ws457_c00000{word-spacing:5.184000pt;}
.ws15e6_c00000{word-spacing:5.188416pt;}
.ws1b5_c00000{word-spacing:5.189024pt;}
.ws17e_c00000{word-spacing:5.190400pt;}
.ws1a6a_c00000{word-spacing:5.193088pt;}
.ws1603_c00000{word-spacing:5.194368pt;}
.wscf5_c00000{word-spacing:5.196800pt;}
.wsefe_c00000{word-spacing:5.199712pt;}
.ws14d2_c00000{word-spacing:5.200128pt;}
.wsb22_c00000{word-spacing:5.205056pt;}
.ws64e_c00000{word-spacing:5.209600pt;}
.ws629_c00000{word-spacing:5.215744pt;}
.ws1808_c00000{word-spacing:5.216000pt;}
.ws683_c00000{word-spacing:5.221088pt;}
.ws1157_c00000{word-spacing:5.222400pt;}
.ws1b6_c00000{word-spacing:5.226432pt;}
.ws73a_c00000{word-spacing:5.228800pt;}
.ws935_c00000{word-spacing:5.231776pt;}
.ws36f_c00000{word-spacing:5.235200pt;}
.ws356_c00000{word-spacing:5.237120pt;}
.ws11f6_c00000{word-spacing:5.241600pt;}
.ws352_c00000{word-spacing:5.242464pt;}
.ws168f_c00000{word-spacing:5.247808pt;}
.ws942_c00000{word-spacing:5.248000pt;}
.ws117a_c00000{word-spacing:5.253152pt;}
.ws6e7_c00000{word-spacing:5.254400pt;}
.ws1ae0_c00000{word-spacing:5.258496pt;}
.ws1b09_c00000{word-spacing:5.260800pt;}
.wsdb4_c00000{word-spacing:5.267200pt;}
.ws1172_c00000{word-spacing:5.269184pt;}
.ws7f5_c00000{word-spacing:5.273600pt;}
.wsa8f_c00000{word-spacing:5.280000pt;}
.wsd3f_c00000{word-spacing:5.285216pt;}
.ws9d4_c00000{word-spacing:5.286400pt;}
.ws62a_c00000{word-spacing:5.290560pt;}
.wse90_c00000{word-spacing:5.292800pt;}
.ws1287_c00000{word-spacing:5.295904pt;}
.wsdd1_c00000{word-spacing:5.299200pt;}
.ws627_c00000{word-spacing:5.301248pt;}
.ws12a_c00000{word-spacing:5.305600pt;}
.wsa9d_c00000{word-spacing:5.306592pt;}
.ws13fe_c00000{word-spacing:5.311936pt;}
.wsd92_c00000{word-spacing:5.312000pt;}
.ws13ff_c00000{word-spacing:5.317280pt;}
.wsb2f_c00000{word-spacing:5.318400pt;}
.ws1aa7_c00000{word-spacing:5.322624pt;}
.wsbc9_c00000{word-spacing:5.324800pt;}
.ws15c_c00000{word-spacing:5.331200pt;}
.ws1705_c00000{word-spacing:5.333312pt;}
.ws27b_c00000{word-spacing:5.337600pt;}
.wsca8_c00000{word-spacing:5.338656pt;}
.ws15d_c00000{word-spacing:5.344000pt;}
.ws495_c00000{word-spacing:5.350400pt;}
.ws211_c00000{word-spacing:5.356800pt;}
.ws75f_c00000{word-spacing:5.363200pt;}
.wsd3d_c00000{word-spacing:5.365376pt;}
.ws4fd_c00000{word-spacing:5.369600pt;}
.ws1479_c00000{word-spacing:5.370720pt;}
.ws6f8_c00000{word-spacing:5.376000pt;}
.ws682_c00000{word-spacing:5.376064pt;}
.ws129_c00000{word-spacing:5.382400pt;}
.ws370_c00000{word-spacing:5.388800pt;}
.ws4cf_c00000{word-spacing:5.395200pt;}
.ws68e_c00000{word-spacing:5.401600pt;}
.ws2bd_c00000{word-spacing:5.408000pt;}
.ws1512_c00000{word-spacing:5.408128pt;}
.ws943_c00000{word-spacing:5.414400pt;}
.wsed5_c00000{word-spacing:5.418816pt;}
.ws47b_c00000{word-spacing:5.420800pt;}
.ws126e_c00000{word-spacing:5.424160pt;}
.ws51e_c00000{word-spacing:5.427200pt;}
.ws353_c00000{word-spacing:5.429504pt;}
.ws210_c00000{word-spacing:5.433600pt;}
.wse9f_c00000{word-spacing:5.434848pt;}
.ws15b_c00000{word-spacing:5.440000pt;}
.ws1002_c00000{word-spacing:5.440192pt;}
.ws1951_c00000{word-spacing:5.440224pt;}
.wse21_c00000{word-spacing:5.445536pt;}
.ws8f3_c00000{word-spacing:5.446080pt;}
.ws4fc_c00000{word-spacing:5.446400pt;}
.ws403_c00000{word-spacing:5.450880pt;}
.ws456_c00000{word-spacing:5.452800pt;}
.ws10ea_c00000{word-spacing:5.456224pt;}
.ws1568_c00000{word-spacing:5.457792pt;}
.ws4ca_c00000{word-spacing:5.459200pt;}
.ws19a0_c00000{word-spacing:5.461568pt;}
.ws15b7_c00000{word-spacing:5.463648pt;}
.wsd43_c00000{word-spacing:5.465600pt;}
.ws204_c00000{word-spacing:5.466912pt;}
.ws1b45_c00000{word-spacing:5.469504pt;}
.ws5e9_c00000{word-spacing:5.472000pt;}
.ws1469_c00000{word-spacing:5.472256pt;}
.ws1567_c00000{word-spacing:5.475360pt;}
.ws4cb_c00000{word-spacing:5.478400pt;}
.ws2b6_c00000{word-spacing:5.484800pt;}
.wsa7a_c00000{word-spacing:5.488288pt;}
.ws7f6_c00000{word-spacing:5.491200pt;}
.ws1353_c00000{word-spacing:5.493632pt;}
.ws6b9_c00000{word-spacing:5.497600pt;}
.ws8f4_c00000{word-spacing:5.498784pt;}
.ws12b0_c00000{word-spacing:5.504000pt;}
.ws1af_c00000{word-spacing:5.504320pt;}
.ws1468_c00000{word-spacing:5.509664pt;}
.ws9be_c00000{word-spacing:5.510400pt;}
.ws17ee_c00000{word-spacing:5.510496pt;}
.ws1966_c00000{word-spacing:5.514816pt;}
.ws203_c00000{word-spacing:5.515008pt;}
.ws1325_c00000{word-spacing:5.516800pt;}
.ws201_c00000{word-spacing:5.520352pt;}
.ws3ee_c00000{word-spacing:5.523200pt;}
.ws1480_c00000{word-spacing:5.525696pt;}
.ws1a1e_c00000{word-spacing:5.531040pt;}
.ws1685_c00000{word-spacing:5.536000pt;}
.wsf00_c00000{word-spacing:5.536384pt;}
.ws1b0_c00000{word-spacing:5.541728pt;}
.ws207_c00000{word-spacing:5.552416pt;}
.ws1896_c00000{word-spacing:5.555200pt;}
.ws1b1_c00000{word-spacing:5.557760pt;}
.wsda4_c00000{word-spacing:5.561600pt;}
.ws355_c00000{word-spacing:5.563104pt;}
.ws190d_c00000{word-spacing:5.568000pt;}
.ws105b_c00000{word-spacing:5.568448pt;}
.ws1a5e_c00000{word-spacing:5.573792pt;}
.ws6be_c00000{word-spacing:5.574400pt;}
.ws781_c00000{word-spacing:5.580800pt;}
.ws1a5d_c00000{word-spacing:5.584480pt;}
.ws9cd_c00000{word-spacing:5.587200pt;}
.ws126d_c00000{word-spacing:5.589824pt;}
.ws1706_c00000{word-spacing:5.593600pt;}
.ws1178_c00000{word-spacing:5.595168pt;}
.ws80e_c00000{word-spacing:5.600000pt;}
.ws206_c00000{word-spacing:5.600512pt;}
.ws7ee_c00000{word-spacing:5.605856pt;}
.ws741_c00000{word-spacing:5.606400pt;}
.ws1a7f_c00000{word-spacing:5.611200pt;}
.wsa4a_c00000{word-spacing:5.612800pt;}
.wsacf_c00000{word-spacing:5.616544pt;}
.wsb8d_c00000{word-spacing:5.619200pt;}
.ws10eb_c00000{word-spacing:5.621888pt;}
.wsab6_c00000{word-spacing:5.625600pt;}
.wsa8d_c00000{word-spacing:5.632000pt;}
.ws7ef_c00000{word-spacing:5.632576pt;}
.ws126f_c00000{word-spacing:5.637920pt;}
.ws14e_c00000{word-spacing:5.638400pt;}
.wsf01_c00000{word-spacing:5.643264pt;}
.ws73f_c00000{word-spacing:5.644800pt;}
.ws19a6_c00000{word-spacing:5.648608pt;}
.ws3c5_c00000{word-spacing:5.651200pt;}
.ws14d_c00000{word-spacing:5.657600pt;}
.ws2f5_c00000{word-spacing:5.664000pt;}
.ws105a_c00000{word-spacing:5.669984pt;}
.ws761_c00000{word-spacing:5.670400pt;}
.ws871_c00000{word-spacing:5.676800pt;}
.ws1179_c00000{word-spacing:5.680672pt;}
.ws3e8_c00000{word-spacing:5.683200pt;}
.ws8e4_c00000{word-spacing:5.689600pt;}
.ws3c1_c00000{word-spacing:5.696000pt;}
.wsfc7_c00000{word-spacing:5.702048pt;}
.wsc8a_c00000{word-spacing:5.702400pt;}
.ws14c_c00000{word-spacing:5.708800pt;}
.ws760_c00000{word-spacing:5.715200pt;}
.ws9bf_c00000{word-spacing:5.721600pt;}
.ws14ba_c00000{word-spacing:5.723424pt;}
.ws6f9_c00000{word-spacing:5.728000pt;}
.ws141a_c00000{word-spacing:5.734112pt;}
.ws499_c00000{word-spacing:5.734400pt;}
.ws343_c00000{word-spacing:5.740800pt;}
.wsb6c_c00000{word-spacing:5.744800pt;}
.ws595_c00000{word-spacing:5.747200pt;}
.ws205_c00000{word-spacing:5.750144pt;}
.ws3e7_c00000{word-spacing:5.753600pt;}
.ws659_c00000{word-spacing:5.755488pt;}
.ws596_c00000{word-spacing:5.760000pt;}
.ws790_c00000{word-spacing:5.760832pt;}
.ws19eb_c00000{word-spacing:5.762304pt;}
.ws190f_c00000{word-spacing:5.766176pt;}
.ws3c0_c00000{word-spacing:5.766400pt;}
.ws17e9_c00000{word-spacing:5.768160pt;}
.ws508_c00000{word-spacing:5.771520pt;}
.ws2f6_c00000{word-spacing:5.772800pt;}
.ws163b_c00000{word-spacing:5.774016pt;}
.wse5d_c00000{word-spacing:5.776864pt;}
.ws89d_c00000{word-spacing:5.779200pt;}
.ws866_c00000{word-spacing:5.782208pt;}
.ws342_c00000{word-spacing:5.785600pt;}
.ws196f_c00000{word-spacing:5.785728pt;}
.ws58e_c00000{word-spacing:5.787552pt;}
.ws188c_c00000{word-spacing:5.791584pt;}
.ws80d_c00000{word-spacing:5.792000pt;}
.ws1419_c00000{word-spacing:5.792896pt;}
.ws17e8_c00000{word-spacing:5.797440pt;}
.wsa78_c00000{word-spacing:5.798240pt;}
.ws109f_c00000{word-spacing:5.798400pt;}
.wsadd_c00000{word-spacing:5.803296pt;}
.wsca9_c00000{word-spacing:5.803584pt;}
.ws1719_c00000{word-spacing:5.804800pt;}
.wsa79_c00000{word-spacing:5.808928pt;}
.ws1506_c00000{word-spacing:5.811200pt;}
.wsd00_c00000{word-spacing:5.814272pt;}
.wsdb3_c00000{word-spacing:5.817600pt;}
.ws1465_c00000{word-spacing:5.819616pt;}
.ws163c_c00000{word-spacing:5.820864pt;}
.wsa6f_c00000{word-spacing:5.824000pt;}
.ws202_c00000{word-spacing:5.824960pt;}
.ws1721_c00000{word-spacing:5.830304pt;}
.ws7e3_c00000{word-spacing:5.835648pt;}
.wsf45_c00000{word-spacing:5.836800pt;}
.ws1515_c00000{word-spacing:5.840992pt;}
.wsa93_c00000{word-spacing:5.843200pt;}
.ws1001_c00000{word-spacing:5.846336pt;}
.wsb64_c00000{word-spacing:5.849600pt;}
.wsd5e_c00000{word-spacing:5.851680pt;}
.wsa39_c00000{word-spacing:5.856000pt;}
.ws14a7_c00000{word-spacing:5.862400pt;}
.wsb18_c00000{word-spacing:5.867712pt;}
.wscc8_c00000{word-spacing:5.868800pt;}
.ws12a0_c00000{word-spacing:5.875200pt;}
.ws200_c00000{word-spacing:5.878400pt;}
.wsb17_c00000{word-spacing:5.883744pt;}
.ws19c4_c00000{word-spacing:5.888000pt;}
.ws1a59_c00000{word-spacing:5.889088pt;}
.ws4f2_c00000{word-spacing:5.894400pt;}
.ws197e_c00000{word-spacing:5.899776pt;}
.wscc9_c00000{word-spacing:5.900800pt;}
.ws19c3_c00000{word-spacing:5.907200pt;}
.ws163d_c00000{word-spacing:5.908704pt;}
.wsf1e_c00000{word-spacing:5.913600pt;}
.ws7b9_c00000{word-spacing:5.915808pt;}
.ws155_c00000{word-spacing:5.920000pt;}
.ws1306_c00000{word-spacing:5.921152pt;}
.wsdcc_c00000{word-spacing:5.926400pt;}
.ws792_c00000{word-spacing:5.926496pt;}
.ws1048_c00000{word-spacing:5.932800pt;}
.ws6ce_c00000{word-spacing:5.939200pt;}
.ws351_c00000{word-spacing:5.942528pt;}
.wsa91_c00000{word-spacing:5.945600pt;}
.wse20_c00000{word-spacing:5.947872pt;}
.ws24b_c00000{word-spacing:5.952000pt;}
.ws1003_c00000{word-spacing:5.953216pt;}
.ws5db_c00000{word-spacing:5.958400pt;}
.wscaa_c00000{word-spacing:5.958560pt;}
.ws19ca_c00000{word-spacing:5.963904pt;}
.ws150_c00000{word-spacing:5.964800pt;}
.ws141b_c00000{word-spacing:5.969248pt;}
.ws8b4_c00000{word-spacing:5.971200pt;}
.ws7dd_c00000{word-spacing:5.974592pt;}
.wsa1_c00000{word-spacing:5.977600pt;}
.ws1b2e_c00000{word-spacing:5.979936pt;}
.ws125a_c00000{word-spacing:5.984000pt;}
.ws10cc_c00000{word-spacing:5.985280pt;}
.ws5bc_c00000{word-spacing:5.990400pt;}
.ws962_c00000{word-spacing:5.996800pt;}
.wsd5f_c00000{word-spacing:6.001312pt;}
.ws5bb_c00000{word-spacing:6.003200pt;}
.wseb9_c00000{word-spacing:6.006656pt;}
.ws4a0_c00000{word-spacing:6.009600pt;}
.ws974_c00000{word-spacing:6.016000pt;}
.ws24a_c00000{word-spacing:6.022400pt;}
.ws1004_c00000{word-spacing:6.022688pt;}
.ws618_c00000{word-spacing:6.028800pt;}
.ws14f_c00000{word-spacing:6.035200pt;}
.wsc5c_c00000{word-spacing:6.041600pt;}
.ws956_c00000{word-spacing:6.044064pt;}
.ws789_c00000{word-spacing:6.048000pt;}
.wsb6b_c00000{word-spacing:6.049408pt;}
.ws5bd_c00000{word-spacing:6.054400pt;}
.ws1163_c00000{word-spacing:6.054752pt;}
.ws4f1_c00000{word-spacing:6.060800pt;}
.ws12ab_c00000{word-spacing:6.065440pt;}
.wsc8_c00000{word-spacing:6.067200pt;}
.wsed8_c00000{word-spacing:6.070784pt;}
.ws163a_c00000{word-spacing:6.072672pt;}
.ws72f_c00000{word-spacing:6.073600pt;}
.wse64_c00000{word-spacing:6.076128pt;}
.wsa0_c00000{word-spacing:6.080000pt;}
.ws7de_c00000{word-spacing:6.081472pt;}
.wsc7_c00000{word-spacing:6.086400pt;}
.ws658_c00000{word-spacing:6.086816pt;}
.ws791_c00000{word-spacing:6.092160pt;}
.ws8b3_c00000{word-spacing:6.092800pt;}
.ws1869_c00000{word-spacing:6.096096pt;}
.ws1505_c00000{word-spacing:6.097504pt;}
.wsb04_c00000{word-spacing:6.099200pt;}
.ws160c_c00000{word-spacing:6.101952pt;}
.wsf44_c00000{word-spacing:6.105600pt;}
.ws17ec_c00000{word-spacing:6.107808pt;}
.ws15a8_c00000{word-spacing:6.108192pt;}
.ws90d_c00000{word-spacing:6.112000pt;}
.wsb41_c00000{word-spacing:6.113536pt;}
.ws188b_c00000{word-spacing:6.113664pt;}
.ws151_c00000{word-spacing:6.118400pt;}
.wsb42_c00000{word-spacing:6.124224pt;}
.ws13e2_c00000{word-spacing:6.124800pt;}
.ws16af_c00000{word-spacing:6.125376pt;}
.wsd82_c00000{word-spacing:6.129568pt;}
.wsa5f_c00000{word-spacing:6.137088pt;}
.ws2eb_c00000{word-spacing:6.137600pt;}
.ws350_c00000{word-spacing:6.140256pt;}
.ws8be_c00000{word-spacing:6.142944pt;}
.wsf89_c00000{word-spacing:6.144000pt;}
.ws1722_c00000{word-spacing:6.145600pt;}
.ws1847_c00000{word-spacing:6.150400pt;}
.ws169c_c00000{word-spacing:6.153088pt;}
.ws86c_c00000{word-spacing:6.156288pt;}
.ws14b8_c00000{word-spacing:6.156800pt;}
.ws1991_c00000{word-spacing:6.158432pt;}
.ws1a8e_c00000{word-spacing:6.160512pt;}
.ws12f8_c00000{word-spacing:6.161632pt;}
.ws18e2_c00000{word-spacing:6.163200pt;}
.ws113_c00000{word-spacing:6.166976pt;}
.ws1024_c00000{word-spacing:6.169600pt;}
.ws19e1_c00000{word-spacing:6.172320pt;}
.wsc5b_c00000{word-spacing:6.182400pt;}
.wsfc5_c00000{word-spacing:6.183008pt;}
.ws11b_c00000{word-spacing:6.193696pt;}
.ws516_c00000{word-spacing:6.195200pt;}
.ws7df_c00000{word-spacing:6.199040pt;}
.ws5b3_c00000{word-spacing:6.201600pt;}
.ws193b_c00000{word-spacing:6.204384pt;}
.ws68f_c00000{word-spacing:6.208000pt;}
.wsb20_c00000{word-spacing:6.209728pt;}
.wsda3_c00000{word-spacing:6.214400pt;}
.ws5f5_c00000{word-spacing:6.215072pt;}
.ws165c_c00000{word-spacing:6.220416pt;}
.ws38f_c00000{word-spacing:6.220800pt;}
.wsb21_c00000{word-spacing:6.225760pt;}
.ws10e5_c00000{word-spacing:6.227200pt;}
.wsfef_c00000{word-spacing:6.233600pt;}
.ws15a7_c00000{word-spacing:6.236448pt;}
.ws8f9_c00000{word-spacing:6.240000pt;}
.ws19d6_c00000{word-spacing:6.241792pt;}
.ws517_c00000{word-spacing:6.246400pt;}
.wsfc6_c00000{word-spacing:6.247136pt;}
.ws17d9_c00000{word-spacing:6.252480pt;}
.wsceb_c00000{word-spacing:6.252800pt;}
.ws114_c00000{word-spacing:6.257824pt;}
.ws720_c00000{word-spacing:6.259200pt;}
.ws12f9_c00000{word-spacing:6.263168pt;}
.ws6ff_c00000{word-spacing:6.265600pt;}
.ws11c8_c00000{word-spacing:6.268512pt;}
.ws74f_c00000{word-spacing:6.272000pt;}
.wsc8b_c00000{word-spacing:6.273856pt;}
.ws5b4_c00000{word-spacing:6.278400pt;}
.ws865_c00000{word-spacing:6.284544pt;}
.ws291_c00000{word-spacing:6.284800pt;}
.ws3cd_c00000{word-spacing:6.291200pt;}
.ws14c5_c00000{word-spacing:6.295232pt;}
.ws515_c00000{word-spacing:6.297600pt;}
.ws14c7_c00000{word-spacing:6.300576pt;}
.ws3cc_c00000{word-spacing:6.304000pt;}
.wseba_c00000{word-spacing:6.305920pt;}
.ws750_c00000{word-spacing:6.310400pt;}
.ws10f_c00000{word-spacing:6.311264pt;}
.ws657_c00000{word-spacing:6.316608pt;}
.ws1a8_c00000{word-spacing:6.316800pt;}
.ws1e9_c00000{word-spacing:6.323200pt;}
.ws24e_c00000{word-spacing:6.329600pt;}
.ws1655_c00000{word-spacing:6.332640pt;}
.ws15e_c00000{word-spacing:6.336000pt;}
.ws6fe_c00000{word-spacing:6.342400pt;}
.ws15f_c00000{word-spacing:6.348800pt;}
.ws7c0_c00000{word-spacing:6.355200pt;}
.ws18e_c00000{word-spacing:6.361600pt;}
.ws24c_c00000{word-spacing:6.368000pt;}
.ws5f6_c00000{word-spacing:6.370048pt;}
.wsa48_c00000{word-spacing:6.374400pt;}
.ws1663_c00000{word-spacing:6.380736pt;}
.ws1a7_c00000{word-spacing:6.380800pt;}
.ws4c6_c00000{word-spacing:6.387200pt;}
.ws1664_c00000{word-spacing:6.391424pt;}
.ws18f_c00000{word-spacing:6.393600pt;}
.ws1167_c00000{word-spacing:6.396768pt;}
.ws24f_c00000{word-spacing:6.400000pt;}
.ws1398_c00000{word-spacing:6.402112pt;}
.ws4f5_c00000{word-spacing:6.406400pt;}
.ws5f4_c00000{word-spacing:6.407456pt;}
.ws74e_c00000{word-spacing:6.412800pt;}
.ws8a1_c00000{word-spacing:6.418144pt;}
.ws16f7_c00000{word-spacing:6.418176pt;}
.ws467_c00000{word-spacing:6.419200pt;}
.ws1958_c00000{word-spacing:6.424032pt;}
.ws8fa_c00000{word-spacing:6.425600pt;}
.ws12b3_c00000{word-spacing:6.428832pt;}
.ws558_c00000{word-spacing:6.432000pt;}
.ws12ac_c00000{word-spacing:6.434176pt;}
.ws15b8_c00000{word-spacing:6.435744pt;}
.ws24d_c00000{word-spacing:6.438400pt;}
.ws19fd_c00000{word-spacing:6.439520pt;}
.ws14c2_c00000{word-spacing:6.441600pt;}
.ws1684_c00000{word-spacing:6.444800pt;}
.ws1399_c00000{word-spacing:6.444864pt;}
.ws14c3_c00000{word-spacing:6.447456pt;}
.ws12af_c00000{word-spacing:6.451200pt;}
.wsa56_c00000{word-spacing:6.453312pt;}
.ws1e8_c00000{word-spacing:6.457600pt;}
.ws16f8_c00000{word-spacing:6.459168pt;}
.ws757_c00000{word-spacing:6.460896pt;}
.ws15cf_c00000{word-spacing:6.464000pt;}
.ws14dc_c00000{word-spacing:6.465024pt;}
.ws9c5_c00000{word-spacing:6.466240pt;}
.wseec_c00000{word-spacing:6.470400pt;}
.ws18ca_c00000{word-spacing:6.470880pt;}
.wsab3_c00000{word-spacing:6.473088pt;}
.ws9b9_c00000{word-spacing:6.476800pt;}
.wsf7b_c00000{word-spacing:6.476928pt;}
.ws15d0_c00000{word-spacing:6.482272pt;}
.ws14db_c00000{word-spacing:6.482592pt;}
.ws1282_c00000{word-spacing:6.483200pt;}
.ws15e1_c00000{word-spacing:6.487616pt;}
.ws14fe_c00000{word-spacing:6.489600pt;}
.ws5bf_c00000{word-spacing:6.492960pt;}
.ws1785_c00000{word-spacing:6.496000pt;}
.wsb93_c00000{word-spacing:6.498304pt;}
.wsff8_c00000{word-spacing:6.502400pt;}
.ws1668_c00000{word-spacing:6.508992pt;}
.ws1042_c00000{word-spacing:6.514336pt;}
.wsd62_c00000{word-spacing:6.515200pt;}
.ws15df_c00000{word-spacing:6.519680pt;}
.ws18a5_c00000{word-spacing:6.521600pt;}
.ws1750_c00000{word-spacing:6.530368pt;}
.ws1045_c00000{word-spacing:6.534400pt;}
.ws138a_c00000{word-spacing:6.535712pt;}
.wsd57_c00000{word-spacing:6.540800pt;}
.wsc76_c00000{word-spacing:6.541056pt;}
.ws836_c00000{word-spacing:6.547200pt;}
.ws6da_c00000{word-spacing:6.551744pt;}
.wsdcf_c00000{word-spacing:6.553600pt;}
.ws1990_c00000{word-spacing:6.557088pt;}
.ws283_c00000{word-spacing:6.560000pt;}
.ws6dc_c00000{word-spacing:6.562432pt;}
.ws96f_c00000{word-spacing:6.566400pt;}
.ws9c4_c00000{word-spacing:6.567776pt;}
.ws1031_c00000{word-spacing:6.572800pt;}
.ws138b_c00000{word-spacing:6.578464pt;}
.wsc99_c00000{word-spacing:6.579200pt;}
.ws912_c00000{word-spacing:6.583808pt;}
.ws970_c00000{word-spacing:6.585600pt;}
.ws5f7_c00000{word-spacing:6.589152pt;}
.wsca3_c00000{word-spacing:6.592000pt;}
.ws1a34_c00000{word-spacing:6.594496pt;}
.ws2b9_c00000{word-spacing:6.598400pt;}
.ws6db_c00000{word-spacing:6.599840pt;}
.ws4c5_c00000{word-spacing:6.604800pt;}
.ws913_c00000{word-spacing:6.605184pt;}
.wse63_c00000{word-spacing:6.610528pt;}
.wsaa3_c00000{word-spacing:6.611200pt;}
.ws3fc_c00000{word-spacing:6.617600pt;}
.ws1a37_c00000{word-spacing:6.621216pt;}
.ws2b8_c00000{word-spacing:6.624000pt;}
.ws12c5_c00000{word-spacing:6.626560pt;}
.ws9f2_c00000{word-spacing:6.630400pt;}
.ws198f_c00000{word-spacing:6.631904pt;}
.wsb06_c00000{word-spacing:6.636800pt;}
.ws15e0_c00000{word-spacing:6.642592pt;}
.ws1cf_c00000{word-spacing:6.643200pt;}
.wsbfd_c00000{word-spacing:6.649600pt;}
.ws11a_c00000{word-spacing:6.653280pt;}
.ws250_c00000{word-spacing:6.656000pt;}
.wsb43_c00000{word-spacing:6.658624pt;}
.ws281_c00000{word-spacing:6.662400pt;}
.wsd1f_c00000{word-spacing:6.668800pt;}
.ws12b2_c00000{word-spacing:6.674656pt;}
.ws25c_c00000{word-spacing:6.675200pt;}
.ws9a7_c00000{word-spacing:6.681600pt;}
.ws2b7_c00000{word-spacing:6.688000pt;}
.ws52d_c00000{word-spacing:6.694400pt;}
.ws1701_c00000{word-spacing:6.696032pt;}
.ws52c_c00000{word-spacing:6.700800pt;}
.ws139a_c00000{word-spacing:6.701376pt;}
.ws6c8_c00000{word-spacing:6.707200pt;}
.ws15bf_c00000{word-spacing:6.710976pt;}
.wseb7_c00000{word-spacing:6.712064pt;}
.ws3fd_c00000{word-spacing:6.713600pt;}
.wse1f_c00000{word-spacing:6.717408pt;}
.wseb_c00000{word-spacing:6.720000pt;}
.ws1731_c00000{word-spacing:6.722688pt;}
.ws1738_c00000{word-spacing:6.722752pt;}
.wsfb6_c00000{word-spacing:6.726400pt;}
.ws6aa_c00000{word-spacing:6.728096pt;}
.ws1730_c00000{word-spacing:6.728544pt;}
.wsea_c00000{word-spacing:6.732800pt;}
.ws157d_c00000{word-spacing:6.733440pt;}
.wse62_c00000{word-spacing:6.738784pt;}
.ws282_c00000{word-spacing:6.739200pt;}
.ws15a6_c00000{word-spacing:6.745600pt;}
.ws6ac_c00000{word-spacing:6.749472pt;}
.ws1080_c00000{word-spacing:6.751968pt;}
.ws13e6_c00000{word-spacing:6.752000pt;}
.ws835_c00000{word-spacing:6.758400pt;}
.ws192c_c00000{word-spacing:6.763680pt;}
.ws7c7_c00000{word-spacing:6.764800pt;}
.ws1402_c00000{word-spacing:6.765504pt;}
.ws1612_c00000{word-spacing:6.769536pt;}
.ws11ed_c00000{word-spacing:6.771200pt;}
.ws17e1_c00000{word-spacing:6.775392pt;}
.ws15a5_c00000{word-spacing:6.777600pt;}
.wsc57_c00000{word-spacing:6.784000pt;}
.ws150e_c00000{word-spacing:6.786880pt;}
.wsf9_c00000{word-spacing:6.790400pt;}
.ws12b1_c00000{word-spacing:6.792224pt;}
.ws150f_c00000{word-spacing:6.802912pt;}
.wsc80_c00000{word-spacing:6.803200pt;}
.ws7eb_c00000{word-spacing:6.808256pt;}
.ws7ec_c00000{word-spacing:6.813600pt;}
.ws5c0_c00000{word-spacing:6.818944pt;}
.ws1530_c00000{word-spacing:6.824288pt;}
.wsffc_c00000{word-spacing:6.829632pt;}
.wse1d_c00000{word-spacing:6.834976pt;}
.ws130c_c00000{word-spacing:6.835200pt;}
.ws157e_c00000{word-spacing:6.840320pt;}
.ws1a9f_c00000{word-spacing:6.841600pt;}
.ws904_c00000{word-spacing:6.848000pt;}
.ws5be_c00000{word-spacing:6.851008pt;}
.ws905_c00000{word-spacing:6.854400pt;}
.ws19c2_c00000{word-spacing:6.860800pt;}
.ws12c4_c00000{word-spacing:6.861696pt;}
.wsa4f_c00000{word-spacing:6.867040pt;}
.ws6d1_c00000{word-spacing:6.867200pt;}
.ws17f1_c00000{word-spacing:6.873600pt;}
.ws18af_c00000{word-spacing:6.877728pt;}
.wsf55_c00000{word-spacing:6.880000pt;}
.ws142a_c00000{word-spacing:6.883072pt;}
.ws157_c00000{word-spacing:6.886400pt;}
.ws1510_c00000{word-spacing:6.888416pt;}
.ws901_c00000{word-spacing:6.892800pt;}
.ws1836_c00000{word-spacing:6.893760pt;}
.ws155b_c00000{word-spacing:6.899104pt;}
.ws111d_c00000{word-spacing:6.899200pt;}
.ws14b3_c00000{word-spacing:6.904448pt;}
.ws2f9_c00000{word-spacing:6.905600pt;}
.ws18f1_c00000{word-spacing:6.909792pt;}
.ws1231_c00000{word-spacing:6.912000pt;}
.wse1c_c00000{word-spacing:6.915136pt;}
.ws719_c00000{word-spacing:6.918400pt;}
.wsdd7_c00000{word-spacing:6.920480pt;}
.wsfa_c00000{word-spacing:6.924800pt;}
.ws155a_c00000{word-spacing:6.925824pt;}
.ws1508_c00000{word-spacing:6.931200pt;}
.ws483_c00000{word-spacing:6.937600pt;}
.wsdd6_c00000{word-spacing:6.941856pt;}
.wsa18_c00000{word-spacing:6.944000pt;}
.ws1043_c00000{word-spacing:6.947200pt;}
.ws4b0_c00000{word-spacing:6.950400pt;}
.ws4d2_c00000{word-spacing:6.956800pt;}
.ws1c7_c00000{word-spacing:6.963200pt;}
.ws142b_c00000{word-spacing:6.968576pt;}
.ws4d3_c00000{word-spacing:6.969600pt;}
.ws158_c00000{word-spacing:6.976000pt;}
.wse1e_c00000{word-spacing:6.979264pt;}
.wsf56_c00000{word-spacing:6.982400pt;}
.ws1a70_c00000{word-spacing:6.984608pt;}
.ws4eb_c00000{word-spacing:6.988800pt;}
.ws1364_c00000{word-spacing:6.989952pt;}
.ws574_c00000{word-spacing:6.995200pt;}
.ws17d2_c00000{word-spacing:6.995296pt;}
.ws1142_c00000{word-spacing:7.000640pt;}
.ws2fa_c00000{word-spacing:7.001600pt;}
.ws1c6_c00000{word-spacing:7.008000pt;}
.ws482_c00000{word-spacing:7.014400pt;}
.wsffb_c00000{word-spacing:7.016672pt;}
.ws552_c00000{word-spacing:7.020800pt;}
.ws5a1_c00000{word-spacing:7.027200pt;}
.wsc0d_c00000{word-spacing:7.027360pt;}
.wse1a_c00000{word-spacing:7.032704pt;}
.wsf8_c00000{word-spacing:7.033600pt;}
.ws1571_c00000{word-spacing:7.038048pt;}
.ws156_c00000{word-spacing:7.040000pt;}
.wsb6d_c00000{word-spacing:7.043392pt;}
.ws17f7_c00000{word-spacing:7.044768pt;}
.wsae1_c00000{word-spacing:7.046400pt;}
.ws6ab_c00000{word-spacing:7.048736pt;}
.wseae_c00000{word-spacing:7.050624pt;}
.wsb2b_c00000{word-spacing:7.052800pt;}
.wsef1_c00000{word-spacing:7.054080pt;}
.ws7ac_c00000{word-spacing:7.059200pt;}
.wse1b_c00000{word-spacing:7.059424pt;}
.ws1a99_c00000{word-spacing:7.064768pt;}
.ws7bf_c00000{word-spacing:7.065600pt;}
.ws17f6_c00000{word-spacing:7.068192pt;}
.ws23d_c00000{word-spacing:7.070112pt;}
.ws900_c00000{word-spacing:7.072000pt;}
.wsadc_c00000{word-spacing:7.074048pt;}
.ws1487_c00000{word-spacing:7.075456pt;}
.ws1093_c00000{word-spacing:7.078400pt;}
.wsa57_c00000{word-spacing:7.079904pt;}
.wse7d_c00000{word-spacing:7.080800pt;}
.ws12dc_c00000{word-spacing:7.084800pt;}
.ws15f9_c00000{word-spacing:7.085760pt;}
.ws4d4_c00000{word-spacing:7.091200pt;}
.ws12fa_c00000{word-spacing:7.091488pt;}
.ws15fa_c00000{word-spacing:7.091616pt;}
.ws55e_c00000{word-spacing:7.097600pt;}
.ws8d5_c00000{word-spacing:7.103328pt;}
.ws13ad_c00000{word-spacing:7.104000pt;}
.wse94_c00000{word-spacing:7.107520pt;}
.wsb65_c00000{word-spacing:7.110400pt;}
.wsacc_c00000{word-spacing:7.112864pt;}
.ws118a_c00000{word-spacing:7.113088pt;}
.ws1b2d_c00000{word-spacing:7.118208pt;}
.ws786_c00000{word-spacing:7.123200pt;}
.wsacd_c00000{word-spacing:7.123552pt;}
.wsffe_c00000{word-spacing:7.128896pt;}
.ws1a74_c00000{word-spacing:7.129600pt;}
.ws15ea_c00000{word-spacing:7.134240pt;}
.wse95_c00000{word-spacing:7.139584pt;}
.ws11e5_c00000{word-spacing:7.142400pt;}
.ws1414_c00000{word-spacing:7.144928pt;}
.ws1165_c00000{word-spacing:7.150272pt;}
.wsa70_c00000{word-spacing:7.155200pt;}
.wse93_c00000{word-spacing:7.155616pt;}
.wsace_c00000{word-spacing:7.160960pt;}
.ws11cd_c00000{word-spacing:7.161600pt;}
.ws18fe_c00000{word-spacing:7.166304pt;}
.ws787_c00000{word-spacing:7.168000pt;}
.wsbca_c00000{word-spacing:7.174400pt;}
.wscfe_c00000{word-spacing:7.176992pt;}
.ws8cc_c00000{word-spacing:7.180800pt;}
.wsffd_c00000{word-spacing:7.182336pt;}
.ws11bd_c00000{word-spacing:7.187200pt;}
.wse7e_c00000{word-spacing:7.187680pt;}
.wsc65_c00000{word-spacing:7.193024pt;}
.wsda1_c00000{word-spacing:7.193600pt;}
.ws157c_c00000{word-spacing:7.198368pt;}
.ws11b7_c00000{word-spacing:7.200000pt;}
.ws1164_c00000{word-spacing:7.203712pt;}
.ws7ab_c00000{word-spacing:7.206400pt;}
.ws17c7_c00000{word-spacing:7.209056pt;}
.wsa4_c00000{word-spacing:7.212800pt;}
.wsc64_c00000{word-spacing:7.214400pt;}
.ws1883_c00000{word-spacing:7.219200pt;}
.ws50c_c00000{word-spacing:7.219744pt;}
.ws1141_c00000{word-spacing:7.225088pt;}
.ws1507_c00000{word-spacing:7.225600pt;}
.wse7f_c00000{word-spacing:7.230432pt;}
.ws89_c00000{word-spacing:7.232000pt;}
.ws14e2_c00000{word-spacing:7.235776pt;}
.wsae9_c00000{word-spacing:7.238400pt;}
.ws23e_c00000{word-spacing:7.241120pt;}
.ws821_c00000{word-spacing:7.244800pt;}
.wsed9_c00000{word-spacing:7.246464pt;}
.ws48a_c00000{word-spacing:7.251200pt;}
.ws1965_c00000{word-spacing:7.251808pt;}
.ws14b4_c00000{word-spacing:7.257152pt;}
.ws7a5_c00000{word-spacing:7.257600pt;}
.ws704_c00000{word-spacing:7.262496pt;}
.ws8b9_c00000{word-spacing:7.264000pt;}
.ws146b_c00000{word-spacing:7.267840pt;}
.ws4ba_c00000{word-spacing:7.270400pt;}
.ws4b9_c00000{word-spacing:7.276800pt;}
.ws15a4_c00000{word-spacing:7.283200pt;}
.ws13a9_c00000{word-spacing:7.283872pt;}
.ws5dd_c00000{word-spacing:7.289600pt;}
.wsa22_c00000{word-spacing:7.296000pt;}
.ws88_c00000{word-spacing:7.302400pt;}
.ws1488_c00000{word-spacing:7.305248pt;}
.wsac_c00000{word-spacing:7.308800pt;}
.ws18f6_c00000{word-spacing:7.310592pt;}
.ws93e_c00000{word-spacing:7.315200pt;}
.ws19a9_c00000{word-spacing:7.315936pt;}
.ws32f_c00000{word-spacing:7.321600pt;}
.ws7a6_c00000{word-spacing:7.328000pt;}
.wsb6f_c00000{word-spacing:7.331968pt;}
.ws14b_c00000{word-spacing:7.334400pt;}
.ws12a6_c00000{word-spacing:7.337312pt;}
.ws5ae_c00000{word-spacing:7.340800pt;}
.ws62e_c00000{word-spacing:7.342656pt;}
.ws822_c00000{word-spacing:7.347200pt;}
.wsfff_c00000{word-spacing:7.348000pt;}
.ws5fa_c00000{word-spacing:7.353344pt;}
.ws89c_c00000{word-spacing:7.353600pt;}
.wsca5_c00000{word-spacing:7.358688pt;}
.ws32e_c00000{word-spacing:7.360000pt;}
.ws680_c00000{word-spacing:7.364032pt;}
.ws8a_c00000{word-spacing:7.366400pt;}
.ws681_c00000{word-spacing:7.369376pt;}
.wsa35_c00000{word-spacing:7.372800pt;}
.ws10fb_c00000{word-spacing:7.374720pt;}
.ws1584_c00000{word-spacing:7.378560pt;}
.ws5af_c00000{word-spacing:7.379200pt;}
.ws1104_c00000{word-spacing:7.380064pt;}
.wsab_c00000{word-spacing:7.385600pt;}
.ws1362_c00000{word-spacing:7.390752pt;}
.wsabb_c00000{word-spacing:7.392000pt;}
.wsc11_c00000{word-spacing:7.396096pt;}
.ws1789_c00000{word-spacing:7.396128pt;}
.wsb38_c00000{word-spacing:7.398400pt;}
.ws1572_c00000{word-spacing:7.401440pt;}
.ws16a7_c00000{word-spacing:7.401984pt;}
.ws19bd_c00000{word-spacing:7.404800pt;}
.ws398_c00000{word-spacing:7.406784pt;}
.ws1747_c00000{word-spacing:7.411200pt;}
.ws1866_c00000{word-spacing:7.413696pt;}
.wse39_c00000{word-spacing:7.417472pt;}
.ws16b8_c00000{word-spacing:7.419552pt;}
.ws1a23_c00000{word-spacing:7.422816pt;}
.ws6ec_c00000{word-spacing:7.424000pt;}
.ws1a25_c00000{word-spacing:7.428160pt;}
.ws1a21_c00000{word-spacing:7.430400pt;}
.ws1109_c00000{word-spacing:7.433088pt;}
.ws1176_c00000{word-spacing:7.433504pt;}
.wscc0_c00000{word-spacing:7.436800pt;}
.ws1175_c00000{word-spacing:7.438848pt;}
.ws17c1_c00000{word-spacing:7.439488pt;}
.ws178b_c00000{word-spacing:7.442976pt;}
.ws17d4_c00000{word-spacing:7.443200pt;}
.ws1b26_c00000{word-spacing:7.444192pt;}
.ws7ed_c00000{word-spacing:7.449536pt;}
.ws11fe_c00000{word-spacing:7.456000pt;}
.wsabc_c00000{word-spacing:7.462400pt;}
.ws1363_c00000{word-spacing:7.465568pt;}
.ws17d5_c00000{word-spacing:7.468800pt;}
.ws14b0_c00000{word-spacing:7.470912pt;}
.ws33a_c00000{word-spacing:7.475200pt;}
.ws171a_c00000{word-spacing:7.481600pt;}
.ws17d1_c00000{word-spacing:7.492288pt;}
.wse46_c00000{word-spacing:7.494400pt;}
.ws5fb_c00000{word-spacing:7.497632pt;}
.ws4d8_c00000{word-spacing:7.500800pt;}
.ws1ac_c00000{word-spacing:7.502976pt;}
.wsa27_c00000{word-spacing:7.507200pt;}
.wsc8c_c00000{word-spacing:7.508320pt;}
.ws941_c00000{word-spacing:7.513600pt;}
.ws12a7_c00000{word-spacing:7.513664pt;}
.ws399_c00000{word-spacing:7.519008pt;}
.ws873_c00000{word-spacing:7.520000pt;}
.wsc0f_c00000{word-spacing:7.524352pt;}
.ws1cb_c00000{word-spacing:7.526400pt;}
.ws1177_c00000{word-spacing:7.529696pt;}
.ws195_c00000{word-spacing:7.532800pt;}
.ws733_c00000{word-spacing:7.535040pt;}
.ws33b_c00000{word-spacing:7.539200pt;}
.ws120c_c00000{word-spacing:7.545600pt;}
.ws1329_c00000{word-spacing:7.545728pt;}
.ws734_c00000{word-spacing:7.551072pt;}
.ws874_c00000{word-spacing:7.552000pt;}
.wse3a_c00000{word-spacing:7.556416pt;}
.ws3c4_c00000{word-spacing:7.558400pt;}
.wsd13_c00000{word-spacing:7.564800pt;}
.ws12d5_c00000{word-spacing:7.567104pt;}
.ws133_c00000{word-spacing:7.571200pt;}
.ws1a4e_c00000{word-spacing:7.572448pt;}
.ws696_c00000{word-spacing:7.577600pt;}
.ws19bb_c00000{word-spacing:7.577792pt;}
.ws165a_c00000{word-spacing:7.583136pt;}
.ws906_c00000{word-spacing:7.584000pt;}
.ws1aa0_c00000{word-spacing:7.588480pt;}
.ws1cc_c00000{word-spacing:7.590400pt;}
.wsbe3_c00000{word-spacing:7.593824pt;}
.ws194_c00000{word-spacing:7.596800pt;}
.ws1246_c00000{word-spacing:7.599168pt;}
.ws91e_c00000{word-spacing:7.603200pt;}
.ws27f_c00000{word-spacing:7.609600pt;}
.ws1652_c00000{word-spacing:7.609856pt;}
.wsa5_c00000{word-spacing:7.616000pt;}
.ws91d_c00000{word-spacing:7.622400pt;}
.ws7b2_c00000{word-spacing:7.628800pt;}
.ws784_c00000{word-spacing:7.635200pt;}
.wsec_c00000{word-spacing:7.641600pt;}
.ws4bc_c00000{word-spacing:7.648000pt;}
.ws280_c00000{word-spacing:7.654400pt;}
.ws1a61_c00000{word-spacing:7.659648pt;}
.ws29a_c00000{word-spacing:7.660800pt;}
.wsec0_c00000{word-spacing:7.663296pt;}
.ws53a_c00000{word-spacing:7.667200pt;}
.ws4da_c00000{word-spacing:7.673600pt;}
.wsc8e_c00000{word-spacing:7.673984pt;}
.ws651_c00000{word-spacing:7.679328pt;}
.ws196_c00000{word-spacing:7.680000pt;}
.ws1245_c00000{word-spacing:7.684672pt;}
.wsa6_c00000{word-spacing:7.686400pt;}
.ws62d_c00000{word-spacing:7.690016pt;}
.ws38e_c00000{word-spacing:7.692800pt;}
.ws7bb_c00000{word-spacing:7.695360pt;}
.ws38d_c00000{word-spacing:7.699200pt;}
.ws1950_c00000{word-spacing:7.700640pt;}
.ws1af7_c00000{word-spacing:7.700704pt;}
.ws134_c00000{word-spacing:7.705600pt;}
.ws194f_c00000{word-spacing:7.706496pt;}
.wse85_c00000{word-spacing:7.711392pt;}
.wsb02_c00000{word-spacing:7.712000pt;}
.ws18de_c00000{word-spacing:7.712352pt;}
.wsa06_c00000{word-spacing:7.716736pt;}
.ws16a0_c00000{word-spacing:7.718208pt;}
.ws4d9_c00000{word-spacing:7.718400pt;}
.ws1946_c00000{word-spacing:7.724064pt;}
.ws106f_c00000{word-spacing:7.724800pt;}
.ws10c4_c00000{word-spacing:7.727424pt;}
.ws8ba_c00000{word-spacing:7.731200pt;}
.ws1481_c00000{word-spacing:7.732768pt;}
.ws156d_c00000{word-spacing:7.738112pt;}
.ws10b9_c00000{word-spacing:7.744000pt;}
.ws19ec_c00000{word-spacing:7.747488pt;}
.ws194c_c00000{word-spacing:7.753344pt;}
.ws1ada_c00000{word-spacing:7.754144pt;}
.ws1009_c00000{word-spacing:7.756800pt;}
.ws652_c00000{word-spacing:7.759488pt;}
.ws181f_c00000{word-spacing:7.763200pt;}
.ws897_c00000{word-spacing:7.769600pt;}
.ws9e7_c00000{word-spacing:7.770176pt;}
.ws653_c00000{word-spacing:7.775520pt;}
.ws997_c00000{word-spacing:7.776000pt;}
.ws9e6_c00000{word-spacing:7.780864pt;}
.wsb53_c00000{word-spacing:7.786208pt;}
.ws751_c00000{word-spacing:7.788800pt;}
.ws14ae_c00000{word-spacing:7.791552pt;}
.wscec_c00000{word-spacing:7.795200pt;}
.ws153f_c00000{word-spacing:7.796896pt;}
.wscc5_c00000{word-spacing:7.801600pt;}
.ws156e_c00000{word-spacing:7.807584pt;}
.ws872_c00000{word-spacing:7.808000pt;}
.wsc10_c00000{word-spacing:7.812928pt;}
.wsda5_c00000{word-spacing:7.814400pt;}
.ws10ae_c00000{word-spacing:7.818272pt;}
.wsda6_c00000{word-spacing:7.820800pt;}
.ws8ae_c00000{word-spacing:7.827200pt;}
.ws13c7_c00000{word-spacing:7.828960pt;}
.wsa8a_c00000{word-spacing:7.833600pt;}
.ws14af_c00000{word-spacing:7.834304pt;}
.ws174f_c00000{word-spacing:7.839648pt;}
.ws9a9_c00000{word-spacing:7.840000pt;}
.ws10ac_c00000{word-spacing:7.844992pt;}
.ws1211_c00000{word-spacing:7.846400pt;}
.ws10ad_c00000{word-spacing:7.850336pt;}
.ws69a_c00000{word-spacing:7.852800pt;}
.wsb54_c00000{word-spacing:7.855680pt;}
.ws4bd_c00000{word-spacing:7.859200pt;}
.wsb67_c00000{word-spacing:7.865600pt;}
.ws1379_c00000{word-spacing:7.866368pt;}
.ws194e_c00000{word-spacing:7.871712pt;}
.ws827_c00000{word-spacing:7.872000pt;}
.ws1f6_c00000{word-spacing:7.872192pt;}
.ws17a4_c00000{word-spacing:7.877056pt;}
.ws1e6_c00000{word-spacing:7.878400pt;}
.ws69c_c00000{word-spacing:7.884800pt;}
.wsc8d_c00000{word-spacing:7.887744pt;}
.ws49b_c00000{word-spacing:7.891200pt;}
.ws1328_c00000{word-spacing:7.893088pt;}
.ws685_c00000{word-spacing:7.897600pt;}
.ws1122_c00000{word-spacing:7.903776pt;}
.ws27a_c00000{word-spacing:7.904000pt;}
.ws1902_c00000{word-spacing:7.909120pt;}
.wsaf1_c00000{word-spacing:7.910400pt;}
.wsf87_c00000{word-spacing:7.914464pt;}
.ws2e8_c00000{word-spacing:7.916800pt;}
.ws1a24_c00000{word-spacing:7.919808pt;}
.wsc7d_c00000{word-spacing:7.923200pt;}
.wsc12_c00000{word-spacing:7.925152pt;}
.ws2e7_c00000{word-spacing:7.929600pt;}
.ws1e5_c00000{word-spacing:7.936000pt;}
.ws896_c00000{word-spacing:7.942400pt;}
.ws2a1_c00000{word-spacing:7.948800pt;}
.ws69b_c00000{word-spacing:7.955200pt;}
.ws8d0_c00000{word-spacing:7.961600pt;}
.ws13fd_c00000{word-spacing:7.967904pt;}
.ws54e_c00000{word-spacing:7.968000pt;}
.ws13fb_c00000{word-spacing:7.973248pt;}
.wsde_c00000{word-spacing:7.974400pt;}
.ws10b2_c00000{word-spacing:7.978592pt;}
.ws381_c00000{word-spacing:7.980800pt;}
.ws1978_c00000{word-spacing:7.983936pt;}
.ws9a8_c00000{word-spacing:7.987200pt;}
.ws54f_c00000{word-spacing:7.993600pt;}
.ws1907_c00000{word-spacing:7.994624pt;}
.ws1226_c00000{word-spacing:7.999968pt;}
.wsdf_c00000{word-spacing:8.000000pt;}
.ws10fc_c00000{word-spacing:8.005312pt;}
.ws6c4_c00000{word-spacing:8.006400pt;}
.ws17b6_c00000{word-spacing:8.010656pt;}
.ws8af_c00000{word-spacing:8.012800pt;}
.ws851_c00000{word-spacing:8.016000pt;}
.wsae8_c00000{word-spacing:8.019200pt;}
.ws826_c00000{word-spacing:8.025600pt;}
.ws1682_c00000{word-spacing:8.028576pt;}
.wscc6_c00000{word-spacing:8.032000pt;}
.ws1683_c00000{word-spacing:8.034432pt;}
.ws49a_c00000{word-spacing:8.038400pt;}
.ws17b2_c00000{word-spacing:8.044800pt;}
.ws13fc_c00000{word-spacing:8.048064pt;}
.wsa8b_c00000{word-spacing:8.051200pt;}
.wsfc8_c00000{word-spacing:8.053408pt;}
.ws133b_c00000{word-spacing:8.058752pt;}
.wsd0c_c00000{word-spacing:8.064000pt;}
.ws1384_c00000{word-spacing:8.064096pt;}
.ws1825_c00000{word-spacing:8.069440pt;}
.ws752_c00000{word-spacing:8.070400pt;}
.ws1839_c00000{word-spacing:8.073088pt;}
.ws1850_c00000{word-spacing:8.074784pt;}
.ws17a8_c00000{word-spacing:8.076800pt;}
.ws13d4_c00000{word-spacing:8.080128pt;}
.ws178f_c00000{word-spacing:8.083200pt;}
.ws231_c00000{word-spacing:8.089600pt;}
.wsf86_c00000{word-spacing:8.090816pt;}
.ws1782_c00000{word-spacing:8.096000pt;}
.ws10b0_c00000{word-spacing:8.096160pt;}
.ws15db_c00000{word-spacing:8.102400pt;}
.ws19cc_c00000{word-spacing:8.106848pt;}
.ws10e6_c00000{word-spacing:8.108800pt;}
.ws13d3_c00000{word-spacing:8.112192pt;}
.ws13d5_c00000{word-spacing:8.117536pt;}
.ws1557_c00000{word-spacing:8.121600pt;}
.ws1790_c00000{word-spacing:8.128000pt;}
.ws16ff_c00000{word-spacing:8.128224pt;}
.ws16e1_c00000{word-spacing:8.134400pt;}
.ws1631_c00000{word-spacing:8.140800pt;}
.ws88d_c00000{word-spacing:8.147200pt;}
.ws133c_c00000{word-spacing:8.149600pt;}
.wsa99_c00000{word-spacing:8.153600pt;}
.ws603_c00000{word-spacing:8.154944pt;}
.ws233_c00000{word-spacing:8.160000pt;}
.ws1826_c00000{word-spacing:8.165632pt;}
.ws11aa_c00000{word-spacing:8.166400pt;}
.wsa05_c00000{word-spacing:8.170976pt;}
.ws2a3_c00000{word-spacing:8.172800pt;}
.ws15a0_c00000{word-spacing:8.176320pt;}
.wsf9d_c00000{word-spacing:8.179200pt;}
.ws182b_c00000{word-spacing:8.181664pt;}
.wse89_c00000{word-spacing:8.185600pt;}
.ws5d3_c00000{word-spacing:8.192000pt;}
.wsf88_c00000{word-spacing:8.192352pt;}
.ws1700_c00000{word-spacing:8.197696pt;}
.ws161a_c00000{word-spacing:8.198400pt;}
.wsb3f_c00000{word-spacing:8.204800pt;}
.ws154d_c00000{word-spacing:8.208384pt;}
.wsec6_c00000{word-spacing:8.211200pt;}
.ws604_c00000{word-spacing:8.213728pt;}
.wsaaf_c00000{word-spacing:8.217600pt;}
.ws2a2_c00000{word-spacing:8.224000pt;}
.ws10b1_c00000{word-spacing:8.224416pt;}
.ws154c_c00000{word-spacing:8.229760pt;}
.ws95b_c00000{word-spacing:8.230400pt;}
.ws711_c00000{word-spacing:8.236800pt;}
.ws1e7_c00000{word-spacing:8.243200pt;}
.wsc9_c00000{word-spacing:8.249600pt;}
.ws650_c00000{word-spacing:8.256000pt;}
.ws6c1_c00000{word-spacing:8.262400pt;}
.ws159f_c00000{word-spacing:8.267168pt;}
.ws5d4_c00000{word-spacing:8.268800pt;}
.ws1699_c00000{word-spacing:8.272512pt;}
.wsb37_c00000{word-spacing:8.275200pt;}
.ws18e7_c00000{word-spacing:8.277856pt;}
.ws373_c00000{word-spacing:8.281600pt;}
.ws648_c00000{word-spacing:8.288000pt;}
.ws1859_c00000{word-spacing:8.288544pt;}
.ws503_c00000{word-spacing:8.294400pt;}
.ws12b6_c00000{word-spacing:8.299232pt;}
.ws68c_c00000{word-spacing:8.300800pt;}
.wsbac_c00000{word-spacing:8.303808pt;}
.ws587_c00000{word-spacing:8.307200pt;}
.ws232_c00000{word-spacing:8.313600pt;}
.wsc60_c00000{word-spacing:8.315264pt;}
.wsca_c00000{word-spacing:8.320000pt;}
.wsfac_c00000{word-spacing:8.320608pt;}
.ws30c_c00000{word-spacing:8.325952pt;}
.ws244_c00000{word-spacing:8.326400pt;}
.ws5a7_c00000{word-spacing:8.331296pt;}
.ws88e_c00000{word-spacing:8.332800pt;}
.ws19b6_c00000{word-spacing:8.333088pt;}
.wse78_c00000{word-spacing:8.336640pt;}
.ws16a8_c00000{word-spacing:8.338944pt;}
.ws72c_c00000{word-spacing:8.339200pt;}
.ws30d_c00000{word-spacing:8.341984pt;}
.ws16a9_c00000{word-spacing:8.344800pt;}
.ws245_c00000{word-spacing:8.345600pt;}
.ws796_c00000{word-spacing:8.347328pt;}
.ws147a_c00000{word-spacing:8.352000pt;}
.wsbaa_c00000{word-spacing:8.356512pt;}
.ws374_c00000{word-spacing:8.358400pt;}
.ws1737_c00000{word-spacing:8.371200pt;}
.wsc1d_c00000{word-spacing:8.377600pt;}
.ws983_c00000{word-spacing:8.379936pt;}
.ws1502_c00000{word-spacing:8.385792pt;}
.ws1802_c00000{word-spacing:8.390080pt;}
.wscc1_c00000{word-spacing:8.390400pt;}
.ws1801_c00000{word-spacing:8.395424pt;}
.ws1afd_c00000{word-spacing:8.396800pt;}
.ws1503_c00000{word-spacing:8.397504pt;}
.wsdf2_c00000{word-spacing:8.400768pt;}
.ws1066_c00000{word-spacing:8.411456pt;}
.ws984_c00000{word-spacing:8.415072pt;}
.ws1218_c00000{word-spacing:8.416000pt;}
.ws1818_c00000{word-spacing:8.416800pt;}
.wsaa4_c00000{word-spacing:8.422400pt;}
.wse3e_c00000{word-spacing:8.427488pt;}
.ws1060_c00000{word-spacing:8.428800pt;}
.wsfc9_c00000{word-spacing:8.432832pt;}
.ws184e_c00000{word-spacing:8.435200pt;}
.ws188f_c00000{word-spacing:8.441600pt;}
.ws15de_c00000{word-spacing:8.443520pt;}
.ws107b_c00000{word-spacing:8.448000pt;}
.ws532_c00000{word-spacing:8.448864pt;}
.ws315_c00000{word-spacing:8.454208pt;}
.ws885_c00000{word-spacing:8.454400pt;}
.wsdf0_c00000{word-spacing:8.459552pt;}
.wsb8f_c00000{word-spacing:8.460800pt;}
.ws1a2a_c00000{word-spacing:8.467200pt;}
.ws42e_c00000{word-spacing:8.473600pt;}
.wsdf1_c00000{word-spacing:8.475584pt;}
.ws1b0d_c00000{word-spacing:8.480000pt;}
.wse79_c00000{word-spacing:8.480928pt;}
.ws1862_c00000{word-spacing:8.486400pt;}
.ws12b5_c00000{word-spacing:8.491616pt;}
.ws10e7_c00000{word-spacing:8.492800pt;}
.wsfca_c00000{word-spacing:8.496960pt;}
.ws1704_c00000{word-spacing:8.499200pt;}
.ws316_c00000{word-spacing:8.502304pt;}
.ws107c_c00000{word-spacing:8.505600pt;}
.ws1ac3_c00000{word-spacing:8.512000pt;}
.ws1587_c00000{word-spacing:8.512992pt;}
.wsdef_c00000{word-spacing:8.518336pt;}
.ws808_c00000{word-spacing:8.518400pt;}
.ws178c_c00000{word-spacing:8.523680pt;}
.wsb3a_c00000{word-spacing:8.524800pt;}
.ws1065_c00000{word-spacing:8.529024pt;}
.ws445_c00000{word-spacing:8.531200pt;}
.ws1b08_c00000{word-spacing:8.534368pt;}
.ws64c_c00000{word-spacing:8.537600pt;}
.ws184f_c00000{word-spacing:8.539712pt;}
.ws525_c00000{word-spacing:8.544000pt;}
.ws308_c00000{word-spacing:8.550400pt;}
.ws4a5_c00000{word-spacing:8.556800pt;}
.ws307_c00000{word-spacing:8.563200pt;}
.ws725_c00000{word-spacing:8.569600pt;}
.ws3e1_c00000{word-spacing:8.576000pt;}
.ws829_c00000{word-spacing:8.582400pt;}
.ws526_c00000{word-spacing:8.588800pt;}
.ws42f_c00000{word-spacing:8.595200pt;}
.ws169b_c00000{word-spacing:8.598496pt;}
.ws668_c00000{word-spacing:8.601600pt;}
.ws146d_c00000{word-spacing:8.603840pt;}
.ws946_c00000{word-spacing:8.608000pt;}
.ws1332_c00000{word-spacing:8.609184pt;}
.wsc0_c00000{word-spacing:8.614400pt;}
.ws146c_c00000{word-spacing:8.619872pt;}
.ws42d_c00000{word-spacing:8.620800pt;}
.ws8e8_c00000{word-spacing:8.627200pt;}
.ws18d7_c00000{word-spacing:8.631744pt;}
.ws18a_c00000{word-spacing:8.633600pt;}
.wsd5b_c00000{word-spacing:8.635904pt;}
.ws82a_c00000{word-spacing:8.640000pt;}
.ws39f_c00000{word-spacing:8.641248pt;}
.ws524_c00000{word-spacing:8.646400pt;}
.ws10f2_c00000{word-spacing:8.646592pt;}
.ws313_c00000{word-spacing:8.651936pt;}
.wsad4_c00000{word-spacing:8.652800pt;}
.ws312_c00000{word-spacing:8.657280pt;}
.ws95c_c00000{word-spacing:8.659200pt;}
.wsd99_c00000{word-spacing:8.665600pt;}
.ws158c_c00000{word-spacing:8.666880pt;}
.ws164d_c00000{word-spacing:8.667968pt;}
.ws82b_c00000{word-spacing:8.672000pt;}
.ws158d_c00000{word-spacing:8.672736pt;}
.ws590_c00000{word-spacing:8.678400pt;}
.ws1590_c00000{word-spacing:8.678592pt;}
.wsbab_c00000{word-spacing:8.684448pt;}
.ws195e_c00000{word-spacing:8.684800pt;}
.ws1993_c00000{word-spacing:8.689344pt;}
.ws1591_c00000{word-spacing:8.690304pt;}
.ws96a_c00000{word-spacing:8.691200pt;}
.ws18d6_c00000{word-spacing:8.696160pt;}
.ws148f_c00000{word-spacing:8.697600pt;}
.ws1628_c00000{word-spacing:8.700032pt;}
.ws17ef_c00000{word-spacing:8.702016pt;}
.ws5e4_c00000{word-spacing:8.704000pt;}
.ws1aa8_c00000{word-spacing:8.705376pt;}
.ws1a8f_c00000{word-spacing:8.707872pt;}
.ws1b1c_c00000{word-spacing:8.710400pt;}
.wsd27_c00000{word-spacing:8.710720pt;}
.ws1771_c00000{word-spacing:8.716064pt;}
.ws1a22_c00000{word-spacing:8.716800pt;}
.ws1751_c00000{word-spacing:8.721408pt;}
.wsd26_c00000{word-spacing:8.726752pt;}
.ws1abf_c00000{word-spacing:8.729600pt;}
.ws39e_c00000{word-spacing:8.732096pt;}
.ws189_c00000{word-spacing:8.736000pt;}
.ws39d_c00000{word-spacing:8.737440pt;}
.ws121d_c00000{word-spacing:8.742400pt;}
.ws531_c00000{word-spacing:8.742784pt;}
.ws11af_c00000{word-spacing:8.748800pt;}
.ws105c_c00000{word-spacing:8.753472pt;}
.ws14be_c00000{word-spacing:8.755200pt;}
.ws1340_c00000{word-spacing:8.758816pt;}
.ws11de_c00000{word-spacing:8.761600pt;}
.ws18d8_c00000{word-spacing:8.764160pt;}
.wsc53_c00000{word-spacing:8.768000pt;}
.ws1a85_c00000{word-spacing:8.774400pt;}
.ws271_c00000{word-spacing:8.780800pt;}
.ws504_c00000{word-spacing:8.787200pt;}
.ws18e6_c00000{word-spacing:8.790880pt;}
.ws71_c00000{word-spacing:8.791776pt;}
.ws18e5_c00000{word-spacing:8.796224pt;}
.wscb0_c00000{word-spacing:8.800000pt;}
.wsa77_c00000{word-spacing:8.801568pt;}
.wsc02_c00000{word-spacing:8.806400pt;}
.ws1abc_c00000{word-spacing:8.806912pt;}
.ws164b_c00000{word-spacing:8.812256pt;}
.ws32b_c00000{word-spacing:8.812800pt;}
.ws164a_c00000{word-spacing:8.817600pt;}
.wsbfe_c00000{word-spacing:8.819200pt;}
.ws12d2_c00000{word-spacing:8.822944pt;}
.ws581_c00000{word-spacing:8.825600pt;}
.wsc69_c00000{word-spacing:8.832000pt;}
.ws14ec_c00000{word-spacing:8.833632pt;}
.ws436_c00000{word-spacing:8.838400pt;}
.ws12d1_c00000{word-spacing:8.838976pt;}
.ws5d6_c00000{word-spacing:8.844800pt;}
.ws12b7_c00000{word-spacing:8.849664pt;}
.wsb01_c00000{word-spacing:8.851200pt;}
.ws1647_c00000{word-spacing:8.855008pt;}
.ws5e6_c00000{word-spacing:8.857600pt;}
.ws133f_c00000{word-spacing:8.860352pt;}
.ws8e3_c00000{word-spacing:8.864000pt;}
.ws3b4_c00000{word-spacing:8.870400pt;}
.ws1a32_c00000{word-spacing:8.871040pt;}
.ws18d9_c00000{word-spacing:8.876384pt;}
.ws14a8_c00000{word-spacing:8.876800pt;}
.ws18e8_c00000{word-spacing:8.881728pt;}
.ws3b5_c00000{word-spacing:8.883200pt;}
.ws586_c00000{word-spacing:8.889600pt;}
.wse5_c00000{word-spacing:8.896000pt;}
.wse4_c00000{word-spacing:8.902400pt;}
.wsf0d_c00000{word-spacing:8.908800pt;}
.ws1a31_c00000{word-spacing:8.913792pt;}
.ws389_c00000{word-spacing:8.915200pt;}
.ws64f_c00000{word-spacing:8.921600pt;}
.ws428_c00000{word-spacing:8.928000pt;}
.ws437_c00000{word-spacing:8.934400pt;}
.ws19d5_c00000{word-spacing:8.940512pt;}
.ws32a_c00000{word-spacing:8.940800pt;}
.wsd68_c00000{word-spacing:8.945856pt;}
.ws502_c00000{word-spacing:8.947200pt;}
.ws5e5_c00000{word-spacing:8.953600pt;}
.ws1366_c00000{word-spacing:8.956544pt;}
.ws299_c00000{word-spacing:8.960000pt;}
.wse5e_c00000{word-spacing:8.961888pt;}
.ws270_c00000{word-spacing:8.966400pt;}
.wsebf_c00000{word-spacing:8.967232pt;}
.ws163e_c00000{word-spacing:8.971392pt;}
.ws6a9_c00000{word-spacing:8.972576pt;}
.ws9ec_c00000{word-spacing:8.972800pt;}
.ws931_c00000{word-spacing:8.977920pt;}
.ws110b_c00000{word-spacing:8.979200pt;}
.ws8ff_c00000{word-spacing:8.983264pt;}
.ws9ed_c00000{word-spacing:8.985600pt;}
.ws1af4_c00000{word-spacing:8.988608pt;}
.ws580_c00000{word-spacing:8.992000pt;}
.ws9a4_c00000{word-spacing:8.993952pt;}
.ws1b41_c00000{word-spacing:8.994816pt;}
.ws298_c00000{word-spacing:8.998400pt;}
.ws72_c00000{word-spacing:9.005376pt;}
.ws17a1_c00000{word-spacing:9.011200pt;}
.ws8fd_c00000{word-spacing:9.015328pt;}
.ws1b1b_c00000{word-spacing:9.020672pt;}
.ws12c8_c00000{word-spacing:9.024000pt;}
.ws85e_c00000{word-spacing:9.026016pt;}
.ws9ef_c00000{word-spacing:9.029952pt;}
.ws1987_c00000{word-spacing:9.030400pt;}
.ws1b18_c00000{word-spacing:9.033088pt;}
.ws1269_c00000{word-spacing:9.036704pt;}
.ws1619_c00000{word-spacing:9.036800pt;}
.ws85f_c00000{word-spacing:9.042048pt;}
.ws272_c00000{word-spacing:9.043200pt;}
.ws6a8_c00000{word-spacing:9.047392pt;}
.ws185d_c00000{word-spacing:9.049600pt;}
.ws9a5_c00000{word-spacing:9.052736pt;}
.ws1374_c00000{word-spacing:9.058080pt;}
.wsaa8_c00000{word-spacing:9.062400pt;}
.ws111f_c00000{word-spacing:9.063424pt;}
.ws38a_c00000{word-spacing:9.068800pt;}
.ws105e_c00000{word-spacing:9.074112pt;}
.ws119b_c00000{word-spacing:9.075200pt;}
.ws18a2_c00000{word-spacing:9.081600pt;}
.ws105f_c00000{word-spacing:9.084800pt;}
.wsb7e_c00000{word-spacing:9.088000pt;}
.ws154b_c00000{word-spacing:9.090144pt;}
.ws1830_c00000{word-spacing:9.095488pt;}
.ws4aa_c00000{word-spacing:9.100800pt;}
.ws74a_c00000{word-spacing:9.107200pt;}
.wsb98_c00000{word-spacing:9.111520pt;}
.ws170c_c00000{word-spacing:9.116864pt;}
.ws476_c00000{word-spacing:9.120000pt;}
.wsd69_c00000{word-spacing:9.122208pt;}
.ws470_c00000{word-spacing:9.126400pt;}
.ws7cb_c00000{word-spacing:9.132800pt;}
.ws8fe_c00000{word-spacing:9.132896pt;}
.wsb2e_c00000{word-spacing:9.139200pt;}
.ws6b2_c00000{word-spacing:9.143584pt;}
.ws477_c00000{word-spacing:9.145600pt;}
.ws96e_c00000{word-spacing:9.152000pt;}
.ws1228_c00000{word-spacing:9.154272pt;}
.ws748_c00000{word-spacing:9.158400pt;}
.ws3d9_c00000{word-spacing:9.164800pt;}
.ws177e_c00000{word-spacing:9.164960pt;}
.ws58a_c00000{word-spacing:9.171200pt;}
.ws3d8_c00000{word-spacing:9.177600pt;}
.ws55d_c00000{word-spacing:9.184000pt;}
.ws4bb_c00000{word-spacing:9.190400pt;}
.ws1365_c00000{word-spacing:9.191680pt;}
.ws8cf_c00000{word-spacing:9.196800pt;}
.ws1331_c00000{word-spacing:9.197024pt;}
.ws4ab_c00000{word-spacing:9.203200pt;}
.ws17a_c00000{word-spacing:9.209600pt;}
.ws8d_c00000{word-spacing:9.216000pt;}
.ws46f_c00000{word-spacing:9.222400pt;}
.ws3f1_c00000{word-spacing:9.228800pt;}
.ws293_c00000{word-spacing:9.235200pt;}
.ws5b7_c00000{word-spacing:9.241600pt;}
.ws1428_c00000{word-spacing:9.245120pt;}
.ws179_c00000{word-spacing:9.248000pt;}
.ws105d_c00000{word-spacing:9.250464pt;}
.ws8c_c00000{word-spacing:9.254400pt;}
.ws1574_c00000{word-spacing:9.255808pt;}
.ws388_c00000{word-spacing:9.260800pt;}
.ws932_c00000{word-spacing:9.266496pt;}
.ws3c3_c00000{word-spacing:9.267200pt;}
.ws149f_c00000{word-spacing:9.271840pt;}
.ws8b_c00000{word-spacing:9.273600pt;}
.wsb57_c00000{word-spacing:9.277184pt;}
.wsaa7_c00000{word-spacing:9.280000pt;}
.wsadb_c00000{word-spacing:9.281760pt;}
.wsc7e_c00000{word-spacing:9.286400pt;}
.wsd86_c00000{word-spacing:9.287872pt;}
.ws78a_c00000{word-spacing:9.292800pt;}
.wsc36_c00000{word-spacing:9.299200pt;}
.ws909_c00000{word-spacing:9.305600pt;}
.wsf46_c00000{word-spacing:9.312000pt;}
.ws194b_c00000{word-spacing:9.316896pt;}
.ws185c_c00000{word-spacing:9.318400pt;}
.ws1268_c00000{word-spacing:9.319936pt;}
.ws102f_c00000{word-spacing:9.324800pt;}
.ws197d_c00000{word-spacing:9.325280pt;}
.ws15fe_c00000{word-spacing:9.328608pt;}
.ws1a76_c00000{word-spacing:9.330624pt;}
.wsdb2_c00000{word-spacing:9.331200pt;}
.wsada_c00000{word-spacing:9.334464pt;}
.ws197b_c00000{word-spacing:9.335968pt;}
.ws3c2_c00000{word-spacing:9.337600pt;}
.ws19d2_c00000{word-spacing:9.340320pt;}
.ws128c_c00000{word-spacing:9.341312pt;}
.ws13bb_c00000{word-spacing:9.344000pt;}
.ws1b47_c00000{word-spacing:9.346176pt;}
.ws97c_c00000{word-spacing:9.350400pt;}
.ws99c_c00000{word-spacing:9.356800pt;}
.ws15e7_c00000{word-spacing:9.357344pt;}
.ws1429_c00000{word-spacing:9.362688pt;}
.wsc7f_c00000{word-spacing:9.363200pt;}
.ws1087_c00000{word-spacing:9.368032pt;}
.ws11b0_c00000{word-spacing:9.376000pt;}
.ws1209_c00000{word-spacing:9.382400pt;}
.wsb97_c00000{word-spacing:9.384064pt;}
.ws1088_c00000{word-spacing:9.389408pt;}
.ws971_c00000{word-spacing:9.395200pt;}
.ws120a_c00000{word-spacing:9.401600pt;}
.ws3de_c00000{word-spacing:9.408000pt;}
.wsb58_c00000{word-spacing:9.410784pt;}
.ws749_c00000{word-spacing:9.414400pt;}
.ws171e_c00000{word-spacing:9.416128pt;}
.ws1249_c00000{word-spacing:9.420800pt;}
.ws19af_c00000{word-spacing:9.432160pt;}
.ws124d_c00000{word-spacing:9.433600pt;}
.ws185b_c00000{word-spacing:9.437504pt;}
.ws472_c00000{word-spacing:9.440000pt;}
.ws197c_c00000{word-spacing:9.442848pt;}
.ws1f7_c00000{word-spacing:9.446400pt;}
.ws1361_c00000{word-spacing:9.448192pt;}
.wseb6_c00000{word-spacing:9.452800pt;}
.ws1ae7_c00000{word-spacing:9.453536pt;}
.wsd85_c00000{word-spacing:9.458880pt;}
.wsc85_c00000{word-spacing:9.459200pt;}
.ws745_c00000{word-spacing:9.465600pt;}
.ws1648_c00000{word-spacing:9.469568pt;}
.ws121b_c00000{word-spacing:9.472000pt;}
.ws1ae6_c00000{word-spacing:9.474912pt;}
.ws61c_c00000{word-spacing:9.478400pt;}
.ws831_c00000{word-spacing:9.484800pt;}
.ws917_c00000{word-spacing:9.485600pt;}
.ws20b_c00000{word-spacing:9.491200pt;}
.ws1fd_c00000{word-spacing:9.497600pt;}
.ws126a_c00000{word-spacing:9.501632pt;}
.ws697_c00000{word-spacing:9.504000pt;}
.ws22a_c00000{word-spacing:9.510400pt;}
.ws371_c00000{word-spacing:9.516800pt;}
.ws372_c00000{word-spacing:9.523200pt;}
.ws1f8_c00000{word-spacing:9.529600pt;}
.ws13db_c00000{word-spacing:9.533696pt;}
.ws1091_c00000{word-spacing:9.536000pt;}
.wsc18_c00000{word-spacing:9.542400pt;}
.ws1fc_c00000{word-spacing:9.548800pt;}
.wsbf2_c00000{word-spacing:9.555200pt;}
.ws15e9_c00000{word-spacing:9.560416pt;}
.wsab4_c00000{word-spacing:9.561600pt;}
.ws1452_c00000{word-spacing:9.565760pt;}
.ws12e_c00000{word-spacing:9.568000pt;}
.ws12f_c00000{word-spacing:9.574400pt;}
.ws4d1_c00000{word-spacing:9.580800pt;}
.ws13ec_c00000{word-spacing:9.587136pt;}
.ws348_c00000{word-spacing:9.587200pt;}
.wsf18_c00000{word-spacing:9.592480pt;}
.ws3df_c00000{word-spacing:9.593600pt;}
.ws132e_c00000{word-spacing:9.597824pt;}
.wsc67_c00000{word-spacing:9.600000pt;}
.ws1490_c00000{word-spacing:9.603168pt;}
.ws8f0_c00000{word-spacing:9.603840pt;}
.wsd30_c00000{word-spacing:9.606400pt;}
.ws1035_c00000{word-spacing:9.608512pt;}
.ws1952_c00000{word-spacing:9.609696pt;}
.wsc20_c00000{word-spacing:9.612800pt;}
.wsebe_c00000{word-spacing:9.613856pt;}
.ws347_c00000{word-spacing:9.619200pt;}
.ws8f1_c00000{word-spacing:9.621408pt;}
.wsf15_c00000{word-spacing:9.624544pt;}
.wsbf1_c00000{word-spacing:9.625600pt;}
.ws16e8_c00000{word-spacing:9.627264pt;}
.wsa11_c00000{word-spacing:9.632000pt;}
.wsba8_c00000{word-spacing:9.633120pt;}
.ws61d_c00000{word-spacing:9.638400pt;}
.ws15c0_c00000{word-spacing:9.638976pt;}
.ws14a9_c00000{word-spacing:9.644800pt;}
.ws800_c00000{word-spacing:9.644832pt;}
.ws108d_c00000{word-spacing:9.651200pt;}
.ws132d_c00000{word-spacing:9.651264pt;}
.ws19f3_c00000{word-spacing:9.656544pt;}
.ws12f5_c00000{word-spacing:9.657600pt;}
.ws1b48_c00000{word-spacing:9.662400pt;}
.ws78c_c00000{word-spacing:9.664000pt;}
.ws404_c00000{word-spacing:9.667296pt;}
.ws180a_c00000{word-spacing:9.670400pt;}
.ws1451_c00000{word-spacing:9.672640pt;}
.ws801_c00000{word-spacing:9.674112pt;}
.wsa29_c00000{word-spacing:9.676800pt;}
.ws406_c00000{word-spacing:9.677984pt;}
.ws667_c00000{word-spacing:9.683200pt;}
.ws1ae_c00000{word-spacing:9.683328pt;}
.wsf16_c00000{word-spacing:9.688672pt;}
.ws1b4b_c00000{word-spacing:9.694016pt;}
.ws135b_c00000{word-spacing:9.696000pt;}
.ws1439_c00000{word-spacing:9.699360pt;}
.ws19e7_c00000{word-spacing:9.702400pt;}
.ws405_c00000{word-spacing:9.704704pt;}
.ws1857_c00000{word-spacing:9.710048pt;}
.ws108f_c00000{word-spacing:9.715200pt;}
.wsad1_c00000{word-spacing:9.715392pt;}
.ws15e8_c00000{word-spacing:9.720736pt;}
.ws463_c00000{word-spacing:9.721600pt;}
.ws128a_c00000{word-spacing:9.726080pt;}
.wsd78_c00000{word-spacing:9.734400pt;}
.ws1a72_c00000{word-spacing:9.736768pt;}
.ws4cd_c00000{word-spacing:9.740800pt;}
.ws143a_c00000{word-spacing:9.742112pt;}
.wsac6_c00000{word-spacing:9.747200pt;}
.wsad0_c00000{word-spacing:9.752800pt;}
.wsa76_c00000{word-spacing:9.753600pt;}
.ws1438_c00000{word-spacing:9.758144pt;}
.ws145e_c00000{word-spacing:9.760000pt;}
.ws11d9_c00000{word-spacing:9.763488pt;}
.wsde8_c00000{word-spacing:9.766400pt;}
.ws11dc_c00000{word-spacing:9.768832pt;}
.ws3af_c00000{word-spacing:9.772800pt;}
.ws70a_c00000{word-spacing:9.779200pt;}
.ws1649_c00000{word-spacing:9.779520pt;}
.wsf0f_c00000{word-spacing:9.784864pt;}
.wsd98_c00000{word-spacing:9.785600pt;}
.ws1484_c00000{word-spacing:9.790208pt;}
.ws11fa_c00000{word-spacing:9.792000pt;}
.ws12a1_c00000{word-spacing:9.798400pt;}
.wsf11_c00000{word-spacing:9.800896pt;}
.wsc9f_c00000{word-spacing:9.804800pt;}
.ws11f5_c00000{word-spacing:9.806240pt;}
.ws7fd_c00000{word-spacing:9.811200pt;}
.ws1485_c00000{word-spacing:9.811584pt;}
.ws439_c00000{word-spacing:9.817600pt;}
.ws128b_c00000{word-spacing:9.822272pt;}
.ws256_c00000{word-spacing:9.824000pt;}
.ws238_c00000{word-spacing:9.830400pt;}
.wsf10_c00000{word-spacing:9.832960pt;}
.ws108e_c00000{word-spacing:9.836800pt;}
.ws15a_c00000{word-spacing:9.843200pt;}
.ws4cc_c00000{word-spacing:9.849600pt;}
.ws1230_c00000{word-spacing:9.856000pt;}
.ws1a09_c00000{word-spacing:9.859680pt;}
.ws70b_c00000{word-spacing:9.862400pt;}
.ws33c_c00000{word-spacing:9.868800pt;}
.ws864_c00000{word-spacing:9.870368pt;}
.ws534_c00000{word-spacing:9.875200pt;}
.ws1301_c00000{word-spacing:9.875712pt;}
.ws774_c00000{word-spacing:9.881600pt;}
.ws7fe_c00000{word-spacing:9.888000pt;}
.ws3ae_c00000{word-spacing:9.894400pt;}
.ws1171_c00000{word-spacing:9.897088pt;}
.ws159_c00000{word-spacing:9.900800pt;}
.ws3b0_c00000{word-spacing:9.907200pt;}
.ws142d_c00000{word-spacing:9.907776pt;}
.ws1086_c00000{word-spacing:9.913120pt;}
.ws4e7_c00000{word-spacing:9.913600pt;}
.ws10e_c00000{word-spacing:9.918464pt;}
.ws239_c00000{word-spacing:9.920000pt;}
.ws141c_c00000{word-spacing:9.923808pt;}
.ws124_c00000{word-spacing:9.926400pt;}
.wse80_c00000{word-spacing:9.929152pt;}
.ws123_c00000{word-spacing:9.932800pt;}
.ws11ce_c00000{word-spacing:9.934496pt;}
.ws16e7_c00000{word-spacing:9.937632pt;}
.ws462_c00000{word-spacing:9.939200pt;}
.ws83b_c00000{word-spacing:9.939840pt;}
.ws19c_c00000{word-spacing:9.945600pt;}
.wse6b_c00000{word-spacing:9.952000pt;}
.ws8c8_c00000{word-spacing:9.955200pt;}
.ws1a48_c00000{word-spacing:9.955872pt;}
.ws1298_c00000{word-spacing:9.958400pt;}
.ws1a04_c00000{word-spacing:9.961216pt;}
.ws12de_c00000{word-spacing:9.964800pt;}
.ws15f6_c00000{word-spacing:9.966912pt;}
.wsa2a_c00000{word-spacing:9.971200pt;}
.ws13da_c00000{word-spacing:9.977248pt;}
.ws97a_c00000{word-spacing:9.977600pt;}
.ws17ca_c00000{word-spacing:9.978624pt;}
.ws1803_c00000{word-spacing:9.982592pt;}
.ws15f5_c00000{word-spacing:9.984480pt;}
.ws168e_c00000{word-spacing:9.987936pt;}
.ws1a8d_c00000{word-spacing:9.990336pt;}
.ws1898_c00000{word-spacing:9.993088pt;}
.wsc2a_c00000{word-spacing:9.993280pt;}
.wsba9_c00000{word-spacing:9.996192pt;}
.wsf4a_c00000{word-spacing:9.998624pt;}
.ws1a8c_c00000{word-spacing:10.002048pt;}
.ws168d_c00000{word-spacing:10.003968pt;}
.wsc2c_c00000{word-spacing:10.009312pt;}
.wsbd1_c00000{word-spacing:10.009600pt;}
.wsba7_c00000{word-spacing:10.013760pt;}
.wsc2b_c00000{word-spacing:10.014656pt;}
.ws1256_c00000{word-spacing:10.016000pt;}
.wsc52_c00000{word-spacing:10.022400pt;}
.ws1170_c00000{word-spacing:10.025344pt;}
.ws121e_c00000{word-spacing:10.028800pt;}
.ws13ea_c00000{word-spacing:10.030688pt;}
.ws15e2_c00000{word-spacing:10.035200pt;}
.ws1754_c00000{word-spacing:10.041376pt;}
.ws929_c00000{word-spacing:10.041600pt;}
.ws1238_c00000{word-spacing:10.048000pt;}
.ws1a0d_c00000{word-spacing:10.052064pt;}
.wsf33_c00000{word-spacing:10.054400pt;}
.ws13dc_c00000{word-spacing:10.057408pt;}
.ws1760_c00000{word-spacing:10.060800pt;}
.ws1625_c00000{word-spacing:10.062752pt;}
.ws1b27_c00000{word-spacing:10.067200pt;}
.ws1804_c00000{word-spacing:10.073440pt;}
.ws640_c00000{word-spacing:10.073600pt;}
.ws19a4_c00000{word-spacing:10.078784pt;}
.ws13eb_c00000{word-spacing:10.084128pt;}
.ws4df_c00000{word-spacing:10.086400pt;}
.ws19a3_c00000{word-spacing:10.089472pt;}
.wsa65_c00000{word-spacing:10.092800pt;}
.ws1624_c00000{word-spacing:10.094816pt;}
.ws973_c00000{word-spacing:10.099200pt;}
.wsee_c00000{word-spacing:10.105600pt;}
.ws3eb_c00000{word-spacing:10.112000pt;}
.ws83a_c00000{word-spacing:10.116192pt;}
.wsd0f_c00000{word-spacing:10.118400pt;}
.wsa3a_c00000{word-spacing:10.124800pt;}
.wsa0c_c00000{word-spacing:10.131200pt;}
.ws186_c00000{word-spacing:10.137600pt;}
.wsf63_c00000{word-spacing:10.142912pt;}
.wsed_c00000{word-spacing:10.144000pt;}
.wsf4c_c00000{word-spacing:10.148256pt;}
.ws80f_c00000{word-spacing:10.150400pt;}
.ws137f_c00000{word-spacing:10.153600pt;}
.ws63f_c00000{word-spacing:10.156800pt;}
.ws4c4_c00000{word-spacing:10.163200pt;}
.wsa1d_c00000{word-spacing:10.169600pt;}
.wsc59_c00000{word-spacing:10.176000pt;}
.ws417_c00000{word-spacing:10.182400pt;}
.ws785_c00000{word-spacing:10.188800pt;}
.wsa3b_c00000{word-spacing:10.195200pt;}
.ws115c_c00000{word-spacing:10.201600pt;}
.ws13b_c00000{word-spacing:10.208000pt;}
.ws1af3_c00000{word-spacing:10.212384pt;}
.ws1dd_c00000{word-spacing:10.214400pt;}
.ws1a7e_c00000{word-spacing:10.217728pt;}
.wsef_c00000{word-spacing:10.220800pt;}
.ws418_c00000{word-spacing:10.227200pt;}
.ws142c_c00000{word-spacing:10.228416pt;}
.ws4e0_c00000{word-spacing:10.233600pt;}
.wsef0_c00000{word-spacing:10.233760pt;}
.ws1741_c00000{word-spacing:10.239104pt;}
.ws619_c00000{word-spacing:10.240000pt;}
.wsd39_c00000{word-spacing:10.244448pt;}
.ws185_c00000{word-spacing:10.246400pt;}
.wsd18_c00000{word-spacing:10.249792pt;}
.ws324_c00000{word-spacing:10.252800pt;}
.ws151f_c00000{word-spacing:10.255136pt;}
.wsa1e_c00000{word-spacing:10.259200pt;}
.ws11d1_c00000{word-spacing:10.260480pt;}
.ws1a92_c00000{word-spacing:10.265568pt;}
.ws187_c00000{word-spacing:10.265600pt;}
.wsd28_c00000{word-spacing:10.271168pt;}
.ws8d4_c00000{word-spacing:10.271424pt;}
.ws1729_c00000{word-spacing:10.272000pt;}
.ws1957_c00000{word-spacing:10.277280pt;}
.ws1a28_c00000{word-spacing:10.278400pt;}
.ws1a7d_c00000{word-spacing:10.281856pt;}
.ws43d_c00000{word-spacing:10.284800pt;}
.ws1437_c00000{word-spacing:10.291200pt;}
.ws863_c00000{word-spacing:10.292544pt;}
.ws1594_c00000{word-spacing:10.294848pt;}
.ws1761_c00000{word-spacing:10.297600pt;}
.ws115e_c00000{word-spacing:10.304000pt;}
.ws1a91_c00000{word-spacing:10.306560pt;}
.wsfe6_c00000{word-spacing:10.308576pt;}
.ws43c_c00000{word-spacing:10.310400pt;}
.ws30a_c00000{word-spacing:10.313920pt;}
.ws103e_c00000{word-spacing:10.316800pt;}
.ws185a_c00000{word-spacing:10.319264pt;}
.ws136e_c00000{word-spacing:10.323200pt;}
.ws8d3_c00000{word-spacing:10.324128pt;}
.wsfe5_c00000{word-spacing:10.324608pt;}
.ws114f_c00000{word-spacing:10.329600pt;}
.ws10d_c00000{word-spacing:10.329952pt;}
.ws1716_c00000{word-spacing:10.335296pt;}
.wsd29_c00000{word-spacing:10.340640pt;}
.ws15ce_c00000{word-spacing:10.342400pt;}
.ws15d5_c00000{word-spacing:10.345984pt;}
.ws12ff_c00000{word-spacing:10.351328pt;}
.ws1a30_c00000{word-spacing:10.361600pt;}
.ws18b5_c00000{word-spacing:10.367360pt;}
.wsc45_c00000{word-spacing:10.368000pt;}
.wsc44_c00000{word-spacing:10.374400pt;}
.ws113e_c00000{word-spacing:10.378048pt;}
.wsa0d_c00000{word-spacing:10.380800pt;}
.ws13ab_c00000{word-spacing:10.387200pt;}
.ws1434_c00000{word-spacing:10.393600pt;}
.ws103f_c00000{word-spacing:10.400000pt;}
.wsc49_c00000{word-spacing:10.406400pt;}
.ws862_c00000{word-spacing:10.410112pt;}
.ws115d_c00000{word-spacing:10.412800pt;}
.ws34c_c00000{word-spacing:10.415456pt;}
.wse16_c00000{word-spacing:10.419200pt;}
.ws4a3_c00000{word-spacing:10.425600pt;}
.ws1698_c00000{word-spacing:10.432000pt;}
.wsc48_c00000{word-spacing:10.438400pt;}
.ws4a2_c00000{word-spacing:10.444800pt;}
.wsfe8_c00000{word-spacing:10.447520pt;}
.ws553_c00000{word-spacing:10.451200pt;}
.ws6a6_c00000{word-spacing:10.452864pt;}
.ws77d_c00000{word-spacing:10.457600pt;}
.wsf4b_c00000{word-spacing:10.463552pt;}
.ws554_c00000{word-spacing:10.464000pt;}
.ws15d6_c00000{word-spacing:10.468896pt;}
.ws83d_c00000{word-spacing:10.470400pt;}
.ws44b_c00000{word-spacing:10.476800pt;}
.ws44c_c00000{word-spacing:10.483200pt;}
.ws1906_c00000{word-spacing:10.484928pt;}
.ws375_c00000{word-spacing:10.489600pt;}
.ws6f6_c00000{word-spacing:10.496000pt;}
.ws77c_c00000{word-spacing:10.502400pt;}
.wsb2c_c00000{word-spacing:10.508800pt;}
.ws1a0e_c00000{word-spacing:10.511648pt;}
.ws376_c00000{word-spacing:10.515200pt;}
.ws147c_c00000{word-spacing:10.516992pt;}
.ws49c_c00000{word-spacing:10.521600pt;}
.wsd3a_c00000{word-spacing:10.527680pt;}
.ws57c_c00000{word-spacing:10.528000pt;}
.ws830_c00000{word-spacing:10.534400pt;}
.wsb9f_c00000{word-spacing:10.538368pt;}
.ws7ad_c00000{word-spacing:10.540800pt;}
.ws647_c00000{word-spacing:10.547200pt;}
.ws1714_c00000{word-spacing:10.549056pt;}
.ws83f_c00000{word-spacing:10.553600pt;}
.ws10d6_c00000{word-spacing:10.554400pt;}
.ws1a88_c00000{word-spacing:10.559744pt;}
.ws7a0_c00000{word-spacing:10.560000pt;}
.wseb2_c00000{word-spacing:10.564224pt;}
.ws461_c00000{word-spacing:10.566400pt;}
.ws9cf_c00000{word-spacing:10.572800pt;}
.ws573_c00000{word-spacing:10.579200pt;}
.ws165b_c00000{word-spacing:10.581120pt;}
.ws1865_c00000{word-spacing:10.581792pt;}
.ws1208_c00000{word-spacing:10.585600pt;}
.ws1300_c00000{word-spacing:10.586464pt;}
.ws1954_c00000{word-spacing:10.587648pt;}
.ws1749_c00000{word-spacing:10.592000pt;}
.ws1188_c00000{word-spacing:10.598400pt;}
.ws1953_c00000{word-spacing:10.599360pt;}
.ws1740_c00000{word-spacing:10.602496pt;}
.ws115f_c00000{word-spacing:10.604800pt;}
.wseb3_c00000{word-spacing:10.605216pt;}
.ws7a1_c00000{word-spacing:10.611200pt;}
.wsfb8_c00000{word-spacing:10.617600pt;}
.ws1adc_c00000{word-spacing:10.618528pt;}
.wsfd7_c00000{word-spacing:10.623872pt;}
.wsc0a_c00000{word-spacing:10.629216pt;}
.ws1838_c00000{word-spacing:10.634560pt;}
.ws154a_c00000{word-spacing:10.636800pt;}
.ws1adb_c00000{word-spacing:10.639904pt;}
.ws1a87_c00000{word-spacing:10.645248pt;}
.wsfd8_c00000{word-spacing:10.655936pt;}
.ws83e_c00000{word-spacing:10.656000pt;}
.ws1a78_c00000{word-spacing:10.661280pt;}
.ws18e0_c00000{word-spacing:10.662400pt;}
.wsc08_c00000{word-spacing:10.666624pt;}
.wsb9e_c00000{word-spacing:10.671968pt;}
.wsfcf_c00000{word-spacing:10.681600pt;}
.ws1863_c00000{word-spacing:10.688000pt;}
.ws1ae4_c00000{word-spacing:10.694400pt;}
.ws1816_c00000{word-spacing:10.700800pt;}
.ws1d6_c00000{word-spacing:10.707200pt;}
.wsc09_c00000{word-spacing:10.709376pt;}
.ws1148_c00000{word-spacing:10.713600pt;}
.ws10d5_c00000{word-spacing:10.720064pt;}
.wsa90_c00000{word-spacing:10.726400pt;}
.ws8c6_c00000{word-spacing:10.730752pt;}
.ws1844_c00000{word-spacing:10.736096pt;}
.ws1147_c00000{word-spacing:10.739200pt;}
.ws15dd_c00000{word-spacing:10.741440pt;}
.ws638_c00000{word-spacing:10.745600pt;}
.wse7b_c00000{word-spacing:10.746784pt;}
.ws961_c00000{word-spacing:10.752000pt;}
.ws34b_c00000{word-spacing:10.757472pt;}
.ws121_c00000{word-spacing:10.758400pt;}
.ws15d1_c00000{word-spacing:10.762816pt;}
.ws19e4_c00000{word-spacing:10.764800pt;}
.ws8b8_c00000{word-spacing:10.771200pt;}
.ws6a7_c00000{word-spacing:10.773504pt;}
.ws21f_c00000{word-spacing:10.777600pt;}
.wsc75_c00000{word-spacing:10.784000pt;}
.ws8c5_c00000{word-spacing:10.784192pt;}
.wsfce_c00000{word-spacing:10.790400pt;}
.wsfe7_c00000{word-spacing:10.794880pt;}
.ws585_c00000{word-spacing:10.796800pt;}
.ws1af6_c00000{word-spacing:10.800224pt;}
.ws55f_c00000{word-spacing:10.803200pt;}
.ws18b4_c00000{word-spacing:10.805568pt;}
.ws669_c00000{word-spacing:10.809600pt;}
.ws122_c00000{word-spacing:10.816000pt;}
.ws1713_c00000{word-spacing:10.816256pt;}
.ws1eb_c00000{word-spacing:10.822400pt;}
.ws25f_c00000{word-spacing:10.828800pt;}
.ws9c2_c00000{word-spacing:10.835200pt;}
.wsa9b_c00000{word-spacing:10.837632pt;}
.ws5a4_c00000{word-spacing:10.841600pt;}
.ws1ad5_c00000{word-spacing:10.842976pt;}
.ws1d5_c00000{word-spacing:10.848000pt;}
.ws5a2_c00000{word-spacing:10.854400pt;}
.ws1af0_c00000{word-spacing:10.859008pt;}
.ws1ea_c00000{word-spacing:10.860800pt;}
.wsa9c_c00000{word-spacing:10.864352pt;}
.wscae_c00000{word-spacing:10.867200pt;}
.ws9d7_c00000{word-spacing:10.873600pt;}
.ws1097_c00000{word-spacing:10.875040pt;}
.wse01_c00000{word-spacing:10.880000pt;}
.ws181a_c00000{word-spacing:10.880384pt;}
.wse37_c00000{word-spacing:10.885728pt;}
.ws9bd_c00000{word-spacing:10.886400pt;}
.ws1723_c00000{word-spacing:10.891072pt;}
.ws764_c00000{word-spacing:10.892800pt;}
.ws1113_c00000{word-spacing:10.896416pt;}
.ws15c8_c00000{word-spacing:10.898016pt;}
.ws220_c00000{word-spacing:10.899200pt;}
.ws14d5_c00000{word-spacing:10.903872pt;}
.wscbe_c00000{word-spacing:10.905600pt;}
.ws15d7_c00000{word-spacing:10.912000pt;}
.wsba3_c00000{word-spacing:10.915584pt;}
.ws1925_c00000{word-spacing:10.918400pt;}
.wseb0_c00000{word-spacing:10.921440pt;}
.wse72_c00000{word-spacing:10.924800pt;}
.ws1aca_c00000{word-spacing:10.927296pt;}
.ws1149_c00000{word-spacing:10.937600pt;}
.wsba4_c00000{word-spacing:10.939008pt;}
.ws1020_c00000{word-spacing:10.944000pt;}
.ws5a3_c00000{word-spacing:10.950400pt;}
.ws14f2_c00000{word-spacing:10.950720pt;}
.ws135f_c00000{word-spacing:10.955200pt;}
.wsba2_c00000{word-spacing:10.956576pt;}
.ws11ea_c00000{word-spacing:10.956800pt;}
.ws1691_c00000{word-spacing:10.960544pt;}
.ws190c_c00000{word-spacing:10.963200pt;}
.ws15ee_c00000{word-spacing:10.969600pt;}
.ws1654_c00000{word-spacing:10.971232pt;}
.ws124a_c00000{word-spacing:10.976000pt;}
.ws1423_c00000{word-spacing:10.976576pt;}
.ws1360_c00000{word-spacing:10.981920pt;}
.ws1988_c00000{word-spacing:10.987264pt;}
.ws951_c00000{word-spacing:10.988800pt;}
.ws66c_c00000{word-spacing:10.995200pt;}
.ws147b_c00000{word-spacing:10.997952pt;}
.ws19c6_c00000{word-spacing:11.001600pt;}
.ws1a54_c00000{word-spacing:11.008000pt;}
.ws1653_c00000{word-spacing:11.008640pt;}
.ws87e_c00000{word-spacing:11.014400pt;}
.ws1597_c00000{word-spacing:11.020800pt;}
.ws979_c00000{word-spacing:11.027200pt;}
.ws151b_c00000{word-spacing:11.033600pt;}
.ws66b_c00000{word-spacing:11.040000pt;}
.ws181b_c00000{word-spacing:11.046048pt;}
.ws1158_c00000{word-spacing:11.046400pt;}
.ws17c3_c00000{word-spacing:11.052800pt;}
.ws1529_c00000{word-spacing:11.056736pt;}
.ws9c1_c00000{word-spacing:11.059200pt;}
.ws13c1_c00000{word-spacing:11.062080pt;}
.ws1455_c00000{word-spacing:11.065600pt;}
.ws1773_c00000{word-spacing:11.067424pt;}
.wse45_c00000{word-spacing:11.072000pt;}
.ws1af2_c00000{word-spacing:11.078112pt;}
.ws47c_c00000{word-spacing:11.078400pt;}
.ws1424_c00000{word-spacing:11.083456pt;}
.ws47a_c00000{word-spacing:11.084800pt;}
.ws636_c00000{word-spacing:11.091200pt;}
.wsc34_c00000{word-spacing:11.097600pt;}
.wsb7a_c00000{word-spacing:11.104000pt;}
.ws144_c00000{word-spacing:11.110400pt;}
.ws235_c00000{word-spacing:11.116800pt;}
.ws152a_c00000{word-spacing:11.120864pt;}
.ws2fc_c00000{word-spacing:11.123200pt;}
.ws978_c00000{word-spacing:11.129600pt;}
.ws1de_c00000{word-spacing:11.136000pt;}
.wse00_c00000{word-spacing:11.142400pt;}
.ws583_c00000{word-spacing:11.148800pt;}
.ws234_c00000{word-spacing:11.155200pt;}
.ws8f8_c00000{word-spacing:11.161600pt;}
.ws12a9_c00000{word-spacing:11.163616pt;}
.ws828_c00000{word-spacing:11.168000pt;}
.ws75a_c00000{word-spacing:11.168960pt;}
.ws2fb_c00000{word-spacing:11.174400pt;}
.ws143_c00000{word-spacing:11.180800pt;}
.ws1a55_c00000{word-spacing:11.184992pt;}
.wsc33_c00000{word-spacing:11.187200pt;}
.ws758_c00000{word-spacing:11.190336pt;}
.ws47d_c00000{word-spacing:11.193600pt;}
.ws1860_c00000{word-spacing:11.195680pt;}
.ws218_c00000{word-spacing:11.200000pt;}
.ws173c_c00000{word-spacing:11.201024pt;}
.ws156f_c00000{word-spacing:11.206368pt;}
.ws1df_c00000{word-spacing:11.206400pt;}
.ws1608_c00000{word-spacing:11.208384pt;}
.ws86d_c00000{word-spacing:11.211712pt;}
.ws1e0_c00000{word-spacing:11.212800pt;}
.ws7d7_c00000{word-spacing:11.217056pt;}
.ws637_c00000{word-spacing:11.219200pt;}
.ws1870_c00000{word-spacing:11.220096pt;}
.ws130d_c00000{word-spacing:11.225600pt;}
.ws16e6_c00000{word-spacing:11.225952pt;}
.wsafa_c00000{word-spacing:11.232000pt;}
.ws7d9_c00000{word-spacing:11.233088pt;}
.ws9c0_c00000{word-spacing:11.238400pt;}
.ws9ee_c00000{word-spacing:11.243520pt;}
.wsb91_c00000{word-spacing:11.244800pt;}
.wsd4b_c00000{word-spacing:11.249120pt;}
.ws179c_c00000{word-spacing:11.251200pt;}
.wsd4c_c00000{word-spacing:11.254464pt;}
.wsd72_c00000{word-spacing:11.259808pt;}
.ws1945_c00000{word-spacing:11.261088pt;}
.ws19f9_c00000{word-spacing:11.264000pt;}
.ws1af1_c00000{word-spacing:11.270496pt;}
.wsd73_c00000{word-spacing:11.275840pt;}
.wsf5f_c00000{word-spacing:11.281184pt;}
.ws1748_c00000{word-spacing:11.283200pt;}
.ws10b6_c00000{word-spacing:11.286528pt;}
.ws1989_c00000{word-spacing:11.291872pt;}
.ws2b2_c00000{word-spacing:11.296000pt;}
.ws1491_c00000{word-spacing:11.297216pt;}
.wsa9a_c00000{word-spacing:11.302560pt;}
.ws16c9_c00000{word-spacing:11.308800pt;}
.wsf48_c00000{word-spacing:11.313248pt;}
.wsa98_c00000{word-spacing:11.315200pt;}
.ws1069_c00000{word-spacing:11.318592pt;}
.ws1868_c00000{word-spacing:11.321600pt;}
.ws1983_c00000{word-spacing:11.328000pt;}
.ws3a1_c00000{word-spacing:11.334624pt;}
.ws1411_c00000{word-spacing:11.340800pt;}
.ws1131_c00000{word-spacing:11.347200pt;}
.ws1262_c00000{word-spacing:11.350656pt;}
.ws111b_c00000{word-spacing:11.353600pt;}
.ws13c0_c00000{word-spacing:11.356000pt;}
.ws1918_c00000{word-spacing:11.360000pt;}
.ws1772_c00000{word-spacing:11.361344pt;}
.wsa96_c00000{word-spacing:11.366400pt;}
.ws759_c00000{word-spacing:11.372032pt;}
.ws706_c00000{word-spacing:11.372800pt;}
.ws10b5_c00000{word-spacing:11.377376pt;}
.ws25e_c00000{word-spacing:11.379200pt;}
.ws7d8_c00000{word-spacing:11.382720pt;}
.wsc6a_c00000{word-spacing:11.385600pt;}
.wsa97_c00000{word-spacing:11.392000pt;}
.ws125b_c00000{word-spacing:11.398400pt;}
.ws11b4_c00000{word-spacing:11.398752pt;}
.ws3b8_c00000{word-spacing:11.404800pt;}
.ws768_c00000{word-spacing:11.411200pt;}
.wsbb5_c00000{word-spacing:11.417600pt;}
.ws2b3_c00000{word-spacing:11.424000pt;}
.ws767_c00000{word-spacing:11.430400pt;}
.ws1573_c00000{word-spacing:11.436160pt;}
.ws3c6_c00000{word-spacing:11.436800pt;}
.wsa88_c00000{word-spacing:11.443200pt;}
.wsb62_c00000{word-spacing:11.449600pt;}
.wsa2f_c00000{word-spacing:11.456000pt;}
.ws707_c00000{word-spacing:11.462400pt;}
.wsa71_c00000{word-spacing:11.468800pt;}
.ws1302_c00000{word-spacing:11.473568pt;}
.wsa2e_c00000{word-spacing:11.475200pt;}
.ws3b7_c00000{word-spacing:11.481600pt;}
.ws267_c00000{word-spacing:11.488000pt;}
.ws178_c00000{word-spacing:11.494400pt;}
.ws25d_c00000{word-spacing:11.500800pt;}
.wsed6_c00000{word-spacing:11.505632pt;}
.ws713_c00000{word-spacing:11.507200pt;}
.ws1264_c00000{word-spacing:11.510976pt;}
.wsc47_c00000{word-spacing:11.513600pt;}
.wsb63_c00000{word-spacing:11.520000pt;}
.ws5c7_c00000{word-spacing:11.521664pt;}
.ws766_c00000{word-spacing:11.526400pt;}
.ws1263_c00000{word-spacing:11.527008pt;}
.ws1601_c00000{word-spacing:11.532352pt;}
.wsa87_c00000{word-spacing:11.532800pt;}
.wsf49_c00000{word-spacing:11.537696pt;}
.ws13ca_c00000{word-spacing:11.539200pt;}
.wsd38_c00000{word-spacing:11.543040pt;}
.ws1130_c00000{word-spacing:11.545600pt;}
.wsb1f_c00000{word-spacing:11.548384pt;}
.ws1984_c00000{word-spacing:11.552000pt;}
.wsbc4_c00000{word-spacing:11.553728pt;}
.ws1638_c00000{word-spacing:11.553888pt;}
.wsdcd_c00000{word-spacing:11.558400pt;}
.ws16aa_c00000{word-spacing:11.559744pt;}
.ws852_c00000{word-spacing:11.564416pt;}
.ws12c9_c00000{word-spacing:11.564800pt;}
.ws1639_c00000{word-spacing:11.577312pt;}
.ws266_c00000{word-spacing:11.577600pt;}
.ws144c_c00000{word-spacing:11.580448pt;}
.ws127e_c00000{word-spacing:11.590400pt;}
.ws853_c00000{word-spacing:11.591136pt;}
.wsd9e_c00000{word-spacing:11.594816pt;}
.wsbc5_c00000{word-spacing:11.596480pt;}
.ws167c_c00000{word-spacing:11.596800pt;}
.ws1aa6_c00000{word-spacing:11.601824pt;}
.ws9d3_c00000{word-spacing:11.603200pt;}
.ws1459_c00000{word-spacing:11.607168pt;}
.ws144d_c00000{word-spacing:11.612512pt;}
.ws5c5_c00000{word-spacing:11.617856pt;}
.ws19c1_c00000{word-spacing:11.622400pt;}
.ws12a8_c00000{word-spacing:11.623200pt;}
.ws854_c00000{word-spacing:11.628544pt;}
.ws922_c00000{word-spacing:11.628800pt;}
.wsfc2_c00000{word-spacing:11.633888pt;}
.wsa50_c00000{word-spacing:11.639232pt;}
.ws11d7_c00000{word-spacing:11.641600pt;}
.ws1861_c00000{word-spacing:11.648000pt;}
.ws4ec_c00000{word-spacing:11.654400pt;}
.ws55c_c00000{word-spacing:11.660800pt;}
.ws823_c00000{word-spacing:11.667200pt;}
.ws5c6_c00000{word-spacing:11.671296pt;}
.ws195d_c00000{word-spacing:11.673600pt;}
.ws849_c00000{word-spacing:11.680000pt;}
.ws848_c00000{word-spacing:11.686400pt;}
.ws3a3_c00000{word-spacing:11.687328pt;}
.ws17a5_c00000{word-spacing:11.692672pt;}
.ws824_c00000{word-spacing:11.692800pt;}
.ws12df_c00000{word-spacing:11.699200pt;}
.ws3a2_c00000{word-spacing:11.703360pt;}
.ws1225_c00000{word-spacing:11.705600pt;}
.wsb48_c00000{word-spacing:11.708704pt;}
.ws9d2_c00000{word-spacing:11.712000pt;}
.ws1656_c00000{word-spacing:11.719392pt;}
.ws11dd_c00000{word-spacing:11.724736pt;}
.ws8d2_c00000{word-spacing:11.724800pt;}
.ws17a6_c00000{word-spacing:11.730080pt;}
.ws1a2_c00000{word-spacing:11.731200pt;}
.wsa47_c00000{word-spacing:11.737600pt;}
.ws71f_c00000{word-spacing:11.744000pt;}
.ws5d9_c00000{word-spacing:11.750400pt;}
.ws2c0_c00000{word-spacing:11.756800pt;}
.ws8d1_c00000{word-spacing:11.763200pt;}
.ws1a1_c00000{word-spacing:11.769600pt;}
.ws48d_c00000{word-spacing:11.776000pt;}
.ws2b4_c00000{word-spacing:11.782400pt;}
.ws2ec_c00000{word-spacing:11.788800pt;}
.ws19d9_c00000{word-spacing:11.794208pt;}
.ws9b7_c00000{word-spacing:11.795200pt;}
.ws7b3_c00000{word-spacing:11.801600pt;}
.ws84a_c00000{word-spacing:11.808000pt;}
.ws4ed_c00000{word-spacing:11.814400pt;}
.wsabd_c00000{word-spacing:11.820800pt;}
.ws12f0_c00000{word-spacing:11.826272pt;}
.ws73d_c00000{word-spacing:11.827200pt;}
.ws2b5_c00000{word-spacing:11.833600pt;}
.wsbc6_c00000{word-spacing:11.836960pt;}
.ws2c1_c00000{word-spacing:11.840000pt;}
.ws12ee_c00000{word-spacing:11.842304pt;}
.ws441_c00000{word-spacing:11.846400pt;}
.ws19d7_c00000{word-spacing:11.847648pt;}
.ws160d_c00000{word-spacing:11.852544pt;}
.ws4ee_c00000{word-spacing:11.852800pt;}
.wse9e_c00000{word-spacing:11.852992pt;}
.ws2ed_c00000{word-spacing:11.859200pt;}
.ws10af_c00000{word-spacing:11.863680pt;}
.ws55b_c00000{word-spacing:11.865600pt;}
.ws11c5_c00000{word-spacing:11.869024pt;}
.ws160e_c00000{word-spacing:11.870112pt;}
.wsc9b_c00000{word-spacing:11.872000pt;}
.ws19e8_c00000{word-spacing:11.878400pt;}
.wsd6e_c00000{word-spacing:11.879712pt;}
.ws995_c00000{word-spacing:11.884800pt;}
.wsf70_c00000{word-spacing:11.885056pt;}
.wsc6f_c00000{word-spacing:11.897600pt;}
.ws196e_c00000{word-spacing:11.899392pt;}
.wsd6d_c00000{word-spacing:11.901088pt;}
.ws1215_c00000{word-spacing:11.904000pt;}
.ws10d4_c00000{word-spacing:11.906432pt;}
.wsf25_c00000{word-spacing:11.910400pt;}
.ws1b36_c00000{word-spacing:11.913088pt;}
.ws12f3_c00000{word-spacing:11.916800pt;}
.ws18b8_c00000{word-spacing:11.917120pt;}
.ws1291_c00000{word-spacing:11.922464pt;}
.wsd6c_c00000{word-spacing:11.927808pt;}
.ws119a_c00000{word-spacing:11.929600pt;}
.ws152e_c00000{word-spacing:11.938496pt;}
.ws7ca_c00000{word-spacing:11.942400pt;}
.ws1a98_c00000{word-spacing:11.943840pt;}
.ws1189_c00000{word-spacing:11.948800pt;}
.wsfc1_c00000{word-spacing:11.949184pt;}
.wsb90_c00000{word-spacing:11.955200pt;}
.wsb31_c00000{word-spacing:11.961600pt;}
.wsb03_c00000{word-spacing:11.974400pt;}
.ws10da_c00000{word-spacing:11.980800pt;}
.ws8c3_c00000{word-spacing:11.981248pt;}
.ws1ad2_c00000{word-spacing:11.986592pt;}
.ws253_c00000{word-spacing:11.987200pt;}
.ws19aa_c00000{word-spacing:11.993600pt;}
.ws137e_c00000{word-spacing:11.997280pt;}
.wsaf7_c00000{word-spacing:12.000000pt;}
.wse9c_c00000{word-spacing:12.002624pt;}
.ws1598_c00000{word-spacing:12.006400pt;}
.ws1b28_c00000{word-spacing:12.007968pt;}
.wsc6e_c00000{word-spacing:12.012800pt;}
.wsfc3_c00000{word-spacing:12.013312pt;}
.ws747_c00000{word-spacing:12.019200pt;}
.ws26c_c00000{word-spacing:12.025600pt;}
.ws180e_c00000{word-spacing:12.029344pt;}
.ws642_c00000{word-spacing:12.032000pt;}
.ws11e1_c00000{word-spacing:12.038400pt;}
.ws592_c00000{word-spacing:12.044800pt;}
.ws8c2_c00000{word-spacing:12.045376pt;}
.wsa38_c00000{word-spacing:12.051200pt;}
.ws746_c00000{word-spacing:12.057600pt;}
.ws10d3_c00000{word-spacing:12.061408pt;}
.ws6f5_c00000{word-spacing:12.064000pt;}
.ws593_c00000{word-spacing:12.070400pt;}
.ws400_c00000{word-spacing:12.076800pt;}
.ws140_c00000{word-spacing:12.083200pt;}
.ws152f_c00000{word-spacing:12.088128pt;}
.wscf7_c00000{word-spacing:12.089600pt;}
.wsb49_c00000{word-spacing:12.093472pt;}
.ws910_c00000{word-spacing:12.096000pt;}
.ws1395_c00000{word-spacing:12.098816pt;}
.ws2d2_c00000{word-spacing:12.102400pt;}
.ws589_c00000{word-spacing:12.108800pt;}
.ws7c_c00000{word-spacing:12.115200pt;}
.wsfc4_c00000{word-spacing:12.120192pt;}
.ws212_c00000{word-spacing:12.121600pt;}
.ws26b_c00000{word-spacing:12.128000pt;}
.ws145c_c00000{word-spacing:12.130880pt;}
.ws740_c00000{word-spacing:12.134400pt;}
.ws1393_c00000{word-spacing:12.136224pt;}
.ws641_c00000{word-spacing:12.140800pt;}
.ws145a_c00000{word-spacing:12.141568pt;}
.ws79b_c00000{word-spacing:12.146912pt;}
.ws7b_c00000{word-spacing:12.147200pt;}
.ws1776_c00000{word-spacing:12.152256pt;}
.ws452_c00000{word-spacing:12.153600pt;}
.ws1901_c00000{word-spacing:12.157600pt;}
.ws401_c00000{word-spacing:12.160000pt;}
.ws155d_c00000{word-spacing:12.162944pt;}
.ws13f_c00000{word-spacing:12.166400pt;}
.ws153a_c00000{word-spacing:12.168288pt;}
.ws194d_c00000{word-spacing:12.168768pt;}
.ws277_c00000{word-spacing:12.172800pt;}
.ws2d3_c00000{word-spacing:12.179200pt;}
.ws903_c00000{word-spacing:12.185600pt;}
.ws79c_c00000{word-spacing:12.189664pt;}
.ws617_c00000{word-spacing:12.192000pt;}
.ws1ad1_c00000{word-spacing:12.195008pt;}
.ws47e_c00000{word-spacing:12.198400pt;}
.ws11ec_c00000{word-spacing:12.204800pt;}
.ws594_c00000{word-spacing:12.211200pt;}
.ws1635_c00000{word-spacing:12.215616pt;}
.ws1900_c00000{word-spacing:12.216384pt;}
.ws1474_c00000{word-spacing:12.217600pt;}
.ws187a_c00000{word-spacing:12.221472pt;}
.ws160a_c00000{word-spacing:12.227328pt;}
.ws1063_c00000{word-spacing:12.230400pt;}
.wsa66_c00000{word-spacing:12.232416pt;}
.ws160b_c00000{word-spacing:12.233184pt;}
.wsa67_c00000{word-spacing:12.237760pt;}
.ws1820_c00000{word-spacing:12.249600pt;}
.ws1880_c00000{word-spacing:12.253792pt;}
.wse4b_c00000{word-spacing:12.256000pt;}
.ws1448_c00000{word-spacing:12.259136pt;}
.ws11d6_c00000{word-spacing:12.262400pt;}
.ws19d8_c00000{word-spacing:12.275168pt;}
.ws1193_c00000{word-spacing:12.275200pt;}
.ws1827_c00000{word-spacing:12.281600pt;}
.ws1a57_c00000{word-spacing:12.285856pt;}
.ws954_c00000{word-spacing:12.288000pt;}
.wse05_c00000{word-spacing:12.294400pt;}
.ws93f_c00000{word-spacing:12.307200pt;}
.ws187f_c00000{word-spacing:12.307232pt;}
.ws15ef_c00000{word-spacing:12.313600pt;}
.ws1290_c00000{word-spacing:12.317920pt;}
.ws1358_c00000{word-spacing:12.320000pt;}
.ws1a67_c00000{word-spacing:12.326400pt;}
.ws1b23_c00000{word-spacing:12.328608pt;}
.ws699_c00000{word-spacing:12.332800pt;}
.ws60e_c00000{word-spacing:12.339200pt;}
.ws14ad_c00000{word-spacing:12.344640pt;}
.wsddf_c00000{word-spacing:12.345600pt;}
.ws811_c00000{word-spacing:12.352000pt;}
.ws5b1_c00000{word-spacing:12.358400pt;}
.wsf72_c00000{word-spacing:12.360672pt;}
.wse04_c00000{word-spacing:12.364800pt;}
.wse9d_c00000{word-spacing:12.366016pt;}
.ws1845_c00000{word-spacing:12.371200pt;}
.ws847_c00000{word-spacing:12.377600pt;}
.ws1034_c00000{word-spacing:12.384000pt;}
.wsbc_c00000{word-spacing:12.390400pt;}
.ws438_c00000{word-spacing:12.396800pt;}
.ws810_c00000{word-spacing:12.403200pt;}
.wsf71_c00000{word-spacing:12.403424pt;}
.ws60f_c00000{word-spacing:12.409600pt;}
.ws2ea_c00000{word-spacing:12.416000pt;}
.ws469_c00000{word-spacing:12.422400pt;}
.ws99d_c00000{word-spacing:12.428800pt;}
.ws39a_c00000{word-spacing:12.430144pt;}
.ws73e_c00000{word-spacing:12.435200pt;}
.ws273_c00000{word-spacing:12.441600pt;}
.ws76c_c00000{word-spacing:12.448000pt;}
.ws1397_c00000{word-spacing:12.451520pt;}
.ws468_c00000{word-spacing:12.454400pt;}
.ws18eb_c00000{word-spacing:12.456864pt;}
.wsc1_c00000{word-spacing:12.460800pt;}
.ws18ea_c00000{word-spacing:12.462208pt;}
.ws549_c00000{word-spacing:12.467200pt;}
.ws128d_c00000{word-spacing:12.472896pt;}
.ws498_c00000{word-spacing:12.473600pt;}
.ws169a_c00000{word-spacing:12.478240pt;}
.ws505_c00000{word-spacing:12.480000pt;}
.ws106a_c00000{word-spacing:12.483584pt;}
.ws1791_c00000{word-spacing:12.484992pt;}
.ws698_c00000{word-spacing:12.486400pt;}
.ws359_c00000{word-spacing:12.488928pt;}
.ws5b2_c00000{word-spacing:12.492800pt;}
.ws128f_c00000{word-spacing:12.494272pt;}
.ws756_c00000{word-spacing:12.499200pt;}
.ws1ad3_c00000{word-spacing:12.499616pt;}
.ws1a1b_c00000{word-spacing:12.504960pt;}
.ws506_c00000{word-spacing:12.505600pt;}
.ws76d_c00000{word-spacing:12.512000pt;}
.wsbd_c00000{word-spacing:12.518400pt;}
.wsc2_c00000{word-spacing:12.524800pt;}
.ws17ce_c00000{word-spacing:12.525984pt;}
.ws1a1d_c00000{word-spacing:12.526336pt;}
.wseb1_c00000{word-spacing:12.531840pt;}
.ws133d_c00000{word-spacing:12.537024pt;}
.ws15fd_c00000{word-spacing:12.537696pt;}
.ws1a79_c00000{word-spacing:12.542368pt;}
.ws39c_c00000{word-spacing:12.547712pt;}
.ws1812_c00000{word-spacing:12.550400pt;}
.ws1a1c_c00000{word-spacing:12.553056pt;}
.wscb5_c00000{word-spacing:12.556800pt;}
.ws1a56_c00000{word-spacing:12.558400pt;}
.wsb82_c00000{word-spacing:12.563744pt;}
.wsc28_c00000{word-spacing:12.569600pt;}
.ws8de_c00000{word-spacing:12.574432pt;}
.ws1846_c00000{word-spacing:12.576000pt;}
.ws8df_c00000{word-spacing:12.579776pt;}
.ws5c4_c00000{word-spacing:12.585120pt;}
.ws799_c00000{word-spacing:12.590464pt;}
.wsc27_c00000{word-spacing:12.595200pt;}
.ws39b_c00000{word-spacing:12.601152pt;}
.wsd42_c00000{word-spacing:12.608000pt;}
.ws19a7_c00000{word-spacing:12.617184pt;}
.ws16d1_c00000{word-spacing:12.620800pt;}
.ws19df_c00000{word-spacing:12.622528pt;}
.ws22f_c00000{word-spacing:12.627200pt;}
.ws1b35_c00000{word-spacing:12.627872pt;}
.ws19e0_c00000{word-spacing:12.633216pt;}
.ws1b34_c00000{word-spacing:12.638560pt;}
.ws26f_c00000{word-spacing:12.640000pt;}
.ws11bf_c00000{word-spacing:12.646400pt;}
.ws79a_c00000{word-spacing:12.649248pt;}
.wsf20_c00000{word-spacing:12.652800pt;}
.ws1513_c00000{word-spacing:12.654592pt;}
.ws6cd_c00000{word-spacing:12.659200pt;}
.ws128e_c00000{word-spacing:12.659936pt;}
.ws1514_c00000{word-spacing:12.665280pt;}
.ws1101_c00000{word-spacing:12.665600pt;}
.ws1396_c00000{word-spacing:12.670624pt;}
.ws189c_c00000{word-spacing:12.672000pt;}
.wse42_c00000{word-spacing:12.678400pt;}
.ws104e_c00000{word-spacing:12.681312pt;}
.wse41_c00000{word-spacing:12.684800pt;}
.wscb4_c00000{word-spacing:12.691200pt;}
.ws106b_c00000{word-spacing:12.697344pt;}
.wscb3_c00000{word-spacing:12.697600pt;}
.wse92_c00000{word-spacing:12.702688pt;}
.ws546_c00000{word-spacing:12.704000pt;}
.ws13fa_c00000{word-spacing:12.708032pt;}
.wsf21_c00000{word-spacing:12.710400pt;}
.ws145b_c00000{word-spacing:12.713376pt;}
.ws5e8_c00000{word-spacing:12.716800pt;}
.ws4db_c00000{word-spacing:12.723200pt;}
.ws4ac_c00000{word-spacing:12.729600pt;}
.ws614_c00000{word-spacing:12.736000pt;}
.ws26e_c00000{word-spacing:12.742400pt;}
.ws309_c00000{word-spacing:12.748800pt;}
.wscc_c00000{word-spacing:12.755200pt;}
.ws12fb_c00000{word-spacing:12.761472pt;}
.wsd59_c00000{word-spacing:12.761600pt;}
.ws923_c00000{word-spacing:12.768000pt;}
.ws10e2_c00000{word-spacing:12.772160pt;}
.wsd5a_c00000{word-spacing:12.774400pt;}
.ws230_c00000{word-spacing:12.780800pt;}
.wscb_c00000{word-spacing:12.787200pt;}
.ws1266_c00000{word-spacing:12.793536pt;}
.ws548_c00000{word-spacing:12.793600pt;}
.ws101f_c00000{word-spacing:12.800000pt;}
.ws152b_c00000{word-spacing:12.804224pt;}
.ws1032_c00000{word-spacing:12.806400pt;}
.ws12ea_c00000{word-spacing:12.809568pt;}
.ws736_c00000{word-spacing:12.812800pt;}
.wsa55_c00000{word-spacing:12.818784pt;}
.ws5e7_c00000{word-spacing:12.819200pt;}
.ws35a_c00000{word-spacing:12.820256pt;}
.ws547_c00000{word-spacing:12.825600pt;}
.ws1840_c00000{word-spacing:12.832000pt;}
.ws8d6_c00000{word-spacing:12.836352pt;}
.ws12e4_c00000{word-spacing:12.838400pt;}
.ws198d_c00000{word-spacing:12.841632pt;}
.ws332_c00000{word-spacing:12.844800pt;}
.ws1033_c00000{word-spacing:12.851200pt;}
.ws1ac7_c00000{word-spacing:12.853920pt;}
.ws333_c00000{word-spacing:12.857600pt;}
.wscd8_c00000{word-spacing:12.857664pt;}
.ws1467_c00000{word-spacing:12.863008pt;}
.ws1ac6_c00000{word-spacing:12.865632pt;}
.ws1621_c00000{word-spacing:12.876800pt;}
.ws198e_c00000{word-spacing:12.884384pt;}
.ws198c_c00000{word-spacing:12.889728pt;}
.ws1102_c00000{word-spacing:12.896000pt;}
.ws1ac2_c00000{word-spacing:12.900416pt;}
.wsc1b_c00000{word-spacing:12.902400pt;}
.ws13d1_c00000{word-spacing:12.911104pt;}
.ws16d9_c00000{word-spacing:12.915200pt;}
.ws17b1_c00000{word-spacing:12.921600pt;}
.ws1ac1_c00000{word-spacing:12.921792pt;}
.ws16d6_c00000{word-spacing:12.928000pt;}
.ws119f_c00000{word-spacing:12.934400pt;}
.wsb5b_c00000{word-spacing:12.940800pt;}
.ws1b57_c00000{word-spacing:12.947200pt;}
.wsf6_c00000{word-spacing:12.953600pt;}
.ws14a5_c00000{word-spacing:12.959200pt;}
.ws15c2_c00000{word-spacing:12.960000pt;}
.ws1267_c00000{word-spacing:12.964544pt;}
.ws539_c00000{word-spacing:12.966400pt;}
.ws1265_c00000{word-spacing:12.975232pt;}
.ws12f6_c00000{word-spacing:12.979200pt;}
.ws129d_c00000{word-spacing:12.980576pt;}
.ws1089_c00000{word-spacing:12.985600pt;}
.ws967_c00000{word-spacing:12.992000pt;}
.ws97d_c00000{word-spacing:12.998400pt;}
.ws450_c00000{word-spacing:13.004800pt;}
.ws13f9_c00000{word-spacing:13.007296pt;}
.ws99_c00000{word-spacing:13.011200pt;}
.ws50f_c00000{word-spacing:13.017600pt;}
.ws1a86_c00000{word-spacing:13.017984pt;}
.ws968_c00000{word-spacing:13.024000pt;}
.wscbb_c00000{word-spacing:13.030400pt;}
.ws538_c00000{word-spacing:13.036800pt;}
.ws1763_c00000{word-spacing:13.039360pt;}
.ws59e_c00000{word-spacing:13.043200pt;}
.wsa92_c00000{word-spacing:13.049600pt;}
.ws7e2_c00000{word-spacing:13.055392pt;}
.ws537_c00000{word-spacing:13.056000pt;}
.ws44f_c00000{word-spacing:13.062400pt;}
.ws1132_c00000{word-spacing:13.068800pt;}
.ws100e_c00000{word-spacing:13.075200pt;}
.ws869_c00000{word-spacing:13.076768pt;}
.ws69e_c00000{word-spacing:13.081600pt;}
.wsebc_c00000{word-spacing:13.087456pt;}
.ws5b5_c00000{word-spacing:13.088000pt;}
.wsed1_c00000{word-spacing:13.092800pt;}
.wsaf_c00000{word-spacing:13.094400pt;}
.wsfdb_c00000{word-spacing:13.098144pt;}
.wsaa5_c00000{word-spacing:13.100800pt;}
.wsc0e_c00000{word-spacing:13.103488pt;}
.wsf5_c00000{word-spacing:13.107200pt;}
.ws1462_c00000{word-spacing:13.108832pt;}
.ws69f_c00000{word-spacing:13.113600pt;}
.wsfda_c00000{word-spacing:13.119520pt;}
.ws98f_c00000{word-spacing:13.120000pt;}
.ws5ac_c00000{word-spacing:13.122560pt;}
.wsf80_c00000{word-spacing:13.124864pt;}
.wsc03_c00000{word-spacing:13.126400pt;}
.ws3a6_c00000{word-spacing:13.130208pt;}
.ws6d0_c00000{word-spacing:13.132800pt;}
.ws12f7_c00000{word-spacing:13.139200pt;}
.wsf7f_c00000{word-spacing:13.140896pt;}
.ws50e_c00000{word-spacing:13.145600pt;}
.ws1632_c00000{word-spacing:13.151584pt;}
.ws1047_c00000{word-spacing:13.152000pt;}
.ws837_c00000{word-spacing:13.156928pt;}
.ws9a_c00000{word-spacing:13.158400pt;}
.ws16c0_c00000{word-spacing:13.158432pt;}
.ws19f4_c00000{word-spacing:13.164288pt;}
.ws1a3b_c00000{word-spacing:13.164800pt;}
.wsd25_c00000{word-spacing:13.167616pt;}
.ws15b5_c00000{word-spacing:13.170144pt;}
.wsc5a_c00000{word-spacing:13.171200pt;}
.wsd24_c00000{word-spacing:13.178304pt;}
.ws177f_c00000{word-spacing:13.183648pt;}
.wsb0_c00000{word-spacing:13.184000pt;}
.ws1128_c00000{word-spacing:13.190400pt;}
.wsfd9_c00000{word-spacing:13.194336pt;}
.ws5ad_c00000{word-spacing:13.197120pt;}
.ws1762_c00000{word-spacing:13.199680pt;}
.ws10bd_c00000{word-spacing:13.203200pt;}
.ws279_c00000{word-spacing:13.209600pt;}
.wscd9_c00000{word-spacing:13.215712pt;}
.ws1736_c00000{word-spacing:13.222400pt;}
.ws13d0_c00000{word-spacing:13.226400pt;}
.ws1281_c00000{word-spacing:13.235200pt;}
.ws1764_c00000{word-spacing:13.237088pt;}
.ws1559_c00000{word-spacing:13.248000pt;}
.ws171c_c00000{word-spacing:13.253120pt;}
.ws127d_c00000{word-spacing:13.254400pt;}
.ws38b_c00000{word-spacing:13.260800pt;}
.ws171d_c00000{word-spacing:13.263808pt;}
.wsd64_c00000{word-spacing:13.267200pt;}
.ws45f_c00000{word-spacing:13.273600pt;}
.wsb07_c00000{word-spacing:13.280000pt;}
.ws838_c00000{word-spacing:13.285184pt;}
.ws11ba_c00000{word-spacing:13.286400pt;}
.ws1780_c00000{word-spacing:13.290528pt;}
.ws278_c00000{word-spacing:13.292800pt;}
.ws13f0_c00000{word-spacing:13.299200pt;}
.ws1633_c00000{word-spacing:13.301216pt;}
.ws4f0_c00000{word-spacing:13.305600pt;}
.ws1337_c00000{word-spacing:13.312000pt;}
.ws113a_c00000{word-spacing:13.318400pt;}
.ws10c_c00000{word-spacing:13.322592pt;}
.ws19e_c00000{word-spacing:13.324800pt;}
.wsb08_c00000{word-spacing:13.331200pt;}
.ws12fe_c00000{word-spacing:13.333280pt;}
.ws38c_c00000{word-spacing:13.337600pt;}
.wscd4_c00000{word-spacing:13.338624pt;}
.ws460_c00000{word-spacing:13.344000pt;}
.ws3cb_c00000{word-spacing:13.350400pt;}
.ws19d_c00000{word-spacing:13.356800pt;}
.wscd5_c00000{word-spacing:13.360000pt;}
.ws53b_c00000{word-spacing:13.363200pt;}
.ws21d_c00000{word-spacing:13.369600pt;}
.ws4ef_c00000{word-spacing:13.376000pt;}
.ws84b_c00000{word-spacing:13.382400pt;}
.wsf9c_c00000{word-spacing:13.388800pt;}
.ws95f_c00000{word-spacing:13.395200pt;}
.ws559_c00000{word-spacing:13.401600pt;}
.ws2f4_c00000{word-spacing:13.408000pt;}
.wsa3f_c00000{word-spacing:13.414400pt;}
.ws1486_c00000{word-spacing:13.418784pt;}
.ws512_c00000{word-spacing:13.420800pt;}
.ws16be_c00000{word-spacing:13.421952pt;}
.ws11a1_c00000{word-spacing:13.427200pt;}
.ws1534_c00000{word-spacing:13.429472pt;}
.ws960_c00000{word-spacing:13.433600pt;}
.wsebd_c00000{word-spacing:13.434816pt;}
.ws511_c00000{word-spacing:13.440000pt;}
.ws99f_c00000{word-spacing:13.446400pt;}
.ws11f3_c00000{word-spacing:13.452800pt;}
.wsb09_c00000{word-spacing:13.459200pt;}
.wse43_c00000{word-spacing:13.465600pt;}
.ws48c_c00000{word-spacing:13.472000pt;}
.ws19bf_c00000{word-spacing:13.472224pt;}
.wsf2f_c00000{word-spacing:13.477568pt;}
.ws48b_c00000{word-spacing:13.478400pt;}
.ws1307_c00000{word-spacing:13.482912pt;}
.ws1556_c00000{word-spacing:13.484800pt;}
.ws16bd_c00000{word-spacing:13.486368pt;}
.ws1405_c00000{word-spacing:13.491200pt;}
.ws5ca_c00000{word-spacing:13.498944pt;}
.ws196d_c00000{word-spacing:13.503936pt;}
.ws1315_c00000{word-spacing:13.509632pt;}
.ws1210_c00000{word-spacing:13.510400pt;}
.ws686_c00000{word-spacing:13.514816pt;}
.ws5c8_c00000{word-spacing:13.520320pt;}
.ws150b_c00000{word-spacing:13.523200pt;}
.ws1308_c00000{word-spacing:13.525664pt;}
.ws1461_c00000{word-spacing:13.529600pt;}
.ws5c9_c00000{word-spacing:13.531008pt;}
.wsbb0_c00000{word-spacing:13.536000pt;}
.ws86b_c00000{word-spacing:13.536352pt;}
.ws86a_c00000{word-spacing:13.547040pt;}
.wsfa5_c00000{word-spacing:13.552384pt;}
.wsd47_c00000{word-spacing:13.555200pt;}
.wsfa4_c00000{word-spacing:13.563072pt;}
.ws1a36_c00000{word-spacing:13.568000pt;}
.ws965_c00000{word-spacing:13.574400pt;}
.ws1433_c00000{word-spacing:13.580800pt;}
.wsa64_c00000{word-spacing:13.587200pt;}
.ws4ad_c00000{word-spacing:13.593600pt;}
.ws19b0_c00000{word-spacing:13.600000pt;}
.ws1aa2_c00000{word-spacing:13.611168pt;}
.ws1030_c00000{word-spacing:13.612800pt;}
.ws7e1_c00000{word-spacing:13.616512pt;}
.wsc86_c00000{word-spacing:13.619200pt;}
.ws52a_c00000{word-spacing:13.625600pt;}
.wse02_c00000{word-spacing:13.632000pt;}
.wsc73_c00000{word-spacing:13.638400pt;}
.ws19c0_c00000{word-spacing:13.643232pt;}
.ws2a4_c00000{word-spacing:13.644800pt;}
.ws4ae_c00000{word-spacing:13.651200pt;}
.wsf30_c00000{word-spacing:13.653920pt;}
.ws9fa_c00000{word-spacing:13.657600pt;}
.wse87_c00000{word-spacing:13.664000pt;}
.ws7c3_c00000{word-spacing:13.670400pt;}
.ws10de_c00000{word-spacing:13.676800pt;}
.ws12fc_c00000{word-spacing:13.680640pt;}
.wsbb1_c00000{word-spacing:13.683200pt;}
.wsa7_c00000{word-spacing:13.689600pt;}
.ws4af_c00000{word-spacing:13.696000pt;}
.ws1257_c00000{word-spacing:13.702400pt;}
.wsfbc_c00000{word-spacing:13.708800pt;}
.ws12fd_c00000{word-spacing:13.712704pt;}
.ws6c5_c00000{word-spacing:13.715200pt;}
.ws1119_c00000{word-spacing:13.721600pt;}
.ws529_c00000{word-spacing:13.728000pt;}
.ws444_c00000{word-spacing:13.734400pt;}
.ws147e_c00000{word-spacing:13.739424pt;}
.ws329_c00000{word-spacing:13.740800pt;}
.ws1314_c00000{word-spacing:13.744768pt;}
.ws716_c00000{word-spacing:13.747200pt;}
.wsa8_c00000{word-spacing:13.753600pt;}
.ws419_c00000{word-spacing:13.760000pt;}
.ws172e_c00000{word-spacing:13.761600pt;}
.ws9c7_c00000{word-spacing:13.766144pt;}
.ws8b5_c00000{word-spacing:13.766400pt;}
.wsfb3_c00000{word-spacing:13.772800pt;}
.wsdd5_c00000{word-spacing:13.776832pt;}
.ws7a4_c00000{word-spacing:13.779200pt;}
.ws147d_c00000{word-spacing:13.782176pt;}
.ws1646_c00000{word-spacing:13.785600pt;}
.ws1948_c00000{word-spacing:13.790880pt;}
.wsdde_c00000{word-spacing:13.792000pt;}
.ws803_c00000{word-spacing:13.796736pt;}
.ws1781_c00000{word-spacing:13.798400pt;}
.ws802_c00000{word-spacing:13.802592pt;}
.ws1872_c00000{word-spacing:13.804800pt;}
.ws1094_c00000{word-spacing:13.811200pt;}
.ws16bc_c00000{word-spacing:13.820160pt;}
.ws7c4_c00000{word-spacing:13.824000pt;}
.ws1947_c00000{word-spacing:13.826016pt;}
.ws739_c00000{word-spacing:13.843200pt;}
.wse35_c00000{word-spacing:13.846304pt;}
.ws1f9_c00000{word-spacing:13.849600pt;}
.ws1316_c00000{word-spacing:13.856992pt;}
.ws1ab1_c00000{word-spacing:13.868800pt;}
.ws1547_c00000{word-spacing:13.875200pt;}
.wsa07_c00000{word-spacing:13.878368pt;}
.wsa08_c00000{word-spacing:13.894400pt;}
.wscac_c00000{word-spacing:13.900800pt;}
.ws9c8_c00000{word-spacing:13.905088pt;}
.ws168_c00000{word-spacing:13.907200pt;}
.wse36_c00000{word-spacing:13.915776pt;}
.wseed_c00000{word-spacing:13.926400pt;}
.ws737_c00000{word-spacing:13.932800pt;}
.ws114c_c00000{word-spacing:13.939200pt;}
.ws8bb_c00000{word-spacing:13.945600pt;}
.wse68_c00000{word-spacing:13.952000pt;}
.ws9c9_c00000{word-spacing:13.958528pt;}
.wseaa_c00000{word-spacing:13.964800pt;}
.ws123d_c00000{word-spacing:13.971200pt;}
.ws738_c00000{word-spacing:13.977600pt;}
.wsa14_c00000{word-spacing:13.984000pt;}
.ws249_c00000{word-spacing:13.990400pt;}
.ws1fb_c00000{word-spacing:13.996800pt;}
.wsed2_c00000{word-spacing:14.001280pt;}
.ws167_c00000{word-spacing:14.003200pt;}
.ws248_c00000{word-spacing:14.009600pt;}
.wsa0e_c00000{word-spacing:14.016000pt;}
.wsc35_c00000{word-spacing:14.022400pt;}
.wsf2c_c00000{word-spacing:14.022656pt;}
.wsd21_c00000{word-spacing:14.028800pt;}
.ws609_c00000{word-spacing:14.035200pt;}
.ws1837_c00000{word-spacing:14.038688pt;}
.ws20e_c00000{word-spacing:14.041600pt;}
.wsad_c00000{word-spacing:14.048000pt;}
.ws92b_c00000{word-spacing:14.054400pt;}
.ws16f0_c00000{word-spacing:14.060064pt;}
.ws166_c00000{word-spacing:14.060800pt;}
.ws1974_c00000{word-spacing:14.065408pt;}
.ws843_c00000{word-spacing:14.067200pt;}
.wsd09_c00000{word-spacing:14.073600pt;}
.wsba6_c00000{word-spacing:14.077824pt;}
.wsb72_c00000{word-spacing:14.080000pt;}
.ws5dc_c00000{word-spacing:14.086400pt;}
.ws1779_c00000{word-spacing:14.086784pt;}
.ws1a4c_c00000{word-spacing:14.092128pt;}
.wsa8e_c00000{word-spacing:14.092800pt;}
.wsd1e_c00000{word-spacing:14.099200pt;}
.ws16dc_c00000{word-spacing:14.102816pt;}
.ws60b_c00000{word-spacing:14.105600pt;}
.wsba5_c00000{word-spacing:14.107104pt;}
.ws1b1f_c00000{word-spacing:14.112000pt;}
.ws1911_c00000{word-spacing:14.112960pt;}
.ws18c1_c00000{word-spacing:14.113504pt;}
.ws20f_c00000{word-spacing:14.118400pt;}
.ws1ad0_c00000{word-spacing:14.118848pt;}
.ws158f_c00000{word-spacing:14.124672pt;}
.ws1fa_c00000{word-spacing:14.131200pt;}
.ws1b4a_c00000{word-spacing:14.136384pt;}
.ws59f_c00000{word-spacing:14.144000pt;}
.ws1b49_c00000{word-spacing:14.148096pt;}
.wsa0f_c00000{word-spacing:14.150400pt;}
.ws1a3d_c00000{word-spacing:14.156256pt;}
.wsd32_c00000{word-spacing:14.156800pt;}
.ws1893_c00000{word-spacing:14.163200pt;}
.ws1973_c00000{word-spacing:14.172288pt;}
.ws18c0_c00000{word-spacing:14.177632pt;}
.ws89f_c00000{word-spacing:14.193664pt;}
.wsd31_c00000{word-spacing:14.195200pt;}
.ws17e3_c00000{word-spacing:14.199008pt;}
.wsbaf_c00000{word-spacing:14.208000pt;}
.ws60a_c00000{word-spacing:14.214400pt;}
.ws182d_c00000{word-spacing:14.215040pt;}
.ws846_c00000{word-spacing:14.220800pt;}
.ws13ed_c00000{word-spacing:14.225728pt;}
.ws7f4_c00000{word-spacing:14.227200pt;}
.ws1a8a_c00000{word-spacing:14.233600pt;}
.ws12ca_c00000{word-spacing:14.252800pt;}
.ws17a9_c00000{word-spacing:14.259200pt;}
.wsf3d_c00000{word-spacing:14.265600pt;}
.ws1831_c00000{word-spacing:14.272000pt;}
.ws12bc_c00000{word-spacing:14.273824pt;}
.ws87f_c00000{word-spacing:14.278400pt;}
.ws1279_c00000{word-spacing:14.279168pt;}
.ws2d7_c00000{word-spacing:14.284800pt;}
.wsf2b_c00000{word-spacing:14.289856pt;}
.wsfa1_c00000{word-spacing:14.291200pt;}
.ws1604_c00000{word-spacing:14.297600pt;}
.wsdd_c00000{word-spacing:14.304000pt;}
.ws6c6_c00000{word-spacing:14.310400pt;}
.ws13ee_c00000{word-spacing:14.316576pt;}
.wsd15_c00000{word-spacing:14.316800pt;}
.ws2d6_c00000{word-spacing:14.323200pt;}
.ws1064_c00000{word-spacing:14.329600pt;}
.ws845_c00000{word-spacing:14.336000pt;}
.ws1975_c00000{word-spacing:14.337952pt;}
.ws3d4_c00000{word-spacing:14.342400pt;}
.wsa3c_c00000{word-spacing:14.348800pt;}
.ws6c7_c00000{word-spacing:14.355200pt;}
.ws11ad_c00000{word-spacing:14.361600pt;}
.wsd9a_c00000{word-spacing:14.368000pt;}
.ws2a8_c00000{word-spacing:14.374400pt;}
.wsd9b_c00000{word-spacing:14.380800pt;}
.wsb77_c00000{word-spacing:14.382336pt;}
.ws139f_c00000{word-spacing:14.386048pt;}
.ws2a7_c00000{word-spacing:14.387200pt;}
.wsdc_c00000{word-spacing:14.393600pt;}
.ws1482_c00000{word-spacing:14.396736pt;}
.ws95e_c00000{word-spacing:14.400000pt;}
.ws139e_c00000{word-spacing:14.402080pt;}
.ws1942_c00000{word-spacing:14.405760pt;}
.ws844_c00000{word-spacing:14.406400pt;}
.wsd58_c00000{word-spacing:14.412800pt;}
.ws816_c00000{word-spacing:14.418112pt;}
.wsa1b_c00000{word-spacing:14.419200pt;}
.wsb78_c00000{word-spacing:14.423328pt;}
.wsbd3_c00000{word-spacing:14.423456pt;}
.wsd14_c00000{word-spacing:14.425600pt;}
.wse81_c00000{word-spacing:14.428800pt;}
.wsf09_c00000{word-spacing:14.432000pt;}
.ws1b4f_c00000{word-spacing:14.438400pt;}
.wsfa2_c00000{word-spacing:14.444800pt;}
.ws1792_c00000{word-spacing:14.446752pt;}
.ws89e_c00000{word-spacing:14.450176pt;}
.ws1150_c00000{word-spacing:14.451200pt;}
.wsa1c_c00000{word-spacing:14.457600pt;}
.ws1849_c00000{word-spacing:14.470400pt;}
.ws1015_c00000{word-spacing:14.471552pt;}
.ws1992_c00000{word-spacing:14.476800pt;}
.ws13ce_c00000{word-spacing:14.482240pt;}
.ws1212_c00000{word-spacing:14.483200pt;}
.ws1acf_c00000{word-spacing:14.492928pt;}
.ws64b_c00000{word-spacing:14.496000pt;}
.ws1af9_c00000{word-spacing:14.508800pt;}
.ws1a0a_c00000{word-spacing:14.514304pt;}
.ws1b12_c00000{word-spacing:14.515200pt;}
.ws193f_c00000{word-spacing:14.521600pt;}
.wsea3_c00000{word-spacing:14.524992pt;}
.ws1417_c00000{word-spacing:14.528000pt;}
.ws40e_c00000{word-spacing:14.534400pt;}
.ws1744_c00000{word-spacing:14.535680pt;}
.ws122f_c00000{word-spacing:14.540800pt;}
.wsf22_c00000{word-spacing:14.547200pt;}
.ws139d_c00000{word-spacing:14.551712pt;}
.ws187d_c00000{word-spacing:14.553600pt;}
.ws40d_c00000{word-spacing:14.560000pt;}
.wsf35_c00000{word-spacing:14.566400pt;}
.ws1e3_c00000{word-spacing:14.572800pt;}
.ws5a6_c00000{word-spacing:14.573088pt;}
.wsfe1_c00000{word-spacing:14.579200pt;}
.ws709_c00000{word-spacing:14.585600pt;}
.ws1483_c00000{word-spacing:14.589120pt;}
.wsa24_c00000{word-spacing:14.592000pt;}
.ws1280_c00000{word-spacing:14.598400pt;}
.ws8a0_c00000{word-spacing:14.599808pt;}
.ws976_c00000{word-spacing:14.604800pt;}
.wsf41_c00000{word-spacing:14.611200pt;}
.wsf36_c00000{word-spacing:14.617600pt;}
.ws97e_c00000{word-spacing:14.624000pt;}
.ws28b_c00000{word-spacing:14.630400pt;}
.ws1743_c00000{word-spacing:14.631872pt;}
.ws608_c00000{word-spacing:14.636800pt;}
.ws1858_c00000{word-spacing:14.642560pt;}
.ws6d2_c00000{word-spacing:14.643200pt;}
.ws1e1_c00000{word-spacing:14.649600pt;}
.ws196c_c00000{word-spacing:14.653248pt;}
.wsa40_c00000{word-spacing:14.656000pt;}
.ws60c_c00000{word-spacing:14.662400pt;}
.ws40c_c00000{word-spacing:14.668800pt;}
.ws31e_c00000{word-spacing:14.674624pt;}
.ws163_c00000{word-spacing:14.675200pt;}
.wsc15_c00000{word-spacing:14.681600pt;}
.ws28a_c00000{word-spacing:14.688000pt;}
.ws98_c00000{word-spacing:14.694400pt;}
.ws97_c00000{word-spacing:14.700800pt;}
.wsc37_c00000{word-spacing:14.707200pt;}
.ws815_c00000{word-spacing:14.712032pt;}
.ws60d_c00000{word-spacing:14.713600pt;}
.ws624_c00000{word-spacing:14.717376pt;}
.wsf42_c00000{word-spacing:14.720000pt;}
.ws1e2_c00000{word-spacing:14.726400pt;}
.ws17df_c00000{word-spacing:14.727840pt;}
.wsc16_c00000{word-spacing:14.732800pt;}
.ws183f_c00000{word-spacing:14.733408pt;}
.wsc17_c00000{word-spacing:14.739200pt;}
.ws1418_c00000{word-spacing:14.745600pt;}
.ws1273_c00000{word-spacing:14.749440pt;}
.ws1867_c00000{word-spacing:14.751264pt;}
.ws6d3_c00000{word-spacing:14.752000pt;}
.ws13b5_c00000{word-spacing:14.758400pt;}
.wsfb5_c00000{word-spacing:14.764800pt;}
.ws15e5_c00000{word-spacing:14.768832pt;}
.ws1877_c00000{word-spacing:14.771200pt;}
.ws1014_c00000{word-spacing:14.776160pt;}
.ws8f2_c00000{word-spacing:14.780544pt;}
.ws1985_c00000{word-spacing:14.784000pt;}
.ws1788_c00000{word-spacing:14.792256pt;}
.wse27_c00000{word-spacing:14.794816pt;}
.ws1770_c00000{word-spacing:14.796800pt;}
.ws814_c00000{word-spacing:14.797536pt;}
.ws1070_c00000{word-spacing:14.809600pt;}
.wsa23_c00000{word-spacing:14.816000pt;}
.ws1ab2_c00000{word-spacing:14.822400pt;}
.ws1055_c00000{word-spacing:14.828800pt;}
.ws1274_c00000{word-spacing:14.829600pt;}
.wse07_c00000{word-spacing:14.834944pt;}
.ws12f4_c00000{word-spacing:14.835200pt;}
.ws1416_c00000{word-spacing:14.848000pt;}
.ws13cf_c00000{word-spacing:14.850976pt;}
.ws1056_c00000{word-spacing:14.854400pt;}
.ws2f8_c00000{word-spacing:14.873600pt;}
.ws78d_c00000{word-spacing:14.886400pt;}
.ws31f_c00000{word-spacing:14.888384pt;}
.wse06_c00000{word-spacing:14.904416pt;}
.ws1552_c00000{word-spacing:14.905600pt;}
.ws1071_c00000{word-spacing:14.912000pt;}
.ws2c8_c00000{word-spacing:14.918400pt;}
.wse7a_c00000{word-spacing:14.920448pt;}
.ws876_c00000{word-spacing:14.924800pt;}
.wsb30_c00000{word-spacing:14.931200pt;}
.ws877_c00000{word-spacing:14.937600pt;}
.ws12c6_c00000{word-spacing:14.944000pt;}
.ws1a0b_c00000{word-spacing:14.947168pt;}
.ws448_c00000{word-spacing:14.950400pt;}
.ws2c7_c00000{word-spacing:14.956800pt;}
.ws2f7_c00000{word-spacing:14.963200pt;}
.ws137b_c00000{word-spacing:14.969600pt;}
.ws6c0_c00000{word-spacing:14.976000pt;}
.ws326_c00000{word-spacing:14.982400pt;}
.ws6c2_c00000{word-spacing:14.988800pt;}
.ws6bf_c00000{word-spacing:14.995200pt;}
.wsef8_c00000{word-spacing:15.001600pt;}
.ws952_c00000{word-spacing:15.008000pt;}
.wse03_c00000{word-spacing:15.014400pt;}
.ws447_c00000{word-spacing:15.020800pt;}
.ws1ad9_c00000{word-spacing:15.021984pt;}
.ws29e_c00000{word-spacing:15.027200pt;}
.ws1a9a_c00000{word-spacing:15.027328pt;}
.ws1275_c00000{word-spacing:15.032672pt;}
.ws325_c00000{word-spacing:15.033600pt;}
.ws90e_c00000{word-spacing:15.040000pt;}
.ws29d_c00000{word-spacing:15.046400pt;}
.ws108b_c00000{word-spacing:15.052800pt;}
.ws1206_c00000{word-spacing:15.054048pt;}
.ws1970_c00000{word-spacing:15.055776pt;}
.wsef9_c00000{word-spacing:15.059200pt;}
.ws13b4_c00000{word-spacing:15.065600pt;}
.ws198b_c00000{word-spacing:15.070080pt;}
.ws6c3_c00000{word-spacing:15.072000pt;}
.ws15b6_c00000{word-spacing:15.073344pt;}
.ws108c_c00000{word-spacing:15.078400pt;}
.wsd2c_c00000{word-spacing:15.084800pt;}
.wsb76_c00000{word-spacing:15.090912pt;}
.wsf77_c00000{word-spacing:15.091200pt;}
.ws1690_c00000{word-spacing:15.091456pt;}
.wsa63_c00000{word-spacing:15.097600pt;}
.ws1b4d_c00000{word-spacing:15.102624pt;}
.ws52e_c00000{word-spacing:15.104000pt;}
.wsfc0_c00000{word-spacing:15.107488pt;}
.ws10d2_c00000{word-spacing:15.110400pt;}
.ws1276_c00000{word-spacing:15.112832pt;}
.wsdce_c00000{word-spacing:15.123200pt;}
.ws17d6_c00000{word-spacing:15.123520pt;}
.ws17d7_c00000{word-spacing:15.128864pt;}
.ws530_c00000{word-spacing:15.136000pt;}
.ws1a2f_c00000{word-spacing:15.142400pt;}
.ws1979_c00000{word-spacing:15.144896pt;}
.wsb80_c00000{word-spacing:15.148800pt;}
.ws186d_c00000{word-spacing:15.155200pt;}
.wsfbf_c00000{word-spacing:15.160928pt;}
.ws1a80_c00000{word-spacing:15.161600pt;}
.ws1a26_c00000{word-spacing:15.166272pt;}
.ws1a41_c00000{word-spacing:15.174400pt;}
.wsd63_c00000{word-spacing:15.180800pt;}
.ws1a66_c00000{word-spacing:15.187200pt;}
.wsef4_c00000{word-spacing:15.192992pt;}
.ws1885_c00000{word-spacing:15.193600pt;}
.wsc6c_c00000{word-spacing:15.200000pt;}
.ws147_c00000{word-spacing:15.206400pt;}
.ws16ee_c00000{word-spacing:15.209024pt;}
.ws1a42_c00000{word-spacing:15.212800pt;}
.ws625_c00000{word-spacing:15.214368pt;}
.ws17fc_c00000{word-spacing:15.219200pt;}
.ws21b_c00000{word-spacing:15.225600pt;}
.ws12db_c00000{word-spacing:15.230400pt;}
.wsd0b_c00000{word-spacing:15.232000pt;}
.ws52f_c00000{word-spacing:15.238400pt;}
.ws1a9c_c00000{word-spacing:15.241088pt;}
.ws1092_c00000{word-spacing:15.244800pt;}
.ws12da_c00000{word-spacing:15.246432pt;}
.wsbb8_c00000{word-spacing:15.251200pt;}
.ws1a27_c00000{word-spacing:15.251776pt;}
.wsc3_c00000{word-spacing:15.257600pt;}
.ws1783_c00000{word-spacing:15.264000pt;}
.ws19f8_c00000{word-spacing:15.267808pt;}
.ws57b_c00000{word-spacing:15.270400pt;}
.wsc4_c00000{word-spacing:15.276800pt;}
.ws146_c00000{word-spacing:15.283200pt;}
.ws21c_c00000{word-spacing:15.289600pt;}
.ws9b8_c00000{word-spacing:15.296000pt;}
.ws902_c00000{word-spacing:15.302400pt;}
.wse4a_c00000{word-spacing:15.308800pt;}
.ws1317_c00000{word-spacing:15.310560pt;}
.wsdb_c00000{word-spacing:15.315200pt;}
.wsda_c00000{word-spacing:15.321600pt;}
.ws1135_c00000{word-spacing:15.328000pt;}
.ws528_c00000{word-spacing:15.334400pt;}
.wsa75_c00000{word-spacing:15.340800pt;}
.wsc5f_c00000{word-spacing:15.342624pt;}
.ws3f2_c00000{word-spacing:15.347200pt;}
.wsef3_c00000{word-spacing:15.353312pt;}
.ws8e1_c00000{word-spacing:15.353600pt;}
.wsc40_c00000{word-spacing:15.358656pt;}
.ws510_c00000{word-spacing:15.360000pt;}
.wsb44_c00000{word-spacing:15.364000pt;}
.ws591_c00000{word-spacing:15.366400pt;}
.ws8eb_c00000{word-spacing:15.372800pt;}
.ws1a9b_c00000{word-spacing:15.374688pt;}
.wsc6b_c00000{word-spacing:15.379200pt;}
.ws1605_c00000{word-spacing:15.385600pt;}
.wsbb9_c00000{word-spacing:15.395424pt;}
.ws1aea_c00000{word-spacing:15.396064pt;}
.ws197a_c00000{word-spacing:15.401408pt;}
.ws199a_c00000{word-spacing:15.404800pt;}
.ws1010_c00000{word-spacing:15.411200pt;}
.ws1829_c00000{word-spacing:15.417600pt;}
.ws18df_c00000{word-spacing:15.424704pt;}
.ws1536_c00000{word-spacing:15.428128pt;}
.ws1046_c00000{word-spacing:15.430400pt;}
.ws1318_c00000{word-spacing:15.438816pt;}
.ws1879_c00000{word-spacing:15.442272pt;}
.ws182a_c00000{word-spacing:15.443200pt;}
.wsd4e_c00000{word-spacing:15.449504pt;}
.ws19be_c00000{word-spacing:15.449600pt;}
.ws16ed_c00000{word-spacing:15.454848pt;}
.wsc41_c00000{word-spacing:15.465536pt;}
.wsd0a_c00000{word-spacing:15.475200pt;}
.wsef5_c00000{word-spacing:15.476224pt;}
.ws198a_c00000{word-spacing:15.481568pt;}
.ws174a_c00000{word-spacing:15.481600pt;}
.ws1ae8_c00000{word-spacing:15.486912pt;}
.ws171b_c00000{word-spacing:15.488000pt;}
.ws1b31_c00000{word-spacing:15.494400pt;}
.ws16ef_c00000{word-spacing:15.497600pt;}
.wsc42_c00000{word-spacing:15.502944pt;}
.ws1a7b_c00000{word-spacing:15.508288pt;}
.ws1917_c00000{word-spacing:15.518976pt;}
.ws191f_c00000{word-spacing:15.520000pt;}
.wsf69_c00000{word-spacing:15.526400pt;}
.ws1116_c00000{word-spacing:15.529664pt;}
.ws14e7_c00000{word-spacing:15.532800pt;}
.ws953_c00000{word-spacing:15.545600pt;}
.ws18f2_c00000{word-spacing:15.551040pt;}
.ws1435_c00000{word-spacing:15.552000pt;}
.ws12e2_c00000{word-spacing:15.556384pt;}
.ws76f_c00000{word-spacing:15.558400pt;}
.wsc93_c00000{word-spacing:15.561728pt;}
.ws1f3_c00000{word-spacing:15.564800pt;}
.ws12d4_c00000{word-spacing:15.571200pt;}
.ws1319_c00000{word-spacing:15.572416pt;}
.ws78e_c00000{word-spacing:15.577600pt;}
.ws167a_c00000{word-spacing:15.584000pt;}
.wsb45_c00000{word-spacing:15.588448pt;}
.ws14e9_c00000{word-spacing:15.590400pt;}
.ws153_c00000{word-spacing:15.596800pt;}
.ws154_c00000{word-spacing:15.603200pt;}
.ws58d_c00000{word-spacing:15.609600pt;}
.wsb3c_c00000{word-spacing:15.616000pt;}
.wsc05_c00000{word-spacing:15.622400pt;}
.wsfe2_c00000{word-spacing:15.628800pt;}
.ws95a_c00000{word-spacing:15.635200pt;}
.wsd8e_c00000{word-spacing:15.641600pt;}
.ws3fa_c00000{word-spacing:15.648000pt;}
.ws1539_c00000{word-spacing:15.652576pt;}
.ws58c_c00000{word-spacing:15.654400pt;}
.ws257_c00000{word-spacing:15.660800pt;}
.ws856_c00000{word-spacing:15.663264pt;}
.ws3fb_c00000{word-spacing:15.667200pt;}
.ws1409_c00000{word-spacing:15.668608pt;}
.ws1f4_c00000{word-spacing:15.673600pt;}
.ws18b3_c00000{word-spacing:15.673952pt;}
.ws1333_c00000{word-spacing:15.679296pt;}
.ws1a0_c00000{word-spacing:15.680000pt;}
.ws199c_c00000{word-spacing:15.686400pt;}
.wsd4f_c00000{word-spacing:15.689984pt;}
.wsc00_c00000{word-spacing:15.692800pt;}
.ws258_c00000{word-spacing:15.699200pt;}
.ws14bf_c00000{word-spacing:15.699936pt;}
.wsf68_c00000{word-spacing:15.705600pt;}
.ws18f3_c00000{word-spacing:15.706016pt;}
.wsd50_c00000{word-spacing:15.711360pt;}
.ws184b_c00000{word-spacing:15.712000pt;}
.ws192d_c00000{word-spacing:15.717504pt;}
.ws11a8_c00000{word-spacing:15.718400pt;}
.ws10a2_c00000{word-spacing:15.722048pt;}
.ws1a81_c00000{word-spacing:15.724800pt;}
.ws1a75_c00000{word-spacing:15.731200pt;}
.ws1538_c00000{word-spacing:15.732736pt;}
.ws10c3_c00000{word-spacing:15.737600pt;}
.wsad7_c00000{word-spacing:15.744000pt;}
.ws11a9_c00000{word-spacing:15.750400pt;}
.ws16e5_c00000{word-spacing:15.752640pt;}
.ws1b2c_c00000{word-spacing:15.754112pt;}
.wsd4d_c00000{word-spacing:15.759456pt;}
.ws1537_c00000{word-spacing:15.764800pt;}
.wsd84_c00000{word-spacing:15.770144pt;}
.ws10a1_c00000{word-spacing:15.775488pt;}
.ws1243_c00000{word-spacing:15.780832pt;}
.ws569_c00000{word-spacing:15.782400pt;}
.ws11d3_c00000{word-spacing:15.795200pt;}
.ws1500_c00000{word-spacing:15.808000pt;}
.ws1916_c00000{word-spacing:15.820800pt;}
.ws19f_c00000{word-spacing:15.827200pt;}
.wsc46_c00000{word-spacing:15.840000pt;}
.ws135a_c00000{word-spacing:15.846400pt;}
.wse0f_c00000{word-spacing:15.852800pt;}
.ws189a_c00000{word-spacing:15.859200pt;}
.ws1ed_c00000{word-spacing:15.865600pt;}
.wsbd0_c00000{word-spacing:15.872000pt;}
.wsd80_c00000{word-spacing:15.878400pt;}
.ws117f_c00000{word-spacing:15.884800pt;}
.wsd83_c00000{word-spacing:15.887712pt;}
.ws1501_c00000{word-spacing:15.891200pt;}
.ws1ee_c00000{word-spacing:15.897600pt;}
.ws1828_c00000{word-spacing:15.904000pt;}
.ws53f_c00000{word-spacing:15.910400pt;}
.ws5e1_c00000{word-spacing:15.916800pt;}
.ws1ae9_c00000{word-spacing:15.919776pt;}
.wsa2d_c00000{word-spacing:15.923200pt;}
.ws56a_c00000{word-spacing:15.929600pt;}
.wse09_c00000{word-spacing:15.936000pt;}
.ws540_c00000{word-spacing:15.942400pt;}
.wsd19_c00000{word-spacing:15.948800pt;}
.ws765_c00000{word-spacing:15.955200pt;}
.ws423_c00000{word-spacing:15.961600pt;}
.ws225_c00000{word-spacing:15.968000pt;}
.ws623_c00000{word-spacing:15.973216pt;}
.ws1ec_c00000{word-spacing:15.974400pt;}
.ws6f1_c00000{word-spacing:15.980800pt;}
.ws5e2_c00000{word-spacing:15.987200pt;}
.ws12eb_c00000{word-spacing:15.989248pt;}
.ws1930_c00000{word-spacing:15.992736pt;}
.ws6ef_c00000{word-spacing:15.993600pt;}
.ws1408_c00000{word-spacing:15.994592pt;}
.wsbbd_c00000{word-spacing:15.998592pt;}
.ws622_c00000{word-spacing:15.999936pt;}
.ws424_c00000{word-spacing:16.000000pt;}
.ws855_c00000{word-spacing:16.005280pt;}
.ws1359_c00000{word-spacing:16.006400pt;}
.wse10_c00000{word-spacing:16.012800pt;}
.ws634_c00000{word-spacing:16.019200pt;}
.ws192f_c00000{word-spacing:16.022016pt;}
.ws10c0_c00000{word-spacing:16.025600pt;}
.wsfaf_c00000{word-spacing:16.026656pt;}
.ws541_c00000{word-spacing:16.032000pt;}
.ws1b05_c00000{word-spacing:16.033728pt;}
.ws1a29_c00000{word-spacing:16.038400pt;}
.wsbbc_c00000{word-spacing:16.039584pt;}
.ws1a7a_c00000{word-spacing:16.044800pt;}
.ws1561_c00000{word-spacing:16.045440pt;}
.wsc50_c00000{word-spacing:16.048032pt;}
.ws10c2_c00000{word-spacing:16.051200pt;}
.ws19cb_c00000{word-spacing:16.053376pt;}
.wse0a_c00000{word-spacing:16.057600pt;}
.ws10c1_c00000{word-spacing:16.064000pt;}
.ws1562_c00000{word-spacing:16.068864pt;}
.ws6f2_c00000{word-spacing:16.070400pt;}
.ws1548_c00000{word-spacing:16.076800pt;}
.ws14e4_c00000{word-spacing:16.080096pt;}
.wsfae_c00000{word-spacing:16.085440pt;}
.ws1367_c00000{word-spacing:16.096128pt;}
.wsa4b_c00000{word-spacing:16.101472pt;}
.ws14e3_c00000{word-spacing:16.106816pt;}
.wsfad_c00000{word-spacing:16.122848pt;}
.wsf5b_c00000{word-spacing:16.128192pt;}
.wsde4_c00000{word-spacing:16.140800pt;}
.ws1b9_c00000{word-spacing:16.144224pt;}
.ws10cd_c00000{word-spacing:16.153600pt;}
.ws5eb_c00000{word-spacing:16.160000pt;}
.ws17e2_c00000{word-spacing:16.160256pt;}
.ws1334_c00000{word-spacing:16.165600pt;}
.ws57e_c00000{word-spacing:16.172800pt;}
.wsa4c_c00000{word-spacing:16.181632pt;}
.ws11cc_c00000{word-spacing:16.185600pt;}
.ws170a_c00000{word-spacing:16.192000pt;}
.ws1407_c00000{word-spacing:16.192320pt;}
.ws1489_c00000{word-spacing:16.197664pt;}
.wse57_c00000{word-spacing:16.198400pt;}
.wsf5c_c00000{word-spacing:16.203008pt;}
.wsac1_c00000{word-spacing:16.204800pt;}
.ws57d_c00000{word-spacing:16.211200pt;}
.ws1221_c00000{word-spacing:16.217600pt;}
.ws14e5_c00000{word-spacing:16.219040pt;}
.wsac2_c00000{word-spacing:16.224000pt;}
.ws715_c00000{word-spacing:16.230400pt;}
.ws3fe_c00000{word-spacing:16.236800pt;}
.ws5ec_c00000{word-spacing:16.243200pt;}
.wse5b_c00000{word-spacing:16.249600pt;}
.ws1390_c00000{word-spacing:16.256000pt;}
.ws3ff_c00000{word-spacing:16.262400pt;}
.ws6f0_c00000{word-spacing:16.268800pt;}
.ws11e2_c00000{word-spacing:16.275200pt;}
.ws8ce_c00000{word-spacing:16.281600pt;}
.wsc1e_c00000{word-spacing:16.288000pt;}
.ws170e_c00000{word-spacing:16.293856pt;}
.wscea_c00000{word-spacing:16.294400pt;}
.wsf58_c00000{word-spacing:16.300800pt;}
.wsce9_c00000{word-spacing:16.307200pt;}
.ws5ea_c00000{word-spacing:16.313600pt;}
.wsc22_c00000{word-spacing:16.320000pt;}
.ws1373_c00000{word-spacing:16.325920pt;}
.wsde3_c00000{word-spacing:16.326400pt;}
.ws1a3f_c00000{word-spacing:16.332384pt;}
.wsc21_c00000{word-spacing:16.332800pt;}
.wsfb0_c00000{word-spacing:16.336608pt;}
.ws14b7_c00000{word-spacing:16.339200pt;}
.wse58_c00000{word-spacing:16.345600pt;}
.wsc51_c00000{word-spacing:16.347296pt;}
.wsda8_c00000{word-spacing:16.352000pt;}
.ws3e3_c00000{word-spacing:16.358400pt;}
.ws8cd_c00000{word-spacing:16.371200pt;}
.ws14d7_c00000{word-spacing:16.373376pt;}
.ws170d_c00000{word-spacing:16.374016pt;}
.ws148c_c00000{word-spacing:16.377600pt;}
.ws3e4_c00000{word-spacing:16.384000pt;}
.ws18d1_c00000{word-spacing:16.384704pt;}
.ws16f5_c00000{word-spacing:16.390944pt;}
.ws1b1a_c00000{word-spacing:16.400736pt;}
.ws1972_c00000{word-spacing:16.408512pt;}
.ws18d2_c00000{word-spacing:16.427456pt;}
.ws17b5_c00000{word-spacing:16.435200pt;}
.wse8f_c00000{word-spacing:16.441600pt;}
.ws16c5_c00000{word-spacing:16.448000pt;}
.ws70f_c00000{word-spacing:16.467200pt;}
.ws1a2d_c00000{word-spacing:16.480000pt;}
.ws1558_c00000{word-spacing:16.486400pt;}
.wsf82_c00000{word-spacing:16.491584pt;}
.ws10bc_c00000{word-spacing:16.492800pt;}
.wsfcb_c00000{word-spacing:16.499200pt;}
.ws1431_c00000{word-spacing:16.505600pt;}
.ws46e_c00000{word-spacing:16.512000pt;}
.ws8c4_c00000{word-spacing:16.512960pt;}
.wsdc2_c00000{word-spacing:16.518400pt;}
.wsfb1_c00000{word-spacing:16.523648pt;}
.ws16c4_c00000{word-spacing:16.524800pt;}
.ws1833_c00000{word-spacing:16.531200pt;}
.wse8e_c00000{word-spacing:16.537600pt;}
.ws1100_c00000{word-spacing:16.544000pt;}
.ws70e_c00000{word-spacing:16.550400pt;}
.ws118f_c00000{word-spacing:16.556800pt;}
.wsec9_c00000{word-spacing:16.563200pt;}
.wse5a_c00000{word-spacing:16.569600pt;}
.wsbfc_c00000{word-spacing:16.576000pt;}
.ws1190_c00000{word-spacing:16.582400pt;}
.ws92a_c00000{word-spacing:16.588800pt;}
.ws1aa4_c00000{word-spacing:16.593120pt;}
.wsc32_c00000{word-spacing:16.595200pt;}
.ws1a40_c00000{word-spacing:16.601600pt;}
.ws4de_c00000{word-spacing:16.608000pt;}
.ws1526_c00000{word-spacing:16.609152pt;}
.ws129a_c00000{word-spacing:16.614400pt;}
.ws182f_c00000{word-spacing:16.614496pt;}
.ws111c_c00000{word-spacing:16.620800pt;}
.ws3e0_c00000{word-spacing:16.627200pt;}
.wsa46_c00000{word-spacing:16.633600pt;}
.ws16d5_c00000{word-spacing:16.640000pt;}
.wsfcc_c00000{word-spacing:16.646400pt;}
.wsece_c00000{word-spacing:16.646560pt;}
.ws46d_c00000{word-spacing:16.652800pt;}
.wsfa0_c00000{word-spacing:16.659200pt;}
.ws1083_c00000{word-spacing:16.660320pt;}
.ws9aa_c00000{word-spacing:16.665600pt;}
.ws1692_c00000{word-spacing:16.678400pt;}
.wsb8b_c00000{word-spacing:16.684800pt;}
.ws985_c00000{word-spacing:16.689600pt;}
.ws1b17_c00000{word-spacing:16.697600pt;}
.ws124c_c00000{word-spacing:16.704000pt;}
.ws806_c00000{word-spacing:16.707168pt;}
.ws807_c00000{word-spacing:16.713024pt;}
.ws134f_c00000{word-spacing:16.716032pt;}
.ws11f1_c00000{word-spacing:16.729600pt;}
.ws1527_c00000{word-spacing:16.742752pt;}
.ws7cd_c00000{word-spacing:16.755200pt;}
.ws14aa_c00000{word-spacing:16.761600pt;}
.wsc9d_c00000{word-spacing:16.780800pt;}
.wsf23_c00000{word-spacing:16.787200pt;}
.wse91_c00000{word-spacing:16.793600pt;}
.wsd53_c00000{word-spacing:16.800000pt;}
.ws30e_c00000{word-spacing:16.801536pt;}
.ws136a_c00000{word-spacing:16.806400pt;}
.ws10f7_c00000{word-spacing:16.812800pt;}
.ws1528_c00000{word-spacing:16.817568pt;}
.ws122e_c00000{word-spacing:16.819200pt;}
.ws40a_c00000{word-spacing:16.825600pt;}
.ws694_c00000{word-spacing:16.832000pt;}
.ws1350_c00000{word-spacing:16.833600pt;}
.ws1239_c00000{word-spacing:16.838400pt;}
.ws134e_c00000{word-spacing:16.838944pt;}
.wsb0d_c00000{word-spacing:16.851200pt;}
.wseb8_c00000{word-spacing:16.854976pt;}
.wsa31_c00000{word-spacing:16.857600pt;}
.ws1207_c00000{word-spacing:16.864000pt;}
.wsb0e_c00000{word-spacing:16.870400pt;}
.wsa30_c00000{word-spacing:16.876800pt;}
.ws695_c00000{word-spacing:16.883200pt;}
.ws135_c00000{word-spacing:16.889600pt;}
.ws1809_c00000{word-spacing:16.896000pt;}
.ws30f_c00000{word-spacing:16.897728pt;}
.ws118c_c00000{word-spacing:16.902400pt;}
.wsf24_c00000{word-spacing:16.908800pt;}
.wsde0_c00000{word-spacing:16.915200pt;}
.ws136_c00000{word-spacing:16.921600pt;}
.ws1884_c00000{word-spacing:16.928000pt;}
.ws493_c00000{word-spacing:16.934400pt;}
.ws10d9_c00000{word-spacing:16.935136pt;}
.wsdfd_c00000{word-spacing:16.940800pt;}
.ws693_c00000{word-spacing:16.947200pt;}
.ws54d_c00000{word-spacing:16.953600pt;}
.ws7ce_c00000{word-spacing:16.960000pt;}
.ws153e_c00000{word-spacing:16.961856pt;}
.ws40b_c00000{word-spacing:16.966400pt;}
.ws122c_c00000{word-spacing:16.972800pt;}
.ws166a_c00000{word-spacing:16.977888pt;}
.ws122d_c00000{word-spacing:16.979200pt;}
.ws137_c00000{word-spacing:16.985600pt;}
.ws170b_c00000{word-spacing:16.992000pt;}
.ws1b0b_c00000{word-spacing:16.998400pt;}
.ws1293_c00000{word-spacing:16.999264pt;}
.ws53d_c00000{word-spacing:17.004800pt;}
.ws175a_c00000{word-spacing:17.017536pt;}
.ws10fe_c00000{word-spacing:17.017600pt;}
.ws1943_c00000{word-spacing:17.023392pt;}
.ws1b0a_c00000{word-spacing:17.024000pt;}
.ws153c_c00000{word-spacing:17.025984pt;}
.ws1aa3_c00000{word-spacing:17.036672pt;}
.wsa95_c00000{word-spacing:17.036800pt;}
.ws16fa_c00000{word-spacing:17.043200pt;}
.wsa0a_c00000{word-spacing:17.068800pt;}
.ws81c_c00000{word-spacing:17.075200pt;}
.wse8a_c00000{word-spacing:17.088000pt;}
.ws81e_c00000{word-spacing:17.100800pt;}
.wsb3e_c00000{word-spacing:17.107200pt;}
.ws11a3_c00000{word-spacing:17.113600pt;}
.ws13a3_c00000{word-spacing:17.120000pt;}
.ws1521_c00000{word-spacing:17.122176pt;}
.ws16c7_c00000{word-spacing:17.126400pt;}
.ws53c_c00000{word-spacing:17.132800pt;}
.ws1606_c00000{word-spacing:17.138208pt;}
.ws427_c00000{word-spacing:17.139200pt;}
.ws1815_c00000{word-spacing:17.145600pt;}
.wse8b_c00000{word-spacing:17.152000pt;}
.wsde6_c00000{word-spacing:17.158400pt;}
.wsd66_c00000{word-spacing:17.164800pt;}
.ws13a4_c00000{word-spacing:17.171200pt;}
.ws13b0_c00000{word-spacing:17.175616pt;}
.wsa94_c00000{word-spacing:17.177600pt;}
.ws82d_c00000{word-spacing:17.184000pt;}
.ws169_c00000{word-spacing:17.190400pt;}
.wsa1f_c00000{word-spacing:17.196800pt;}
.ws1607_c00000{word-spacing:17.202336pt;}
.ws82e_c00000{word-spacing:17.203200pt;}
.ws11fb_c00000{word-spacing:17.209600pt;}
.ws10bb_c00000{word-spacing:17.216000pt;}
.ws1aff_c00000{word-spacing:17.222400pt;}
.ws8b2_c00000{word-spacing:17.228800pt;}
.ws128_c00000{word-spacing:17.235200pt;}
.ws123c_c00000{word-spacing:17.241600pt;}
.ws127_c00000{word-spacing:17.248000pt;}
.ws5de_c00000{word-spacing:17.254400pt;}
.wsde5_c00000{word-spacing:17.260800pt;}
.ws18f5_c00000{word-spacing:17.266464pt;}
.wsd96_c00000{word-spacing:17.267200pt;}
.wse6d_c00000{word-spacing:17.273600pt;}
.ws426_c00000{word-spacing:17.280000pt;}
.ws81d_c00000{word-spacing:17.286400pt;}
.ws1011_c00000{word-spacing:17.287840pt;}
.ws16a_c00000{word-spacing:17.292800pt;}
.ws10d8_c00000{word-spacing:17.298528pt;}
.ws1717_c00000{word-spacing:17.299200pt;}
.ws16b9_c00000{word-spacing:17.304480pt;}
.wsde7_c00000{word-spacing:17.305600pt;}
.ws1680_c00000{word-spacing:17.310336pt;}
.ws16c6_c00000{word-spacing:17.312000pt;}
.wsa0b_c00000{word-spacing:17.318400pt;}
.ws134d_c00000{word-spacing:17.324800pt;}
.ws18f4_c00000{word-spacing:17.335936pt;}
.wsf5a_c00000{word-spacing:17.337600pt;}
.wsa20_c00000{word-spacing:17.350400pt;}
.wsbdc_c00000{word-spacing:17.357312pt;}
.wsde9_c00000{word-spacing:17.363200pt;}
.wsa6d_c00000{word-spacing:17.382400pt;}
.ws1013_c00000{word-spacing:17.384032pt;}
.ws10ce_c00000{word-spacing:17.388800pt;}
.ws10d7_c00000{word-spacing:17.394720pt;}
.wsf59_c00000{word-spacing:17.395200pt;}
.ws1a2c_c00000{word-spacing:17.401600pt;}
.ws136d_c00000{word-spacing:17.420800pt;}
.ws195f_c00000{word-spacing:17.427200pt;}
.ws1079_c00000{word-spacing:17.433600pt;}
.ws1b06_c00000{word-spacing:17.440000pt;}
.ws1b38_c00000{word-spacing:17.446400pt;}
.ws1894_c00000{word-spacing:17.452800pt;}
.ws1a94_c00000{word-spacing:17.453504pt;}
.ws1a95_c00000{word-spacing:17.458848pt;}
.ws487_c00000{word-spacing:17.459200pt;}
.wsa21_c00000{word-spacing:17.465600pt;}
.ws153d_c00000{word-spacing:17.469536pt;}
.ws94b_c00000{word-spacing:17.472000pt;}
.wsf39_c00000{word-spacing:17.478400pt;}
.ws1224_c00000{word-spacing:17.484800pt;}
.ws136c_c00000{word-spacing:17.491200pt;}
.wsdfe_c00000{word-spacing:17.497600pt;}
.ws10cf_c00000{word-spacing:17.504000pt;}
.wsdea_c00000{word-spacing:17.516800pt;}
.ws882_c00000{word-spacing:17.523200pt;}
.ws16c2_c00000{word-spacing:17.529600pt;}
.ws8e6_c00000{word-spacing:17.536000pt;}
.ws881_c00000{word-spacing:17.542400pt;}
.ws135d_c00000{word-spacing:17.548800pt;}
.ws1a5b_c00000{word-spacing:17.555040pt;}
.wsa6e_c00000{word-spacing:17.555200pt;}
.ws2ba_c00000{word-spacing:17.561600pt;}
.ws15aa_c00000{word-spacing:17.568000pt;}
.ws8e7_c00000{word-spacing:17.574400pt;}
.ws94a_c00000{word-spacing:17.580800pt;}
.ws13a7_c00000{word-spacing:17.581760pt;}
.ws1006_c00000{word-spacing:17.587200pt;}
.wsdff_c00000{word-spacing:17.593600pt;}
.ws1369_c00000{word-spacing:17.600000pt;}
.ws13a8_c00000{word-spacing:17.603136pt;}
.wsf43_c00000{word-spacing:17.606400pt;}
.ws15f1_c00000{word-spacing:17.608992pt;}
.ws16c3_c00000{word-spacing:17.612800pt;}
.wsf7d_c00000{word-spacing:17.613824pt;}
.ws1674_c00000{word-spacing:17.619200pt;}
.ws51b_c00000{word-spacing:17.625600pt;}
.ws135e_c00000{word-spacing:17.632000pt;}
.wsf3a_c00000{word-spacing:17.644800pt;}
.ws17fa_c00000{word-spacing:17.664000pt;}
.ws1718_c00000{word-spacing:17.670400pt;}
.wsdbc_c00000{word-spacing:17.674816pt;}
.ws1007_c00000{word-spacing:17.683200pt;}
.ws1509_c00000{word-spacing:17.689600pt;}
.ws7aa_c00000{word-spacing:17.715200pt;}
.ws1961_c00000{word-spacing:17.728000pt;}
.ws12c1_c00000{word-spacing:17.731392pt;}
.wsc96_c00000{word-spacing:17.734400pt;}
.wse4c_c00000{word-spacing:17.742080pt;}
.ws1012_c00000{word-spacing:17.752768pt;}
.wsc5_c00000{word-spacing:17.753600pt;}
.ws1734_c00000{word-spacing:17.760000pt;}
.wse4d_c00000{word-spacing:17.763456pt;}
.wsc6_c00000{word-spacing:17.772800pt;}
.ws1a5a_c00000{word-spacing:17.774144pt;}
.ws16de_c00000{word-spacing:17.779200pt;}
.wsa72_c00000{word-spacing:17.785600pt;}
.ws727_c00000{word-spacing:17.792000pt;}
.ws10db_c00000{word-spacing:17.798400pt;}
.ws1021_c00000{word-spacing:17.804800pt;}
.ws1464_c00000{word-spacing:17.806208pt;}
.ws121c_c00000{word-spacing:17.811200pt;}
.ws1023_c00000{word-spacing:17.817600pt;}
.ws9a0_c00000{word-spacing:17.824000pt;}
.wsb7f_c00000{word-spacing:17.830400pt;}
.ws51a_c00000{word-spacing:17.836800pt;}
.ws3db_c00000{word-spacing:17.843200pt;}
.ws161b_c00000{word-spacing:17.849600pt;}
.ws7a9_c00000{word-spacing:17.856000pt;}
.wsc97_c00000{word-spacing:17.862400pt;}
.wsa73_c00000{word-spacing:17.868800pt;}
.ws12c2_c00000{word-spacing:17.870336pt;}
.ws545_c00000{word-spacing:17.875200pt;}
.ws117c_c00000{word-spacing:17.881600pt;}
.ws429_c00000{word-spacing:17.888000pt;}
.ws730_c00000{word-spacing:17.894400pt;}
.ws3da_c00000{word-spacing:17.900800pt;}
.ws430_c00000{word-spacing:17.907200pt;}
.wse5f_c00000{word-spacing:17.913088pt;}
.ws1008_c00000{word-spacing:17.913600pt;}
.wsc81_c00000{word-spacing:17.920000pt;}
.ws1522_c00000{word-spacing:17.923776pt;}
.ws42a_c00000{word-spacing:17.926400pt;}
.ws729_c00000{word-spacing:17.932800pt;}
.wse60_c00000{word-spacing:17.934464pt;}
.ws519_c00000{word-spacing:17.939200pt;}
.ws16b3_c00000{word-spacing:17.942784pt;}
.ws78f_c00000{word-spacing:17.945152pt;}
.ws1022_c00000{word-spacing:17.945600pt;}
.ws728_c00000{word-spacing:17.952000pt;}
.ws191c_c00000{word-spacing:17.958400pt;}
.ws18b7_c00000{word-spacing:17.961184pt;}
.ws12a4_c00000{word-spacing:17.971200pt;}
.ws1120_c00000{word-spacing:17.982560pt;}
.ws13c5_c00000{word-spacing:17.984000pt;}
.wse61_c00000{word-spacing:17.987904pt;}
.ws157a_c00000{word-spacing:18.016000pt;}
.ws18b6_c00000{word-spacing:18.036000pt;}
.wsef6_c00000{word-spacing:18.067200pt;}
.wsa49_c00000{word-spacing:18.080000pt;}
.ws1494_c00000{word-spacing:18.086400pt;}
.ws12a2_c00000{word-spacing:18.092800pt;}
.ws44e_c00000{word-spacing:18.099200pt;}
.wsca0_c00000{word-spacing:18.118400pt;}
.wsca1_c00000{word-spacing:18.124800pt;}
.ws412_c00000{word-spacing:18.131200pt;}
.ws1168_c00000{word-spacing:18.132192pt;}
.ws1121_c00000{word-spacing:18.137536pt;}
.ws11eb_c00000{word-spacing:18.137600pt;}
.ws996_c00000{word-spacing:18.144000pt;}
.wsc55_c00000{word-spacing:18.150400pt;}
.ws13b8_c00000{word-spacing:18.156800pt;}
.ws44d_c00000{word-spacing:18.163200pt;}
.wsbe8_c00000{word-spacing:18.169600pt;}
.ws13c9_c00000{word-spacing:18.176000pt;}
.ws994_c00000{word-spacing:18.182400pt;}
.ws993_c00000{word-spacing:18.188800pt;}
.ws6fa_c00000{word-spacing:18.195200pt;}
.ws18b_c00000{word-spacing:18.201600pt;}
.ws21e_c00000{word-spacing:18.208000pt;}
.wsc6d_c00000{word-spacing:18.214400pt;}
.ws413_c00000{word-spacing:18.220800pt;}
.ws8a9_c00000{word-spacing:18.227200pt;}
.ws1a38_c00000{word-spacing:18.228384pt;}
.ws6fb_c00000{word-spacing:18.233600pt;}
.wsc56_c00000{word-spacing:18.240000pt;}
.ws12e1_c00000{word-spacing:18.244416pt;}
.ws1545_c00000{word-spacing:18.246400pt;}
.ws6fc_c00000{word-spacing:18.252800pt;}
.ws1219_c00000{word-spacing:18.259200pt;}
.ws18c4_c00000{word-spacing:18.265600pt;}
.ws15f8_c00000{word-spacing:18.270720pt;}
.ws11be_c00000{word-spacing:18.272000pt;}
.ws16e9_c00000{word-spacing:18.278400pt;}
.ws18dd_c00000{word-spacing:18.282432pt;}
.ws13c6_c00000{word-spacing:18.284800pt;}
.ws1492_c00000{word-spacing:18.287168pt;}
.ws1644_c00000{word-spacing:18.291200pt;}
.ws15f7_c00000{word-spacing:18.305856pt;}
.ws1b20_c00000{word-spacing:18.316800pt;}
.ws18f9_c00000{word-spacing:18.319232pt;}
.ws18fa_c00000{word-spacing:18.335264pt;}
.ws2c3_c00000{word-spacing:18.348800pt;}
.ws9e2_c00000{word-spacing:18.356640pt;}
.ws9e1_c00000{word-spacing:18.367328pt;}
.ws13ba_c00000{word-spacing:18.374400pt;}
.ws56c_c00000{word-spacing:18.380800pt;}
.wsff6_c00000{word-spacing:18.387200pt;}
.ws10a6_c00000{word-spacing:18.393600pt;}
.ws1145_c00000{word-spacing:18.400000pt;}
.wseab_c00000{word-spacing:18.412800pt;}
.ws15a1_c00000{word-spacing:18.415424pt;}
.ws11bb_c00000{word-spacing:18.419200pt;}
.wsff7_c00000{word-spacing:18.432000pt;}
.wsf0e_c00000{word-spacing:18.438400pt;}
.wsec5_c00000{word-spacing:18.444800pt;}
.ws950_c00000{word-spacing:18.451200pt;}
.ws1a83_c00000{word-spacing:18.457600pt;}
.ws84_c00000{word-spacing:18.464000pt;}
.wsf0a_c00000{word-spacing:18.470400pt;}
.ws85_c00000{word-spacing:18.476800pt;}
.ws15d9_c00000{word-spacing:18.483200pt;}
.wse6e_c00000{word-spacing:18.489600pt;}
.ws63e_c00000{word-spacing:18.496000pt;}
.ws2a9_c00000{word-spacing:18.502400pt;}
.ws131e_c00000{word-spacing:18.508800pt;}
.wseac_c00000{word-spacing:18.515200pt;}
.ws56b_c00000{word-spacing:18.521600pt;}
.ws5d0_c00000{word-spacing:18.528000pt;}
.ws940_c00000{word-spacing:18.534400pt;}
.ws7a8_c00000{word-spacing:18.540800pt;}
.ws5d2_c00000{word-spacing:18.547200pt;}
.ws56d_c00000{word-spacing:18.553600pt;}
.wsf0b_c00000{word-spacing:18.560000pt;}
.ws1540_c00000{word-spacing:18.565056pt;}
.ws2c4_c00000{word-spacing:18.566400pt;}
.wse22_c00000{word-spacing:18.570400pt;}
.wse6f_c00000{word-spacing:18.572800pt;}
.wsf0c_c00000{word-spacing:18.579200pt;}
.ws11c9_c00000{word-spacing:18.592000pt;}
.ws1636_c00000{word-spacing:18.592800pt;}
.ws17aa_c00000{word-spacing:18.598400pt;}
.ws17c8_c00000{word-spacing:18.604512pt;}
.ws187c_c00000{word-spacing:18.611200pt;}
.wsa32_c00000{word-spacing:18.617600pt;}
.ws18ff_c00000{word-spacing:18.634528pt;}
.ws6e6_c00000{word-spacing:18.634816pt;}
.ws10a7_c00000{word-spacing:18.636800pt;}
.ws19bc_c00000{word-spacing:18.645504pt;}
.ws5d1_c00000{word-spacing:18.649600pt;}
.ws179b_c00000{word-spacing:18.656000pt;}
.ws1805_c00000{word-spacing:18.671936pt;}
.ws186e_c00000{word-spacing:18.681600pt;}
.ws7d4_c00000{word-spacing:18.682624pt;}
.wsda9_c00000{word-spacing:18.694400pt;}
.ws7fa_c00000{word-spacing:18.713600pt;}
.ws12e0_c00000{word-spacing:18.714688pt;}
.wsdab_c00000{word-spacing:18.726400pt;}
.wsecb_c00000{word-spacing:18.730720pt;}
.wsaff_c00000{word-spacing:18.732800pt;}
.ws1541_c00000{word-spacing:18.736064pt;}
.ws138f_c00000{word-spacing:18.739200pt;}
.ws13e9_c00000{word-spacing:18.741408pt;}
.ws1133_c00000{word-spacing:18.752000pt;}
.ws166c_c00000{word-spacing:18.752096pt;}
.ws16fb_c00000{word-spacing:18.764800pt;}
.ws7d3_c00000{word-spacing:18.768128pt;}
.wsdaa_c00000{word-spacing:18.771200pt;}
.ws149d_c00000{word-spacing:18.777600pt;}
.ws7fb_c00000{word-spacing:18.784000pt;}
.wse2a_c00000{word-spacing:18.790400pt;}
.ws1134_c00000{word-spacing:18.796800pt;}
.wsa42_c00000{word-spacing:18.803200pt;}
.ws14bd_c00000{word-spacing:18.809600pt;}
.wsf2_c00000{word-spacing:18.816000pt;}
.ws1326_c00000{word-spacing:18.822400pt;}
.ws7c2_c00000{word-spacing:18.828800pt;}
.ws980_c00000{word-spacing:18.835200pt;}
.ws10a8_c00000{word-spacing:18.841600pt;}
.ws97f_c00000{word-spacing:18.848000pt;}
.ws19b2_c00000{word-spacing:18.848288pt;}
.wsa2b_c00000{word-spacing:18.854400pt;}
.ws18e9_c00000{word-spacing:18.858976pt;}
.ws22c_c00000{word-spacing:18.860800pt;}
.wsb00_c00000{word-spacing:18.867200pt;}
.ws193c_c00000{word-spacing:18.869664pt;}
.wsf0_c00000{word-spacing:18.873600pt;}
.wsa41_c00000{word-spacing:18.880000pt;}
.ws1576_c00000{word-spacing:18.880352pt;}
.ws7c1_c00000{word-spacing:18.886400pt;}
.ws7fc_c00000{word-spacing:18.892800pt;}
.wsa2c_c00000{word-spacing:18.899200pt;}
.ws16f2_c00000{word-spacing:18.903168pt;}
.wsf1_c00000{word-spacing:18.905600pt;}
.ws1575_c00000{word-spacing:18.907072pt;}
.ws123e_c00000{word-spacing:18.912000pt;}
.ws1a60_c00000{word-spacing:18.914880pt;}
.ws1b42_c00000{word-spacing:18.920736pt;}
.ws1a43_c00000{word-spacing:18.937600pt;}
.wsee5_c00000{word-spacing:18.963200pt;}
.ws1afb_c00000{word-spacing:18.982400pt;}
.ws181e_c00000{word-spacing:18.987232pt;}
.ws13f1_c00000{word-spacing:19.014400pt;}
.ws181d_c00000{word-spacing:19.019296pt;}
.wse69_c00000{word-spacing:19.020800pt;}
.wsb7c_c00000{word-spacing:19.040000pt;}
.ws115a_c00000{word-spacing:19.052800pt;}
.ws1255_c00000{word-spacing:19.062048pt;}
.ws18fc_c00000{word-spacing:19.065600pt;}
.wsecc_c00000{word-spacing:19.067392pt;}
.wsaec_c00000{word-spacing:19.072000pt;}
.ws42c_c00000{word-spacing:19.084800pt;}
.ws302_c00000{word-spacing:19.091200pt;}
.wsfb4_c00000{word-spacing:19.097600pt;}
.ws303_c00000{word-spacing:19.110400pt;}
.ws42b_c00000{word-spacing:19.116800pt;}
.ws75d_c00000{word-spacing:19.129600pt;}
.wsa15_c00000{word-spacing:19.142400pt;}
.ws12e8_c00000{word-spacing:19.148800pt;}
.ws19d1_c00000{word-spacing:19.155200pt;}
.ws3e6_c00000{word-spacing:19.161600pt;}
.ws2b1_c00000{word-spacing:19.168000pt;}
.ws2b0_c00000{word-spacing:19.174400pt;}
.wsc5e_c00000{word-spacing:19.179616pt;}
.ws19e3_c00000{word-spacing:19.180800pt;}
.ws12ce_c00000{word-spacing:19.184960pt;}
.ws1322_c00000{word-spacing:19.190304pt;}
.wsaea_c00000{word-spacing:19.193600pt;}
.ws1ab5_c00000{word-spacing:19.200000pt;}
.wsa43_c00000{word-spacing:19.206400pt;}
.ws1323_c00000{word-spacing:19.211680pt;}
.ws13f2_c00000{word-spacing:19.219200pt;}
.ws193d_c00000{word-spacing:19.222368pt;}
.wsaeb_c00000{word-spacing:19.225600pt;}
.ws12cd_c00000{word-spacing:19.227712pt;}
.ws99b_c00000{word-spacing:19.238400pt;}
.ws1914_c00000{word-spacing:19.242816pt;}
.ws16f3_c00000{word-spacing:19.254528pt;}
.wsa16_c00000{word-spacing:19.264000pt;}
.ws1794_c00000{word-spacing:19.276800pt;}
.ws1b55_c00000{word-spacing:19.283200pt;}
.wsa85_c00000{word-spacing:19.302400pt;}
.ws1b53_c00000{word-spacing:19.340800pt;}
.ws112d_c00000{word-spacing:19.350624pt;}
.ws1b56_c00000{word-spacing:19.360000pt;}
.ws193e_c00000{word-spacing:19.361312pt;}
.ws17dd_c00000{word-spacing:19.366400pt;}
.ws12cf_c00000{word-spacing:19.366656pt;}
.ws1029_c00000{word-spacing:19.372800pt;}
.ws1254_c00000{word-spacing:19.377344pt;}
.ws1184_c00000{word-spacing:19.379200pt;}
.ws1324_c00000{word-spacing:19.382688pt;}
.ws191a_c00000{word-spacing:19.385600pt;}
.ws16cc_c00000{word-spacing:19.392000pt;}
.ws28e_c00000{word-spacing:19.398400pt;}
.ws1525_c00000{word-spacing:19.404064pt;}
.ws11ee_c00000{word-spacing:19.404800pt;}
.ws334_c00000{word-spacing:19.417600pt;}
.ws1878_c00000{word-spacing:19.424000pt;}
.ws1b51_c00000{word-spacing:19.430400pt;}
.ws112e_c00000{word-spacing:19.430784pt;}
.ws1982_c00000{word-spacing:19.436800pt;}
.wsc2f_c00000{word-spacing:19.443200pt;}
.ws191b_c00000{word-spacing:19.449600pt;}
.ws4d0_c00000{word-spacing:19.456000pt;}
.ws1185_c00000{word-spacing:19.468800pt;}
.ws13de_c00000{word-spacing:19.473536pt;}
.ws13cc_c00000{word-spacing:19.475200pt;}
.ws1028_c00000{word-spacing:19.481600pt;}
.ws17dc_c00000{word-spacing:19.488000pt;}
.wsbe5_c00000{word-spacing:19.494400pt;}
.wsc74_c00000{word-spacing:19.500800pt;}
.ws335_c00000{word-spacing:19.507200pt;}
.ws18b2_c00000{word-spacing:19.510944pt;}
.ws8bc_c00000{word-spacing:19.520000pt;}
.wse88_c00000{word-spacing:19.526400pt;}
.ws18b0_c00000{word-spacing:19.526976pt;}
.ws19c7_c00000{word-spacing:19.532320pt;}
.ws1899_c00000{word-spacing:19.532800pt;}
.wsbe6_c00000{word-spacing:19.539200pt;}
.ws28d_c00000{word-spacing:19.545600pt;}
.ws119c_c00000{word-spacing:19.552000pt;}
.ws1793_c00000{word-spacing:19.558400pt;}
.ws17de_c00000{word-spacing:19.564800pt;}
.ws13dd_c00000{word-spacing:19.569728pt;}
.wsbbe_c00000{word-spacing:19.576608pt;}
.ws1057_c00000{word-spacing:19.577600pt;}
.ws5f8_c00000{word-spacing:19.601792pt;}
.wsc5d_c00000{word-spacing:19.612480pt;}
.ws5f9_c00000{word-spacing:19.617824pt;}
.wsaab_c00000{word-spacing:19.628800pt;}
.ws191_c00000{word-spacing:19.648000pt;}
.ws893_c00000{word-spacing:19.654400pt;}
.ws891_c00000{word-spacing:19.660800pt;}
.ws95d_c00000{word-spacing:19.667200pt;}
.wse08_c00000{word-spacing:19.680000pt;}
.ws13df_c00000{word-spacing:19.681952pt;}
.ws328_c00000{word-spacing:19.692800pt;}
.ws46c_c00000{word-spacing:19.705600pt;}
.ws1596_c00000{word-spacing:19.712000pt;}
.wse0_c00000{word-spacing:19.718400pt;}
.wsaac_c00000{word-spacing:19.724800pt;}
.wsc8f_c00000{word-spacing:19.730048pt;}
.ws327_c00000{word-spacing:19.731200pt;}
.ws190_c00000{word-spacing:19.737600pt;}
.ws120d_c00000{word-spacing:19.744000pt;}
.wsdae_c00000{word-spacing:19.750400pt;}
.ws1531_c00000{word-spacing:19.751424pt;}
.ws14ab_c00000{word-spacing:19.756800pt;}
.ws3ce_c00000{word-spacing:19.763200pt;}
.ws18b1_c00000{word-spacing:19.767456pt;}
.wse11_c00000{word-spacing:19.769600pt;}
.ws892_c00000{word-spacing:19.776000pt;}
.ws1618_c00000{word-spacing:19.782400pt;}
.ws36a_c00000{word-spacing:19.788800pt;}
.ws11e6_c00000{word-spacing:19.795200pt;}
.ws966_c00000{word-spacing:19.801600pt;}
.wse1_c00000{word-spacing:19.808000pt;}
.ws3cf_c00000{word-spacing:19.814400pt;}
.ws46b_c00000{word-spacing:19.820800pt;}
.ws13a6_c00000{word-spacing:19.827200pt;}
.ws120e_c00000{word-spacing:19.833600pt;}
.wsa44_c00000{word-spacing:19.840000pt;}
.ws101e_c00000{word-spacing:19.846400pt;}
.wsdad_c00000{word-spacing:19.852800pt;}
.ws338_c00000{word-spacing:19.859200pt;}
.wsb4e_c00000{word-spacing:19.863648pt;}
.ws369_c00000{word-spacing:19.865600pt;}
.ws339_c00000{word-spacing:19.872000pt;}
.ws1641_c00000{word-spacing:19.898688pt;}
.ws17f5_c00000{word-spacing:19.913088pt;}
.ws17b0_c00000{word-spacing:19.933120pt;}
.wsb4f_c00000{word-spacing:19.959840pt;}
.ws19d0_c00000{word-spacing:19.968000pt;}
.wscf4_c00000{word-spacing:19.980800pt;}
.ws115b_c00000{word-spacing:20.000000pt;}
.ws15c3_c00000{word-spacing:20.019200pt;}
.ws742_c00000{word-spacing:20.025600pt;}
.ws4ce_c00000{word-spacing:20.032000pt;}
.wsf4f_c00000{word-spacing:20.034656pt;}
.ws16da_c00000{word-spacing:20.040000pt;}
.ws743_c00000{word-spacing:20.044800pt;}
.ws16e0_c00000{word-spacing:20.051200pt;}
.ws120f_c00000{word-spacing:20.070400pt;}
.ws17af_c00000{word-spacing:20.072064pt;}
.ws2bc_c00000{word-spacing:20.076800pt;}
.ws1715_c00000{word-spacing:20.077408pt;}
.ws451_c00000{word-spacing:20.083200pt;}
.ws116b_c00000{word-spacing:20.089600pt;}
.ws744_c00000{word-spacing:20.096000pt;}
.ws10f6_c00000{word-spacing:20.102400pt;}
.ws3b6_c00000{word-spacing:20.108800pt;}
.ws4a6_c00000{word-spacing:20.115200pt;}
.ws4d6_c00000{word-spacing:20.121600pt;}
.ws755_c00000{word-spacing:20.128000pt;}
.ws1103_c00000{word-spacing:20.134400pt;}
.ws144e_c00000{word-spacing:20.136192pt;}
.wsac9_c00000{word-spacing:20.140800pt;}
.ws15d8_c00000{word-spacing:20.147200pt;}
.ws1aab_c00000{word-spacing:20.152224pt;}
.ws16f1_c00000{word-spacing:20.153600pt;}
.ws1a12_c00000{word-spacing:20.157568pt;}
.ws96b_c00000{word-spacing:20.160000pt;}
.ws2bb_c00000{word-spacing:20.166400pt;}
.ws1613_c00000{word-spacing:20.168064pt;}
.ws16df_c00000{word-spacing:20.172800pt;}
.wsdaf_c00000{word-spacing:20.178944pt;}
.ws1927_c00000{word-spacing:20.179200pt;}
.ws1b3f_c00000{word-spacing:20.179776pt;}
.ws173b_c00000{word-spacing:20.185600pt;}
.wseaf_c00000{word-spacing:20.191488pt;}
.ws4d5_c00000{word-spacing:20.192000pt;}
.ws17a2_c00000{word-spacing:20.204800pt;}
.ws10f5_c00000{word-spacing:20.217600pt;}
.ws1852_c00000{word-spacing:20.243200pt;}
.ws1a00_c00000{word-spacing:20.256000pt;}
.ws18c2_c00000{word-spacing:20.259104pt;}
.ws111a_c00000{word-spacing:20.275200pt;}
.ws177b_c00000{word-spacing:20.285824pt;}
.ws177a_c00000{word-spacing:20.291168pt;}
.wsc24_c00000{word-spacing:20.307200pt;}
.ws78b_c00000{word-spacing:20.326400pt;}
.ws295_c00000{word-spacing:20.332800pt;}
.wsb87_c00000{word-spacing:20.333920pt;}
.wsaca_c00000{word-spacing:20.339200pt;}
.wsd1d_c00000{word-spacing:20.352000pt;}
.wsf50_c00000{word-spacing:20.360640pt;}
.ws80b_c00000{word-spacing:20.364800pt;}
.ws1b0f_c00000{word-spacing:20.371200pt;}
.ws80c_c00000{word-spacing:20.377600pt;}
.ws1622_c00000{word-spacing:20.384000pt;}
.wsb4d_c00000{word-spacing:20.387360pt;}
.ws1579_c00000{word-spacing:20.390400pt;}
.wsc23_c00000{word-spacing:20.396800pt;}
.ws949_c00000{word-spacing:20.403200pt;}
.ws10bf_c00000{word-spacing:20.422400pt;}
.ws61e_c00000{word-spacing:20.428800pt;}
.ws294_c00000{word-spacing:20.435200pt;}
.ws927_c00000{word-spacing:20.441600pt;}
.ws770_c00000{word-spacing:20.448000pt;}
.ws6d6_c00000{word-spacing:20.454400pt;}
.ws6d4_c00000{word-spacing:20.460800pt;}
.wsd7c_c00000{word-spacing:20.467200pt;}
.wscf6_c00000{word-spacing:20.473600pt;}
.ws6d7_c00000{word-spacing:20.480000pt;}
.ws174b_c00000{word-spacing:20.484288pt;}
.ws296_c00000{word-spacing:20.486400pt;}
.ws1330_c00000{word-spacing:20.488896pt;}
.ws6d5_c00000{word-spacing:20.492800pt;}
.ws1864_c00000{word-spacing:20.499200pt;}
.ws928_c00000{word-spacing:20.505600pt;}
.ws120b_c00000{word-spacing:20.512000pt;}
.ws61f_c00000{word-spacing:20.518400pt;}
.ws174c_c00000{word-spacing:20.536992pt;}
.ws1661_c00000{word-spacing:20.550400pt;}
.ws132f_c00000{word-spacing:20.569056pt;}
.wsc25_c00000{word-spacing:20.569600pt;}
.ws1935_c00000{word-spacing:20.590432pt;}
.ws920_c00000{word-spacing:20.608000pt;}
.wsf67_c00000{word-spacing:20.614400pt;}
.ws1b1d_c00000{word-spacing:20.627200pt;}
.ws161d_c00000{word-spacing:20.652800pt;}
.ws165f_c00000{word-spacing:20.659200pt;}
.wsf65_c00000{word-spacing:20.672000pt;}
.ws1b1e_c00000{word-spacing:20.678400pt;}
.wsf66_c00000{word-spacing:20.684800pt;}
.ws1aaa_c00000{word-spacing:20.686624pt;}
.ws161c_c00000{word-spacing:20.697600pt;}
.ws1620_c00000{word-spacing:20.704000pt;}
.ws10a9_c00000{word-spacing:20.710400pt;}
.ws190a_c00000{word-spacing:20.716800pt;}
.ws91f_c00000{word-spacing:20.723200pt;}
.wsf6d_c00000{word-spacing:20.729600pt;}
.ws173f_c00000{word-spacing:20.736000pt;}
.wsd97_c00000{word-spacing:20.742400pt;}
.ws102c_c00000{word-spacing:20.748800pt;}
.ws13ac_c00000{word-spacing:20.761600pt;}
.ws215_c00000{word-spacing:20.768000pt;}
.ws216_c00000{word-spacing:20.774400pt;}
.ws1600_c00000{word-spacing:20.780800pt;}
.ws16d0_c00000{word-spacing:20.787200pt;}
.ws1936_c00000{word-spacing:20.793504pt;}
.wsd1a_c00000{word-spacing:20.793600pt;}
.ws14ac_c00000{word-spacing:20.798848pt;}
.wsf76_c00000{word-spacing:20.800000pt;}
.ws45b_c00000{word-spacing:20.806400pt;}
.ws161e_c00000{word-spacing:20.812800pt;}
.ws173e_c00000{word-spacing:20.819200pt;}
.ws804_c00000{word-spacing:20.823936pt;}
.ws1ae3_c00000{word-spacing:20.825600pt;}
.ws1757_c00000{word-spacing:20.829792pt;}
.ws190b_c00000{word-spacing:20.832000pt;}
.ws17b8_c00000{word-spacing:20.836256pt;}
.ws805_c00000{word-spacing:20.882496pt;}
.wsb7d_c00000{word-spacing:20.889600pt;}
.ws17b7_c00000{word-spacing:20.900384pt;}
.ws1b0c_c00000{word-spacing:20.908800pt;}
.ws93a_c00000{word-spacing:20.928000pt;}
.ws1937_c00000{word-spacing:20.937792pt;}
.ws612_c00000{word-spacing:20.947200pt;}
.ws114b_c00000{word-spacing:20.960000pt;}
.ws10ba_c00000{word-spacing:20.966400pt;}
.ws842_c00000{word-spacing:20.972800pt;}
.ws122a_c00000{word-spacing:20.979200pt;}
.ws383_c00000{word-spacing:20.985600pt;}
.ws11e3_c00000{word-spacing:20.998400pt;}
.ws36b_c00000{word-spacing:21.004800pt;}
.ws1798_c00000{word-spacing:21.011200pt;}
.ws610_c00000{word-spacing:21.017600pt;}
.ws382_c00000{word-spacing:21.024000pt;}
.ws100f_c00000{word-spacing:21.030400pt;}
.ws1186_c00000{word-spacing:21.036800pt;}
.wsd2b_c00000{word-spacing:21.043200pt;}
.ws611_c00000{word-spacing:21.056000pt;}
.ws15ac_c00000{word-spacing:21.060704pt;}
.ws116e_c00000{word-spacing:21.062400pt;}
.ws1696_c00000{word-spacing:21.068800pt;}
.ws535_c00000{word-spacing:21.075200pt;}
.ws45e_c00000{word-spacing:21.081600pt;}
.ws555_c00000{word-spacing:21.088000pt;}
.ws14bc_c00000{word-spacing:21.094400pt;}
.ws104a_c00000{word-spacing:21.100800pt;}
.ws1440_c00000{word-spacing:21.103456pt;}
.ws384_c00000{word-spacing:21.107200pt;}
.ws19fc_c00000{word-spacing:21.108800pt;}
.ws556_c00000{word-spacing:21.113600pt;}
.ws1807_c00000{word-spacing:21.120000pt;}
.ws176c_c00000{word-spacing:21.126400pt;}
.ws114a_c00000{word-spacing:21.132800pt;}
.ws104b_c00000{word-spacing:21.139200pt;}
.ws1a8b_c00000{word-spacing:21.140160pt;}
.ws939_c00000{word-spacing:21.145600pt;}
.ws176d_c00000{word-spacing:21.152000pt;}
.ws841_c00000{word-spacing:21.158400pt;}
.ws1a3a_c00000{word-spacing:21.164800pt;}
.ws188e_c00000{word-spacing:21.175296pt;}
.ws10ff_c00000{word-spacing:21.177600pt;}
.ws188d_c00000{word-spacing:21.187008pt;}
.wsd07_c00000{word-spacing:21.194816pt;}
.ws1b3d_c00000{word-spacing:21.235200pt;}
.wscd2_c00000{word-spacing:21.260800pt;}
.ws41d_c00000{word-spacing:21.280000pt;}
.wsde2_c00000{word-spacing:21.292800pt;}
.wsf9b_c00000{word-spacing:21.305600pt;}
.wseeb_c00000{word-spacing:21.312000pt;}
.wsd67_c00000{word-spacing:21.318400pt;}
.ws1b14_c00000{word-spacing:21.324800pt;}
.ws185e_c00000{word-spacing:21.331200pt;}
.ws420_c00000{word-spacing:21.337600pt;}
.ws4f4_c00000{word-spacing:21.344000pt;}
.ws4f3_c00000{word-spacing:21.350400pt;}
.wscd1_c00000{word-spacing:21.356800pt;}
.ws10be_c00000{word-spacing:21.363200pt;}
.ws3ca_c00000{word-spacing:21.369600pt;}
.wscab_c00000{word-spacing:21.376000pt;}
.wseea_c00000{word-spacing:21.382400pt;}
.ws41e_c00000{word-spacing:21.388800pt;}
.ws1040_c00000{word-spacing:21.395200pt;}
.ws130e_c00000{word-spacing:21.401600pt;}
.wsd2e_c00000{word-spacing:21.408000pt;}
.ws924_c00000{word-spacing:21.414400pt;}
.wsaef_c00000{word-spacing:21.420800pt;}
.ws1041_c00000{word-spacing:21.427200pt;}
.ws3c9_c00000{word-spacing:21.433600pt;}
.ws19b5_c00000{word-spacing:21.438816pt;}
.wsd2d_c00000{word-spacing:21.440000pt;}
.ws1ef_c00000{word-spacing:21.446400pt;}
.ws185f_c00000{word-spacing:21.452800pt;}
.ws41a_c00000{word-spacing:21.459200pt;}
.ws1344_c00000{word-spacing:21.465600pt;}
.ws11b2_c00000{word-spacing:21.472000pt;}
.ws1f0_c00000{word-spacing:21.491200pt;}
.ws1b3e_c00000{word-spacing:21.497600pt;}
.wse70_c00000{word-spacing:21.516800pt;}
.ws1125_c00000{word-spacing:21.523200pt;}
.wsf79_c00000{word-spacing:21.529600pt;}
.ws1a15_c00000{word-spacing:21.548800pt;}
.ws1b0e_c00000{word-spacing:21.561600pt;}
.ws13cd_c00000{word-spacing:21.574400pt;}
.ws100b_c00000{word-spacing:21.587200pt;}
.ws1915_c00000{word-spacing:21.593600pt;}
.ws1b19_c00000{word-spacing:21.612800pt;}
.wsdd8_c00000{word-spacing:21.621824pt;}
.ws12d3_c00000{word-spacing:21.625600pt;}
.ws1909_c00000{word-spacing:21.632000pt;}
.ws178d_c00000{word-spacing:21.638400pt;}
.wsf7a_c00000{word-spacing:21.644800pt;}
.wsaee_c00000{word-spacing:21.651200pt;}
.wsf78_c00000{word-spacing:21.657600pt;}
.wse86_c00000{word-spacing:21.664000pt;}
.ws16db_c00000{word-spacing:21.664576pt;}
.ws109b_c00000{word-spacing:21.670400pt;}
.ws11b3_c00000{word-spacing:21.676800pt;}
.wsdcb_c00000{word-spacing:21.683200pt;}
.ws1678_c00000{word-spacing:21.689600pt;}
.ws176f_c00000{word-spacing:21.702400pt;}
.wsaed_c00000{word-spacing:21.708800pt;}
.ws19fe_c00000{word-spacing:21.715200pt;}
.ws12e5_c00000{word-spacing:21.721600pt;}
.wse71_c00000{word-spacing:21.728000pt;}
.ws259_c00000{word-spacing:21.734400pt;}
.ws4f6_c00000{word-spacing:21.740800pt;}
.wse2b_c00000{word-spacing:21.747200pt;}
.ws9ba_c00000{word-spacing:21.753600pt;}
.ws14cf_c00000{word-spacing:21.755040pt;}
.ws1ab3_c00000{word-spacing:21.755424pt;}
.ws107a_c00000{word-spacing:21.760000pt;}
.ws178e_c00000{word-spacing:21.766400pt;}
.ws9bb_c00000{word-spacing:21.779200pt;}
.ws1b04_c00000{word-spacing:21.784320pt;}
.ws1458_c00000{word-spacing:21.785600pt;}
.ws14e8_c00000{word-spacing:21.792000pt;}
.ws14d0_c00000{word-spacing:21.796032pt;}
.ws100a_c00000{word-spacing:21.798400pt;}
.ws12e6_c00000{word-spacing:21.804800pt;}
.wsdca_c00000{word-spacing:21.811200pt;}
.ws19b4_c00000{word-spacing:21.819456pt;}
.ws964_c00000{word-spacing:21.830400pt;}
.wsdc5_c00000{word-spacing:21.836800pt;}
.ws1710_c00000{word-spacing:21.843200pt;}
.ws1acc_c00000{word-spacing:21.881600pt;}
.ws1195_c00000{word-spacing:21.913600pt;}
.ws3f7_c00000{word-spacing:21.920000pt;}
.ws1ab4_c00000{word-spacing:21.921088pt;}
.ws18a6_c00000{word-spacing:21.926400pt;}
.ws415_c00000{word-spacing:21.945600pt;}
.ws15ab_c00000{word-spacing:21.947808pt;}
.ws1493_c00000{word-spacing:21.958400pt;}
.wsf6b_c00000{word-spacing:21.964800pt;}
.ws3e9_c00000{word-spacing:21.984000pt;}
.ws1630_c00000{word-spacing:21.990400pt;}
.ws1acb_c00000{word-spacing:21.996800pt;}
.ws3f6_c00000{word-spacing:22.003200pt;}
.ws191e_c00000{word-spacing:22.022400pt;}
.ws13c3_c00000{word-spacing:22.028800pt;}
.ws3ea_c00000{word-spacing:22.035200pt;}
.ws5b0_c00000{word-spacing:22.041600pt;}
.ws414_c00000{word-spacing:22.048000pt;}
.ws71e_c00000{word-spacing:22.054400pt;}
.ws71d_c00000{word-spacing:22.060800pt;}
.ws3f8_c00000{word-spacing:22.067200pt;}
.wsf6a_c00000{word-spacing:22.073600pt;}
.wsd2f_c00000{word-spacing:22.080000pt;}
.ws1258_c00000{word-spacing:22.086400pt;}
.ws13c4_c00000{word-spacing:22.092800pt;}
.wsdc7_c00000{word-spacing:22.099200pt;}
.ws74c_c00000{word-spacing:22.105600pt;}
.ws15f3_c00000{word-spacing:22.112256pt;}
.wsdc6_c00000{word-spacing:22.118400pt;}
.ws170f_c00000{word-spacing:22.124800pt;}
.wsd95_c00000{word-spacing:22.131200pt;}
.ws1436_c00000{word-spacing:22.137600pt;}
.ws107d_c00000{word-spacing:22.147392pt;}
.ws15f4_c00000{word-spacing:22.153248pt;}
.ws13f7_c00000{word-spacing:22.193632pt;}
.ws1259_c00000{word-spacing:22.201600pt;}
.ws13f8_c00000{word-spacing:22.225696pt;}
.ws1b29_c00000{word-spacing:22.240000pt;}
.ws1903_c00000{word-spacing:22.252416pt;}
.ws1733_c00000{word-spacing:22.252800pt;}
.ws1905_c00000{word-spacing:22.257760pt;}
.ws1aaf_c00000{word-spacing:22.259200pt;}
.ws1b2a_c00000{word-spacing:22.265600pt;}
.wsfba_c00000{word-spacing:22.278400pt;}
.ws1216_c00000{word-spacing:22.291200pt;}
.wsfb9_c00000{word-spacing:22.297600pt;}
.wsbec_c00000{word-spacing:22.304000pt;}
.ws10f9_c00000{word-spacing:22.310400pt;}
.ws1904_c00000{word-spacing:22.316544pt;}
.ws665_c00000{word-spacing:22.316800pt;}
.wsaf8_c00000{word-spacing:22.329600pt;}
.ws1217_c00000{word-spacing:22.336000pt;}
.ws664_c00000{word-spacing:22.342400pt;}
.ws1a9e_c00000{word-spacing:22.348800pt;}
.ws15c4_c00000{word-spacing:22.355200pt;}
.ws63c_c00000{word-spacing:22.361600pt;}
.wsaf9_c00000{word-spacing:22.368000pt;}
.ws74b_c00000{word-spacing:22.374400pt;}
.ws3d6_c00000{word-spacing:22.380800pt;}
.ws10c9_c00000{word-spacing:22.387200pt;}
.ws125e_c00000{word-spacing:22.393600pt;}
.wsbed_c00000{word-spacing:22.400000pt;}
.wscf3_c00000{word-spacing:22.406400pt;}
.ws116a_c00000{word-spacing:22.412800pt;}
.ws63d_c00000{word-spacing:22.419200pt;}
.ws3d7_c00000{word-spacing:22.425600pt;}
.ws1a03_c00000{word-spacing:22.428768pt;}
.ws1169_c00000{word-spacing:22.432000pt;}
.ws19ea_c00000{word-spacing:22.434336pt;}
.ws18c5_c00000{word-spacing:22.438400pt;}
.ws125f_c00000{word-spacing:22.444800pt;}
.ws169e_c00000{word-spacing:22.446048pt;}
.ws11b9_c00000{word-spacing:22.534400pt;}
.ws1a93_c00000{word-spacing:22.540800pt;}
.ws12be_c00000{word-spacing:22.579200pt;}
.ws14b9_c00000{word-spacing:22.585600pt;}
.ws136f_c00000{word-spacing:22.592000pt;}
.ws1707_c00000{word-spacing:22.611200pt;}
.ws632_c00000{word-spacing:22.624000pt;}
.ws9ab_c00000{word-spacing:22.630400pt;}
.ws8ad_c00000{word-spacing:22.636800pt;}
.ws125d_c00000{word-spacing:22.643200pt;}
.ws11ff_c00000{word-spacing:22.649600pt;}
.ws1577_c00000{word-spacing:22.656000pt;}
.ws1578_c00000{word-spacing:22.668800pt;}
.ws11f7_c00000{word-spacing:22.675200pt;}
.ws1657_c00000{word-spacing:22.681600pt;}
.ws81b_c00000{word-spacing:22.688000pt;}
.ws72e_c00000{word-spacing:22.694400pt;}
.ws1370_c00000{word-spacing:22.700800pt;}
.ws15bb_c00000{word-spacing:22.707200pt;}
.ws633_c00000{word-spacing:22.713600pt;}
.wsf03_c00000{word-spacing:22.717344pt;}
.ws1371_c00000{word-spacing:22.720000pt;}
.ws72d_c00000{word-spacing:22.726400pt;}
.ws1200_c00000{word-spacing:22.732800pt;}
.ws1995_c00000{word-spacing:22.739200pt;}
.ws1a02_c00000{word-spacing:22.744064pt;}
.ws1b4e_c00000{word-spacing:22.750560pt;}
.ws1553_c00000{word-spacing:22.752000pt;}
.ws1a97_c00000{word-spacing:22.758400pt;}
.ws17c2_c00000{word-spacing:22.764800pt;}
.ws1971_c00000{word-spacing:22.768128pt;}
.ws16c1_c00000{word-spacing:22.784000pt;}
.ws1095_c00000{word-spacing:22.790400pt;}
.ws1a90_c00000{word-spacing:22.791552pt;}
.wsf02_c00000{word-spacing:22.797504pt;}
.ws1b2f_c00000{word-spacing:22.828800pt;}
.ws199b_c00000{word-spacing:22.854400pt;}
.wsa5c_c00000{word-spacing:22.873600pt;}
.ws6_c00000{word-spacing:22.874720pt;}
.ws1810_c00000{word-spacing:22.877664pt;}
.ws1a51_c00000{word-spacing:22.899200pt;}
.ws1a52_c00000{word-spacing:22.912000pt;}
.ws175f_c00000{word-spacing:22.918400pt;}
.ws180f_c00000{word-spacing:22.925760pt;}
.ws15bc_c00000{word-spacing:22.931104pt;}
.ws179e_c00000{word-spacing:22.937600pt;}
.ws179f_c00000{word-spacing:22.944000pt;}
.ws425_c00000{word-spacing:22.950400pt;}
.ws898_c00000{word-spacing:22.963200pt;}
.ws465_c00000{word-spacing:22.976000pt;}
.ws16e3_c00000{word-spacing:22.995200pt;}
.ws255_c00000{word-spacing:23.001600pt;}
.ws1843_c00000{word-spacing:23.008000pt;}
.ws6cc_c00000{word-spacing:23.014400pt;}
.ws112c_c00000{word-spacing:23.016608pt;}
.ws2d4_c00000{word-spacing:23.020800pt;}
.ws254_c00000{word-spacing:23.027200pt;}
.ws2d5_c00000{word-spacing:23.033600pt;}
.ws1096_c00000{word-spacing:23.040000pt;}
.wsbdf_c00000{word-spacing:23.043328pt;}
.ws1159_c00000{word-spacing:23.046400pt;}
.ws466_c00000{word-spacing:23.052800pt;}
.ws175e_c00000{word-spacing:23.059200pt;}
.ws9ad_c00000{word-spacing:23.065600pt;}
.ws899_c00000{word-spacing:23.091200pt;}
.ws140a_c00000{word-spacing:23.112800pt;}
.ws112a_c00000{word-spacing:23.134176pt;}
.ws7_c00000{word-spacing:23.138464pt;}
.ws1b2b_c00000{word-spacing:23.139520pt;}
.wsbcb_c00000{word-spacing:23.174400pt;}
.ws1922_c00000{word-spacing:23.219200pt;}
.ws140b_c00000{word-spacing:23.219680pt;}
.ws1675_c00000{word-spacing:23.238400pt;}
.ws19ab_c00000{word-spacing:23.244800pt;}
.ws187e_c00000{word-spacing:23.251200pt;}
.wsff2_c00000{word-spacing:23.257600pt;}
.ws13f4_c00000{word-spacing:23.264000pt;}
.ws119e_c00000{word-spacing:23.270400pt;}
.ws1676_c00000{word-spacing:23.276800pt;}
.ws1923_c00000{word-spacing:23.283200pt;}
.wsbcd_c00000{word-spacing:23.289600pt;}
.wsbb2_c00000{word-spacing:23.302400pt;}
.ws26a_c00000{word-spacing:23.308800pt;}
.wsd46_c00000{word-spacing:23.321600pt;}
.wsf6e_c00000{word-spacing:23.328000pt;}
.wsf6f_c00000{word-spacing:23.334400pt;}
.wsf6c_c00000{word-spacing:23.340800pt;}
.ws921_c00000{word-spacing:23.347200pt;}
.ws13f5_c00000{word-spacing:23.353600pt;}
.wsd35_c00000{word-spacing:23.360000pt;}
.wsbb3_c00000{word-spacing:23.366400pt;}
.wsd45_c00000{word-spacing:23.379200pt;}
.wsbcc_c00000{word-spacing:23.385600pt;}
.wsd34_c00000{word-spacing:23.392000pt;}
.ws19e9_c00000{word-spacing:23.429856pt;}
.wsb73_c00000{word-spacing:23.441568pt;}
.ws199d_c00000{word-spacing:23.462400pt;}
.ws11ac_c00000{word-spacing:23.475200pt;}
.wsff3_c00000{word-spacing:23.481600pt;}
.ws722_c00000{word-spacing:23.488000pt;}
.ws121a_c00000{word-spacing:23.494400pt;}
.ws703_c00000{word-spacing:23.513600pt;}
.ws723_c00000{word-spacing:23.564800pt;}
.wsa34_c00000{word-spacing:23.571200pt;}
.ws199e_c00000{word-spacing:23.577600pt;}
.wscc7_c00000{word-spacing:23.590400pt;}
.ws1a35_c00000{word-spacing:23.596800pt;}
.wscc2_c00000{word-spacing:23.603200pt;}
.ws140c_c00000{word-spacing:23.604448pt;}
.ws1892_c00000{word-spacing:23.609600pt;}
.ws702_c00000{word-spacing:23.615136pt;}
.ws102_c00000{word-spacing:23.616000pt;}
.ws1a18_c00000{word-spacing:23.622400pt;}
.ws1a50_c00000{word-spacing:23.628800pt;}
.wscc3_c00000{word-spacing:23.641600pt;}
.ws1768_c00000{word-spacing:23.648000pt;}
.wsa33_c00000{word-spacing:23.654400pt;}
.ws112b_c00000{word-spacing:23.657888pt;}
.ws17ad_c00000{word-spacing:23.660800pt;}
.ws11ab_c00000{word-spacing:23.667200pt;}
.ws1a4f_c00000{word-spacing:23.673600pt;}
.wsdd2_c00000{word-spacing:23.680000pt;}
.ws1891_c00000{word-spacing:23.692800pt;}
.ws101_c00000{word-spacing:23.699200pt;}
.ws19ef_c00000{word-spacing:23.710944pt;}
.ws1a2e_c00000{word-spacing:23.712000pt;}
.ws103_c00000{word-spacing:23.718400pt;}
.ws1a63_c00000{word-spacing:23.728512pt;}
.ws1919_c00000{word-spacing:23.795200pt;}
.wsa19_c00000{word-spacing:23.814400pt;}
.ws130f_c00000{word-spacing:23.820800pt;}
.ws1769_c00000{word-spacing:23.846400pt;}
.ws111e_c00000{word-spacing:23.850272pt;}
.wsa1a_c00000{word-spacing:23.852800pt;}
.ws123a_c00000{word-spacing:23.859200pt;}
.ws17c0_c00000{word-spacing:23.865600pt;}
.wsd23_c00000{word-spacing:23.872000pt;}
.ws100d_c00000{word-spacing:23.878400pt;}
.ws15e3_c00000{word-spacing:23.884800pt;}
.ws15b3_c00000{word-spacing:23.891200pt;}
.ws1a0c_c00000{word-spacing:23.904000pt;}
.ws1767_c00000{word-spacing:23.910400pt;}
.ws1310_c00000{word-spacing:23.923200pt;}
.wsab1_c00000{word-spacing:23.929600pt;}
.wsc04_c00000{word-spacing:23.936000pt;}
.ws136b_c00000{word-spacing:23.942400pt;}
.ws15b4_c00000{word-spacing:23.955200pt;}
.ws15e4_c00000{word-spacing:23.961600pt;}
.ws576_c00000{word-spacing:23.968000pt;}
.wsfc_c00000{word-spacing:23.974400pt;}
.ws19c5_c00000{word-spacing:23.980800pt;}
.wsfb_c00000{word-spacing:23.987200pt;}
.ws1555_c00000{word-spacing:23.993600pt;}
.wsd22_c00000{word-spacing:24.000000pt;}
.ws1842_c00000{word-spacing:24.006400pt;}
.wsbf9_c00000{word-spacing:24.012800pt;}
.ws662_c00000{word-spacing:24.032000pt;}
.ws18ba_c00000{word-spacing:24.038400pt;}
.wsab0_c00000{word-spacing:24.044800pt;}
.ws577_c00000{word-spacing:24.051200pt;}
.ws15fb_c00000{word-spacing:24.062304pt;}
.ws15fc_c00000{word-spacing:24.091584pt;}
.ws1380_c00000{word-spacing:24.128160pt;}
.ws1694_c00000{word-spacing:24.147200pt;}
.ws6ca_c00000{word-spacing:24.185600pt;}
.ws1381_c00000{word-spacing:24.186944pt;}
.ws1202_c00000{word-spacing:24.192000pt;}
.ws175c_c00000{word-spacing:24.204800pt;}
.ws184c_c00000{word-spacing:24.211200pt;}
.ws11b8_c00000{word-spacing:24.230400pt;}
.ws1703_c00000{word-spacing:24.236800pt;}
.wsa25_c00000{word-spacing:24.243200pt;}
.ws15da_c00000{word-spacing:24.256000pt;}
.wsa26_c00000{word-spacing:24.262400pt;}
.ws1753_c00000{word-spacing:24.275200pt;}
.ws30b_c00000{word-spacing:24.288480pt;}
.ws6c9_c00000{word-spacing:24.294400pt;}
.ws8b1_c00000{word-spacing:24.300800pt;}
.ws459_c00000{word-spacing:24.307200pt;}
.ws458_c00000{word-spacing:24.313600pt;}
.ws29b_c00000{word-spacing:24.320000pt;}
.ws184d_c00000{word-spacing:24.332800pt;}
.ws1695_c00000{word-spacing:24.339200pt;}
.ws45a_c00000{word-spacing:24.345600pt;}
.wsd2a_c00000{word-spacing:24.352000pt;}
.ws1201_c00000{word-spacing:24.364800pt;}
.ws8b0_c00000{word-spacing:24.371200pt;}
.ws150a_c00000{word-spacing:24.409600pt;}
.ws11f8_c00000{word-spacing:24.428800pt;}
.wsbfb_c00000{word-spacing:24.454400pt;}
.wsd48_c00000{word-spacing:24.473600pt;}
.wsf9a_c00000{word-spacing:24.499200pt;}
.wsd8b_c00000{word-spacing:24.505600pt;}
.ws16d2_c00000{word-spacing:24.518400pt;}
.ws875_c00000{word-spacing:24.550400pt;}
.wsbfa_c00000{word-spacing:24.563200pt;}
.wsd8a_c00000{word-spacing:24.576000pt;}
.ws1a6e_c00000{word-spacing:24.588800pt;}
.wsd44_c00000{word-spacing:24.595200pt;}
.wse56_c00000{word-spacing:24.601600pt;}
.ws1795_c00000{word-spacing:24.608000pt;}
.ws77e_c00000{word-spacing:24.620800pt;}
.wsd93_c00000{word-spacing:24.627200pt;}
.wsf99_c00000{word-spacing:24.633600pt;}
.ws1796_c00000{word-spacing:24.640000pt;}
.ws1199_c00000{word-spacing:24.651872pt;}
.wsd49_c00000{word-spacing:24.652800pt;}
.ws11f9_c00000{word-spacing:24.659200pt;}
.ws110c_c00000{word-spacing:24.665600pt;}
.wse52_c00000{word-spacing:24.672000pt;}
.wsd94_c00000{word-spacing:24.691200pt;}
.ws10a5_c00000{word-spacing:24.723200pt;}
.ws14fb_c00000{word-spacing:24.755200pt;}
.ws1392_c00000{word-spacing:24.768000pt;}
.ws1297_c00000{word-spacing:24.793600pt;}
.ws1391_c00000{word-spacing:24.819200pt;}
.ws3d2_c00000{word-spacing:24.838400pt;}
.ws2e2_c00000{word-spacing:24.857600pt;}
.ws551_c00000{word-spacing:24.870400pt;}
.ws9ca_c00000{word-spacing:24.876800pt;}
.ws3d3_c00000{word-spacing:24.883200pt;}
.ws1a01_c00000{word-spacing:24.889600pt;}
.wsd08_c00000{word-spacing:24.896000pt;}
.ws550_c00000{word-spacing:24.902400pt;}
.ws13ae_c00000{word-spacing:24.915200pt;}
.ws1908_c00000{word-spacing:24.921600pt;}
.ws14fa_c00000{word-spacing:24.928000pt;}
.ws1296_c00000{word-spacing:24.934400pt;}
.ws138d_c00000{word-spacing:24.940800pt;}
.ws7b4_c00000{word-spacing:24.947200pt;}
.ws10a4_c00000{word-spacing:24.953600pt;}
.ws2e3_c00000{word-spacing:24.960000pt;}
.ws9cb_c00000{word-spacing:24.966400pt;}
.ws775_c00000{word-spacing:24.972800pt;}
.ws776_c00000{word-spacing:24.985600pt;}
.ws11a2_c00000{word-spacing:25.024000pt;}
.ws10d1_c00000{word-spacing:25.113600pt;}
.ws164c_c00000{word-spacing:25.122144pt;}
.ws4c1_c00000{word-spacing:25.152000pt;}
.ws44a_c00000{word-spacing:25.158400pt;}
.ws10d0_c00000{word-spacing:25.164800pt;}
.wse76_c00000{word-spacing:25.171200pt;}
.wsefa_c00000{word-spacing:25.177600pt;}
.wsee4_c00000{word-spacing:25.190400pt;}
.ws4c0_c00000{word-spacing:25.222400pt;}
.ws1724_c00000{word-spacing:25.228800pt;}
.ws16cb_c00000{word-spacing:25.235200pt;}
.wsbb4_c00000{word-spacing:25.248000pt;}
.ws449_c00000{word-spacing:25.254400pt;}
.wsee3_c00000{word-spacing:25.260800pt;}
.ws834_c00000{word-spacing:25.267200pt;}
.ws1052_c00000{word-spacing:25.273600pt;}
.wsefb_c00000{word-spacing:25.280000pt;}
.wsb3d_c00000{word-spacing:25.286400pt;}
.ws192e_c00000{word-spacing:25.292064pt;}
.wse75_c00000{word-spacing:25.305600pt;}
.ws1049_c00000{word-spacing:25.331200pt;}
.ws15cd_c00000{word-spacing:25.356800pt;}
.ws15cc_c00000{word-spacing:25.369600pt;}
.ws16ca_c00000{word-spacing:25.388800pt;}
.ws184a_c00000{word-spacing:25.491200pt;}
.ws1a6c_c00000{word-spacing:25.497600pt;}
.ws11a5_c00000{word-spacing:25.504000pt;}
.ws1299_c00000{word-spacing:25.510400pt;}
.ws16ea_c00000{word-spacing:25.523200pt;}
.ws12c7_c00000{word-spacing:25.542400pt;}
.ws1a6b_c00000{word-spacing:25.555200pt;}
.ws102d_c00000{word-spacing:25.561600pt;}
.ws1205_c00000{word-spacing:25.568000pt;}
.ws368_c00000{word-spacing:25.574400pt;}
.wsc9c_c00000{word-spacing:25.580800pt;}
.ws1204_c00000{word-spacing:25.587200pt;}
.ws18f7_c00000{word-spacing:25.592416pt;}
.ws148e_c00000{word-spacing:25.593600pt;}
.ws148d_c00000{word-spacing:25.606400pt;}
.ws102e_c00000{word-spacing:25.632000pt;}
.ws17e7_c00000{word-spacing:25.637568pt;}
.ws11a6_c00000{word-spacing:25.651200pt;}
.ws17e6_c00000{word-spacing:25.667232pt;}
.ws1a6d_c00000{word-spacing:25.683200pt;}
.ws17e5_c00000{word-spacing:25.688608pt;}
.ws18d0_c00000{word-spacing:25.693952pt;}
.wsf40_c00000{word-spacing:25.721600pt;}
.ws2aa_c00000{word-spacing:25.753600pt;}
.ws177d_c00000{word-spacing:25.768768pt;}
.ws1b32_c00000{word-spacing:25.772800pt;}
.ws18f8_c00000{word-spacing:25.774112pt;}
.ws276_c00000{word-spacing:25.779200pt;}
.ws999_c00000{word-spacing:25.792000pt;}
.ws3c8_c00000{word-spacing:25.817600pt;}
.ws1814_c00000{word-spacing:25.836800pt;}
.wsd10_c00000{word-spacing:25.843200pt;}
.ws9b_c00000{word-spacing:25.849600pt;}
.ws99a_c00000{word-spacing:25.856000pt;}
.ws1813_c00000{word-spacing:25.862400pt;}
.wsa37_c00000{word-spacing:25.868800pt;}
.ws173d_c00000{word-spacing:25.875200pt;}
.ws3c7_c00000{word-spacing:25.881600pt;}
.ws9c_c00000{word-spacing:25.888000pt;}
.ws11b1_c00000{word-spacing:25.894400pt;}
.wsca4_c00000{word-spacing:25.900800pt;}
.ws1ac4_c00000{word-spacing:25.907200pt;}
.wsb66_c00000{word-spacing:25.913600pt;}
.ws16d8_c00000{word-spacing:25.920000pt;}
.ws275_c00000{word-spacing:25.932800pt;}
.ws16bf_c00000{word-spacing:25.947936pt;}
.ws2ab_c00000{word-spacing:25.952000pt;}
.wsc30_c00000{word-spacing:25.964800pt;}
.ws1939_c00000{word-spacing:25.990400pt;}
.ws671_c00000{word-spacing:26.099200pt;}
.ws1240_c00000{word-spacing:26.105600pt;}
.ws1931_c00000{word-spacing:26.118400pt;}
.ws159a_c00000{word-spacing:26.124800pt;}
.ws1321_c00000{word-spacing:26.132160pt;}
.ws661_c00000{word-spacing:26.137600pt;}
.ws1938_c00000{word-spacing:26.144000pt;}
.ws1599_c00000{word-spacing:26.156800pt;}
.wsc9e_c00000{word-spacing:26.163200pt;}
.ws177c_c00000{word-spacing:26.169568pt;}
.ws123f_c00000{word-spacing:26.169600pt;}
.wsb25_c00000{word-spacing:26.182400pt;}
.ws16c8_c00000{word-spacing:26.188800pt;}
.ws570_c00000{word-spacing:26.201600pt;}
.ws571_c00000{word-spacing:26.208000pt;}
.ws1932_c00000{word-spacing:26.214400pt;}
.ws18c6_c00000{word-spacing:26.220800pt;}
.ws186c_c00000{word-spacing:26.227200pt;}
.wsc7a_c00000{word-spacing:26.239040pt;}
.ws670_c00000{word-spacing:26.240000pt;}
.wsc79_c00000{word-spacing:26.244384pt;}
.wsc31_c00000{word-spacing:26.246400pt;}
.ws1b5a_c00000{word-spacing:26.284800pt;}
.wsabf_c00000{word-spacing:26.316800pt;}
.ws10dc_c00000{word-spacing:26.355200pt;}
.ws17cf_c00000{word-spacing:26.368000pt;}
.ws1430_c00000{word-spacing:26.380800pt;}
.ws132a_c00000{word-spacing:26.393600pt;}
.ws1236_c00000{word-spacing:26.457600pt;}
.ws117d_c00000{word-spacing:26.476800pt;}
.ws1787_c00000{word-spacing:26.496000pt;}
.ws14fd_c00000{word-spacing:26.508800pt;}
.wsbe7_c00000{word-spacing:26.515200pt;}
.ws142e_c00000{word-spacing:26.521600pt;}
.ws1160_c00000{word-spacing:26.528000pt;}
.ws1aba_c00000{word-spacing:26.533536pt;}
.ws788_c00000{word-spacing:26.534400pt;}
.wsabe_c00000{word-spacing:26.540800pt;}
.wsac0_c00000{word-spacing:26.547200pt;}
.ws142f_c00000{word-spacing:26.553600pt;}
.wsfa3_c00000{word-spacing:26.560000pt;}
.ws1237_c00000{word-spacing:26.572800pt;}
.wsb26_c00000{word-spacing:26.585600pt;}
.ws1a64_c00000{word-spacing:26.621376pt;}
.ws1161_c00000{word-spacing:26.630400pt;}
.wsca2_c00000{word-spacing:26.713600pt;}
.wsa69_c00000{word-spacing:26.720000pt;}
.ws1223_c00000{word-spacing:26.732800pt;}
.ws18b9_c00000{word-spacing:26.739200pt;}
.ws1222_c00000{word-spacing:26.745600pt;}
.ws1476_c00000{word-spacing:26.758400pt;}
.ws1475_c00000{word-spacing:26.764800pt;}
.wsa6a_c00000{word-spacing:26.771200pt;}
.ws1412_c00000{word-spacing:26.790400pt;}
.ws8db_c00000{word-spacing:26.809600pt;}
.ws149e_c00000{word-spacing:26.816000pt;}
.ws754_c00000{word-spacing:26.828800pt;}
.ws1413_c00000{word-spacing:26.835200pt;}
.ws8d8_c00000{word-spacing:26.841600pt;}
.wscca_c00000{word-spacing:26.848000pt;}
.ws41c_c00000{word-spacing:26.854400pt;}
.ws1a96_c00000{word-spacing:26.860800pt;}
.ws1b52_c00000{word-spacing:26.867200pt;}
.ws51f_c00000{word-spacing:26.873600pt;}
.wsa6b_c00000{word-spacing:26.886400pt;}
.ws521_c00000{word-spacing:26.892800pt;}
.wsa59_c00000{word-spacing:26.896608pt;}
.ws520_c00000{word-spacing:26.899200pt;}
.wsa58_c00000{word-spacing:26.937600pt;}
.ws753_c00000{word-spacing:26.944000pt;}
.wsb3b_c00000{word-spacing:27.033600pt;}
.ws491_c00000{word-spacing:27.065600pt;}
.ws566_c00000{word-spacing:27.078400pt;}
.ws490_c00000{word-spacing:27.097600pt;}
.wse8c_c00000{word-spacing:27.110400pt;}
.wsab8_c00000{word-spacing:27.116800pt;}
.ws58b_c00000{word-spacing:27.136000pt;}
.ws1123_c00000{word-spacing:27.148800pt;}
.wsab7_c00000{word-spacing:27.155200pt;}
.wscb6_c00000{word-spacing:27.168000pt;}
.ws1b33_c00000{word-spacing:27.174400pt;}
.ws1b24_c00000{word-spacing:27.180800pt;}
.ws1a89_c00000{word-spacing:27.187200pt;}
.wse40_c00000{word-spacing:27.200000pt;}
.ws1a82_c00000{word-spacing:27.206400pt;}
.ws1124_c00000{word-spacing:27.225600pt;}
.wsab9_c00000{word-spacing:27.251200pt;}
.wsd8d_c00000{word-spacing:27.321600pt;}
.ws165d_c00000{word-spacing:27.334400pt;}
.ws118d_c00000{word-spacing:27.372800pt;}
.wsb27_c00000{word-spacing:27.385600pt;}
.ws1928_c00000{word-spacing:27.430400pt;}
.ws19b7_c00000{word-spacing:27.436800pt;}
.ws1b11_c00000{word-spacing:27.443200pt;}
.ws109d_c00000{word-spacing:27.456000pt;}
.ws1b10_c00000{word-spacing:27.462400pt;}
.wse49_c00000{word-spacing:27.475200pt;}
.wsd8c_c00000{word-spacing:27.488000pt;}
.ws109c_c00000{word-spacing:27.494400pt;}
.wsde1_c00000{word-spacing:27.500800pt;}
.ws165e_c00000{word-spacing:27.526400pt;}
.wsb28_c00000{word-spacing:27.539200pt;}
.ws1759_c00000{word-spacing:27.540768pt;}
.wse2e_c00000{word-spacing:27.545600pt;}
.ws1876_c00000{word-spacing:27.552000pt;}
.ws1758_c00000{word-spacing:27.558336pt;}
.ws118e_c00000{word-spacing:27.571200pt;}
.wsbb7_c00000{word-spacing:27.603200pt;}
.wse48_c00000{word-spacing:27.609600pt;}
.ws134b_c00000{word-spacing:27.731200pt;}
.wsae2_c00000{word-spacing:27.744000pt;}
.wsbb6_c00000{word-spacing:27.750400pt;}
.ws1ab0_c00000{word-spacing:27.756800pt;}
.ws1848_c00000{word-spacing:27.763200pt;}
.wsc54_c00000{word-spacing:27.782400pt;}
.ws102b_c00000{word-spacing:27.795200pt;}
.ws300_c00000{word-spacing:27.808000pt;}
.ws84f_c00000{word-spacing:27.814400pt;}
.wscb7_c00000{word-spacing:27.820800pt;}
.ws1111_c00000{word-spacing:27.827200pt;}
.ws301_c00000{word-spacing:27.833600pt;}
.ws850_c00000{word-spacing:27.840000pt;}
.ws1709_c00000{word-spacing:27.852800pt;}
.ws102a_c00000{word-spacing:27.865600pt;}
.ws1112_c00000{word-spacing:27.878400pt;}
.ws134c_c00000{word-spacing:27.910400pt;}
.ws18a7_c00000{word-spacing:27.929600pt;}
.ws113b_c00000{word-spacing:27.942400pt;}
.ws1aef_c00000{word-spacing:27.955200pt;}
.ws19e6_c00000{word-spacing:27.980800pt;}
.ws10f8_c00000{word-spacing:28.012800pt;}
.ws1933_c00000{word-spacing:28.019200pt;}
.ws18a9_c00000{word-spacing:28.032000pt;}
.wsfbb_c00000{word-spacing:28.070400pt;}
.ws1457_c00000{word-spacing:28.089600pt;}
.ws1aee_c00000{word-spacing:28.096000pt;}
.ws19e5_c00000{word-spacing:28.115200pt;}
.wsee6_c00000{word-spacing:28.128000pt;}
.wsdd3_c00000{word-spacing:28.134400pt;}
.wsa89_c00000{word-spacing:28.140800pt;}
.ws18a8_c00000{word-spacing:28.153600pt;}
.ws1934_c00000{word-spacing:28.160000pt;}
.ws1108_c00000{word-spacing:28.162880pt;}
.ws1a47_c00000{word-spacing:28.166400pt;}
.ws7ae_c00000{word-spacing:28.192000pt;}
.ws1a46_c00000{word-spacing:28.198400pt;}
.ws1ab8_c00000{word-spacing:28.220064pt;}
.ws1ab9_c00000{word-spacing:28.255200pt;}
.wsd0d_c00000{word-spacing:28.288000pt;}
.ws599_c00000{word-spacing:28.313600pt;}
.ws440_c00000{word-spacing:28.377600pt;}
.ws597_c00000{word-spacing:28.396800pt;}
.wsd33_c00000{word-spacing:28.409600pt;}
.ws43f_c00000{word-spacing:28.428800pt;}
.wscb2_c00000{word-spacing:28.454400pt;}
.ws598_c00000{word-spacing:28.480000pt;}
.wsd0e_c00000{word-spacing:28.486400pt;}
.ws19fa_c00000{word-spacing:28.492800pt;}
.wscb1_c00000{word-spacing:28.505600pt;}
.wsb75_c00000{word-spacing:28.518720pt;}
.ws1305_c00000{word-spacing:28.520928pt;}
.ws183e_c00000{word-spacing:28.524800pt;}
.ws183d_c00000{word-spacing:28.531200pt;}
.wsb74_c00000{word-spacing:28.542144pt;}
.ws16fd_c00000{word-spacing:28.576000pt;}
.ws19dd_c00000{word-spacing:28.614400pt;}
.ws16fc_c00000{word-spacing:28.710400pt;}
.ws1b5c_c00000{word-spacing:28.736000pt;}
.ws118b_c00000{word-spacing:28.742400pt;}
.ws1b5b_c00000{word-spacing:28.761600pt;}
.wsd55_c00000{word-spacing:28.768000pt;}
.ws19dc_c00000{word-spacing:28.774400pt;}
.wse6a_c00000{word-spacing:28.780800pt;}
.wsd56_c00000{word-spacing:28.793600pt;}
.wsf8a_c00000{word-spacing:28.806400pt;}
.ws1977_c00000{word-spacing:28.960000pt;}
.ws13a2_c00000{word-spacing:28.975168pt;}
.ws6bc_c00000{word-spacing:28.992000pt;}
.wsefc_c00000{word-spacing:29.004800pt;}
.wsea7_c00000{word-spacing:29.024000pt;}
.ws41f_c00000{word-spacing:29.030400pt;}
.wsefd_c00000{word-spacing:29.036800pt;}
.ws117b_c00000{word-spacing:29.075200pt;}
.ws6bb_c00000{word-spacing:29.088000pt;}
.ws1ae2_c00000{word-spacing:29.100800pt;}
.wsea8_c00000{word-spacing:29.107200pt;}
.ws1388_c00000{word-spacing:29.113600pt;}
.ws13a0_c00000{word-spacing:29.124800pt;}
.ws1191_c00000{word-spacing:29.132800pt;}
.wsea9_c00000{word-spacing:29.139200pt;}
.ws1192_c00000{word-spacing:29.145600pt;}
.ws3f5_c00000{word-spacing:29.248000pt;}
.ws13a1_c00000{word-spacing:29.295808pt;}
.ws195c_c00000{word-spacing:29.344000pt;}
.ws3f4_c00000{word-spacing:29.350400pt;}
.ws1232_c00000{word-spacing:29.363200pt;}
.ws1233_c00000{word-spacing:29.382400pt;}
.ws16d4_c00000{word-spacing:29.401600pt;}
.ws1051_c00000{word-spacing:29.408000pt;}
.ws176e_c00000{word-spacing:29.433600pt;}
.ws15ba_c00000{word-spacing:29.443968pt;}
.ws3f3_c00000{word-spacing:29.446400pt;}
.ws15b9_c00000{word-spacing:29.449824pt;}
.ws16d3_c00000{word-spacing:29.452800pt;}
.ws1a62_c00000{word-spacing:29.473248pt;}
.ws1aae_c00000{word-spacing:29.580800pt;}
.ws1817_c00000{word-spacing:29.593600pt;}
.ws1aad_c00000{word-spacing:29.625600pt;}
.ws162f_c00000{word-spacing:29.644800pt;}
.ws1671_c00000{word-spacing:29.676800pt;}
.ws1672_c00000{word-spacing:29.689600pt;}
.wsc83_c00000{word-spacing:29.702400pt;}
.ws998_c00000{word-spacing:29.721600pt;}
.ws16cf_c00000{word-spacing:29.728000pt;}
.ws7c6_c00000{word-spacing:29.734400pt;}
.ws66e_c00000{word-spacing:29.740800pt;}
.wsc84_c00000{word-spacing:29.747200pt;}
.ws1a45_c00000{word-spacing:29.753600pt;}
.ws18ce_c00000{word-spacing:29.760736pt;}
.wsee2_c00000{word-spacing:29.766400pt;}
.ws1a44_c00000{word-spacing:29.772800pt;}
.ws66f_c00000{word-spacing:29.785600pt;}
.wscaf_c00000{word-spacing:29.804800pt;}
.ws192b_c00000{word-spacing:29.824608pt;}
.wsf38_c00000{word-spacing:29.913600pt;}
.ws17f3_c00000{word-spacing:29.952000pt;}
.ws16cd_c00000{word-spacing:29.984000pt;}
.wsf37_c00000{word-spacing:29.990400pt;}
.ws167b_c00000{word-spacing:30.022400pt;}
.ws464_c00000{word-spacing:30.028800pt;}
.ws4dc_c00000{word-spacing:30.048000pt;}
.ws10ca_c00000{word-spacing:30.054400pt;}
.ws991_c00000{word-spacing:30.067200pt;}
.ws990_c00000{word-spacing:30.073600pt;}
.ws1a53_c00000{word-spacing:30.080000pt;}
.ws10cb_c00000{word-spacing:30.092800pt;}
.ws16ce_c00000{word-spacing:30.112000pt;}
.ws4dd_c00000{word-spacing:30.137600pt;}
.ws17f2_c00000{word-spacing:30.156800pt;}
.ws1519_c00000{word-spacing:30.265600pt;}
.ws11ca_c00000{word-spacing:30.304000pt;}
.ws1821_c00000{word-spacing:30.310400pt;}
.ws190e_c00000{word-spacing:30.361600pt;}
.wse6_c00000{word-spacing:30.368000pt;}
.ws289_c00000{word-spacing:30.374400pt;}
.wsd91_c00000{word-spacing:30.380800pt;}
.ws1518_c00000{word-spacing:30.387200pt;}
.wse7_c00000{word-spacing:30.393600pt;}
.ws11cb_c00000{word-spacing:30.400000pt;}
.ws1a14_c00000{word-spacing:30.406400pt;}
.ws151a_c00000{word-spacing:30.451200pt;}
.ws1822_c00000{word-spacing:30.464000pt;}
.ws11d4_c00000{word-spacing:30.566400pt;}
.ws18cf_c00000{word-spacing:30.637152pt;}
.ws11d5_c00000{word-spacing:30.643200pt;}
.ws377_c00000{word-spacing:30.662400pt;}
.ws1679_c00000{word-spacing:30.700800pt;}
.ws1926_c00000{word-spacing:30.707200pt;}
.ws189b_c00000{word-spacing:30.713600pt;}
.wsd7f_c00000{word-spacing:30.720000pt;}
.wsf53_c00000{word-spacing:30.726400pt;}
.ws379_c00000{word-spacing:30.745600pt;}
.ws130a_c00000{word-spacing:30.752000pt;}
.ws378_c00000{word-spacing:30.758400pt;}
.wsf54_c00000{word-spacing:30.764800pt;}
.wsddc_c00000{word-spacing:30.835200pt;}
.wsddd_c00000{word-spacing:30.860800pt;}
.ws1cd_c00000{word-spacing:30.880000pt;}
.ws228_c00000{word-spacing:30.899200pt;}
.wsd7e_c00000{word-spacing:30.963200pt;}
.ws8f7_c00000{word-spacing:30.976000pt;}
.wscf2_c00000{word-spacing:30.995200pt;}
.ws130b_c00000{word-spacing:31.008000pt;}
.ws227_c00000{word-spacing:31.014400pt;}
.ws8f6_c00000{word-spacing:31.033600pt;}
.ws17ae_c00000{word-spacing:31.040000pt;}
.ws1ce_c00000{word-spacing:31.046400pt;}
.wsd7d_c00000{word-spacing:31.065600pt;}
.ws15a3_c00000{word-spacing:31.180800pt;}
.ws10f1_c00000{word-spacing:31.198272pt;}
.ws103a_c00000{word-spacing:31.206400pt;}
.ws1339_c00000{word-spacing:31.238400pt;}
.wscf1_c00000{word-spacing:31.251200pt;}
.ws1203_c00000{word-spacing:31.270400pt;}
.ws1338_c00000{word-spacing:31.276800pt;}
.ws809_c00000{word-spacing:31.315200pt;}
.ws15a2_c00000{word-spacing:31.328000pt;}
.ws16eb_c00000{word-spacing:31.334400pt;}
.ws80a_c00000{word-spacing:31.340800pt;}
.ws11f4_c00000{word-spacing:31.347200pt;}
.wsd8f_c00000{word-spacing:31.353600pt;}
.ws103b_c00000{word-spacing:31.360000pt;}
.wsd90_c00000{word-spacing:31.385600pt;}
.ws1637_c00000{word-spacing:31.394016pt;}
.ws133a_c00000{word-spacing:31.404800pt;}
.ws1929_c00000{word-spacing:31.405728pt;}
.wsee7_c00000{word-spacing:31.424000pt;}
.wsa68_c00000{word-spacing:31.454784pt;}
.ws96c_c00000{word-spacing:31.545600pt;}
.ws25a_c00000{word-spacing:31.590400pt;}
.wsee8_c00000{word-spacing:31.609600pt;}
.ws96d_c00000{word-spacing:31.635200pt;}
.ws25b_c00000{word-spacing:31.641600pt;}
.ws486_c00000{word-spacing:31.654400pt;}
.ws1962_c00000{word-spacing:31.667200pt;}
.ws1963_c00000{word-spacing:31.680000pt;}
.ws15ec_c00000{word-spacing:31.680960pt;}
.ws1a05_c00000{word-spacing:31.695264pt;}
.wsee9_c00000{word-spacing:31.705600pt;}
.ws15ed_c00000{word-spacing:31.727808pt;}
.ws391_c00000{word-spacing:31.782400pt;}
.wsbad_c00000{word-spacing:31.846400pt;}
.ws390_c00000{word-spacing:31.878400pt;}
.wsbae_c00000{word-spacing:31.929600pt;}
.ws174_c00000{word-spacing:31.936000pt;}
.ws9b0_c00000{word-spacing:31.942400pt;}
.ws175_c00000{word-spacing:31.955200pt;}
.wsd1b_c00000{word-spacing:31.961600pt;}
.wsda0_c00000{word-spacing:31.974400pt;}
.ws176_c00000{word-spacing:31.987200pt;}
.wscad_c00000{word-spacing:31.993600pt;}
.ws57_c00000{word-spacing:32.000000pt;}
.ws1a07_c00000{word-spacing:32.015904pt;}
.wsd1c_c00000{word-spacing:32.019200pt;}
.ws1981_c00000{word-spacing:32.038400pt;}
.ws9b1_c00000{word-spacing:32.057600pt;}
.ws18cd_c00000{word-spacing:32.108800pt;}
.ws8ab_c00000{word-spacing:32.140800pt;}
.ws8ac_c00000{word-spacing:32.179200pt;}
.ws1b3a_c00000{word-spacing:32.224000pt;}
.ws1a06_c00000{word-spacing:32.235008pt;}
.ws76e_c00000{word-spacing:32.281600pt;}
.ws8aa_c00000{word-spacing:32.300800pt;}
.ws1b39_c00000{word-spacing:32.326400pt;}
.ws1980_c00000{word-spacing:32.332800pt;}
.ws18a0_c00000{word-spacing:32.441600pt;}
.ws189f_c00000{word-spacing:32.492800pt;}
.ws1213_c00000{word-spacing:32.518400pt;}
.ws121f_c00000{word-spacing:32.531200pt;}
.ws1786_c00000{word-spacing:32.556800pt;}
.ws176b_c00000{word-spacing:32.569600pt;}
.ws1214_c00000{word-spacing:32.582400pt;}
.ws176a_c00000{word-spacing:32.608000pt;}
.wscb8_c00000{word-spacing:32.614400pt;}
.ws1220_c00000{word-spacing:32.640000pt;}
.ws18a1_c00000{word-spacing:32.684800pt;}
.ws14f1_c00000{word-spacing:32.688192pt;}
.ws40f_c00000{word-spacing:32.723200pt;}
.ws410_c00000{word-spacing:32.844800pt;}
.ws269_c00000{word-spacing:32.851200pt;}
.wse12_c00000{word-spacing:32.857600pt;}
.ws1196_c00000{word-spacing:32.864000pt;}
.wse13_c00000{word-spacing:32.870400pt;}
.ws19ad_c00000{word-spacing:32.915200pt;}
.ws1197_c00000{word-spacing:32.928000pt;}
.ws14f0_c00000{word-spacing:32.934400pt;}
.wseb4_c00000{word-spacing:32.947200pt;}
.wseb5_c00000{word-spacing:32.953600pt;}
.wsf75_c00000{word-spacing:32.960000pt;}
.ws19ae_c00000{word-spacing:32.966400pt;}
.ws268_c00000{word-spacing:32.985600pt;}
.wsc4a_c00000{word-spacing:33.036800pt;}
.ws1725_c00000{word-spacing:33.043200pt;}
.wsc4b_c00000{word-spacing:33.068800pt;}
.wse0c_c00000{word-spacing:33.100800pt;}
.ws1726_c00000{word-spacing:33.145600pt;}
.ws10fa_c00000{word-spacing:33.170208pt;}
.wse0d_c00000{word-spacing:33.216000pt;}
.ws1afc_c00000{word-spacing:33.228800pt;}
.ws11f2_c00000{word-spacing:33.241600pt;}
.ws421_c00000{word-spacing:33.254400pt;}
.ws422_c00000{word-spacing:33.260800pt;}
.ws1693_c00000{word-spacing:33.267200pt;}
.wse0b_c00000{word-spacing:33.280000pt;}
.ws17ab_c00000{word-spacing:33.367936pt;}
.ws106e_c00000{word-spacing:33.369600pt;}
.ws1855_c00000{word-spacing:33.465600pt;}
.ws17b3_c00000{word-spacing:33.484800pt;}
.ws7d1_c00000{word-spacing:33.491200pt;}
.ws1960_c00000{word-spacing:33.523200pt;}
.ws7d0_c00000{word-spacing:33.536000pt;}
.ws1854_c00000{word-spacing:33.542400pt;}
.ws12c0_c00000{word-spacing:33.548800pt;}
.ws17b4_c00000{word-spacing:33.555200pt;}
.ws10dd_c00000{word-spacing:33.568000pt;}
.ws12bf_c00000{word-spacing:33.587200pt;}
.ws1853_c00000{word-spacing:33.600000pt;}
.ws1856_c00000{word-spacing:33.612800pt;}
.ws106d_c00000{word-spacing:33.625600pt;}
.ws19ac_c00000{word-spacing:33.651200pt;}
.ws1a3e_c00000{word-spacing:33.654432pt;}
.ws68b_c00000{word-spacing:33.862400pt;}
.ws252_c00000{word-spacing:33.868800pt;}
.ws68a_c00000{word-spacing:33.907200pt;}
.ws1404_c00000{word-spacing:33.920000pt;}
.ws251_c00000{word-spacing:33.926400pt;}
.ws1346_c00000{word-spacing:34.124800pt;}
.ws13e7_c00000{word-spacing:34.156800pt;}
.wsad3_c00000{word-spacing:34.233600pt;}
.ws13e8_c00000{word-spacing:34.278400pt;}
.ws13c8_c00000{word-spacing:34.451200pt;}
.ws1799_c00000{word-spacing:34.457600pt;}
.ws1313_c00000{word-spacing:34.458112pt;}
.wse15_c00000{word-spacing:34.464000pt;}
.ws1a16_c00000{word-spacing:34.489600pt;}
.wse14_c00000{word-spacing:34.540800pt;}
.ws17c_c00000{word-spacing:34.553600pt;}
.ws17b_c00000{word-spacing:34.560000pt;}
.ws179a_c00000{word-spacing:34.566400pt;}
.ws1a17_c00000{word-spacing:34.572800pt;}
.ws1345_c00000{word-spacing:34.585600pt;}
.ws103d_c00000{word-spacing:34.764800pt;}
.wsbee_c00000{word-spacing:34.809600pt;}
.ws193a_c00000{word-spacing:34.816000pt;}
.ws588_c00000{word-spacing:34.835200pt;}
.wsbef_c00000{word-spacing:34.841600pt;}
.ws1735_c00000{word-spacing:34.848000pt;}
.ws103c_c00000{word-spacing:34.924800pt;}
.ws700_c00000{word-spacing:35.123200pt;}
.ws701_c00000{word-spacing:35.161600pt;}
.ws1660_c00000{word-spacing:35.168000pt;}
.wse2f_c00000{word-spacing:35.334400pt;}
.wsfe4_c00000{word-spacing:35.385600pt;}
.wse30_c00000{word-spacing:35.430400pt;}
.wsfe3_c00000{word-spacing:35.443200pt;}
.ws134a_c00000{word-spacing:35.456000pt;}
.wse32_c00000{word-spacing:35.468800pt;}
.ws4c2_c00000{word-spacing:35.500800pt;}
.ws123b_c00000{word-spacing:35.507200pt;}
.wse31_c00000{word-spacing:35.513600pt;}
.ws1659_c00000{word-spacing:35.558400pt;}
.ws113f_c00000{word-spacing:35.681888pt;}
.ws1140_c00000{word-spacing:35.719296pt;}
.wsad5_c00000{word-spacing:35.756800pt;}
.ws1349_c00000{word-spacing:35.788800pt;}
.ws1b3b_c00000{word-spacing:35.801600pt;}
.ws471_c00000{word-spacing:35.808000pt;}
.ws1b3c_c00000{word-spacing:35.814400pt;}
.ws15cb_c00000{word-spacing:35.820800pt;}
.ws15ca_c00000{word-spacing:35.865600pt;}
.wsad6_c00000{word-spacing:35.872000pt;}
.ws1aed_c00000{word-spacing:36.000000pt;}
.ws1477_c00000{word-spacing:36.012800pt;}
.ws189e_c00000{word-spacing:36.064000pt;}
.ws1aec_c00000{word-spacing:36.076800pt;}
.ws189d_c00000{word-spacing:36.083200pt;}
.ws1478_c00000{word-spacing:36.121600pt;}
.wsbdb_c00000{word-spacing:36.141472pt;}
.ws1aeb_c00000{word-spacing:36.160000pt;}
.ws1a10_c00000{word-spacing:36.264384pt;}
.ws1727_c00000{word-spacing:36.313600pt;}
.wse29_c00000{word-spacing:36.416000pt;}
.wsea6_c00000{word-spacing:36.428800pt;}
.ws1abd_c00000{word-spacing:36.448000pt;}
.ws1728_c00000{word-spacing:36.460800pt;}
.wsea5_c00000{word-spacing:36.473600pt;}
.ws1247_c00000{word-spacing:36.480000pt;}
.wsbd8_c00000{word-spacing:36.483488pt;}
.ws1abe_c00000{word-spacing:36.486400pt;}
.wsea0_c00000{word-spacing:36.542272pt;}
.ws1a0f_c00000{word-spacing:36.601056pt;}
.ws1054_c00000{word-spacing:36.659200pt;}
.wsbda_c00000{word-spacing:36.665184pt;}
.ws1053_c00000{word-spacing:36.665600pt;}
.ws162e_c00000{word-spacing:36.697600pt;}
.ws11e8_c00000{word-spacing:36.748800pt;}
.ws1a11_c00000{word-spacing:36.766720pt;}
.wsbd9_c00000{word-spacing:36.798784pt;}
.ws1b50_c00000{word-spacing:36.800000pt;}
.ws11e9_c00000{word-spacing:36.819200pt;}
.ws162d_c00000{word-spacing:36.825600pt;}
.ws1b01_c00000{word-spacing:36.902400pt;}
.ws1b00_c00000{word-spacing:37.004800pt;}
.wsb5f_c00000{word-spacing:37.011200pt;}
.wsb60_c00000{word-spacing:37.056000pt;}
.wsb5e_c00000{word-spacing:37.126400pt;}
.ws16ad_c00000{word-spacing:37.185600pt;}
.ws1447_c00000{word-spacing:37.290432pt;}
.wsfbe_c00000{word-spacing:37.414400pt;}
.ws13d6_c00000{word-spacing:37.418688pt;}
.wsfbd_c00000{word-spacing:37.472000pt;}
.ws180d_c00000{word-spacing:37.637792pt;}
.ws9d6_c00000{word-spacing:37.683200pt;}
.ws9d5_c00000{word-spacing:37.721600pt;}
.ws180b_c00000{word-spacing:37.830176pt;}
.ws180c_c00000{word-spacing:37.878272pt;}
.ws13b3_c00000{word-spacing:38.022400pt;}
.ws1af8_c00000{word-spacing:38.048000pt;}
.ws1b43_c00000{word-spacing:38.073600pt;}
.ws1673_c00000{word-spacing:38.086400pt;}
.ws1569_c00000{word-spacing:38.128416pt;}
.ws19f6_c00000{word-spacing:38.227200pt;}
.ws145f_c00000{word-spacing:38.240000pt;}
.wsdc0_c00000{word-spacing:38.265600pt;}
.ws1460_c00000{word-spacing:38.278400pt;}
.ws10ab_c00000{word-spacing:38.289760pt;}
.ws19f5_c00000{word-spacing:38.310400pt;}
.ws579_c00000{word-spacing:38.348800pt;}
.wsdbe_c00000{word-spacing:38.355200pt;}
.ws57a_c00000{word-spacing:38.368000pt;}
.wsdbf_c00000{word-spacing:38.393600pt;}
.ws19f7_c00000{word-spacing:38.419200pt;}
.ws1126_c00000{word-spacing:38.688000pt;}
.ws1127_c00000{word-spacing:38.694400pt;}
.ws1819_c00000{word-spacing:38.711936pt;}
.ws49e_c00000{word-spacing:38.982400pt;}
.wsf57_c00000{word-spacing:38.988800pt;}
.ws49f_c00000{word-spacing:38.995200pt;}
.ws6fd_c00000{word-spacing:39.020800pt;}
.ws54b_c00000{word-spacing:39.268224pt;}
.wsac7_c00000{word-spacing:39.302400pt;}
.ws1546_c00000{word-spacing:39.308800pt;}
.ws481_c00000{word-spacing:39.328000pt;}
.wsac8_c00000{word-spacing:39.334400pt;}
.ws47f_c00000{word-spacing:39.360000pt;}
.ws480_c00000{word-spacing:39.372800pt;}
.ws54a_c00000{word-spacing:39.404928pt;}
.wse2c_c00000{word-spacing:39.590400pt;}
.ws1784_c00000{word-spacing:39.603200pt;}
.wse2d_c00000{word-spacing:39.718400pt;}
.ws195b_c00000{word-spacing:39.820800pt;}
.ws195a_c00000{word-spacing:39.936000pt;}
.wsff1_c00000{word-spacing:40.140800pt;}
.wsdc3_c00000{word-spacing:40.211200pt;}
.wsdc4_c00000{word-spacing:40.230400pt;}
.ws15c9_c00000{word-spacing:40.288000pt;}
.wsff0_c00000{word-spacing:40.320000pt;}
.ws17ff_c00000{word-spacing:40.326400pt;}
.ws17fe_c00000{word-spacing:40.614400pt;}
.wsf31_c00000{word-spacing:40.640000pt;}
.ws17fd_c00000{word-spacing:40.652800pt;}
.wsc7b_c00000{word-spacing:40.960000pt;}
.ws3d5_c00000{word-spacing:40.972800pt;}
.ws1b16_c00000{word-spacing:41.113600pt;}
.ws1b15_c00000{word-spacing:41.184000pt;}
.ws9f4_c00000{word-spacing:41.222400pt;}
.ws9f5_c00000{word-spacing:41.292800pt;}
.ws131b_c00000{word-spacing:41.448064pt;}
.ws16e4_c00000{word-spacing:41.472000pt;}
.wsd11_c00000{word-spacing:41.510400pt;}
.ws131c_c00000{word-spacing:41.512192pt;}
.ws18cc_c00000{word-spacing:41.536000pt;}
.ws45c_c00000{word-spacing:41.587200pt;}
.ws45d_c00000{word-spacing:41.593600pt;}
.wsd12_c00000{word-spacing:41.644800pt;}
.ws17be_c00000{word-spacing:41.734400pt;}
.ws1445_c00000{word-spacing:41.854208pt;}
.ws17bd_c00000{word-spacing:41.900800pt;}
.ws183c_c00000{word-spacing:41.913600pt;}
.ws1446_c00000{word-spacing:41.934368pt;}
.ws17bf_c00000{word-spacing:41.939200pt;}
.wsac4_c00000{word-spacing:42.080000pt;}
.wsbea_c00000{word-spacing:42.105600pt;}
.wsac3_c00000{word-spacing:42.156800pt;}
.ws3d0_c00000{word-spacing:42.182400pt;}
.wsbeb_c00000{word-spacing:42.220800pt;}
.ws3d1_c00000{word-spacing:42.233600pt;}
.wsac5_c00000{word-spacing:42.240000pt;}
.ws1444_c00000{word-spacing:42.404640pt;}
.ws196b_c00000{word-spacing:42.803200pt;}
.ws196a_c00000{word-spacing:42.860800pt;}
.ws1835_c00000{word-spacing:43.234848pt;}
.ws19ce_c00000{word-spacing:43.705600pt;}
.ws19cd_c00000{word-spacing:43.756800pt;}
.ws5cc_c00000{word-spacing:44.467424pt;}
.ws5ce_c00000{word-spacing:44.483456pt;}
.ws5cd_c00000{word-spacing:44.654464pt;}
.ws15ff_c00000{word-spacing:44.787200pt;}
.ws1ab6_c00000{word-spacing:44.960000pt;}
.wscbc_c00000{word-spacing:45.004800pt;}
.wscbd_c00000{word-spacing:45.068800pt;}
.ws1348_c00000{word-spacing:45.113600pt;}
.ws1ab7_c00000{word-spacing:45.120000pt;}
.wse74_c00000{word-spacing:45.632000pt;}
.wse73_c00000{word-spacing:45.657600pt;}
.wse54_c00000{word-spacing:45.721600pt;}
.wse55_c00000{word-spacing:45.779200pt;}
.ws14eb_c00000{word-spacing:46.113376pt;}
.ws1347_c00000{word-spacing:46.592000pt;}
.ws10c5_c00000{word-spacing:47.652448pt;}
.ws10c7_c00000{word-spacing:47.860864pt;}
.ws10c6_c00000{word-spacing:48.112032pt;}
.ws13a5_c00000{word-spacing:48.588800pt;}
.ws13e0_c00000{word-spacing:48.601600pt;}
.ws1382_c00000{word-spacing:49.154112pt;}
.ws1248_c00000{word-spacing:49.280000pt;}
.ws183a_c00000{word-spacing:49.568000pt;}
.ws110a_c00000{word-spacing:49.600000pt;}
.ws183b_c00000{word-spacing:49.606400pt;}
.ws1454_c00000{word-spacing:49.689600pt;}
.wsf81_c00000{word-spacing:49.822112pt;}
.ws1453_c00000{word-spacing:49.913600pt;}
.ws1426_c00000{word-spacing:50.356512pt;}
.ws1425_c00000{word-spacing:50.372544pt;}
.ws12ef_c00000{word-spacing:50.687840pt;}
.wsff4_c00000{word-spacing:51.494400pt;}
.wsff5_c00000{word-spacing:51.603200pt;}
.ws1495_c00000{word-spacing:51.795200pt;}
.ws1496_c00000{word-spacing:51.884800pt;}
.ws1589_c00000{word-spacing:52.488768pt;}
.ws1542_c00000{word-spacing:52.568928pt;}
.ws1543_c00000{word-spacing:52.574272pt;}
.ws1250_c00000{word-spacing:53.092640pt;}
.ws1251_c00000{word-spacing:53.295712pt;}
.ws1252_c00000{word-spacing:53.343808pt;}
.ws1544_c00000{word-spacing:53.814080pt;}
.ws13b2_c00000{word-spacing:54.118688pt;}
.ws13b1_c00000{word-spacing:54.150752pt;}
.wscef_c00000{word-spacing:55.392000pt;}
.wscf0_c00000{word-spacing:55.468800pt;}
.ws1309_c00000{word-spacing:55.680000pt;}
.wsfaa_c00000{word-spacing:56.715872pt;}
.wsfab_c00000{word-spacing:56.897568pt;}
.wsf3e_c00000{word-spacing:57.266304pt;}
.wsc91_c00000{word-spacing:58.105312pt;}
.wsc92_c00000{word-spacing:58.169440pt;}
.ws1666_c00000{word-spacing:62.412576pt;}
.ws1665_c00000{word-spacing:62.604960pt;}
.ws1667_c00000{word-spacing:62.653056pt;}
.ws1115_c00000{word-spacing:65.522784pt;}
.ws1253_c00000{word-spacing:66.003744pt;}
.ws1114_c00000{word-spacing:66.441952pt;}
.ws1523_c00000{word-spacing:67.810016pt;}
.ws1524_c00000{word-spacing:68.157376pt;}
.wsf91_c00000{word-spacing:68.285632pt;}
.ws13bd_c00000{word-spacing:68.371136pt;}
.ws13be_c00000{word-spacing:68.408544pt;}
.ws131a_c00000{word-spacing:68.654368pt;}
.ws1311_c00000{word-spacing:72.389824pt;}
.ws144a_c00000{word-spacing:72.469984pt;}
.ws1312_c00000{word-spacing:72.518080pt;}
.ws144b_c00000{word-spacing:72.603584pt;}
.ws1292_c00000{word-spacing:73.480000pt;}
.ws1421_c00000{word-spacing:75.206112pt;}
.ws141f_c00000{word-spacing:75.296960pt;}
.ws1420_c00000{word-spacing:75.697760pt;}
.ws12ba_c00000{word-spacing:76.130624pt;}
.ws12bb_c00000{word-spacing:76.146656pt;}
.wse3d_c00000{word-spacing:77.418528pt;}
.wse3c_c00000{word-spacing:77.610912pt;}
.ws9ea_c00000{word-spacing:80.614240pt;}
.ws9e8_c00000{word-spacing:80.646304pt;}
.ws9e9_c00000{word-spacing:80.774560pt;}
.ws110f_c00000{word-spacing:85.740800pt;}
.ws1110_c00000{word-spacing:85.772800pt;}
.ws1441_c00000{word-spacing:88.539392pt;}
.ws1442_c00000{word-spacing:88.833312pt;}
.ws1443_c00000{word-spacing:88.860032pt;}
.ws1139_c00000{word-spacing:91.200000pt;}
.ws143e_c00000{word-spacing:93.669632pt;}
.wsdf5_c00000{word-spacing:93.728416pt;}
.wsdf3_c00000{word-spacing:93.803232pt;}
.wsdf4_c00000{word-spacing:94.294880pt;}
.ws10b3_c00000{word-spacing:97.047040pt;}
.ws13bc_c00000{word-spacing:99.419776pt;}
.ws129c_c00000{word-spacing:100.670272pt;}
.ws129b_c00000{word-spacing:100.793184pt;}
.ws113d_c00000{word-spacing:108.125152pt;}
.wscdd_c00000{word-spacing:108.878656pt;}
.ws1560_c00000{word-spacing:110.720000pt;}
.wsce7_c00000{word-spacing:111.646848pt;}
.wsce5_c00000{word-spacing:111.652192pt;}
.wsce8_c00000{word-spacing:111.657536pt;}
.wsce6_c00000{word-spacing:111.678912pt;}
.wsce4_c00000{word-spacing:111.828544pt;}
.ws1304_c00000{word-spacing:112.170560pt;}
.ws1a49_c00000{word-spacing:113.672224pt;}
.ws1a4a_c00000{word-spacing:113.757728pt;}
.ws1532_c00000{word-spacing:117.845888pt;}
.ws1533_c00000{word-spacing:118.011552pt;}
.wsf1b_c00000{word-spacing:119.155168pt;}
.wsf19_c00000{word-spacing:119.208608pt;}
.wsf1a_c00000{word-spacing:119.497184pt;}
.wsf1c_c00000{word-spacing:119.598720pt;}
.ws1acd_c00000{word-spacing:120.960000pt;}
.ws101d_c00000{word-spacing:123.009088pt;}
.ws101c_c00000{word-spacing:123.165664pt;}
.wsb96_c00000{word-spacing:125.092352pt;}
.wsfd6_c00000{word-spacing:125.327488pt;}
.wsb94_c00000{word-spacing:125.439712pt;}
.wsb95_c00000{word-spacing:125.637440pt;}
.ws156a_c00000{word-spacing:127.946048pt;}
.ws156b_c00000{word-spacing:127.999488pt;}
.wsdda_c00000{word-spacing:128.320000pt;}
.ws143f_c00000{word-spacing:136.523168pt;}
.wsce0_c00000{word-spacing:138.174464pt;}
.wsce3_c00000{word-spacing:138.195840pt;}
.wscde_c00000{word-spacing:138.201184pt;}
.wscdf_c00000{word-spacing:138.227904pt;}
.wsce1_c00000{word-spacing:138.233248pt;}
.wsce2_c00000{word-spacing:138.313408pt;}
.wsdeb_c00000{word-spacing:145.137696pt;}
.wsdec_c00000{word-spacing:145.281984pt;}
.ws13f6_c00000{word-spacing:154.404192pt;}
.ws1800_c00000{word-spacing:159.689408pt;}
.ws13af_c00000{word-spacing:162.692736pt;}
.ws143d_c00000{word-spacing:165.637280pt;}
.ws143c_c00000{word-spacing:165.674688pt;}
.wsf32_c00000{word-spacing:170.880000pt;}
.ws179d_c00000{word-spacing:172.755200pt;}
.ws19c9_c00000{word-spacing:172.800000pt;}
.ws112f_c00000{word-spacing:175.360000pt;}
.ws15a9_c00000{word-spacing:175.948800pt;}
.ws175b_c00000{word-spacing:176.000000pt;}
.wsf3f_c00000{word-spacing:187.921760pt;}
.ws1137_c00000{word-spacing:192.170240pt;}
.ws1aa9_c00000{word-spacing:193.500896pt;}
.ws1383_c00000{word-spacing:205.925696pt;}
.ws9e4_c00000{word-spacing:207.566304pt;}
.ws13e4_c00000{word-spacing:247.475296pt;}
.ws13bf_c00000{word-spacing:251.825312pt;}
.ws679_c00000{word-spacing:259.948192pt;}
.wsf8d_c00000{word-spacing:275.525952pt;}
.wsf95_c00000{word-spacing:287.336192pt;}
.wsf8b_c00000{word-spacing:305.222560pt;}
.wsf8e_c00000{word-spacing:308.145728pt;}
.wsf8f_c00000{word-spacing:311.416256pt;}
.wsf94_c00000{word-spacing:317.107616pt;}
.wsf98_c00000{word-spacing:319.972000pt;}
.wsf90_c00000{word-spacing:322.847072pt;}
.wsfdd_c00000{word-spacing:328.110912pt;}
.wsedd_c00000{word-spacing:329.575168pt;}
.wsf93_c00000{word-spacing:334.651968pt;}
.wsf8c_c00000{word-spacing:337.527040pt;}
.wsf92_c00000{word-spacing:340.765504pt;}
.wsf96_c00000{word-spacing:341.625888pt;}
.wsf97_c00000{word-spacing:370.542272pt;}
.ws1320_c00000{word-spacing:390.277664pt;}
.ws1643_c00000{word-spacing:552.640000pt;}
.ws164e_c00000{word-spacing:569.424576pt;}
.ws1588_c00000{word-spacing:893.254944pt;}
.ws1286_c00000{word-spacing:1010.240448pt;}
._77_c00000{margin-left:-569.280288pt;}
._52_c00000{margin-left:-328.549120pt;}
._49_c00000{margin-left:-187.841600pt;}
._82_c00000{margin-left:-176.000000pt;}
._8e_c00000{margin-left:-172.800000pt;}
._6f_c00000{margin-left:-170.470400pt;}
._83_c00000{margin-left:-164.825600pt;}
._3a_c00000{margin-left:-139.237920pt;}
._58_c00000{margin-left:-84.992000pt;}
._5d_c00000{margin-left:-72.320352pt;}
._59_c00000{margin-left:-66.238880pt;}
._38_c00000{margin-left:-57.918272pt;}
._5b_c00000{margin-left:-53.119360pt;}
._61_c00000{margin-left:-50.559584pt;}
._4a_c00000{margin-left:-49.597664pt;}
._55_c00000{margin-left:-47.679168pt;}
._2d_c00000{margin-left:-44.478112pt;}
._54_c00000{margin-left:-38.081344pt;}
._57_c00000{margin-left:-32.961792pt;}
._36_c00000{margin-left:-26.239040pt;}
._2f_c00000{margin-left:-24.768000pt;}
._5a_c00000{margin-left:-23.037984pt;}
._21_c00000{margin-left:-21.633632pt;}
._37_c00000{margin-left:-19.521632pt;}
._46_c00000{margin-left:-18.559712pt;}
._9_c00000{margin-left:-17.573792pt;}
._5f_c00000{margin-left:-16.641216pt;}
._12_c00000{margin-left:-15.648000pt;}
._d_c00000{margin-left:-14.440032pt;}
._15_c00000{margin-left:-12.896000pt;}
._b_c00000{margin-left:-11.859200pt;}
._a_c00000{margin-left:-10.560000pt;}
._8_c00000{margin-left:-9.469120pt;}
._13_c00000{margin-left:-8.550400pt;}
._11_c00000{margin-left:-7.116800pt;}
._c_c00000{margin-left:-5.440000pt;}
._10_c00000{margin-left:-4.249600pt;}
._14_c00000{margin-left:-3.136000pt;}
._f_c00000{margin-left:-1.920000pt;}
._7_c00000{margin-left:-0.983968pt;}
._0_c00000{width:0.938667pt;}
._2_c00000{width:1.845333pt;}
._5_c00000{width:3.248072pt;}
._4_c00000{width:4.495964pt;}
._6_c00000{width:5.386775pt;}
._1d_c00000{width:6.311264pt;}
._27_c00000{width:7.686400pt;}
._e_c00000{width:9.280000pt;}
._24_c00000{width:10.971232pt;}
._97_c00000{width:11.885056pt;}
._16_c00000{width:12.800000pt;}
._26_c00000{width:13.715200pt;}
._17_c00000{width:14.687136pt;}
._48_c00000{width:15.946496pt;}
._34_c00000{width:17.203200pt;}
._30_c00000{width:18.463520pt;}
._63_c00000{width:19.355968pt;}
._31_c00000{width:21.171200pt;}
._2e_c00000{width:22.363056pt;}
._3_c00000{width:24.070405pt;}
._47_c00000{width:25.318400pt;}
._67_c00000{width:26.743253pt;}
._5c_c00000{width:27.653909pt;}
._2a_c00000{width:29.045333pt;}
._65_c00000{width:31.232000pt;}
._35_c00000{width:34.697536pt;}
._18_c00000{width:38.713600pt;}
._5e_c00000{width:40.833504pt;}
._8b_c00000{width:47.844768pt;}
._1_c00000{width:48.752000pt;}
._64_c00000{width:51.582368pt;}
._3d_c00000{width:54.124704pt;}
._71_c00000{width:65.600000pt;}
._60_c00000{width:68.661216pt;}
._73_c00000{width:69.706784pt;}
._23_c00000{width:72.640000pt;}
._7a_c00000{width:73.920000pt;}
._22_c00000{width:75.840000pt;}
._72_c00000{width:77.440000pt;}
._70_c00000{width:87.680000pt;}
._93_c00000{width:99.840000pt;}
._7c_c00000{width:101.760000pt;}
._7e_c00000{width:107.840000pt;}
._7b_c00000{width:110.720000pt;}
._7d_c00000{width:112.960000pt;}
._6b_c00000{width:117.963456pt;}
._3f_c00000{width:120.667520pt;}
._4c_c00000{width:124.805280pt;}
._3e_c00000{width:125.958080pt;}
._6c_c00000{width:127.358208pt;}
._74_c00000{width:131.200000pt;}
._3c_c00000{width:132.681504pt;}
._29_c00000{width:134.440032pt;}
._40_c00000{width:135.369536pt;}
._42_c00000{width:141.874016pt;}
._85_c00000{width:143.680000pt;}
._45_c00000{width:145.278517pt;}
._25_c00000{width:147.200000pt;}
._75_c00000{width:148.480000pt;}
._79_c00000{width:150.400000pt;}
._28_c00000{width:151.360000pt;}
._7f_c00000{width:152.960000pt;}
._32_c00000{width:153.920000pt;}
._66_c00000{width:155.200000pt;}
._68_c00000{width:156.160000pt;}
._78_c00000{width:157.120000pt;}
._6a_c00000{width:158.803200pt;}
._19_c00000{width:160.640000pt;}
._1e_c00000{width:161.600000pt;}
._20_c00000{width:162.944000pt;}
._1c_c00000{width:164.524800pt;}
._33_c00000{width:165.504000pt;}
._1f_c00000{width:166.451200pt;}
._6d_c00000{width:167.360000pt;}
._1a_c00000{width:168.384000pt;}
._2b_c00000{width:169.363200pt;}
._2c_c00000{width:170.931200pt;}
._1b_c00000{width:172.480000pt;}
._69_c00000{width:174.080000pt;}
._6e_c00000{width:175.360000pt;}
._44_c00000{width:185.998592pt;}
._43_c00000{width:193.933760pt;}
._3b_c00000{width:200.239680pt;}
._4f_c00000{width:206.707424pt;}
._41_c00000{width:245.306304pt;}
._4d_c00000{width:258.462560pt;}
._39_c00000{width:262.721728pt;}
._51_c00000{width:279.170560pt;}
._4b_c00000{width:300.594656pt;}
._50_c00000{width:309.048864pt;}
._4e_c00000{width:327.678048pt;}
._89_c00000{width:535.680000pt;}
._99_c00000{width:585.920000pt;}
._a0_c00000{width:643.840000pt;}
._9e_c00000{width:648.000000pt;}
._8a_c00000{width:664.640000pt;}
._91_c00000{width:704.342048pt;}
._a3_c00000{width:705.920000pt;}
._a1_c00000{width:708.480000pt;}
._a2_c00000{width:728.960000pt;}
._9b_c00000{width:757.120000pt;}
._90_c00000{width:758.720000pt;}
._92_c00000{width:762.560000pt;}
._a4_c00000{width:767.360000pt;}
._8f_c00000{width:773.440000pt;}
._98_c00000{width:805.120000pt;}
._80_c00000{width:809.920000pt;}
._62_c00000{width:822.030016pt;}
._53_c00000{width:829.455531pt;}
._56_c00000{width:842.141664pt;}
._96_c00000{width:844.560000pt;}
._88_c00000{width:845.760000pt;}
._95_c00000{width:854.080000pt;}
._9a_c00000{width:862.400000pt;}
._9d_c00000{width:912.000000pt;}
._86_c00000{width:925.440000pt;}
._8d_c00000{width:956.799467pt;}
._9f_c00000{width:959.680000pt;}
._84_c00000{width:966.400000pt;}
._8c_c00000{width:1000.960000pt;}
._87_c00000{width:1084.160000pt;}
._94_c00000{width:1100.800000pt;}
._81_c00000{width:1105.279467pt;}
._76_c00000{width:1190.720000pt;}
._9c_c00000{width:1194.240000pt;}
.fs16_c00000{font-size:34.560000pt;}
.fs17_c00000{font-size:37.440000pt;}
.fs15_c00000{font-size:42.560000pt;}
.fs19_c00000{font-size:48.000000pt;}
.fs14_c00000{font-size:50.560000pt;}
.fs10_c00000{font-size:53.440000pt;}
.fs1a_c00000{font-size:56.479151pt;}
.fsd_c00000{font-size:58.560000pt;}
.fs7_c00000{font-size:58.666667pt;}
.fse_c00000{font-size:64.000000pt;}
.fs18_c00000{font-size:67.639544pt;}
.fs4_c00000{font-size:69.333333pt;}
.fsc_c00000{font-size:69.440000pt;}
.fsb_c00000{font-size:72.000000pt;}
.fs12_c00000{font-size:74.560000pt;}
.fs5_c00000{font-size:74.666667pt;}
.fs13_c00000{font-size:85.440000pt;}
.fsa_c00000{font-size:90.560000pt;}
.fs6_c00000{font-size:96.000000pt;}
.fs8_c00000{font-size:101.440000pt;}
.fs11_c00000{font-size:117.440000pt;}
.fs2_c00000{font-size:128.000000pt;}
.fs9_c00000{font-size:133.440000pt;}
.fsf_c00000{font-size:149.440000pt;}
.fs0_c00000{font-size:160.000000pt;}
.fs3_c00000{font-size:192.000000pt;}
.fs1_c00000{font-size:266.666667pt;}
.y17_c00000{bottom:-2157.333333pt;}
.y18_c00000{bottom:-1868.000000pt;}
.y14_c00000{bottom:-1664.000000pt;}
.y16_c00000{bottom:-1550.666667pt;}
.y15_c00000{bottom:-1260.000000pt;}
.y0_c00000{bottom:0.000000pt;}
.yb_c00000{bottom:5.333333pt;}
.yd_c00000{bottom:6.666667pt;}
.y28_c00000{bottom:8.000000pt;}
.y2a_c00000{bottom:10.666667pt;}
.y5_c00000{bottom:14.666667pt;}
.y2_c00000{bottom:17.333333pt;}
.y23_c00000{bottom:25.333333pt;}
.y32_c00000{bottom:26.666667pt;}
.y26_c00000{bottom:29.330667pt;}
.yf_c00000{bottom:34.666667pt;}
.y2b_c00000{bottom:37.333333pt;}
.y25_c00000{bottom:50.666667pt;}
.y74_c00000{bottom:50.987067pt;}
.y339_c00000{bottom:51.067067pt;}
.y12_c00000{bottom:73.330667pt;}
.y11_c00000{bottom:94.666667pt;}
.y1b4_c00000{bottom:97.707235pt;}
.y1f4_c00000{bottom:97.707243pt;}
.y2b1_c00000{bottom:97.707251pt;}
.y210_c00000{bottom:97.707419pt;}
.y717_c00000{bottom:97.707427pt;}
.y719_c00000{bottom:97.707435pt;}
.y75c_c00000{bottom:97.707603pt;}
.y633_c00000{bottom:97.707611pt;}
.y283_c00000{bottom:97.707619pt;}
.y104c_c00000{bottom:97.707795pt;}
.y96a_c00000{bottom:97.708171pt;}
.yd98_c00000{bottom:97.708347pt;}
.y846_c00000{bottom:97.708472pt;}
.y388_c00000{bottom:97.787235pt;}
.y43b_c00000{bottom:97.787243pt;}
.y411_c00000{bottom:97.787251pt;}
.y3a1_c00000{bottom:97.787427pt;}
.y3e7_c00000{bottom:97.787435pt;}
.y402_c00000{bottom:97.787552pt;}
.y30a_c00000{bottom:98.267067pt;}
.y8dd_c00000{bottom:98.427523pt;}
.y598_c00000{bottom:99.227067pt;}
.y71d_c00000{bottom:99.307067pt;}
.y2d6_c00000{bottom:99.707067pt;}
.yea4_c00000{bottom:99.787067pt;}
.y2ff_c00000{bottom:100.827067pt;}
.yf7_c00000{bottom:100.907067pt;}
.y22b_c00000{bottom:102.827067pt;}
.ye40_c00000{bottom:103.547067pt;}
.y260_c00000{bottom:103.707067pt;}
.y3cb_c00000{bottom:103.787067pt;}
.yddc_c00000{bottom:104.267067pt;}
.ye22_c00000{bottom:104.427067pt;}
.y362_c00000{bottom:105.147067pt;}
.y100f_c00000{bottom:106.507067pt;}
.y10_c00000{bottom:108.000000pt;}
.ye75_c00000{bottom:109.787067pt;}
.y165_c00000{bottom:110.747067pt;}
.y1d9_c00000{bottom:112.267067pt;}
.y827_c00000{bottom:112.987067pt;}
.y1f3_c00000{bottom:112.987075pt;}
.y25f_c00000{bottom:112.987083pt;}
.y20f_c00000{bottom:112.987251pt;}
.y616_c00000{bottom:112.987259pt;}
.y718_c00000{bottom:112.987267pt;}
.y74d_c00000{bottom:112.987435pt;}
.y632_c00000{bottom:112.987443pt;}
.y282_c00000{bottom:112.987451pt;}
.y104b_c00000{bottom:112.987627pt;}
.y754_c00000{bottom:112.987635pt;}
.y969_c00000{bottom:112.988003pt;}
.yd97_c00000{bottom:112.988179pt;}
.y845_c00000{bottom:112.988304pt;}
.y43a_c00000{bottom:113.067075pt;}
.y410_c00000{bottom:113.067083pt;}
.y3a0_c00000{bottom:113.067259pt;}
.y3e6_c00000{bottom:113.067267pt;}
.y401_c00000{bottom:113.067384pt;}
.y46d_c00000{bottom:113.067451pt;}
.y98_c00000{bottom:113.387067pt;}
.y2e0_c00000{bottom:113.627067pt;}
.y587_c00000{bottom:113.707067pt;}
.y104f_c00000{bottom:114.267067pt;}
.ye21_c00000{bottom:114.987427pt;}
.y1171_c00000{bottom:115.147067pt;}
.y8dc_c00000{bottom:115.707347pt;}
.yddb_c00000{bottom:116.108051pt;}
.y309_c00000{bottom:116.667067pt;}
.ydd1_c00000{bottom:118.907067pt;}
.y1b3_c00000{bottom:118.987067pt;}
.y387_c00000{bottom:119.067067pt;}
.yf6_c00000{bottom:119.147067pt;}
.y597_c00000{bottom:120.187067pt;}
.y71c_c00000{bottom:120.267067pt;}
.y2d5_c00000{bottom:120.667067pt;}
.y64_c00000{bottom:121.467067pt;}
.y2fe_c00000{bottom:121.787067pt;}
.y22a_c00000{bottom:123.787067pt;}
.ye3f_c00000{bottom:124.587067pt;}
.y3a_c00000{bottom:124.640000pt;}
.y310_c00000{bottom:125.307067pt;}
.y361_c00000{bottom:126.187067pt;}
.y11a_c00000{bottom:126.827443pt;}
.yea3_c00000{bottom:127.787067pt;}
.ydd0_c00000{bottom:128.107803pt;}
.y113c_c00000{bottom:128.347067pt;}
.y250_c00000{bottom:128.347075pt;}
.y1b2_c00000{bottom:128.347243pt;}
.y5fb_c00000{bottom:128.347251pt;}
.y642_c00000{bottom:128.347259pt;}
.y74c_c00000{bottom:128.347427pt;}
.y631_c00000{bottom:128.347435pt;}
.y281_c00000{bottom:128.347443pt;}
.y104a_c00000{bottom:128.347619pt;}
.y753_c00000{bottom:128.347627pt;}
.y783_c00000{bottom:128.347811pt;}
.y968_c00000{bottom:128.347995pt;}
.y8af_c00000{bottom:128.348112pt;}
.yd96_c00000{bottom:128.348171pt;}
.y844_c00000{bottom:128.348296pt;}
.y40f_c00000{bottom:128.427075pt;}
.y39f_c00000{bottom:128.427251pt;}
.y3e5_c00000{bottom:128.427259pt;}
.y3ca_c00000{bottom:128.427376pt;}
.y46c_c00000{bottom:128.427443pt;}
.y234_c00000{bottom:128.907067pt;}
.y1073_c00000{bottom:128.907200pt;}
.y386_c00000{bottom:128.987067pt;}
.y108d_c00000{bottom:129.547067pt;}
.ye20_c00000{bottom:130.347419pt;}
.ye74_c00000{bottom:130.747067pt;}
.ydda_c00000{bottom:131.307723pt;}
.y97_c00000{bottom:131.787067pt;}
.yc6_c00000{bottom:131.947067pt;}
.y1d8_c00000{bottom:133.307067pt;}
.yc2a_c00000{bottom:133.387067pt;}
.y1f2_c00000{bottom:134.347067pt;}
.y3f0_c00000{bottom:134.427067pt;}
.y337_c00000{bottom:134.729435pt;}
.y599_c00000{bottom:134.809435pt;}
.y308_c00000{bottom:135.067067pt;}
.y104e_c00000{bottom:135.307067pt;}
.y10d1_c00000{bottom:135.467067pt;}
.y119e_c00000{bottom:135.627067pt;}
.yf5_c00000{bottom:137.707067pt;}
.y13e_c00000{bottom:137.786763pt;}
.y2df_c00000{bottom:138.267067pt;}
.y586_c00000{bottom:138.987067pt;}
.y11b4_c00000{bottom:139.547651pt;}
.y164_c00000{bottom:139.787067pt;}
.y596_c00000{bottom:141.227067pt;}
.y71b_c00000{bottom:141.307067pt;}
.y10de_c00000{bottom:141.547067pt;}
.y2d4_c00000{bottom:141.707067pt;}
.y749_c00000{bottom:142.107067pt;}
.y28f_c00000{bottom:142.827067pt;}
.ydcf_c00000{bottom:143.387635pt;}
.y1b1_c00000{bottom:143.707235pt;}
.y5e0_c00000{bottom:143.707243pt;}
.y5f2_c00000{bottom:143.707251pt;}
.y648_c00000{bottom:143.707419pt;}
.y1f1_c00000{bottom:143.707427pt;}
.y280_c00000{bottom:143.707435pt;}
.y716_c00000{bottom:143.707603pt;}
.y1049_c00000{bottom:143.707611pt;}
.y752_c00000{bottom:143.707619pt;}
.y733_c00000{bottom:143.707795pt;}
.y782_c00000{bottom:143.707803pt;}
.y967_c00000{bottom:143.707987pt;}
.y8ae_c00000{bottom:143.708104pt;}
.yd95_c00000{bottom:143.708163pt;}
.y843_c00000{bottom:143.708288pt;}
.y39e_c00000{bottom:143.787243pt;}
.y3e4_c00000{bottom:143.787251pt;}
.y3c9_c00000{bottom:143.787368pt;}
.y439_c00000{bottom:143.787427pt;}
.y46b_c00000{bottom:143.787435pt;}
.y4e7_c00000{bottom:143.787552pt;}
.y44d_c00000{bottom:143.787979pt;}
.y1170_c00000{bottom:144.187067pt;}
.y21c_c00000{bottom:144.267067pt;}
.y8a8_c00000{bottom:144.267200pt;}
.y229_c00000{bottom:144.827067pt;}
.ye3e_c00000{bottom:145.547067pt;}
.ye1f_c00000{bottom:145.627251pt;}
.y63_c00000{bottom:146.026763pt;}
.y30f_c00000{bottom:146.267067pt;}
.ydd9_c00000{bottom:146.507395pt;}
.y72e_c00000{bottom:146.667067pt;}
.yfd6_c00000{bottom:146.987067pt;}
.y360_c00000{bottom:147.147067pt;}
.y8db_c00000{bottom:147.627235pt;}
.y119_c00000{bottom:148.267171pt;}
.yb36_c00000{bottom:148.987067pt;}
.y39_c00000{bottom:149.200000pt;}
.y69f_c00000{bottom:149.307067pt;}
.y24f_c00000{bottom:149.707067pt;}
.y3ef_c00000{bottom:149.787067pt;}
.y96_c00000{bottom:150.027067pt;}
.y1088_c00000{bottom:150.187075pt;}
.yc5_c00000{bottom:150.347067pt;}
.y108c_c00000{bottom:150.507067pt;}
.yf93_c00000{bottom:151.307067pt;}
.y107e_c00000{bottom:151.387075pt;}
.ye73_c00000{bottom:151.787067pt;}
.yea2_c00000{bottom:152.347067pt;}
.ye60_c00000{bottom:152.987067pt;}
.y826_c00000{bottom:153.067067pt;}
.y307_c00000{bottom:153.467067pt;}
.y1d7_c00000{bottom:154.267067pt;}
.yc29_c00000{bottom:154.427067pt;}
.yf4_c00000{bottom:156.107067pt;}
.y10d0_c00000{bottom:156.507067pt;}
.y119d_c00000{bottom:156.587067pt;}
.yf91_c00000{bottom:157.867067pt;}
.ydce_c00000{bottom:158.747627pt;}
.y11b3_c00000{bottom:158.827067pt;}
.y5df_c00000{bottom:158.987075pt;}
.y5f1_c00000{bottom:158.987083pt;}
.y647_c00000{bottom:158.987251pt;}
.y1f0_c00000{bottom:158.987259pt;}
.y27f_c00000{bottom:158.987267pt;}
.y715_c00000{bottom:158.987435pt;}
.y1048_c00000{bottom:158.987443pt;}
.y751_c00000{bottom:158.987451pt;}
.y5d5_c00000{bottom:158.987619pt;}
.y732_c00000{bottom:158.987627pt;}
.y781_c00000{bottom:158.987635pt;}
.y966_c00000{bottom:158.987819pt;}
.y8ad_c00000{bottom:158.987936pt;}
.yd94_c00000{bottom:158.987995pt;}
.y842_c00000{bottom:158.988120pt;}
.ydc3_c00000{bottom:158.988304pt;}
.y39d_c00000{bottom:159.067075pt;}
.y3e3_c00000{bottom:159.067083pt;}
.y40e_c00000{bottom:159.067259pt;}
.y46a_c00000{bottom:159.067267pt;}
.y4e6_c00000{bottom:159.067384pt;}
.y569_c00000{bottom:159.067435pt;}
.y51d_c00000{bottom:159.067443pt;}
.y44c_c00000{bottom:159.067811pt;}
.y2de_c00000{bottom:159.307067pt;}
.y677_c00000{bottom:159.627067pt;}
.y2b0_c00000{bottom:159.627200pt;}
.y585_c00000{bottom:159.947067pt;}
.y163_c00000{bottom:160.747067pt;}
.ye1e_c00000{bottom:160.987243pt;}
.y325_c00000{bottom:161.307067pt;}
.y4e4_c00000{bottom:162.187067pt;}
.yda3_c00000{bottom:162.187200pt;}
.yf3e_c00000{bottom:162.267067pt;}
.y10dd_c00000{bottom:162.587067pt;}
.y2d3_c00000{bottom:162.667067pt;}
.y748_c00000{bottom:163.147067pt;}
.yc4f_c00000{bottom:163.307067pt;}
.y2fd_c00000{bottom:163.787067pt;}
.y62_c00000{bottom:163.867067pt;}
.yc53_c00000{bottom:164.267067pt;}
.y1b0_c00000{bottom:164.987067pt;}
.y3c8_c00000{bottom:165.067200pt;}
.y1087_c00000{bottom:165.547067pt;}
.y110f_c00000{bottom:165.627067pt;}
.y6be_c00000{bottom:165.707067pt;}
.y228_c00000{bottom:165.787067pt;}
.y1085_c00000{bottom:165.947067pt;}
.y1096_c00000{bottom:166.267875pt;}
.y107d_c00000{bottom:166.747067pt;}
.y86c_c00000{bottom:166.827200pt;}
.y38_c00000{bottom:166.960000pt;}
.y21b_c00000{bottom:167.307067pt;}
.y72d_c00000{bottom:167.627067pt;}
.ydd8_c00000{bottom:167.707067pt;}
.yfd5_c00000{bottom:167.947067pt;}
.y35f_c00000{bottom:168.187067pt;}
.ye13_c00000{bottom:168.347067pt;}
.y95_c00000{bottom:168.427067pt;}
.yc4_c00000{bottom:168.747067pt;}
.y8da_c00000{bottom:168.907067pt;}
.y8a7_c00000{bottom:168.907200pt;}
.y1072_c00000{bottom:169.067200pt;}
.y118_c00000{bottom:169.787051pt;}
.y385_c00000{bottom:170.187067pt;}
.y69e_c00000{bottom:170.267067pt;}
.yd32_c00000{bottom:171.547067pt;}
.yba3_c00000{bottom:171.707067pt;}
.y306_c00000{bottom:171.867067pt;}
.yf92_c00000{bottom:172.267067pt;}
.ye72_c00000{bottom:172.747067pt;}
.y116f_c00000{bottom:173.147067pt;}
.yea1_c00000{bottom:173.387067pt;}
.y10b4_c00000{bottom:173.707067pt;}
.y1067_c00000{bottom:173.708819pt;}
.ye5f_c00000{bottom:174.027067pt;}
.y825_c00000{bottom:174.107067pt;}
.ydcd_c00000{bottom:174.107619pt;}
.y1af_c00000{bottom:174.347075pt;}
.y25e_c00000{bottom:174.347243pt;}
.y1ef_c00000{bottom:174.347251pt;}
.y27e_c00000{bottom:174.347259pt;}
.y714_c00000{bottom:174.347427pt;}
.y1047_c00000{bottom:174.347435pt;}
.y750_c00000{bottom:174.347443pt;}
.y5d4_c00000{bottom:174.347611pt;}
.y731_c00000{bottom:174.347619pt;}
.y780_c00000{bottom:174.347627pt;}
.y965_c00000{bottom:174.347811pt;}
.y8ac_c00000{bottom:174.347928pt;}
.yd93_c00000{bottom:174.347987pt;}
.y841_c00000{bottom:174.348112pt;}
.ydc2_c00000{bottom:174.348296pt;}
.y860_c00000{bottom:174.427067pt;}
.y3e2_c00000{bottom:174.427075pt;}
.y40d_c00000{bottom:174.427251pt;}
.y469_c00000{bottom:174.427259pt;}
.y4e5_c00000{bottom:174.427376pt;}
.y568_c00000{bottom:174.427427pt;}
.y51c_c00000{bottom:174.427435pt;}
.y44b_c00000{bottom:174.427803pt;}
.yf3_c00000{bottom:174.507067pt;}
.ye3d_c00000{bottom:174.587067pt;}
.y20e_c00000{bottom:174.907067pt;}
.ye00_c00000{bottom:174.907200pt;}
.y431_c00000{bottom:174.987067pt;}
.y807_c00000{bottom:175.147523pt;}
.y13d_c00000{bottom:175.227067pt;}
.y30e_c00000{bottom:175.307067pt;}
.yb35_c00000{bottom:175.547200pt;}
.ye54_c00000{bottom:176.027067pt;}
.yf33_c00000{bottom:176.267067pt;}
.ye1d_c00000{bottom:176.347235pt;}
.ya5a_c00000{bottom:176.987627pt;}
.y10cf_c00000{bottom:177.467067pt;}
.y119c_c00000{bottom:177.627067pt;}
.y336_c00000{bottom:177.689699pt;}
.y189_c00000{bottom:177.691243pt;}
.y8d9_c00000{bottom:178.267243pt;}
.y1155_c00000{bottom:178.347067pt;}
.yb67_c00000{bottom:178.427067pt;}
.y108b_c00000{bottom:179.547067pt;}
.y243_c00000{bottom:179.787067pt;}
.y2dd_c00000{bottom:180.267067pt;}
.y24e_c00000{bottom:180.347067pt;}
.y39c_c00000{bottom:180.427067pt;}
.y1183_c00000{bottom:180.747067pt;}
.y584_c00000{bottom:180.987067pt;}
.yd4b_c00000{bottom:181.067067pt;}
.y162_c00000{bottom:181.787067pt;}
.y61_c00000{bottom:181.867067pt;}
.y324_c00000{bottom:182.347067pt;}
.ydd7_c00000{bottom:182.907067pt;}
.y105c_c00000{bottom:182.987067pt;}
.y4e3_c00000{bottom:183.227067pt;}
.y1d6_c00000{bottom:183.307067pt;}
.yc28_c00000{bottom:183.467200pt;}
.yaf4_c00000{bottom:183.547067pt;}
.y2d2_c00000{bottom:183.707067pt;}
.y747_c00000{bottom:184.107067pt;}
.yc4e_c00000{bottom:184.267067pt;}
.y28e_c00000{bottom:184.827067pt;}
.ye46_c00000{bottom:185.229043pt;}
.yc52_c00000{bottom:185.307067pt;}
.y1095_c00000{bottom:185.468235pt;}
.yf00_c00000{bottom:186.027067pt;}
.y100e_c00000{bottom:186.427067pt;}
.y11b2_c00000{bottom:186.587067pt;}
.y6bd_c00000{bottom:186.667067pt;}
.y94_c00000{bottom:186.827067pt;}
.y1084_c00000{bottom:186.907067pt;}
.yc3_c00000{bottom:187.147067pt;}
.y86b_c00000{bottom:187.787200pt;}
.y7d2_c00000{bottom:188.107200pt;}
.y21a_c00000{bottom:188.267067pt;}
.y1086_c00000{bottom:188.427067pt;}
.y72c_c00000{bottom:188.667067pt;}
.y113b_c00000{bottom:188.747067pt;}
.yfd4_c00000{bottom:188.987067pt;}
.y35e_c00000{bottom:189.147067pt;}
.y37_c00000{bottom:189.360000pt;}
.ye12_c00000{bottom:189.387067pt;}
.ydcc_c00000{bottom:189.387451pt;}
.yfca_c00000{bottom:189.547291pt;}
.yff6_c00000{bottom:189.707067pt;}
.y24d_c00000{bottom:189.707235pt;}
.y1ee_c00000{bottom:189.707243pt;}
.y27d_c00000{bottom:189.707251pt;}
.y67c_c00000{bottom:189.707419pt;}
.y1046_c00000{bottom:189.707427pt;}
.y646_c00000{bottom:189.707435pt;}
.y91a_c00000{bottom:189.707595pt;}
.y5d3_c00000{bottom:189.707603pt;}
.y730_c00000{bottom:189.707611pt;}
.y77f_c00000{bottom:189.707619pt;}
.y964_c00000{bottom:189.707803pt;}
.y8ab_c00000{bottom:189.707920pt;}
.yd92_c00000{bottom:189.707979pt;}
.y840_c00000{bottom:189.708104pt;}
.ydc1_c00000{bottom:189.708288pt;}
.yc2f_c00000{bottom:189.787139pt;}
.y40c_c00000{bottom:189.787243pt;}
.y3c7_c00000{bottom:189.787251pt;}
.y416_c00000{bottom:189.787368pt;}
.y567_c00000{bottom:189.787419pt;}
.y400_c00000{bottom:189.787427pt;}
.y44a_c00000{bottom:189.787795pt;}
.y8a6_c00000{bottom:189.867200pt;}
.y1071_c00000{bottom:190.107200pt;}
.y305_c00000{bottom:190.267067pt;}
.y764_c00000{bottom:190.267200pt;}
.y39b_c00000{bottom:190.347067pt;}
.y769_c00000{bottom:190.827067pt;}
.y384_c00000{bottom:191.227067pt;}
.y69d_c00000{bottom:191.307067pt;}
.y8ea_c00000{bottom:191.307875pt;}
.y10dc_c00000{bottom:191.547067pt;}
.y806_c00000{bottom:191.627083pt;}
.ydd6_c00000{bottom:192.187083pt;}
.ya59_c00000{bottom:192.347619pt;}
.yd31_c00000{bottom:192.587067pt;}
.y2fc_c00000{bottom:192.827067pt;}
.yf2_c00000{bottom:192.907067pt;}
.y1066_c00000{bottom:192.988235pt;}
.y6a2_c00000{bottom:193.307067pt;}
.y8d8_c00000{bottom:193.627235pt;}
.ye71_c00000{bottom:193.787067pt;}
.y1018_c00000{bottom:194.187200pt;}
.y10b3_c00000{bottom:194.747067pt;}
.y824_c00000{bottom:195.067067pt;}
.y1ae_c00000{bottom:195.707067pt;}
.y3e1_c00000{bottom:195.787067pt;}
.y30d_c00000{bottom:196.267067pt;}
.y676_c00000{bottom:196.747067pt;}
.ye53_c00000{bottom:196.987067pt;}
.y2f1_c00000{bottom:197.227067pt;}
.y107c_c00000{bottom:197.547067pt;}
.ye1c_c00000{bottom:197.627067pt;}
.y430_c00000{bottom:197.707067pt;}
.y6a9_c00000{bottom:198.107235pt;}
.y10ce_c00000{bottom:198.507067pt;}
.y119b_c00000{bottom:198.587067pt;}
.y117_c00000{bottom:199.227067pt;}
.y1154_c00000{bottom:199.307067pt;}
.yb66_c00000{bottom:199.467067pt;}
.y108a_c00000{bottom:200.587067pt;}
.yba2_c00000{bottom:200.747067pt;}
.y242_c00000{bottom:200.827067pt;}
.y2dc_c00000{bottom:201.307067pt;}
.y60_c00000{bottom:201.627003pt;}
.y583_c00000{bottom:202.027067pt;}
.y116e_c00000{bottom:202.187067pt;}
.yea0_c00000{bottom:202.427067pt;}
.y161_c00000{bottom:202.747067pt;}
.yb17_c00000{bottom:203.307067pt;}
.ye3c_c00000{bottom:203.387067pt;}
.y85f_c00000{bottom:203.467067pt;}
.y105b_c00000{bottom:203.947067pt;}
.y1d5_c00000{bottom:204.267067pt;}
.yf3d_c00000{bottom:204.347067pt;}
.yc27_c00000{bottom:204.427200pt;}
.yb34_c00000{bottom:204.507200pt;}
.ye45_c00000{bottom:204.508459pt;}
.yaf3_c00000{bottom:204.587067pt;}
.ydcb_c00000{bottom:204.747443pt;}
.y1094_c00000{bottom:204.747651pt;}
.y742_c00000{bottom:204.987067pt;}
.y1ed_c00000{bottom:204.987075pt;}
.y27c_c00000{bottom:204.987083pt;}
.y1ad_c00000{bottom:204.987251pt;}
.y680_c00000{bottom:204.987259pt;}
.y645_c00000{bottom:204.987267pt;}
.y5d2_c00000{bottom:204.987435pt;}
.y72f_c00000{bottom:204.987443pt;}
.y77e_c00000{bottom:204.987451pt;}
.y963_c00000{bottom:204.987635pt;}
.y641_c00000{bottom:204.987752pt;}
.yd91_c00000{bottom:204.987811pt;}
.y83f_c00000{bottom:204.987936pt;}
.y857_c00000{bottom:204.987979pt;}
.ydc0_c00000{bottom:204.988120pt;}
.y40b_c00000{bottom:205.067075pt;}
.y3c6_c00000{bottom:205.067083pt;}
.y566_c00000{bottom:205.067251pt;}
.y3ff_c00000{bottom:205.067259pt;}
.y54a_c00000{bottom:205.067443pt;}
.y449_c00000{bottom:205.067627pt;}
.y746_c00000{bottom:205.147067pt;}
.y93_c00000{bottom:205.227067pt;}
.yc4d_c00000{bottom:205.307067pt;}
.yc2_c00000{bottom:205.547067pt;}
.y5de_c00000{bottom:205.627067pt;}
.ycd9_c00000{bottom:205.627200pt;}
.y46e_c00000{bottom:205.707067pt;}
.y8c7_c00000{bottom:205.787347pt;}
.y919_c00000{bottom:205.787691pt;}
.y28d_c00000{bottom:205.867067pt;}
.yc51_c00000{bottom:206.347067pt;}
.ydff_c00000{bottom:206.587200pt;}
.y805_c00000{bottom:206.987075pt;}
.yeff_c00000{bottom:207.067067pt;}
.yf5e_c00000{bottom:207.147200pt;}
.y100d_c00000{bottom:207.467067pt;}
.ydd5_c00000{bottom:207.547075pt;}
.y110e_c00000{bottom:207.627067pt;}
.ya58_c00000{bottom:207.627451pt;}
.y6bc_c00000{bottom:207.707067pt;}
.y227_c00000{bottom:207.787067pt;}
.yc2e_c00000{bottom:207.787875pt;}
.y1083_c00000{bottom:207.947067pt;}
.y304_c00000{bottom:208.667067pt;}
.yfc9_c00000{bottom:208.826707pt;}
.y86a_c00000{bottom:208.827200pt;}
.yfd8_c00000{bottom:208.987067pt;}
.y1182_c00000{bottom:209.148592pt;}
.y219_c00000{bottom:209.307067pt;}
.y11a2_c00000{bottom:209.547067pt;}
.y72b_c00000{bottom:209.707067pt;}
.yfd3_c00000{bottom:209.947067pt;}
.yd6e_c00000{bottom:210.027291pt;}
.y35d_c00000{bottom:210.187067pt;}
.y7f5_c00000{bottom:210.267067pt;}
.ye11_c00000{bottom:210.347067pt;}
.y8e9_c00000{bottom:210.587291pt;}
.y1081_c00000{bottom:210.747067pt;}
.y8a5_c00000{bottom:210.907200pt;}
.y24c_c00000{bottom:210.987067pt;}
.y934_c00000{bottom:211.067067pt;}
.y3e0_c00000{bottom:211.067200pt;}
.yc70_c00000{bottom:211.227067pt;}
.y1189_c00000{bottom:211.229043pt;}
.yf1_c00000{bottom:211.307067pt;}
.y768_c00000{bottom:211.867067pt;}
.y1123_c00000{bottom:212.187067pt;}
.y383_c00000{bottom:212.267067pt;}
.y1065_c00000{bottom:212.267651pt;}
.y69c_c00000{bottom:212.347067pt;}
.y10db_c00000{bottom:212.587067pt;}
.y2d1_c00000{bottom:212.747067pt;}
.y2af_c00000{bottom:213.147067pt;}
.y13c_c00000{bottom:213.387067pt;}
.yd30_c00000{bottom:213.627067pt;}
.y6b4_c00000{bottom:213.787067pt;}
.y5f0_c00000{bottom:214.347067pt;}
.ycc0_c00000{bottom:214.506795pt;}
.y1157_c00000{bottom:214.587067pt;}
.ye70_c00000{bottom:214.827067pt;}
.y8d7_c00000{bottom:214.907067pt;}
.yebe_c00000{bottom:215.147067pt;}
.y1017_c00000{bottom:215.147200pt;}
.yab9_c00000{bottom:215.467067pt;}
.y11b1_c00000{bottom:215.627067pt;}
.y763_c00000{bottom:215.627200pt;}
.y10b2_c00000{bottom:215.707067pt;}
.y1a_c00000{bottom:216.000000pt;}
.ye5e_c00000{bottom:216.027067pt;}
.y823_c00000{bottom:216.107067pt;}
.y4c1_c00000{bottom:217.227067pt;}
.y30c_c00000{bottom:217.307067pt;}
.y29_c00000{bottom:217.333333pt;}
.y675_c00000{bottom:217.787067pt;}
.ye52_c00000{bottom:218.027067pt;}
.yf32_c00000{bottom:218.267067pt;}
.y42f_c00000{bottom:218.747067pt;}
.y7d7_c00000{bottom:219.307067pt;}
.y10cd_c00000{bottom:219.467067pt;}
.yc18_c00000{bottom:220.107067pt;}
.ydca_c00000{bottom:220.107435pt;}
.y76a_c00000{bottom:220.347067pt;}
.y25d_c00000{bottom:220.347075pt;}
.y1ac_c00000{bottom:220.347243pt;}
.y67f_c00000{bottom:220.347251pt;}
.y644_c00000{bottom:220.347259pt;}
.y5d1_c00000{bottom:220.347427pt;}
.y24b_c00000{bottom:220.347435pt;}
.y77d_c00000{bottom:220.347443pt;}
.y962_c00000{bottom:220.347627pt;}
.y640_c00000{bottom:220.347744pt;}
.yd90_c00000{bottom:220.347803pt;}
.y83e_c00000{bottom:220.347928pt;}
.y856_c00000{bottom:220.347971pt;}
.ydbf_c00000{bottom:220.348112pt;}
.yb65_c00000{bottom:220.427067pt;}
.y3c5_c00000{bottom:220.427075pt;}
.y3df_c00000{bottom:220.427243pt;}
.y3fe_c00000{bottom:220.427251pt;}
.y593_c00000{bottom:220.427419pt;}
.y549_c00000{bottom:220.427435pt;}
.y448_c00000{bottom:220.427619pt;}
.y335_c00000{bottom:220.571507pt;}
.yd1c_c00000{bottom:220.587067pt;}
.y188_c00000{bottom:220.651507pt;}
.y5b7_c00000{bottom:220.907067pt;}
.yd88_c00000{bottom:220.907200pt;}
.y432_c00000{bottom:220.987067pt;}
.y1089_c00000{bottom:221.547067pt;}
.y241_c00000{bottom:221.787067pt;}
.y2db_c00000{bottom:222.347067pt;}
.y20d_c00000{bottom:222.587067pt;}
.y582_c00000{bottom:222.987067pt;}
.ya57_c00000{bottom:222.987443pt;}
.y918_c00000{bottom:223.067515pt;}
.ye9f_c00000{bottom:223.387067pt;}
.y92_c00000{bottom:223.627067pt;}
.y160_c00000{bottom:223.787067pt;}
.ye44_c00000{bottom:223.787875pt;}
.yc1_c00000{bottom:223.947067pt;}
.y1093_c00000{bottom:224.027067pt;}
.yb16_c00000{bottom:224.347067pt;}
.y85e_c00000{bottom:224.427067pt;}
.y1102_c00000{bottom:224.907067pt;}
.y105a_c00000{bottom:224.987067pt;}
.y94b_c00000{bottom:225.067067pt;}
.y435_c00000{bottom:225.227067pt;}
.y1d4_c00000{bottom:225.307067pt;}
.yc_c00000{bottom:225.333333pt;}
.yc26_c00000{bottom:225.467200pt;}
.y7e5_c00000{bottom:225.547067pt;}
.yb33_c00000{bottom:225.547200pt;}
.y939_c00000{bottom:226.027067pt;}
.y2f0_c00000{bottom:226.267067pt;}
.y1ec_c00000{bottom:226.347067pt;}
.y3ee_c00000{bottom:226.427067pt;}
.yc2d_c00000{bottom:226.988235pt;}
.y303_c00000{bottom:227.067067pt;}
.yc50_c00000{bottom:227.307067pt;}
.y119a_c00000{bottom:227.627067pt;}
.ydfe_c00000{bottom:227.627200pt;}
.yfc8_c00000{bottom:228.027067pt;}
.ybde_c00000{bottom:228.107200pt;}
.yf5d_c00000{bottom:228.187200pt;}
.y804_c00000{bottom:228.347067pt;}
.y100c_c00000{bottom:228.427067pt;}
.y1181_c00000{bottom:228.428008pt;}
.y110d_c00000{bottom:228.667067pt;}
.y502_c00000{bottom:228.747067pt;}
.y226_c00000{bottom:228.827067pt;}
.ydd4_c00000{bottom:228.907067pt;}
.yd6d_c00000{bottom:229.227651pt;}
.y6a8_c00000{bottom:229.307067pt;}
.yf0_c00000{bottom:229.707067pt;}
.y869_c00000{bottom:229.787200pt;}
.y8e8_c00000{bottom:229.866707pt;}
.y79d_c00000{bottom:230.027067pt;}
.y8d6_c00000{bottom:230.267067pt;}
.y218_c00000{bottom:230.347067pt;}
.y11a1_c00000{bottom:230.507067pt;}
.y1188_c00000{bottom:230.508459pt;}
.y72a_c00000{bottom:230.667067pt;}
.y113a_c00000{bottom:230.747067pt;}
.y8b2_c00000{bottom:230.747075pt;}
.yfd2_c00000{bottom:230.987067pt;}
.yd4a_c00000{bottom:231.067067pt;}
.y116d_c00000{bottom:231.147067pt;}
.y35c_c00000{bottom:231.227067pt;}
.ye10_c00000{bottom:231.387067pt;}
.y1064_c00000{bottom:231.547067pt;}
.y1080_c00000{bottom:231.787067pt;}
.y8a4_c00000{bottom:231.867200pt;}
.yfd7_c00000{bottom:231.947067pt;}
.y933_c00000{bottom:232.107067pt;}
.y1070_c00000{bottom:232.107200pt;}
.y323_c00000{bottom:232.347067pt;}
.ye3b_c00000{bottom:232.587067pt;}
.y767_c00000{bottom:232.827067pt;}
.y6d1_c00000{bottom:232.907067pt;}
.yd33_c00000{bottom:233.067067pt;}
.y382_c00000{bottom:233.227067pt;}
.y5dd_c00000{bottom:233.307067pt;}
.y10da_c00000{bottom:233.547067pt;}
.y2d0_c00000{bottom:233.707067pt;}
.y745_c00000{bottom:234.107067pt;}
.y2ae_c00000{bottom:234.187067pt;}
.yd57_c00000{bottom:234.587067pt;}
.yf90_c00000{bottom:234.747067pt;}
.y5ef_c00000{bottom:235.307067pt;}
.ydc9_c00000{bottom:235.387267pt;}
.y535_c00000{bottom:235.547067pt;}
.y11a8_c00000{bottom:235.627067pt;}
.y9f3_c00000{bottom:235.707067pt;}
.y1ab_c00000{bottom:235.707235pt;}
.y653_c00000{bottom:235.707243pt;}
.y643_c00000{bottom:235.707251pt;}
.y740_c00000{bottom:235.707323pt;}
.y5d0_c00000{bottom:235.707419pt;}
.y24a_c00000{bottom:235.707427pt;}
.y615_c00000{bottom:235.707435pt;}
.y872_c00000{bottom:235.707611pt;}
.y961_c00000{bottom:235.707619pt;}
.y63f_c00000{bottom:235.707736pt;}
.yd8f_c00000{bottom:235.707795pt;}
.y83d_c00000{bottom:235.707920pt;}
.y855_c00000{bottom:235.707963pt;}
.ydbe_c00000{bottom:235.708104pt;}
.ye6f_c00000{bottom:235.787067pt;}
.y3de_c00000{bottom:235.787235pt;}
.y3ed_c00000{bottom:235.787243pt;}
.y438_c00000{bottom:235.787411pt;}
.y548_c00000{bottom:235.787427pt;}
.y447_c00000{bottom:235.787611pt;}
.y28c_c00000{bottom:236.027067pt;}
.y1016_c00000{bottom:236.187200pt;}
.y5fc_c00000{bottom:236.267067pt;}
.yad7_c00000{bottom:236.267200pt;}
.y3f1_c00000{bottom:236.347067pt;}
.y11b0_c00000{bottom:236.587067pt;}
.y762_c00000{bottom:236.667200pt;}
.y13b_c00000{bottom:237.227067pt;}
.y116_c00000{bottom:237.387067pt;}
.y803_c00000{bottom:238.187067pt;}
.y503_c00000{bottom:238.267067pt;}
.y30b_c00000{bottom:238.347067pt;}
.ya56_c00000{bottom:238.347435pt;}
.y674_c00000{bottom:238.747067pt;}
.ye51_c00000{bottom:238.987067pt;}
.yf31_c00000{bottom:239.227067pt;}
.y917_c00000{bottom:239.627235pt;}
.y42e_c00000{bottom:239.707067pt;}
.ycbf_c00000{bottom:240.027067pt;}
.y8d5_c00000{bottom:240.187067pt;}
.y7d6_c00000{bottom:240.347067pt;}
.y10cc_c00000{bottom:240.507067pt;}
.y4a4_c00000{bottom:240.747067pt;}
.yc94_c00000{bottom:240.907067pt;}
.yc17_c00000{bottom:241.147067pt;}
.yb64_c00000{bottom:241.467067pt;}
.yd1b_c00000{bottom:241.627067pt;}
.y25c_c00000{bottom:241.707067pt;}
.y3c4_c00000{bottom:241.787067pt;}
.y75b_c00000{bottom:241.947067pt;}
.y91_c00000{bottom:242.027067pt;}
.y6b3_c00000{bottom:242.269491pt;}
.yc0_c00000{bottom:242.347067pt;}
.yd2f_c00000{bottom:242.587067pt;}
.yba1_c00000{bottom:242.747067pt;}
.y240_c00000{bottom:242.827067pt;}
.y94a_c00000{bottom:242.827936pt;}
.ye43_c00000{bottom:242.988235pt;}
.y2da_c00000{bottom:243.307067pt;}
.y8d4_c00000{bottom:243.467067pt;}
.y20c_c00000{bottom:243.627067pt;}
.y581_c00000{bottom:244.027067pt;}
.yebd_c00000{bottom:244.107067pt;}
.ydd3_c00000{bottom:244.267067pt;}
.ye9e_c00000{bottom:244.427067pt;}
.y11bc_c00000{bottom:244.667200pt;}
.y10b1_c00000{bottom:244.747067pt;}
.y15f_c00000{bottom:244.827067pt;}
.y822_c00000{bottom:245.067067pt;}
.yf45_c00000{bottom:245.307067pt;}
.y5b6_c00000{bottom:245.387067pt;}
.y302_c00000{bottom:245.467067pt;}
.y1101_c00000{bottom:245.867067pt;}
.y1059_c00000{bottom:246.027067pt;}
.y8b1_c00000{bottom:246.107067pt;}
.y434_c00000{bottom:246.267067pt;}
.yc2c_c00000{bottom:246.267651pt;}
.y1d3_c00000{bottom:246.347067pt;}
.yc25_c00000{bottom:246.427200pt;}
.yb32_c00000{bottom:246.507200pt;}
.y7e4_c00000{bottom:246.587067pt;}
.yd87_c00000{bottom:247.067200pt;}
.y6d0_c00000{bottom:247.227067pt;}
.y7d1_c00000{bottom:247.387067pt;}
.y5f_c00000{bottom:247.467067pt;}
.y6de_c00000{bottom:247.547067pt;}
.y1180_c00000{bottom:247.707424pt;}
.yff5_c00000{bottom:247.787067pt;}
.yef_c00000{bottom:247.947067pt;}
.y652_c00000{bottom:248.347067pt;}
.y107b_c00000{bottom:248.427067pt;}
.yd6c_c00000{bottom:248.507067pt;}
.ydfd_c00000{bottom:248.667200pt;}
.y8e7_c00000{bottom:249.067067pt;}
.ybdd_c00000{bottom:249.147200pt;}
.y1153_c00000{bottom:249.307067pt;}
.y100b_c00000{bottom:249.467067pt;}
.y110c_c00000{bottom:249.627067pt;}
.y225_c00000{bottom:249.787067pt;}
.y1187_c00000{bottom:249.787875pt;}
.ydc8_c00000{bottom:250.747259pt;}
.y868_c00000{bottom:250.827200pt;}
.y655_c00000{bottom:250.987067pt;}
.y1eb_c00000{bottom:250.987075pt;}
.y5f3_c00000{bottom:250.987083pt;}
.y73f_c00000{bottom:250.987155pt;}
.y5cf_c00000{bottom:250.987251pt;}
.y249_c00000{bottom:250.987259pt;}
.y614_c00000{bottom:250.987267pt;}
.y871_c00000{bottom:250.987443pt;}
.y960_c00000{bottom:250.987451pt;}
.y63e_c00000{bottom:250.987568pt;}
.yd8e_c00000{bottom:250.987627pt;}
.y83c_c00000{bottom:250.987752pt;}
.y854_c00000{bottom:250.987795pt;}
.ydbd_c00000{bottom:250.987936pt;}
.y79c_c00000{bottom:251.067067pt;}
.y3ec_c00000{bottom:251.067075pt;}
.y3c3_c00000{bottom:251.067243pt;}
.y547_c00000{bottom:251.067259pt;}
.y446_c00000{bottom:251.067443pt;}
.y233_c00000{bottom:251.307067pt;}
.y11a0_c00000{bottom:251.547067pt;}
.y27b_c00000{bottom:251.627067pt;}
.y9f2_c00000{bottom:251.627200pt;}
.y1139_c00000{bottom:251.707067pt;}
.y1092_c00000{bottom:251.787067pt;}
.yfd1_c00000{bottom:251.947067pt;}
.yd49_c00000{bottom:252.027067pt;}
.y35b_c00000{bottom:252.187067pt;}
.y7f4_c00000{bottom:252.267067pt;}
.yf55_c00000{bottom:252.827067pt;}
.y8a3_c00000{bottom:252.907200pt;}
.ye1b_c00000{bottom:252.987235pt;}
.y932_c00000{bottom:253.067067pt;}
.y106f_c00000{bottom:253.067200pt;}
.y322_c00000{bottom:253.307067pt;}
.ya55_c00000{bottom:253.627267pt;}
.ye3a_c00000{bottom:253.707067pt;}
.ydd2_c00000{bottom:254.027067pt;}
.y1122_c00000{bottom:254.187067pt;}
.y381_c00000{bottom:254.267067pt;}
.y5dc_c00000{bottom:254.347067pt;}
.y938_c00000{bottom:254.508459pt;}
.y10d9_c00000{bottom:254.587067pt;}
.y2cf_c00000{bottom:254.747067pt;}
.y107a_c00000{bottom:254.987067pt;}
.y2ad_c00000{bottom:255.147067pt;}
.y1040_c00000{bottom:255.147200pt;}
.yc4c_c00000{bottom:255.307067pt;}
.y1033_c00000{bottom:255.469163pt;}
.y1199_c00000{bottom:255.547067pt;}
.yb93_c00000{bottom:255.627067pt;}
.yf8f_c00000{bottom:255.707067pt;}
.yfc7_c00000{bottom:255.867067pt;}
.y5ee_c00000{bottom:256.347067pt;}
.y2ef_c00000{bottom:256.427067pt;}
.y534_c00000{bottom:256.587067pt;}
.y11a7_c00000{bottom:256.667067pt;}
.ye6e_c00000{bottom:256.827067pt;}
.y8bc_c00000{bottom:256.986059pt;}
.y1aa_c00000{bottom:256.987067pt;}
.y3dd_c00000{bottom:257.067067pt;}
.ycd8_c00000{bottom:257.147200pt;}
.y11af_c00000{bottom:257.627067pt;}
.y761_c00000{bottom:257.627200pt;}
.y6bb_c00000{bottom:257.707200pt;}
.y1082_c00000{bottom:257.947067pt;}
.y949_c00000{bottom:258.187928pt;}
.y6a7_c00000{bottom:258.347067pt;}
.yb8f_c00000{bottom:258.827067pt;}
.y4a7_c00000{bottom:259.227067pt;}
.y217_c00000{bottom:259.307067pt;}
.y74b_c00000{bottom:259.547067pt;}
.yb07_c00000{bottom:259.548099pt;}
.y729_c00000{bottom:259.707067pt;}
.y673_c00000{bottom:259.787067pt;}
.y13a_c00000{bottom:259.947200pt;}
.ye50_c00000{bottom:260.027067pt;}
.yf30_c00000{bottom:260.267067pt;}
.ya9e_c00000{bottom:260.267651pt;}
.y90_c00000{bottom:260.427067pt;}
.ybf_c00000{bottom:260.747067pt;}
.y115_c00000{bottom:260.907067pt;}
.y1076_c00000{bottom:260.987067pt;}
.y7d5_c00000{bottom:261.307067pt;}
.yed5_c00000{bottom:261.387067pt;}
.y10cb_c00000{bottom:261.547067pt;}
.y6b2_c00000{bottom:261.548907pt;}
.y4a3_c00000{bottom:261.787067pt;}
.y766_c00000{bottom:261.867067pt;}
.yc93_c00000{bottom:261.947067pt;}
.y8c6_c00000{bottom:262.027200pt;}
.y744_c00000{bottom:262.107067pt;}
.ye42_c00000{bottom:262.267651pt;}
.yb63_c00000{bottom:262.427067pt;}
.yd1a_c00000{bottom:262.587067pt;}
.yca1_c00000{bottom:262.827200pt;}
.y75a_c00000{bottom:262.987067pt;}
.y334_c00000{bottom:263.531771pt;}
.yd56_c00000{bottom:263.547067pt;}
.y187_c00000{bottom:263.611771pt;}
.yd2e_c00000{bottom:263.627067pt;}
.y23f_c00000{bottom:263.787067pt;}
.y2d9_c00000{bottom:264.347067pt;}
.yfb4_c00000{bottom:264.587200pt;}
.y20b_c00000{bottom:264.667067pt;}
.yd08_c00000{bottom:264.907067pt;}
.y580_c00000{bottom:264.987067pt;}
.yebc_c00000{bottom:265.147067pt;}
.yc7b_c00000{bottom:265.307067pt;}
.ye9d_c00000{bottom:265.387067pt;}
.yc2b_c00000{bottom:265.547067pt;}
.y10b0_c00000{bottom:265.707067pt;}
.y11bb_c00000{bottom:265.707200pt;}
.y15e_c00000{bottom:265.787067pt;}
.ye5d_c00000{bottom:266.027067pt;}
.y821_c00000{bottom:266.107067pt;}
.ydc7_c00000{bottom:266.107251pt;}
.yee_c00000{bottom:266.347067pt;}
.y25b_c00000{bottom:266.347075pt;}
.y73e_c00000{bottom:266.347147pt;}
.y5ce_c00000{bottom:266.347243pt;}
.y248_c00000{bottom:266.347251pt;}
.y613_c00000{bottom:266.347259pt;}
.y870_c00000{bottom:266.347435pt;}
.y95f_c00000{bottom:266.347443pt;}
.y63d_c00000{bottom:266.347560pt;}
.yd8d_c00000{bottom:266.347619pt;}
.y83b_c00000{bottom:266.347744pt;}
.y853_c00000{bottom:266.347787pt;}
.ydbc_c00000{bottom:266.347928pt;}
.y3eb_c00000{bottom:266.427067pt;}
.y3c2_c00000{bottom:266.427235pt;}
.y546_c00000{bottom:266.427251pt;}
.y445_c00000{bottom:266.427435pt;}
.ycbe_c00000{bottom:266.587067pt;}
.y5e_c00000{bottom:266.907067pt;}
.y7ba_c00000{bottom:266.907200pt;}
.y117f_c00000{bottom:266.907784pt;}
.y54b_c00000{bottom:266.987067pt;}
.y433_c00000{bottom:267.227067pt;}
.y1d2_c00000{bottom:267.307067pt;}
.yc24_c00000{bottom:267.467200pt;}
.yb31_c00000{bottom:267.547200pt;}
.y7e3_c00000{bottom:267.627067pt;}
.y4c0_c00000{bottom:267.787067pt;}
.yd86_c00000{bottom:268.027200pt;}
.y10f0_c00000{bottom:268.187067pt;}
.y6cf_c00000{bottom:268.267067pt;}
.y7d0_c00000{bottom:268.427067pt;}
.y496_c00000{bottom:268.507067pt;}
.y6dd_c00000{bottom:268.587067pt;}
.yab5_c00000{bottom:268.827067pt;}
.y712_c00000{bottom:268.907067pt;}
.ya54_c00000{bottom:268.987259pt;}
.y1186_c00000{bottom:268.988235pt;}
.y8b0_c00000{bottom:269.067067pt;}
.y9db_c00000{bottom:269.227067pt;}
.y651_c00000{bottom:269.307067pt;}
.ydfc_c00000{bottom:269.627200pt;}
.yf5c_c00000{bottom:270.187067pt;}
.ybdc_c00000{bottom:270.187200pt;}
.y1152_c00000{bottom:270.347067pt;}
.y501_c00000{bottom:270.747067pt;}
.y224_c00000{bottom:270.827067pt;}
.ya34_c00000{bottom:270.908147pt;}
.yd7a_c00000{bottom:271.067067pt;}
.y301_c00000{bottom:271.227067pt;}
.y891_c00000{bottom:271.467067pt;}
.y867_c00000{bottom:271.867200pt;}
.y8bb_c00000{bottom:272.346051pt;}
.y1ea_c00000{bottom:272.347067pt;}
.y3dc_c00000{bottom:272.427067pt;}
.yed7_c00000{bottom:272.507067pt;}
.y8d3_c00000{bottom:272.667200pt;}
.y1138_c00000{bottom:272.747067pt;}
.yfd0_c00000{bottom:272.987067pt;}
.yd48_c00000{bottom:273.067067pt;}
.y116c_c00000{bottom:273.147067pt;}
.y35a_c00000{bottom:273.227067pt;}
.y948_c00000{bottom:273.547920pt;}
.y937_c00000{bottom:273.787875pt;}
.yf54_c00000{bottom:273.867067pt;}
.y8a2_c00000{bottom:273.947200pt;}
.y106e_c00000{bottom:274.107200pt;}
.ye1a_c00000{bottom:274.267067pt;}
.y790_c00000{bottom:274.347067pt;}
.y5b5_c00000{bottom:274.427067pt;}
.y741_c00000{bottom:274.667067pt;}
.y462_c00000{bottom:274.747067pt;}
.y1032_c00000{bottom:274.748579pt;}
.ye39_c00000{bottom:274.827067pt;}
.y1100_c00000{bottom:274.907067pt;}
.y474_c00000{bottom:275.226707pt;}
.y380_c00000{bottom:275.227067pt;}
.y5db_c00000{bottom:275.307067pt;}
.y10d8_c00000{bottom:275.547067pt;}
.yaf2_c00000{bottom:275.627067pt;}
.y2ce_c00000{bottom:275.707067pt;}
.y1079_c00000{bottom:275.947067pt;}
.y22_c00000{bottom:276.000000pt;}
.y103f_c00000{bottom:276.107200pt;}
.ya8a_c00000{bottom:276.347067pt;}
.y516_c00000{bottom:276.507067pt;}
.yb75_c00000{bottom:276.587067pt;}
.yf8e_c00000{bottom:276.747067pt;}
.y8e6_c00000{bottom:276.907067pt;}
.y5ed_c00000{bottom:277.307067pt;}
.y11a6_c00000{bottom:277.627200pt;}
.ye6d_c00000{bottom:277.787067pt;}
.y28b_c00000{bottom:278.027067pt;}
.y1015_c00000{bottom:278.187067pt;}
.ycd7_c00000{bottom:278.187200pt;}
.ye0f_c00000{bottom:278.187979pt;}
.y100a_c00000{bottom:278.427067pt;}
.y11ae_c00000{bottom:278.587067pt;}
.y110b_c00000{bottom:278.667067pt;}
.y760_c00000{bottom:278.667200pt;}
.y6ba_c00000{bottom:278.747200pt;}
.yb06_c00000{bottom:278.748459pt;}
.y8f_c00000{bottom:278.827067pt;}
.ybe_c00000{bottom:279.147067pt;}
.y984_c00000{bottom:279.307067pt;}
.yc61_c00000{bottom:279.387067pt;}
.ya9d_c00000{bottom:279.547067pt;}
.yb8e_c00000{bottom:279.867200pt;}
.y79b_c00000{bottom:280.027067pt;}
.y4a6_c00000{bottom:280.267067pt;}
.y216_c00000{bottom:280.347067pt;}
.y672_c00000{bottom:280.747067pt;}
.y6b1_c00000{bottom:280.749267pt;}
.y1091_c00000{bottom:280.827067pt;}
.ye4f_c00000{bottom:280.987200pt;}
.y7f3_c00000{bottom:281.227067pt;}
.yf2f_c00000{bottom:281.307067pt;}
.ydc6_c00000{bottom:281.387083pt;}
.ye41_c00000{bottom:281.547067pt;}
.y25a_c00000{bottom:281.707067pt;}
.y3fd_c00000{bottom:281.707075pt;}
.y545_c00000{bottom:281.707083pt;}
.y73d_c00000{bottom:281.707139pt;}
.y1e9_c00000{bottom:281.707235pt;}
.y247_c00000{bottom:281.707243pt;}
.y612_c00000{bottom:281.707251pt;}
.y444_c00000{bottom:281.707267pt;}
.y86f_c00000{bottom:281.707427pt;}
.y95e_c00000{bottom:281.707435pt;}
.y61c_c00000{bottom:281.707552pt;}
.yd8c_c00000{bottom:281.707611pt;}
.y83a_c00000{bottom:281.707736pt;}
.y852_c00000{bottom:281.707779pt;}
.ydbb_c00000{bottom:281.707920pt;}
.y42d_c00000{bottom:281.787067pt;}
.y931_c00000{bottom:282.107067pt;}
.yb15_c00000{bottom:282.187067pt;}
.y300_c00000{bottom:282.267067pt;}
.y7a7_c00000{bottom:282.267200pt;}
.y321_c00000{bottom:282.347067pt;}
.y10ca_c00000{bottom:282.507067pt;}
.y4a2_c00000{bottom:282.747067pt;}
.ybe2_c00000{bottom:282.827067pt;}
.yc92_c00000{bottom:282.907067pt;}
.y8c5_c00000{bottom:283.067200pt;}
.yc16_c00000{bottom:283.147067pt;}
.y4c7_c00000{bottom:283.227067pt;}
.y69b_c00000{bottom:283.307067pt;}
.yb62_c00000{bottom:283.467067pt;}
.yd19_c00000{bottom:283.627067pt;}
.yb92_c00000{bottom:283.627235pt;}
.yca0_c00000{bottom:283.867200pt;}
.y759_c00000{bottom:283.947067pt;}
.y2ac_c00000{bottom:284.187067pt;}
.ya53_c00000{bottom:284.347251pt;}
.yd2d_c00000{bottom:284.587067pt;}
.yed_c00000{bottom:284.747067pt;}
.y23e_c00000{bottom:284.827067pt;}
.y743_c00000{bottom:284.987067pt;}
.y4ab_c00000{bottom:284.987291pt;}
.y27a_c00000{bottom:285.307067pt;}
.y533_c00000{bottom:285.547067pt;}
.y20a_c00000{bottom:285.627067pt;}
.yfb3_c00000{bottom:285.627200pt;}
.yd07_c00000{bottom:285.947067pt;}
.y57f_c00000{bottom:286.027067pt;}
.yebb_c00000{bottom:286.107067pt;}
.y117e_c00000{bottom:286.187200pt;}
.ya33_c00000{bottom:286.187979pt;}
.y5d_c00000{bottom:286.347067pt;}
.y2ee_c00000{bottom:286.587067pt;}
.y11ba_c00000{bottom:286.667200pt;}
.y1005_c00000{bottom:286.747067pt;}
.y60d_c00000{bottom:286.827067pt;}
.y820_c00000{bottom:287.067067pt;}
.y6a6_c00000{bottom:287.307067pt;}
.y1075_c00000{bottom:287.387067pt;}
.y85d_c00000{bottom:287.467067pt;}
.y74a_c00000{bottom:287.547067pt;}
.y139_c00000{bottom:287.547200pt;}
.y8ba_c00000{bottom:287.625883pt;}
.y728_c00000{bottom:287.627067pt;}
.y3c1_c00000{bottom:287.707067pt;}
.y415_c00000{bottom:288.267067pt;}
.y1185_c00000{bottom:288.267651pt;}
.y1d1_c00000{bottom:288.347067pt;}
.yc23_c00000{bottom:288.427200pt;}
.yb30_c00000{bottom:288.507200pt;}
.y4bf_c00000{bottom:288.747067pt;}
.y947_c00000{bottom:288.827752pt;}
.yd85_c00000{bottom:289.067200pt;}
.y10ef_c00000{bottom:289.227067pt;}
.y6ce_c00000{bottom:289.307067pt;}
.y495_c00000{bottom:289.547067pt;}
.ye19_c00000{bottom:289.627067pt;}
.y765_c00000{bottom:289.867067pt;}
.y7d4_c00000{bottom:289.947067pt;}
.yeeb_c00000{bottom:290.027067pt;}
.y9da_c00000{bottom:290.187067pt;}
.y650_c00000{bottom:290.347067pt;}
.ye_c00000{bottom:290.666667pt;}
.ydfb_c00000{bottom:290.667200pt;}
.yf5b_c00000{bottom:291.147067pt;}
.ybdb_c00000{bottom:291.147200pt;}
.y1151_c00000{bottom:291.307067pt;}
.yc5f_c00000{bottom:291.387067pt;}
.y500_c00000{bottom:291.787067pt;}
.y7b9_c00000{bottom:291.867200pt;}
.yd79_c00000{bottom:292.027200pt;}
.y5b4_c00000{bottom:292.267243pt;}
.y1063_c00000{bottom:292.347067pt;}
.y890_c00000{bottom:292.507067pt;}
.ybbc_c00000{bottom:292.587067pt;}
.y2fb_c00000{bottom:292.827067pt;}
.y866_c00000{bottom:292.827200pt;}
.y936_c00000{bottom:292.988235pt;}
.y232_c00000{bottom:293.307067pt;}
.yecc_c00000{bottom:293.387067pt;}
.ye0e_c00000{bottom:293.547971pt;}
.y8d2_c00000{bottom:293.627200pt;}
.y1137_c00000{bottom:293.707067pt;}
.yfcf_c00000{bottom:294.027067pt;}
.yd47_c00000{bottom:294.107067pt;}
.y116b_c00000{bottom:294.187067pt;}
.y473_c00000{bottom:294.427067pt;}
.y15d_c00000{bottom:294.827067pt;}
.y8a1_c00000{bottom:294.907200pt;}
.y78f_c00000{bottom:295.307067pt;}
.yed6_c00000{bottom:295.387067pt;}
.y6f6_c00000{bottom:295.467067pt;}
.y461_c00000{bottom:295.787067pt;}
.y9f1_c00000{bottom:295.787200pt;}
.y10ff_c00000{bottom:295.867067pt;}
.ye38_c00000{bottom:295.947067pt;}
.y1058_c00000{bottom:296.027200pt;}
.y1121_c00000{bottom:296.187067pt;}
.y37f_c00000{bottom:296.267067pt;}
.y5da_c00000{bottom:296.347067pt;}
.y7e2_c00000{bottom:296.587067pt;}
.y2cd_c00000{bottom:296.747067pt;}
.ydc5_c00000{bottom:296.747075pt;}
.ya25_c00000{bottom:296.747200pt;}
.y73c_c00000{bottom:296.986971pt;}
.yfad_c00000{bottom:296.987067pt;}
.y246_c00000{bottom:296.987075pt;}
.y611_c00000{bottom:296.987083pt;}
.y86e_c00000{bottom:296.987259pt;}
.y624_c00000{bottom:296.987267pt;}
.y61b_c00000{bottom:296.987384pt;}
.yd8b_c00000{bottom:296.987443pt;}
.y839_c00000{bottom:296.987568pt;}
.y851_c00000{bottom:296.987611pt;}
.ydba_c00000{bottom:296.987752pt;}
.y4e2_c00000{bottom:297.067067pt;}
.y4c9_c00000{bottom:297.067075pt;}
.y443_c00000{bottom:297.067259pt;}
.y468_c00000{bottom:297.067427pt;}
.y9b0_c00000{bottom:297.146707pt;}
.y103e_c00000{bottom:297.147200pt;}
.y8e_c00000{bottom:297.227067pt;}
.y7cf_c00000{bottom:297.387067pt;}
.ybd_c00000{bottom:297.547067pt;}
.y259_c00000{bottom:297.627067pt;}
.yf8d_c00000{bottom:297.707067pt;}
.yff4_c00000{bottom:297.787067pt;}
.y711_c00000{bottom:297.867067pt;}
.yb05_c00000{bottom:298.027875pt;}
.y5ec_c00000{bottom:298.347067pt;}
.y11a5_c00000{bottom:298.667200pt;}
.ye6c_c00000{bottom:298.827067pt;}
.yb91_c00000{bottom:298.907067pt;}
.y28a_c00000{bottom:299.067067pt;}
.y1014_c00000{bottom:299.147067pt;}
.ycd6_c00000{bottom:299.147200pt;}
.ye18_c00000{bottom:299.547200pt;}
.y110a_c00000{bottom:299.627067pt;}
.ya52_c00000{bottom:299.627083pt;}
.y6b9_c00000{bottom:299.707200pt;}
.y7d3_c00000{bottom:299.867067pt;}
.y6b0_c00000{bottom:300.028683pt;}
.yab4_c00000{bottom:300.345179pt;}
.y90b_c00000{bottom:300.347067pt;}
.yb8d_c00000{bottom:300.827200pt;}
.y79a_c00000{bottom:301.067067pt;}
.y4a5_c00000{bottom:301.227067pt;}
.y215_c00000{bottom:301.307067pt;}
.y119f_c00000{bottom:301.547067pt;}
.ya32_c00000{bottom:301.547971pt;}
.y671_c00000{bottom:301.787067pt;}
.yd74_c00000{bottom:301.866955pt;}
.y1031_c00000{bottom:301.948235pt;}
.y565_c00000{bottom:302.027067pt;}
.ye4e_c00000{bottom:302.027200pt;}
.yae5_c00000{bottom:302.107200pt;}
.y359_c00000{bottom:302.187067pt;}
.y7f2_c00000{bottom:302.267067pt;}
.y7a6_c00000{bottom:302.667200pt;}
.y42c_c00000{bottom:302.747067pt;}
.y8b9_c00000{bottom:302.985875pt;}
.y1e8_c00000{bottom:302.987067pt;}
.y3fc_c00000{bottom:303.067067pt;}
.y106d_c00000{bottom:303.147200pt;}
.yec_c00000{bottom:303.307067pt;}
.yed4_c00000{bottom:303.387067pt;}
.yf0f_c00000{bottom:303.467067pt;}
.y4a1_c00000{bottom:303.787067pt;}
.yc91_c00000{bottom:303.947067pt;}
.y8c4_c00000{bottom:304.027200pt;}
.yaf1_c00000{bottom:304.028592pt;}
.y9ca_c00000{bottom:304.107067pt;}
.yc15_c00000{bottom:304.187067pt;}
.y4aa_c00000{bottom:304.187651pt;}
.y946_c00000{bottom:304.187744pt;}
.y4c6_c00000{bottom:304.267067pt;}
.y69a_c00000{bottom:304.347067pt;}
.yd18_c00000{bottom:304.587067pt;}
.yc9f_c00000{bottom:304.827200pt;}
.y758_c00000{bottom:304.987067pt;}
.yd6b_c00000{bottom:305.307067pt;}
.yd2c_c00000{bottom:305.627067pt;}
.y5c_c00000{bottom:305.787067pt;}
.y23d_c00000{bottom:305.867067pt;}
.y8e5_c00000{bottom:305.947067pt;}
.ya37_c00000{bottom:306.027291pt;}
.y279_c00000{bottom:306.347067pt;}
.y333_c00000{bottom:306.413579pt;}
.y1009_c00000{bottom:306.427067pt;}
.y186_c00000{bottom:306.493579pt;}
.y532_c00000{bottom:306.587067pt;}
.yfb2_c00000{bottom:306.587200pt;}
.y209_c00000{bottom:306.667067pt;}
.yd06_c00000{bottom:306.907067pt;}
.y57e_c00000{bottom:306.987067pt;}
.ye89_c00000{bottom:307.067067pt;}
.yeba_c00000{bottom:307.147067pt;}
.ya9c_c00000{bottom:307.307067pt;}
.y1184_c00000{bottom:307.547067pt;}
.y5b3_c00000{bottom:307.547075pt;}
.y1004_c00000{bottom:307.707067pt;}
.y11b9_c00000{bottom:307.707200pt;}
.y1007_c00000{bottom:307.787067pt;}
.y223_c00000{bottom:307.867067pt;}
.ye5c_c00000{bottom:308.027067pt;}
.y81f_c00000{bottom:308.107067pt;}
.yf44_c00000{bottom:308.347067pt;}
.y85c_c00000{bottom:308.427067pt;}
.y1a9_c00000{bottom:308.507067pt;}
.ycbd_c00000{bottom:308.587067pt;}
.ye0d_c00000{bottom:308.827803pt;}
.y414_c00000{bottom:309.227067pt;}
.y1d0_c00000{bottom:309.307067pt;}
.yc22_c00000{bottom:309.467200pt;}
.yb2f_c00000{bottom:309.547200pt;}
.y4be_c00000{bottom:309.787067pt;}
.yd84_c00000{bottom:310.107200pt;}
.y10ee_c00000{bottom:310.187067pt;}
.y6cd_c00000{bottom:310.267067pt;}
.y494_c00000{bottom:310.507067pt;}
.y930_c00000{bottom:310.509267pt;}
.y6dc_c00000{bottom:310.587067pt;}
.yeea_c00000{bottom:311.067067pt;}
.y9d9_c00000{bottom:311.227067pt;}
.y64f_c00000{bottom:311.307067pt;}
.y10c9_c00000{bottom:311.547067pt;}
.y107f_c00000{bottom:311.627067pt;}
.ydfa_c00000{bottom:311.627200pt;}
.ybda_c00000{bottom:312.187200pt;}
.y935_c00000{bottom:312.267651pt;}
.y6df_c00000{bottom:312.347067pt;}
.y60e_c00000{bottom:312.347075pt;}
.y86d_c00000{bottom:312.347251pt;}
.y623_c00000{bottom:312.347259pt;}
.y61a_c00000{bottom:312.347376pt;}
.yd8a_c00000{bottom:312.347435pt;}
.y838_c00000{bottom:312.347560pt;}
.y850_c00000{bottom:312.347603pt;}
.ydb9_c00000{bottom:312.347744pt;}
.yb61_c00000{bottom:312.427067pt;}
.y442_c00000{bottom:312.427251pt;}
.y467_c00000{bottom:312.427419pt;}
.y4ff_c00000{bottom:312.747067pt;}
.y1e7_c00000{bottom:312.907067pt;}
.y7b8_c00000{bottom:312.907200pt;}
.y2ab_c00000{bottom:312.987067pt;}
.y73b_c00000{bottom:313.067067pt;}
.yd78_c00000{bottom:313.067200pt;}
.yc4b_c00000{bottom:313.307067pt;}
.y88f_c00000{bottom:313.467067pt;}
.yd55_c00000{bottom:313.547067pt;}
.yba0_c00000{bottom:313.787067pt;}
.y865_c00000{bottom:313.867200pt;}
.y117d_c00000{bottom:314.027067pt;}
.ybd0_c00000{bottom:314.107200pt;}
.y654_c00000{bottom:314.347067pt;}
.y8d1_c00000{bottom:314.667200pt;}
.y1136_c00000{bottom:314.747067pt;}
.ya51_c00000{bottom:314.987075pt;}
.yd46_c00000{bottom:315.067067pt;}
.ycfa_c00000{bottom:315.067200pt;}
.y116a_c00000{bottom:315.147067pt;}
.y8d_c00000{bottom:315.627067pt;}
.y15c_c00000{bottom:315.787067pt;}
.yf53_c00000{bottom:315.867067pt;}
.ybc_c00000{bottom:315.947067pt;}
.y8a0_c00000{bottom:315.947200pt;}
.y33_c00000{bottom:316.000000pt;}
.yded_c00000{bottom:316.107200pt;}
.y6a5_c00000{bottom:316.347067pt;}
.y6f5_c00000{bottom:316.427067pt;}
.y2ed_c00000{bottom:316.747067pt;}
.y9f0_c00000{bottom:316.827200pt;}
.ya31_c00000{bottom:316.827803pt;}
.y10fe_c00000{bottom:316.907067pt;}
.y1057_c00000{bottom:316.987200pt;}
.ye37_c00000{bottom:317.147067pt;}
.y37e_c00000{bottom:317.227067pt;}
.y5d9_c00000{bottom:317.307067pt;}
.yb04_c00000{bottom:317.307291pt;}
.y7e1_c00000{bottom:317.627067pt;}
.y2cc_c00000{bottom:317.707067pt;}
.ya24_c00000{bottom:317.707200pt;}
.yab3_c00000{bottom:317.785323pt;}
.ydc4_c00000{bottom:318.107067pt;}
.y103d_c00000{bottom:318.107200pt;}
.y8b8_c00000{bottom:318.345867pt;}
.y245_c00000{bottom:318.347067pt;}
.y3fb_c00000{bottom:318.427067pt;}
.y515_c00000{bottom:318.507067pt;}
.yb74_c00000{bottom:318.587067pt;}
.y101b_c00000{bottom:318.667067pt;}
.yf8c_c00000{bottom:318.747067pt;}
.yff3_c00000{bottom:318.827067pt;}
.y710_c00000{bottom:318.907067pt;}
.y5eb_c00000{bottom:319.307067pt;}
.y6af_c00000{bottom:319.308099pt;}
.yf4c_c00000{bottom:319.387067pt;}
.y945_c00000{bottom:319.547736pt;}
.y289_c00000{bottom:320.027067pt;}
.yefe_c00000{bottom:320.107067pt;}
.ycd5_c00000{bottom:320.187067pt;}
.ya74_c00000{bottom:320.587067pt;}
.y1109_c00000{bottom:320.667067pt;}
.y6b8_c00000{bottom:320.747200pt;}
.y1030_c00000{bottom:321.227651pt;}
.y90a_c00000{bottom:321.307067pt;}
.ybbb_c00000{bottom:321.547067pt;}
.yeb_c00000{bottom:321.707067pt;}
.yb90_c00000{bottom:321.787067pt;}
.y2fa_c00000{bottom:321.867067pt;}
.yb8c_c00000{bottom:321.867200pt;}
.y799_c00000{bottom:322.027067pt;}
.y472_c00000{bottom:322.267067pt;}
.y214_c00000{bottom:322.347067pt;}
.y670_c00000{bottom:322.827067pt;}
.ye9c_c00000{bottom:322.830659pt;}
.y5b2_c00000{bottom:322.907067pt;}
.y564_c00000{bottom:322.987067pt;}
.yae4_c00000{bottom:323.067200pt;}
.y358_c00000{bottom:323.227067pt;}
.yf2e_c00000{bottom:323.307067pt;}
.yaf0_c00000{bottom:323.308008pt;}
.y4a9_c00000{bottom:323.467067pt;}
.y42b_c00000{bottom:323.787067pt;}
.y106c_c00000{bottom:324.107200pt;}
.ye0c_c00000{bottom:324.187795pt;}
.y320_c00000{bottom:324.347067pt;}
.yf0e_c00000{bottom:324.427067pt;}
.y916_c00000{bottom:324.667067pt;}
.y4a0_c00000{bottom:324.747067pt;}
.yc90_c00000{bottom:324.907067pt;}
.yad6_c00000{bottom:324.987200pt;}
.y9c9_c00000{bottom:325.067067pt;}
.y8c3_c00000{bottom:325.067200pt;}
.yc14_c00000{bottom:325.147067pt;}
.y5b_c00000{bottom:325.227067pt;}
.ya36_c00000{bottom:325.306707pt;}
.y699_c00000{bottom:325.307067pt;}
.y7ce_c00000{bottom:325.387531pt;}
.yd17_c00000{bottom:325.627067pt;}
.yd9c_c00000{bottom:325.786355pt;}
.yc9e_c00000{bottom:325.867200pt;}
.y1078_c00000{bottom:325.947067pt;}
.yc60_c00000{bottom:326.187200pt;}
.yd6a_c00000{bottom:326.347067pt;}
.yfa2_c00000{bottom:326.587067pt;}
.y8e4_c00000{bottom:326.907067pt;}
.y278_c00000{bottom:327.307067pt;}
.y531_c00000{bottom:327.547067pt;}
.y208_c00000{bottom:327.627067pt;}
.y11a4_c00000{bottom:327.627200pt;}
.y96b_c00000{bottom:327.707067pt;}
.y441_c00000{bottom:327.707083pt;}
.y4c8_c00000{bottom:327.707208pt;}
.y5f6_c00000{bottom:327.707243pt;}
.y466_c00000{bottom:327.707251pt;}
.y619_c00000{bottom:327.707368pt;}
.yd89_c00000{bottom:327.707427pt;}
.y837_c00000{bottom:327.707552pt;}
.y84f_c00000{bottom:327.707595pt;}
.ydb8_c00000{bottom:327.707736pt;}
.ye6b_c00000{bottom:327.787067pt;}
.yd05_c00000{bottom:327.947067pt;}
.y57d_c00000{bottom:328.027067pt;}
.yeb9_c00000{bottom:328.107067pt;}
.y1013_c00000{bottom:328.187067pt;}
.y244_c00000{bottom:328.267067pt;}
.y594_c00000{bottom:328.347067pt;}
.y75f_c00000{bottom:328.667200pt;}
.y1003_c00000{bottom:328.747067pt;}
.y60c_c00000{bottom:328.827067pt;}
.y1156_c00000{bottom:328.987067pt;}
.ye5b_c00000{bottom:329.067067pt;}
.y81e_c00000{bottom:329.147067pt;}
.y983_c00000{bottom:329.307067pt;}
.y1008_c00000{bottom:329.387067pt;}
.y1a8_c00000{bottom:329.467067pt;}
.ycbc_c00000{bottom:329.627067pt;}
.y73a_c00000{bottom:329.627392pt;}
.y92f_c00000{bottom:329.788683pt;}
.y1029_c00000{bottom:330.107200pt;}
.y413_c00000{bottom:330.267067pt;}
.y1cf_c00000{bottom:330.347067pt;}
.yc21_c00000{bottom:330.427200pt;}
.yb2e_c00000{bottom:330.587200pt;}
.y4bd_c00000{bottom:330.747067pt;}
.ya0e_c00000{bottom:331.067200pt;}
.y10ed_c00000{bottom:331.227067pt;}
.y6cc_c00000{bottom:331.307067pt;}
.y6db_c00000{bottom:331.547067pt;}
.y7a5_c00000{bottom:331.627067pt;}
.y2c_c00000{bottom:332.000000pt;}
.yee9_c00000{bottom:332.027067pt;}
.y9d8_c00000{bottom:332.187067pt;}
.ya30_c00000{bottom:332.187795pt;}
.y727_c00000{bottom:332.347067pt;}
.y10c8_c00000{bottom:332.507067pt;}
.ybe1_c00000{bottom:332.827067pt;}
.ybd9_c00000{bottom:333.147200pt;}
.yc5e_c00000{bottom:333.387067pt;}
.yb60_c00000{bottom:333.467067pt;}
.y74f_c00000{bottom:333.627664pt;}
.y3fa_c00000{bottom:333.707067pt;}
.y7b7_c00000{bottom:333.867200pt;}
.y757_c00000{bottom:333.947067pt;}
.yd77_c00000{bottom:334.027200pt;}
.ybb_c00000{bottom:334.347067pt;}
.y88e_c00000{bottom:334.507067pt;}
.yd2b_c00000{bottom:334.587067pt;}
.yb9f_c00000{bottom:334.747067pt;}
.y23c_c00000{bottom:334.827067pt;}
.y864_c00000{bottom:334.827200pt;}
.y114_c00000{bottom:334.827560pt;}
.y944_c00000{bottom:334.827568pt;}
.yfc6_c00000{bottom:334.907067pt;}
.y7cc_c00000{bottom:334.987067pt;}
.ybcf_c00000{bottom:335.067200pt;}
.y5fa_c00000{bottom:335.307067pt;}
.yfb1_c00000{bottom:335.627067pt;}
.y8d0_c00000{bottom:335.627200pt;}
.yd45_c00000{bottom:336.107067pt;}
.ycf9_c00000{bottom:336.107200pt;}
.y1169_c00000{bottom:336.187067pt;}
.y3c0_c00000{bottom:336.267067pt;}
.ya9b_c00000{bottom:336.347067pt;}
.yb03_c00000{bottom:336.507651pt;}
.y15b_c00000{bottom:336.827067pt;}
.yf52_c00000{bottom:336.907067pt;}
.y89f_c00000{bottom:336.907200pt;}
.ydec_c00000{bottom:337.067200pt;}
.y78e_c00000{bottom:337.307067pt;}
.y19_c00000{bottom:337.333333pt;}
.y6f4_c00000{bottom:337.467067pt;}
.y460_c00000{bottom:337.787067pt;}
.y10fd_c00000{bottom:337.867067pt;}
.y1056_c00000{bottom:338.027200pt;}
.y37d_c00000{bottom:338.267067pt;}
.y11be_c00000{bottom:338.267651pt;}
.y5d8_c00000{bottom:338.347067pt;}
.y6ae_c00000{bottom:338.508459pt;}
.y7e0_c00000{bottom:338.587067pt;}
.y2cb_c00000{bottom:338.747067pt;}
.ya23_c00000{bottom:338.747200pt;}
.ya89_c00000{bottom:339.387067pt;}
.y493_c00000{bottom:339.547067pt;}
.ye0b_c00000{bottom:339.547787pt;}
.yf8b_c00000{bottom:339.707067pt;}
.yff2_c00000{bottom:339.867067pt;}
.y70f_c00000{bottom:339.947067pt;}
.yea_c00000{bottom:340.107067pt;}
.y5ea_c00000{bottom:340.347067pt;}
.y102f_c00000{bottom:340.507067pt;}
.ydf9_c00000{bottom:340.667200pt;}
.y288_c00000{bottom:341.067067pt;}
.ycd4_c00000{bottom:341.147067pt;}
.y1150_c00000{bottom:341.387067pt;}
.y1108_c00000{bottom:341.707067pt;}
.y6b7_c00000{bottom:341.707200pt;}
.y4fe_c00000{bottom:341.787067pt;}
.ye9b_c00000{bottom:342.110075pt;}
.y2aa_c00000{bottom:342.187067pt;}
.y909_c00000{bottom:342.347067pt;}
.y8c_c00000{bottom:342.506376pt;}
.ybba_c00000{bottom:342.587067pt;}
.yaef_c00000{bottom:342.587424pt;}
.y138_c00000{bottom:342.747200pt;}
.y2f9_c00000{bottom:342.827067pt;}
.yb8b_c00000{bottom:342.827200pt;}
.y117c_c00000{bottom:342.987067pt;}
.y5f5_c00000{bottom:342.987075pt;}
.y622_c00000{bottom:342.987083pt;}
.y67e_c00000{bottom:342.987200pt;}
.yadb_c00000{bottom:342.987259pt;}
.y836_c00000{bottom:342.987384pt;}
.y84e_c00000{bottom:342.987427pt;}
.ydb7_c00000{bottom:342.987568pt;}
.y798_c00000{bottom:343.067067pt;}
.y3f9_c00000{bottom:343.067075pt;}
.y465_c00000{bottom:343.067243pt;}
.yab2_c00000{bottom:343.305595pt;}
.y213_c00000{bottom:343.307067pt;}
.yecb_c00000{bottom:343.387067pt;}
.y67b_c00000{bottom:343.627067pt;}
.y77c_c00000{bottom:343.627200pt;}
.y1135_c00000{bottom:343.707067pt;}
.y8b7_c00000{bottom:343.785979pt;}
.y66f_c00000{bottom:343.787067pt;}
.y563_c00000{bottom:344.027067pt;}
.ye4d_c00000{bottom:344.027200pt;}
.y357_c00000{bottom:344.187067pt;}
.y7f1_c00000{bottom:344.267067pt;}
.y1074_c00000{bottom:344.347067pt;}
.ya35_c00000{bottom:344.507067pt;}
.y5a_c00000{bottom:344.667067pt;}
.y42a_c00000{bottom:344.747067pt;}
.y739_c00000{bottom:344.987384pt;}
.yf75_c00000{bottom:345.067200pt;}
.y106b_c00000{bottom:345.147200pt;}
.y31f_c00000{bottom:345.307067pt;}
.yed3_c00000{bottom:345.387067pt;}
.yf0d_c00000{bottom:345.467067pt;}
.y49f_c00000{bottom:345.787067pt;}
.y9ef_c00000{bottom:345.867200pt;}
.yc8f_c00000{bottom:345.947067pt;}
.ye17_c00000{bottom:345.947200pt;}
.y8c2_c00000{bottom:346.027200pt;}
.y9c8_c00000{bottom:346.107067pt;}
.yc13_c00000{bottom:346.187067pt;}
.y3db_c00000{bottom:346.267067pt;}
.y698_c00000{bottom:346.347067pt;}
.yd16_c00000{bottom:346.587067pt;}
.y2ec_c00000{bottom:346.907067pt;}
.yc9d_c00000{bottom:346.907200pt;}
.y103c_c00000{bottom:347.147200pt;}
.yd69_c00000{bottom:347.307067pt;}
.yfa1_c00000{bottom:347.547067pt;}
.ya2f_c00000{bottom:347.547787pt;}
.y101a_c00000{bottom:347.707067pt;}
.y7cd_c00000{bottom:347.867067pt;}
.y8e3_c00000{bottom:347.947067pt;}
.ya_c00000{bottom:348.000000pt;}
.y277_c00000{bottom:348.347067pt;}
.y530_c00000{bottom:348.587067pt;}
.y207_c00000{bottom:348.667067pt;}
.yd04_c00000{bottom:348.907067pt;}
.y57c_c00000{bottom:348.987067pt;}
.y610_c00000{bottom:348.987200pt;}
.y40a_c00000{bottom:349.067200pt;}
.y92e_c00000{bottom:349.068099pt;}
.yeb8_c00000{bottom:349.147067pt;}
.yc7a_c00000{bottom:349.307067pt;}
.y332_c00000{bottom:349.373843pt;}
.y185_c00000{bottom:349.453843pt;}
.y5b1_c00000{bottom:349.467067pt;}
.ya73_c00000{bottom:349.547067pt;}
.y11ad_c00000{bottom:349.627067pt;}
.y1002_c00000{bottom:349.707067pt;}
.y11b8_c00000{bottom:349.707200pt;}
.y60b_c00000{bottom:349.867067pt;}
.ye5a_c00000{bottom:350.027067pt;}
.y943_c00000{bottom:350.187560pt;}
.y4e1_c00000{bottom:350.267067pt;}
.y982_c00000{bottom:350.347067pt;}
.y7bc_c00000{bottom:350.427067pt;}
.y1a7_c00000{bottom:350.507067pt;}
.ycbb_c00000{bottom:350.587067pt;}
.y103a_c00000{bottom:351.067067pt;}
.y1028_c00000{bottom:351.067200pt;}
.y93a_c00000{bottom:351.147067pt;}
.yffb_c00000{bottom:351.227067pt;}
.y1ce_c00000{bottom:351.307067pt;}
.yc20_c00000{bottom:351.467200pt;}
.yb2d_c00000{bottom:351.547200pt;}
.y5c8_c00000{bottom:351.947067pt;}
.ya0d_c00000{bottom:352.107200pt;}
.y10ec_c00000{bottom:352.187067pt;}
.y6cb_c00000{bottom:352.267067pt;}
.y6da_c00000{bottom:352.587067pt;}
.yba_c00000{bottom:352.667067pt;}
.yd9b_c00000{bottom:353.066531pt;}
.yee8_c00000{bottom:353.067067pt;}
.y726_c00000{bottom:353.307067pt;}
.yda2_c00000{bottom:353.307411pt;}
.y10c7_c00000{bottom:353.547067pt;}
.y915_c00000{bottom:353.627067pt;}
.y1077_c00000{bottom:353.867067pt;}
.ybd8_c00000{bottom:354.187200pt;}
.yc5d_c00000{bottom:354.347067pt;}
.yb5f_c00000{bottom:354.427067pt;}
.ye0a_c00000{bottom:354.827619pt;}
.y1062_c00000{bottom:355.307067pt;}
.y88d_c00000{bottom:355.547067pt;}
.yd2a_c00000{bottom:355.627067pt;}
.yb02_c00000{bottom:355.787067pt;}
.yfc5_c00000{bottom:355.867067pt;}
.y863_c00000{bottom:355.867200pt;}
.y7cb_c00000{bottom:356.027067pt;}
.y74e_c00000{bottom:356.107200pt;}
.y113_c00000{bottom:356.267288pt;}
.y5f9_c00000{bottom:356.347067pt;}
.y802_c00000{bottom:356.667067pt;}
.y75e_c00000{bottom:356.667200pt;}
.ya50_c00000{bottom:356.827067pt;}
.yd44_c00000{bottom:357.067067pt;}
.ycf8_c00000{bottom:357.067200pt;}
.y1168_c00000{bottom:357.227067pt;}
.y3bf_c00000{bottom:357.307067pt;}
.y11bd_c00000{bottom:357.547067pt;}
.y15a_c00000{bottom:357.787067pt;}
.y6ad_c00000{bottom:357.787875pt;}
.yf51_c00000{bottom:357.867067pt;}
.y89e_c00000{bottom:357.947200pt;}
.y81d_c00000{bottom:358.107067pt;}
.ydeb_c00000{bottom:358.107200pt;}
.y78d_c00000{bottom:358.347067pt;}
.y60f_c00000{bottom:358.347075pt;}
.yada_c00000{bottom:358.347251pt;}
.y835_c00000{bottom:358.347376pt;}
.y84d_c00000{bottom:358.347419pt;}
.y63c_c00000{bottom:358.347435pt;}
.ydb6_c00000{bottom:358.347560pt;}
.y464_c00000{bottom:358.427235pt;}
.ye9_c00000{bottom:358.507067pt;}
.y45f_c00000{bottom:358.747067pt;}
.y618_c00000{bottom:358.907067pt;}
.y8aa_c00000{bottom:358.907200pt;}
.y409_c00000{bottom:358.987067pt;}
.y37c_c00000{bottom:359.307067pt;}
.ye36_c00000{bottom:359.467067pt;}
.y7df_c00000{bottom:359.627067pt;}
.y2ca_c00000{bottom:359.707067pt;}
.ya22_c00000{bottom:359.707200pt;}
.y4bc_c00000{bottom:359.787067pt;}
.y7a9_c00000{bottom:359.947067pt;}
.y738_c00000{bottom:360.267216pt;}
.ya1f_c00000{bottom:360.347067pt;}
.ya88_c00000{bottom:360.427067pt;}
.y492_c00000{bottom:360.507067pt;}
.yb73_c00000{bottom:360.587067pt;}
.yf8a_c00000{bottom:360.747067pt;}
.yff1_c00000{bottom:360.827067pt;}
.ybe0_c00000{bottom:360.827368pt;}
.y70e_c00000{bottom:360.907067pt;}
.y9d7_c00000{bottom:361.227067pt;}
.y5e9_c00000{bottom:361.307067pt;}
.yf4b_c00000{bottom:361.387067pt;}
.ye9a_c00000{bottom:361.389491pt;}
.ydf8_c00000{bottom:361.627200pt;}
.yaee_c00000{bottom:361.787784pt;}
.y756_c00000{bottom:361.947067pt;}
.yefd_c00000{bottom:362.107067pt;}
.ycd3_c00000{bottom:362.187067pt;}
.y114f_c00000{bottom:362.347067pt;}
.yb4a_c00000{bottom:362.667067pt;}
.y4fd_c00000{bottom:362.747067pt;}
.ya2e_c00000{bottom:362.827619pt;}
.yda7_c00000{bottom:362.827875pt;}
.y7b6_c00000{bottom:362.907200pt;}
.yd76_c00000{bottom:363.067200pt;}
.y908_c00000{bottom:363.307067pt;}
.ybb9_c00000{bottom:363.547067pt;}
.yb8a_c00000{bottom:363.867200pt;}
.y8b_c00000{bottom:364.026256pt;}
.y797_c00000{bottom:364.027067pt;}
.y59_c00000{bottom:364.107067pt;}
.y51b_c00000{bottom:364.267067pt;}
.y212_c00000{bottom:364.347067pt;}
.y3f8_c00000{bottom:364.427067pt;}
.y23b_c00000{bottom:364.586515pt;}
.y8cf_c00000{bottom:364.667067pt;}
.y1134_c00000{bottom:364.747067pt;}
.y66e_c00000{bottom:364.827067pt;}
.y562_c00000{bottom:364.987067pt;}
.ybeb_c00000{bottom:365.067067pt;}
.ye4c_c00000{bottom:365.067200pt;}
.y356_c00000{bottom:365.227067pt;}
.y7f0_c00000{bottom:365.307067pt;}
.y942_c00000{bottom:365.547552pt;}
.yf43_c00000{bottom:365.787875pt;}
.y6f0_c00000{bottom:366.027200pt;}
.yf74_c00000{bottom:366.107200pt;}
.y31e_c00000{bottom:366.347067pt;}
.y6f3_c00000{bottom:366.427067pt;}
.y222_c00000{bottom:366.587067pt;}
.y49e_c00000{bottom:366.747067pt;}
.y9ee_c00000{bottom:366.827200pt;}
.yc8e_c00000{bottom:366.907067pt;}
.yad5_c00000{bottom:366.987200pt;}
.y9c7_c00000{bottom:367.067067pt;}
.y8c1_c00000{bottom:367.067200pt;}
.y1120_c00000{bottom:367.227067pt;}
.y3da_c00000{bottom:367.307067pt;}
.y5c7_c00000{bottom:367.947067pt;}
.y102e_c00000{bottom:368.267067pt;}
.yd68_c00000{bottom:368.347067pt;}
.y92d_c00000{bottom:368.347515pt;}
.yfa0_c00000{bottom:368.587067pt;}
.y137_c00000{bottom:368.747200pt;}
.yab1_c00000{bottom:368.825867pt;}
.y8e2_c00000{bottom:368.907067pt;}
.y8b6_c00000{bottom:369.306251pt;}
.y2d8_c00000{bottom:369.307067pt;}
.y1045_c00000{bottom:369.547067pt;}
.y206_c00000{bottom:369.627067pt;}
.yd03_c00000{bottom:369.947067pt;}
.y57b_c00000{bottom:370.027067pt;}
.yeb7_c00000{bottom:370.187067pt;}
.ye09_c00000{bottom:370.187611pt;}
.yc79_c00000{bottom:370.347067pt;}
.ya72_c00000{bottom:370.587067pt;}
.y11ac_c00000{bottom:370.667067pt;}
.y1001_c00000{bottom:370.747067pt;}
.y6b6_c00000{bottom:370.747200pt;}
.yc4a_c00000{bottom:370.827515pt;}
.yb9_c00000{bottom:371.067067pt;}
.y287_c00000{bottom:371.227067pt;}
.y4e0_c00000{bottom:371.307067pt;}
.y85b_c00000{bottom:371.467067pt;}
.ycba_c00000{bottom:371.627067pt;}
.y2f8_c00000{bottom:371.867067pt;}
.y1039_c00000{bottom:372.107067pt;}
.y1027_c00000{bottom:372.107200pt;}
.yd9a_c00000{bottom:372.266891pt;}
.y39a_c00000{bottom:372.267067pt;}
.y1cd_c00000{bottom:372.347067pt;}
.yc1f_c00000{bottom:372.507200pt;}
.yb2c_c00000{bottom:372.587067pt;}
.ya0c_c00000{bottom:373.067200pt;}
.y9af_c00000{bottom:373.147067pt;}
.y6ca_c00000{bottom:373.307067pt;}
.y7bb_c00000{bottom:373.387067pt;}
.y6d9_c00000{bottom:373.627067pt;}
.yabb_c00000{bottom:373.707243pt;}
.y834_c00000{bottom:373.707368pt;}
.y84c_c00000{bottom:373.707411pt;}
.y63b_c00000{bottom:373.707427pt;}
.ydb5_c00000{bottom:373.707552pt;}
.y429_c00000{bottom:373.787067pt;}
.y5f4_c00000{bottom:374.267067pt;}
.y32c_c00000{bottom:374.347067pt;}
.y10c6_c00000{bottom:374.507067pt;}
.y914_c00000{bottom:374.667067pt;}
.ye16_c00000{bottom:374.987067pt;}
.y103b_c00000{bottom:375.067200pt;}
.yc12_c00000{bottom:375.147067pt;}
.yc5c_c00000{bottom:375.387067pt;}
.yb5e_c00000{bottom:375.467067pt;}
.yd15_c00000{bottom:375.627067pt;}
.y737_c00000{bottom:375.627208pt;}
.y1019_c00000{bottom:375.627664pt;}
.yc9c_c00000{bottom:375.867200pt;}
.y77b_c00000{bottom:376.107200pt;}
.y88c_c00000{bottom:376.507067pt;}
.yd54_c00000{bottom:376.587067pt;}
.yd29_c00000{bottom:376.667067pt;}
.ye8_c00000{bottom:376.827067pt;}
.yfc4_c00000{bottom:376.907067pt;}
.y7ca_c00000{bottom:376.987067pt;}
.y2eb_c00000{bottom:377.067067pt;}
.y99a_c00000{bottom:377.067200pt;}
.y6ac_c00000{bottom:377.067291pt;}
.y276_c00000{bottom:377.307067pt;}
.y801_c00000{bottom:377.627067pt;}
.y592_c00000{bottom:378.027067pt;}
.yd43_c00000{bottom:378.107067pt;}
.ycf7_c00000{bottom:378.107200pt;}
.y1167_c00000{bottom:378.187067pt;}
.ya2d_c00000{bottom:378.187611pt;}
.y3be_c00000{bottom:378.267067pt;}
.ya9a_c00000{bottom:378.347067pt;}
.y5b0_c00000{bottom:378.427067pt;}
.y11a3_c00000{bottom:378.507067pt;}
.y11b7_c00000{bottom:378.667200pt;}
.y10af_c00000{bottom:378.747067pt;}
.y60a_c00000{bottom:378.827067pt;}
.y89d_c00000{bottom:378.907067pt;}
.yf96_c00000{bottom:378.907200pt;}
.ydea_c00000{bottom:379.067200pt;}
.y81c_c00000{bottom:379.147067pt;}
.y78c_c00000{bottom:379.387067pt;}
.y1a6_c00000{bottom:379.467067pt;}
.y75d_c00000{bottom:379.627067pt;}
.y3f7_c00000{bottom:379.707067pt;}
.yfac_c00000{bottom:379.787067pt;}
.y1055_c00000{bottom:380.027067pt;}
.y37b_c00000{bottom:380.267067pt;}
.y5d7_c00000{bottom:380.347067pt;}
.yda1_c00000{bottom:380.508459pt;}
.y7de_c00000{bottom:380.587067pt;}
.ye99_c00000{bottom:380.589851pt;}
.y2c9_c00000{bottom:380.747067pt;}
.y941_c00000{bottom:380.827384pt;}
.yaed_c00000{bottom:381.067200pt;}
.yf3c_c00000{bottom:381.227067pt;}
.ya87_c00000{bottom:381.387067pt;}
.y491_c00000{bottom:381.547067pt;}
.y630_c00000{bottom:381.627067pt;}
.yf89_c00000{bottom:381.787067pt;}
.yff0_c00000{bottom:381.867067pt;}
.yee7_c00000{bottom:382.027067pt;}
.yda6_c00000{bottom:382.028235pt;}
.y9d6_c00000{bottom:382.187067pt;}
.y5e8_c00000{bottom:382.347067pt;}
.ydf7_c00000{bottom:382.667200pt;}
.y7a8_c00000{bottom:382.827200pt;}
.yefc_c00000{bottom:383.067067pt;}
.ycd2_c00000{bottom:383.147067pt;}
.ybd7_c00000{bottom:383.147200pt;}
.y114e_c00000{bottom:383.387067pt;}
.y58_c00000{bottom:383.547067pt;}
.yb01_c00000{bottom:383.627067pt;}
.y1107_c00000{bottom:383.707067pt;}
.y4fc_c00000{bottom:383.787067pt;}
.y7b5_c00000{bottom:383.867200pt;}
.y5c6_c00000{bottom:383.947067pt;}
.y1061_c00000{bottom:384.347067pt;}
.yaca_c00000{bottom:384.427067pt;}
.ybb8_c00000{bottom:384.587067pt;}
.yb9e_c00000{bottom:384.827067pt;}
.y862_c00000{bottom:384.827200pt;}
.y755_c00000{bottom:384.907200pt;}
.y117b_c00000{bottom:384.987067pt;}
.yf42_c00000{bottom:385.067291pt;}
.y211_c00000{bottom:385.307067pt;}
.yeca_c00000{bottom:385.387067pt;}
.ye08_c00000{bottom:385.547603pt;}
.y8ce_c00000{bottom:385.707067pt;}
.y112_c00000{bottom:385.707304pt;}
.ye6a_c00000{bottom:385.787067pt;}
.ya4f_c00000{bottom:385.867067pt;}
.y561_c00000{bottom:386.027067pt;}
.ybea_c00000{bottom:386.107067pt;}
.y8a_c00000{bottom:386.107339pt;}
.y355_c00000{bottom:386.187067pt;}
.y7ef_c00000{bottom:386.267067pt;}
.y159_c00000{bottom:386.827067pt;}
.yf67_c00000{bottom:386.907067pt;}
.y6ef_c00000{bottom:387.067200pt;}
.y106a_c00000{bottom:387.147200pt;}
.yed2_c00000{bottom:387.387067pt;}
.yf0c_c00000{bottom:387.467067pt;}
.y92c_c00000{bottom:387.547875pt;}
.y45e_c00000{bottom:387.787067pt;}
.y9ed_c00000{bottom:387.867200pt;}
.yc8d_c00000{bottom:387.947067pt;}
.y8c0_c00000{bottom:388.027200pt;}
.y9c6_c00000{bottom:388.107067pt;}
.y8a9_c00000{bottom:388.107200pt;}
.y3d9_c00000{bottom:388.267067pt;}
.y697_c00000{bottom:388.347067pt;}
.ybfe_c00000{bottom:388.507067pt;}
.ya21_c00000{bottom:388.747200pt;}
.y109c_c00000{bottom:388.827067pt;}
.yaba_c00000{bottom:388.987075pt;}
.y84b_c00000{bottom:388.987243pt;}
.y63a_c00000{bottom:388.987259pt;}
.ydb4_c00000{bottom:388.987384pt;}
.ya1e_c00000{bottom:389.387067pt;}
.yb8_c00000{bottom:389.467067pt;}
.yf9f_c00000{bottom:389.547067pt;}
.y463_c00000{bottom:389.627067pt;}
.y70d_c00000{bottom:389.947067pt;}
.yc49_c00000{bottom:390.027875pt;}
.y6a1_c00000{bottom:390.347067pt;}
.yf4a_c00000{bottom:390.427067pt;}
.y1044_c00000{bottom:390.507067pt;}
.y52f_c00000{bottom:390.587067pt;}
.y205_c00000{bottom:390.667067pt;}
.yd02_c00000{bottom:390.907067pt;}
.yd75_c00000{bottom:391.067200pt;}
.yeb6_c00000{bottom:391.147067pt;}
.y1012_c00000{bottom:391.227067pt;}
.ya71_c00000{bottom:391.627067pt;}
.yb49_c00000{bottom:391.707067pt;}
.y1000_c00000{bottom:391.787067pt;}
.yca5_c00000{bottom:391.787875pt;}
.ye59_c00000{bottom:392.107067pt;}
.y286_c00000{bottom:392.187067pt;}
.y4df_c00000{bottom:392.267067pt;}
.y331_c00000{bottom:392.334107pt;}
.y184_c00000{bottom:392.335651pt;}
.y907_c00000{bottom:392.347067pt;}
.y85a_c00000{bottom:392.507067pt;}
.ycb9_c00000{bottom:392.587067pt;}
.yb89_c00000{bottom:392.907067pt;}
.y796_c00000{bottom:393.067067pt;}
.y1026_c00000{bottom:393.067200pt;}
.y1cc_c00000{bottom:393.307067pt;}
.yb2b_c00000{bottom:393.547067pt;}
.ya2c_c00000{bottom:393.547603pt;}
.y66d_c00000{bottom:393.787067pt;}
.ye4b_c00000{bottom:394.027200pt;}
.ya0b_c00000{bottom:394.107200pt;}
.y9ae_c00000{bottom:394.187067pt;}
.y6c9_c00000{bottom:394.267067pt;}
.yab0_c00000{bottom:394.346139pt;}
.y6f2_c00000{bottom:394.427664pt;}
.y6d8_c00000{bottom:394.587067pt;}
.y7a4_c00000{bottom:394.667067pt;}
.y428_c00000{bottom:394.747067pt;}
.y8b5_c00000{bottom:394.826523pt;}
.y621_c00000{bottom:394.987200pt;}
.ye7_c00000{bottom:395.067067pt;}
.y3f6_c00000{bottom:395.067200pt;}
.y31d_c00000{bottom:395.387067pt;}
.y136_c00000{bottom:395.467184pt;}
.y10c5_c00000{bottom:395.547067pt;}
.y913_c00000{bottom:395.627067pt;}
.y49d_c00000{bottom:395.787067pt;}
.yad4_c00000{bottom:396.027067pt;}
.yc11_c00000{bottom:396.187067pt;}
.y940_c00000{bottom:396.187376pt;}
.y6ab_c00000{bottom:396.267651pt;}
.yd14_c00000{bottom:396.667067pt;}
.y736_c00000{bottom:396.987200pt;}
.y77a_c00000{bottom:397.067067pt;}
.y23a_c00000{bottom:397.146867pt;}
.ye15_c00000{bottom:397.307067pt;}
.y88b_c00000{bottom:397.547067pt;}
.yd28_c00000{bottom:397.627067pt;}
.yfc3_c00000{bottom:397.867067pt;}
.y7c9_c00000{bottom:398.027067pt;}
.y999_c00000{bottom:398.107200pt;}
.y221_c00000{bottom:398.347067pt;}
.y6b5_c00000{bottom:398.667067pt;}
.yc1e_c00000{bottom:398.907200pt;}
.y57a_c00000{bottom:399.067067pt;}
.ybdf_c00000{bottom:399.067200pt;}
.y1166_c00000{bottom:399.227067pt;}
.ya99_c00000{bottom:399.307067pt;}
.yd99_c00000{bottom:399.547067pt;}
.y10ae_c00000{bottom:399.787067pt;}
.yda0_c00000{bottom:399.787875pt;}
.yf50_c00000{bottom:399.867067pt;}
.ye98_c00000{bottom:399.869267pt;}
.y89c_c00000{bottom:399.947067pt;}
.y5c5_c00000{bottom:399.947200pt;}
.yb72_c00000{bottom:400.027067pt;}
.y81b_c00000{bottom:400.107067pt;}
.yde9_c00000{bottom:400.107200pt;}
.y78b_c00000{bottom:400.347067pt;}
.y1a5_c00000{bottom:400.507067pt;}
.yfab_c00000{bottom:400.747067pt;}
.ye07_c00000{bottom:400.827435pt;}
.y1054_c00000{bottom:401.067067pt;}
.yffa_c00000{bottom:401.227067pt;}
.y258_c00000{bottom:401.307067pt;}
.yda5_c00000{bottom:401.307651pt;}
.y2f7_c00000{bottom:401.626648pt;}
.y7dd_c00000{bottom:401.627067pt;}
.y2c8_c00000{bottom:401.787067pt;}
.yd83_c00000{bottom:402.107200pt;}
.y10eb_c00000{bottom:402.267067pt;}
.ya86_c00000{bottom:402.427067pt;}
.y490_c00000{bottom:402.507067pt;}
.y62f_c00000{bottom:402.587067pt;}
.yf88_c00000{bottom:402.747067pt;}
.yfef_c00000{bottom:402.827067pt;}
.y57_c00000{bottom:402.987067pt;}
.y9d5_c00000{bottom:403.227067pt;}
.y32b_c00000{bottom:403.387067pt;}
.ydf6_c00000{bottom:403.627200pt;}
.yefb_c00000{bottom:404.107067pt;}
.ycd1_c00000{bottom:404.187067pt;}
.ybd6_c00000{bottom:404.187200pt;}
.yf41_c00000{bottom:404.267651pt;}
.yc5b_c00000{bottom:404.347067pt;}
.y84a_c00000{bottom:404.347235pt;}
.y639_c00000{bottom:404.347251pt;}
.ydb3_c00000{bottom:404.347376pt;}
.y95d_c00000{bottom:404.347619pt;}
.yb5d_c00000{bottom:404.507067pt;}
.y1106_c00000{bottom:404.667067pt;}
.y4fb_c00000{bottom:404.827067pt;}
.y7b4_c00000{bottom:404.907067pt;}
.yc9b_c00000{bottom:404.907200pt;}
.y3f5_c00000{bottom:404.987067pt;}
.y1116_c00000{bottom:405.387067pt;}
.yac9_c00000{bottom:405.467067pt;}
.ybb7_c00000{bottom:405.627067pt;}
.yb9d_c00000{bottom:405.787067pt;}
.y117a_c00000{bottom:406.027067pt;}
.ybce_c00000{bottom:406.107067pt;}
.y51a_c00000{bottom:406.267067pt;}
.y231_c00000{bottom:406.347067pt;}
.yec9_c00000{bottom:406.427067pt;}
.y8cd_c00000{bottom:406.667067pt;}
.y1133_c00000{bottom:406.747067pt;}
.ya4e_c00000{bottom:406.827067pt;}
.y92b_c00000{bottom:406.827291pt;}
.y735_c00000{bottom:406.907067pt;}
.yfce_c00000{bottom:406.987067pt;}
.y560_c00000{bottom:407.067067pt;}
.ycf6_c00000{bottom:407.067200pt;}
.y2ea_c00000{bottom:407.227067pt;}
.y111_c00000{bottom:407.227184pt;}
.y3bd_c00000{bottom:407.307067pt;}
.y5af_c00000{bottom:407.467067pt;}
.y609_c00000{bottom:407.707067pt;}
.y158_c00000{bottom:407.787067pt;}
.yb7_c00000{bottom:407.867067pt;}
.yf73_c00000{bottom:408.107200pt;}
.yf1a_c00000{bottom:408.267651pt;}
.yed1_c00000{bottom:408.427067pt;}
.y1006_c00000{bottom:408.667067pt;}
.y45d_c00000{bottom:408.747067pt;}
.y9ec_c00000{bottom:408.827067pt;}
.ya2b_c00000{bottom:408.827435pt;}
.yc8c_c00000{bottom:408.907067pt;}
.y9c5_c00000{bottom:409.067067pt;}
.y8bf_c00000{bottom:409.067200pt;}
.y111f_c00000{bottom:409.227067pt;}
.y3d8_c00000{bottom:409.307067pt;}
.yc48_c00000{bottom:409.307291pt;}
.y696_c00000{bottom:409.387067pt;}
.ybfd_c00000{bottom:409.467067pt;}
.y620_c00000{bottom:410.347067pt;}
.y440_c00000{bottom:410.427067pt;}
.y514_c00000{bottom:410.507067pt;}
.yf9e_c00000{bottom:410.587067pt;}
.y89_c00000{bottom:410.667067pt;}
.y70c_c00000{bottom:410.907067pt;}
.yca4_c00000{bottom:411.067291pt;}
.yf3f_c00000{bottom:411.227067pt;}
.y5e7_c00000{bottom:411.387067pt;}
.y93f_c00000{bottom:411.467208pt;}
.y1043_c00000{bottom:411.547067pt;}
.y204_c00000{bottom:411.627067pt;}
.yd01_c00000{bottom:411.947067pt;}
.yeb5_c00000{bottom:412.187067pt;}
.y114d_c00000{bottom:412.347067pt;}
.ya70_c00000{bottom:412.587067pt;}
.yb48_c00000{bottom:412.667067pt;}
.yfff_c00000{bottom:412.747067pt;}
.y861_c00000{bottom:412.827200pt;}
.y1060_c00000{bottom:412.827875pt;}
.ye58_c00000{bottom:413.067067pt;}
.y285_c00000{bottom:413.227067pt;}
.y4de_c00000{bottom:413.307067pt;}
.y981_c00000{bottom:413.387067pt;}
.y859_c00000{bottom:413.467067pt;}
.ye6_c00000{bottom:413.627067pt;}
.yb88_c00000{bottom:413.867067pt;}
.y1038_c00000{bottom:414.107067pt;}
.y1025_c00000{bottom:414.107200pt;}
.y471_c00000{bottom:414.267067pt;}
.y1cb_c00000{bottom:414.347067pt;}
.yb2a_c00000{bottom:414.587067pt;}
.y66c_c00000{bottom:414.827067pt;}
.yae3_c00000{bottom:415.067200pt;}
.y7ee_c00000{bottom:415.307067pt;}
.y6aa_c00000{bottom:415.547067pt;}
.y7a3_c00000{bottom:415.707067pt;}
.y427_c00000{bottom:415.787067pt;}
.y5c4_c00000{bottom:415.947200pt;}
.y6ee_c00000{bottom:416.027200pt;}
.y1069_c00000{bottom:416.107200pt;}
.ye06_c00000{bottom:416.187427pt;}
.y725_c00000{bottom:416.347067pt;}
.y10c4_c00000{bottom:416.587067pt;}
.y912_c00000{bottom:416.667067pt;}
.ya20_c00000{bottom:416.747200pt;}
.y6f1_c00000{bottom:416.907200pt;}
.yad3_c00000{bottom:416.987067pt;}
.yc10_c00000{bottom:417.147067pt;}
.yd13_c00000{bottom:417.627067pt;}
.y109b_c00000{bottom:417.867067pt;}
.y779_c00000{bottom:418.107067pt;}
.y102d_c00000{bottom:418.267067pt;}
.yb71_c00000{bottom:418.427067pt;}
.y88a_c00000{bottom:418.507067pt;}
.yd53_c00000{bottom:418.587067pt;}
.yd27_c00000{bottom:418.667067pt;}
.yfc2_c00000{bottom:418.907067pt;}
.y7c8_c00000{bottom:419.067067pt;}
.yd9f_c00000{bottom:419.067291pt;}
.ye97_c00000{bottom:419.148683pt;}
.y275_c00000{bottom:419.387067pt;}
.y52e_c00000{bottom:419.627067pt;}
.y638_c00000{bottom:419.627083pt;}
.ydb2_c00000{bottom:419.627208pt;}
.y95c_c00000{bottom:419.627451pt;}
.y43f_c00000{bottom:419.707208pt;}
.yaaf_c00000{bottom:419.866411pt;}
.y579_c00000{bottom:420.027067pt;}
.yd42_c00000{bottom:420.107067pt;}
.y1165_c00000{bottom:420.187067pt;}
.y61f_c00000{bottom:420.267067pt;}
.y8b4_c00000{bottom:420.346795pt;}
.ya98_c00000{bottom:420.347067pt;}
.yda4_c00000{bottom:420.587067pt;}
.y906_c00000{bottom:420.829491pt;}
.y89b_c00000{bottom:420.907067pt;}
.ye14_c00000{bottom:420.987067pt;}
.yde8_c00000{bottom:421.067200pt;}
.y81a_c00000{bottom:421.147067pt;}
.y78a_c00000{bottom:421.387067pt;}
.y1a4_c00000{bottom:421.467067pt;}
.ycb8_c00000{bottom:421.627067pt;}
.yfaa_c00000{bottom:421.787067pt;}
.ye4a_c00000{bottom:421.947200pt;}
.y1053_c00000{bottom:422.027067pt;}
.y795_c00000{bottom:422.107067pt;}
.y37a_c00000{bottom:422.267067pt;}
.y257_c00000{bottom:422.347067pt;}
.y56_c00000{bottom:422.427067pt;}
.y7dc_c00000{bottom:422.587067pt;}
.y2c7_c00000{bottom:422.747067pt;}
.y4bb_c00000{bottom:422.827067pt;}
.ye35_c00000{bottom:422.907067pt;}
.ya0a_c00000{bottom:423.067067pt;}
.yd82_c00000{bottom:423.067200pt;}
.y9ad_c00000{bottom:423.147067pt;}
.y10ea_c00000{bottom:423.227067pt;}
.y6c8_c00000{bottom:423.307067pt;}
.ya85_c00000{bottom:423.387067pt;}
.yf40_c00000{bottom:423.547067pt;}
.y62e_c00000{bottom:423.627067pt;}
.yf87_c00000{bottom:423.787067pt;}
.yfee_c00000{bottom:423.867067pt;}
.ya2a_c00000{bottom:424.187427pt;}
.y9d4_c00000{bottom:424.267067pt;}
.y49c_c00000{bottom:424.268099pt;}
.y31c_c00000{bottom:424.347067pt;}
.ydf5_c00000{bottom:424.667200pt;}
.yc1d_c00000{bottom:424.667208pt;}
.y135_c00000{bottom:424.907200pt;}
.yefa_c00000{bottom:425.067067pt;}
.ybd5_c00000{bottom:425.147200pt;}
.ycd0_c00000{bottom:425.227067pt;}
.yc5a_c00000{bottom:425.387067pt;}
.y849_c00000{bottom:425.627067pt;}
.y7b3_c00000{bottom:425.867067pt;}
.y92a_c00000{bottom:426.106707pt;}
.yb6_c00000{bottom:426.267067pt;}
.y1115_c00000{bottom:426.347067pt;}
.yac8_c00000{bottom:426.427067pt;}
.ybb6_c00000{bottom:426.587067pt;}
.yb9c_c00000{bottom:426.827067pt;}
.y93e_c00000{bottom:426.827200pt;}
.y1179_c00000{bottom:426.987067pt;}
.ybcd_c00000{bottom:427.067067pt;}
.y2d7_c00000{bottom:427.227067pt;}
.y519_c00000{bottom:427.307067pt;}
.y220_c00000{bottom:427.387067pt;}
.yf19_c00000{bottom:427.547067pt;}
.y8cc_c00000{bottom:427.707067pt;}
.y1132_c00000{bottom:427.787067pt;}
.ya4d_c00000{bottom:427.867067pt;}
.y1090_c00000{bottom:427.867200pt;}
.y55f_c00000{bottom:428.027067pt;}
.ybe9_c00000{bottom:428.107067pt;}
.y3bc_c00000{bottom:428.267067pt;}
.y833_c00000{bottom:428.347067pt;}
.yc47_c00000{bottom:428.586707pt;}
.y608_c00000{bottom:428.667067pt;}
.y10ad_c00000{bottom:428.747067pt;}
.y157_c00000{bottom:428.827067pt;}
.yf66_c00000{bottom:428.907067pt;}
.yf72_c00000{bottom:429.067200pt;}
.yed0_c00000{bottom:429.387067pt;}
.y239_c00000{bottom:429.627067pt;}
.y45c_c00000{bottom:429.787067pt;}
.y9eb_c00000{bottom:429.867067pt;}
.yc8b_c00000{bottom:429.947067pt;}
.y9c4_c00000{bottom:430.107067pt;}
.y3d7_c00000{bottom:430.267067pt;}
.yca3_c00000{bottom:430.267651pt;}
.y695_c00000{bottom:430.347067pt;}
.ybfc_c00000{bottom:430.507067pt;}
.ya1d_c00000{bottom:431.387067pt;}
.y48f_c00000{bottom:431.547067pt;}
.ye05_c00000{bottom:431.547419pt;}
.yf9d_c00000{bottom:431.627067pt;}
.y70b_c00000{bottom:431.947067pt;}
.y5c3_c00000{bottom:431.947200pt;}
.ye5_c00000{bottom:432.027067pt;}
.y105f_c00000{bottom:432.028235pt;}
.y32a_c00000{bottom:432.347067pt;}
.yf49_c00000{bottom:432.427067pt;}
.y1042_c00000{bottom:432.587067pt;}
.y203_c00000{bottom:432.667067pt;}
.yb5c_c00000{bottom:432.908683pt;}
.yd00_c00000{bottom:432.987067pt;}
.yeb4_c00000{bottom:433.147067pt;}
.y1011_c00000{bottom:433.227067pt;}
.y114c_c00000{bottom:433.387067pt;}
.ya6f_c00000{bottom:433.627067pt;}
.yb47_c00000{bottom:433.707067pt;}
.y4fa_c00000{bottom:433.787067pt;}
.yc9a_c00000{bottom:433.867200pt;}
.y2f6_c00000{bottom:434.106848pt;}
.ye57_c00000{bottom:434.107067pt;}
.y2a9_c00000{bottom:434.187067pt;}
.y284_c00000{bottom:434.267067pt;}
.y980_c00000{bottom:434.347067pt;}
.y88_c00000{bottom:434.507259pt;}
.yb87_c00000{bottom:434.907067pt;}
.y637_c00000{bottom:434.987075pt;}
.ycea_c00000{bottom:434.987251pt;}
.y95b_c00000{bottom:434.987443pt;}
.y1037_c00000{bottom:435.067067pt;}
.y1024_c00000{bottom:435.067200pt;}
.y330_c00000{bottom:435.215915pt;}
.y183_c00000{bottom:435.295915pt;}
.y408_c00000{bottom:435.307067pt;}
.y1ca_c00000{bottom:435.387067pt;}
.yb29_c00000{bottom:435.547067pt;}
.ycf5_c00000{bottom:435.548459pt;}
.y66b_c00000{bottom:435.787067pt;}
.yae2_c00000{bottom:436.107067pt;}
.y354_c00000{bottom:436.267067pt;}
.y5ae_c00000{bottom:436.427067pt;}
.y7a2_c00000{bottom:436.667067pt;}
.y110_c00000{bottom:436.667200pt;}
.y426_c00000{bottom:436.827067pt;}
.y6ed_c00000{bottom:437.067200pt;}
.y2e9_c00000{bottom:437.387067pt;}
.yf0b_c00000{bottom:437.467067pt;}
.y10c3_c00000{bottom:437.547067pt;}
.y911_c00000{bottom:437.707067pt;}
.yaec_c00000{bottom:437.867067pt;}
.yad2_c00000{bottom:438.027067pt;}
.y8be_c00000{bottom:438.107200pt;}
.yc0f_c00000{bottom:438.187067pt;}
.yd9e_c00000{bottom:438.267651pt;}
.yc1a_c00000{bottom:438.347067pt;}
.ye96_c00000{bottom:438.428099pt;}
.yd12_c00000{bottom:438.667067pt;}
.y109a_c00000{bottom:438.827067pt;}
.y778_c00000{bottom:439.067067pt;}
.y102c_c00000{bottom:439.307067pt;}
.y889_c00000{bottom:439.547067pt;}
.ya29_c00000{bottom:439.547419pt;}
.yd26_c00000{bottom:439.627067pt;}
.yef2_c00000{bottom:439.707067pt;}
.yfc1_c00000{bottom:439.867067pt;}
.y7c7_c00000{bottom:440.027067pt;}
.yc1c_c00000{bottom:440.027200pt;}
.y905_c00000{bottom:440.029851pt;}
.y998_c00000{bottom:440.107067pt;}
.y544_c00000{bottom:440.267067pt;}
.y274_c00000{bottom:440.347067pt;}
.y52d_c00000{bottom:440.587067pt;}
.y800_c00000{bottom:440.667067pt;}
.y848_c00000{bottom:440.987200pt;}
.y578_c00000{bottom:441.067067pt;}
.y43e_c00000{bottom:441.067200pt;}
.yd41_c00000{bottom:441.147067pt;}
.y1164_c00000{bottom:441.227067pt;}
.ya97_c00000{bottom:441.387067pt;}
.y55_c00000{bottom:441.867067pt;}
.y89a_c00000{bottom:441.947067pt;}
.y819_c00000{bottom:442.107067pt;}
.yde7_c00000{bottom:442.107200pt;}
.ycf0_c00000{bottom:442.347067pt;}
.y1a3_c00000{bottom:442.507067pt;}
.yfa9_c00000{bottom:442.747067pt;}
.y1052_c00000{bottom:443.067067pt;}
.y379_c00000{bottom:443.307067pt;}
.y256_c00000{bottom:443.387067pt;}
.y49b_c00000{bottom:443.468459pt;}
.y2c6_c00000{bottom:443.787067pt;}
.ye69_c00000{bottom:443.867067pt;}
.y24_c00000{bottom:444.000000pt;}
.ya09_c00000{bottom:444.107067pt;}
.yd81_c00000{bottom:444.107200pt;}
.y9ac_c00000{bottom:444.187067pt;}
.y6c7_c00000{bottom:444.267067pt;}
.ya84_c00000{bottom:444.427067pt;}
.y62d_c00000{bottom:444.587067pt;}
.yb5_c00000{bottom:444.667067pt;}
.yf86_c00000{bottom:444.747067pt;}
.yfed_c00000{bottom:444.827067pt;}
.y9d3_c00000{bottom:445.227067pt;}
.yaae_c00000{bottom:445.306523pt;}
.y929_c00000{bottom:445.307067pt;}
.y31b_c00000{bottom:445.387067pt;}
.ydf4_c00000{bottom:445.707200pt;}
.y8b3_c00000{bottom:445.867067pt;}
.yef9_c00000{bottom:446.107067pt;}
.yccf_c00000{bottom:446.187067pt;}
.yc59_c00000{bottom:446.347067pt;}
.ye04_c00000{bottom:446.827251pt;}
.y7b2_c00000{bottom:446.907067pt;}
.y134_c00000{bottom:447.067339pt;}
.y1114_c00000{bottom:447.387067pt;}
.yac7_c00000{bottom:447.467067pt;}
.ybb5_c00000{bottom:447.627067pt;}
.yb9b_c00000{bottom:447.787067pt;}
.y5c2_c00000{bottom:447.947200pt;}
.ybcc_c00000{bottom:448.107067pt;}
.y230_c00000{bottom:448.347067pt;}
.yec8_c00000{bottom:448.427067pt;}
.y8cb_c00000{bottom:448.667067pt;}
.y1131_c00000{bottom:448.747067pt;}
.ya4c_c00000{bottom:448.827067pt;}
.yfcd_c00000{bottom:448.987067pt;}
.y55e_c00000{bottom:449.067067pt;}
.ybe8_c00000{bottom:449.147067pt;}
.y3bb_c00000{bottom:449.307067pt;}
.y832_c00000{bottom:449.387067pt;}
.yca2_c00000{bottom:449.547067pt;}
.y10ac_c00000{bottom:449.787067pt;}
.y156_c00000{bottom:449.867067pt;}
.ycb7_c00000{bottom:450.030779pt;}
.y789_c00000{bottom:450.347067pt;}
.yce9_c00000{bottom:450.347243pt;}
.y95a_c00000{bottom:450.347435pt;}
.ye4_c00000{bottom:450.427067pt;}
.y45b_c00000{bottom:450.827067pt;}
.y847_c00000{bottom:450.907067pt;}
.y43d_c00000{bottom:450.987067pt;}
.y794_c00000{bottom:451.067067pt;}
.y3d6_c00000{bottom:451.307067pt;}
.y105e_c00000{bottom:451.307651pt;}
.y6a4_c00000{bottom:451.387067pt;}
.ybfb_c00000{bottom:451.467067pt;}
.y7db_c00000{bottom:451.627067pt;}
.yf22_c00000{bottom:451.867067pt;}
.yb5b_c00000{bottom:452.188099pt;}
.ya1c_c00000{bottom:452.347067pt;}
.y513_c00000{bottom:452.507067pt;}
.yc6f_c00000{bottom:452.827067pt;}
.y70a_c00000{bottom:452.907067pt;}
.y5e6_c00000{bottom:453.387067pt;}
.y202_c00000{bottom:453.707067pt;}
.ycff_c00000{bottom:453.947067pt;}
.yeb3_c00000{bottom:454.187067pt;}
.ybd4_c00000{bottom:454.187200pt;}
.y114b_c00000{bottom:454.347067pt;}
.ya6e_c00000{bottom:454.587067pt;}
.yb46_c00000{bottom:454.667067pt;}
.yffe_c00000{bottom:454.747067pt;}
.y4f9_c00000{bottom:454.827067pt;}
.ya28_c00000{bottom:454.827251pt;}
.ycf4_c00000{bottom:454.827875pt;}
.ye56_c00000{bottom:455.067067pt;}
.y2a8_c00000{bottom:455.227067pt;}
.y4dd_c00000{bottom:455.307067pt;}
.y97f_c00000{bottom:455.387067pt;}
.y8bd_c00000{bottom:455.867067pt;}
.y1178_c00000{bottom:456.027067pt;}
.y1036_c00000{bottom:456.107067pt;}
.y407_c00000{bottom:456.267067pt;}
.y1e6_c00000{bottom:456.347067pt;}
.y66a_c00000{bottom:456.827067pt;}
.y108f_c00000{bottom:456.827200pt;}
.yae1_c00000{bottom:457.147067pt;}
.y353_c00000{bottom:457.227067pt;}
.y7ed_c00000{bottom:457.307067pt;}
.yd9d_c00000{bottom:457.547067pt;}
.ye95_c00000{bottom:457.628459pt;}
.y7a1_c00000{bottom:457.707067pt;}
.y425_c00000{bottom:457.787067pt;}
.y607_c00000{bottom:457.867067pt;}
.y6ec_c00000{bottom:458.107067pt;}
.yecf_c00000{bottom:458.427067pt;}
.yf0a_c00000{bottom:458.507067pt;}
.y10c2_c00000{bottom:458.587067pt;}
.y910_c00000{bottom:458.667067pt;}
.yaeb_c00000{bottom:458.907067pt;}
.yad1_c00000{bottom:458.987067pt;}
.yc0e_c00000{bottom:459.147067pt;}
.y111e_c00000{bottom:459.227067pt;}
.y4c5_c00000{bottom:459.307067pt;}
.y904_c00000{bottom:459.309267pt;}
.y694_c00000{bottom:459.387067pt;}
.yd11_c00000{bottom:459.627067pt;}
.y1099_c00000{bottom:459.867067pt;}
.y48e_c00000{bottom:460.027515pt;}
.yf9c_c00000{bottom:460.587067pt;}
.yef1_c00000{bottom:460.667067pt;}
.yfc0_c00000{bottom:460.907067pt;}
.yee6_c00000{bottom:461.067067pt;}
.y997_c00000{bottom:461.147067pt;}
.y54_c00000{bottom:461.307067pt;}
.y273_c00000{bottom:461.387067pt;}
.y1041_c00000{bottom:461.547067pt;}
.y52c_c00000{bottom:461.627067pt;}
.y7ff_c00000{bottom:461.707067pt;}
.y577_c00000{bottom:462.027067pt;}
.yd40_c00000{bottom:462.107067pt;}
.y1163_c00000{bottom:462.187067pt;}
.ye03_c00000{bottom:462.187243pt;}
.ya96_c00000{bottom:462.347067pt;}
.y49a_c00000{bottom:462.747875pt;}
.yc1b_c00000{bottom:462.907200pt;}
.y899_c00000{bottom:462.987067pt;}
.yb4_c00000{bottom:463.067067pt;}
.y818_c00000{bottom:463.147067pt;}
.ycef_c00000{bottom:463.387067pt;}
.y1a2_c00000{bottom:463.467067pt;}
.yfa8_c00000{bottom:463.787067pt;}
.y5c1_c00000{bottom:463.947200pt;}
.y87_c00000{bottom:464.027427pt;}
.y1023_c00000{bottom:464.107067pt;}
.y378_c00000{bottom:464.267067pt;}
.y1c9_c00000{bottom:464.347067pt;}
.yb28_c00000{bottom:464.587067pt;}
.y2c5_c00000{bottom:464.747067pt;}
.y4ba_c00000{bottom:464.827067pt;}
.ya08_c00000{bottom:465.147067pt;}
.y9ab_c00000{bottom:465.227067pt;}
.y6c6_c00000{bottom:465.307067pt;}
.ya83_c00000{bottom:465.387067pt;}
.y5ad_c00000{bottom:465.467067pt;}
.y62c_c00000{bottom:465.627067pt;}
.yce8_c00000{bottom:465.627075pt;}
.y636_c00000{bottom:465.627083pt;}
.y959_c00000{bottom:465.627267pt;}
.yf85_c00000{bottom:465.787067pt;}
.y9d2_c00000{bottom:466.267067pt;}
.y31a_c00000{bottom:466.347067pt;}
.ydf3_c00000{bottom:466.667067pt;}
.y2f5_c00000{bottom:466.667200pt;}
.y1068_c00000{bottom:466.987200pt;}
.ycce_c00000{bottom:467.227067pt;}
.yc58_c00000{bottom:467.387067pt;}
.y2e8_c00000{bottom:467.467067pt;}
.y7b1_c00000{bottom:467.867067pt;}
.y777_c00000{bottom:468.107067pt;}
.y102b_c00000{bottom:468.267067pt;}
.y888_c00000{bottom:468.507067pt;}
.ybb4_c00000{bottom:468.587067pt;}
.yd25_c00000{bottom:468.667067pt;}
.ye3_c00000{bottom:468.827067pt;}
.y7c6_c00000{bottom:469.067067pt;}
.ybcb_c00000{bottom:469.147067pt;}
.y6a0_c00000{bottom:469.227067pt;}
.ycb6_c00000{bottom:469.310195pt;}
.y238_c00000{bottom:469.387067pt;}
.y8ca_c00000{bottom:469.707067pt;}
.y1130_c00000{bottom:469.787067pt;}
.yfcc_c00000{bottom:470.027067pt;}
.ye88_c00000{bottom:470.107067pt;}
.ya27_c00000{bottom:470.187243pt;}
.y3ba_c00000{bottom:470.267067pt;}
.y831_c00000{bottom:470.347067pt;}
.y858_c00000{bottom:470.507067pt;}
.y105d_c00000{bottom:470.587067pt;}
.y10ab_c00000{bottom:470.747067pt;}
.yaad_c00000{bottom:470.826795pt;}
.y155_c00000{bottom:470.827067pt;}
.yf65_c00000{bottom:470.907067pt;}
.yb5a_c00000{bottom:471.467515pt;}
.y133_c00000{bottom:471.627067pt;}
.y45a_c00000{bottom:471.787067pt;}
.y9ea_c00000{bottom:471.867067pt;}
.y10fc_c00000{bottom:471.947067pt;}
.y1051_c00000{bottom:472.027067pt;}
.ybd3_c00000{bottom:472.027235pt;}
.y9c3_c00000{bottom:472.107067pt;}
.y3d5_c00000{bottom:472.267067pt;}
.y255_c00000{bottom:472.347067pt;}
.ybfa_c00000{bottom:472.507067pt;}
.y10d7_c00000{bottom:472.587067pt;}
.y928_c00000{bottom:473.147067pt;}
.ya1b_c00000{bottom:473.387067pt;}
.y512_c00000{bottom:473.547067pt;}
.yfec_c00000{bottom:473.867067pt;}
.y709_c00000{bottom:473.947067pt;}
.ycf3_c00000{bottom:474.028235pt;}
.y5e5_c00000{bottom:474.347067pt;}
.yf48_c00000{bottom:474.427067pt;}
.y10f_c00000{bottom:474.827067pt;}
.ycfe_c00000{bottom:474.987067pt;}
.yeb2_c00000{bottom:475.147067pt;}
.yf5a_c00000{bottom:475.227067pt;}
.y114a_c00000{bottom:475.387067pt;}
.ya6d_c00000{bottom:475.627067pt;}
.yb45_c00000{bottom:475.707067pt;}
.y4f8_c00000{bottom:475.787067pt;}
.yd52_c00000{bottom:476.029627pt;}
.y2a7_c00000{bottom:476.187067pt;}
.y4dc_c00000{bottom:476.267067pt;}
.y97e_c00000{bottom:476.347067pt;}
.yb86_c00000{bottom:476.907067pt;}
.ye94_c00000{bottom:476.907875pt;}
.y1177_c00000{bottom:477.067067pt;}
.y1035_c00000{bottom:477.147067pt;}
.y406_c00000{bottom:477.307067pt;}
.y1e5_c00000{bottom:477.387067pt;}
.ye02_c00000{bottom:477.547235pt;}
.y669_c00000{bottom:477.787067pt;}
.ya4b_c00000{bottom:477.867067pt;}
.yf4f_c00000{bottom:477.867075pt;}
.y55d_c00000{bottom:478.027067pt;}
.yae0_c00000{bottom:478.107067pt;}
.y32f_c00000{bottom:478.176179pt;}
.y182_c00000{bottom:478.256179pt;}
.y352_c00000{bottom:478.267067pt;}
.yf2d_c00000{bottom:478.347067pt;}
.y903_c00000{bottom:478.588683pt;}
.y424_c00000{bottom:478.827067pt;}
.y6eb_c00000{bottom:479.067067pt;}
.yf71_c00000{bottom:479.147067pt;}
.y48d_c00000{bottom:479.227875pt;}
.y788_c00000{bottom:479.387067pt;}
.yf09_c00000{bottom:479.467067pt;}
.y10c1_c00000{bottom:479.547067pt;}
.y90f_c00000{bottom:479.707067pt;}
.yaea_c00000{bottom:479.867067pt;}
.y5c0_c00000{bottom:479.947067pt;}
.y793_c00000{bottom:480.027067pt;}
.yc0d_c00000{bottom:480.187067pt;}
.y4c4_c00000{bottom:480.267067pt;}
.y693_c00000{bottom:480.347067pt;}
.yc99_c00000{bottom:480.666811pt;}
.y7da_c00000{bottom:480.667067pt;}
.y53_c00000{bottom:480.747067pt;}
.yf21_c00000{bottom:480.827067pt;}
.y635_c00000{bottom:480.987075pt;}
.y958_c00000{bottom:480.987259pt;}
.yb3_c00000{bottom:481.467067pt;}
.yf9b_c00000{bottom:481.627067pt;}
.yef0_c00000{bottom:481.707067pt;}
.yc6e_c00000{bottom:481.867067pt;}
.y499_c00000{bottom:482.027291pt;}
.y996_c00000{bottom:482.107067pt;}
.y104d_c00000{bottom:482.187067pt;}
.y543_c00000{bottom:482.267067pt;}
.y329_c00000{bottom:482.347067pt;}
.y52b_c00000{bottom:482.587067pt;}
.y201_c00000{bottom:482.667067pt;}
.y591_c00000{bottom:483.067067pt;}
.ya95_c00000{bottom:483.387067pt;}
.y898_c00000{bottom:483.947067pt;}
.y817_c00000{bottom:484.107067pt;}
.yb70_c00000{bottom:484.187067pt;}
.yf18_c00000{bottom:484.347067pt;}
.y1a1_c00000{bottom:484.507067pt;}
.yfa7_c00000{bottom:484.827067pt;}
.y1022_c00000{bottom:485.147067pt;}
.y377_c00000{bottom:485.307067pt;}
.y1c8_c00000{bottom:485.387067pt;}
.ya26_c00000{bottom:485.547235pt;}
.y2c4_c00000{bottom:485.787067pt;}
.ye68_c00000{bottom:485.867067pt;}
.ya07_c00000{bottom:486.107067pt;}
.y9aa_c00000{bottom:486.187067pt;}
.y7ec_c00000{bottom:486.267067pt;}
.y6c5_c00000{bottom:486.347067pt;}
.ya82_c00000{bottom:486.427067pt;}
.y6d7_c00000{bottom:486.587067pt;}
.y7a0_c00000{bottom:486.667067pt;}
.y606_c00000{bottom:486.827067pt;}
.yce7_c00000{bottom:486.987067pt;}
.ye2_c00000{bottom:487.227067pt;}
.ybd2_c00000{bottom:487.307067pt;}
.y319_c00000{bottom:487.387067pt;}
.ydf2_c00000{bottom:487.707067pt;}
.yccd_c00000{bottom:488.187067pt;}
.yc57_c00000{bottom:488.427067pt;}
.ycb5_c00000{bottom:488.589611pt;}
.y7b0_c00000{bottom:488.907067pt;}
.y776_c00000{bottom:489.147067pt;}
.y887_c00000{bottom:489.547067pt;}
.ybb3_c00000{bottom:489.627067pt;}
.yb9a_c00000{bottom:489.787067pt;}
.y7c5_c00000{bottom:490.027067pt;}
.ybca_c00000{bottom:490.107067pt;}
.y237_c00000{bottom:490.347067pt;}
.y7fe_c00000{bottom:490.667067pt;}
.yb59_c00000{bottom:490.667875pt;}
.y112f_c00000{bottom:490.747067pt;}
.y576_c00000{bottom:491.067067pt;}
.yd3f_c00000{bottom:491.147067pt;}
.y1162_c00000{bottom:491.227067pt;}
.y3b9_c00000{bottom:491.307067pt;}
.y830_c00000{bottom:491.387067pt;}
.y10aa_c00000{bottom:491.787067pt;}
.y154_c00000{bottom:491.867067pt;}
.ycee_c00000{bottom:492.347067pt;}
.ye01_c00000{bottom:492.827067pt;}
.y9e9_c00000{bottom:492.907067pt;}
.yb27_c00000{bottom:493.067875pt;}
.yf4e_c00000{bottom:493.227067pt;}
.y3d4_c00000{bottom:493.307067pt;}
.ycf2_c00000{bottom:493.307651pt;}
.y254_c00000{bottom:493.387067pt;}
.y86_c00000{bottom:493.467443pt;}
.y10d6_c00000{bottom:493.627067pt;}
.ya1a_c00000{bottom:494.347067pt;}
.y5ac_c00000{bottom:494.427067pt;}
.y511_c00000{bottom:494.587067pt;}
.yf84_c00000{bottom:494.747067pt;}
.yfeb_c00000{bottom:494.827067pt;}
.y708_c00000{bottom:494.907067pt;}
.yd51_c00000{bottom:495.309043pt;}
.y5e4_c00000{bottom:495.387067pt;}
.y132_c00000{bottom:495.467067pt;}
.ydb1_c00000{bottom:495.867067pt;}
.y5bf_c00000{bottom:495.947067pt;}
.yc98_c00000{bottom:496.026803pt;}
.yeb1_c00000{bottom:496.187067pt;}
.ye93_c00000{bottom:496.187291pt;}
.y102a_c00000{bottom:496.267067pt;}
.yaac_c00000{bottom:496.347067pt;}
.y957_c00000{bottom:496.347251pt;}
.y1149_c00000{bottom:496.427067pt;}
.ya6c_c00000{bottom:496.587067pt;}
.y11ab_c00000{bottom:496.667067pt;}
.y7aa_c00000{bottom:496.667235pt;}
.yb44_c00000{bottom:496.747067pt;}
.y4f7_c00000{bottom:496.827067pt;}
.yce6_c00000{bottom:496.907067pt;}
.y2a6_c00000{bottom:497.227067pt;}
.y4db_c00000{bottom:497.307067pt;}
.y97d_c00000{bottom:497.387067pt;}
.yac6_c00000{bottom:497.467067pt;}
.y2e7_c00000{bottom:497.627067pt;}
.y902_c00000{bottom:497.789043pt;}
.yb85_c00000{bottom:497.867067pt;}
.y1176_c00000{bottom:498.027067pt;}
.y470_c00000{bottom:498.267067pt;}
.y10e_c00000{bottom:498.347067pt;}
.yec7_c00000{bottom:498.427067pt;}
.y48c_c00000{bottom:498.507291pt;}
.ya4a_c00000{bottom:498.907067pt;}
.y55c_c00000{bottom:499.067067pt;}
.yadf_c00000{bottom:499.147067pt;}
.y351_c00000{bottom:499.227067pt;}
.yf2c_c00000{bottom:499.307067pt;}
.y423_c00000{bottom:499.787067pt;}
.yb2_c00000{bottom:499.867067pt;}
.y1050_c00000{bottom:500.027067pt;}
.y6ea_c00000{bottom:500.107067pt;}
.y52_c00000{bottom:500.187067pt;}
.yf08_c00000{bottom:500.507067pt;}
.y90e_c00000{bottom:500.667067pt;}
.y459_c00000{bottom:500.827067pt;}
.yae9_c00000{bottom:500.907067pt;}
.yc8a_c00000{bottom:500.987067pt;}
.yad0_c00000{bottom:501.067067pt;}
.y9c2_c00000{bottom:501.147067pt;}
.yc0c_c00000{bottom:501.227067pt;}
.y498_c00000{bottom:501.227651pt;}
.y3ea_c00000{bottom:501.307067pt;}
.y692_c00000{bottom:501.387067pt;}
.ybf9_c00000{bottom:501.467067pt;}
.yd73_c00000{bottom:501.867067pt;}
.y927_c00000{bottom:502.107200pt;}
.y634_c00000{bottom:502.347067pt;}
.yce5_c00000{bottom:502.587067pt;}
.yeef_c00000{bottom:502.667067pt;}
.yc6d_c00000{bottom:502.827067pt;}
.yfbf_c00000{bottom:502.907067pt;}
.y8e1_c00000{bottom:502.987067pt;}
.yef8_c00000{bottom:503.067067pt;}
.y542_c00000{bottom:503.307067pt;}
.y328_c00000{bottom:503.387067pt;}
.y52a_c00000{bottom:503.627067pt;}
.y200_c00000{bottom:503.707067pt;}
.ycfd_c00000{bottom:503.947067pt;}
.y590_c00000{bottom:504.027067pt;}
.ya94_c00000{bottom:504.347067pt;}
.yc46_c00000{bottom:504.587067pt;}
.yffd_c00000{bottom:504.747067pt;}
.y897_c00000{bottom:504.987067pt;}
.y816_c00000{bottom:505.147067pt;}
.yb6f_c00000{bottom:505.227067pt;}
.yf17_c00000{bottom:505.387067pt;}
.ye1_c00000{bottom:505.467067pt;}
.y1021_c00000{bottom:506.107067pt;}
.y399_c00000{bottom:506.267067pt;}
.y1c7_c00000{bottom:506.347067pt;}
.ybe7_c00000{bottom:506.588459pt;}
.y2c3_c00000{bottom:506.747067pt;}
.y4b9_c00000{bottom:506.827067pt;}
.ya06_c00000{bottom:507.147067pt;}
.y9a9_c00000{bottom:507.227067pt;}
.y6c4_c00000{bottom:507.307067pt;}
.ya81_c00000{bottom:507.467067pt;}
.ybd1_c00000{bottom:507.547067pt;}
.y6d6_c00000{bottom:507.627067pt;}
.y108e_c00000{bottom:507.707067pt;}
.ycb4_c00000{bottom:507.789971pt;}
.y605_c00000{bottom:507.867067pt;}
.y9d1_c00000{bottom:508.267067pt;}
.y724_c00000{bottom:508.347067pt;}
.y10c0_c00000{bottom:508.587067pt;}
.y792_c00000{bottom:509.067067pt;}
.yccc_c00000{bottom:509.227067pt;}
.yece_c00000{bottom:509.307067pt;}
.y7d9_c00000{bottom:509.627067pt;}
.y7af_c00000{bottom:509.947067pt;}
.yb58_c00000{bottom:509.947291pt;}
.y775_c00000{bottom:510.107067pt;}
.y886_c00000{bottom:510.587067pt;}
.yd24_c00000{bottom:510.667067pt;}
.yb99_c00000{bottom:510.827067pt;}
.y7c4_c00000{bottom:511.067067pt;}
.y995_c00000{bottom:511.147067pt;}
.yc97_c00000{bottom:511.386795pt;}
.y272_c00000{bottom:511.387067pt;}
.y956_c00000{bottom:511.627083pt;}
.y7fd_c00000{bottom:511.707067pt;}
.y112e_c00000{bottom:511.787067pt;}
.y5be_c00000{bottom:511.947067pt;}
.y575_c00000{bottom:512.027067pt;}
.yd3e_c00000{bottom:512.107067pt;}
.y3b8_c00000{bottom:512.267067pt;}
.yb26_c00000{bottom:512.268235pt;}
.ycf1_c00000{bottom:512.587067pt;}
.yf64_c00000{bottom:512.907067pt;}
.y1a0_c00000{bottom:513.547067pt;}
.yfa6_c00000{bottom:513.787067pt;}
.y9e8_c00000{bottom:513.867067pt;}
.y10fb_c00000{bottom:513.947067pt;}
.y376_c00000{bottom:514.267067pt;}
.y253_c00000{bottom:514.347067pt;}
.yd50_c00000{bottom:514.588459pt;}
.y79f_c00000{bottom:514.667067pt;}
.y10e9_c00000{bottom:515.227067pt;}
.y7eb_c00000{bottom:515.307067pt;}
.ya19_c00000{bottom:515.387067pt;}
.ye92_c00000{bottom:515.387651pt;}
.y510_c00000{bottom:515.547067pt;}
.yf83_c00000{bottom:515.787067pt;}
.yfea_c00000{bottom:515.867067pt;}
.y707_c00000{bottom:515.947067pt;}
.yf4d_c00000{bottom:516.107067pt;}
.y318_c00000{bottom:516.347067pt;}
.y131_c00000{bottom:516.427067pt;}
.ydf1_c00000{bottom:516.667067pt;}
.y10d_c00000{bottom:516.747067pt;}
.ydb0_c00000{bottom:516.907067pt;}
.y901_c00000{bottom:517.068459pt;}
.yf59_c00000{bottom:517.227067pt;}
.yc56_c00000{bottom:517.387067pt;}
.ya6b_c00000{bottom:517.627067pt;}
.yb43_c00000{bottom:517.707067pt;}
.y48b_c00000{bottom:517.786707pt;}
.y2a5_c00000{bottom:518.187067pt;}
.yb1_c00000{bottom:518.267067pt;}
.y4da_c00000{bottom:518.347067pt;}
.yac5_c00000{bottom:518.507067pt;}
.ybb2_c00000{bottom:518.587067pt;}
.yb84_c00000{bottom:518.907067pt;}
.yee5_c00000{bottom:519.067067pt;}
.ybc9_c00000{bottom:519.147067pt;}
.y46f_c00000{bottom:519.307067pt;}
.y1e4_c00000{bottom:519.387067pt;}
.y51_c00000{bottom:519.627067pt;}
.y8c9_c00000{bottom:519.707067pt;}
.ya49_c00000{bottom:519.867067pt;}
.y2f_c00000{bottom:520.000000pt;}
.y55b_c00000{bottom:520.027067pt;}
.y350_c00000{bottom:520.267067pt;}
.y82f_c00000{bottom:520.347067pt;}
.y497_c00000{bottom:520.507067pt;}
.y8e0_c00000{bottom:520.747075pt;}
.y153_c00000{bottom:520.827067pt;}
.y6e9_c00000{bottom:521.067067pt;}
.y32e_c00000{bottom:521.136443pt;}
.y181_c00000{bottom:521.137987pt;}
.yf70_c00000{bottom:521.147067pt;}
.yced_c00000{bottom:521.387067pt;}
.yf07_c00000{bottom:521.467067pt;}
.y458_c00000{bottom:521.787067pt;}
.yc89_c00000{bottom:521.947067pt;}
.yacf_c00000{bottom:522.027067pt;}
.y9c1_c00000{bottom:522.107067pt;}
.yc0b_c00000{bottom:522.187067pt;}
.y3e9_c00000{bottom:522.267067pt;}
.y691_c00000{bottom:522.347067pt;}
.yaab_c00000{bottom:522.907067pt;}
.y85_c00000{bottom:522.907459pt;}
.y90d_c00000{bottom:522.987067pt;}
.y62b_c00000{bottom:523.068683pt;}
.y926_c00000{bottom:523.147200pt;}
.y5ab_c00000{bottom:523.467067pt;}
.yce4_c00000{bottom:523.627067pt;}
.ye0_c00000{bottom:523.867067pt;}
.yfbe_c00000{bottom:523.947067pt;}
.y541_c00000{bottom:524.347067pt;}
.y529_c00000{bottom:524.587067pt;}
.y1ff_c00000{bottom:524.667067pt;}
.y668_c00000{bottom:524.667243pt;}
.y58f_c00000{bottom:525.067067pt;}
.yeb0_c00000{bottom:525.147067pt;}
.y1010_c00000{bottom:525.227067pt;}
.ya93_c00000{bottom:525.387067pt;}
.yc45_c00000{bottom:525.627067pt;}
.y4f6_c00000{bottom:525.787067pt;}
.ybe6_c00000{bottom:525.788819pt;}
.y896_c00000{bottom:525.947067pt;}
.yef7_c00000{bottom:526.027067pt;}
.yde6_c00000{bottom:526.107067pt;}
.yb6e_c00000{bottom:526.187067pt;}
.yf16_c00000{bottom:526.347067pt;}
.y955_c00000{bottom:526.987075pt;}
.ycb3_c00000{bottom:527.069387pt;}
.y1020_c00000{bottom:527.147067pt;}
.y398_c00000{bottom:527.307067pt;}
.y1c6_c00000{bottom:527.387067pt;}
.y2c2_c00000{bottom:527.787067pt;}
.ye67_c00000{bottom:527.867067pt;}
.y5bd_c00000{bottom:527.947067pt;}
.ya05_c00000{bottom:528.107067pt;}
.y9a8_c00000{bottom:528.187067pt;}
.y6c3_c00000{bottom:528.347067pt;}
.ya80_c00000{bottom:528.427067pt;}
.ye34_c00000{bottom:528.747067pt;}
.y422_c00000{bottom:528.827067pt;}
.y604_c00000{bottom:528.907067pt;}
.yb57_c00000{bottom:529.226707pt;}
.y9d0_c00000{bottom:529.227067pt;}
.y723_c00000{bottom:529.387067pt;}
.y10bf_c00000{bottom:529.547067pt;}
.yae8_c00000{bottom:529.867067pt;}
.ybf8_c00000{bottom:529.947875pt;}
.yd10_c00000{bottom:530.667067pt;}
.y7ae_c00000{bottom:530.907067pt;}
.y774_c00000{bottom:531.147067pt;}
.yd67_c00000{bottom:531.387067pt;}
.y885_c00000{bottom:531.547067pt;}
.yb25_c00000{bottom:531.547651pt;}
.yd23_c00000{bottom:531.627067pt;}
.yeee_c00000{bottom:531.707067pt;}
.yb98_c00000{bottom:531.787067pt;}
.ycfc_c00000{bottom:531.947067pt;}
.y7c3_c00000{bottom:532.027067pt;}
.y271_c00000{bottom:532.347067pt;}
.y1198_c00000{bottom:532.587067pt;}
.y7fc_c00000{bottom:532.667067pt;}
.yffc_c00000{bottom:532.747067pt;}
.y574_c00000{bottom:533.067067pt;}
.yd3d_c00000{bottom:533.147067pt;}
.y1161_c00000{bottom:533.227067pt;}
.y3b7_c00000{bottom:533.307067pt;}
.yd4f_c00000{bottom:533.788819pt;}
.yf63_c00000{bottom:533.947067pt;}
.y1034_c00000{bottom:534.107067pt;}
.y815_c00000{bottom:534.187067pt;}
.y19f_c00000{bottom:534.507067pt;}
.ye91_c00000{bottom:534.667067pt;}
.y130_c00000{bottom:534.827067pt;}
.y10fa_c00000{bottom:534.907067pt;}
.ye55_c00000{bottom:534.987067pt;}
.y10c_c00000{bottom:535.147067pt;}
.yc55_c00000{bottom:535.227243pt;}
.y375_c00000{bottom:535.307067pt;}
.y252_c00000{bottom:535.387067pt;}
.y10d5_c00000{bottom:535.627067pt;}
.y4b8_c00000{bottom:535.787067pt;}
.y21_c00000{bottom:536.000000pt;}
.y8df_c00000{bottom:536.107067pt;}
.y10e8_c00000{bottom:536.267067pt;}
.ya18_c00000{bottom:536.347067pt;}
.y900_c00000{bottom:536.347875pt;}
.y50f_c00000{bottom:536.587067pt;}
.y6d5_c00000{bottom:536.667067pt;}
.yf82_c00000{bottom:536.747200pt;}
.yc96_c00000{bottom:536.907067pt;}
.y48a_c00000{bottom:536.987067pt;}
.y791_c00000{bottom:537.067067pt;}
.y317_c00000{bottom:537.387067pt;}
.y7d8_c00000{bottom:537.547067pt;}
.y79e_c00000{bottom:537.627067pt;}
.ydf0_c00000{bottom:537.707067pt;}
.ydaf_c00000{bottom:537.867067pt;}
.yccb_c00000{bottom:538.187067pt;}
.y1148_c00000{bottom:538.427067pt;}
.ya6a_c00000{bottom:538.587067pt;}
.y11aa_c00000{bottom:538.667067pt;}
.y50_c00000{bottom:539.147067pt;}
.y2a4_c00000{bottom:539.227067pt;}
.y97c_c00000{bottom:539.387067pt;}
.yac4_c00000{bottom:539.467067pt;}
.ybb1_c00000{bottom:539.627067pt;}
.yb83_c00000{bottom:539.867067pt;}
.y994_c00000{bottom:539.947067pt;}
.y667_c00000{bottom:539.947075pt;}
.y1175_c00000{bottom:540.027067pt;}
.ybc8_c00000{bottom:540.107067pt;}
.y1e3_c00000{bottom:540.347067pt;}
.yec6_c00000{bottom:540.427067pt;}
.y112d_c00000{bottom:540.827067pt;}
.ya48_c00000{bottom:540.907067pt;}
.y55a_c00000{bottom:541.067067pt;}
.ye87_c00000{bottom:541.147067pt;}
.y34f_c00000{bottom:541.227067pt;}
.yf2b_c00000{bottom:541.307067pt;}
.y82e_c00000{bottom:541.387067pt;}
.y10a9_c00000{bottom:541.787067pt;}
.yfa5_c00000{bottom:541.787075pt;}
.y152_c00000{bottom:541.867067pt;}
.y6e8_c00000{bottom:542.107067pt;}
.ydf_c00000{bottom:542.267067pt;}
.y62a_c00000{bottom:542.348099pt;}
.yf06_c00000{bottom:542.507067pt;}
.y457_c00000{bottom:542.827067pt;}
.y9e7_c00000{bottom:542.907067pt;}
.yc88_c00000{bottom:542.987067pt;}
.yace_c00000{bottom:543.067067pt;}
.y9c0_c00000{bottom:543.147067pt;}
.yc0a_c00000{bottom:543.227067pt;}
.y3e8_c00000{bottom:543.307067pt;}
.y690_c00000{bottom:543.387067pt;}
.yf20_c00000{bottom:543.867067pt;}
.y5bc_c00000{bottom:543.947067pt;}
.y925_c00000{bottom:544.187200pt;}
.y7ea_c00000{bottom:544.267067pt;}
.y84_c00000{bottom:544.427339pt;}
.yf9a_c00000{bottom:544.587067pt;}
.yce3_c00000{bottom:544.667067pt;}
.yc6c_c00000{bottom:544.907067pt;}
.y706_c00000{bottom:544.987067pt;}
.ybe5_c00000{bottom:545.068235pt;}
.yb0_c00000{bottom:545.227067pt;}
.y540_c00000{bottom:545.307067pt;}
.y5e3_c00000{bottom:545.387067pt;}
.y528_c00000{bottom:545.627067pt;}
.y1fe_c00000{bottom:545.707067pt;}
.y58e_c00000{bottom:546.107067pt;}
.yeaf_c00000{bottom:546.187067pt;}
.ya92_c00000{bottom:546.347067pt;}
.ycb2_c00000{bottom:546.348803pt;}
.yc44_c00000{bottom:546.587067pt;}
.yb42_c00000{bottom:546.747067pt;}
.y895_c00000{bottom:546.987067pt;}
.yde5_c00000{bottom:547.147067pt;}
.yb6d_c00000{bottom:547.227067pt;}
.y4d9_c00000{bottom:547.307067pt;}
.yf15_c00000{bottom:547.387067pt;}
.yfcb_c00000{bottom:547.947067pt;}
.y101f_c00000{bottom:548.107067pt;}
.yff9_c00000{bottom:548.267067pt;}
.y1c5_c00000{bottom:548.347067pt;}
.yb56_c00000{bottom:548.427067pt;}
.y2c1_c00000{bottom:548.827067pt;}
.ya04_c00000{bottom:549.147067pt;}
.y9a7_c00000{bottom:549.227067pt;}
.ybf7_c00000{bottom:549.227291pt;}
.y6c2_c00000{bottom:549.307067pt;}
.ya7f_c00000{bottom:549.467067pt;}
.y421_c00000{bottom:549.787067pt;}
.y603_c00000{bottom:549.867067pt;}
.y9cf_c00000{bottom:550.267067pt;}
.y722_c00000{bottom:550.427067pt;}
.yc54_c00000{bottom:550.507075pt;}
.y10be_c00000{bottom:550.587067pt;}
.yb24_c00000{bottom:550.827067pt;}
.yd0f_c00000{bottom:551.627067pt;}
.yaaa_c00000{bottom:551.867067pt;}
.y72_c00000{bottom:552.018219pt;}
.y773_c00000{bottom:552.107067pt;}
.y5aa_c00000{bottom:552.427067pt;}
.y884_c00000{bottom:552.587067pt;}
.yd22_c00000{bottom:552.667067pt;}
.yb97_c00000{bottom:552.827067pt;}
.y7c2_c00000{bottom:553.067067pt;}
.yd4e_c00000{bottom:553.068235pt;}
.y12f_c00000{bottom:553.227067pt;}
.y10b_c00000{bottom:553.387067pt;}
.y1197_c00000{bottom:553.627067pt;}
.y7fb_c00000{bottom:553.707067pt;}
.y573_c00000{bottom:554.107067pt;}
.y1160_c00000{bottom:554.267067pt;}
.y4f5_c00000{bottom:554.268459pt;}
.y3b6_c00000{bottom:554.347067pt;}
.ycfb_c00000{bottom:554.827067pt;}
.yf62_c00000{bottom:554.907067pt;}
.y814_c00000{bottom:555.147067pt;}
.y666_c00000{bottom:555.307067pt;}
.y19e_c00000{bottom:555.547067pt;}
.y8ff_c00000{bottom:555.548235pt;}
.y10f9_c00000{bottom:555.947067pt;}
.y22f_c00000{bottom:556.347067pt;}
.y10d4_c00000{bottom:556.667067pt;}
.y4b7_c00000{bottom:556.827067pt;}
.yfa4_c00000{bottom:557.147067pt;}
.y10e7_c00000{bottom:557.307067pt;}
.ya17_c00000{bottom:557.387067pt;}
.y50e_c00000{bottom:557.547067pt;}
.y954_c00000{bottom:557.627451pt;}
.yf81_c00000{bottom:557.787200pt;}
.yfe9_c00000{bottom:557.867067pt;}
.yae7_c00000{bottom:557.867531pt;}
.y2e6_c00000{bottom:557.947067pt;}
.y316_c00000{bottom:558.427067pt;}
.y4f_c00000{bottom:558.587067pt;}
.ydef_c00000{bottom:558.667067pt;}
.ydae_c00000{bottom:558.907067pt;}
.y8de_c00000{bottom:558.987067pt;}
.ycca_c00000{bottom:559.227067pt;}
.y1147_c00000{bottom:559.387067pt;}
.ya69_c00000{bottom:559.627067pt;}
.yeed_c00000{bottom:559.707067pt;}
.y5bb_c00000{bottom:559.947067pt;}
.y97b_c00000{bottom:560.347067pt;}
.y8c8_c00000{bottom:560.427067pt;}
.yac3_c00000{bottom:560.507067pt;}
.yde_c00000{bottom:560.667067pt;}
.yee4_c00000{bottom:561.067067pt;}
.ybc7_c00000{bottom:561.147067pt;}
.y518_c00000{bottom:561.307067pt;}
.y1e2_c00000{bottom:561.387067pt;}
.yec5_c00000{bottom:561.467067pt;}
.y629_c00000{bottom:561.548459pt;}
.y112c_c00000{bottom:561.787067pt;}
.y559_c00000{bottom:562.107067pt;}
.y34e_c00000{bottom:562.267067pt;}
.y82d_c00000{bottom:562.347067pt;}
.ye90_c00000{bottom:562.427067pt;}
.y151_c00000{bottom:562.827067pt;}
.y6e7_c00000{bottom:563.067067pt;}
.yf6f_c00000{bottom:563.147067pt;}
.yc95_c00000{bottom:563.387067pt;}
.yf05_c00000{bottom:563.467067pt;}
.y456_c00000{bottom:563.787067pt;}
.y9e6_c00000{bottom:563.867067pt;}
.yc87_c00000{bottom:563.947067pt;}
.y32d_c00000{bottom:564.018251pt;}
.y180_c00000{bottom:564.098251pt;}
.y9bf_c00000{bottom:564.107067pt;}
.yc09_c00000{bottom:564.187067pt;}
.y111d_c00000{bottom:564.267067pt;}
.y3d3_c00000{bottom:564.347067pt;}
.ybe4_c00000{bottom:564.347651pt;}
.y68f_c00000{bottom:564.427067pt;}
.y489_c00000{bottom:564.827067pt;}
.yf1f_c00000{bottom:564.907067pt;}
.y924_c00000{bottom:565.147200pt;}
.y6d4_c00000{bottom:565.467067pt;}
.yce2_c00000{bottom:565.627067pt;}
.ycb1_c00000{bottom:565.628219pt;}
.y83_c00000{bottom:565.867067pt;}
.y705_c00000{bottom:565.947067pt;}
.y53f_c00000{bottom:566.347067pt;}
.y5e2_c00000{bottom:566.427067pt;}
.y1fd_c00000{bottom:566.667067pt;}
.yeae_c00000{bottom:567.227067pt;}
.yc43_c00000{bottom:567.627067pt;}
.yb41_c00000{bottom:567.707067pt;}
.y894_c00000{bottom:567.947067pt;}
.yde4_c00000{bottom:568.107067pt;}
.yb6c_c00000{bottom:568.187067pt;}
.y2a3_c00000{bottom:568.267067pt;}
.y4d8_c00000{bottom:568.347067pt;}
.ybf6_c00000{bottom:568.427651pt;}
.yb82_c00000{bottom:568.907067pt;}
.y993_c00000{bottom:569.147067pt;}
.y6f9_c00000{bottom:569.227067pt;}
.y397_c00000{bottom:569.307067pt;}
.y1c4_c00000{bottom:569.387067pt;}
.ye86_c00000{bottom:569.552395pt;}
.y2c0_c00000{bottom:569.787067pt;}
.ya47_c00000{bottom:569.867067pt;}
.ya03_c00000{bottom:570.107067pt;}
.y9a6_c00000{bottom:570.187067pt;}
.y6c1_c00000{bottom:570.347067pt;}
.ya7e_c00000{bottom:570.427067pt;}
.y420_c00000{bottom:570.827067pt;}
.y602_c00000{bottom:570.907067pt;}
.ye33_c00000{bottom:571.067067pt;}
.y721_c00000{bottom:571.387067pt;}
.y10bd_c00000{bottom:571.547067pt;}
.y12e_c00000{bottom:571.627067pt;}
.y10a_c00000{bottom:571.787067pt;}
.yacd_c00000{bottom:572.027067pt;}
.yd4d_c00000{bottom:572.347651pt;}
.yd0e_c00000{bottom:572.667067pt;}
.yaa9_c00000{bottom:572.907067pt;}
.y953_c00000{bottom:572.987443pt;}
.y772_c00000{bottom:573.147067pt;}
.y7e9_c00000{bottom:573.227067pt;}
.y883_c00000{bottom:573.547067pt;}
.y4f4_c00000{bottom:573.547875pt;}
.yd21_c00000{bottom:573.707067pt;}
.yb96_c00000{bottom:573.867067pt;}
.y270_c00000{bottom:574.427067pt;}
.yfb0_c00000{bottom:574.667067pt;}
.y8fe_c00000{bottom:574.827651pt;}
.y572_c00000{bottom:575.067067pt;}
.yd3c_c00000{bottom:575.147067pt;}
.y3b5_c00000{bottom:575.307067pt;}
.ya91_c00000{bottom:575.387067pt;}
.y5ba_c00000{bottom:575.947067pt;}
.y813_c00000{bottom:576.187067pt;}
.yb55_c00000{bottom:576.267067pt;}
.y19d_c00000{bottom:576.507067pt;}
.y374_c00000{bottom:577.307067pt;}
.y9_c00000{bottom:577.329333pt;}
.y22e_c00000{bottom:577.387067pt;}
.y10d3_c00000{bottom:577.627067pt;}
.y4b6_c00000{bottom:577.787067pt;}
.ye66_c00000{bottom:577.867067pt;}
.y4e_c00000{bottom:578.027067pt;}
.yd80_c00000{bottom:578.107067pt;}
.y10e6_c00000{bottom:578.267067pt;}
.ya16_c00000{bottom:578.427067pt;}
.y50d_c00000{bottom:578.587067pt;}
.yf80_c00000{bottom:578.827200pt;}
.yfe8_c00000{bottom:578.907067pt;}
.ydd_c00000{bottom:579.067067pt;}
.y9ce_c00000{bottom:579.227067pt;}
.y665_c00000{bottom:579.307067pt;}
.y315_c00000{bottom:579.387067pt;}
.yf47_c00000{bottom:579.467067pt;}
.ydad_c00000{bottom:579.867067pt;}
.yfa3_c00000{bottom:580.027067pt;}
.ycc9_c00000{bottom:580.267067pt;}
.yae6_c00000{bottom:580.347067pt;}
.y1146_c00000{bottom:580.427067pt;}
.ya68_c00000{bottom:580.667067pt;}
.y628_c00000{bottom:580.827875pt;}
.ydee_c00000{bottom:581.067067pt;}
.y97a_c00000{bottom:581.387067pt;}
.y5a9_c00000{bottom:581.467067pt;}
.ybb0_c00000{bottom:581.627067pt;}
.y7c1_c00000{bottom:582.027067pt;}
.ybc6_c00000{bottom:582.107067pt;}
.y517_c00000{bottom:582.347067pt;}
.y21f_c00000{bottom:582.427067pt;}
.yeec_c00000{bottom:582.587067pt;}
.y7fa_c00000{bottom:582.667067pt;}
.y112b_c00000{bottom:582.827067pt;}
.yc78_c00000{bottom:582.829267pt;}
.y558_c00000{bottom:583.067067pt;}
.y115f_c00000{bottom:583.227067pt;}
.y34d_c00000{bottom:583.307067pt;}
.yaf_c00000{bottom:583.307339pt;}
.y82c_c00000{bottom:583.387067pt;}
.ybe3_c00000{bottom:583.627067pt;}
.y10a8_c00000{bottom:583.787067pt;}
.y150_c00000{bottom:583.867067pt;}
.yf6e_c00000{bottom:584.107067pt;}
.yf04_c00000{bottom:584.507067pt;}
.y455_c00000{bottom:584.827067pt;}
.y9e5_c00000{bottom:584.907067pt;}
.y10f8_c00000{bottom:584.987067pt;}
.y9be_c00000{bottom:585.147067pt;}
.y3d2_c00000{bottom:585.307067pt;}
.y6a3_c00000{bottom:585.387067pt;}
.yf1e_c00000{bottom:585.867067pt;}
.yf99_c00000{bottom:586.587067pt;}
.yce1_c00000{bottom:586.667067pt;}
.yb81_c00000{bottom:586.745115pt;}
.yc6b_c00000{bottom:586.907067pt;}
.y704_c00000{bottom:586.987067pt;}
.y53e_c00000{bottom:587.307067pt;}
.y5e1_c00000{bottom:587.387067pt;}
.y527_c00000{bottom:587.627067pt;}
.ybf5_c00000{bottom:587.707067pt;}
.y2e5_c00000{bottom:588.107067pt;}
.yead_c00000{bottom:588.187067pt;}
.y952_c00000{bottom:588.347435pt;}
.yc42_c00000{bottom:588.667067pt;}
.yb40_c00000{bottom:588.747067pt;}
.ye85_c00000{bottom:588.831811pt;}
.y7ad_c00000{bottom:588.907067pt;}
.yf95_c00000{bottom:588.987067pt;}
.yde3_c00000{bottom:589.147067pt;}
.y2a2_c00000{bottom:589.227067pt;}
.y4d7_c00000{bottom:589.307067pt;}
.yd66_c00000{bottom:589.387067pt;}
.yacc_c00000{bottom:589.867067pt;}
.y12d_c00000{bottom:590.027067pt;}
.y109_c00000{bottom:590.187067pt;}
.yb18_c00000{bottom:590.267067pt;}
.y396_c00000{bottom:590.347067pt;}
.y1e1_c00000{bottom:590.427067pt;}
.y2bf_c00000{bottom:590.827067pt;}
.ya46_c00000{bottom:590.907067pt;}
.yade_c00000{bottom:591.147067pt;}
.y9a5_c00000{bottom:591.227067pt;}
.ya7d_c00000{bottom:591.467067pt;}
.yd4c_c00000{bottom:591.627067pt;}
.y5b9_c00000{bottom:591.786771pt;}
.y41f_c00000{bottom:591.787067pt;}
.y601_c00000{bottom:591.867067pt;}
.y6e6_c00000{bottom:592.107200pt;}
.ye32_c00000{bottom:592.187067pt;}
.y720_c00000{bottom:592.427067pt;}
.y10bc_c00000{bottom:592.587067pt;}
.y4f3_c00000{bottom:592.748235pt;}
.ycb0_c00000{bottom:592.827875pt;}
.yc86_c00000{bottom:592.987067pt;}
.yc08_c00000{bottom:593.227067pt;}
.y68e_c00000{bottom:593.387067pt;}
.yd0d_c00000{bottom:593.707067pt;}
.y488_c00000{bottom:593.787067pt;}
.yaa8_c00000{bottom:593.867067pt;}
.y771_c00000{bottom:594.107067pt;}
.y923_c00000{bottom:594.187200pt;}
.y6d3_c00000{bottom:594.667067pt;}
.y664_c00000{bottom:595.307067pt;}
.y26f_c00000{bottom:595.387067pt;}
.y1196_c00000{bottom:595.627067pt;}
.y1fc_c00000{bottom:595.707067pt;}
.yd3b_c00000{bottom:596.107067pt;}
.yf61_c00000{bottom:596.907067pt;}
.y893_c00000{bottom:596.987067pt;}
.y812_c00000{bottom:597.147067pt;}
.y4d_c00000{bottom:597.467067pt;}
.y19c_c00000{bottom:597.547067pt;}
.y992_c00000{bottom:598.107067pt;}
.y412_c00000{bottom:598.347067pt;}
.y1c3_c00000{bottom:598.427067pt;}
.y4b5_c00000{bottom:598.827067pt;}
.y71_c00000{bottom:598.979739pt;}
.ya02_c00000{bottom:599.147067pt;}
.y10e5_c00000{bottom:599.307067pt;}
.ya15_c00000{bottom:599.387067pt;}
.yf7f_c00000{bottom:599.787200pt;}
.yfe7_c00000{bottom:599.867067pt;}
.y1c_c00000{bottom:600.000000pt;}
.y627_c00000{bottom:600.107291pt;}
.y176_c00000{bottom:600.427067pt;}
.ydac_c00000{bottom:600.907067pt;}
.ycc8_c00000{bottom:601.227067pt;}
.ya67_c00000{bottom:601.627067pt;}
.yb80_c00000{bottom:602.024947pt;}
.yc77_c00000{bottom:602.108683pt;}
.y7e8_c00000{bottom:602.347067pt;}
.y979_c00000{bottom:602.427067pt;}
.yac2_c00000{bottom:602.507067pt;}
.y882_c00000{bottom:602.587067pt;}
.ybaf_c00000{bottom:602.667067pt;}
.yb95_c00000{bottom:602.827067pt;}
.ybc5_c00000{bottom:603.147067pt;}
.y21e_c00000{bottom:603.387067pt;}
.yec4_c00000{bottom:603.467067pt;}
.y58d_c00000{bottom:603.547515pt;}
.y951_c00000{bottom:603.627267pt;}
.y112a_c00000{bottom:603.787067pt;}
.ya90_c00000{bottom:603.868323pt;}
.y82_c00000{bottom:604.026371pt;}
.y557_c00000{bottom:604.107067pt;}
.y34c_c00000{bottom:604.267067pt;}
.y3b4_c00000{bottom:604.347067pt;}
.y82b_c00000{bottom:604.427067pt;}
.y10a7_c00000{bottom:604.827067pt;}
.y14f_c00000{bottom:604.907067pt;}
.yf6d_c00000{bottom:605.147067pt;}
.yb54_c00000{bottom:605.307067pt;}
.y9e4_c00000{bottom:605.867067pt;}
.y10f7_c00000{bottom:605.947067pt;}
.y9bd_c00000{bottom:606.107067pt;}
.y373_c00000{bottom:606.347067pt;}
.y61e_c00000{bottom:606.427067pt;}
.yd7f_c00000{bottom:606.588459pt;}
.y10d2_c00000{bottom:606.667067pt;}
.yf1d_c00000{bottom:606.907067pt;}
.y6f_c00000{bottom:606.978515pt;}
.y873_c00000{bottom:607.058515pt;}
.y5b8_c00000{bottom:607.066603pt;}
.y9cd_c00000{bottom:607.227075pt;}
.y50c_c00000{bottom:607.547067pt;}
.yb23_c00000{bottom:607.627067pt;}
.yae_c00000{bottom:607.867067pt;}
.y703_c00000{bottom:607.947067pt;}
.ye84_c00000{bottom:608.111227pt;}
.y53d_c00000{bottom:608.347067pt;}
.y12c_c00000{bottom:608.427067pt;}
.y108_c00000{bottom:608.587067pt;}
.y1145_c00000{bottom:609.387067pt;}
.yc41_c00000{bottom:609.627067pt;}
.yb3f_c00000{bottom:609.707067pt;}
.yacb_c00000{bottom:610.107067pt;}
.yb6b_c00000{bottom:610.187067pt;}
.y2a1_c00000{bottom:610.267067pt;}
.y4d6_c00000{bottom:610.347067pt;}
.yd65_c00000{bottom:610.427067pt;}
.y5a8_c00000{bottom:610.507067pt;}
.y7c0_c00000{bottom:611.067067pt;}
.yee3_c00000{bottom:611.147200pt;}
.y5f8_c00000{bottom:611.227067pt;}
.y395_c00000{bottom:611.307067pt;}
.y1e0_c00000{bottom:611.387067pt;}
.y7f9_c00000{bottom:611.707067pt;}
.y2be_c00000{bottom:611.787067pt;}
.ya45_c00000{bottom:611.867067pt;}
.y4f2_c00000{bottom:612.027651pt;}
.ycaf_c00000{bottom:612.107291pt;}
.ya7c_c00000{bottom:612.427067pt;}
.ye8f_c00000{bottom:612.507067pt;}
.y41e_c00000{bottom:612.827067pt;}
.y600_c00000{bottom:612.907067pt;}
.y6e5_c00000{bottom:613.067200pt;}
.y6c0_c00000{bottom:613.227067pt;}
.y5cb_c00000{bottom:613.387067pt;}
.yf03_c00000{bottom:613.547067pt;}
.y10bb_c00000{bottom:613.627067pt;}
.y454_c00000{bottom:613.867067pt;}
.yc85_c00000{bottom:614.027067pt;}
.yc07_c00000{bottom:614.187067pt;}
.y111c_c00000{bottom:614.267067pt;}
.yd0c_c00000{bottom:614.667067pt;}
.y487_c00000{bottom:614.827067pt;}
.yaa7_c00000{bottom:614.907067pt;}
.y770_c00000{bottom:615.147067pt;}
.y922_c00000{bottom:615.147200pt;}
.ybf4_c00000{bottom:615.547067pt;}
.ydc_c00000{bottom:615.867067pt;}
.yfbd_c00000{bottom:615.947067pt;}
.yf3b_c00000{bottom:616.267067pt;}
.y67d_c00000{bottom:616.427067pt;}
.y526_c00000{bottom:616.667067pt;}
.y1fb_c00000{bottom:616.747067pt;}
.y4c_c00000{bottom:616.907067pt;}
.yd3a_c00000{bottom:617.147067pt;}
.yeac_c00000{bottom:617.227067pt;}
.yb7f_c00000{bottom:617.384939pt;}
.y7ac_c00000{bottom:617.947067pt;}
.yde2_c00000{bottom:618.107067pt;}
.y811_c00000{bottom:618.187067pt;}
.y2e4_c00000{bottom:618.267067pt;}
.y19b_c00000{bottom:618.507067pt;}
.y11a9_c00000{bottom:618.587067pt;}
.y950_c00000{bottom:618.987259pt;}
.y991_c00000{bottom:619.147067pt;}
.y3f4_c00000{bottom:619.307067pt;}
.y626_c00000{bottom:619.386707pt;}
.y1c2_c00000{bottom:619.387067pt;}
.ye65_c00000{bottom:619.867067pt;}
.ya01_c00000{bottom:620.107067pt;}
.y9a4_c00000{bottom:620.267067pt;}
.y6d2_c00000{bottom:620.427067pt;}
.yf7e_c00000{bottom:620.827200pt;}
.yfe6_c00000{bottom:620.907067pt;}
.yc76_c00000{bottom:621.309043pt;}
.y6f8_c00000{bottom:621.387067pt;}
.y8fd_c00000{bottom:621.787067pt;}
.ydab_c00000{bottom:621.867067pt;}
.y68d_c00000{bottom:622.267067pt;}
.y9cc_c00000{bottom:622.587067pt;}
.yb00_c00000{bottom:622.667067pt;}
.y58c_c00000{bottom:622.747875pt;}
.ya8f_c00000{bottom:623.068683pt;}
.y978_c00000{bottom:623.387067pt;}
.yac1_c00000{bottom:623.467067pt;}
.ybae_c00000{bottom:623.627067pt;}
.yd20_c00000{bottom:623.707067pt;}
.ybc4_c00000{bottom:624.187200pt;}
.y713_c00000{bottom:624.267067pt;}
.y21d_c00000{bottom:624.427067pt;}
.y1129_c00000{bottom:624.827067pt;}
.y892_c00000{bottom:624.987067pt;}
.y571_c00000{bottom:625.067067pt;}
.y115e_c00000{bottom:625.227067pt;}
.y3b3_c00000{bottom:625.307067pt;}
.y10a6_c00000{bottom:625.787067pt;}
.y14e_c00000{bottom:625.867067pt;}
.yd7e_c00000{bottom:625.867875pt;}
.yf60_c00000{bottom:625.947067pt;}
.yf6c_c00000{bottom:626.107067pt;}
.yb53_c00000{bottom:626.267067pt;}
.y101e_c00000{bottom:626.589984pt;}
.y12b_c00000{bottom:626.827067pt;}
.y9e3_c00000{bottom:626.907067pt;}
.y107_c00000{bottom:626.987067pt;}
.y9bc_c00000{bottom:627.147067pt;}
.y372_c00000{bottom:627.307067pt;}
.ye83_c00000{bottom:627.311587pt;}
.y61d_c00000{bottom:627.387067pt;}
.y4b4_c00000{bottom:627.867067pt;}
.ya14_c00000{bottom:628.427067pt;}
.y81_c00000{bottom:628.507067pt;}
.yb22_c00000{bottom:628.587067pt;}
.yce0_c00000{bottom:628.667067pt;}
.y702_c00000{bottom:628.987067pt;}
.y53c_c00000{bottom:629.307067pt;}
.y175_c00000{bottom:629.387067pt;}
.y11b6_c00000{bottom:629.627067pt;}
.y7e7_c00000{bottom:630.267067pt;}
.y1144_c00000{bottom:630.427067pt;}
.ya66_c00000{bottom:630.667067pt;}
.yb3e_c00000{bottom:630.747067pt;}
.yb94_c00000{bottom:630.827067pt;}
.yad_c00000{bottom:631.227067pt;}
.y4d5_c00000{bottom:631.307067pt;}
.ycae_c00000{bottom:631.386707pt;}
.y881_c00000{bottom:631.387067pt;}
.yee2_c00000{bottom:632.107200pt;}
.yadc_c00000{bottom:632.267067pt;}
.y394_c00000{bottom:632.347067pt;}
.y1df_c00000{bottom:632.427067pt;}
.y2bd_c00000{bottom:632.827067pt;}
.ya44_c00000{bottom:632.907067pt;}
.y556_c00000{bottom:633.067067pt;}
.y34b_c00000{bottom:633.307067pt;}
.y8_c00000{bottom:633.330667pt;}
.y31_c00000{bottom:633.333333pt;}
.y82a_c00000{bottom:633.387067pt;}
.ya7b_c00000{bottom:633.467067pt;}
.y41d_c00000{bottom:633.867067pt;}
.y6e4_c00000{bottom:634.107200pt;}
.ydb_c00000{bottom:634.267067pt;}
.y94f_c00000{bottom:634.347251pt;}
.ye31_c00000{bottom:634.507067pt;}
.y10ba_c00000{bottom:634.587067pt;}
.yc84_c00000{bottom:634.987200pt;}
.yc06_c00000{bottom:635.227067pt;}
.y4c3_c00000{bottom:635.307067pt;}
.yd0b_c00000{bottom:635.707067pt;}
.y486_c00000{bottom:635.867067pt;}
.y50b_c00000{bottom:636.028683pt;}
.y921_c00000{bottom:636.187200pt;}
.y4b_c00000{bottom:636.347067pt;}
.yc6a_c00000{bottom:636.907067pt;}
.y67a_c00000{bottom:637.387067pt;}
.y525_c00000{bottom:637.627067pt;}
.y1fa_c00000{bottom:637.707067pt;}
.yd39_c00000{bottom:638.187067pt;}
.y625_c00000{bottom:638.587067pt;}
.y1113_c00000{bottom:638.827875pt;}
.y1174_c00000{bottom:639.067067pt;}
.y810_c00000{bottom:639.147067pt;}
.y5a7_c00000{bottom:639.467067pt;}
.y19a_c00000{bottom:639.547067pt;}
.y7bf_c00000{bottom:640.107067pt;}
.y990_c00000{bottom:640.187067pt;}
.y5f7_c00000{bottom:640.267067pt;}
.y3f3_c00000{bottom:640.347067pt;}
.y1c1_c00000{bottom:640.427067pt;}
.yc75_c00000{bottom:640.588459pt;}
.y7f8_c00000{bottom:640.667067pt;}
.ye64_c00000{bottom:640.907067pt;}
.ya00_c00000{bottom:641.147067pt;}
.y9a3_c00000{bottom:641.227067pt;}
.y10e4_c00000{bottom:641.307067pt;}
.yf02_c00000{bottom:641.467067pt;}
.yf7d_c00000{bottom:641.787200pt;}
.yfe5_c00000{bottom:641.867067pt;}
.y58b_c00000{bottom:642.027291pt;}
.y453_c00000{bottom:642.269043pt;}
.ya8e_c00000{bottom:642.348099pt;}
.y5ca_c00000{bottom:642.427067pt;}
.yb7e_c00000{bottom:642.905211pt;}
.ydaa_c00000{bottom:642.907067pt;}
.ycc7_c00000{bottom:643.227067pt;}
.y663_c00000{bottom:643.307067pt;}
.yaff_c00000{bottom:643.627067pt;}
.y76f_c00000{bottom:644.107067pt;}
.y977_c00000{bottom:644.427067pt;}
.yac0_c00000{bottom:644.507067pt;}
.ybad_c00000{bottom:644.667067pt;}
.yd7d_c00000{bottom:645.068235pt;}
.ybc3_c00000{bottom:645.147200pt;}
.y12a_c00000{bottom:645.227067pt;}
.yf3a_c00000{bottom:645.307067pt;}
.y106_c00000{bottom:645.387067pt;}
.yec3_c00000{bottom:645.467067pt;}
.y9cb_c00000{bottom:645.547067pt;}
.y1128_c00000{bottom:645.787067pt;}
.y70_c00000{bottom:645.859067pt;}
.y7ab_c00000{bottom:645.867067pt;}
.y101d_c00000{bottom:645.869400pt;}
.yf94_c00000{bottom:645.947067pt;}
.y570_c00000{bottom:646.107067pt;}
.y115d_c00000{bottom:646.267067pt;}
.y3b2_c00000{bottom:646.347067pt;}
.yde1_c00000{bottom:646.587875pt;}
.ye82_c00000{bottom:646.591003pt;}
.y10a5_c00000{bottom:646.827067pt;}
.yf6b_c00000{bottom:647.147067pt;}
.yb52_c00000{bottom:647.307067pt;}
.yef6_c00000{bottom:647.387243pt;}
.y10f6_c00000{bottom:647.947067pt;}
.y9bb_c00000{bottom:648.187067pt;}
.y371_c00000{bottom:648.347067pt;}
.y2e3_c00000{bottom:648.427067pt;}
.y4b3_c00000{bottom:648.827067pt;}
.yf1c_c00000{bottom:648.907067pt;}
.yf46_c00000{bottom:649.147067pt;}
.y1b_c00000{bottom:649.333333pt;}
.yb21_c00000{bottom:649.627067pt;}
.y94e_c00000{bottom:649.627083pt;}
.yac_c00000{bottom:649.787067pt;}
.y6e_c00000{bottom:649.860323pt;}
.y17f_c00000{bottom:649.940323pt;}
.y53b_c00000{bottom:650.347067pt;}
.y314_c00000{bottom:650.427067pt;}
.ycad_c00000{bottom:650.587067pt;}
.y8fc_c00000{bottom:650.907067pt;}
.y68c_c00000{bottom:651.387067pt;}
.yc40_c00000{bottom:651.627067pt;}
.yb3d_c00000{bottom:651.787067pt;}
.y80_c00000{bottom:652.027067pt;}
.y2a0_c00000{bottom:652.267067pt;}
.y4d4_c00000{bottom:652.347067pt;}
.yd64_c00000{bottom:652.427067pt;}
.yda_c00000{bottom:652.667067pt;}
.yee1_c00000{bottom:653.147200pt;}
.y7e6_c00000{bottom:653.227067pt;}
.y405_c00000{bottom:653.307067pt;}
.y1de_c00000{bottom:653.387067pt;}
.y2bc_c00000{bottom:653.787067pt;}
.ya43_c00000{bottom:653.947067pt;}
.y555_c00000{bottom:654.107067pt;}
.y34a_c00000{bottom:654.267067pt;}
.yf2a_c00000{bottom:654.347067pt;}
.ya7a_c00000{bottom:654.427067pt;}
.ye8e_c00000{bottom:654.507067pt;}
.y41c_c00000{bottom:654.827067pt;}
.y14d_c00000{bottom:654.907067pt;}
.y6e3_c00000{bottom:655.147200pt;}
.y50a_c00000{bottom:655.308099pt;}
.y10b9_c00000{bottom:655.627067pt;}
.ye30_c00000{bottom:655.707067pt;}
.y9e2_c00000{bottom:655.867067pt;}
.yc83_c00000{bottom:656.027200pt;}
.yc05_c00000{bottom:656.187067pt;}
.y111b_c00000{bottom:656.267067pt;}
.y4c2_c00000{bottom:656.347067pt;}
.y485_c00000{bottom:656.827067pt;}
.yaa6_c00000{bottom:656.907067pt;}
.y36_c00000{bottom:657.093333pt;}
.y920_c00000{bottom:657.147200pt;}
.y4a_c00000{bottom:657.227067pt;}
.yf98_c00000{bottom:657.627067pt;}
.yc69_c00000{bottom:657.867067pt;}
.y701_c00000{bottom:657.947067pt;}
.yfbc_c00000{bottom:657.947200pt;}
.y1112_c00000{bottom:658.107291pt;}
.yb14_c00000{bottom:658.267067pt;}
.y174_c00000{bottom:658.427067pt;}
.y524_c00000{bottom:658.667067pt;}
.y1f9_c00000{bottom:658.747067pt;}
.y4f1_c00000{bottom:659.067200pt;}
.ya65_c00000{bottom:659.070075pt;}
.yeab_c00000{bottom:659.227067pt;}
.y662_c00000{bottom:659.307067pt;}
.y1105_c00000{bottom:659.707067pt;}
.yc74_c00000{bottom:659.867875pt;}
.y80f_c00000{bottom:660.187067pt;}
.y199_c00000{bottom:660.587067pt;}
.y98f_c00000{bottom:661.147067pt;}
.y58a_c00000{bottom:661.306707pt;}
.y393_c00000{bottom:661.307067pt;}
.y1c0_c00000{bottom:661.387067pt;}
.y452_c00000{bottom:661.548459pt;}
.ya8d_c00000{bottom:661.627515pt;}
.ye63_c00000{bottom:661.867067pt;}
.y9ff_c00000{bottom:662.187067pt;}
.y9a2_c00000{bottom:662.267067pt;}
.y829_c00000{bottom:662.427067pt;}
.yef5_c00000{bottom:662.667075pt;}
.yf7c_c00000{bottom:662.827200pt;}
.yfe4_c00000{bottom:662.907067pt;}
.y93d_c00000{bottom:663.387067pt;}
.y129_c00000{bottom:663.627067pt;}
.y105_c00000{bottom:663.787067pt;}
.yda9_c00000{bottom:663.867067pt;}
.y5ff_c00000{bottom:663.947067pt;}
.ycc6_c00000{bottom:664.267067pt;}
.yd7c_c00000{bottom:664.347651pt;}
.yf01_c00000{bottom:664.427067pt;}
.yafe_c00000{bottom:664.667067pt;}
.y94d_c00000{bottom:664.987075pt;}
.y101c_c00000{bottom:665.069760pt;}
.y976_c00000{bottom:665.387067pt;}
.ybf3_c00000{bottom:665.547067pt;}
.ybac_c00000{bottom:665.627067pt;}
.yd1f_c00000{bottom:665.707067pt;}
.yde0_c00000{bottom:665.867291pt;}
.yb12_c00000{bottom:665.869624pt;}
.ye81_c00000{bottom:665.870419pt;}
.ybc2_c00000{bottom:666.187200pt;}
.yf39_c00000{bottom:666.267067pt;}
.y26e_c00000{bottom:666.427067pt;}
.yfaf_c00000{bottom:666.667067pt;}
.y1127_c00000{bottom:666.827067pt;}
.y56f_c00000{bottom:667.067067pt;}
.yd38_c00000{bottom:667.147067pt;}
.y115c_c00000{bottom:667.227067pt;}
.y3b1_c00000{bottom:667.307067pt;}
.y10a4_c00000{bottom:667.787067pt;}
.y7be_c00000{bottom:668.027067pt;}
.yab_c00000{bottom:668.187067pt;}
.yb51_c00000{bottom:668.267067pt;}
.yb7d_c00000{bottom:668.425483pt;}
.y5a6_c00000{bottom:668.507067pt;}
.y7f7_c00000{bottom:668.667067pt;}
.y10f5_c00000{bottom:668.987067pt;}
.y9ba_c00000{bottom:669.147067pt;}
.y370_c00000{bottom:669.307067pt;}
.y2e2_c00000{bottom:669.387067pt;}
.y4b2_c00000{bottom:669.867067pt;}
.yf1b_c00000{bottom:669.947067pt;}
.y10e3_c00000{bottom:670.267067pt;}
.yb20_c00000{bottom:670.587067pt;}
.yd9_c00000{bottom:671.067067pt;}
.y53a_c00000{bottom:671.307067pt;}
.y5c9_c00000{bottom:671.387067pt;}
.y8fb_c00000{bottom:671.867067pt;}
.y1143_c00000{bottom:672.427067pt;}
.yc3f_c00000{bottom:672.667067pt;}
.yb3c_c00000{bottom:672.747067pt;}
.y76e_c00000{bottom:673.147067pt;}
.y29f_c00000{bottom:673.227067pt;}
.y4d3_c00000{bottom:673.307067pt;}
.yf14_c00000{bottom:673.387067pt;}
.yabf_c00000{bottom:673.547067pt;}
.yee0_c00000{bottom:674.107200pt;}
.y404_c00000{bottom:674.347067pt;}
.y1dd_c00000{bottom:674.427067pt;}
.y509_c00000{bottom:674.508459pt;}
.y2bb_c00000{bottom:674.827067pt;}
.ya42_c00000{bottom:674.907067pt;}
.y554_c00000{bottom:675.067067pt;}
.y349_c00000{bottom:675.307067pt;}
.yf29_c00000{bottom:675.387067pt;}
.ya79_c00000{bottom:675.467067pt;}
.y14c_c00000{bottom:675.867067pt;}
.y6e2_c00000{bottom:676.107200pt;}
.yf6a_c00000{bottom:676.187067pt;}
.yf5f_c00000{bottom:676.347067pt;}
.y10b8_c00000{bottom:676.587067pt;}
.ye2f_c00000{bottom:676.827067pt;}
.yc82_c00000{bottom:676.987200pt;}
.yc04_c00000{bottom:677.227067pt;}
.y43c_c00000{bottom:677.307067pt;}
.y1111_c00000{bottom:677.386707pt;}
.yc19_c00000{bottom:677.387067pt;}
.y484_c00000{bottom:677.867067pt;}
.yaa5_c00000{bottom:677.947067pt;}
.yef4_c00000{bottom:678.027067pt;}
.y91f_c00000{bottom:678.187200pt;}
.ya64_c00000{bottom:678.349491pt;}
.ycac_c00000{bottom:678.427067pt;}
.ycdf_c00000{bottom:678.667067pt;}
.y7f_c00000{bottom:678.747000pt;}
.yc68_c00000{bottom:678.907067pt;}
.y700_c00000{bottom:678.987067pt;}
.yfbb_c00000{bottom:678.987200pt;}
.yc73_c00000{bottom:679.147291pt;}
.y313_c00000{bottom:679.387067pt;}
.y523_c00000{bottom:679.627067pt;}
.y1f8_c00000{bottom:679.707067pt;}
.yeaa_c00000{bottom:680.187067pt;}
.y68b_c00000{bottom:680.427067pt;}
.y589_c00000{bottom:680.507067pt;}
.y451_c00000{bottom:680.827875pt;}
.yd63_c00000{bottom:681.387067pt;}
.y198_c00000{bottom:681.547067pt;}
.y104_c00000{bottom:682.187067pt;}
.y392_c00000{bottom:682.347067pt;}
.y1bf_c00000{bottom:682.427067pt;}
.y128_c00000{bottom:682.507259pt;}
.ye62_c00000{bottom:682.907067pt;}
.y9fe_c00000{bottom:683.147067pt;}
.y9a1_c00000{bottom:683.227067pt;}
.yd7b_c00000{bottom:683.627067pt;}
.yf7b_c00000{bottom:683.787200pt;}
.y9e1_c00000{bottom:684.349176pt;}
.y1173_c00000{bottom:684.427067pt;}
.yda8_c00000{bottom:684.907067pt;}
.yddf_c00000{bottom:685.146707pt;}
.yb11_c00000{bottom:685.149040pt;}
.ye80_c00000{bottom:685.149835pt;}
.ycc5_c00000{bottom:685.227067pt;}
.yf97_c00000{bottom:685.547067pt;}
.yafd_c00000{bottom:685.627067pt;}
.ye49_c00000{bottom:685.947067pt;}
.y94c_c00000{bottom:686.347067pt;}
.ya13_c00000{bottom:686.427067pt;}
.ybf2_c00000{bottom:686.507067pt;}
.yaa_c00000{bottom:686.587067pt;}
.ybab_c00000{bottom:686.667067pt;}
.ybc1_c00000{bottom:687.147067pt;}
.yb13_c00000{bottom:687.227067pt;}
.yf38_c00000{bottom:687.307067pt;}
.y173_c00000{bottom:687.387067pt;}
.y1195_c00000{bottom:687.627067pt;}
.y1104_c00000{bottom:687.707067pt;}
.y4f0_c00000{bottom:688.107200pt;}
.yd37_c00000{bottom:688.187067pt;}
.y115b_c00000{bottom:688.267067pt;}
.y3b0_c00000{bottom:688.347067pt;}
.y10a3_c00000{bottom:688.827067pt;}
.y80e_c00000{bottom:689.147067pt;}
.yb50_c00000{bottom:689.307067pt;}
.y7_c00000{bottom:689.332000pt;}
.yd8_c00000{bottom:689.467067pt;}
.y880_c00000{bottom:689.547067pt;}
.y10f4_c00000{bottom:689.947067pt;}
.y98e_c00000{bottom:690.187067pt;}
.y36f_c00000{bottom:690.347067pt;}
.y2e1_c00000{bottom:690.427067pt;}
.y4b1_c00000{bottom:690.827067pt;}
.y7bd_c00000{bottom:690.907067pt;}
.y661_c00000{bottom:691.307067pt;}
.yabe_c00000{bottom:691.307699pt;}
.y828_c00000{bottom:691.387067pt;}
.y7f6_c00000{bottom:691.627067pt;}
.yfe3_c00000{bottom:691.947067pt;}
.y787_c00000{bottom:692.427067pt;}
.yd0a_c00000{bottom:692.666763pt;}
.y6d_c00000{bottom:692.820587pt;}
.y17e_c00000{bottom:692.900587pt;}
.y8fa_c00000{bottom:692.907067pt;}
.y1142_c00000{bottom:693.467067pt;}
.yc3e_c00000{bottom:693.627067pt;}
.yd1e_c00000{bottom:693.707088pt;}
.yb3b_c00000{bottom:693.787067pt;}
.y508_c00000{bottom:693.787875pt;}
.yb7c_c00000{bottom:693.865595pt;}
.y29e_c00000{bottom:694.267067pt;}
.y4d2_c00000{bottom:694.347067pt;}
.y975_c00000{bottom:694.427067pt;}
.yfae_c00000{bottom:694.667067pt;}
.yedf_c00000{bottom:695.147200pt;}
.y5fe_c00000{bottom:695.227067pt;}
.y403_c00000{bottom:695.307067pt;}
.y1dc_c00000{bottom:695.387067pt;}
.yec2_c00000{bottom:695.467067pt;}
.y2ba_c00000{bottom:695.787067pt;}
.ya41_c00000{bottom:695.947067pt;}
.y553_c00000{bottom:696.107067pt;}
.y348_c00000{bottom:696.267067pt;}
.yf28_c00000{bottom:696.347067pt;}
.ya78_c00000{bottom:696.507067pt;}
.y1110_c00000{bottom:696.587067pt;}
.y41b_c00000{bottom:696.827067pt;}
.y14b_c00000{bottom:696.907067pt;}
.y10b7_c00000{bottom:697.627067pt;}
.ya63_c00000{bottom:697.628907pt;}
.ye2e_c00000{bottom:698.027067pt;}
.yc81_c00000{bottom:698.027200pt;}
.yc03_c00000{bottom:698.267067pt;}
.y3d1_c00000{bottom:698.347067pt;}
.yc72_c00000{bottom:698.347651pt;}
.yad9_c00000{bottom:698.427067pt;}
.y483_c00000{bottom:698.827067pt;}
.yaa4_c00000{bottom:698.907067pt;}
.ycde_c00000{bottom:699.627067pt;}
.yc67_c00000{bottom:699.947067pt;}
.yfba_c00000{bottom:699.947200pt;}
.y6ff_c00000{bottom:700.027067pt;}
.y450_c00000{bottom:700.028235pt;}
.ya8c_c00000{bottom:700.107291pt;}
.y6f7_c00000{bottom:700.267067pt;}
.y539_c00000{bottom:700.347067pt;}
.y312_c00000{bottom:700.427067pt;}
.y103_c00000{bottom:700.507067pt;}
.y522_c00000{bottom:700.667067pt;}
.y1f7_c00000{bottom:700.747067pt;}
.yef3_c00000{bottom:700.987200pt;}
.yea9_c00000{bottom:701.227067pt;}
.y76d_c00000{bottom:702.187067pt;}
.yd62_c00000{bottom:702.427067pt;}
.y197_c00000{bottom:702.587067pt;}
.y391_c00000{bottom:703.307067pt;}
.y1be_c00000{bottom:703.387067pt;}
.y9e0_c00000{bottom:703.628592pt;}
.y9fd_c00000{bottom:704.187067pt;}
.y9a0_c00000{bottom:704.267067pt;}
.ydde_c00000{bottom:704.347067pt;}
.yb10_c00000{bottom:704.349400pt;}
.yf69_c00000{bottom:704.590299pt;}
.yf7a_c00000{bottom:704.827200pt;}
.ya9_c00000{bottom:704.987067pt;}
.y6e1_c00000{bottom:705.147200pt;}
.y1172_c00000{bottom:705.387067pt;}
.yf58_c00000{bottom:706.267067pt;}
.yabd_c00000{bottom:706.667691pt;}
.ye48_c00000{bottom:706.907067pt;}
.y91e_c00000{bottom:707.147200pt;}
.y660_c00000{bottom:707.307067pt;}
.ycab_c00000{bottom:707.387067pt;}
.ybf1_c00000{bottom:707.547067pt;}
.yd7_c00000{bottom:707.867067pt;}
.ybc0_c00000{bottom:708.187067pt;}
.yf37_c00000{bottom:708.267067pt;}
.y7e_c00000{bottom:708.267168pt;}
.y588_c00000{bottom:708.347067pt;}
.y26d_c00000{bottom:708.427067pt;}
.y1194_c00000{bottom:708.667067pt;}
.y4ef_c00000{bottom:709.067200pt;}
.yd36_c00000{bottom:709.147067pt;}
.y115a_c00000{bottom:709.307067pt;}
.y3af_c00000{bottom:709.387067pt;}
.y10a2_c00000{bottom:709.867067pt;}
.yd09_c00000{bottom:710.187067pt;}
.yb4f_c00000{bottom:710.267067pt;}
.y5a5_c00000{bottom:710.507067pt;}
.y1103_c00000{bottom:710.587067pt;}
.y10f3_c00000{bottom:710.987067pt;}
.y35_c00000{bottom:711.013333pt;}
.y9b9_c00000{bottom:711.147067pt;}
.y49_c00000{bottom:711.147200pt;}
.y36e_c00000{bottom:711.307067pt;}
.y251_c00000{bottom:711.387067pt;}
.y4b0_c00000{bottom:711.867067pt;}
.y1098_c00000{bottom:711.947067pt;}
.y127_c00000{bottom:711.947275pt;}
.yb6a_c00000{bottom:712.027107pt;}
.y10e2_c00000{bottom:712.267067pt;}
.ye7f_c00000{bottom:712.349491pt;}
.yb1f_c00000{bottom:712.667067pt;}
.y507_c00000{bottom:713.067291pt;}
.ycc4_c00000{bottom:713.226843pt;}
.ycec_c00000{bottom:713.387067pt;}
.y8f9_c00000{bottom:713.947067pt;}
.y1141_c00000{bottom:714.427067pt;}
.yafc_c00000{bottom:714.667067pt;}
.y4d1_c00000{bottom:715.387067pt;}
.ybaa_c00000{bottom:715.627067pt;}
.yede_c00000{bottom:716.107200pt;}
.y5fd_c00000{bottom:716.267067pt;}
.y4a8_c00000{bottom:716.347067pt;}
.y172_c00000{bottom:716.427067pt;}
.y2b9_c00000{bottom:716.827067pt;}
.ya62_c00000{bottom:716.829267pt;}
.ya40_c00000{bottom:716.907067pt;}
.y552_c00000{bottom:717.067067pt;}
.y347_c00000{bottom:717.307067pt;}
.yf27_c00000{bottom:717.387067pt;}
.ye8d_c00000{bottom:717.467067pt;}
.yc71_c00000{bottom:717.627067pt;}
.y14a_c00000{bottom:717.867067pt;}
.y80d_c00000{bottom:718.187067pt;}
.y87f_c00000{bottom:718.587067pt;}
.y98d_c00000{bottom:718.589851pt;}
.y102_c00000{bottom:718.907067pt;}
.yc80_c00000{bottom:718.987200pt;}
.ye2d_c00000{bottom:719.147067pt;}
.yd1d_c00000{bottom:719.147200pt;}
.y3d0_c00000{bottom:719.307067pt;}
.y44f_c00000{bottom:719.307651pt;}
.yb7b_c00000{bottom:719.385867pt;}
.ya8b_c00000{bottom:719.386707pt;}
.yad8_c00000{bottom:719.387067pt;}
.y482_c00000{bottom:719.867067pt;}
.yaa3_c00000{bottom:719.947067pt;}
.yfe2_c00000{bottom:720.349491pt;}
.ycdd_c00000{bottom:720.667067pt;}
.yc66_c00000{bottom:720.907067pt;}
.y6fe_c00000{bottom:720.987067pt;}
.yfb9_c00000{bottom:720.987200pt;}
.y93c_c00000{bottom:721.227067pt;}
.y311_c00000{bottom:721.387067pt;}
.y521_c00000{bottom:721.627067pt;}
.yb3a_c00000{bottom:721.706504pt;}
.y1f6_c00000{bottom:721.707067pt;}
.yea8_c00000{bottom:722.187067pt;}
.y9df_c00000{bottom:722.908008pt;}
.ya8_c00000{bottom:723.227067pt;}
.y29d_c00000{bottom:723.307067pt;}
.yd61_c00000{bottom:723.387067pt;}
.y196_c00000{bottom:723.547067pt;}
.yb0f_c00000{bottom:723.628816pt;}
.y1126_c00000{bottom:723.787208pt;}
.yf68_c00000{bottom:723.869715pt;}
.y390_c00000{bottom:724.347067pt;}
.y1bd_c00000{bottom:724.427067pt;}
.y56e_c00000{bottom:724.587875pt;}
.y9fc_c00000{bottom:725.147067pt;}
.y99f_c00000{bottom:725.227067pt;}
.ya77_c00000{bottom:725.467067pt;}
.yf79_c00000{bottom:725.867200pt;}
.yd6_c00000{bottom:726.267067pt;}
.yc02_c00000{bottom:727.227067pt;}
.ye47_c00000{bottom:727.947067pt;}
.ycaa_c00000{bottom:728.427067pt;}
.ybf0_c00000{bottom:728.507067pt;}
.ycc3_c00000{bottom:728.586835pt;}
.yabc_c00000{bottom:729.067067pt;}
.y538_c00000{bottom:729.227067pt;}
.y71f_c00000{bottom:729.307067pt;}
.y26c_c00000{bottom:729.387067pt;}
.y1193_c00000{bottom:729.707067pt;}
.y76c_c00000{bottom:730.107067pt;}
.y4ee_c00000{bottom:730.107200pt;}
.y1159_c00000{bottom:730.267067pt;}
.y3ae_c00000{bottom:730.347067pt;}
.y68a_c00000{bottom:730.427067pt;}
.y10a1_c00000{bottom:730.827067pt;}
.yf13_c00000{bottom:730.908008pt;}
.y5a4_c00000{bottom:731.467067pt;}
.ye7e_c00000{bottom:731.628907pt;}
.yddd_c00000{bottom:732.187200pt;}
.y506_c00000{bottom:732.267651pt;}
.y36d_c00000{bottom:732.347067pt;}
.y236_c00000{bottom:732.427067pt;}
.y4af_c00000{bottom:732.827067pt;}
.y6e0_c00000{bottom:733.067067pt;}
.y10e1_c00000{bottom:733.307067pt;}
.yb1e_c00000{bottom:733.627067pt;}
.yceb_c00000{bottom:734.427067pt;}
.y20_c00000{bottom:734.662667pt;}
.y8f8_c00000{bottom:734.907067pt;}
.y91d_c00000{bottom:735.147075pt;}
.yf57_c00000{bottom:735.227067pt;}
.yb69_c00000{bottom:735.387067pt;}
.y1140_c00000{bottom:735.467067pt;}
.y6c_c00000{bottom:735.780851pt;}
.y17d_c00000{bottom:735.782395pt;}
.ya61_c00000{bottom:736.108683pt;}
.ybbf_c00000{bottom:736.186955pt;}
.y4d0_c00000{bottom:736.347067pt;}
.y974_c00000{bottom:736.427067pt;}
.yba9_c00000{bottom:736.667067pt;}
.yb39_c00000{bottom:737.066496pt;}
.yedd_c00000{bottom:737.147067pt;}
.y90c_c00000{bottom:737.227067pt;}
.y101_c00000{bottom:737.307067pt;}
.y2f4_c00000{bottom:737.387067pt;}
.yec1_c00000{bottom:737.467067pt;}
.y7d_c00000{bottom:737.707184pt;}
.y2b8_c00000{bottom:737.867067pt;}
.y98c_c00000{bottom:737.869267pt;}
.ya3f_c00000{bottom:737.947067pt;}
.yd35_c00000{bottom:738.187067pt;}
.y346_c00000{bottom:738.267067pt;}
.yf26_c00000{bottom:738.347067pt;}
.ye8c_c00000{bottom:738.507067pt;}
.y44e_c00000{bottom:738.587067pt;}
.y41a_c00000{bottom:738.827067pt;}
.y1125_c00000{bottom:739.147200pt;}
.y65f_c00000{bottom:739.307067pt;}
.y87e_c00000{bottom:739.627067pt;}
.yfe1_c00000{bottom:739.628907pt;}
.ye61_c00000{bottom:739.787067pt;}
.y10f2_c00000{bottom:739.947067pt;}
.yc7f_c00000{bottom:740.027200pt;}
.y9b8_c00000{bottom:740.187067pt;}
.y3cf_c00000{bottom:740.347067pt;}
.y71a_c00000{bottom:740.427067pt;}
.y481_c00000{bottom:740.827067pt;}
.yaa2_c00000{bottom:740.907067pt;}
.y126_c00000{bottom:741.467443pt;}
.ya7_c00000{bottom:741.627067pt;}
.ycdc_c00000{bottom:741.707200pt;}
.yc65_c00000{bottom:741.947067pt;}
.yfb8_c00000{bottom:741.947200pt;}
.y6fd_c00000{bottom:742.027067pt;}
.y9de_c00000{bottom:742.108368pt;}
.y64e_c00000{bottom:742.427067pt;}
.y520_c00000{bottom:742.667067pt;}
.yb0e_c00000{bottom:742.908232pt;}
.yafb_c00000{bottom:743.149131pt;}
.yc3d_c00000{bottom:743.707067pt;}
.y56d_c00000{bottom:743.788235pt;}
.ycc2_c00000{bottom:743.866667pt;}
.ya12_c00000{bottom:743.867875pt;}
.y1f5_c00000{bottom:744.027067pt;}
.y29c_c00000{bottom:744.267067pt;}
.yd60_c00000{bottom:744.427067pt;}
.y195_c00000{bottom:744.587067pt;}
.yd5_c00000{bottom:744.667067pt;}
.yb7a_c00000{bottom:744.906139pt;}
.yc01_c00000{bottom:745.067235pt;}
.yff8_c00000{bottom:745.307067pt;}
.y6_c00000{bottom:745.333333pt;}
.y171_c00000{bottom:745.387067pt;}
.y551_c00000{bottom:746.107067pt;}
.y9fb_c00000{bottom:746.187067pt;}
.y99e_c00000{bottom:746.267067pt;}
.y149_c00000{bottom:746.907067pt;}
.y80c_c00000{bottom:747.227067pt;}
.y111a_c00000{bottom:748.347067pt;}
.yd72_c00000{bottom:748.907067pt;}
.y34_c00000{bottom:749.813333pt;}
.y48_c00000{bottom:749.947067pt;}
.yf12_c00000{bottom:750.108368pt;}
.yea7_c00000{bottom:750.186795pt;}
.y93b_c00000{bottom:750.267067pt;}
.y26b_c00000{bottom:750.427067pt;}
.y91c_c00000{bottom:750.507067pt;}
.y1192_c00000{bottom:750.667067pt;}
.ye7d_c00000{bottom:750.908323pt;}
.y3ad_c00000{bottom:751.387067pt;}
.y505_c00000{bottom:751.547067pt;}
.y10a0_c00000{bottom:751.867067pt;}
.yb38_c00000{bottom:752.426488pt;}
.y5a3_c00000{bottom:752.507067pt;}
.y76b_c00000{bottom:752.987200pt;}
.yecd_c00000{bottom:753.147200pt;}
.y235_c00000{bottom:753.387067pt;}
.ya76_c00000{bottom:753.467067pt;}
.y10e0_c00000{bottom:754.347067pt;}
.yb1d_c00000{bottom:754.667067pt;}
.yf78_c00000{bottom:754.827200pt;}
.y65e_c00000{bottom:755.307067pt;}
.ya60_c00000{bottom:755.388099pt;}
.yb68_c00000{bottom:755.627067pt;}
.y100_c00000{bottom:755.707067pt;}
.y8f7_c00000{bottom:755.947067pt;}
.y113f_c00000{bottom:756.427067pt;}
.yb4e_c00000{bottom:757.147243pt;}
.y98b_c00000{bottom:757.148683pt;}
.y4cf_c00000{bottom:757.387067pt;}
.y973_c00000{bottom:757.467067pt;}
.ybef_c00000{bottom:757.547067pt;}
.yba8_c00000{bottom:757.707067pt;}
.yedc_c00000{bottom:758.107067pt;}
.y6bf_c00000{bottom:758.267067pt;}
.y537_c00000{bottom:758.347067pt;}
.y2f3_c00000{bottom:758.427067pt;}
.yec0_c00000{bottom:758.507067pt;}
.yfe0_c00000{bottom:758.908323pt;}
.y4ed_c00000{bottom:759.147200pt;}
.y345_c00000{bottom:759.307067pt;}
.ye8b_c00000{bottom:759.547067pt;}
.y419_c00000{bottom:759.867067pt;}
.ya6_c00000{bottom:760.027067pt;}
.yc00_c00000{bottom:760.347067pt;}
.y87d_c00000{bottom:760.587067pt;}
.y9b7_c00000{bottom:761.147067pt;}
.y3ce_c00000{bottom:761.387067pt;}
.y9dd_c00000{bottom:761.387784pt;}
.ye2c_c00000{bottom:761.467067pt;}
.ybbe_c00000{bottom:761.627067pt;}
.y480_c00000{bottom:761.867067pt;}
.yaa1_c00000{bottom:761.947067pt;}
.y1124_c00000{bottom:762.027067pt;}
.yb0d_c00000{bottom:762.108592pt;}
.yafa_c00000{bottom:762.349491pt;}
.ycdb_c00000{bottom:762.667067pt;}
.yc64_c00000{bottom:762.907067pt;}
.y125_c00000{bottom:762.907171pt;}
.y6fc_c00000{bottom:762.987067pt;}
.yd4_c00000{bottom:763.067067pt;}
.y56c_c00000{bottom:763.067651pt;}
.yf56_c00000{bottom:763.147200pt;}
.ya11_c00000{bottom:763.147291pt;}
.y679_c00000{bottom:763.467067pt;}
.y51f_c00000{bottom:763.707067pt;}
.ycc1_c00000{bottom:764.107067pt;}
.yc3c_c00000{bottom:764.667067pt;}
.y29b_c00000{bottom:765.307067pt;}
.yd5f_c00000{bottom:765.467067pt;}
.y38f_c00000{bottom:766.347067pt;}
.y1bc_c00000{bottom:766.427067pt;}
.yd34_c00000{bottom:766.667515pt;}
.y2b7_c00000{bottom:766.827067pt;}
.ya3e_c00000{bottom:766.907067pt;}
.y9fa_c00000{bottom:767.147067pt;}
.y7c_c00000{bottom:767.147200pt;}
.yf25_c00000{bottom:767.387067pt;}
.y148_c00000{bottom:767.867067pt;}
.y10f1_c00000{bottom:767.947067pt;}
.yc7e_c00000{bottom:768.987200pt;}
.yf11_c00000{bottom:769.387784pt;}
.yd71_c00000{bottom:769.947067pt;}
.ye7c_c00000{bottom:770.108683pt;}
.yb79_c00000{bottom:770.426411pt;}
.yfb7_c00000{bottom:770.987200pt;}
.y65d_c00000{bottom:771.307067pt;}
.y64d_c00000{bottom:771.467067pt;}
.y1191_c00000{bottom:771.707067pt;}
.y1f_c00000{bottom:771.997333pt;}
.y3ac_c00000{bottom:772.347067pt;}
.y689_c00000{bottom:772.427067pt;}
.yb4d_c00000{bottom:772.427075pt;}
.y109f_c00000{bottom:772.827067pt;}
.y91b_c00000{bottom:773.387067pt;}
.y5a2_c00000{bottom:773.467067pt;}
.y194_c00000{bottom:773.547067pt;}
.yff_c00000{bottom:774.107067pt;}
.y36c_c00000{bottom:774.347067pt;}
.y170_c00000{bottom:774.427067pt;}
.y550_c00000{bottom:774.587515pt;}
.ya5f_c00000{bottom:774.667515pt;}
.yb37_c00000{bottom:774.827200pt;}
.y99d_c00000{bottom:775.227067pt;}
.ybee_c00000{bottom:775.386835pt;}
.yb1c_c00000{bottom:775.627067pt;}
.yea6_c00000{bottom:775.707067pt;}
.y80b_c00000{bottom:776.107067pt;}
.ya75_c00000{bottom:776.347067pt;}
.y1119_c00000{bottom:776.347235pt;}
.y98a_c00000{bottom:776.349043pt;}
.y8f6_c00000{bottom:776.907067pt;}
.yfdf_c00000{bottom:778.108683pt;}
.ya5_c00000{bottom:778.427067pt;}
.y6b_c00000{bottom:778.662659pt;}
.y47_c00000{bottom:778.667067pt;}
.y17c_c00000{bottom:778.742659pt;}
.yedb_c00000{bottom:779.147067pt;}
.y327_c00000{bottom:779.307067pt;}
.y504_c00000{bottom:779.387067pt;}
.y26a_c00000{bottom:779.467067pt;}
.y344_c00000{bottom:780.347067pt;}
.y9dc_c00000{bottom:780.667200pt;}
.yb0c_c00000{bottom:781.388008pt;}
.yd3_c00000{bottom:781.467067pt;}
.y87c_c00000{bottom:781.627067pt;}
.yaf9_c00000{bottom:781.628907pt;}
.y9b6_c00000{bottom:782.187067pt;}
.y56b_c00000{bottom:782.346707pt;}
.y3cd_c00000{bottom:782.347067pt;}
.ya10_c00000{bottom:782.347651pt;}
.y617_c00000{bottom:782.427067pt;}
.ye2b_c00000{bottom:782.587067pt;}
.y47f_c00000{bottom:782.827067pt;}
.yf77_c00000{bottom:782.827200pt;}
.yaa0_c00000{bottom:782.907067pt;}
.ybff_c00000{bottom:783.307067pt;}
.yc63_c00000{bottom:783.947067pt;}
.y678_c00000{bottom:784.427067pt;}
.ybbd_c00000{bottom:784.587067pt;}
.y11b5_c00000{bottom:784.667067pt;}
.yf24_c00000{bottom:785.227067pt;}
.y113e_c00000{bottom:785.467067pt;}
.yc3b_c00000{bottom:785.707067pt;}
.yca9_c00000{bottom:785.867875pt;}
.y51e_c00000{bottom:786.027067pt;}
.y29a_c00000{bottom:786.267067pt;}
.y4ce_c00000{bottom:786.347067pt;}
.yd5e_c00000{bottom:786.427067pt;}
.y1158_c00000{bottom:787.227067pt;}
.y65c_c00000{bottom:787.307067pt;}
.y3f2_c00000{bottom:787.387067pt;}
.y1bb_c00000{bottom:787.467067pt;}
.y4ec_c00000{bottom:787.548459pt;}
.yb4c_c00000{bottom:787.787067pt;}
.y2b6_c00000{bottom:787.867067pt;}
.yadd_c00000{bottom:788.187067pt;}
.ye8a_c00000{bottom:788.507067pt;}
.yf10_c00000{bottom:788.667200pt;}
.y147_c00000{bottom:788.907067pt;}
.ye7b_c00000{bottom:789.388099pt;}
.ybed_c00000{bottom:790.666667pt;}
.yd70_c00000{bottom:790.907067pt;}
.y1118_c00000{bottom:791.627067pt;}
.ycda_c00000{bottom:791.707067pt;}
.y6fb_c00000{bottom:792.027067pt;}
.yf36_c00000{bottom:792.347067pt;}
.y124_c00000{bottom:792.347187pt;}
.y64c_c00000{bottom:792.427067pt;}
.yfe_c00000{bottom:792.667067pt;}
.y99c_c00000{bottom:793.067075pt;}
.y3ab_c00000{bottom:793.387067pt;}
.y688_c00000{bottom:793.467067pt;}
.y54f_c00000{bottom:793.787875pt;}
.ya5e_c00000{bottom:793.867875pt;}
.y5a1_c00000{bottom:794.507067pt;}
.y193_c00000{bottom:794.587067pt;}
.yc7d_c00000{bottom:794.827200pt;}
.y36b_c00000{bottom:795.387067pt;}
.y16f_c00000{bottom:795.467067pt;}
.y989_c00000{bottom:795.628459pt;}
.ya3d_c00000{bottom:795.787067pt;}
.yb78_c00000{bottom:795.946683pt;}
.y9f9_c00000{bottom:796.187067pt;}
.ya4_c00000{bottom:796.827067pt;}
.yfde_c00000{bottom:797.388099pt;}
.y8f5_c00000{bottom:797.947067pt;}
.y46_c00000{bottom:798.107067pt;}
.yea5_c00000{bottom:798.587067pt;}
.yfb6_c00000{bottom:798.987067pt;}
.y972_c00000{bottom:799.467067pt;}
.yba7_c00000{bottom:799.707067pt;}
.y269_c00000{bottom:800.427067pt;}
.yb0b_c00000{bottom:800.667424pt;}
.yaf8_c00000{bottom:800.908323pt;}
.y343_c00000{bottom:801.307067pt;}
.y56a_c00000{bottom:801.547067pt;}
.ya0f_c00000{bottom:801.627067pt;}
.y109e_c00000{bottom:801.867067pt;}
.y87b_c00000{bottom:802.587067pt;}
.yab8_c00000{bottom:802.909715pt;}
.y9b5_c00000{bottom:803.147067pt;}
.y65b_c00000{bottom:803.307067pt;}
.y3cc_c00000{bottom:803.387067pt;}
.y5d6_c00000{bottom:803.467067pt;}
.ye2a_c00000{bottom:803.787067pt;}
.y4ae_c00000{bottom:803.867067pt;}
.ya9f_c00000{bottom:803.947067pt;}
.yb1b_c00000{bottom:804.667067pt;}
.yca8_c00000{bottom:805.147291pt;}
.y80a_c00000{bottom:805.227067pt;}
.y7b_c00000{bottom:805.306563pt;}
.yf23_c00000{bottom:805.467067pt;}
.yf76_c00000{bottom:805.707067pt;}
.yc3a_c00000{bottom:806.667067pt;}
.y4eb_c00000{bottom:806.827875pt;}
.yeda_c00000{bottom:808.187067pt;}
.yd2_c00000{bottom:808.347067pt;}
.y1ba_c00000{bottom:808.427067pt;}
.ye7a_c00000{bottom:808.667515pt;}
.y1e_c00000{bottom:809.332000pt;}
.yf35_c00000{bottom:809.627067pt;}
.y146_c00000{bottom:809.947067pt;}
.y10b6_c00000{bottom:810.507067pt;}
.yb4b_c00000{bottom:810.667067pt;}
.ybec_c00000{bottom:810.907067pt;}
.yfd_c00000{bottom:811.067067pt;}
.y10df_c00000{bottom:811.307067pt;}
.y47e_c00000{bottom:811.867067pt;}
.yd6f_c00000{bottom:811.947067pt;}
.yc62_c00000{bottom:812.907067pt;}
.y54e_c00000{bottom:813.067291pt;}
.ya5d_c00000{bottom:813.147291pt;}
.y64b_c00000{bottom:813.467067pt;}
.y1190_c00000{bottom:813.707067pt;}
.y123_c00000{bottom:813.867067pt;}
.y3aa_c00000{bottom:814.347067pt;}
.y687_c00000{bottom:814.427067pt;}
.y1117_c00000{bottom:814.587067pt;}
.y4cd_c00000{bottom:814.827875pt;}
.y988_c00000{bottom:814.907875pt;}
.ya3_c00000{bottom:815.227067pt;}
.y299_c00000{bottom:815.307067pt;}
.yd5d_c00000{bottom:815.467067pt;}
.y192_c00000{bottom:815.547067pt;}
.y38e_c00000{bottom:816.347067pt;}
.y16e_c00000{bottom:816.427067pt;}
.yfdd_c00000{bottom:816.667515pt;}
.y9f8_c00000{bottom:817.227067pt;}
.y45_c00000{bottom:817.547067pt;}
.yc7c_c00000{bottom:817.707067pt;}
.y2b5_c00000{bottom:818.027067pt;}
.y418_c00000{bottom:818.667067pt;}
.y8f4_c00000{bottom:818.907067pt;}
.y65a_c00000{bottom:819.307067pt;}
.yb0a_c00000{bottom:819.867784pt;}
.y6fa_c00000{bottom:819.947067pt;}
.yaf7_c00000{bottom:820.108683pt;}
.y971_c00000{bottom:820.427067pt;}
.yba6_c00000{bottom:820.667067pt;}
.yb77_c00000{bottom:821.386795pt;}
.y268_c00000{bottom:821.467067pt;}
.y6a_c00000{bottom:821.622923pt;}
.y17b_c00000{bottom:821.702923pt;}
.yfb5_c00000{bottom:821.867067pt;}
.yab7_c00000{bottom:822.110075pt;}
.yb1a_c00000{bottom:822.426667pt;}
.yff7_c00000{bottom:823.307067pt;}
.y87a_c00000{bottom:823.627067pt;}
.y36a_c00000{bottom:824.347067pt;}
.yca7_c00000{bottom:824.426707pt;}
.y22d_c00000{bottom:824.427067pt;}
.y4ad_c00000{bottom:824.907067pt;}
.y4ea_c00000{bottom:826.107291pt;}
.y4_c00000{bottom:826.666667pt;}
.yc39_c00000{bottom:827.707067pt;}
.ye79_c00000{bottom:827.867875pt;}
.y437_c00000{bottom:829.387067pt;}
.yd1_c00000{bottom:829.467067pt;}
.y109d_c00000{bottom:829.787067pt;}
.y342_c00000{bottom:830.347067pt;}
.y145_c00000{bottom:830.907067pt;}
.y99b_c00000{bottom:831.307067pt;}
.y9b4_c00000{bottom:832.187067pt;}
.y54d_c00000{bottom:832.346707pt;}
.ya5c_c00000{bottom:832.426707pt;}
.yf34_c00000{bottom:832.587067pt;}
.y47d_c00000{bottom:832.907067pt;}
.ya2_c00000{bottom:833.627067pt;}
.y4cc_c00000{bottom:834.107291pt;}
.y987_c00000{bottom:834.108235pt;}
.y809_c00000{bottom:834.187067pt;}
.y64a_c00000{bottom:834.427067pt;}
.y118f_c00000{bottom:834.667067pt;}
.y659_c00000{bottom:835.307067pt;}
.yfdc_c00000{bottom:835.867875pt;}
.yed9_c00000{bottom:836.107067pt;}
.y298_c00000{bottom:836.267067pt;}
.y113d_c00000{bottom:836.347067pt;}
.yd5c_c00000{bottom:836.427067pt;}
.y5a0_c00000{bottom:836.507067pt;}
.y191_c00000{bottom:836.587067pt;}
.y44_c00000{bottom:836.987067pt;}
.y38d_c00000{bottom:837.387067pt;}
.y16d_c00000{bottom:837.467067pt;}
.y9f7_c00000{bottom:838.187067pt;}
.yebf_c00000{bottom:838.347067pt;}
.y10b5_c00000{bottom:838.587067pt;}
.yb09_c00000{bottom:839.147200pt;}
.yaf6_c00000{bottom:839.388099pt;}
.y8f3_c00000{bottom:839.947067pt;}
.yab6_c00000{bottom:841.389491pt;}
.yba5_c00000{bottom:841.707067pt;}
.y267_c00000{bottom:842.427067pt;}
.yb19_c00000{bottom:842.667067pt;}
.y3a9_c00000{bottom:843.387067pt;}
.y686_c00000{bottom:843.467067pt;}
.yca6_c00000{bottom:843.627067pt;}
.y879_c00000{bottom:844.587067pt;}
.y4e9_c00000{bottom:845.307651pt;}
.y369_c00000{bottom:845.387067pt;}
.y22c_c00000{bottom:845.467067pt;}
.y7a_c00000{bottom:845.867067pt;}
.y1097_c00000{bottom:845.947067pt;}
.ye29_c00000{bottom:846.107067pt;}
.y1d_c00000{bottom:846.666667pt;}
.yb76_c00000{bottom:846.907067pt;}
.ye78_c00000{bottom:847.147291pt;}
.yd0_c00000{bottom:847.707067pt;}
.yfc_c00000{bottom:847.867067pt;}
.y2b4_c00000{bottom:848.187067pt;}
.yc38_c00000{bottom:848.667067pt;}
.y970_c00000{bottom:849.467067pt;}
.y417_c00000{bottom:850.347067pt;}
.y1b9_c00000{bottom:850.427067pt;}
.y341_c00000{bottom:851.307067pt;}
.y54c_c00000{bottom:851.547067pt;}
.ya5b_c00000{bottom:851.627067pt;}
.y122_c00000{bottom:851.947067pt;}
.ya1_c00000{bottom:852.027067pt;}
.y4cb_c00000{bottom:853.307651pt;}
.y986_c00000{bottom:853.387651pt;}
.y47c_c00000{bottom:853.867067pt;}
.ya3c_c00000{bottom:853.947067pt;}
.yfdb_c00000{bottom:855.147291pt;}
.y734_c00000{bottom:855.467067pt;}
.y118e_c00000{bottom:855.707067pt;}
.y43_c00000{bottom:856.427067pt;}
.y297_c00000{bottom:857.307067pt;}
.yd5b_c00000{bottom:857.467067pt;}
.y59f_c00000{bottom:857.547067pt;}
.y190_c00000{bottom:857.787067pt;}
.y38c_c00000{bottom:858.347067pt;}
.y1db_c00000{bottom:858.427067pt;}
.yaf5_c00000{bottom:858.667515pt;}
.yed8_c00000{bottom:859.067067pt;}
.y9f6_c00000{bottom:859.227067pt;}
.y9b3_c00000{bottom:860.668907pt;}
.y8f2_c00000{bottom:860.987067pt;}
.y808_c00000{bottom:862.187067pt;}
.y266_c00000{bottom:863.467067pt;}
.y3a8_c00000{bottom:864.347067pt;}
.y685_c00000{bottom:864.427067pt;}
.y69_c00000{bottom:864.504731pt;}
.y17a_c00000{bottom:864.584731pt;}
.y4e8_c00000{bottom:864.587067pt;}
.ycf_c00000{bottom:866.107067pt;}
.y368_c00000{bottom:866.347067pt;}
.ye77_c00000{bottom:866.426707pt;}
.y16c_c00000{bottom:866.427067pt;}
.yb08_c00000{bottom:866.827067pt;}
.y4ac_c00000{bottom:866.907067pt;}
.ye28_c00000{bottom:867.227067pt;}
.y658_c00000{bottom:867.307067pt;}
.y2b3_c00000{bottom:869.147067pt;}
.yc37_c00000{bottom:869.707067pt;}
.ya0_c00000{bottom:870.427067pt;}
.yba4_c00000{bottom:870.667067pt;}
.y79_c00000{bottom:870.987067pt;}
.y436_c00000{bottom:871.387067pt;}
.y1b8_c00000{bottom:871.467067pt;}
.y340_c00000{bottom:872.347067pt;}
.y4ca_c00000{bottom:872.587067pt;}
.y985_c00000{bottom:872.667067pt;}
.y878_c00000{bottom:873.627067pt;}
.yfda_c00000{bottom:874.426707pt;}
.y47b_c00000{bottom:874.907067pt;}
.ya3b_c00000{bottom:874.987067pt;}
.y42_c00000{bottom:875.867067pt;}
.y786_c00000{bottom:876.427067pt;}
.y118d_c00000{bottom:876.667067pt;}
.y96f_c00000{bottom:877.867875pt;}
.y296_c00000{bottom:878.267067pt;}
.yd5a_c00000{bottom:878.427067pt;}
.y59e_c00000{bottom:878.507067pt;}
.y18f_c00000{bottom:878.987067pt;}
.y326_c00000{bottom:879.307067pt;}
.y38b_c00000{bottom:879.387067pt;}
.y1da_c00000{bottom:879.467067pt;}
.y9b2_c00000{bottom:879.869267pt;}
.y9f5_c00000{bottom:880.187067pt;}
.y144_c00000{bottom:880.907067pt;}
.y657_c00000{bottom:883.307067pt;}
.y265_c00000{bottom:884.427067pt;}
.yce_c00000{bottom:884.507067pt;}
.yfb_c00000{bottom:884.667067pt;}
.y3a7_c00000{bottom:885.387067pt;}
.y684_c00000{bottom:885.467067pt;}
.ye76_c00000{bottom:885.627067pt;}
.y367_c00000{bottom:887.387067pt;}
.y16b_c00000{bottom:887.467067pt;}
.ye27_c00000{bottom:888.427067pt;}
.y9f_c00000{bottom:888.827067pt;}
.y8f1_c00000{bottom:889.947067pt;}
.y649_c00000{bottom:892.267067pt;}
.y2f2_c00000{bottom:892.427067pt;}
.y33f_c00000{bottom:893.307067pt;}
.yfd9_c00000{bottom:893.627067pt;}
.y877_c00000{bottom:894.587067pt;}
.y41_c00000{bottom:895.307067pt;}
.y47a_c00000{bottom:895.867067pt;}
.ya3a_c00000{bottom:895.947067pt;}
.y121_c00000{bottom:896.827067pt;}
.y96e_c00000{bottom:897.147291pt;}
.y785_c00000{bottom:897.467067pt;}
.y118c_c00000{bottom:897.707067pt;}
.y78_c00000{bottom:898.587067pt;}
.yc36_c00000{bottom:898.667067pt;}
.y9b1_c00000{bottom:899.148683pt;}
.y295_c00000{bottom:899.307067pt;}
.yd59_c00000{bottom:899.467067pt;}
.y59d_c00000{bottom:899.547067pt;}
.y18e_c00000{bottom:900.027067pt;}
.y536_c00000{bottom:900.347067pt;}
.y1b7_c00000{bottom:900.427067pt;}
.y143_c00000{bottom:901.947067pt;}
.ycd_c00000{bottom:903.067067pt;}
.y3a6_c00000{bottom:906.427067pt;}
.y9e_c00000{bottom:907.227067pt;}
.y68_c00000{bottom:907.464995pt;}
.y179_c00000{bottom:907.544995pt;}
.y16a_c00000{bottom:908.427067pt;}
.y9f4_c00000{bottom:909.227067pt;}
.ye26_c00000{bottom:909.547067pt;}
.y264_c00000{bottom:913.467067pt;}
.y33e_c00000{bottom:914.347067pt;}
.y40_c00000{bottom:914.747067pt;}
.y656_c00000{bottom:915.147067pt;}
.y120_c00000{bottom:915.227067pt;}
.y876_c00000{bottom:915.627067pt;}
.y96d_c00000{bottom:916.426707pt;}
.y479_c00000{bottom:916.907067pt;}
.ya39_c00000{bottom:916.987067pt;}
.y8f0_c00000{bottom:918.428099pt;}
.y118b_c00000{bottom:918.747067pt;}
.y294_c00000{bottom:920.347067pt;}
.y59c_c00000{bottom:920.507067pt;}
.y18d_c00000{bottom:920.987067pt;}
.y38a_c00000{bottom:921.387067pt;}
.ycc_c00000{bottom:921.467067pt;}
.y142_c00000{bottom:922.907067pt;}
.y30_c00000{bottom:924.000000pt;}
.y9d_c00000{bottom:925.627067pt;}
.y784_c00000{bottom:926.427067pt;}
.yc35_c00000{bottom:927.145819pt;}
.y3a5_c00000{bottom:927.387067pt;}
.y683_c00000{bottom:927.467067pt;}
.yd58_c00000{bottom:928.427067pt;}
.y366_c00000{bottom:929.387067pt;}
.y169_c00000{bottom:929.467067pt;}
.ye25_c00000{bottom:930.747067pt;}
.y27_c00000{bottom:932.000000pt;}
.y11f_c00000{bottom:933.627067pt;}
.y3f_c00000{bottom:934.187067pt;}
.y263_c00000{bottom:934.427067pt;}
.y33d_c00000{bottom:935.307067pt;}
.y96c_c00000{bottom:935.627067pt;}
.y8ef_c00000{bottom:937.628459pt;}
.y478_c00000{bottom:937.867067pt;}
.y875_c00000{bottom:937.947067pt;}
.ycb_c00000{bottom:939.867067pt;}
.y293_c00000{bottom:941.307067pt;}
.y59b_c00000{bottom:941.547067pt;}
.y18c_c00000{bottom:942.027067pt;}
.y5cd_c00000{bottom:942.267067pt;}
.y1b6_c00000{bottom:942.427067pt;}
.y141_c00000{bottom:943.947067pt;}
.y9c_c00000{bottom:944.027067pt;}
.yc34_c00000{bottom:945.946011pt;}
.y118a_c00000{bottom:947.707067pt;}
.y67_c00000{bottom:950.425259pt;}
.y168_c00000{bottom:950.427067pt;}
.y178_c00000{bottom:950.505259pt;}
.ye24_c00000{bottom:951.867067pt;}
.y11e_c00000{bottom:952.027067pt;}
.y77_c00000{bottom:953.147067pt;}
.y3e_c00000{bottom:953.627067pt;}
.y262_c00000{bottom:955.467067pt;}
.y3a4_c00000{bottom:956.427067pt;}
.y682_c00000{bottom:956.507067pt;}
.y8ee_c00000{bottom:956.907875pt;}
.yca_c00000{bottom:958.107067pt;}
.yfa_c00000{bottom:958.267067pt;}
.y874_c00000{bottom:961.627067pt;}
.y2b2_c00000{bottom:962.347067pt;}
.y18b_c00000{bottom:962.987067pt;}
.y389_c00000{bottom:963.387067pt;}
.yc33_c00000{bottom:963.466315pt;}
.y1b5_c00000{bottom:963.467067pt;}
.y33c_c00000{bottom:964.347067pt;}
.y477_c00000{bottom:966.907067pt;}
.ya38_c00000{bottom:966.987067pt;}
.y292_c00000{bottom:970.347067pt;}
.y11d_c00000{bottom:970.427067pt;}
.y59a_c00000{bottom:970.587067pt;}
.y9b_c00000{bottom:970.907339pt;}
.y5cc_c00000{bottom:971.307067pt;}
.y365_c00000{bottom:971.387067pt;}
.y167_c00000{bottom:971.467067pt;}
.y140_c00000{bottom:972.987067pt;}
.y3d_c00000{bottom:973.067067pt;}
.y8ed_c00000{bottom:976.187291pt;}
.yc9_c00000{bottom:976.507067pt;}
.yf9_c00000{bottom:976.667067pt;}
.y76_c00000{bottom:977.067067pt;}
.yc32_c00000{bottom:980.986619pt;}
.ye23_c00000{bottom:980.987067pt;}
.y33b_c00000{bottom:983.786371pt;}
.y71e_c00000{bottom:984.347067pt;}
.y261_c00000{bottom:984.507067pt;}
.y3a3_c00000{bottom:986.187155pt;}
.y681_c00000{bottom:986.267155pt;}
.y11c_c00000{bottom:989.307339pt;}
.y1_c00000{bottom:990.666667pt;}
.y291_c00000{bottom:991.307067pt;}
.y18a_c00000{bottom:992.027067pt;}
.y9a_c00000{bottom:992.347067pt;}
.y364_c00000{bottom:992.427067pt;}
.y3c_c00000{bottom:992.507067pt;}
.y66_c00000{bottom:993.307067pt;}
.y177_c00000{bottom:993.387067pt;}
.yc8_c00000{bottom:994.907067pt;}
.yf8_c00000{bottom:995.067067pt;}
.y476_c00000{bottom:995.386707pt;}
.y8ec_c00000{bottom:995.387651pt;}
.yc31_c00000{bottom:998.426763pt;}
.y75_c00000{bottom:1000.827067pt;}
.y3_c00000{bottom:1001.558667pt;}
.y65_c00000{bottom:1006.667067pt;}
.y33a_c00000{bottom:1008.267067pt;}
.y13f_c00000{bottom:1008.347067pt;}
.y3a2_c00000{bottom:1010.667067pt;}
.y11b_c00000{bottom:1010.747067pt;}
.y3b_c00000{bottom:1011.947067pt;}
.y290_c00000{bottom:1012.347067pt;}
.y595_c00000{bottom:1013.227067pt;}
.yc7_c00000{bottom:1013.307067pt;}
.y363_c00000{bottom:1013.387067pt;}
.y99_c00000{bottom:1013.467067pt;}
.y475_c00000{bottom:1014.587067pt;}
.y8eb_c00000{bottom:1014.667067pt;}
.yc30_c00000{bottom:1015.947067pt;}
.y166_c00000{bottom:1045.387067pt;}
.y338_c00000{bottom:1063.147200pt;}
.y73_c00000{bottom:1063.227067pt;}
.y13_c00000{bottom:1108.000000pt;}
.y2e_c00000{bottom:1308.000000pt;}
.y2d_c00000{bottom:1429.333333pt;}
.hd_c00000{height:0.000000pt;}
.h15_c00000{height:20.000000pt;}
.h7_c00000{height:22.666667pt;}
.h9_c00000{height:25.333333pt;}
.h30_c00000{height:30.324375pt;}
.h13_c00000{height:30.666667pt;}
.h14_c00000{height:33.333333pt;}
.h35_c00000{height:37.343906pt;}
.hf_c00000{height:39.101562pt;}
.h4_c00000{height:42.666667pt;}
.h8_c00000{height:46.210938pt;}
.h4f_c00000{height:46.330554pt;}
.h2d_c00000{height:46.890469pt;}
.h4b_c00000{height:46.890970pt;}
.h50_c00000{height:47.020201pt;}
.h4a_c00000{height:47.020265pt;}
.h31_c00000{height:47.020937pt;}
.hb_c00000{height:49.765625pt;}
.h3a_c00000{height:51.382969pt;}
.h51_c00000{height:51.525937pt;}
.ha_c00000{height:52.000000pt;}
.h46_c00000{height:52.421544pt;}
.h38_c00000{height:52.422344pt;}
.h24_c00000{height:52.448437pt;}
.h10_c00000{height:53.447917pt;}
.h48_c00000{height:53.857500pt;}
.h1_c00000{height:54.666667pt;}
.h43_c00000{height:55.485563pt;}
.h4e_c00000{height:55.736250pt;}
.h5b_c00000{height:56.153722pt;}
.h6e_c00000{height:56.153861pt;}
.h5c_c00000{height:56.154394pt;}
.h61_c00000{height:56.155546pt;}
.h2c_c00000{height:56.156250pt;}
.h39_c00000{height:56.156783pt;}
.h59_c00000{height:56.163802pt;}
.h5f_c00000{height:56.164058pt;}
.h2e_c00000{height:56.312500pt;}
.h3d_c00000{height:57.444844pt;}
.h45_c00000{height:57.446284pt;}
.h1b_c00000{height:58.588594pt;}
.h69_c00000{height:59.390094pt;}
.h6a_c00000{height:59.397038pt;}
.h63_c00000{height:59.397092pt;}
.h6c_c00000{height:59.398478pt;}
.h57_c00000{height:59.399374pt;}
.h6f_c00000{height:59.399737pt;}
.h54_c00000{height:59.400270pt;}
.h5a_c00000{height:59.400814pt;}
.h67_c00000{height:59.401166pt;}
.h5e_c00000{height:59.401177pt;}
.h4c_c00000{height:59.401710pt;}
.h6d_c00000{height:59.402244pt;}
.h62_c00000{height:59.402606pt;}
.h70_c00000{height:59.403022pt;}
.h53_c00000{height:59.403140pt;}
.h5d_c00000{height:59.403150pt;}
.h3b_c00000{height:59.403502pt;}
.h55_c00000{height:59.404046pt;}
.h66_c00000{height:59.404580pt;}
.h42_c00000{height:59.404942pt;}
.h72_c00000{height:59.405305pt;}
.h41_c00000{height:59.405838pt;}
.h64_c00000{height:59.406372pt;}
.h58_c00000{height:59.406382pt;}
.h52_c00000{height:59.407278pt;}
.h6b_c00000{height:59.407641pt;}
.h3f_c00000{height:59.407812pt;}
.h40_c00000{height:59.408174pt;}
.h56_c00000{height:59.409070pt;}
.h44_c00000{height:59.409614pt;}
.h3e_c00000{height:59.410148pt;}
.h73_c00000{height:59.410510pt;}
.h47_c00000{height:59.411406pt;}
.h3c_c00000{height:59.412846pt;}
.h68_c00000{height:59.414254pt;}
.h60_c00000{height:59.416398pt;}
.h21_c00000{height:62.483520pt;}
.h36_c00000{height:62.781250pt;}
.h25_c00000{height:62.812500pt;}
.he_c00000{height:63.984375pt;}
.h2a_c00000{height:64.500000pt;}
.h49_c00000{height:65.422031pt;}
.h33_c00000{height:66.750000pt;}
.h4d_c00000{height:66.783373pt;}
.h2f_c00000{height:66.783906pt;}
.h32_c00000{height:66.784440pt;}
.h71_c00000{height:66.887279pt;}
.h65_c00000{height:66.887812pt;}
.h12_c00000{height:68.000000pt;}
.h1c_c00000{height:68.288000pt;}
.h1a_c00000{height:69.473906pt;}
.h37_c00000{height:71.189531pt;}
.h34_c00000{height:72.333033pt;}
.h20_c00000{height:74.092480pt;}
.h27_c00000{height:75.142500pt;}
.h5_c00000{height:85.312500pt;}
.h28_c00000{height:86.107500pt;}
.h19_c00000{height:90.604219pt;}
.h11_c00000{height:91.625000pt;}
.h1f_c00000{height:96.627520pt;}
.h2b_c00000{height:96.749445pt;}
.h29_c00000{height:96.750000pt;}
.h17_c00000{height:101.489531pt;}
.h2_c00000{height:106.640625pt;}
.h1d_c00000{height:108.236480pt;}
.hc_c00000{height:112.000000pt;}
.h26_c00000{height:118.357500pt;}
.h18_c00000{height:133.505156pt;}
.h6_c00000{height:137.437500pt;}
.h1e_c00000{height:142.380480pt;}
.h22_c00000{height:146.667187pt;}
.h23_c00000{height:150.607500pt;}
.h3_c00000{height:177.734375pt;}
.h16_c00000{height:1122.560000pt;}
.h0_c00000{height:1122.666667pt;}
.w5_c00000{width:0.000000pt;}
.w9_c00000{width:105.333333pt;}
.w1_c00000{width:106.666667pt;}
.w3_c00000{width:110.666667pt;}
.w8_c00000{width:153.333333pt;}
.w4_c00000{width:374.666667pt;}
.wa_c00000{width:536.000000pt;}
.w7_c00000{width:600.000000pt;}
.w6_c00000{width:610.666667pt;}
.w2_c00000{width:620.000000pt;}
.w0_c00000{width:793.333333pt;}
.wd_c00000{width:793.626667pt;}
.wb_c00000{width:793.760000pt;}
.wc_c00000{width:794.000000pt;}
.x0_c00000{left:0.000000pt;}
.xc_c00000{left:1.333333pt;}
.x2_c00000{left:8.853333pt;}
.xd_c00000{left:14.666667pt;}
.x22_c00000{left:25.978667pt;}
.x13_c00000{left:48.000000pt;}
.xb_c00000{left:61.333333pt;}
.xa_c00000{left:62.666667pt;}
.x1b_c00000{left:84.000000pt;}
.x1d_c00000{left:92.000000pt;}
.x11_c00000{left:93.677333pt;}
.x4_c00000{left:100.000000pt;}
.x23_c00000{left:108.000000pt;}
.x25_c00000{left:113.466667pt;}
.x17_c00000{left:117.270667pt;}
.x97_c00000{left:118.880192pt;}
.x9b_c00000{left:120.560000pt;}
.x88_c00000{left:123.120000pt;}
.x9d_c00000{left:124.640000pt;}
.x92_c00000{left:126.560144pt;}
.x77_c00000{left:129.281528pt;}
.x42_c00000{left:132.879296pt;}
.xb8_c00000{left:134.960000pt;}
.xa3_c00000{left:136.240000pt;}
.x31_c00000{left:137.440000pt;}
.x6a_c00000{left:139.600000pt;}
.xc5_c00000{left:146.000000pt;}
.x41_c00000{left:149.440000pt;}
.xb7_c00000{left:152.880000pt;}
.x98_c00000{left:155.280000pt;}
.xa5_c00000{left:156.960000pt;}
.x90_c00000{left:158.640000pt;}
.x39_c00000{left:160.640000pt;}
.xb9_c00000{left:163.600000pt;}
.x59_c00000{left:166.880000pt;}
.x3f_c00000{left:170.160000pt;}
.x32_c00000{left:171.840120pt;}
.x33_c00000{left:173.440000pt;}
.x18_c00000{left:177.762667pt;}
.xb6_c00000{left:179.280000pt;}
.x1f_c00000{left:181.242667pt;}
.x8d_c00000{left:182.240000pt;}
.xa0_c00000{left:183.600000pt;}
.x40_c00000{left:184.640000pt;}
.xac_c00000{left:186.480072pt;}
.xab_c00000{left:188.080224pt;}
.x45_c00000{left:189.039992pt;}
.x95_c00000{left:190.480576pt;}
.x7b_c00000{left:193.760000pt;}
.x94_c00000{left:198.079408pt;}
.xcd_c00000{left:201.519008pt;}
.x87_c00000{left:202.640000pt;}
.x1e_c00000{left:204.594667pt;}
.x38_c00000{left:207.840000pt;}
.x34_c00000{left:209.440000pt;}
.x9_c00000{left:210.492000pt;}
.x8b_c00000{left:212.880000pt;}
.x99_c00000{left:215.439656pt;}
.x47_c00000{left:217.440000pt;}
.x16_c00000{left:218.853333pt;}
.x85_c00000{left:221.440000pt;}
.xce_c00000{left:222.960000pt;}
.xbc_c00000{left:224.158208pt;}
.x44_c00000{left:226.880000pt;}
.x12_c00000{left:228.224000pt;}
.xd4_c00000{left:232.160000pt;}
.x8c_c00000{left:233.440000pt;}
.x46_c00000{left:236.320000pt;}
.x1c_c00000{left:238.992000pt;}
.x54_c00000{left:240.800000pt;}
.x24_c00000{left:242.890667pt;}
.x9f_c00000{left:243.839656pt;}
.x35_c00000{left:245.440000pt;}
.xbf_c00000{left:246.959720pt;}
.x84_c00000{left:248.000928pt;}
.x66_c00000{left:249.280000pt;}
.x78_c00000{left:251.202152pt;}
.x8_c00000{left:258.352000pt;}
.xa1_c00000{left:260.640440pt;}
.x4b_c00000{left:261.760568pt;}
.x26_c00000{left:263.386667pt;}
.x79_c00000{left:266.240000pt;}
.xcf_c00000{left:267.600000pt;}
.x29_c00000{left:270.186667pt;}
.xd2_c00000{left:271.760000pt;}
.x55_c00000{left:273.360000pt;}
.xd1_c00000{left:274.800000pt;}
.x81_c00000{left:276.000000pt;}
.x6d_c00000{left:277.440000pt;}
.x15_c00000{left:278.682667pt;}
.x37_c00000{left:281.440000pt;}
.x62_c00000{left:282.400000pt;}
.x19_c00000{left:283.560000pt;}
.xbd_c00000{left:284.640000pt;}
.x4e_c00000{left:286.480000pt;}
.x2e_c00000{left:287.518504pt;}
.x28_c00000{left:289.706667pt;}
.x5f_c00000{left:291.280000pt;}
.x64_c00000{left:292.960000pt;}
.x7_c00000{left:295.872000pt;}
.x6c_c00000{left:297.040296pt;}
.x69_c00000{left:298.160000pt;}
.x4c_c00000{left:299.120472pt;}
.x7f_c00000{left:300.800000pt;}
.x68_c00000{left:302.320000pt;}
.xb0_c00000{left:304.320000pt;}
.x5_c00000{left:305.376000pt;}
.x83_c00000{left:306.320000pt;}
.x6e_c00000{left:307.360000pt;}
.x7c_c00000{left:309.119592pt;}
.xf_c00000{left:310.712000pt;}
.xc9_c00000{left:312.080000pt;}
.x4a_c00000{left:314.400000pt;}
.xaf_c00000{left:317.440000pt;}
.x27_c00000{left:319.093333pt;}
.x3a_c00000{left:321.920800pt;}
.x75_c00000{left:323.600000pt;}
.x20_c00000{left:325.333333pt;}
.xe_c00000{left:326.666667pt;}
.x6_c00000{left:328.032000pt;}
.x72_c00000{left:329.280000pt;}
.x2c_c00000{left:331.040000pt;}
.x8a_c00000{left:332.400000pt;}
.x21_c00000{left:336.000000pt;}
.x4f_c00000{left:337.839072pt;}
.xd0_c00000{left:339.200000pt;}
.x1a_c00000{left:341.333333pt;}
.x10_c00000{left:342.666667pt;}
.x36_c00000{left:349.440000pt;}
.xb3_c00000{left:351.840000pt;}
.xc1_c00000{left:353.040000pt;}
.xae_c00000{left:355.360000pt;}
.x14_c00000{left:357.333333pt;}
.x67_c00000{left:359.040000pt;}
.x50_c00000{left:361.040000pt;}
.xc8_c00000{left:363.920000pt;}
.xb4_c00000{left:365.440000pt;}
.xa9_c00000{left:366.560000pt;}
.x8e_c00000{left:368.720000pt;}
.x52_c00000{left:369.840000pt;}
.xba_c00000{left:370.880000pt;}
.xc4_c00000{left:373.280000pt;}
.x2a_c00000{left:374.933333pt;}
.x5a_c00000{left:377.120000pt;}
.x7a_c00000{left:380.240000pt;}
.x48_c00000{left:383.520000pt;}
.x58_c00000{left:389.280000pt;}
.xc6_c00000{left:393.840000pt;}
.xaa_c00000{left:395.440000pt;}
.x2b_c00000{left:396.880000pt;}
.xc3_c00000{left:398.160000pt;}
.x73_c00000{left:401.440000pt;}
.xd6_c00000{left:405.120000pt;}
.x7d_c00000{left:413.440000pt;}
.x56_c00000{left:416.400000pt;}
.xbb_c00000{left:417.520000pt;}
.x82_c00000{left:420.480000pt;}
.xc2_c00000{left:423.360000pt;}
.x6f_c00000{left:425.280000pt;}
.x51_c00000{left:426.560000pt;}
.x4d_c00000{left:430.480304pt;}
.xc7_c00000{left:432.560000pt;}
.xd3_c00000{left:436.560000pt;}
.xcb_c00000{left:441.600000pt;}
.xbe_c00000{left:447.440000pt;}
.xd5_c00000{left:449.680000pt;}
.x96_c00000{left:459.840000pt;}
.xa6_c00000{left:460.960000pt;}
.xd7_c00000{left:463.760000pt;}
.x5c_c00000{left:467.520000pt;}
.xa7_c00000{left:475.760000pt;}
.x5d_c00000{left:478.720000pt;}
.xcc_c00000{left:493.840000pt;}
.x43_c00000{left:500.640000pt;}
.x5b_c00000{left:502.800000pt;}
.xb2_c00000{left:504.800000pt;}
.x91_c00000{left:509.920000pt;}
.x3d_c00000{left:511.600000pt;}
.x1_c00000{left:520.000000pt;}
.xc0_c00000{left:523.120000pt;}
.x74_c00000{left:524.880000pt;}
.x7e_c00000{left:526.720000pt;}
.x53_c00000{left:527.680000pt;}
.x60_c00000{left:528.720000pt;}
.x93_c00000{left:531.040000pt;}
.x5e_c00000{left:532.560000pt;}
.x61_c00000{left:533.840000pt;}
.x70_c00000{left:535.680000pt;}
.x3c_c00000{left:538.160000pt;}
.x71_c00000{left:539.280000pt;}
.x65_c00000{left:540.320000pt;}
.xa2_c00000{left:542.160000pt;}
.x49_c00000{left:543.440000pt;}
.x9c_c00000{left:545.440000pt;}
.x76_c00000{left:546.400000pt;}
.xb5_c00000{left:549.440000pt;}
.x3b_c00000{left:552.160000pt;}
.xa4_c00000{left:553.200000pt;}
.x80_c00000{left:559.120000pt;}
.xa8_c00000{left:560.640000pt;}
.x8f_c00000{left:563.440000pt;}
.x57_c00000{left:564.960000pt;}
.x3e_c00000{left:567.760000pt;}
.x89_c00000{left:569.040000pt;}
.x9a_c00000{left:570.160000pt;}
.x86_c00000{left:571.280000pt;}
.x6b_c00000{left:573.840000pt;}
.x9e_c00000{left:575.680000pt;}
.xad_c00000{left:581.519976pt;}
.xca_c00000{left:585.520000pt;}
.x63_c00000{left:588.800000pt;}
.x2f_c00000{left:624.401096pt;}
.x30_c00000{left:635.120000pt;}
.xb1_c00000{left:655.360000pt;}
.x3_c00000{left:664.148000pt;}
.x2d_c00000{left:680.400000pt;}
}





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

.ir_c00001:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00001;src:url('chunks/assets/font_9161c8c94bb4ed339a7753d8.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00001;src:url('chunks/assets/font_9df02a9899d9bd777f297879.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_f63c2ba8d427877d63127334.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00001;src:url('chunks/assets/font_cd5a44a71ebf835d9cde1b01.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:0.813965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00001;src:url('chunks/assets/font_8423495f87365cdee8891df4.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00001;src:url('chunks/assets/font_0644239c61aa5ea1ed420b4c.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00001;src:url('chunks/assets/font_9e5c39a6dd30a6afb389788c.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00001;src:url('chunks/assets/font_c9283564d196628e14c04680.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00001;src:url('chunks/assets/font_8c057b6d3066280bba244cad.woff2')format("woff");}.ff9_c00001{font-family:ff9_c00001;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00001;src:url('chunks/assets/font_efcb707e2a85eaf3e8827a0f.woff2')format("woff");}.ffa_c00001{font-family:ffa_c00001;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00001;src:url('chunks/assets/font_7be51feb8414677382b725f8.woff2')format("woff");}.ffb_c00001{font-family:ffb_c00001;line-height:0.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00001;src:url('chunks/assets/font_4555ff4b4b89397b87a25d40.woff2')format("woff");}.ffc_c00001{font-family:ffc_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00001;src:url('chunks/assets/font_d705eddf85182b219a13d190.woff2')format("woff");}.ffd_c00001{font-family:ffd_c00001;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00001;src:url('chunks/assets/font_798d6417da79ff7323b5491f.woff2')format("woff");}.ffe_c00001{font-family:ffe_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00001;src:url('chunks/assets/font_28dc53db941656b3e3e56a35.woff2')format("woff");}.fff_c00001{font-family:fff_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00001;src:url('chunks/assets/font_04c63025a147ef029f19f3a4.woff2')format("woff");}.ff10_c00001{font-family:ff10_c00001;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00001;src:url('chunks/assets/font_6313b2ef9898f18364b66957.woff2')format("woff");}.ff11_c00001{font-family:ff11_c00001;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00001;src:url('chunks/assets/font_56a3c13d857270eec861ddbd.woff2')format("woff");}.ff12_c00001{font-family:ff12_c00001;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00001;src:url('chunks/assets/font_c9ff4ec1d209c88814483e47.woff2')format("woff");}.ff13_c00001{font-family:ff13_c00001;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00001;src:url('chunks/assets/font_cd5a44a71ebf835d9cde1b01.woff2')format("woff");}.ff14_c00001{font-family:ff14_c00001;line-height:0.813965;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_73b389aee7ae70825e10fe84.woff2')format("woff");}.ff15_c00001{font-family:ff15_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00001;src:url('chunks/assets/font_47f99b187997ff3224968b54.woff2')format("woff");}.ff16_c00001{font-family:ff16_c00001;line-height:0.688965;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_044216c45d5cc7002e5a7ae0.woff2')format("woff");}.ff17_c00001{font-family:ff17_c00001;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00001;src:url('chunks/assets/font_762141bdb133a4ad713e205c.woff2')format("woff");}.ff18_c00001{font-family:ff18_c00001;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00001;src:url('chunks/assets/font_5b325d3a21d7593860502bcc.woff2')format("woff");}.ff19_c00001{font-family:ff19_c00001;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00001;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff1a_c00001{font-family:ff1a_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00001;src:url('chunks/assets/font_596656da3e97605f0442e42a.woff2')format("woff");}.ff1b_c00001{font-family:ff1b_c00001;line-height:0.688965;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_8423495f87365cdee8891df4.woff2')format("woff");}.ff1c_c00001{font-family:ff1c_c00001;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:ff1d_c00001;src:url('chunks/assets/font_b7605fc8e307a97ae359df89.woff2')format("woff");}.ff1d_c00001{font-family:ff1d_c00001;line-height:0.813965;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_a29a0b84c4ac1b5a1598d78f.woff2')format("woff");}.ff1e_c00001{font-family:ff1e_c00001;line-height:0.933594;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_da9f5dea20a3d826604d2890.woff2')format("woff");}.ff1f_c00001{font-family:ff1f_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00001;src:url('chunks/assets/font_0490b205209ae6e18d6cb11a.woff2')format("woff");}.ff20_c00001{font-family:ff20_c00001;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00001;src:url('chunks/assets/font_c2231c34641671ea548a53d9.woff2')format("woff");}.ff21_c00001{font-family:ff21_c00001;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00001;src:url('chunks/assets/font_76a40b682af9cea6c1c10540.woff2')format("woff");}.ff22_c00001{font-family:ff22_c00001;line-height:0.055000;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff23_c00001{font-family:ff23_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00001;src:url('chunks/assets/font_9d4b2cebeb6c4a5470801b12.woff2')format("woff");}.ff24_c00001{font-family:ff24_c00001;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00001;src:url('chunks/assets/font_e2b84a0bcee23d8f58940285.woff2')format("woff");}.ff25_c00001{font-family:ff25_c00001;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00001;src:url('chunks/assets/font_fac28eed0189969390878c04.woff2')format("woff");}.ff26_c00001{font-family:ff26_c00001;line-height:0.813965;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_47f99b187997ff3224968b54.woff2')format("woff");}.ff27_c00001{font-family:ff27_c00001;line-height:0.688965;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_a50f633e86b389710f399d39.woff2')format("woff");}.ff28_c00001{font-family:ff28_c00001;line-height:0.735352;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_9b2ef2c314906cfeee78dcf1.woff2')format("woff");}.ff29_c00001{font-family:ff29_c00001;line-height:0.933594;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_defe8c6be8dbeb6dd24c71f6.woff2')format("woff");}.ff2a_c00001{font-family:ff2a_c00001;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00001;src:url('chunks/assets/font_0defdfaede7825e6c9bcfb3c.woff2')format("woff");}.ff2b_c00001{font-family:ff2b_c00001;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00001;src:url('chunks/assets/font_6ffb3f3e278b8e70c8d9e348.woff2')format("woff");}.ff2c_c00001{font-family:ff2c_c00001;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00001;src:url('chunks/assets/font_cd5a44a71ebf835d9cde1b01.woff2')format("woff");}.ff2d_c00001{font-family:ff2d_c00001;line-height:0.813965;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_bd42317d9ebae18b3ebbbece.woff2')format("woff");}.ff2e_c00001{font-family:ff2e_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00001{transform:matrix(0.236548,0.000000,-0.080900,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080900,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080900,0.236548,0,0);}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v8_c00001{vertical-align:-193.321188px;}
.v9_c00001{vertical-align:-92.520000px;}
.v7_c00001{vertical-align:-82.800000px;}
.v6_c00001{vertical-align:-71.640000px;}
.v4_c00001{vertical-align:-33.120000px;}
.v5_c00001{vertical-align:-29.880000px;}
.v2_c00001{vertical-align:-27.000000px;}
.vb_c00001{vertical-align:-9.000516px;}
.v0_c00001{vertical-align:0.000000px;}
.vc_c00001{vertical-align:9.000000px;}
.v1_c00001{vertical-align:29.877372px;}
.v3_c00001{vertical-align:33.120000px;}
.va_c00001{vertical-align:68.760000px;}
.lsde_c00001{letter-spacing:-3.600000px;}
.ls167_c00001{letter-spacing:-0.685368px;}
.ls189_c00001{letter-spacing:-0.655308px;}
.ls193_c00001{letter-spacing:-0.637272px;}
.ls179_c00001{letter-spacing:-0.631260px;}
.ls17f_c00001{letter-spacing:-0.625248px;}
.ls195_c00001{letter-spacing:-0.613224px;}
.ls194_c00001{letter-spacing:-0.595188px;}
.ls17d_c00001{letter-spacing:-0.589176px;}
.ls17e_c00001{letter-spacing:-0.571140px;}
.ls97_c00001{letter-spacing:-0.561600px;}
.ls19a_c00001{letter-spacing:-0.553104px;}
.ls19b_c00001{letter-spacing:-0.541080px;}
.ls185_c00001{letter-spacing:-0.529056px;}
.ls199_c00001{letter-spacing:-0.511020px;}
.ls7e_c00001{letter-spacing:-0.505008px;}
.lsad_c00001{letter-spacing:-0.498996px;}
.lsdd_c00001{letter-spacing:-0.482400px;}
.lsbc_c00001{letter-spacing:-0.480924px;}
.ls19e_c00001{letter-spacing:-0.456912px;}
.ls108_c00001{letter-spacing:-0.441396px;}
.ls180_c00001{letter-spacing:-0.420840px;}
.ls18d_c00001{letter-spacing:-0.408816px;}
.lsd1_c00001{letter-spacing:-0.402804px;}
.lsa8_c00001{letter-spacing:-0.398160px;}
.ls177_c00001{letter-spacing:-0.396792px;}
.ls14b_c00001{letter-spacing:-0.387072px;}
.ls181_c00001{letter-spacing:-0.378756px;}
.ls173_c00001{letter-spacing:-0.366732px;}
.lscd_c00001{letter-spacing:-0.360720px;}
.ls88_c00001{letter-spacing:-0.360000px;}
.ls16a_c00001{letter-spacing:-0.354708px;}
.ls16e_c00001{letter-spacing:-0.348696px;}
.ls16b_c00001{letter-spacing:-0.342684px;}
.ls182_c00001{letter-spacing:-0.336672px;}
.ls106_c00001{letter-spacing:-0.335988px;}
.lsb1_c00001{letter-spacing:-0.331200px;}
.ls85_c00001{letter-spacing:-0.330660px;}
.ls12a_c00001{letter-spacing:-0.329400px;}
.ls146_c00001{letter-spacing:-0.324864px;}
.ls172_c00001{letter-spacing:-0.324648px;}
.lsbe_c00001{letter-spacing:-0.318636px;}
.ls86_c00001{letter-spacing:-0.312624px;}
.ls29_c00001{letter-spacing:-0.306612px;}
.lse1_c00001{letter-spacing:-0.302400px;}
.ls6d_c00001{letter-spacing:-0.300600px;}
.lsba_c00001{letter-spacing:-0.294588px;}
.ls91_c00001{letter-spacing:-0.288576px;}
.ls94_c00001{letter-spacing:-0.282564px;}
.lsb2_c00001{letter-spacing:-0.276552px;}
.ls1a7_c00001{letter-spacing:-0.273600px;}
.ls3c_c00001{letter-spacing:-0.270540px;}
.lsb7_c00001{letter-spacing:-0.270108px;}
.ls3b_c00001{letter-spacing:-0.264528px;}
.ls30_c00001{letter-spacing:-0.258516px;}
.ls7c_c00001{letter-spacing:-0.252504px;}
.lsa6_c00001{letter-spacing:-0.246492px;}
.ls87_c00001{letter-spacing:-0.240480px;}
.ls90_c00001{letter-spacing:-0.237600px;}
.ls84_c00001{letter-spacing:-0.234468px;}
.lsd6_c00001{letter-spacing:-0.230400px;}
.lsb6_c00001{letter-spacing:-0.228456px;}
.ls125_c00001{letter-spacing:-0.223992px;}
.ls57_c00001{letter-spacing:-0.223200px;}
.ls6c_c00001{letter-spacing:-0.222444px;}
.lsab_c00001{letter-spacing:-0.216432px;}
.ls7d_c00001{letter-spacing:-0.210420px;}
.ls13b_c00001{letter-spacing:-0.207360px;}
.ls9f_c00001{letter-spacing:-0.204408px;}
.lsd5_c00001{letter-spacing:-0.201600px;}
.lsa2_c00001{letter-spacing:-0.198396px;}
.lsc6_c00001{letter-spacing:-0.194400px;}
.ls141_c00001{letter-spacing:-0.193536px;}
.ls2a_c00001{letter-spacing:-0.192384px;}
.ls1a8_c00001{letter-spacing:-0.187200px;}
.ls89_c00001{letter-spacing:-0.186372px;}
.ls2c_c00001{letter-spacing:-0.180360px;}
.lsb0_c00001{letter-spacing:-0.180000px;}
.ls104_c00001{letter-spacing:-0.177876px;}
.ls4b_c00001{letter-spacing:-0.174348px;}
.ls73_c00001{letter-spacing:-0.172800px;}
.ls6b_c00001{letter-spacing:-0.168336px;}
.lsc4_c00001{letter-spacing:-0.165600px;}
.ls121_c00001{letter-spacing:-0.164700px;}
.ls60_c00001{letter-spacing:-0.162324px;}
.lsaf_c00001{letter-spacing:-0.158400px;}
.ls27_c00001{letter-spacing:-0.156312px;}
.lsdf_c00001{letter-spacing:-0.151200px;}
.ls47_c00001{letter-spacing:-0.150300px;}
.ls14c_c00001{letter-spacing:-0.145152px;}
.ls16_c00001{letter-spacing:-0.144288px;}
.lsb5_c00001{letter-spacing:-0.144000px;}
.ls5a_c00001{letter-spacing:-0.138276px;}
.ls46_c00001{letter-spacing:-0.132264px;}
.ls14d_c00001{letter-spacing:-0.131328px;}
.ls58_c00001{letter-spacing:-0.129600px;}
.ls5b_c00001{letter-spacing:-0.126252px;}
.ls8a_c00001{letter-spacing:-0.122400px;}
.ls5f_c00001{letter-spacing:-0.120240px;}
.lsf8_c00001{letter-spacing:-0.118584px;}
.ls148_c00001{letter-spacing:-0.117504px;}
.lse3_c00001{letter-spacing:-0.115200px;}
.ls5e_c00001{letter-spacing:-0.114228px;}
.ls6a_c00001{letter-spacing:-0.108216px;}
.lsa5_c00001{letter-spacing:-0.108000px;}
.ls157_c00001{letter-spacing:-0.105336px;}
.ls144_c00001{letter-spacing:-0.103680px;}
.ls15_c00001{letter-spacing:-0.102204px;}
.ls1a0_c00001{letter-spacing:-0.100872px;}
.ls99_c00001{letter-spacing:-0.100800px;}
.ls10a_c00001{letter-spacing:-0.098820px;}
.ls147_c00001{letter-spacing:-0.096768px;}
.ls48_c00001{letter-spacing:-0.096192px;}
.lsd4_c00001{letter-spacing:-0.096120px;}
.ls66_c00001{letter-spacing:-0.093600px;}
.lsff_c00001{letter-spacing:-0.092232px;}
.ls6e_c00001{letter-spacing:-0.090180px;}
.ls14a_c00001{letter-spacing:-0.089856px;}
.ls83_c00001{letter-spacing:-0.086400px;}
.ls15d_c00001{letter-spacing:-0.086184px;}
.ls10d_c00001{letter-spacing:-0.085644px;}
.ls28_c00001{letter-spacing:-0.084168px;}
.ls1a1_c00001{letter-spacing:-0.084060px;}
.ls145_c00001{letter-spacing:-0.082944px;}
.ls1e_c00001{letter-spacing:-0.079200px;}
.lsb4_c00001{letter-spacing:-0.079056px;}
.ls67_c00001{letter-spacing:-0.078156px;}
.ls14f_c00001{letter-spacing:-0.076032px;}
.ls24_c00001{letter-spacing:-0.072144px;}
.ls45_c00001{letter-spacing:-0.072000px;}
.ls14e_c00001{letter-spacing:-0.069120px;}
.lsd2_c00001{letter-spacing:-0.067248px;}
.ls5d_c00001{letter-spacing:-0.066132px;}
.lsed_c00001{letter-spacing:-0.065880px;}
.ls3a_c00001{letter-spacing:-0.064800px;}
.ls156_c00001{letter-spacing:-0.062244px;}
.ls143_c00001{letter-spacing:-0.062208px;}
.ls80_c00001{letter-spacing:-0.060120px;}
.lsc3_c00001{letter-spacing:-0.059292px;}
.ls39_c00001{letter-spacing:-0.057600px;}
.ls142_c00001{letter-spacing:-0.055296px;}
.ls52_c00001{letter-spacing:-0.054108px;}
.ls101_c00001{letter-spacing:-0.052704px;}
.ls68_c00001{letter-spacing:-0.050400px;}
.ls140_c00001{letter-spacing:-0.048384px;}
.ls3d_c00001{letter-spacing:-0.048096px;}
.ls1a2_c00001{letter-spacing:-0.048060px;}
.lsf2_c00001{letter-spacing:-0.046116px;}
.ls65_c00001{letter-spacing:-0.043200px;}
.ls4c_c00001{letter-spacing:-0.042084px;}
.ls13e_c00001{letter-spacing:-0.041472px;}
.ls20_c00001{letter-spacing:-0.039816px;}
.lsf6_c00001{letter-spacing:-0.039528px;}
.ls25_c00001{letter-spacing:-0.036072px;}
.ls13_c00001{letter-spacing:-0.036000px;}
.ls13f_c00001{letter-spacing:-0.034560px;}
.lsbd_c00001{letter-spacing:-0.034128px;}
.lse5_c00001{letter-spacing:-0.033624px;}
.lsfe_c00001{letter-spacing:-0.032940px;}
.ls23_c00001{letter-spacing:-0.030060px;}
.ls1f_c00001{letter-spacing:-0.028800px;}
.ls13a_c00001{letter-spacing:-0.027648px;}
.ls103_c00001{letter-spacing:-0.026352px;}
.ls1a3_c00001{letter-spacing:-0.025164px;}
.ls22_c00001{letter-spacing:-0.024048px;}
.ls1c_c00001{letter-spacing:-0.021600px;}
.ls139_c00001{letter-spacing:-0.020736px;}
.lsae_c00001{letter-spacing:-0.019764px;}
.lsd0_c00001{letter-spacing:-0.019152px;}
.ls26_c00001{letter-spacing:-0.018036px;}
.ls11_c00001{letter-spacing:-0.014400px;}
.ls13d_c00001{letter-spacing:-0.013824px;}
.lsef_c00001{letter-spacing:-0.013176px;}
.ls21_c00001{letter-spacing:-0.012024px;}
.ls14_c00001{letter-spacing:-0.007200px;}
.ls13c_c00001{letter-spacing:-0.006912px;}
.ls8d_c00001{letter-spacing:-0.006588px;}
.ls3e_c00001{letter-spacing:-0.006012px;}
.lsf_c00001{letter-spacing:0.000000px;}
.ls38_c00001{letter-spacing:0.006012px;}
.ls54_c00001{letter-spacing:0.006588px;}
.ls12e_c00001{letter-spacing:0.006912px;}
.lsc_c00001{letter-spacing:0.007200px;}
.ls153_c00001{letter-spacing:0.008388px;}
.ls64_c00001{letter-spacing:0.012024px;}
.ls56_c00001{letter-spacing:0.013176px;}
.ls130_c00001{letter-spacing:0.013824px;}
.ls4_c00001{letter-spacing:0.014400px;}
.lse6_c00001{letter-spacing:0.016776px;}
.ls4f_c00001{letter-spacing:0.018036px;}
.ls40_c00001{letter-spacing:0.019764px;}
.ls131_c00001{letter-spacing:0.020736px;}
.lsa_c00001{letter-spacing:0.021600px;}
.lsce_c00001{letter-spacing:0.022752px;}
.ls1a_c00001{letter-spacing:0.024048px;}
.lsd3_c00001{letter-spacing:0.025164px;}
.ls63_c00001{letter-spacing:0.026352px;}
.ls136_c00001{letter-spacing:0.027648px;}
.lsb_c00001{letter-spacing:0.028800px;}
.ls74_c00001{letter-spacing:0.030060px;}
.ls72_c00001{letter-spacing:0.032940px;}
.ls10f_c00001{letter-spacing:0.033552px;}
.ls133_c00001{letter-spacing:0.034560px;}
.ls5_c00001{letter-spacing:0.036000px;}
.ls50_c00001{letter-spacing:0.036072px;}
.ls36_c00001{letter-spacing:0.039528px;}
.ls12d_c00001{letter-spacing:0.041472px;}
.lsd7_c00001{letter-spacing:0.041940px;}
.lse_c00001{letter-spacing:0.042084px;}
.ls8_c00001{letter-spacing:0.043200px;}
.ls53_c00001{letter-spacing:0.046116px;}
.ls42_c00001{letter-spacing:0.048096px;}
.ls132_c00001{letter-spacing:0.048384px;}
.lsdb_c00001{letter-spacing:0.050328px;}
.ls6_c00001{letter-spacing:0.050400px;}
.ls33_c00001{letter-spacing:0.052704px;}
.ls17_c00001{letter-spacing:0.054108px;}
.ls12f_c00001{letter-spacing:0.055296px;}
.ls7_c00001{letter-spacing:0.057600px;}
.lsfb_c00001{letter-spacing:0.058716px;}
.ls35_c00001{letter-spacing:0.059292px;}
.ls0_c00001{letter-spacing:0.060120px;}
.ls138_c00001{letter-spacing:0.062208px;}
.ls9_c00001{letter-spacing:0.064800px;}
.ls34_c00001{letter-spacing:0.065880px;}
.ls51_c00001{letter-spacing:0.066132px;}
.ls12c_c00001{letter-spacing:0.067104px;}
.ls82_c00001{letter-spacing:0.068256px;}
.ls137_c00001{letter-spacing:0.069120px;}
.ls19_c00001{letter-spacing:0.072000px;}
.ls2b_c00001{letter-spacing:0.072144px;}
.ls37_c00001{letter-spacing:0.072468px;}
.ls1a4_c00001{letter-spacing:0.075492px;}
.ls134_c00001{letter-spacing:0.076032px;}
.ls3f_c00001{letter-spacing:0.078156px;}
.ls71_c00001{letter-spacing:0.079056px;}
.ls41_c00001{letter-spacing:0.079200px;}
.ls149_c00001{letter-spacing:0.082944px;}
.ls112_c00001{letter-spacing:0.083880px;}
.ls2f_c00001{letter-spacing:0.084168px;}
.ls2_c00001{letter-spacing:0.085644px;}
.ls32_c00001{letter-spacing:0.086400px;}
.ls135_c00001{letter-spacing:0.089856px;}
.ls9e_c00001{letter-spacing:0.090000px;}
.ls1b_c00001{letter-spacing:0.090180px;}
.ls10_c00001{letter-spacing:0.092232px;}
.lsda_c00001{letter-spacing:0.092268px;}
.ls70_c00001{letter-spacing:0.093600px;}
.ls76_c00001{letter-spacing:0.096192px;}
.lsb3_c00001{letter-spacing:0.098820px;}
.ls1a5_c00001{letter-spacing:0.100656px;}
.ls4e_c00001{letter-spacing:0.100800px;}
.ls4d_c00001{letter-spacing:0.102204px;}
.ls81_c00001{letter-spacing:0.105408px;}
.lsd_c00001{letter-spacing:0.108000px;}
.ls2e_c00001{letter-spacing:0.108216px;}
.lsd9_c00001{letter-spacing:0.109044px;}
.ls55_c00001{letter-spacing:0.111996px;}
.ls2d_c00001{letter-spacing:0.114228px;}
.ls9a_c00001{letter-spacing:0.115200px;}
.ls62_c00001{letter-spacing:0.118584px;}
.ls77_c00001{letter-spacing:0.120240px;}
.ls7f_c00001{letter-spacing:0.122400px;}
.lsea_c00001{letter-spacing:0.125172px;}
.ls5c_c00001{letter-spacing:0.126252px;}
.ls31_c00001{letter-spacing:0.129600px;}
.lseb_c00001{letter-spacing:0.131760px;}
.ls49_c00001{letter-spacing:0.132264px;}
.ls151_c00001{letter-spacing:0.134208px;}
.ls61_c00001{letter-spacing:0.136800px;}
.ls43_c00001{letter-spacing:0.138276px;}
.lse8_c00001{letter-spacing:0.138348px;}
.ls1d_c00001{letter-spacing:0.144000px;}
.ls69_c00001{letter-spacing:0.144288px;}
.lsc8_c00001{letter-spacing:0.144936px;}
.ls93_c00001{letter-spacing:0.150300px;}
.lse7_c00001{letter-spacing:0.151524px;}
.lsaa_c00001{letter-spacing:0.156312px;}
.lsf1_c00001{letter-spacing:0.158112px;}
.ls19c_c00001{letter-spacing:0.158400px;}
.ls6f_c00001{letter-spacing:0.162324px;}
.lse9_c00001{letter-spacing:0.164700px;}
.ls152_c00001{letter-spacing:0.165600px;}
.ls98_c00001{letter-spacing:0.168336px;}
.ls102_c00001{letter-spacing:0.171288px;}
.lsb8_c00001{letter-spacing:0.174348px;}
.lsf3_c00001{letter-spacing:0.177876px;}
.lsa0_c00001{letter-spacing:0.180000px;}
.ls9b_c00001{letter-spacing:0.180360px;}
.ls3_c00001{letter-spacing:0.181116px;}
.ls18_c00001{letter-spacing:0.181944px;}
.lsec_c00001{letter-spacing:0.184464px;}
.ls92_c00001{letter-spacing:0.186372px;}
.lsf7_c00001{letter-spacing:0.191052px;}
.ls16d_c00001{letter-spacing:0.192384px;}
.lsfd_c00001{letter-spacing:0.197640px;}
.lsac_c00001{letter-spacing:0.201600px;}
.lsf5_c00001{letter-spacing:0.204228px;}
.ls59_c00001{letter-spacing:0.204408px;}
.ls17c_c00001{letter-spacing:0.210420px;}
.ls7b_c00001{letter-spacing:0.216432px;}
.ls11b_c00001{letter-spacing:0.217404px;}
.ls9c_c00001{letter-spacing:0.223200px;}
.ls17a_c00001{letter-spacing:0.228456px;}
.ls12b_c00001{letter-spacing:0.230580px;}
.lsdc_c00001{letter-spacing:0.237600px;}
.ls75_c00001{letter-spacing:0.240480px;}
.ls124_c00001{letter-spacing:0.243756px;}
.lsbb_c00001{letter-spacing:0.252504px;}
.ls197_c00001{letter-spacing:0.258516px;}
.ls129_c00001{letter-spacing:0.270108px;}
.ls105_c00001{letter-spacing:0.316224px;}
.ls191_c00001{letter-spacing:0.318636px;}
.ls100_c00001{letter-spacing:0.335988px;}
.lscc_c00001{letter-spacing:0.354708px;}
.lsa4_c00001{letter-spacing:0.360000px;}
.lsfc_c00001{letter-spacing:0.362340px;}
.ls18f_c00001{letter-spacing:0.366732px;}
.ls111_c00001{letter-spacing:0.434808px;}
.lsee_c00001{letter-spacing:0.447984px;}
.ls8b_c00001{letter-spacing:0.450900px;}
.ls109_c00001{letter-spacing:0.540216px;}
.ls196_c00001{letter-spacing:0.559116px;}
.ls19d_c00001{letter-spacing:0.811620px;}
.lsa3_c00001{letter-spacing:0.864000px;}
.ls192_c00001{letter-spacing:0.877752px;}
.ls16f_c00001{letter-spacing:1.082160px;}
.ls187_c00001{letter-spacing:1.172340px;}
.ls190_c00001{letter-spacing:1.226448px;}
.ls8c_c00001{letter-spacing:1.527048px;}
.lsf4_c00001{letter-spacing:1.528416px;}
.ls198_c00001{letter-spacing:1.557108px;}
.ls16c_c00001{letter-spacing:1.887768px;}
.ls127_c00001{letter-spacing:1.890756px;}
.ls128_c00001{letter-spacing:2.608848px;}
.ls161_c00001{letter-spacing:2.609208px;}
.lsfa_c00001{letter-spacing:2.971188px;}
.lsc5_c00001{letter-spacing:3.960000px;}
.ls110_c00001{letter-spacing:4.051620px;}
.lsf9_c00001{letter-spacing:4.407372px;}
.lsf0_c00001{letter-spacing:4.769712px;}
.lsbf_c00001{letter-spacing:5.400000px;}
.ls17b_c00001{letter-spacing:5.488956px;}
.lsc1_c00001{letter-spacing:5.760000px;}
.ls8f_c00001{letter-spacing:5.849676px;}
.ls11f_c00001{letter-spacing:5.850144px;}
.ls7a_c00001{letter-spacing:6.210396px;}
.lsa9_c00001{letter-spacing:6.390000px;}
.ls11a_c00001{letter-spacing:6.568236px;}
.ls10e_c00001{letter-spacing:7.292916px;}
.ls123_c00001{letter-spacing:7.648668px;}
.lse0_c00001{letter-spacing:8.280000px;}
.ls11d_c00001{letter-spacing:9.091440px;}
.lscf_c00001{letter-spacing:9.450864px;}
.ls18e_c00001{letter-spacing:9.720000px;}
.ls126_c00001{letter-spacing:9.809532px;}
.ls95_c00001{letter-spacing:10.080000px;}
.ls115_c00001{letter-spacing:10.171872px;}
.lsd8_c00001{letter-spacing:10.260000px;}
.ls122_c00001{letter-spacing:10.889964px;}
.ls18a_c00001{letter-spacing:11.248452px;}
.ls10b_c00001{letter-spacing:11.252304px;}
.lsc7_c00001{letter-spacing:11.520000px;}
.ls96_c00001{letter-spacing:11.880000px;}
.lsc9_c00001{letter-spacing:11.969892px;}
.lsc2_c00001{letter-spacing:14.040000px;}
.ls118_c00001{letter-spacing:14.849352px;}
.lse2_c00001{letter-spacing:15.480000px;}
.ls11c_c00001{letter-spacing:15.929784px;}
.ls11e_c00001{letter-spacing:17.010216px;}
.ls8e_c00001{letter-spacing:18.450828px;}
.ls116_c00001{letter-spacing:19.171080px;}
.ls117_c00001{letter-spacing:19.526832px;}
.ls10c_c00001{letter-spacing:19.889172px;}
.lsca_c00001{letter-spacing:20.160000px;}
.ls79_c00001{letter-spacing:20.248416px;}
.ls113_c00001{letter-spacing:20.607264px;}
.lscb_c00001{letter-spacing:20.880000px;}
.ls119_c00001{letter-spacing:22.412376px;}
.lsc0_c00001{letter-spacing:24.480000px;}
.ls120_c00001{letter-spacing:25.648308px;}
.ls107_c00001{letter-spacing:32.492016px;}
.ls78_c00001{letter-spacing:33.210288px;}
.ls1a6_c00001{letter-spacing:33.480000px;}
.ls114_c00001{letter-spacing:33.928200px;}
.ls188_c00001{letter-spacing:38.729304px;}
.ls150_c00001{letter-spacing:48.384000px;}
.ls184_c00001{letter-spacing:54.925632px;}
.ls186_c00001{letter-spacing:55.647072px;}
.ls171_c00001{letter-spacing:58.520808px;}
.ls178_c00001{letter-spacing:58.521240px;}
.ls176_c00001{letter-spacing:58.521312px;}
.ls169_c00001{letter-spacing:58.526820px;}
.ls170_c00001{letter-spacing:58.527252px;}
.ls175_c00001{letter-spacing:58.527324px;}
.ls174_c00001{letter-spacing:58.544856px;}
.ls168_c00001{letter-spacing:60.685128px;}
.ls166_c00001{letter-spacing:61.406568px;}
.ls164_c00001{letter-spacing:120.330180px;}
.ls160_c00001{letter-spacing:133.406280px;}
.ls12_c00001{letter-spacing:194.400000px;}
.lsa1_c00001{letter-spacing:197.367948px;}
.ls44_c00001{letter-spacing:198.000000px;}
.ls162_c00001{letter-spacing:252.000000px;}
.ls15e_c00001{letter-spacing:254.963988px;}
.ls158_c00001{letter-spacing:254.968416px;}
.ls154_c00001{letter-spacing:254.968920px;}
.ls155_c00001{letter-spacing:254.969136px;}
.ls15f_c00001{letter-spacing:254.970000px;}
.ls15b_c00001{letter-spacing:254.970252px;}
.ls15c_c00001{letter-spacing:254.971908px;}
.ls15a_c00001{letter-spacing:254.973132px;}
.ls159_c00001{letter-spacing:254.976552px;}
.ls19f_c00001{letter-spacing:295.655832px;}
.lsb9_c00001{letter-spacing:331.920000px;}
.ls163_c00001{letter-spacing:409.770000px;}
.ls9d_c00001{letter-spacing:414.000000px;}
.lse4_c00001{letter-spacing:468.096516px;}
.ls18c_c00001{letter-spacing:700.560000px;}
.ls18b_c00001{letter-spacing:757.440000px;}
.ls183_c00001{letter-spacing:832.680000px;}
.lsa7_c00001{letter-spacing:961.650000px;}
.ls165_c00001{letter-spacing:1076.400000px;}
.ls4a_c00001{letter-spacing:1205.370000px;}
.ls1_c00001{letter-spacing:2424.960000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8b9_c00001{word-spacing:-72.360000px;}
.ws78_c00001{word-spacing:-72.000000px;}
.ws1117_c00001{word-spacing:-65.880000px;}
.ws90d_c00001{word-spacing:-60.120000px;}
.ws11e5_c00001{word-spacing:-34.813178px;}
.ws1223_c00001{word-spacing:-32.940000px;}
.ws7b0_c00001{word-spacing:-18.129600px;}
.ws9eb_c00001{word-spacing:-18.115200px;}
.ws265_c00001{word-spacing:-18.108000px;}
.ws419_c00001{word-spacing:-18.100800px;}
.wsbc6_c00001{word-spacing:-18.093600px;}
.ws626_c00001{word-spacing:-18.086400px;}
.ws7db_c00001{word-spacing:-18.079200px;}
.wsb01_c00001{word-spacing:-18.072000px;}
.ws3ec_c00001{word-spacing:-18.064800px;}
.ws1ba_c00001{word-spacing:-18.057600px;}
.ws473_c00001{word-spacing:-18.050400px;}
.ws11e_c00001{word-spacing:-18.043200px;}
.ws717_c00001{word-spacing:-18.036000px;}
.ws374_c00001{word-spacing:-18.028800px;}
.ws186_c00001{word-spacing:-18.021600px;}
.ws77_c00001{word-spacing:-18.014400px;}
.ws628_c00001{word-spacing:-18.007200px;}
.ws1bb_c00001{word-spacing:-18.000000px;}
.wsb52_c00001{word-spacing:-17.992800px;}
.ws627_c00001{word-spacing:-17.985600px;}
.ws954_c00001{word-spacing:-17.978400px;}
.ws64b_c00001{word-spacing:-17.964000px;}
.wsc8b_c00001{word-spacing:-17.956800px;}
.wsa15_c00001{word-spacing:-17.949600px;}
.ws79_c00001{word-spacing:-17.942400px;}
.ws3eb_c00001{word-spacing:-17.928000px;}
.ws6e1_c00001{word-spacing:-17.899200px;}
.ws8cd_c00001{word-spacing:-17.877600px;}
.ws1a22_c00001{word-spacing:-17.640000px;}
.ws67c_c00001{word-spacing:-17.438400px;}
.ws1331_c00001{word-spacing:-16.904808px;}
.ws135f_c00001{word-spacing:-16.832340px;}
.ws1299_c00001{word-spacing:-16.687404px;}
.ws100f_c00001{word-spacing:-16.647876px;}
.ws104c_c00001{word-spacing:-16.634700px;}
.ws11a5_c00001{word-spacing:-16.628112px;}
.ws12f4_c00001{word-spacing:-16.621524px;}
.wsff1_c00001{word-spacing:-16.608348px;}
.ws1222_c00001{word-spacing:-16.601760px;}
.wsf8a_c00001{word-spacing:-16.595172px;}
.wsfa8_c00001{word-spacing:-16.588584px;}
.ws100e_c00001{word-spacing:-16.581996px;}
.wsfcf_c00001{word-spacing:-16.575408px;}
.ws11cd_c00001{word-spacing:-16.568820px;}
.ws9fc_c00001{word-spacing:-16.562232px;}
.wsfa9_c00001{word-spacing:-16.555644px;}
.wsf6a_c00001{word-spacing:-16.549056px;}
.wsff0_c00001{word-spacing:-16.542468px;}
.wsce3_c00001{word-spacing:-16.535880px;}
.wsb6f_c00001{word-spacing:-16.529292px;}
.wsf69_c00001{word-spacing:-16.522704px;}
.wsf6b_c00001{word-spacing:-16.516116px;}
.wsa92_c00001{word-spacing:-16.509528px;}
.ws106c_c00001{word-spacing:-16.502940px;}
.ws10a6_c00001{word-spacing:-16.496352px;}
.wscb0_c00001{word-spacing:-16.489764px;}
.ws1168_c00001{word-spacing:-16.483176px;}
.ws106d_c00001{word-spacing:-16.476588px;}
.ws1100_c00001{word-spacing:-16.470000px;}
.ws102d_c00001{word-spacing:-16.463412px;}
.wsfaa_c00001{word-spacing:-16.456824px;}
.ws11e6_c00001{word-spacing:-16.437060px;}
.ws1101_c00001{word-spacing:-16.423884px;}
.ws126b_c00001{word-spacing:-16.417296px;}
.wsbe9_c00001{word-spacing:-16.410708px;}
.ws130b_c00001{word-spacing:-16.404120px;}
.wsaa6_c00001{word-spacing:-16.390944px;}
.ws1133_c00001{word-spacing:-16.377768px;}
.ws104b_c00001{word-spacing:-16.351416px;}
.ws1169_c00001{word-spacing:-16.292124px;}
.ws755_c00001{word-spacing:-15.210360px;}
.ws154c_c00001{word-spacing:-15.192324px;}
.ws756_c00001{word-spacing:-15.174288px;}
.wsd1f_c00001{word-spacing:-15.168276px;}
.wsa16_c00001{word-spacing:-15.156252px;}
.ws16d6_c00001{word-spacing:-15.150240px;}
.ws1576_c00001{word-spacing:-15.144228px;}
.ws2e_c00001{word-spacing:-15.138216px;}
.wsb54_c00001{word-spacing:-15.132204px;}
.ws1708_c00001{word-spacing:-15.126192px;}
.ws146b_c00001{word-spacing:-15.120180px;}
.ws5d0_c00001{word-spacing:-15.114168px;}
.ws1706_c00001{word-spacing:-15.108156px;}
.ws1874_c00001{word-spacing:-15.102144px;}
.ws545_c00001{word-spacing:-15.090120px;}
.ws1925_c00001{word-spacing:-15.084108px;}
.ws146c_c00001{word-spacing:-15.078096px;}
.wsb55_c00001{word-spacing:-15.072084px;}
.ws143c_c00001{word-spacing:-15.060060px;}
.wsa31_c00001{word-spacing:-15.054048px;}
.ws32e_c00001{word-spacing:-15.048036px;}
.ws5fb_c00001{word-spacing:-15.042024px;}
.wsd0f_c00001{word-spacing:-15.036012px;}
.ws7c_c00001{word-spacing:-15.030000px;}
.ws955_c00001{word-spacing:-15.023988px;}
.ws29e_c00001{word-spacing:-15.017976px;}
.ws187_c00001{word-spacing:-15.011964px;}
.ws29d_c00001{word-spacing:-15.005952px;}
.wsb53_c00001{word-spacing:-14.999940px;}
.ws938_c00001{word-spacing:-14.993928px;}
.ws1412_c00001{word-spacing:-14.987916px;}
.ws90c_c00001{word-spacing:-14.981904px;}
.wsaef_c00001{word-spacing:-14.975892px;}
.wsa49_c00001{word-spacing:-14.969880px;}
.wsb87_c00001{word-spacing:-14.963868px;}
.ws32d_c00001{word-spacing:-14.957856px;}
.ws4ed_c00001{word-spacing:-14.951844px;}
.ws29c_c00001{word-spacing:-14.945832px;}
.ws15e1_c00001{word-spacing:-14.933808px;}
.ws1406_c00001{word-spacing:-14.921784px;}
.wsc6e_c00001{word-spacing:-14.915772px;}
.ws32f_c00001{word-spacing:-14.909760px;}
.ws98f_c00001{word-spacing:-14.903748px;}
.ws4ee_c00001{word-spacing:-14.897736px;}
.ws5ce_c00001{word-spacing:-14.891724px;}
.ws4ef_c00001{word-spacing:-14.885712px;}
.ws16ef_c00001{word-spacing:-14.873688px;}
.ws5cf_c00001{word-spacing:-14.867676px;}
.ws1a18_c00001{word-spacing:-14.855652px;}
.ws9ec_c00001{word-spacing:-14.849640px;}
.ws1a3a_c00001{word-spacing:-14.843628px;}
.ws2d_c00001{word-spacing:-14.837616px;}
.ws183f_c00001{word-spacing:-14.831604px;}
.ws160c_c00001{word-spacing:-14.801544px;}
.ws1577_c00001{word-spacing:-14.795532px;}
.ws1707_c00001{word-spacing:-14.789520px;}
.ws4a0_c00001{word-spacing:-14.777496px;}
.ws2f_c00001{word-spacing:-14.771484px;}
.ws7b_c00001{word-spacing:-14.765472px;}
.ws1632_c00001{word-spacing:-14.759460px;}
.ws4ec_c00001{word-spacing:-14.717376px;}
.wsc38_c00001{word-spacing:-14.711364px;}
.wsce4_c00001{word-spacing:-14.669280px;}
.ws9c2_c00001{word-spacing:-14.531004px;}
.ws158b_c00001{word-spacing:-14.344632px;}
.ws42f_c00001{word-spacing:-14.288256px;}
.wsd0e_c00001{word-spacing:-14.242752px;}
.wsbab_c00001{word-spacing:-14.185872px;}
.ws2c_c00001{word-spacing:-14.180184px;}
.ws90b_c00001{word-spacing:-13.821840px;}
.ws2b_c00001{word-spacing:-12.151944px;}
.ws1411_c00001{word-spacing:-11.970000px;}
.wsd38_c00001{word-spacing:-11.950848px;}
.ws140b_c00001{word-spacing:-11.907756px;}
.ws1413_c00001{word-spacing:-11.883816px;}
.ws140c_c00001{word-spacing:-11.864664px;}
.ws0_c00001{word-spacing:-10.711116px;}
.ws1_c00001{word-spacing:-9.720000px;}
.ws5fa_c00001{word-spacing:-3.240000px;}
.ws1fe_c00001{word-spacing:-2.880000px;}
.ws29b_c00001{word-spacing:-2.797776px;}
.ws2d5_c00001{word-spacing:-2.520000px;}
.ws7d_c00001{word-spacing:-2.160000px;}
.ws98e_c00001{word-spacing:-2.077776px;}
.ws247_c00001{word-spacing:-2.077176px;}
.wsb6e_c00001{word-spacing:-1.717176px;}
.ws11f_c00001{word-spacing:-1.440000px;}
.ws953_c00001{word-spacing:-1.357776px;}
.ws7a_c00001{word-spacing:-1.080000px;}
.wsa32_c00001{word-spacing:-0.720000px;}
.ws162_c00001{word-spacing:-0.632016px;}
.ws1644_c00001{word-spacing:-0.450900px;}
.ws13e5_c00001{word-spacing:-0.449280px;}
.ws11b9_c00001{word-spacing:-0.447984px;}
.wsb32_c00001{word-spacing:-0.444888px;}
.ws13f3_c00001{word-spacing:-0.442368px;}
.wsade_c00001{word-spacing:-0.439200px;}
.ws1390_c00001{word-spacing:-0.434808px;}
.ws1416_c00001{word-spacing:-0.432864px;}
.ws13f7_c00001{word-spacing:-0.428544px;}
.wsd7b_c00001{word-spacing:-0.424800px;}
.ws13eb_c00001{word-spacing:-0.421632px;}
.ws615_c00001{word-spacing:-0.420840px;}
.wsfc5_c00001{word-spacing:-0.415044px;}
.ws9d3_c00001{word-spacing:-0.414828px;}
.ws13e0_c00001{word-spacing:-0.414720px;}
.wsda5_c00001{word-spacing:-0.410400px;}
.wsf6_c00001{word-spacing:-0.408816px;}
.ws1002_c00001{word-spacing:-0.408456px;}
.ws13d5_c00001{word-spacing:-0.407808px;}
.ws5e3_c00001{word-spacing:-0.403200px;}
.wsb51_c00001{word-spacing:-0.402804px;}
.ws114b_c00001{word-spacing:-0.401868px;}
.ws13cc_c00001{word-spacing:-0.400896px;}
.ws523_c00001{word-spacing:-0.396792px;}
.ws87_c00001{word-spacing:-0.396000px;}
.ws13f4_c00001{word-spacing:-0.393984px;}
.ws36e_c00001{word-spacing:-0.390780px;}
.ws6b8_c00001{word-spacing:-0.388800px;}
.ws1086_c00001{word-spacing:-0.388692px;}
.ws13e9_c00001{word-spacing:-0.387072px;}
.ws182_c00001{word-spacing:-0.384768px;}
.ws1076_c00001{word-spacing:-0.382104px;}
.wsc64_c00001{word-spacing:-0.381600px;}
.ws13e4_c00001{word-spacing:-0.380160px;}
.ws97a_c00001{word-spacing:-0.378756px;}
.ws1239_c00001{word-spacing:-0.375516px;}
.ws37e_c00001{word-spacing:-0.374400px;}
.ws13d1_c00001{word-spacing:-0.373248px;}
.ws2c3_c00001{word-spacing:-0.372744px;}
.ws136_c00001{word-spacing:-0.367200px;}
.ws6ab_c00001{word-spacing:-0.366732px;}
.ws13cb_c00001{word-spacing:-0.366336px;}
.ws101e_c00001{word-spacing:-0.362340px;}
.ws297_c00001{word-spacing:-0.360720px;}
.ws6ae_c00001{word-spacing:-0.360000px;}
.ws13d0_c00001{word-spacing:-0.359424px;}
.ws11f6_c00001{word-spacing:-0.355752px;}
.ws76_c00001{word-spacing:-0.354708px;}
.ws2bb_c00001{word-spacing:-0.352800px;}
.ws13d8_c00001{word-spacing:-0.352512px;}
.ws12e9_c00001{word-spacing:-0.349164px;}
.ws184_c00001{word-spacing:-0.348696px;}
.wsf17_c00001{word-spacing:-0.345600px;}
.ws831_c00001{word-spacing:-0.342684px;}
.ws105a_c00001{word-spacing:-0.342576px;}
.ws13df_c00001{word-spacing:-0.338688px;}
.wseac_c00001{word-spacing:-0.338400px;}
.ws444_c00001{word-spacing:-0.336672px;}
.ws11be_c00001{word-spacing:-0.335988px;}
.ws13dc_c00001{word-spacing:-0.331776px;}
.ws2_c00001{word-spacing:-0.330660px;}
.ws1074_c00001{word-spacing:-0.329400px;}
.ws13d9_c00001{word-spacing:-0.324864px;}
.ws30_c00001{word-spacing:-0.324648px;}
.ws1251_c00001{word-spacing:-0.322812px;}
.ws5d2_c00001{word-spacing:-0.318636px;}
.ws13da_c00001{word-spacing:-0.317952px;}
.ws1281_c00001{word-spacing:-0.316224px;}
.ws94f_c00001{word-spacing:-0.312624px;}
.ws13e6_c00001{word-spacing:-0.311040px;}
.ws11da_c00001{word-spacing:-0.309636px;}
.wsf10_c00001{word-spacing:-0.309600px;}
.ws140a_c00001{word-spacing:-0.306612px;}
.ws13f9_c00001{word-spacing:-0.304128px;}
.wscad_c00001{word-spacing:-0.302400px;}
.ws35a_c00001{word-spacing:-0.300600px;}
.ws858_c00001{word-spacing:-0.295200px;}
.ws31d_c00001{word-spacing:-0.294588px;}
.ws13fd_c00001{word-spacing:-0.290304px;}
.wsfe1_c00001{word-spacing:-0.289872px;}
.ws2c2_c00001{word-spacing:-0.288576px;}
.ws743_c00001{word-spacing:-0.288000px;}
.ws1145_c00001{word-spacing:-0.283284px;}
.ws9fb_c00001{word-spacing:-0.282564px;}
.ws135_c00001{word-spacing:-0.280800px;}
.ws641_c00001{word-spacing:-0.276552px;}
.ws13ed_c00001{word-spacing:-0.276480px;}
.ws7f3_c00001{word-spacing:-0.273600px;}
.ws4aa_c00001{word-spacing:-0.270540px;}
.wscbd_c00001{word-spacing:-0.266400px;}
.wsc1_c00001{word-spacing:-0.264528px;}
.wsc66_c00001{word-spacing:-0.259200px;}
.ws9e4_c00001{word-spacing:-0.258516px;}
.ws13f6_c00001{word-spacing:-0.255744px;}
.ws2f3_c00001{word-spacing:-0.252504px;}
.ws88_c00001{word-spacing:-0.252000px;}
.wsc2_c00001{word-spacing:-0.246492px;}
.ws7a3_c00001{word-spacing:-0.244800px;}
.ws13fb_c00001{word-spacing:-0.241920px;}
.ws1442_c00001{word-spacing:-0.240480px;}
.ws552_c00001{word-spacing:-0.237600px;}
.wsf68_c00001{word-spacing:-0.235368px;}
.ws625_c00001{word-spacing:-0.234468px;}
.ws46b_c00001{word-spacing:-0.230400px;}
.ws1469_c00001{word-spacing:-0.228456px;}
.ws13fc_c00001{word-spacing:-0.228096px;}
.wsa04_c00001{word-spacing:-0.223200px;}
.wsbd_c00001{word-spacing:-0.222444px;}
.ws7ca_c00001{word-spacing:-0.216432px;}
.ws5b9_c00001{word-spacing:-0.216000px;}
.ws13fa_c00001{word-spacing:-0.214272px;}
.ws415_c00001{word-spacing:-0.210420px;}
.ws5d1_c00001{word-spacing:-0.208800px;}
.ws1ab_c00001{word-spacing:-0.204408px;}
.ws478_c00001{word-spacing:-0.201600px;}
.wse1d_c00001{word-spacing:-0.201312px;}
.ws885_c00001{word-spacing:-0.198396px;}
.ws285_c00001{word-spacing:-0.194400px;}
.ws31f_c00001{word-spacing:-0.192384px;}
.ws551_c00001{word-spacing:-0.187200px;}
.wsbb_c00001{word-spacing:-0.186372px;}
.ws730_c00001{word-spacing:-0.180360px;}
.ws86b_c00001{word-spacing:-0.180000px;}
.ws1258_c00001{word-spacing:-0.176148px;}
.ws7af_c00001{word-spacing:-0.174348px;}
.wsdd4_c00001{word-spacing:-0.173016px;}
.ws16b_c00001{word-spacing:-0.172800px;}
.ws23_c00001{word-spacing:-0.168336px;}
.ws1a74_c00001{word-spacing:-0.167760px;}
.ws13de_c00001{word-spacing:-0.165888px;}
.ws495_c00001{word-spacing:-0.165600px;}
.ws873_c00001{word-spacing:-0.162324px;}
.ws13c5_c00001{word-spacing:-0.159372px;}
.ws412_c00001{word-spacing:-0.158400px;}
.ws832_c00001{word-spacing:-0.156312px;}
.ws13ce_c00001{word-spacing:-0.152064px;}
.ws594_c00001{word-spacing:-0.151200px;}
.ws544_c00001{word-spacing:-0.150300px;}
.ws7cd_c00001{word-spacing:-0.144288px;}
.ws290_c00001{word-spacing:-0.144000px;}
.ws13c6_c00001{word-spacing:-0.142596px;}
.ws31c_c00001{word-spacing:-0.138276px;}
.wsa4_c00001{word-spacing:-0.136800px;}
.ws181_c00001{word-spacing:-0.132264px;}
.ws1f4_c00001{word-spacing:-0.129600px;}
.wsf3_c00001{word-spacing:-0.126252px;}
.ws1257_c00001{word-spacing:-0.125820px;}
.ws107_c00001{word-spacing:-0.122400px;}
.ws31e_c00001{word-spacing:-0.120240px;}
.wse50_c00001{word-spacing:-0.117432px;}
.ws227_c00001{word-spacing:-0.115200px;}
.ws373_c00001{word-spacing:-0.114228px;}
.wsf6c_c00001{word-spacing:-0.109044px;}
.ws399_c00001{word-spacing:-0.108216px;}
.ws10e_c00001{word-spacing:-0.108000px;}
.ws12b7_c00001{word-spacing:-0.105408px;}
.ws8ee_c00001{word-spacing:-0.102204px;}
.ws48_c00001{word-spacing:-0.100800px;}
.ws1404_c00001{word-spacing:-0.100656px;}
.ws10f_c00001{word-spacing:-0.096192px;}
.ws55_c00001{word-spacing:-0.093600px;}
.ws107c_c00001{word-spacing:-0.092232px;}
.ws2f4_c00001{word-spacing:-0.090180px;}
.wsc_c00001{word-spacing:-0.086400px;}
.ws1444_c00001{word-spacing:-0.084168px;}
.ws14b_c00001{word-spacing:-0.079200px;}
.ws116d_c00001{word-spacing:-0.079056px;}
.wsd11_c00001{word-spacing:-0.078156px;}
.ws13e3_c00001{word-spacing:-0.076032px;}
.ws1a75_c00001{word-spacing:-0.075492px;}
.wsf73_c00001{word-spacing:-0.072468px;}
.ws49a_c00001{word-spacing:-0.072144px;}
.ws38_c00001{word-spacing:-0.072000px;}
.ws13ea_c00001{word-spacing:-0.069120px;}
.ws1a45_c00001{word-spacing:-0.067248px;}
.ws95f_c00001{word-spacing:-0.066132px;}
.wsfe2_c00001{word-spacing:-0.065880px;}
.ws1cd_c00001{word-spacing:-0.064800px;}
.ws975_c00001{word-spacing:-0.060120px;}
.wsf6d_c00001{word-spacing:-0.059292px;}
.ws15e_c00001{word-spacing:-0.057600px;}
.ws13cf_c00001{word-spacing:-0.055296px;}
.ws251_c00001{word-spacing:-0.054108px;}
.wsf89_c00001{word-spacing:-0.052704px;}
.ws1e_c00001{word-spacing:-0.050400px;}
.ws13cd_c00001{word-spacing:-0.048384px;}
.ws4ab_c00001{word-spacing:-0.048096px;}
.wsf6e_c00001{word-spacing:-0.046116px;}
.ws20_c00001{word-spacing:-0.043200px;}
.wsf7_c00001{word-spacing:-0.042084px;}
.ws13c9_c00001{word-spacing:-0.041472px;}
.wsf7e_c00001{word-spacing:-0.039528px;}
.ws238_c00001{word-spacing:-0.036072px;}
.wsae_c00001{word-spacing:-0.036000px;}
.ws13d7_c00001{word-spacing:-0.034560px;}
.wsf8c_c00001{word-spacing:-0.032940px;}
.ws7ed_c00001{word-spacing:-0.030060px;}
.ws284_c00001{word-spacing:-0.028800px;}
.ws13f0_c00001{word-spacing:-0.027648px;}
.wsf87_c00001{word-spacing:-0.026352px;}
.ws1b9_c00001{word-spacing:-0.024048px;}
.ws134_c00001{word-spacing:-0.021600px;}
.ws13d4_c00001{word-spacing:-0.020736px;}
.wsc34_c00001{word-spacing:-0.019764px;}
.ws2d4_c00001{word-spacing:-0.018036px;}
.wse1c_c00001{word-spacing:-0.016776px;}
.ws47_c00001{word-spacing:-0.014400px;}
.ws13e1_c00001{word-spacing:-0.013824px;}
.wsfbd_c00001{word-spacing:-0.013176px;}
.ws1ac_c00001{word-spacing:-0.012024px;}
.wsd_c00001{word-spacing:-0.007200px;}
.ws13db_c00001{word-spacing:-0.006912px;}
.wsab4_c00001{word-spacing:-0.006588px;}
.ws53d_c00001{word-spacing:-0.006012px;}
.ws3_c00001{word-spacing:0.000000px;}
.ws143_c00001{word-spacing:0.006012px;}
.ws5_c00001{word-spacing:0.006588px;}
.ws13d2_c00001{word-spacing:0.006912px;}
.ws1f_c00001{word-spacing:0.007200px;}
.ws1a4b_c00001{word-spacing:0.008388px;}
.ws564_c00001{word-spacing:0.012024px;}
.wsbb6_c00001{word-spacing:0.013176px;}
.ws13d3_c00001{word-spacing:0.013824px;}
.ws2fb_c00001{word-spacing:0.014400px;}
.wsbc_c00001{word-spacing:0.018036px;}
.wsbb7_c00001{word-spacing:0.019764px;}
.ws13c8_c00001{word-spacing:0.020736px;}
.ws257_c00001{word-spacing:0.021600px;}
.ws42e_c00001{word-spacing:0.024048px;}
.ws6ec_c00001{word-spacing:0.026352px;}
.ws13ca_c00001{word-spacing:0.027648px;}
.ws5e4_c00001{word-spacing:0.028800px;}
.ws255_c00001{word-spacing:0.030060px;}
.wsc6_c00001{word-spacing:0.032940px;}
.ws13e8_c00001{word-spacing:0.034560px;}
.ws3ad_c00001{word-spacing:0.036000px;}
.ws13e_c00001{word-spacing:0.036072px;}
.ws230_c00001{word-spacing:0.039528px;}
.ws13d6_c00001{word-spacing:0.041472px;}
.wsf5_c00001{word-spacing:0.042084px;}
.ws741_c00001{word-spacing:0.043200px;}
.wsa05_c00001{word-spacing:0.046116px;}
.ws2a_c00001{word-spacing:0.048096px;}
.ws13dd_c00001{word-spacing:0.048384px;}
.wsc08_c00001{word-spacing:0.050400px;}
.wsb80_c00001{word-spacing:0.052704px;}
.ws147_c00001{word-spacing:0.054108px;}
.ws13e2_c00001{word-spacing:0.055296px;}
.ws337_c00001{word-spacing:0.057600px;}
.wsdd9_c00001{word-spacing:0.058716px;}
.ws968_c00001{word-spacing:0.059292px;}
.ws9c5_c00001{word-spacing:0.060120px;}
.ws13e7_c00001{word-spacing:0.062208px;}
.ws108_c00001{word-spacing:0.064800px;}
.wsbb5_c00001{word-spacing:0.065880px;}
.ws443_c00001{word-spacing:0.066132px;}
.ws13fe_c00001{word-spacing:0.069120px;}
.ws3dc_c00001{word-spacing:0.072000px;}
.ws472_c00001{word-spacing:0.072144px;}
.ws89b_c00001{word-spacing:0.072468px;}
.ws13ff_c00001{word-spacing:0.076032px;}
.ws32a_c00001{word-spacing:0.078156px;}
.ws176_c00001{word-spacing:0.079056px;}
.ws334_c00001{word-spacing:0.079200px;}
.ws13f8_c00001{word-spacing:0.082944px;}
.wsc3_c00001{word-spacing:0.084168px;}
.wsf96_c00001{word-spacing:0.085644px;}
.ws6af_c00001{word-spacing:0.086400px;}
.ws13f2_c00001{word-spacing:0.089856px;}
.ws17c_c00001{word-spacing:0.090180px;}
.ws2ba_c00001{word-spacing:0.092232px;}
.ws1403_c00001{word-spacing:0.092268px;}
.wsdf3_c00001{word-spacing:0.093600px;}
.ws183_c00001{word-spacing:0.096192px;}
.ws13ef_c00001{word-spacing:0.096768px;}
.ws108d_c00001{word-spacing:0.098820px;}
.ws664_c00001{word-spacing:0.100800px;}
.ws11d_c00001{word-spacing:0.102204px;}
.ws13ec_c00001{word-spacing:0.103680px;}
.ws1146_c00001{word-spacing:0.105408px;}
.wscf5_c00001{word-spacing:0.108000px;}
.ws1f5_c00001{word-spacing:0.108216px;}
.wsf74_c00001{word-spacing:0.111996px;}
.ws6e_c00001{word-spacing:0.114228px;}
.wse14_c00001{word-spacing:0.115200px;}
.ws1a91_c00001{word-spacing:0.117432px;}
.ws13f1_c00001{word-spacing:0.117504px;}
.ws1322_c00001{word-spacing:0.118584px;}
.ws246_c00001{word-spacing:0.120240px;}
.ws571_c00001{word-spacing:0.122400px;}
.ws733_c00001{word-spacing:0.126252px;}
.ws7ce_c00001{word-spacing:0.129600px;}
.ws29a_c00001{word-spacing:0.132264px;}
.ws1a46_c00001{word-spacing:0.134568px;}
.ws8bd_c00001{word-spacing:0.136800px;}
.ws1f6_c00001{word-spacing:0.138276px;}
.wsbf7_c00001{word-spacing:0.144000px;}
.ws146_c00001{word-spacing:0.144288px;}
.ws114f_c00001{word-spacing:0.144936px;}
.ws5cb_c00001{word-spacing:0.150300px;}
.ws8bc_c00001{word-spacing:0.151200px;}
.wsdd3_c00001{word-spacing:0.151308px;}
.ws1244_c00001{word-spacing:0.151524px;}
.ws616_c00001{word-spacing:0.156312px;}
.wsf88_c00001{word-spacing:0.158112px;}
.ws1dc_c00001{word-spacing:0.158400px;}
.ws6b_c00001{word-spacing:0.162324px;}
.ws7b4_c00001{word-spacing:0.165600px;}
.ws2d1_c00001{word-spacing:0.168336px;}
.ws818_c00001{word-spacing:0.172800px;}
.ws642_c00001{word-spacing:0.174348px;}
.ws665_c00001{word-spacing:0.180000px;}
.ws1af_c00001{word-spacing:0.180360px;}
.ws1a44_c00001{word-spacing:0.184932px;}
.wsf4_c00001{word-spacing:0.186372px;}
.ws350_c00001{word-spacing:0.187200px;}
.ws21_c00001{word-spacing:0.192384px;}
.ws7e6_c00001{word-spacing:0.194400px;}
.ws252_c00001{word-spacing:0.198396px;}
.ws496_c00001{word-spacing:0.201600px;}
.ws1f8_c00001{word-spacing:0.204408px;}
.ws819_c00001{word-spacing:0.208800px;}
.ws1b5_c00001{word-spacing:0.210420px;}
.ws3f7_c00001{word-spacing:0.216000px;}
.ws185_c00001{word-spacing:0.216432px;}
.wsf1_c00001{word-spacing:0.222444px;}
.ws4f9_c00001{word-spacing:0.223200px;}
.ws13c7_c00001{word-spacing:0.226476px;}
.ws1aa_c00001{word-spacing:0.228456px;}
.ws6c9_c00001{word-spacing:0.230400px;}
.ws22_c00001{word-spacing:0.234468px;}
.ws351_c00001{word-spacing:0.237600px;}
.wsf2_c00001{word-spacing:0.240480px;}
.ws1385_c00001{word-spacing:0.243756px;}
.ws256_c00001{word-spacing:0.244800px;}
.ws5c3_c00001{word-spacing:0.246492px;}
.ws135c_c00001{word-spacing:0.250344px;}
.wsa27_c00001{word-spacing:0.252000px;}
.ws1b8_c00001{word-spacing:0.252504px;}
.ws253_c00001{word-spacing:0.258516px;}
.ws15a_c00001{word-spacing:0.259200px;}
.ws36d_c00001{word-spacing:0.264528px;}
.ws159_c00001{word-spacing:0.266400px;}
.ws324_c00001{word-spacing:0.270540px;}
.ws14a_c00001{word-spacing:0.273600px;}
.ws1571_c00001{word-spacing:0.276552px;}
.ws6b0_c00001{word-spacing:0.280800px;}
.ws6f6_c00001{word-spacing:0.282564px;}
.wsd5_c00001{word-spacing:0.288000px;}
.ws8a5_c00001{word-spacing:0.288576px;}
.ws8a0_c00001{word-spacing:0.294588px;}
.ws149_c00001{word-spacing:0.295200px;}
.wsb33_c00001{word-spacing:0.300600px;}
.ws24f_c00001{word-spacing:0.302400px;}
.ws10a4_c00001{word-spacing:0.303048px;}
.ws144d_c00001{word-spacing:0.306612px;}
.ws759_c00001{word-spacing:0.309600px;}
.ws132d_c00001{word-spacing:0.309636px;}
.ws254_c00001{word-spacing:0.312624px;}
.ws135b_c00001{word-spacing:0.316224px;}
.ws67e_c00001{word-spacing:0.316800px;}
.wsa7a_c00001{word-spacing:0.318636px;}
.ws24e_c00001{word-spacing:0.324000px;}
.ws1b7_c00001{word-spacing:0.324648px;}
.ws13ee_c00001{word-spacing:0.324864px;}
.wscb1_c00001{word-spacing:0.329400px;}
.wsa56_c00001{word-spacing:0.330660px;}
.wsd4_c00001{word-spacing:0.331200px;}
.ws132c_c00001{word-spacing:0.335988px;}
.wsc28_c00001{word-spacing:0.336672px;}
.ws4f8_c00001{word-spacing:0.338400px;}
.ws1312_c00001{word-spacing:0.342576px;}
.ws359_c00001{word-spacing:0.342684px;}
.ws9dc_c00001{word-spacing:0.345600px;}
.wsa91_c00001{word-spacing:0.348696px;}
.ws10d7_c00001{word-spacing:0.349164px;}
.ws7c3_c00001{word-spacing:0.352800px;}
.ws1f7_c00001{word-spacing:0.354708px;}
.ws127e_c00001{word-spacing:0.355752px;}
.ws398_c00001{word-spacing:0.360000px;}
.ws4b4_c00001{word-spacing:0.360720px;}
.ws12d8_c00001{word-spacing:0.362340px;}
.ws16bd_c00001{word-spacing:0.366732px;}
.ws7c2_c00001{word-spacing:0.367200px;}
.wscb2_c00001{word-spacing:0.368928px;}
.ws624_c00001{word-spacing:0.372744px;}
.ws799_c00001{word-spacing:0.374400px;}
.ws128c_c00001{word-spacing:0.375516px;}
.ws63d_c00001{word-spacing:0.378756px;}
.ws535_c00001{word-spacing:0.381600px;}
.wsfd4_c00001{word-spacing:0.382104px;}
.ws1438_c00001{word-spacing:0.384768px;}
.ws13f5_c00001{word-spacing:0.387072px;}
.ws105d_c00001{word-spacing:0.388692px;}
.ws83a_c00001{word-spacing:0.388800px;}
.ws15c3_c00001{word-spacing:0.390780px;}
.wsfb9_c00001{word-spacing:0.395280px;}
.wsdd5_c00001{word-spacing:0.396000px;}
.ws2f8_c00001{word-spacing:0.396792px;}
.wscb3_c00001{word-spacing:0.401868px;}
.ws162d_c00001{word-spacing:0.402804px;}
.ws1057_c00001{word-spacing:0.408456px;}
.ws1b6_c00001{word-spacing:0.408816px;}
.wse5b_c00001{word-spacing:0.410400px;}
.ws358_c00001{word-spacing:0.414828px;}
.ws103d_c00001{word-spacing:0.415044px;}
.wsed0_c00001{word-spacing:0.417600px;}
.ws1710_c00001{word-spacing:0.420840px;}
.wsf86_c00001{word-spacing:0.421632px;}
.ws8d0_c00001{word-spacing:0.424800px;}
.ws15cc_c00001{word-spacing:0.426852px;}
.wsc67_c00001{word-spacing:0.428220px;}
.ws1477_c00001{word-spacing:0.432864px;}
.wsf6f_c00001{word-spacing:0.434808px;}
.ws4eb_c00001{word-spacing:0.438876px;}
.ws1234_c00001{word-spacing:0.441396px;}
.ws63f_c00001{word-spacing:0.444888px;}
.wsda7_c00001{word-spacing:0.446400px;}
.wsffb_c00001{word-spacing:0.447984px;}
.ws16c8_c00001{word-spacing:0.450900px;}
.ws1075_c00001{word-spacing:0.454572px;}
.ws148d_c00001{word-spacing:0.456912px;}
.ws35f_c00001{word-spacing:0.462924px;}
.wsdfd_c00001{word-spacing:0.468000px;}
.ws14ae_c00001{word-spacing:0.468936px;}
.ws12d7_c00001{word-spacing:0.474336px;}
.ws237_c00001{word-spacing:0.474948px;}
.ws236_c00001{word-spacing:0.480960px;}
.wsdcc_c00001{word-spacing:0.482400px;}
.ws1600_c00001{word-spacing:0.486972px;}
.ws71f_c00001{word-spacing:0.489600px;}
.ws9ce_c00001{word-spacing:0.492984px;}
.wsdfe_c00001{word-spacing:0.496800px;}
.ws9e1_c00001{word-spacing:0.498996px;}
.ws39b_c00001{word-spacing:0.504000px;}
.ws19f5_c00001{word-spacing:0.505008px;}
.ws640_c00001{word-spacing:0.511020px;}
.ws720_c00001{word-spacing:0.511200px;}
.ws17e3_c00001{word-spacing:0.517032px;}
.ws45c_c00001{word-spacing:0.518400px;}
.ws165f_c00001{word-spacing:0.523044px;}
.ws657_c00001{word-spacing:0.525600px;}
.ws15a6_c00001{word-spacing:0.529056px;}
.ws5ea_c00001{word-spacing:0.535068px;}
.ws8c2_c00001{word-spacing:0.540000px;}
.ws63e_c00001{word-spacing:0.541080px;}
.ws327_c00001{word-spacing:0.547092px;}
.ws8af_c00001{word-spacing:0.547200px;}
.ws16c9_c00001{word-spacing:0.553104px;}
.wsc90_c00001{word-spacing:0.554400px;}
.ws1697_c00001{word-spacing:0.559116px;}
.ws45a_c00001{word-spacing:0.561600px;}
.wsa55_c00001{word-spacing:0.565128px;}
.ws787_c00001{word-spacing:0.568800px;}
.ws329_c00001{word-spacing:0.571140px;}
.ws1f2_c00001{word-spacing:0.576000px;}
.ws4b5_c00001{word-spacing:0.577152px;}
.ws19ef_c00001{word-spacing:0.583164px;}
.ws859_c00001{word-spacing:0.583200px;}
.ws1899_c00001{word-spacing:0.589176px;}
.ws690_c00001{word-spacing:0.590400px;}
.ws179a_c00001{word-spacing:0.595188px;}
.ws7e1_c00001{word-spacing:0.597600px;}
.ws14b6_c00001{word-spacing:0.601200px;}
.ws126_c00001{word-spacing:0.604800px;}
.wsd44_c00001{word-spacing:0.607212px;}
.ws127_c00001{word-spacing:0.612000px;}
.ws15c4_c00001{word-spacing:0.613224px;}
.ws45b_c00001{word-spacing:0.619200px;}
.ws14af_c00001{word-spacing:0.619236px;}
.ws1051_c00001{word-spacing:0.619272px;}
.ws14b8_c00001{word-spacing:0.625248px;}
.ws746_c00001{word-spacing:0.626400px;}
.ws17c1_c00001{word-spacing:0.631260px;}
.ws136f_c00001{word-spacing:0.632448px;}
.ws75a_c00001{word-spacing:0.633600px;}
.ws1941_c00001{word-spacing:0.637272px;}
.ws557_c00001{word-spacing:0.640800px;}
.ws1988_c00001{word-spacing:0.643284px;}
.ws4d2_c00001{word-spacing:0.648000px;}
.ws264_c00001{word-spacing:0.649296px;}
.ws4d1_c00001{word-spacing:0.655200px;}
.ws9d7_c00001{word-spacing:0.655308px;}
.ws8d2_c00001{word-spacing:0.662400px;}
.ws1780_c00001{word-spacing:0.667332px;}
.ws6e4_c00001{word-spacing:0.669600px;}
.ws9c1_c00001{word-spacing:0.673344px;}
.ws77c_c00001{word-spacing:0.676800px;}
.ws1848_c00001{word-spacing:0.679356px;}
.ws7e9_c00001{word-spacing:0.684000px;}
.ws1206_c00001{word-spacing:0.685152px;}
.wsc6c_c00001{word-spacing:0.685368px;}
.wsdd_c00001{word-spacing:0.691200px;}
.ws8de_c00001{word-spacing:0.691380px;}
.ws1245_c00001{word-spacing:0.691740px;}
.ws49c_c00001{word-spacing:0.697392px;}
.ws105f_c00001{word-spacing:0.698328px;}
.ws556_c00001{word-spacing:0.698400px;}
.ws9d5_c00001{word-spacing:0.703404px;}
.ws120d_c00001{word-spacing:0.704916px;}
.wsdc_c00001{word-spacing:0.705600px;}
.ws35b_c00001{word-spacing:0.709416px;}
.ws131e_c00001{word-spacing:0.711504px;}
.ws46c_c00001{word-spacing:0.712800px;}
.ws328_c00001{word-spacing:0.715428px;}
.ws10a3_c00001{word-spacing:0.718092px;}
.ws6e3_c00001{word-spacing:0.720000px;}
.ws1567_c00001{word-spacing:0.721440px;}
.ws1043_c00001{word-spacing:0.724680px;}
.ws39c_c00001{word-spacing:0.727200px;}
.ws1431_c00001{word-spacing:0.727452px;}
.ws131f_c00001{word-spacing:0.731268px;}
.ws794_c00001{word-spacing:0.733464px;}
.ws974_c00001{word-spacing:0.734400px;}
.wsf75_c00001{word-spacing:0.737856px;}
.wsc6b_c00001{word-spacing:0.739476px;}
.ws125_c00001{word-spacing:0.741600px;}
.ws133d_c00001{word-spacing:0.744444px;}
.ws49b_c00001{word-spacing:0.745488px;}
.wse22_c00001{word-spacing:0.748800px;}
.ws9f0_c00001{word-spacing:0.751032px;}
.ws1603_c00001{word-spacing:0.751500px;}
.ws85a_c00001{word-spacing:0.756000px;}
.wsa11_c00001{word-spacing:0.757512px;}
.ws1044_c00001{word-spacing:0.757620px;}
.ws747_c00001{word-spacing:0.763200px;}
.ws5c5_c00001{word-spacing:0.763524px;}
.wsa07_c00001{word-spacing:0.764208px;}
.ws19a3_c00001{word-spacing:0.769536px;}
.ws9d4_c00001{word-spacing:0.770400px;}
.ws10cf_c00001{word-spacing:0.770796px;}
.ws1664_c00001{word-spacing:0.775548px;}
.ws1240_c00001{word-spacing:0.777384px;}
.wsda8_c00001{word-spacing:0.777600px;}
.ws1585_c00001{word-spacing:0.781560px;}
.ws11e2_c00001{word-spacing:0.783972px;}
.ws15a1_c00001{word-spacing:0.787572px;}
.ws10a2_c00001{word-spacing:0.790560px;}
.ws1660_c00001{word-spacing:0.793584px;}
.wsb06_c00001{word-spacing:0.797148px;}
.wsb71_c00001{word-spacing:0.799200px;}
.ws325_c00001{word-spacing:0.799596px;}
.wsa08_c00001{word-spacing:0.803736px;}
.wsa7e_c00001{word-spacing:0.805608px;}
.ws137b_c00001{word-spacing:0.810324px;}
.ws9a6_c00001{word-spacing:0.811620px;}
.wsbf_c00001{word-spacing:0.817632px;}
.wsda6_c00001{word-spacing:0.820800px;}
.ws326_c00001{word-spacing:0.823644px;}
.ws330_c00001{word-spacing:0.828000px;}
.wsc0_c00001{word-spacing:0.829656px;}
.ws5fd_c00001{word-spacing:0.835200px;}
.ws6d6_c00001{word-spacing:0.835668px;}
.ws2f9_c00001{word-spacing:0.841680px;}
.wsb3d_c00001{word-spacing:0.842400px;}
.ws12a8_c00001{word-spacing:0.843264px;}
.ws263_c00001{word-spacing:0.847692px;}
.wsae4_c00001{word-spacing:0.849600px;}
.ws17c3_c00001{word-spacing:0.853704px;}
.wsa10_c00001{word-spacing:0.856800px;}
.ws166c_c00001{word-spacing:0.859716px;}
.wse98_c00001{word-spacing:0.864000px;}
.ws9f9_c00001{word-spacing:0.865728px;}
.ws152_c00001{word-spacing:0.871200px;}
.ws18e9_c00001{word-spacing:0.871740px;}
.ws19b4_c00001{word-spacing:0.877752px;}
.ws940_c00001{word-spacing:0.878400px;}
.ws165b_c00001{word-spacing:0.883764px;}
.ws3aa_c00001{word-spacing:0.885600px;}
.ws6d5_c00001{word-spacing:0.889776px;}
.ws90e_c00001{word-spacing:0.892800px;}
.ws5c4_c00001{word-spacing:0.895788px;}
.ws869_c00001{word-spacing:0.900000px;}
.ws2f7_c00001{word-spacing:0.901800px;}
.ws629_c00001{word-spacing:0.907200px;}
.ws1a31_c00001{word-spacing:0.907812px;}
.wsa7d_c00001{word-spacing:0.913824px;}
.ws801_c00001{word-spacing:0.914400px;}
.ws795_c00001{word-spacing:0.919836px;}
.ws696_c00001{word-spacing:0.921600px;}
.ws1675_c00001{word-spacing:0.925848px;}
.ws64e_c00001{word-spacing:0.928800px;}
.ws614_c00001{word-spacing:0.931860px;}
.ws43e_c00001{word-spacing:0.936000px;}
.ws154a_c00001{word-spacing:0.937872px;}
.ws1f3_c00001{word-spacing:0.943200px;}
.ws6f5_c00001{word-spacing:0.943884px;}
.ws613_c00001{word-spacing:0.949896px;}
.wsa4c_c00001{word-spacing:0.950400px;}
.ws1606_c00001{word-spacing:0.955908px;}
.ws970_c00001{word-spacing:0.957600px;}
.wsbc2_c00001{word-spacing:0.961920px;}
.ws9b0_c00001{word-spacing:0.964800px;}
.ws14a8_c00001{word-spacing:0.967932px;}
.ws695_c00001{word-spacing:0.972000px;}
.ws1502_c00001{word-spacing:0.973944px;}
.ws1d0_c00001{word-spacing:0.979200px;}
.ws1596_c00001{word-spacing:0.979956px;}
.ws17af_c00001{word-spacing:0.985968px;}
.ws151_c00001{word-spacing:0.986400px;}
.ws1470_c00001{word-spacing:0.991980px;}
.ws1ce_c00001{word-spacing:0.993600px;}
.ws50e_c00001{word-spacing:1.000800px;}
.ws167a_c00001{word-spacing:1.004004px;}
.ws853_c00001{word-spacing:1.008000px;}
.ws8df_c00001{word-spacing:1.010016px;}
.ws107e_c00001{word-spacing:1.014552px;}
.ws50f_c00001{word-spacing:1.015200px;}
.wsd43_c00001{word-spacing:1.016028px;}
.ws1096_c00001{word-spacing:1.021140px;}
.ws6e2_c00001{word-spacing:1.022400px;}
.wsfcb_c00001{word-spacing:1.027728px;}
.ws164b_c00001{word-spacing:1.028052px;}
.ws8ce_c00001{word-spacing:1.029600px;}
.wsbe8_c00001{word-spacing:1.034064px;}
.wsff_c00001{word-spacing:1.036800px;}
.ws4bd_c00001{word-spacing:1.040076px;}
.ws131d_c00001{word-spacing:1.040904px;}
.ws153_c00001{word-spacing:1.044000px;}
.ws1987_c00001{word-spacing:1.046088px;}
.ws5a_c00001{word-spacing:1.051200px;}
.ws1652_c00001{word-spacing:1.052100px;}
.ws1327_c00001{word-spacing:1.054080px;}
.ws1774_c00001{word-spacing:1.058112px;}
.ws5b_c00001{word-spacing:1.058400px;}
.ws9d6_c00001{word-spacing:1.064124px;}
.ws4d6_c00001{word-spacing:1.065600px;}
.ws132b_c00001{word-spacing:1.067256px;}
.ws822_c00001{word-spacing:1.070136px;}
.ws1cf_c00001{word-spacing:1.072800px;}
.wsfc8_c00001{word-spacing:1.073844px;}
.ws67b_c00001{word-spacing:1.076148px;}
.ws5cd_c00001{word-spacing:1.080000px;}
.ws139c_c00001{word-spacing:1.080432px;}
.ws4e5_c00001{word-spacing:1.082160px;}
.ws107d_c00001{word-spacing:1.087020px;}
.ws50d_c00001{word-spacing:1.087200px;}
.ws966_c00001{word-spacing:1.088172px;}
.wsfca_c00001{word-spacing:1.093608px;}
.ws541_c00001{word-spacing:1.094184px;}
.wsaca_c00001{word-spacing:1.094400px;}
.ws754_c00001{word-spacing:1.100196px;}
.ws654_c00001{word-spacing:1.101600px;}
.ws4bb_c00001{word-spacing:1.106208px;}
.ws136e_c00001{word-spacing:1.106784px;}
.ws4c2_c00001{word-spacing:1.108800px;}
.ws1473_c00001{word-spacing:1.112220px;}
.ws1115_c00001{word-spacing:1.113372px;}
.ws5fc_c00001{word-spacing:1.116000px;}
.wsd2a_c00001{word-spacing:1.118232px;}
.ws1201_c00001{word-spacing:1.119960px;}
.ws493_c00001{word-spacing:1.123200px;}
.ws18ee_c00001{word-spacing:1.124244px;}
.wsfc9_c00001{word-spacing:1.126548px;}
.ws17be_c00001{word-spacing:1.130256px;}
.wsc3c_c00001{word-spacing:1.130400px;}
.ws1212_c00001{word-spacing:1.133136px;}
.ws15ae_c00001{word-spacing:1.136268px;}
.wsf54_c00001{word-spacing:1.137600px;}
.wsb05_c00001{word-spacing:1.139724px;}
.ws18ed_c00001{word-spacing:1.142280px;}
.ws9c_c00001{word-spacing:1.144800px;}
.ws1143_c00001{word-spacing:1.146312px;}
.ws15e2_c00001{word-spacing:1.148292px;}
.wsa62_c00001{word-spacing:1.152000px;}
.ws137e_c00001{word-spacing:1.152900px;}
.ws1604_c00001{word-spacing:1.154304px;}
.ws494_c00001{word-spacing:1.159200px;}
.ws1250_c00001{word-spacing:1.159488px;}
.ws4e6_c00001{word-spacing:1.160316px;}
.ws1655_c00001{word-spacing:1.166328px;}
.ws100_c00001{word-spacing:1.166400px;}
.ws731_c00001{word-spacing:1.172340px;}
.ws113a_c00001{word-spacing:1.172664px;}
.ws1add_c00001{word-spacing:1.173600px;}
.ws8ea_c00001{word-spacing:1.178352px;}
.ws1a5d_c00001{word-spacing:1.180800px;}
.wsb5e_c00001{word-spacing:1.184364px;}
.ws300_c00001{word-spacing:1.188000px;}
.wsd1e_c00001{word-spacing:1.190376px;}
.wsdab_c00001{word-spacing:1.195200px;}
.ws732_c00001{word-spacing:1.196388px;}
.ws779_c00001{word-spacing:1.202400px;}
.wsc4a_c00001{word-spacing:1.208412px;}
.ws1aa4_c00001{word-spacing:1.209600px;}
.wsca2_c00001{word-spacing:1.214424px;}
.ws192_c00001{word-spacing:1.216800px;}
.ws170e_c00001{word-spacing:1.220436px;}
.ws9b6_c00001{word-spacing:1.224000px;}
.ws5ec_c00001{word-spacing:1.226448px;}
.wsf01_c00001{word-spacing:1.231200px;}
.ws4e8_c00001{word-spacing:1.232460px;}
.ws62a_c00001{word-spacing:1.238400px;}
.wsbe7_c00001{word-spacing:1.238472px;}
.ws1645_c00001{word-spacing:1.244484px;}
.ws9d_c00001{word-spacing:1.245600px;}
.wsbc4_c00001{word-spacing:1.250496px;}
.ws2ff_c00001{word-spacing:1.252800px;}
.ws171a_c00001{word-spacing:1.256508px;}
.ws941_c00001{word-spacing:1.260000px;}
.ws619_c00001{word-spacing:1.262520px;}
.wsc20_c00001{word-spacing:1.267200px;}
.ws17d9_c00001{word-spacing:1.268532px;}
.ws286_c00001{word-spacing:1.274400px;}
.ws176d_c00001{word-spacing:1.274544px;}
.ws1532_c00001{word-spacing:1.280556px;}
.ws942_c00001{word-spacing:1.281600px;}
.ws1533_c00001{word-spacing:1.286568px;}
.ws729_c00001{word-spacing:1.288800px;}
.ws1765_c00001{word-spacing:1.292580px;}
.ws931_c00001{word-spacing:1.296000px;}
.ws176a_c00001{word-spacing:1.298592px;}
.wsf30_c00001{word-spacing:1.303200px;}
.ws171b_c00001{word-spacing:1.304604px;}
.ws1c3_c00001{word-spacing:1.310400px;}
.ws1590_c00001{word-spacing:1.310616px;}
.ws1749_c00001{word-spacing:1.316628px;}
.ws37_c00001{word-spacing:1.317600px;}
.ws5eb_c00001{word-spacing:1.322640px;}
.ws4cd_c00001{word-spacing:1.324800px;}
.ws5ed_c00001{word-spacing:1.328652px;}
.ws12d_c00001{word-spacing:1.332000px;}
.wsbe6_c00001{word-spacing:1.334664px;}
.ws35_c00001{word-spacing:1.339200px;}
.ws4e7_c00001{word-spacing:1.340676px;}
.ws133_c00001{word-spacing:1.346400px;}
.ws1a34_c00001{word-spacing:1.346688px;}
.ws16c6_c00001{word-spacing:1.352700px;}
.ws7b3_c00001{word-spacing:1.353600px;}
.ws17b1_c00001{word-spacing:1.358712px;}
.ws81a_c00001{word-spacing:1.360800px;}
.ws491_c00001{word-spacing:1.368000px;}
.ws1397_c00001{word-spacing:1.370304px;}
.ws3e4_c00001{word-spacing:1.375200px;}
.ws191_c00001{word-spacing:1.382400px;}
.ws1773_c00001{word-spacing:1.382760px;}
.ws107a_c00001{word-spacing:1.383480px;}
.ws283_c00001{word-spacing:1.389600px;}
.ws133a_c00001{word-spacing:1.390068px;}
.ws11d1_c00001{word-spacing:1.396656px;}
.ws154_c00001{word-spacing:1.396800px;}
.ws4cc_c00001{word-spacing:1.404000px;}
.ws91c_c00001{word-spacing:1.406808px;}
.ws12e_c00001{word-spacing:1.411200px;}
.wsbc5_c00001{word-spacing:1.412820px;}
.ws282_c00001{word-spacing:1.418400px;}
.ws17c7_c00001{word-spacing:1.418832px;}
.ws1036_c00001{word-spacing:1.423008px;}
.wsd18_c00001{word-spacing:1.424844px;}
.ws1d_c00001{word-spacing:1.425600px;}
.ws106b_c00001{word-spacing:1.429596px;}
.ws595_c00001{word-spacing:1.430856px;}
.ws62b_c00001{word-spacing:1.432800px;}
.ws12f7_c00001{word-spacing:1.436184px;}
.ws4e1_c00001{word-spacing:1.436868px;}
.ws2dd_c00001{word-spacing:1.440000px;}
.ws11d0_c00001{word-spacing:1.442772px;}
.ws2c1_c00001{word-spacing:1.442880px;}
.ws36_c00001{word-spacing:1.447200px;}
.ws11c_c00001{word-spacing:1.448892px;}
.ws106a_c00001{word-spacing:1.449360px;}
.wsf5f_c00001{word-spacing:1.454400px;}
.ws768_c00001{word-spacing:1.454904px;}
.ws134c_c00001{word-spacing:1.455948px;}
.wscac_c00001{word-spacing:1.460916px;}
.ws9b_c00001{word-spacing:1.461600px;}
.wsa96_c00001{word-spacing:1.462536px;}
.ws61c_c00001{word-spacing:1.466928px;}
.ws492_c00001{word-spacing:1.468800px;}
.ws131c_c00001{word-spacing:1.469124px;}
.ws14d3_c00001{word-spacing:1.472940px;}
.ws1366_c00001{word-spacing:1.475712px;}
.wsa1c_c00001{word-spacing:1.476000px;}
.ws16d1_c00001{word-spacing:1.478952px;}
.ws1037_c00001{word-spacing:1.482300px;}
.ws69b_c00001{word-spacing:1.483200px;}
.ws4bc_c00001{word-spacing:1.484964px;}
.wscd8_c00001{word-spacing:1.488888px;}
.ws1453_c00001{word-spacing:1.490976px;}
.ws1292_c00001{word-spacing:1.495476px;}
.ws7aa_c00001{word-spacing:1.496988px;}
.ws160f_c00001{word-spacing:1.503000px;}
.ws1069_c00001{word-spacing:1.508652px;}
.ws150d_c00001{word-spacing:1.509012px;}
.ws6e6_c00001{word-spacing:1.512000px;}
.ws155e_c00001{word-spacing:1.515024px;}
.ws122a_c00001{word-spacing:1.515240px;}
.wsa1b_c00001{word-spacing:1.519200px;}
.ws61d_c00001{word-spacing:1.521036px;}
.ws1291_c00001{word-spacing:1.521828px;}
.ws7a6_c00001{word-spacing:1.527048px;}
.ws142_c00001{word-spacing:1.533060px;}
.ws1456_c00001{word-spacing:1.539072px;}
.ws8a4_c00001{word-spacing:1.540800px;}
.ws149a_c00001{word-spacing:1.545084px;}
.ws9a7_c00001{word-spacing:1.551096px;}
.ws152a_c00001{word-spacing:1.557108px;}
.wsc55_c00001{word-spacing:1.562400px;}
.wsca1_c00001{word-spacing:1.563120px;}
.ws76a_c00001{word-spacing:1.569132px;}
.ws487_c00001{word-spacing:1.569600px;}
.ws7a7_c00001{word-spacing:1.575144px;}
.ws1a82_c00001{word-spacing:1.576800px;}
.ws16a4_c00001{word-spacing:1.581156px;}
.wsbc3_c00001{word-spacing:1.587168px;}
.wsd06_c00001{word-spacing:1.591200px;}
.ws1734_c00001{word-spacing:1.593180px;}
.ws1a4c_c00001{word-spacing:1.598400px;}
.ws1517_c00001{word-spacing:1.599192px;}
.ws175e_c00001{word-spacing:1.605204px;}
.ws1a0_c00001{word-spacing:1.605600px;}
.ws91b_c00001{word-spacing:1.611216px;}
.ws1ae5_c00001{word-spacing:1.612800px;}
.ws1539_c00001{word-spacing:1.617228px;}
.ws5b2_c00001{word-spacing:1.620000px;}
.ws8ec_c00001{word-spacing:1.623240px;}
.ws449_c00001{word-spacing:1.627200px;}
.ws17f3_c00001{word-spacing:1.629252px;}
.wsdf2_c00001{word-spacing:1.634400px;}
.wsb66_c00001{word-spacing:1.635264px;}
.ws8eb_c00001{word-spacing:1.641276px;}
.wsceb_c00001{word-spacing:1.641600px;}
.ws16bb_c00001{word-spacing:1.647288px;}
.ws32_c00001{word-spacing:1.648800px;}
.ws769_c00001{word-spacing:1.653300px;}
.ws339_c00001{word-spacing:1.656000px;}
.wsaa0_c00001{word-spacing:1.659312px;}
.ws675_c00001{word-spacing:1.663200px;}
.ws1766_c00001{word-spacing:1.665324px;}
.ws408_c00001{word-spacing:1.670400px;}
.wsaa1_c00001{word-spacing:1.671336px;}
.ws1674_c00001{word-spacing:1.677348px;}
.ws583_c00001{word-spacing:1.677600px;}
.ws19d1_c00001{word-spacing:1.683360px;}
.ws31_c00001{word-spacing:1.684800px;}
.ws61b_c00001{word-spacing:1.689372px;}
.ws12f_c00001{word-spacing:1.692000px;}
.ws18fd_c00001{word-spacing:1.695384px;}
.ws674_c00001{word-spacing:1.699200px;}
.ws141_c00001{word-spacing:1.701396px;}
.ws1ef_c00001{word-spacing:1.706400px;}
.wsb49_c00001{word-spacing:1.707408px;}
.ws61a_c00001{word-spacing:1.713420px;}
.ws228_c00001{word-spacing:1.713600px;}
.ws1631_c00001{word-spacing:1.719432px;}
.ws15b_c00001{word-spacing:1.720800px;}
.ws1c_c00001{word-spacing:1.728000px;}
.ws3a0_c00001{word-spacing:1.735200px;}
.ws173f_c00001{word-spacing:1.737468px;}
.ws50_c00001{word-spacing:1.742400px;}
.ws9f_c00001{word-spacing:1.749600px;}
.ws1528_c00001{word-spacing:1.755504px;}
.ws161_c00001{word-spacing:1.756800px;}
.ws338_c00001{word-spacing:1.764000px;}
.ws18a0_c00001{word-spacing:1.767528px;}
.ws1ee_c00001{word-spacing:1.771200px;}
.ws1426_c00001{word-spacing:1.773540px;}
.ws3fa_c00001{word-spacing:1.778400px;}
.ws4df_c00001{word-spacing:1.779552px;}
.ws133f_c00001{word-spacing:1.785348px;}
.ws1fd_c00001{word-spacing:1.785564px;}
.ws6_c00001{word-spacing:1.785600px;}
.wsafe_c00001{word-spacing:1.791576px;}
.ws121f_c00001{word-spacing:1.791936px;}
.ws44a_c00001{word-spacing:1.792800px;}
.ws140_c00001{word-spacing:1.797588px;}
.ws11e9_c00001{word-spacing:1.798524px;}
.ws778_c00001{word-spacing:1.800000px;}
.ws235_c00001{word-spacing:1.803600px;}
.wsfaf_c00001{word-spacing:1.805112px;}
.ws40d_c00001{word-spacing:1.807200px;}
.ws617_c00001{word-spacing:1.809612px;}
.ws133e_c00001{word-spacing:1.811700px;}
.ws7_c00001{word-spacing:1.814400px;}
.ws13f_c00001{word-spacing:1.815624px;}
.ws892_c00001{word-spacing:1.818288px;}
.ws163_c00001{word-spacing:1.821600px;}
.ws948_c00001{word-spacing:1.821636px;}
.wsbf5_c00001{word-spacing:1.824876px;}
.ws2c4_c00001{word-spacing:1.827648px;}
.ws390_c00001{word-spacing:1.828800px;}
.ws893_c00001{word-spacing:1.831464px;}
.ws11a_c00001{word-spacing:1.833660px;}
.wsd05_c00001{word-spacing:1.836000px;}
.ws42c_c00001{word-spacing:1.838052px;}
.ws118_c00001{word-spacing:1.839672px;}
.ws130_c00001{word-spacing:1.843200px;}
.wsfb0_c00001{word-spacing:1.844640px;}
.ws1616_c00001{word-spacing:1.845684px;}
.wsc60_c00001{word-spacing:1.850400px;}
.ws42d_c00001{word-spacing:1.851228px;}
.ws15fb_c00001{word-spacing:1.851696px;}
.ws1665_c00001{word-spacing:1.857708px;}
.wsfae_c00001{word-spacing:1.857816px;}
.ws1545_c00001{word-spacing:1.863720px;}
.wsffe_c00001{word-spacing:1.864404px;}
.wsed9_c00001{word-spacing:1.864800px;}
.ws1610_c00001{word-spacing:1.869732px;}
.wsbf1_c00001{word-spacing:1.870992px;}
.wsdc8_c00001{word-spacing:1.872000px;}
.wsabf_c00001{word-spacing:1.875744px;}
.ws1068_c00001{word-spacing:1.877580px;}
.wse8f_c00001{word-spacing:1.879200px;}
.ws7ab_c00001{word-spacing:1.881756px;}
.ws5cc_c00001{word-spacing:1.882224px;}
.ws113e_c00001{word-spacing:1.884168px;}
.ws763_c00001{word-spacing:1.886400px;}
.ws14c6_c00001{word-spacing:1.887768px;}
.ws229_c00001{word-spacing:1.893600px;}
.wsb21_c00001{word-spacing:1.893780px;}
.wsac0_c00001{word-spacing:1.899792px;}
.ws3e2_c00001{word-spacing:1.900800px;}
.wsaff_c00001{word-spacing:1.905804px;}
.wsb2c_c00001{word-spacing:1.908000px;}
.ws172f_c00001{word-spacing:1.911816px;}
.ws88a_c00001{word-spacing:1.915200px;}
.ws1732_c00001{word-spacing:1.917828px;}
.ws8fd_c00001{word-spacing:1.923840px;}
.wsde6_c00001{word-spacing:1.929600px;}
.ws119_c00001{word-spacing:1.929852px;}
.ws18fc_c00001{word-spacing:1.935864px;}
.ws197_c00001{word-spacing:1.936800px;}
.ws16ff_c00001{word-spacing:1.941876px;}
.ws86e_c00001{word-spacing:1.944000px;}
.wsa40_c00001{word-spacing:1.947888px;}
.ws66_c00001{word-spacing:1.951200px;}
.ws14c9_c00001{word-spacing:1.953900px;}
.ws531_c00001{word-spacing:1.958400px;}
.ws14c3_c00001{word-spacing:1.959912px;}
.ws73d_c00001{word-spacing:1.965600px;}
.ws8fc_c00001{word-spacing:1.965924px;}
.wsb48_c00001{word-spacing:1.971936px;}
.ws2dc_c00001{word-spacing:1.972800px;}
.ws1472_c00001{word-spacing:1.977948px;}
.ws3e3_c00001{word-spacing:1.980000px;}
.ws14cd_c00001{word-spacing:1.983960px;}
.wsdbf_c00001{word-spacing:1.987200px;}
.ws1598_c00001{word-spacing:1.989972px;}
.wsd28_c00001{word-spacing:1.994400px;}
.ws158f_c00001{word-spacing:1.995984px;}
.wsd57_c00001{word-spacing:2.001600px;}
.ws1525_c00001{word-spacing:2.001996px;}
.ws1681_c00001{word-spacing:2.008008px;}
.ws66f_c00001{word-spacing:2.008800px;}
.ws12ee_c00001{word-spacing:2.009340px;}
.ws175a_c00001{word-spacing:2.014020px;}
.ws6bd_c00001{word-spacing:2.016000px;}
.ws174b_c00001{word-spacing:2.020032px;}
.ws2e6_c00001{word-spacing:2.023200px;}
.ws1682_c00001{word-spacing:2.026044px;}
.ws3e1_c00001{word-spacing:2.030400px;}
.ws952_c00001{word-spacing:2.032056px;}
.ws800_c00001{word-spacing:2.037600px;}
.ws178e_c00001{word-spacing:2.038068px;}
.ws1592_c00001{word-spacing:2.044080px;}
.ws4fb_c00001{word-spacing:2.044800px;}
.ws185f_c00001{word-spacing:2.050092px;}
.wsbdd_c00001{word-spacing:2.052000px;}
.ws190d_c00001{word-spacing:2.056104px;}
.ws2e7_c00001{word-spacing:2.059200px;}
.ws4e0_c00001{word-spacing:2.062116px;}
.ws193_c00001{word-spacing:2.066400px;}
.ws18e8_c00001{word-spacing:2.068128px;}
.ws570_c00001{word-spacing:2.073600px;}
.ws17e5_c00001{word-spacing:2.074140px;}
.ws65_c00001{word-spacing:2.080800px;}
.ws52a_c00001{word-spacing:2.088000px;}
.ws81b_c00001{word-spacing:2.095200px;}
.ws4c8_c00001{word-spacing:2.102400px;}
.ws18b0_c00001{word-spacing:2.104200px;}
.ws12ef_c00001{word-spacing:2.108160px;}
.ws6e5_c00001{word-spacing:2.109600px;}
.wsb65_c00001{word-spacing:2.110212px;}
.ws1372_c00001{word-spacing:2.114748px;}
.ws5ff_c00001{word-spacing:2.116800px;}
.ws6f3_c00001{word-spacing:2.122236px;}
.ws73c_c00001{word-spacing:2.124000px;}
.ws195_c00001{word-spacing:2.131200px;}
.wsb0d_c00001{word-spacing:2.134260px;}
.ws132f_c00001{word-spacing:2.134512px;}
.ws3f1_c00001{word-spacing:2.138400px;}
.ws1538_c00001{word-spacing:2.140272px;}
.ws58b_c00001{word-spacing:2.145600px;}
.ws9e8_c00001{word-spacing:2.146284px;}
.ws1387_c00001{word-spacing:2.147688px;}
.wscf0_c00001{word-spacing:2.152296px;}
.ws198_c00001{word-spacing:2.152800px;}
.ws32c_c00001{word-spacing:2.158308px;}
.ws194_c00001{word-spacing:2.160000px;}
.wsaab_c00001{word-spacing:2.160864px;}
.ws7da_c00001{word-spacing:2.164320px;}
.ws532_c00001{word-spacing:2.167200px;}
.ws132e_c00001{word-spacing:2.167452px;}
.ws8b7_c00001{word-spacing:2.170332px;}
.ws130f_c00001{word-spacing:2.174040px;}
.ws196_c00001{word-spacing:2.174400px;}
.ws979_c00001{word-spacing:2.176344px;}
.ws1371_c00001{word-spacing:2.180628px;}
.ws4c7_c00001{word-spacing:2.181600px;}
.ws14ef_c00001{word-spacing:2.182356px;}
.wsbe0_c00001{word-spacing:2.187216px;}
.ws15ce_c00001{word-spacing:2.188368px;}
.ws93c_c00001{word-spacing:2.188800px;}
.ws1140_c00001{word-spacing:2.193804px;}
.ws1521_c00001{word-spacing:2.194380px;}
.ws775_c00001{word-spacing:2.196000px;}
.wsfa7_c00001{word-spacing:2.200392px;}
.ws776_c00001{word-spacing:2.203200px;}
.ws199a_c00001{word-spacing:2.206404px;}
.ws16d_c00001{word-spacing:2.206980px;}
.ws68b_c00001{word-spacing:2.210400px;}
.ws1614_c00001{word-spacing:2.212416px;}
.ws107b_c00001{word-spacing:2.213568px;}
.ws64_c00001{word-spacing:2.217600px;}
.ws156c_c00001{word-spacing:2.218428px;}
.wsab2_c00001{word-spacing:2.220156px;}
.ws1691_c00001{word-spacing:2.224440px;}
.wsdf7_c00001{word-spacing:2.224800px;}
.ws2b9_c00001{word-spacing:2.226744px;}
.ws156d_c00001{word-spacing:2.230452px;}
.wse9b_c00001{word-spacing:2.232000px;}
.wsaaa_c00001{word-spacing:2.233332px;}
.ws1624_c00001{word-spacing:2.236464px;}
.wse41_c00001{word-spacing:2.239200px;}
.wsfa6_c00001{word-spacing:2.239920px;}
.ws1690_c00001{word-spacing:2.242476px;}
.ws113f_c00001{word-spacing:2.246508px;}
.ws6f4_c00001{word-spacing:2.248488px;}
.wsaac_c00001{word-spacing:2.253096px;}
.wsd41_c00001{word-spacing:2.254500px;}
.ws2ec_c00001{word-spacing:2.260512px;}
.wscf_c00001{word-spacing:2.260800px;}
.ws646_c00001{word-spacing:2.266524px;}
.ws383_c00001{word-spacing:2.268000px;}
.ws1489_c00001{word-spacing:2.272536px;}
.ws1ac7_c00001{word-spacing:2.275200px;}
.ws16eb_c00001{word-spacing:2.278548px;}
.wsa86_c00001{word-spacing:2.282400px;}
.ws2eb_c00001{word-spacing:2.284560px;}
.ws1e6_c00001{word-spacing:2.289600px;}
.ws1579_c00001{word-spacing:2.290572px;}
.wsd1d_c00001{word-spacing:2.296584px;}
.ws5be_c00001{word-spacing:2.296800px;}
.ws1615_c00001{word-spacing:2.302596px;}
.wsce_c00001{word-spacing:2.304000px;}
.ws643_c00001{word-spacing:2.308608px;}
.ws9f1_c00001{word-spacing:2.311200px;}
.ws645_c00001{word-spacing:2.314620px;}
.wsb75_c00001{word-spacing:2.318400px;}
.ws1467_c00001{word-spacing:2.320632px;}
.ws72c_c00001{word-spacing:2.325600px;}
.ws1800_c00001{word-spacing:2.326644px;}
.ws11e8_c00001{word-spacing:2.332152px;}
.ws920_c00001{word-spacing:2.332656px;}
.wsa01_c00001{word-spacing:2.332800px;}
.ws644_c00001{word-spacing:2.338668px;}
.wsa4b_c00001{word-spacing:2.340000px;}
.ws9e7_c00001{word-spacing:2.344680px;}
.wsb0f_c00001{word-spacing:2.347200px;}
.ws32b_c00001{word-spacing:2.350692px;}
.ws71e_c00001{word-spacing:2.354400px;}
.ws17f7_c00001{word-spacing:2.356704px;}
.ws789_c00001{word-spacing:2.361600px;}
.ws964_c00001{word-spacing:2.362716px;}
.ws15ad_c00001{word-spacing:2.368728px;}
.ws864_c00001{word-spacing:2.368800px;}
.ws157a_c00001{word-spacing:2.374740px;}
.ws3ab_c00001{word-spacing:2.376000px;}
.ws1fc_c00001{word-spacing:2.380752px;}
.ws74b_c00001{word-spacing:2.383200px;}
.ws15f2_c00001{word-spacing:2.386764px;}
.wsd7_c00001{word-spacing:2.390400px;}
.ws17d6_c00001{word-spacing:2.392776px;}
.ws3fd_c00001{word-spacing:2.397600px;}
.wsa79_c00001{word-spacing:2.398788px;}
.ws826_c00001{word-spacing:2.404800px;}
.ws1768_c00001{word-spacing:2.410812px;}
.ws1e4_c00001{word-spacing:2.412000px;}
.ws1ec_c00001{word-spacing:2.419200px;}
.wsb96_c00001{word-spacing:2.422836px;}
.ws177_c00001{word-spacing:2.426400px;}
.ws16a7_c00001{word-spacing:2.428848px;}
.ws99_c00001{word-spacing:2.433600px;}
.ws1738_c00001{word-spacing:2.434860px;}
.wsd6_c00001{word-spacing:2.440800px;}
.ws17f6_c00001{word-spacing:2.440872px;}
.ws1025_c00001{word-spacing:2.444148px;}
.wsb95_c00001{word-spacing:2.446884px;}
.ws384_c00001{word-spacing:2.448000px;}
.wsb94_c00001{word-spacing:2.452896px;}
.wsf0_c00001{word-spacing:2.455200px;}
.ws139e_c00001{word-spacing:2.457324px;}
.ws178d_c00001{word-spacing:2.458908px;}
.ws3c4_c00001{word-spacing:2.462400px;}
.ws18d5_c00001{word-spacing:2.464920px;}
.ws6f0_c00001{word-spacing:2.469600px;}
.ws57b_c00001{word-spacing:2.470932px;}
.ws34a_c00001{word-spacing:2.476800px;}
.ws11d2_c00001{word-spacing:2.477088px;}
.ws19af_c00001{word-spacing:2.482956px;}
.ws11b6_c00001{word-spacing:2.483676px;}
.ws6b6_c00001{word-spacing:2.484000px;}
.ws15ff_c00001{word-spacing:2.488968px;}
.ws13a3_c00001{word-spacing:2.490264px;}
.ws477_c00001{word-spacing:2.491200px;}
.ws18dc_c00001{word-spacing:2.494980px;}
.ws9a_c00001{word-spacing:2.498400px;}
.ws57c_c00001{word-spacing:2.500992px;}
.ws12de_c00001{word-spacing:2.503440px;}
.ws1e5_c00001{word-spacing:2.505600px;}
.ws965_c00001{word-spacing:2.507004px;}
.ws11cb_c00001{word-spacing:2.510028px;}
.ws7d4_c00001{word-spacing:2.512800px;}
.ws6dc_c00001{word-spacing:2.513016px;}
.ws139f_c00001{word-spacing:2.516616px;}
.ws157d_c00001{word-spacing:2.519028px;}
.ws148_c00001{word-spacing:2.520000px;}
.ws12ec_c00001{word-spacing:2.523204px;}
.ws977_c00001{word-spacing:2.525040px;}
.ws5a4_c00001{word-spacing:2.527200px;}
.ws239_c00001{word-spacing:2.531052px;}
.ws178_c00001{word-spacing:2.534400px;}
.ws16e_c00001{word-spacing:2.536380px;}
.ws8b6_c00001{word-spacing:2.537064px;}
.ws788_c00001{word-spacing:2.541600px;}
.ws11b5_c00001{word-spacing:2.542968px;}
.ws579_c00001{word-spacing:2.543076px;}
.wsd8_c00001{word-spacing:2.548800px;}
.ws6dd_c00001{word-spacing:2.549088px;}
.wsaaf_c00001{word-spacing:2.549556px;}
.ws715_c00001{word-spacing:2.555100px;}
.ws110_c00001{word-spacing:2.556000px;}
.ws10ea_c00001{word-spacing:2.556144px;}
.wsb4d_c00001{word-spacing:2.561112px;}
.wsfa5_c00001{word-spacing:2.562732px;}
.wsc1f_c00001{word-spacing:2.563200px;}
.ws14c0_c00001{word-spacing:2.567124px;}
.ws16f_c00001{word-spacing:2.569320px;}
.wsac9_c00001{word-spacing:2.570400px;}
.ws74f_c00001{word-spacing:2.573136px;}
.ws11b2_c00001{word-spacing:2.575908px;}
.wseb4_c00001{word-spacing:2.577600px;}
.ws17a5_c00001{word-spacing:2.579148px;}
.wsaae_c00001{word-spacing:2.582496px;}
.ws155_c00001{word-spacing:2.584800px;}
.ws976_c00001{word-spacing:2.585160px;}
.ws1024_c00001{word-spacing:2.589084px;}
.ws14c1_c00001{word-spacing:2.591172px;}
.wsd12_c00001{word-spacing:2.592000px;}
.ws1177_c00001{word-spacing:2.595672px;}
.ws765_c00001{word-spacing:2.597184px;}
.wsd37_c00001{word-spacing:2.602224px;}
.ws170_c00001{word-spacing:2.602260px;}
.ws896_c00001{word-spacing:2.603196px;}
.wsdd6_c00001{word-spacing:2.606400px;}
.ws766_c00001{word-spacing:2.609208px;}
.ws14ff_c00001{word-spacing:2.615220px;}
.ws11b4_c00001{word-spacing:2.615436px;}
.ws828_c00001{word-spacing:2.620800px;}
.ws1542_c00001{word-spacing:2.621232px;}
.ws14b4_c00001{word-spacing:2.627244px;}
.wsf3f_c00001{word-spacing:2.628000px;}
.wsaed_c00001{word-spacing:2.633256px;}
.ws1176_c00001{word-spacing:2.635200px;}
.ws15cf_c00001{word-spacing:2.639268px;}
.ws6f1_c00001{word-spacing:2.645280px;}
.ws1556_c00001{word-spacing:2.651292px;}
.ws1a6b_c00001{word-spacing:2.656800px;}
.ws1793_c00001{word-spacing:2.657304px;}
.ws18be_c00001{word-spacing:2.663316px;}
.wsdb2_c00001{word-spacing:2.664000px;}
.ws160b_c00001{word-spacing:2.669328px;}
.wscdf_c00001{word-spacing:2.671200px;}
.ws1920_c00001{word-spacing:2.675340px;}
.wse77_c00001{word-spacing:2.678400px;}
.wsdb3_c00001{word-spacing:2.685600px;}
.ws1543_c00001{word-spacing:2.687364px;}
.ws4a5_c00001{word-spacing:2.692800px;}
.ws2ce_c00001{word-spacing:2.693376px;}
.ws9f8_c00001{word-spacing:2.699388px;}
.ws3e_c00001{word-spacing:2.700000px;}
.wsb4c_c00001{word-spacing:2.705400px;}
.wsa23_c00001{word-spacing:2.707200px;}
.ws17e1_c00001{word-spacing:2.711412px;}
.wsba5_c00001{word-spacing:2.714400px;}
.wsd16_c00001{word-spacing:2.717424px;}
.ws218_c00001{word-spacing:2.721600px;}
.ws15d0_c00001{word-spacing:2.723436px;}
.ws219_c00001{word-spacing:2.728800px;}
.ws74e_c00001{word-spacing:2.729448px;}
.ws6f2_c00001{word-spacing:2.735460px;}
.ws2a8_c00001{word-spacing:2.736000px;}
.wsd17_c00001{word-spacing:2.741472px;}
.ws9c7_c00001{word-spacing:2.743200px;}
.ws16c1_c00001{word-spacing:2.747484px;}
.ws77a_c00001{word-spacing:2.750400px;}
.ws15f6_c00001{word-spacing:2.753496px;}
.ws939_c00001{word-spacing:2.757600px;}
.ws1847_c00001{word-spacing:2.759508px;}
.ws3c7_c00001{word-spacing:2.764800px;}
.ws190f_c00001{word-spacing:2.765520px;}
.ws18f8_c00001{word-spacing:2.771532px;}
.ws68c_c00001{word-spacing:2.772000px;}
.ws1756_c00001{word-spacing:2.777544px;}
.ws40_c00001{word-spacing:2.779200px;}
.ws1841_c00001{word-spacing:2.783556px;}
.wsa4e_c00001{word-spacing:2.786400px;}
.ws1142_c00001{word-spacing:2.786724px;}
.ws1730_c00001{word-spacing:2.789568px;}
.ws12e8_c00001{word-spacing:2.793312px;}
.wscd_c00001{word-spacing:2.793600px;}
.ws591_c00001{word-spacing:2.800800px;}
.ws750_c00001{word-spacing:2.801592px;}
.ws7cc_c00001{word-spacing:2.807604px;}
.wsd36_c00001{word-spacing:2.808000px;}
.ws12f0_c00001{word-spacing:2.813076px;}
.ws609_c00001{word-spacing:2.815200px;}
.wscc_c00001{word-spacing:2.822400px;}
.ws978_c00001{word-spacing:2.825640px;}
.ws217_c00001{word-spacing:2.829600px;}
.ws121b_c00001{word-spacing:2.832840px;}
.ws12c_c00001{word-spacing:2.836800px;}
.ws1898_c00001{word-spacing:2.837664px;}
.ws937_c00001{word-spacing:2.843676px;}
.ws156_c00001{word-spacing:2.844000px;}
.ws1973_c00001{word-spacing:2.849688px;}
.ws6ff_c00001{word-spacing:2.851200px;}
.ws1504_c00001{word-spacing:2.855700px;}
.ws3f_c00001{word-spacing:2.858400px;}
.ws1123_c00001{word-spacing:2.859192px;}
.ws568_c00001{word-spacing:2.861712px;}
.ws71c_c00001{word-spacing:2.865600px;}
.ws430_c00001{word-spacing:2.865780px;}
.ws7cb_c00001{word-spacing:2.867724px;}
.ws1389_c00001{word-spacing:2.872368px;}
.ws593_c00001{word-spacing:2.872800px;}
.ws1602_c00001{word-spacing:2.873736px;}
.ws121a_c00001{word-spacing:2.878956px;}
.ws14b5_c00001{word-spacing:2.879748px;}
.ws592_c00001{word-spacing:2.880000px;}
.ws1330_c00001{word-spacing:2.885544px;}
.ws2ee_c00001{word-spacing:2.885760px;}
.ws6ed_c00001{word-spacing:2.887200px;}
.ws904_c00001{word-spacing:2.891772px;}
.ws1019_c00001{word-spacing:2.892132px;}
.ws957_c00001{word-spacing:2.894400px;}
.ws9a5_c00001{word-spacing:2.897784px;}
.ws108c_c00001{word-spacing:2.898720px;}
.ws1dd_c00001{word-spacing:2.901600px;}
.ws649_c00001{word-spacing:2.903796px;}
.ws101a_c00001{word-spacing:2.905308px;}
.ws2a9_c00001{word-spacing:2.908800px;}
.ws936_c00001{word-spacing:2.909808px;}
.wsc77_c00001{word-spacing:2.911896px;}
.ws14e5_c00001{word-spacing:2.915820px;}
.ws4a4_c00001{word-spacing:2.916000px;}
.wscc3_c00001{word-spacing:2.918484px;}
.ws15d2_c00001{word-spacing:2.921832px;}
.ws1a9a_c00001{word-spacing:2.923200px;}
.ws431_c00001{word-spacing:2.925072px;}
.ws16b5_c00001{word-spacing:2.927844px;}
.ws700_c00001{word-spacing:2.930400px;}
.ws898_c00001{word-spacing:2.931660px;}
.ws15c9_c00001{word-spacing:2.933856px;}
.ws121e_c00001{word-spacing:2.938248px;}
.ws663_c00001{word-spacing:2.939868px;}
.ws2e4_c00001{word-spacing:2.944800px;}
.ws110b_c00001{word-spacing:2.944836px;}
.ws569_c00001{word-spacing:2.945880px;}
.wscc4_c00001{word-spacing:2.951424px;}
.wsc4b_c00001{word-spacing:2.951892px;}
.ws6cf_c00001{word-spacing:2.952000px;}
.ws57a_c00001{word-spacing:2.957904px;}
.ws2b1_c00001{word-spacing:2.958012px;}
.ws1bc_c00001{word-spacing:2.959200px;}
.wsd94_c00001{word-spacing:2.962224px;}
.ws2ed_c00001{word-spacing:2.963916px;}
.ws6d4_c00001{word-spacing:2.969928px;}
.ws1141_c00001{word-spacing:2.971188px;}
.ws5c7_c00001{word-spacing:2.975940px;}
.ws1018_c00001{word-spacing:2.977776px;}
.wsc1e_c00001{word-spacing:2.981952px;}
.ws1092_c00001{word-spacing:2.984364px;}
.ws1672_c00001{word-spacing:2.987964px;}
.ws14ee_c00001{word-spacing:2.993976px;}
.wsd47_c00001{word-spacing:2.999988px;}
.ws897_c00001{word-spacing:3.006000px;}
.wsf3e_c00001{word-spacing:3.009600px;}
.ws1498_c00001{word-spacing:3.012012px;}
.wse49_c00001{word-spacing:3.016800px;}
.ws15db_c00001{word-spacing:3.018024px;}
.ws279_c00001{word-spacing:3.024000px;}
.ws1798_c00001{word-spacing:3.024036px;}
.ws525_c00001{word-spacing:3.030048px;}
.wsbea_c00001{word-spacing:3.031200px;}
.ws18cd_c00001{word-spacing:3.036060px;}
.ws88c_c00001{word-spacing:3.038400px;}
.wsb0b_c00001{word-spacing:3.042072px;}
.ws7f2_c00001{word-spacing:3.045600px;}
.ws648_c00001{word-spacing:3.048084px;}
.ws11b3_c00001{word-spacing:3.050244px;}
.ws84f_c00001{word-spacing:3.052800px;}
.ws5f3_c00001{word-spacing:3.054096px;}
.wse30_c00001{word-spacing:3.060000px;}
.ws149c_c00001{word-spacing:3.060108px;}
.ws172d_c00001{word-spacing:3.066120px;}
.wsea1_c00001{word-spacing:3.067200px;}
.ws524_c00001{word-spacing:3.072132px;}
.ws1cc_c00001{word-spacing:3.074400px;}
.ws5f2_c00001{word-spacing:3.078144px;}
.ws200_c00001{word-spacing:3.081600px;}
.ws5f4_c00001{word-spacing:3.084156px;}
.ws986_c00001{word-spacing:3.088800px;}
.ws17dd_c00001{word-spacing:3.090168px;}
.ws653_c00001{word-spacing:3.096000px;}
.ws2cd_c00001{word-spacing:3.096180px;}
.ws149d_c00001{word-spacing:3.102192px;}
.ws18b_c00001{word-spacing:3.103200px;}
.ws1503_c00001{word-spacing:3.108204px;}
.ws1ff_c00001{word-spacing:3.110400px;}
.ws160d_c00001{word-spacing:3.114216px;}
.wscd3_c00001{word-spacing:3.117600px;}
.wsc1d_c00001{word-spacing:3.120228px;}
.ws3a5_c00001{word-spacing:3.124800px;}
.ws184e_c00001{word-spacing:3.126240px;}
.ws680_c00001{word-spacing:3.132000px;}
.wsd46_c00001{word-spacing:3.132252px;}
.ws143b_c00001{word-spacing:3.138264px;}
.ws6be_c00001{word-spacing:3.139200px;}
.ws13a6_c00001{word-spacing:3.142476px;}
.ws18d_c00001{word-spacing:3.146400px;}
.ws1475_c00001{word-spacing:3.150288px;}
.ws26b_c00001{word-spacing:3.153600px;}
.ws278_c00001{word-spacing:3.160800px;}
.ws19f8_c00001{word-spacing:3.162312px;}
.ws1e3_c00001{word-spacing:3.168000px;}
.ws1952_c00001{word-spacing:3.168324px;}
.ws19f9_c00001{word-spacing:3.174336px;}
.ws2be_c00001{word-spacing:3.175200px;}
.ws661_c00001{word-spacing:3.180348px;}
.ws201_c00001{word-spacing:3.182400px;}
.ws1313_c00001{word-spacing:3.188592px;}
.ws266_c00001{word-spacing:3.189600px;}
.ws1e2_c00001{word-spacing:3.196800px;}
.ws164a_c00001{word-spacing:3.198384px;}
.ws203_c00001{word-spacing:3.204000px;}
.wsd4c_c00001{word-spacing:3.204396px;}
.ws18cb_c00001{word-spacing:3.210408px;}
.ws1cb_c00001{word-spacing:3.211200px;}
.ws1032_c00001{word-spacing:3.214944px;}
.ws907_c00001{word-spacing:3.216420px;}
.ws89_c00001{word-spacing:3.218400px;}
.wsfc4_c00001{word-spacing:3.221532px;}
.wsd45_c00001{word-spacing:3.222432px;}
.ws18c_c00001{word-spacing:3.225600px;}
.ws714_c00001{word-spacing:3.228444px;}
.ws268_c00001{word-spacing:3.232800px;}
.ws1751_c00001{word-spacing:3.234456px;}
.wsfc3_c00001{word-spacing:3.234708px;}
.ws120_c00001{word-spacing:3.240000px;}
.ws14dc_c00001{word-spacing:3.240468px;}
.wsb1_c00001{word-spacing:3.241296px;}
.ws647_c00001{word-spacing:3.246480px;}
.ws6c0_c00001{word-spacing:3.247200px;}
.ws2ae_c00001{word-spacing:3.247884px;}
.ws2d0_c00001{word-spacing:3.252492px;}
.ws1bd_c00001{word-spacing:3.254400px;}
.ws1108_c00001{word-spacing:3.254472px;}
.ws908_c00001{word-spacing:3.258504px;}
.wsb0_c00001{word-spacing:3.261060px;}
.ws202_c00001{word-spacing:3.261600px;}
.ws5c6_c00001{word-spacing:3.264516px;}
.ws1110_c00001{word-spacing:3.267648px;}
.ws6bf_c00001{word-spacing:3.268800px;}
.ws1499_c00001{word-spacing:3.270528px;}
.wsc7a_c00001{word-spacing:3.274236px;}
.ws2bf_c00001{word-spacing:3.276000px;}
.ws1561_c00001{word-spacing:3.276540px;}
.wsc33_c00001{word-spacing:3.280824px;}
.ws660_c00001{word-spacing:3.282552px;}
.wse78_c00001{word-spacing:3.283200px;}
.ws10f5_c00001{word-spacing:3.287412px;}
.ws18b1_c00001{word-spacing:3.288564px;}
.ws1e7_c00001{word-spacing:3.290400px;}
.wsa06_c00001{word-spacing:3.294000px;}
.ws567_c00001{word-spacing:3.294576px;}
.ws886_c00001{word-spacing:3.297600px;}
.ws1224_c00001{word-spacing:3.300588px;}
.ws52f_c00001{word-spacing:3.304800px;}
.ws1666_c00001{word-spacing:3.306600px;}
.ws1121_c00001{word-spacing:3.307176px;}
.ws267_c00001{word-spacing:3.312000px;}
.ws1605_c00001{word-spacing:3.312612px;}
.ws113c_c00001{word-spacing:3.313764px;}
.ws14c4_c00001{word-spacing:3.318624px;}
.ws469_c00001{word-spacing:3.319200px;}
.wsb6d_c00001{word-spacing:3.322224px;}
.ws1609_c00001{word-spacing:3.324636px;}
.wscaf_c00001{word-spacing:3.326940px;}
.ws5c8_c00001{word-spacing:3.330648px;}
.wsd1c_c00001{word-spacing:3.336660px;}
.ws113b_c00001{word-spacing:3.340116px;}
.ws1656_c00001{word-spacing:3.342672px;}
.ws1ab5_c00001{word-spacing:3.348000px;}
.ws172c_c00001{word-spacing:3.348684px;}
.ws662_c00001{word-spacing:3.354696px;}
.wsee5_c00001{word-spacing:3.355200px;}
.ws36f_c00001{word-spacing:3.360708px;}
.ws713_c00001{word-spacing:3.366720px;}
.ws7c0_c00001{word-spacing:3.369600px;}
.ws370_c00001{word-spacing:3.372732px;}
.ws7c9_c00001{word-spacing:3.378744px;}
.ws1441_c00001{word-spacing:3.384756px;}
.wsb22_c00001{word-spacing:3.390768px;}
.ws160a_c00001{word-spacing:3.396780px;}
.ws1ed_c00001{word-spacing:3.398400px;}
.ws18ae_c00001{word-spacing:3.402792px;}
.ws8d7_c00001{word-spacing:3.405600px;}
.ws7c6_c00001{word-spacing:3.408804px;}
.ws90f_c00001{word-spacing:3.412800px;}
.ws65f_c00001{word-spacing:3.414816px;}
.ws876_c00001{word-spacing:3.420000px;}
.ws262_c00001{word-spacing:3.420828px;}
.ws16c7_c00001{word-spacing:3.426840px;}
.ws857_c00001{word-spacing:3.427200px;}
.ws906_c00001{word-spacing:3.432852px;}
.ws99d_c00001{word-spacing:3.434400px;}
.ws621_c00001{word-spacing:3.438864px;}
.wsb89_c00001{word-spacing:3.441600px;}
.ws1562_c00001{word-spacing:3.444876px;}
.ws1e8_c00001{word-spacing:3.448800px;}
.ws1552_c00001{word-spacing:3.450888px;}
.ws19c_c00001{word-spacing:3.456000px;}
.wsd9b_c00001{word-spacing:3.456900px;}
.ws15b5_c00001{word-spacing:3.462912px;}
.ws115_c00001{word-spacing:3.463200px;}
.ws15fe_c00001{word-spacing:3.468924px;}
.wsb1d_c00001{word-spacing:3.470400px;}
.ws16e1_c00001{word-spacing:3.474936px;}
.ws30f_c00001{word-spacing:3.477600px;}
.ws14a1_c00001{word-spacing:3.480948px;}
.ws1d2_c00001{word-spacing:3.484800px;}
.ws1046_c00001{word-spacing:3.485052px;}
.ws1840_c00001{word-spacing:3.486960px;}
.ws44d_c00001{word-spacing:3.492000px;}
.ws192c_c00001{word-spacing:3.492972px;}
.ws15b6_c00001{word-spacing:3.498984px;}
.ws434_c00001{word-spacing:3.499200px;}
.ws9c0_c00001{word-spacing:3.504996px;}
.ws29f_c00001{word-spacing:3.506400px;}
.ws177e_c00001{word-spacing:3.511008px;}
.ws116_c00001{word-spacing:3.513600px;}
.wsc16_c00001{word-spacing:3.517020px;}
.ws19b_c00001{word-spacing:3.520800px;}
.ws2a0_c00001{word-spacing:3.528000px;}
.ws1314_c00001{word-spacing:3.531168px;}
.ws536_c00001{word-spacing:3.535200px;}
.ws1022_c00001{word-spacing:3.537756px;}
.ws511_c00001{word-spacing:3.542400px;}
.ws137f_c00001{word-spacing:3.544344px;}
.ws37b_c00001{word-spacing:3.549600px;}
.ws1080_c00001{word-spacing:3.550932px;}
.ws15dc_c00001{word-spacing:3.553092px;}
.ws117_c00001{word-spacing:3.556800px;}
.ws115e_c00001{word-spacing:3.557520px;}
.ws1649_c00001{word-spacing:3.559104px;}
.ws5b8_c00001{word-spacing:3.564000px;}
.ws18b5_c00001{word-spacing:3.565116px;}
.ws1573_c00001{word-spacing:3.571128px;}
.ws18a_c00001{word-spacing:3.571200px;}
.ws1685_c00001{word-spacing:3.577140px;}
.ws12fc_c00001{word-spacing:3.577284px;}
.ws310_c00001{word-spacing:3.578400px;}
.ws183d_c00001{word-spacing:3.583152px;}
.ws1315_c00001{word-spacing:3.583872px;}
.ws44c_c00001{word-spacing:3.585600px;}
.ws14cc_c00001{word-spacing:3.589164px;}
.ws139d_c00001{word-spacing:3.590460px;}
.ws1d1_c00001{word-spacing:3.592800px;}
.ws156a_c00001{word-spacing:3.595176px;}
.ws11ec_c00001{word-spacing:3.597048px;}
.ws79f_c00001{word-spacing:3.600000px;}
.ws752_c00001{word-spacing:3.601188px;}
.ws1089_c00001{word-spacing:3.603636px;}
.ws540_c00001{word-spacing:3.607200px;}
.ws125d_c00001{word-spacing:3.610224px;}
.ws63c_c00001{word-spacing:3.613212px;}
.ws114_c00001{word-spacing:3.614400px;}
.ws1029_c00001{word-spacing:3.616812px;}
.ws922_c00001{word-spacing:3.619224px;}
.ws1e9_c00001{word-spacing:3.621600px;}
.ws11eb_c00001{word-spacing:3.623400px;}
.ws1512_c00001{word-spacing:3.625236px;}
.ws4b0_c00001{word-spacing:3.628800px;}
.wsb2_c00001{word-spacing:3.629988px;}
.ws1506_c00001{word-spacing:3.631248px;}
.ws19d_c00001{word-spacing:3.636000px;}
.wsc11_c00001{word-spacing:3.636576px;}
.ws173e_c00001{word-spacing:3.637260px;}
.ws2b2_c00001{word-spacing:3.643164px;}
.wsefc_c00001{word-spacing:3.643200px;}
.ws1554_c00001{word-spacing:3.643272px;}
.ws1440_c00001{word-spacing:3.649284px;}
.ws1021_c00001{word-spacing:3.649752px;}
.ws162f_c00001{word-spacing:3.655296px;}
.ws2b6_c00001{word-spacing:3.656340px;}
.wsae8_c00001{word-spacing:3.657600px;}
.wsb23_c00001{word-spacing:3.661308px;}
.ws1174_c00001{word-spacing:3.662928px;}
.ws1a93_c00001{word-spacing:3.664800px;}
.ws14c2_c00001{word-spacing:3.667320px;}
.ws102f_c00001{word-spacing:3.669516px;}
.ws4b1_c00001{word-spacing:3.672000px;}
.ws1617_c00001{word-spacing:3.673332px;}
.wscc2_c00001{word-spacing:3.676104px;}
.ws9ff_c00001{word-spacing:3.679200px;}
.ws14f7_c00001{word-spacing:3.679344px;}
.wsb02_c00001{word-spacing:3.682224px;}
.ws14eb_c00001{word-spacing:3.685356px;}
.ws9d0_c00001{word-spacing:3.691368px;}
.wsb1a_c00001{word-spacing:3.693600px;}
.ws15dd_c00001{word-spacing:3.697380px;}
.ws8b8_c00001{word-spacing:3.703392px;}
.ws1a4f_c00001{word-spacing:3.708000px;}
.ws6d_c00001{word-spacing:3.709404px;}
.ws9cf_c00001{word-spacing:3.715416px;}
.ws15c2_c00001{word-spacing:3.721428px;}
.wsd58_c00001{word-spacing:3.722400px;}
.ws6c_c00001{word-spacing:3.727440px;}
.wsef1_c00001{word-spacing:3.729600px;}
.ws16f4_c00001{word-spacing:3.733452px;}
.ws63b_c00001{word-spacing:3.739464px;}
.ws9a1_c00001{word-spacing:3.745476px;}
.ws8ad_c00001{word-spacing:3.751200px;}
.ws1801_c00001{word-spacing:3.751488px;}
.ws17f4_c00001{word-spacing:3.757500px;}
.wsbff_c00001{word-spacing:3.758400px;}
.ws18a3_c00001{word-spacing:3.763512px;}
.ws40c_c00001{word-spacing:3.765600px;}
.ws18f7_c00001{word-spacing:3.769524px;}
.ws343_c00001{word-spacing:3.772800px;}
.ws1a17_c00001{word-spacing:3.775536px;}
.ws5d3_c00001{word-spacing:3.780000px;}
.ws19f3_c00001{word-spacing:3.781548px;}
.ws91_c00001{word-spacing:3.787200px;}
.ws14ec_c00001{word-spacing:3.787560px;}
.ws17b0_c00001{word-spacing:3.793572px;}
.ws3bb_c00001{word-spacing:3.794400px;}
.ws7c8_c00001{word-spacing:3.799584px;}
.ws689_c00001{word-spacing:3.801600px;}
.ws63a_c00001{word-spacing:3.805596px;}
.ws312_c00001{word-spacing:3.808800px;}
.ws18ec_c00001{word-spacing:3.811608px;}
.ws688_c00001{word-spacing:3.816000px;}
.ws16a1_c00001{word-spacing:3.817620px;}
.ws79b_c00001{word-spacing:3.823200px;}
.ws7c7_c00001{word-spacing:3.823632px;}
.ws1646_c00001{word-spacing:3.829644px;}
.ws22b_c00001{word-spacing:3.830400px;}
.ws1787_c00001{word-spacing:3.835656px;}
.ws879_c00001{word-spacing:3.837600px;}
.ws15c7_c00001{word-spacing:3.841668px;}
.ws8f_c00001{word-spacing:3.844800px;}
.ws18e1_c00001{word-spacing:3.847680px;}
.ws4fa_c00001{word-spacing:3.852000px;}
.ws2d6_c00001{word-spacing:3.859200px;}
.ws17cd_c00001{word-spacing:3.859704px;}
.ws17ed_c00001{word-spacing:3.865716px;}
.ws5d4_c00001{word-spacing:3.866400px;}
.ws1852_c00001{word-spacing:3.871728px;}
.ws4be_c00001{word-spacing:3.873600px;}
.ws108f_c00001{word-spacing:3.873744px;}
.wsb1f_c00001{word-spacing:3.877740px;}
.ws287_c00001{word-spacing:3.880800px;}
.ws18b6_c00001{word-spacing:3.883752px;}
.ws2d7_c00001{word-spacing:3.888000px;}
.ws167b_c00001{word-spacing:3.889764px;}
.ws79e_c00001{word-spacing:3.895200px;}
.wsb20_c00001{word-spacing:3.895776px;}
.ws7d7_c00001{word-spacing:3.902400px;}
.ws1091_c00001{word-spacing:3.906684px;}
.ws166_c00001{word-spacing:3.909600px;}
.ws311_c00001{word-spacing:3.916800px;}
.ws22c_c00001{word-spacing:3.924000px;}
.ws1982_c00001{word-spacing:3.925836px;}
.ws11b1_c00001{word-spacing:3.926448px;}
.ws22d_c00001{word-spacing:3.931200px;}
.ws16e2_c00001{word-spacing:3.931848px;}
.ws1a39_c00001{word-spacing:3.937860px;}
.ws2db_c00001{word-spacing:3.938400px;}
.ws12e0_c00001{word-spacing:3.939624px;}
.ws155f_c00001{word-spacing:3.943872px;}
.ws20f_c00001{word-spacing:3.945600px;}
.ws1187_c00001{word-spacing:3.946212px;}
.ws23c_c00001{word-spacing:3.949884px;}
.ws90_c00001{word-spacing:3.952800px;}
.ws618_c00001{word-spacing:3.955896px;}
.ws103e_c00001{word-spacing:3.959388px;}
.ws20e_c00001{word-spacing:3.960000px;}
.ws65d_c00001{word-spacing:3.961908px;}
.ws131a_c00001{word-spacing:3.965976px;}
.wsad_c00001{word-spacing:3.967200px;}
.ws298_c00001{word-spacing:3.967920px;}
.wsffd_c00001{word-spacing:3.972564px;}
.ws527_c00001{word-spacing:3.973932px;}
.wsc57_c00001{word-spacing:3.974400px;}
.ws12df_c00001{word-spacing:3.979152px;}
.ws679_c00001{word-spacing:3.979944px;}
.ws342_c00001{word-spacing:3.981600px;}
.ws152f_c00001{word-spacing:3.985956px;}
.ws1400_c00001{word-spacing:3.988224px;}
.wsa5f_c00001{word-spacing:3.988800px;}
.ws166e_c00001{word-spacing:3.991968px;}
.ws12e3_c00001{word-spacing:3.992328px;}
.wsc88_c00001{word-spacing:3.996000px;}
.ws154b_c00001{word-spacing:3.997980px;}
.wsa99_c00001{word-spacing:3.998916px;}
.ws6c1_c00001{word-spacing:4.003200px;}
.ws1648_c00001{word-spacing:4.003992px;}
.wsffc_c00001{word-spacing:4.005504px;}
.ws963_c00001{word-spacing:4.010004px;}
.wse4d_c00001{word-spacing:4.010400px;}
.ws921_c00001{word-spacing:4.016016px;}
.wsbf4_c00001{word-spacing:4.018680px;}
.ws19eb_c00001{word-spacing:4.022028px;}
.wsc97_c00001{word-spacing:4.025268px;}
.ws1951_c00001{word-spacing:4.028040px;}
.ws6c3_c00001{word-spacing:4.032000px;}
.ws1901_c00001{word-spacing:4.034052px;}
.ws1319_c00001{word-spacing:4.038444px;}
.ws8a6_c00001{word-spacing:4.039200px;}
.wsd9d_c00001{word-spacing:4.040064px;}
.ws528_c00001{word-spacing:4.042224px;}
.ws108e_c00001{word-spacing:4.045032px;}
.wsc5b_c00001{word-spacing:4.046076px;}
.wsa1_c00001{word-spacing:4.046400px;}
.ws14ab_c00001{word-spacing:4.052088px;}
.ws1555_c00001{word-spacing:4.058100px;}
.ws125c_c00001{word-spacing:4.058208px;}
.ws1a87_c00001{word-spacing:4.060800px;}
.ws155b_c00001{word-spacing:4.064112px;}
.wsb47_c00001{word-spacing:4.068000px;}
.ws1620_c00001{word-spacing:4.070124px;}
.wsd9f_c00001{word-spacing:4.076136px;}
.ws8b4_c00001{word-spacing:4.082148px;}
.ws1630_c00001{word-spacing:4.088160px;}
.wsa70_c00001{word-spacing:4.089600px;}
.ws678_c00001{word-spacing:4.094172px;}
.ws780_c00001{word-spacing:4.096800px;}
.wsc14_c00001{word-spacing:4.100184px;}
.ws6c2_c00001{word-spacing:4.104000px;}
.ws142c_c00001{word-spacing:4.106196px;}
.ws149b_c00001{word-spacing:4.112208px;}
.wsc15_c00001{word-spacing:4.118220px;}
.ws16ca_c00001{word-spacing:4.124232px;}
.ws137_c00001{word-spacing:4.125600px;}
.ws1902_c00001{word-spacing:4.130244px;}
.ws407_c00001{word-spacing:4.132800px;}
.ws1415_c00001{word-spacing:4.136256px;}
.ws167_c00001{word-spacing:4.140000px;}
.ws360_c00001{word-spacing:4.142268px;}
.ws62c_c00001{word-spacing:4.147200px;}
.ws162e_c00001{word-spacing:4.148280px;}
.ws144f_c00001{word-spacing:4.154292px;}
.wsd9e_c00001{word-spacing:4.160304px;}
.wsb3a_c00001{word-spacing:4.161600px;}
.ws1432_c00001{word-spacing:4.166316px;}
.ws52b_c00001{word-spacing:4.168800px;}
.ws16fd_c00001{word-spacing:4.172328px;}
.ws405_c00001{word-spacing:4.176000px;}
.ws299_c00001{word-spacing:4.178340px;}
.wsae2_c00001{word-spacing:4.183200px;}
.ws14de_c00001{word-spacing:4.184352px;}
.ws361_c00001{word-spacing:4.190364px;}
.wsa2_c00001{word-spacing:4.190400px;}
.ws438_c00001{word-spacing:4.197600px;}
.ws1903_c00001{word-spacing:4.202388px;}
.ws488_c00001{word-spacing:4.204800px;}
.ws1789_c00001{word-spacing:4.208400px;}
.ws348_c00001{word-spacing:4.212000px;}
.ws14df_c00001{word-spacing:4.214412px;}
.ws637_c00001{word-spacing:4.219200px;}
.ws1826_c00001{word-spacing:4.220424px;}
.ws78d_c00001{word-spacing:4.226400px;}
.ws14d6_c00001{word-spacing:4.226436px;}
.ws3fb_c00001{word-spacing:4.233600px;}
.ws452_c00001{word-spacing:4.240800px;}
.ws406_c00001{word-spacing:4.248000px;}
.ws3fc_c00001{word-spacing:4.255200px;}
.ws18e7_c00001{word-spacing:4.256496px;}
.ws437_c00001{word-spacing:4.262400px;}
.wsc98_c00001{word-spacing:4.262436px;}
.wsc37_c00001{word-spacing:4.268520px;}
.ws347_c00001{word-spacing:4.269600px;}
.ws1a1f_c00001{word-spacing:4.274532px;}
.ws3b7_c00001{word-spacing:4.276800px;}
.ws377_c00001{word-spacing:4.284000px;}
.ws1761_c00001{word-spacing:4.286556px;}
.ws11a2_c00001{word-spacing:4.288788px;}
.ws270_c00001{word-spacing:4.291200px;}
.ws1929_c00001{word-spacing:4.292568px;}
.wsa3_c00001{word-spacing:4.298400px;}
.ws148f_c00001{word-spacing:4.298580px;}
.ws1175_c00001{word-spacing:4.301964px;}
.ws1877_c00001{word-spacing:4.304592px;}
.ws658_c00001{word-spacing:4.305600px;}
.ws1157_c00001{word-spacing:4.308552px;}
.ws1797_c00001{word-spacing:4.310604px;}
.ws21b_c00001{word-spacing:4.312800px;}
.ws1197_c00001{word-spacing:4.315140px;}
.ws2c0_c00001{word-spacing:4.316616px;}
.ws382_c00001{word-spacing:4.320000px;}
.ws10ae_c00001{word-spacing:4.321728px;}
.ws144e_c00001{word-spacing:4.322628px;}
.ws7ee_c00001{word-spacing:4.327200px;}
.wsf91_c00001{word-spacing:4.328316px;}
.wsc36_c00001{word-spacing:4.328640px;}
.ws8f7_c00001{word-spacing:4.334400px;}
.ws8dd_c00001{word-spacing:4.334652px;}
.ws42b_c00001{word-spacing:4.334904px;}
.ws15cd_c00001{word-spacing:4.340664px;}
.wsf90_c00001{word-spacing:4.341492px;}
.wsb1e_c00001{word-spacing:4.341600px;}
.ws1490_c00001{word-spacing:4.346676px;}
.ws10af_c00001{word-spacing:4.348080px;}
.ws451_c00001{word-spacing:4.348800px;}
.ws1781_c00001{word-spacing:4.352688px;}
.ws42a_c00001{word-spacing:4.354668px;}
.ws518_c00001{word-spacing:4.356000px;}
.ws158c_c00001{word-spacing:4.358700px;}
.ws102b_c00001{word-spacing:4.361256px;}
.ws983_c00001{word-spacing:4.363200px;}
.ws923_c00001{word-spacing:4.364712px;}
.ws1228_c00001{word-spacing:4.367844px;}
.ws349_c00001{word-spacing:4.370400px;}
.ws1623_c00001{word-spacing:4.370724px;}
.ws116a_c00001{word-spacing:4.374432px;}
.ws142d_c00001{word-spacing:4.376736px;}
.ws271_c00001{word-spacing:4.377600px;}
.ws1072_c00001{word-spacing:4.381020px;}
.ws36b_c00001{word-spacing:4.382748px;}
.ws967_c00001{word-spacing:4.387608px;}
.ws1776_c00001{word-spacing:4.388760px;}
.wsbfd_c00001{word-spacing:4.392000px;}
.ws891_c00001{word-spacing:4.394196px;}
.ws6a6_c00001{word-spacing:4.394772px;}
.wsce8_c00001{word-spacing:4.400784px;}
.wse34_c00001{word-spacing:4.406400px;}
.ws155d_c00001{word-spacing:4.406796px;}
.wsc02_c00001{word-spacing:4.412808px;}
.wsbec_c00001{word-spacing:4.413600px;}
.ws36a_c00001{word-spacing:4.418820px;}
.wsf4b_c00001{word-spacing:4.420800px;}
.wsc4c_c00001{word-spacing:4.424832px;}
.wsa0c_c00001{word-spacing:4.427136px;}
.wsa17_c00001{word-spacing:4.428000px;}
.ws6a7_c00001{word-spacing:4.430844px;}
.ws1a59_c00001{word-spacing:4.435200px;}
.ws18af_c00001{word-spacing:4.436856px;}
.ws14fc_c00001{word-spacing:4.442868px;}
.ws1071_c00001{word-spacing:4.446900px;}
.ws36c_c00001{word-spacing:4.448880px;}
.ws8cf_c00001{word-spacing:4.449600px;}
.ws15e7_c00001{word-spacing:4.454892px;}
.ws1733_c00001{word-spacing:4.460904px;}
.wsad3_c00001{word-spacing:4.464000px;}
.ws14e8_c00001{word-spacing:4.466916px;}
.ws770_c00001{word-spacing:4.471200px;}
.ws1832_c00001{word-spacing:4.472928px;}
.wse60_c00001{word-spacing:4.478400px;}
.ws1570_c00001{word-spacing:4.484952px;}
.ws57_c00001{word-spacing:4.485600px;}
.ws1510_c00001{word-spacing:4.490964px;}
.wse58_c00001{word-spacing:4.492800px;}
.ws884_c00001{word-spacing:4.496976px;}
.ws69a_c00001{word-spacing:4.500000px;}
.ws1981_c00001{word-spacing:4.502988px;}
.wse9c_c00001{word-spacing:4.507200px;}
.ws1668_c00001{word-spacing:4.509000px;}
.wsa8a_c00001{word-spacing:4.514400px;}
.ws883_c00001{word-spacing:4.515012px;}
.ws14ca_c00001{word-spacing:4.521024px;}
.ws2e3_c00001{word-spacing:4.521600px;}
.ws184d_c00001{word-spacing:4.527036px;}
.ws58d_c00001{word-spacing:4.528800px;}
.wsd30_c00001{word-spacing:4.533048px;}
.wsc2c_c00001{word-spacing:4.536000px;}
.ws1516_c00001{word-spacing:4.539060px;}
.ws168_c00001{word-spacing:4.543200px;}
.ws1515_c00001{word-spacing:4.545072px;}
.ws39a_c00001{word-spacing:4.550400px;}
.wsd2f_c00001{word-spacing:4.551084px;}
.ws146d_c00001{word-spacing:4.557096px;}
.ws9ae_c00001{word-spacing:4.557600px;}
.ws1871_c00001{word-spacing:4.563108px;}
.ws87c_c00001{word-spacing:4.564800px;}
.ws11ee_c00001{word-spacing:4.565484px;}
.ws1679_c00001{word-spacing:4.569120px;}
.ws10_c00001{word-spacing:4.572000px;}
.ws144c_c00001{word-spacing:4.575132px;}
.wse_c00001{word-spacing:4.579200px;}
.ws17c8_c00001{word-spacing:4.581144px;}
.wsa9_c00001{word-spacing:4.586400px;}
.ws7c4_c00001{word-spacing:4.593600px;}
.ws18bd_c00001{word-spacing:4.599180px;}
.ws392_c00001{word-spacing:4.600800px;}
.ws11_c00001{word-spacing:4.608000px;}
.ws341_c00001{word-spacing:4.615200px;}
.ws16ce_c00001{word-spacing:4.617216px;}
.ws1a6_c00001{word-spacing:4.622400px;}
.wsc80_c00001{word-spacing:4.623228px;}
.wsfbc_c00001{word-spacing:4.624776px;}
.ws139_c00001{word-spacing:4.629600px;}
.ws1023_c00001{word-spacing:4.631364px;}
.ws5dd_c00001{word-spacing:4.636800px;}
.ws116c_c00001{word-spacing:4.637952px;}
.ws15b1_c00001{word-spacing:4.641264px;}
.ws550_c00001{word-spacing:4.644000px;}
.ws18bb_c00001{word-spacing:4.647276px;}
.ws1341_c00001{word-spacing:4.651128px;}
.ws56_c00001{word-spacing:4.651200px;}
.ws15e3_c00001{word-spacing:4.653288px;}
.ws1380_c00001{word-spacing:4.657716px;}
.ws393_c00001{word-spacing:4.658400px;}
.ws1492_c00001{word-spacing:4.659300px;}
.wsfde_c00001{word-spacing:4.664304px;}
.ws2f2_c00001{word-spacing:4.665312px;}
.ws84_c00001{word-spacing:4.665600px;}
.ws1077_c00001{word-spacing:4.670892px;}
.wsc7f_c00001{word-spacing:4.671324px;}
.ws13a_c00001{word-spacing:4.672800px;}
.wsb0e_c00001{word-spacing:4.677336px;}
.ws112e_c00001{word-spacing:4.677480px;}
.ws102_c00001{word-spacing:4.680000px;}
.ws1536_c00001{word-spacing:4.683348px;}
.wsfd0_c00001{word-spacing:4.684068px;}
.ws39f_c00001{word-spacing:4.687200px;}
.ws1476_c00001{word-spacing:4.689360px;}
.ws100b_c00001{word-spacing:4.690656px;}
.wsaa_c00001{word-spacing:4.694400px;}
.ws767_c00001{word-spacing:4.695372px;}
.wsfad_c00001{word-spacing:4.697244px;}
.ws1414_c00001{word-spacing:4.701384px;}
.wsaf4_c00001{word-spacing:4.701600px;}
.ws100a_c00001{word-spacing:4.703832px;}
.wsb8_c00001{word-spacing:4.707396px;}
.wsa8_c00001{word-spacing:4.708800px;}
.wsfd1_c00001{word-spacing:4.710420px;}
.ws151e_c00001{word-spacing:4.713408px;}
.ws861_c00001{word-spacing:4.716000px;}
.ws1147_c00001{word-spacing:4.717008px;}
.ws197d_c00001{word-spacing:4.719420px;}
.ws101_c00001{word-spacing:4.723200px;}
.wsbe2_c00001{word-spacing:4.723596px;}
.ws165e_c00001{word-spacing:4.725432px;}
.wsbe3_c00001{word-spacing:4.730184px;}
.ws86_c00001{word-spacing:4.730400px;}
.ws16d0_c00001{word-spacing:4.731444px;}
.ws899_c00001{word-spacing:4.736772px;}
.wse33_c00001{word-spacing:4.737600px;}
.wsfdd_c00001{word-spacing:4.743360px;}
.ws177c_c00001{word-spacing:4.743468px;}
.ws85_c00001{word-spacing:4.744800px;}
.ws151f_c00001{word-spacing:4.749480px;}
.ws89a_c00001{word-spacing:4.749948px;}
.wsc45_c00001{word-spacing:4.755492px;}
.ws11ed_c00001{word-spacing:4.756536px;}
.ws7ef_c00001{word-spacing:4.759200px;}
.ws1667_c00001{word-spacing:4.761504px;}
.ws12eb_c00001{word-spacing:4.763124px;}
.wsb7_c00001{word-spacing:4.767516px;}
.ws1349_c00001{word-spacing:4.769712px;}
.ws1495_c00001{word-spacing:4.773528px;}
.ws33c_c00001{word-spacing:4.773600px;}
.ws116b_c00001{word-spacing:4.776300px;}
.wsc47_c00001{word-spacing:4.779540px;}
.ws1a8a_c00001{word-spacing:4.780800px;}
.ws65c_c00001{word-spacing:4.785552px;}
.ws94b_c00001{word-spacing:4.791564px;}
.ws16db_c00001{word-spacing:4.797576px;}
.ws65e_c00001{word-spacing:4.803588px;}
.ws3c3_c00001{word-spacing:4.809600px;}
.ws15f7_c00001{word-spacing:4.815612px;}
.ws88f_c00001{word-spacing:4.816800px;}
.ws16d3_c00001{word-spacing:4.821624px;}
.ws143d_c00001{word-spacing:4.827636px;}
.wsd20_c00001{word-spacing:4.831200px;}
.ws16d4_c00001{word-spacing:4.833648px;}
.wsc21_c00001{word-spacing:4.838400px;}
.wsc46_c00001{word-spacing:4.839660px;}
.ws4ae_c00001{word-spacing:4.845600px;}
.ws17b5_c00001{word-spacing:4.845672px;}
.ws179b_c00001{word-spacing:4.851684px;}
.ws813_c00001{word-spacing:4.852800px;}
.ws16fb_c00001{word-spacing:4.857696px;}
.wsafc_c00001{word-spacing:4.860000px;}
.ws17b6_c00001{word-spacing:4.863708px;}
.ws1a81_c00001{word-spacing:4.867200px;}
.ws16e5_c00001{word-spacing:4.869720px;}
.wse24_c00001{word-spacing:4.874400px;}
.ws16fa_c00001{word-spacing:4.875732px;}
.ws499_c00001{word-spacing:4.881600px;}
.ws6a8_c00001{word-spacing:4.881744px;}
.ws1491_c00001{word-spacing:4.887756px;}
.ws5c2_c00001{word-spacing:4.888800px;}
.ws94c_c00001{word-spacing:4.893768px;}
.ws304_c00001{word-spacing:4.896000px;}
.wsc1a_c00001{word-spacing:4.899780px;}
.ws85b_c00001{word-spacing:4.903200px;}
.ws1559_c00001{word-spacing:4.905792px;}
.ws448_c00001{word-spacing:4.910400px;}
.ws147f_c00001{word-spacing:4.911804px;}
.ws3c2_c00001{word-spacing:4.917600px;}
.wsc1b_c00001{word-spacing:4.917816px;}
.ws14cb_c00001{word-spacing:4.923828px;}
.ws4af_c00001{word-spacing:4.924800px;}
.ws17d2_c00001{word-spacing:4.929840px;}
.ws4f0_c00001{word-spacing:4.932000px;}
.ws1740_c00001{word-spacing:4.935852px;}
.wsa9e_c00001{word-spacing:4.939200px;}
.ws18bc_c00001{word-spacing:4.941864px;}
.ws5ba_c00001{word-spacing:4.946400px;}
.ws19a_c00001{word-spacing:4.953600px;}
.ws2f1_c00001{word-spacing:4.959900px;}
.ws33a_c00001{word-spacing:4.960800px;}
.ws188f_c00001{word-spacing:4.965912px;}
.ws1352_c00001{word-spacing:4.967352px;}
.ws92a_c00001{word-spacing:4.968000px;}
.ws16cd_c00001{word-spacing:4.971924px;}
.ws12f1_c00001{word-spacing:4.973940px;}
.ws960_c00001{word-spacing:4.975200px;}
.ws15bc_c00001{word-spacing:4.977936px;}
.ws44b_c00001{word-spacing:4.982400px;}
.ws18b3_c00001{word-spacing:4.983948px;}
.ws670_c00001{word-spacing:4.989600px;}
.ws17d3_c00001{word-spacing:4.989960px;}
.ws12db_c00001{word-spacing:4.993704px;}
.ws19bf_c00001{word-spacing:4.995972px;}
.ws207_c00001{word-spacing:4.996800px;}
.ws10ba_c00001{word-spacing:5.000292px;}
.ws16dc_c00001{word-spacing:5.001984px;}
.ws2aa_c00001{word-spacing:5.004000px;}
.ws1398_c00001{word-spacing:5.006880px;}
.ws1670_c00001{word-spacing:5.007996px;}
.ws3ba_c00001{word-spacing:5.011200px;}
.ws1305_c00001{word-spacing:5.013468px;}
.ws150a_c00001{word-spacing:5.014008px;}
.ws447_c00001{word-spacing:5.018400px;}
.ws1635_c00001{word-spacing:5.020020px;}
.ws208_c00001{word-spacing:5.025600px;}
.ws147e_c00001{word-spacing:5.026032px;}
.ws139b_c00001{word-spacing:5.026644px;}
.ws1612_c00001{word-spacing:5.032044px;}
.ws671_c00001{word-spacing:5.032800px;}
.ws12da_c00001{word-spacing:5.033232px;}
.ws15d6_c00001{word-spacing:5.038056px;}
.wsa0b_c00001{word-spacing:5.039820px;}
.ws498_c00001{word-spacing:5.040000px;}
.wsc2a_c00001{word-spacing:5.044068px;}
.ws1050_c00001{word-spacing:5.046408px;}
.ws199_c00001{word-spacing:5.047200px;}
.ws8ff_c00001{word-spacing:5.050080px;}
.ws2b0_c00001{word-spacing:5.052996px;}
.ws3c1_c00001{word-spacing:5.054400px;}
.ws145e_c00001{word-spacing:5.056092px;}
.wsa98_c00001{word-spacing:5.059584px;}
.ws999_c00001{word-spacing:5.061600px;}
.ws154e_c00001{word-spacing:5.062104px;}
.wsab0_c00001{word-spacing:5.066172px;}
.ws1450_c00001{word-spacing:5.068116px;}
.wsc3b_c00001{word-spacing:5.068800px;}
.wsc6f_c00001{word-spacing:5.072760px;}
.ws1496_c00001{word-spacing:5.074128px;}
.ws676_c00001{word-spacing:5.076000px;}
.wsfb4_c00001{word-spacing:5.079348px;}
.ws17f2_c00001{word-spacing:5.080140px;}
.ws497_c00001{word-spacing:5.083200px;}
.ws2af_c00001{word-spacing:5.085936px;}
.ws8fa_c00001{word-spacing:5.090400px;}
.ws16b4_c00001{word-spacing:5.092164px;}
.wsa0a_c00001{word-spacing:5.092524px;}
.ws33b_c00001{word-spacing:5.097600px;}
.ws1803_c00001{word-spacing:5.098176px;}
.wsa97_c00001{word-spacing:5.099112px;}
.ws67_c00001{word-spacing:5.104188px;}
.wsa78_c00001{word-spacing:5.104800px;}
.wscd7_c00001{word-spacing:5.105700px;}
.ws6db_c00001{word-spacing:5.110200px;}
.ws1ae6_c00001{word-spacing:5.112000px;}
.wsab3_c00001{word-spacing:5.112288px;}
.ws1669_c00001{word-spacing:5.116212px;}
.ws139a_c00001{word-spacing:5.118876px;}
.ws14a6_c00001{word-spacing:5.122224px;}
.ws1377_c00001{word-spacing:5.125464px;}
.wse13_c00001{word-spacing:5.126400px;}
.ws15ea_c00001{word-spacing:5.128236px;}
.wsd0d_c00001{word-spacing:5.134248px;}
.ws124e_c00001{word-spacing:5.138640px;}
.ws68_c00001{word-spacing:5.140260px;}
.ws6d9_c00001{word-spacing:5.146272px;}
.ws14a5_c00001{word-spacing:5.152284px;}
.wse66_c00001{word-spacing:5.155200px;}
.ws1662_c00001{word-spacing:5.158296px;}
.ws19d2_c00001{word-spacing:5.162400px;}
.ws1802_c00001{word-spacing:5.164308px;}
.wse9_c00001{word-spacing:5.169600px;}
.ws17c9_c00001{word-spacing:5.170320px;}
.ws1045_c00001{word-spacing:5.171580px;}
.wsc29_c00001{word-spacing:5.176332px;}
.wsf50_c00001{word-spacing:5.176800px;}
.ws17ce_c00001{word-spacing:5.182344px;}
.ws1760_c00001{word-spacing:5.188356px;}
.wse65_c00001{word-spacing:5.191200px;}
.ws199f_c00001{word-spacing:5.194368px;}
.ws13_c00001{word-spacing:5.198400px;}
.wsd0c_c00001{word-spacing:5.200380px;}
.wsbed_c00001{word-spacing:5.205600px;}
.ws1698_c00001{word-spacing:5.206392px;}
.ws17c6_c00001{word-spacing:5.212404px;}
.ws3b6_c00001{word-spacing:5.212800px;}
.ws1248_c00001{word-spacing:5.217696px;}
.ws5f1_c00001{word-spacing:5.218416px;}
.wsacb_c00001{word-spacing:5.220000px;}
.ws1747_c00001{word-spacing:5.224428px;}
.wse8_c00001{word-spacing:5.227200px;}
.ws418_c00001{word-spacing:5.230440px;}
.ws352_c00001{word-spacing:5.234400px;}
.ws174e_c00001{word-spacing:5.236452px;}
.wsc9a_c00001{word-spacing:5.241600px;}
.ws15b2_c00001{word-spacing:5.242464px;}
.ws932_c00001{word-spacing:5.248476px;}
.wsa19_c00001{word-spacing:5.248800px;}
.ws6da_c00001{word-spacing:5.254488px;}
.ws656_c00001{word-spacing:5.256000px;}
.ws16be_c00001{word-spacing:5.260500px;}
.ws353_c00001{word-spacing:5.263200px;}
.ws16cf_c00001{word-spacing:5.266512px;}
.ws12_c00001{word-spacing:5.270400px;}
.ws23b_c00001{word-spacing:5.272524px;}
.ws123_c00001{word-spacing:5.277600px;}
.ws147c_c00001{word-spacing:5.278536px;}
.ws14e4_c00001{word-spacing:5.284548px;}
.ws7f5_c00001{word-spacing:5.284800px;}
.ws14e3_c00001{word-spacing:5.290560px;}
.ws21c_c00001{word-spacing:5.292000px;}
.ws417_c00001{word-spacing:5.296572px;}
.ws82_c00001{word-spacing:5.299200px;}
.ws1998_c00001{word-spacing:5.302584px;}
.ws3ea_c00001{word-spacing:5.306400px;}
.ws401_c00001{word-spacing:5.313600px;}
.ws18e6_c00001{word-spacing:5.314608px;}
.ws295_c00001{word-spacing:5.320800px;}
.ws914_c00001{word-spacing:5.328000px;}
.ws659_c00001{word-spacing:5.335200px;}
.ws517_c00001{word-spacing:5.342400px;}
.ws18ab_c00001{word-spacing:5.344668px;}
.ws1323_c00001{word-spacing:5.349456px;}
.ws296_c00001{word-spacing:5.349600px;}
.ws18e4_c00001{word-spacing:5.350680px;}
.ws1063_c00001{word-spacing:5.356044px;}
.wsdf_c00001{word-spacing:5.356800px;}
.ws1181_c00001{word-spacing:5.362632px;}
.ws191a_c00001{word-spacing:5.362704px;}
.ws63_c00001{word-spacing:5.364000px;}
.ws1634_c00001{word-spacing:5.368716px;}
.ws4c5_c00001{word-spacing:5.371200px;}
.ws75_c00001{word-spacing:5.374728px;}
.ws1103_c00001{word-spacing:5.375808px;}
.ws124_c00001{word-spacing:5.378400px;}
.ws1558_c00001{word-spacing:5.380740px;}
.ws516_c00001{word-spacing:5.385600px;}
.ws147d_c00001{word-spacing:5.386752px;}
.ws117f_c00001{word-spacing:5.388984px;}
.ws17dc_c00001{word-spacing:5.392764px;}
.ws83_c00001{word-spacing:5.392800px;}
.ws1261_c00001{word-spacing:5.395572px;}
.ws15ee_c00001{word-spacing:5.398776px;}
.wse7_c00001{word-spacing:5.400000px;}
.ws1180_c00001{word-spacing:5.402160px;}
.ws1599_c00001{word-spacing:5.404788px;}
.ws529_c00001{word-spacing:5.407200px;}
.ws1062_c00001{word-spacing:5.408748px;}
.wsdd1_c00001{word-spacing:5.410800px;}
.ws7bf_c00001{word-spacing:5.414400px;}
.wsb4_c00001{word-spacing:5.415336px;}
.ws14a9_c00001{word-spacing:5.416812px;}
.ws7f4_c00001{word-spacing:5.421600px;}
.ws12f5_c00001{word-spacing:5.421924px;}
.ws98d_c00001{word-spacing:5.422824px;}
.ws1102_c00001{word-spacing:5.428512px;}
.wsd86_c00001{word-spacing:5.428800px;}
.ws166f_c00001{word-spacing:5.428836px;}
.ws161d_c00001{word-spacing:5.434848px;}
.ws1061_c00001{word-spacing:5.435100px;}
.ws14_c00001{word-spacing:5.436000px;}
.ws190b_c00001{word-spacing:5.440860px;}
.wsa0d_c00001{word-spacing:5.441688px;}
.ws14f4_c00001{word-spacing:5.446872px;}
.wsfac_c00001{word-spacing:5.448276px;}
.wsde_c00001{word-spacing:5.450400px;}
.ws1693_c00001{word-spacing:5.452884px;}
.ws12e5_c00001{word-spacing:5.454864px;}
.ws4c6_c00001{word-spacing:5.457600px;}
.ws14f3_c00001{word-spacing:5.458896px;}
.ws1260_c00001{word-spacing:5.461452px;}
.ws56d_c00001{word-spacing:5.464800px;}
.ws414_c00001{word-spacing:5.464908px;}
.ws118e_c00001{word-spacing:5.468040px;}
.ws151d_c00001{word-spacing:5.470920px;}
.ws10a9_c00001{word-spacing:5.474628px;}
.ws151c_c00001{word-spacing:5.476932px;}
.ws19d3_c00001{word-spacing:5.479200px;}
.ws1373_c00001{word-spacing:5.481216px;}
.ws1424_c00001{word-spacing:5.482944px;}
.ws413_c00001{word-spacing:5.488956px;}
.ws1a8c_c00001{word-spacing:5.493600px;}
.ws13a5_c00001{word-spacing:5.494392px;}
.ws16ec_c00001{word-spacing:5.494968px;}
.ws1abb_c00001{word-spacing:5.500800px;}
.ws14e2_c00001{word-spacing:5.500980px;}
.ws1557_c00001{word-spacing:5.506992px;}
.ws1aa6_c00001{word-spacing:5.508000px;}
.ws1876_c00001{word-spacing:5.513004px;}
.ws64a_c00001{word-spacing:5.519016px;}
.ws1425_c00001{word-spacing:5.525028px;}
.wsebc_c00001{word-spacing:5.529600px;}
.ws1677_c00001{word-spacing:5.531040px;}
.wsd21_c00001{word-spacing:5.536800px;}
.ws167e_c00001{word-spacing:5.537052px;}
.ws1451_c00001{word-spacing:5.543064px;}
.ws748_c00001{word-spacing:5.544000px;}
.ws18e5_c00001{word-spacing:5.555088px;}
.wsa34_c00001{word-spacing:5.558400px;}
.ws16a5_c00001{word-spacing:5.561100px;}
.ws17cb_c00001{word-spacing:5.567112px;}
.ws3a2_c00001{word-spacing:5.572800px;}
.ws16b3_c00001{word-spacing:5.573124px;}
.wsdc2_c00001{word-spacing:5.579136px;}
.ws1a5c_c00001{word-spacing:5.580000px;}
.ws5f0_c00001{word-spacing:5.585148px;}
.ws6d0_c00001{word-spacing:5.587200px;}
.ws900_c00001{word-spacing:5.591160px;}
.ws70c_c00001{word-spacing:5.594400px;}
.ws1480_c00001{word-spacing:5.597172px;}
.ws81f_c00001{word-spacing:5.601600px;}
.ws7a4_c00001{word-spacing:5.603184px;}
.ws5fe_c00001{word-spacing:5.608800px;}
.ws14aa_c00001{word-spacing:5.609196px;}
.wsdc1_c00001{word-spacing:5.615208px;}
.ws2bd_c00001{word-spacing:5.616000px;}
.ws17f1_c00001{word-spacing:5.621220px;}
.ws3f5_c00001{word-spacing:5.623200px;}
.ws7a5_c00001{word-spacing:5.627232px;}
.ws4c_c00001{word-spacing:5.630400px;}
.ws1514_c00001{word-spacing:5.633244px;}
.ws3a3_c00001{word-spacing:5.637600px;}
.ws18a9_c00001{word-spacing:5.639256px;}
.ws6e8_c00001{word-spacing:5.644800px;}
.ws18aa_c00001{word-spacing:5.645268px;}
.ws18e2_c00001{word-spacing:5.651280px;}
.ws802_c00001{word-spacing:5.652000px;}
.ws1513_c00001{word-spacing:5.657292px;}
.ws4d_c00001{word-spacing:5.659200px;}
.ws8fe_c00001{word-spacing:5.663304px;}
.ws27d_c00001{word-spacing:5.666400px;}
.ws74_c00001{word-spacing:5.669316px;}
.ws3d_c00001{word-spacing:5.673600px;}
.ws1916_c00001{word-spacing:5.675328px;}
.ws3f4_c00001{word-spacing:5.680800px;}
.ws1825_c00001{word-spacing:5.687352px;}
.ws6e7_c00001{word-spacing:5.688000px;}
.ws51d_c00001{word-spacing:5.695200px;}
.ws38c_c00001{word-spacing:5.702400px;}
.ws1300_c00001{word-spacing:5.705208px;}
.ws333_c00001{word-spacing:5.709600px;}
.ws19cc_c00001{word-spacing:5.711400px;}
.ws1301_c00001{word-spacing:5.711796px;}
.ws3c9_c00001{word-spacing:5.716800px;}
.ws1878_c00001{word-spacing:5.723424px;}
.ws38b_c00001{word-spacing:5.724000px;}
.ws19cb_c00001{word-spacing:5.729436px;}
.ws6d1_c00001{word-spacing:5.731200px;}
.ws2bc_c00001{word-spacing:5.738400px;}
.ws1827_c00001{word-spacing:5.741460px;}
.ws10b8_c00001{word-spacing:5.744736px;}
.ws51c_c00001{word-spacing:5.745600px;}
.ws1711_c00001{word-spacing:5.747472px;}
.ws10b9_c00001{word-spacing:5.751324px;}
.ws3bf_c00001{word-spacing:5.752800px;}
.ws154d_c00001{word-spacing:5.753484px;}
.wsbb1_c00001{word-spacing:5.757912px;}
.ws146f_c00001{word-spacing:5.759496px;}
.ws3a4_c00001{word-spacing:5.760000px;}
.ws11df_c00001{word-spacing:5.764500px;}
.ws151a_c00001{word-spacing:5.765508px;}
.wsa93_c00001{word-spacing:5.767200px;}
.ws102a_c00001{word-spacing:5.771088px;}
.ws1459_c00001{word-spacing:5.771520px;}
.ws87f_c00001{word-spacing:5.774400px;}
.ws4de_c00001{word-spacing:5.777532px;}
.ws110c_c00001{word-spacing:5.777676px;}
.ws27e_c00001{word-spacing:5.781600px;}
.ws1541_c00001{word-spacing:5.783544px;}
.ws10b7_c00001{word-spacing:5.784264px;}
.ws3f6_c00001{word-spacing:5.788800px;}
.ws1484_c00001{word-spacing:5.789556px;}
.ws105e_c00001{word-spacing:5.790852px;}
.ws15b3_c00001{word-spacing:5.795568px;}
.wsc75_c00001{word-spacing:5.796000px;}
.ws11e0_c00001{word-spacing:5.797440px;}
.ws188a_c00001{word-spacing:5.801580px;}
.wsa1e_c00001{word-spacing:5.803200px;}
.wsbb0_c00001{word-spacing:5.804028px;}
.ws16bf_c00001{word-spacing:5.807592px;}
.wscd4_c00001{word-spacing:5.810616px;}
.ws19a6_c00001{word-spacing:5.813604px;}
.wse5c_c00001{word-spacing:5.817600px;}
.wscca_c00001{word-spacing:5.819616px;}
.ws1340_c00001{word-spacing:5.823792px;}
.ws933_c00001{word-spacing:5.825628px;}
.ws57e_c00001{word-spacing:5.830380px;}
.ws14e7_c00001{word-spacing:5.831640px;}
.wsf53_c00001{word-spacing:5.832000px;}
.wsfab_c00001{word-spacing:5.836968px;}
.ws1550_c00001{word-spacing:5.837652px;}
.wse27_c00001{word-spacing:5.839200px;}
.ws12ca_c00001{word-spacing:5.843556px;}
.ws14e6_c00001{word-spacing:5.843664px;}
.wsc43_c00001{word-spacing:5.846400px;}
.ws961_c00001{word-spacing:5.849676px;}
.ws1235_c00001{word-spacing:5.850144px;}
.ws4dc_c00001{word-spacing:5.855688px;}
.ws57d_c00001{word-spacing:5.856732px;}
.ws7a8_c00001{word-spacing:5.861700px;}
.ws4dd_c00001{word-spacing:5.867712px;}
.ws1790_c00001{word-spacing:5.873724px;}
.ws165a_c00001{word-spacing:5.879736px;}
.wsedf_c00001{word-spacing:5.882400px;}
.ws1757_c00001{word-spacing:5.885748px;}
.wsad8_c00001{word-spacing:5.889600px;}
.ws15fd_c00001{word-spacing:5.891760px;}
.ws1a8d_c00001{word-spacing:5.896800px;}
.ws1522_c00001{word-spacing:5.897772px;}
.ws43d_c00001{word-spacing:5.904000px;}
.ws151b_c00001{word-spacing:5.909796px;}
.ws6a3_c00001{word-spacing:5.911200px;}
.ws19e9_c00001{word-spacing:5.915808px;}
.ws6a2_c00001{word-spacing:5.918400px;}
.ws1950_c00001{word-spacing:5.921820px;}
.ws196d_c00001{word-spacing:5.925600px;}
.ws14f5_c00001{word-spacing:5.927832px;}
.ws17bd_c00001{word-spacing:5.933844px;}
.ws16d8_c00001{word-spacing:5.939856px;}
.ws1509_c00001{word-spacing:5.945868px;}
.wsaf2_c00001{word-spacing:5.947200px;}
.wsa45_c00001{word-spacing:5.951880px;}
.wsab_c00001{word-spacing:5.954400px;}
.ws1a5a_c00001{word-spacing:5.961600px;}
.ws14f6_c00001{word-spacing:5.963904px;}
.wsaf1_c00001{word-spacing:5.968800px;}
.ws1578_c00001{word-spacing:5.969916px;}
.ws17d8_c00001{word-spacing:5.975928px;}
.ws505_c00001{word-spacing:5.976000px;}
.ws1771_c00001{word-spacing:5.981940px;}
.wsba6_c00001{word-spacing:5.983200px;}
.ws4b3_c00001{word-spacing:5.987952px;}
.wse5_c00001{word-spacing:5.990400px;}
.ws14b9_c00001{word-spacing:5.993964px;}
.ws781_c00001{word-spacing:5.997600px;}
.wsabc_c00001{word-spacing:5.999976px;}
.ws7e3_c00001{word-spacing:6.004800px;}
.ws191d_c00001{word-spacing:6.005988px;}
.ws4a9_c00001{word-spacing:6.012000px;}
.ws1540_c00001{word-spacing:6.018012px;}
.wsbdb_c00001{word-spacing:6.019200px;}
.ws1990_c00001{word-spacing:6.024024px;}
.wse3_c00001{word-spacing:6.026400px;}
.ws1853_c00001{word-spacing:6.030036px;}
.wsac_c00001{word-spacing:6.033600px;}
.ws1726_c00001{word-spacing:6.036048px;}
.ws1df_c00001{word-spacing:6.040800px;}
.ws13b3_c00001{word-spacing:6.041196px;}
.ws1321_c00001{word-spacing:6.047784px;}
.wsed_c00001{word-spacing:6.048000px;}
.ws783_c00001{word-spacing:6.055200px;}
.ws19e5_c00001{word-spacing:6.060096px;}
.ws436_c00001{word-spacing:6.062400px;}
.ws1088_c00001{word-spacing:6.067548px;}
.ws6b2_c00001{word-spacing:6.069600px;}
.ws19e6_c00001{word-spacing:6.072120px;}
.ws3e9_c00001{word-spacing:6.076800px;}
.ws506_c00001{word-spacing:6.084000px;}
.ws17bc_c00001{word-spacing:6.084144px;}
.ws45f_c00001{word-spacing:6.091200px;}
.ws49e_c00001{word-spacing:6.096168px;}
.wsa7_c00001{word-spacing:6.098400px;}
.ws1984_c00001{word-spacing:6.102180px;}
.wsef_c00001{word-spacing:6.105600px;}
.ws1293_c00001{word-spacing:6.107076px;}
.ws17d0_c00001{word-spacing:6.108192px;}
.ws46d_c00001{word-spacing:6.112800px;}
.ws1087_c00001{word-spacing:6.113664px;}
.ws153e_c00001{word-spacing:6.114204px;}
.ws8d3_c00001{word-spacing:6.120000px;}
.ws15e8_c00001{word-spacing:6.120216px;}
.ws1294_c00001{word-spacing:6.120252px;}
.wsd15_c00001{word-spacing:6.126228px;}
.wsfff_c00001{word-spacing:6.126840px;}
.wse4_c00001{word-spacing:6.127200px;}
.ws2c5_c00001{word-spacing:6.132240px;}
.ws1189_c00001{word-spacing:6.133428px;}
.ws55c_c00001{word-spacing:6.134400px;}
.ws4fd_c00001{word-spacing:6.138252px;}
.wsf9a_c00001{word-spacing:6.140016px;}
.ws3e8_c00001{word-spacing:6.141600px;}
.ws16fc_c00001{word-spacing:6.144264px;}
.ws10b2_c00001{word-spacing:6.146604px;}
.ws782_c00001{word-spacing:6.148800px;}
.ws395_c00001{word-spacing:6.150276px;}
.ws1130_c00001{word-spacing:6.153192px;}
.ws870_c00001{word-spacing:6.156000px;}
.ws1863_c00001{word-spacing:6.156288px;}
.wsaf_c00001{word-spacing:6.159780px;}
.ws1493_c00001{word-spacing:6.162300px;}
.ws3b2_c00001{word-spacing:6.163200px;}
.ws1188_c00001{word-spacing:6.166368px;}
.ws198f_c00001{word-spacing:6.168312px;}
.ws825_c00001{word-spacing:6.170400px;}
.ws2b8_c00001{word-spacing:6.172956px;}
.ws1452_c00001{word-spacing:6.174324px;}
.wsee_c00001{word-spacing:6.177600px;}
.wsf9b_c00001{word-spacing:6.179544px;}
.ws18d1_c00001{word-spacing:6.180336px;}
.ws980_c00001{word-spacing:6.184800px;}
.ws522_c00001{word-spacing:6.186348px;}
.wsd79_c00001{word-spacing:6.192000px;}
.ws1815_c00001{word-spacing:6.192360px;}
.wsf99_c00001{word-spacing:6.192720px;}
.ws365_c00001{word-spacing:6.198372px;}
.ws841_c00001{word-spacing:6.199200px;}
.wsfe7_c00001{word-spacing:6.199308px;}
.wsccf_c00001{word-spacing:6.204384px;}
.wsfe8_c00001{word-spacing:6.205896px;}
.ws80b_c00001{word-spacing:6.206400px;}
.ws9e9_c00001{word-spacing:6.210396px;}
.ws1320_c00001{word-spacing:6.212484px;}
.ws19d4_c00001{word-spacing:6.213600px;}
.ws1721_c00001{word-spacing:6.216408px;}
.ws736_c00001{word-spacing:6.220800px;}
.ws145f_c00001{word-spacing:6.222420px;}
.ws8c4_c00001{word-spacing:6.228000px;}
.ws49d_c00001{word-spacing:6.228432px;}
.ws12d5_c00001{word-spacing:6.232248px;}
.ws9ea_c00001{word-spacing:6.234444px;}
.ws16ad_c00001{word-spacing:6.240456px;}
.ws1494_c00001{word-spacing:6.246468px;}
.ws840_c00001{word-spacing:6.249600px;}
.ws7a9_c00001{word-spacing:6.252480px;}
.ws8a1_c00001{word-spacing:6.256800px;}
.ws18ad_c00001{word-spacing:6.258492px;}
.ws850_c00001{word-spacing:6.264000px;}
.ws1574_c00001{word-spacing:6.264504px;}
.ws14fd_c00001{word-spacing:6.270516px;}
.wsa3b_c00001{word-spacing:6.271200px;}
.ws1460_c00001{word-spacing:6.276528px;}
.wsa54_c00001{word-spacing:6.278400px;}
.ws1764_c00001{word-spacing:6.282540px;}
.ws7fb_c00001{word-spacing:6.285600px;}
.ws140f_c00001{word-spacing:6.288552px;}
.ws14f1_c00001{word-spacing:6.294564px;}
.ws7c5_c00001{word-spacing:6.300000px;}
.ws1746_c00001{word-spacing:6.300576px;}
.ws806_c00001{word-spacing:6.307200px;}
.ws49f_c00001{word-spacing:6.312600px;}
.wse3d_c00001{word-spacing:6.314400px;}
.ws807_c00001{word-spacing:6.321600px;}
.ws187f_c00001{word-spacing:6.324624px;}
.ws24b_c00001{word-spacing:6.328800px;}
.ws1a1b_c00001{word-spacing:6.330636px;}
.ws4da_c00001{word-spacing:6.336000px;}
.ws1410_c00001{word-spacing:6.336648px;}
.ws562_c00001{word-spacing:6.342660px;}
.wsab8_c00001{word-spacing:6.343200px;}
.ws1777_c00001{word-spacing:6.348672px;}
.ws96c_c00001{word-spacing:6.350400px;}
.ws394_c00001{word-spacing:6.354684px;}
.ws5bc_c00001{word-spacing:6.357600px;}
.ws16f3_c00001{word-spacing:6.360696px;}
.ws294_c00001{word-spacing:6.364800px;}
.ws15b8_c00001{word-spacing:6.366708px;}
.ws24d_c00001{word-spacing:6.372000px;}
.ws563_c00001{word-spacing:6.372720px;}
.ws12c2_c00001{word-spacing:6.377184px;}
.wsb6c_c00001{word-spacing:6.378732px;}
.ws1c8_c00001{word-spacing:6.379200px;}
.ws2d9_c00001{word-spacing:6.386400px;}
.ws1a3d_c00001{word-spacing:6.390756px;}
.ws280_c00001{word-spacing:6.393600px;}
.ws1905_c00001{word-spacing:6.396768px;}
.ws7f1_c00001{word-spacing:6.400800px;}
.ws19ad_c00001{word-spacing:6.402780px;}
.ws12b6_c00001{word-spacing:6.403536px;}
.ws27f_c00001{word-spacing:6.408000px;}
.ws19ac_c00001{word-spacing:6.408792px;}
.wsb45_c00001{word-spacing:6.415200px;}
.ws1983_c00001{word-spacing:6.420816px;}
.ws83d_c00001{word-spacing:6.422400px;}
.ws133b_c00001{word-spacing:6.423300px;}
.ws281_c00001{word-spacing:6.429600px;}
.wsfb2_c00001{word-spacing:6.429888px;}
.ws8c3_c00001{word-spacing:6.436800px;}
.ws18f1_c00001{word-spacing:6.438852px;}
.ws420_c00001{word-spacing:6.444000px;}
.ws1329_c00001{word-spacing:6.449652px;}
.ws388_c00001{word-spacing:6.451200px;}
.ws14b3_c00001{word-spacing:6.456888px;}
.ws5bb_c00001{word-spacing:6.458400px;}
.ws1974_c00001{word-spacing:6.462900px;}
.ws7fc_c00001{word-spacing:6.465600px;}
.ws4ea_c00001{word-spacing:6.468912px;}
.ws2d8_c00001{word-spacing:6.472800px;}
.ws5f9_c00001{word-spacing:6.474924px;}
.ws1286_c00001{word-spacing:6.476004px;}
.ws389_c00001{word-spacing:6.480000px;}
.ws1520_c00001{word-spacing:6.480936px;}
.ws1167_c00001{word-spacing:6.482592px;}
.ws14e0_c00001{word-spacing:6.486948px;}
.ws3e0_c00001{word-spacing:6.487200px;}
.ws126a_c00001{word-spacing:6.489180px;}
.ws5ca_c00001{word-spacing:6.492960px;}
.ws1c7_c00001{word-spacing:6.494400px;}
.ws1285_c00001{word-spacing:6.495768px;}
.ws14ac_c00001{word-spacing:6.498972px;}
.ws7f0_c00001{word-spacing:6.501600px;}
.ws9ef_c00001{word-spacing:6.502356px;}
.ws8db_c00001{word-spacing:6.504984px;}
.ws7d6_c00001{word-spacing:6.508800px;}
.ws175_c00001{word-spacing:6.508944px;}
.ws1739_c00001{word-spacing:6.510996px;}
.ws11af_c00001{word-spacing:6.515532px;}
.ws93b_c00001{word-spacing:6.516000px;}
.ws1939_c00001{word-spacing:6.517008px;}
.ws10f3_c00001{word-spacing:6.522120px;}
.ws17c0_c00001{word-spacing:6.523020px;}
.ws1a6e_c00001{word-spacing:6.523200px;}
.wsfb1_c00001{word-spacing:6.528708px;}
.ws15e6_c00001{word-spacing:6.529032px;}
.ws24c_c00001{word-spacing:6.530400px;}
.ws157e_c00001{word-spacing:6.535044px;}
.wsfd8_c00001{word-spacing:6.535296px;}
.ws80a_c00001{word-spacing:6.537600px;}
.ws1462_c00001{word-spacing:6.541056px;}
.ws12a9_c00001{word-spacing:6.541884px;}
.wsce9_c00001{word-spacing:6.544800px;}
.ws148a_c00001{word-spacing:6.547068px;}
.ws1166_c00001{word-spacing:6.548472px;}
.ws1461_c00001{word-spacing:6.553080px;}
.ws1647_c00001{word-spacing:6.559092px;}
.ws8a2_c00001{word-spacing:6.559200px;}
.ws11b0_c00001{word-spacing:6.561648px;}
.ws14fe_c00001{word-spacing:6.565104px;}
.wsd77_c00001{word-spacing:6.566400px;}
.ws5c9_c00001{word-spacing:6.571116px;}
.wsf4a_c00001{word-spacing:6.573600px;}
.wsd14_c00001{word-spacing:6.577128px;}
.ws144b_c00001{word-spacing:6.583140px;}
.ws1ad1_c00001{word-spacing:6.588000px;}
.ws1463_c00001{word-spacing:6.589152px;}
.ws69_c00001{word-spacing:6.595164px;}
.ws1ab2_c00001{word-spacing:6.595200px;}
.ws6a_c00001{word-spacing:6.601176px;}
.ws71d_c00001{word-spacing:6.602400px;}
.ws16bc_c00001{word-spacing:6.607188px;}
.ws372_c00001{word-spacing:6.613200px;}
.ws38a_c00001{word-spacing:6.616800px;}
.ws367_c00001{word-spacing:6.619212px;}
.ws1699_c00001{word-spacing:6.625224px;}
.ws44_c00001{word-spacing:6.631200px;}
.ws19c7_c00001{word-spacing:6.637248px;}
.ws16a_c00001{word-spacing:6.638400px;}
.ws8da_c00001{word-spacing:6.643260px;}
.wse9e_c00001{word-spacing:6.652800px;}
.wsad2_c00001{word-spacing:6.655284px;}
.ws7d1_c00001{word-spacing:6.660000px;}
.ws137c_c00001{word-spacing:6.660468px;}
.ws1575_c00001{word-spacing:6.661296px;}
.ws169_c00001{word-spacing:6.667200px;}
.ws1b1_c00001{word-spacing:6.667308px;}
.ws1613_c00001{word-spacing:6.673320px;}
.wsdda_c00001{word-spacing:6.674400px;}
.wsad1_c00001{word-spacing:6.679332px;}
.wsc8_c00001{word-spacing:6.681600px;}
.ws366_c00001{word-spacing:6.685344px;}
.wsa77_c00001{word-spacing:6.688800px;}
.ws5f8_c00001{word-spacing:6.691356px;}
.wsc9_c00001{word-spacing:6.696000px;}
.ws1844_c00001{word-spacing:6.697368px;}
.ws10a8_c00001{word-spacing:6.702012px;}
.ws59_c00001{word-spacing:6.703200px;}
.ws1975_c00001{word-spacing:6.703380px;}
.ws15af_c00001{word-spacing:6.709392px;}
.ws453_c00001{word-spacing:6.710400px;}
.ws15b0_c00001{word-spacing:6.715404px;}
.ws41d_c00001{word-spacing:6.717600px;}
.ws1869_c00001{word-spacing:6.721416px;}
.ws677_c00001{word-spacing:6.724800px;}
.ws371_c00001{word-spacing:6.727428px;}
.wsa5_c00001{word-spacing:6.732000px;}
.ws8dc_c00001{word-spacing:6.733440px;}
.wsd1_c00001{word-spacing:6.739200px;}
.ws1529_c00001{word-spacing:6.739452px;}
.ws15be_c00001{word-spacing:6.745464px;}
.ws2e5_c00001{word-spacing:6.746400px;}
.ws1a3c_c00001{word-spacing:6.751476px;}
.ws58_c00001{word-spacing:6.753600px;}
.wsd0_c00001{word-spacing:6.760800px;}
.ws1985_c00001{word-spacing:6.763500px;}
.ws134e_c00001{word-spacing:6.765876px;}
.ws6b7_c00001{word-spacing:6.768000px;}
.ws107f_c00001{word-spacing:6.772464px;}
.ws9ee_c00001{word-spacing:6.775200px;}
.ws17eb_c00001{word-spacing:6.781536px;}
.ws223_c00001{word-spacing:6.782400px;}
.wsd4a_c00001{word-spacing:6.787548px;}
.ws7e_c00001{word-spacing:6.789600px;}
.ws8e5_c00001{word-spacing:6.793560px;}
.wsc7_c00001{word-spacing:6.796800px;}
.ws817_c00001{word-spacing:6.804000px;}
.wsf78_c00001{word-spacing:6.805404px;}
.ws8e2_c00001{word-spacing:6.805584px;}
.wsdb_c00001{word-spacing:6.811200px;}
.ws168a_c00001{word-spacing:6.811596px;}
.ws11de_c00001{word-spacing:6.811992px;}
.ws155a_c00001{word-spacing:6.817608px;}
.ws45_c00001{word-spacing:6.818400px;}
.ws9fa_c00001{word-spacing:6.823620px;}
.ws1219_c00001{word-spacing:6.825168px;}
.ws7f_c00001{word-spacing:6.825600px;}
.ws15fc_c00001{word-spacing:6.829632px;}
.ws43_c00001{word-spacing:6.832800px;}
.ws1581_c00001{word-spacing:6.835644px;}
.ws1399_c00001{word-spacing:6.838344px;}
.ws4f1_c00001{word-spacing:6.840000px;}
.wsd4b_c00001{word-spacing:6.841656px;}
.ws1013_c00001{word-spacing:6.844932px;}
.wsa6_c00001{word-spacing:6.847200px;}
.ws1b0_c00001{word-spacing:6.847668px;}
.ws1014_c00001{word-spacing:6.851520px;}
.wsaee_c00001{word-spacing:6.853680px;}
.ws440_c00001{word-spacing:6.854400px;}
.ws10b1_c00001{word-spacing:6.858108px;}
.wsd40_c00001{word-spacing:6.859692px;}
.ws46_c00001{word-spacing:6.861600px;}
.ws10c1_c00001{word-spacing:6.864696px;}
.ws145d_c00001{word-spacing:6.865704px;}
.wsb7a_c00001{word-spacing:6.868800px;}
.wsbf3_c00001{word-spacing:6.871284px;}
.ws172a_c00001{word-spacing:6.871716px;}
.ws43f_c00001{word-spacing:6.876000px;}
.ws751_c00001{word-spacing:6.877728px;}
.ws10b0_c00001{word-spacing:6.877872px;}
.ws145c_c00001{word-spacing:6.883740px;}
.ws1012_c00001{word-spacing:6.884460px;}
.wsd88_c00001{word-spacing:6.890400px;}
.ws11dd_c00001{word-spacing:6.891048px;}
.ws322_c00001{word-spacing:6.895764px;}
.ws1a62_c00001{word-spacing:6.897600px;}
.ws1221_c00001{word-spacing:6.897636px;}
.ws18dd_c00001{word-spacing:6.901776px;}
.ws222_c00001{word-spacing:6.904800px;}
.ws182f_c00001{word-spacing:6.907788px;}
.ws1218_c00001{word-spacing:6.910812px;}
.ws17ff_c00001{word-spacing:6.913800px;}
.ws120a_c00001{word-spacing:6.917400px;}
.wsc8d_c00001{word-spacing:6.919200px;}
.ws154f_c00001{word-spacing:6.919812px;}
.ws1220_c00001{word-spacing:6.923988px;}
.ws1629_c00001{word-spacing:6.925824px;}
.ws1a7c_c00001{word-spacing:6.926400px;}
.wsd3f_c00001{word-spacing:6.931836px;}
.ws1b2_c00001{word-spacing:6.937848px;}
.wsd27_c00001{word-spacing:6.940800px;}
.ws1582_c00001{word-spacing:6.943860px;}
.wsd3e_c00001{word-spacing:6.949872px;}
.ws323_c00001{word-spacing:6.955884px;}
.ws16df_c00001{word-spacing:6.961896px;}
.ws1a5e_c00001{word-spacing:6.962400px;}
.ws1650_c00001{word-spacing:6.967908px;}
.ws8ab_c00001{word-spacing:6.969600px;}
.ws18ff_c00001{word-spacing:6.973920px;}
.ws168e_c00001{word-spacing:6.979932px;}
.wse7a_c00001{word-spacing:6.984000px;}
.ws1689_c00001{word-spacing:6.985944px;}
.ws6c6_c00001{word-spacing:6.991200px;}
.ws1850_c00001{word-spacing:6.991956px;}
.ws6c7_c00001{word-spacing:6.998400px;}
.ws167c_c00001{word-spacing:7.003980px;}
.ws996_c00001{word-spacing:7.005600px;}
.ws17a9_c00001{word-spacing:7.009992px;}
.wsc58_c00001{word-spacing:7.012800px;}
.ws1966_c00001{word-spacing:7.016004px;}
.wsb5c_c00001{word-spacing:7.020000px;}
.ws15e0_c00001{word-spacing:7.022016px;}
.ws5a7_c00001{word-spacing:7.027200px;}
.ws1891_c00001{word-spacing:7.028028px;}
.wsbe_c00001{word-spacing:7.034040px;}
.ws31a_c00001{word-spacing:7.034400px;}
.ws1723_c00001{word-spacing:7.040052px;}
.wsf52_c00001{word-spacing:7.041600px;}
.ws161a_c00001{word-spacing:7.046064px;}
.ws46a_c00001{word-spacing:7.048800px;}
.ws1851_c00001{word-spacing:7.052076px;}
.wsd80_c00001{word-spacing:7.056000px;}
.wsccb_c00001{word-spacing:7.058088px;}
.wse7b_c00001{word-spacing:7.063200px;}
.ws192b_c00001{word-spacing:7.064100px;}
.ws182d_c00001{word-spacing:7.070112px;}
.ws64c_c00001{word-spacing:7.070400px;}
.ws156b_c00001{word-spacing:7.076124px;}
.ws3de_c00001{word-spacing:7.077600px;}
.ws182e_c00001{word-spacing:7.082136px;}
.ws31b_c00001{word-spacing:7.084800px;}
.ws1a24_c00001{word-spacing:7.088148px;}
.ws5da_c00001{word-spacing:7.092000px;}
.ws1511_c00001{word-spacing:7.094160px;}
.ws385_c00001{word-spacing:7.099200px;}
.ws1880_c00001{word-spacing:7.100172px;}
.ws17ec_c00001{word-spacing:7.106184px;}
.ws3df_c00001{word-spacing:7.106400px;}
.wsccc_c00001{word-spacing:7.112196px;}
.ws668_c00001{word-spacing:7.113600px;}
.ws1619_c00001{word-spacing:7.118208px;}
.ws586_c00001{word-spacing:7.120800px;}
.ws1678_c00001{word-spacing:7.124220px;}
.ws75b_c00001{word-spacing:7.128000px;}
.ws427_c00001{word-spacing:7.135200px;}
.ws537_c00001{word-spacing:7.142400px;}
.ws41c_c00001{word-spacing:7.149600px;}
.ws386_c00001{word-spacing:7.156800px;}
.wsd48_c00001{word-spacing:7.160292px;}
.ws3db_c00001{word-spacing:7.164000px;}
.ws199b_c00001{word-spacing:7.166304px;}
.ws1256_c00001{word-spacing:7.167744px;}
.ws3da_c00001{word-spacing:7.171200px;}
.ws164d_c00001{word-spacing:7.172316px;}
.wsff9_c00001{word-spacing:7.174332px;}
.ws19f4_c00001{word-spacing:7.178328px;}
.ws319_c00001{word-spacing:7.178400px;}
.wsfef_c00001{word-spacing:7.180920px;}
.ws1618_c00001{word-spacing:7.184340px;}
.ws428_c00001{word-spacing:7.185600px;}
.wsffa_c00001{word-spacing:7.187508px;}
.ws11b_c00001{word-spacing:7.190352px;}
.ws426_c00001{word-spacing:7.192800px;}
.ws12dd_c00001{word-spacing:7.194096px;}
.ws177b_c00001{word-spacing:7.196364px;}
.wsb86_c00001{word-spacing:7.200000px;}
.ws1333_c00001{word-spacing:7.200684px;}
.ws173a_c00001{word-spacing:7.202376px;}
.wsaa7_c00001{word-spacing:7.207200px;}
.wsfd6_c00001{word-spacing:7.207272px;}
.ws1671_c00001{word-spacing:7.208388px;}
.wsfd7_c00001{word-spacing:7.213860px;}
.ws9b5_c00001{word-spacing:7.214400px;}
.ws73_c00001{word-spacing:7.220412px;}
.wsf77_c00001{word-spacing:7.220448px;}
.wscf1_c00001{word-spacing:7.221600px;}
.ws4b9_c00001{word-spacing:7.226424px;}
.wsc10_c00001{word-spacing:7.227036px;}
.wsc3e_c00001{word-spacing:7.228800px;}
.ws178f_c00001{word-spacing:7.232436px;}
.wsb03_c00001{word-spacing:7.233624px;}
.wsd7f_c00001{word-spacing:7.236000px;}
.ws15f4_c00001{word-spacing:7.238448px;}
.wsb7d_c00001{word-spacing:7.240212px;}
.wse8c_c00001{word-spacing:7.243200px;}
.ws1823_c00001{word-spacing:7.244460px;}
.wsfa4_c00001{word-spacing:7.246800px;}
.ws67f_c00001{word-spacing:7.250400px;}
.wsb7c_c00001{word-spacing:7.253388px;}
.ws1918_c00001{word-spacing:7.256484px;}
.ws88e_c00001{word-spacing:7.257600px;}
.ws118d_c00001{word-spacing:7.259976px;}
.ws16aa_c00001{word-spacing:7.262496px;}
.wsfd5_c00001{word-spacing:7.266564px;}
.ws174a_c00001{word-spacing:7.268508px;}
.wsff8_c00001{word-spacing:7.273152px;}
.wscfc_c00001{word-spacing:7.274520px;}
.ws11dc_c00001{word-spacing:7.279740px;}
.ws14d7_c00001{word-spacing:7.280532px;}
.ws1633_c00001{word-spacing:7.286544px;}
.ws1569_c00001{word-spacing:7.292556px;}
.ws10ec_c00001{word-spacing:7.292916px;}
.ws16ab_c00001{word-spacing:7.298568px;}
.ws8e4_c00001{word-spacing:7.304580px;}
.ws82f_c00001{word-spacing:7.308000px;}
.ws4ba_c00001{word-spacing:7.310592px;}
.ws14b1_c00001{word-spacing:7.316604px;}
.wsb7b_c00001{word-spacing:7.322400px;}
.ws14d1_c00001{word-spacing:7.322616px;}
.ws8e3_c00001{word-spacing:7.328628px;}
.ws1abe_c00001{word-spacing:7.329600px;}
.ws181a_c00001{word-spacing:7.334640px;}
.ws15ec_c00001{word-spacing:7.340652px;}
.ws1886_c00001{word-spacing:7.346664px;}
.ws4c1_c00001{word-spacing:7.351200px;}
.ws8e1_c00001{word-spacing:7.352676px;}
.ws7d2_c00001{word-spacing:7.358400px;}
.ws1586_c00001{word-spacing:7.358688px;}
.ws1546_c00001{word-spacing:7.364700px;}
.ws78c_c00001{word-spacing:7.365600px;}
.ws1818_c00001{word-spacing:7.370712px;}
.ws1593_c00001{word-spacing:7.376724px;}
.ws88b_c00001{word-spacing:7.380000px;}
.ws14d8_c00001{word-spacing:7.382736px;}
.ws1a57_c00001{word-spacing:7.387200px;}
.ws185b_c00001{word-spacing:7.388748px;}
.ws68d_c00001{word-spacing:7.394400px;}
.ws1651_c00001{word-spacing:7.394760px;}
.ws16a0_c00001{word-spacing:7.400772px;}
.wsc5c_c00001{word-spacing:7.401600px;}
.ws15f3_c00001{word-spacing:7.406784px;}
.ws58c_c00001{word-spacing:7.408800px;}
.ws146a_c00001{word-spacing:7.412796px;}
.wsae5_c00001{word-spacing:7.416000px;}
.ws1829_c00001{word-spacing:7.418808px;}
.wsaf0_c00001{word-spacing:7.423200px;}
.ws1594_c00001{word-spacing:7.424820px;}
.ws508_c00001{word-spacing:7.430400px;}
.wscfb_c00001{word-spacing:7.436844px;}
.ws9de_c00001{word-spacing:7.437600px;}
.ws15ef_c00001{word-spacing:7.442856px;}
.wsc4d_c00001{word-spacing:7.444800px;}
.ws1855_c00001{word-spacing:7.448868px;}
.ws926_c00001{word-spacing:7.452000px;}
.ws1501_c00001{word-spacing:7.454880px;}
.ws19_c00001{word-spacing:7.459200px;}
.ws15f0_c00001{word-spacing:7.460892px;}
.ws11f7_c00001{word-spacing:7.464204px;}
.ws2e0_c00001{word-spacing:7.466400px;}
.ws1897_c00001{word-spacing:7.466904px;}
.ws14a7_c00001{word-spacing:7.472916px;}
.ws8d6_c00001{word-spacing:7.473600px;}
.wsd49_c00001{word-spacing:7.478928px;}
.ws519_c00001{word-spacing:7.480800px;}
.ws213_c00001{word-spacing:7.488000px;}
.ws132_c00001{word-spacing:7.495200px;}
.ws7f8_c00001{word-spacing:7.502400px;}
.ws2df_c00001{word-spacing:7.509600px;}
.ws1d8_c00001{word-spacing:7.516800px;}
.ws12f2_c00001{word-spacing:7.516908px;}
.ws82e_c00001{word-spacing:7.524000px;}
.ws18_c00001{word-spacing:7.531200px;}
.ws12cf_c00001{word-spacing:7.536672px;}
.ws507_c00001{word-spacing:7.538400px;}
.ws17a3_c00001{word-spacing:7.539048px;}
.ws753_c00001{word-spacing:7.545060px;}
.ws6eb_c00001{word-spacing:7.545600px;}
.ws12d0_c00001{word-spacing:7.549848px;}
.ws14d2_c00001{word-spacing:7.551072px;}
.ws212_c00001{word-spacing:7.552800px;}
.ws1125_c00001{word-spacing:7.556436px;}
.ws14d0_c00001{word-spacing:7.557084px;}
.ws849_c00001{word-spacing:7.560000px;}
.ws597_c00001{word-spacing:7.563096px;}
.ws82d_c00001{word-spacing:7.567200px;}
.wsc1c_c00001{word-spacing:7.569108px;}
.ws1124_c00001{word-spacing:7.569612px;}
.ws4c0_c00001{word-spacing:7.574400px;}
.ws1720_c00001{word-spacing:7.575120px;}
.ws11bd_c00001{word-spacing:7.576200px;}
.ws150c_c00001{word-spacing:7.581132px;}
.ws27a_c00001{word-spacing:7.581600px;}
.ws12ce_c00001{word-spacing:7.582788px;}
.ws1643_c00001{word-spacing:7.587144px;}
.wsad6_c00001{word-spacing:7.588800px;}
.ws119a_c00001{word-spacing:7.589376px;}
.ws1547_c00001{word-spacing:7.593156px;}
.wsa09_c00001{word-spacing:7.595964px;}
.ws4bf_c00001{word-spacing:7.596000px;}
.ws599_c00001{word-spacing:7.599168px;}
.wsede_c00001{word-spacing:7.603200px;}
.ws191f_c00001{word-spacing:7.605180px;}
.wsb70_c00001{word-spacing:7.610400px;}
.ws1814_c00001{word-spacing:7.611192px;}
.ws11bc_c00001{word-spacing:7.615728px;}
.wsbac_c00001{word-spacing:7.617600px;}
.ws12af_c00001{word-spacing:7.622316px;}
.ws1583_c00001{word-spacing:7.623216px;}
.ws10ef_c00001{word-spacing:7.628904px;}
.ws1458_c00001{word-spacing:7.629228px;}
.wse81_c00001{word-spacing:7.632000px;}
.ws1457_c00001{word-spacing:7.635240px;}
.ws1332_c00001{word-spacing:7.635492px;}
.ws575_c00001{word-spacing:7.639200px;}
.ws1731_c00001{word-spacing:7.641252px;}
.ws156f_c00001{word-spacing:7.647264px;}
.wsb63_c00001{word-spacing:7.653276px;}
.ws509_c00001{word-spacing:7.653600px;}
.ws16a6_c00001{word-spacing:7.659288px;}
.wsa5a_c00001{word-spacing:7.665300px;}
.wse1a_c00001{word-spacing:7.668000px;}
.ws596_c00001{word-spacing:7.671312px;}
.wsa59_c00001{word-spacing:7.677324px;}
.wsba4_c00001{word-spacing:7.682400px;}
.ws14f2_c00001{word-spacing:7.683336px;}
.ws1428_c00001{word-spacing:7.689348px;}
.ws1a64_c00001{word-spacing:7.689600px;}
.wscef_c00001{word-spacing:7.696800px;}
.wsad4_c00001{word-spacing:7.704000px;}
.ws176c_c00001{word-spacing:7.707384px;}
.wse6a_c00001{word-spacing:7.711200px;}
.ws777_c00001{word-spacing:7.718400px;}
.ws180c_c00001{word-spacing:7.719408px;}
.ws91e_c00001{word-spacing:7.725420px;}
.wsd87_c00001{word-spacing:7.725600px;}
.ws18cc_c00001{word-spacing:7.731432px;}
.ws815_c00001{word-spacing:7.732800px;}
.ws15eb_c00001{word-spacing:7.737444px;}
.ws17ef_c00001{word-spacing:7.749468px;}
.ws20b_c00001{word-spacing:7.754400px;}
.ws1591_c00001{word-spacing:7.755480px;}
.ws180d_c00001{word-spacing:7.761492px;}
.ws814_c00001{word-spacing:7.761600px;}
.ws19a4_c00001{word-spacing:7.767504px;}
.wsba3_c00001{word-spacing:7.768800px;}
.ws9d8_c00001{word-spacing:7.776000px;}
.ws18b2_c00001{word-spacing:7.779528px;}
.wsd02_c00001{word-spacing:7.783200px;}
.ws180b_c00001{word-spacing:7.785540px;}
.ws577_c00001{word-spacing:7.790400px;}
.ws18d2_c00001{word-spacing:7.797564px;}
.wsd10_c00001{word-spacing:7.797600px;}
.ws194a_c00001{word-spacing:7.803576px;}
.wsc56_c00001{word-spacing:7.804800px;}
.ws946_c00001{word-spacing:7.809588px;}
.wsb5b_c00001{word-spacing:7.812000px;}
.wsb64_c00001{word-spacing:7.815600px;}
.ws51_c00001{word-spacing:7.819200px;}
.ws947_c00001{word-spacing:7.821612px;}
.ws40f_c00001{word-spacing:7.826400px;}
.ws481_c00001{word-spacing:7.833600px;}
.ws598_c00001{word-spacing:7.833636px;}
.ws3a_c00001{word-spacing:7.840800px;}
.wse82_c00001{word-spacing:7.848000px;}
.wsc06_c00001{word-spacing:7.855200px;}
.ws1a_c00001{word-spacing:7.862400px;}
.ws224_c00001{word-spacing:7.869600px;}
.ws91f_c00001{word-spacing:7.869708px;}
.wse2_c00001{word-spacing:7.876800px;}
.ws1345_c00001{word-spacing:7.879248px;}
.ws1d5_c00001{word-spacing:7.884000px;}
.ws35d_c00001{word-spacing:7.887744px;}
.wse1_c00001{word-spacing:7.891200px;}
.ws14e1_c00001{word-spacing:7.893756px;}
.ws482_c00001{word-spacing:7.898400px;}
.ws1882_c00001{word-spacing:7.899768px;}
.ws39_c00001{word-spacing:7.905600px;}
.ws1427_c00001{word-spacing:7.905780px;}
.ws9d2_c00001{word-spacing:7.911792px;}
.wscfa_c00001{word-spacing:7.912800px;}
.ws240_c00001{word-spacing:7.917804px;}
.wsc54_c00001{word-spacing:7.920000px;}
.ws1560_c00001{word-spacing:7.923816px;}
.ws1b_c00001{word-spacing:7.927200px;}
.ws1474_c00001{word-spacing:7.929828px;}
.ws12cd_c00001{word-spacing:7.931952px;}
.ws576_c00001{word-spacing:7.934400px;}
.ws2cf_c00001{word-spacing:7.935840px;}
.ws1a95_c00001{word-spacing:7.941600px;}
.ws4e3_c00001{word-spacing:7.941852px;}
.ws120f_c00001{word-spacing:7.945128px;}
.ws14fa_c00001{word-spacing:7.947864px;}
.ws816_c00001{word-spacing:7.948800px;}
.ws120e_c00001{word-spacing:7.951716px;}
.ws1709_c00001{word-spacing:7.953876px;}
.wsac5_c00001{word-spacing:7.956000px;}
.ws11b7_c00001{word-spacing:7.958304px;}
.ws1893_c00001{word-spacing:7.959888px;}
.ws12f3_c00001{word-spacing:7.964892px;}
.ws3d7_c00001{word-spacing:7.970400px;}
.ws40e_c00001{word-spacing:7.977600px;}
.ws1654_c00001{word-spacing:7.977924px;}
.ws11db_c00001{word-spacing:7.978068px;}
.ws16b8_c00001{word-spacing:7.983936px;}
.wscd6_c00001{word-spacing:7.984656px;}
.wsc2b_c00001{word-spacing:7.984800px;}
.ws14fb_c00001{word-spacing:7.989948px;}
.wsb7e_c00001{word-spacing:7.991244px;}
.ws483_c00001{word-spacing:7.992000px;}
.ws14b0_c00001{word-spacing:7.995960px;}
.wsa82_c00001{word-spacing:7.997832px;}
.ws52_c00001{word-spacing:7.999200px;}
.ws159d_c00001{word-spacing:8.001972px;}
.ws11b8_c00001{word-spacing:8.004420px;}
.ws16b1_c00001{word-spacing:8.007984px;}
.wsae9_c00001{word-spacing:8.013600px;}
.ws159e_c00001{word-spacing:8.013996px;}
.ws4e2_c00001{word-spacing:8.020008px;}
.ws4e4_c00001{word-spacing:8.026020px;}
.wsd2b_c00001{word-spacing:8.032032px;}
.wsed3_c00001{word-spacing:8.035200px;}
.ws1748_c00001{word-spacing:8.038044px;}
.ws1811_c00001{word-spacing:8.044056px;}
.ws180a_c00001{word-spacing:8.050068px;}
.ws159f_c00001{word-spacing:8.062092px;}
.ws484_c00001{word-spacing:8.064000px;}
.ws1753_c00001{word-spacing:8.068104px;}
.ws16a8_c00001{word-spacing:8.074116px;}
.ws91d_c00001{word-spacing:8.080128px;}
.wsa00_c00001{word-spacing:8.085600px;}
.ws1809_c00001{word-spacing:8.086140px;}
.ws15b7_c00001{word-spacing:8.092152px;}
.ws1a68_c00001{word-spacing:8.092800px;}
.ws2f0_c00001{word-spacing:8.098164px;}
.ws196e_c00001{word-spacing:8.100000px;}
.ws16e4_c00001{word-spacing:8.104176px;}
.wse8e_c00001{word-spacing:8.107200px;}
.ws16e0_c00001{word-spacing:8.110188px;}
.wsb38_c00001{word-spacing:8.114400px;}
.ws8b3_c00001{word-spacing:8.116200px;}
.wsb43_c00001{word-spacing:8.121600px;}
.ws171d_c00001{word-spacing:8.122212px;}
.wsdc3_c00001{word-spacing:8.128224px;}
.wsced_c00001{word-spacing:8.128800px;}
.wsd2c_c00001{word-spacing:8.134236px;}
.ws93a_c00001{word-spacing:8.136000px;}
.ws1464_c00001{word-spacing:8.140248px;}
.wsab7_c00001{word-spacing:8.143200px;}
.ws1913_c00001{word-spacing:8.146260px;}
.wsb39_c00001{word-spacing:8.150400px;}
.ws143f_c00001{word-spacing:8.152272px;}
.ws1de_c00001{word-spacing:8.157600px;}
.ws1595_c00001{word-spacing:8.158284px;}
.ws26a_c00001{word-spacing:8.164800px;}
.ws1465_c00001{word-spacing:8.170308px;}
.ws344_c00001{word-spacing:8.172000px;}
.ws5d_c00001{word-spacing:8.179200px;}
.ws17df_c00001{word-spacing:8.182332px;}
.ws969_c00001{word-spacing:8.186400px;}
.ws1791_c00001{word-spacing:8.188344px;}
.ws269_c00001{word-spacing:8.193600px;}
.ws20d_c00001{word-spacing:8.200800px;}
.ws485_c00001{word-spacing:8.208000px;}
.ws53b_c00001{word-spacing:8.215200px;}
.ws15f_c00001{word-spacing:8.222400px;}
.ws7be_c00001{word-spacing:8.229600px;}
.ws2cc_c00001{word-spacing:8.230428px;}
.ws20c_c00001{word-spacing:8.236800px;}
.ws7bd_c00001{word-spacing:8.244000px;}
.ws7dd_c00001{word-spacing:8.251200px;}
.ws5c_c00001{word-spacing:8.258400px;}
.ws19ea_c00001{word-spacing:8.260488px;}
.ws1179_c00001{word-spacing:8.261352px;}
.ws7de_c00001{word-spacing:8.265600px;}
.ws16d7_c00001{word-spacing:8.266500px;}
.ws1653_c00001{word-spacing:8.272512px;}
.ws53c_c00001{word-spacing:8.272800px;}
.ws61e_c00001{word-spacing:8.278524px;}
.ws1e0_c00001{word-spacing:8.280000px;}
.ws11ba_c00001{word-spacing:8.281116px;}
.wsa44_c00001{word-spacing:8.284536px;}
.ws719_c00001{word-spacing:8.287200px;}
.ws1070_c00001{word-spacing:8.287704px;}
.ws35c_c00001{word-spacing:8.290548px;}
.wsfec_c00001{word-spacing:8.294292px;}
.ws160_c00001{word-spacing:8.294400px;}
.wsd3d_c00001{word-spacing:8.296560px;}
.wsbf2_c00001{word-spacing:8.300880px;}
.ws1e1_c00001{word-spacing:8.301600px;}
.ws1507_c00001{word-spacing:8.302572px;}
.ws1178_c00001{word-spacing:8.307468px;}
.wsa2a_c00001{word-spacing:8.308584px;}
.wsd89_c00001{word-spacing:8.308800px;}
.wsfed_c00001{word-spacing:8.314056px;}
.ws187b_c00001{word-spacing:8.314596px;}
.wsa3f_c00001{word-spacing:8.320608px;}
.ws249_c00001{word-spacing:8.320644px;}
.ws972_c00001{word-spacing:8.323200px;}
.ws181e_c00001{word-spacing:8.326620px;}
.ws1047_c00001{word-spacing:8.327232px;}
.ws18b9_c00001{word-spacing:8.332632px;}
.ws106f_c00001{word-spacing:8.333820px;}
.ws718_c00001{word-spacing:8.337600px;}
.ws129b_c00001{word-spacing:8.340408px;}
.ws1639_c00001{word-spacing:8.344656px;}
.ws248_c00001{word-spacing:8.346996px;}
.ws157f_c00001{word-spacing:8.350668px;}
.ws11e7_c00001{word-spacing:8.353584px;}
.ws16b7_c00001{word-spacing:8.356680px;}
.ws199c_c00001{word-spacing:8.359200px;}
.ws2c9_c00001{word-spacing:8.362692px;}
.ws2e1_c00001{word-spacing:8.366400px;}
.ws622_c00001{word-spacing:8.368704px;}
.wsf4d_c00001{word-spacing:8.373600px;}
.ws17d1_c00001{word-spacing:8.374716px;}
.ws153c_c00001{word-spacing:8.380728px;}
.ws1122_c00001{word-spacing:8.386524px;}
.ws163a_c00001{word-spacing:8.386740px;}
.ws181d_c00001{word-spacing:8.392752px;}
.wsf5e_c00001{word-spacing:8.395200px;}
.ws23f_c00001{word-spacing:8.398764px;}
.wsa3e_c00001{word-spacing:8.404776px;}
.ws1a88_c00001{word-spacing:8.409600px;}
.ws175f_c00001{word-spacing:8.410788px;}
.wsaf9_c00001{word-spacing:8.416800px;}
.ws1980_c00001{word-spacing:8.422812px;}
.ws221_c00001{word-spacing:8.424000px;}
.ws2e9_c00001{word-spacing:8.440848px;}
.ws171c_c00001{word-spacing:8.446860px;}
.ws355_c00001{word-spacing:8.452800px;}
.ws149e_c00001{word-spacing:8.452872px;}
.ws180e_c00001{word-spacing:8.458884px;}
.ws4cf_c00001{word-spacing:8.460000px;}
.ws241_c00001{word-spacing:8.464896px;}
.wsc53_c00001{word-spacing:8.467200px;}
.ws1948_c00001{word-spacing:8.470908px;}
.ws72d_c00001{word-spacing:8.474400px;}
.ws1856_c00001{word-spacing:8.476920px;}
.wsee1_c00001{word-spacing:8.481600px;}
.ws2ea_c00001{word-spacing:8.482932px;}
.ws588_c00001{word-spacing:8.488800px;}
.ws1719_c00001{word-spacing:8.488944px;}
.wsaf7_c00001{word-spacing:8.496000px;}
.ws2e2_c00001{word-spacing:8.503200px;}
.ws1621_c00001{word-spacing:8.506980px;}
.ws26f_c00001{word-spacing:8.510400px;}
.wsb93_c00001{word-spacing:8.512992px;}
.ws25c_c00001{word-spacing:8.517600px;}
.wsa6b_c00001{word-spacing:8.519004px;}
.ws3b5_c00001{word-spacing:8.524800px;}
.ws1881_c00001{word-spacing:8.525016px;}
.ws2cb_c00001{word-spacing:8.531028px;}
.ws466_c00001{word-spacing:8.532000px;}
.ws2ef_c00001{word-spacing:8.537040px;}
.wsc71_c00001{word-spacing:8.539200px;}
.ws143e_c00001{word-spacing:8.543052px;}
.ws1db_c00001{word-spacing:8.546400px;}
.wsa30_c00001{word-spacing:8.549064px;}
.ws4ce_c00001{word-spacing:8.553600px;}
.ws130d_c00001{word-spacing:8.557812px;}
.wsa9f_c00001{word-spacing:8.560800px;}
.ws220_c00001{word-spacing:8.568000px;}
.ws742_c00001{word-spacing:8.575200px;}
.ws26e_c00001{word-spacing:8.582400px;}
.ws135a_c00001{word-spacing:8.584164px;}
.ws7d0_c00001{word-spacing:8.589600px;}
.ws1862_c00001{word-spacing:8.591148px;}
.wsc52_c00001{word-spacing:8.596800px;}
.ws18f0_c00001{word-spacing:8.603172px;}
.ws9e_c00001{word-spacing:8.604000px;}
.ws4d3_c00001{word-spacing:8.611200px;}
.ws9e6_c00001{word-spacing:8.615196px;}
.ws33d_c00001{word-spacing:8.618400px;}
.ws17f9_c00001{word-spacing:8.621208px;}
.ws435_c00001{word-spacing:8.625600px;}
.ws19e3_c00001{word-spacing:8.627220px;}
.wsaf3_c00001{word-spacing:8.632800px;}
.ws1565_c00001{word-spacing:8.633232px;}
.ws1205_c00001{word-spacing:8.636868px;}
.ws153f_c00001{word-spacing:8.639244px;}
.ws25b_c00001{word-spacing:8.640000px;}
.ws1107_c00001{word-spacing:8.643456px;}
.ws67a_c00001{word-spacing:8.645256px;}
.wsdf0_c00001{word-spacing:8.647200px;}
.ws10bc_c00001{word-spacing:8.650044px;}
.ws171f_c00001{word-spacing:8.651268px;}
.ws587_c00001{word-spacing:8.654400px;}
.ws116e_c00001{word-spacing:8.656632px;}
.ws2ca_c00001{word-spacing:8.657280px;}
.ws465_c00001{word-spacing:8.661600px;}
.wsa71_c00001{word-spacing:8.663220px;}
.ws17f5_c00001{word-spacing:8.663292px;}
.ws6e9_c00001{word-spacing:8.668800px;}
.ws5f5_c00001{word-spacing:8.669304px;}
.ws10bb_c00001{word-spacing:8.669808px;}
.ws1a3b_c00001{word-spacing:8.675316px;}
.ws851_c00001{word-spacing:8.676000px;}
.ws1106_c00001{word-spacing:8.676396px;}
.ws15de_c00001{word-spacing:8.681328px;}
.ws115a_c00001{word-spacing:8.682984px;}
.ws824_c00001{word-spacing:8.683200px;}
.ws15f8_c00001{word-spacing:8.687340px;}
.ws1202_c00001{word-spacing:8.689572px;}
.wsdb0_c00001{word-spacing:8.690400px;}
.ws15e5_c00001{word-spacing:8.693352px;}
.wsbb3_c00001{word-spacing:8.696160px;}
.ws33e_c00001{word-spacing:8.697600px;}
.ws321_c00001{word-spacing:8.699364px;}
.wsc32_c00001{word-spacing:8.702748px;}
.ws1ab7_c00001{word-spacing:8.704800px;}
.ws15f9_c00001{word-spacing:8.705376px;}
.wsfe3_c00001{word-spacing:8.709336px;}
.ws181f_c00001{word-spacing:8.711388px;}
.ws1359_c00001{word-spacing:8.715924px;}
.ws320_c00001{word-spacing:8.717400px;}
.wsb44_c00001{word-spacing:8.719200px;}
.ws106e_c00001{word-spacing:8.722512px;}
.ws847_c00001{word-spacing:8.722824px;}
.ws15fa_c00001{word-spacing:8.723412px;}
.ws15e4_c00001{word-spacing:8.729424px;}
.ws6ea_c00001{word-spacing:8.733600px;}
.ws15df_c00001{word-spacing:8.735436px;}
.ws1048_c00001{word-spacing:8.735688px;}
.ws1563_c00001{word-spacing:8.741448px;}
.ws9bf_c00001{word-spacing:8.747460px;}
.wsee7_c00001{word-spacing:8.748000px;}
.wsbb4_c00001{word-spacing:8.748864px;}
.ws901_c00001{word-spacing:8.753472px;}
.wsebb_c00001{word-spacing:8.755200px;}
.ws1549_c00001{word-spacing:8.759484px;}
.wsdaf_c00001{word-spacing:8.762400px;}
.ws1715_c00001{word-spacing:8.765496px;}
.ws87b_c00001{word-spacing:8.769600px;}
.ws19a1_c00001{word-spacing:8.771508px;}
.ws1199_c00001{word-spacing:8.775216px;}
.ws672_c00001{word-spacing:8.776800px;}
.ws18d0_c00001{word-spacing:8.777520px;}
.ws1548_c00001{word-spacing:8.783532px;}
.ws83b_c00001{word-spacing:8.784000px;}
.wsed5_c00001{word-spacing:8.798400px;}
.ws673_c00001{word-spacing:8.805600px;}
.ws193a_c00001{word-spacing:8.807580px;}
.wsf0a_c00001{word-spacing:8.812800px;}
.ws23d_c00001{word-spacing:8.813592px;}
.ws15a0_c00001{word-spacing:8.819604px;}
.wsbfc_c00001{word-spacing:8.820000px;}
.ws7fa_c00001{word-spacing:8.827200px;}
.ws18c4_c00001{word-spacing:8.831628px;}
.ws848_c00001{word-spacing:8.834400px;}
.ws17e7_c00001{word-spacing:8.837640px;}
.wsc40_c00001{word-spacing:8.841600px;}
.ws171e_c00001{word-spacing:8.843652px;}
.ws697_c00001{word-spacing:8.848800px;}
.ws23e_c00001{word-spacing:8.849664px;}
.ws902_c00001{word-spacing:8.855676px;}
.ws810_c00001{word-spacing:8.856000px;}
.ws903_c00001{word-spacing:8.861688px;}
.ws7f9_c00001{word-spacing:8.863200px;}
.ws9e5_c00001{word-spacing:8.867700px;}
.wsd9_c00001{word-spacing:8.870400px;}
.ws8c_c00001{word-spacing:8.877600px;}
.ws138_c00001{word-spacing:8.884800px;}
.ws1954_c00001{word-spacing:8.885736px;}
.ws17b8_c00001{word-spacing:8.891748px;}
.ws710_c00001{word-spacing:8.892000px;}
.wsbc7_c00001{word-spacing:8.899200px;}
.ws1531_c00001{word-spacing:8.903772px;}
.ws6a0_c00001{word-spacing:8.906400px;}
.ws188_c00001{word-spacing:8.913600px;}
.ws5f_c00001{word-spacing:8.920800px;}
.ws5e_c00001{word-spacing:8.928000px;}
.ws704_c00001{word-spacing:8.935200px;}
.wsbc1_c00001{word-spacing:8.942400px;}
.ws1810_c00001{word-spacing:8.945856px;}
.wsda_c00001{word-spacing:8.949600px;}
.ws137d_c00001{word-spacing:8.953092px;}
.wsb3b_c00001{word-spacing:8.956800px;}
.ws1817_c00001{word-spacing:8.957880px;}
.ws1c9_c00001{word-spacing:8.964000px;}
.ws997_c00001{word-spacing:8.971200px;}
.ws189_c00001{word-spacing:8.978400px;}
.ws1572_c00001{word-spacing:8.981928px;}
.ws1ca_c00001{word-spacing:8.985600px;}
.ws1355_c00001{word-spacing:8.986032px;}
.ws17db_c00001{word-spacing:8.987940px;}
.ws8d_c00001{word-spacing:8.992800px;}
.ws17a4_c00001{word-spacing:8.993952px;}
.ws11c4_c00001{word-spacing:8.999208px;}
.ws416_c00001{word-spacing:8.999964px;}
.ws811_c00001{word-spacing:9.000000px;}
.wsb0c_c00001{word-spacing:9.005976px;}
.wsa33_c00001{word-spacing:9.007200px;}
.ws1692_c00001{word-spacing:9.011988px;}
.ws103b_c00001{word-spacing:9.012384px;}
.ws855_c00001{word-spacing:9.014400px;}
.ws14ad_c00001{word-spacing:9.018000px;}
.ws1198_c00001{word-spacing:9.018972px;}
.ws8e_c00001{word-spacing:9.021600px;}
.ws85d_c00001{word-spacing:9.024012px;}
.ws1000_c00001{word-spacing:9.025560px;}
.ws87a_c00001{word-spacing:9.028800px;}
.wsa42_c00001{word-spacing:9.030024px;}
.wsa73_c00001{word-spacing:9.032148px;}
.ws698_c00001{word-spacing:9.036000px;}
.ws14bd_c00001{word-spacing:9.036036px;}
.ws103a_c00001{word-spacing:9.038736px;}
.ws998_c00001{word-spacing:9.043200px;}
.wsa74_c00001{word-spacing:9.045324px;}
.ws9be_c00001{word-spacing:9.048060px;}
.wsf5d_c00001{word-spacing:9.050400px;}
.ws10a5_c00001{word-spacing:9.051912px;}
.ws157c_c00001{word-spacing:9.054072px;}
.ws6a1_c00001{word-spacing:9.057600px;}
.ws2b5_c00001{word-spacing:9.058500px;}
.ws145b_c00001{word-spacing:9.060084px;}
.wsaa9_c00001{word-spacing:9.065088px;}
.ws175d_c00001{word-spacing:9.066096px;}
.ws11c5_c00001{word-spacing:9.071676px;}
.wsbd7_c00001{word-spacing:9.072000px;}
.ws14be_c00001{word-spacing:9.072108px;}
.ws1408_c00001{word-spacing:9.078120px;}
.ws19ec_c00001{word-spacing:9.079200px;}
.ws145a_c00001{word-spacing:9.084132px;}
.ws175c_c00001{word-spacing:9.090144px;}
.ws130c_c00001{word-spacing:9.091440px;}
.ws157b_c00001{word-spacing:9.096156px;}
.ws85c_c00001{word-spacing:9.102168px;}
.ws1356_c00001{word-spacing:9.104616px;}
.wsc59_c00001{word-spacing:9.108000px;}
.ws1564_c00001{word-spacing:9.108180px;}
.ws18ce_c00001{word-spacing:9.114192px;}
.ws9bc_c00001{word-spacing:9.120204px;}
.ws1ade_c00001{word-spacing:9.122400px;}
.ws9bd_c00001{word-spacing:9.126216px;}
.wsbc8_c00001{word-spacing:9.129600px;}
.ws199e_c00001{word-spacing:9.132228px;}
.ws19c3_c00001{word-spacing:9.138240px;}
.ws1adf_c00001{word-spacing:9.144000px;}
.ws167f_c00001{word-spacing:9.150264px;}
.ws17f0_c00001{word-spacing:9.156276px;}
.wsde1_c00001{word-spacing:9.158400px;}
.ws1854_c00001{word-spacing:9.162288px;}
.ws460_c00001{word-spacing:9.165600px;}
.ws16d9_c00001{word-spacing:9.168300px;}
.wsbcb_c00001{word-spacing:9.172800px;}
.ws1701_c00001{word-spacing:9.174312px;}
.ws75d_c00001{word-spacing:9.180000px;}
.wsa43_c00001{word-spacing:9.186336px;}
.wsc5a_c00001{word-spacing:9.187200px;}
.ws1702_c00001{word-spacing:9.192348px;}
.wse18_c00001{word-spacing:9.194400px;}
.ws16da_c00001{word-spacing:9.198360px;}
.ws216_c00001{word-spacing:9.201600px;}
.ws180f_c00001{word-spacing:9.204372px;}
.wsc83_c00001{word-spacing:9.208800px;}
.ws197b_c00001{word-spacing:9.210384px;}
.ws8ae_c00001{word-spacing:9.216000px;}
.ws1566_c00001{word-spacing:9.216396px;}
.ws1407_c00001{word-spacing:9.222408px;}
.ws75e_c00001{word-spacing:9.223200px;}
.wsa13_c00001{word-spacing:9.228420px;}
.wsbca_c00001{word-spacing:9.230400px;}
.ws19c4_c00001{word-spacing:9.234432px;}
.ws512_c00001{word-spacing:9.237600px;}
.ws1873_c00001{word-spacing:9.240444px;}
.wsd82_c00001{word-spacing:9.244800px;}
.ws18f9_c00001{word-spacing:9.246456px;}
.ws8d1_c00001{word-spacing:9.252000px;}
.wsa14_c00001{word-spacing:9.252468px;}
.ws197c_c00001{word-spacing:9.258480px;}
.ws513_c00001{word-spacing:9.259200px;}
.ws18cf_c00001{word-spacing:9.264492px;}
.ws66d_c00001{word-spacing:9.266400px;}
.ws2fd_c00001{word-spacing:9.273600px;}
.ws259_c00001{word-spacing:9.280800px;}
.wsa22_c00001{word-spacing:9.288000px;}
.wsef0_c00001{word-spacing:9.295200px;}
.ws1001_c00001{word-spacing:9.295668px;}
.ws214_c00001{word-spacing:9.302400px;}
.ws1a1_c00001{word-spacing:9.309600px;}
.ws461_c00001{word-spacing:9.316800px;}
.ws66e_c00001{word-spacing:9.324000px;}
.ws486_c00001{word-spacing:9.331200px;}
.ws1d7_c00001{word-spacing:9.338400px;}
.ws8e7_c00001{word-spacing:9.342648px;}
.ws514_c00001{word-spacing:9.345600px;}
.ws1311_c00001{word-spacing:9.348372px;}
.ws193e_c00001{word-spacing:9.348660px;}
.ws764_c00001{word-spacing:9.352800px;}
.ws146e_c00001{word-spacing:9.354672px;}
.ws1a2_c00001{word-spacing:9.360000px;}
.wsac1_c00001{word-spacing:9.360684px;}
.ws1277_c00001{word-spacing:9.361548px;}
.ws148e_c00001{word-spacing:9.366696px;}
.ws215_c00001{word-spacing:9.367200px;}
.ws127d_c00001{word-spacing:9.368136px;}
.ws163c_c00001{word-spacing:9.372708px;}
.ws258_c00001{word-spacing:9.374400px;}
.ws11a1_c00001{word-spacing:9.374724px;}
.ws1824_c00001{word-spacing:9.378720px;}
.wsf8e_c00001{word-spacing:9.381312px;}
.ws2fc_c00001{word-spacing:9.381600px;}
.ws1725_c00001{word-spacing:9.384732px;}
.wsf8f_c00001{word-spacing:9.387900px;}
.ws25a_c00001{word-spacing:9.388800px;}
.ws166a_c00001{word-spacing:9.390744px;}
.wsf8d_c00001{word-spacing:9.394488px;}
.wsc99_c00001{word-spacing:9.396000px;}
.ws18da_c00001{word-spacing:9.396756px;}
.ws1190_c00001{word-spacing:9.401076px;}
.ws8e6_c00001{word-spacing:9.402768px;}
.ws7b1_c00001{word-spacing:9.403200px;}
.ws1217_c00001{word-spacing:9.407664px;}
.ws161f_c00001{word-spacing:9.408780px;}
.ws2fe_c00001{word-spacing:9.410400px;}
.wsfa3_c00001{word-spacing:9.414252px;}
.wsd1b_c00001{word-spacing:9.414792px;}
.ws830_c00001{word-spacing:9.417600px;}
.ws17fa_c00001{word-spacing:9.420804px;}
.ws10e3_c00001{word-spacing:9.420840px;}
.ws166b_c00001{word-spacing:9.426816px;}
.ws11fc_c00001{word-spacing:9.427428px;}
.ws1aae_c00001{word-spacing:9.432000px;}
.ws17b7_c00001{word-spacing:9.432828px;}
.wsfa2_c00001{word-spacing:9.434016px;}
.wsd1a_c00001{word-spacing:9.438840px;}
.ws9f5_c00001{word-spacing:9.444852px;}
.ws11a0_c00001{word-spacing:9.447192px;}
.ws1979_c00001{word-spacing:9.450864px;}
.ws1310_c00001{word-spacing:9.453780px;}
.ws161e_c00001{word-spacing:9.456876px;}
.ws1769_c00001{word-spacing:9.462888px;}
.ws77f_c00001{word-spacing:9.468000px;}
.ws14f0_c00001{word-spacing:9.468900px;}
.wsa41_c00001{word-spacing:9.474912px;}
.ws8f2_c00001{word-spacing:9.475200px;}
.ws16c4_c00001{word-spacing:9.480924px;}
.ws189e_c00001{word-spacing:9.486936px;}
.ws15a7_c00001{word-spacing:9.492948px;}
.ws176e_c00001{word-spacing:9.498960px;}
.ws19fe_c00001{word-spacing:9.504000px;}
.ws9f6_c00001{word-spacing:9.504972px;}
.ws15a8_c00001{word-spacing:9.516996px;}
.ws88d_c00001{word-spacing:9.518400px;}
.ws9b1_c00001{word-spacing:9.525600px;}
.ws1f1_c00001{word-spacing:9.532800px;}
.wsac2_c00001{word-spacing:9.535032px;}
.ws6fd_c00001{word-spacing:9.540000px;}
.ws565_c00001{word-spacing:9.547056px;}
.ws6fe_c00001{word-spacing:9.547200px;}
.ws14da_c00001{word-spacing:9.553068px;}
.wsddf_c00001{word-spacing:9.554400px;}
.ws15f1_c00001{word-spacing:9.559080px;}
.wsd78_c00001{word-spacing:9.561600px;}
.ws9f7_c00001{word-spacing:9.565092px;}
.ws470_c00001{word-spacing:9.568800px;}
.ws16c3_c00001{word-spacing:9.571104px;}
.ws49_c00001{word-spacing:9.576000px;}
.ws1703_c00001{word-spacing:9.577116px;}
.ws1597_c00001{word-spacing:9.583128px;}
.wsd19_c00001{word-spacing:9.589140px;}
.wsa4d_c00001{word-spacing:9.590400px;}
.ws18a6_c00001{word-spacing:9.595152px;}
.ws1804_c00001{word-spacing:9.601164px;}
.ws925_c00001{word-spacing:9.604800px;}
.wsa12_c00001{word-spacing:9.607176px;}
.wsc72_c00001{word-spacing:9.612000px;}
.ws566_c00001{word-spacing:9.613188px;}
.ws17a_c00001{word-spacing:9.619200px;}
.ws4d4_c00001{word-spacing:9.626400px;}
.ws179_c00001{word-spacing:9.633600px;}
.ws3cf_c00001{word-spacing:9.640800px;}
.ws4a_c00001{word-spacing:9.648000px;}
.ws7e8_c00001{word-spacing:9.655200px;}
.ws4d5_c00001{word-spacing:9.662400px;}
.ws95c_c00001{word-spacing:9.669600px;}
.ws68a_c00001{word-spacing:9.676800px;}
.ws1f0_c00001{word-spacing:9.684000px;}
.ws11fa_c00001{word-spacing:9.690948px;}
.ws43b_c00001{word-spacing:9.691200px;}
.ws15d1_c00001{word-spacing:9.691344px;}
.ws43a_c00001{word-spacing:9.698400px;}
.ws1658_c00001{word-spacing:9.703368px;}
.wsc8a_c00001{word-spacing:9.705600px;}
.ws14ed_c00001{word-spacing:9.709380px;}
.ws1383_c00001{word-spacing:9.710712px;}
.ws1d6_c00001{word-spacing:9.712800px;}
.ws1537_c00001{word-spacing:9.715392px;}
.ws9b2_c00001{word-spacing:9.720000px;}
.ws16d5_c00001{word-spacing:9.721404px;}
.ws471_c00001{word-spacing:9.727200px;}
.ws14d9_c00001{word-spacing:9.727416px;}
.ws120c_c00001{word-spacing:9.730476px;}
.ws156e_c00001{word-spacing:9.733428px;}
.wsac4_c00001{word-spacing:9.734400px;}
.ws11e3_c00001{word-spacing:9.737064px;}
.ws1434_c00001{word-spacing:9.739440px;}
.ws122c_c00001{word-spacing:9.743652px;}
.ws17b4_c00001{word-spacing:9.745452px;}
.ws4b_c00001{word-spacing:9.748800px;}
.ws10eb_c00001{word-spacing:9.750240px;}
.ws1505_c00001{word-spacing:9.751464px;}
.wsa3d_c00001{word-spacing:9.756000px;}
.ws11e4_c00001{word-spacing:9.756828px;}
.ws716_c00001{word-spacing:9.757476px;}
.wsdde_c00001{word-spacing:9.763200px;}
.ws11a6_c00001{word-spacing:9.763416px;}
.ws1831_c00001{word-spacing:9.763488px;}
.ws122b_c00001{word-spacing:9.770004px;}
.wsc87_c00001{word-spacing:9.770400px;}
.ws11a7_c00001{word-spacing:9.776592px;}
.ws7e7_c00001{word-spacing:9.777600px;}
.ws18d3_c00001{word-spacing:9.781524px;}
.ws10b5_c00001{word-spacing:9.783180px;}
.wsc68_c00001{word-spacing:9.787536px;}
.wsc95_c00001{word-spacing:9.789768px;}
.ws19fd_c00001{word-spacing:9.792000px;}
.ws1772_c00001{word-spacing:9.793548px;}
.ws148b_c00001{word-spacing:9.799560px;}
.wsb85_c00001{word-spacing:9.802224px;}
.ws148c_c00001{word-spacing:9.805572px;}
.ws15f5_c00001{word-spacing:9.811584px;}
.wsec3_c00001{word-spacing:9.813600px;}
.wsc6a_c00001{word-spacing:9.817596px;}
.ws10b6_c00001{word-spacing:9.822708px;}
.ws526_c00001{word-spacing:9.823608px;}
.wse96_c00001{word-spacing:9.828000px;}
.ws14f9_c00001{word-spacing:9.835632px;}
.ws188b_c00001{word-spacing:9.841644px;}
.ws14f8_c00001{word-spacing:9.847656px;}
.ws17b_c00001{word-spacing:9.849600px;}
.wsc69_c00001{word-spacing:9.853668px;}
.ws41b_c00001{word-spacing:9.856800px;}
.ws187a_c00001{word-spacing:9.859680px;}
.ws1a6c_c00001{word-spacing:9.871200px;}
.ws16ae_c00001{word-spacing:9.871704px;}
.ws195c_c00001{word-spacing:9.877716px;}
.wsdd0_c00001{word-spacing:9.889740px;}
.wsc73_c00001{word-spacing:9.892800px;}
.wsac3_c00001{word-spacing:9.895752px;}
.wsa69_c00001{word-spacing:9.901764px;}
.ws1808_c00001{word-spacing:9.907776px;}
.ws18c7_c00001{word-spacing:9.913788px;}
.ws6f9_c00001{word-spacing:9.914400px;}
.wsa68_c00001{word-spacing:9.919800px;}
.wsc9f_c00001{word-spacing:9.921600px;}
.ws159a_c00001{word-spacing:9.925812px;}
.ws225_c00001{word-spacing:9.928800px;}
.ws1401_c00001{word-spacing:9.931392px;}
.ws4f2_c00001{word-spacing:9.936000px;}
.ws1741_c00001{word-spacing:9.937836px;}
.ws6f8_c00001{word-spacing:9.943200px;}
.ws1688_c00001{word-spacing:9.949860px;}
.wsa3c_c00001{word-spacing:9.950400px;}
.ws14db_c00001{word-spacing:9.955872px;}
.wsa94_c00001{word-spacing:9.957600px;}
.ws15d_c00001{word-spacing:9.964800px;}
.ws1687_c00001{word-spacing:9.967896px;}
.wsd81_c00001{word-spacing:9.972000px;}
.ws1686_c00001{word-spacing:9.973908px;}
.ws138b_c00001{word-spacing:9.974232px;}
.ws28c_c00001{word-spacing:9.979200px;}
.ws686_c00001{word-spacing:9.986400px;}
.ws1755_c00001{word-spacing:9.991944px;}
.ws687_c00001{word-spacing:9.993600px;}
.ws15c_c00001{word-spacing:10.000800px;}
.ws19bd_c00001{word-spacing:10.003968px;}
.ws773_c00001{word-spacing:10.008000px;}
.ws95d_c00001{word-spacing:10.015200px;}
.ws60_c00001{word-spacing:10.022400px;}
.ws226_c00001{word-spacing:10.029600px;}
.ws1402_c00001{word-spacing:10.032048px;}
.ws10c9_c00001{word-spacing:10.033524px;}
.wsb60_c00001{word-spacing:10.034028px;}
.ws1ea_c00001{word-spacing:10.036800px;}
.ws578_c00001{word-spacing:10.044000px;}
.ws61_c00001{word-spacing:10.051200px;}
.wsb5f_c00001{word-spacing:10.052064px;}
.ws1eb_c00001{word-spacing:10.058400px;}
.ws1796_c00001{word-spacing:10.064088px;}
.ws603_c00001{word-spacing:10.065600px;}
.ws4b6_c00001{word-spacing:10.070100px;}
.ws4f3_c00001{word-spacing:10.072800px;}
.ws1622_c00001{word-spacing:10.076112px;}
.ws24a_c00001{word-spacing:10.079640px;}
.ws41a_c00001{word-spacing:10.080000px;}
.ws7ac_c00001{word-spacing:10.082124px;}
.ws4_c00001{word-spacing:10.086228px;}
.ws315_c00001{word-spacing:10.087200px;}
.ws542_c00001{word-spacing:10.088136px;}
.ws1059_c00001{word-spacing:10.092816px;}
.ws1433_c00001{word-spacing:10.094148px;}
.ws6fa_c00001{word-spacing:10.094400px;}
.ws13be_c00001{word-spacing:10.099404px;}
.ws1519_c00001{word-spacing:10.100160px;}
.ws774_c00001{word-spacing:10.101600px;}
.ws112d_c00001{word-spacing:10.105992px;}
.ws19de_c00001{word-spacing:10.106172px;}
.ws167d_c00001{word-spacing:10.112184px;}
.ws11bb_c00001{word-spacing:10.112580px;}
.wse1e_c00001{word-spacing:10.116000px;}
.ws19ee_c00001{word-spacing:10.118196px;}
.wsff5_c00001{word-spacing:10.119168px;}
.wsbb2_c00001{word-spacing:10.125756px;}
.wsb40_c00001{word-spacing:10.130400px;}
.ws1058_c00001{word-spacing:10.132344px;}
.ws196c_c00001{word-spacing:10.136232px;}
.ws4f5_c00001{word-spacing:10.137600px;}
.ws100d_c00001{word-spacing:10.138932px;}
.ws196b_c00001{word-spacing:10.142244px;}
.wsbf0_c00001{word-spacing:10.145520px;}
.ws1421_c00001{word-spacing:10.148256px;}
.wsc5_c00001{word-spacing:10.152108px;}
.wsaa4_c00001{word-spacing:10.154268px;}
.wsb04_c00001{word-spacing:10.158696px;}
.ws138a_c00001{word-spacing:10.165284px;}
.ws16af_c00001{word-spacing:10.166292px;}
.wsf08_c00001{word-spacing:10.166400px;}
.wsb62_c00001{word-spacing:10.172304px;}
.ws1fa_c00001{word-spacing:10.178316px;}
.ws1388_c00001{word-spacing:10.178460px;}
.ws2e8_c00001{word-spacing:10.180800px;}
.ws14a2_c00001{word-spacing:10.184328px;}
.ws4f4_c00001{word-spacing:10.188000px;}
.ws4b7_c00001{word-spacing:10.190340px;}
.ws1518_c00001{word-spacing:10.196352px;}
.ws16c5_c00001{word-spacing:10.202364px;}
.ws1754_c00001{word-spacing:10.208376px;}
.ws1a9_c00001{word-spacing:10.209600px;}
.ws1911_c00001{word-spacing:10.214388px;}
.wse7f_c00001{word-spacing:10.216800px;}
.ws1857_c00001{word-spacing:10.220400px;}
.ws17ee_c00001{word-spacing:10.226412px;}
.wsf56_c00001{word-spacing:10.231200px;}
.wse26_c00001{word-spacing:10.238400px;}
.wsb5d_c00001{word-spacing:10.238436px;}
.ws6b3_c00001{word-spacing:10.245600px;}
.ws176b_c00001{word-spacing:10.250460px;}
.wsdca_c00001{word-spacing:10.252800px;}
.ws1900_c00001{word-spacing:10.256472px;}
.ws6b4_c00001{word-spacing:10.260000px;}
.ws1a10_c00001{word-spacing:10.262484px;}
.ws1a5b_c00001{word-spacing:10.267200px;}
.ws1684_c00001{word-spacing:10.268496px;}
.wse95_c00001{word-spacing:10.274400px;}
.ws16b6_c00001{word-spacing:10.274508px;}
.ws199d_c00001{word-spacing:10.280520px;}
.ws3cc_c00001{word-spacing:10.281600px;}
.ws4b8_c00001{word-spacing:10.286532px;}
.wsefd_c00001{word-spacing:10.296000px;}
.ws1806_c00001{word-spacing:10.298556px;}
.ws530_c00001{word-spacing:10.303200px;}
.ws1838_c00001{word-spacing:10.304568px;}
.ws1a8_c00001{word-spacing:10.310400px;}
.ws18a8_c00001{word-spacing:10.310580px;}
.ws9c9_c00001{word-spacing:10.317600px;}
.ws1683_c00001{word-spacing:10.322604px;}
.ws313_c00001{word-spacing:10.324800px;}
.ws17e2_c00001{word-spacing:10.328616px;}
.ws3cd_c00001{word-spacing:10.332000px;}
.ws543_c00001{word-spacing:10.334628px;}
.ws1a7_c00001{word-spacing:10.339200px;}
.ws314_c00001{word-spacing:10.346400px;}
.ws18db_c00001{word-spacing:10.346652px;}
.wsb61_c00001{word-spacing:10.352664px;}
.ws2a1_c00001{word-spacing:10.353600px;}
.ws6b5_c00001{word-spacing:10.360800px;}
.ws1917_c00001{word-spacing:10.364688px;}
.ws8cc_c00001{word-spacing:10.368000px;}
.ws6ce_c00001{word-spacing:10.375200px;}
.ws6cd_c00001{word-spacing:10.382400px;}
.ws7bc_c00001{word-spacing:10.389600px;}
.wsea_c00001{word-spacing:10.396800px;}
.ws682_c00001{word-spacing:10.404000px;}
.ws231_c00001{word-spacing:10.409040px;}
.ws681_c00001{word-spacing:10.411200px;}
.ws16d2_c00001{word-spacing:10.412784px;}
.ws1a3_c00001{word-spacing:10.418400px;}
.ws1fb_c00001{word-spacing:10.418796px;}
.ws1337_c00001{word-spacing:10.422216px;}
.ws14dd_c00001{word-spacing:10.424808px;}
.ws86a_c00001{word-spacing:10.425600px;}
.ws1820_c00001{word-spacing:10.430820px;}
.ws51a_c00001{word-spacing:10.432800px;}
.ws1207_c00001{word-spacing:10.435392px;}
.ws76b_c00001{word-spacing:10.436832px;}
.ws356_c00001{word-spacing:10.440000px;}
.ws137a_c00001{word-spacing:10.441980px;}
.ws1767_c00001{word-spacing:10.442844px;}
.ws798_c00001{word-spacing:10.447200px;}
.ws11f1_c00001{word-spacing:10.448568px;}
.ws16a9_c00001{word-spacing:10.448856px;}
.ws3d0_c00001{word-spacing:10.454400px;}
.ws1486_c00001{word-spacing:10.454868px;}
.ws1471_c00001{word-spacing:10.460880px;}
.ws357_c00001{word-spacing:10.461600px;}
.ws128e_c00001{word-spacing:10.461744px;}
.ws1530_c00001{word-spacing:10.466892px;}
.ws119d_c00001{word-spacing:10.468332px;}
.wsdcb_c00001{word-spacing:10.468800px;}
.wsff4_c00001{word-spacing:10.474920px;}
.wsf15_c00001{word-spacing:10.476000px;}
.ws1694_c00001{word-spacing:10.478916px;}
.wsb99_c00001{word-spacing:10.483200px;}
.ws1626_c00001{word-spacing:10.484928px;}
.ws51b_c00001{word-spacing:10.490400px;}
.ws1859_c00001{word-spacing:10.490940px;}
.ws11f2_c00001{word-spacing:10.494684px;}
.wsdea_c00001{word-spacing:10.497600px;}
.ws232_c00001{word-spacing:10.501272px;}
.ws1858_c00001{word-spacing:10.502964px;}
.ws924_c00001{word-spacing:10.504800px;}
.ws100c_c00001{word-spacing:10.507860px;}
.ws14ea_c00001{word-spacing:10.508976px;}
.wseb_c00001{word-spacing:10.512000px;}
.ws1357_c00001{word-spacing:10.514448px;}
.ws189b_c00001{word-spacing:10.514988px;}
.wsf0b_c00001{word-spacing:10.519200px;}
.ws14c5_c00001{word-spacing:10.521000px;}
.ws3ce_c00001{word-spacing:10.526400px;}
.ws14e9_c00001{word-spacing:10.527012px;}
.ws1379_c00001{word-spacing:10.527624px;}
.wsa2c_c00001{word-spacing:10.533024px;}
.ws16b9_c00001{word-spacing:10.539036px;}
.wsec2_c00001{word-spacing:10.540800px;}
.ws1488_c00001{word-spacing:10.545048px;}
.ws16ba_c00001{word-spacing:10.551060px;}
.ws1f9_c00001{word-spacing:10.557072px;}
.wsaa2_c00001{word-spacing:10.563084px;}
.ws1422_c00001{word-spacing:10.569096px;}
.ws1aa0_c00001{word-spacing:10.576800px;}
.wsdd2_c00001{word-spacing:10.581120px;}
.ws1a56_c00001{word-spacing:10.584000px;}
.ws305_c00001{word-spacing:10.591200px;}
.ws17f8_c00001{word-spacing:10.599156px;}
.ws1487_c00001{word-spacing:10.605168px;}
.ws9b3_c00001{word-spacing:10.605600px;}
.ws19f7_c00001{word-spacing:10.611180px;}
.ws307_c00001{word-spacing:10.612800px;}
.ws16f2_c00001{word-spacing:10.617192px;}
.ws9cd_c00001{word-spacing:10.620000px;}
.ws15d5_c00001{word-spacing:10.623204px;}
.ws195d_c00001{word-spacing:10.629216px;}
.ws6c8_c00001{word-spacing:10.634400px;}
.wsaa5_c00001{word-spacing:10.635228px;}
.wsaa3_c00001{word-spacing:10.641240px;}
.wsb9d_c00001{word-spacing:10.641600px;}
.ws9b4_c00001{word-spacing:10.648800px;}
.ws17a1_c00001{word-spacing:10.653264px;}
.ws86d_c00001{word-spacing:10.656000px;}
.ws17fd_c00001{word-spacing:10.659276px;}
.ws8bf_c00001{word-spacing:10.663200px;}
.ws3f0_c00001{word-spacing:10.670400px;}
.ws166d_c00001{word-spacing:10.671300px;}
.ws1868_c00001{word-spacing:10.677312px;}
.ws4db_c00001{word-spacing:10.677600px;}
.ws971_c00001{word-spacing:10.684800px;}
.ws1967_c00001{word-spacing:10.689336px;}
.ws7e4_c00001{word-spacing:10.692000px;}
.ws1896_c00001{word-spacing:10.695348px;}
.wse4a_c00001{word-spacing:10.699200px;}
.ws9d1_c00001{word-spacing:10.701360px;}
.ws555_c00001{word-spacing:10.706400px;}
.ws391_c00001{word-spacing:10.713600px;}
.ws1c6_c00001{word-spacing:10.720800px;}
.wse0c_c00001{word-spacing:10.728000px;}
.ws3ef_c00001{word-spacing:10.735200px;}
.ws306_c00001{word-spacing:10.742400px;}
.ws8ac_c00001{word-spacing:10.749600px;}
.ws292_c00001{word-spacing:10.756800px;}
.ws11f0_c00001{word-spacing:10.758204px;}
.ws1c4_c00001{word-spacing:10.764000px;}
.ws13a4_c00001{word-spacing:10.764792px;}
.ws291_c00001{word-spacing:10.771200px;}
.ws1008_c00001{word-spacing:10.771380px;}
.ws115d_c00001{word-spacing:10.777968px;}
.ws129_c00001{word-spacing:10.778400px;}
.ws6aa_c00001{word-spacing:10.779516px;}
.ws86c_c00001{word-spacing:10.785600px;}
.ws138e_c00001{word-spacing:10.791144px;}
.ws142f_c00001{word-spacing:10.791540px;}
.ws2da_c00001{word-spacing:10.792800px;}
.ws13d_c00001{word-spacing:10.797552px;}
.ws12cc_c00001{word-spacing:10.797732px;}
.ws7e5_c00001{word-spacing:10.800000px;}
.ws15bd_c00001{word-spacing:10.803564px;}
.ws1009_c00001{word-spacing:10.804320px;}
.ws1c5_c00001{word-spacing:10.807200px;}
.ws14b2_c00001{word-spacing:10.809576px;}
.ws118a_c00001{word-spacing:10.810908px;}
.ws128_c00001{word-spacing:10.814400px;}
.ws1500_c00001{word-spacing:10.815588px;}
.ws5e5_c00001{word-spacing:10.821600px;}
.ws1006_c00001{word-spacing:10.824084px;}
.ws1a3e_c00001{word-spacing:10.827612px;}
.ws93e_c00001{word-spacing:10.828800px;}
.ws115c_c00001{word-spacing:10.830672px;}
.ws8be_c00001{word-spacing:10.836000px;}
.ws1007_c00001{word-spacing:10.837260px;}
.ws9da_c00001{word-spacing:10.843200px;}
.ws128d_c00001{word-spacing:10.843848px;}
.ws17a2_c00001{word-spacing:10.845648px;}
.ws129a_c00001{word-spacing:10.850436px;}
.ws1098_c00001{word-spacing:10.857024px;}
.ws1aa1_c00001{word-spacing:10.857600px;}
.wscff_c00001{word-spacing:10.863612px;}
.wsa2b_c00001{word-spacing:10.863684px;}
.wsca4_c00001{word-spacing:10.864800px;}
.wse03_c00001{word-spacing:10.872000px;}
.ws881_c00001{word-spacing:10.875708px;}
.wsd00_c00001{word-spacing:10.876788px;}
.ws735_c00001{word-spacing:10.881720px;}
.ws5b0_c00001{word-spacing:10.886400px;}
.ws1759_c00001{word-spacing:10.887732px;}
.wse28_c00001{word-spacing:10.893600px;}
.ws882_c00001{word-spacing:10.893744px;}
.ws15b4_c00001{word-spacing:10.899756px;}
.ws1627_c00001{word-spacing:10.905768px;}
.ws1758_c00001{word-spacing:10.911780px;}
.ws18d4_c00001{word-spacing:10.917792px;}
.wsde7_c00001{word-spacing:10.929600px;}
.ws15d4_c00001{word-spacing:10.929816px;}
.ws8ed_c00001{word-spacing:10.941840px;}
.wse25_c00001{word-spacing:10.951200px;}
.ws1435_c00001{word-spacing:10.953864px;}
.wsa39_c00001{word-spacing:10.958400px;}
.ws18f5_c00001{word-spacing:10.959876px;}
.ws7a1_c00001{word-spacing:10.965600px;}
.ws70_c00001{word-spacing:10.971900px;}
.wseb0_c00001{word-spacing:10.972800px;}
.ws44e_c00001{word-spacing:10.980000px;}
.ws18de_c00001{word-spacing:10.983924px;}
.wse83_c00001{word-spacing:10.987200px;}
.ws456_c00001{word-spacing:10.994400px;}
.ws6a9_c00001{word-spacing:10.995948px;}
.wsa3a_c00001{word-spacing:11.001600px;}
.ws19e4_c00001{word-spacing:11.001960px;}
.ws15e9_c00001{word-spacing:11.007972px;}
.ws3af_c00001{word-spacing:11.008800px;}
.ws186b_c00001{word-spacing:11.013984px;}
.wsd9a_c00001{word-spacing:11.016000px;}
.ws1a2b_c00001{word-spacing:11.019996px;}
.wsb9e_c00001{word-spacing:11.023200px;}
.ws845_c00001{word-spacing:11.030400px;}
.ws18f6_c00001{word-spacing:11.032020px;}
.wse29_c00001{word-spacing:11.037600px;}
.ws142e_c00001{word-spacing:11.038032px;}
.ws6f_c00001{word-spacing:11.044044px;}
.wsba0_c00001{word-spacing:11.044800px;}
.ws457_c00001{word-spacing:11.052000px;}
.ws3dd_c00001{word-spacing:11.059200px;}
.ws1949_c00001{word-spacing:11.062080px;}
.wsb9f_c00001{word-spacing:11.066400px;}
.ws4ac_c00001{word-spacing:11.073600px;}
.ws19da_c00001{word-spacing:11.074104px;}
.wsd0b_c00001{word-spacing:11.080800px;}
.ws33_c00001{word-spacing:11.088000px;}
.ws7a0_c00001{word-spacing:11.095200px;}
.wsfe5_c00001{word-spacing:11.100780px;}
.wsd09_c00001{word-spacing:11.102400px;}
.ws877_c00001{word-spacing:11.109600px;}
.wsfc1_c00001{word-spacing:11.113956px;}
.ws1c0_c00001{word-spacing:11.116800px;}
.ws18c9_c00001{word-spacing:11.122200px;}
.ws829_c00001{word-spacing:11.124000px;}
.ws1386_c00001{word-spacing:11.127132px;}
.ws1860_c00001{word-spacing:11.128212px;}
.ws3ae_c00001{word-spacing:11.131200px;}
.ws860_c00001{word-spacing:11.138400px;}
.ws5b1_c00001{word-spacing:11.145600px;}
.ws18fe_c00001{word-spacing:11.146248px;}
.ws16de_c00001{word-spacing:11.152260px;}
.ws34_c00001{word-spacing:11.152800px;}
.ws1283_c00001{word-spacing:11.153484px;}
.ws502_c00001{word-spacing:11.158272px;}
.ws56a_c00001{word-spacing:11.160000px;}
.wsfe4_c00001{word-spacing:11.160072px;}
.ws905_c00001{word-spacing:11.164284px;}
.wsfbf_c00001{word-spacing:11.166660px;}
.ws8fb_c00001{word-spacing:11.167200px;}
.wsa7b_c00001{word-spacing:11.170296px;}
.ws1095_c00001{word-spacing:11.173248px;}
.ws7a2_c00001{word-spacing:11.174400px;}
.wsb4e_c00001{word-spacing:11.176308px;}
.ws12bb_c00001{word-spacing:11.179836px;}
.ws87e_c00001{word-spacing:11.181600px;}
.ws1264_c00001{word-spacing:11.186424px;}
.wsfe6_c00001{word-spacing:11.193012px;}
.wsee0_c00001{word-spacing:11.196000px;}
.ws1097_c00001{word-spacing:11.199600px;}
.wsde9_c00001{word-spacing:11.203200px;}
.ws12fd_c00001{word-spacing:11.206188px;}
.ws71_c00001{word-spacing:11.206368px;}
.wsca3_c00001{word-spacing:11.210400px;}
.ws1783_c00001{word-spacing:11.212380px;}
.wsd01_c00001{word-spacing:11.212776px;}
.wse90_c00001{word-spacing:11.217600px;}
.ws1274_c00001{word-spacing:11.219364px;}
.ws1449_c00001{word-spacing:11.224404px;}
.ws1094_c00001{word-spacing:11.225952px;}
.wsfc2_c00001{word-spacing:11.232540px;}
.ws18f4_c00001{word-spacing:11.236428px;}
.ws734_c00001{word-spacing:11.242440px;}
.ws1093_c00001{word-spacing:11.245716px;}
.ws4ad_c00001{word-spacing:11.246400px;}
.wsc49_c00001{word-spacing:11.248452px;}
.ws172e_c00001{word-spacing:11.254464px;}
.wsa7c_c00001{word-spacing:11.260476px;}
.wsfc0_c00001{word-spacing:11.265480px;}
.ws1608_c00001{word-spacing:11.266488px;}
.wsebe_c00001{word-spacing:11.268000px;}
.ws12d2_c00001{word-spacing:11.272068px;}
.ws17b2_c00001{word-spacing:11.272500px;}
.wsbaf_c00001{word-spacing:11.275200px;}
.ws17b3_c00001{word-spacing:11.284524px;}
.wsbd8_c00001{word-spacing:11.290536px;}
.ws1282_c00001{word-spacing:11.291832px;}
.ws15ed_c00001{word-spacing:11.302560px;}
.wsd34_c00001{word-spacing:11.304000px;}
.ws183a_c00001{word-spacing:11.308572px;}
.wsebf_c00001{word-spacing:11.311200px;}
.ws179c_c00001{word-spacing:11.314584px;}
.ws26_c00001{word-spacing:11.318400px;}
.ws1936_c00001{word-spacing:11.320596px;}
.wscda_c00001{word-spacing:11.325600px;}
.ws1607_c00001{word-spacing:11.326608px;}
.wsead_c00001{word-spacing:11.332800px;}
.ws949_c00001{word-spacing:11.344644px;}
.wsae6_c00001{word-spacing:11.347200px;}
.ws94a_c00001{word-spacing:11.350656px;}
.ws561_c00001{word-spacing:11.354400px;}
.ws75f_c00001{word-spacing:11.361600px;}
.wsd33_c00001{word-spacing:11.368800px;}
.wsd08_c00001{word-spacing:11.376000px;}
.ws164c_c00001{word-spacing:11.380716px;}
.wsc74_c00001{word-spacing:11.383200px;}
.ws1953_c00001{word-spacing:11.386728px;}
.wsadc_c00001{word-spacing:11.390400px;}
.ws18c5_c00001{word-spacing:11.392740px;}
.ws92_c00001{word-spacing:11.397600px;}
.ws1821_c00001{word-spacing:11.398752px;}
.wsa28_c00001{word-spacing:11.404764px;}
.ws387_c00001{word-spacing:11.404800px;}
.ws1822_c00001{word-spacing:11.410776px;}
.ws7bb_c00001{word-spacing:11.412000px;}
.ws35e_c00001{word-spacing:11.416788px;}
.ws273_c00001{word-spacing:11.419200px;}
.ws5af_c00001{word-spacing:11.426400px;}
.ws7ba_c00001{word-spacing:11.433600px;}
.ws3f3_c00001{word-spacing:11.440800px;}
.ws2de_c00001{word-spacing:11.448000px;}
.ws1807_c00001{word-spacing:11.452860px;}
.ws3f2_c00001{word-spacing:11.455200px;}
.ws8c8_c00001{word-spacing:11.462400px;}
.ws956_c00001{word-spacing:11.469600px;}
.ws40a_c00001{word-spacing:11.476800px;}
.ws12ba_c00001{word-spacing:11.482884px;}
.ws13b_c00001{word-spacing:11.484000px;}
.wsae3_c00001{word-spacing:11.491200px;}
.wsc03_c00001{word-spacing:11.494944px;}
.ws25_c00001{word-spacing:11.498400px;}
.ws1481_c00001{word-spacing:11.500956px;}
.wsf72_c00001{word-spacing:11.502648px;}
.ws875_c00001{word-spacing:11.505600px;}
.wsc44_c00001{word-spacing:11.512800px;}
.ws162a_c00001{word-spacing:11.512980px;}
.ws1508_c00001{word-spacing:11.518992px;}
.ws5ae_c00001{word-spacing:11.520000px;}
.ws115f_c00001{word-spacing:11.522412px;}
.ws16fe_c00001{word-spacing:11.525004px;}
.wsf20_c00001{word-spacing:11.527200px;}
.ws1160_c00001{word-spacing:11.529000px;}
.ws180_c00001{word-spacing:11.531016px;}
.ws1999_c00001{word-spacing:11.534400px;}
.ws1011_c00001{word-spacing:11.535588px;}
.ws1640_c00001{word-spacing:11.537028px;}
.wsdb9_c00001{word-spacing:11.541600px;}
.wsf71_c00001{word-spacing:11.542176px;}
.ws1a25_c00001{word-spacing:11.543040px;}
.ws1067_c00001{word-spacing:11.548764px;}
.ws93_c00001{word-spacing:11.548800px;}
.ws189a_c00001{word-spacing:11.549052px;}
.ws72_c00001{word-spacing:11.555064px;}
.wsf98_c00001{word-spacing:11.555352px;}
.wseae_c00001{word-spacing:11.556000px;}
.ws17d5_c00001{word-spacing:11.561076px;}
.wsc96_c00001{word-spacing:11.561940px;}
.ws1adc_c00001{word-spacing:11.563200px;}
.ws1430_c00001{word-spacing:11.567088px;}
.wsf9c_c00001{word-spacing:11.568528px;}
.wsee2_c00001{word-spacing:11.570400px;}
.ws1a26_c00001{word-spacing:11.573100px;}
.ws1249_c00001{word-spacing:11.575116px;}
.ws1a27_c00001{word-spacing:11.579112px;}
.wsc76_c00001{word-spacing:11.581704px;}
.ws40b_c00001{word-spacing:11.584800px;}
.wsf97_c00001{word-spacing:11.588292px;}
.wsd4e_c00001{word-spacing:11.591136px;}
.wse99_c00001{word-spacing:11.592000px;}
.ws101f_c00001{word-spacing:11.594880px;}
.ws1879_c00001{word-spacing:11.597148px;}
.ws94_c00001{word-spacing:11.599200px;}
.ws1161_c00001{word-spacing:11.601468px;}
.ws67d_c00001{word-spacing:11.602224px;}
.ws18ca_c00001{word-spacing:11.603160px;}
.ws1785_c00001{word-spacing:11.609172px;}
.ws172b_c00001{word-spacing:11.615184px;}
.ws16b0_c00001{word-spacing:11.621196px;}
.wsd4d_c00001{word-spacing:11.627208px;}
.ws16dd_c00001{word-spacing:11.633220px;}
.wsce2_c00001{word-spacing:11.645244px;}
.wse5d_c00001{word-spacing:11.649600px;}
.ws17d7_c00001{word-spacing:11.657268px;}
.ws149f_c00001{word-spacing:11.663280px;}
.wsf19_c00001{word-spacing:11.664000px;}
.wsea5_c00001{word-spacing:11.671200px;}
.wse5e_c00001{word-spacing:11.678400px;}
.ws19c9_c00001{word-spacing:11.687328px;}
.wse84_c00001{word-spacing:11.692800px;}
.ws1a1a_c00001{word-spacing:11.699352px;}
.ws14c8_c00001{word-spacing:11.705364px;}
.wsea4_c00001{word-spacing:11.707200px;}
.ws1835_c00001{word-spacing:11.711376px;}
.wscd2_c00001{word-spacing:11.714400px;}
.ws14a0_c00001{word-spacing:11.717388px;}
.ws5a6_c00001{word-spacing:11.728800px;}
.ws1786_c00001{word-spacing:11.729412px;}
.ws623_c00001{word-spacing:11.735424px;}
.ws694_c00001{word-spacing:11.736000px;}
.ws1779_c00001{word-spacing:11.741436px;}
.ws3d8_c00001{word-spacing:11.743200px;}
.ws19d9_c00001{word-spacing:11.747448px;}
.ws272_c00001{word-spacing:11.750400px;}
.wsc48_c00001{word-spacing:11.753460px;}
.wsae7_c00001{word-spacing:11.757600px;}
.ws17d4_c00001{word-spacing:11.759472px;}
.wsbcd_c00001{word-spacing:11.764800px;}
.ws1448_c00001{word-spacing:11.771496px;}
.wsf00_c00001{word-spacing:11.772000px;}
.ws3b9_c00001{word-spacing:11.779200px;}
.ws19c8_c00001{word-spacing:11.783520px;}
.ws92d_c00001{word-spacing:11.786400px;}
.ws5a5_c00001{word-spacing:11.793600px;}
.ws699_c00001{word-spacing:11.800800px;}
.ws182c_c00001{word-spacing:11.807568px;}
.ws4fc_c00001{word-spacing:11.808000px;}
.wsafa_c00001{word-spacing:11.815200px;}
.ws79c_c00001{word-spacing:11.822400px;}
.wsf55_c00001{word-spacing:11.829600px;}
.ws3f8_c00001{word-spacing:11.836800px;}
.ws161c_c00001{word-spacing:11.837628px;}
.ws3b8_c00001{word-spacing:11.844000px;}
.ws73e_c00001{word-spacing:11.851200px;}
.ws1a2f_c00001{word-spacing:11.855664px;}
.ws400_c00001{word-spacing:11.858400px;}
.ws5e9_c00001{word-spacing:11.861676px;}
.wsc92_c00001{word-spacing:11.864988px;}
.wsbcc_c00001{word-spacing:11.865600px;}
.ws1784_c00001{word-spacing:11.867688px;}
.ws1243_c00001{word-spacing:11.871576px;}
.ws9d9_c00001{word-spacing:11.872800px;}
.ws155c_c00001{word-spacing:11.873700px;}
.ws179f_c00001{word-spacing:11.879712px;}
.ws80e_c00001{word-spacing:11.880000px;}
.ws1836_c00001{word-spacing:11.885724px;}
.ws836_c00001{word-spacing:11.887200px;}
.ws10f0_c00001{word-spacing:11.891340px;}
.ws1454_c00001{word-spacing:11.891736px;}
.ws3d9_c00001{word-spacing:11.894400px;}
.ws1794_c00001{word-spacing:11.897748px;}
.ws117a_c00001{word-spacing:11.897928px;}
.ws96e_c00001{word-spacing:11.901600px;}
.ws15c8_c00001{word-spacing:11.903760px;}
.ws1384_c00001{word-spacing:11.904516px;}
.wscd0_c00001{word-spacing:11.908800px;}
.ws1455_c00001{word-spacing:11.909772px;}
.ws93f_c00001{word-spacing:11.916000px;}
.wsc91_c00001{word-spacing:11.917692px;}
.wsc0a_c00001{word-spacing:11.923200px;}
.ws117b_c00001{word-spacing:11.924280px;}
.ws1737_c00001{word-spacing:11.927808px;}
.ws173_c00001{word-spacing:11.930868px;}
.ws1553_c00001{word-spacing:11.933820px;}
.ws10f6_c00001{word-spacing:11.937456px;}
.ws160e_c00001{word-spacing:11.939832px;}
.ws1054_c00001{word-spacing:11.944044px;}
.wsa2f_c00001{word-spacing:11.945844px;}
.ws2b7_c00001{word-spacing:11.950632px;}
.ws19b1_c00001{word-spacing:11.951856px;}
.ws1346_c00001{word-spacing:11.957220px;}
.ws396_c00001{word-spacing:11.957868px;}
.ws12e7_c00001{word-spacing:11.963808px;}
.ws397_c00001{word-spacing:11.963880px;}
.ws73f_c00001{word-spacing:11.966400px;}
.ws1676_c00001{word-spacing:11.969892px;}
.ws912_c00001{word-spacing:11.973600px;}
.ws174c_c00001{word-spacing:11.975904px;}
.ws80f_c00001{word-spacing:11.980800px;}
.wsa2d_c00001{word-spacing:11.981916px;}
.ws16a2_c00001{word-spacing:11.987928px;}
.ws13ae_c00001{word-spacing:11.990160px;}
.ws165c_c00001{word-spacing:11.993940px;}
.ws174d_c00001{word-spacing:11.999952px;}
.ws1830_c00001{word-spacing:12.005964px;}
.ws878_c00001{word-spacing:12.009600px;}
.wsa2e_c00001{word-spacing:12.011976px;}
.wsaeb_c00001{word-spacing:12.016800px;}
.ws19a9_c00001{word-spacing:12.017988px;}
.ws1661_c00001{word-spacing:12.024000px;}
.ws16a3_c00001{word-spacing:12.030012px;}
.ws7dc_c00001{word-spacing:12.031200px;}
.ws15a9_c00001{word-spacing:12.042036px;}
.ws1912_c00001{word-spacing:12.048048px;}
.wsb8d_c00001{word-spacing:12.052800px;}
.ws554_c00001{word-spacing:12.060000px;}
.ws161b_c00001{word-spacing:12.066084px;}
.ws80d_c00001{word-spacing:12.072096px;}
.wsb8c_c00001{word-spacing:12.074400px;}
.ws1892_c00001{word-spacing:12.078108px;}
.wsaea_c00001{word-spacing:12.081600px;}
.ws1716_c00001{word-spacing:12.084120px;}
.ws3b3_c00001{word-spacing:12.088800px;}
.ws18c3_c00001{word-spacing:12.090132px;}
.ws2a7_c00001{word-spacing:12.096000px;}
.wscc9_c00001{word-spacing:12.102156px;}
.ws3b4_c00001{word-spacing:12.103200px;}
.ws1875_c00001{word-spacing:12.108168px;}
.ws1a9b_c00001{word-spacing:12.110400px;}
.ws1625_c00001{word-spacing:12.114180px;}
.wsaec_c00001{word-spacing:12.117600px;}
.ws18b8_c00001{word-spacing:12.120192px;}
.ws9c4_c00001{word-spacing:12.124800px;}
.ws1227_c00001{word-spacing:12.128508px;}
.ws2a5_c00001{word-spacing:12.132000px;}
.ws80c_c00001{word-spacing:12.132216px;}
.ws9c3_c00001{word-spacing:12.139200px;}
.ws1727_c00001{word-spacing:12.144240px;}
.ws2a6_c00001{word-spacing:12.146400px;}
.ws72b_c00001{word-spacing:12.153600px;}
.wsb8e_c00001{word-spacing:12.160800px;}
.ws651_c00001{word-spacing:12.168000px;}
.ws652_c00001{word-spacing:12.175200px;}
.ws13af_c00001{word-spacing:12.181212px;}
.wsa95_c00001{word-spacing:12.182400px;}
.ws72a_c00001{word-spacing:12.189600px;}
.ws5a8_c00001{word-spacing:12.196800px;}
.ws558_c00001{word-spacing:12.204000px;}
.ws6ba_c00001{word-spacing:12.211200px;}
.ws15d9_c00001{word-spacing:12.216384px;}
.ws410_c00001{word-spacing:12.218400px;}
.ws1934_c00001{word-spacing:12.222396px;}
.ws55a_c00001{word-spacing:12.225600px;}
.ws19df_c00001{word-spacing:12.228408px;}
.ws559_c00001{word-spacing:12.232800px;}
.ws11d5_c00001{word-spacing:12.233916px;}
.ws183e_c00001{word-spacing:12.234420px;}
.ws553_c00001{word-spacing:12.240000px;}
.ws18a2_c00001{word-spacing:12.240432px;}
.ws110a_c00001{word-spacing:12.240504px;}
.ws165d_c00001{word-spacing:12.246444px;}
.ws13a7_c00001{word-spacing:12.247092px;}
.wseb5_c00001{word-spacing:12.247200px;}
.ws16f6_c00001{word-spacing:12.252456px;}
.wsce5_c00001{word-spacing:12.253680px;}
.ws411_c00001{word-spacing:12.254400px;}
.ws14a3_c00001{word-spacing:12.258468px;}
.wse01_c00001{word-spacing:12.261600px;}
.ws1894_c00001{word-spacing:12.270492px;}
.ws119b_c00001{word-spacing:12.273444px;}
.wsbfb_c00001{word-spacing:12.276000px;}
.ws16ac_c00001{word-spacing:12.276504px;}
.ws11d4_c00001{word-spacing:12.280032px;}
.wseb6_c00001{word-spacing:12.283200px;}
.ws1226_c00001{word-spacing:12.286620px;}
.ws6bb_c00001{word-spacing:12.290400px;}
.ws119c_c00001{word-spacing:12.293208px;}
.ws1895_c00001{word-spacing:12.300552px;}
.ws19b0_c00001{word-spacing:12.312576px;}
.ws1935_c00001{word-spacing:12.318588px;}
.ws9b9_c00001{word-spacing:12.319200px;}
.ws152c_c00001{word-spacing:12.324600px;}
.ws12d6_c00001{word-spacing:12.326148px;}
.ws19fc_c00001{word-spacing:12.326400px;}
.ws1587_c00001{word-spacing:12.330612px;}
.ws15d3_c00001{word-spacing:12.336624px;}
.ws1a4d_c00001{word-spacing:12.340800px;}
.ws1782_c00001{word-spacing:12.342636px;}
.ws1225_c00001{word-spacing:12.345912px;}
.ws96_c00001{word-spacing:12.348000px;}
.ws1423_c00001{word-spacing:12.348648px;}
.ws14b7_c00001{word-spacing:12.354660px;}
.ws70d_c00001{word-spacing:12.362400px;}
.ws1b4_c00001{word-spacing:12.366684px;}
.wsa29_c00001{word-spacing:12.372696px;}
.wsf1a_c00001{word-spacing:12.376800px;}
.ws177a_c00001{word-spacing:12.378708px;}
.ws15aa_c00001{word-spacing:12.390732px;}
.ws821_c00001{word-spacing:12.405600px;}
.ws1816_c00001{word-spacing:12.408768px;}
.wse54_c00001{word-spacing:12.412800px;}
.wseed_c00001{word-spacing:12.420000px;}
.ws189f_c00001{word-spacing:12.420792px;}
.ws547_c00001{word-spacing:12.427200px;}
.ws11d6_c00001{word-spacing:12.431556px;}
.ws1b3_c00001{word-spacing:12.432816px;}
.ws725_c00001{word-spacing:12.441600px;}
.ws1ae_c00001{word-spacing:12.444840px;}
.ws9dd_c00001{word-spacing:12.448800px;}
.ws1927_c00001{word-spacing:12.450852px;}
.wsf2a_c00001{word-spacing:12.456000px;}
.ws194b_c00001{word-spacing:12.456864px;}
.ws74d_c00001{word-spacing:12.462876px;}
.ws87d_c00001{word-spacing:12.463200px;}
.ws168d_c00001{word-spacing:12.474900px;}
.ws546_c00001{word-spacing:12.477600px;}
.ws56f_c00001{word-spacing:12.484800px;}
.ws99e_c00001{word-spacing:12.492000px;}
.ws18c2_c00001{word-spacing:12.492936px;}
.ws59f_c00001{word-spacing:12.499200px;}
.ws71a_c00001{word-spacing:12.506400px;}
.ws9e0_c00001{word-spacing:12.513600px;}
.ws318_c00001{word-spacing:12.520800px;}
.ws168c_c00001{word-spacing:12.522996px;}
.ws132a_c00001{word-spacing:12.523788px;}
.ws59b_c00001{word-spacing:12.528000px;}
.ws1938_c00001{word-spacing:12.529008px;}
.ws973_c00001{word-spacing:12.535200px;}
.wsda3_c00001{word-spacing:12.542400px;}
.ws316_c00001{word-spacing:12.549600px;}
.wsa89_c00001{word-spacing:12.556800px;}
.ws56e_c00001{word-spacing:12.564000px;}
.ws1976_c00001{word-spacing:12.571092px;}
.ws58e_c00001{word-spacing:12.571200px;}
.ws820_c00001{word-spacing:12.578400px;}
.ws11d3_c00001{word-spacing:12.583080px;}
.ws1700_c00001{word-spacing:12.583116px;}
.ws95_c00001{word-spacing:12.585600px;}
.ws1864_c00001{word-spacing:12.589128px;}
.ws9df_c00001{word-spacing:12.592800px;}
.ws14cf_c00001{word-spacing:12.595140px;}
.ws5a0_c00001{word-spacing:12.600000px;}
.ws2c8_c00001{word-spacing:12.601152px;}
.ws12fe_c00001{word-spacing:12.602844px;}
.ws1ad_c00001{word-spacing:12.607164px;}
.wsa4a_c00001{word-spacing:12.607200px;}
.ws126d_c00001{word-spacing:12.609432px;}
.ws1588_c00001{word-spacing:12.613176px;}
.wse92_c00001{word-spacing:12.614400px;}
.ws10f2_c00001{word-spacing:12.616020px;}
.ws16f7_c00001{word-spacing:12.619188px;}
.wscea_c00001{word-spacing:12.621600px;}
.ws10f1_c00001{word-spacing:12.622608px;}
.wsafd_c00001{word-spacing:12.625200px;}
.ws548_c00001{word-spacing:12.628800px;}
.wsaad_c00001{word-spacing:12.629196px;}
.ws1828_c00001{word-spacing:12.631212px;}
.ws1104_c00001{word-spacing:12.635784px;}
.wse4b_c00001{word-spacing:12.636000px;}
.ws186a_c00001{word-spacing:12.637224px;}
.wseb8_c00001{word-spacing:12.643200px;}
.ws19ae_c00001{word-spacing:12.643236px;}
.ws1926_c00001{word-spacing:12.649248px;}
.ws1611_c00001{word-spacing:12.655260px;}
.ws124a_c00001{word-spacing:12.655548px;}
.ws19d6_c00001{word-spacing:12.661272px;}
.ws124b_c00001{word-spacing:12.662136px;}
.ws126c_c00001{word-spacing:12.668724px;}
.ws1526_c00001{word-spacing:12.679308px;}
.ws846_c00001{word-spacing:12.682224px;}
.ws2c6_c00001{word-spacing:12.685320px;}
.ws2c7_c00001{word-spacing:12.691332px;}
.ws152b_c00001{word-spacing:12.697344px;}
.ws895_c00001{word-spacing:12.703356px;}
.ws152d_c00001{word-spacing:12.709368px;}
.wsac6_c00001{word-spacing:12.715200px;}
.ws18d6_c00001{word-spacing:12.715380px;}
.ws894_c00001{word-spacing:12.721392px;}
.ws1527_c00001{word-spacing:12.727404px;}
.wse2d_c00001{word-spacing:12.729600px;}
.ws1551_c00001{word-spacing:12.739428px;}
.ws317_c00001{word-spacing:12.744000px;}
.wsc00_c00001{word-spacing:12.751200px;}
.wsb4a_c00001{word-spacing:12.751452px;}
.ws706_c00001{word-spacing:12.758400px;}
.ws8d8_c00001{word-spacing:12.765600px;}
.wscec_c00001{word-spacing:12.772800px;}
.wse0d_c00001{word-spacing:12.787200px;}
.ws184b_c00001{word-spacing:12.799548px;}
.ws189d_c00001{word-spacing:12.805560px;}
.ws4d7_c00001{word-spacing:12.808800px;}
.ws184c_c00001{word-spacing:12.811572px;}
.wscf9_c00001{word-spacing:12.816000px;}
.wsca8_c00001{word-spacing:12.823200px;}
.ws19e7_c00001{word-spacing:12.823596px;}
.ws9aa_c00001{word-spacing:12.830400px;}
.ws3a6_c00001{word-spacing:12.837600px;}
.wsf4f_c00001{word-spacing:12.844800px;}
.ws1946_c00001{word-spacing:12.847644px;}
.wsb88_c00001{word-spacing:12.852000px;}
.ws1928_c00001{word-spacing:12.853656px;}
.wsd75_c00001{word-spacing:12.859200px;}
.ws7e0_c00001{word-spacing:12.866400px;}
.ws707_c00001{word-spacing:12.873600px;}
.wsa1f_c00001{word-spacing:12.880800px;}
.ws3a7_c00001{word-spacing:12.888000px;}
.wsf9_c00001{word-spacing:12.895200px;}
.ws667_c00001{word-spacing:12.902400px;}
.wsa0_c00001{word-spacing:12.909600px;}
.ws7df_c00001{word-spacing:12.916800px;}
.ws8d9_c00001{word-spacing:12.924000px;}
.wsa20_c00001{word-spacing:12.931200px;}
.ws13ad_c00001{word-spacing:12.932244px;}
.wsac8_c00001{word-spacing:12.938400px;}
.ws124c_c00001{word-spacing:12.945420px;}
.ws92c_c00001{word-spacing:12.945600px;}
.wsa5b_c00001{word-spacing:12.949848px;}
.wsbd9_c00001{word-spacing:12.952800px;}
.ws18e3_c00001{word-spacing:12.955860px;}
.ws9a9_c00001{word-spacing:12.960000px;}
.ws1466_c00001{word-spacing:12.961872px;}
.ws12c5_c00001{word-spacing:12.965184px;}
.wsfa_c00001{word-spacing:12.967200px;}
.ws150b_c00001{word-spacing:12.967884px;}
.ws12ff_c00001{word-spacing:12.971772px;}
.ws1601_c00001{word-spacing:12.973896px;}
.wsac7_c00001{word-spacing:12.974400px;}
.ws1637_c00001{word-spacing:12.979908px;}
.wsc01_c00001{word-spacing:12.981600px;}
.ws12c6_c00001{word-spacing:12.984948px;}
.ws945_c00001{word-spacing:12.988800px;}
.ws1304_c00001{word-spacing:12.991536px;}
.ws1544_c00001{word-spacing:12.991932px;}
.ws62d_c00001{word-spacing:12.996000px;}
.ws92b_c00001{word-spacing:13.003200px;}
.ws13ac_c00001{word-spacing:13.011300px;}
.wsf92_c00001{word-spacing:13.017888px;}
.ws17c5_c00001{word-spacing:13.021992px;}
.ws17c4_c00001{word-spacing:13.028004px;}
.ws12c4_c00001{word-spacing:13.031064px;}
.ws99c_c00001{word-spacing:13.032000px;}
.ws159c_c00001{word-spacing:13.034016px;}
.wsf93_c00001{word-spacing:13.037652px;}
.ws15c1_c00001{word-spacing:13.046040px;}
.wsca9_c00001{word-spacing:13.046400px;}
.ws169f_c00001{word-spacing:13.052052px;}
.ws159b_c00001{word-spacing:13.058064px;}
.wsa5e_c00001{word-spacing:13.064076px;}
.ws1736_c00001{word-spacing:13.070088px;}
.ws1abf_c00001{word-spacing:13.075200px;}
.ws169e_c00001{word-spacing:13.076100px;}
.ws1478_c00001{word-spacing:13.082112px;}
.ws1ad9_c00001{word-spacing:13.082400px;}
.ws15c0_c00001{word-spacing:13.088124px;}
.ws17c2_c00001{word-spacing:13.094136px;}
.ws15bf_c00001{word-spacing:13.106160px;}
.ws1bf_c00001{word-spacing:13.111200px;}
.ws1479_c00001{word-spacing:13.112172px;}
.wscc7_c00001{word-spacing:13.140000px;}
.ws17cc_c00001{word-spacing:13.154256px;}
.wsa5d_c00001{word-spacing:13.160268px;}
.ws62f_c00001{word-spacing:13.161600px;}
.ws84a_c00001{word-spacing:13.168800px;}
.wse15_c00001{word-spacing:13.176000px;}
.ws1a99_c00001{word-spacing:13.183200px;}
.ws19b7_c00001{word-spacing:13.184316px;}
.ws62e_c00001{word-spacing:13.190400px;}
.ws34d_c00001{word-spacing:13.197600px;}
.ws109_c00001{word-spacing:13.204800px;}
.wse57_c00001{word-spacing:13.212000px;}
.ws97b_c00001{word-spacing:13.219200px;}
.ws22e_c00001{word-spacing:13.226400px;}
.wsd0a_c00001{word-spacing:13.233600px;}
.wsec0_c00001{word-spacing:13.240800px;}
.ws8d4_c00001{word-spacing:13.248000px;}
.wsc8c_c00001{word-spacing:13.255200px;}
.wsb34_c00001{word-spacing:13.262400px;}
.ws10a_c00001{word-spacing:13.269600px;}
.ws34b_c00001{word-spacing:13.276800px;}
.ws1ac3_c00001{word-spacing:13.284000px;}
.ws62_c00001{word-spacing:13.291200px;}
.ws12ac_c00001{word-spacing:13.294584px;}
.ws34c_c00001{word-spacing:13.298400px;}
.ws1be_c00001{word-spacing:13.305600px;}
.ws17bf_c00001{word-spacing:13.310568px;}
.ws705_c00001{word-spacing:13.312800px;}
.ws12ab_c00001{word-spacing:13.314348px;}
.ws152e_c00001{word-spacing:13.316580px;}
.ws1955_c00001{word-spacing:13.320000px;}
.ws17fe_c00001{word-spacing:13.322592px;}
.wsf5b_c00001{word-spacing:13.327200px;}
.ws7ae_c00001{word-spacing:13.328604px;}
.ws1214_c00001{word-spacing:13.334112px;}
.ws70f_c00001{word-spacing:13.334400px;}
.wsd42_c00001{word-spacing:13.334616px;}
.ws12d1_c00001{word-spacing:13.340700px;}
.ws7ad_c00001{word-spacing:13.346640px;}
.wsfdb_c00001{word-spacing:13.347288px;}
.wsf58_c00001{word-spacing:13.348800px;}
.ws15da_c00001{word-spacing:13.352652px;}
.wsfdc_c00001{word-spacing:13.353876px;}
.ws1ac4_c00001{word-spacing:13.356000px;}
.ws34e_c00001{word-spacing:13.363200px;}
.ws1ac0_c00001{word-spacing:13.370400px;}
.ws12c3_c00001{word-spacing:13.373640px;}
.ws1849_c00001{word-spacing:13.376700px;}
.ws1908_c00001{word-spacing:13.382712px;}
.ws12aa_c00001{word-spacing:13.386816px;}
.ws1020_c00001{word-spacing:13.393404px;}
.ws17e8_c00001{word-spacing:13.394736px;}
.ws122d_c00001{word-spacing:13.399992px;}
.ws1144_c00001{word-spacing:13.406580px;}
.ws177f_c00001{word-spacing:13.406760px;}
.wsa5c_c00001{word-spacing:13.412772px;}
.wsf5c_c00001{word-spacing:13.413600px;}
.ws17fb_c00001{word-spacing:13.418784px;}
.ws1657_c00001{word-spacing:13.430808px;}
.ws1659_c00001{word-spacing:13.436820px;}
.wsb35_c00001{word-spacing:13.442400px;}
.ws1523_c00001{word-spacing:13.442832px;}
.ws188c_c00001{word-spacing:13.448844px;}
.wse6f_c00001{word-spacing:13.449600px;}
.ws1524_c00001{word-spacing:13.454856px;}
.wsf47_c00001{word-spacing:13.464000px;}
.wseca_c00001{word-spacing:13.471200px;}
.ws1a8e_c00001{word-spacing:13.478400px;}
.ws48e_c00001{word-spacing:13.485600px;}
.ws1a92_c00001{word-spacing:13.492800px;}
.wsdc7_c00001{word-spacing:13.500000px;}
.ws823_c00001{word-spacing:13.507200px;}
.ws1a8f_c00001{word-spacing:13.514400px;}
.ws1a20_c00001{word-spacing:13.520988px;}
.wsbdc_c00001{word-spacing:13.528800px;}
.ws1a21_c00001{word-spacing:13.533012px;}
.wsf37_c00001{word-spacing:13.536000px;}
.ws210_c00001{word-spacing:13.543200px;}
.ws9a2_c00001{word-spacing:13.545036px;}
.ws8f4_c00001{word-spacing:13.550400px;}
.ws16ee_c00001{word-spacing:13.551048px;}
.ws17e6_c00001{word-spacing:13.557060px;}
.wsf02_c00001{word-spacing:13.557600px;}
.ws42_c00001{word-spacing:13.564800px;}
.wsa6a_c00001{word-spacing:13.569084px;}
.ws476_c00001{word-spacing:13.572000px;}
.ws8b0_c00001{word-spacing:13.579200px;}
.ws41_c00001{word-spacing:13.586400px;}
.ws16ed_c00001{word-spacing:13.587120px;}
.ws168b_c00001{word-spacing:13.593132px;}
.wsd53_c00001{word-spacing:13.593600px;}
.ws1da_c00001{word-spacing:13.600800px;}
.ws1a6a_c00001{word-spacing:13.608000px;}
.ws211_c00001{word-spacing:13.615200px;}
.wsc5f_c00001{word-spacing:13.622400px;}
.ws122_c00001{word-spacing:13.629600px;}
.ws92e_c00001{word-spacing:13.636800px;}
.ws47f_c00001{word-spacing:13.644000px;}
.ws402_c00001{word-spacing:13.651200px;}
.ws12f8_c00001{word-spacing:13.656924px;}
.ws121_c00001{word-spacing:13.658400px;}
.ws1872_c00001{word-spacing:13.665276px;}
.ws71b_c00001{word-spacing:13.665600px;}
.ws1242_c00001{word-spacing:13.670100px;}
.ws86f_c00001{word-spacing:13.672800px;}
.ws1183_c00001{word-spacing:13.676688px;}
.ws153a_c00001{word-spacing:13.677300px;}
.ws8b2_c00001{word-spacing:13.680000px;}
.ws11a9_c00001{word-spacing:13.683276px;}
.ws1837_c00001{word-spacing:13.683312px;}
.ws1d9_c00001{word-spacing:13.687200px;}
.wsc13_c00001{word-spacing:13.689324px;}
.ws16f1_c00001{word-spacing:13.695336px;}
.ws11a4_c00001{word-spacing:13.696452px;}
.wsaba_c00001{word-spacing:13.701348px;}
.wsa18_c00001{word-spacing:13.701600px;}
.ws120b_c00001{word-spacing:13.703040px;}
.ws16b2_c00001{word-spacing:13.707360px;}
.wsd52_c00001{word-spacing:13.708800px;}
.ws11a3_c00001{word-spacing:13.709628px;}
.ws8b1_c00001{word-spacing:13.716000px;}
.ws108b_c00001{word-spacing:13.716216px;}
.ws17fc_c00001{word-spacing:13.719384px;}
.ws13c1_c00001{word-spacing:13.722804px;}
.wseee_c00001{word-spacing:13.723200px;}
.ws1182_c00001{word-spacing:13.729392px;}
.ws4b2_c00001{word-spacing:13.730400px;}
.ws1211_c00001{word-spacing:13.735980px;}
.wsfb8_c00001{word-spacing:13.742568px;}
.ws1210_c00001{word-spacing:13.749156px;}
.ws1752_c00001{word-spacing:13.749444px;}
.ws18f3_c00001{word-spacing:13.755456px;}
.wseef_c00001{word-spacing:13.759200px;}
.ws2fa_c00001{word-spacing:13.762224px;}
.ws150f_c00001{word-spacing:13.767480px;}
.ws1996_c00001{word-spacing:13.773492px;}
.ws18f2_c00001{word-spacing:13.779504px;}
.ws19b3_c00001{word-spacing:13.785516px;}
.ws1805_c00001{word-spacing:13.797540px;}
.wsabb_c00001{word-spacing:13.803552px;}
.ws153b_c00001{word-spacing:13.821588px;}
.ws19ce_c00001{word-spacing:13.839624px;}
.ws1568_c00001{word-spacing:13.851648px;}
.ws1742_c00001{word-spacing:13.857660px;}
.ws489_c00001{word-spacing:13.860000px;}
.ws187d_c00001{word-spacing:13.869684px;}
.wsadf_c00001{word-spacing:13.874400px;}
.ws1915_c00001{word-spacing:13.875696px;}
.ws1887_c00001{word-spacing:13.881708px;}
.wsc12_c00001{word-spacing:13.887720px;}
.ws5db_c00001{word-spacing:13.888800px;}
.ws187c_c00001{word-spacing:13.893732px;}
.ws771_c00001{word-spacing:13.896000px;}
.ws16c2_c00001{word-spacing:13.899744px;}
.wsd8d_c00001{word-spacing:13.903200px;}
.ws150e_c00001{word-spacing:13.905756px;}
.wsbbe_c00001{word-spacing:13.910400px;}
.ws772_c00001{word-spacing:13.924800px;}
.wsb2d_c00001{word-spacing:13.932000px;}
.wsae0_c00001{word-spacing:13.939200px;}
.ws3e5_c00001{word-spacing:13.946400px;}
.ws12a5_c00001{word-spacing:13.946796px;}
.ws375_c00001{word-spacing:13.953600px;}
.ws9a8_c00001{word-spacing:13.960800px;}
.ws842_c00001{word-spacing:13.968000px;}
.wsf57_c00001{word-spacing:13.975200px;}
.ws3e7_c00001{word-spacing:13.982400px;}
.wsaf8_c00001{word-spacing:13.989600px;}
.ws158a_c00001{word-spacing:13.989924px;}
.ws3ff_c00001{word-spacing:13.996800px;}
.ws376_c00001{word-spacing:14.004000px;}
.ws158d_c00001{word-spacing:14.007960px;}
.ws3e6_c00001{word-spacing:14.011200px;}
.ws48a_c00001{word-spacing:14.018400px;}
.ws17a8_c00001{word-spacing:14.019984px;}
.ws827_c00001{word-spacing:14.025600px;}
.ws118c_c00001{word-spacing:14.025852px;}
.ws17ca_c00001{word-spacing:14.025996px;}
.ws175b_c00001{word-spacing:14.032008px;}
.ws45d_c00001{word-spacing:14.032800px;}
.ws17cf_c00001{word-spacing:14.038020px;}
.ws11a8_c00001{word-spacing:14.039028px;}
.wsbbd_c00001{word-spacing:14.040000px;}
.ws1842_c00001{word-spacing:14.044032px;}
.ws45e_c00001{word-spacing:14.047200px;}
.ws158e_c00001{word-spacing:14.050044px;}
.ws11aa_c00001{word-spacing:14.052204px;}
.wsa21_c00001{word-spacing:14.054400px;}
.ws85e_c00001{word-spacing:14.056056px;}
.ws12a4_c00001{word-spacing:14.058792px;}
.wsd8c_c00001{word-spacing:14.061600px;}
.ws1589_c00001{word-spacing:14.062068px;}
.ws118b_c00001{word-spacing:14.065380px;}
.wse62_c00001{word-spacing:14.068800px;}
.ws1192_c00001{word-spacing:14.071968px;}
.ws19a2_c00001{word-spacing:14.074092px;}
.wsb16_c00001{word-spacing:14.076000px;}
.ws108a_c00001{word-spacing:14.078556px;}
.ws368_c00001{word-spacing:14.080104px;}
.ws104a_c00001{word-spacing:14.085144px;}
.ws1750_c00001{word-spacing:14.092128px;}
.wsf18_c00001{word-spacing:14.097600px;}
.ws192f_c00001{word-spacing:14.098140px;}
.ws1049_c00001{word-spacing:14.098320px;}
.ws173d_c00001{word-spacing:14.104152px;}
.ws1191_c00001{word-spacing:14.104908px;}
.ws173c_c00001{word-spacing:14.110164px;}
.wsb1c_c00001{word-spacing:14.112000px;}
.ws170d_c00001{word-spacing:14.116176px;}
.ws53f_c00001{word-spacing:14.122188px;}
.ws12a3_c00001{word-spacing:14.124672px;}
.ws369_c00001{word-spacing:14.128200px;}
.wsb82_c00001{word-spacing:14.140224px;}
.ws53e_c00001{word-spacing:14.146236px;}
.ws1704_c00001{word-spacing:14.152248px;}
.wsd90_c00001{word-spacing:14.155200px;}
.ws173b_c00001{word-spacing:14.158260px;}
.wsb84_c00001{word-spacing:14.164272px;}
.wsa9c_c00001{word-spacing:14.169600px;}
.ws1969_c00001{word-spacing:14.170284px;}
.ws5a2_c00001{word-spacing:14.184000px;}
.ws1705_c00001{word-spacing:14.188320px;}
.wsb81_c00001{word-spacing:14.194332px;}
.ws1c2_c00001{word-spacing:14.198400px;}
.ws1a58_c00001{word-spacing:14.205600px;}
.wsd92_c00001{word-spacing:14.212800px;}
.ws1888_c00001{word-spacing:14.218380px;}
.wsd73_c00001{word-spacing:14.234400px;}
.ws744_c00001{word-spacing:14.241600px;}
.ws1485_c00001{word-spacing:14.248440px;}
.ws5a3_c00001{word-spacing:14.248800px;}
.ws987_c00001{word-spacing:14.256000px;}
.ws308_c00001{word-spacing:14.270400px;}
.ws16f0_c00001{word-spacing:14.272488px;}
.ws1994_c00001{word-spacing:14.277600px;}
.ws17ac_c00001{word-spacing:14.284512px;}
.ws55b_c00001{word-spacing:14.284800px;}
.ws5a1_c00001{word-spacing:14.292000px;}
.ws46f_c00001{word-spacing:14.299200px;}
.wsb1b_c00001{word-spacing:14.306400px;}
.ws455_c00001{word-spacing:14.320800px;}
.wsa9d_c00001{word-spacing:14.328000px;}
.ws745_c00001{word-spacing:14.335200px;}
.wsd93_c00001{word-spacing:14.342400px;}
.wsec_c00001{word-spacing:14.349600px;}
.wsf40_c00001{word-spacing:14.356800px;}
.wsb83_c00001{word-spacing:14.362668px;}
.ws454_c00001{word-spacing:14.364000px;}
.ws1c1_c00001{word-spacing:14.371200px;}
.wsb4b_c00001{word-spacing:14.374692px;}
.ws425_c00001{word-spacing:14.378400px;}
.ws1922_c00001{word-spacing:14.380704px;}
.wsd51_c00001{word-spacing:14.385600px;}
.wscbf_c00001{word-spacing:14.392800px;}
.ws185d_c00001{word-spacing:14.398740px;}
.ws46e_c00001{word-spacing:14.400000px;}
.ws1944_c00001{word-spacing:14.404752px;}
.wsd74_c00001{word-spacing:14.407200px;}
.ws198e_c00001{word-spacing:14.410764px;}
.ws59a_c00001{word-spacing:14.414400px;}
.ws1273_c00001{word-spacing:14.414544px;}
.ws1865_c00001{word-spacing:14.416776px;}
.ws10e5_c00001{word-spacing:14.421132px;}
.wsafb_c00001{word-spacing:14.421600px;}
.ws8e0_c00001{word-spacing:14.422788px;}
.ws11fe_c00001{word-spacing:14.427720px;}
.ws916_c00001{word-spacing:14.428800px;}
.ws1041_c00001{word-spacing:14.434308px;}
.ws1885_c00001{word-spacing:14.434812px;}
.wse43_c00001{word-spacing:14.436000px;}
.wsb7f_c00001{word-spacing:14.440896px;}
.wsd91_c00001{word-spacing:14.443200px;}
.ws988_c00001{word-spacing:14.450400px;}
.ws11ff_c00001{word-spacing:14.454072px;}
.ws309_c00001{word-spacing:14.457600px;}
.ws1272_c00001{word-spacing:14.467248px;}
.ws141f_c00001{word-spacing:14.470884px;}
.ws837_c00001{word-spacing:14.472000px;}
.ws1921_c00001{word-spacing:14.476896px;}
.ws1042_c00001{word-spacing:14.480424px;}
.wsf8_c00001{word-spacing:14.482224px;}
.ws141e_c00001{word-spacing:14.482908px;}
.ws6d8_c00001{word-spacing:14.488920px;}
.ws142b_c00001{word-spacing:14.494932px;}
.ws1a48_c00001{word-spacing:14.500800px;}
.ws16f8_c00001{word-spacing:14.500944px;}
.wsa46_c00001{word-spacing:14.506956px;}
.ws1429_c00001{word-spacing:14.518980px;}
.ws1843_c00001{word-spacing:14.531004px;}
.ws336_c00001{word-spacing:14.536800px;}
.ws1991_c00001{word-spacing:14.537016px;}
.ws1a23_c00001{word-spacing:14.543028px;}
.ws3b_c00001{word-spacing:14.544000px;}
.ws142a_c00001{word-spacing:14.549040px;}
.ws1904_c00001{word-spacing:14.555052px;}
.wsefa_c00001{word-spacing:14.558400px;}
.ws1968_c00001{word-spacing:14.579100px;}
.ws64f_c00001{word-spacing:14.580000px;}
.wse9d_c00001{word-spacing:14.587200px;}
.ws726_c00001{word-spacing:14.594400px;}
.ws17ea_c00001{word-spacing:14.597136px;}
.ws835_c00001{word-spacing:14.601600px;}
.ws18c1_c00001{word-spacing:14.603148px;}
.wsc27_c00001{word-spacing:14.616000px;}
.ws186f_c00001{word-spacing:14.621184px;}
.ws650_c00001{word-spacing:14.623200px;}
.ws1436_c00001{word-spacing:14.627196px;}
.wseff_c00001{word-spacing:14.637600px;}
.ws177d_c00001{word-spacing:14.639220px;}
.ws8f6_c00001{word-spacing:14.644800px;}
.ws141d_c00001{word-spacing:14.651244px;}
.ws982_c00001{word-spacing:14.652000px;}
.ws3a8_c00001{word-spacing:14.659200px;}
.ws3c8_c00001{word-spacing:14.666400px;}
.ws8a_c00001{word-spacing:14.673600px;}
.ws165_c00001{word-spacing:14.680800px;}
.ws913_c00001{word-spacing:14.688000px;}
.ws3fe_c00001{word-spacing:14.695200px;}
.wsc35_c00001{word-spacing:14.699340px;}
.ws915_c00001{word-spacing:14.702400px;}
.ws164_c00001{word-spacing:14.709600px;}
.ws6e0_c00001{word-spacing:14.711364px;}
.wsae1_c00001{word-spacing:14.716800px;}
.ws1986_c00001{word-spacing:14.723388px;}
.ws79a_c00001{word-spacing:14.724000px;}
.ws2b4_c00001{word-spacing:14.730768px;}
.ws3c_c00001{word-spacing:14.731200px;}
.ws171_c00001{word-spacing:14.737356px;}
.ws335_c00001{word-spacing:14.738400px;}
.ws1680_c00001{word-spacing:14.741424px;}
.ws1171_c00001{word-spacing:14.743944px;}
.ws3a1_c00001{word-spacing:14.745600px;}
.ws12ae_c00001{word-spacing:14.750532px;}
.wsc65_c00001{word-spacing:14.752800px;}
.ws244_c00001{word-spacing:14.753448px;}
.ws22f_c00001{word-spacing:14.757120px;}
.wsa80_c00001{word-spacing:14.759460px;}
.wsb17_c00001{word-spacing:14.760000px;}
.ws1339_c00001{word-spacing:14.763708px;}
.ws14a4_c00001{word-spacing:14.765472px;}
.wsb18_c00001{word-spacing:14.767200px;}
.ws1580_c00001{word-spacing:14.771484px;}
.ws3a9_c00001{word-spacing:14.774400px;}
.ws1170_c00001{word-spacing:14.776884px;}
.ws6d3_c00001{word-spacing:14.777496px;}
.ws429_c00001{word-spacing:14.781600px;}
.ws1338_c00001{word-spacing:14.783472px;}
.ws189c_c00001{word-spacing:14.783508px;}
.ws1208_c00001{word-spacing:14.790060px;}
.ws184a_c00001{word-spacing:14.795532px;}
.ws8b_c00001{word-spacing:14.796000px;}
.ws116f_c00001{word-spacing:14.796648px;}
.ws81e_c00001{word-spacing:14.803200px;}
.ws243_c00001{word-spacing:14.807556px;}
.ws2b3_c00001{word-spacing:14.809824px;}
.ws12a0_c00001{word-spacing:14.816412px;}
.wsb19_c00001{word-spacing:14.817600px;}
.ws61f_c00001{word-spacing:14.819580px;}
.ws119f_c00001{word-spacing:14.823000px;}
.ws19c1_c00001{word-spacing:14.825592px;}
.wsc30_c00001{word-spacing:14.829588px;}
.wsc2f_c00001{word-spacing:14.836176px;}
.ws19c0_c00001{word-spacing:14.837616px;}
.ws1209_c00001{word-spacing:14.842764px;}
.ws15d7_c00001{word-spacing:14.843628px;}
.wseba_c00001{word-spacing:14.846400px;}
.ws15d8_c00001{word-spacing:14.855652px;}
.ws6d7_c00001{word-spacing:14.861664px;}
.ws1447_c00001{word-spacing:14.867676px;}
.wsd68_c00001{word-spacing:14.868000px;}
.ws620_c00001{word-spacing:14.873688px;}
.ws185a_c00001{word-spacing:14.879700px;}
.ws1468_c00001{word-spacing:14.885712px;}
.wsb72_c00001{word-spacing:14.889600px;}
.ws245_c00001{word-spacing:14.903748px;}
.ws81d_c00001{word-spacing:14.911200px;}
.ws1799_c00001{word-spacing:14.915772px;}
.wsc70_c00001{word-spacing:14.918400px;}
.ws242_c00001{word-spacing:14.927796px;}
.ws796_c00001{word-spacing:14.932800px;}
.ws1a55_c00001{word-spacing:14.940000px;}
.ws193b_c00001{word-spacing:14.945832px;}
.ws838_c00001{word-spacing:14.947200px;}
.ws1995_c00001{word-spacing:14.951844px;}
.ws8ba_c00001{word-spacing:14.954400px;}
.ws15a4_c00001{word-spacing:14.957856px;}
.wscf6_c00001{word-spacing:14.961600px;}
.ws66c_c00001{word-spacing:14.968800px;}
.ws15a5_c00001{word-spacing:14.969880px;}
.ws1889_c00001{word-spacing:14.975892px;}
.ws54c_c00001{word-spacing:14.990400px;}
.ws190_c00001{word-spacing:14.997600px;}
.ws170a_c00001{word-spacing:14.999940px;}
.ws8c0_c00001{word-spacing:15.004800px;}
.ws1930_c00001{word-spacing:15.011964px;}
.wseaf_c00001{word-spacing:15.012000px;}
.ws78a_c00001{word-spacing:15.019200px;}
.ws54b_c00001{word-spacing:15.026400px;}
.ws293_c00001{word-spacing:15.033600px;}
.ws928_c00001{word-spacing:15.040800px;}
.ws7ec_c00001{word-spacing:15.048000px;}
.ws8c1_c00001{word-spacing:15.055200px;}
.ws409_c00001{word-spacing:15.062400px;}
.ws5a9_c00001{word-spacing:15.069600px;}
.wsa0f_c00001{word-spacing:15.076800px;}
.wsb69_c00001{word-spacing:15.078096px;}
.ws3f9_c00001{word-spacing:15.084000px;}
.ws1348_c00001{word-spacing:15.086520px;}
.ws5f6_c00001{word-spacing:15.090120px;}
.ws5b3_c00001{word-spacing:15.091200px;}
.wsb3c_c00001{word-spacing:15.098400px;}
.ws10f7_c00001{word-spacing:15.099696px;}
.ws66b_c00001{word-spacing:15.105600px;}
.ws94d_c00001{word-spacing:15.108156px;}
.ws927_c00001{word-spacing:15.112800px;}
.ws5f7_c00001{word-spacing:15.114168px;}
.ws1196_c00001{word-spacing:15.119460px;}
.ws18e_c00001{word-spacing:15.120000px;}
.ws610_c00001{word-spacing:15.120180px;}
.ws114e_c00001{word-spacing:15.126048px;}
.ws184f_c00001{word-spacing:15.126192px;}
.ws54d_c00001{word-spacing:15.127200px;}
.ws1497_c00001{word-spacing:15.132204px;}
.wsde5_c00001{word-spacing:15.134400px;}
.ws170f_c00001{word-spacing:15.138216px;}
.ws18f_c00001{word-spacing:15.141600px;}
.ws1907_c00001{word-spacing:15.144228px;}
.ws1195_c00001{word-spacing:15.145812px;}
.ws929_c00001{word-spacing:15.148800px;}
.ws174f_c00001{word-spacing:15.150240px;}
.ws11ea_c00001{word-spacing:15.152400px;}
.wsdfa_c00001{word-spacing:15.156000px;}
.ws124d_c00001{word-spacing:15.158988px;}
.ws94e_c00001{word-spacing:15.162264px;}
.wsacc_c00001{word-spacing:15.163200px;}
.ws10f9_c00001{word-spacing:15.165576px;}
.wsc42_c00001{word-spacing:15.170400px;}
.ws10f8_c00001{word-spacing:15.172164px;}
.ws1347_c00001{word-spacing:15.178752px;}
.ws172_c00001{word-spacing:15.191928px;}
.ws1a86_c00001{word-spacing:15.192000px;}
.ws12ad_c00001{word-spacing:15.198516px;}
.wsa7f_c00001{word-spacing:15.204348px;}
.ws114d_c00001{word-spacing:15.205104px;}
.ws1a0a_c00001{word-spacing:15.210360px;}
.wsacd_c00001{word-spacing:15.213600px;}
.ws6df_c00001{word-spacing:15.216372px;}
.ws839_c00001{word-spacing:15.220800px;}
.ws1906_c00001{word-spacing:15.222384px;}
.ws6de_c00001{word-spacing:15.228396px;}
.ws1a0b_c00001{word-spacing:15.234408px;}
.wsbd2_c00001{word-spacing:15.235200px;}
.wsba9_c00001{word-spacing:15.240420px;}
.ws6b1_c00001{word-spacing:15.242400px;}
.ws60f_c00001{word-spacing:15.252444px;}
.wse93_c00001{word-spacing:15.271200px;}
.wse8a_c00001{word-spacing:15.278400px;}
.ws1a67_c00001{word-spacing:15.285600px;}
.ws19be_c00001{word-spacing:15.288516px;}
.ws943_c00001{word-spacing:15.292800px;}
.ws1a8b_c00001{word-spacing:15.300000px;}
.wsc6d_c00001{word-spacing:15.306552px;}
.ws4a7_c00001{word-spacing:15.307200px;}
.ws17e0_c00001{word-spacing:15.312564px;}
.ws1a4e_c00001{word-spacing:15.314400px;}
.ws1a6f_c00001{word-spacing:15.321600px;}
.ws18ba_c00001{word-spacing:15.324588px;}
.wsef3_c00001{word-spacing:15.328800px;}
.ws21e_c00001{word-spacing:15.336000px;}
.ws1945_c00001{word-spacing:15.342624px;}
.ws1a49_c00001{word-spacing:15.343200px;}
.ws604_c00001{word-spacing:15.350400px;}
.ws560_c00001{word-spacing:15.357600px;}
.ws605_c00001{word-spacing:15.364800px;}
.ws55f_c00001{word-spacing:15.372000px;}
.ws1a2c_c00001{word-spacing:15.372684px;}
.ws439_c00001{word-spacing:15.379200px;}
.ws168f_c00001{word-spacing:15.384708px;}
.ws1a66_c00001{word-spacing:15.386400px;}
.ws5ad_c00001{word-spacing:15.393600px;}
.wsd32_c00001{word-spacing:15.400800px;}
.ws944_c00001{word-spacing:15.408000px;}
.wscce_c00001{word-spacing:15.414768px;}
.wsa1a_c00001{word-spacing:15.415200px;}
.ws5ac_c00001{word-spacing:15.422400px;}
.ws854_c00001{word-spacing:15.429600px;}
.wse17_c00001{word-spacing:15.436800px;}
.wsefe_c00001{word-spacing:15.444000px;}
.ws1735_c00001{word-spacing:15.450840px;}
.ws10c_c00001{word-spacing:15.451200px;}
.ws10b_c00001{word-spacing:15.458400px;}
.ws9fe_c00001{word-spacing:15.465600px;}
.ws19cf_c00001{word-spacing:15.468876px;}
.ws21d_c00001{word-spacing:15.472800px;}
.wse16_c00001{word-spacing:15.480000px;}
.ws21f_c00001{word-spacing:15.487200px;}
.ws4a8_c00001{word-spacing:15.494400px;}
.ws1213_c00001{word-spacing:15.494976px;}
.ws611_c00001{word-spacing:15.498936px;}
.ws12b8_c00001{word-spacing:15.501564px;}
.ws10d_c00001{word-spacing:15.501600px;}
.ws1673_c00001{word-spacing:15.504948px;}
.ws11f9_c00001{word-spacing:15.508152px;}
.ws1795_c00001{word-spacing:15.510960px;}
.ws10a0_c00001{word-spacing:15.514740px;}
.wsf85_c00001{word-spacing:15.521328px;}
.ws129d_c00001{word-spacing:15.527916px;}
.ws198c_c00001{word-spacing:15.528996px;}
.wsbef_c00001{word-spacing:15.534504px;}
.wsba8_c00001{word-spacing:15.535008px;}
.ws11f8_c00001{word-spacing:15.541092px;}
.ws11c9_c00001{word-spacing:15.547680px;}
.ws1aa5_c00001{word-spacing:15.552000px;}
.ws190a_c00001{word-spacing:15.553044px;}
.ws17e4_c00001{word-spacing:15.559056px;}
.ws424_c00001{word-spacing:15.559200px;}
.ws109f_c00001{word-spacing:15.567444px;}
.ws1483_c00001{word-spacing:15.571080px;}
.ws1ae0_c00001{word-spacing:15.580800px;}
.wsb6a_c00001{word-spacing:15.583104px;}
.ws179d_c00001{word-spacing:15.589116px;}
.wsccd_c00001{word-spacing:15.595128px;}
.wsf60_c00001{word-spacing:15.595200px;}
.wsb67_c00001{word-spacing:15.601140px;}
.ws1ad2_c00001{word-spacing:15.602400px;}
.ws7b2_c00001{word-spacing:15.609600px;}
.ws1712_c00001{word-spacing:15.613164px;}
.wsdcf_c00001{word-spacing:15.624000px;}
.wsba7_c00001{word-spacing:15.625188px;}
.ws59d_c00001{word-spacing:15.631200px;}
.ws1aad_c00001{word-spacing:15.638400px;}
.ws78f_c00001{word-spacing:15.645600px;}
.wsbaa_c00001{word-spacing:15.649236px;}
.wsd8f_c00001{word-spacing:15.652800px;}
.ws197e_c00001{word-spacing:15.655248px;}
.wsd8e_c00001{word-spacing:15.660000px;}
.ws16e9_c00001{word-spacing:15.661260px;}
.wse19_c00001{word-spacing:15.674400px;}
.wsb41_c00001{word-spacing:15.681600px;}
.wsb68_c00001{word-spacing:15.685308px;}
.ws44f_c00001{word-spacing:15.688800px;}
.ws18c8_c00001{word-spacing:15.691320px;}
.wsc07_c00001{word-spacing:15.696000px;}
.ws490_c00001{word-spacing:15.703200px;}
.ws194d_c00001{word-spacing:15.703344px;}
.wscee_c00001{word-spacing:15.710400px;}
.wsb6b_c00001{word-spacing:15.721380px;}
.wsf4e_c00001{word-spacing:15.724800px;}
.ws3cb_c00001{word-spacing:15.732000px;}
.wsa02_c00001{word-spacing:15.739200px;}
.ws16ea_c00001{word-spacing:15.739416px;}
.ws450_c00001{word-spacing:15.746400px;}
.ws423_c00001{word-spacing:15.753600px;}
.ws59c_c00001{word-spacing:15.760800px;}
.ws54_c00001{word-spacing:15.768000px;}
.wsa6e_c00001{word-spacing:15.775200px;}
.ws53_c00001{word-spacing:15.782400px;}
.ws96b_c00001{word-spacing:15.789600px;}
.ws59e_c00001{word-spacing:15.796800px;}
.ws10a1_c00001{word-spacing:15.798024px;}
.ws510_c00001{word-spacing:15.804000px;}
.ws3ca_c00001{word-spacing:15.811200px;}
.ws19dd_c00001{word-spacing:15.817572px;}
.ws48f_c00001{word-spacing:15.818400px;}
.ws1247_c00001{word-spacing:15.824376px;}
.wsb29_c00001{word-spacing:15.825600px;}
.ws19ca_c00001{word-spacing:15.829596px;}
.ws11ca_c00001{word-spacing:15.830964px;}
.ws503_c00001{word-spacing:15.832800px;}
.ws1a03_c00001{word-spacing:15.835608px;}
.ws5bf_c00001{word-spacing:15.840000px;}
.ws169d_c00001{word-spacing:15.841620px;}
.ws117d_c00001{word-spacing:15.844140px;}
.wsdc6_c00001{word-spacing:15.847200px;}
.ws1722_c00001{word-spacing:15.847632px;}
.ws117c_c00001{word-spacing:15.850728px;}
.ws85f_c00001{word-spacing:15.853644px;}
.ws504_c00001{word-spacing:15.854400px;}
.ws101d_c00001{word-spacing:15.857316px;}
.ws179e_c00001{word-spacing:15.859656px;}
.wsa6f_c00001{word-spacing:15.861600px;}
.ws117e_c00001{word-spacing:15.863904px;}
.ws16f5_c00001{word-spacing:15.865668px;}
.wsaf5_c00001{word-spacing:15.868800px;}
.wsbe4_c00001{word-spacing:15.870492px;}
.ws8e8_c00001{word-spacing:15.871680px;}
.ws1959_c00001{word-spacing:15.876000px;}
.wsfd3_c00001{word-spacing:15.877080px;}
.wsc24_c00001{word-spacing:15.883200px;}
.ws105c_c00001{word-spacing:15.883668px;}
.ws11f3_c00001{word-spacing:15.890256px;}
.ws78e_c00001{word-spacing:15.890400px;}
.ws950_c00001{word-spacing:15.895728px;}
.ws105b_c00001{word-spacing:15.896844px;}
.wsa0e_c00001{word-spacing:15.897600px;}
.ws11f4_c00001{word-spacing:15.903432px;}
.wsd7c_c00001{word-spacing:15.904800px;}
.ws233_c00001{word-spacing:15.913764px;}
.ws169b_c00001{word-spacing:15.919776px;}
.ws1482_c00001{word-spacing:15.925788px;}
.ws234_c00001{word-spacing:15.931800px;}
.ws169a_c00001{word-spacing:15.937812px;}
.ws11f5_c00001{word-spacing:15.942960px;}
.wsd26_c00001{word-spacing:15.948000px;}
.ws14c7_c00001{word-spacing:15.949836px;}
.ws951_c00001{word-spacing:15.955848px;}
.ws12b9_c00001{word-spacing:15.956136px;}
.ws19a8_c00001{word-spacing:15.997932px;}
.ws1ab6_c00001{word-spacing:15.998400px;}
.ws198d_c00001{word-spacing:16.027992px;}
.ws1a30_c00001{word-spacing:16.034004px;}
.ws19a7_c00001{word-spacing:16.040016px;}
.wse0b_c00001{word-spacing:16.041600px;}
.ws47e_c00001{word-spacing:16.048800px;}
.ws1890_c00001{word-spacing:16.052040px;}
.wsf06_c00001{word-spacing:16.056000px;}
.ws277_c00001{word-spacing:16.077600px;}
.ws5dc_c00001{word-spacing:16.084800px;}
.ws1adb_c00001{word-spacing:16.092000px;}
.ws834_c00001{word-spacing:16.106400px;}
.ws403_c00001{word-spacing:16.113600px;}
.ws18a1_c00001{word-spacing:16.118172px;}
.ws3c5_c00001{word-spacing:16.120800px;}
.ws3c6_c00001{word-spacing:16.135200px;}
.ws5c0_c00001{word-spacing:16.149600px;}
.ws638_c00001{word-spacing:16.156800px;}
.ws276_c00001{word-spacing:16.164000px;}
.ws12b0_c00001{word-spacing:16.166952px;}
.ws96f_c00001{word-spacing:16.171200px;}
.wscdd_c00001{word-spacing:16.178400px;}
.ws1035_c00001{word-spacing:16.180128px;}
.ws404_c00001{word-spacing:16.185600px;}
.ws833_c00001{word-spacing:16.192800px;}
.ws1033_c00001{word-spacing:16.199892px;}
.wsd66_c00001{word-spacing:16.200000px;}
.ws1714_c00001{word-spacing:16.202340px;}
.wsf05_c00001{word-spacing:16.207200px;}
.ws182b_c00001{word-spacing:16.208352px;}
.wsf9e_c00001{word-spacing:16.213068px;}
.ws191e_c00001{word-spacing:16.214364px;}
.wse0a_c00001{word-spacing:16.214400px;}
.ws1306_c00001{word-spacing:16.219656px;}
.ws16f9_c00001{word-spacing:16.220376px;}
.wse09_c00001{word-spacing:16.221600px;}
.ws1034_c00001{word-spacing:16.226244px;}
.ws5c1_c00001{word-spacing:16.228800px;}
.ws138f_c00001{word-spacing:16.232832px;}
.ws1abd_c00001{word-spacing:16.236000px;}
.ws18c0_c00001{word-spacing:16.238412px;}
.ws89d_c00001{word-spacing:16.239420px;}
.ws89c_c00001{word-spacing:16.246008px;}
.wsfd2_c00001{word-spacing:16.252596px;}
.ws1729_c00001{word-spacing:16.256448px;}
.ws147b_c00001{word-spacing:16.262460px;}
.ws4f6_c00001{word-spacing:16.272000px;}
.wsf9d_c00001{word-spacing:16.272360px;}
.ws101c_c00001{word-spacing:16.278948px;}
.ws147a_c00001{word-spacing:16.280496px;}
.wsbe5_c00001{word-spacing:16.285536px;}
.ws14bf_c00001{word-spacing:16.286508px;}
.ws1420_c00001{word-spacing:16.298532px;}
.wsd67_c00001{word-spacing:16.300800px;}
.ws153d_c00001{word-spacing:16.304544px;}
.wsd50_c00001{word-spacing:16.308000px;}
.ws141b_c00001{word-spacing:16.310556px;}
.ws18fa_c00001{word-spacing:16.328592px;}
.ws8e9_c00001{word-spacing:16.334604px;}
.wsa57_c00001{word-spacing:16.340616px;}
.ws289_c00001{word-spacing:16.344000px;}
.wsef7_c00001{word-spacing:16.372800px;}
.wsabe_c00001{word-spacing:16.376688px;}
.wsd5d_c00001{word-spacing:16.380000px;}
.ws17e9_c00001{word-spacing:16.382700px;}
.ws2f5_c00001{word-spacing:16.388712px;}
.ws1728_c00001{word-spacing:16.400736px;}
.ws422_c00001{word-spacing:16.408800px;}
.ws182a_c00001{word-spacing:16.418772px;}
.ws28a_c00001{word-spacing:16.423200px;}
.wsf22_c00001{word-spacing:16.430400px;}
.wsabd_c00001{word-spacing:16.430796px;}
.wsa58_c00001{word-spacing:16.436808px;}
.wsd3_c00001{word-spacing:16.437600px;}
.ws1a4a_c00001{word-spacing:16.444800px;}
.ws38f_c00001{word-spacing:16.452000px;}
.ws2f6_c00001{word-spacing:16.454844px;}
.wsdf9_c00001{word-spacing:16.459200px;}
.ws18fb_c00001{word-spacing:16.460856px;}
.wsa8e_c00001{word-spacing:16.466400px;}
.wsd97_c00001{word-spacing:16.473600px;}
.wse59_c00001{word-spacing:16.480800px;}
.wsd2_c00001{word-spacing:16.488000px;}
.ws169c_c00001{word-spacing:16.496928px;}
.wsd61_c00001{word-spacing:16.502400px;}
.ws38e_c00001{word-spacing:16.509600px;}
.ws538_c00001{word-spacing:16.516800px;}
.ws28b_c00001{word-spacing:16.524000px;}
.ws104f_c00001{word-spacing:16.529292px;}
.ws22a_c00001{word-spacing:16.531200px;}
.ws18d7_c00001{word-spacing:16.533000px;}
.ws421_c00001{word-spacing:16.538400px;}
.ws1a1e_c00001{word-spacing:16.539012px;}
.ws17da_c00001{word-spacing:16.545024px;}
.ws7cf_c00001{word-spacing:16.545600px;}
.ws15a2_c00001{word-spacing:16.551036px;}
.wsec1_c00001{word-spacing:16.552800px;}
.wsf04_c00001{word-spacing:16.560000px;}
.wsfda_c00001{word-spacing:16.562232px;}
.ws188e_c00001{word-spacing:16.563060px;}
.wscc5_c00001{word-spacing:16.567200px;}
.wsf7c_c00001{word-spacing:16.568820px;}
.wsc4_c00001{word-spacing:16.569072px;}
.wsa03_c00001{word-spacing:16.574400px;}
.ws197f_c00001{word-spacing:16.575084px;}
.ws1263_c00001{word-spacing:16.575408px;}
.ws1947_c00001{word-spacing:16.581096px;}
.wsd4f_c00001{word-spacing:16.581600px;}
.ws104d_c00001{word-spacing:16.581996px;}
.ws18d9_c00001{word-spacing:16.587108px;}
.ws917_c00001{word-spacing:16.588800px;}
.wsf7b_c00001{word-spacing:16.595172px;}
.wse5a_c00001{word-spacing:16.596000px;}
.ws918_c00001{word-spacing:16.603200px;}
.wsb9_c00001{word-spacing:16.605144px;}
.wsfee_c00001{word-spacing:16.608348px;}
.wsf09_c00001{word-spacing:16.610400px;}
.ws104e_c00001{word-spacing:16.614936px;}
.ws10ab_c00001{word-spacing:16.621524px;}
.ws1a61_c00001{word-spacing:16.624800px;}
.ws13aa_c00001{word-spacing:16.628112px;}
.wsfd9_c00001{word-spacing:16.634700px;}
.ws141c_c00001{word-spacing:16.635204px;}
.wsef6_c00001{word-spacing:16.639200px;}
.ws170c_c00001{word-spacing:16.641216px;}
.ws193c_c00001{word-spacing:16.647228px;}
.ws185c_c00001{word-spacing:16.653240px;}
.wsea3_c00001{word-spacing:16.653600px;}
.ws18d8_c00001{word-spacing:16.665264px;}
.wsbad_c00001{word-spacing:16.689600px;}
.ws186c_c00001{word-spacing:16.695324px;}
.ws1acd_c00001{word-spacing:16.704000px;}
.ws345_c00001{word-spacing:16.711200px;}
.ws15a3_c00001{word-spacing:16.713360px;}
.wse85_c00001{word-spacing:16.732800px;}
.ws6fc_c00001{word-spacing:16.747200px;}
.ws9b7_c00001{word-spacing:16.768800px;}
.ws1acc_c00001{word-spacing:16.776000px;}
.ws5ef_c00001{word-spacing:16.779492px;}
.wsd6e_c00001{word-spacing:16.783200px;}
.wsb78_c00001{word-spacing:16.790400px;}
.wsbfa_c00001{word-spacing:16.797600px;}
.wse56_c00001{word-spacing:16.812000px;}
.ws866_c00001{word-spacing:16.819200px;}
.wsc89_c00001{word-spacing:16.826400px;}
.wsbae_c00001{word-spacing:16.833600px;}
.wscf8_c00001{word-spacing:16.855200px;}
.ws346_c00001{word-spacing:16.862400px;}
.wsa24_c00001{word-spacing:16.869600px;}
.ws195a_c00001{word-spacing:16.875684px;}
.ws1a4_c00001{word-spacing:16.876800px;}
.ws1a5_c00001{word-spacing:16.884000px;}
.ws6fb_c00001{word-spacing:16.891200px;}
.ws12a2_c00001{word-spacing:16.891632px;}
.ws7ea_c00001{word-spacing:16.898400px;}
.ws18ac_c00001{word-spacing:16.899732px;}
.ws9b8_c00001{word-spacing:16.905600px;}
.ws194c_c00001{word-spacing:16.905744px;}
.ws12c1_c00001{word-spacing:16.911396px;}
.wscf7_c00001{word-spacing:16.912800px;}
.wsba_c00001{word-spacing:16.917768px;}
.ws12bf_c00001{word-spacing:16.917984px;}
.wsd6f_c00001{word-spacing:16.920000px;}
.ws76c_c00001{word-spacing:16.923780px;}
.wsd07_c00001{word-spacing:16.927200px;}
.ws1943_c00001{word-spacing:16.929792px;}
.ws12c0_c00001{word-spacing:16.931160px;}
.ws480_c00001{word-spacing:16.934400px;}
.ws1909_c00001{word-spacing:16.935804px;}
.ws1362_c00001{word-spacing:16.937748px;}
.wsd6d_c00001{word-spacing:16.941600px;}
.ws19d5_c00001{word-spacing:16.941816px;}
.ws12be_c00001{word-spacing:16.944336px;}
.ws170b_c00001{word-spacing:16.947828px;}
.ws9af_c00001{word-spacing:16.956000px;}
.ws1262_c00001{word-spacing:16.957512px;}
.ws865_c00001{word-spacing:16.963200px;}
.ws1391_c00001{word-spacing:16.964100px;}
.ws10dd_c00001{word-spacing:16.977276px;}
.ws181c_c00001{word-spacing:16.977888px;}
.ws1215_c00001{word-spacing:16.983864px;}
.ws10de_c00001{word-spacing:16.990452px;}
.ws1a40_c00001{word-spacing:16.995924px;}
.wse10_c00001{word-spacing:16.999200px;}
.ws193d_c00001{word-spacing:17.001936px;}
.ws12a1_c00001{word-spacing:17.003628px;}
.wsa25_c00001{word-spacing:17.006400px;}
.ws1a12_c00001{word-spacing:17.007948px;}
.ws5ee_c00001{word-spacing:17.013960px;}
.ws196a_c00001{word-spacing:17.019972px;}
.wse68_c00001{word-spacing:17.020800px;}
.ws181b_c00001{word-spacing:17.025984px;}
.ws9f3_c00001{word-spacing:17.031996px;}
.ws9f4_c00001{word-spacing:17.044020px;}
.ws14ce_c00001{word-spacing:17.050032px;}
.wsf3b_c00001{word-spacing:17.056800px;}
.ws9f2_c00001{word-spacing:17.068068px;}
.ws785_c00001{word-spacing:17.071200px;}
.ws17de_c00001{word-spacing:17.080092px;}
.ws9a3_c00001{word-spacing:17.092116px;}
.wsf1d_c00001{word-spacing:17.092800px;}
.wsf4c_c00001{word-spacing:17.100000px;}
.ws601_c00001{word-spacing:17.107200px;}
.ws862_c00001{word-spacing:17.114400px;}
.wsf64_c00001{word-spacing:17.121600px;}
.ws1743_c00001{word-spacing:17.122176px;}
.ws786_c00001{word-spacing:17.128800px;}
.wse20_c00001{word-spacing:17.132256px;}
.ws1ab0_c00001{word-spacing:17.136000px;}
.ws784_c00001{word-spacing:17.150400px;}
.ws9a4_c00001{word-spacing:17.152236px;}
.wsf3a_c00001{word-spacing:17.157600px;}
.ws1745_c00001{word-spacing:17.170272px;}
.ws15_c00001{word-spacing:17.172000px;}
.wse69_c00001{word-spacing:17.179200px;}
.ws1744_c00001{word-spacing:17.182296px;}
.ws7b8_c00001{word-spacing:17.186400px;}
.ws25d_c00001{word-spacing:17.193600px;}
.ws7f6_c00001{word-spacing:17.200800px;}
.wsf65_c00001{word-spacing:17.208000px;}
.ws8f5_c00001{word-spacing:17.215200px;}
.wsec9_c00001{word-spacing:17.222400px;}
.ws131_c00001{word-spacing:17.229600px;}
.ws14f_c00001{word-spacing:17.236800px;}
.ws7f7_c00001{word-spacing:17.244000px;}
.ws25f_c00001{word-spacing:17.251200px;}
.wse67_c00001{word-spacing:17.258400px;}
.ws150_c00001{word-spacing:17.265600px;}
.ws1584_c00001{word-spacing:17.266464px;}
.ws1861_c00001{word-spacing:17.272476px;}
.ws60d_c00001{word-spacing:17.272800px;}
.ws1084_c00001{word-spacing:17.273736px;}
.ws25e_c00001{word-spacing:17.280000px;}
.wsa67_c00001{word-spacing:17.284500px;}
.ws17_c00001{word-spacing:17.287200px;}
.ws1933_c00001{word-spacing:17.290512px;}
.ws16_c00001{word-spacing:17.294400px;}
.ws10d5_c00001{word-spacing:17.300088px;}
.wsec8_c00001{word-spacing:17.301600px;}
.ws1770_c00001{word-spacing:17.302536px;}
.ws113d_c00001{word-spacing:17.306676px;}
.ws1919_c00001{word-spacing:17.308548px;}
.ws1083_c00001{word-spacing:17.313264px;}
.wsc79_c00001{word-spacing:17.319852px;}
.ws7eb_c00001{word-spacing:17.323200px;}
.wsaa8_c00001{word-spacing:17.326440px;}
.ws16cb_c00001{word-spacing:17.332596px;}
.wse12_c00001{word-spacing:17.344800px;}
.ws1085_c00001{word-spacing:17.346204px;}
.ws60e_c00001{word-spacing:17.352000px;}
.ws602_c00001{word-spacing:17.366400px;}
.ws16cc_c00001{word-spacing:17.374680px;}
.ws19a5_c00001{word-spacing:17.386704px;}
.ws12a_c00001{word-spacing:17.409600px;}
.ws4a1_c00001{word-spacing:17.431200px;}
.ws792_c00001{word-spacing:17.445600px;}
.ws1845_c00001{word-spacing:17.446824px;}
.wsea8_c00001{word-spacing:17.467200px;}
.ws176f_c00001{word-spacing:17.470872px;}
.ws793_c00001{word-spacing:17.474400px;}
.ws4a2_c00001{word-spacing:17.481600px;}
.ws18a7_c00001{word-spacing:17.482896px;}
.ws82c_c00001{word-spacing:17.488800px;}
.ws354_c00001{word-spacing:17.496000px;}
.ws28d_c00001{word-spacing:17.503200px;}
.ws164f_c00001{word-spacing:17.506944px;}
.ws4a6_c00001{word-spacing:17.510400px;}
.ws8c7_c00001{word-spacing:17.517600px;}
.ws1354_c00001{word-spacing:17.524080px;}
.wse11_c00001{word-spacing:17.524800px;}
.ws1271_c00001{word-spacing:17.530668px;}
.ws164e_c00001{word-spacing:17.530992px;}
.ws28f_c00001{word-spacing:17.532000px;}
.ws8b5_c00001{word-spacing:17.537004px;}
.wse23_c00001{word-spacing:17.539200px;}
.ws113_c00001{word-spacing:17.546400px;}
.ws48d_c00001{word-spacing:17.553600px;}
.wsde8_c00001{word-spacing:17.560800px;}
.ws468_c00001{word-spacing:17.568000px;}
.ws8c5_c00001{word-spacing:17.575200px;}
.ws111_c00001{word-spacing:17.582400px;}
.ws275_c00001{word-spacing:17.589600px;}
.ws1a63_c00001{word-spacing:17.596800px;}
.ws274_c00001{word-spacing:17.604000px;}
.ws48c_c00001{word-spacing:17.611200px;}
.ws467_c00001{word-spacing:17.618400px;}
.ws12b_c00001{word-spacing:17.625600px;}
.ws19d0_c00001{word-spacing:17.627184px;}
.ws115b_c00001{word-spacing:17.629488px;}
.wse47_c00001{word-spacing:17.632800px;}
.ws1937_c00001{word-spacing:17.633196px;}
.wsdc0_c00001{word-spacing:17.640000px;}
.ws193f_c00001{word-spacing:17.645220px;}
.ws48b_c00001{word-spacing:17.647200px;}
.wsf84_c00001{word-spacing:17.649252px;}
.ws1839_c00001{word-spacing:17.651232px;}
.ws112_c00001{word-spacing:17.654400px;}
.ws1073_c00001{word-spacing:17.655840px;}
.ws19b2_c00001{word-spacing:17.657244px;}
.ws8d5_c00001{word-spacing:17.661600px;}
.ws13c_c00001{word-spacing:17.663256px;}
.ws12d9_c00001{word-spacing:17.669016px;}
.ws188d_c00001{word-spacing:17.669268px;}
.ws19e8_c00001{word-spacing:17.675280px;}
.wsf83_c00001{word-spacing:17.675604px;}
.ws28e_c00001{word-spacing:17.676000px;}
.ws81c_c00001{word-spacing:17.683200px;}
.ws8c6_c00001{word-spacing:17.690400px;}
.wsc31_c00001{word-spacing:17.695368px;}
.ws4a3_c00001{word-spacing:17.697600px;}
.ws1216_c00001{word-spacing:17.708544px;}
.wse55_c00001{word-spacing:17.719200px;}
.ws1353_c00001{word-spacing:17.721720px;}
.ws1846_c00001{word-spacing:17.723376px;}
.ws196f_c00001{word-spacing:17.729388px;}
.ws1833_c00001{word-spacing:17.741412px;}
.ws1834_c00001{word-spacing:17.759448px;}
.ws631_c00001{word-spacing:17.776800px;}
.wsbcf_c00001{word-spacing:17.791200px;}
.wsdbd_c00001{word-spacing:17.798400px;}
.ws1970_c00001{word-spacing:17.801532px;}
.wsb5_c00001{word-spacing:17.813556px;}
.wsdbe_c00001{word-spacing:17.820000px;}
.ws1997_c00001{word-spacing:17.837604px;}
.wse31_c00001{word-spacing:17.848800px;}
.wsdf1_c00001{word-spacing:17.856000px;}
.ws572_c00001{word-spacing:17.863200px;}
.wse32_c00001{word-spacing:17.870400px;}
.ws190c_c00001{word-spacing:17.873676px;}
.ws1a85_c00001{word-spacing:17.877600px;}
.ws24_c00001{word-spacing:17.884800px;}
.wsb6_c00001{word-spacing:17.885700px;}
.ws632_c00001{word-spacing:17.892000px;}
.wsbce_c00001{word-spacing:17.899200px;}
.ws1a78_c00001{word-spacing:17.906400px;}
.ws573_c00001{word-spacing:17.913600px;}
.ws589_c00001{word-spacing:17.928000px;}
.ws7b9_c00001{word-spacing:17.935200px;}
.ws43c_c00001{word-spacing:17.942400px;}
.ws1a84_c00001{word-spacing:17.949600px;}
.ws7b5_c00001{word-spacing:17.956800px;}
.ws515_c00001{word-spacing:17.964000px;}
.ws7b6_c00001{word-spacing:17.971200px;}
.ws981_c00001{word-spacing:17.978400px;}
.ws1792_c00001{word-spacing:17.981892px;}
.wse48_c00001{word-spacing:17.985600px;}
.ws1778_c00001{word-spacing:17.987904px;}
.ws574_c00001{word-spacing:17.992800px;}
.ws162b_c00001{word-spacing:17.999928px;}
.wsdbc_c00001{word-spacing:18.000000px;}
.ws19cd_c00001{word-spacing:18.005940px;}
.ws803_c00001{word-spacing:18.007200px;}
.ws12c7_c00001{word-spacing:18.011592px;}
.ws19bc_c00001{word-spacing:18.011952px;}
.wse1f_c00001{word-spacing:18.014400px;}
.ws1a33_c00001{word-spacing:18.017964px;}
.ws1139_c00001{word-spacing:18.018180px;}
.wsdec_c00001{word-spacing:18.028800px;}
.ws1a32_c00001{word-spacing:18.036000px;}
.ws10b3_c00001{word-spacing:18.037944px;}
.ws633_c00001{word-spacing:18.043200px;}
.ws10b4_c00001{word-spacing:18.044532px;}
.ws1a83_c00001{word-spacing:18.057600px;}
.ws58a_c00001{word-spacing:18.064800px;}
.ws23a_c00001{word-spacing:18.078084px;}
.ws1a02_c00001{word-spacing:18.084096px;}
.ws1940_c00001{word-spacing:18.090108px;}
.ws16e7_c00001{word-spacing:18.096120px;}
.ws1534_c00001{word-spacing:18.102132px;}
.ws19b8_c00001{word-spacing:18.114156px;}
.wsf07_c00001{word-spacing:18.122400px;}
.ws1a28_c00001{word-spacing:18.126180px;}
.ws19b6_c00001{word-spacing:18.132192px;}
.wsbba_c00001{word-spacing:18.136800px;}
.wsf1f_c00001{word-spacing:18.180000px;}
.ws1a0c_c00001{word-spacing:18.186300px;}
.wsef8_c00001{word-spacing:18.187200px;}
.ws692_c00001{word-spacing:18.194400px;}
.ws162c_c00001{word-spacing:18.198324px;}
.ws65a_c00001{word-spacing:18.208800px;}
.ws19b5_c00001{word-spacing:18.210348px;}
.ws1ada_c00001{word-spacing:18.223200px;}
.wscd9_c00001{word-spacing:18.230400px;}
.ws607_c00001{word-spacing:18.237600px;}
.ws65b_c00001{word-spacing:18.244800px;}
.ws9ac_c00001{word-spacing:18.252000px;}
.wsef9_c00001{word-spacing:18.259200px;}
.wsde0_c00001{word-spacing:18.266400px;}
.wsb_c00001{word-spacing:18.273600px;}
.wse40_c00001{word-spacing:18.280800px;}
.wsadd_c00001{word-spacing:18.288000px;}
.ws608_c00001{word-spacing:18.295200px;}
.wsa_c00001{word-spacing:18.309600px;}
.ws141a_c00001{word-spacing:18.312552px;}
.ws69e_c00001{word-spacing:18.316800px;}
.wscd1_c00001{word-spacing:18.324000px;}
.ws691_c00001{word-spacing:18.331200px;}
.wscfe_c00001{word-spacing:18.334404px;}
.wsd03_c00001{word-spacing:18.338400px;}
.wsfbb_c00001{word-spacing:18.340992px;}
.wsbbc_c00001{word-spacing:18.345600px;}
.ws1363_c00001{word-spacing:18.347580px;}
.ws2a4_c00001{word-spacing:18.352800px;}
.wsf1e_c00001{word-spacing:18.360000px;}
.wsd2e_c00001{word-spacing:18.360648px;}
.ws1278_c00001{word-spacing:18.360756px;}
.wsd2d_c00001{word-spacing:18.366660px;}
.ws69f_c00001{word-spacing:18.367200px;}
.ws1284_c00001{word-spacing:18.367344px;}
.ws1a1c_c00001{word-spacing:18.372672px;}
.wscfd_c00001{word-spacing:18.380520px;}
.ws9ab_c00001{word-spacing:18.381600px;}
.ws16e8_c00001{word-spacing:18.384696px;}
.ws1279_c00001{word-spacing:18.387108px;}
.ws6d2_c00001{word-spacing:18.396720px;}
.ws112c_c00001{word-spacing:18.400284px;}
.wse72_c00001{word-spacing:18.403200px;}
.wsfba_c00001{word-spacing:18.406872px;}
.wscd5_c00001{word-spacing:18.413460px;}
.ws17ab_c00001{word-spacing:18.414756px;}
.ws10fa_c00001{word-spacing:18.420048px;}
.ws10fb_c00001{word-spacing:18.426636px;}
.ws1a7b_c00001{word-spacing:18.432000px;}
.ws711_c00001{word-spacing:18.432792px;}
.ws1105_c00001{word-spacing:18.433224px;}
.ws15ab_c00001{word-spacing:18.444816px;}
.ws11fb_c00001{word-spacing:18.446400px;}
.wse91_c00001{word-spacing:18.453600px;}
.ws1535_c00001{word-spacing:18.456840px;}
.wsd13_c00001{word-spacing:18.460800px;}
.wscc1_c00001{word-spacing:18.468000px;}
.ws1a05_c00001{word-spacing:18.468864px;}
.ws1a06_c00001{word-spacing:18.474876px;}
.wsbbb_c00001{word-spacing:18.475200px;}
.ws712_c00001{word-spacing:18.480888px;}
.ws549_c00001{word-spacing:18.482400px;}
.wsa47_c00001{word-spacing:18.486900px;}
.wsa48_c00001{word-spacing:18.498924px;}
.ws99a_c00001{word-spacing:18.518400px;}
.ws1a0d_c00001{word-spacing:18.541008px;}
.ws185e_c00001{word-spacing:18.547020px;}
.ws78b_c00001{word-spacing:18.561600px;}
.wse88_c00001{word-spacing:18.590400px;}
.wsd8b_c00001{word-spacing:18.597600px;}
.ws19e1_c00001{word-spacing:18.601128px;}
.ws99b_c00001{word-spacing:18.604800px;}
.ws1419_c00001{word-spacing:18.607140px;}
.ws890_c00001{word-spacing:18.612000px;}
.ws863_c00001{word-spacing:18.619200px;}
.ws666_c00001{word-spacing:18.626400px;}
.wsd8a_c00001{word-spacing:18.633600px;}
.ws70e_c00001{word-spacing:18.640800px;}
.ws1a7e_c00001{word-spacing:18.648000px;}
.ws54a_c00001{word-spacing:18.662400px;}
.wsed4_c00001{word-spacing:18.669600px;}
.ws7e2_c00001{word-spacing:18.676800px;}
.ws8_c00001{word-spacing:18.684000px;}
.ws442_c00001{word-spacing:18.691200px;}
.ws209_c00001{word-spacing:18.698400px;}
.ws9_c00001{word-spacing:18.705600px;}
.ws1775_c00001{word-spacing:18.709344px;}
.ws20a_c00001{word-spacing:18.712800px;}
.ws10ca_c00001{word-spacing:18.716508px;}
.wsb42_c00001{word-spacing:18.720000px;}
.ws1365_c00001{word-spacing:18.723096px;}
.ws7fd_c00001{word-spacing:18.727200px;}
.ws1628_c00001{word-spacing:18.727380px;}
.ws135e_c00001{word-spacing:18.729684px;}
.ws1819_c00001{word-spacing:18.733392px;}
.wsa9a_c00001{word-spacing:18.734400px;}
.ws11ce_c00001{word-spacing:18.736272px;}
.ws935_c00001{word-spacing:18.739404px;}
.ws441_c00001{word-spacing:18.741600px;}
.ws10be_c00001{word-spacing:18.742860px;}
.ws15ac_c00001{word-spacing:18.745416px;}
.ws288_c00001{word-spacing:18.748800px;}
.ws119e_c00001{word-spacing:18.749448px;}
.ws195b_c00001{word-spacing:18.751428px;}
.ws1200_c00001{word-spacing:18.756036px;}
.ws1a7d_c00001{word-spacing:18.763200px;}
.ws11cf_c00001{word-spacing:18.769212px;}
.ws10bd_c00001{word-spacing:18.775800px;}
.ws934_c00001{word-spacing:18.805536px;}
.wsab1_c00001{word-spacing:18.808740px;}
.wsb00_c00001{word-spacing:18.823572px;}
.ws19e0_c00001{word-spacing:18.829584px;}
.ws72e_c00001{word-spacing:18.835200px;}
.ws17aa_c00001{word-spacing:18.835596px;}
.ws1a04_c00001{word-spacing:18.841608px;}
.ws1a73_c00001{word-spacing:18.864000px;}
.ws1418_c00001{word-spacing:18.865656px;}
.ws919_c00001{word-spacing:18.871200px;}
.ws761_c00001{word-spacing:18.878400px;}
.ws909_c00001{word-spacing:18.883692px;}
.ws1a7f_c00001{word-spacing:18.885600px;}
.ws90a_c00001{word-spacing:18.901728px;}
.wseb7_c00001{word-spacing:18.907200px;}
.wsbde_c00001{word-spacing:18.914400px;}
.wsad9_c00001{word-spacing:18.936000px;}
.ws91a_c00001{word-spacing:18.950400px;}
.ws1d4_c00001{word-spacing:18.957600px;}
.ws194f_c00001{word-spacing:18.961848px;}
.wsddb_c00001{word-spacing:18.964800px;}
.wsd31_c00001{word-spacing:18.979200px;}
.wsdef_c00001{word-spacing:18.986400px;}
.ws1d3_c00001{word-spacing:18.993600px;}
.wsa50_c00001{word-spacing:19.000800px;}
.ws58f_c00001{word-spacing:19.008000px;}
.ws1a72_c00001{word-spacing:19.015200px;}
.ws1417_c00001{word-spacing:19.021968px;}
.ws72f_c00001{word-spacing:19.022400px;}
.ws5d6_c00001{word-spacing:19.029600px;}
.wse79_c00001{word-spacing:19.036800px;}
.ws590_c00001{word-spacing:19.044000px;}
.ws533_c00001{word-spacing:19.051200px;}
.ws1296_c00001{word-spacing:19.052496px;}
.wsd3b_c00001{word-spacing:19.058400px;}
.ws5d5_c00001{word-spacing:19.065600px;}
.wscdb_c00001{word-spacing:19.072800px;}
.wsa51_c00001{word-spacing:19.080000px;}
.ws4e9_c00001{word-spacing:19.082088px;}
.ws1295_c00001{word-spacing:19.085436px;}
.ws760_c00001{word-spacing:19.087200px;}
.ws10dc_c00001{word-spacing:19.092024px;}
.wseb9_c00001{word-spacing:19.094400px;}
.ws612_c00001{word-spacing:19.100124px;}
.ws17ae_c00001{word-spacing:19.106136px;}
.ws163b_c00001{word-spacing:19.112148px;}
.wse7d_c00001{word-spacing:19.116000px;}
.ws1165_c00001{word-spacing:19.118376px;}
.ws534_c00001{word-spacing:19.123200px;}
.wscdc_c00001{word-spacing:19.130400px;}
.ws1164_c00001{word-spacing:19.131552px;}
.ws18bf_c00001{word-spacing:19.136196px;}
.ws15c5_c00001{word-spacing:19.142208px;}
.ws128a_c00001{word-spacing:19.144728px;}
.ws762_c00001{word-spacing:19.152000px;}
.ws17bb_c00001{word-spacing:19.166256px;}
.ws1ab8_c00001{word-spacing:19.173600px;}
.ws15c6_c00001{word-spacing:19.178280px;}
.wsdeb_c00001{word-spacing:19.188000px;}
.ws163e_c00001{word-spacing:19.190304px;}
.ws128b_c00001{word-spacing:19.190844px;}
.ws17ba_c00001{word-spacing:19.196316px;}
.ws18b7_c00001{word-spacing:19.208340px;}
.wse21_c00001{word-spacing:19.260000px;}
.wsf46_c00001{word-spacing:19.267200px;}
.ws1acf_c00001{word-spacing:19.303200px;}
.wsf44_c00001{word-spacing:19.310400px;}
.ws194e_c00001{word-spacing:19.316556px;}
.wsc19_c00001{word-spacing:19.322568px;}
.ws9db_c00001{word-spacing:19.324800px;}
.ws728_c00001{word-spacing:19.332000px;}
.ws163f_c00001{word-spacing:19.334592px;}
.ws1a69_c00001{word-spacing:19.339200px;}
.ws727_c00001{word-spacing:19.346400px;}
.ws83c_c00001{word-spacing:19.353600px;}
.wse4c_c00001{word-spacing:19.360800px;}
.ws844_c00001{word-spacing:19.368000px;}
.ws5b7_c00001{word-spacing:19.375200px;}
.ws13b1_c00001{word-spacing:19.381896px;}
.ws8f1_c00001{word-spacing:19.389600px;}
.ws77b_c00001{word-spacing:19.396800px;}
.ws9ed_c00001{word-spacing:19.404000px;}
.ws843_c00001{word-spacing:19.411200px;}
.ws693_c00001{word-spacing:19.418400px;}
.ws18e0_c00001{word-spacing:19.424772px;}
.ws51f_c00001{word-spacing:19.425600px;}
.ws1abc_c00001{word-spacing:19.432800px;}
.ws10db_c00001{word-spacing:19.434600px;}
.ws874_c00001{word-spacing:19.440000px;}
.wsc8e_c00001{word-spacing:19.447200px;}
.ws13b2_c00001{word-spacing:19.447776px;}
.ws1942_c00001{word-spacing:19.448820px;}
.ws129f_c00001{word-spacing:19.454364px;}
.ws51e_c00001{word-spacing:19.454400px;}
.wsa81_c00001{word-spacing:19.460952px;}
.wsec5_c00001{word-spacing:19.461600px;}
.ws3ac_c00001{word-spacing:19.466856px;}
.wsc8f_c00001{word-spacing:19.468800px;}
.ws1ace_c00001{word-spacing:19.476000px;}
.wsf45_c00001{word-spacing:19.483200px;}
.wsf03_c00001{word-spacing:19.490400px;}
.ws129e_c00001{word-spacing:19.500480px;}
.wse3f_c00001{word-spacing:19.512000px;}
.ws13b0_c00001{word-spacing:19.513656px;}
.ws163d_c00001{word-spacing:19.520964px;}
.ws1813_c00001{word-spacing:19.526976px;}
.ws740_c00001{word-spacing:19.540800px;}
.ws1638_c00001{word-spacing:19.551024px;}
.ws1812_c00001{word-spacing:19.557036px;}
.wsc18_c00001{word-spacing:19.563048px;}
.ws379_c00001{word-spacing:19.598400px;}
.ws8c9_c00001{word-spacing:19.605600px;}
.ws18a4_c00001{word-spacing:19.611144px;}
.ws683_c00001{word-spacing:19.612800px;}
.ws378_c00001{word-spacing:19.620000px;}
.ws5b6_c00001{word-spacing:19.634400px;}
.ws812_c00001{word-spacing:19.648800px;}
.ws18a5_c00001{word-spacing:19.653228px;}
.ws37a_c00001{word-spacing:19.656000px;}
.ws17ad_c00001{word-spacing:19.659240px;}
.ws5b5_c00001{word-spacing:19.663200px;}
.wsc17_c00001{word-spacing:19.671264px;}
.wse42_c00001{word-spacing:19.677600px;}
.wsb37_c00001{word-spacing:19.692000px;}
.ws4c9_c00001{word-spacing:19.699200px;}
.ws96a_c00001{word-spacing:19.706400px;}
.ws28_c00001{word-spacing:19.713600px;}
.ws6ca_c00001{word-spacing:19.720800px;}
.wsb36_c00001{word-spacing:19.728000px;}
.ws29_c00001{word-spacing:19.742400px;}
.ws8ca_c00001{word-spacing:19.749600px;}
.ws3bd_c00001{word-spacing:19.756800px;}
.ws37f_c00001{word-spacing:19.764000px;}
.ws685_c00001{word-spacing:19.771200px;}
.wsa64_c00001{word-spacing:19.778400px;}
.ws5e6_c00001{word-spacing:19.779480px;}
.ws27_c00001{word-spacing:19.785600px;}
.ws739_c00001{word-spacing:19.792800px;}
.ws12b5_c00001{word-spacing:19.796940px;}
.ws190e_c00001{word-spacing:19.797516px;}
.ws684_c00001{word-spacing:19.800000px;}
.ws1910_c00001{word-spacing:19.803528px;}
.ws79d_c00001{word-spacing:19.814400px;}
.ws1992_c00001{word-spacing:19.815552px;}
.ws123e_c00001{word-spacing:19.816704px;}
.ws3bc_c00001{word-spacing:19.821600px;}
.ws1265_c00001{word-spacing:19.823292px;}
.wse3e_c00001{word-spacing:19.828800px;}
.ws89f_c00001{word-spacing:19.829880px;}
.ws3be_c00001{word-spacing:19.836000px;}
.ws123d_c00001{word-spacing:19.836468px;}
.ws89e_c00001{word-spacing:19.843056px;}
.ws73a_c00001{word-spacing:19.843200px;}
.ws12b4_c00001{word-spacing:19.849644px;}
.ws73b_c00001{word-spacing:19.850400px;}
.ws18ea_c00001{word-spacing:19.863648px;}
.ws7d5_c00001{word-spacing:19.872000px;}
.ws123f_c00001{word-spacing:19.875996px;}
.ws14d5_c00001{word-spacing:19.881684px;}
.ws5e7_c00001{word-spacing:19.887696px;}
.ws18eb_c00001{word-spacing:19.893708px;}
.ws14d4_c00001{word-spacing:19.929780px;}
.wsc0e_c00001{word-spacing:19.980000px;}
.wsc62_c00001{word-spacing:20.001600px;}
.ws2a3_c00001{word-spacing:20.008800px;}
.wsb56_c00001{word-spacing:20.016000px;}
.ws1762_c00001{word-spacing:20.019960px;}
.wse2e_c00001{word-spacing:20.030400px;}
.ws2a2_c00001{word-spacing:20.037600px;}
.ws5e8_c00001{word-spacing:20.037996px;}
.wsc61_c00001{word-spacing:20.044800px;}
.ws992_c00001{word-spacing:20.052000px;}
.ws930_c00001{word-spacing:20.059200px;}
.wsc0d_c00001{word-spacing:20.066400px;}
.wse36_c00001{word-spacing:20.073600px;}
.ws92f_c00001{word-spacing:20.080800px;}
.ws1763_c00001{word-spacing:20.086092px;}
.wsbd1_c00001{word-spacing:20.088000px;}
.ws3d6_c00001{word-spacing:20.095200px;}
.wsa26_c00001{word-spacing:20.102400px;}
.wsbdf_c00001{word-spacing:20.109600px;}
.wsda1_c00001{word-spacing:20.116800px;}
.wsa83_c00001{word-spacing:20.124000px;}
.wsbd0_c00001{word-spacing:20.131200px;}
.wsa84_c00001{word-spacing:20.138400px;}
.ws364_c00001{word-spacing:20.140200px;}
.wsda2_c00001{word-spacing:20.145600px;}
.ws18b4_c00001{word-spacing:20.146212px;}
.ws30d_c00001{word-spacing:20.152800px;}
.ws57f_c00001{word-spacing:20.165868px;}
.wsdb1_c00001{word-spacing:20.167200px;}
.wsc63_c00001{word-spacing:20.174400px;}
.wsff6_c00001{word-spacing:20.179044px;}
.wsc39_c00001{word-spacing:20.181600px;}
.wsfea_c00001{word-spacing:20.185632px;}
.ws187e_c00001{word-spacing:20.194308px;}
.ws30e_c00001{word-spacing:20.196000px;}
.wsfe9_c00001{word-spacing:20.198808px;}
.wse37_c00001{word-spacing:20.210400px;}
.wsff7_c00001{word-spacing:20.211984px;}
.wse51_c00001{word-spacing:20.217600px;}
.wsfb3_c00001{word-spacing:20.218572px;}
.ws129c_c00001{word-spacing:20.231748px;}
.ws991_c00001{word-spacing:20.239200px;}
.ws723_c00001{word-spacing:20.246400px;}
.wsfeb_c00001{word-spacing:20.264688px;}
.wsf2f_c00001{word-spacing:20.289600px;}
.ws1ac9_c00001{word-spacing:20.296800px;}
.wsdba_c00001{word-spacing:20.311200px;}
.ws1a90_c00001{word-spacing:20.318400px;}
.ws140e_c00001{word-spacing:20.338596px;}
.wsd04_c00001{word-spacing:20.340000px;}
.wsf0c_c00001{word-spacing:20.354400px;}
.wsf16_c00001{word-spacing:20.361600px;}
.wsf3c_c00001{word-spacing:20.383200px;}
.wseeb_c00001{word-spacing:20.390400px;}
.ws19ed_c00001{word-spacing:20.398716px;}
.ws74a_c00001{word-spacing:20.404800px;}
.wsd72_c00001{word-spacing:20.412000px;}
.wscb6_c00001{word-spacing:20.419200px;}
.wsad5_c00001{word-spacing:20.426400px;}
.wsd55_c00001{word-spacing:20.433600px;}
.ws331_c00001{word-spacing:20.455200px;}
.ws808_c00001{word-spacing:20.462400px;}
.wscb7_c00001{word-spacing:20.469600px;}
.ws8ef_c00001{word-spacing:20.476800px;}
.ws749_c00001{word-spacing:20.484000px;}
.wsd71_c00001{word-spacing:20.491200px;}
.wscc8_c00001{word-spacing:20.498400px;}
.wsda0_c00001{word-spacing:20.505600px;}
.ws332_c00001{word-spacing:20.512800px;}
.ws16e3_c00001{word-spacing:20.512944px;}
.ws1883_c00001{word-spacing:20.518956px;}
.ws8f0_c00001{word-spacing:20.520000px;}
.ws127b_c00001{word-spacing:20.521620px;}
.wsda4_c00001{word-spacing:20.527200px;}
.ws1a38_c00001{word-spacing:20.534400px;}
.ws127c_c00001{word-spacing:20.534796px;}
.ws809_c00001{word-spacing:20.541600px;}
.wsdb8_c00001{word-spacing:20.548800px;}
.wsdbb_c00001{word-spacing:20.556000px;}
.wsc93_c00001{word-spacing:20.561148px;}
.ws724_c00001{word-spacing:20.563200px;}
.wsb3_c00001{word-spacing:20.567736px;}
.ws127a_c00001{word-spacing:20.574324px;}
.ws1aac_c00001{word-spacing:20.577600px;}
.wsc94_c00001{word-spacing:20.580912px;}
.ws1718_c00001{word-spacing:20.603124px;}
.wsd96_c00001{word-spacing:20.613600px;}
.ws1717_c00001{word-spacing:20.627172px;}
.ws1aab_c00001{word-spacing:20.656800px;}
.wse35_c00001{word-spacing:20.664000px;}
.wsd54_c00001{word-spacing:20.671200px;}
.ws1724_c00001{word-spacing:20.705328px;}
.ws4c3_c00001{word-spacing:20.714400px;}
.ws1884_c00001{word-spacing:20.717352px;}
.wsa65_c00001{word-spacing:20.736000px;}
.wsce0_c00001{word-spacing:20.750400px;}
.ws140d_c00001{word-spacing:20.759436px;}
.wsfc_c00001{word-spacing:20.764800px;}
.ws17a6_c00001{word-spacing:20.765448px;}
.wsaf6_c00001{word-spacing:20.772000px;}
.ws1a89_c00001{word-spacing:20.779200px;}
.ws17a7_c00001{word-spacing:20.783484px;}
.ws655_c00001{word-spacing:20.786400px;}
.ws9ca_c00001{word-spacing:20.793600px;}
.wsfb_c00001{word-spacing:20.800800px;}
.ws3b1_c00001{word-spacing:20.815200px;}
.ws9ad_c00001{word-spacing:20.822400px;}
.ws250_c00001{word-spacing:20.829600px;}
.wsa63_c00001{word-spacing:20.836800px;}
.wsd5a_c00001{word-spacing:20.844000px;}
.wsd59_c00001{word-spacing:20.851200px;}
.wsa66_c00001{word-spacing:20.858400px;}
.ws12fb_c00001{word-spacing:20.864196px;}
.wsded_c00001{word-spacing:20.865600px;}
.ws17b9_c00001{word-spacing:20.867652px;}
.ws12e6_c00001{word-spacing:20.870784px;}
.ws9cb_c00001{word-spacing:20.872800px;}
.ws1866_c00001{word-spacing:20.879676px;}
.wsc2d_c00001{word-spacing:20.880000px;}
.ws12fa_c00001{word-spacing:20.883960px;}
.wsc2e_c00001{word-spacing:20.887200px;}
.ws1039_c00001{word-spacing:20.890548px;}
.ws4c4_c00001{word-spacing:20.894400px;}
.ws12f9_c00001{word-spacing:20.897136px;}
.wsd95_c00001{word-spacing:20.901600px;}
.ws1038_c00001{word-spacing:20.903724px;}
.wsd85_c00001{word-spacing:20.908800px;}
.wsfa1_c00001{word-spacing:20.910312px;}
.wsce1_c00001{word-spacing:20.916000px;}
.wsf7a_c00001{word-spacing:20.916900px;}
.ws19db_c00001{word-spacing:20.933784px;}
.wsf9f_c00001{word-spacing:20.936664px;}
.wsfa0_c00001{word-spacing:20.943252px;}
.ws3b0_c00001{word-spacing:20.944800px;}
.ws15ca_c00001{word-spacing:20.957832px;}
.ws1a2a_c00001{word-spacing:20.963844px;}
.ws990_c00001{word-spacing:20.988000px;}
.ws1a29_c00001{word-spacing:20.993904px;}
.ws15cb_c00001{word-spacing:20.999916px;}
.ws1663_c00001{word-spacing:21.005928px;}
.ws6ad_c00001{word-spacing:21.017952px;}
.wsf14_c00001{word-spacing:21.038400px;}
.wsb8a_c00001{word-spacing:21.067200px;}
.ws18df_c00001{word-spacing:21.078072px;}
.wsb24_c00001{word-spacing:21.088800px;}
.ws261_c00001{word-spacing:21.096000px;}
.ws6ac_c00001{word-spacing:21.108132px;}
.wsdb4_c00001{word-spacing:21.110400px;}
.wsa60_c00001{word-spacing:21.117600px;}
.wsb25_c00001{word-spacing:21.124800px;}
.ws17f_c00001{word-spacing:21.126168px;}
.ws260_c00001{word-spacing:21.132000px;}
.ws55e_c00001{word-spacing:21.139200px;}
.ws69c_c00001{word-spacing:21.153600px;}
.ws69d_c00001{word-spacing:21.160800px;}
.wsdee_c00001{word-spacing:21.168000px;}
.wsb79_c00001{word-spacing:21.175200px;}
.wsa61_c00001{word-spacing:21.182400px;}
.ws41e_c00001{word-spacing:21.189600px;}
.ws76d_c00001{word-spacing:21.196800px;}
.wsbeb_c00001{word-spacing:21.204000px;}
.ws55d_c00001{word-spacing:21.211200px;}
.ws17e_c00001{word-spacing:21.216348px;}
.wsf0e_c00001{word-spacing:21.218400px;}
.wsb8b_c00001{word-spacing:21.225600px;}
.ws8f3_c00001{word-spacing:21.232800px;}
.ws1867_c00001{word-spacing:21.240396px;}
.wsd9c_c00001{word-spacing:21.246408px;}
.wsb31_c00001{word-spacing:21.247200px;}
.ws1972_c00001{word-spacing:21.252420px;}
.ws68f_c00001{word-spacing:21.254400px;}
.ws1030_c00001{word-spacing:21.259476px;}
.wsdb5_c00001{word-spacing:21.261600px;}
.ws11ad_c00001{word-spacing:21.266064px;}
.ws16c0_c00001{word-spacing:21.270456px;}
.ws1016_c00001{word-spacing:21.279240px;}
.ws1aa7_c00001{word-spacing:21.283200px;}
.ws1017_c00001{word-spacing:21.285828px;}
.ws17d_c00001{word-spacing:21.288492px;}
.ws125f_c00001{word-spacing:21.292416px;}
.ws1031_c00001{word-spacing:21.299004px;}
.ws1aa8_c00001{word-spacing:21.304800px;}
.ws125e_c00001{word-spacing:21.305592px;}
.ws11ae_c00001{word-spacing:21.312180px;}
.ws68e_c00001{word-spacing:21.319200px;}
.ws1971_c00001{word-spacing:21.324564px;}
.ws9e2_c00001{word-spacing:21.336588px;}
.wsbf9_c00001{word-spacing:21.391200px;}
.ws9e3_c00001{word-spacing:21.396708px;}
.ws74c_c00001{word-spacing:21.420000px;}
.ws1382_c00001{word-spacing:21.430764px;}
.ws97_c00001{word-spacing:21.441600px;}
.wse9a_c00001{word-spacing:21.448800px;}
.wsdfb_c00001{word-spacing:21.463200px;}
.wscae_c00001{word-spacing:21.470400px;}
.wsab5_c00001{word-spacing:21.477600px;}
.wseec_c00001{word-spacing:21.484800px;}
.ws84e_c00001{word-spacing:21.492000px;}
.wsdf8_c00001{word-spacing:21.499200px;}
.ws98_c00001{word-spacing:21.506400px;}
.ws5d9_c00001{word-spacing:21.520800px;}
.wsbf8_c00001{word-spacing:21.528000px;}
.wscf3_c00001{word-spacing:21.542400px;}
.ws703_c00001{word-spacing:21.564000px;}
.ws93d_c00001{word-spacing:21.571200px;}
.ws34f_c00001{word-spacing:21.578400px;}
.wsab6_c00001{word-spacing:21.585600px;}
.ws5d8_c00001{word-spacing:21.592800px;}
.ws191b_c00001{word-spacing:21.595104px;}
.ws5d7_c00001{word-spacing:21.600000px;}
.wsdfc_c00001{word-spacing:21.607200px;}
.ws630_c00001{word-spacing:21.621600px;}
.ws13bd_c00001{word-spacing:21.634992px;}
.wscf4_c00001{word-spacing:21.636000px;}
.ws1015_c00001{word-spacing:21.661344px;}
.ws191c_c00001{word-spacing:21.685284px;}
.ws10c8_c00001{word-spacing:21.687696px;}
.ws19ff_c00001{word-spacing:21.691296px;}
.wse45_c00001{word-spacing:21.765600px;}
.wsc3f_c00001{word-spacing:21.772800px;}
.wsf3d_c00001{word-spacing:21.780000px;}
.ws758_c00001{word-spacing:21.808800px;}
.ws95e_c00001{word-spacing:21.816000px;}
.wse44_c00001{word-spacing:21.823200px;}
.wsa90_c00001{word-spacing:21.830400px;}
.ws2ac_c00001{word-spacing:21.837600px;}
.ws757_c00001{word-spacing:21.844800px;}
.wsc84_c00001{word-spacing:21.859200px;}
.ws77e_c00001{word-spacing:21.880800px;}
.ws867_c00001{word-spacing:21.888000px;}
.ws2ad_c00001{word-spacing:21.902400px;}
.wsb10_c00001{word-spacing:21.916800px;}
.ws77d_c00001{word-spacing:21.924000px;}
.wsa9b_c00001{word-spacing:21.931200px;}
.ws13bc_c00001{word-spacing:21.938040px;}
.wsa8f_c00001{word-spacing:21.938400px;}
.ws868_c00001{word-spacing:21.945600px;}
.ws10c6_c00001{word-spacing:21.951216px;}
.wsdf6_c00001{word-spacing:21.952800px;}
.wsf21_c00001{word-spacing:21.960000px;}
.ws1005_c00001{word-spacing:21.964392px;}
.ws2ab_c00001{word-spacing:21.967200px;}
.wsc85_c00001{word-spacing:21.974400px;}
.wse46_c00001{word-spacing:21.981600px;}
.wsc86_c00001{word-spacing:21.988800px;}
.ws10c7_c00001{word-spacing:21.990744px;}
.wsa72_c00001{word-spacing:21.997332px;}
.ws1a47_c00001{word-spacing:22.003200px;}
.ws124f_c00001{word-spacing:22.010508px;}
.ws1003_c00001{word-spacing:22.030272px;}
.ws1004_c00001{word-spacing:22.036860px;}
.ws639_c00001{word-spacing:22.039992px;}
.wsa52_c00001{word-spacing:22.046400px;}
.ws1a01_c00001{word-spacing:22.076064px;}
.ws1a00_c00001{word-spacing:22.088088px;}
.ws1ae1_c00001{word-spacing:22.096800px;}
.ws1713_c00001{word-spacing:22.100112px;}
.wsd63_c00001{word-spacing:22.104000px;}
.ws1ad0_c00001{word-spacing:22.118400px;}
.wsca7_c00001{word-spacing:22.140000px;}
.ws585_c00001{word-spacing:22.147200px;}
.wsca5_c00001{word-spacing:22.154400px;}
.ws19ab_c00001{word-spacing:22.160232px;}
.ws1ae2_c00001{word-spacing:22.161600px;}
.wsd62_c00001{word-spacing:22.190400px;}
.ws1aaf_c00001{word-spacing:22.204800px;}
.ws60b_c00001{word-spacing:22.212000px;}
.ws19e_c00001{word-spacing:22.219200px;}
.ws30b_c00001{word-spacing:22.226400px;}
.wsdc9_c00001{word-spacing:22.233600px;}
.ws30a_c00001{word-spacing:22.240800px;}
.ws19f_c00001{word-spacing:22.255200px;}
.ws910_c00001{word-spacing:22.262400px;}
.ws3c0_c00001{word-spacing:22.269600px;}
.ws856_c00001{word-spacing:22.276800px;}
.ws60c_c00001{word-spacing:22.284000px;}
.ws432_c00001{word-spacing:22.291200px;}
.ws30c_c00001{word-spacing:22.298400px;}
.wsbc9_c00001{word-spacing:22.305600px;}
.ws1445_c00001{word-spacing:22.310532px;}
.ws584_c00001{word-spacing:22.312800px;}
.ws433_c00001{word-spacing:22.320000px;}
.ws1642_c00001{word-spacing:22.322556px;}
.ws911_c00001{word-spacing:22.327200px;}
.ws1641_c00001{word-spacing:22.328568px;}
.ws8a3_c00001{word-spacing:22.334400px;}
.wsca6_c00001{word-spacing:22.341600px;}
.wsa53_c00001{word-spacing:22.348800px;}
.wsd76_c00001{word-spacing:22.356000px;}
.ws12b3_c00001{word-spacing:22.359672px;}
.ws12b2_c00001{word-spacing:22.366260px;}
.wse8d_c00001{word-spacing:22.370400px;}
.ws1931_c00001{word-spacing:22.376664px;}
.ws600_c00001{word-spacing:22.377600px;}
.ws12b1_c00001{word-spacing:22.386024px;}
.ws144_c00001{word-spacing:22.394700px;}
.ws145_c00001{word-spacing:22.418748px;}
.ws1a7a_c00001{word-spacing:22.420800px;}
.wsd5e_c00001{word-spacing:22.428000px;}
.wse61_c00001{word-spacing:22.471200px;}
.ws1932_c00001{word-spacing:22.490892px;}
.ws1788_c00001{word-spacing:22.520952px;}
.wsfd_c00001{word-spacing:22.521600px;}
.wsb3f_c00001{word-spacing:22.536000px;}
.wsc23_c00001{word-spacing:22.543200px;}
.wsfe_c00001{word-spacing:22.550400px;}
.ws1a79_c00001{word-spacing:22.557600px;}
.wsb3e_c00001{word-spacing:22.564800px;}
.ws462_c00001{word-spacing:22.572000px;}
.ws1446_c00001{word-spacing:22.575060px;}
.ws463_c00001{word-spacing:22.593600px;}
.wse5f_c00001{word-spacing:22.622400px;}
.ws737_c00001{word-spacing:22.629600px;}
.ws1276_c00001{word-spacing:22.629780px;}
.wsa85_c00001{word-spacing:22.636800px;}
.wse39_c00001{word-spacing:22.644000px;}
.wse38_c00001{word-spacing:22.651200px;}
.ws39e_c00001{word-spacing:22.658400px;}
.ws989_c00001{word-spacing:22.665600px;}
.ws1a2e_c00001{word-spacing:22.671252px;}
.wsc22_c00001{word-spacing:22.672800px;}
.ws19aa_c00001{word-spacing:22.677264px;}
.ws738_c00001{word-spacing:22.680000px;}
.ws1055_c00001{word-spacing:22.682484px;}
.ws464_c00001{word-spacing:22.687200px;}
.wsfc7_c00001{word-spacing:22.689072px;}
.ws1056_c00001{word-spacing:22.702248px;}
.ws10d3_c00001{word-spacing:22.708836px;}
.wsfc6_c00001{word-spacing:22.715424px;}
.ws174_c00001{word-spacing:22.728600px;}
.ws1364_c00001{word-spacing:22.735188px;}
.ws1358_c00001{word-spacing:22.741776px;}
.ws12cb_c00001{word-spacing:22.754952px;}
.ws1a2d_c00001{word-spacing:22.761432px;}
.ws39d_c00001{word-spacing:22.780800px;}
.wsecf_c00001{word-spacing:22.867200px;}
.wsde4_c00001{word-spacing:22.874400px;}
.ws635_c00001{word-spacing:22.881600px;}
.wsd5f_c00001{word-spacing:22.896000px;}
.ws206_c00001{word-spacing:22.903200px;}
.wsc5d_c00001{word-spacing:22.910400px;}
.wsd60_c00001{word-spacing:22.917600px;}
.ws75c_c00001{word-spacing:22.924800px;}
.wse0_c00001{word-spacing:22.932000px;}
.wsece_c00001{word-spacing:22.939200px;}
.ws204_c00001{word-spacing:22.953600px;}
.ws3ed_c00001{word-spacing:22.960800px;}
.wsbc0_c00001{word-spacing:22.975200px;}
.wsd35_c00001{word-spacing:22.982400px;}
.wseea_c00001{word-spacing:23.004000px;}
.wsbbf_c00001{word-spacing:23.011200px;}
.ws636_c00001{word-spacing:23.018400px;}
.ws880_c00001{word-spacing:23.032800px;}
.ws634_c00001{word-spacing:23.040000px;}
.wsecd_c00001{word-spacing:23.047200px;}
.wsc5e_c00001{word-spacing:23.054400px;}
.wsfcd_c00001{word-spacing:23.058000px;}
.ws1870_c00001{word-spacing:23.062032px;}
.ws112f_c00001{word-spacing:23.064588px;}
.ws205_c00001{word-spacing:23.068800px;}
.wsbe1_c00001{word-spacing:23.077764px;}
.ws110f_c00001{word-spacing:23.090940px;}
.wsfcc_c00001{word-spacing:23.104116px;}
.wsfce_c00001{word-spacing:23.110704px;}
.wsb5a_c00001{word-spacing:23.119200px;}
.ws19d8_c00001{word-spacing:23.128164px;}
.ws19d7_c00001{word-spacing:23.140188px;}
.wsb59_c00001{word-spacing:23.198400px;}
.ws958_c00001{word-spacing:23.256000px;}
.wsc4f_c00001{word-spacing:23.277600px;}
.wsc3d_c00001{word-spacing:23.284800px;}
.wsa35_c00001{word-spacing:23.292000px;}
.wsb9b_c00001{word-spacing:23.299200px;}
.wsb9a_c00001{word-spacing:23.313600px;}
.wsc4e_c00001{word-spacing:23.328000px;}
.ws6b9_c00001{word-spacing:23.342400px;}
.ws8f8_c00001{word-spacing:23.356800px;}
.wscc0_c00001{word-spacing:23.364000px;}
.ws1159_c00001{word-spacing:23.367636px;}
.ws8bb_c00001{word-spacing:23.371200px;}
.wsa36_c00001{word-spacing:23.378400px;}
.wsb9c_c00001{word-spacing:23.385600px;}
.ws1393_c00001{word-spacing:23.387400px;}
.ws19e2_c00001{word-spacing:23.392800px;}
.ws1120_c00001{word-spacing:23.400576px;}
.ws143a_c00001{word-spacing:23.404716px;}
.ws111f_c00001{word-spacing:23.407164px;}
.wse2f_c00001{word-spacing:23.407200px;}
.ws19f6_c00001{word-spacing:23.416740px;}
.wsfb5_c00001{word-spacing:23.426928px;}
.wsdf5_c00001{word-spacing:23.436000px;}
.ws111e_c00001{word-spacing:23.453280px;}
.ws8f9_c00001{word-spacing:23.457600px;}
.ws1392_c00001{word-spacing:23.466456px;}
.wsfb6_c00001{word-spacing:23.486220px;}
.ws479_c00001{word-spacing:23.529600px;}
.ws47b_c00001{word-spacing:23.565600px;}
.ws1a19_c00001{word-spacing:23.573052px;}
.wsdcd_c00001{word-spacing:23.580000px;}
.wsdf4_c00001{word-spacing:23.601600px;}
.wsdce_c00001{word-spacing:23.608800px;}
.ws47a_c00001{word-spacing:23.630400px;}
.wse0e_c00001{word-spacing:23.644800px;}
.wse63_c00001{word-spacing:23.652000px;}
.wsc51_c00001{word-spacing:23.659200px;}
.wsee3_c00001{word-spacing:23.666400px;}
.wsea6_c00001{word-spacing:23.680800px;}
.wsf11_c00001{word-spacing:23.688000px;}
.wsea7_c00001{word-spacing:23.695200px;}
.ws1027_c00001{word-spacing:23.697036px;}
.wse64_c00001{word-spacing:23.709600px;}
.wscbe_c00001{word-spacing:23.731200px;}
.wsc50_c00001{word-spacing:23.738400px;}
.wse1b_c00001{word-spacing:23.745600px;}
.ws1028_c00001{word-spacing:23.762916px;}
.ws1232_c00001{word-spacing:23.776092px;}
.wse0f_c00001{word-spacing:23.788800px;}
.ws118f_c00001{word-spacing:23.789268px;}
.ws581_c00001{word-spacing:23.795856px;}
.ws1026_c00001{word-spacing:23.802444px;}
.ws1158_c00001{word-spacing:23.815620px;}
.wsd5c_c00001{word-spacing:23.817600px;}
.ws134f_c00001{word-spacing:23.828796px;}
.ws1040_c00001{word-spacing:23.835384px;}
.ws1439_c00001{word-spacing:23.837580px;}
.ws580_c00001{word-spacing:23.841972px;}
.ws1924_c00001{word-spacing:23.861628px;}
.ws19dc_c00001{word-spacing:23.957820px;}
.wse3c_c00001{word-spacing:23.961600px;}
.ws1923_c00001{word-spacing:23.975856px;}
.ws1ac6_c00001{word-spacing:23.990400px;}
.ws1ac5_c00001{word-spacing:24.012000px;}
.ws1ab1_c00001{word-spacing:24.019200px;}
.wse3b_c00001{word-spacing:24.033600px;}
.wsb13_c00001{word-spacing:24.048000px;}
.wsf_c00001{word-spacing:24.076800px;}
.ws722_c00001{word-spacing:24.084000px;}
.wsc05_c00001{word-spacing:24.091200px;}
.ws721_c00001{word-spacing:24.098400px;}
.wsb14_c00001{word-spacing:24.120000px;}
.ws1155_c00001{word-spacing:24.131844px;}
.wsb15_c00001{word-spacing:24.134400px;}
.wsd5b_c00001{word-spacing:24.141600px;}
.ws13b4_c00001{word-spacing:24.151608px;}
.ws1233_c00001{word-spacing:24.164784px;}
.ws1231_c00001{word-spacing:24.171372px;}
.ws103f_c00001{word-spacing:24.184548px;}
.ws1a0e_c00001{word-spacing:24.216336px;}
.ws340_c00001{word-spacing:24.249600px;}
.wsd29_c00001{word-spacing:24.282468px;}
.ws1a0f_c00001{word-spacing:24.324552px;}
.ws70a_c00001{word-spacing:24.350400px;}
.wsf25_c00001{word-spacing:24.364800px;}
.wsea2_c00001{word-spacing:24.379200px;}
.ws33f_c00001{word-spacing:24.386400px;}
.ws3d1_c00001{word-spacing:24.400800px;}
.ws19f2_c00001{word-spacing:24.408000px;}
.ws5e1_c00001{word-spacing:24.415200px;}
.wsf29_c00001{word-spacing:24.436800px;}
.ws702_c00001{word-spacing:24.444000px;}
.wsbda_c00001{word-spacing:24.451200px;}
.wscc6_c00001{word-spacing:24.465600px;}
.ws70b_c00001{word-spacing:24.472800px;}
.ws1255_c00001{word-spacing:24.474420px;}
.ws19f1_c00001{word-spacing:24.480000px;}
.ws1253_c00001{word-spacing:24.481008px;}
.ws701_c00001{word-spacing:24.487200px;}
.ws133c_c00001{word-spacing:24.487596px;}
.ws3d3_c00001{word-spacing:24.494400px;}
.wsf26_c00001{word-spacing:24.508800px;}
.ws19c2_c00001{word-spacing:24.510924px;}
.ws1254_c00001{word-spacing:24.513948px;}
.ws3d2_c00001{word-spacing:24.530400px;}
.wsea9_c00001{word-spacing:24.552000px;}
.ws1252_c00001{word-spacing:24.566652px;}
.ws1a80_c00001{word-spacing:24.588000px;}
.ws15bb_c00001{word-spacing:24.595092px;}
.wscb5_c00001{word-spacing:24.631200px;}
.wsef2_c00001{word-spacing:24.638400px;}
.ws1a6d_c00001{word-spacing:24.645600px;}
.wsf28_c00001{word-spacing:24.717600px;}
.wsd23_c00001{word-spacing:24.724800px;}
.ws15b9_c00001{word-spacing:24.727356px;}
.wsb97_c00001{word-spacing:24.739200px;}
.wscb4_c00001{word-spacing:24.753600px;}
.wsf32_c00001{word-spacing:24.760800px;}
.ws5df_c00001{word-spacing:24.768000px;}
.wsf31_c00001{word-spacing:24.775200px;}
.wsf62_c00001{word-spacing:24.782400px;}
.ws5de_c00001{word-spacing:24.789600px;}
.ws38d_c00001{word-spacing:24.804000px;}
.wsb98_c00001{word-spacing:24.811200px;}
.ws5e2_c00001{word-spacing:24.818400px;}
.wsd24_c00001{word-spacing:24.832800px;}
.ws1132_c00001{word-spacing:24.836760px;}
.ws16e6_c00001{word-spacing:24.847596px;}
.wsf27_c00001{word-spacing:24.854400px;}
.ws1065_c00001{word-spacing:24.869700px;}
.ws1185_c00001{word-spacing:24.876288px;}
.ws1186_c00001{word-spacing:24.882876px;}
.ws1131_c00001{word-spacing:24.889464px;}
.ws1066_c00001{word-spacing:24.896052px;}
.ws5e0_c00001{word-spacing:24.897600px;}
.ws1064_c00001{word-spacing:24.928992px;}
.ws1978_c00001{word-spacing:25.021944px;}
.ws1977_c00001{word-spacing:25.045992px;}
.ws8aa_c00001{word-spacing:25.063200px;}
.wsed7_c00001{word-spacing:25.084800px;}
.ws15ba_c00001{word-spacing:25.088076px;}
.wsed8_c00001{word-spacing:25.106400px;}
.ws7b7_c00001{word-spacing:25.142400px;}
.wsed6_c00001{word-spacing:25.149600px;}
.ws1aa9_c00001{word-spacing:25.171200px;}
.ws1308_c00001{word-spacing:25.172748px;}
.ws1aaa_c00001{word-spacing:25.178400px;}
.ws3d4_c00001{word-spacing:25.185600px;}
.ws1636_c00001{word-spacing:25.190280px;}
.ws10e1_c00001{word-spacing:25.199100px;}
.ws3d5_c00001{word-spacing:25.207200px;}
.ws10e0_c00001{word-spacing:25.212276px;}
.ws10df_c00001{word-spacing:25.225452px;}
.ws1307_c00001{word-spacing:25.245216px;}
.ws1119_c00001{word-spacing:25.258392px;}
.ws1184_c00001{word-spacing:25.284744px;}
.ws446_c00001{word-spacing:25.308000px;}
.wsc9b_c00001{word-spacing:25.394400px;}
.wsf1c_c00001{word-spacing:25.408800px;}
.ws445_c00001{word-spacing:25.423200px;}
.ws192a_c00001{word-spacing:25.436772px;}
.ws41f_c00001{word-spacing:25.437600px;}
.wsc0c_c00001{word-spacing:25.444800px;}
.wsa6c_c00001{word-spacing:25.452000px;}
.wsb73_c00001{word-spacing:25.466400px;}
.wsc0b_c00001{word-spacing:25.473600px;}
.wsb74_c00001{word-spacing:25.480800px;}
.wsedd_c00001{word-spacing:25.488000px;}
.wsb2f_c00001{word-spacing:25.495200px;}
.wsc9c_c00001{word-spacing:25.502400px;}
.wsa6d_c00001{word-spacing:25.509600px;}
.wsb30_c00001{word-spacing:25.516800px;}
.ws37d_c00001{word-spacing:25.524000px;}
.wsd3c_c00001{word-spacing:25.531200px;}
.wsf1b_c00001{word-spacing:25.538400px;}
.ws37c_c00001{word-spacing:25.545600px;}
.ws1914_c00001{word-spacing:25.551000px;}
.ws12c9_c00001{word-spacing:25.554852px;}
.ws197a_c00001{word-spacing:25.560000px;}
.ws19b9_c00001{word-spacing:25.563024px;}
.ws19bb_c00001{word-spacing:25.569036px;}
.ws111a_c00001{word-spacing:25.587792px;}
.ws12c8_c00001{word-spacing:25.607556px;}
.ws1241_c00001{word-spacing:25.614144px;}
.ws1ad7_c00001{word-spacing:25.617600px;}
.ws19a0_c00001{word-spacing:25.659216px;}
.ws19ba_c00001{word-spacing:25.707312px;}
.wse05_c00001{word-spacing:25.725600px;}
.ws804_c00001{word-spacing:25.783200px;}
.wsf24_c00001{word-spacing:25.819200px;}
.wsf66_c00001{word-spacing:25.826400px;}
.ws19c6_c00001{word-spacing:25.848000px;}
.ws27c_c00001{word-spacing:25.855200px;}
.wsf67_c00001{word-spacing:25.862400px;}
.ws805_c00001{word-spacing:25.876800px;}
.wse04_c00001{word-spacing:25.905600px;}
.ws1a65_c00001{word-spacing:25.912800px;}
.ws27b_c00001{word-spacing:25.927200px;}
.wsb91_c00001{word-spacing:25.929756px;}
.wsf23_c00001{word-spacing:25.934400px;}
.ws1ad5_c00001{word-spacing:25.941600px;}
.ws109b_c00001{word-spacing:25.943544px;}
.wsd22_c00001{word-spacing:25.963200px;}
.ws1ad6_c00001{word-spacing:25.977600px;}
.ws109a_c00001{word-spacing:25.989660px;}
.ws1099_c00001{word-spacing:26.009424px;}
.wsb92_c00001{word-spacing:26.043984px;}
.wsd99_c00001{word-spacing:26.107200px;}
.wsc7e_c00001{word-spacing:26.121600px;}
.wsc7d_c00001{word-spacing:26.179200px;}
.wsd98_c00001{word-spacing:26.193600px;}
.wsb76_c00001{word-spacing:26.200800px;}
.ws6cb_c00001{word-spacing:26.208000px;}
.wse2c_c00001{word-spacing:26.215200px;}
.wsc04_c00001{word-spacing:26.244000px;}
.ws106_c00001{word-spacing:26.251200px;}
.ws995_c00001{word-spacing:26.258400px;}
.wsb77_c00001{word-spacing:26.265600px;}
.ws1696_c00001{word-spacing:26.272440px;}
.ws105_c00001{word-spacing:26.272800px;}
.ws1334_c00001{word-spacing:26.286120px;}
.ws6cc_c00001{word-spacing:26.294400px;}
.ws1a3f_c00001{word-spacing:26.296488px;}
.wsdb7_c00001{word-spacing:26.308800px;}
.wsdb6_c00001{word-spacing:26.316000px;}
.ws1a71_c00001{word-spacing:26.352000px;}
.ws1335_c00001{word-spacing:26.358588px;}
.ws1695_c00001{word-spacing:26.398692px;}
.ws1a70_c00001{word-spacing:26.460000px;}
.ws1a9c_c00001{word-spacing:26.467200px;}
.ws21a_c00001{word-spacing:26.488800px;}
.ws4e_c00001{word-spacing:26.510400px;}
.wsee9_c00001{word-spacing:26.517600px;}
.wse9f_c00001{word-spacing:26.546400px;}
.ws380_c00001{word-spacing:26.568000px;}
.wsee8_c00001{word-spacing:26.575200px;}
.wsb09_c00001{word-spacing:26.589600px;}
.ws381_c00001{word-spacing:26.596800px;}
.ws4f_c00001{word-spacing:26.611200px;}
.wsea0_c00001{word-spacing:26.618400px;}
.wse8b_c00001{word-spacing:26.625600px;}
.ws1204_c00001{word-spacing:26.641872px;}
.ws11ab_c00001{word-spacing:26.661636px;}
.ws1289_c00001{word-spacing:26.674812px;}
.wsb46_c00001{word-spacing:26.676000px;}
.ws1287_c00001{word-spacing:26.701164px;}
.ws1288_c00001{word-spacing:26.707752px;}
.ws11ac_c00001{word-spacing:26.714340px;}
.wseab_c00001{word-spacing:26.812800px;}
.ws52e_c00001{word-spacing:26.877600px;}
.wsd25_c00001{word-spacing:26.884800px;}
.ws708_c00001{word-spacing:26.899200px;}
.ws82b_c00001{word-spacing:26.913600px;}
.wsd39_c00001{word-spacing:26.928000px;}
.wseaa_c00001{word-spacing:26.935200px;}
.ws6f7_c00001{word-spacing:26.949600px;}
.wsf0f_c00001{word-spacing:26.964000px;}
.ws52c_c00001{word-spacing:26.971200px;}
.ws709_c00001{word-spacing:26.978400px;}
.wsebd_c00001{word-spacing:26.985600px;}
.ws82a_c00001{word-spacing:26.992800px;}
.ws136a_c00001{word-spacing:27.010800px;}
.wse97_c00001{word-spacing:27.021600px;}
.wsab9_c00001{word-spacing:27.028800px;}
.wsd3a_c00001{word-spacing:27.036000px;}
.ws122f_c00001{word-spacing:27.037152px;}
.wsb0a_c00001{word-spacing:27.057600px;}
.ws1aba_c00001{word-spacing:27.079200px;}
.ws1230_c00001{word-spacing:27.083268px;}
.ws52d_c00001{word-spacing:27.093600px;}
.wsa8c_c00001{word-spacing:27.115200px;}
.ws122e_c00001{word-spacing:27.116208px;}
.ws6c5_c00001{word-spacing:27.151200px;}
.ws1ab9_c00001{word-spacing:27.158400px;}
.wsa8d_c00001{word-spacing:27.223200px;}
.ws5b4_c00001{word-spacing:27.259200px;}
.wsde3_c00001{word-spacing:27.266400px;}
.ws1956_c00001{word-spacing:27.280800px;}
.ws4d0_c00001{word-spacing:27.295200px;}
.ws8cb_c00001{word-spacing:27.316800px;}
.wscf2_c00001{word-spacing:27.324000px;}
.ws6c4_c00001{word-spacing:27.345600px;}
.ws1957_c00001{word-spacing:27.352800px;}
.ws9cc_c00001{word-spacing:27.360000px;}
.wsde2_c00001{word-spacing:27.367200px;}
.ws9c8_c00001{word-spacing:27.374400px;}
.wsbee_c00001{word-spacing:27.392904px;}
.ws109d_c00001{word-spacing:27.399492px;}
.ws109c_c00001{word-spacing:27.406080px;}
.ws109e_c00001{word-spacing:27.432432px;}
.ws192d_c00001{word-spacing:27.444780px;}
.wsf41_c00001{word-spacing:27.460800px;}
.ws192e_c00001{word-spacing:27.462816px;}
.ws6ee_c00001{word-spacing:27.576000px;}
.ws5ab_c00001{word-spacing:27.583200px;}
.ws64d_c00001{word-spacing:27.597600px;}
.ws6ef_c00001{word-spacing:27.612000px;}
.ws54f_c00001{word-spacing:27.648000px;}
.ws158_c00001{word-spacing:27.655200px;}
.ws157_c00001{word-spacing:27.662400px;}
.wsd70_c00001{word-spacing:27.669600px;}
.ws126f_c00001{word-spacing:27.695952px;}
.wscab_c00001{word-spacing:27.712800px;}
.ws54e_c00001{word-spacing:27.720000px;}
.wsf43_c00001{word-spacing:27.734400px;}
.ws5aa_c00001{word-spacing:27.741600px;}
.wsc7c_c00001{word-spacing:27.742068px;}
.ws1270_c00001{word-spacing:27.748656px;}
.wscaa_c00001{word-spacing:27.748800px;}
.wsc7b_c00001{word-spacing:27.755244px;}
.wsf42_c00001{word-spacing:27.763200px;}
.ws1328_c00001{word-spacing:27.775008px;}
.ws126e_c00001{word-spacing:27.788184px;}
.wseb1_c00001{word-spacing:27.856800px;}
.wse89_c00001{word-spacing:27.885600px;}
.wse4e_c00001{word-spacing:27.898488px;}
.ws5bd_c00001{word-spacing:27.914400px;}
.wse53_c00001{word-spacing:27.957600px;}
.ws4d9_c00001{word-spacing:27.964800px;}
.ws50a_c00001{word-spacing:27.972000px;}
.ws50c_c00001{word-spacing:27.979200px;}
.ws1ad8_c00001{word-spacing:27.993600px;}
.ws81_c00001{word-spacing:28.029600px;}
.ws98a_c00001{word-spacing:28.044000px;}
.ws7c1_c00001{word-spacing:28.051200px;}
.wsba2_c00001{word-spacing:28.058400px;}
.wsc0f_c00001{word-spacing:28.065600px;}
.wseb3_c00001{word-spacing:28.080000px;}
.ws4d8_c00001{word-spacing:28.094400px;}
.wsba1_c00001{word-spacing:28.101600px;}
.wseb2_c00001{word-spacing:28.108800px;}
.wse52_c00001{word-spacing:28.116000px;}
.ws1336_c00001{word-spacing:28.143936px;}
.wsc78_c00001{word-spacing:28.150524px;}
.wse4f_c00001{word-spacing:28.175292px;}
.ws1a51_c00001{word-spacing:28.252800px;}
.ws887_c00001{word-spacing:28.260000px;}
.ws4ca_c00001{word-spacing:28.288800px;}
.ws871_c00001{word-spacing:28.346400px;}
.ws4f7_c00001{word-spacing:28.353600px;}
.ws872_c00001{word-spacing:28.360800px;}
.ws1ac8_c00001{word-spacing:28.389600px;}
.ws7d3_c00001{word-spacing:28.411200px;}
.ws4cb_c00001{word-spacing:28.425600px;}
.ws50b_c00001{word-spacing:28.440000px;}
.ws18ef_c00001{word-spacing:28.448784px;}
.ws1a50_c00001{word-spacing:28.468800px;}
.ws520_c00001{word-spacing:28.677600px;}
.wscba_c00001{word-spacing:28.684800px;}
.wscbb_c00001{word-spacing:28.699200px;}
.ws56b_c00001{word-spacing:28.706400px;}
.wseda_c00001{word-spacing:28.713600px;}
.wsb2b_c00001{word-spacing:28.720800px;}
.wsd56_c00001{word-spacing:28.742400px;}
.ws521_c00001{word-spacing:28.749600px;}
.wse7c_c00001{word-spacing:28.756800px;}
.wsada_c00001{word-spacing:28.764000px;}
.ws7d8_c00001{word-spacing:28.771200px;}
.wsb2a_c00001{word-spacing:28.778400px;}
.ws1a5f_c00001{word-spacing:28.785600px;}
.wsf95_c00001{word-spacing:28.789560px;}
.wsefb_c00001{word-spacing:28.792800px;}
.ws1a60_c00001{word-spacing:28.800000px;}
.ws186d_c00001{word-spacing:28.815516px;}
.wsce6_c00001{word-spacing:28.815912px;}
.wsce7_c00001{word-spacing:28.835676px;}
.ws56c_c00001{word-spacing:28.843200px;}
.wsf94_c00001{word-spacing:28.848852px;}
.ws7d9_c00001{word-spacing:28.857600px;}
.ws1a96_c00001{word-spacing:28.872000px;}
.wsadb_c00001{word-spacing:28.879200px;}
.ws1a94_c00001{word-spacing:28.893600px;}
.ws186e_c00001{word-spacing:28.893672px;}
.ws53a_c00001{word-spacing:28.972800px;}
.ws1a98_c00001{word-spacing:29.037600px;}
.ws17a0_c00001{word-spacing:29.037960px;}
.wse6e_c00001{word-spacing:29.059200px;}
.wsa8b_c00001{word-spacing:29.095200px;}
.ws539_c00001{word-spacing:29.124000px;}
.wse6d_c00001{word-spacing:29.131200px;}
.ws1a97_c00001{word-spacing:29.174400px;}
.ws458_c00001{word-spacing:29.304000px;}
.ws459_c00001{word-spacing:29.390400px;}
.ws1a9d_c00001{word-spacing:29.440800px;}
.wsd7a_c00001{word-spacing:29.448000px;}
.wsc81_c00001{word-spacing:29.455200px;}
.ws1993_c00001{word-spacing:29.462400px;}
.ws96d_c00001{word-spacing:29.476800px;}
.ws606_c00001{word-spacing:29.491200px;}
.ws1958_c00001{word-spacing:29.505600px;}
.wse94_c00001{word-spacing:29.512800px;}
.wsc82_c00001{word-spacing:29.527200px;}
.ws1134_c00001{word-spacing:29.553768px;}
.ws1135_c00001{word-spacing:29.560356px;}
.ws1136_c00001{word-spacing:29.573532px;}
.wse2a_c00001{word-spacing:29.750400px;}
.ws14e_c00001{word-spacing:29.757600px;}
.wsad7_c00001{word-spacing:29.779200px;}
.wse2b_c00001{word-spacing:29.786400px;}
.wsca0_c00001{word-spacing:29.800800px;}
.ws14c_c00001{word-spacing:29.808000px;}
.ws14d_c00001{word-spacing:29.858400px;}
.wsee6_c00001{word-spacing:29.865600px;}
.ws1a07_c00001{word-spacing:29.872800px;}
.ws1a1d_c00001{word-spacing:29.873628px;}
.wse08_c00001{word-spacing:29.880000px;}
.wse07_c00001{word-spacing:29.894400px;}
.ws10ed_c00001{word-spacing:29.896344px;}
.wse06_c00001{word-spacing:29.901600px;}
.ws1052_c00001{word-spacing:29.909520px;}
.ws1053_c00001{word-spacing:29.916108px;}
.wsf82_c00001{word-spacing:29.975400px;}
.ws962_c00001{word-spacing:29.993868px;}
.ws60a_c00001{word-spacing:30.096000px;}
.ws19f0_c00001{word-spacing:30.218400px;}
.ws501_c00001{word-spacing:30.234348px;}
.ws13c2_c00001{word-spacing:30.258684px;}
.ws11c0_c00001{word-spacing:30.265272px;}
.ws1965_c00001{word-spacing:30.268800px;}
.ws14ba_c00001{word-spacing:30.276432px;}
.ws11bf_c00001{word-spacing:30.278448px;}
.ws1275_c00001{word-spacing:30.298212px;}
.ws16c_c00001{word-spacing:30.311388px;}
.ws178b_c00001{word-spacing:30.324528px;}
.ws178c_c00001{word-spacing:30.390660px;}
.ws19fb_c00001{word-spacing:30.420000px;}
.ws178a_c00001{word-spacing:30.426732px;}
.ws1964_c00001{word-spacing:30.484800px;}
.wsd6c_c00001{word-spacing:30.513600px;}
.ws12a6_c00001{word-spacing:30.555144px;}
.ws790_c00001{word-spacing:30.564000px;}
.ws797_c00001{word-spacing:30.571200px;}
.wsd6b_c00001{word-spacing:30.578400px;}
.ws791_c00001{word-spacing:30.585600px;}
.ws13a2_c00001{word-spacing:30.588084px;}
.ws13a1_c00001{word-spacing:30.601260px;}
.ws19fa_c00001{word-spacing:30.607200px;}
.ws13a0_c00001{word-spacing:30.614436px;}
.ws1081_c00001{word-spacing:30.634200px;}
.ws14bc_c00001{word-spacing:30.637152px;}
.ws1082_c00001{word-spacing:30.647376px;}
.wsa4f_c00001{word-spacing:30.744000px;}
.wsdff_c00001{word-spacing:30.844800px;}
.ws95a_c00001{word-spacing:30.859200px;}
.wsc3a_c00001{word-spacing:30.873600px;}
.ws9fd_c00001{word-spacing:30.880800px;}
.wsace_c00001{word-spacing:30.916800px;}
.wsf2b_c00001{word-spacing:30.924000px;}
.ws128f_c00001{word-spacing:30.930660px;}
.wse00_c00001{word-spacing:30.931200px;}
.ws959_c00001{word-spacing:30.938400px;}
.ws99f_c00001{word-spacing:30.952800px;}
.ws95b_c00001{word-spacing:30.960000px;}
.ws125b_c00001{word-spacing:30.963600px;}
.ws9a0_c00001{word-spacing:30.974400px;}
.ws125a_c00001{word-spacing:30.976776px;}
.wsf2c_c00001{word-spacing:30.988800px;}
.ws1290_c00001{word-spacing:30.989952px;}
.ws12a7_c00001{word-spacing:31.009716px;}
.ws1259_c00001{word-spacing:31.042656px;}
.wsecc_c00001{word-spacing:31.190400px;}
.ws14bb_c00001{word-spacing:31.196268px;}
.ws993_c00001{word-spacing:31.212000px;}
.wsecb_c00001{word-spacing:31.219200px;}
.ws97c_c00001{word-spacing:31.226400px;}
.ws1ae3_c00001{word-spacing:31.262400px;}
.wsbfe_c00001{word-spacing:31.284000px;}
.ws1a09_c00001{word-spacing:31.291200px;}
.ws1ae4_c00001{word-spacing:31.298400px;}
.ws97d_c00001{word-spacing:31.305600px;}
.wsa87_c00001{word-spacing:31.312800px;}
.ws1268_c00001{word-spacing:31.325940px;}
.ws994_c00001{word-spacing:31.327200px;}
.ws1298_c00001{word-spacing:31.339116px;}
.ws1297_c00001{word-spacing:31.345704px;}
.ws1269_c00001{word-spacing:31.365468px;}
.wsa88_c00001{word-spacing:31.392000px;}
.ws101b_c00001{word-spacing:31.398408px;}
.ws1aca_c00001{word-spacing:31.413600px;}
.ws1a08_c00001{word-spacing:31.442400px;}
.ws97e_c00001{word-spacing:31.572000px;}
.wse80_c00001{word-spacing:31.600800px;}
.wsbb9_c00001{word-spacing:31.615200px;}
.ws1acb_c00001{word-spacing:31.629600px;}
.ws1267_c00001{word-spacing:31.642164px;}
.wsbb8_c00001{word-spacing:31.651200px;}
.wsbf6_c00001{word-spacing:31.665600px;}
.wse3a_c00001{word-spacing:31.672800px;}
.ws84d_c00001{word-spacing:31.680000px;}
.ws12bc_c00001{word-spacing:31.681692px;}
.ws10fd_c00001{word-spacing:31.694868px;}
.ws10fc_c00001{word-spacing:31.701456px;}
.wse71_c00001{word-spacing:31.708800px;}
.wsee4_c00001{word-spacing:31.716000px;}
.ws12bd_c00001{word-spacing:31.721220px;}
.ws97f_c00001{word-spacing:31.730400px;}
.wse70_c00001{word-spacing:31.744800px;}
.wsdc4_c00001{word-spacing:31.838400px;}
.wsdc5_c00001{word-spacing:31.867200px;}
.wsd83_c00001{word-spacing:31.917600px;}
.wsa37_c00001{word-spacing:31.924800px;}
.wsf49_c00001{word-spacing:31.932000px;}
.ws1ab4_c00001{word-spacing:31.939200px;}
.wsb2e_c00001{word-spacing:31.960800px;}
.wsc09_c00001{word-spacing:31.968000px;}
.wsa38_c00001{word-spacing:31.975200px;}
.wsd84_c00001{word-spacing:31.989600px;}
.wse02_c00001{word-spacing:32.011200px;}
.wsf48_c00001{word-spacing:32.018400px;}
.wscde_c00001{word-spacing:32.025600px;}
.ws18c6_c00001{word-spacing:32.031936px;}
.ws582_c00001{word-spacing:32.076972px;}
.ws11fd_c00001{word-spacing:32.116500px;}
.ws1266_c00001{word-spacing:32.129676px;}
.ws1ab3_c00001{word-spacing:32.133600px;}
.wsedb_c00001{word-spacing:32.263200px;}
.ws9ba_c00001{word-spacing:32.299200px;}
.wsacf_c00001{word-spacing:32.349600px;}
.wsf2d_c00001{word-spacing:32.356800px;}
.wsedc_c00001{word-spacing:32.371200px;}
.ws11c8_c00001{word-spacing:32.399784px;}
.wsad0_c00001{word-spacing:32.400000px;}
.ws9bb_c00001{word-spacing:32.407200px;}
.ws11c7_c00001{word-spacing:32.412960px;}
.wsf2e_c00001{word-spacing:32.414400px;}
.ws11c6_c00001{word-spacing:32.472252px;}
.wse6c_c00001{word-spacing:32.529600px;}
.wsdaa_c00001{word-spacing:32.580000px;}
.wsf5a_c00001{word-spacing:32.608800px;}
.ws985_c00001{word-spacing:32.637600px;}
.wsf59_c00001{word-spacing:32.709600px;}
.ws984_c00001{word-spacing:32.745600px;}
.ws1a41_c00001{word-spacing:32.747364px;}
.wsa76_c00001{word-spacing:32.748948px;}
.ws1079_c00001{word-spacing:32.755536px;}
.wsda9_c00001{word-spacing:32.760000px;}
.wsa75_c00001{word-spacing:32.768712px;}
.wse7e_c00001{word-spacing:32.774400px;}
.wsff3_c00001{word-spacing:32.788476px;}
.wse6b_c00001{word-spacing:32.796000px;}
.wsff2_c00001{word-spacing:32.801652px;}
.ws1078_c00001{word-spacing:32.834592px;}
.ws1a43_c00001{word-spacing:32.987844px;}
.ws1aa2_c00001{word-spacing:33.004800px;}
.ws1a42_c00001{word-spacing:33.011892px;}
.wsb90_c00001{word-spacing:33.026400px;}
.ws1aa3_c00001{word-spacing:33.048000px;}
.wsb8f_c00001{word-spacing:33.076800px;}
.wscbc_c00001{word-spacing:33.084000px;}
.ws363_c00001{word-spacing:33.102072px;}
.ws1a15_c00001{word-spacing:33.285600px;}
.ws362_c00001{word-spacing:33.324516px;}
.wsec7_c00001{word-spacing:33.393600px;}
.ws1a9e_c00001{word-spacing:33.422400px;}
.ws111d_c00001{word-spacing:33.427512px;}
.wsec6_c00001{word-spacing:33.436800px;}
.ws852_c00001{word-spacing:33.444000px;}
.ws1a9f_c00001{word-spacing:33.458400px;}
.wsa1d_c00001{word-spacing:33.465600px;}
.ws8a8_c00001{word-spacing:33.480000px;}
.ws11c3_c00001{word-spacing:33.493392px;}
.ws111b_c00001{word-spacing:33.499980px;}
.ws1a14_c00001{word-spacing:33.516000px;}
.ws111c_c00001{word-spacing:33.519744px;}
.ws1a16_c00001{word-spacing:33.559200px;}
.ws8a7_c00001{word-spacing:33.760800px;}
.ws6bc_c00001{word-spacing:33.789600px;}
.ws8a9_c00001{word-spacing:33.825600px;}
.ws123c_c00001{word-spacing:33.835968px;}
.ws127f_c00001{word-spacing:33.842556px;}
.ws1280_c00001{word-spacing:33.862320px;}
.wsf34_c00001{word-spacing:34.113600px;}
.wsf33_c00001{word-spacing:34.192800px;}
.ws1a11_c00001{word-spacing:34.226316px;}
.ws183c_c00001{word-spacing:34.298460px;}
.ws183b_c00001{word-spacing:34.310484px;}
.ws6a4_c00001{word-spacing:34.401600px;}
.ws474_c00001{word-spacing:34.408800px;}
.ws475_c00001{word-spacing:34.473600px;}
.ws80_c00001{word-spacing:34.488000px;}
.wsf51_c00001{word-spacing:34.524000px;}
.ws6a5_c00001{word-spacing:34.545600px;}
.ws1a53_c00001{word-spacing:34.761600px;}
.ws1238_c00001{word-spacing:34.903224px;}
.ws1a52_c00001{word-spacing:34.927200px;}
.ws1237_c00001{word-spacing:34.949340px;}
.ws1a54_c00001{word-spacing:34.956000px;}
.ws10cb_c00001{word-spacing:34.962516px;}
.wsf0d_c00001{word-spacing:35.244000px;}
.ws84c_c00001{word-spacing:35.532000px;}
.wsf63_c00001{word-spacing:35.575200px;}
.wsb58_c00001{word-spacing:35.604000px;}
.ws84b_c00001{word-spacing:35.611200px;}
.wsc26_c00001{word-spacing:35.618400px;}
.wsc25_c00001{word-spacing:35.632800px;}
.wsb57_c00001{word-spacing:35.704800px;}
.wsb50_c00001{word-spacing:35.819496px;}
.wsb4f_c00001{word-spacing:35.921700px;}
.wsef4_c00001{word-spacing:35.971200px;}
.wsef5_c00001{word-spacing:35.978400px;}
.ws10ac_c00001{word-spacing:36.042948px;}
.ws10ad_c00001{word-spacing:36.056124px;}
.wscb_c00001{word-spacing:36.252000px;}
.wsca_c00001{word-spacing:36.324000px;}
.ws1a77_c00001{word-spacing:36.331200px;}
.wsd65_c00001{word-spacing:36.482400px;}
.ws1a76_c00001{word-spacing:36.532800px;}
.ws301_c00001{word-spacing:36.590400px;}
.wsd64_c00001{word-spacing:36.684000px;}
.ws303_c00001{word-spacing:36.727200px;}
.ws302_c00001{word-spacing:36.777600px;}
.ws1a13_c00001{word-spacing:36.820800px;}
.wsc9d_c00001{word-spacing:37.036800px;}
.ws98c_c00001{word-spacing:37.051200px;}
.wsc9e_c00001{word-spacing:37.058400px;}
.ws12ed_c00001{word-spacing:37.097028px;}
.ws98b_c00001{word-spacing:37.130400px;}
.wsd7e_c00001{word-spacing:37.159200px;}
.wsd7d_c00001{word-spacing:37.267200px;}
.ws103_c00001{word-spacing:37.404000px;}
.ws104_c00001{word-spacing:37.411200px;}
.wsddc_c00001{word-spacing:37.418400px;}
.wsddd_c00001{word-spacing:37.425600px;}
.ws1ac2_c00001{word-spacing:37.620000px;}
.ws1ac1_c00001{word-spacing:37.648800px;}
.wsf61_c00001{word-spacing:37.771200px;}
.ws1154_c00001{word-spacing:37.782180px;}
.wsfdf_c00001{word-spacing:37.788768px;}
.ws1152_c00001{word-spacing:37.854648px;}
.ws1153_c00001{word-spacing:37.867824px;}
.wsfe0_c00001{word-spacing:37.887588px;}
.wsed2_c00001{word-spacing:38.325600px;}
.wsed1_c00001{word-spacing:38.419200px;}
.wsb28_c00001{word-spacing:38.476800px;}
.wsb27_c00001{word-spacing:38.498400px;}
.wsb26_c00001{word-spacing:38.505600px;}
.wsf35_c00001{word-spacing:38.743200px;}
.wsf36_c00001{word-spacing:38.858400px;}
.ws13bb_c00001{word-spacing:38.875788px;}
.ws13ba_c00001{word-spacing:38.935080px;}
.ws13b9_c00001{word-spacing:38.961432px;}
.wsc41_c00001{word-spacing:39.160800px;}
.wse74_c00001{word-spacing:39.549600px;}
.wse73_c00001{word-spacing:39.621600px;}
.wsf12_c00001{word-spacing:39.866400px;}
.ws83e_c00001{word-spacing:39.873600px;}
.wsf13_c00001{word-spacing:39.895200px;}
.ws13b6_c00001{word-spacing:39.903516px;}
.ws13b7_c00001{word-spacing:39.943044px;}
.ws83f_c00001{word-spacing:39.960000px;}
.ws13b5_c00001{word-spacing:39.962808px;}
.wsdac_c00001{word-spacing:40.204800px;}
.wsdae_c00001{word-spacing:40.327200px;}
.wsdad_c00001{word-spacing:40.356000px;}
.wsb11_c00001{word-spacing:40.644000px;}
.wsb12_c00001{word-spacing:40.672800px;}
.wsf38_c00001{word-spacing:40.838400px;}
.wsf39_c00001{word-spacing:41.047200px;}
.ws889_c00001{word-spacing:41.356800px;}
.ws888_c00001{word-spacing:41.371200px;}
.ws1113_c00001{word-spacing:41.438520px;}
.ws1114_c00001{word-spacing:41.478048px;}
.ws1129_c00001{word-spacing:42.084144px;}
.ws1127_c00001{word-spacing:42.156612px;}
.ws1128_c00001{word-spacing:42.169788px;}
.ws1126_c00001{word-spacing:42.189552px;}
.wscb8_c00001{word-spacing:42.804000px;}
.ws112b_c00001{word-spacing:42.841764px;}
.wscb9_c00001{word-spacing:42.868800px;}
.ws1309_c00001{word-spacing:42.887880px;}
.ws112a_c00001{word-spacing:42.907644px;}
.ws1ad4_c00001{word-spacing:43.538400px;}
.ws198a_c00001{word-spacing:44.186400px;}
.ws1989_c00001{word-spacing:44.280000px;}
.ws26d_c00001{word-spacing:44.532000px;}
.ws26c_c00001{word-spacing:44.575200px;}
.ws1369_c00001{word-spacing:44.607348px;}
.ws1ad3_c00001{word-spacing:44.640000px;}
.ws1368_c00001{word-spacing:44.653464px;}
.ws1367_c00001{word-spacing:44.699580px;}
.ws10d9_c00001{word-spacing:45.971064px;}
.ws10da_c00001{word-spacing:46.083060px;}
.ws10d8_c00001{word-spacing:46.102824px;}
.ws1112_c00001{word-spacing:46.419048px;}
.ws1111_c00001{word-spacing:46.458576px;}
.wse6_c00001{word-spacing:46.800000px;}
.ws7fe_c00001{word-spacing:47.102400px;}
.ws7ff_c00001{word-spacing:47.124000px;}
.ws76e_c00001{word-spacing:47.419200px;}
.ws11d8_c00001{word-spacing:47.506068px;}
.ws13bf_c00001{word-spacing:47.512656px;}
.ws76f_c00001{word-spacing:47.512800px;}
.ws13c0_c00001{word-spacing:47.552184px;}
.ws11d7_c00001{word-spacing:47.565360px;}
.wsdd7_c00001{word-spacing:47.750400px;}
.wsdd8_c00001{word-spacing:47.880000px;}
.wsbd6_c00001{word-spacing:48.528000px;}
.wsbd5_c00001{word-spacing:48.571200px;}
.ws1236_c00001{word-spacing:48.685320px;}
.wsb08_c00001{word-spacing:49.161600px;}
.wsb07_c00001{word-spacing:49.312800px;}
.ws10c0_c00001{word-spacing:49.330944px;}
.ws10bf_c00001{word-spacing:49.344120px;}
.ws669_c00001{word-spacing:49.564800px;}
.ws66a_c00001{word-spacing:49.600800px;}
.ws10e7_c00001{word-spacing:49.653756px;}
.ws10e8_c00001{word-spacing:49.666932px;}
.ws10e6_c00001{word-spacing:49.686696px;}
.ws114c_c00001{word-spacing:49.732812px;}
.wse87_c00001{word-spacing:50.659200px;}
.wse86_c00001{word-spacing:50.767200px;}
.ws13c4_c00001{word-spacing:50.793480px;}
.ws13c3_c00001{word-spacing:50.846184px;}
.wsec4_c00001{word-spacing:51.076800px;}
.wsd69_c00001{word-spacing:51.098400px;}
.wsd6a_c00001{word-spacing:51.105600px;}
.ws11e1_c00001{word-spacing:51.551100px;}
.ws4fe_c00001{word-spacing:51.558912px;}
.ws198b_c00001{word-spacing:51.775200px;}
.ws500_c00001{word-spacing:51.811416px;}
.ws4ff_c00001{word-spacing:51.967728px;}
.ws1303_c00001{word-spacing:53.659260px;}
.ws1302_c00001{word-spacing:53.705376px;}
.ws10cd_c00001{word-spacing:54.364176px;}
.ws131b_c00001{word-spacing:54.706752px;}
.ws121c_c00001{word-spacing:54.726516px;}
.ws121d_c00001{word-spacing:54.733104px;}
.ws1172_c00001{word-spacing:54.798984px;}
.ws1173_c00001{word-spacing:54.805572px;}
.ws10c2_c00001{word-spacing:55.134972px;}
.wse76_c00001{word-spacing:55.612800px;}
.ws1a37_c00001{word-spacing:55.756800px;}
.ws1a36_c00001{word-spacing:55.785600px;}
.ws13b8_c00001{word-spacing:55.853064px;}
.wse75_c00001{word-spacing:55.864800px;}
.ws10a7_c00001{word-spacing:57.172608px;}
.ws10ce_c00001{word-spacing:58.343328px;}
.ws1162_c00001{word-spacing:59.450112px;}
.ws1163_c00001{word-spacing:59.838804px;}
.ws13a9_c00001{word-spacing:60.484428px;}
.ws1318_c00001{word-spacing:60.787476px;}
.ws1317_c00001{word-spacing:60.866532px;}
.ws1316_c00001{word-spacing:60.879708px;}
.ws13a8_c00001{word-spacing:60.945588px;}
.ws12d4_c00001{word-spacing:61.162992px;}
.ws12d3_c00001{word-spacing:61.169580px;}
.ws110e_c00001{word-spacing:61.189344px;}
.ws110d_c00001{word-spacing:61.209108px;}
.ws1343_c00001{word-spacing:61.505568px;}
.ws1344_c00001{word-spacing:61.538508px;}
.ws1342_c00001{word-spacing:61.571448px;}
.wsbd3_c00001{word-spacing:62.949600px;}
.wsbd4_c00001{word-spacing:63.115200px;}
.ws114a_c00001{word-spacing:64.081476px;}
.ws1149_c00001{word-spacing:64.140768px;}
.ws1325_c00001{word-spacing:65.768004px;}
.ws1326_c00001{word-spacing:65.866824px;}
.ws1138_c00001{word-spacing:65.886588px;}
.ws1324_c00001{word-spacing:65.939292px;}
.ws1137_c00001{word-spacing:65.945880px;}
.ws144a_c00001{word-spacing:67.017600px;}
.ws11d9_c00001{word-spacing:67.731228px;}
.ws1118_c00001{word-spacing:68.436144px;}
.ws10c4_c00001{word-spacing:69.463872px;}
.ws10c5_c00001{word-spacing:69.542928px;}
.ws10c3_c00001{word-spacing:69.938208px;}
.ws10f4_c00001{word-spacing:71.657676px;}
.ws10d0_c00001{word-spacing:75.992580px;}
.ws47c_c00001{word-spacing:78.278400px;}
.ws47d_c00001{word-spacing:78.415200px;}
.wsfb7_c00001{word-spacing:79.583040px;}
.ws13ab_c00001{word-spacing:79.589628px;}
.ws1060_c00001{word-spacing:79.596216px;}
.wsfbe_c00001{word-spacing:79.602804px;}
.ws1090_c00001{word-spacing:79.688448px;}
.ws10ff_c00001{word-spacing:79.971732px;}
.ws10d1_c00001{word-spacing:81.730728px;}
.ws10d2_c00001{word-spacing:81.750492px;}
.ws102e_c00001{word-spacing:89.662680px;}
.ws103c_c00001{word-spacing:95.387652px;}
.ws11c2_c00001{word-spacing:95.677524px;}
.ws11c1_c00001{word-spacing:95.776344px;}
.ws136d_c00001{word-spacing:102.219408px;}
.ws136b_c00001{word-spacing:102.252348px;}
.ws136c_c00001{word-spacing:102.265524px;}
.ws11cc_c00001{word-spacing:102.963852px;}
.ws102c_c00001{word-spacing:104.432976px;}
.ws1361_c00001{word-spacing:108.708588px;}
.ws1360_c00001{word-spacing:108.721764px;}
.ws1395_c00001{word-spacing:113.412420px;}
.ws1394_c00001{word-spacing:113.445360px;}
.ws1396_c00001{word-spacing:113.484888px;}
.ws1156_c00001{word-spacing:116.653716px;}
.ws10e9_c00001{word-spacing:127.444860px;}
.ws11ef_c00001{word-spacing:133.940628px;}
.ws3ee_c00001{word-spacing:136.778400px;}
.ws1376_c00001{word-spacing:141.444360px;}
.ws1374_c00001{word-spacing:141.470712px;}
.ws1375_c00001{word-spacing:141.503652px;}
.ws1194_c00001{word-spacing:142.478676px;}
.ws1193_c00001{word-spacing:142.617024px;}
.ws1351_c00001{word-spacing:143.611812px;}
.ws1350_c00001{word-spacing:143.638164px;}
.ws1148_c00001{word-spacing:149.751828px;}
.wsf80_c00001{word-spacing:150.852024px;}
.wsf7f_c00001{word-spacing:150.917904px;}
.wsf81_c00001{word-spacing:151.108956px;}
.ws10cc_c00001{word-spacing:156.260772px;}
.ws12e2_c00001{word-spacing:158.013180px;}
.ws12e1_c00001{word-spacing:158.046120px;}
.ws130a_c00001{word-spacing:160.925076px;}
.ws130e_c00001{word-spacing:160.990956px;}
.ws1150_c00001{word-spacing:181.453284px;}
.ws1151_c00001{word-spacing:181.789272px;}
.ws138c_c00001{word-spacing:183.548268px;}
.ws138d_c00001{word-spacing:183.594384px;}
.ws19c5_c00001{word-spacing:194.385600px;}
.ws1a35_c00001{word-spacing:194.392800px;}
.ws9c6_c00001{word-spacing:194.400000px;}
.ws1437_c00001{word-spacing:197.428068px;}
.ws123a_c00001{word-spacing:199.392408px;}
.ws123b_c00001{word-spacing:199.418760px;}
.ws134a_c00001{word-spacing:206.217576px;}
.ws134b_c00001{word-spacing:206.237340px;}
.ws1010_c00001{word-spacing:206.369100px;}
.ws1378_c00001{word-spacing:207.350712px;}
.ws1381_c00001{word-spacing:213.820128px;}
.ws10ee_c00001{word-spacing:242.003592px;}
.ws10e2_c00001{word-spacing:249.915780px;}
.ws1443_c00001{word-spacing:254.944872px;}
.ws1405_c00001{word-spacing:254.962908px;}
.ws1409_c00001{word-spacing:254.968920px;}
.ws2d3_c00001{word-spacing:255.053088px;}
.ws2d2_c00001{word-spacing:255.371724px;}
.ws12ea_c00001{word-spacing:270.417636px;}
.ws1109_c00001{word-spacing:275.767092px;}
.ws1203_c00001{word-spacing:276.162372px;}
.wsf79_c00001{word-spacing:331.191936px;}
.ws1229_c00001{word-spacing:331.975908px;}
.wsf76_c00001{word-spacing:351.390744px;}
.ws135d_c00001{word-spacing:400.313232px;}
.ws10d6_c00001{word-spacing:444.268368px;}
.ws1370_c00001{word-spacing:462.965112px;}
.ws1960_c00001{word-spacing:473.385600px;}
.ws1961_c00001{word-spacing:482.378400px;}
.ws1963_c00001{word-spacing:498.600000px;}
.ws10d4_c00001{word-spacing:521.664192px;}
.ws10e4_c00001{word-spacing:523.489068px;}
.ws195f_c00001{word-spacing:540.770400px;}
.ws1962_c00001{word-spacing:564.480000px;}
.ws195e_c00001{word-spacing:582.926400px;}
.ws1246_c00001{word-spacing:640.096668px;}
.ws12e4_c00001{word-spacing:648.331668px;}
.ws12dc_c00001{word-spacing:651.263328px;}
.ws10aa_c00001{word-spacing:900.098676px;}
.wsf7d_c00001{word-spacing:957.658032px;}
.ws10fe_c00001{word-spacing:964.166976px;}
.wsf70_c00001{word-spacing:964.858716px;}
.ws1116_c00001{word-spacing:977.520852px;}
.wsf8b_c00001{word-spacing:977.843664px;}
.ws12f6_c00001{word-spacing:1012.318668px;}
.ws134d_c00001{word-spacing:1041.490332px;}
._71_c00001{margin-left:-964.074744px;}
._aa_c00001{margin-left:-473.400000px;}
._9e_c00001{margin-left:-465.480000px;}
._9f_c00001{margin-left:-398.908800px;}
._a6_c00001{margin-left:-367.560000px;}
._a7_c00001{margin-left:-275.400000px;}
._8e_c00001{margin-left:-254.878740px;}
._ae_c00001{margin-left:-239.400000px;}
._ac_c00001{margin-left:-230.400000px;}
._a8_c00001{margin-left:-207.720000px;}
._96_c00001{margin-left:-197.398008px;}
._40_c00001{margin-left:-194.400000px;}
._bc_c00001{margin-left:-165.600000px;}
._94_c00001{margin-left:-154.796976px;}
._c5_c00001{margin-left:-144.000000px;}
._b2_c00001{margin-left:-140.040000px;}
._6f_c00001{margin-left:-128.110248px;}
._a5_c00001{margin-left:-124.560000px;}
._a9_c00001{margin-left:-115.560000px;}
._9d_c00001{margin-left:-100.800000px;}
._ab_c00001{margin-left:-82.440000px;}
._6b_c00001{margin-left:-80.506224px;}
._32_c00001{margin-left:-79.140780px;}
._67_c00001{margin-left:-76.321980px;}
._bd_c00001{margin-left:-73.440000px;}
._70_c00001{margin-left:-71.632656px;}
._66_c00001{margin-left:-68.403204px;}
._65_c00001{margin-left:-65.919528px;}
._86_c00001{margin-left:-61.558272px;}
._af_c00001{margin-left:-57.240000px;}
._ad_c00001{margin-left:-48.240000px;}
._c1_c00001{margin-left:-40.680000px;}
._c6_c00001{margin-left:-36.360792px;}
._7a_c00001{margin-left:-31.319352px;}
._51_c00001{margin-left:-28.742400px;}
._35_c00001{margin-left:-26.877600px;}
._4f_c00001{margin-left:-23.562396px;}
._18_c00001{margin-left:-22.322556px;}
._3b_c00001{margin-left:-20.879676px;}
._2c_c00001{margin-left:-19.436796px;}
._e_c00001{margin-left:-17.639208px;}
._f_c00001{margin-left:-16.557048px;}
._39_c00001{margin-left:-15.120180px;}
._36_c00001{margin-left:-13.958028px;}
._3e_c00001{margin-left:-12.848832px;}
._1d_c00001{margin-left:-11.518992px;}
._9_c00001{margin-left:-10.169892px;}
._23_c00001{margin-left:-8.251200px;}
._d_c00001{margin-left:-6.717600px;}
._7_c00001{margin-left:-5.038056px;}
._8_c00001{margin-left:-3.601188px;}
._19_c00001{margin-left:-2.397600px;}
._0_c00001{margin-left:-1.004004px;}
._2_c00001{width:1.172340px;}
._1c_c00001{width:2.520000px;}
._2a_c00001{width:3.847680px;}
._b_c00001{width:4.960008px;}
._16_c00001{width:6.566400px;}
._15_c00001{width:7.806960px;}
._22_c00001{width:9.069840px;}
._a_c00001{width:10.869696px;}
._20_c00001{width:12.323160px;}
._24_c00001{width:13.815576px;}
._34_c00001{width:15.814404px;}
._29_c00001{width:19.052028px;}
._1b_c00001{width:20.627172px;}
._3a_c00001{width:22.942404px;}
._13_c00001{width:25.632000px;}
._6e_c00001{width:27.577368px;}
._62_c00001{width:29.534004px;}
._7b_c00001{width:31.681692px;}
._28_c00001{width:32.855580px;}
._61_c00001{width:40.147200px;}
._95_c00001{width:43.104960px;}
._97_c00001{width:45.360000px;}
._83_c00001{width:46.438812px;}
._c2_c00001{width:48.729600px;}
._7e_c00001{width:50.317200px;}
._89_c00001{width:52.300152px;}
._84_c00001{width:55.317276px;}
._82_c00001{width:56.766636px;}
._7d_c00001{width:58.202820px;}
._80_c00001{width:59.408136px;}
._73_c00001{width:60.477840px;}
._85_c00001{width:61.801596px;}
._68_c00001{width:63.001044px;}
._76_c00001{width:64.437228px;}
._72_c00001{width:66.235752px;}
._78_c00001{width:67.316184px;}
._7c_c00001{width:68.396616px;}
._75_c00001{width:70.201728px;}
._74_c00001{width:71.282160px;}
._79_c00001{width:72.356004px;}
._69_c00001{width:73.436436px;}
._64_c00001{width:74.516868px;}
._6a_c00001{width:75.959640px;}
._6c_c00001{width:77.040072px;}
._6d_c00001{width:78.120504px;}
._63_c00001{width:79.648920px;}
._be_c00001{width:81.720000px;}
._c3_c00001{width:84.816000px;}
._9b_c00001{width:89.999640px;}
._9a_c00001{width:92.518668px;}
._c4_c00001{width:94.183992px;}
._9c_c00001{width:99.360000px;}
._bf_c00001{width:101.880000px;}
._77_c00001{width:103.477716px;}
._88_c00001{width:108.813996px;}
._8a_c00001{width:113.399244px;}
._91_c00001{width:119.789100px;}
._90_c00001{width:121.057632px;}
._8b_c00001{width:135.282024px;}
._87_c00001{width:143.743572px;}
._45_c00001{width:145.080000px;}
._60_c00001{width:147.600000px;}
._c0_c00001{width:149.400000px;}
._99_c00001{width:151.574400px;}
._7f_c00001{width:157.321440px;}
._98_c00001{width:158.400000px;}
._3f_c00001{width:165.077604px;}
._42_c00001{width:167.040000px;}
._1a_c00001{width:168.120000px;}
._c7_c00001{width:171.000000px;}
._1f_c00001{width:172.137600px;}
._2f_c00001{width:173.160000px;}
._2e_c00001{width:174.290400px;}
._3_c00001{width:176.472000px;}
._5f_c00001{width:177.480000px;}
._5e_c00001{width:178.682400px;}
._21_c00001{width:180.720000px;}
._37_c00001{width:182.160000px;}
._2d_c00001{width:183.240000px;}
._12_c00001{width:185.097600px;}
._4_c00001{width:186.480000px;}
._5_c00001{width:188.402400px;}
._1_c00001{width:189.763200px;}
._c_c00001{width:191.160000px;}
._38_c00001{width:192.304800px;}
._6_c00001{width:193.377600px;}
._1e_c00001{width:194.400000px;}
._10_c00001{width:195.573600px;}
._26_c00001{width:196.653600px;}
._14_c00001{width:198.000000px;}
._ba_c00001{width:221.572800px;}
._8f_c00001{width:224.638380px;}
._a3_c00001{width:232.920000px;}
._8c_c00001{width:239.758560px;}
._a0_c00001{width:243.309600px;}
._93_c00001{width:244.796616px;}
._92_c00001{width:248.758524px;}
._8d_c00001{width:254.878740px;}
._b6_c00001{width:257.040000px;}
._b0_c00001{width:261.000000px;}
._b1_c00001{width:291.240000px;}
._b9_c00001{width:322.200000px;}
._a1_c00001{width:335.160000px;}
._b7_c00001{width:353.160000px;}
._a2_c00001{width:357.480000px;}
._b4_c00001{width:365.040000px;}
._a4_c00001{width:369.288000px;}
._b8_c00001{width:373.680000px;}
._b5_c00001{width:381.600000px;}
._bb_c00001{width:425.160000px;}
._4a_c00001{width:465.840000px;}
._b3_c00001{width:489.600000px;}
._54_c00001{width:601.560000px;}
._56_c00001{width:615.600000px;}
._11_c00001{width:638.730000px;}
._47_c00001{width:665.280000px;}
._4b_c00001{width:686.880000px;}
._31_c00001{width:689.760000px;}
._49_c00001{width:696.960000px;}
._4d_c00001{width:705.960000px;}
._30_c00001{width:714.600000px;}
._53_c00001{width:727.920000px;}
._46_c00001{width:731.160000px;}
._50_c00001{width:739.080000px;}
._57_c00001{width:764.280000px;}
._58_c00001{width:824.040000px;}
._48_c00001{width:831.960000px;}
._3d_c00001{width:846.360000px;}
._3c_c00001{width:866.160000px;}
._55_c00001{width:867.599400px;}
._33_c00001{width:919.080000px;}
._43_c00001{width:927.719400px;}
._52_c00001{width:943.920000px;}
._4c_c00001{width:986.760000px;}
._5a_c00001{width:1004.040000px;}
._5d_c00001{width:1017.000000px;}
._2b_c00001{width:1030.680000px;}
._59_c00001{width:1036.440000px;}
._17_c00001{width:1097.640000px;}
._44_c00001{width:1193.400000px;}
._4e_c00001{width:1222.560000px;}
._27_c00001{width:1264.318740px;}
._5c_c00001{width:1293.120000px;}
._41_c00001{width:1299.600000px;}
._25_c00001{width:1312.200000px;}
._5b_c00001{width:1374.480000px;}
._81_c00001{width:2248.220880px;}
.fc1_c00001{color:transparent;}
.fc0_c00001{color:rgb(0,0,0);}
.fs4_c00001{font-size:38.880000px;}
.fs3_c00001{font-size:42.120000px;}
.fs5_c00001{font-size:47.880000px;}
.fs6_c00001{font-size:56.880000px;}
.fs0_c00001{font-size:60.120000px;}
.fs2_c00001{font-size:65.880000px;}
.fsb_c00001{font-size:69.120000px;}
.fsa_c00001{font-size:69.626355px;}
.fs1_c00001{font-size:72.000000px;}
.fsc_c00001{font-size:76.094487px;}
.fs9_c00001{font-size:83.880000px;}
.fs8_c00001{font-size:96.120000px;}
.fs7_c00001{font-size:168.120000px;}
.y0_c00001{bottom:0.000000px;}
.y3_c00001{bottom:57.360450px;}
.y6c_c00001{bottom:109.920639px;}
.yd3_c00001{bottom:109.920648px;}
.yc6_c00001{bottom:109.920657px;}
.y4a2_c00001{bottom:109.920819px;}
.y2c4_c00001{bottom:109.920846px;}
.y7d5_c00001{bottom:109.920864px;}
.ye2_c00001{bottom:109.921053px;}
.y1ff_c00001{bottom:109.921062px;}
.y115_c00001{bottom:109.921260px;}
.y1ecf_c00001{bottom:110.274240px;}
.y20c2_c00001{bottom:110.462628px;}
.y1de5_c00001{bottom:110.549838px;}
.y8b4_c00001{bottom:110.550450px;}
.y18cb_c00001{bottom:110.550459px;}
.y921_c00001{bottom:110.639685px;}
.yc3c_c00001{bottom:110.640450px;}
.y9c0_c00001{bottom:110.640540px;}
.y176b_c00001{bottom:110.909604px;}
.y247c_c00001{bottom:110.999838px;}
.y213f_c00001{bottom:111.003024px;}
.y2428_c00001{bottom:111.004698px;}
.y2501_c00001{bottom:111.270450px;}
.y1917_c00001{bottom:111.355554px;}
.y1294_c00001{bottom:111.359613px;}
.y15f4_c00001{bottom:111.360036px;}
.y8cc_c00001{bottom:111.720450px;}
.y2196_c00001{bottom:111.810450px;}
.y163a_c00001{bottom:111.903492px;}
.y1403_c00001{bottom:112.174689px;}
.y103b_c00001{bottom:112.350450px;}
.y1ec2_c00001{bottom:112.440450px;}
.y1221_c00001{bottom:112.440648px;}
.y1d66_c00001{bottom:112.534752px;}
.y12f6_c00001{bottom:112.710981px;}
.y1c4f_c00001{bottom:113.245203px;}
.y17e8_c00001{bottom:113.246328px;}
.y785_c00001{bottom:113.340450px;}
.y1f43_c00001{bottom:113.340600px;}
.y1b67_c00001{bottom:113.516211px;}
.y1bc7_c00001{bottom:113.516868px;}
.y11a3_c00001{bottom:113.519415px;}
.ybfa_c00001{bottom:113.519685px;}
.ydb9_c00001{bottom:113.523303px;}
.y144f_c00001{bottom:113.782899px;}
.y1758_c00001{bottom:113.788371px;}
.y1c03_c00001{bottom:113.790450px;}
.y2051_c00001{bottom:113.883507px;}
.y8b8_c00001{bottom:113.970450px;}
.y1b18_c00001{bottom:113.970774px;}
.y158f_c00001{bottom:114.060036px;}
.y1e03_c00001{bottom:114.510450px;}
.y1bd9_c00001{bottom:114.596868px;}
.y1c7b_c00001{bottom:114.685077px;}
.y1e40_c00001{bottom:114.690450px;}
.y1acf_c00001{bottom:114.780891px;}
.y685_c00001{bottom:114.780909px;}
.y15c6_c00001{bottom:114.870063px;}
.y1ba6_c00001{bottom:115.046265px;}
.y217c_c00001{bottom:115.052925px;}
.y1707_c00001{bottom:115.134204px;}
.y1dbd_c00001{bottom:115.320036px;}
.y15bb_c00001{bottom:115.320459px;}
.y1c96_c00001{bottom:115.673016px;}
.y1e1a_c00001{bottom:115.673673px;}
.y17ca_c00001{bottom:115.679496px;}
.y20ff_c00001{bottom:115.861701px;}
.y1427_c00001{bottom:115.943142px;}
.y150c_c00001{bottom:115.950846px;}
.y1f61_c00001{bottom:115.951089px;}
.y7bd_c00001{bottom:116.130450px;}
.ycda_c00001{bottom:116.250834px;}
.yd0b_c00001{bottom:116.281938px;}
.y1efc_c00001{bottom:116.393610px;}
.y14b0_c00001{bottom:116.400177px;}
.y12d9_c00001{bottom:116.400450px;}
.y243a_c00001{bottom:116.490450px;}
.ya22_c00001{bottom:116.662935px;}
.y21_c00001{bottom:116.670450px;}
.y63e_c00001{bottom:116.670600px;}
.ye64_c00001{bottom:116.671023px;}
.y14d0_c00001{bottom:116.754330px;}
.y161a_c00001{bottom:116.850450px;}
.y1b39_c00001{bottom:117.116148px;}
.y88a_c00001{bottom:117.300450px;}
.y18af_c00001{bottom:117.480450px;}
.y1895_c00001{bottom:117.656508px;}
.yae8_c00001{bottom:117.660540px;}
.y16dc_c00001{bottom:117.747813px;}
.y13c0_c00001{bottom:117.840684px;}
.y1d17_c00001{bottom:118.200450px;}
.y1b73_c00001{bottom:118.200675px;}
.y19a6_c00001{bottom:118.288236px;}
.yb6b_c00001{bottom:118.559190px;}
.y1a1e_c00001{bottom:118.559433px;}
.y1cf4_c00001{bottom:118.560450px;}
.y130b_c00001{bottom:118.560459px;}
.y136b_c00001{bottom:118.560648px;}
.y1fa8_c00001{bottom:118.562538px;}
.y2302_c00001{bottom:118.563114px;}
.y1d3f_c00001{bottom:118.564104px;}
.yc90_c00001{bottom:118.640982px;}
.yb18_c00001{bottom:118.649775px;}
.y1ce8_c00001{bottom:118.737165px;}
.y172d_c00001{bottom:118.830450px;}
.y1bf6_c00001{bottom:118.919496px;}
.y2453_c00001{bottom:119.280450px;}
.y1720_c00001{bottom:119.540892px;}
.y17ee_c00001{bottom:119.550675px;}
.y9d2_c00001{bottom:119.550837px;}
.ybb8_c00001{bottom:119.639010px;}
.y97c_c00001{bottom:119.640540px;}
.y197d_c00001{bottom:119.819325px;}
.y1a41_c00001{bottom:120.004662px;}
.y20de_c00001{bottom:120.360450px;}
.y2120_c00001{bottom:120.360600px;}
.yb38_c00001{bottom:120.617382px;}
.y1519_c00001{bottom:120.629565px;}
.y1782_c00001{bottom:120.629847px;}
.yc43_c00001{bottom:120.630450px;}
.y2296_c00001{bottom:120.814779px;}
.y21f5_c00001{bottom:121.352817px;}
.y124a_c00001{bottom:121.435518px;}
.y22b3_c00001{bottom:121.534716px;}
.y1e22_c00001{bottom:121.702206px;}
.y1e9a_c00001{bottom:121.710600px;}
.y1351_c00001{bottom:121.795824px;}
.y194b_c00001{bottom:121.796895px;}
.y1ead_c00001{bottom:121.890036px;}
.y1fd4_c00001{bottom:122.340450px;}
.y126a_c00001{bottom:122.519754px;}
.y1ca6_c00001{bottom:122.520450px;}
.y1d8b_c00001{bottom:122.880648px;}
.y1af8_c00001{bottom:122.970081px;}
.y8a8_c00001{bottom:122.970450px;}
.y1aa4_c00001{bottom:123.236112px;}
.y1f24_c00001{bottom:123.331458px;}
.y233a_c00001{bottom:123.332916px;}
.y106a_c00001{bottom:123.419010px;}
.y7e9_c00001{bottom:123.510450px;}
.y18b8_c00001{bottom:123.592323px;}
.y1e63_c00001{bottom:123.592980px;}
.y1777_c00001{bottom:123.600027px;}
.y1c33_c00001{bottom:123.690450px;}
.y23bc_c00001{bottom:123.784707px;}
.y11fe_c00001{bottom:123.870027px;}
.y23f0_c00001{bottom:123.962664px;}
.yca6_c00001{bottom:124.032351px;}
.y216d_c00001{bottom:124.052889px;}
.yd8e_c00001{bottom:124.140450px;}
.y1322_c00001{bottom:124.225086px;}
.y195a_c00001{bottom:124.228749px;}
.yb29_c00001{bottom:124.230450px;}
.y208d_c00001{bottom:124.410600px;}
.y1106_c00001{bottom:124.493277px;}
.y12b5_c00001{bottom:124.672980px;}
.y24c3_c00001{bottom:124.680450px;}
.y240a_c00001{bottom:124.682601px;}
.y1736_c00001{bottom:124.949406px;}
.y22ec_c00001{bottom:125.132826px;}
.yecc_c00001{bottom:125.310450px;}
.ye93_c00001{bottom:125.311005px;}
.yea3_c00001{bottom:125.311053px;}
.ye2f_c00001{bottom:125.314761px;}
.y21b2_c00001{bottom:125.402538px;}
.y1fc2_c00001{bottom:125.670450px;}
.y18c8_c00001{bottom:125.754294px;}
.y2381_c00001{bottom:125.851755px;}
.y1a7b_c00001{bottom:126.212052px;}
.y85d_c00001{bottom:126.300450px;}
.yfac_c00001{bottom:126.478740px;}
.ybc3_c00001{bottom:126.653637px;}
.ya44_c00001{bottom:126.658578px;}
.yadd_c00001{bottom:126.659010px;}
.y100b_c00001{bottom:126.660468px;}
.y1dc4_c00001{bottom:126.750027px;}
.y1ffd_c00001{bottom:126.752130px;}
.y1e7d_c00001{bottom:126.834294px;}
.y1b8c_c00001{bottom:126.840639px;}
.y2158_c00001{bottom:126.930450px;}
.ydf3_c00001{bottom:127.024356px;}
.yd2_c00001{bottom:127.110459px;}
.yc5_c00001{bottom:127.110468px;}
.y4c_c00001{bottom:127.110657px;}
.y5da_c00001{bottom:127.110666px;}
.y7d4_c00001{bottom:127.110675px;}
.ye1_c00001{bottom:127.110864px;}
.y1fe_c00001{bottom:127.110873px;}
.y114_c00001{bottom:127.111071px;}
.yb11_c00001{bottom:127.200360px;}
.y168c_c00001{bottom:127.290450px;}
.y109b_c00001{bottom:127.464708px;}
.y1ece_c00001{bottom:127.554231px;}
.y1e92_c00001{bottom:127.554888px;}
.y1bb1_c00001{bottom:127.560450px;}
.y112d_c00001{bottom:127.650693px;}
.y20c1_c00001{bottom:127.652439px;}
.y20_c00001{bottom:127.830450px;}
.y348_c00001{bottom:127.830600px;}
.y3e3_c00001{bottom:128.010765px;}
.y176a_c00001{bottom:128.099415px;}
.y1f82_c00001{bottom:128.280450px;}
.y2072_c00001{bottom:128.281626px;}
.y213e_c00001{bottom:128.283015px;}
.y23a1_c00001{bottom:128.283051px;}
.y23d8_c00001{bottom:128.284689px;}
.y24e3_c00001{bottom:128.550450px;}
.ya76_c00001{bottom:128.628390px;}
.y1820_c00001{bottom:128.634888px;}
.y1916_c00001{bottom:128.635545px;}
.yb95_c00001{bottom:128.638920px;}
.yfdd_c00001{bottom:128.639397px;}
.y1293_c00001{bottom:128.639604px;}
.y15f3_c00001{bottom:128.640027px;}
.y179d_c00001{bottom:128.718210px;}
.y1e13_c00001{bottom:128.817786px;}
.y14f9_c00001{bottom:128.905428px;}
.y1edd_c00001{bottom:128.909001px;}
.y1d0a_c00001{bottom:128.910177px;}
.y1cd2_c00001{bottom:128.910450px;}
.y1532_c00001{bottom:128.910693px;}
.yd6c_c00001{bottom:129.238626px;}
.y103a_c00001{bottom:129.625365px;}
.y1c23_c00001{bottom:129.629847px;}
.y9bf_c00001{bottom:129.630450px;}
.y1220_c00001{bottom:129.630459px;}
.y1ec1_c00001{bottom:129.715545px;}
.y11c5_c00001{bottom:129.716202px;}
.yf7a_c00001{bottom:129.810450px;}
.y1d65_c00001{bottom:129.814743px;}
.y1156_c00001{bottom:129.990036px;}
.y12f5_c00001{bottom:129.990972px;}
.y9fd_c00001{bottom:130.161630px;}
.y24dc_c00001{bottom:130.260450px;}
.y17e7_c00001{bottom:130.436139px;}
.y2452_c00001{bottom:130.440450px;}
.y747_c00001{bottom:130.530600px;}
.y231a_c00001{bottom:130.534680px;}
.y1bc6_c00001{bottom:130.796859px;}
.y174b_c00001{bottom:130.978812px;}
.y1572_c00001{bottom:131.062233px;}
.y1ef4_c00001{bottom:131.246256px;}
.y1b17_c00001{bottom:131.250765px;}
.y158e_c00001{bottom:131.340027px;}
.ybe0_c00001{bottom:131.504052px;}
.yb5e_c00001{bottom:131.697720px;}
.y1bd8_c00001{bottom:131.876859px;}
.y1c7a_c00001{bottom:131.965068px;}
.y8be_c00001{bottom:131.970450px;}
.y1ace_c00001{bottom:131.970702px;}
.y21d3_c00001{bottom:132.064734px;}
.yef9_c00001{bottom:132.150459px;}
.y1ba5_c00001{bottom:132.236076px;}
.y1706_c00001{bottom:132.324015px;}
.y217b_c00001{bottom:132.332916px;}
.y1e96_c00001{bottom:132.592944px;}
.y1dbc_c00001{bottom:132.600027px;}
.y15ba_c00001{bottom:132.600450px;}
.y1c95_c00001{bottom:132.862827px;}
.y17c9_c00001{bottom:132.959487px;}
.y1c61_c00001{bottom:132.960450px;}
.y20fe_c00001{bottom:133.051512px;}
.y150b_c00001{bottom:133.140657px;}
.y1426_c00001{bottom:133.223133px;}
.y2034_c00001{bottom:133.502934px;}
.y12d8_c00001{bottom:133.672944px;}
.y4a1_c00001{bottom:133.770450px;}
.y6b_c00001{bottom:133.860450px;}
.y14cf_c00001{bottom:133.944141px;}
.ybe_c00001{bottom:133.950450px;}
.ye63_c00001{bottom:133.951014px;}
.y1619_c00001{bottom:134.127507px;}
.y8b3_c00001{bottom:134.220450px;}
.y1b38_c00001{bottom:134.396139px;}
.yaa9_c00001{bottom:134.666292px;}
.y18ae_c00001{bottom:134.754258px;}
.y10de_c00001{bottom:134.849988px;}
.y2500_c00001{bottom:134.850450px;}
.yb67_c00001{bottom:134.939325px;}
.y13bf_c00001{bottom:135.120675px;}
.yb9e_c00001{bottom:135.300027px;}
.y889_c00001{bottom:135.300450px;}
.y1e3f_c00001{bottom:135.390450px;}
.y19a5_c00001{bottom:135.478047px;}
.y1b72_c00001{bottom:135.480666px;}
.ya21_c00001{bottom:135.652845px;}
.y10c1_c00001{bottom:135.659847px;}
.y1dae_c00001{bottom:135.660945px;}
.y1c1f_c00001{bottom:135.742827px;}
.y1fa7_c00001{bottom:135.752349px;}
.y2301_c00001{bottom:135.752925px;}
.y1d3e_c00001{bottom:135.753915px;}
.y130a_c00001{bottom:135.834258px;}
.y1f08_c00001{bottom:135.834915px;}
.y1a1d_c00001{bottom:135.839424px;}
.y136a_c00001{bottom:135.840639px;}
.y1ce7_c00001{bottom:135.926976px;}
.ycd9_c00001{bottom:136.140114px;}
.yd0a_c00001{bottom:136.171218px;}
.y1bf5_c00001{bottom:136.199487px;}
.y1851_c00001{bottom:136.288164px;}
.y684_c00001{bottom:136.470252px;}
.yc68_c00001{bottom:136.641045px;}
.ya6c_c00001{bottom:136.642692px;}
.yc72_c00001{bottom:136.644339px;}
.y99b_c00001{bottom:136.650540px;}
.y2011_c00001{bottom:136.740450px;}
.y18d9_c00001{bottom:136.825392px;}
.y1599_c00001{bottom:136.830657px;}
.y17ed_c00001{bottom:136.830666px;}
.y2115_c00001{bottom:136.920600px;}
.y784_c00001{bottom:137.010450px;}
.y197c_c00001{bottom:137.099316px;}
.y22d2_c00001{bottom:137.190450px;}
.y1e5c_c00001{bottom:137.273664px;}
.y338_c00001{bottom:137.550450px;}
.yc8f_c00001{bottom:137.630892px;}
.yac1_c00001{bottom:137.639595px;}
.yb17_c00001{bottom:137.639685px;}
.ybbd_c00001{bottom:137.640540px;}
.ydb8_c00001{bottom:137.642997px;}
.y1de4_c00001{bottom:137.901540px;}
.y1715_c00001{bottom:137.909001px;}
.y1e83_c00001{bottom:137.909556px;}
.y1781_c00001{bottom:137.909838px;}
.y19c_c00001{bottom:138.000450px;}
.y1639_c00001{bottom:138.093267px;}
.y247b_c00001{bottom:138.360450px;}
.y1ee6_c00001{bottom:138.360468px;}
.y1402_c00001{bottom:138.454644px;}
.y920_c00001{bottom:138.617445px;}
.y952_c00001{bottom:138.628830px;}
.ybb7_c00001{bottom:138.628920px;}
.y859_c00001{bottom:138.630450px;}
.y21f4_c00001{bottom:138.632808px;}
.y1249_c00001{bottom:138.715509px;}
.y1869_c00001{bottom:138.720450px;}
.y2434_c00001{bottom:138.814707px;}
.y1350_c00001{bottom:138.985635px;}
.y194a_c00001{bottom:138.986706px;}
.y1269_c00001{bottom:139.709565px;}
.y7bc_c00001{bottom:139.800450px;}
.y2050_c00001{bottom:140.073282px;}
.y1d8a_c00001{bottom:140.160639px;}
.y63d_c00001{bottom:140.250600px;}
.y1c4e_c00001{bottom:140.515635px;}
.y2339_c00001{bottom:140.612907px;}
.y18b7_c00001{bottom:140.782134px;}
.y1e62_c00001{bottom:140.782791px;}
.y1557_c00001{bottom:140.789667px;}
.y11a2_c00001{bottom:140.789847px;}
.y1b66_c00001{bottom:140.876823px;}
.y85f_c00001{bottom:140.970450px;}
.y1757_c00001{bottom:141.058803px;}
.y11fd_c00001{bottom:141.059838px;}
.y23bb_c00001{bottom:141.064698px;}
.y144e_c00001{bottom:141.143511px;}
.y23ef_c00001{bottom:141.152475px;}
.y216c_c00001{bottom:141.332880px;}
.ybf9_c00001{bottom:141.493107px;}
.y2195_c00001{bottom:141.510450px;}
.y1813_c00001{bottom:141.596760px;}
.y1105_c00001{bottom:141.773268px;}
.y12b4_c00001{bottom:141.862791px;}
.y1493_c00001{bottom:141.863448px;}
.y2409_c00001{bottom:141.962592px;}
.y15c5_c00001{bottom:142.140495px;}
.y1f60_c00001{bottom:142.231044px;}
.y8f7_c00001{bottom:142.398360px;}
.ye92_c00001{bottom:142.500816px;}
.yea2_c00001{bottom:142.500864px;}
.yecb_c00001{bottom:142.503330px;}
.ye2e_c00001{bottom:142.504572px;}
.y21b1_c00001{bottom:142.682529px;}
.y18c7_c00001{bottom:142.944105px;}
.y1f42_c00001{bottom:143.040600px;}
.y1fd3_c00001{bottom:143.130450px;}
.yb28_c00001{bottom:143.215869px;}
.y251a_c00001{bottom:143.400450px;}
.y1c02_c00001{bottom:143.490450px;}
.y1a7a_c00001{bottom:143.492043px;}
.yfab_c00001{bottom:143.668551px;}
.yc3b_c00001{bottom:143.749497px;}
.y182b_c00001{bottom:143.754222px;}
.y14af_c00001{bottom:143.760789px;}
.y100a_c00001{bottom:143.940459px;}
.y1750_c00001{bottom:144.020253px;}
.y1b8b_c00001{bottom:144.024105px;}
.y16db_c00001{bottom:144.027768px;}
.y137d_c00001{bottom:144.029001px;}
.y1dc3_c00001{bottom:144.030018px;}
.y1ffc_c00001{bottom:144.032121px;}
.y4a0_c00001{bottom:144.120639px;}
.y1e02_c00001{bottom:144.210450px;}
.ybd_c00001{bottom:144.210459px;}
.y1466_c00001{bottom:144.290793px;}
.y863_c00001{bottom:144.300450px;}
.ydf2_c00001{bottom:144.304347px;}
.yc4_c00001{bottom:144.390459px;}
.y4b_c00001{bottom:144.390648px;}
.y56d_c00001{bottom:144.390657px;}
.y3c5_c00001{bottom:144.390666px;}
.ye0_c00001{bottom:144.390855px;}
.y1fd_c00001{bottom:144.390864px;}
.y113_c00001{bottom:144.391062px;}
.y7fe_c00001{bottom:144.660450px;}
.y1ecd_c00001{bottom:144.834222px;}
.y1894_c00001{bottom:144.926940px;}
.y112c_c00001{bottom:144.930684px;}
.y20c0_c00001{bottom:144.932430px;}
.y16e_c00001{bottom:145.020450px;}
.y1ca0_c00001{bottom:145.104762px;}
.y18df_c00001{bottom:145.110450px;}
.yf20_c00001{bottom:145.292997px;}
.y1769_c00001{bottom:145.379406px;}
.y2281_c00001{bottom:145.382781px;}
.y2071_c00001{bottom:145.561617px;}
.y213d_c00001{bottom:145.563006px;}
.y23a0_c00001{bottom:145.563042px;}
.y2427_c00001{bottom:145.564680px;}
.yad4_c00001{bottom:145.643547px;}
.ya43_c00001{bottom:145.648488px;}
.yadc_c00001{bottom:145.648920px;}
.yfdc_c00001{bottom:145.829208px;}
.y1292_c00001{bottom:145.829415px;}
.y15f2_c00001{bottom:145.829838px;}
.y1915_c00001{bottom:145.915536px;}
.y24ee_c00001{bottom:146.100450px;}
.y172c_c00001{bottom:146.181567px;}
.y14f8_c00001{bottom:146.185419px;}
.yb10_c00001{bottom:146.190270px;}
.y1531_c00001{bottom:146.190684px;}
.y1a40_c00001{bottom:146.284617px;}
.y8a7_c00001{bottom:146.550450px;}
.y171f_c00001{bottom:146.901504px;}
.y19f6_c00001{bottom:146.905356px;}
.y1c22_c00001{bottom:146.909838px;}
.y121f_c00001{bottom:146.910450px;}
.y1d64_c00001{bottom:147.004554px;}
.y7e8_c00001{bottom:147.180450px;}
.y1155_c00001{bottom:147.270027px;}
.y1a90_c00001{bottom:147.449442px;}
.ya75_c00001{bottom:147.618300px;}
.y944_c00001{bottom:147.630360px;}
.y9d1_c00001{bottom:147.630540px;}
.y9c6_c00001{bottom:147.630690px;}
.y17e6_c00001{bottom:147.716130px;}
.y22b2_c00001{bottom:147.724491px;}
.yd8d_c00001{bottom:147.810450px;}
.y234e_c00001{bottom:147.814671px;}
.y1d16_c00001{bottom:147.900450px;}
.y1e99_c00001{bottom:147.982161px;}
.y19d1_c00001{bottom:147.986013px;}
.y1bc5_c00001{bottom:147.986670px;}
.y1518_c00001{bottom:147.990177px;}
.y168b_c00001{bottom:147.990450px;}
.y117b_c00001{bottom:148.259613px;}
.y24c2_c00001{bottom:148.260450px;}
.y1ef3_c00001{bottom:148.436067px;}
.y79a_c00001{bottom:148.530450px;}
.y1b16_c00001{bottom:148.530756px;}
.yc42_c00001{bottom:148.606500px;}
.yb37_c00001{bottom:148.608147px;}
.y158d_c00001{bottom:148.620018px;}
.y1cd1_c00001{bottom:148.984662px;}
.yd6b_c00001{bottom:149.038050px;}
.y1e21_c00001{bottom:149.062818px;}
.y1bd7_c00001{bottom:149.066670px;}
.y15a9_c00001{bottom:149.069556px;}
.y1eac_c00001{bottom:149.250648px;}
.y1acd_c00001{bottom:149.250693px;}
.yef8_c00001{bottom:149.430450px;}
.y1eba_c00001{bottom:149.516724px;}
.y2539_c00001{bottom:149.520450px;}
.y1f23_c00001{bottom:149.521233px;}
.y1705_c00001{bottom:149.604006px;}
.y217a_c00001{bottom:149.612907px;}
.y1ca5_c00001{bottom:149.782755px;}
.y1dbb_c00001{bottom:149.789838px;}
.y85c_c00001{bottom:149.970450px;}
.y20dd_c00001{bottom:150.060450px;}
.y211f_c00001{bottom:150.060600px;}
.y1c94_c00001{bottom:150.142818px;}
.y17c8_c00001{bottom:150.149298px;}
.y1af7_c00001{bottom:150.330693px;}
.y20fd_c00001{bottom:150.331503px;}
.y1425_c00001{bottom:150.412944px;}
.y13e3_c00001{bottom:150.413358px;}
.y11de_c00001{bottom:150.419649px;}
.y150a_c00001{bottom:150.420648px;}
.yc0a_c00001{bottom:150.493962px;}
.y1321_c00001{bottom:150.505041px;}
.y1959_c00001{bottom:150.508704px;}
.y1aa3_c00001{bottom:150.596724px;}
.yb5d_c00001{bottom:150.687630px;}
.y1069_c00001{bottom:150.779622px;}
.y12d7_c00001{bottom:150.862755px;}
.y1926_c00001{bottom:150.863412px;}
.y1776_c00001{bottom:150.870459px;}
.y1395_c00001{bottom:151.139226px;}
.y85_c00001{bottom:151.140450px;}
.ye62_c00001{bottom:151.140825px;}
.y1618_c00001{bottom:151.317318px;}
.y22eb_c00001{bottom:151.412781px;}
.yca9_c00001{bottom:151.660614px;}
.y1b37_c00001{bottom:151.676130px;}
.y18ad_c00001{bottom:151.944069px;}
.y2380_c00001{bottom:152.131710px;}
.y1735_c00001{bottom:152.219838px;}
.y24e2_c00001{bottom:152.220450px;}
.y19a4_c00001{bottom:152.758038px;}
.y1b71_c00001{bottom:152.760657px;}
.y1c32_c00001{bottom:152.935392px;}
.y1dad_c00001{bottom:152.940936px;}
.y19b4_c00001{bottom:153.024069px;}
.y1369_c00001{bottom:153.024726px;}
.y1fa6_c00001{bottom:153.032340px;}
.y2300_c00001{bottom:153.032916px;}
.y1d3d_c00001{bottom:153.033906px;}
.y69c_c00001{bottom:153.300450px;}
.y1bf4_c00001{bottom:153.389298px;}
.y3e2_c00001{bottom:153.390450px;}
.y1850_c00001{bottom:153.477975px;}
.yaa8_c00001{bottom:153.656202px;}
.y1c60_c00001{bottom:153.660450px;}
.y16c3_c00001{bottom:153.834843px;}
.y24db_c00001{bottom:153.930450px;}
.y18ca_c00001{bottom:154.100874px;}
.y208c_c00001{bottom:154.110600px;}
.y1598_c00001{bottom:154.110648px;}
.y17ec_c00001{bottom:154.110657px;}
.y746_c00001{bottom:154.200600px;}
.y1547_c00001{bottom:154.379226px;}
.y23d7_c00001{bottom:154.474464px;}
.y109a_c00001{bottom:154.735140px;}
.y1bb0_c00001{bottom:154.825320px;}
.y1e91_c00001{bottom:154.915500px;}
.y76d_c00001{bottom:154.920450px;}
.y179c_c00001{bottom:154.998165px;}
.y1fc1_c00001{bottom:155.280450px;}
.y1785_c00001{bottom:155.460027px;}
.y8bd_c00001{bottom:155.550450px;}
.y247a_c00001{bottom:155.551269px;}
.y99a_c00001{bottom:155.630955px;}
.ya6b_c00001{bottom:155.632602px;}
.yc5c_c00001{bottom:155.634249px;}
.y1ee5_c00001{bottom:155.640459px;}
.y1248_c00001{bottom:155.905320px;}
.y21f3_c00001{bottom:155.912799px;}
.ycd8_c00001{bottom:155.939538px;}
.yd09_c00001{bottom:155.970642px;}
.y2433_c00001{bottom:156.004518px;}
.y1a5a_c00001{bottom:156.088218px;}
.y1e3e_c00001{bottom:156.090450px;}
.y134f_c00001{bottom:156.265626px;}
.y1949_c00001{bottom:156.266697px;}
.y1edc_c00001{bottom:156.269613px;}
.y1d09_c00001{bottom:156.270789px;}
.y12f4_c00001{bottom:156.270927px;}
.yc14_c00001{bottom:156.619155px;}
.yc8e_c00001{bottom:156.620802px;}
.yb94_c00001{bottom:156.629685px;}
.ybbc_c00001{bottom:156.630450px;}
.y2319_c00001{bottom:156.724455px;}
.y1039_c00001{bottom:156.895797px;}
.y11c4_c00001{bottom:156.986634px;}
.yf79_c00001{bottom:157.162485px;}
.y1d89_c00001{bottom:157.350450px;}
.y7ac_c00001{bottom:157.530450px;}
.y97b_c00001{bottom:157.607355px;}
.y96f_c00001{bottom:157.609002px;}
.y1c4d_c00001{bottom:157.795626px;}
.y8b2_c00001{bottom:157.800450px;}
.y2338_c00001{bottom:157.802718px;}
.y1f81_c00001{bottom:157.980450px;}
.y9fc_c00001{bottom:158.061810px;}
.y18b6_c00001{bottom:158.062125px;}
.y1e61_c00001{bottom:158.062782px;}
.y1b65_c00001{bottom:158.066634px;}
.y1556_c00001{bottom:158.069658px;}
.y21d2_c00001{bottom:158.254509px;}
.y174a_c00001{bottom:158.339424px;}
.y1571_c00001{bottom:158.422845px;}
.y144d_c00001{bottom:158.423502px;}
.y23ee_c00001{bottom:158.432466px;}
.y24ff_c00001{bottom:158.520450px;}
.y216b_c00001{bottom:158.612871px;}
.y1812_c00001{bottom:158.876751px;}
.y1104_c00001{bottom:158.963079px;}
.y888_c00001{bottom:158.970450px;}
.y12b3_c00001{bottom:159.142782px;}
.y2408_c00001{bottom:159.152403px;}
.y1c79_c00001{bottom:159.325680px;}
.y1f5f_c00001{bottom:159.420855px;}
.ybdf_c00001{bottom:159.494817px;}
.y1ba4_c00001{bottom:159.596688px;}
.ye91_c00001{bottom:159.780807px;}
.yea1_c00001{bottom:159.780855px;}
.y2033_c00001{bottom:159.782889px;}
.yeca_c00001{bottom:159.783321px;}
.ye2d_c00001{bottom:159.784563px;}
.y15b9_c00001{bottom:159.863376px;}
.y1ef9_c00001{bottom:160.223439px;}
.y14ce_c00001{bottom:160.224096px;}
.y2fd_c00001{bottom:160.590450px;}
.y885_c00001{bottom:160.680450px;}
.y1a79_c00001{bottom:160.681854px;}
.y16af_c00001{bottom:160.769433px;}
.y14ae_c00001{bottom:160.944033px;}
.yfaa_c00001{bottom:160.948542px;}
.y337_c00001{bottom:161.220450px;}
.y1e7c_c00001{bottom:161.304096px;}
.y13be_c00001{bottom:161.310450px;}
.ydf1_c00001{bottom:161.494158px;}
.y19b_c00001{bottom:161.670450px;}
.y4a_c00001{bottom:161.670639px;}
.y290_c00001{bottom:161.670648px;}
.y3c4_c00001{bottom:161.670657px;}
.ydf_c00001{bottom:161.670846px;}
.y1fc_c00001{bottom:161.670855px;}
.y112_c00001{bottom:161.671053px;}
.y2451_c00001{bottom:161.845194px;}
.ydb7_c00001{bottom:161.852862px;}
.y1ecc_c00001{bottom:162.024033px;}
.y1a1c_c00001{bottom:162.119379px;}
.yb27_c00001{bottom:162.205779px;}
.y1893_c00001{bottom:162.206931px;}
.y10dd_c00001{bottom:162.210600px;}
.y112b_c00001{bottom:162.210675px;}
.y20bf_c00001{bottom:162.212421px;}
.y1ce_c00001{bottom:162.300450px;}
.y6c7_c00001{bottom:162.300600px;}
.yc3a_c00001{bottom:162.648822px;}
.y1740_c00001{bottom:162.660018px;}
.y2280_c00001{bottom:162.662772px;}
.y2070_c00001{bottom:162.751428px;}
.y213c_c00001{bottom:162.752817px;}
.y239f_c00001{bottom:162.752853px;}
.yb66_c00001{bottom:162.930090px;}
.y10c0_c00001{bottom:163.020459px;}
.y1c1e_c00001{bottom:163.103439px;}
.y1309_c00001{bottom:163.104690px;}
.y1914_c00001{bottom:163.105347px;}
.yfdb_c00001{bottom:163.109199px;}
.y1ce6_c00001{bottom:163.287588px;}
.y197b_c00001{bottom:163.289091px;}
.y172b_c00001{bottom:163.371378px;}
.y14f7_c00001{bottom:163.465410px;}
.ya20_c00001{bottom:163.643610px;}
.y1fd2_c00001{bottom:163.830450px;}
.y63c_c00001{bottom:163.920600px;}
.y121e_c00001{bottom:164.181495px;}
.y18d8_c00001{bottom:164.186004px;}
.y222a_c00001{bottom:164.284545px;}
.y1638_c00001{bottom:164.373222px;}
.y1154_c00001{bottom:164.459838px;}
.y85e_c00001{bottom:164.550450px;}
.ya88_c00001{bottom:164.633457px;}
.y1e5b_c00001{bottom:164.634276px;}
.ya42_c00001{bottom:164.638398px;}
.y1a8f_c00001{bottom:164.639253px;}
.yb9d_c00001{bottom:164.639685px;}
.y1401_c00001{bottom:164.734599px;}
.y17e5_c00001{bottom:164.905941px;}
.y20a2_c00001{bottom:165.090450px;}
.y1780_c00001{bottom:165.262152px;}
.y1bc4_c00001{bottom:165.266661px;}
.y1714_c00001{bottom:165.269613px;}
.y1517_c00001{bottom:165.270168px;}
.y117a_c00001{bottom:165.539604px;}
.yac0_c00001{bottom:165.630360px;}
.yb16_c00001{bottom:165.630450px;}
.y1ef2_c00001{bottom:165.716058px;}
.y1b15_c00001{bottom:165.720567px;}
.y2268_c00001{bottom:165.814599px;}
.y1cd0_c00001{bottom:166.174473px;}
.y22d1_c00001{bottom:166.263042px;}
.y1e20_c00001{bottom:166.342809px;}
.y1bd6_c00001{bottom:166.346661px;}
.y204f_c00001{bottom:166.353237px;}
.yf4b_c00001{bottom:166.435689px;}
.y2010_c00001{bottom:166.440450px;}
.y1eab_c00001{bottom:166.440459px;}
.y1665_c00001{bottom:166.527426px;}
.y1acc_c00001{bottom:166.530684px;}
.y91f_c00001{bottom:166.608210px;}
.y951_c00001{bottom:166.619595px;}
.ybb6_c00001{bottom:166.619685px;}
.y9d0_c00001{bottom:166.620450px;}
.y9c5_c00001{bottom:166.620600px;}
.yef7_c00001{bottom:166.711467px;}
.y2179_c00001{bottom:166.802718px;}
.y1268_c00001{bottom:167.070177px;}
.y2519_c00001{bottom:167.070450px;}
.y683_c00001{bottom:167.160450px;}
.y1c93_c00001{bottom:167.422809px;}
.y17c7_c00001{bottom:167.429289px;}
.y236a_c00001{bottom:167.430900px;}
.y1af6_c00001{bottom:167.610684px;}
.y20fc_c00001{bottom:167.611494px;}
.y1509_c00001{bottom:167.700639px;}
.y1aa2_c00001{bottom:167.876715px;}
.y1068_c00001{bottom:167.969433px;}
.y862_c00001{bottom:167.970450px;}
.y3c0_c00001{bottom:168.060450px;}
.y12d6_c00001{bottom:168.142746px;}
.y1775_c00001{bottom:168.143403px;}
.y11a1_c00001{bottom:168.150459px;}
.ybc_c00001{bottom:168.240450px;}
.y7fd_c00001{bottom:168.330450px;}
.y15c4_c00001{bottom:168.409434px;}
.y1756_c00001{bottom:168.419415px;}
.y84_c00001{bottom:168.420450px;}
.ye61_c00001{bottom:168.420816px;}
.y1617_c00001{bottom:168.597309px;}
.y168a_c00001{bottom:168.690450px;}
.yd6a_c00001{bottom:168.927330px;}
.y21b0_c00001{bottom:168.962484px;}
.y1492_c00001{bottom:169.224060px;}
.ybf8_c00001{bottom:169.483872px;}
.yf1f_c00001{bottom:169.502862px;}
.y1b70_c00001{bottom:169.950468px;}
.y19a3_c00001{bottom:170.038029px;}
.y16da_c00001{bottom:170.217543px;}
.y8aa_c00001{bottom:170.220450px;}
.y19b3_c00001{bottom:170.304060px;}
.y1e19_c00001{bottom:170.304717px;}
.y1ffb_c00001{bottom:170.312076px;}
.y1fa5_c00001{bottom:170.312331px;}
.y22ff_c00001{bottom:170.312907px;}
.y8f6_c00001{bottom:170.389125px;}
.y1f_c00001{bottom:170.400450px;}
.y3e1_c00001{bottom:170.580450px;}
.y1bf3_c00001{bottom:170.669289px;}
.y184f_c00001{bottom:170.757966px;}
.y7e7_c00001{bottom:170.850450px;}
.y1902_c00001{bottom:171.024654px;}
.y2194_c00001{bottom:171.210450px;}
.y174f_c00001{bottom:171.290685px;}
.y137c_c00001{bottom:171.299433px;}
.y1597_c00001{bottom:171.300459px;}
.y17eb_c00001{bottom:171.300468px;}
.y1b8a_c00001{bottom:171.384717px;}
.y75a_c00001{bottom:171.480450px;}
.y1465_c00001{bottom:171.651405px;}
.y2426_c00001{bottom:171.754455px;}
.y1099_c00001{bottom:172.015131px;}
.y1e90_c00001{bottom:172.105311px;}
.y799_c00001{bottom:172.110450px;}
.yca5_c00001{bottom:172.362648px;}
.y18de_c00001{bottom:172.371342px;}
.y7bb_c00001{bottom:172.380450px;}
.y1530_c00001{bottom:172.380459px;}
.y1c9f_c00001{bottom:172.465374px;}
.y16d_c00001{bottom:172.470450px;}
.y1a3f_c00001{bottom:172.474392px;}
.y23f6_c00001{bottom:172.564572px;}
.y1768_c00001{bottom:172.649838px;}
.yd8c_c00001{bottom:172.740450px;}
.y1f41_c00001{bottom:172.740600px;}
.y2479_c00001{bottom:172.831260px;}
.y1ee4_c00001{bottom:172.920450px;}
.y24ad_c00001{bottom:173.010450px;}
.y2538_c00001{bottom:173.100450px;}
.y21f2_c00001{bottom:173.102610px;}
.y1247_c00001{bottom:173.185311px;}
.y1291_c00001{bottom:173.190027px;}
.y15f1_c00001{bottom:173.190450px;}
.y1d63_c00001{bottom:173.284509px;}
.y1a59_c00001{bottom:173.368209px;}
.y1edb_c00001{bottom:173.459424px;}
.y547_c00001{bottom:173.460450px;}
.y1d08_c00001{bottom:173.460600px;}
.y12f3_c00001{bottom:173.460738px;}
.y1948_c00001{bottom:173.546688px;}
.y85b_c00001{bottom:173.550450px;}
.ybc2_c00001{bottom:173.634312px;}
.yadb_c00001{bottom:173.639685px;}
.y1e01_c00001{bottom:173.910450px;}
.y22b1_c00001{bottom:174.004446px;}
.yb0f_c00001{bottom:174.090450px;}
.y171e_c00001{bottom:174.262116px;}
.y19f5_c00001{bottom:174.265968px;}
.y1c21_c00001{bottom:174.270450px;}
.y1c5f_c00001{bottom:174.360450px;}
.yc67_c00001{bottom:174.620865px;}
.yc5b_c00001{bottom:174.624159px;}
.y1d88_c00001{bottom:175.080600px;}
.y2337_c00001{bottom:175.082709px;}
.y19d0_c00001{bottom:175.346625px;}
.y1555_c00001{bottom:175.349649px;}
.y23ba_c00001{bottom:175.534500px;}
.ya74_c00001{bottom:175.609065px;}
.y144c_c00001{bottom:175.613313px;}
.y1749_c00001{bottom:175.619415px;}
.yb93_c00001{bottom:175.619595px;}
.y943_c00001{bottom:175.621125px;}
.ycd7_c00001{bottom:175.738962px;}
.yd08_c00001{bottom:175.770066px;}
.y1eb9_c00001{bottom:175.796679px;}
.y24e1_c00001{bottom:175.800450px;}
.y1f22_c00001{bottom:175.801188px;}
.y216a_c00001{bottom:175.802682px;}
.y158c_c00001{bottom:175.879344px;}
.y1103_c00001{bottom:176.243070px;}
.y12b2_c00001{bottom:176.422773px;}
.y15a8_c00001{bottom:176.430168px;}
.y2407_c00001{bottom:176.432394px;}
.yc41_c00001{bottom:176.506680px;}
.y9be_c00001{bottom:176.508327px;}
.y11dd_c00001{bottom:176.699604px;}
.y1320_c00001{bottom:176.784996px;}
.y1958_c00001{bottom:176.788659px;}
.y1e3d_c00001{bottom:176.790450px;}
.y1704_c00001{bottom:176.874438px;}
.y1ba3_c00001{bottom:176.876679px;}
.y69b_c00001{bottom:176.880450px;}
.y9fb_c00001{bottom:177.051720px;}
.ye90_c00001{bottom:177.060798px;}
.yea0_c00001{bottom:177.060846px;}
.yec9_c00001{bottom:177.063312px;}
.ye2c_c00001{bottom:177.064554px;}
.y15b8_c00001{bottom:177.143367px;}
.y14cd_c00001{bottom:177.504087px;}
.y24da_c00001{bottom:177.510450px;}
.y1d15_c00001{bottom:177.600450px;}
.y22ea_c00001{bottom:177.602556px;}
.y1424_c00001{bottom:177.773556px;}
.y13e2_c00001{bottom:177.773970px;}
.y745_c00001{bottom:177.780600px;}
.y1a78_c00001{bottom:177.961845px;}
.y182a_c00001{bottom:178.224024px;}
.yfa9_c00001{bottom:178.228533px;}
.y1009_c00001{bottom:178.403727px;}
.y237f_c00001{bottom:178.411665px;}
.yc09_c00001{bottom:178.484727px;}
.y1e7b_c00001{bottom:178.493907px;}
.y1394_c00001{bottom:178.499838px;}
.y76c_c00001{bottom:178.500450px;}
.y13bd_c00001{bottom:178.589253px;}
.y49f_c00001{bottom:178.590855px;}
.yb5c_c00001{bottom:178.678395px;}
.y24ed_c00001{bottom:178.770450px;}
.ybb_c00001{bottom:178.770789px;}
.ydf0_c00001{bottom:178.774149px;}
.y532_c00001{bottom:178.860450px;}
.yc3_c00001{bottom:178.860459px;}
.y222_c00001{bottom:178.860468px;}
.yde_c00001{bottom:178.860657px;}
.y1fb_c00001{bottom:178.860666px;}
.y27b_c00001{bottom:178.860675px;}
.y111_c00001{bottom:178.860864px;}
.y1b36_c00001{bottom:178.946562px;}
.y3a3_c00001{bottom:179.040450px;}
.y1c31_c00001{bottom:179.215347px;}
.y8a6_c00001{bottom:179.220450px;}
.y1a1b_c00001{bottom:179.309190px;}
.y1d3c_c00001{bottom:179.313861px;}
.y10dc_c00001{bottom:179.390352px;}
.y20be_c00001{bottom:179.402232px;}
.y1892_c00001{bottom:179.486922px;}
.y83_c00001{bottom:179.580450px;}
.y23b_c00001{bottom:179.580600px;}
.y20dc_c00001{bottom:179.760450px;}
.y211e_c00001{bottom:179.760600px;}
.y227f_c00001{bottom:179.852583px;}
.y206f_c00001{bottom:180.031419px;}
.y213b_c00001{bottom:180.032808px;}
.y239e_c00001{bottom:180.032844px;}
.y1dac_c00001{bottom:180.211368px;}
.y1c1d_c00001{bottom:180.293250px;}
.y10bf_c00001{bottom:180.300450px;}
.y1368_c00001{bottom:180.385338px;}
.yfda_c00001{bottom:180.389190px;}
.y197a_c00001{bottom:180.569082px;}
.y172a_c00001{bottom:180.651369px;}
.y2fc_c00001{bottom:180.660450px;}
.y23d6_c00001{bottom:180.754419px;}
.y24c1_c00001{bottom:180.930450px;}
.y16c2_c00001{bottom:181.105275px;}
.y3e0_c00001{bottom:181.110459px;}
.yb26_c00001{bottom:181.195689px;}
.y7ab_c00001{bottom:181.200450px;}
.y179b_c00001{bottom:181.278120px;}
.y121d_c00001{bottom:181.371306px;}
.y18d7_c00001{bottom:181.465995px;}
.y8b1_c00001{bottom:181.470450px;}
.y2229_c00001{bottom:181.564536px;}
.yaa7_c00001{bottom:181.646967px;}
.y1546_c00001{bottom:181.739838px;}
.y17e4_c00001{bottom:182.185932px;}
.y1e12_c00001{bottom:182.368173px;}
.y1de3_c00001{bottom:182.451963px;}
.y1713_c00001{bottom:182.459424px;}
.y134e_c00001{bottom:182.545581px;}
.y1bc3_c00001{bottom:182.546652px;}
.y887_c00001{bottom:182.550450px;}
.ya1f_c00001{bottom:182.633520px;}
.y1ef1_c00001{bottom:182.905869px;}
.y1b14_c00001{bottom:183.000558px;}
.y2318_c00001{bottom:183.004410px;}
.y22d0_c00001{bottom:183.452853px;}
.y1ccf_c00001{bottom:183.454464px;}
.y999_c00001{bottom:183.621720px;}
.ya6a_c00001{bottom:183.623367px;}
.yf4a_c00001{bottom:183.625500px;}
.y1bd5_c00001{bottom:183.626652px;}
.yb9c_c00001{bottom:183.629595px;}
.y1eaa_c00001{bottom:183.718587px;}
.y1acb_c00001{bottom:183.720495px;}
.y1664_c00001{bottom:183.807417px;}
.y208b_c00001{bottom:183.810600px;}
.yef6_c00001{bottom:183.901278px;}
.y2246_c00001{bottom:184.082709px;}
.y1038_c00001{bottom:184.256409px;}
.y783_c00001{bottom:184.260450px;}
.y11c3_c00001{bottom:184.347246px;}
.y1267_c00001{bottom:184.350168px;}
.yf78_c00001{bottom:184.523097px;}
.y21d1_c00001{bottom:184.534464px;}
.yb15_c00001{bottom:184.609920px;}
.ybbb_c00001{bottom:184.611567px;}
.y1c92_c00001{bottom:184.612620px;}
.y17c6_c00001{bottom:184.619100px;}
.yabf_c00001{bottom:184.620270px;}
.yb6a_c00001{bottom:184.620360px;}
.y23ed_c00001{bottom:184.712421px;}
.y336_c00001{bottom:184.800450px;}
.y1af5_c00001{bottom:184.800495px;}
.y20fb_c00001{bottom:184.801305px;}
.y1508_c00001{bottom:184.878651px;}
.y1fc0_c00001{bottom:184.980450px;}
.y1aa1_c00001{bottom:185.066526px;}
.y1c4c_c00001{bottom:185.156238px;}
.y1067_c00001{bottom:185.249424px;}
.y19a_c00001{bottom:185.340450px;}
.y12d5_c00001{bottom:185.422737px;}
.y1e60_c00001{bottom:185.423394px;}
.y1b64_c00001{bottom:185.427246px;}
.y11a0_c00001{bottom:185.430450px;}
.y91e_c00001{bottom:185.507535px;}
.y96e_c00001{bottom:185.509182px;}
.ybb5_c00001{bottom:185.519010px;}
.y9cf_c00001{bottom:185.519775px;}
.y49_c00001{bottom:185.610450px;}
.y15c3_c00001{bottom:185.689425px;}
.y1570_c00001{bottom:185.693277px;}
.ye60_c00001{bottom:185.700807px;}
.y1f5e_c00001{bottom:185.700810px;}
.y1616_c00001{bottom:185.877300px;}
.ydb6_c00001{bottom:185.972556px;}
.y2032_c00001{bottom:186.062844px;}
.y1811_c00001{bottom:186.147183px;}
.y21af_c00001{bottom:186.152295px;}
.y2157_c00001{bottom:186.330450px;}
.y1491_c00001{bottom:186.413871px;}
.y18ac_c00001{bottom:186.504051px;}
.y1c78_c00001{bottom:186.596112px;}
.y1e95_c00001{bottom:187.223988px;}
.y1b51_c00001{bottom:187.227840px;}
.y1b6f_c00001{bottom:187.230459px;}
.ybde_c00001{bottom:187.485582px;}
.y1ef8_c00001{bottom:187.493871px;}
.y18c6_c00001{bottom:187.494528px;}
.y1ffa_c00001{bottom:187.501887px;}
.y22fe_c00001{bottom:187.502718px;}
.y63b_c00001{bottom:187.590600px;}
.y1f80_c00001{bottom:187.680450px;}
.y184e_c00001{bottom:188.037957px;}
.y16ae_c00001{bottom:188.130045px;}
.y1cd_c00001{bottom:188.220450px;}
.y14ad_c00001{bottom:188.304645px;}
.y112a_c00001{bottom:188.400450px;}
.y137b_c00001{bottom:188.579424px;}
.y1596_c00001{bottom:188.580450px;}
.y17ea_c00001{bottom:188.580459px;}
.yd69_c00001{bottom:188.726754px;}
.y2425_c00001{bottom:189.034446px;}
.y2450_c00001{bottom:189.115626px;}
.y1098_c00001{bottom:189.295122px;}
.y2da_c00001{bottom:189.300450px;}
.y1ecb_c00001{bottom:189.384645px;}
.y1e8f_c00001{bottom:189.385302px;}
.y434_c00001{bottom:189.390450px;}
.y18dd_c00001{bottom:189.651333px;}
.y152f_c00001{bottom:189.660450px;}
.y173f_c00001{bottom:189.917364px;}
.y1ee3_c00001{bottom:190.105239px;}
.y21f1_c00001{bottom:190.382601px;}
.y1246_c00001{bottom:190.465302px;}
.y1290_c00001{bottom:190.470018px;}
.y1d62_c00001{bottom:190.564500px;}
.yc39_c00001{bottom:190.639587px;}
.y1a58_c00001{bottom:190.648200px;}
.y1637_c00001{bottom:190.653177px;}
.y1d07_c00001{bottom:190.731333px;}
.y14f6_c00001{bottom:190.735842px;}
.y1947_c00001{bottom:190.736499px;}
.y1eda_c00001{bottom:190.739415px;}
.y80f_c00001{bottom:190.740450px;}
.y1a8e_c00001{bottom:190.919208px;}
.yb65_c00001{bottom:190.920855px;}
.y1400_c00001{bottom:190.924374px;}
.y24fe_c00001{bottom:191.100450px;}
.y234d_c00001{bottom:191.284437px;}
.y171d_c00001{bottom:191.451927px;}
.y19f4_c00001{bottom:191.545959px;}
.y861_c00001{bottom:191.550450px;}
.y3bf_c00001{bottom:191.730450px;}
.y1153_c00001{bottom:191.812647px;}
.y1e5a_c00001{bottom:191.994888px;}
.y7fc_c00001{bottom:192.000450px;}
.y2267_c00001{bottom:192.004374px;}
.y1516_c00001{bottom:192.531927px;}
.y177f_c00001{bottom:192.532584px;}
.yad3_c00001{bottom:192.624222px;}
.y19cf_c00001{bottom:192.626616px;}
.ya41_c00001{bottom:192.629163px;}
.y204e_c00001{bottom:192.633192px;}
.y1179_c00001{bottom:192.810036px;}
.y23b9_c00001{bottom:192.814491px;}
.y144b_c00001{bottom:192.893304px;}
.y1eb8_c00001{bottom:192.986490px;}
.yb0e_c00001{bottom:193.072746px;}
.y2178_c00001{bottom:193.082673px;}
.y1102_c00001{bottom:193.523061px;}
.y1fd1_c00001{bottom:193.530450px;}
.yc66_c00001{bottom:193.610775px;}
.y1e1f_c00001{bottom:193.613241px;}
.yf1e_c00001{bottom:193.622556px;}
.y2369_c00001{bottom:193.710855px;}
.y8bc_c00001{bottom:193.800450px;}
.y1e_c00001{bottom:193.980450px;}
.ye8f_c00001{bottom:194.250609px;}
.ye9f_c00001{bottom:194.250657px;}
.yec8_c00001{bottom:194.253123px;}
.ye2b_c00001{bottom:194.254365px;}
.y1c5_c00001{bottom:194.430450px;}
.y942_c00001{bottom:194.508390px;}
.y950_c00001{bottom:194.519775px;}
.y14cc_c00001{bottom:194.693898px;}
.y20a1_c00001{bottom:194.790450px;}
.y858_c00001{bottom:194.970450px;}
.y759_c00001{bottom:195.060450px;}
.y1a77_c00001{bottom:195.241836px;}
.y1774_c00001{bottom:195.413835px;}
.yc40_c00001{bottom:195.496590px;}
.yb36_c00001{bottom:195.498237px;}
.y1829_c00001{bottom:195.504015px;}
.ycd6_c00001{bottom:195.628242px;}
.yd07_c00001{bottom:195.659346px;}
.y11fc_c00001{bottom:195.770046px;}
.y1e7a_c00001{bottom:195.773898px;}
.y13bc_c00001{bottom:195.779064px;}
.y1755_c00001{bottom:195.780027px;}
.y798_c00001{bottom:195.780450px;}
.y1d87_c00001{bottom:195.780600px;}
.y49e_c00001{bottom:195.870846px;}
.y16c_c00001{bottom:196.050450px;}
.ydef_c00001{bottom:196.054140px;}
.y4b9_c00001{bottom:196.140360px;}
.y200f_c00001{bottom:196.140450px;}
.y1a4_c00001{bottom:196.140459px;}
.y9e_c00001{bottom:196.140648px;}
.y6a_c00001{bottom:196.140657px;}
.y27a_c00001{bottom:196.140666px;}
.y110_c00001{bottom:196.140855px;}
.y133_c00001{bottom:196.141419px;}
.yd8b_c00001{bottom:196.320450px;}
.y2114_c00001{bottom:196.320600px;}
.y19b2_c00001{bottom:196.493835px;}
.y16d9_c00001{bottom:196.497498px;}
.y1fa4_c00001{bottom:196.502106px;}
.y1d3b_c00001{bottom:196.503672px;}
.y1a1a_c00001{bottom:196.589181px;}
.y1891_c00001{bottom:196.676733px;}
.y24ac_c00001{bottom:196.680450px;}
.y20bd_c00001{bottom:196.682223px;}
.yd1_c00001{bottom:196.770450px;}
.y478_c00001{bottom:196.770600px;}
.y546_c00001{bottom:197.130450px;}
.y227e_c00001{bottom:197.132574px;}
.y85a_c00001{bottom:197.220450px;}
.y19a2_c00001{bottom:197.308461px;}
.y206e_c00001{bottom:197.311410px;}
.y213a_c00001{bottom:197.312799px;}
.y239d_c00001{bottom:197.312835px;}
.y18b_c00001{bottom:197.400450px;}
.ybf7_c00001{bottom:197.474637px;}
.y10be_c00001{bottom:197.484969px;}
.y1e3c_c00001{bottom:197.490450px;}
.y1dab_c00001{bottom:197.491359px;}
.y1c1c_c00001{bottom:197.573241px;}
.y1cf3_c00001{bottom:197.574492px;}
.y1480_c00001{bottom:197.575149px;}
.yfd9_c00001{bottom:197.579001px;}
.yb5b_c00001{bottom:197.668305px;}
.y1979_c00001{bottom:197.849073px;}
.y1729_c00001{bottom:197.931360px;}
.y1bf2_c00001{bottom:198.029901px;}
.y2439_c00001{bottom:198.034410px;}
.y1868_c00001{bottom:198.120450px;}
.y8f5_c00001{bottom:198.379890px;}
.y16c1_c00001{bottom:198.385266px;}
.y682_c00001{bottom:198.390450px;}
.y174e_c00001{bottom:198.651297px;}
.y1b89_c00001{bottom:198.655149px;}
.y18d6_c00001{bottom:198.655806px;}
.y1a3e_c00001{bottom:198.754347px;}
.y1464_c00001{bottom:199.012017px;}
.y181f_c00001{bottom:199.465266px;}
.y17e3_c00001{bottom:199.465923px;}
.y24e0_c00001{bottom:199.470450px;}
.y2432_c00001{bottom:199.564464px;}
.y1de2_c00001{bottom:199.731954px;}
.y134d_c00001{bottom:199.735392px;}
.y1c9e_c00001{bottom:199.735806px;}
.y12f2_c00001{bottom:199.740693px;}
.y835_c00001{bottom:199.902648px;}
.y1784_c00001{bottom:199.997985px;}
.y1767_c00001{bottom:200.010450px;}
.y2478_c00001{bottom:200.101692px;}
.yb25_c00001{bottom:200.185599px;}
.y1ef0_c00001{bottom:200.185860px;}
.y1b13_c00001{bottom:200.280549px;}
.y22b0_c00001{bottom:200.284401px;}
.y15f0_c00001{bottom:200.546580px;}
.yaa6_c00001{bottom:200.636877px;}
.y22cf_c00001{bottom:200.732844px;}
.y1cce_c00001{bottom:200.734455px;}
.yf49_c00001{bottom:200.905491px;}
.y2193_c00001{bottom:200.910450px;}
.y1ea9_c00001{bottom:200.998578px;}
.y1aca_c00001{bottom:201.000486px;}
.y1663_c00001{bottom:201.087408px;}
.y24d9_c00001{bottom:201.180450px;}
.yef5_c00001{bottom:201.181269px;}
.y2336_c00001{bottom:201.362664px;}
.y2245_c00001{bottom:201.362700px;}
.y744_c00001{bottom:201.450600px;}
.y1037_c00001{bottom:201.536400px;}
.ya1e_c00001{bottom:201.623430px;}
.y1ec0_c00001{bottom:201.626580px;}
.y11c2_c00001{bottom:201.627237px;}
.yada_c00001{bottom:201.630450px;}
.yf77_c00001{bottom:201.712908px;}
.y1c91_c00001{bottom:201.892611px;}
.y23ec_c00001{bottom:201.902232px;}
.y1af4_c00001{bottom:202.080486px;}
.y6c6_c00001{bottom:202.080600px;}
.y1f21_c00001{bottom:202.081143px;}
.y20fa_c00001{bottom:202.081296px;}
.y2169_c00001{bottom:202.082637px;}
.y76b_c00001{bottom:202.170450px;}
.y1aa0_c00001{bottom:202.346517px;}
.y24ec_c00001{bottom:202.440450px;}
.y1f40_c00001{bottom:202.440600px;}
.y1066_c00001{bottom:202.529415px;}
.y596_c00001{bottom:202.530450px;}
.y998_c00001{bottom:202.611630px;}
.y12b1_c00001{bottom:202.612548px;}
.y1e5f_c00001{bottom:202.613205px;}
.yb14_c00001{bottom:202.613277px;}
.yc5a_c00001{bottom:202.614924px;}
.y1554_c00001{bottom:202.620081px;}
.y8a9_c00001{bottom:202.620450px;}
.y1b63_c00001{bottom:202.707237px;}
.y3a2_c00001{bottom:202.710450px;}
.yba_c00001{bottom:202.710600px;}
.y2406_c00001{bottom:202.712349px;}
.y8a5_c00001{bottom:202.800450px;}
.y15c2_c00001{bottom:202.879236px;}
.y1748_c00001{bottom:202.889847px;}
.y48_c00001{bottom:202.890450px;}
.ye5f_c00001{bottom:202.890618px;}
.y131f_c00001{bottom:202.974771px;}
.y1957_c00001{bottom:202.978434px;}
.y82_c00001{bottom:202.980972px;}
.y1615_c00001{bottom:203.067111px;}
.y158b_c00001{bottom:203.239956px;}
.y66f_c00001{bottom:203.250450px;}
.y21ae_c00001{bottom:203.432286px;}
.ya73_c00001{bottom:203.509245px;}
.yc8d_c00001{bottom:203.510892px;}
.yb92_c00001{bottom:203.519775px;}
.y1e00_c00001{bottom:203.610450px;}
.y18ab_c00001{bottom:203.693862px;}
.y15a7_c00001{bottom:203.700600px;}
.y22e9_c00001{bottom:203.882511px;}
.y11dc_c00001{bottom:203.970036px;}
.y1ba2_c00001{bottom:204.147111px;}
.y1703_c00001{bottom:204.235050px;}
.y97a_c00001{bottom:204.497445px;}
.y96d_c00001{bottom:204.499092px;}
.y15b7_c00001{bottom:204.503979px;}
.y1b50_c00001{bottom:204.507831px;}
.y1b6e_c00001{bottom:204.510450px;}
.y237e_c00001{bottom:204.601440px;}
.y1ff9_c00001{bottom:204.781878px;}
.y22fd_c00001{bottom:204.782709px;}
.y7aa_c00001{bottom:204.870450px;}
.y9fa_c00001{bottom:205.042485px;}
.y1423_c00001{bottom:205.134168px;}
.y13e1_c00001{bottom:205.134582px;}
.y3df_c00001{bottom:205.140450px;}
.y184d_c00001{bottom:205.227768px;}
.y16ad_c00001{bottom:205.319856px;}
.y1c30_c00001{bottom:205.405122px;}
.y1925_c00001{bottom:205.494456px;}
.yfa8_c00001{bottom:205.498965px;}
.y1129_c00001{bottom:205.670307px;}
.y1008_c00001{bottom:205.764339px;}
.y1393_c00001{bottom:205.850667px;}
.y137a_c00001{bottom:205.859415px;}
.y17e9_c00001{bottom:205.860450px;}
.y886_c00001{bottom:206.220450px;}
.y1b35_c00001{bottom:206.307174px;}
.y244f_c00001{bottom:206.395617px;}
.y2fb_c00001{bottom:206.400450px;}
.yc08_c00001{bottom:206.475492px;}
.y1097_c00001{bottom:206.484933px;}
.y1d14_c00001{bottom:206.580495px;}
.y10db_c00001{bottom:206.750964px;}
.y152e_c00001{bottom:206.931324px;}
.y23d5_c00001{bottom:207.034374px;}
.y41a_c00001{bottom:207.300450px;}
.y1ee2_c00001{bottom:207.385230px;}
.y179a_c00001{bottom:207.467895px;}
.y1245_c00001{bottom:207.655113px;}
.y1367_c00001{bottom:207.655770px;}
.y21f0_c00001{bottom:207.662592px;}
.y1d61_c00001{bottom:207.754311px;}
.y1a57_c00001{bottom:207.838011px;}
.y782_c00001{bottom:207.840450px;}
.y884_c00001{bottom:207.930450px;}
.y1d06_c00001{bottom:208.011324px;}
.y1946_c00001{bottom:208.016490px;}
.y5b1_c00001{bottom:208.020450px;}
.y1a8d_c00001{bottom:208.199199px;}
.y45f_c00001{bottom:208.290450px;}
.y335_c00001{bottom:208.470450px;}
.yd68_c00001{bottom:208.526178px;}
.y234c_c00001{bottom:208.564428px;}
.y121c_c00001{bottom:208.731918px;}
.y19f3_c00001{bottom:208.735770px;}
.y20db_c00001{bottom:208.832610px;}
.y199_c00001{bottom:208.920450px;}
.y1545_c00001{bottom:209.092638px;}
.y2266_c00001{bottom:209.284365px;}
.y211d_c00001{bottom:209.460600px;}
.y69a_c00001{bottom:209.550450px;}
.y1e11_c00001{bottom:209.638605px;}
.y19ce_c00001{bottom:209.816427px;}
.y1bc2_c00001{bottom:209.817084px;}
.y1712_c00001{bottom:209.820036px;}
.y23b8_c00001{bottom:210.004302px;}
.y1689_c00001{bottom:210.090450px;}
.ydb5_c00001{bottom:210.092250px;}
.y144a_c00001{bottom:210.173295px;}
.y1eb7_c00001{bottom:210.266481px;}
.y2177_c00001{bottom:210.362664px;}
.y21d0_c00001{bottom:210.724239px;}
.y2368_c00001{bottom:210.900666px;}
.y63a_c00001{bottom:211.170600px;}
.ye9e_c00001{bottom:211.530648px;}
.ye8e_c00001{bottom:211.531833px;}
.yec7_c00001{bottom:211.533114px;}
.ye2a_c00001{bottom:211.534356px;}
.ya69_c00001{bottom:211.614132px;}
.ya40_c00001{bottom:211.619073px;}
.yb9b_c00001{bottom:211.620360px;}
.y1266_c00001{bottom:211.620600px;}
.y1cc_c00001{bottom:211.800450px;}
.y14cb_c00001{bottom:211.973889px;}
.y17c5_c00001{bottom:211.979712px;}
.y1f5d_c00001{bottom:211.980765px;}
.y1507_c00001{bottom:212.239263px;}
.y2031_c00001{bottom:212.252619px;}
.y1c4b_c00001{bottom:212.426670px;}
.y1a76_c00001{bottom:212.431647px;}
.yabe_c00001{bottom:212.511747px;}
.yb69_c00001{bottom:212.520540px;}
.y119f_c00001{bottom:212.693169px;}
.y1828_c00001{bottom:212.693826px;}
.y156f_c00001{bottom:213.053889px;}
.y13bb_c00001{bottom:213.059055px;}
.y433_c00001{bottom:213.060450px;}
.y49d_c00001{bottom:213.060657px;}
.ydee_c00001{bottom:213.243951px;}
.y4b8_c00001{bottom:213.420351px;}
.y47_c00001{bottom:213.420639px;}
.y69_c00001{bottom:213.420648px;}
.y279_c00001{bottom:213.420657px;}
.y10f_c00001{bottom:213.420846px;}
.y5e6_c00001{bottom:213.420855px;}
.y132_c00001{bottom:213.421410px;}
.y91d_c00001{bottom:213.498300px;}
.y1810_c00001{bottom:213.507795px;}
.y94f_c00001{bottom:213.509685px;}
.ybb4_c00001{bottom:213.509775px;}
.y9ce_c00001{bottom:213.510540px;}
.y208a_c00001{bottom:213.510600px;}
.y19b1_c00001{bottom:213.773826px;}
.y1490_c00001{bottom:213.774483px;}
.y1fa3_c00001{bottom:213.782097px;}
.y1d3a_c00001{bottom:213.783663px;}
.y1a19_c00001{bottom:213.869172px;}
.yb9_c00001{bottom:213.870450px;}
.y347_c00001{bottom:213.870600px;}
.y1c77_c00001{bottom:213.956724px;}
.y91_c00001{bottom:214.050450px;}
.y65f_c00001{bottom:214.140450px;}
.y80e_c00001{bottom:214.410450px;}
.y206d_c00001{bottom:214.501221px;}
.y1fbf_c00001{bottom:214.680450px;}
.y24fd_c00001{bottom:214.770450px;}
.y1ef7_c00001{bottom:214.854483px;}
.y147f_c00001{bottom:214.855140px;}
.y1978_c00001{bottom:215.038884px;}
.y2d9_c00001{bottom:215.040600px;}
.y1bf1_c00001{bottom:215.219712px;}
.y860_c00001{bottom:215.220450px;}
.y3be_c00001{bottom:215.310450px;}
.y2424_c00001{bottom:215.314401px;}
.ycd5_c00001{bottom:215.427666px;}
.yd06_c00001{bottom:215.458770px;}
.ybdd_c00001{bottom:215.476347px;}
.y14ac_c00001{bottom:215.575077px;}
.y7fb_c00001{bottom:215.580450px;}
.y3de_c00001{bottom:215.580468px;}
.y255_c00001{bottom:215.670450px;}
.y1dc2_c00001{bottom:215.931288px;}
.y1b88_c00001{bottom:215.935140px;}
.y18d5_c00001{bottom:215.935797px;}
.y2156_c00001{bottom:216.030450px;}
.y2228_c00001{bottom:216.034338px;}
.y50e_c00001{bottom:216.300450px;}
.y1d86_c00001{bottom:216.480600px;}
.yb5a_c00001{bottom:216.567630px;}
.y181e_c00001{bottom:216.655077px;}
.y1e8e_c00001{bottom:216.655734px;}
.y2431_c00001{bottom:216.754275px;}
.y1636_c00001{bottom:216.842952px;}
.y18dc_c00001{bottom:217.011945px;}
.y134c_c00001{bottom:217.015383px;}
.y12f1_c00001{bottom:217.020684px;}
.y13ff_c00001{bottom:217.204329px;}
.y173e_c00001{bottom:217.277976px;}
.y1f7f_c00001{bottom:217.380450px;}
.y1eef_c00001{bottom:217.465851px;}
.y1b12_c00001{bottom:217.470360px;}
.y8bb_c00001{bottom:217.470450px;}
.y1d_c00001{bottom:217.650450px;}
.y128f_c00001{bottom:217.735734px;}
.y15ef_c00001{bottom:217.736391px;}
.yf1d_c00001{bottom:217.742250px;}
.y1ccd_c00001{bottom:217.924266px;}
.y22ce_c00001{bottom:218.012835px;}
.y14f5_c00001{bottom:218.096454px;}
.y1ed9_c00001{bottom:218.100027px;}
.y7e6_c00001{bottom:218.100450px;}
.yf48_c00001{bottom:218.185482px;}
.y1ea8_c00001{bottom:218.188389px;}
.yf4_c00001{bottom:218.190450px;}
.y1662_c00001{bottom:218.277219px;}
.y1ac9_c00001{bottom:218.280477px;}
.yef4_c00001{bottom:218.461260px;}
.y857_c00001{bottom:218.550450px;}
.y2335_c00001{bottom:218.552475px;}
.y2244_c00001{bottom:218.552511px;}
.yc38_c00001{bottom:218.630352px;}
.y1036_c00001{bottom:218.726211px;}
.y758_c00001{bottom:218.730450px;}
.y171c_c00001{bottom:218.812539px;}
.y1ebf_c00001{bottom:218.816391px;}
.y11c1_c00001{bottom:218.817048px;}
.y204d_c00001{bottom:218.822967px;}
.y1152_c00001{bottom:219.173259px;}
.y23eb_c00001{bottom:219.182223px;}
.y1e59_c00001{bottom:219.265320px;}
.y1af3_c00001{bottom:219.270297px;}
.y797_c00001{bottom:219.360450px;}
.y20f9_c00001{bottom:219.361287px;}
.y2168_c00001{bottom:219.362628px;}
.y1a9f_c00001{bottom:219.626508px;}
.yaa5_c00001{bottom:219.626787px;}
.y16b_c00001{bottom:219.720450px;}
.y12b0_c00001{bottom:219.892539px;}
.y177e_c00001{bottom:219.893196px;}
.y1553_c00001{bottom:219.900072px;}
.y2405_c00001{bottom:219.902160px;}
.yd8a_c00001{bottom:219.990450px;}
.y15c1_c00001{bottom:220.159227px;}
.y1747_c00001{bottom:220.169838px;}
.y1a3_c00001{bottom:220.170450px;}
.ye5e_c00001{bottom:220.170609px;}
.y1178_c00001{bottom:220.170648px;}
.y1c4_c00001{bottom:220.260450px;}
.y1614_c00001{bottom:220.347102px;}
.y2537_c00001{bottom:220.440450px;}
.y23a_c00001{bottom:220.440600px;}
.y158a_c00001{bottom:220.519947px;}
.yca4_c00001{bottom:220.604682px;}
.yad9_c00001{bottom:220.613340px;}
.ybc1_c00001{bottom:220.614987px;}
.y545_c00001{bottom:220.710450px;}
.y21ad_c00001{bottom:220.712277px;}
.y1101_c00001{bottom:220.793493px;}
.y728_c00001{bottom:220.800450px;}
.y15a6_c00001{bottom:220.973853px;}
.yb0d_c00001{bottom:221.063511px;}
.y18a_c00001{bottom:221.070450px;}
.y11db_c00001{bottom:221.250027px;}
.yc65_c00001{bottom:221.510955px;}
.yb13_c00001{bottom:221.512602px;}
.yc59_c00001{bottom:221.514249px;}
.y1702_c00001{bottom:221.515041px;}
.y15b6_c00001{bottom:221.693790px;}
.y1b4f_c00001{bottom:221.787822px;}
.y681_c00001{bottom:222.060450px;}
.y1ff8_c00001{bottom:222.061869px;}
.y22fc_c00001{bottom:222.062700px;}
.y20bc_c00001{bottom:222.152061px;}
.y941_c00001{bottom:222.499155px;}
.y184c_c00001{bottom:222.507759px;}
.yb91_c00001{bottom:222.509685px;}
.y16ac_c00001{bottom:222.599847px;}
.y1773_c00001{bottom:222.774447px;}
.y16d8_c00001{bottom:222.777453px;}
.y366_c00001{bottom:222.870450px;}
.y1128_c00001{bottom:222.950298px;}
.y11fb_c00001{bottom:223.040478px;}
.y1754_c00001{bottom:223.050459px;}
.y2518_c00001{bottom:223.320450px;}
.y227d_c00001{bottom:223.412529px;}
.yc3f_c00001{bottom:223.487355px;}
.y9bd_c00001{bottom:223.489002px;}
.y2139_c00001{bottom:223.502574px;}
.y239c_c00001{bottom:223.502610px;}
.y244e_c00001{bottom:223.675608px;}
.y1096_c00001{bottom:223.764924px;}
.y1daa_c00001{bottom:223.771314px;}
.y10da_c00001{bottom:224.030955px;}
.y9f9_c00001{bottom:224.032395px;}
.y1890_c00001{bottom:224.037345px;}
.y477_c00001{bottom:224.040600px;}
.y152d_c00001{bottom:224.121135px;}
.y1c5e_c00001{bottom:224.220333px;}
.y2438_c00001{bottom:224.314365px;}
.y20a0_c00001{bottom:224.490450px;}
.y1ee1_c00001{bottom:224.575041px;}
.y19a1_c00001{bottom:224.669073px;}
.y24d8_c00001{bottom:224.760450px;}
.y21ef_c00001{bottom:224.852403px;}
.y1c1b_c00001{bottom:224.933853px;}
.y1244_c00001{bottom:224.935104px;}
.y1366_c00001{bottom:224.935761px;}
.yfd8_c00001{bottom:224.939613px;}
.y743_c00001{bottom:225.030600px;}
.y1a3d_c00001{bottom:225.034302px;}
.y1a56_c00001{bottom:225.118002px;}
.y1d05_c00001{bottom:225.201135px;}
.y1945_c00001{bottom:225.296481px;}
.y1a8c_c00001{bottom:225.389010px;}
.ybf6_c00001{bottom:225.465402px;}
.y1901_c00001{bottom:225.655698px;}
.y234b_c00001{bottom:225.754239px;}
.y200e_c00001{bottom:225.840450px;}
.y2113_c00001{bottom:225.930600px;}
.y174d_c00001{bottom:226.011909px;}
.y19f2_c00001{bottom:226.015761px;}
.y24eb_c00001{bottom:226.020450px;}
.y595_c00001{bottom:226.110450px;}
.y1463_c00001{bottom:226.282449px;}
.y8f4_c00001{bottom:226.370655px;}
.y28c_c00001{bottom:226.470450px;}
.y22af_c00001{bottom:226.474176px;}
.y17e2_c00001{bottom:226.736355px;}
.y66e_c00001{bottom:226.830450px;}
.y1bd4_c00001{bottom:227.096418px;}
.y1bc1_c00001{bottom:227.097075px;}
.y23b7_c00001{bottom:227.284293px;}
.y1766_c00001{bottom:227.358597px;}
.y1449_c00001{bottom:227.363106px;}
.y2477_c00001{bottom:227.462304px;}
.y1eb6_c00001{bottom:227.546472px;}
.y2176_c00001{bottom:227.552475px;}
.y1867_c00001{bottom:227.820450px;}
.yb24_c00001{bottom:228.085779px;}
.y1c90_c00001{bottom:228.172566px;}
.y24c0_c00001{bottom:228.180450px;}
.y2367_c00001{bottom:228.180657px;}
.y81_c00001{bottom:228.270450px;}
.y1f20_c00001{bottom:228.270918px;}
.yd67_c00001{bottom:228.415458px;}
.y7a9_c00001{bottom:228.450450px;}
.ye9d_c00001{bottom:228.810639px;}
.ye8d_c00001{bottom:228.811824px;}
.yec6_c00001{bottom:228.813105px;}
.ye29_c00001{bottom:228.814347px;}
.y1265_c00001{bottom:228.893160px;}
.yf76_c00001{bottom:229.073520px;}
.y14ca_c00001{bottom:229.163700px;}
.y131e_c00001{bottom:229.254726px;}
.y1956_c00001{bottom:229.258389px;}
.ya1d_c00001{bottom:229.614195px;}
.y1a75_c00001{bottom:229.711638px;}
.y1065_c00001{bottom:229.799847px;}
.yd0_c00001{bottom:229.800450px;}
.y1827_c00001{bottom:229.973817px;}
.y1b62_c00001{bottom:229.977669px;}
.y22e8_c00001{bottom:230.072286px;}
.y1e79_c00001{bottom:230.243700px;}
.y49c_c00001{bottom:230.340648px;}
.y997_c00001{bottom:230.511810px;}
.ya68_c00001{bottom:230.513457px;}
.yc71_c00001{bottom:230.515104px;}
.yb9a_c00001{bottom:230.519685px;}
.yded_c00001{bottom:230.523942px;}
.y4b7_c00001{bottom:230.610162px;}
.y1f2_c00001{bottom:230.610450px;}
.y68_c00001{bottom:230.610459px;}
.y20a_c00001{bottom:230.610468px;}
.y10e_c00001{bottom:230.610657px;}
.y5e5_c00001{bottom:230.610666px;}
.y131_c00001{bottom:230.611221px;}
.y180f_c00001{bottom:230.787786px;}
.y1688_c00001{bottom:230.790450px;}
.y237d_c00001{bottom:230.881395px;}
.y2a4_c00001{bottom:230.970450px;}
.y1fa2_c00001{bottom:231.062088px;}
.y1c76_c00001{bottom:231.236715px;}
.y225_c00001{bottom:231.330450px;}
.y6e7_c00001{bottom:231.330600px;}
.ya72_c00001{bottom:231.500010px;}
.yc8c_c00001{bottom:231.501657px;}
.y1ba1_c00001{bottom:231.507723px;}
.y781_c00001{bottom:231.510450px;}
.y5b0_c00001{bottom:231.600450px;}
.y1c2f_c00001{bottom:231.685077px;}
.y206c_c00001{bottom:231.781212px;}
.y45e_c00001{bottom:231.960450px;}
.y147e_c00001{bottom:232.135131px;}
.y8b7_c00001{bottom:232.140450px;}
.y1f3f_c00001{bottom:232.140600px;}
.y1977_c00001{bottom:232.318875px;}
.y1422_c00001{bottom:232.404600px;}
.y13e0_c00001{bottom:232.405014px;}
.y979_c00001{bottom:232.488210px;}
.y96c_c00001{bottom:232.489857px;}
.y1bf0_c00001{bottom:232.499703px;}
.y2423_c00001{bottom:232.504212px;}
.y1c01_c00001{bottom:232.590450px;}
.y1dff_c00001{bottom:232.592889px;}
.y388_c00001{bottom:232.771359px;}
.y14ab_c00001{bottom:232.855068px;}
.yfa7_c00001{bottom:232.859577px;}
.y1d13_c00001{bottom:232.860450px;}
.y3dd_c00001{bottom:232.860459px;}
.y1392_c00001{bottom:233.121099px;}
.y1007_c00001{bottom:233.124951px;}
.y1379_c00001{bottom:233.129847px;}
.y18d4_c00001{bottom:233.215788px;}
.y699_c00001{bottom:233.220450px;}
.y23d4_c00001{bottom:233.224149px;}
.y2227_c00001{bottom:233.314329px;}
.y1b34_c00001{bottom:233.577606px;}
.y58d_c00001{bottom:233.580450px;}
.y1799_c00001{bottom:233.747850px;}
.y181d_c00001{bottom:233.935068px;}
.y2430_c00001{bottom:234.034266px;}
.y1734_c00001{bottom:234.201756px;}
.y12f0_c00001{bottom:234.210495px;}
.ydb4_c00001{bottom:234.211944px;}
.y134b_c00001{bottom:234.295374px;}
.yc07_c00001{bottom:234.466257px;}
.y1eee_c00001{bottom:234.655662px;}
.y1b11_c00001{bottom:234.750351px;}
.y76a_c00001{bottom:234.750450px;}
.y6c5_c00001{bottom:234.750600px;}
.y639_c00001{bottom:234.840600px;}
.y20da_c00001{bottom:235.112565px;}
.y22cd_c00001{bottom:235.202646px;}
.y1ccc_c00001{bottom:235.204257px;}
.y3a1_c00001{bottom:235.290450px;}
.ycd4_c00001{bottom:235.316946px;}
.yd05_c00001{bottom:235.348050px;}
.y14f4_c00001{bottom:235.376445px;}
.y1ea7_c00001{bottom:235.468380px;}
.y1ac8_c00001{bottom:235.470288px;}
.y1cb_c00001{bottom:235.470450px;}
.y2317_c00001{bottom:235.474140px;}
.y1661_c00001{bottom:235.557210px;}
.y2265_c00001{bottom:235.564320px;}
.yef3_c00001{bottom:235.651071px;}
.y2334_c00001{bottom:235.832466px;}
.y2243_c00001{bottom:235.832502px;}
.y121b_c00001{bottom:236.092530px;}
.y1ebe_c00001{bottom:236.096382px;}
.y11c0_c00001{bottom:236.097039px;}
.y1151_c00001{bottom:236.363070px;}
.y521_c00001{bottom:236.460450px;}
.y23ea_c00001{bottom:236.462214px;}
.y20f8_c00001{bottom:236.551098px;}
.y2167_c00001{bottom:236.552439px;}
.y432_c00001{bottom:236.640450px;}
.y1a9e_c00001{bottom:236.816319px;}
.y1e10_c00001{bottom:236.999217px;}
.y21cf_c00001{bottom:237.004194px;}
.y12d4_c00001{bottom:237.082350px;}
.y177d_c00001{bottom:237.083007px;}
.y12af_c00001{bottom:237.172530px;}
.y19cd_c00001{bottom:237.177039px;}
.y2ac_c00001{bottom:237.180450px;}
.y1d85_c00001{bottom:237.180600px;}
.y1711_c00001{bottom:237.180648px;}
.y2404_c00001{bottom:237.182151px;}
.y46_c00001{bottom:237.360450px;}
.y15c0_c00001{bottom:237.439218px;}
.y346_c00001{bottom:237.450600px;}
.y1177_c00001{bottom:237.450639px;}
.ye5d_c00001{bottom:237.450648px;}
.yc37_c00001{bottom:237.620262px;}
.y1613_c00001{bottom:237.627093px;}
.y1589_c00001{bottom:237.709758px;}
.y8b0_c00001{bottom:237.720450px;}
.y21ac_c00001{bottom:237.902088px;}
.yb64_c00001{bottom:237.990450px;}
.y80d_c00001{bottom:238.080450px;}
.y1e1e_c00001{bottom:238.163664px;}
.y1f5c_c00001{bottom:238.170540px;}
.y24fc_c00001{bottom:238.440450px;}
.y2030_c00001{bottom:238.532574px;}
.y1701_c00001{bottom:238.704852px;}
.y8a3_c00001{bottom:238.710450px;}
.y1dd_c00001{bottom:238.800450px;}
.y1e3b_c00001{bottom:238.890450px;}
.y1b6d_c00001{bottom:238.973781px;}
.y1b4e_c00001{bottom:238.977633px;}
.y3bd_c00001{bottom:238.980450px;}
.y211c_c00001{bottom:239.160600px;}
.y7fa_c00001{bottom:239.250450px;}
.y1ff7_c00001{bottom:239.251680px;}
.y22fb_c00001{bottom:239.252511px;}
.y17c4_c00001{bottom:239.340324px;}
.y20bb_c00001{bottom:239.432052px;}
.yad2_c00001{bottom:239.514312px;}
.ya3f_c00001{bottom:239.519253px;}
.y1506_c00001{bottom:239.599875px;}
.y1c4a_c00001{bottom:239.787282px;}
.y184b_c00001{bottom:239.787750px;}
.y16ab_c00001{bottom:239.879838px;}
.y50d_c00001{bottom:239.970450px;}
.yb0c_c00001{bottom:240.053421px;}
.y119e_c00001{bottom:240.053781px;}
.y1772_c00001{bottom:240.054438px;}
.y1d39_c00001{bottom:240.063618px;}
.y11fa_c00001{bottom:240.320469px;}
.y156e_c00001{bottom:240.324321px;}
.y1753_c00001{bottom:240.330450px;}
.y13ba_c00001{bottom:240.419667px;}
.yc64_c00001{bottom:240.500865px;}
.yabd_c00001{bottom:240.502512px;}
.y227c_c00001{bottom:240.602340px;}
.y239b_c00001{bottom:240.782601px;}
.y1da9_c00001{bottom:240.961125px;}
.y10bd_c00001{bottom:241.044915px;}
.y334_c00001{bottom:241.050450px;}
.y19b0_c00001{bottom:241.134438px;}
.y148f_c00001{bottom:241.135095px;}
.y1a18_c00001{bottom:241.139604px;}
.y8c1_c00001{bottom:241.140450px;}
.y325_c00001{bottom:241.140600px;}
.y91c_c00001{bottom:241.489065px;}
.ybb3_c00001{bottom:241.500540px;}
.y198_c00001{bottom:241.590450px;}
.y7e5_c00001{bottom:241.680450px;}
.y1ee0_c00001{bottom:241.855032px;}
.yf3_c00001{bottom:241.860450px;}
.y19a0_c00001{bottom:241.949064px;}
.yf1c_c00001{bottom:241.952115px;}
.y21ee_c00001{bottom:242.132394px;}
.y1308_c00001{bottom:242.215095px;}
.y1365_c00001{bottom:242.215752px;}
.y856_c00001{bottom:242.220450px;}
.y1ce5_c00001{bottom:242.307813px;}
.y1d60_c00001{bottom:242.314293px;}
.y1a8b_c00001{bottom:242.669001px;}
.y5d9_c00001{bottom:242.670450px;}
.y796_c00001{bottom:243.030450px;}
.y1635_c00001{bottom:243.122907px;}
.y18c9_c00001{bottom:243.201720px;}
.y2089_c00001{bottom:243.210600px;}
.y19f1_c00001{bottom:243.295752px;}
.y7ba_c00001{bottom:243.300450px;}
.y16a_c00001{bottom:243.390450px;}
.y13fe_c00001{bottom:243.394104px;}
.ybdc_c00001{bottom:243.467112px;}
.y1462_c00001{bottom:243.562440px;}
.y5d7_c00001{bottom:243.840450px;}
.y1baf_c00001{bottom:244.016346px;}
.y2536_c00001{bottom:244.020450px;}
.y239_c00001{bottom:244.110600px;}
.y18db_c00001{bottom:244.282377px;}
.y8bf_c00001{bottom:244.290450px;}
.y1ba_c00001{bottom:244.291107px;}
.y1bd3_c00001{bottom:244.376409px;}
.y544_c00001{bottom:244.380450px;}
.yf8_c00001{bottom:244.470450px;}
.y173d_c00001{bottom:244.548408px;}
.yb59_c00001{bottom:244.558395px;}
.y23b6_c00001{bottom:244.564284px;}
.y1448_c00001{bottom:244.643097px;}
.y189_c00001{bottom:244.650450px;}
.y1eb5_c00001{bottom:244.736283px;}
.y2175_c00001{bottom:244.832466px;}
.yd89_c00001{bottom:244.920450px;}
.y128e_c00001{bottom:245.096346px;}
.y15ee_c00001{bottom:245.097003px;}
.y204c_c00001{bottom:245.102922px;}
.y1c8f_c00001{bottom:245.362377px;}
.y1ed8_c00001{bottom:245.370459px;}
.yf47_c00001{bottom:245.455914px;}
.y2366_c00001{bottom:245.460648px;}
.y680_c00001{bottom:245.640450px;}
.y2155_c00001{bottom:245.730450px;}
.ye9c_c00001{bottom:246.001221px;}
.ye8c_c00001{bottom:246.001635px;}
.yec5_c00001{bottom:246.002916px;}
.ye28_c00001{bottom:246.004158px;}
.y1035_c00001{bottom:246.086823px;}
.y1264_c00001{bottom:246.173151px;}
.y14c9_c00001{bottom:246.443691px;}
.y1e58_c00001{bottom:246.625932px;}
.y1af2_c00001{bottom:246.630909px;}
.y65e_c00001{bottom:246.720450px;}
.y2517_c00001{bottom:246.990450px;}
.y1a74_c00001{bottom:246.991629px;}
.yb23_c00001{bottom:247.075689px;}
.y1064_c00001{bottom:247.079838px;}
.y1f7e_c00001{bottom:247.080450px;}
.y1515_c00001{bottom:247.162971px;}
.y1905_c00001{bottom:247.163628px;}
.y1552_c00001{bottom:247.170504px;}
.y1b61_c00001{bottom:247.257660px;}
.y1746_c00001{bottom:247.530450px;}
.yaa4_c00001{bottom:247.617552px;}
.y476_c00001{bottom:247.620600px;}
.y49b_c00001{bottom:247.620639px;}
.ydec_c00001{bottom:247.803933px;}
.y209_c00001{bottom:247.890459px;}
.y45_c00001{bottom:247.890648px;}
.ydd_c00001{bottom:247.890657px;}
.y26d_c00001{bottom:247.890873px;}
.y130_c00001{bottom:247.891212px;}
.y180e_c00001{bottom:247.977597px;}
.yd66_c00001{bottom:248.035170px;}
.y1100_c00001{bottom:248.154105px;}
.y834_c00001{bottom:248.232945px;}
.y15a5_c00001{bottom:248.244285px;}
.y1fa1_c00001{bottom:248.251899px;}
.y24d7_c00001{bottom:248.430450px;}
.ya1c_c00001{bottom:248.513520px;}
.ybc0_c00001{bottom:248.515167px;}
.y9d_c00001{bottom:248.520450px;}
.y11da_c00001{bottom:248.610639px;}
.y742_c00001{bottom:248.700600px;}
.y1ba0_c00001{bottom:248.787714px;}
.yc2_c00001{bottom:248.880450px;}
.y16d7_c00001{bottom:248.967228px;}
.y15b5_c00001{bottom:249.054402px;}
.y206b_c00001{bottom:249.061203px;}
.y147d_c00001{bottom:249.324942px;}
.yb12_c00001{bottom:249.503367px;}
.yc58_c00001{bottom:249.505014px;}
.y1976_c00001{bottom:249.598866px;}
.y2138_c00001{bottom:249.602169px;}
.y13df_c00001{bottom:249.685005px;}
.y1bef_c00001{bottom:249.689514px;}
.y24ea_c00001{bottom:249.690450px;}
.y594_c00001{bottom:249.780450px;}
.y2422_c00001{bottom:249.784203px;}
.y8cb_c00001{bottom:249.960450px;}
.y14aa_c00001{bottom:250.135059px;}
.yfa6_c00001{bottom:250.139568px;}
.y28b_c00001{bottom:250.140450px;}
.y1127_c00001{bottom:250.220730px;}
.y1006_c00001{bottom:250.314762px;}
.y1c_c00001{bottom:250.320450px;}
.y1391_c00001{bottom:250.401090px;}
.y18d3_c00001{bottom:250.405599px;}
.ya71_c00001{bottom:250.489920px;}
.y1c5d_c00001{bottom:250.500288px;}
.y66d_c00001{bottom:250.500450px;}
.y2226_c00001{bottom:250.504140px;}
.y244d_c00001{bottom:250.946040px;}
.y1095_c00001{bottom:251.125536px;}
.y181c_c00001{bottom:251.215059px;}
.y1a3c_c00001{bottom:251.224077px;}
.y10d9_c00001{bottom:251.301387px;}
.y188f_c00001{bottom:251.307777px;}
.y757_c00001{bottom:251.310450px;}
.y23f5_c00001{bottom:251.314257px;}
.y978_c00001{bottom:251.478120px;}
.y96b_c00001{bottom:251.479767px;}
.y152c_c00001{bottom:251.481747px;}
.y1944_c00001{bottom:251.486256px;}
.y1687_c00001{bottom:251.490450px;}
.y24bf_c00001{bottom:251.760450px;}
.y2482_c00001{bottom:251.935653px;}
.y9f8_c00001{bottom:252.023160px;}
.y1b10_c00001{bottom:252.030342px;}
.y234a_c00001{bottom:252.034194px;}
.y7a8_c00001{bottom:252.120450px;}
.y1c1a_c00001{bottom:252.204285px;}
.y1243_c00001{bottom:252.295716px;}
.yfd7_c00001{bottom:252.300225px;}
.y22cc_c00001{bottom:252.482637px;}
.y1ccb_c00001{bottom:252.484248px;}
.y1d04_c00001{bottom:252.561747px;}
.y14f3_c00001{bottom:252.566256px;}
.y1ea6_c00001{bottom:252.658191px;}
.y2264_c00001{bottom:252.754131px;}
.y1660_c00001{bottom:252.837201px;}
.y24ab_c00001{bottom:252.930450px;}
.yef2_c00001{bottom:252.931062px;}
.y1900_c00001{bottom:253.016310px;}
.y2333_c00001{bottom:253.112457px;}
.y2242_c00001{bottom:253.112493px;}
.y171b_c00001{bottom:253.282341px;}
.ybf5_c00001{bottom:253.365582px;}
.y1c9d_c00001{bottom:253.376373px;}
.ycf_c00001{bottom:253.470450px;}
.y1544_c00001{bottom:253.643061px;}
.y23e9_c00001{bottom:253.652025px;}
.y2476_c00001{bottom:253.742259px;}
.y20f7_c00001{bottom:253.831089px;}
.y2166_c00001{bottom:253.832430px;}
.y1a9d_c00001{bottom:254.096310px;}
.y17e1_c00001{bottom:254.096967px;}
.y209f_c00001{bottom:254.190450px;}
.y8f3_c00001{bottom:254.270835px;}
.y1e0f_c00001{bottom:254.279208px;}
.y12ae_c00001{bottom:254.362341px;}
.y1710_c00001{bottom:254.370459px;}
.y1bc0_c00001{bottom:254.457687px;}
.y1fd0_c00001{bottom:254.460450px;}
.y387_c00001{bottom:254.460702px;}
.y2403_c00001{bottom:254.462142px;}
.y1f1f_c00001{bottom:254.550873px;}
.y1176_c00001{bottom:254.629029px;}
.y67_c00001{bottom:254.640450px;}
.ye5c_c00001{bottom:254.640459px;}
.y1612_c00001{bottom:254.816904px;}
.y780_c00001{bottom:255.090450px;}
.ycd3_c00001{bottom:255.116370px;}
.yd04_c00001{bottom:255.147474px;}
.y883_c00001{bottom:255.180450px;}
.y21ab_c00001{bottom:255.182079px;}
.y5af_c00001{bottom:255.270450px;}
.y1e1d_c00001{bottom:255.443655px;}
.y4b1_c00001{bottom:255.450450px;}
.y131d_c00001{bottom:255.534681px;}
.y1955_c00001{bottom:255.538344px;}
.y45d_c00001{bottom:255.540450px;}
.y365_c00001{bottom:255.540600px;}
.y2112_c00001{bottom:255.630600px;}
.y8b6_c00001{bottom:255.720450px;}
.y1700_c00001{bottom:255.984843px;}
.y1efb_c00001{bottom:256.163592px;}
.y60d_c00001{bottom:256.170450px;}
.y1b4d_c00001{bottom:256.257624px;}
.y22e7_c00001{bottom:256.352241px;}
.yf75_c00001{bottom:256.434132px;}
.y17c3_c00001{bottom:256.530135px;}
.y1ff6_c00001{bottom:256.531671px;}
.y20ba_c00001{bottom:256.712043px;}
.y698_c00001{bottom:256.800450px;}
.y3dc_c00001{bottom:256.890450px;}
.y184a_c00001{bottom:256.977561px;}
.y16aa_c00001{bottom:257.069649px;}
.y237c_c00001{bottom:257.071170px;}
.y119d_c00001{bottom:257.243592px;}
.y1771_c00001{bottom:257.244249px;}
.y1d38_c00001{bottom:257.253429px;}
.y1866_c00001{bottom:257.520450px;}
.y11f9_c00001{bottom:257.600460px;}
.y1e78_c00001{bottom:257.604312px;}
.y1d84_c00001{bottom:257.880600px;}
.y227b_c00001{bottom:257.882331px;}
.y1c2e_c00001{bottom:257.965032px;}
.y239a_c00001{bottom:258.062592px;}
.y10bc_c00001{bottom:258.234726px;}
.y1da8_c00001{bottom:258.241116px;}
.y148e_c00001{bottom:258.324906px;}
.y769_c00001{bottom:258.420450px;}
.y638_c00001{bottom:258.420600px;}
.ydb3_c00001{bottom:258.421809px;}
.y996_c00001{bottom:258.502575px;}
.ya67_c00001{bottom:258.504222px;}
.yc70_c00001{bottom:258.505869px;}
.y1c75_c00001{bottom:258.507147px;}
.ya3e_c00001{bottom:258.509163px;}
.y1dfe_c00001{bottom:258.872844px;}
.y1edf_c00001{bottom:259.135023px;}
.y199f_c00001{bottom:259.138875px;}
.y2e3_c00001{bottom:259.140450px;}
.y1307_c00001{bottom:259.404906px;}
.y1913_c00001{bottom:259.405563px;}
.y21ed_c00001{bottom:259.412385px;}
.yb68_c00001{bottom:259.490775px;}
.yc8b_c00001{bottom:259.492422px;}
.y1d5f_c00001{bottom:259.504104px;}
.y1ce4_c00001{bottom:259.587804px;}
.y1e3a_c00001{bottom:259.590450px;}
.y1421_c00001{bottom:259.765212px;}
.y1a8a_c00001{bottom:259.948992px;}
.y1798_c00001{bottom:260.027805px;}
.y520_c00001{bottom:260.130450px;}
.y16c0_c00001{bottom:260.215680px;}
.y431_c00001{bottom:260.310450px;}
.y91b_c00001{bottom:260.478975px;}
.y9cd_c00001{bottom:260.480622px;}
.y1595_c00001{bottom:260.481711px;}
.ybb2_c00001{bottom:260.482269px;}
.y19f0_c00001{bottom:260.485563px;}
.y12ef_c00001{bottom:260.490450px;}
.y1378_c00001{bottom:260.490459px;}
.y58a_c00001{bottom:260.670450px;}
.y1b33_c00001{bottom:260.938218px;}
.y345_c00001{bottom:261.120600px;}
.y1bae_c00001{bottom:261.296337px;}
.y20d9_c00001{bottom:261.302340px;}
.y1733_c00001{bottom:261.562368px;}
.y134a_c00001{bottom:261.565806px;}
.y1bd2_c00001{bottom:261.566220px;}
.y80c_c00001{bottom:261.660450px;}
.y2316_c00001{bottom:261.754095px;}
.y1f3e_c00001{bottom:261.840600px;}
.y1eb4_c00001{bottom:262.016274px;}
.y24fb_c00001{bottom:262.020450px;}
.y2174_c00001{bottom:262.112457px;}
.ybdb_c00001{bottom:262.366437px;}
.y11bf_c00001{bottom:262.376994px;}
.y1dc_c00001{bottom:262.470450px;}
.y3bc_c00001{bottom:262.560450px;}
.y1c8e_c00001{bottom:262.642368px;}
.y2365_c00001{bottom:262.650459px;}
.y7f9_c00001{bottom:262.830450px;}
.y1ac7_c00001{bottom:262.830900px;}
.y55a_c00001{bottom:263.010450px;}
.ye9b_c00001{bottom:263.281212px;}
.ye8b_c00001{bottom:263.281626px;}
.yec4_c00001{bottom:263.282907px;}
.ye27_c00001{bottom:263.284149px;}
.y121a_c00001{bottom:263.362962px;}
.yb58_c00001{bottom:263.548305px;}
.y224_c00001{bottom:263.640450px;}
.y1150_c00001{bottom:263.723682px;}
.y1af1_c00001{bottom:263.910900px;}
.y1a73_c00001{bottom:264.181440px;}
.y12d3_c00001{bottom:264.442962px;}
.y177c_c00001{bottom:264.443619px;}
.y1f5b_c00001{bottom:264.450495px;}
.y61b_c00001{bottom:264.450702px;}
.y19cc_c00001{bottom:264.537651px;}
.y24df_c00001{bottom:264.540450px;}
.y333_c00001{bottom:264.720450px;}
.y202f_c00001{bottom:264.722349px;}
.ydeb_c00001{bottom:264.993744px;}
.y1588_c00001{bottom:265.070370px;}
.y58c_c00001{bottom:265.080450px;}
.y197_c00001{bottom:265.170450px;}
.y44_c00001{bottom:265.170639px;}
.ydc_c00001{bottom:265.170648px;}
.y283_c00001{bottom:265.170657px;}
.y26c_c00001{bottom:265.170864px;}
.y12f_c00001{bottom:265.171203px;}
.y180d_c00001{bottom:265.257588px;}
.y7e4_c00001{bottom:265.350450px;}
.y10ff_c00001{bottom:265.434096px;}
.yf2_c00001{bottom:265.440450px;}
.y1fa0_c00001{bottom:265.531890px;}
.y22fa_c00001{bottom:265.532466px;}
.yc36_c00001{bottom:265.611027px;}
.y66_c00001{bottom:265.800450px;}
.y1b9f_c00001{bottom:265.977525px;}
.y1b9_c00001{bottom:265.980450px;}
.yf1b_c00001{bottom:266.071809px;}
.y15b4_c00001{bottom:266.244213px;}
.y206a_c00001{bottom:266.251014px;}
.yaa3_c00001{bottom:266.516877px;}
.y147c_c00001{bottom:266.604933px;}
.y795_c00001{bottom:266.610450px;}
.y1505_c00001{bottom:266.870307px;}
.y13de_c00001{bottom:266.964996px;}
.y1bee_c00001{bottom:266.969505px;}
.y169_c00001{bottom:266.970450px;}
.y1c49_c00001{bottom:267.057714px;}
.y14a9_c00001{bottom:267.324870px;}
.yfa5_c00001{bottom:267.329379px;}
.y4b6_c00001{bottom:267.330459px;}
.y1126_c00001{bottom:267.500721px;}
.yb63_c00001{bottom:267.503430px;}
.ybbf_c00001{bottom:267.505077px;}
.y1390_c00001{bottom:267.681081px;}
.y156d_c00001{bottom:267.684933px;}
.y13b9_c00001{bottom:267.690099px;}
.y238_c00001{bottom:267.780600px;}
.y2225_c00001{bottom:267.784131px;}
.y3a0_c00001{bottom:267.960450px;}
.y3db_c00001{bottom:267.960600px;}
.yb0b_c00001{bottom:268.044186px;}
.y727_c00001{bottom:268.050450px;}
.yd38_c00001{bottom:268.078242px;}
.yd65_c00001{bottom:268.105890px;}
.yf7_c00001{bottom:268.140450px;}
.y188_c00001{bottom:268.320450px;}
.y181b_c00001{bottom:268.404870px;}
.yabc_c00001{bottom:268.493277px;}
.yc57_c00001{bottom:268.494924px;}
.y1a17_c00001{bottom:268.500216px;}
.y242f_c00001{bottom:268.504068px;}
.y188e_c00001{bottom:268.587768px;}
.y2ab_c00001{bottom:268.590450px;}
.y1de1_c00001{bottom:268.761738px;}
.y211b_c00001{bottom:268.860600px;}
.yca3_c00001{bottom:268.934979px;}
.y713_c00001{bottom:268.950600px;}
.y1b0f_c00001{bottom:269.220153px;}
.y67f_c00001{bottom:269.310450px;}
.y2349_c00001{bottom:269.314185px;}
.y1634_c00001{bottom:269.402862px;}
.y94e_c00001{bottom:269.479830px;}
.y1c19_c00001{bottom:269.484276px;}
.y1cf2_c00001{bottom:269.485527px;}
.y1364_c00001{bottom:269.486184px;}
.yfd6_c00001{bottom:269.490036px;}
.yb90_c00001{bottom:269.490360px;}
.y13fd_c00001{bottom:269.674059px;}
.y22cb_c00001{bottom:269.762628px;}
.y1461_c00001{bottom:269.842395px;}
.y1ea5_c00001{bottom:269.938182px;}
.y165f_c00001{bottom:270.027012px;}
.y2263_c00001{bottom:270.034122px;}
.y8af_c00001{bottom:270.210450px;}
.yef1_c00001{bottom:270.211053px;}
.y18ff_c00001{bottom:270.296301px;}
.y2241_c00001{bottom:270.302304px;}
.y152_c00001{bottom:270.390450px;}
.yc3e_c00001{bottom:270.468030px;}
.y9bc_c00001{bottom:270.469677px;}
.y171a_c00001{bottom:270.562332px;}
.y1c9c_c00001{bottom:270.566184px;}
.y2516_c00001{bottom:270.570450px;}
.y4db_c00001{bottom:270.750450px;}
.y9f7_c00001{bottom:271.013070px;}
.y2165_c00001{bottom:271.112421px;}
.y1a9c_c00001{bottom:271.376301px;}
.y17e0_c00001{bottom:271.376958px;}
.y204b_c00001{bottom:271.382877px;}
.y1e0e_c00001{bottom:271.469019px;}
.y8a2_c00001{bottom:271.470450px;}
.y49a_c00001{bottom:271.560450px;}
.y12ad_c00001{bottom:271.642332px;}
.y1bbf_c00001{bottom:271.647498px;}
.y2402_c00001{bottom:271.651953px;}
.y173c_c00001{bottom:271.909020px;}
.y1447_c00001{bottom:271.913529px;}
.y1fa_c00001{bottom:271.920450px;}
.ye5b_c00001{bottom:271.923114px;}
.y24d6_c00001{bottom:272.010450px;}
.y1611_c00001{bottom:272.096895px;}
.y1686_c00001{bottom:272.190450px;}
.yc06_c00001{bottom:272.355492px;}
.y128d_c00001{bottom:272.456958px;}
.y15ed_c00001{bottom:272.457615px;}
.y1e1c_c00001{bottom:272.723646px;}
.yf46_c00001{bottom:272.816526px;}
.y2088_c00001{bottom:272.910600px;}
.y8f2_c00001{bottom:273.260745px;}
.y16ff_c00001{bottom:273.264834px;}
.y593_c00001{bottom:273.360450px;}
.y1efa_c00001{bottom:273.443583px;}
.y1034_c00001{bottom:273.447435px;}
.y1551_c00001{bottom:273.450459px;}
.yf74_c00001{bottom:273.623943px;}
.y28a_c00001{bottom:273.720450px;}
.y1ff5_c00001{bottom:273.721482px;}
.y17c2_c00001{bottom:273.810126px;}
.y324_c00001{bottom:273.810600px;}
.y20b9_c00001{bottom:273.901854px;}
.y1e57_c00001{bottom:273.986544px;}
.y1fbe_c00001{bottom:274.080450px;}
.y66c_c00001{bottom:274.170450px;}
.y1849_c00001{bottom:274.257552px;}
.y1063_c00001{bottom:274.440450px;}
.y119c_c00001{bottom:274.523583px;}
.y1770_c00001{bottom:274.524240px;}
.y1d37_c00001{bottom:274.533420px;}
.y1745_c00001{bottom:274.790271px;}
.ycd2_c00001{bottom:274.915794px;}
.yd03_c00001{bottom:274.946898px;}
.y756_c00001{bottom:274.980450px;}
.yb22_c00001{bottom:275.066454px;}
.y31b_c00001{bottom:275.070450px;}
.y227a_c00001{bottom:275.072142px;}
.y16d6_c00001{bottom:275.247183px;}
.y62d_c00001{bottom:275.250450px;}
.y2399_c00001{bottom:275.252403px;}
.y2154_c00001{bottom:275.430450px;}
.y10bb_c00001{bottom:275.514717px;}
.y1da7_c00001{bottom:275.521107px;}
.y148d_c00001{bottom:275.604897px;}
.y7a7_c00001{bottom:275.700450px;}
.y1c74_c00001{bottom:275.787138px;}
.y2137_c00001{bottom:275.882124px;}
.y5d6_c00001{bottom:275.882520px;}
.y2421_c00001{bottom:276.064158px;}
.y386_c00001{bottom:276.150045px;}
.y1dba_c00001{bottom:276.324834px;}
.y199e_c00001{bottom:276.418866px;}
.ya1b_c00001{bottom:276.504285px;}
.y24aa_c00001{bottom:276.510450px;}
.y21ec_c00001{bottom:276.602196px;}
.y1b87_c00001{bottom:276.684897px;}
.y18d2_c00001{bottom:276.685554px;}
.y1c5c_c00001{bottom:276.690063px;}
.y2535_c00001{bottom:276.690450px;}
.y1f7d_c00001{bottom:276.780450px;}
.y1d5e_c00001{bottom:276.784095px;}
.y1ce3_c00001{bottom:276.867795px;}
.y1975_c00001{bottom:276.869298px;}
.y601_c00001{bottom:276.870600px;}
.y1420_c00001{bottom:277.045203px;}
.y1a89_c00001{bottom:277.138803px;}
.yce_c00001{bottom:277.140450px;}
.y1dc1_c00001{bottom:277.405491px;}
.y995_c00001{bottom:277.492485px;}
.ya66_c00001{bottom:277.494132px;}
.yc6f_c00001{bottom:277.495779px;}
.y1a3b_c00001{bottom:277.504032px;}
.y1005_c00001{bottom:277.675374px;}
.y12ee_c00001{bottom:277.761702px;}
.y19ef_c00001{bottom:277.765554px;}
.y1943_c00001{bottom:277.766211px;}
.y1377_c00001{bottom:277.770450px;}
.y2a3_c00001{bottom:278.220450px;}
.y244c_c00001{bottom:278.306652px;}
.y1094_c00001{bottom:278.395968px;}
.ya70_c00001{bottom:278.480685px;}
.yc8a_c00001{bottom:278.482332px;}
.y1242_c00001{bottom:278.485491px;}
.y1bad_c00001{bottom:278.486148px;}
.y1d83_c00001{bottom:278.580600px;}
.y10d8_c00001{bottom:278.661999px;}
.y77f_c00001{bottom:278.760450px;}
.y152b_c00001{bottom:278.842359px;}
.y5ae_c00001{bottom:278.850450px;}
.y22ae_c00001{bottom:279.034086px;}
.y4b0_c00001{bottom:279.120450px;}
.y364_c00001{bottom:279.120600px;}
.y45c_c00001{bottom:279.210450px;}
.y1eb3_c00001{bottom:279.296265px;}
.y2332_c00001{bottom:279.302232px;}
.y2173_c00001{bottom:279.302268px;}
.y977_c00001{bottom:279.468885px;}
.y96a_c00001{bottom:279.470532px;}
.y11be_c00001{bottom:279.566805px;}
.y1d03_c00001{bottom:279.832179px;}
.y60c_c00001{bottom:279.840450px;}
.y14f2_c00001{bottom:279.926868px;}
.y2364_c00001{bottom:279.930450px;}
.y23e8_c00001{bottom:279.931980px;}
.y2475_c00001{bottom:279.932034px;}
.y1ac6_c00001{bottom:280.020711px;}
.y20f6_c00001{bottom:280.111044px;}
.y1e39_c00001{bottom:280.290450px;}
.y475_c00001{bottom:280.290600px;}
.y697_c00001{bottom:280.470450px;}
.ye9a_c00001{bottom:280.561203px;}
.ye8a_c00001{bottom:280.561617px;}
.yec3_c00001{bottom:280.562898px;}
.ye26_c00001{bottom:280.564140px;}
.y1263_c00001{bottom:280.642953px;}
.y821_c00001{bottom:280.830450px;}
.y1f1e_c00001{bottom:280.830828px;}
.y14c8_c00001{bottom:280.913493px;}
.ybda_c00001{bottom:281.356347px;}
.y741_c00001{bottom:281.370600px;}
.y1a72_c00001{bottom:281.461431px;}
.y21aa_c00001{bottom:281.462034px;}
.y6f9_c00001{bottom:281.640450px;}
.y1e82_c00001{bottom:281.722953px;}
.y177b_c00001{bottom:281.723610px;}
.y131c_c00001{bottom:281.724456px;}
.y19cb_c00001{bottom:281.727462px;}
.y1954_c00001{bottom:281.728119px;}
.y1b_c00001{bottom:281.730450px;}
.y1175_c00001{bottom:281.989641px;}
.y6c4_c00001{bottom:282.000600px;}
.y768_c00001{bottom:282.090450px;}
.y637_c00001{bottom:282.090600px;}
.y24e9_c00001{bottom:282.270450px;}
.ydea_c00001{bottom:282.273735px;}
.y11c_c00001{bottom:282.360450px;}
.ydb_c00001{bottom:282.360459px;}
.y278_c00001{bottom:282.360468px;}
.y26b_c00001{bottom:282.360675px;}
.y738_c00001{bottom:282.360873px;}
.y12e_c00001{bottom:282.361014px;}
.y180c_c00001{bottom:282.537579px;}
.ydb2_c00001{bottom:282.541503px;}
.y10fe_c00001{bottom:282.623907px;}
.y22e6_c00001{bottom:282.632196px;}
.y499_c00001{bottom:282.720450px;}
.y1f9f_c00001{bottom:282.721701px;}
.y22f9_c00001{bottom:282.722277px;}
.y9c_c00001{bottom:282.900450px;}
.y11d9_c00001{bottom:283.070298px;}
.y208_c00001{bottom:283.080450px;}
.y1b9e_c00001{bottom:283.257516px;}
.y237b_c00001{bottom:283.351125px;}
.y2069_c00001{bottom:283.531005px;}
.y51f_c00001{bottom:283.710450px;}
.y18c5_c00001{bottom:283.884924px;}
.y430_c00001{bottom:283.890450px;}
.y13dd_c00001{bottom:284.154807px;}
.y64e_c00001{bottom:284.160450px;}
.y1bed_c00001{bottom:284.249496px;}
.y589_c00001{bottom:284.250450px;}
.y1c48_c00001{bottom:284.337705px;}
.y16a9_c00001{bottom:284.430261px;}
.y14a8_c00001{bottom:284.604861px;}
.yfa4_c00001{bottom:284.609370px;}
.y344_c00001{bottom:284.700600px;}
.y11f8_c00001{bottom:284.870892px;}
.y156c_c00001{bottom:284.964924px;}
.y13b8_c00001{bottom:284.970090px;}
.y1fcf_c00001{bottom:284.970450px;}
.y1dfd_c00001{bottom:285.062619px;}
.y2224_c00001{bottom:285.064122px;}
.y200d_c00001{bottom:285.240450px;}
.y80b_c00001{bottom:285.330450px;}
.y2111_c00001{bottom:285.330600px;}
.y181a_c00001{bottom:285.684861px;}
.y1a16_c00001{bottom:285.690027px;}
.y24fa_c00001{bottom:285.690450px;}
.y23d3_c00001{bottom:285.784059px;}
.y188d_c00001{bottom:285.867759px;}
.y1de0_c00001{bottom:285.951549px;}
.y4ef_c00001{bottom:286.050450px;}
.y61a_c00001{bottom:286.051107px;}
.y1db_c00001{bottom:286.140450px;}
.y1797_c00001{bottom:286.217580px;}
.y3bb_c00001{bottom:286.230450px;}
.y1ede_c00001{bottom:286.405455px;}
.yb99_c00001{bottom:286.493340px;}
.ya87_c00001{bottom:286.494987px;}
.ya3d_c00001{bottom:286.499928px;}
.y1b0e_c00001{bottom:286.500144px;}
.y7f8_c00001{bottom:286.500450px;}
.y2348_c00001{bottom:286.503996px;}
.y1306_c00001{bottom:286.765518px;}
.y1912_c00001{bottom:286.766175px;}
.yfd5_c00001{bottom:286.770027px;}
.yb0a_c00001{bottom:286.943511px;}
.y22ca_c00001{bottom:286.952439px;}
.y1cca_c00001{bottom:286.954050px;}
.y1460_c00001{bottom:287.032206px;}
.y1b32_c00001{bottom:287.218173px;}
.y419_c00001{bottom:287.220450px;}
.y165e_c00001{bottom:287.307003px;}
.y2262_c00001{bottom:287.314113px;}
.yef0_c00001{bottom:287.400864px;}
.yc63_c00001{bottom:287.481540px;}
.yabb_c00001{bottom:287.483187px;}
.y16bf_c00001{bottom:287.486112px;}
.y20d8_c00001{bottom:287.582295px;}
.y1e98_c00001{bottom:287.752143px;}
.y882_c00001{bottom:287.760450px;}
.y1c20_c00001{bottom:287.842323px;}
.y1bd1_c00001{bottom:287.846175px;}
.yd37_c00001{bottom:287.877666px;}
.yd64_c00001{bottom:287.905314px;}
.y2315_c00001{bottom:288.034050px;}
.y2164_c00001{bottom:288.302232px;}
.y332_c00001{bottom:288.390450px;}
.y91a_c00001{bottom:288.469740px;}
.y9cc_c00001{bottom:288.471387px;}
.ybb1_c00001{bottom:288.473034px;}
.y1a9b_c00001{bottom:288.566112px;}
.y17df_c00001{bottom:288.566769px;}
.y1e0d_c00001{bottom:288.749010px;}
.y12ac_c00001{bottom:288.832143px;}
.y196_c00001{bottom:288.840450px;}
.y1349_c00001{bottom:288.926418px;}
.y43_c00001{bottom:289.110450px;}
.ye5a_c00001{bottom:289.112925px;}
.y1765_c00001{bottom:289.189011px;}
.y1610_c00001{bottom:289.376886px;}
.y21ce_c00001{bottom:289.473924px;}
.y15ec_c00001{bottom:289.647426px;}
.y1c8d_c00001{bottom:289.912800px;}
.y2192_c00001{bottom:290.010450px;}
.yf45_c00001{bottom:290.096517px;}
.yf1a_c00001{bottom:290.191503px;}
.y794_c00001{bottom:290.280450px;}
.y7b9_c00001{bottom:290.550450px;}
.y1033_c00001{bottom:290.637246px;}
.y168_c00001{bottom:290.640450px;}
.y1219_c00001{bottom:290.723574px;}
.y1550_c00001{bottom:290.730450px;}
.y114f_c00001{bottom:290.994114px;}
.y202e_c00001{bottom:291.002304px;}
.y17c1_c00001{bottom:291.090117px;}
.y1e56_c00001{bottom:291.176355px;}
.y1af0_c00001{bottom:291.181332px;}
.y20b8_c00001{bottom:291.181845px;}
.y4b5_c00001{bottom:291.360450px;}
.yb57_c00001{bottom:291.539070px;}
.y1f3d_c00001{bottom:291.540600px;}
.y1062_c00001{bottom:291.623871px;}
.yf6_c00001{bottom:291.720450px;}
.y1d36_c00001{bottom:291.723231px;}
.y119b_c00001{bottom:291.803574px;}
.y187_c00001{bottom:291.900450px;}
.y1744_c00001{bottom:292.070262px;}
.y2279_c00001{bottom:292.352133px;}
.y1587_c00001{bottom:292.430982px;}
.y59f_c00001{bottom:292.530450px;}
.y712_c00001{bottom:292.530600px;}
.y2398_c00001{bottom:292.532394px;}
.y1da6_c00001{bottom:292.710918px;}
.y147b_c00001{bottom:292.884888px;}
.y67e_c00001{bottom:292.890450px;}
.y2420_c00001{bottom:293.253969px;}
.yd88_c00001{bottom:293.430450px;}
.y2fa_c00001{bottom:293.520450px;}
.yc35_c00001{bottom:293.601792px;}
.y15b3_c00001{bottom:293.604825px;}
.y199d_c00001{bottom:293.608677px;}
.y21eb_c00001{bottom:293.882187px;}
.y1b86_c00001{bottom:293.964888px;}
.y151_c00001{bottom:293.970450px;}
.yb21_c00001{bottom:294.056364px;}
.y1ce2_c00001{bottom:294.057606px;}
.y65d_c00001{bottom:294.060450px;}
.y1d5d_c00001{bottom:294.064086px;}
.y1504_c00001{bottom:294.230919px;}
.y141f_c00001{bottom:294.235014px;}
.y2515_c00001{bottom:294.240450px;}
.y4da_c00001{bottom:294.330450px;}
.y1a88_c00001{bottom:294.418794px;}
.yaa2_c00001{bottom:294.507642px;}
.y1dc0_c00001{bottom:294.685482px;}
.ycd1_c00001{bottom:294.805074px;}
.yd02_c00001{bottom:294.836178px;}
.y1125_c00001{bottom:294.861333px;}
.y12ed_c00001{bottom:294.951513px;}
.y1942_c00001{bottom:295.046202px;}
.ya1a_c00001{bottom:295.494195px;}
.yc5e_c00001{bottom:295.495842px;}
.y559_c00001{bottom:295.590450px;}
.y1633_c00001{bottom:295.592637px;}
.y1093_c00001{bottom:295.675959px;}
.y1241_c00001{bottom:295.765482px;}
.y1bac_c00001{bottom:295.766139px;}
.y10d7_c00001{bottom:295.941990px;}
.y13fc_c00001{bottom:295.954014px;}
.y152a_c00001{bottom:296.032170px;}
.yae7_c00001{bottom:296.484042px;}
.yc56_c00001{bottom:296.485689px;}
.y1eb2_c00001{bottom:296.486076px;}
.y833_c00001{bottom:296.563242px;}
.y2331_c00001{bottom:296.582223px;}
.y1c18_c00001{bottom:296.844888px;}
.y1cf1_c00001{bottom:296.846139px;}
.y11bd_c00001{bottom:296.846796px;}
.y1d02_c00001{bottom:297.112170px;}
.y23e7_c00001{bottom:297.121791px;}
.y2474_c00001{bottom:297.212025px;}
.y1b8_c00001{bottom:297.300450px;}
.y1ac5_c00001{bottom:297.300702px;}
.y20f5_c00001{bottom:297.300855px;}
.y289_c00001{bottom:297.390450px;}
.y9c4_c00001{bottom:297.470595px;}
.y323_c00001{bottom:297.480600px;}
.yb8f_c00001{bottom:297.481125px;}
.y18fe_c00001{bottom:297.566733px;}
.y5d5_c00001{bottom:297.571863px;}
.y204a_c00001{bottom:297.572652px;}
.y385_c00001{bottom:297.750450px;}
.ye99_c00001{bottom:297.751014px;}
.ye89_c00001{bottom:297.751428px;}
.yec2_c00001{bottom:297.752709px;}
.ye25_c00001{bottom:297.753951px;}
.y1719_c00001{bottom:297.832764px;}
.y7e3_c00001{bottom:297.930450px;}
.y2401_c00001{bottom:297.931908px;}
.y14c7_c00001{bottom:298.193484px;}
.y5b8_c00001{bottom:298.200450px;}
.yc3d_c00001{bottom:298.368210px;}
.y969_c00001{bottom:298.369857px;}
.y855_c00001{bottom:298.470450px;}
.y755_c00001{bottom:298.560450px;}
.y211a_c00001{bottom:298.560600px;}
.y128c_c00001{bottom:298.646733px;}
.y21a9_c00001{bottom:298.651845px;}
.y1a71_c00001{bottom:298.741422px;}
.y170f_c00001{bottom:298.912764px;}
.y9f6_c00001{bottom:298.913250px;}
.y177a_c00001{bottom:298.913421px;}
.y19ca_c00001{bottom:299.007453px;}
.y1bbe_c00001{bottom:299.008110px;}
.y24be_c00001{bottom:299.010450px;}
.y1174_c00001{bottom:299.269632px;}
.y1446_c00001{bottom:299.274141px;}
.y1d82_c00001{bottom:299.280600px;}
.y7a6_c00001{bottom:299.370450px;}
.y39f_c00001{bottom:299.460600px;}
.yde9_c00001{bottom:299.463546px;}
.y277_c00001{bottom:299.640459px;}
.y26a_c00001{bottom:299.640666px;}
.y737_c00001{bottom:299.640864px;}
.y12d_c00001{bottom:299.641005px;}
.y180b_c00001{bottom:299.727390px;}
.y10fd_c00001{bottom:299.903898px;}
.y1e1b_c00001{bottom:299.994078px;}
.y1ff4_c00001{bottom:300.001437px;}
.y22f8_c00001{bottom:300.002268px;}
.y24a9_c00001{bottom:300.180450px;}
.y42_c00001{bottom:300.270450px;}
.y207_c00001{bottom:300.270600px;}
.yc05_c00001{bottom:300.346257px;}
.y237_c00001{bottom:300.360600px;}
.y16fe_c00001{bottom:300.535266px;}
.y1b9d_c00001{bottom:300.537507px;}
.y600_c00001{bottom:300.540600px;}
.y543_c00001{bottom:300.630450px;}
.ycd_c00001{bottom:300.720450px;}
.y2068_c00001{bottom:300.720816px;}
.y176f_c00001{bottom:300.804195px;}
.yf73_c00001{bottom:300.984555px;}
.y1e38_c00001{bottom:300.990450px;}
.y18c4_c00001{bottom:301.074735px;}
.y8f1_c00001{bottom:301.251510px;}
.y13dc_c00001{bottom:301.434798px;}
.y16d5_c00001{bottom:301.436958px;}
.y1c47_c00001{bottom:301.617696px;}
.y1848_c00001{bottom:301.618164px;}
.y1d12_c00001{bottom:301.884852px;}
.yfa3_c00001{bottom:301.889361px;}
.y2a2_c00001{bottom:301.890450px;}
.y138f_c00001{bottom:302.150883px;}
.y156b_c00001{bottom:302.154735px;}
.y13b7_c00001{bottom:302.250081px;}
.y2136_c00001{bottom:302.252259px;}
.y2223_c00001{bottom:302.253933px;}
.y6e6_c00001{bottom:302.520600px;}
.y2087_c00001{bottom:302.610600px;}
.y4af_c00001{bottom:302.700450px;}
.y45b_c00001{bottom:302.790450px;}
.y363_c00001{bottom:302.790600px;}
.y10ba_c00001{bottom:302.875329px;}
.y1eca_c00001{bottom:302.964852px;}
.y18d1_c00001{bottom:302.965509px;}
.y1a15_c00001{bottom:302.970018px;}
.y8ae_c00001{bottom:302.970450px;}
.y1a55_c00001{bottom:303.057570px;}
.y1ddf_c00001{bottom:303.231540px;}
.y1b0d_c00001{bottom:303.689955px;}
.y1fbd_c00001{bottom:303.780450px;}
.y1a3a_c00001{bottom:303.783987px;}
.y474_c00001{bottom:303.870600px;}
.y1911_c00001{bottom:304.046166px;}
.yfd4_c00001{bottom:304.050018px;}
.y696_c00001{bottom:304.050450px;}
.y8a1_c00001{bottom:304.140450px;}
.y1974_c00001{bottom:304.229910px;}
.y22c9_c00001{bottom:304.232430px;}
.y1cc9_c00001{bottom:304.234041px;}
.y145f_c00001{bottom:304.312197px;}
.y1b31_c00001{bottom:304.407984px;}
.y820_c00001{bottom:304.500450px;}
.y2261_c00001{bottom:304.503924px;}
.y24d5_c00001{bottom:304.680450px;}
.yeef_c00001{bottom:304.680855px;}
.y16be_c00001{bottom:304.766103px;}
.y20d7_c00001{bottom:304.772106px;}
.y740_c00001{bottom:304.950600px;}
.y1594_c00001{bottom:305.032134px;}
.y1004_c00001{bottom:305.035986px;}
.y19ee_c00001{bottom:305.126166px;}
.y2153_c00001{bottom:305.130450px;}
.y6f8_c00001{bottom:305.220450px;}
.y22ad_c00001{bottom:305.223861px;}
.y23b5_c00001{bottom:305.314041px;}
.y1f1_c00001{bottom:305.400450px;}
.y994_c00001{bottom:305.483250px;}
.ya65_c00001{bottom:305.484897px;}
.ya3c_c00001{bottom:305.489838px;}
.y2163_c00001{bottom:305.582223px;}
.y244b_c00001{bottom:305.667264px;}
.y767_c00001{bottom:305.670450px;}
.y636_c00001{bottom:305.670600px;}
.y1a9a_c00001{bottom:305.846103px;}
.y17de_c00001{bottom:305.846760px;}
.y24e8_c00001{bottom:305.940450px;}
.y1e0c_c00001{bottom:306.029001px;}
.y592_c00001{bottom:306.030450px;}
.y12ab_c00001{bottom:306.112134px;}
.y1348_c00001{bottom:306.206409px;}
.y24dd_c00001{bottom:306.210450px;}
.y1764_c00001{bottom:306.378822px;}
.yda_c00001{bottom:306.390450px;}
.ye59_c00001{bottom:306.392916px;}
.ya6f_c00001{bottom:306.471450px;}
.yc89_c00001{bottom:306.473097px;}
.y1f7c_c00001{bottom:306.480450px;}
.y160f_c00001{bottom:306.566697px;}
.y9b_c00001{bottom:306.570450px;}
.ydb1_c00001{bottom:306.661197px;}
.y2363_c00001{bottom:306.840450px;}
.y15eb_c00001{bottom:306.927417px;}
.y1f1d_c00001{bottom:307.020603px;}
.yf44_c00001{bottom:307.286328px;}
.y14f1_c00001{bottom:307.287480px;}
.y919_c00001{bottom:307.369065px;}
.y9cb_c00001{bottom:307.370712px;}
.ybb0_c00001{bottom:307.372359px;}
.y51e_c00001{bottom:307.380450px;}
.y1a_c00001{bottom:307.560450px;}
.yd36_c00001{bottom:307.677090px;}
.yd63_c00001{bottom:307.704738px;}
.y619_c00001{bottom:307.740450px;}
.y31a_c00001{bottom:307.740600px;}
.y1218_c00001{bottom:307.913385px;}
.y1032_c00001{bottom:307.917237px;}
.y588_c00001{bottom:307.920450px;}
.y131b_c00001{bottom:308.004411px;}
.y1953_c00001{bottom:308.008074px;}
.y62c_c00001{bottom:308.010450px;}
.y114e_c00001{bottom:308.274105px;}
.y17c0_c00001{bottom:308.279928px;}
.y343_c00001{bottom:308.370600px;}
.y20b7_c00001{bottom:308.371656px;}
.y1e55_c00001{bottom:308.456346px;}
.y1aef_c00001{bottom:308.461323px;}
.y221_c00001{bottom:308.550450px;}
.y22e5_c00001{bottom:308.821971px;}
.y1061_c00001{bottom:308.903862px;}
.y80a_c00001{bottom:308.910450px;}
.y119a_c00001{bottom:308.993385px;}
.y1f9e_c00001{bottom:309.001656px;}
.y1d35_c00001{bottom:309.003222px;}
.y1b60_c00001{bottom:309.088074px;}
.y24f9_c00001{bottom:309.270450px;}
.ybd9_c00001{bottom:309.347112px;}
.y1783_c00001{bottom:309.350253px;}
.y1586_c00001{bottom:309.620793px;}
.y237a_c00001{bottom:309.631080px;}
.y2278_c00001{bottom:309.632124px;}
.y1da_c00001{bottom:309.720450px;}
.y2397_c00001{bottom:309.722205px;}
.y3ba_c00001{bottom:309.900450px;}
.y725_c00001{bottom:309.990450px;}
.y1da5_c00001{bottom:309.990909px;}
.y147a_c00001{bottom:310.074699px;}
.y11d8_c00001{bottom:310.340730px;}
.y1c2d_c00001{bottom:310.434762px;}
.yb56_c00001{bottom:310.528980px;}
.y241f_c00001{bottom:310.533960px;}
.y15b2_c00001{bottom:310.884816px;}
.y199c_c00001{bottom:310.888668px;}
.y418_c00001{bottom:310.890450px;}
.y21ea_c00001{bottom:311.071998px;}
.y1b85_c00001{bottom:311.154699px;}
.y2295_c00001{bottom:311.253897px;}
.y1ce1_c00001{bottom:311.337597px;}
.y77e_c00001{bottom:311.340450px;}
.y1dfc_c00001{bottom:311.342574px;}
.y1503_c00001{bottom:311.420730px;}
.y881_c00001{bottom:311.430450px;}
.y141e_c00001{bottom:311.515005px;}
.y1bec_c00001{bottom:311.519928px;}
.y5ad_c00001{bottom:311.520450px;}
.y1a87_c00001{bottom:311.608605px;}
.y16a8_c00001{bottom:311.790873px;}
.y14a7_c00001{bottom:311.965473px;}
.y331_c00001{bottom:311.970450px;}
.y23d2_c00001{bottom:311.973834px;}
.y1124_c00001{bottom:312.051144px;}
.y242e_c00001{bottom:312.064014px;}
.y11f7_c00001{bottom:312.231504px;}
.y1941_c00001{bottom:312.236013px;}
.y195_c00001{bottom:312.420450px;}
.yf1_c00001{bottom:312.690450px;}
.y1092_c00001{bottom:312.955950px;}
.y1240_c00001{bottom:313.045473px;}
.y1bab_c00001{bottom:313.046130px;}
.y10d6_c00001{bottom:313.131801px;}
.y188c_c00001{bottom:313.138191px;}
.y1529_c00001{bottom:313.312161px;}
.yaa1_c00001{bottom:313.497552px;}
.y1796_c00001{bottom:313.578192px;}
.y1685_c00001{bottom:313.590450px;}
.y1eb1_c00001{bottom:313.766067px;}
.y2330_c00001{bottom:313.772034px;}
.y2240_c00001{bottom:313.772070px;}
.y793_c00001{bottom:313.860450px;}
.y1305_c00001{bottom:314.126130px;}
.y11bc_c00001{bottom:314.126787px;}
.y167_c00001{bottom:314.220450px;}
.y2314_c00001{bottom:314.223825px;}
.yf19_c00001{bottom:314.311197px;}
.y1d01_c00001{bottom:314.392161px;}
.y23e6_c00001{bottom:314.401782px;}
.ya19_c00001{bottom:314.484105px;}
.ya86_c00001{bottom:314.485752px;}
.y2473_c00001{bottom:314.492016px;}
.y165d_c00001{bottom:314.577435px;}
.y1ac4_c00001{bottom:314.580693px;}
.y20f4_c00001{bottom:314.580846px;}
.ycd0_c00001{bottom:314.604498px;}
.yd01_c00001{bottom:314.635602px;}
.y18fd_c00001{bottom:314.846724px;}
.yb09_c00001{bottom:314.934276px;}
.y200c_c00001{bottom:314.940450px;}
.y2110_c00001{bottom:315.030600px;}
.ye98_c00001{bottom:315.031005px;}
.ye88_c00001{bottom:315.031419px;}
.yec1_c00001{bottom:315.032700px;}
.ye24_c00001{bottom:315.033942px;}
.y1e97_c00001{bottom:315.112755px;}
.y2400_c00001{bottom:315.121719px;}
.yf5_c00001{bottom:315.390450px;}
.yaba_c00001{bottom:315.473952px;}
.yc55_c00001{bottom:315.475599px;}
.y186_c00001{bottom:315.570450px;}
.y21cd_c00001{bottom:315.753879px;}
.y90_c00001{bottom:315.840450px;}
.y128b_c00001{bottom:315.926724px;}
.y1a70_c00001{bottom:315.931233px;}
.y21a8_c00001{bottom:315.931836px;}
.y1e5e_c00001{bottom:316.193412px;}
.y711_c00001{bottom:316.200600px;}
.y19c9_c00001{bottom:316.287444px;}
.y940_c00001{bottom:316.369920px;}
.yb8e_c00001{bottom:316.370505px;}
.y1173_c00001{bottom:316.459443px;}
.y1445_c00001{bottom:316.554132px;}
.y42f_c00001{bottom:316.560450px;}
.y64d_c00001{bottom:316.740450px;}
.yde8_c00001{bottom:316.743537px;}
.y1865_c00001{bottom:316.920450px;}
.y3c2_c00001{bottom:316.920639px;}
.y269_c00001{bottom:316.920657px;}
.y736_c00001{bottom:316.920855px;}
.y12c_c00001{bottom:316.920996px;}
.y180a_c00001{bottom:317.007381px;}
.yd87_c00001{bottom:317.100450px;}
.y10fc_c00001{bottom:317.183889px;}
.yca2_c00001{bottom:317.265276px;}
.y1c8c_c00001{bottom:317.273412px;}
.y1ff3_c00001{bottom:317.281428px;}
.y202d_c00001{bottom:317.282259px;}
.yd9_c00001{bottom:317.550450px;}
.y59e_c00001{bottom:317.550600px;}
.y150_c00001{bottom:317.640450px;}
.y1b9c_c00001{bottom:317.727318px;}
.y2514_c00001{bottom:317.820450px;}
.y9f5_c00001{bottom:317.903160px;}
.y154f_c00001{bottom:317.994006px;}
.y4d9_c00001{bottom:318.000450px;}
.y2067_c00001{bottom:318.000807px;}
.y13db_c00001{bottom:318.714789px;}
.y1c46_c00001{bottom:318.807507px;}
.y1847_c00001{bottom:318.807975px;}
.y148c_c00001{bottom:319.074663px;}
.y7f7_c00001{bottom:319.080450px;}
.y5d4_c00001{bottom:319.172268px;}
.y558_c00001{bottom:319.260450px;}
.y1752_c00001{bottom:319.340694px;}
.y138e_c00001{bottom:319.430874px;}
.y13b6_c00001{bottom:319.439892px;}
.y2135_c00001{bottom:319.532250px;}
.y2222_c00001{bottom:319.533924px;}
.y2191_c00001{bottom:319.710450px;}
.y1d81_c00001{bottom:319.980600px;}
.y1ec9_c00001{bottom:320.154663px;}
.y15a4_c00001{bottom:320.155320px;}
.y8f0_c00001{bottom:320.241420px;}
.y1c5b_c00001{bottom:320.250009px;}
.y1d5c_c00001{bottom:320.253861px;}
.y1a54_c00001{bottom:320.337561px;}
.y1dde_c00001{bottom:320.421351px;}
.y3b0_c00001{bottom:320.430450px;}
.y2eb_c00001{bottom:320.610450px;}
.y1db9_c00001{bottom:320.965437px;}
.y1b0c_c00001{bottom:320.969946px;}
.y288_c00001{bottom:320.970450px;}
.y322_c00001{bottom:321.060600px;}
.y2347_c00001{bottom:321.063978px;}
.y1910_c00001{bottom:321.235977px;}
.yfd3_c00001{bottom:321.239829px;}
.y1f3c_c00001{bottom:321.240600px;}
.y66b_c00001{bottom:321.420450px;}
.y22c8_c00001{bottom:321.422241px;}
.y1cc8_c00001{bottom:321.423852px;}
.yc34_c00001{bottom:321.501972px;}
.y1973_c00001{bottom:321.509901px;}
.y7e2_c00001{bottom:321.600450px;}
.y3f1_c00001{bottom:321.600600px;}
.y1e37_c00001{bottom:321.690450px;}
.y2260_c00001{bottom:321.783915px;}
.y1632_c00001{bottom:321.872592px;}
.yeee_c00001{bottom:321.960846px;}
.y16bd_c00001{bottom:322.046094px;}
.yb20_c00001{bottom:322.047129px;}
.y854_c00001{bottom:322.050450px;}
.y48e_c00001{bottom:322.140450px;}
.y13fb_c00001{bottom:322.143789px;}
.y1003_c00001{bottom:322.225797px;}
.y447_c00001{bottom:322.230450px;}
.y12ec_c00001{bottom:322.312125px;}
.y1bd0_c00001{bottom:322.315977px;}
.y23b4_c00001{bottom:322.503852px;}
.y24bd_c00001{bottom:322.680450px;}
.y2162_c00001{bottom:322.772034px;}
.y7a5_c00001{bottom:322.950450px;}
.y19af_c00001{bottom:323.126094px;}
.y1e0b_c00001{bottom:323.218812px;}
.y7b8_c00001{bottom:323.220450px;}
.y12aa_c00001{bottom:323.392125px;}
.y1732_c00001{bottom:323.392782px;}
.y1347_c00001{bottom:323.396220px;}
.yad8_c00001{bottom:323.484960px;}
.y1763_c00001{bottom:323.658813px;}
.y10d_c00001{bottom:323.670450px;}
.ye58_c00001{bottom:323.672907px;}
.y24a8_c00001{bottom:323.760450px;}
.y160e_c00001{bottom:323.846688px;}
.y2049_c00001{bottom:323.852607px;}
.y2534_c00001{bottom:323.940450px;}
.y236_c00001{bottom:324.030600px;}
.y1c17_c00001{bottom:324.115320px;}
.y5ff_c00001{bottom:324.120600px;}
.y15ea_c00001{bottom:324.207408px;}
.ycc_c00001{bottom:324.390450px;}
.ya64_c00001{bottom:324.474807px;}
.yc6e_c00001{bottom:324.476454px;}
.y14f0_c00001{bottom:324.477291px;}
.yf43_c00001{bottom:324.566319px;}
.y65_c00001{bottom:324.572016px;}
.y1217_c00001{bottom:325.193376px;}
.y1031_c00001{bottom:325.197228px;}
.y1952_c00001{bottom:325.288065px;}
.ya6e_c00001{bottom:325.370775px;}
.yc88_c00001{bottom:325.372422px;}
.y2a1_c00001{bottom:325.470450px;}
.y114d_c00001{bottom:325.554096px;}
.y17bf_c00001{bottom:325.559919px;}
.y1e54_c00001{bottom:325.646157px;}
.y20b6_c00001{bottom:325.651647px;}
.y1aee_c00001{bottom:325.741314px;}
.y4b4_c00001{bottom:325.830450px;}
.y591_c00001{bottom:326.100639px;}
.y2f9_c00001{bottom:326.190450px;}
.y1199_c00001{bottom:326.273376px;}
.y1779_c00001{bottom:326.274033px;}
.y1bbd_c00001{bottom:326.278542px;}
.y1f9d_c00001{bottom:326.281647px;}
.y976_c00001{bottom:326.358975px;}
.y968_c00001{bottom:326.360622px;}
.y362_c00001{bottom:326.370600px;}
.y45a_c00001{bottom:326.460450px;}
.y15bf_c00001{bottom:326.540064px;}
.y2396_c00001{bottom:327.002196px;}
.y1da4_c00001{bottom:327.270900px;}
.y1479_c00001{bottom:327.354690px;}
.y473_c00001{bottom:327.540600px;}
.yd35_c00001{bottom:327.566370px;}
.yd62_c00001{bottom:327.594018px;}
.y16d4_c00001{bottom:327.716913px;}
.yb8_c00001{bottom:327.720450px;}
.y241e_c00001{bottom:327.723771px;}
.y16fd_c00001{bottom:327.895878px;}
.y15b1_c00001{bottom:328.074627px;}
.y81f_c00001{bottom:328.080450px;}
.y199b_c00001{bottom:328.168659px;}
.y2119_c00001{bottom:328.260600px;}
.yc04_c00001{bottom:328.337022px;}
.yf72_c00001{bottom:328.345167px;}
.y21e9_c00001{bottom:328.351989px;}
.y1b84_c00001{bottom:328.434690px;}
.y2294_c00001{bottom:328.533888px;}
.y1ce0_c00001{bottom:328.617588px;}
.y73f_c00001{bottom:328.620600px;}
.y141d_c00001{bottom:328.794996px;}
.y1beb_c00001{bottom:328.799919px;}
.y1a86_c00001{bottom:328.888596px;}
.y6f7_c00001{bottom:328.890450px;}
.y1f0_c00001{bottom:328.980450px;}
.y16a7_c00001{bottom:328.980684px;}
.y384_c00001{bottom:329.070450px;}
.y1d11_c00001{bottom:329.155284px;}
.yfa2_c00001{bottom:329.159793px;}
.y39e_c00001{bottom:329.250450px;}
.y6c3_c00001{bottom:329.250600px;}
.y242d_c00001{bottom:329.253825px;}
.y766_c00001{bottom:329.340450px;}
.y1728_c00001{bottom:329.421315px;}
.y156a_c00001{bottom:329.515347px;}
.y1940_c00001{bottom:329.516004px;}
.y24e7_c00001{bottom:329.520450px;}
.y1b7_c00001{bottom:329.880450px;}
.y2ec_c00001{bottom:329.970450px;}
.y1a39_c00001{bottom:329.973762px;}
.y10b9_c00001{bottom:330.145761px;}
.y9a_c00001{bottom:330.150600px;}
.y123f_c00001{bottom:330.235284px;}
.y1baa_c00001{bottom:330.235941px;}
.y5b7_c00001{bottom:330.240954px;}
.y1a14_c00001{bottom:330.330630px;}
.y1c73_c00001{bottom:330.418182px;}
.y145e_c00001{bottom:330.501972px;}
.y1b30_c00001{bottom:330.687939px;}
.ydb0_c00001{bottom:330.871062px;}
.y51d_c00001{bottom:330.960450px;}
.y1eb0_c00001{bottom:331.046058px;}
.y232f_c00001{bottom:331.052025px;}
.y20d6_c00001{bottom:331.052061px;}
.y1c00_c00001{bottom:331.315941px;}
.y319_c00001{bottom:331.320600px;}
.y22ac_c00001{bottom:331.503816px;}
.y1d00_c00001{bottom:331.581972px;}
.y587_c00001{bottom:331.590450px;}
.y62b_c00001{bottom:331.680450px;}
.y23e5_c00001{bottom:331.681773px;}
.y2472_c00001{bottom:331.681827px;}
.y1ac3_c00001{bottom:331.770504px;}
.y20f3_c00001{bottom:331.770657px;}
.y220_c00001{bottom:332.130450px;}
.y542_c00001{bottom:332.130639px;}
.y2086_c00001{bottom:332.310600px;}
.ye97_c00001{bottom:332.310996px;}
.ye87_c00001{bottom:332.311410px;}
.yec0_c00001{bottom:332.312691px;}
.ye23_c00001{bottom:332.313933px;}
.y1593_c00001{bottom:332.392746px;}
.y19ed_c00001{bottom:332.396598px;}
.y23ff_c00001{bottom:332.401710px;}
.y206_c00001{bottom:332.850600px;}
.y244a_c00001{bottom:332.937696px;}
.y24f8_c00001{bottom:332.940450px;}
.y21a7_c00001{bottom:333.121647px;}
.y1a99_c00001{bottom:333.206715px;}
.y17dd_c00001{bottom:333.207372px;}
.y1a6f_c00001{bottom:333.211224px;}
.y1f1c_c00001{bottom:333.300558px;}
.y1d9_c00001{bottom:333.390450px;}
.y1e5d_c00001{bottom:333.473403px;}
.y993_c00001{bottom:333.474015px;}
.ya85_c00001{bottom:333.475662px;}
.y19c8_c00001{bottom:333.477255px;}
.y3b9_c00001{bottom:333.480450px;}
.ya3b_c00001{bottom:333.480603px;}
.y724_c00001{bottom:333.570450px;}
.y1172_c00001{bottom:333.739434px;}
.y1444_c00001{bottom:333.743943px;}
.yb08_c00001{bottom:333.924186px;}
.yde7_c00001{bottom:334.023528px;}
.y10c_c00001{bottom:334.110468px;}
.y735_c00001{bottom:334.110666px;}
.y12b_c00001{bottom:334.110807px;}
.y131a_c00001{bottom:334.284366px;}
.y1809_c00001{bottom:334.287372px;}
.y1684_c00001{bottom:334.290450px;}
.yc62_c00001{bottom:334.371630px;}
.yab9_c00001{bottom:334.373277px;}
.y10fb_c00001{bottom:334.373700px;}
.yc54_c00001{bottom:334.374924px;}
.y417_c00001{bottom:334.470450px;}
.y1ff2_c00001{bottom:334.471239px;}
.y22f7_c00001{bottom:334.472070px;}
.yccf_c00001{bottom:334.493778px;}
.yd00_c00001{bottom:334.524882px;}
.y1c8b_c00001{bottom:334.553403px;}
.y282_c00001{bottom:334.830450px;}
.y4cc_c00001{bottom:334.830600px;}
.y1b9b_c00001{bottom:335.007309px;}
.y77d_c00001{bottom:335.010450px;}
.y6e5_c00001{bottom:335.100600px;}
.y22e4_c00001{bottom:335.101926px;}
.y1262_c00001{bottom:335.273997px;}
.y2066_c00001{bottom:335.280798px;}
.y1d34_c00001{bottom:335.283177px;}
.y918_c00001{bottom:335.359830px;}
.y9ca_c00001{bottom:335.361477px;}
.ybaf_c00001{bottom:335.363124px;}
.y4ae_c00001{bottom:335.370450px;}
.y2aa_c00001{bottom:335.640450px;}
.y2379_c00001{bottom:335.820855px;}
.y2277_c00001{bottom:335.821899px;}
.y13da_c00001{bottom:335.904600px;}
.y194_c00001{bottom:336.090450px;}
.y1f7b_c00001{bottom:336.180450px;}
.y1060_c00001{bottom:336.264474px;}
.y12d2_c00001{bottom:336.353997px;}
.y148b_c00001{bottom:336.354654px;}
.y1b5f_c00001{bottom:336.358506px;}
.yf0_c00001{bottom:336.360450px;}
.y2362_c00001{bottom:336.540450px;}
.y138d_c00001{bottom:336.620685px;}
.y1c2c_c00001{bottom:336.714717px;}
.y13b5_c00001{bottom:336.719883px;}
.y2134_c00001{bottom:336.722061px;}
.y2221_c00001{bottom:336.813915px;}
.y1585_c00001{bottom:336.981405px;}
.y24d4_c00001{bottom:337.170450px;}
.ybd8_c00001{bottom:337.337877px;}
.y1ec8_c00001{bottom:337.434654px;}
.y15a3_c00001{bottom:337.435311px;}
.y1d5b_c00001{bottom:337.533852px;}
.y1a53_c00001{bottom:337.617552px;}
.y1dfb_c00001{bottom:337.622529px;}
.y11d7_c00001{bottom:337.701342px;}
.y166_c00001{bottom:337.890450px;}
.y1924_c00001{bottom:338.155248px;}
.y1b0b_c00001{bottom:338.249937px;}
.y2346_c00001{bottom:338.253789px;}
.y635_c00001{bottom:338.340600px;}
.yb55_c00001{bottom:338.429160px;}
.y190f_c00001{bottom:338.515968px;}
.yfd2_c00001{bottom:338.519820px;}
.yf18_c00001{bottom:338.521062px;}
.y22c7_c00001{bottom:338.702232px;}
.y1cc7_c00001{bottom:338.703843px;}
.y1502_c00001{bottom:338.781342px;}
.y1ca_c00001{bottom:338.970450px;}
.y618_c00001{bottom:339.060450px;}
.y225f_c00001{bottom:339.063906px;}
.yeed_c00001{bottom:339.150657px;}
.y14a6_c00001{bottom:339.235905px;}
.y185_c00001{bottom:339.240450px;}
.y10d5_c00001{bottom:339.411756px;}
.y11f6_c00001{bottom:339.501936px;}
.y8f_c00001{bottom:339.510450px;}
.y23b3_c00001{bottom:339.783843px;}
.y710_c00001{bottom:339.870600px;}
.y2161_c00001{bottom:340.052025px;}
.y67d_c00001{bottom:340.140450px;}
.y1091_c00001{bottom:340.226382px;}
.y42e_c00001{bottom:340.230450px;}
.y1304_c00001{bottom:340.315905px;}
.y11bb_c00001{bottom:340.316562px;}
.y64c_c00001{bottom:340.410450px;}
.yc33_c00001{bottom:340.491882px;}
.y188b_c00001{bottom:340.498803px;}
.y2313_c00001{bottom:340.503780px;}
.y1ed7_c00001{bottom:340.581936px;}
.y1528_c00001{bottom:340.582593px;}
.y1d80_c00001{bottom:340.680600px;}
.y276_c00001{bottom:340.860450px;}
.y5d3_c00001{bottom:340.861611px;}
.ye57_c00001{bottom:340.862718px;}
.y1762_c00001{bottom:340.938804px;}
.yb1f_c00001{bottom:340.946454px;}
.y342_c00001{bottom:340.950600px;}
.y160d_c00001{bottom:341.126679px;}
.y14f_c00001{bottom:341.220450px;}
.y65c_c00001{bottom:341.310450px;}
.y15e9_c00001{bottom:341.397219px;}
.yaa0_c00001{bottom:341.488317px;}
.y2513_c00001{bottom:341.490450px;}
.y809_c00001{bottom:341.580450px;}
.y4d8_c00001{bottom:341.580600px;}
.y14ef_c00001{bottom:341.757282px;}
.y165c_c00001{bottom:341.938047px;}
.yd86_c00001{bottom:342.030450px;}
.y21cc_c00001{bottom:342.033834px;}
.y18fc_c00001{bottom:342.207336px;}
.y4ee_c00001{bottom:342.300450px;}
.y1030_c00001{bottom:342.387039px;}
.y1e36_c00001{bottom:342.390450px;}
.y1216_c00001{bottom:342.473367px;}
.ya18_c00001{bottom:342.474870px;}
.y1951_c00001{bottom:342.477876px;}
.y114c_c00001{bottom:342.743907px;}
.y7f6_c00001{bottom:342.750450px;}
.y17be_c00001{bottom:342.839910px;}
.y557_c00001{bottom:342.840450px;}
.y1e53_c00001{bottom:342.926148px;}
.y1aed_c00001{bottom:342.931125px;}
.y4b3_c00001{bottom:343.110450px;}
.y128a_c00001{bottom:343.197156px;}
.y209e_c00001{bottom:343.290450px;}
.yae6_c00001{bottom:343.374132px;}
.y1f9c_c00001{bottom:343.471458px;}
.y202c_c00001{bottom:343.472034px;}
.y1198_c00001{bottom:343.553367px;}
.y71e_c00001{bottom:343.650450px;}
.y173b_c00001{bottom:343.820055px;}
.y3af_c00001{bottom:344.100450px;}
.yd8_c00001{bottom:344.280702px;}
.y2395_c00001{bottom:344.282187px;}
.y93f_c00001{bottom:344.360685px;}
.yb8d_c00001{bottom:344.361270px;}
.y1da3_c00001{bottom:344.460711px;}
.y1478_c00001{bottom:344.634681px;}
.y41_c00001{bottom:344.640450px;}
.y321_c00001{bottom:344.730600px;}
.y832_c00001{bottom:344.805276px;}
.y66a_c00001{bottom:345.000450px;}
.y241d_c00001{bottom:345.003762px;}
.y7e1_c00001{bottom:345.270450px;}
.y3f0_c00001{bottom:345.270600px;}
.y967_c00001{bottom:345.350532px;}
.y154e_c00001{bottom:345.354618px;}
.yf71_c00001{bottom:345.534978px;}
.y21e8_c00001{bottom:345.631980px;}
.y853_c00001{bottom:345.720450px;}
.y2293_c00001{bottom:345.723699px;}
.y1cdf_c00001{bottom:345.807399px;}
.y446_c00001{bottom:345.810450px;}
.y9f4_c00001{bottom:345.893925px;}
.y141c_c00001{bottom:345.984807px;}
.y1c45_c00001{bottom:346.168119px;}
.y1846_c00001{bottom:346.168587px;}
.y16a6_c00001{bottom:346.260675px;}
.y64_c00001{bottom:346.261359px;}
.y24bc_c00001{bottom:346.350450px;}
.y1dbf_c00001{bottom:346.435275px;}
.yfa1_c00001{bottom:346.439784px;}
.y792_c00001{bottom:346.530450px;}
.y7a4_c00001{bottom:346.620450px;}
.y3da_c00001{bottom:346.620600px;}
.y1f5a_c00001{bottom:346.622259px;}
.y1751_c00001{bottom:346.701306px;}
.y1569_c00001{bottom:346.795338px;}
.y7b7_c00001{bottom:346.800450px;}
.yc03_c00001{bottom:347.326932px;}
.yd34_c00001{bottom:347.365794px;}
.yd61_c00001{bottom:347.393442px;}
.y10b8_c00001{bottom:347.425752px;}
.y123e_c00001{bottom:347.515275px;}
.y18aa_c00001{bottom:347.515932px;}
.y2533_c00001{bottom:347.520450px;}
.y235_c00001{bottom:347.610600px;}
.y1c72_c00001{bottom:347.698173px;}
.y145d_c00001{bottom:347.781963px;}
.y5fe_c00001{bottom:347.790600px;}
.y1b2f_c00001{bottom:347.967930px;}
.ycb_c00001{bottom:347.970450px;}
.y1631_c00001{bottom:348.062367px;}
.y8ef_c00001{bottom:348.232185px;}
.y1db8_c00001{bottom:348.235869px;}
.y232e_c00001{bottom:348.332016px;}
.y20d5_c00001{bottom:348.332052px;}
.y13fa_c00001{bottom:348.423744px;}
.y1002_c00001{bottom:348.505752px;}
.y1bff_c00001{bottom:348.595932px;}
.y1972_c00001{bottom:348.780333px;}
.y23e4_c00001{bottom:348.871584px;}
.y20f2_c00001{bottom:349.050648px;}
.y2a0_c00001{bottom:349.140450px;}
.y541_c00001{bottom:349.320450px;}
.y2190_c00001{bottom:349.410450px;}
.ye96_c00001{bottom:349.500807px;}
.ye86_c00001{bottom:349.501221px;}
.yebf_c00001{bottom:349.502502px;}
.ye22_c00001{bottom:349.503744px;}
.y12eb_c00001{bottom:349.582557px;}
.y19ec_c00001{bottom:349.676589px;}
.y23fe_c00001{bottom:349.681701px;}
.y2f8_c00001{bottom:349.860450px;}
.y361_c00001{bottom:350.040600px;}
.y459_c00001{bottom:350.130450px;}
.y2048_c00001{bottom:350.132562px;}
.y21a6_c00001{bottom:350.401638px;}
.y1a6e_c00001{bottom:350.491215px;}
.y12a9_c00001{bottom:350.662557px;}
.y1731_c00001{bottom:350.663214px;}
.y1346_c00001{bottom:350.756832px;}
.y19c7_c00001{bottom:350.757246px;}
.y3fa_c00001{bottom:350.760450px;}
.y1f3b_c00001{bottom:350.940600px;}
.y20b5_c00001{bottom:351.121485px;}
.y472_c00001{bottom:351.210600px;}
.yde6_c00001{bottom:351.213339px;}
.y695_c00001{bottom:351.300450px;}
.yb7_c00001{bottom:351.390450px;}
.y10b_c00001{bottom:351.390459px;}
.y734_c00001{bottom:351.390657px;}
.y12a_c00001{bottom:351.390798px;}
.y275_c00001{bottom:351.390864px;}
.y1c16_c00001{bottom:351.475932px;}
.y1808_c00001{bottom:351.477183px;}
.y1c8a_c00001{bottom:351.743214px;}
.y81e_c00001{bottom:351.750450px;}
.y1ff1_c00001{bottom:351.751230px;}
.y22f6_c00001{bottom:351.752061px;}
.y5b6_c00001{bottom:351.841359px;}
.yf42_c00001{bottom:351.926931px;}
.y3c3_c00001{bottom:352.020450px;}
.y1b9a_c00001{bottom:352.197120px;}
.y73e_c00001{bottom:352.200600px;}
.yb98_c00001{bottom:352.373340px;}
.ya63_c00001{bottom:352.374987px;}
.yc6d_c00001{bottom:352.376634px;}
.ya3a_c00001{bottom:352.379928px;}
.y6f6_c00001{bottom:352.470450px;}
.y2065_c00001{bottom:352.470609px;}
.y1d33_c00001{bottom:352.472988px;}
.y1261_c00001{bottom:352.553988px;}
.y1bbc_c00001{bottom:352.558497px;}
.y1ef_c00001{bottom:352.650450px;}
.y39d_c00001{bottom:352.920450px;}
.y6c2_c00001{bottom:352.920600px;}
.y13d9_c00001{bottom:353.184591px;}
.y2ea_c00001{bottom:353.190450px;}
.ya6d_c00001{bottom:353.361540px;}
.yc87_c00001{bottom:353.363187px;}
.y498_c00001{bottom:353.370450px;}
.y1b6_c00001{bottom:353.550450px;}
.y170e_c00001{bottom:353.633988px;}
.y148a_c00001{bottom:353.634645px;}
.y1b5e_c00001{bottom:353.638497px;}
.y287_c00001{bottom:353.640450px;}
.y99_c00001{bottom:353.820600px;}
.y138c_c00001{bottom:353.900676px;}
.y16d3_c00001{bottom:353.996868px;}
.y13b4_c00001{bottom:353.999874px;}
.y2133_c00001{bottom:354.002052px;}
.y2220_c00001{bottom:354.003726px;}
.y4b2_c00001{bottom:354.270450px;}
.ycce_c00001{bottom:354.293202px;}
.ycff_c00001{bottom:354.324306px;}
.y975_c00001{bottom:354.349740px;}
.y9bb_c00001{bottom:354.351387px;}
.ybae_c00001{bottom:354.353034px;}
.y199a_c00001{bottom:354.358434px;}
.y51c_c00001{bottom:354.630450px;}
.y15a2_c00001{bottom:354.715302px;}
.y1d5a_c00001{bottom:354.723663px;}
.y1a52_c00001{bottom:354.807363px;}
.y1ddd_c00001{bottom:354.981333px;}
.y1683_c00001{bottom:354.990450px;}
.y318_c00001{bottom:354.990600px;}
.ydaf_c00001{bottom:354.990756px;}
.y1bea_c00001{bottom:355.079874px;}
.y16fc_c00001{bottom:355.166310px;}
.y586_c00001{bottom:355.170450px;}
.y62a_c00001{bottom:355.350450px;}
.y1923_c00001{bottom:355.435239px;}
.y1b0a_c00001{bottom:355.439748px;}
.y59d_c00001{bottom:355.440600px;}
.y2345_c00001{bottom:355.533780px;}
.y1b83_c00001{bottom:355.795302px;}
.y190e_c00001{bottom:355.795959px;}
.yfd1_c00001{bottom:355.799811px;}
.y21f_c00001{bottom:355.800450px;}
.y11b_c00001{bottom:355.890450px;}
.y22c6_c00001{bottom:355.982223px;}
.y1cc6_c00001{bottom:355.983834px;}
.y1501_c00001{bottom:356.061333px;}
.y1a38_c00001{bottom:356.253717px;}
.ybd7_c00001{bottom:356.327787px;}
.y24a7_c00001{bottom:356.430450px;}
.y205_c00001{bottom:356.430600px;}
.yeec_c00001{bottom:356.430648px;}
.y14a5_c00001{bottom:356.515896px;}
.y24f7_c00001{bottom:356.520450px;}
.y10d4_c00001{bottom:356.691747px;}
.y1727_c00001{bottom:356.781927px;}
.y1e77_c00001{bottom:356.875959px;}
.y193f_c00001{bottom:356.876616px;}
.y1a2_c00001{bottom:356.970450px;}
.y23b2_c00001{bottom:357.063834px;}
.y723_c00001{bottom:357.240450px;}
.y2172_c00001{bottom:357.332016px;}
.yb54_c00001{bottom:357.419070px;}
.y1303_c00001{bottom:357.595896px;}
.y11ba_c00001{bottom:357.596553px;}
.y1a13_c00001{bottom:357.601062px;}
.y188a_c00001{bottom:357.778794px;}
.y22ab_c00001{bottom:357.783771px;}
.y1ed6_c00001{bottom:357.861927px;}
.y2118_c00001{bottom:357.960600px;}
.y2471_c00001{bottom:357.961782px;}
.y416_c00001{bottom:358.140450px;}
.ye56_c00001{bottom:358.142709px;}
.y160c_c00001{bottom:358.316490px;}
.y1cf0_c00001{bottom:358.676553px;}
.y77c_c00001{bottom:358.680450px;}
.y6e4_c00001{bottom:358.770600px;}
.y1cff_c00001{bottom:358.942584px;}
.y120_c00001{bottom:359.041170px;}
.y1ac2_c00001{bottom:359.131116px;}
.y165b_c00001{bottom:359.218038px;}
.y2a9_c00001{bottom:359.220450px;}
.y18fb_c00001{bottom:359.397147px;}
.y1f1b_c00001{bottom:359.580513px;}
.y1215_c00001{bottom:359.663178px;}
.y102f_c00001{bottom:359.667030px;}
.y193_c00001{bottom:359.670450px;}
.yb1e_c00001{bottom:359.936364px;}
.y114b_c00001{bottom:360.023898px;}
.y17bd_c00001{bottom:360.029721px;}
.yef_c00001{bottom:360.030450px;}
.y223e_c00001{bottom:360.033762px;}
.y1e52_c00001{bottom:360.206139px;}
.y1aec_c00001{bottom:360.211116px;}
.y2449_c00001{bottom:360.298308px;}
.y8a0_c00001{bottom:360.390450px;}
.y1319_c00001{bottom:360.474141px;}
.y1a98_c00001{bottom:360.477147px;}
.y17dc_c00001{bottom:360.477804px;}
.ya9f_c00001{bottom:360.478227px;}
.y202b_c00001{bottom:360.752025px;}
.y1171_c00001{bottom:361.009866px;}
.y1443_c00001{bottom:361.104555px;}
.y590_c00001{bottom:361.200450px;}
.y992_c00001{bottom:361.374195px;}
.yad1_c00001{bottom:361.375842px;}
.y1d7f_c00001{bottom:361.380600px;}
.y22e3_c00001{bottom:361.381881px;}
.y165_c00001{bottom:361.470450px;}
.y2394_c00001{bottom:361.471998px;}
.y383_c00001{bottom:361.650450px;}
.y10fa_c00001{bottom:361.734312px;}
.y1da2_c00001{bottom:361.740702px;}
.y18c3_c00001{bottom:361.824492px;}
.yb07_c00001{bottom:361.914951px;}
.y634_c00001{bottom:361.920600px;}
.y2085_c00001{bottom:362.010600px;}
.y2378_c00001{bottom:362.100810px;}
.y2276_c00001{bottom:362.101854px;}
.yab8_c00001{bottom:362.364042px;}
.yc53_c00001{bottom:362.365689px;}
.y5d2_c00001{bottom:362.550954px;}
.y154d_c00001{bottom:362.634609px;}
.y257_c00001{bottom:362.640450px;}
.yf17_c00001{bottom:362.640756px;}
.y184_c00001{bottom:362.820450px;}
.y21e7_c00001{bottom:362.821791px;}
.y1c2b_c00001{bottom:362.904492px;}
.y2292_c00001{bottom:363.003690px;}
.y1cde_c00001{bottom:363.087390px;}
.y8e_c00001{bottom:363.090450px;}
.y1fbc_c00001{bottom:363.180450px;}
.y141b_c00001{bottom:363.264798px;}
.y917_c00001{bottom:363.350595px;}
.yb8c_c00001{bottom:363.351180px;}
.yb35_c00001{bottom:363.352242px;}
.y1845_c00001{bottom:363.358398px;}
.y281_c00001{bottom:363.450450px;}
.y70f_c00001{bottom:363.450600px;}
.y105f_c00001{bottom:363.534906px;}
.y16a5_c00001{bottom:363.540666px;}
.y12d1_c00001{bottom:363.714609px;}
.y1dbe_c00001{bottom:363.715266px;}
.y1c5a_c00001{bottom:363.719775px;}
.y42d_c00001{bottom:363.810450px;}
.y1dfa_c00001{bottom:363.812304px;}
.y1743_c00001{bottom:363.981297px;}
.y64b_c00001{bottom:363.990450px;}
.y1584_c00001{bottom:364.251837px;}
.y2152_c00001{bottom:364.530450px;}
.y23d1_c00001{bottom:364.533744px;}
.y341_c00001{bottom:364.620600px;}
.y10b7_c00001{bottom:364.705743px;}
.y123d_c00001{bottom:364.795266px;}
.y18a9_c00001{bottom:364.795923px;}
.y9f3_c00001{bottom:364.883835px;}
.y1c71_c00001{bottom:364.887984px;}
.y14e_c00001{bottom:364.890450px;}
.y11d6_c00001{bottom:365.061954px;}
.y1b2e_c00001{bottom:365.157741px;}
.y808_c00001{bottom:365.160450px;}
.y4d7_c00001{bottom:365.250600px;}
.ybf4_c00001{bottom:365.328642px;}
.yca1_c00001{bottom:365.507310px;}
.y1db7_c00001{bottom:365.515860px;}
.y2361_c00001{bottom:365.521197px;}
.y232d_c00001{bottom:365.521827px;}
.yd85_c00001{bottom:365.610450px;}
.y1001_c00001{bottom:365.785743px;}
.y1c9b_c00001{bottom:365.875923px;}
.y1e18_c00001{bottom:365.876580px;}
.y1f7a_c00001{bottom:365.880450px;}
.yd7_c00001{bottom:365.970045px;}
.y4ed_c00001{bottom:365.970450px;}
.y3b8_c00001{bottom:366.150450px;}
.y7f5_c00001{bottom:366.330450px;}
.y20f1_c00001{bottom:366.330639px;}
.y2160_c00001{bottom:366.331980px;}
.y556_c00001{bottom:366.510450px;}
.y1123_c00001{bottom:366.772368px;}
.ye95_c00001{bottom:366.780798px;}
.ye85_c00001{bottom:366.781212px;}
.yebe_c00001{bottom:366.782493px;}
.ye21_c00001{bottom:366.783735px;}
.y11f5_c00001{bottom:366.862548px;}
.y1bcf_c00001{bottom:366.866400px;}
.y23fd_c00001{bottom:366.871512px;}
.y19eb_c00001{bottom:366.956580px;}
.y50c_c00001{bottom:367.140450px;}
.y8ee_c00001{bottom:367.222095px;}
.yd33_c00001{bottom:367.255074px;}
.yd60_c00001{bottom:367.282722px;}
.y71d_c00001{bottom:367.320450px;}
.y4ad_c00001{bottom:367.322016px;}
.y7d3_c00001{bottom:367.500450px;}
.y1090_c00001{bottom:367.586994px;}
.y1e8d_c00001{bottom:367.677174px;}
.y3ae_c00001{bottom:367.680450px;}
.y1a6d_c00001{bottom:367.681026px;}
.y21a5_c00001{bottom:367.681629px;}
.y1527_c00001{bottom:367.943205px;}
.y1345_c00001{bottom:367.946643px;}
.y14ee_c00001{bottom:367.947057px;}
.y63_c00001{bottom:367.950702px;}
.y1761_c00001{bottom:368.209236px;}
.y40_c00001{bottom:368.220450px;}
.y21cb_c00001{bottom:368.223609px;}
.y320_c00001{bottom:368.310600px;}
.y20b4_c00001{bottom:368.401476px;}
.yc32_c00001{bottom:368.482647px;}
.yde5_c00001{bottom:368.493330px;}
.y733_c00001{bottom:368.670648px;}
.y129_c00001{bottom:368.670789px;}
.y274_c00001{bottom:368.670855px;}
.y1b4c_c00001{bottom:368.757174px;}
.y15e8_c00001{bottom:368.757831px;}
.y7e0_c00001{bottom:368.850450px;}
.y3ef_c00001{bottom:368.850600px;}
.y1c89_c00001{bottom:369.023205px;}
.y1ff0_c00001{bottom:369.031221px;}
.y22f5_c00001{bottom:369.032052px;}
.y5e4_c00001{bottom:369.300450px;}
.y445_c00001{bottom:369.480450px;}
.y1260_c00001{bottom:369.743799px;}
.y1f9b_c00001{bottom:369.751413px;}
.y2064_c00001{bottom:369.752025px;}
.y1d32_c00001{bottom:369.752979px;}
.y1bbb_c00001{bottom:369.838488px;}
.y24bb_c00001{bottom:369.930450px;}
.y14c6_c00001{bottom:370.104519px;}
.y791_c00001{bottom:370.200450px;}
.y3d9_c00001{bottom:370.200600px;}
.y7a3_c00001{bottom:370.290450px;}
.y13d8_c00001{bottom:370.464582px;}
.y7b6_c00001{bottom:370.470450px;}
.y1289_c00001{bottom:370.557768px;}
.y1197_c00001{bottom:370.823799px;}
.y1477_c00001{bottom:370.824456px;}
.y13b3_c00001{bottom:371.189685px;}
.y2532_c00001{bottom:371.190450px;}
.y234_c00001{bottom:371.280600px;}
.y2132_c00001{bottom:371.282043px;}
.y221f_c00001{bottom:371.283717px;}
.ya62_c00001{bottom:371.364897px;}
.yc6c_c00001{bottom:371.366544px;}
.y5fd_c00001{bottom:371.460600px;}
.yca_c00001{bottom:371.640450px;}
.yf70_c00001{bottom:371.814933px;}
.y1d59_c00001{bottom:372.003654px;}
.y1a51_c00001{bottom:372.087354px;}
.y1ddc_c00001{bottom:372.171144px;}
.y1be9_c00001{bottom:372.269685px;}
.y93e_c00001{bottom:372.351450px;}
.yc86_c00001{bottom:372.353097px;}
.y1ca4_c00001{bottom:372.715230px;}
.y1b09_c00001{bottom:372.719739px;}
.y29f_c00001{bottom:372.720450px;}
.y23f4_c00001{bottom:372.723591px;}
.y1f59_c00001{bottom:372.902214px;}
.y1b82_c00001{bottom:372.985113px;}
.y190d_c00001{bottom:372.985770px;}
.yfd0_c00001{bottom:372.989622px;}
.y209d_c00001{bottom:372.990450px;}
.y22c5_c00001{bottom:373.172034px;}
.y1cc5_c00001{bottom:373.173645px;}
.y2e9_c00001{bottom:373.260450px;}
.y966_c00001{bottom:373.341297px;}
.y2f7_c00001{bottom:373.440450px;}
.y1c44_c00001{bottom:373.528731px;}
.y5b5_c00001{bottom:373.530702px;}
.y225e_c00001{bottom:373.533708px;}
.y360_c00001{bottom:373.620600px;}
.y286_c00001{bottom:373.710000px;}
.y458_c00001{bottom:373.710450px;}
.yeeb_c00001{bottom:373.710639px;}
.y14a4_c00001{bottom:373.795887px;}
.yfa0_c00001{bottom:373.800396px;}
.y10d3_c00001{bottom:373.881558px;}
.y1726_c00001{bottom:374.061918px;}
.y1568_c00001{bottom:374.065770px;}
.y2512_c00001{bottom:374.070450px;}
.yccd_c00001{bottom:374.092626px;}
.ycfe_c00001{bottom:374.123730px;}
.y23b1_c00001{bottom:374.253645px;}
.y200b_c00001{bottom:374.340450px;}
.y1630_c00001{bottom:374.342322px;}
.y3f9_c00001{bottom:374.430450px;}
.y210f_c00001{bottom:374.430600px;}
.y20d4_c00001{bottom:374.521827px;}
.y13f9_c00001{bottom:374.703699px;}
.y471_c00001{bottom:374.790600px;}
.y1302_c00001{bottom:374.875887px;}
.y11b9_c00001{bottom:374.876544px;}
.y1a12_c00001{bottom:374.881053px;}
.y1889_c00001{bottom:374.968605px;}
.y540_c00001{bottom:375.150450px;}
.y23e3_c00001{bottom:375.151539px;}
.y2470_c00001{bottom:375.241773px;}
.yc02_c00001{bottom:375.317697px;}
.y81d_c00001{bottom:375.330450px;}
.y10a_c00001{bottom:375.420450px;}
.ye55_c00001{bottom:375.422700px;}
.y1eaf_c00001{bottom:375.596481px;}
.y1682_c00001{bottom:375.690450px;}
.y1cef_c00001{bottom:375.866364px;}
.y73d_c00001{bottom:375.870600px;}
.y6f5_c00001{bottom:376.140450px;}
.y1971_c00001{bottom:376.140945px;}
.y1ee_c00001{bottom:376.230450px;}
.y11f_c00001{bottom:376.230981px;}
.y1864_c00001{bottom:376.320450px;}
.y2047_c00001{bottom:376.322337px;}
.y165a_c00001{bottom:376.407849px;}
.yb53_c00001{bottom:376.408980px;}
.y1ac1_c00001{bottom:376.411107px;}
.y39c_c00001{bottom:376.500450px;}
.y6c1_c00001{bottom:376.500600px;}
.y765_c00001{bottom:376.590450px;}
.y18fa_c00001{bottom:376.677138px;}
.y24e6_c00001{bottom:376.770450px;}
.y2c3_c00001{bottom:376.860450px;}
.y1718_c00001{bottom:376.943169px;}
.y497_c00001{bottom:376.950450px;}
.y1b5_c00001{bottom:377.130450px;}
.y531_c00001{bottom:377.220450px;}
.y17bc_c00001{bottom:377.309712px;}
.y223d_c00001{bottom:377.313753px;}
.y1e51_c00001{bottom:377.395950px;}
.y1aeb_c00001{bottom:377.491107px;}
.y669_c00001{bottom:377.670450px;}
.y1807_c00001{bottom:377.757138px;}
.y17db_c00001{bottom:377.757795px;}
.y58f_c00001{bottom:377.760450px;}
.y12a8_c00001{bottom:378.023169px;}
.y202a_c00001{bottom:378.032016px;}
.y51b_c00001{bottom:378.300450px;}
.y317_c00001{bottom:378.570600px;}
.y1c15_c00001{bottom:378.746364px;}
.y585_c00001{bottom:378.840450px;}
.yb1d_c00001{bottom:378.926274px;}
.y629_c00001{bottom:378.930450px;}
.y1da1_c00001{bottom:379.020693px;}
.ydae_c00001{bottom:379.110450px;}
.y59c_c00001{bottom:379.110600px;}
.yf41_c00001{bottom:379.197363px;}
.ya9e_c00001{bottom:379.377552px;}
.y21e_c00001{bottom:379.380450px;}
.y1b99_c00001{bottom:379.557732px;}
.y11a_c00001{bottom:379.560450px;}
.y154c_c00001{bottom:379.824420px;}
.y1b5d_c00001{bottom:379.918452px;}
.y24a6_c00001{bottom:380.100450px;}
.y204_c00001{bottom:380.100600px;}
.y21e6_c00001{bottom:380.101782px;}
.y1c2a_c00001{bottom:380.184483px;}
.y16d2_c00001{bottom:380.186643px;}
.y24f6_c00001{bottom:380.190450px;}
.y2291_c00001{bottom:380.283681px;}
.y991_c00001{bottom:380.364105px;}
.ya84_c00001{bottom:380.365752px;}
.ya39_c00001{bottom:380.370693px;}
.y1844_c00001{bottom:380.638389px;}
.y1a1_c00001{bottom:380.640450px;}
.y1f3a_c00001{bottom:380.640600px;}
.y105e_c00001{bottom:380.814897px;}
.y722_c00001{bottom:380.820450px;}
.y12d0_c00001{bottom:380.904420px;}
.yb06_c00001{bottom:380.904861px;}
.y15a1_c00001{bottom:380.905077px;}
.y138b_c00001{bottom:381.171108px;}
.yc61_c00001{bottom:381.352305px;}
.yab7_c00001{bottom:381.353952px;}
.y1999_c00001{bottom:381.719046px;}
.y2344_c00001{bottom:381.723555px;}
.y10b6_c00001{bottom:381.895554px;}
.y1ec7_c00001{bottom:381.985077px;}
.y18a8_c00001{bottom:381.985734px;}
.y1d7e_c00001{bottom:382.080600px;}
.y145c_c00001{bottom:382.251765px;}
.y916_c00001{bottom:382.340505px;}
.y9ba_c00001{bottom:382.342152px;}
.ybad_c00001{bottom:382.343799px;}
.y880_c00001{bottom:382.350450px;}
.y1ea4_c00001{bottom:382.437732px;}
.y16fb_c00001{bottom:382.526922px;}
.y1a37_c00001{bottom:382.533672px;}
.y1922_c00001{bottom:382.795851px;}
.y232c_c00001{bottom:382.801818px;}
.y330_c00001{bottom:382.890450px;}
.y1000_c00001{bottom:382.975554px;}
.y1c9a_c00001{bottom:383.065734px;}
.y4cb_c00001{bottom:383.250450px;}
.y1500_c00001{bottom:383.331765px;}
.y60b_c00001{bottom:383.340450px;}
.y20f0_c00001{bottom:383.520450px;}
.y215f_c00001{bottom:383.521791px;}
.yee_c00001{bottom:383.610450px;}
.y1e35_c00001{bottom:383.790450px;}
.y1122_c00001{bottom:383.962179px;}
.yb6_c00001{bottom:383.970450px;}
.y22aa_c00001{bottom:383.973546px;}
.ye94_c00001{bottom:384.060789px;}
.ye84_c00001{bottom:384.061203px;}
.yebd_c00001{bottom:384.062484px;}
.ye20_c00001{bottom:384.063726px;}
.y12ea_c00001{bottom:384.142539px;}
.y19ea_c00001{bottom:384.146391px;}
.y193e_c00001{bottom:384.147048px;}
.y5d1_c00001{bottom:384.151359px;}
.y23fc_c00001{bottom:384.151503px;}
.ybd6_c00001{bottom:384.318552px;}
.y108f_c00001{bottom:384.866985px;}
.y21a4_c00001{bottom:384.871440px;}
.y1819_c00001{bottom:384.956508px;}
.y1a6c_c00001{bottom:384.961017px;}
.y6af_c00001{bottom:385.140450px;}
.y1ed5_c00001{bottom:385.222539px;}
.y1526_c00001{bottom:385.223196px;}
.y14ed_c00001{bottom:385.227048px;}
.y382_c00001{bottom:385.320450px;}
.y633_c00001{bottom:385.590600px;}
.y160b_c00001{bottom:385.677102px;}
.y20b3_c00001{bottom:385.681467px;}
.y1f1a_c00001{bottom:385.770288px;}
.yde4_c00001{bottom:385.773321px;}
.y732_c00001{bottom:385.860459px;}
.y273_c00001{bottom:385.860666px;}
.y1b4b_c00001{bottom:385.946985px;}
.y1950_c00001{bottom:385.947642px;}
.y8ed_c00001{bottom:386.121420px;}
.y3b7_c00001{bottom:386.130450px;}
.y256_c00001{bottom:386.220450px;}
.y1fef_c00001{bottom:386.221032px;}
.y1cfe_c00001{bottom:386.303196px;}
.y98_c00001{bottom:386.400600px;}
.y268_c00001{bottom:386.580450px;}
.y109_c00001{bottom:386.580600px;}
.y1318_c00001{bottom:386.754096px;}
.y8d_c00001{bottom:386.760600px;}
.y2117_c00001{bottom:386.851656px;}
.y1214_c00001{bottom:387.023790px;}
.y102e_c00001{bottom:387.027642px;}
.y1bba_c00001{bottom:387.028299px;}
.y1f9a_c00001{bottom:387.031404px;}
.y2063_c00001{bottom:387.032016px;}
.y1d31_c00001{bottom:387.032970px;}
.yd32_c00001{bottom:387.054498px;}
.yd5f_c00001{bottom:387.082146px;}
.y280_c00001{bottom:387.120450px;}
.y70e_c00001{bottom:387.120600px;}
.y114a_c00001{bottom:387.384510px;}
.yc31_c00001{bottom:387.472557px;}
.y42c_c00001{bottom:387.480450px;}
.y2448_c00001{bottom:387.568740px;}
.yd6_c00001{bottom:387.570450px;}
.y22e2_c00001{bottom:387.571656px;}
.y13d7_c00001{bottom:387.654393px;}
.y64a_c00001{bottom:387.660450px;}
.y2393_c00001{bottom:387.751953px;}
.y1288_c00001{bottom:387.837759px;}
.y1196_c00001{bottom:388.103790px;}
.y1476_c00001{bottom:388.104447px;}
.y340_c00001{bottom:388.200600px;}
.y1170_c00001{bottom:388.370478px;}
.y2377_c00001{bottom:388.380765px;}
.y2275_c00001{bottom:388.381809px;}
.y1442_c00001{bottom:388.465167px;}
.y13b2_c00001{bottom:388.469676px;}
.y14d_c00001{bottom:388.470450px;}
.y2131_c00001{bottom:388.471854px;}
.y241c_c00001{bottom:388.473528px;}
.y65b_c00001{bottom:388.560450px;}
.y221e_c00001{bottom:388.563708px;}
.y807_c00001{bottom:388.830450px;}
.y4d6_c00001{bottom:388.920600px;}
.y4ac_c00001{bottom:389.011359px;}
.yf6f_c00001{bottom:389.094924px;}
.yd84_c00001{bottom:389.280450px;}
.y1d58_c00001{bottom:389.283645px;}
.ya17_c00001{bottom:389.364960px;}
.y1a50_c00001{bottom:389.367345px;}
.y4ec_c00001{bottom:389.550450px;}
.y62_c00001{bottom:389.551107px;}
.y1d8_c00001{bottom:389.640450px;}
.y16a4_c00001{bottom:389.730441px;}
.y1e94_c00001{bottom:389.905041px;}
.y1b08_c00001{bottom:389.999730px;}
.y7f4_c00001{bottom:390.000450px;}
.y242c_c00001{bottom:390.003582px;}
.y1df9_c00001{bottom:390.092259px;}
.y555_c00001{bottom:390.180450px;}
.y1b81_c00001{bottom:390.265104px;}
.y190c_c00001{bottom:390.265761px;}
.yfcf_c00001{bottom:390.269613px;}
.yae5_c00001{bottom:390.354807px;}
.yc52_c00001{bottom:390.356454px;}
.y1cdd_c00001{bottom:390.448002px;}
.y22c4_c00001{bottom:390.452025px;}
.y1cc4_c00001{bottom:390.453636px;}
.y141a_c00001{bottom:390.535230px;}
.y1c43_c00001{bottom:390.718542px;}
.y415_c00001{bottom:390.720450px;}
.y225d_c00001{bottom:390.723519px;}
.y71c_c00001{bottom:390.900450px;}
.y14a3_c00001{bottom:390.985698px;}
.yf9f_c00001{bottom:390.990207px;}
.y7d2_c00001{bottom:391.080450px;}
.y1725_c00001{bottom:391.251729px;}
.y77b_c00001{bottom:391.260450px;}
.y94d_c00001{bottom:391.341360px;}
.yb8b_c00001{bottom:391.341945px;}
.yb34_c00001{bottom:391.343007px;}
.y6e3_c00001{bottom:391.350600px;}
.y23b0_c00001{bottom:391.533636px;}
.y1583_c00001{bottom:391.612449px;}
.y2084_c00001{bottom:391.710600px;}
.y2360_c00001{bottom:391.801152px;}
.y20d3_c00001{bottom:391.801818px;}
.y1f9_c00001{bottom:391.890450px;}
.y31f_c00001{bottom:391.980600px;}
.y123c_c00001{bottom:392.065698px;}
.y11b8_c00001{bottom:392.066355px;}
.y1888_c00001{bottom:392.248596px;}
.y965_c00001{bottom:392.331207px;}
.y11d5_c00001{bottom:392.332386px;}
.y192_c00001{bottom:392.340450px;}
.y23e2_c00001{bottom:392.431530px;}
.y246f_c00001{bottom:392.431584px;}
.y1b2d_c00001{bottom:392.518353px;}
.y7df_c00001{bottom:392.520450px;}
.y3ee_c00001{bottom:392.520600px;}
.y128_c00001{bottom:392.610600px;}
.ye54_c00001{bottom:392.612511px;}
.y9f2_c00001{bottom:392.874600px;}
.y1db6_c00001{bottom:392.876472px;}
.y1fbb_c00001{bottom:392.880450px;}
.y852_c00001{bottom:392.970450px;}
.y2312_c00001{bottom:392.973510px;}
.y444_c00001{bottom:393.060450px;}
.y831_c00001{bottom:393.135573px;}
.y1ef6_c00001{bottom:393.146355px;}
.y1e17_c00001{bottom:393.147012px;}
.y754_c00001{bottom:393.150450px;}
.ybf3_c00001{bottom:393.319407px;}
.y1970_c00001{bottom:393.420936px;}
.y11e_c00001{bottom:393.510972px;}
.y1ac0_c00001{bottom:393.600918px;}
.y1659_c00001{bottom:393.687840px;}
.y790_c00001{bottom:393.780450px;}
.y7a2_c00001{bottom:393.870450px;}
.y3d8_c00001{bottom:393.870600px;}
.y18f9_c00001{bottom:393.957129px;}
.yccc_c00001{bottom:393.981906px;}
.ycfd_c00001{bottom:394.013010px;}
.y164_c00001{bottom:394.140450px;}
.y11f4_c00001{bottom:394.223160px;}
.y1bce_c00001{bottom:394.227012px;}
.y2151_c00001{bottom:394.230450px;}
.y21ca_c00001{bottom:394.503564px;}
.y1aea_c00001{bottom:394.680918px;}
.y233_c00001{bottom:394.860600px;}
.y1806_c00001{bottom:394.946949px;}
.y1e8c_c00001{bottom:394.947606px;}
.y5fc_c00001{bottom:395.040600px;}
.y5b4_c00001{bottom:395.220045px;}
.yc9_c00001{bottom:395.220450px;}
.y22f4_c00001{bottom:395.221827px;}
.y12a7_c00001{bottom:395.303160px;}
.y18da_c00001{bottom:395.303817px;}
.y1344_c00001{bottom:395.307255px;}
.y617_c00001{bottom:395.310450px;}
.y183_c00001{bottom:395.490450px;}
.y1760_c00001{bottom:395.569848px;}
.y1f79_c00001{bottom:395.580450px;}
.y15e7_c00001{bottom:396.028263px;}
.y1da0_c00001{bottom:396.210504px;}
.y1c88_c00001{bottom:396.383817px;}
.y29e_c00001{bottom:396.390450px;}
.yf40_c00001{bottom:396.477354px;}
.y285_c00001{bottom:396.480450px;}
.y1b98_c00001{bottom:396.837723px;}
.y125f_c00001{bottom:397.104411px;}
.y1b5c_c00001{bottom:397.108263px;}
.y2f6_c00001{bottom:397.110450px;}
.y35f_c00001{bottom:397.290600px;}
.y457_c00001{bottom:397.380450px;}
.y21e5_c00001{bottom:397.381773px;}
.y14c5_c00001{bottom:397.465131px;}
.y2511_c00001{bottom:397.740450px;}
.y1843_c00001{bottom:397.918380px;}
.y3f8_c00001{bottom:398.010450px;}
.y105d_c00001{bottom:398.094888px;}
.y12cf_c00001{bottom:398.184411px;}
.y15a0_c00001{bottom:398.185068px;}
.y470_c00001{bottom:398.460600px;}
.y1be8_c00001{bottom:398.549640px;}
.y81c_c00001{bottom:399.000450px;}
.y2e8_c00001{bottom:399.000600px;}
.y2343_c00001{bottom:399.003546px;}
.y10b5_c00001{bottom:399.175545px;}
.y1f58_c00001{bottom:399.182169px;}
.ya61_c00001{bottom:399.355662px;}
.ya38_c00001{bottom:399.360603px;}
.y73c_c00001{bottom:399.450600px;}
.y145b_c00001{bottom:399.531756px;}
.y1ea3_c00001{bottom:399.717723px;}
.y6f4_c00001{bottom:399.720450px;}
.y1ed_c00001{bottom:399.900450px;}
.y1921_c00001{bottom:399.985662px;}
.y232b_c00001{bottom:400.081809px;}
.y764_c00001{bottom:400.170450px;}
.y6c0_c00001{bottom:400.170600px;}
.yfff_c00001{bottom:400.255545px;}
.y93d_c00001{bottom:400.342215px;}
.yc85_c00001{bottom:400.343862px;}
.y3ad_c00001{bottom:400.350450px;}
.y2c2_c00001{bottom:400.530600px;}
.y496_c00001{bottom:400.620450px;}
.y162f_c00001{bottom:400.622277px;}
.y1b4_c00001{bottom:400.800450px;}
.y215e_c00001{bottom:400.801782px;}
.y3f_c00001{bottom:400.890450px;}
.y13f8_c00001{bottom:400.893474px;}
.y1826_c00001{bottom:401.066319px;}
.y10d2_c00001{bottom:401.242170px;}
.y668_c00001{bottom:401.250450px;}
.ye83_c00001{bottom:401.251014px;}
.yebc_c00001{bottom:401.252295px;}
.ye1f_c00001{bottom:401.253537px;}
.yc13_c00001{bottom:401.330415px;}
.ybac_c00001{bottom:401.333709px;}
.y1567_c00001{bottom:401.426382px;}
.y193d_c00001{bottom:401.427039px;}
.y23fb_c00001{bottom:401.431494px;}
.y51a_c00001{bottom:401.880450px;}
.y108e_c00001{bottom:402.056796px;}
.y48d_c00001{bottom:402.060450px;}
.y1818_c00001{bottom:402.146319px;}
.y21a3_c00001{bottom:402.151431px;}
.y316_c00001{bottom:402.240600px;}
.y1a6b_c00001{bottom:402.241008px;}
.y1a11_c00001{bottom:402.241665px;}
.y1525_c00001{bottom:402.413007px;}
.y584_c00001{bottom:402.420450px;}
.y14ec_c00001{bottom:402.507039px;}
.y24ba_c00001{bottom:402.600450px;}
.y2046_c00001{bottom:402.602292px;}
.y209c_c00001{bottom:402.690450px;}
.y59b_c00001{bottom:402.690600px;}
.y1d7d_c00001{bottom:402.780600px;}
.y20b2_c00001{bottom:402.871278px;}
.y1eae_c00001{bottom:402.957093px;}
.yde3_c00001{bottom:402.963132px;}
.y21d_c00001{bottom:403.050450px;}
.y119_c00001{bottom:403.140450px;}
.y272_c00001{bottom:403.140657px;}
.yc01_c00001{bottom:403.217877px;}
.y1cee_c00001{bottom:403.226976px;}
.y194f_c00001{bottom:403.227633px;}
.y1cfd_c00001{bottom:403.493007px;}
.y1fee_c00001{bottom:403.501023px;}
.y17bb_c00001{bottom:403.589667px;}
.y1e50_c00001{bottom:403.675905px;}
.y24a5_c00001{bottom:403.680450px;}
.y203_c00001{bottom:403.680600px;}
.y3c1_c00001{bottom:403.770450px;}
.y17da_c00001{bottom:403.947570px;}
.y200a_c00001{bottom:404.040450px;}
.y210e_c00001{bottom:404.130600px;}
.y1a0_c00001{bottom:404.220450px;}
.y1f99_c00001{bottom:404.221215px;}
.y2029_c00001{bottom:404.221791px;}
.y2062_c00001{bottom:404.221827px;}
.y1213_c00001{bottom:404.303781px;}
.y1bb9_c00001{bottom:404.308290px;}
.yb52_c00001{bottom:404.399745px;}
.y1e34_c00001{bottom:404.490450px;}
.y1287_c00001{bottom:405.027570px;}
.y2392_c00001{bottom:405.031944px;}
.y1195_c00001{bottom:405.383781px;}
.y1475_c00001{bottom:405.384438px;}
.y116f_c00001{bottom:405.650469px;}
.y500_c00001{bottom:405.660450px;}
.y2130_c00001{bottom:405.751845px;}
.y221d_c00001{bottom:405.753519px;}
.ydad_c00001{bottom:405.840450px;}
.y5d0_c00001{bottom:405.840702px;}
.y87f_c00001{bottom:405.930450px;}
.y1863_c00001{bottom:406.020450px;}
.y1c14_c00001{bottom:406.106976px;}
.yf6e_c00001{bottom:406.284735px;}
.y16d1_c00001{bottom:406.466598px;}
.y32f_c00001{bottom:406.470450px;}
.y1d57_c00001{bottom:406.473456px;}
.y1a4f_c00001{bottom:406.557156px;}
.y1fce_c00001{bottom:406.740450px;}
.yd31_c00001{bottom:406.853922px;}
.yd5e_c00001{bottom:406.881570px;}
.y4ca_c00001{bottom:406.920450px;}
.y16a3_c00001{bottom:407.010432px;}
.y1e93_c00001{bottom:407.185032px;}
.y1b07_c00001{bottom:407.189541px;}
.y242b_c00001{bottom:407.283573px;}
.ya9d_c00001{bottom:407.368317px;}
.y1c29_c00001{bottom:407.454915px;}
.yfce_c00001{bottom:407.459424px;}
.y1b80_c00001{bottom:407.545095px;}
.y190b_c00001{bottom:407.545752px;}
.y694_c00001{bottom:407.640450px;}
.y22c3_c00001{bottom:407.732016px;}
.y1cc3_c00001{bottom:407.733627px;}
.yb1c_c00001{bottom:407.995824px;}
.y1ba9_c00001{bottom:408.265689px;}
.yf9e_c00001{bottom:408.270198px;}
.y990_c00001{bottom:408.354870px;}
.ya83_c00001{bottom:408.356517px;}
.y138a_c00001{bottom:408.531720px;}
.y6ae_c00001{bottom:408.720450px;}
.y1a36_c00001{bottom:408.723447px;}
.yeea_c00001{bottom:408.810450px;}
.yb05_c00001{bottom:408.895626px;}
.y381_c00001{bottom:408.900450px;}
.y1998_c00001{bottom:409.079658px;}
.y20d2_c00001{bottom:409.081809px;}
.y39b_c00001{bottom:409.170450px;}
.y632_c00001{bottom:409.260600px;}
.yab6_c00001{bottom:409.344717px;}
.y123b_c00001{bottom:409.345689px;}
.y11b7_c00001{bottom:409.346346px;}
.yc51_c00001{bottom:409.346364px;}
.y24e5_c00001{bottom:409.440450px;}
.y1c70_c00001{bottom:409.528587px;}
.y5e3_c00001{bottom:409.530702px;}
.y11d4_c00001{bottom:409.612377px;}
.y23e1_c00001{bottom:409.621341px;}
.y20ef_c00001{bottom:409.801404px;}
.y16fa_c00001{bottom:409.887534px;}
.y127_c00001{bottom:409.890450px;}
.ye53_c00001{bottom:409.892502px;}
.y1eed_c00001{bottom:410.066283px;}
.y22a9_c00001{bottom:410.253501px;}
.y915_c00001{bottom:410.331270px;}
.yb8a_c00001{bottom:410.331855px;}
.y9b9_c00001{bottom:410.332917px;}
.y1f39_c00001{bottom:410.340600px;}
.y1ef5_c00001{bottom:410.426346px;}
.y8c_c00001{bottom:410.430600px;}
.y196f_c00001{bottom:410.610747px;}
.y14ff_c00001{bottom:410.692377px;}
.y27f_c00001{bottom:410.700450px;}
.y70d_c00001{bottom:410.700600px;}
.y4ab_c00001{bottom:410.700702px;}
.y1abf_c00001{bottom:410.880909px;}
.y1658_c00001{bottom:410.967831px;}
.y42b_c00001{bottom:411.060450px;}
.y18f8_c00001{bottom:411.146940px;}
.y61_c00001{bottom:411.240450px;}
.y649_c00001{bottom:411.330450px;}
.y11f3_c00001{bottom:411.412971px;}
.y1bcd_c00001{bottom:411.507003px;}
.y628_c00001{bottom:411.600450px;}
.y9f1_c00001{bottom:411.773925px;}
.y223c_c00001{bottom:411.783555px;}
.y33f_c00001{bottom:411.870600px;}
.y3b6_c00001{bottom:411.960600px;}
.y1ae9_c00001{bottom:411.960909px;}
.y1f19_c00001{bottom:412.050243px;}
.y14c_c00001{bottom:412.140450px;}
.ybd5_c00001{bottom:412.218732px;}
.y1805_c00001{bottom:412.226940px;}
.y12a6_c00001{bottom:412.492971px;}
.y1730_c00001{bottom:412.493628px;}
.y806_c00001{bottom:412.500450px;}
.y22f3_c00001{bottom:412.501818px;}
.y1343_c00001{bottom:412.587246px;}
.y19c6_c00001{bottom:412.587660px;}
.y1795_c00001{bottom:412.759659px;}
.y24f5_c00001{bottom:412.770450px;}
.y160a_c00001{bottom:412.947534px;}
.y1317_c00001{bottom:413.034051px;}
.y1d7_c00001{bottom:413.220450px;}
.y2116_c00001{bottom:413.221791px;}
.y1d30_c00001{bottom:413.222745px;}
.y1b4a_c00001{bottom:413.307597px;}
.y15e6_c00001{bottom:413.308254px;}
.y721_c00001{bottom:413.490450px;}
.y1d9f_c00001{bottom:413.490495px;}
.y7f3_c00001{bottom:413.670450px;}
.yf3f_c00001{bottom:413.757345px;}
.y554_c00001{bottom:413.760450px;}
.yccb_c00001{bottom:413.781330px;}
.ycfc_c00001{bottom:413.812434px;}
.yca0_c00001{bottom:413.837607px;}
.y22e1_c00001{bottom:413.851611px;}
.y8ec_c00001{bottom:414.112185px;}
.yd83_c00001{bottom:414.210450px;}
.y102d_c00001{bottom:414.298074px;}
.y154b_c00001{bottom:414.384402px;}
.y1b5b_c00001{bottom:414.388254px;}
.y414_c00001{bottom:414.390450px;}
.y71b_c00001{bottom:414.570450px;}
.y2376_c00001{bottom:414.570540px;}
.y21e4_c00001{bottom:414.571584px;}
.y1149_c00001{bottom:414.654942px;}
.y13b1_c00001{bottom:414.749631px;}
.y7d1_c00001{bottom:414.750450px;}
.y2447_c00001{bottom:414.929352px;}
.y77a_c00001{bottom:414.930450px;}
.y13d6_c00001{bottom:415.015005px;}
.y6e2_c00001{bottom:415.020600px;}
.y1842_c00001{bottom:415.108191px;}
.y105c_c00001{bottom:415.284699px;}
.yc30_c00001{bottom:415.463322px;}
.y1514_c00001{bottom:415.464402px;}
.y159f_c00001{bottom:415.465059px;}
.y1f8_c00001{bottom:415.470450px;}
.y31e_c00001{bottom:415.560600px;}
.y1441_c00001{bottom:415.735599px;}
.y1be7_c00001{bottom:415.829631px;}
.yb5_c00001{bottom:416.012925px;}
.y7de_c00001{bottom:416.100450px;}
.y3ed_c00001{bottom:416.100600px;}
.yed_c00001{bottom:416.280450px;}
.y2342_c00001{bottom:416.283537px;}
.y1df8_c00001{bottom:416.372214px;}
.y10f9_c00001{bottom:416.455536px;}
.y1f07_c00001{bottom:416.545716px;}
.y851_c00001{bottom:416.640450px;}
.y443_c00001{bottom:416.730450px;}
.y145a_c00001{bottom:416.811747px;}
.y5b3_c00001{bottom:416.820450px;}
.y1ea2_c00001{bottom:416.907534px;}
.y1c42_c00001{bottom:416.998497px;}
.y225c_c00001{bottom:417.003474px;}
.y1681_c00001{bottom:417.090450px;}
.y1ca3_c00001{bottom:417.265653px;}
.ya16_c00001{bottom:417.355725px;}
.y78f_c00001{bottom:417.450450px;}
.y3d7_c00001{bottom:417.450600px;}
.y1cdc_c00001{bottom:417.718434px;}
.y163_c00001{bottom:417.720450px;}
.y1419_c00001{bottom:417.895842px;}
.y235f_c00001{bottom:418.081107px;}
.y215d_c00001{bottom:418.081773px;}
.ya60_c00001{bottom:418.345572px;}
.y14a2_c00001{bottom:418.346310px;}
.yc6b_c00001{bottom:418.347219px;}
.y1121_c00001{bottom:418.522161px;}
.ye82_c00001{bottom:418.531005px;}
.yebb_c00001{bottom:418.532286px;}
.ye1e_c00001{bottom:418.533528px;}
.y1724_c00001{bottom:418.612341px;}
.y1566_c00001{bottom:418.616193px;}
.y23fa_c00001{bottom:418.621305px;}
.y246e_c00001{bottom:418.711539px;}
.y11d_c00001{bottom:418.800450px;}
.yc8_c00001{bottom:418.890450px;}
.y1582_c00001{bottom:418.973061px;}
.y182_c00001{bottom:419.070450px;}
.y97_c00001{bottom:419.070600px;}
.y2311_c00001{bottom:419.253465px;}
.y93c_c00001{bottom:419.332125px;}
.yc84_c00001{bottom:419.333772px;}
.y108d_c00001{bottom:419.336787px;}
.y1a6a_c00001{bottom:419.430819px;}
.y1887_c00001{bottom:419.609208px;}
.y1524_c00001{bottom:419.692998px;}
.y14eb_c00001{bottom:419.696850px;}
.y1b2c_c00001{bottom:419.878965px;}
.y29d_c00001{bottom:420.060450px;}
.y1db5_c00001{bottom:420.146904px;}
.y20b1_c00001{bottom:420.151269px;}
.yde2_c00001{bottom:420.243123px;}
.yc12_c00001{bottom:420.320325px;}
.y964_c00001{bottom:420.321972px;}
.ybab_c00001{bottom:420.323619px;}
.y271_c00001{bottom:420.420648px;}
.y1ced_c00001{bottom:420.506967px;}
.y1e16_c00001{bottom:420.507624px;}
.y2f5_c00001{bottom:420.690450px;}
.y17ba_c00001{bottom:420.779478px;}
.y1fed_c00001{bottom:420.781014px;}
.y21c9_c00001{bottom:420.783519px;}
.y1e4f_c00001{bottom:420.955896px;}
.y456_c00001{bottom:420.960450px;}
.y267_c00001{bottom:421.050450px;}
.ybf2_c00001{bottom:421.219587px;}
.y17d9_c00001{bottom:421.227561px;}
.y2510_c00001{bottom:421.410450px;}
.y2083_c00001{bottom:421.410600px;}
.y1376_c00001{bottom:421.493592px;}
.y4d5_c00001{bottom:421.500600px;}
.y1f98_c00001{bottom:421.501206px;}
.y2028_c00001{bottom:421.501782px;}
.y3f7_c00001{bottom:421.680450px;}
.y46f_c00001{bottom:422.040600px;}
.y4eb_c00001{bottom:422.220450px;}
.y2391_c00001{bottom:422.221755px;}
.y1286_c00001{bottom:422.307561px;}
.y1e8b_c00001{bottom:422.308218px;}
.y1474_c00001{bottom:422.574249px;}
.y1fba_c00001{bottom:422.580450px;}
.y175f_c00001{bottom:422.840280px;}
.y212f_c00001{bottom:423.031836px;}
.y221c_c00001{bottom:423.033510px;}
.y73b_c00001{bottom:423.120600px;}
.y6f3_c00001{bottom:423.390450px;}
.y1d7c_c00001{bottom:423.480600px;}
.yf6d_c00001{bottom:423.564726px;}
.y1c87_c00001{bottom:423.654249px;}
.y1d56_c00001{bottom:423.753447px;}
.y1a4e_c00001{bottom:423.837147px;}
.y6bf_c00001{bottom:423.840600px;}
.y3ac_c00001{bottom:423.930450px;}
.y1b97_c00001{bottom:424.108155px;}
.y495_c00001{bottom:424.200450px;}
.y2c1_c00001{bottom:424.200600px;}
.y16a2_c00001{bottom:424.290423px;}
.y1b3_c00001{bottom:424.380450px;}
.y125e_c00001{bottom:424.465023px;}
.y1b06_c00001{bottom:424.469532px;}
.y3e_c00001{bottom:424.470450px;}
.y242a_c00001{bottom:424.473384px;}
.y1b7f_c00001{bottom:424.734906px;}
.y14c4_c00001{bottom:424.735563px;}
.yfcd_c00001{bottom:424.739415px;}
.y667_c00001{bottom:424.920450px;}
.y1cc2_c00001{bottom:424.923438px;}
.y191_c00001{bottom:425.010450px;}
.y1e33_c00001{bottom:425.190450px;}
.y1f78_c00001{bottom:425.280450px;}
.y10b4_c00001{bottom:425.365320px;}
.y1f57_c00001{bottom:425.371944px;}
.y12ce_c00001{bottom:425.454843px;}
.y48c_c00001{bottom:425.730450px;}
.y1389_c00001{bottom:425.811711px;}
.y315_c00001{bottom:425.910600px;}
.y23af_c00001{bottom:426.003438px;}
.y24b9_c00001{bottom:426.180450px;}
.y1997_c00001{bottom:426.269469px;}
.y232a_c00001{bottom:426.271584px;}
.y20d1_c00001{bottom:426.271620px;}
.ya9c_c00001{bottom:426.358227px;}
.y232_c00001{bottom:426.360600px;}
.y123a_c00001{bottom:426.535500px;}
.y1363_c00001{bottom:426.536157px;}
.y7a1_c00001{bottom:426.540450px;}
.y1e0a_c00001{bottom:426.718398px;}
.y21c_c00001{bottom:426.720450px;}
.yd30_c00001{bottom:426.743202px;}
.yd5d_c00001{bottom:426.770850px;}
.y162e_c00001{bottom:426.812052px;}
.y11d3_c00001{bottom:426.892368px;}
.y23e0_c00001{bottom:426.901332px;}
.y20ee_c00001{bottom:427.081395px;}
.y126_c00001{bottom:427.170450px;}
.ye52_c00001{bottom:427.172493px;}
.y13f7_c00001{bottom:427.173429px;}
.yc91_c00001{bottom:427.254195px;}
.yb97_c00001{bottom:427.344780px;}
.y1920_c00001{bottom:427.346274px;}
.ya82_c00001{bottom:427.346427px;}
.ya37_c00001{bottom:427.349721px;}
.y24a4_c00001{bottom:427.350450px;}
.yf16_c00001{bottom:427.440450px;}
.y5cf_c00001{bottom:427.530045px;}
.yffe_c00001{bottom:427.616157px;}
.y193c_c00001{bottom:427.616814px;}
.y5fb_c00001{bottom:427.710600px;}
.y19f_c00001{bottom:427.890450px;}
.y196e_c00001{bottom:427.890738px;}
.y1657_c00001{bottom:428.157642px;}
.y108_c00001{bottom:428.160450px;}
.y1abe_c00001{bottom:428.160900px;}
.yc60_c00001{bottom:428.332980px;}
.yab5_c00001{bottom:428.334627px;}
.y1d10_c00001{bottom:428.426931px;}
.y21a2_c00001{bottom:428.431386px;}
.y10d1_c00001{bottom:428.602782px;}
.y11f2_c00001{bottom:428.692962px;}
.y1e76_c00001{bottom:428.696814px;}
.y67c_c00001{bottom:428.880450px;}
.yee9_c00001{bottom:428.881278px;}
.y2045_c00001{bottom:428.882247px;}
.y223b_c00001{bottom:428.973366px;}
.y1ae8_c00001{bottom:429.240900px;}
.y914_c00001{bottom:429.321180px;}
.y9b8_c00001{bottom:429.322827px;}
.y4ff_c00001{bottom:429.330450px;}
.y1804_c00001{bottom:429.506931px;}
.y194e_c00001{bottom:429.507588px;}
.y1a10_c00001{bottom:429.512097px;}
.y87e_c00001{bottom:429.600450px;}
.y12a5_c00001{bottom:429.772962px;}
.y1342_c00001{bottom:429.777057px;}
.y22f2_c00001{bottom:429.781809px;}
.y24e4_c00001{bottom:429.960450px;}
.y35e_c00001{bottom:429.960600px;}
.y1794_c00001{bottom:430.039650px;}
.y32e_c00001{bottom:430.140450px;}
.y1609_c00001{bottom:430.227525px;}
.y2061_c00001{bottom:430.501782px;}
.y1d2f_c00001{bottom:430.502736px;}
.y1b49_c00001{bottom:430.587588px;}
.y15e5_c00001{bottom:430.588245px;}
.y4c9_c00001{bottom:430.590450px;}
.y1d9e_c00001{bottom:430.680306px;}
.ydac_c00001{bottom:430.770450px;}
.yf3e_c00001{bottom:430.947156px;}
.ybd4_c00001{bottom:431.208642px;}
.y5e2_c00001{bottom:431.220045px;}
.y693_c00001{bottom:431.220450px;}
.y1212_c00001{bottom:431.574213px;}
.y1b5a_c00001{bottom:431.668245px;}
.y81b_c00001{bottom:431.670450px;}
.y2274_c00001{bottom:431.851575px;}
.y1148_c00001{bottom:431.934933px;}
.y13b0_c00001{bottom:431.939442px;}
.y4aa_c00001{bottom:432.301107px;}
.y1841_c00001{bottom:432.388182px;}
.y6ad_c00001{bottom:432.390450px;}
.yb51_c00001{bottom:432.390510px;}
.y105b_c00001{bottom:432.564690px;}
.y1ec_c00001{bottom:432.570450px;}
.y1194_c00001{bottom:432.654213px;}
.y16d0_c00001{bottom:432.746553px;}
.y39a_c00001{bottom:432.750450px;}
.y2290_c00001{bottom:432.753411px;}
.y763_c00001{bottom:432.840450px;}
.y631_c00001{bottom:432.840600px;}
.y116e_c00001{bottom:432.920901px;}
.y8c6_c00001{bottom:433.290450px;}
.y1c13_c00001{bottom:433.467588px;}
.y2e2_c00001{bottom:433.470450px;}
.y2341_c00001{bottom:433.473348px;}
.ycca_c00001{bottom:433.580754px;}
.ycfb_c00001{bottom:433.611858px;}
.y1f06_c00001{bottom:433.735527px;}
.y2009_c00001{bottom:433.740450px;}
.y210d_c00001{bottom:433.830600px;}
.y22c2_c00001{bottom:433.921791px;}
.y1ea1_c00001{bottom:434.187525px;}
.y1c41_c00001{bottom:434.278488px;}
.y225b_c00001{bottom:434.283465px;}
.yc2f_c00001{bottom:434.362647px;}
.y70c_c00001{bottom:434.370600px;}
.yf9d_c00001{bottom:434.459973px;}
.y1ca2_c00001{bottom:434.545644px;}
.y519_c00001{bottom:434.550450px;}
.y42a_c00001{bottom:434.730450px;}
.y1c28_c00001{bottom:434.815527px;}
.y648_c00001{bottom:434.910450px;}
.y1cdb_c00001{bottom:434.998425px;}
.y1a35_c00001{bottom:435.003402px;}
.y583_c00001{bottom:435.090450px;}
.y1418_c00001{bottom:435.175833px;}
.y202_c00001{bottom:435.180144px;}
.y235e_c00001{bottom:435.270918px;}
.y215c_c00001{bottom:435.271584px;}
.y1ba8_c00001{bottom:435.536121px;}
.y33e_c00001{bottom:435.540450px;}
.y1120_c00001{bottom:435.711972px;}
.y1862_c00001{bottom:435.720450px;}
.ye81_c00001{bottom:435.720816px;}
.yeba_c00001{bottom:435.722097px;}
.ye1d_c00001{bottom:435.723339px;}
.y118_c00001{bottom:435.810450px;}
.y15be_c00001{bottom:435.892332px;}
.y19e9_c00001{bottom:435.896184px;}
.y23f9_c00001{bottom:435.901296px;}
.y246d_c00001{bottom:435.991530px;}
.y805_c00001{bottom:436.080450px;}
.y98f_c00001{bottom:436.345635px;}
.y24f4_c00001{bottom:436.440450px;}
.y22a8_c00001{bottom:436.533456px;}
.y1c99_c00001{bottom:436.616121px;}
.y108c_c00001{bottom:436.616778px;}
.yb04_c00001{bottom:436.795806px;}
.y1c6f_c00001{bottom:436.799019px;}
.y1d6_c00001{bottom:436.890450px;}
.y1523_c00001{bottom:436.972989px;}
.y14ea_c00001{bottom:436.976841px;}
.y1b2b_c00001{bottom:437.068776px;}
.y16f9_c00001{bottom:437.157966px;}
.y1fcd_c00001{bottom:437.160600px;}
.y7f2_c00001{bottom:437.250450px;}
.yae4_c00001{bottom:437.335482px;}
.yc50_c00001{bottom:437.337129px;}
.y1eec_c00001{bottom:437.426895px;}
.y553_c00001{bottom:437.430450px;}
.y20b0_c00001{bottom:437.431260px;}
.yde1_c00001{bottom:437.523114px;}
.y125_c00001{bottom:437.610459px;}
.y1bcc_c00001{bottom:437.696778px;}
.yb4_c00001{bottom:437.702268px;}
.yd82_c00001{bottom:437.790450px;}
.y21e3_c00001{bottom:437.881611px;}
.y1fec_c00001{bottom:437.970825px;}
.y14fe_c00001{bottom:438.052989px;}
.y17b9_c00001{bottom:438.059469px;}
.y413_c00001{bottom:438.060450px;}
.y1e4e_c00001{bottom:438.145707px;}
.y71a_c00001{bottom:438.240450px;}
.y9c3_c00001{bottom:438.322035px;}
.yb89_c00001{bottom:438.322620px;}
.yb33_c00001{bottom:438.323682px;}
.y1f18_c00001{bottom:438.330198px;}
.y7d0_c00001{bottom:438.420450px;}
.y17d8_c00001{bottom:438.507552px;}
.y779_c00001{bottom:438.510450px;}
.y6e1_c00001{bottom:438.600600px;}
.y1375_c00001{bottom:438.773583px;}
.y2027_c00001{bottom:438.781773px;}
.y1f7_c00001{bottom:439.140450px;}
.y1316_c00001{bottom:439.223826px;}
.y2390_c00001{bottom:439.501746px;}
.y1285_c00001{bottom:439.587552px;}
.y1e8a_c00001{bottom:439.588209px;}
.y60a_c00001{bottom:439.590450px;}
.y9f0_c00001{bottom:439.764690px;}
.y7dd_c00001{bottom:439.770450px;}
.y3ec_c00001{bottom:439.770600px;}
.y1473_c00001{bottom:439.854240px;}
.y19c5_c00001{bottom:439.858092px;}
.y1f38_c00001{bottom:440.040600px;}
.y175e_c00001{bottom:440.120271px;}
.y22e0_c00001{bottom:440.131566px;}
.y850_c00001{bottom:440.220450px;}
.y212e_c00001{bottom:440.221647px;}
.y221b_c00001{bottom:440.223321px;}
.y442_c00001{bottom:440.310450px;}
.y753_c00001{bottom:440.400450px;}
.yf6c_c00001{bottom:440.844717px;}
.y2375_c00001{bottom:440.850495px;}
.y1c86_c00001{bottom:440.934240px;}
.y78e_c00001{bottom:441.030450px;}
.y1a4d_c00001{bottom:441.117138px;}
.y830_c00001{bottom:441.377607px;}
.y1b96_c00001{bottom:441.388146px;}
.y162_c00001{bottom:441.390450px;}
.y16a1_c00001{bottom:441.480234px;}
.y125d_c00001{bottom:441.654834px;}
.y102c_c00001{bottom:441.658686px;}
.y1b05_c00001{bottom:441.749523px;}
.y2429_c00001{bottom:441.753375px;}
.y8b_c00001{bottom:441.840600px;}
.y1b7e_c00001{bottom:442.014897px;}
.y1543_c00001{bottom:442.015554px;}
.yfcc_c00001{bottom:442.019406px;}
.y8eb_c00001{bottom:442.102950px;}
.y1cc1_c00001{bottom:442.203429px;}
.y13d5_c00001{bottom:442.285437px;}
.y2446_c00001{bottom:442.289964px;}
.y60_c00001{bottom:442.470450px;}
.y616_c00001{bottom:442.560450px;}
.y1df7_c00001{bottom:442.561989px;}
.y10b3_c00001{bottom:442.645311px;}
.y159e_c00001{bottom:442.735491px;}
.y181_c00001{bottom:442.740450px;}
.y1388_c00001{bottom:443.001522px;}
.y1440_c00001{bottom:443.096211px;}
.y23ae_c00001{bottom:443.283429px;}
.y1996_c00001{bottom:443.549460px;}
.y2329_c00001{bottom:443.551575px;}
.y20d0_c00001{bottom:443.551611px;}
.y627_c00001{bottom:443.552925px;}
.y29c_c00001{bottom:443.640450px;}
.y10f8_c00001{bottom:443.725968px;}
.y1301_c00001{bottom:443.815491px;}
.y1362_c00001{bottom:443.816148px;}
.y1e09_c00001{bottom:443.998389px;}
.y1459_c00001{bottom:444.082179px;}
.y1d7b_c00001{bottom:444.180600px;}
.y20ed_c00001{bottom:444.271206px;}
.y2f4_c00001{bottom:444.360450px;}
.ye51_c00001{bottom:444.362304px;}
.y191f_c00001{bottom:444.536085px;}
.y266_c00001{bottom:444.630450px;}
.y14b_c00001{bottom:444.810450px;}
.y193b_c00001{bottom:444.896805px;}
.y720_c00001{bottom:444.990450px;}
.y4d4_c00001{bottom:445.170600px;}
.y3f6_c00001{bottom:445.260450px;}
.y1abd_c00001{bottom:445.350711px;}
.y1656_c00001{bottom:445.437633px;}
.y2310_c00001{bottom:445.533420px;}
.y14a1_c00001{bottom:445.616742px;}
.y21a1_c00001{bottom:445.621197px;}
.y1a69_c00001{bottom:445.710774px;}
.y4ea_c00001{bottom:445.800450px;}
.y1e32_c00001{bottom:445.890450px;}
.y1717_c00001{bottom:445.972953px;}
.y1565_c00001{bottom:445.976805px;}
.yf15_c00001{bottom:446.070864px;}
.yee8_c00001{bottom:446.071089px;}
.y1581_c00001{bottom:446.243493px;}
.y223a_c00001{bottom:446.253357px;}
.yc5d_c00001{bottom:446.334690px;}
.ya5f_c00001{bottom:446.336337px;}
.ya36_c00001{bottom:446.339631px;}
.y2d8_c00001{bottom:446.340450px;}
.y1ae7_c00001{bottom:446.430711px;}
.yd2f_c00001{bottom:446.542626px;}
.yd5c_c00001{bottom:446.570274px;}
.y1817_c00001{bottom:446.696742px;}
.y194d_c00001{bottom:446.697399px;}
.y1a0f_c00001{bottom:446.792088px;}
.y1886_c00001{bottom:446.879640px;}
.y22f1_c00001{bottom:446.971620px;}
.y21c8_c00001{bottom:446.973294px;}
.y12a4_c00001{bottom:447.052953px;}
.y1341_c00001{bottom:447.057048px;}
.y6f2_c00001{bottom:447.060450px;}
.y93b_c00001{bottom:447.322890px;}
.y6be_c00001{bottom:447.420600px;}
.y1608_c00001{bottom:447.507516px;}
.y3ab_c00001{bottom:447.600450px;}
.y96_c00001{bottom:447.690600px;}
.y1b48_c00001{bottom:447.777399px;}
.y1bb8_c00001{bottom:447.778056px;}
.yec_c00001{bottom:447.780600px;}
.y1f97_c00001{bottom:447.781161px;}
.y2060_c00001{bottom:447.781773px;}
.y1d2e_c00001{bottom:447.782727px;}
.y1d9d_c00001{bottom:447.960297px;}
.y1b2_c00001{bottom:448.050450px;}
.y3d_c00001{bottom:448.140450px;}
.yc11_c00001{bottom:448.220505px;}
.y963_c00001{bottom:448.222152px;}
.ybaa_c00001{bottom:448.223799px;}
.yf3d_c00001{bottom:448.227147px;}
.y31d_c00001{bottom:448.230600px;}
.y666_c00001{bottom:448.500450px;}
.y154a_c00001{bottom:448.854204px;}
.y1b59_c00001{bottom:448.858056px;}
.y254_c00001{bottom:448.950450px;}
.y5ce_c00001{bottom:449.130450px;}
.y2273_c00001{bottom:449.131566px;}
.ybf1_c00001{bottom:449.210352px;}
.y1147_c00001{bottom:449.214924px;}
.y13af_c00001{bottom:449.219433px;}
.y48b_c00001{bottom:449.310450px;}
.y314_c00001{bottom:449.490600px;}
.y1840_c00001{bottom:449.668173px;}
.y24b8_c00001{bottom:449.850450px;}
.y170d_c00001{bottom:449.934204px;}
.y1489_c00001{bottom:449.934861px;}
.y35d_c00001{bottom:449.940600px;}
.y1d55_c00001{bottom:450.033402px;}
.y7a0_c00001{bottom:450.120450px;}
.y3d6_c00001{bottom:450.120600px;}
.y21b_c00001{bottom:450.300450px;}
.y7b5_c00001{bottom:450.390450px;}
.y2082_c00001{bottom:450.481845px;}
.y2340_c00001{bottom:450.753339px;}
.y24a3_c00001{bottom:450.930450px;}
.y14c3_c00001{bottom:451.015518px;}
.y2531_c00001{bottom:451.110450px;}
.y22c1_c00001{bottom:451.201782px;}
.yb50_c00001{bottom:451.289835px;}
.y1ea0_c00001{bottom:451.467516px;}
.y1c40_c00001{bottom:451.468299px;}
.yc7_c00001{bottom:451.470450px;}
.y225a_c00001{bottom:451.473276px;}
.y1f56_c00001{bottom:451.651899px;}
.y1b6c_c00001{bottom:451.735455px;}
.yf9c_c00001{bottom:451.739964px;}
.y107_c00001{bottom:451.830450px;}
.y1c27_c00001{bottom:452.095518px;}
.y231_c00001{bottom:452.190600px;}
.y1cda_c00001{bottom:452.278416px;}
.y1fb9_c00001{bottom:452.280450px;}
.y726_c00001{bottom:452.460600px;}
.y235d_c00001{bottom:452.550909px;}
.y215b_c00001{bottom:452.551575px;}
.y12cd_c00001{bottom:452.815455px;}
.y1ba7_c00001{bottom:452.816112px;}
.y5e1_c00001{bottom:452.820450px;}
.y4fe_c00001{bottom:452.910450px;}
.y111f_c00001{bottom:452.991963px;}
.ye80_c00001{bottom:453.000807px;}
.yeb9_c00001{bottom:453.002088px;}
.ye1c_c00001{bottom:453.003330px;}
.y15bd_c00001{bottom:453.082143px;}
.y162d_c00001{bottom:453.092007px;}
.y19e8_c00001{bottom:453.176175px;}
.y87d_c00001{bottom:453.180450px;}
.y23df_c00001{bottom:453.181287px;}
.y246c_c00001{bottom:453.181341px;}
.y13f6_c00001{bottom:453.453384px;}
.ycc9_c00001{bottom:453.470034px;}
.ycfa_c00001{bottom:453.501138px;}
.y455_c00001{bottom:453.630450px;}
.y108b_c00001{bottom:453.806589px;}
.y1239_c00001{bottom:453.896112px;}
.y18a7_c00001{bottom:453.896769px;}
.y4a9_c00001{bottom:453.990450px;}
.y1c6e_c00001{bottom:454.079010px;}
.y11d2_c00001{bottom:454.162800px;}
.y4c8_c00001{bottom:454.170450px;}
.y1b2a_c00001{bottom:454.348767px;}
.ya9b_c00001{bottom:454.348992px;}
.y16f8_c00001{bottom:454.437957px;}
.ydab_c00001{bottom:454.440450px;}
.y1eeb_c00001{bottom:454.616706px;}
.y20af_c00001{bottom:454.621071px;}
.y46e_c00001{bottom:454.710600px;}
.yde0_c00001{bottom:454.712925px;}
.yffd_c00001{bottom:454.886589px;}
.y692_c00001{bottom:454.890450px;}
.y1bcb_c00001{bottom:454.976769px;}
.y1f77_c00001{bottom:454.980450px;}
.y21e2_c00001{bottom:455.071422px;}
.y2044_c00001{bottom:455.072022px;}
.y196d_c00001{bottom:455.161170px;}
.y81a_c00001{bottom:455.250450px;}
.y1feb_c00001{bottom:455.250816px;}
.y98e_c00001{bottom:455.335545px;}
.yad0_c00001{bottom:455.337192px;}
.y17b8_c00001{bottom:455.339460px;}
.y1e4d_c00001{bottom:455.425698px;}
.y1803_c00001{bottom:455.696706px;}
.y17d7_c00001{bottom:455.697363px;}
.y73a_c00001{bottom:455.790600px;}
.y10d0_c00001{bottom:455.873214px;}
.y2026_c00001{bottom:455.971584px;}
.y11f1_c00001{bottom:456.053574px;}
.y380_c00001{bottom:456.240450px;}
.yab4_c00001{bottom:456.323745px;}
.yae3_c00001{bottom:456.325392px;}
.y399_c00001{bottom:456.420450px;}
.y762_c00001{bottom:456.510450px;}
.y630_c00001{bottom:456.510600px;}
.y1284_c00001{bottom:456.777363px;}
.y1e89_c00001{bottom:456.778020px;}
.y238f_c00001{bottom:456.781737px;}
.y494_c00001{bottom:456.870450px;}
.y1472_c00001{bottom:457.134231px;}
.y19c4_c00001{bottom:457.138083px;}
.y2e1_c00001{bottom:457.140450px;}
.y913_c00001{bottom:457.221360px;}
.y9b7_c00001{bottom:457.223007px;}
.y22df_c00001{bottom:457.321377px;}
.y1793_c00001{bottom:457.400262px;}
.y212d_c00001{bottom:457.501638px;}
.y15e4_c00001{bottom:457.858677px;}
.yf6b_c00001{bottom:458.034528px;}
.y1c85_c00001{bottom:458.124051px;}
.y1a4c_c00001{bottom:458.306949px;}
.y429_c00001{bottom:458.310450px;}
.y1680_c00001{bottom:458.490450px;}
.y647_c00001{bottom:458.580450px;}
.y1b95_c00001{bottom:458.668137px;}
.y582_c00001{bottom:458.670450px;}
.y9ef_c00001{bottom:458.754600px;}
.y24d3_c00001{bottom:458.850450px;}
.y1211_c00001{bottom:458.934825px;}
.y16cf_c00001{bottom:458.936328px;}
.y1b04_c00001{bottom:458.939334px;}
.y59a_c00001{bottom:458.940600px;}
.y228f_c00001{bottom:459.033366px;}
.y33d_c00001{bottom:459.120450px;}
.ybd3_c00001{bottom:459.199407px;}
.y190a_c00001{bottom:459.205365px;}
.y1be6_c00001{bottom:459.299397px;}
.yb3_c00001{bottom:459.302673px;}
.y1cc0_c00001{bottom:459.393240px;}
.y2445_c00001{bottom:459.479775px;}
.y13d4_c00001{bottom:459.565428px;}
.y5fa_c00001{bottom:459.662673px;}
.y804_c00001{bottom:459.750450px;}
.y105a_c00001{bottom:459.925302px;}
.y1193_c00001{bottom:460.014825px;}
.y24f3_c00001{bottom:460.110450px;}
.y116d_c00001{bottom:460.281513px;}
.y1d5_c00001{bottom:460.470450px;}
.y23ad_c00001{bottom:460.473240px;}
.y1c12_c00001{bottom:460.738020px;}
.y1995_c00001{bottom:460.829451px;}
.y2328_c00001{bottom:460.831566px;}
.y20cf_c00001{bottom:460.831602px;}
.y7f1_c00001{bottom:460.920450px;}
.y10f7_c00001{bottom:461.005959px;}
.y552_c00001{bottom:461.010450px;}
.y1bfe_c00001{bottom:461.095482px;}
.y1361_c00001{bottom:461.096139px;}
.y1e08_c00001{bottom:461.278380px;}
.y1a34_c00001{bottom:461.283357px;}
.y1417_c00001{bottom:461.365608px;}
.yd81_c00001{bottom:461.460450px;}
.y20ec_c00001{bottom:461.551197px;}
.y124_c00001{bottom:461.640450px;}
.ye50_c00001{bottom:461.642295px;}
.y67b_c00001{bottom:461.730450px;}
.y719_c00001{bottom:461.820450px;}
.y7cf_c00001{bottom:462.000450px;}
.yc9f_c00001{bottom:462.079641px;}
.y209b_c00001{bottom:462.090450px;}
.y778_c00001{bottom:462.180450px;}
.y6e0_c00001{bottom:462.270600px;}
.yc2e_c00001{bottom:462.353412px;}
.y731_c00001{bottom:462.540450px;}
.y1abc_c00001{bottom:462.630702px;}
.y22a7_c00001{bottom:462.723231px;}
.y1f6_c00001{bottom:462.810450px;}
.y14a0_c00001{bottom:462.896733px;}
.y21a0_c00001{bottom:462.901188px;}
.y1a68_c00001{bottom:462.990765px;}
.y1723_c00001{bottom:463.162764px;}
.y1564_c00001{bottom:463.256796px;}
.y609_c00001{bottom:463.260450px;}
.y3eb_c00001{bottom:463.350600px;}
.yf14_c00001{bottom:463.350855px;}
.yee7_c00001{bottom:463.351080px;}
.y2008_c00001{bottom:463.440450px;}
.y210c_c00001{bottom:463.530600px;}
.y221a_c00001{bottom:463.533348px;}
.y1ae6_c00001{bottom:463.710702px;}
.y201_c00001{bottom:463.890450px;}
.y1816_c00001{bottom:463.976733px;}
.y11b6_c00001{bottom:463.977390px;}
.y1eb_c00001{bottom:463.980450px;}
.y1a0e_c00001{bottom:464.072079px;}
.y1885_c00001{bottom:464.159631px;}
.y1cfc_c00001{bottom:464.242764px;}
.y22f0_c00001{bottom:464.251611px;}
.ya15_c00001{bottom:464.336400px;}
.y14e9_c00001{bottom:464.337453px;}
.y1f17_c00001{bottom:464.519973px;}
.y1607_c00001{bottom:464.697327px;}
.y78d_c00001{bottom:464.700450px;}
.yb03_c00001{bottom:464.786571px;}
.y1d7a_c00001{bottom:464.880600px;}
.y1f96_c00001{bottom:464.970972px;}
.y205f_c00001{bottom:464.971584px;}
.y1d2d_c00001{bottom:464.972538px;}
.y1bb7_c00001{bottom:465.058047px;}
.y6ac_c00001{bottom:465.060450px;}
.y1d9c_c00001{bottom:465.240288px;}
.y626_c00001{bottom:465.242268px;}
.y14fd_c00001{bottom:465.323421px;}
.ya5e_c00001{bottom:465.326247px;}
.yc4f_c00001{bottom:465.327894px;}
.y1861_c00001{bottom:465.420450px;}
.y1315_c00001{bottom:465.503781px;}
.yf3c_c00001{bottom:465.507138px;}
.y18f7_c00001{bottom:465.777984px;}
.y8c5_c00001{bottom:465.960450px;}
.y1549_c00001{bottom:466.134195px;}
.y1b58_c00001{bottom:466.138047px;}
.y1c9_c00001{bottom:466.140450px;}
.y93a_c00001{bottom:466.222215px;}
.yb88_c00001{bottom:466.222800px;}
.yc83_c00001{bottom:466.223862px;}
.y180_c00001{bottom:466.320450px;}
.y2272_c00001{bottom:466.321377px;}
.yd2e_c00001{bottom:466.431906px;}
.yd5b_c00001{bottom:466.459554px;}
.y13ae_c00001{bottom:466.499424px;}
.y518_c00001{bottom:466.501359px;}
.y241b_c00001{bottom:466.503276px;}
.y1e31_c00001{bottom:466.590450px;}
.y183f_c00001{bottom:466.857984px;}
.y70b_c00001{bottom:466.950600px;}
.y172f_c00001{bottom:467.124672px;}
.y2374_c00001{bottom:467.130450px;}
.y18c2_c00001{bottom:467.214852px;}
.y117_c00001{bottom:467.220450px;}
.y1d54_c00001{bottom:467.223213px;}
.y29b_c00001{bottom:467.310450px;}
.y175d_c00001{bottom:467.480883px;}
.y1fcc_c00001{bottom:467.670450px;}
.y16a0_c00001{bottom:467.760189px;}
.y233f_c00001{bottom:468.033330px;}
.y14c2_c00001{bottom:468.205329px;}
.y218f_c00001{bottom:468.210450px;}
.y31c_c00001{bottom:468.210600px;}
.y14a_c00001{bottom:468.390450px;}
.y65a_c00001{bottom:468.480450px;}
.y22c0_c00001{bottom:468.481773px;}
.y1e9f_c00001{bottom:468.657327px;}
.y4d3_c00001{bottom:468.750450px;}
.y2259_c00001{bottom:468.753267px;}
.y1df6_c00001{bottom:468.841944px;}
.y3f5_c00001{bottom:468.930450px;}
.y1ca1_c00001{bottom:469.015446px;}
.y102b_c00001{bottom:469.019298px;}
.yf9b_c00001{bottom:469.019955px;}
.y1f37_c00001{bottom:469.020600px;}
.y1b7d_c00001{bottom:469.285329px;}
.y143f_c00001{bottom:469.285986px;}
.yfcb_c00001{bottom:469.380018px;}
.y1cd9_c00001{bottom:469.468227px;}
.y4e9_c00001{bottom:469.470450px;}
.y23d0_c00001{bottom:469.473204px;}
.y235c_c00001{bottom:469.830900px;}
.y215a_c00001{bottom:469.831566px;}
.y27e_c00001{bottom:470.010450px;}
.y8ea_c00001{bottom:470.093715px;}
.y18b5_c00001{bottom:470.095446px;}
.y159d_c00001{bottom:470.096103px;}
.y111e_c00001{bottom:470.271954px;}
.ye7f_c00001{bottom:470.280798px;}
.yeb8_c00001{bottom:470.282079px;}
.ye1b_c00001{bottom:470.283321px;}
.y15bc_c00001{bottom:470.362134px;}
.y23de_c00001{bottom:470.371098px;}
.y246b_c00001{bottom:470.461332px;}
.y8a_c00001{bottom:470.550450px;}
.y6f1_c00001{bottom:470.640450px;}
.y71f_c00001{bottom:470.730450px;}
.y108a_c00001{bottom:471.086580px;}
.y6bd_c00001{bottom:471.090600px;}
.y1300_c00001{bottom:471.176103px;}
.y18a6_c00001{bottom:471.176760px;}
.y3aa_c00001{bottom:471.180450px;}
.y1c6d_c00001{bottom:471.359001px;}
.y1458_c00001{bottom:471.442791px;}
.y2c0_c00001{bottom:471.450600px;}
.y1b29_c00001{bottom:471.628758px;}
.y16f7_c00001{bottom:471.717948px;}
.y1b1_c00001{bottom:471.720450px;}
.y230f_c00001{bottom:471.723195px;}
.y3c_c00001{bottom:471.810450px;}
.y191e_c00001{bottom:471.896697px;}
.y20ae_c00001{bottom:471.901062px;}
.yddf_c00001{bottom:471.992916px;}
.y270_c00001{bottom:472.080609px;}
.yffc_c00001{bottom:472.166580px;}
.y665_c00001{bottom:472.170450px;}
.y1cec_c00001{bottom:472.256760px;}
.y193a_c00001{bottom:472.257417px;}
.y7dc_c00001{bottom:472.350450px;}
.y21e1_c00001{bottom:472.351413px;}
.y1fea_c00001{bottom:472.530807px;}
.y1e4c_c00001{bottom:472.705689px;}
.y1655_c00001{bottom:472.798245px;}
.y123_c00001{bottom:472.800450px;}
.y84f_c00001{bottom:472.890450px;}
.y1802_c00001{bottom:472.976697px;}
.y48a_c00001{bottom:472.980450px;}
.y313_c00001{bottom:473.160600px;}
.y12e9_c00001{bottom:473.243385px;}
.y2025_c00001{bottom:473.251575px;}
.y21c7_c00001{bottom:473.253249px;}
.ycc8_c00001{bottom:473.269458px;}
.ycf9_c00001{bottom:473.300562px;}
.ya9a_c00001{bottom:473.338902px;}
.y24b7_c00001{bottom:473.430450px;}
.yeb_c00001{bottom:473.520600px;}
.y1580_c00001{bottom:473.604105px;}
.y3d5_c00001{bottom:473.700450px;}
.y79f_c00001{bottom:473.790450px;}
.y7b4_c00001{bottom:473.970450px;}
.y238e_c00001{bottom:473.971548px;}
.y1283_c00001{bottom:474.057354px;}
.y1e88_c00001{bottom:474.058011px;}
.y161_c00001{bottom:474.060450px;}
.y12a3_c00001{bottom:474.323385px;}
.y1471_c00001{bottom:474.324042px;}
.yad7_c00001{bottom:474.325455px;}
.yacf_c00001{bottom:474.327102px;}
.ya35_c00001{bottom:474.330396px;}
.y1340_c00001{bottom:474.417660px;}
.y19c3_c00001{bottom:474.418074px;}
.y1792_c00001{bottom:474.590073px;}
.y24a2_c00001{bottom:474.600450px;}
.y22de_c00001{bottom:474.601368px;}
.y2530_c00001{bottom:474.690450px;}
.y1db4_c00001{bottom:474.777948px;}
.y212c_c00001{bottom:474.781629px;}
.y1b47_c00001{bottom:475.138011px;}
.y5f_c00001{bottom:475.140450px;}
.yab3_c00001{bottom:475.223070px;}
.y1146_c00001{bottom:475.404699px;}
.y1a4b_c00001{bottom:475.586940px;}
.y35c_c00001{bottom:475.770600px;}
.y1b94_c00001{bottom:475.857948px;}
.y15b0_c00001{bottom:476.124636px;}
.yc10_c00001{bottom:476.211270px;}
.y962_c00001{bottom:476.212917px;}
.yba9_c00001{bottom:476.214564px;}
.y125c_c00001{bottom:476.214816px;}
.y1b03_c00001{bottom:476.219325px;}
.y1909_c00001{bottom:476.485356px;}
.y2081_c00001{bottom:476.671620px;}
.y1cbf_c00001{bottom:476.673231px;}
.y2444_c00001{bottom:476.759766px;}
.y13d3_c00001{bottom:476.845419px;}
.y493_c00001{bottom:476.850450px;}
.y2f3_c00001{bottom:476.940450px;}
.y10b2_c00001{bottom:477.115113px;}
.ybf0_c00001{bottom:477.201117px;}
.y1192_c00001{bottom:477.204636px;}
.y1488_c00001{bottom:477.205293px;}
.y454_c00001{bottom:477.210450px;}
.y265_c00001{bottom:477.300450px;}
.y173a_c00001{bottom:477.561504px;}
.y250f_c00001{bottom:477.660450px;}
.y23ac_c00001{bottom:477.753231px;}
.y4c7_c00001{bottom:477.840450px;}
.y1f55_c00001{bottom:477.931854px;}
.y1994_c00001{bottom:478.019262px;}
.y2327_c00001{bottom:478.021377px;}
.y2171_c00001{bottom:478.021413px;}
.y10f6_c00001{bottom:478.195770px;}
.y1bfd_c00001{bottom:478.285293px;}
.y1f05_c00001{bottom:478.285950px;}
.y46d_c00001{bottom:478.290600px;}
.y1e07_c00001{bottom:478.468191px;}
.y691_c00001{bottom:478.470450px;}
.y89f_c00001{bottom:478.560450px;}
.y1416_c00001{bottom:478.645599px;}
.y1c3f_c00001{bottom:478.828911px;}
.y20eb_c00001{bottom:478.831188px;}
.y2d7_c00001{bottom:478.920450px;}
.ye4f_c00001{bottom:478.922286px;}
.y1b6b_c00001{bottom:479.096067px;}
.y167f_c00001{bottom:479.190450px;}
.ydaa_c00001{bottom:479.280450px;}
.yb4f_c00001{bottom:479.280600px;}
.y19e7_c00001{bottom:479.365950px;}
.y23f8_c00001{bottom:479.371062px;}
.y162c_c00001{bottom:479.371962px;}
.y13f5_c00001{bottom:479.643159px;}
.y37f_c00001{bottom:479.820450px;}
.y1abb_c00001{bottom:479.910693px;}
.y398_c00001{bottom:480.090450px;}
.y12cc_c00001{bottom:480.176067px;}
.y149f_c00001{bottom:480.176724px;}
.y1a67_c00001{bottom:480.180576px;}
.y219f_c00001{bottom:480.181179px;}
.y1522_c00001{bottom:480.442755px;}
.y1e75_c00001{bottom:480.446607px;}
.y5cd_c00001{bottom:480.450450px;}
.y8c3_c00001{bottom:480.630450px;}
.yf13_c00001{bottom:480.630846px;}
.yee6_c00001{bottom:480.631071px;}
.y2219_c00001{bottom:480.723159px;}
.y2e0_c00001{bottom:480.810450px;}
.y1ae5_c00001{bottom:480.990693px;}
.yb2_c00001{bottom:480.992016px;}
.y1238_c00001{bottom:481.256724px;}
.y18d0_c00001{bottom:481.257381px;}
.y1a0d_c00001{bottom:481.261890px;}
.yc2d_c00001{bottom:481.343322px;}
.y1884_c00001{bottom:481.349442px;}
.y2043_c00001{bottom:481.351977px;}
.y5f9_c00001{bottom:481.352016px;}
.y1cfb_c00001{bottom:481.522755px;}
.y11d1_c00001{bottom:481.523412px;}
.y17b7_c00001{bottom:481.529235px;}
.y253_c00001{bottom:481.620450px;}
.y1606_c00001{bottom:481.977318px;}
.y428_c00001{bottom:481.980450px;}
.y1f95_c00001{bottom:482.250963px;}
.y205e_c00001{bottom:482.251575px;}
.y1d2c_c00001{bottom:482.252529px;}
.y1bb6_c00001{bottom:482.338038px;}
.y581_c00001{bottom:482.340450px;}
.y1d9b_c00001{bottom:482.430099px;}
.y24d2_c00001{bottom:482.430450px;}
.y196c_c00001{bottom:482.521782px;}
.y33c_c00001{bottom:482.790450px;}
.y21a_c00001{bottom:482.970450px;}
.y17d6_c00001{bottom:483.057975px;}
.y10cf_c00001{bottom:483.233826px;}
.y11f0_c00001{bottom:483.324006px;}
.y98d_c00001{bottom:483.326310px;}
.y803_c00001{bottom:483.330450px;}
.y2271_c00001{bottom:483.601368px;}
.y13ad_c00001{bottom:483.689235px;}
.y24f2_c00001{bottom:483.690450px;}
.y241a_c00001{bottom:483.783267px;}
.y183e_c00001{bottom:484.137975px;}
.y1d4_c00001{bottom:484.140450px;}
.ybbe_c00001{bottom:484.223925px;}
.yae2_c00001{bottom:484.225572px;}
.yc4e_c00001{bottom:484.227219px;}
.y18c1_c00001{bottom:484.404663px;}
.y106_c00001{bottom:484.410450px;}
.y7f0_c00001{bottom:484.500450px;}
.y1d53_c00001{bottom:484.503204px;}
.y175c_c00001{bottom:484.670694px;}
.y80_c00001{bottom:484.680450px;}
.y169f_c00001{bottom:485.040180px;}
.y912_c00001{bottom:485.212125px;}
.yb87_c00001{bottom:485.212710px;}
.y9b6_c00001{bottom:485.213772px;}
.y16ce_c00001{bottom:485.216283px;}
.y15e3_c00001{bottom:485.219289px;}
.y228e_c00001{bottom:485.223141px;}
.y412_c00001{bottom:485.310450px;}
.yf6a_c00001{bottom:485.395140px;}
.y1c84_c00001{bottom:485.484663px;}
.y14c1_c00001{bottom:485.485320px;}
.y718_c00001{bottom:485.490450px;}
.y1be5_c00001{bottom:485.579352px;}
.y4fd_c00001{bottom:485.580450px;}
.y7ce_c00001{bottom:485.670450px;}
.y22bf_c00001{bottom:485.671584px;}
.y777_c00001{bottom:485.760450px;}
.y1d79_c00001{bottom:485.760600px;}
.y6df_c00001{bottom:485.940450px;}
.y2258_c00001{bottom:486.033258px;}
.y1210_c00001{bottom:486.205257px;}
.y102a_c00001{bottom:486.209109px;}
.yf9a_c00001{bottom:486.209766px;}
.y730_c00001{bottom:486.210450px;}
.yd2d_c00001{bottom:486.231330px;}
.yd5a_c00001{bottom:486.258978px;}
.y1f5_c00001{bottom:486.390450px;}
.y143e_c00001{bottom:486.565977px;}
.y9ee_c00001{bottom:486.745365px;}
.y2239_c00001{bottom:486.753195px;}
.y608_c00001{bottom:486.840450px;}
.y625_c00001{bottom:486.931611px;}
.y235b_c00001{bottom:487.020711px;}
.y20ce_c00001{bottom:487.021377px;}
.ybd2_c00001{bottom:487.190172px;}
.y1059_c00001{bottom:487.195734px;}
.y739_c00001{bottom:487.200600px;}
.y1513_c00001{bottom:487.285257px;}
.y1360_c00001{bottom:487.285914px;}
.y1e30_c00001{bottom:487.290450px;}
.y111d_c00001{bottom:487.461765px;}
.ye7e_c00001{bottom:487.470609px;}
.yeb7_c00001{bottom:487.471890px;}
.ye1a_c00001{bottom:487.473132px;}
.y116c_c00001{bottom:487.642125px;}
.y441_c00001{bottom:487.650450px;}
.y23dd_c00001{bottom:487.651089px;}
.y1c11_c00001{bottom:488.098632px;}
.y517_c00001{bottom:488.190702px;}
.y18a5_c00001{bottom:488.366571px;}
.y1c6c_c00001{bottom:488.548812px;}
.y6ab_c00001{bottom:488.640450px;}
.y1b28_c00001{bottom:488.818569px;}
.y22a6_c00001{bottom:489.003186px;}
.y8e9_c00001{bottom:489.083625px;}
.y20ad_c00001{bottom:489.181053px;}
.ydde_c00001{bottom:489.272907px;}
.y1563_c00001{bottom:489.446571px;}
.y21e0_c00001{bottom:489.631404px;}
.y82f_c00001{bottom:489.707904px;}
.y200_c00001{bottom:489.720450px;}
.y1fe9_c00001{bottom:489.720618px;}
.y1c8_c00001{bottom:489.810450px;}
.y17f_c00001{bottom:489.990450px;}
.y19ae_c00001{bottom:490.256688px;}
.y599_c00001{bottom:490.440459px;}
.y12e8_c00001{bottom:490.523376px;}
.y646_c00001{bottom:490.530252px;}
.y2024_c00001{bottom:490.531566px;}
.y70a_c00001{bottom:490.620450px;}
.y157f_c00001{bottom:490.793916px;}
.y1f16_c00001{bottom:490.799928px;}
.y29a_c00001{bottom:490.890450px;}
.y238d_c00001{bottom:491.251539px;}
.y1282_c00001{bottom:491.337345px;}
.y11b5_c00001{bottom:491.338002px;}
.y12a2_c00001{bottom:491.603376px;}
.y1470_c00001{bottom:491.604033px;}
.y133f_c00001{bottom:491.607471px;}
.y14e8_c00001{bottom:491.607885px;}
.y1314_c00001{bottom:491.693556px;}
.y209a_c00001{bottom:491.790450px;}
.y22dd_c00001{bottom:491.881359px;}
.y212b_c00001{bottom:491.971440px;}
.y1db3_c00001{bottom:492.057939px;}
.y149_c00001{bottom:492.060450px;}
.ya14_c00001{bottom:492.327165px;}
.ya99_c00001{bottom:492.328812px;}
.y1b46_c00001{bottom:492.418002px;}
.y4d2_c00001{bottom:492.420450px;}
.y14fc_c00001{bottom:492.684033px;}
.y1145_c00001{bottom:492.684690px;}
.yb02_c00001{bottom:492.777336px;}
.yf3b_c00001{bottom:492.777570px;}
.y116_c00001{bottom:493.050450px;}
.y1b93_c00001{bottom:493.137939px;}
.y4e8_c00001{bottom:493.140450px;}
.ycc7_c00001{bottom:493.158738px;}
.ycf8_c00001{bottom:493.189842px;}
.yad6_c00001{bottom:493.224780px;}
.ya5d_c00001{bottom:493.226427px;}
.ya34_c00001{bottom:493.229721px;}
.y210b_c00001{bottom:493.230600px;}
.y125b_c00001{bottom:493.404627px;}
.y1b02_c00001{bottom:493.499316px;}
.y2373_c00001{bottom:493.860450px;}
.y2080_c00001{bottom:493.951611px;}
.y1cbe_c00001{bottom:493.953222px;}
.y939_c00001{bottom:494.212980px;}
.yc82_c00001{bottom:494.214627px;}
.y67a_c00001{bottom:494.310450px;}
.y10b1_c00001{bottom:494.395104px;}
.y1487_c00001{bottom:494.485284px;}
.y6bc_c00001{bottom:494.670600px;}
.y1739_c00001{bottom:494.751315px;}
.y3a9_c00001{bottom:494.850450px;}
.y23ab_c00001{bottom:495.033222px;}
.y1860_c00001{bottom:495.120450px;}
.y1df5_c00001{bottom:495.121899px;}
.y961_c00001{bottom:495.202827px;}
.y1993_c00001{bottom:495.299253px;}
.y1b0_c00001{bottom:495.300450px;}
.y2326_c00001{bottom:495.301368px;}
.y2170_c00001{bottom:495.301404px;}
.y3b_c00001{bottom:495.390450px;}
.y10f5_c00001{bottom:495.475761px;}
.y1bfc_c00001{bottom:495.565284px;}
.y1e06_c00001{bottom:495.748182px;}
.y23cf_c00001{bottom:495.753159px;}
.y664_c00001{bottom:495.840450px;}
.y89_c00001{bottom:495.840600px;}
.y1415_c00001{bottom:495.925590px;}
.y1e9e_c00001{bottom:496.017939px;}
.y7db_c00001{bottom:496.020450px;}
.y3ea_c00001{bottom:496.020600px;}
.y20ea_c00001{bottom:496.020999px;}
.y26f_c00001{bottom:496.110600px;}
.ye4e_c00001{bottom:496.112097px;}
.y1b6a_c00001{bottom:496.285878px;}
.y1c59_c00001{bottom:496.380567px;}
.y84e_c00001{bottom:496.470450px;}
.y489_c00001{bottom:496.560450px;}
.y19e6_c00001{bottom:496.645941px;}
.y752_c00001{bottom:496.650450px;}
.y23f7_c00001{bottom:496.651053px;}
.y312_c00001{bottom:496.740600px;}
.y246a_c00001{bottom:496.741287px;}
.y1cd8_c00001{bottom:496.828839px;}
.y24b6_c00001{bottom:497.100450px;}
.y1aba_c00001{bottom:497.100504px;}
.y78c_c00001{bottom:497.280450px;}
.y149e_c00001{bottom:497.366535px;}
.y3d4_c00001{bottom:497.370450px;}
.y219e_c00001{bottom:497.370990px;}
.y1a66_c00001{bottom:497.460567px;}
.y160_c00001{bottom:497.640450px;}
.y1521_c00001{bottom:497.722746px;}
.yf12_c00001{bottom:497.820657px;}
.yee5_c00001{bottom:497.820882px;}
.y218e_c00001{bottom:497.910450px;}
.y2218_c00001{bottom:498.003150px;}
.y1fcb_c00001{bottom:498.090600px;}
.y24a1_c00001{bottom:498.180450px;}
.y1ae4_c00001{bottom:498.180504px;}
.y252f_c00001{bottom:498.360450px;}
.y1237_c00001{bottom:498.446535px;}
.y1089_c00001{bottom:498.447192px;}
.yb4e_c00001{bottom:498.450600px;}
.y1a0c_c00001{bottom:498.541881px;}
.y1883_c00001{bottom:498.629433px;}
.y1cfa_c00001{bottom:498.802746px;}
.y1457_c00001{bottom:498.803403px;}
.y17b6_c00001{bottom:498.809226px;}
.y5e_c00001{bottom:498.810450px;}
.y16f6_c00001{bottom:498.988380px;}
.y1605_c00001{bottom:499.257309px;}
.yffb_c00001{bottom:499.527192px;}
.y1939_c00001{bottom:499.527849px;}
.y1f94_c00001{bottom:499.530954px;}
.y205d_c00001{bottom:499.531566px;}
.y1d2b_c00001{bottom:499.532520px;}
.y21c6_c00001{bottom:499.533204px;}
.y1d9a_c00001{bottom:499.710090px;}
.y196b_c00001{bottom:499.801773px;}
.y167e_c00001{bottom:499.890450px;}
.y1e4b_c00001{bottom:499.976121px;}
.y1654_c00001{bottom:500.068677px;}
.y1801_c00001{bottom:500.337309px;}
.y18f6_c00001{bottom:500.337966px;}
.y11ef_c00001{bottom:500.603997px;}
.y2f2_c00001{bottom:500.610450px;}
.y62f_c00001{bottom:500.790600px;}
.y453_c00001{bottom:500.880450px;}
.y13ac_c00001{bottom:500.969226px;}
.y264_c00001{bottom:500.970450px;}
.y2419_c00001{bottom:500.973078px;}
.y250e_c00001{bottom:501.240450px;}
.y183d_c00001{bottom:501.417966px;}
.y4c6_c00001{bottom:501.420450px;}
.y3f4_c00001{bottom:501.600450px;}
.y1ed4_c00001{bottom:501.683997px;}
.y18c0_c00001{bottom:501.684654px;}
.y1d52_c00001{bottom:501.783195px;}
.y1791_c00001{bottom:501.950685px;}
.y46c_c00001{bottom:501.960450px;}
.y89e_c00001{bottom:502.140450px;}
.y98c_c00001{bottom:502.225635px;}
.yace_c00001{bottom:502.227282px;}
.y169e_c00001{bottom:502.229991px;}
.y228d_c00001{bottom:502.503132px;}
.y27d_c00001{bottom:502.590450px;}
.yb1_c00001{bottom:502.681359px;}
.y1c83_c00001{bottom:502.764654px;}
.y14c0_c00001{bottom:502.765311px;}
.y1a4a_c00001{bottom:502.947552px;}
.yda9_c00001{bottom:502.950450px;}
.y22be_c00001{bottom:502.951575px;}
.y5f8_c00001{bottom:503.041359px;}
.yab2_c00001{bottom:503.213835px;}
.yae1_c00001{bottom:503.215482px;}
.y2257_c00001{bottom:503.223069px;}
.y6f0_c00001{bottom:503.310450px;}
.y15af_c00001{bottom:503.485248px;}
.y1029_c00001{bottom:503.489100px;}
.yf99_c00001{bottom:503.489757px;}
.y37e_c00001{bottom:503.490450px;}
.y397_c00001{bottom:503.670450px;}
.y761_c00001{bottom:503.760450px;}
.y143d_c00001{bottom:503.845968px;}
.y2443_c00001{bottom:504.030198px;}
.y2bf_c00001{bottom:504.030450px;}
.y2238_c00001{bottom:504.033186px;}
.y13d2_c00001{bottom:504.115851px;}
.y1f54_c00001{bottom:504.121629px;}
.y911_c00001{bottom:504.202035px;}
.y9c9_c00001{bottom:504.203682px;}
.yba8_c00001{bottom:504.205329px;}
.y8c4_c00001{bottom:504.210450px;}
.y235a_c00001{bottom:504.300702px;}
.y20cd_c00001{bottom:504.301368px;}
.y2df_c00001{bottom:504.390450px;}
.y1058_c00001{bottom:504.475725px;}
.y1191_c00001{bottom:504.565248px;}
.y135f_c00001{bottom:504.565905px;}
.ye7d_c00001{bottom:504.750609px;}
.yeb6_c00001{bottom:504.751881px;}
.ye19_c00001{bottom:504.753123px;}
.y116b_c00001{bottom:504.831936px;}
.ybef_c00001{bottom:505.191882px;}
.y1c10_c00001{bottom:505.288443px;}
.y252_c00001{bottom:505.290450px;}
.y427_c00001{bottom:505.560450px;}
.y162b_c00001{bottom:505.561737px;}
.y18a4_c00001{bottom:505.646562px;}
.y9ed_c00001{bottom:505.735275px;}
.y1c6b_c00001{bottom:505.828803px;}
.y580_c00001{bottom:505.920450px;}
.y13f4_c00001{bottom:505.923114px;}
.yd2c_c00001{bottom:506.030754px;}
.yd59_c00001{bottom:506.058402px;}
.y1b27_c00001{bottom:506.098560px;}
.y1c3e_c00001{bottom:506.099343px;}
.y24d1_c00001{bottom:506.100450px;}
.y33b_c00001{bottom:506.370450px;}
.y20ac_c00001{bottom:506.370864px;}
.y1d78_c00001{bottom:506.460600px;}
.yddd_c00001{bottom:506.462718px;}
.y1562_c00001{bottom:506.726562px;}
.y21df_c00001{bottom:506.821215px;}
.y802_c00001{bottom:507.000450px;}
.y1fe8_c00001{bottom:507.000609px;}
.y26e_c00001{bottom:507.270450px;}
.y24f1_c00001{bottom:507.360450px;}
.y12cb_c00001{bottom:507.446499px;}
.y16bc_c00001{bottom:507.447156px;}
.y2042_c00001{bottom:507.631932px;}
.y598_c00001{bottom:507.720450px;}
.y2023_c00001{bottom:507.721377px;}
.y12e7_c00001{bottom:507.803367px;}
.y1e74_c00001{bottom:507.807219px;}
.y1d3_c00001{bottom:507.810450px;}
.y8e8_c00001{bottom:507.982950px;}
.y1e2f_c00001{bottom:507.990450px;}
.y7ef_c00001{bottom:508.170450px;}
.y551_c00001{bottom:508.260450px;}
.y1281_c00001{bottom:508.527156px;}
.y1e87_c00001{bottom:508.527813px;}
.y624_c00001{bottom:508.532016px;}
.y11d0_c00001{bottom:508.793844px;}
.y146f_c00001{bottom:508.884024px;}
.y14e7_c00001{bottom:508.887876px;}
.y411_c00001{bottom:508.890450px;}
.y717_c00001{bottom:509.070450px;}
.y4fc_c00001{bottom:509.160450px;}
.y7cd_c00001{bottom:509.250450px;}
.yc2c_c00001{bottom:509.334087px;}
.y1db2_c00001{bottom:509.337930px;}
.y87c_c00001{bottom:509.430450px;}
.y6de_c00001{bottom:509.520450px;}
.y1b45_c00001{bottom:509.607813px;}
.y72f_c00001{bottom:509.790450px;}
.y516_c00001{bottom:509.880045px;}
.y2270_c00001{bottom:509.881323px;}
.y2a8_c00001{bottom:510.060450px;}
.yc9e_c00001{bottom:510.409938px;}
.y1a85_c00001{bottom:510.417930px;}
.y17d5_c00001{bottom:510.418587px;}
.y607_c00001{bottom:510.510450px;}
.y10ce_c00001{bottom:510.594438px;}
.y125a_c00001{bottom:510.684618px;}
.y1b01_c00001{bottom:510.689127px;}
.y2437_c00001{bottom:510.783159px;}
.y690_c00001{bottom:511.140450px;}
.y1cbd_c00001{bottom:511.143033px;}
.y440_c00001{bottom:511.230450px;}
.y207f_c00001{bottom:511.231602px;}
.y16cd_c00001{bottom:511.496238px;}
.y819_c00001{bottom:511.500450px;}
.y233e_c00001{bottom:511.503096px;}
.y1fb8_c00001{bottom:511.680450px;}
.y1486_c00001{bottom:511.765275px;}
.y1be4_c00001{bottom:511.769127px;}
.y1738_c00001{bottom:512.031306px;}
.ya81_c00001{bottom:512.216337px;}
.yc4d_c00001{bottom:512.217984px;}
.ya33_c00001{bottom:512.219631px;}
.y23aa_c00001{bottom:512.223033px;}
.y6aa_c00001{bottom:512.310450px;}
.y1992_c00001{bottom:512.579244px;}
.y15e2_c00001{bottom:512.579901px;}
.y2325_c00001{bottom:512.581359px;}
.y216f_c00001{bottom:512.581395px;}
.yf69_c00001{bottom:512.755752px;}
.y1bfb_c00001{bottom:512.845275px;}
.ycc6_c00001{bottom:512.958162px;}
.ycf7_c00001{bottom:512.989266px;}
.y2150_c00001{bottom:513.030450px;}
.y1414_c00001{bottom:513.115401px;}
.y5cc_c00001{bottom:513.120450px;}
.y938_c00001{bottom:513.202890px;}
.yb86_c00001{bottom:513.203475px;}
.y9b5_c00001{bottom:513.204537px;}
.y8c2_c00001{bottom:513.210450px;}
.y20e9_c00001{bottom:513.300990px;}
.y1c7_c00001{bottom:513.390450px;}
.ye4d_c00001{bottom:513.392088px;}
.y120f_c00001{bottom:513.565869px;}
.y1c58_c00001{bottom:513.660558px;}
.y1a33_c00001{bottom:513.753087px;}
.y19e5_c00001{bottom:513.925932px;}
.yfca_c00001{bottom:513.930441px;}
.y23dc_c00001{bottom:513.931044px;}
.y2469_c00001{bottom:513.931098px;}
.y709_c00001{bottom:514.290450px;}
.y1f76_c00001{bottom:514.380450px;}
.y1ab9_c00001{bottom:514.380495px;}
.y299_c00001{bottom:514.560450px;}
.y18b4_c00001{bottom:514.645869px;}
.y149d_c00001{bottom:514.646526px;}
.y219d_c00001{bottom:514.650981px;}
.y1a65_c00001{bottom:514.740558px;}
.y111c_c00001{bottom:514.822377px;}
.y1387_c00001{bottom:514.912557px;}
.yf11_c00001{bottom:515.100648px;}
.yee4_c00001{bottom:515.100873px;}
.ybd1_c00001{bottom:515.180937px;}
.y2217_c00001{bottom:515.283141px;}
.y1ae3_c00001{bottom:515.460495px;}
.y219_c00001{bottom:515.550450px;}
.y148_c00001{bottom:515.640450px;}
.y1236_c00001{bottom:515.726526px;}
.y18cf_c00001{bottom:515.727183px;}
.y659_c00001{bottom:515.730450px;}
.y1a0b_c00001{bottom:515.731692px;}
.y1882_c00001{bottom:515.909424px;}
.y1ddb_c00001{bottom:515.993214px;}
.y17b5_c00001{bottom:515.999037px;}
.y4d1_c00001{bottom:516.000450px;}
.y3e9_c00001{bottom:516.090600px;}
.y1604_c00001{bottom:516.447120px;}
.y4e7_c00001{bottom:516.720450px;}
.y1f93_c00001{bottom:516.720765px;}
.y205c_c00001{bottom:516.721377px;}
.y1ceb_c00001{bottom:516.807183px;}
.y1bb5_c00001{bottom:516.807840px;}
.y5e0_c00001{bottom:516.810450px;}
.y1f15_c00001{bottom:516.989703px;}
.y196a_c00001{bottom:516.991584px;}
.y105_c00001{bottom:517.080450px;}
.y1653_c00001{bottom:517.348668px;}
.y7f_c00001{bottom:517.350450px;}
.y238c_c00001{bottom:517.531494px;}
.y11ee_c00001{bottom:517.793808px;}
.y174c_c00001{bottom:517.883988px;}
.y19c2_c00001{bottom:517.887840px;}
.y4a8_c00001{bottom:517.890450px;}
.y1313_c00001{bottom:517.973511px;}
.y679_c00001{bottom:517.980450px;}
.y22dc_c00001{bottom:518.071134px;}
.y157e_c00001{bottom:518.154528px;}
.y13ab_c00001{bottom:518.159037px;}
.y212a_c00001{bottom:518.251395px;}
.y2418_c00001{bottom:518.253069px;}
.y6bb_c00001{bottom:518.340450px;}
.y776_c00001{bottom:518.430450px;}
.y3a8_c00001{bottom:518.520450px;}
.y183c_c00001{bottom:518.607777px;}
.y11b4_c00001{bottom:518.608434px;}
.y1fca_c00001{bottom:518.790600px;}
.y12a1_c00001{bottom:518.873808px;}
.y1144_c00001{bottom:518.874465px;}
.yb4d_c00001{bottom:518.880450px;}
.y133e_c00001{bottom:518.968083px;}
.y3a_c00001{bottom:519.060450px;}
.y1790_c00001{bottom:519.230676px;}
.y663_c00001{bottom:519.420450px;}
.y169d_c00001{bottom:519.509982px;}
.y7da_c00001{bottom:519.600450px;}
.y228c_c00001{bottom:519.783123px;}
.y1c82_c00001{bottom:519.954465px;}
.y1908_c00001{bottom:519.955122px;}
.yf3a_c00001{bottom:520.138182px;}
.y84d_c00001{bottom:520.140450px;}
.ya13_c00001{bottom:520.227345px;}
.ya98_c00001{bottom:520.228992px;}
.y488_c00001{bottom:520.230450px;}
.y22bd_c00001{bottom:520.231566px;}
.y167d_c00001{bottom:520.590450px;}
.y24b5_c00001{bottom:520.680450px;}
.y15ae_c00001{bottom:520.765239px;}
.yb01_c00001{bottom:520.768101px;}
.y1028_c00001{bottom:520.769091px;}
.yf98_c00001{bottom:520.769748px;}
.y62e_c00001{bottom:520.860600px;}
.y3d3_c00001{bottom:520.950450px;}
.y143c_c00001{bottom:521.035779px;}
.y79e_c00001{bottom:521.040450px;}
.yad5_c00001{bottom:521.215545px;}
.ya5c_c00001{bottom:521.217192px;}
.y7b3_c00001{bottom:521.220450px;}
.y645_c00001{bottom:521.222673px;}
.y2237_c00001{bottom:521.222997px;}
.y15f_c00001{bottom:521.310450px;}
.y1df4_c00001{bottom:521.311674px;}
.y2099_c00001{bottom:521.490450px;}
.y3f3_c00001{bottom:521.580450px;}
.y20cc_c00001{bottom:521.581359px;}
.y1057_c00001{bottom:521.755716px;}
.y1190_c00001{bottom:521.845239px;}
.y135e_c00001{bottom:521.845896px;}
.y252e_c00001{bottom:521.940450px;}
.ye7c_c00001{bottom:522.030639px;}
.yeb5_c00001{bottom:522.031872px;}
.ye18_c00001{bottom:522.033114px;}
.yab1_c00001{bottom:522.203745px;}
.y5d_c00001{bottom:522.390450px;}
.y615_c00001{bottom:522.480450px;}
.y1c0f_c00001{bottom:522.568434px;}
.y17e_c00001{bottom:522.660450px;}
.y10f4_c00001{bottom:522.836373px;}
.y2007_c00001{bottom:522.840450px;}
.y18a3_c00001{bottom:522.926553px;}
.y210a_c00001{bottom:522.930600px;}
.y1c6a_c00001{bottom:523.018614px;}
.y960_c00001{bottom:523.193592px;}
.yba7_c00001{bottom:523.195239px;}
.y1b26_c00001{bottom:523.288371px;}
.y1c3d_c00001{bottom:523.379334px;}
.y20ab_c00001{bottom:523.650855px;}
.y2372_c00001{bottom:523.740450px;}
.yddc_c00001{bottom:523.742709px;}
.y1b7c_c00001{bottom:524.006553px;}
.y1cd7_c00001{bottom:524.099271px;}
.y2f1_c00001{bottom:524.280450px;}
.y1fe7_c00001{bottom:524.280729px;}
.yb0_c00001{bottom:524.281764px;}
.y230e_c00001{bottom:524.283105px;}
.y452_c00001{bottom:524.460450px;}
.y263_c00001{bottom:524.550450px;}
.y5f7_c00001{bottom:524.641764px;}
.y12ca_c00001{bottom:524.726490px;}
.y1d0f_c00001{bottom:524.727147px;}
.y185f_c00001{bottom:524.820450px;}
.y250d_c00001{bottom:524.910450px;}
.y12e6_c00001{bottom:524.993178px;}
.y2022_c00001{bottom:525.001368px;}
.y1e73_c00001{bottom:525.087210px;}
.y4c5_c00001{bottom:525.090450px;}
.y46b_c00001{bottom:525.540450px;}
.y1088_c00001{bottom:525.717624px;}
.y1d2a_c00001{bottom:525.722295px;}
.y21c5_c00001{bottom:525.722979px;}
.y1e86_c00001{bottom:525.807804px;}
.y89d_c00001{bottom:525.810450px;}
.yd2b_c00001{bottom:525.920034px;}
.yd58_c00001{bottom:525.947682px;}
.y1cf9_c00001{bottom:526.073178px;}
.y1456_c00001{bottom:526.073835px;}
.y14e6_c00001{bottom:526.167867px;}
.y2d6_c00001{bottom:526.260450px;}
.y16f5_c00001{bottom:526.348992px;}
.y191d_c00001{bottom:526.527741px;}
.yffa_c00001{bottom:526.797624px;}
.y1b44_c00001{bottom:526.887804px;}
.y1938_c00001{bottom:526.888461px;}
.y6ef_c00001{bottom:526.890450px;}
.y33a_c00001{bottom:527.070450px;}
.y1d99_c00001{bottom:527.070702px;}
.y226f_c00001{bottom:527.071134px;}
.y1e4a_c00001{bottom:527.336733px;}
.y760_c00001{bottom:527.340450px;}
.y1800_c00001{bottom:527.607741px;}
.y17d4_c00001{bottom:527.608398px;}
.y218d_c00001{bottom:527.610450px;}
.y2be_c00001{bottom:527.700450px;}
.y1259_c00001{bottom:527.874429px;}
.yda8_c00001{bottom:527.880450px;}
.y1b00_c00001{bottom:527.969118px;}
.y1af_c00001{bottom:527.970450px;}
.y1d51_c00001{bottom:527.972970px;}
.y2de_c00001{bottom:528.060450px;}
.y207e_c00001{bottom:528.421413px;}
.y1cbc_c00001{bottom:528.423024px;}
.y1e2e_c00001{bottom:528.690450px;}
.y233d_c00001{bottom:528.783087px;}
.y251_c00001{bottom:528.870450px;}
.y1485_c00001{bottom:528.955086px;}
.y1be3_c00001{bottom:529.049118px;}
.y426_c00001{bottom:529.230450px;}
.y311_c00001{bottom:529.410600px;}
.y2256_c00001{bottom:529.503024px;}
.y57f_c00001{bottom:529.590600px;}
.y24d0_c00001{bottom:529.680450px;}
.y1991_c00001{bottom:529.769055px;}
.y2324_c00001{bottom:529.771170px;}
.y223f_c00001{bottom:529.771206px;}
.yf68_c00001{bottom:529.945563px;}
.y14bf_c00001{bottom:530.035743px;}
.y21de_c00001{bottom:530.131242px;}
.y98b_c00001{bottom:530.216400px;}
.y1a49_c00001{bottom:530.217984px;}
.y623_c00001{bottom:530.221359px;}
.y1413_c00001{bottom:530.395392px;}
.y1f53_c00001{bottom:530.401584px;}
.y2359_c00001{bottom:530.580657px;}
.y20e8_c00001{bottom:530.580981px;}
.y2298_c00001{bottom:530.581323px;}
.ye4c_c00001{bottom:530.672079px;}
.y120e_c00001{bottom:530.845860px;}
.y24a0_c00001{bottom:530.850450px;}
.y24f0_c00001{bottom:530.940450px;}
.ybba_c00001{bottom:531.115662px;}
.y19e4_c00001{bottom:531.115743px;}
.yfc9_c00001{bottom:531.120252px;}
.y23db_c00001{bottom:531.120855px;}
.yae0_c00001{bottom:531.204600px;}
.y27c_c00001{bottom:531.210450px;}
.y2468_c00001{bottom:531.211089px;}
.y122_c00001{bottom:531.390450px;}
.y2442_c00001{bottom:531.390810px;}
.y13d1_c00001{bottom:531.476463px;}
.y515_c00001{bottom:531.480450px;}
.y1ab8_c00001{bottom:531.660486px;}
.y162a_c00001{bottom:531.841692px;}
.y1e81_c00001{bottom:531.925860px;}
.y149c_c00001{bottom:531.926517px;}
.y1a64_c00001{bottom:531.930369px;}
.y1c3_c00001{bottom:531.930450px;}
.y116a_c00001{bottom:532.192548px;}
.y910_c00001{bottom:532.192800px;}
.y9b4_c00001{bottom:532.194447px;}
.y13f3_c00001{bottom:532.203069px;}
.yf10_c00001{bottom:532.380639px;}
.yee3_c00001{bottom:532.380864px;}
.y2216_c00001{bottom:532.472952px;}
.y410_c00001{bottom:532.560450px;}
.y716_c00001{bottom:532.740450px;}
.y1ae2_c00001{bottom:532.740486px;}
.ycc5_c00001{bottom:532.757586px;}
.ycf6_c00001{bottom:532.788690px;}
.y4fb_c00001{bottom:532.830450px;}
.y7cc_c00001{bottom:532.920450px;}
.y1235_c00001{bottom:533.006517px;}
.y18ce_c00001{bottom:533.007174px;}
.y1a0a_c00001{bottom:533.011683px;}
.y1881_c00001{bottom:533.099235px;}
.y87b_c00001{bottom:533.100450px;}
.ybee_c00001{bottom:533.182647px;}
.y1dda_c00001{bottom:533.273205px;}
.y17b4_c00001{bottom:533.279028px;}
.y597_c00001{bottom:533.460450px;}
.y9ec_c00001{bottom:533.635455px;}
.y2a7_c00001{bottom:533.640450px;}
.y1603_c00001{bottom:533.727111px;}
.y2041_c00001{bottom:533.821707px;}
.y3b5_c00001{bottom:534.000450px;}
.y205b_c00001{bottom:534.001368px;}
.ybd0_c00001{bottom:534.080262px;}
.y1bb4_c00001{bottom:534.087831px;}
.y606_c00001{bottom:534.090450px;}
.y1969_c00001{bottom:534.271575px;}
.y1652_c00001{bottom:534.628659px;}
.y6dd_c00001{bottom:534.630450px;}
.y68f_c00001{bottom:534.720450px;}
.y238b_c00001{bottom:534.721305px;}
.y16bb_c00001{bottom:534.807768px;}
.y43f_c00001{bottom:534.900450px;}
.y1716_c00001{bottom:535.073799px;}
.y19c1_c00001{bottom:535.167831px;}
.y818_c00001{bottom:535.170450px;}
.y22db_c00001{bottom:535.351125px;}
.y13aa_c00001{bottom:535.439028px;}
.y2129_c00001{bottom:535.531386px;}
.y1d77_c00001{bottom:535.533060px;}
.y1280_c00001{bottom:535.887768px;}
.y11b3_c00001{bottom:535.888425px;}
.y6a9_c00001{bottom:535.890450px;}
.y8e7_c00001{bottom:535.973715px;}
.y37d_c00001{bottom:536.070450px;}
.y12a0_c00001{bottom:536.153799px;}
.y1143_c00001{bottom:536.154456px;}
.y133d_c00001{bottom:536.248074px;}
.y396_c00001{bottom:536.340450px;}
.y169c_c00001{bottom:536.699793px;}
.y5cb_c00001{bottom:536.700450px;}
.y228b_c00001{bottom:536.972934px;}
.y223_c00001{bottom:537.060450px;}
.y1907_c00001{bottom:537.235113px;}
.yc2b_c00001{bottom:537.324852px;}
.yf39_c00001{bottom:537.418173px;}
.y22bc_c00001{bottom:537.421377px;}
.y16cc_c00001{bottom:537.686013px;}
.y10cd_c00001{bottom:537.864870px;}
.y708_c00001{bottom:537.870450px;}
.y15ad_c00001{bottom:537.955050px;}
.yf97_c00001{bottom:537.959559px;}
.y82e_c00001{bottom:538.038201px;}
.y1542_c00001{bottom:538.315770px;}
.y2236_c00001{bottom:538.502988px;}
.yb4c_c00001{bottom:538.680450px;}
.y20cb_c00001{bottom:538.771170px;}
.y118f_c00001{bottom:539.035050px;}
.y135d_c00001{bottom:539.035707px;}
.ya12_c00001{bottom:539.217255px;}
.ya97_c00001{bottom:539.218902px;}
.ye7b_c00001{bottom:539.220882px;}
.yeb4_c00001{bottom:539.221683px;}
.ye17_c00001{bottom:539.222925px;}
.y147_c00001{bottom:539.310450px;}
.y1737_c00001{bottom:539.391918px;}
.y801_c00001{bottom:539.580450px;}
.y4d0_c00001{bottom:539.670450px;}
.y15e1_c00001{bottom:539.850333px;}
.y1a32_c00001{bottom:540.033042px;}
.y1bfa_c00001{bottom:540.115707px;}
.y18a2_c00001{bottom:540.116364px;}
.yacd_c00001{bottom:540.116517px;}
.ya80_c00001{bottom:540.205455px;}
.ya5b_c00001{bottom:540.207102px;}
.ya32_c00001{bottom:540.208749px;}
.y1c69_c00001{bottom:540.298605px;}
.y5df_c00001{bottom:540.390450px;}
.y1b25_c00001{bottom:540.568362px;}
.y7ee_c00001{bottom:540.750450px;}
.y1b69_c00001{bottom:540.926481px;}
.y7e_c00001{bottom:540.930450px;}
.y20aa_c00001{bottom:540.930846px;}
.y219c_c00001{bottom:540.930936px;}
.y1c57_c00001{bottom:540.930990px;}
.yddb_c00001{bottom:541.022700px;}
.y937_c00001{bottom:541.193655px;}
.yb85_c00001{bottom:541.194240px;}
.y1c26_c00001{bottom:541.196364px;}
.y167c_c00001{bottom:541.290450px;}
.y1cd6_c00001{bottom:541.379262px;}
.y1fb7_c00001{bottom:541.380450px;}
.y1fe6_c00001{bottom:541.470540px;}
.y22a5_c00001{bottom:541.472916px;}
.y56c_c00001{bottom:541.560450px;}
.y3e8_c00001{bottom:541.920450px;}
.y12c9_c00001{bottom:542.006481px;}
.y194c_c00001{bottom:542.007138px;}
.y775_c00001{bottom:542.100450px;}
.y111b_c00001{bottom:542.182989px;}
.y1374_c00001{bottom:542.273169px;}
.y2021_c00001{bottom:542.281359px;}
.y39_c00001{bottom:542.640450px;}
.y214f_c00001{bottom:542.730450px;}
.y644_c00001{bottom:542.912016px;}
.y1087_c00001{bottom:542.997615px;}
.y1f92_c00001{bottom:543.000720px;}
.y1d29_c00001{bottom:543.002286px;}
.yc00_c00001{bottom:543.081117px;}
.y1bca_c00001{bottom:543.087138px;}
.y1e15_c00001{bottom:543.087795px;}
.y662_c00001{bottom:543.090450px;}
.y1f14_c00001{bottom:543.269658px;}
.y7d9_c00001{bottom:543.270450px;}
.y14e5_c00001{bottom:543.357678px;}
.y16f4_c00001{bottom:543.628983px;}
.y84c_c00001{bottom:543.720450px;}
.y191c_c00001{bottom:543.807732px;}
.y487_c00001{bottom:543.810450px;}
.y751_c00001{bottom:543.900450px;}
.yff9_c00001{bottom:544.077615px;}
.y1f75_c00001{bottom:544.080450px;}
.y1b43_c00001{bottom:544.167795px;}
.y1312_c00001{bottom:544.253466px;}
.y24b4_c00001{bottom:544.350450px;}
.y226e_c00001{bottom:544.351125px;}
.y1e49_c00001{bottom:544.616724px;}
.y3d2_c00001{bottom:544.620450px;}
.y17ff_c00001{bottom:544.887732px;}
.y17d3_c00001{bottom:544.888389px;}
.y15e_c00001{bottom:544.890450px;}
.y11ed_c00001{bottom:545.154420px;}
.y1aff_c00001{bottom:545.249109px;}
.y1d50_c00001{bottom:545.252961px;}
.y157d_c00001{bottom:545.515140px;}
.y207d_c00001{bottom:545.701404px;}
.y1cbb_c00001{bottom:545.703015px;}
.yd2a_c00001{bottom:545.719458px;}
.yd57_c00001{bottom:545.747106px;}
.y1a97_c00001{bottom:545.968389px;}
.yaf_c00001{bottom:545.971107px;}
.y233c_c00001{bottom:545.972898px;}
.y5c_c00001{bottom:546.060450px;}
.y1ed3_c00001{bottom:546.234420px;}
.y1484_c00001{bottom:546.235077px;}
.y17d_c00001{bottom:546.240450px;}
.y1be2_c00001{bottom:546.329109px;}
.y5f6_c00001{bottom:546.331107px;}
.y178f_c00001{bottom:546.501108px;}
.y2255_c00001{bottom:546.783015px;}
.y2323_c00001{bottom:547.051161px;}
.y298_c00001{bottom:547.140450px;}
.y1c81_c00001{bottom:547.315077px;}
.y21dd_c00001{bottom:547.321053px;}
.y1a48_c00001{bottom:547.497975px;}
.y1df3_c00001{bottom:547.591629px;}
.y1412_c00001{bottom:547.675383px;}
.y1f36_c00001{bottom:547.770450px;}
.y2358_c00001{bottom:547.770468px;}
.y20e7_c00001{bottom:547.770792px;}
.y2297_c00001{bottom:547.771134px;}
.y2f0_c00001{bottom:547.860450px;}
.ye4b_c00001{bottom:547.861890px;}
.y120d_c00001{bottom:548.035671px;}
.y1027_c00001{bottom:548.039523px;}
.y451_c00001{bottom:548.130450px;}
.y218_c00001{bottom:548.220450px;}
.y23ce_c00001{bottom:548.222889px;}
.y53f_c00001{bottom:548.310450px;}
.y143b_c00001{bottom:548.396391px;}
.yfc8_c00001{bottom:548.400243px;}
.y2467_c00001{bottom:548.400900px;}
.y250c_c00001{bottom:548.490450px;}
.y13d0_c00001{bottom:548.756454px;}
.yb00_c00001{bottom:548.757219px;}
.y1ab7_c00001{bottom:548.850297px;}
.y10b0_c00001{bottom:549.026148px;}
.y1056_c00001{bottom:549.116328px;}
.y98a_c00001{bottom:549.206310px;}
.y46a_c00001{bottom:549.210450px;}
.y89c_c00001{bottom:549.390450px;}
.y4e6_c00001{bottom:549.390600px;}
.y1386_c00001{bottom:549.472539px;}
.yf0f_c00001{bottom:549.570450px;}
.yee2_c00001{bottom:549.570675px;}
.y104_c00001{bottom:549.660450px;}
.y2215_c00001{bottom:549.752943px;}
.y2d5_c00001{bottom:549.840450px;}
.y1c0e_c00001{bottom:549.929046px;}
.y1ae1_c00001{bottom:549.930297px;}
.ybb9_c00001{bottom:550.105572px;}
.yab0_c00001{bottom:550.194510px;}
.y1234_c00001{bottom:550.196328px;}
.y10f3_c00001{bottom:550.196985px;}
.y1e05_c00001{bottom:550.379226px;}
.y1dd9_c00001{bottom:550.463016px;}
.y230d_c00001{bottom:550.472880px;}
.y17b3_c00001{bottom:550.559019px;}
.y4a7_c00001{bottom:550.560450px;}
.y1e9d_c00001{bottom:550.648983px;}
.y1c3c_c00001{bottom:550.739946px;}
.y75f_c00001{bottom:551.010450px;}
.y3a7_c00001{bottom:551.100450px;}
.y90f_c00001{bottom:551.182710px;}
.yb32_c00001{bottom:551.184357px;}
.y2098_c00001{bottom:551.190450px;}
.y1b7b_c00001{bottom:551.276985px;}
.y2bd_c00001{bottom:551.280450px;}
.y205a_c00001{bottom:551.281359px;}
.y1ae_c00001{bottom:551.550450px;}
.y1968_c00001{bottom:551.551566px;}
.y1f4_c00001{bottom:551.640450px;}
.y622_c00001{bottom:551.910702px;}
.y238a_c00001{bottom:552.001296px;}
.y21c4_c00001{bottom:552.002934px;}
.ybed_c00001{bottom:552.081972px;}
.y16ba_c00001{bottom:552.087759px;}
.y12e5_c00001{bottom:552.353790px;}
.y1e72_c00001{bottom:552.357642px;}
.y250_c00001{bottom:552.540450px;}
.y9eb_c00001{bottom:552.625365px;}
.y2109_c00001{bottom:552.630600px;}
.y22da_c00001{bottom:552.631116px;}
.ycc4_c00001{bottom:552.646866px;}
.ycf5_c00001{bottom:552.677970px;}
.y2128_c00001{bottom:552.721197px;}
.y2371_c00001{bottom:552.722871px;}
.y310_c00001{bottom:552.990600px;}
.y183b_c00001{bottom:553.167759px;}
.y11b2_c00001{bottom:553.168416px;}
.y57e_c00001{bottom:553.260600px;}
.y24cf_c00001{bottom:553.350450px;}
.y129f_c00001{bottom:553.433790px;}
.y1142_c00001{bottom:553.434447px;}
.y133c_c00001{bottom:553.437885px;}
.y169b_c00001{bottom:553.979784px;}
.y1937_c00001{bottom:554.249073px;}
.y228a_c00001{bottom:554.252925px;}
.y1d98_c00001{bottom:554.341134px;}
.y1906_c00001{bottom:554.515104px;}
.y185e_c00001{bottom:554.520450px;}
.yf38_c00001{bottom:554.607984px;}
.y252d_c00001{bottom:554.610450px;}
.y22bb_c00001{bottom:554.701368px;}
.y8e6_c00001{bottom:554.963625px;}
.y18f5_c00001{bottom:554.969010px;}
.y121_c00001{bottom:555.060450px;}
.y10cc_c00001{bottom:555.144861px;}
.y1592_c00001{bottom:555.235041px;}
.y550_c00001{bottom:555.600450px;}
.y2235_c00001{bottom:555.782979px;}
.y20ca_c00001{bottom:556.051161px;}
.y40f_c00001{bottom:556.140450px;}
.y118e_c00001{bottom:556.315041px;}
.y135c_c00001{bottom:556.315698px;}
.y4fa_c00001{bottom:556.410450px;}
.y7cb_c00001{bottom:556.500450px;}
.ye7a_c00001{bottom:556.500873px;}
.yeb3_c00001{bottom:556.501674px;}
.ye16_c00001{bottom:556.502916px;}
.y175b_c00001{bottom:556.581729px;}
.y87a_c00001{bottom:556.680450px;}
.y1f52_c00001{bottom:556.681539px;}
.y72e_c00001{bottom:557.040450px;}
.y1990_c00001{bottom:557.129667px;}
.y15e0_c00001{bottom:557.130324px;}
.yf67_c00001{bottom:557.306175px;}
.y32d_c00001{bottom:557.310450px;}
.y14be_c00001{bottom:557.396355px;}
.y23da_c00001{bottom:557.400810px;}
.y1c68_c00001{bottom:557.578596px;}
.y4c4_c00001{bottom:557.670450px;}
.y2441_c00001{bottom:557.670765px;}
.y605_c00001{bottom:557.760450px;}
.y1825_c00001{bottom:558.116292px;}
.y20a9_c00001{bottom:558.120657px;}
.y219b_c00001{bottom:558.120747px;}
.y1629_c00001{bottom:558.121647px;}
.ya11_c00001{bottom:558.207165px;}
.y1c56_c00001{bottom:558.210981px;}
.ydda_c00001{bottom:558.212511px;}
.y68e_c00001{bottom:558.390450px;}
.y13f2_c00001{bottom:558.392844px;}
.y19e3_c00001{bottom:558.476355px;}
.y43e_c00001{bottom:558.480450px;}
.yd80_c00001{bottom:558.570450px;}
.yc9d_c00001{bottom:558.740235px;}
.y817_c00001{bottom:558.750450px;}
.ya7f_c00001{bottom:559.195365px;}
.y12c8_c00001{bottom:559.196292px;}
.y159c_c00001{bottom:559.196949px;}
.yacc_c00001{bottom:559.197012px;}
.y1a63_c00001{bottom:559.290981px;}
.y1a09_c00001{bottom:559.291638px;}
.y1169_c00001{bottom:559.462980px;}
.y2020_c00001{bottom:559.471170px;}
.y6a8_c00001{bottom:559.560450px;}
.y37c_c00001{bottom:559.740450px;}
.y6dc_c00001{bottom:559.830450px;}
.y395_c00001{bottom:559.920450px;}
.y2040_c00001{bottom:560.101662px;}
.y94c_c00001{bottom:560.183565px;}
.y9b3_c00001{bottom:560.185212px;}
.y1815_c00001{bottom:560.276949px;}
.y1086_c00001{bottom:560.277606px;}
.y1d28_c00001{bottom:560.282277px;}
.y5ca_c00001{bottom:560.370450px;}
.y1880_c00001{bottom:560.459847px;}
.y14e4_c00001{bottom:560.637669px;}
.y2e7_c00001{bottom:560.640450px;}
.y1602_c00001{bottom:561.087723px;}
.yff8_c00001{bottom:561.357606px;}
.y707_c00001{bottom:561.540450px;}
.y226d_c00001{bottom:561.631116px;}
.y13a9_c00001{bottom:561.718983px;}
.y1d76_c00001{bottom:561.722835px;}
.y1e48_c00001{bottom:561.806535px;}
.y1651_c00001{bottom:561.899091px;}
.y425_c00001{bottom:561.900450px;}
.yb4b_c00001{bottom:561.982089px;}
.y167b_c00001{bottom:561.990450px;}
.ybcf_c00001{bottom:562.071027px;}
.y1a84_c00001{bottom:562.167723px;}
.y17d2_c00001{bottom:562.168380px;}
.y11ec_c00001{bottom:562.434411px;}
.y19c0_c00001{bottom:562.438263px;}
.y1d4f_c00001{bottom:562.532952px;}
.y514_c00001{bottom:562.800450px;}
.y146_c00001{bottom:562.890450px;}
.y1cba_c00001{bottom:562.892826px;}
.y658_c00001{bottom:562.980450px;}
.y127f_c00001{bottom:563.248380px;}
.y233b_c00001{bottom:563.252889px;}
.y1ed2_c00001{bottom:563.514411px;}
.y11cf_c00001{bottom:563.515068px;}
.y1be1_c00001{bottom:563.518920px;}
.y24ef_c00001{bottom:563.610450px;}
.y16cb_c00001{bottom:563.965968px;}
.y2254_c00001{bottom:563.972826px;}
.y5de_c00001{bottom:564.060450px;}
.yf96_c00001{bottom:564.239514px;}
.y7ed_c00001{bottom:564.420450px;}
.y643_c00001{bottom:564.512421px;}
.y7d_c00001{bottom:564.600450px;}
.y21dc_c00001{bottom:564.601044px;}
.y1a47_c00001{bottom:564.687786px;}
.y2357_c00001{bottom:565.050459px;}
.y20e6_c00001{bottom:565.050783px;}
.y2159_c00001{bottom:565.051125px;}
.y56b_c00001{bottom:565.140450px;}
.ye4a_c00001{bottom:565.141881px;}
.y678_c00001{bottom:565.230450px;}
.yc2a_c00001{bottom:565.313970px;}
.y176e_c00001{bottom:565.315662px;}
.y715_c00001{bottom:565.320450px;}
.y6ba_c00001{bottom:565.590450px;}
.yd29_c00001{bottom:565.608738px;}
.yd56_c00001{bottom:565.636386px;}
.y1541_c00001{bottom:565.676382px;}
.y774_c00001{bottom:565.680450px;}
.y2466_c00001{bottom:565.680891px;}
.y1ab6_c00001{bottom:566.130288px;}
.y1a31_c00001{bottom:566.222817px;}
.y10af_c00001{bottom:566.306139px;}
.y38_c00001{bottom:566.310450px;}
.y1512_c00001{bottom:566.395662px;}
.y149b_c00001{bottom:566.396319px;}
.y1385_c00001{bottom:566.662350px;}
.y3b4_c00001{bottom:566.670450px;}
.yee1_c00001{bottom:566.850666px;}
.ya96_c00001{bottom:567.209667px;}
.y1ae0_c00001{bottom:567.210288px;}
.y10f2_c00001{bottom:567.386796px;}
.y84b_c00001{bottom:567.390450px;}
.y1561_c00001{bottom:567.476319px;}
.y18cd_c00001{bottom:567.476976px;}
.y486_c00001{bottom:567.480450px;}
.y750_c00001{bottom:567.570450px;}
.yaff_c00001{bottom:567.656544px;}
.y1cd5_c00001{bottom:567.659217px;}
.yae_c00001{bottom:567.660450px;}
.y1dd8_c00001{bottom:567.743007px;}
.y17b2_c00001{bottom:567.748830px;}
.y1fe5_c00001{bottom:567.750495px;}
.y22a4_c00001{bottom:567.752871px;}
.y1b24_c00001{bottom:567.928974px;}
.y5f5_c00001{bottom:568.020450px;}
.y989_c00001{bottom:568.196220px;}
.ya5a_c00001{bottom:568.197867px;}
.ya31_c00001{bottom:568.199514px;}
.y78b_c00001{bottom:568.200450px;}
.y3d1_c00001{bottom:568.290450px;}
.y2059_c00001{bottom:568.471170px;}
.y15d_c00001{bottom:568.560450px;}
.y1967_c00001{bottom:568.741377px;}
.y936_c00001{bottom:569.184420px;}
.yb84_c00001{bottom:569.185005px;}
.y16b9_c00001{bottom:569.277570px;}
.y1f91_c00001{bottom:569.280675px;}
.y2389_c00001{bottom:569.281287px;}
.y111a_c00001{bottom:569.453421px;}
.y1373_c00001{bottom:569.543601px;}
.y1f13_c00001{bottom:569.549613px;}
.y1e71_c00001{bottom:569.637633px;}
.y5b_c00001{bottom:569.640450px;}
.y614_c00001{bottom:569.730450px;}
.y22d9_c00001{bottom:569.820927px;}
.y17c_c00001{bottom:569.910450px;}
.y1e2d_c00001{bottom:570.000450px;}
.y2127_c00001{bottom:570.001188px;}
.y974_c00001{bottom:570.082035px;}
.yba6_c00001{bottom:570.083682px;}
.y183a_c00001{bottom:570.357570px;}
.y11b1_c00001{bottom:570.358227px;}
.y1311_c00001{bottom:570.623601px;}
.y133b_c00001{bottom:570.717876px;}
.y297_c00001{bottom:570.810450px;}
.y16f3_c00001{bottom:570.899415px;}
.ybff_c00001{bottom:571.071882px;}
.y800_c00001{bottom:571.080450px;}
.y2481_c00001{bottom:571.168344px;}
.y169a_c00001{bottom:571.259775px;}
.y1936_c00001{bottom:571.438884px;}
.y2ef_c00001{bottom:571.530450px;}
.y2436_c00001{bottom:571.532916px;}
.y1d97_c00001{bottom:571.621125px;}
.y157c_c00001{bottom:571.704915px;}
.y262_c00001{bottom:571.800450px;}
.y207c_c00001{bottom:571.981359px;}
.y250b_c00001{bottom:572.160450px;}
.y17fe_c00001{bottom:572.248344px;}
.y18f4_c00001{bottom:572.249001px;}
.y4cf_c00001{bottom:572.250450px;}
.y214e_c00001{bottom:572.430450px;}
.ycc3_c00001{bottom:572.446290px;}
.ycf4_c00001{bottom:572.477394px;}
.y1548_c00001{bottom:572.515032px;}
.y469_c00001{bottom:572.880450px;}
.y339_c00001{bottom:572.970450px;}
.y4e5_c00001{bottom:572.970600px;}
.y2214_c00001{bottom:572.972790px;}
.y2322_c00001{bottom:573.331116px;}
.y216e_c00001{bottom:573.331152px;}
.y2d4_c00001{bottom:573.510450px;}
.y621_c00001{bottom:573.511107px;}
.y170c_c00001{bottom:573.595032px;}
.y135b_c00001{bottom:573.595689px;}
.y1f74_c00001{bottom:573.780450px;}
.ye79_c00001{bottom:573.780864px;}
.yeb2_c00001{bottom:573.781665px;}
.ye15_c00001{bottom:573.782907px;}
.y178e_c00001{bottom:573.861720px;}
.y1df2_c00001{bottom:573.871584px;}
.y1f35_c00001{bottom:574.050450px;}
.y6ee_c00001{bottom:574.140450px;}
.y15df_c00001{bottom:574.320135px;}
.y23cd_c00001{bottom:574.502844px;}
.y75e_c00001{bottom:574.590450px;}
.y1c80_c00001{bottom:574.675689px;}
.yfc7_c00001{bottom:574.680198px;}
.y1c67_c00001{bottom:574.768407px;}
.y1411_c00001{bottom:574.945815px;}
.y2bc_c00001{bottom:574.950450px;}
.y1ad_c00001{bottom:575.220450px;}
.y3e7_c00001{bottom:575.310450px;}
.y120c_c00001{bottom:575.396283px;}
.y1026_c00001{bottom:575.400135px;}
.y20a8_c00001{bottom:575.400648px;}
.y219a_c00001{bottom:575.400738px;}
.ydd9_c00001{bottom:575.492502px;}
.y661_c00001{bottom:575.670450px;}
.y143a_c00001{bottom:575.757003px;}
.y19_c00001{bottom:575.850450px;}
.y7d8_c00001{bottom:575.940450px;}
.y13cf_c00001{bottom:576.026886px;}
.y24f_c00001{bottom:576.120450px;}
.y1055_c00001{bottom:576.386760px;}
.yda7_c00001{bottom:576.390450px;}
.y12c7_c00001{bottom:576.476283px;}
.y159b_c00001{bottom:576.476940px;}
.y30f_c00001{bottom:576.660600px;}
.y1168_c00001{bottom:576.742971px;}
.y201f_c00001{bottom:576.751161px;}
.y230c_c00001{bottom:576.752835px;}
.y57d_c00001{bottom:576.840600px;}
.y24ce_c00001{bottom:577.020450px;}
.yb62_c00001{bottom:577.197075px;}
.y1c0d_c00001{bottom:577.199478px;}
.y7b2_c00001{bottom:577.470450px;}
.y1d27_c00001{bottom:577.472088px;}
.y1233_c00001{bottom:577.556940px;}
.y1bb3_c00001{bottom:577.557597px;}
.y1e9c_c00001{bottom:578.009595px;}
.y1c3b_c00001{bottom:578.010378px;}
.y249f_c00001{bottom:578.100450px;}
.yadf_c00001{bottom:578.185275px;}
.y1db1_c00001{bottom:578.277534px;}
.y21c3_c00001{bottom:578.282889px;}
.yff7_c00001{bottom:578.547417px;}
.y1b42_c00001{bottom:578.637597px;}
.yd5_c00001{bottom:578.640450px;}
.y226c_c00001{bottom:578.820927px;}
.y13a8_c00001{bottom:578.908794px;}
.y2370_c00001{bottom:579.002826px;}
.y90e_c00001{bottom:579.082890px;}
.y9b2_c00001{bottom:579.084537px;}
.y1a83_c00001{bottom:579.357534px;}
.y17d1_c00001{bottom:579.358191px;}
.y12e4_c00001{bottom:579.624222px;}
.y1fc9_c00001{bottom:579.720450px;}
.y40e_c00001{bottom:579.810450px;}
.ybec_c00001{bottom:580.072737px;}
.y4f9_c00001{bottom:580.080450px;}
.y7ca_c00001{bottom:580.170450px;}
.y2097_c00001{bottom:580.171170px;}
.y1cb9_c00001{bottom:580.172817px;}
.y879_c00001{bottom:580.350450px;}
.y127e_c00001{bottom:580.438191px;}
.y2289_c00001{bottom:580.532880px;}
.y9ea_c00001{bottom:580.616130px;}
.y129e_c00001{bottom:580.704222px;}
.y1141_c00001{bottom:580.704879px;}
.y72d_c00001{bottom:580.710450px;}
.y217_c00001{bottom:580.800450px;}
.y32c_c00001{bottom:580.890450px;}
.yb4a_c00001{bottom:580.971999px;}
.y35b_c00001{bottom:581.250450px;}
.y2253_c00001{bottom:581.252817px;}
.y4c3_c00001{bottom:581.340450px;}
.yf95_c00001{bottom:581.519505px;}
.y103_c00001{bottom:581.703834px;}
.y21db_c00001{bottom:581.881035px;}
.yf37_c00001{bottom:581.968596px;}
.y68d_c00001{bottom:581.970450px;}
.y89b_c00001{bottom:582.060450px;}
.y43d_c00001{bottom:582.150450px;}
.y2006_c00001{bottom:582.240450px;}
.y2356_c00001{bottom:582.330450px;}
.y2108_c00001{bottom:582.330600px;}
.y20c9_c00001{bottom:582.331116px;}
.y816_c00001{bottom:582.420450px;}
.ye49_c00001{bottom:582.421872px;}
.y10cb_c00001{bottom:582.505473px;}
.y4a6_c00001{bottom:582.512421px;}
.y15ac_c00001{bottom:582.595653px;}
.y167a_c00001{bottom:582.690450px;}
.y1f51_c00001{bottom:582.871314px;}
.y8e5_c00001{bottom:582.954390px;}
.y6a7_c00001{bottom:583.140450px;}
.y1ab5_c00001{bottom:583.320099px;}
.y37b_c00001{bottom:583.320450px;}
.y6db_c00001{bottom:583.410450px;}
.yd7f_c00001{bottom:583.500450px;}
.y394_c00001{bottom:583.590450px;}
.y118d_c00001{bottom:583.675653px;}
.y149a_c00001{bottom:583.676310px;}
.y23d9_c00001{bottom:583.680765px;}
.y3a6_c00001{bottom:583.770450px;}
.y2440_c00001{bottom:583.860540px;}
.y1384_c00001{bottom:583.942341px;}
.y5c9_c00001{bottom:583.950450px;}
.y1f3_c00001{bottom:584.130450px;}
.yee0_c00001{bottom:584.130657px;}
.yc29_c00001{bottom:584.213295px;}
.y185d_c00001{bottom:584.220450px;}
.y2dd_c00001{bottom:584.310450px;}
.y1628_c00001{bottom:584.311422px;}
.y198f_c00001{bottom:584.400099px;}
.yf66_c00001{bottom:584.666787px;}
.y13f1_c00001{bottom:584.672799px;}
.y1560_c00001{bottom:584.756310px;}
.y14bd_c00001{bottom:584.756967px;}
.y1cd4_c00001{bottom:584.849028px;}
.y1dd7_c00001{bottom:585.022998px;}
.y17b1_c00001{bottom:585.028821px;}
.y5ac_c00001{bottom:585.120450px;}
.yd28_c00001{bottom:585.408162px;}
.yd55_c00001{bottom:585.435810px;}
.y1824_c00001{bottom:585.476904px;}
.y424_c00001{bottom:585.480450px;}
.y1a08_c00001{bottom:585.481413px;}
.y2058_c00001{bottom:585.751161px;}
.y19e2_c00001{bottom:585.836967px;}
.y1966_c00001{bottom:586.021368px;}
.ya10_c00001{bottom:586.197930px;}
.ya95_c00001{bottom:586.199577px;}
.y642_c00001{bottom:586.201764px;}
.y82d_c00001{bottom:586.280235px;}
.y203f_c00001{bottom:586.381617px;}
.y2388_c00001{bottom:586.471098px;}
.y16b8_c00001{bottom:586.557561px;}
.y145_c00001{bottom:586.560450px;}
.y1a62_c00001{bottom:586.561413px;}
.y1520_c00001{bottom:586.823592px;}
.y1e70_c00001{bottom:586.917624px;}
.y218c_c00001{bottom:587.010450px;}
.y22d8_c00001{bottom:587.100918px;}
.y988_c00001{bottom:587.186130px;}
.ya59_c00001{bottom:587.187777px;}
.ya30_c00001{bottom:587.189424px;}
.y2126_c00001{bottom:587.281179px;}
.y1085_c00001{bottom:587.548038px;}
.yf0e_c00001{bottom:587.551881px;}
.y1814_c00001{bottom:587.637561px;}
.y11b0_c00001{bottom:587.638218px;}
.y5dd_c00001{bottom:587.640450px;}
.y187f_c00001{bottom:587.820459px;}
.y1310_c00001{bottom:587.903592px;}
.y14e3_c00001{bottom:587.908101px;}
.y133a_c00001{bottom:587.997867px;}
.y1d75_c00001{bottom:588.002790px;}
.y935_c00001{bottom:588.083745px;}
.yc81_c00001{bottom:588.085392px;}
.y7ec_c00001{bottom:588.090450px;}
.y54f_c00001{bottom:588.180450px;}
.y7c_c00001{bottom:588.270450px;}
.y1601_c00001{bottom:588.358155px;}
.y1699_c00001{bottom:588.449586px;}
.y1b57_c00001{bottom:588.718218px;}
.y1935_c00001{bottom:588.718875px;}
.y1d4e_c00001{bottom:588.722727px;}
.y56a_c00001{bottom:588.810450px;}
.y1d96_c00001{bottom:588.901116px;}
.y157b_c00001{bottom:588.984906px;}
.y1e47_c00001{bottom:589.167147px;}
.y6b9_c00001{bottom:589.170450px;}
.y207b_c00001{bottom:589.171170px;}
.y1650_c00001{bottom:589.259703px;}
.y773_c00001{bottom:589.350450px;}
.y17fd_c00001{bottom:589.438155px;}
.y18f3_c00001{bottom:589.438812px;}
.y23f3_c00001{bottom:589.532844px;}
.y11eb_c00001{bottom:589.704843px;}
.y19bf_c00001{bottom:589.798875px;}
.y37_c00001{bottom:589.890450px;}
.ybce_c00001{bottom:590.061792px;}
.y16ca_c00001{bottom:590.245923px;}
.y3b3_c00001{bottom:590.250450px;}
.y2213_c00001{bottom:590.252781px;}
.y1a96_c00001{bottom:590.518812px;}
.y2321_c00001{bottom:590.520927px;}
.y1e2c_c00001{bottom:590.700450px;}
.y170b_c00001{bottom:590.784843px;}
.y11ce_c00001{bottom:590.785500px;}
.ye78_c00001{bottom:590.970675px;}
.yeb1_c00001{bottom:590.971476px;}
.ye14_c00001{bottom:590.972718px;}
.y178d_c00001{bottom:591.051531px;}
.y84a_c00001{bottom:591.060450px;}
.y485_c00001{bottom:591.150450px;}
.y8ce_c00001{bottom:591.241125px;}
.y20e5_c00001{bottom:591.330738px;}
.y15de_c00001{bottom:591.600126px;}
.yfc6_c00001{bottom:591.870009px;}
.y3d0_c00001{bottom:591.870450px;}
.y79d_c00001{bottom:591.960450px;}
.y2465_c00001{bottom:591.960846px;}
.y1a46_c00001{bottom:592.048398px;}
.y15c_c00001{bottom:592.140450px;}
.ycc2_c00001{bottom:592.335570px;}
.ycf3_c00001{bottom:592.366674px;}
.y1a30_c00001{bottom:592.502772px;}
.y10ae_c00001{bottom:592.586094px;}
.y176d_c00001{bottom:592.676274px;}
.y1025_c00001{bottom:592.680126px;}
.y20a7_c00001{bottom:592.680639px;}
.y2199_c00001{bottom:592.680729px;}
.ydd8_c00001{bottom:592.772493px;}
.y1540_c00001{bottom:592.946814px;}
.y5a_c00001{bottom:593.310450px;}
.y1adf_c00001{bottom:593.400063px;}
.y17b_c00001{bottom:593.490450px;}
.y1054_c00001{bottom:593.666751px;}
.y12c6_c00001{bottom:593.756274px;}
.y159a_c00001{bottom:593.756931px;}
.y1167_c00001{bottom:594.022962px;}
.y1fe4_c00001{bottom:594.030450px;}
.y22ef_c00001{bottom:594.031152px;}
.y22a3_c00001{bottom:594.032826px;}
.y296_c00001{bottom:594.390450px;}
.y1c0c_c00001{bottom:594.479469px;}
.y10f1_c00001{bottom:594.747408px;}
.y1d26_c00001{bottom:594.752079px;}
.y1c98_c00001{bottom:594.836931px;}
.y1bb2_c00001{bottom:594.837588px;}
.y1b23_c00001{bottom:595.199406px;}
.y620_c00001{bottom:595.200450px;}
.y1c3a_c00001{bottom:595.290369px;}
.y450_c00001{bottom:595.380450px;}
.y261_c00001{bottom:595.470450px;}
.y1db0_c00001{bottom:595.557525px;}
.yafe_c00001{bottom:595.647309px;}
.y1f12_c00001{bottom:595.739388px;}
.y250a_c00001{bottom:595.830450px;}
.y1b41_c00001{bottom:595.917588px;}
.y226b_c00001{bottom:596.100918px;}
.yb1b_c00001{bottom:596.186985px;}
.y13a7_c00001{bottom:596.188785px;}
.y2417_c00001{bottom:596.282817px;}
.y468_c00001{bottom:596.460450px;}
.y1a82_c00001{bottom:596.637525px;}
.y17d0_c00001{bottom:596.638182px;}
.y4e4_c00001{bottom:596.640600px;}
.y714_c00001{bottom:596.730450px;}
.y1119_c00001{bottom:596.814033px;}
.y7ff_c00001{bottom:596.820450px;}
.y12e3_c00001{bottom:596.904213px;}
.yaaf_c00001{bottom:597.084600px;}
.yb83_c00001{bottom:597.085185px;}
.y2d3_c00001{bottom:597.090450px;}
.y2096_c00001{bottom:597.451161px;}
.y1cb8_c00001{bottom:597.452808px;}
.y127d_c00001{bottom:597.718182px;}
.y1afe_c00001{bottom:597.718839px;}
.y2288_c00001{bottom:597.722691px;}
.y6ed_c00001{bottom:597.810450px;}
.y677_c00001{bottom:597.900450px;}
.y14fb_c00001{bottom:597.984213px;}
.y1455_c00001{bottom:597.984870px;}
.y94b_c00001{bottom:598.072800px;}
.yba5_c00001{bottom:598.074447px;}
.y22ba_c00001{bottom:598.171134px;}
.y16f2_c00001{bottom:598.260027px;}
.y2252_c00001{bottom:598.532808px;}
.y2bb_c00001{bottom:598.620450px;}
.yf94_c00001{bottom:598.709316px;}
.y1ac_c00001{bottom:598.800450px;}
.yad_c00001{bottom:598.890450px;}
.ybfe_c00001{bottom:599.062647px;}
.y21da_c00001{bottom:599.070846px;}
.y5f4_c00001{bottom:599.250450px;}
.y20c8_c00001{bottom:599.520927px;}
.y9e9_c00001{bottom:599.606040px;}
.ye48_c00001{bottom:599.611683px;}
.y10ca_c00001{bottom:599.695284px;}
.y1591_c00001{bottom:599.785464px;}
.y24e_c00001{bottom:599.790450px;}
.yda6_c00001{bottom:600.060450px;}
.y1df1_c00001{bottom:600.061359px;}
.y74f_c00001{bottom:600.150450px;}
.y30e_c00001{bottom:600.240600px;}
.y1f34_c00001{bottom:600.330648px;}
.y57c_c00001{bottom:600.510600px;}
.y1ab4_c00001{bottom:600.600090px;}
.y24b3_c00001{bottom:600.600450px;}
.y1fb6_c00001{bottom:600.780450px;}
.y23cc_c00001{bottom:600.782799px;}
.y1511_c00001{bottom:600.865464px;}
.y135a_c00001{bottom:600.866121px;}
.y7b1_c00001{bottom:601.140450px;}
.yedf_c00001{bottom:601.320468px;}
.y198e_c00001{bottom:601.680090px;}
.y249e_c00001{bottom:601.770450px;}
.yf65_c00001{bottom:601.856598px;}
.y1bf9_c00001{bottom:601.946121px;}
.y1439_c00001{bottom:601.946778px;}
.y1cd3_c00001{bottom:602.129019px;}
.y214d_c00001{bottom:602.130450px;}
.y1410_c00001{bottom:602.306427px;}
.y17b0_c00001{bottom:602.308812px;}
.yd4_c00001{bottom:602.310450px;}
.y120b_c00001{bottom:602.756895px;}
.y1a07_c00001{bottom:602.761404px;}
.y19e1_c00001{bottom:603.026778px;}
.y201e_c00001{bottom:603.031116px;}
.y2057_c00001{bottom:603.031152px;}
.y230b_c00001{bottom:603.032790px;}
.y13ce_c00001{bottom:603.387498px;}
.y40d_c00001{bottom:603.390450px;}
.y102_c00001{bottom:603.393177px;}
.y1f73_c00001{bottom:603.480450px;}
.y4ce_c00001{bottom:603.750450px;}
.y2387_c00001{bottom:603.751089px;}
.y19ad_c00001{bottom:603.836895px;}
.y16b7_c00001{bottom:603.837552px;}
.y7c9_c00001{bottom:603.840450px;}
.y1a61_c00001{bottom:603.841404px;}
.y878_c00001{bottom:604.020450px;}
.y151f_c00001{bottom:604.103583px;}
.y1e6f_c00001{bottom:604.107435px;}
.y2ee_c00001{bottom:604.110450px;}
.y4a5_c00001{bottom:604.201764px;}
.y72c_c00001{bottom:604.290450px;}
.y22d7_c00001{bottom:604.380909px;}
.y216_c00001{bottom:604.470450px;}
.y2125_c00001{bottom:604.470990px;}
.y21c2_c00001{bottom:604.472664px;}
.y53e_c00001{bottom:604.560450px;}
.yf0d_c00001{bottom:604.831872px;}
.y1232_c00001{bottom:604.917552px;}
.y11af_c00001{bottom:604.918209px;}
.y187e_c00001{bottom:605.010270px;}
.y4c2_c00001{bottom:605.010450px;}
.y1339_c00001{bottom:605.187678px;}
.ya0f_c00001{bottom:605.187840px;}
.ya94_c00001{bottom:605.189487px;}
.yd27_c00001{bottom:605.207586px;}
.yd54_c00001{bottom:605.235234px;}
.y1d74_c00001{bottom:605.282781px;}
.y1600_c00001{bottom:605.638146px;}
.y68c_c00001{bottom:605.640450px;}
.y43c_c00001{bottom:605.730450px;}
.yff6_c00001{bottom:605.908029px;}
.y1934_c00001{bottom:605.908686px;}
.y815_c00001{bottom:606.000450px;}
.y1d4d_c00001{bottom:606.002718px;}
.ya7e_c00001{bottom:606.085455px;}
.ya58_c00001{bottom:606.087102px;}
.y1d95_c00001{bottom:606.090927px;}
.y164f_c00001{bottom:606.449514px;}
.y207a_c00001{bottom:606.451161px;}
.y1b92_c00001{bottom:606.718146px;}
.y18f2_c00001{bottom:606.718803px;}
.y23f2_c00001{bottom:606.722655px;}
.y6a6_c00001{bottom:606.810450px;}
.yc9c_c00001{bottom:606.982269px;}
.y146e_c00001{bottom:606.984834px;}
.y19be_c00001{bottom:606.988686px;}
.y37a_c00001{bottom:606.990450px;}
.y90d_c00001{bottom:607.073655px;}
.y9b1_c00001{bottom:607.075302px;}
.y6da_c00001{bottom:607.080450px;}
.y393_c00001{bottom:607.170450px;}
.y75d_c00001{bottom:607.260450px;}
.y7d7_c00001{bottom:607.350108px;}
.y2212_c00001{bottom:607.532772px;}
.y5c8_c00001{bottom:607.620450px;}
.y24de_c00001{bottom:607.710450px;}
.y1a95_c00001{bottom:607.798803px;}
.y2320_c00001{bottom:607.800918px;}
.y2dc_c00001{bottom:607.890450px;}
.y641_c00001{bottom:607.891107px;}
.ybeb_c00001{bottom:608.063502px;}
.y129d_c00001{bottom:608.064834px;}
.y1140_c00001{bottom:608.065491px;}
.ye77_c00001{bottom:608.250666px;}
.yeb0_c00001{bottom:608.251467px;}
.ye13_c00001{bottom:608.252709px;}
.y18_c00001{bottom:608.520450px;}
.y706_c00001{bottom:608.790450px;}
.y15dd_c00001{bottom:608.880117px;}
.yb49_c00001{bottom:609.051702px;}
.yfc5_c00001{bottom:609.150000px;}
.y423_c00001{bottom:609.150450px;}
.y2464_c00001{bottom:609.150657px;}
.y1f50_c00001{bottom:609.151269px;}
.y2355_c00001{bottom:609.240450px;}
.y1c66_c00001{bottom:609.328389px;}
.yf36_c00001{bottom:609.329208px;}
.y1b68_c00001{bottom:609.866085px;}
.y1024_c00001{bottom:609.869937px;}
.y20a6_c00001{bottom:609.870450px;}
.y2198_c00001{bottom:609.870540px;}
.ydd7_c00001{bottom:609.962304px;}
.y8cd_c00001{bottom:610.140450px;}
.y243f_c00001{bottom:610.140495px;}
.y144_c00001{bottom:610.230450px;}
.y1627_c00001{bottom:610.591377px;}
.y1ade_c00001{bottom:610.680054px;}
.y252c_c00001{bottom:610.860450px;}
.y8e4_c00001{bottom:610.945155px;}
.y118c_c00001{bottom:610.946085px;}
.y1053_c00001{bottom:610.946742px;}
.y13f0_c00001{bottom:610.952754px;}
.y1166_c00001{bottom:611.212773px;}
.y22ee_c00001{bottom:611.220963px;}
.y5dc_c00001{bottom:611.310450px;}
.y1e2b_c00001{bottom:611.400450px;}
.y7eb_c00001{bottom:611.670450px;}
.y7b_c00001{bottom:611.850450px;}
.y2005_c00001{bottom:611.940450px;}
.y155f_c00001{bottom:612.026742px;}
.y14bc_c00001{bottom:612.027399px;}
.y2107_c00001{bottom:612.030600px;}
.y1d25_c00001{bottom:612.032070px;}
.ycc1_c00001{bottom:612.134994px;}
.ycf2_c00001{bottom:612.166098px;}
.yc28_c00001{bottom:612.204060px;}
.y1dd6_c00001{bottom:612.293430px;}
.y1965_c00001{bottom:612.301323px;}
.y569_c00001{bottom:612.390450px;}
.y1b22_c00001{bottom:612.479397px;}
.y203e_c00001{bottom:612.571392px;}
.y1f8f_c00001{bottom:612.751053px;}
.y1823_c00001{bottom:612.837516px;}
.y6b8_c00001{bottom:612.840450px;}
.y772_c00001{bottom:612.930450px;}
.y1b40_c00001{bottom:613.107399px;}
.y226a_c00001{bottom:613.380909px;}
.y13a6_c00001{bottom:613.468776px;}
.y2234_c00001{bottom:613.472628px;}
.y32b_c00001{bottom:613.560450px;}
.y1a81_c00001{bottom:613.917516px;}
.y17cf_c00001{bottom:613.918173px;}
.y35a_c00001{bottom:613.920450px;}
.y1118_c00001{bottom:614.094024px;}
.y12e2_c00001{bottom:614.184204px;}
.y849_c00001{bottom:614.640450px;}
.y1cb7_c00001{bottom:614.642619px;}
.y1698_c00001{bottom:614.729541px;}
.y484_c00001{bottom:614.730450px;}
.y2095_c00001{bottom:614.731152px;}
.y1839_c00001{bottom:614.907993px;}
.y1084_c00001{bottom:614.908650px;}
.y127c_c00001{bottom:614.998173px;}
.y2287_c00001{bottom:615.002682px;}
.y987_c00001{bottom:615.086310px;}
.yc4c_c00001{bottom:615.087957px;}
.ya2f_c00001{bottom:615.089604px;}
.y130f_c00001{bottom:615.264204px;}
.y1454_c00001{bottom:615.264861px;}
.y14e2_c00001{bottom:615.268713px;}
.y16f1_c00001{bottom:615.449838px;}
.y78a_c00001{bottom:615.450450px;}
.y22b9_c00001{bottom:615.451125px;}
.y3cf_c00001{bottom:615.540450px;}
.y2480_c00001{bottom:615.718767px;}
.y2251_c00001{bottom:615.722619px;}
.y15b_c00001{bottom:615.810450px;}
.y1b56_c00001{bottom:615.988650px;}
.yf93_c00001{bottom:615.989307px;}
.y934_c00001{bottom:616.074510px;}
.y3a5_c00001{bottom:616.350450px;}
.y21d9_c00001{bottom:616.350837px;}
.y16c9_c00001{bottom:616.435698px;}
.y1e46_c00001{bottom:616.437579px;}
.y218b_c00001{bottom:616.710450px;}
.y17fc_c00001{bottom:616.798767px;}
.y20c7_c00001{bottom:616.800918px;}
.y19e_c00001{bottom:616.890450px;}
.ye47_c00001{bottom:616.891674px;}
.y9c8_c00001{bottom:617.062710px;}
.yba4_c00001{bottom:617.064357px;}
.y11ea_c00001{bottom:617.065455px;}
.y17a_c00001{bottom:617.160450px;}
.y1f33_c00001{bottom:617.520459px;}
.y5ab_c00001{bottom:617.790600px;}
.y1ab3_c00001{bottom:617.880081px;}
.ybfd_c00001{bottom:618.052557px;}
.y170a_c00001{bottom:618.145455px;}
.y11cd_c00001{bottom:618.146112px;}
.y20e4_c00001{bottom:618.240450px;}
.y178c_c00001{bottom:618.412143px;}
.yede_c00001{bottom:618.600459px;}
.y1a2f_c00001{bottom:618.782727px;}
.y198d_c00001{bottom:618.960081px;}
.y260_c00001{bottom:619.050450px;}
.yf64_c00001{bottom:619.136589px;}
.y1bf8_c00001{bottom:619.226112px;}
.y1438_c00001{bottom:619.226769px;}
.y1a45_c00001{bottom:619.409010px;}
.y2509_c00001{bottom:619.410450px;}
.y140f_c00001{bottom:619.586418px;}
.y10ad_c00001{bottom:619.946706px;}
.y1a06_c00001{bottom:620.041395px;}
.y467_c00001{bottom:620.130450px;}
.y4e3_c00001{bottom:620.220600px;}
.y201d_c00001{bottom:620.220927px;}
.y2056_c00001{bottom:620.220963px;}
.y22a2_c00001{bottom:620.222601px;}
.y19e0_c00001{bottom:620.306769px;}
.y153f_c00001{bottom:620.307426px;}
.y13cd_c00001{bottom:620.577309px;}
.y1c0b_c00001{bottom:620.759424px;}
.y2d2_c00001{bottom:620.760450px;}
.y1fe3_c00001{bottom:620.940450px;}
.y1e80_c00001{bottom:621.026706px;}
.y16b6_c00001{bottom:621.027363px;}
.y2386_c00001{bottom:621.031080px;}
.y1a60_c00001{bottom:621.121395px;}
.y151e_c00001{bottom:621.293394px;}
.y1e6e_c00001{bottom:621.387426px;}
.y6ec_c00001{bottom:621.390450px;}
.y676_c00001{bottom:621.480450px;}
.y1c39_c00001{bottom:621.570324px;}
.y2124_c00001{bottom:621.750981px;}
.y1f11_c00001{bottom:622.019343px;}
.yf0c_c00001{bottom:622.021683px;}
.y1231_c00001{bottom:622.107363px;}
.y10f0_c00001{bottom:622.108020px;}
.y2ba_c00001{bottom:622.200450px;}
.y187d_c00001{bottom:622.290261px;}
.y1ab_c00001{bottom:622.470450px;}
.y1d73_c00001{bottom:622.472592px;}
.y36_c00001{bottom:622.560450px;}
.y15ff_c00001{bottom:622.918137px;}
.y1cea_c00001{bottom:623.188020px;}
.y1d4c_c00001{bottom:623.282709px;}
.y24d_c00001{bottom:623.370450px;}
.y1d94_c00001{bottom:623.370918px;}
.yafd_c00001{bottom:623.638074px;}
.y164e_c00001{bottom:623.729505px;}
.yda5_c00001{bottom:623.730450px;}
.y2079_c00001{bottom:623.731152px;}
.y74e_c00001{bottom:623.820450px;}
.y30d_c00001{bottom:623.910600px;}
.y1afd_c00001{bottom:623.998794px;}
.y23f1_c00001{bottom:624.002646px;}
.y1679_c00001{bottom:624.090450px;}
.y57b_c00001{bottom:624.090600px;}
.y2ed_c00001{bottom:624.180450px;}
.y1372_c00001{bottom:624.264825px;}
.y1be0_c00001{bottom:624.268677px;}
.y24b2_c00001{bottom:624.270450px;}
.y2211_c00001{bottom:624.722583px;}
.y7b0_c00001{bottom:624.810450px;}
.y1a94_c00001{bottom:624.988614px;}
.y101_c00001{bottom:624.993582px;}
.yaae_c00001{bottom:625.075365px;}
.yb82_c00001{bottom:625.075950px;}
.y231f_c00001{bottom:625.080909px;}
.yd26_c00001{bottom:625.096866px;}
.yd53_c00001{bottom:625.124514px;}
.y129c_c00001{bottom:625.344825px;}
.y249d_c00001{bottom:625.350450px;}
.ye76_c00001{bottom:625.530657px;}
.yeaf_c00001{bottom:625.531458px;}
.ye12_c00001{bottom:625.532700px;}
.y59_c00001{bottom:625.890450px;}
.y4a4_c00001{bottom:625.891107px;}
.y613_c00001{bottom:625.980450px;}
.y94a_c00001{bottom:626.063565px;}
.y9b0_c00001{bottom:626.065212px;}
.y15dc_c00001{bottom:626.069928px;}
.y1df0_c00001{bottom:626.341314px;}
.yfc4_c00001{bottom:626.429991px;}
.y2463_c00001{bottom:626.430648px;}
.yf35_c00001{bottom:626.519019px;}
.y61f_c00001{bottom:626.520450px;}
.y23cb_c00001{bottom:626.972574px;}
.y10c9_c00001{bottom:627.055896px;}
.y295_c00001{bottom:627.060450px;}
.y1590_c00001{bottom:627.146076px;}
.ydd6_c00001{bottom:627.242295px;}
.y4f8_c00001{bottom:627.330450px;}
.y7c8_c00001{bottom:627.420450px;}
.y9e8_c00001{bottom:627.596805px;}
.y877_c00001{bottom:627.600450px;}
.y1add_c00001{bottom:627.960045px;}
.yb48_c00001{bottom:628.041612px;}
.y215_c00001{bottom:628.140450px;}
.y118b_c00001{bottom:628.226076px;}
.y1359_c00001{bottom:628.226733px;}
.y53d_c00001{bottom:628.230450px;}
.y1165_c00001{bottom:628.492764px;}
.y22ed_c00001{bottom:628.500954px;}
.y4c1_c00001{bottom:628.590450px;}
.y1d24_c00001{bottom:629.221881px;}
.y230a_c00001{bottom:629.222565px;}
.y155e_c00001{bottom:629.306733px;}
.y14bb_c00001{bottom:629.307390px;}
.y68b_c00001{bottom:629.310450px;}
.y43b_c00001{bottom:629.400450px;}
.y1e04_c00001{bottom:629.489631px;}
.y1964_c00001{bottom:629.491134px;}
.y17af_c00001{bottom:629.579244px;}
.y4cd_c00001{bottom:629.580450px;}
.y814_c00001{bottom:629.670450px;}
.y1b21_c00001{bottom:629.759388px;}
.y8e3_c00001{bottom:629.935065px;}
.y1822_c00001{bottom:630.027327px;}
.y1f8e_c00001{bottom:630.031044px;}
.y6a5_c00001{bottom:630.390450px;}
.y1fb5_c00001{bottom:630.480450px;}
.y22d6_c00001{bottom:630.570684px;}
.y2269_c00001{bottom:630.570720px;}
.y13a5_c00001{bottom:630.658587px;}
.y379_c00001{bottom:630.660450px;}
.y6d9_c00001{bottom:630.750450px;}
.y21c1_c00001{bottom:630.752619px;}
.y19ac_c00001{bottom:631.107327px;}
.y1e14_c00001{bottom:631.107984px;}
.yc27_c00001{bottom:631.193970px;}
.y5c7_c00001{bottom:631.200450px;}
.y12e1_c00001{bottom:631.374015px;}
.y236f_c00001{bottom:631.472556px;}
.yac_c00001{bottom:631.560450px;}
.y214c_c00001{bottom:631.830450px;}
.y5f3_c00001{bottom:631.920450px;}
.y2094_c00001{bottom:631.920963px;}
.y1cb6_c00001{bottom:631.922610px;}
.ycc0_c00001{bottom:631.934418px;}
.ycf1_c00001{bottom:631.965522px;}
.y1697_c00001{bottom:632.009532px;}
.yd7e_c00001{bottom:632.010450px;}
.y17_c00001{bottom:632.100450px;}
.y127b_c00001{bottom:632.187984px;}
.y1083_c00001{bottom:632.188641px;}
.y2435_c00001{bottom:632.282673px;}
.y705_c00001{bottom:632.370450px;}
.y1453_c00001{bottom:632.454672px;}
.y1338_c00001{bottom:632.548290px;}
.y16f0_c00001{bottom:632.729829px;}
.y422_c00001{bottom:632.730450px;}
.y22b8_c00001{bottom:632.731116px;}
.y660_c00001{bottom:633.000450px;}
.y2250_c00001{bottom:633.002610px;}
.ya0e_c00001{bottom:633.088020px;}
.ya93_c00001{bottom:633.089667px;}
.y1f72_c00001{bottom:633.180450px;}
.yff5_c00001{bottom:633.268641px;}
.yf92_c00001{bottom:633.269298px;}
.y24cd_c00001{bottom:633.270450px;}
.y21d8_c00001{bottom:633.630828px;}
.y1e45_c00001{bottom:633.717570px;}
.y143_c00001{bottom:633.810450px;}
.y17fb_c00001{bottom:633.988578px;}
.y18f1_c00001{bottom:633.989235px;}
.y986_c00001{bottom:634.076220px;}
.ya57_c00001{bottom:634.077867px;}
.y20c6_c00001{bottom:634.080909px;}
.ye46_c00001{bottom:634.081485px;}
.y1258_c00001{bottom:634.345446px;}
.y82c_c00001{bottom:634.610532px;}
.y1f32_c00001{bottom:634.800450px;}
.y5db_c00001{bottom:634.890450px;}
.y90c_c00001{bottom:635.064420px;}
.yb31_c00001{bottom:635.066067px;}
.y1ab2_c00001{bottom:635.069892px;}
.y113f_c00001{bottom:635.426103px;}
.y54e_c00001{bottom:635.430450px;}
.y1f4f_c00001{bottom:635.431224px;}
.y7a_c00001{bottom:635.520450px;}
.yedd_c00001{bottom:635.880450px;}
.yc7a_c00001{bottom:636.052620px;}
.ybea_c00001{bottom:636.054267px;}
.y50b_c00001{bottom:636.060450px;}
.y198c_c00001{bottom:636.149892px;}
.y20a5_c00001{bottom:636.150495px;}
.y3a4_c00001{bottom:636.420450px;}
.y1c25_c00001{bottom:636.506103px;}
.y1437_c00001{bottom:636.506760px;}
.y604_c00001{bottom:636.509982px;}
.y1a44_c00001{bottom:636.598821px;}
.y771_c00001{bottom:636.600450px;}
.y140e_c00001{bottom:636.776229px;}
.y1626_c00001{bottom:636.871332px;}
.y72b_c00001{bottom:636.960450px;}
.y13ef_c00001{bottom:637.142529px;}
.y120a_c00001{bottom:637.226697px;}
.y8ad_c00001{bottom:637.230450px;}
.y1023_c00001{bottom:637.230549px;}
.y1a05_c00001{bottom:637.231206px;}
.y359_c00001{bottom:637.500450px;}
.y201c_c00001{bottom:637.500918px;}
.y2055_c00001{bottom:637.500954px;}
.y1c0a_c00001{bottom:637.949235px;}
.y1052_c00001{bottom:638.217174px;}
.y2385_c00001{bottom:638.220891px;}
.y12c5_c00001{bottom:638.306697px;}
.y1499_c00001{bottom:638.307354px;}
.y848_c00001{bottom:638.310450px;}
.y483_c00001{bottom:638.400450px;}
.y151d_c00001{bottom:638.573385px;}
.y75c_c00001{bottom:638.760450px;}
.y203d_c00001{bottom:638.851347px;}
.y2354_c00001{bottom:638.940450px;}
.y2123_c00001{bottom:639.030972px;}
.y3ce_c00001{bottom:639.120450px;}
.y10ef_c00001{bottom:639.297831px;}
.yf0b_c00001{bottom:639.301674px;}
.y1230_c00001{bottom:639.387354px;}
.y11ae_c00001{bottom:639.388011px;}
.y15a_c00001{bottom:639.390450px;}
.y187c_c00001{bottom:639.570252px;}
.y1dd5_c00001{bottom:639.654042px;}
.y1d72_c00001{bottom:639.752583px;}
.y392_c00001{bottom:639.840450px;}
.y15fe_c00001{bottom:640.107948px;}
.y1b3f_c00001{bottom:640.468011px;}
.yc1_c00001{bottom:640.560450px;}
.y2078_c00001{bottom:640.920963px;}
.y164d_c00001{bottom:641.009496px;}
.y17ce_c00001{bottom:641.188605px;}
.y2286_c00001{bottom:641.282637px;}
.y1117_c00001{bottom:641.364456px;}
.y5aa_c00001{bottom:641.370600px;}
.y146d_c00001{bottom:641.454636px;}
.y1bdf_c00001{bottom:641.548668px;}
.y2004_c00001{bottom:641.640450px;}
.y2106_c00001{bottom:641.730600px;}
.y2210_c00001{bottom:642.002574px;}
.y1838_c00001{bottom:642.268605px;}
.y129b_c00001{bottom:642.534636px;}
.y14e1_c00001{bottom:642.629325px;}
.y44f_c00001{bottom:642.630450px;}
.y16c8_c00001{bottom:642.715653px;}
.y25f_c00001{bottom:642.720450px;}
.ye75_c00001{bottom:642.720468px;}
.yeae_c00001{bottom:642.721269px;}
.ye11_c00001{bottom:642.722511px;}
.y247f_c00001{bottom:642.989199px;}
.ya2e_c00001{bottom:643.080369px;}
.y2508_c00001{bottom:643.080450px;}
.y15db_c00001{bottom:643.349919px;}
.y252b_c00001{bottom:643.530450px;}
.yfc3_c00001{bottom:643.619802px;}
.y185c_c00001{bottom:643.620450px;}
.y466_c00001{bottom:643.710450px;}
.yf34_c00001{bottom:643.799010px;}
.y4e2_c00001{bottom:643.890600px;}
.y933_c00001{bottom:644.065275px;}
.yb81_c00001{bottom:644.065860px;}
.y2d1_c00001{bottom:644.340450px;}
.y11e9_c00001{bottom:644.426067px;}
.ydd5_c00001{bottom:644.432106px;}
.y1678_c00001{bottom:644.790450px;}
.yd25_c00001{bottom:644.896290px;}
.yd52_c00001{bottom:644.923938px;}
.y1a2e_c00001{bottom:644.972502px;}
.y95f_c00001{bottom:645.053475px;}
.yba3_c00001{bottom:645.055122px;}
.y568_c00001{bottom:645.060450px;}
.y1adc_c00001{bottom:645.149856px;}
.y675_c00001{bottom:645.150450px;}
.y118a_c00001{bottom:645.506067px;}
.y11cc_c00001{bottom:645.506724px;}
.y6b7_c00001{bottom:645.510450px;}
.y1164_c00001{bottom:645.772755px;}
.y32a_c00001{bottom:645.960450px;}
.ybfc_c00001{bottom:646.043322px;}
.y1aa_c00001{bottom:646.050450px;}
.y35_c00001{bottom:646.230450px;}
.y218a_c00001{bottom:646.410450px;}
.yf63_c00001{bottom:646.497201px;}
.y3b2_c00001{bottom:646.500450px;}
.y22a1_c00001{bottom:646.502556px;}
.y9e7_c00001{bottom:646.586715px;}
.y155d_c00001{bottom:646.586724px;}
.y14ba_c00001{bottom:646.587381px;}
.y100_c00001{bottom:646.682925px;}
.y1963_c00001{bottom:646.771125px;}
.y1b20_c00001{bottom:646.949199px;}
.y10ac_c00001{bottom:647.217138px;}
.y1f8d_c00001{bottom:647.220855px;}
.y1821_c00001{bottom:647.307318px;}
.y1a5f_c00001{bottom:647.311170px;}
.y74d_c00001{bottom:647.400450px;}
.y19df_c00001{bottom:647.577201px;}
.y153e_c00001{bottom:647.577858px;}
.y4a3_c00001{bottom:647.580450px;}
.y30c_c00001{bottom:647.580600px;}
.y1e6d_c00001{bottom:647.667381px;}
.y1c38_c00001{bottom:647.760099px;}
.y57a_c00001{bottom:647.760600px;}
.y24b1_c00001{bottom:647.850450px;}
.y13cc_c00001{bottom:647.937921px;}
.y13a4_c00001{bottom:647.938578px;}
.y20e3_c00001{bottom:647.940450px;}
.y2233_c00001{bottom:648.032610px;}
.y79c_c00001{bottom:648.210450px;}
.y1f10_c00001{bottom:648.299298px;}
.y1a80_c00001{bottom:648.387318px;}
.y7af_c00001{bottom:648.390450px;}
.yda4_c00001{bottom:648.570450px;}
.y12e0_c00001{bottom:648.654006px;}
.y8e2_c00001{bottom:648.834390px;}
.y249c_c00001{bottom:649.020450px;}
.y1696_c00001{bottom:649.199343px;}
.y2093_c00001{bottom:649.200954px;}
.y1cb5_c00001{bottom:649.202601px;}
.y1082_c00001{bottom:649.378452px;}
.y127a_c00001{bottom:649.467975px;}
.y1d4b_c00001{bottom:649.472484px;}
.y58_c00001{bottom:649.560450px;}
.y1d93_c00001{bottom:649.650873px;}
.y179_c00001{bottom:649.740450px;}
.y22b7_c00001{bottom:649.920927px;}
.y16ef_c00001{bottom:650.009820px;}
.y1afc_c00001{bottom:650.188569px;}
.y224f_c00001{bottom:650.282601px;}
.y19bd_c00001{bottom:650.548632px;}
.y1fe2_c00001{bottom:650.640450px;}
.y40c_c00001{bottom:650.730450px;}
.y1e44_c00001{bottom:650.997561px;}
.y17fa_c00001{bottom:651.268569px;}
.y876_c00001{bottom:651.270450px;}
.y231e_c00001{bottom:651.270684px;}
.y20c5_c00001{bottom:651.270720px;}
.ye45_c00001{bottom:651.361476px;}
.y1371_c00001{bottom:651.535257px;}
.yafc_c00001{bottom:651.628839px;}
.y214_c00001{bottom:651.720450px;}
.y53c_c00001{bottom:651.810450px;}
.ycbf_c00001{bottom:651.823698px;}
.ycf0_c00001{bottom:651.854802px;}
.yb61_c00001{bottom:652.077930px;}
.ya92_c00001{bottom:652.079577px;}
.y4c0_c00001{bottom:652.260450px;}
.y1def_c00001{bottom:652.621269px;}
.y2462_c00001{bottom:652.710603px;}
.y7d6_c00001{bottom:652.800450px;}
.y68a_c00001{bottom:652.890450px;}
.y89a_c00001{bottom:652.980450px;}
.ya7d_c00001{bottom:653.066130px;}
.ya56_c00001{bottom:653.067777px;}
.y43a_c00001{bottom:653.070450px;}
.y23ca_c00001{bottom:653.252529px;}
.y813_c00001{bottom:653.340450px;}
.y1ebd_c00001{bottom:653.695914px;}
.yedc_c00001{bottom:653.790450px;}
.y1a43_c00001{bottom:653.878812px;}
.y90b_c00001{bottom:654.054330px;}
.y9af_c00001{bottom:654.055977px;}
.y140d_c00001{bottom:654.056220px;}
.y378_c00001{bottom:654.240450px;}
.y6d8_c00001{bottom:654.330450px;}
.y10c8_c00001{bottom:654.416508px;}
.y176c_c00001{bottom:654.506688px;}
.y1a04_c00001{bottom:654.511197px;}
.y201b_c00001{bottom:654.780909px;}
.y2054_c00001{bottom:654.780945px;}
.y2b9_c00001{bottom:654.870450px;}
.yc79_c00001{bottom:655.042530px;}
.ybe9_c00001{bottom:655.044177px;}
.y8c0_c00001{bottom:655.050450px;}
.y52e_c00001{bottom:655.140450px;}
.yab_c00001{bottom:655.230450px;}
.yc9b_c00001{bottom:655.312566px;}
.y5f2_c00001{bottom:655.500450px;}
.y2384_c00001{bottom:655.500882px;}
.y1d23_c00001{bottom:655.501836px;}
.y2309_c00001{bottom:655.502520px;}
.y1358_c00001{bottom:655.587345px;}
.yd7d_c00001{bottom:655.680450px;}
.y16_c00001{bottom:655.770450px;}
.y1383_c00001{bottom:655.853376px;}
.yb47_c00001{bottom:655.941792px;}
.y24c_c00001{bottom:656.040450px;}
.y2122_c00001{bottom:656.220783px;}
.y421_c00001{bottom:656.400450px;}
.y1ec6_c00001{bottom:656.577165px;}
.y10ee_c00001{bottom:656.577822px;}
.yf0a_c00001{bottom:656.581665px;}
.y122f_c00001{bottom:656.667345px;}
.y11ad_c00001{bottom:656.668002px;}
.y187b_c00001{bottom:656.760063px;}
.y24cc_c00001{bottom:656.850450px;}
.y22d5_c00001{bottom:656.850639px;}
.y21d7_c00001{bottom:656.850675px;}
.y1dd4_c00001{bottom:656.934033px;}
.y17ae_c00001{bottom:656.939856px;}
.y21c0_c00001{bottom:657.032574px;}
.y191b_c00001{bottom:657.387939px;}
.y142_c00001{bottom:657.480450px;}
.y236e_c00001{bottom:657.752511px;}
.y164c_c00001{bottom:658.199307px;}
.y2077_c00001{bottom:658.200954px;}
.y19ab_c00001{bottom:658.467939px;}
.y1d0e_c00001{bottom:658.468596px;}
.y2285_c00001{bottom:658.472448px;}
.y5d8_c00001{bottom:658.560450px;}
.y1452_c00001{bottom:658.734627px;}
.y294_c00001{bottom:659.100441px;}
.y1c2_c00001{bottom:659.100450px;}
.yc26_c00001{bottom:659.184735px;}
.y220f_c00001{bottom:659.282565px;}
.yf91_c00001{bottom:659.459073px;}
.y1837_c00001{bottom:659.548596px;}
.y2353_c00001{bottom:659.640450px;}
.y129a_c00001{bottom:659.814627px;}
.y157a_c00001{bottom:659.815284px;}
.y1337_c00001{bottom:659.818722px;}
.y4f7_c00001{bottom:660.000450px;}
.ye74_c00001{bottom:660.000459px;}
.yead_c00001{bottom:660.001260px;}
.ye10_c00001{bottom:660.002502px;}
.y7c7_c00001{bottom:660.090450px;}
.y1fb4_c00001{bottom:660.180450px;}
.y247e_c00001{bottom:660.269190px;}
.yff4_c00001{bottom:660.539073px;}
.y15da_c00001{bottom:660.629910px;}
.y640_c00001{bottom:660.810450px;}
.yfc2_c00001{bottom:660.899793px;}
.ya0d_c00001{bottom:661.078785px;}
.yf33_c00001{bottom:661.079001px;}
.y1f31_c00001{bottom:661.080450px;}
.y358_c00001{bottom:661.170450px;}
.y1b91_c00001{bottom:661.349190px;}
.y18f0_c00001{bottom:661.349847px;}
.y214b_c00001{bottom:661.530450px;}
.y1257_c00001{bottom:661.615878px;}
.y1f4e_c00001{bottom:661.620999px;}
.ydd4_c00001{bottom:661.712097px;}
.y847_c00001{bottom:661.890450px;}
.y985_c00001{bottom:662.066985px;}
.yc4b_c00001{bottom:662.068632px;}
.ya2d_c00001{bottom:662.070279px;}
.y1adb_c00001{bottom:662.429847px;}
.y20a4_c00001{bottom:662.430450px;}
.y1ab1_c00001{bottom:662.430504px;}
.y1189_c00001{bottom:662.695878px;}
.y113e_c00001{bottom:662.696535px;}
.y789_c00001{bottom:662.700450px;}
.y3cd_c00001{bottom:662.790450px;}
.y1f71_c00001{bottom:662.880450px;}
.y178b_c00001{bottom:662.962566px;}
.y932_c00001{bottom:663.055185px;}
.yb80_c00001{bottom:663.055770px;}
.yc80_c00001{bottom:663.056832px;}
.y6a4_c00001{bottom:663.060450px;}
.y1625_c00001{bottom:663.061107px;}
.y243e_c00001{bottom:663.330450px;}
.y13ee_c00001{bottom:663.422484px;}
.y198b_c00001{bottom:663.510504px;}
.y1c24_c00001{bottom:663.776535px;}
.y18a1_c00001{bottom:663.777192px;}
.y5c6_c00001{bottom:663.870600px;}
.y1c65_c00001{bottom:663.959433px;}
.y973_c00001{bottom:664.043385px;}
.y2a6_c00001{bottom:664.050450px;}
.y1962_c00001{bottom:664.051116px;}
.y1c09_c00001{bottom:664.229190px;}
.y19d_c00001{bottom:664.230450px;}
.y10ab_c00001{bottom:664.497129px;}
.y75b_c00001{bottom:664.500450px;}
.y1f8c_c00001{bottom:664.500846px;}
.y1209_c00001{bottom:664.587309px;}
.y1022_c00001{bottom:664.591161px;}
.yd24_c00001{bottom:664.785570px;}
.yd51_c00001{bottom:664.813218px;}
.y1e6c_c00001{bottom:664.857192px;}
.y1c37_c00001{bottom:665.040090px;}
.y704_c00001{bottom:665.040450px;}
.y5a9_c00001{bottom:665.040600px;}
.y203c_c00001{bottom:665.041122px;}
.y603_c00001{bottom:665.130108px;}
.y2232_c00001{bottom:665.222421px;}
.y1677_c00001{bottom:665.490450px;}
.y1051_c00001{bottom:665.577786px;}
.y12c4_c00001{bottom:665.667309px;}
.y1904_c00001{bottom:665.667966px;}
.y12df_c00001{bottom:665.933997px;}
.y1d71_c00001{bottom:666.032538px;}
.y44e_c00001{bottom:666.300450px;}
.y25e_c00001{bottom:666.390450px;}
.y2092_c00001{bottom:666.390765px;}
.y1cb4_c00001{bottom:666.392412px;}
.y1695_c00001{bottom:666.479334px;}
.y1b7a_c00001{bottom:666.657786px;}
.y1081_c00001{bottom:666.658443px;}
.y1d4a_c00001{bottom:666.752475px;}
.y1d92_c00001{bottom:666.840684px;}
.y13a3_c00001{bottom:667.019163px;}
.y252a_c00001{bottom:667.110450px;}
.y16ee_c00001{bottom:667.199631px;}
.y22b6_c00001{bottom:667.200918px;}
.y15fd_c00001{bottom:667.468560px;}
.y4e1_c00001{bottom:667.470600px;}
.y224e_c00001{bottom:667.472412px;}
.y19bc_c00001{bottom:667.738443px;}
.y2d0_c00001{bottom:668.010450px;}
.y770_c00001{bottom:668.100324px;}
.y79_c00001{bottom:668.100450px;}
.yff_c00001{bottom:668.372268px;}
.y72a_c00001{bottom:668.460450px;}
.y17f9_c00001{bottom:668.548560px;}
.y17cd_c00001{bottom:668.549217px;}
.ye44_c00001{bottom:668.641467px;}
.y1116_c00001{bottom:668.725068px;}
.y50a_c00001{bottom:668.730450px;}
.y1370_c00001{bottom:668.815248px;}
.y16c7_c00001{bottom:668.995608px;}
.y6b6_c00001{bottom:669.090450px;}
.y1a93_c00001{bottom:669.629217px;}
.y1a9_c00001{bottom:669.720450px;}
.y34_c00001{bottom:669.810450px;}
.y130e_c00001{bottom:669.895248px;}
.y14e0_c00001{bottom:669.899757px;}
.y2461_c00001{bottom:669.900414px;}
.y1ebc_c00001{bottom:670.975905px;}
.y482_c00001{bottom:670.980450px;}
.y74c_c00001{bottom:671.070450px;}
.y30b_c00001{bottom:671.160600px;}
.y140c_c00001{bottom:671.246031px;}
.y1fe1_c00001{bottom:671.250450px;}
.y1a2d_c00001{bottom:671.252457px;}
.y391_c00001{bottom:671.340450px;}
.y579_c00001{bottom:671.340600px;}
.y2105_c00001{bottom:671.430600px;}
.y24b0_c00001{bottom:671.520450px;}
.ycbe_c00001{bottom:671.623122px;}
.ycef_c00001{bottom:671.654226px;}
.y11e8_c00001{bottom:671.696499px;}
.y3b1_c00001{bottom:671.700450px;}
.y1a03_c00001{bottom:671.791188px;}
.y201a_c00001{bottom:671.970720px;}
.yaad_c00001{bottom:672.056040px;}
.yacb_c00001{bottom:672.057687px;}
.y159_c00001{bottom:672.060450px;}
.yda3_c00001{bottom:672.240450px;}
.y249b_c00001{bottom:672.600450px;}
.y12ff_c00001{bottom:672.776499px;}
.y1483_c00001{bottom:672.777156px;}
.y2383_c00001{bottom:672.780873px;}
.y1d22_c00001{bottom:672.781827px;}
.y22a0_c00001{bottom:672.782511px;}
.y1163_c00001{bottom:673.043187px;}
.y95e_c00001{bottom:673.044240px;}
.y9ae_c00001{bottom:673.045887px;}
.y57_c00001{bottom:673.230450px;}
.y185b_c00001{bottom:673.320450px;}
.y178_c00001{bottom:673.410450px;}
.y1e2a_c00001{bottom:673.500450px;}
.y2121_c00001{bottom:673.500774px;}
.yedb_c00001{bottom:673.770864px;}
.yf09_c00001{bottom:673.771476px;}
.y122e_c00001{bottom:673.857156px;}
.yf62_c00001{bottom:673.857813px;}
.ybe8_c00001{bottom:673.943502px;}
.y187a_c00001{bottom:674.040054px;}
.y22d4_c00001{bottom:674.040450px;}
.y1dd3_c00001{bottom:674.123844px;}
.y13cb_c00001{bottom:674.217876px;}
.y17ad_c00001{bottom:674.219847px;}
.y2416_c00001{bottom:674.222385px;}
.y1b1f_c00001{bottom:674.309811px;}
.y9e6_c00001{bottom:674.486895px;}
.y1f0f_c00001{bottom:674.489073px;}
.y191a_c00001{bottom:674.667930px;}
.y875_c00001{bottom:674.850450px;}
.y19de_c00001{bottom:674.937813px;}
.y153d_c00001{bottom:674.938470px;}
.y213_c00001{bottom:675.390450px;}
.y2076_c00001{bottom:675.390765px;}
.y53b_c00001{bottom:675.480450px;}
.y1d0d_c00001{bottom:675.658407px;}
.y2507_c00001{bottom:675.660450px;}
.y7ea_c00001{bottom:675.750450px;}
.y2284_c00001{bottom:675.752439px;}
.y4bf_c00001{bottom:675.840450px;}
.y1451_c00001{bottom:676.014618px;}
.y2189_c00001{bottom:676.110450px;}
.y465_c00001{bottom:676.380450px;}
.y23a9_c00001{bottom:676.472376px;}
.y689_c00001{bottom:676.560450px;}
.y439_c00001{bottom:676.650450px;}
.y1279_c00001{bottom:676.738407px;}
.yf90_c00001{bottom:676.739064px;}
.y8e1_c00001{bottom:676.825155px;}
.y1cf8_c00001{bottom:677.094618px;}
.y1336_c00001{bottom:677.098713px;}
.ye73_c00001{bottom:677.280639px;}
.yeac_c00001{bottom:677.281251px;}
.ye0f_c00001{bottom:677.282493px;}
.y247d_c00001{bottom:677.549181px;}
.y231d_c00001{bottom:677.550639px;}
.y20c4_c00001{bottom:677.550675px;}
.y20e2_c00001{bottom:677.640450px;}
.y15d9_c00001{bottom:677.819721px;}
.y377_c00001{bottom:677.910450px;}
.y6d7_c00001{bottom:678.000450px;}
.yfc1_c00001{bottom:678.179784px;}
.y1e43_c00001{bottom:678.267993px;}
.yf32_c00001{bottom:678.268812px;}
.y2b8_c00001{bottom:678.450450px;}
.y1b90_c00001{bottom:678.629181px;}
.y18ef_c00001{bottom:678.629838px;}
.y2db_c00001{bottom:678.810450px;}
.y1dee_c00001{bottom:678.811044px;}
.y15ab_c00001{bottom:678.895869px;}
.y1f90_c00001{bottom:678.990450px;}
.ydd3_c00001{bottom:678.992088px;}
.y5f1_c00001{bottom:679.170450px;}
.y15_c00001{bottom:679.350450px;}
.y23c9_c00001{bottom:679.442304px;}
.yafb_c00001{bottom:679.619604px;}
.y24b_c00001{bottom:679.620450px;}
.y1188_c00001{bottom:679.975869px;}
.y113d_c00001{bottom:679.976526px;}
.y420_c00001{bottom:679.980450px;}
.ya0c_c00001{bottom:680.068695px;}
.ya91_c00001{bottom:680.070342px;}
.y178a_c00001{bottom:680.242557px;}
.y24cb_c00001{bottom:680.520450px;}
.yd7c_c00001{bottom:680.610450px;}
.y2053_c00001{bottom:680.970720px;}
.y1c7f_c00001{bottom:681.056526px;}
.ya7c_c00001{bottom:681.056895px;}
.y18a0_c00001{bottom:681.057183px;}
.ya55_c00001{bottom:681.058542px;}
.y141_c00001{bottom:681.060450px;}
.y657_c00001{bottom:681.150450px;}
.y1a42_c00001{bottom:681.239424px;}
.y1c08_c00001{bottom:681.509181px;}
.y10c7_c00001{bottom:681.686940px;}
.y10aa_c00001{bottom:681.777120px;}
.y1f8b_c00001{bottom:681.780837px;}
.y1021_c00001{bottom:681.780972px;}
.y2308_c00001{bottom:681.782475px;}
.y1a5e_c00001{bottom:681.871152px;}
.y90a_c00001{bottom:682.045095px;}
.yb30_c00001{bottom:682.046742px;}
.y1e6b_c00001{bottom:682.137183px;}
.y1d2_c00001{bottom:682.230450px;}
.y1c36_c00001{bottom:682.320081px;}
.y203b_c00001{bottom:682.321113px;}
.y220e_c00001{bottom:682.502412px;}
.y54d_c00001{bottom:682.680450px;}
.y1c1_c00001{bottom:682.770450px;}
.y12c3_c00001{bottom:682.857120px;}
.y1050_c00001{bottom:682.857777px;}
.y82b_c00001{bottom:682.940829px;}
.yc78_c00001{bottom:682.942710px;}
.y21d6_c00001{bottom:683.040450px;}
.y1382_c00001{bottom:683.123808px;}
.y1d70_c00001{bottom:683.222349px;}
.y40b_c00001{bottom:683.310450px;}
.y7c6_c00001{bottom:683.670450px;}
.y1cb3_c00001{bottom:683.672403px;}
.y1694_c00001{bottom:683.759325px;}
.yb46_c00001{bottom:683.932557px;}
.y1ec5_c00001{bottom:683.937777px;}
.y1f04_c00001{bottom:683.938434px;}
.y1d49_c00001{bottom:684.032466px;}
.y1d91_c00001{bottom:684.120675px;}
.y22b5_c00001{bottom:684.390729px;}
.y8ac_c00001{bottom:684.480450px;}
.yd23_c00001{bottom:684.584994px;}
.yd50_c00001{bottom:684.612642px;}
.y13a2_c00001{bottom:684.658371px;}
.y224d_c00001{bottom:684.752403px;}
.y357_c00001{bottom:684.840450px;}
.y19bb_c00001{bottom:685.018434px;}
.y164b_c00001{bottom:685.559919px;}
.y846_c00001{bottom:685.560450px;}
.y17f8_c00001{bottom:685.738371px;}
.y17cc_c00001{bottom:685.739028px;}
.ye43_c00001{bottom:685.831278px;}
.y812_c00001{bottom:685.920450px;}
.y1115_c00001{bottom:686.005059px;}
.y146c_c00001{bottom:686.095239px;}
.y1676_c00001{bottom:686.190450px;}
.y3cc_c00001{bottom:686.370450px;}
.y6a3_c00001{bottom:686.730450px;}
.y1836_c00001{bottom:686.819028px;}
.y1299_c00001{bottom:687.175239px;}
.yc25_c00001{bottom:687.175500px;}
.y1579_c00001{bottom:687.175896px;}
.y14df_c00001{bottom:687.179748px;}
.y2460_c00001{bottom:687.180405px;}
.y1f30_c00001{bottom:687.270720px;}
.y5c5_c00001{bottom:687.540600px;}
.y8ca_c00001{bottom:687.630450px;}
.yaa_c00001{bottom:687.810450px;}
.yff3_c00001{bottom:687.899685px;}
.y1933_c00001{bottom:687.900342px;}
.y1f4d_c00001{bottom:687.900954px;}
.y703_c00001{bottom:688.620450px;}
.y5a8_c00001{bottom:688.620600px;}
.y11cb_c00001{bottom:688.976490px;}
.y1a02_c00001{bottom:688.980999px;}
.y20a3_c00001{bottom:689.250450px;}
.y1fb3_c00001{bottom:689.252385px;}
.y1624_c00001{bottom:689.341062px;}
.y293_c00001{bottom:689.700054px;}
.y13ed_c00001{bottom:689.702439px;}
.y1ada_c00001{bottom:689.790459px;}
.y1ab0_c00001{bottom:689.791116px;}
.y44d_c00001{bottom:689.880450px;}
.y25d_c00001{bottom:689.970450px;}
.y2382_c00001{bottom:689.970684px;}
.y1d21_c00001{bottom:689.971638px;}
.yfe_c00001{bottom:689.972673px;}
.y1709_c00001{bottom:690.056490px;}
.y1482_c00001{bottom:690.057147px;}
.y984_c00001{bottom:690.057750px;}
.ya2c_c00001{bottom:690.061044px;}
.y1961_c00001{bottom:690.240891px;}
.y2529_c00001{bottom:690.780450px;}
.y198a_c00001{bottom:690.871116px;}
.y931_c00001{bottom:691.045950px;}
.yb7f_c00001{bottom:691.046535px;}
.yf61_c00001{bottom:691.047624px;}
.yeda_c00001{bottom:691.050855px;}
.yf08_c00001{bottom:691.051467px;}
.y122d_c00001{bottom:691.137147px;}
.y4e0_c00001{bottom:691.140600px;}
.y214a_c00001{bottom:691.230450px;}
.y1879_c00001{bottom:691.320045px;}
.y17ac_c00001{bottom:691.409658px;}
.ycbd_c00001{bottom:691.512402px;}
.ycee_c00001{bottom:691.543506px;}
.y1e9b_c00001{bottom:691.589802px;}
.y2cf_c00001{bottom:691.590450px;}
.y78_c00001{bottom:691.770450px;}
.y1208_c00001{bottom:691.857741px;}
.y95d_c00001{bottom:691.943565px;}
.y4f6_c00001{bottom:691.952268px;}
.y19dd_c00001{bottom:692.217804px;}
.y567_c00001{bottom:692.310450px;}
.y674_c00001{bottom:692.400450px;}
.y1f70_c00001{bottom:692.580450px;}
.y2091_c00001{bottom:692.670720px;}
.y6b5_c00001{bottom:692.760450px;}
.y1080_c00001{bottom:692.938398px;}
.y2283_c00001{bottom:693.032430px;}
.y12de_c00001{bottom:693.204429px;}
.y9e5_c00001{bottom:693.476805px;}
.y33_c00001{bottom:693.480450px;}
.y23a8_c00001{bottom:693.752367px;}
.y1b79_c00001{bottom:694.018398px;}
.yf8f_c00001{bottom:694.019055px;}
.y243d_c00001{bottom:694.110450px;}
.y729_c00001{bottom:694.200450px;}
.yeab_c00001{bottom:694.471062px;}
.ye72_c00001{bottom:694.471287px;}
.ye0e_c00001{bottom:694.472304px;}
.y16ed_c00001{bottom:694.560243px;}
.y481_c00001{bottom:694.650450px;}
.y15fc_c00001{bottom:694.738992px;}
.y231c_c00001{bottom:694.740450px;}
.y30a_c00001{bottom:694.830600px;}
.y578_c00001{bottom:695.010600px;}
.y15d8_c00001{bottom:695.099712px;}
.y16c6_c00001{bottom:695.185383px;}
.y7ae_c00001{bottom:695.640450px;}
.y158_c00001{bottom:695.730450px;}
.y8e0_c00001{bottom:695.815065px;}
.y136f_c00001{bottom:696.175860px;}
.ydd2_c00001{bottom:696.181899px;}
.y249a_c00001{bottom:696.270450px;}
.y2a5_c00001{bottom:696.630450px;}
.y76f_c00001{bottom:696.720450px;}
.y56_c00001{bottom:696.810450px;}
.y1a92_c00001{bottom:696.899649px;}
.y177_c00001{bottom:696.990450px;}
.y390_c00001{bottom:697.080450px;}
.y18cc_c00001{bottom:697.166337px;}
.yda2_c00001{bottom:697.170450px;}
.y1187_c00001{bottom:697.255860px;}
.y1436_c00001{bottom:697.256517px;}
.y1a2c_c00001{bottom:697.442232px;}
.y1c55_c00001{bottom:697.980963px;}
.y1ebb_c00001{bottom:698.246337px;}
.y20e1_c00001{bottom:698.250450px;}
.y2019_c00001{bottom:698.250675px;}
.y1c64_c00001{bottom:698.429235px;}
.y874_c00001{bottom:698.520450px;}
.y140b_c00001{bottom:698.606643px;}
.y1c07_c00001{bottom:698.698992px;}
.y10c6_c00001{bottom:698.966931px;}
.y212_c00001{bottom:698.970450px;}
.y1f8a_c00001{bottom:698.970648px;}
.y229f_c00001{bottom:698.972286px;}
.y1498_c00001{bottom:699.057111px;}
.ya0b_c00001{bottom:699.058605px;}
.y53a_c00001{bottom:699.060450px;}
.y1020_c00001{bottom:699.060963px;}
.y1e6a_c00001{bottom:699.326994px;}
.y2506_c00001{bottom:699.330450px;}
.y1c35_c00001{bottom:699.509892px;}
.y4be_c00001{bottom:699.510450px;}
.y203a_c00001{bottom:699.601104px;}
.y220d_c00001{bottom:699.782403px;}
.ya7b_c00001{bottom:700.046805px;}
.y104f_c00001{bottom:700.047588px;}
.yaca_c00001{bottom:700.048452px;}
.y12c2_c00001{bottom:700.137111px;}
.y11ac_c00001{bottom:700.137768px;}
.y688_c00001{bottom:700.140450px;}
.y899_c00001{bottom:700.230450px;}
.y438_c00001{bottom:700.320450px;}
.y1162_c00001{bottom:700.403799px;}
.y13ca_c00001{bottom:700.407651px;}
.y1d6f_c00001{bottom:700.502340px;}
.y1f0e_c00001{bottom:700.769028px;}
.y1fe0_c00001{bottom:700.860450px;}
.y9c7_c00001{bottom:700.944420px;}
.y9ad_c00001{bottom:700.946067px;}
.y2003_c00001{bottom:700.950450px;}
.y1cb2_c00001{bottom:700.952394px;}
.y2104_c00001{bottom:701.130600px;}
.y14b9_c00001{bottom:701.218425px;}
.y1d48_c00001{bottom:701.222277px;}
.y509_c00001{bottom:701.310450px;}
.y1d90_c00001{bottom:701.400666px;}
.y1dd2_c00001{bottom:701.484456px;}
.y376_c00001{bottom:701.490450px;}
.y6d6_c00001{bottom:701.580450px;}
.y1b1e_c00001{bottom:701.670423px;}
.y2075_c00001{bottom:701.670720px;}
.yc77_c00001{bottom:701.932620px;}
.ybe7_c00001{bottom:701.934267px;}
.y13a1_c00001{bottom:701.938362px;}
.y224c_c00001{bottom:702.032394px;}
.y2b7_c00001{bottom:702.120450px;}
.y1b3e_c00001{bottom:702.298425px;}
.y153c_c00001{bottom:702.299082px;}
.y530_c00001{bottom:702.300450px;}
.y1a8_c00001{bottom:702.390450px;}
.y2e6_c00001{bottom:702.480450px;}
.y164a_c00001{bottom:702.839910px;}
.y5f0_c00001{bottom:702.840450px;}
.yb45_c00001{bottom:702.922467px;}
.y17f7_c00001{bottom:703.018362px;}
.y17cb_c00001{bottom:703.019019px;}
.y14_c00001{bottom:703.020450px;}
.ye42_c00001{bottom:703.111269px;}
.y1114_c00001{bottom:703.194870px;}
.y1742_c00001{bottom:703.285050px;}
.y24a_c00001{bottom:703.290450px;}
.yc9a_c00001{bottom:703.642863px;}
.y20c3_c00001{bottom:703.740450px;}
.y1278_c00001{bottom:704.099019px;}
.y24af_c00001{bottom:704.100450px;}
.yd7b_c00001{bottom:704.280450px;}
.y1cf7_c00001{bottom:704.365050px;}
.yfc0_c00001{bottom:704.369559px;}
.yd22_c00001{bottom:704.384418px;}
.yd4f_c00001{bottom:704.412066px;}
.y1335_c00001{bottom:704.459325px;}
.y14de_c00001{bottom:704.459739px;}
.y245f_c00001{bottom:704.460396px;}
.y656_c00001{bottom:704.730450px;}
.y1f4c_c00001{bottom:705.090765px;}
.y1ded_c00001{bottom:705.090999px;}
.yff2_c00001{bottom:705.179676px;}
.y1932_c00001{bottom:705.180333px;}
.y79b_c00001{bottom:705.450450px;}
.y1e42_c00001{bottom:705.628605px;}
.yf31_c00001{bottom:705.629424px;}
.y23c8_c00001{bottom:705.722259px;}
.y1d1_c00001{bottom:705.810450px;}
.y1b8f_c00001{bottom:705.899613px;}
.y18ee_c00001{bottom:705.900270px;}
.yc24_c00001{bottom:706.074825px;}
.y15aa_c00001{bottom:706.166301px;}
.y1256_c00001{bottom:706.256481px;}
.y1c0_c00001{bottom:706.350450px;}
.y1675_c00001{bottom:706.890450px;}
.y40a_c00001{bottom:706.980450px;}
.y113c_c00001{bottom:707.246958px;}
.y2052_c00001{bottom:707.250675px;}
.y1d20_c00001{bottom:707.251629px;}
.y7c5_c00001{bottom:707.340450px;}
.y1960_c00001{bottom:707.520882px;}
.y1789_c00001{bottom:707.603169px;}
.yafa_c00001{bottom:707.610369px;}
.y2307_c00001{bottom:707.972250px;}
.yb60_c00001{bottom:708.059460px;}
.y8c9_c00001{bottom:708.060450px;}
.y1989_c00001{bottom:708.060927px;}
.ya90_c00001{bottom:708.061107px;}
.y122c_c00001{bottom:708.326958px;}
.yf60_c00001{bottom:708.327615px;}
.yed9_c00001{bottom:708.330846px;}
.yf07_c00001{bottom:708.331458px;}
.y356_c00001{bottom:708.420450px;}
.y1878_c00001{bottom:708.509856px;}
.y17ab_c00001{bottom:708.689649px;}
.y464_c00001{bottom:708.960450px;}
.y10a9_c00001{bottom:709.047552px;}
.yb1a_c00001{bottom:709.047660px;}
.ya54_c00001{bottom:709.049307px;}
.ya2b_c00001{bottom:709.050954px;}
.y1919_c00001{bottom:709.137732px;}
.y845_c00001{bottom:709.140450px;}
.y19dc_c00001{bottom:709.407615px;}
.y21bf_c00001{bottom:709.502304px;}
.y909_c00001{bottom:709.945275px;}
.yb7e_c00001{bottom:709.945860px;}
.yc7f_c00001{bottom:709.946922px;}
.y1693_c00001{bottom:709.949100px;}
.y21d5_c00001{bottom:709.950450px;}
.y3cb_c00001{bottom:710.040450px;}
.y107f_c00001{bottom:710.128209px;}
.y1a7f_c00001{bottom:710.217732px;}
.y1357_c00001{bottom:710.218389px;}
.y2282_c00001{bottom:710.222241px;}
.y6a2_c00001{bottom:710.310450px;}
.y1381_c00001{bottom:710.484420px;}
.y602_c00001{bottom:710.670450px;}
.yc0f_c00001{bottom:710.933475px;}
.y23a7_c00001{bottom:711.032358px;}
.y5c4_c00001{bottom:711.120600px;}
.yf8e_c00001{bottom:711.208866px;}
.y1b78_c00001{bottom:711.298389px;}
.y1f03_c00001{bottom:711.299046px;}
.y8a4_c00001{bottom:711.300450px;}
.ycbc_c00001{bottom:711.311826px;}
.yced_c00001{bottom:711.342930px;}
.ya9_c00001{bottom:711.480450px;}
.yfd_c00001{bottom:711.662016px;}
.yeaa_c00001{bottom:711.751053px;}
.ye71_c00001{bottom:711.751278px;}
.ye0d_c00001{bottom:711.752295px;}
.ybcd_c00001{bottom:711.923322px;}
.y15fb_c00001{bottom:712.018983px;}
.y702_c00001{bottom:712.290450px;}
.y5a7_c00001{bottom:712.290600px;}
.y19ba_c00001{bottom:712.379046px;}
.y15d7_c00001{bottom:712.379703px;}
.y41f_c00001{bottom:712.650450px;}
.y146b_c00001{bottom:713.365671px;}
.ydd1_c00001{bottom:713.461890px;}
.y44c_c00001{bottom:713.550450px;}
.y1f2f_c00001{bottom:713.550675px;}
.y25c_c00001{bottom:713.640450px;}
.y4f5_c00001{bottom:713.641611px;}
.y140_c00001{bottom:713.730450px;}
.y1835_c00001{bottom:714.179640px;}
.y2528_c00001{bottom:714.360450px;}
.y1186_c00001{bottom:714.445671px;}
.y1435_c00001{bottom:714.446328px;}
.y8df_c00001{bottom:714.804975px;}
.y4df_c00001{bottom:714.810600px;}
.y1e29_c00001{bottom:714.900450px;}
.y1a01_c00001{bottom:715.260954px;}
.y77_c00001{bottom:715.350450px;}
.y1fb2_c00001{bottom:715.442160px;}
.y1623_c00001{bottom:715.621017px;}
.y1c63_c00001{bottom:715.709226px;}
.y13ec_c00001{bottom:715.892214px;}
.y566_c00001{bottom:715.980450px;}
.y10c5_c00001{bottom:716.246922px;}
.y1f89_c00001{bottom:716.250639px;}
.y6b4_c00001{bottom:716.340450px;}
.y101f_c00001{bottom:716.340954px;}
.y1e69_c00001{bottom:716.606985px;}
.y2039_c00001{bottom:716.790915px;}
.y220c_c00001{bottom:716.972214px;}
.y32_c00001{bottom:717.060450px;}
.y1ad9_c00001{bottom:717.060891px;}
.y1aaf_c00001{bottom:717.061548px;}
.y12c1_c00001{bottom:717.326922px;}
.y104e_c00001{bottom:717.327579px;}
.y811_c00001{bottom:717.420450px;}
.yda1_c00001{bottom:717.780450px;}
.y2415_c00001{bottom:717.782331px;}
.y983_c00001{bottom:718.048515px;}
.y1cb1_c00001{bottom:718.142205px;}
.y480_c00001{bottom:718.230450px;}
.y74b_c00001{bottom:718.320450px;}
.y1bc9_c00001{bottom:718.407579px;}
.y10ed_c00001{bottom:718.408236px;}
.y236d_c00001{bottom:718.502268px;}
.y1d8f_c00001{bottom:718.590477px;}
.y1b1d_c00001{bottom:718.860234px;}
.yade_c00001{bottom:718.946130px;}
.yac9_c00001{bottom:718.947777px;}
.y788_c00001{bottom:718.950450px;}
.y2090_c00001{bottom:718.950675px;}
.y1207_c00001{bottom:719.218353px;}
.y224b_c00001{bottom:719.222205px;}
.y157_c00001{bottom:719.310450px;}
.y1b55_c00001{bottom:719.488236px;}
.y153b_c00001{bottom:719.488893px;}
.y2499_c00001{bottom:719.850450px;}
.y95c_c00001{bottom:719.934330px;}
.y9ac_c00001{bottom:719.935977px;}
.y1649_c00001{bottom:720.029721px;}
.y19aa_c00001{bottom:720.298353px;}
.y292_c00001{bottom:720.390252px;}
.ye41_c00001{bottom:720.391260px;}
.y1113_c00001{bottom:720.474861px;}
.y55_c00001{bottom:720.480450px;}
.y12dd_c00001{bottom:720.565041px;}
.y176_c00001{bottom:720.660450px;}
.y2149_c00001{bottom:720.930450px;}
.y1277_c00001{bottom:721.379010px;}
.y9e4_c00001{bottom:721.467570px;}
.y16c5_c00001{bottom:721.645698px;}
.yfbf_c00001{bottom:721.649550px;}
.y245e_c00001{bottom:721.650207px;}
.y231b_c00001{bottom:721.650450px;}
.y16ec_c00001{bottom:721.920855px;}
.y873_c00001{bottom:722.100450px;}
.y1f6f_c00001{bottom:722.280450px;}
.yff1_c00001{bottom:722.369487px;}
.y1931_c00001{bottom:722.460324px;}
.y513_c00001{bottom:722.550450px;}
.y211_c00001{bottom:722.640450px;}
.y2505_c00001{bottom:722.910450px;}
.y1b8e_c00001{bottom:723.179604px;}
.y1255_c00001{bottom:723.446292px;}
.y1a2b_c00001{bottom:723.722187px;}
.y898_c00001{bottom:723.810450px;}
.y2ce_c00001{bottom:724.260450px;}
.yd21_c00001{bottom:724.273698px;}
.yd4e_c00001{bottom:724.301346px;}
.y2018_c00001{bottom:724.440450px;}
.y1d1f_c00001{bottom:724.441440px;}
.y18bf_c00001{bottom:724.526949px;}
.y195f_c00001{bottom:724.710693px;}
.y6d5_c00001{bottom:725.250450px;}
.y229e_c00001{bottom:725.252241px;}
.y1988_c00001{bottom:725.340918px;}
.yf5f_c00001{bottom:725.517426px;}
.yed8_c00001{bottom:725.520657px;}
.yf06_c00001{bottom:725.521269px;}
.y122b_c00001{bottom:725.606949px;}
.y2b6_c00001{bottom:725.700450px;}
.y1877_c00001{bottom:725.789847px;}
.y140a_c00001{bottom:725.967255px;}
.y17aa_c00001{bottom:725.969640px;}
.y1c06_c00001{bottom:726.059604px;}
.y2e5_c00001{bottom:726.060450px;}
.y1918_c00001{bottom:726.327543px;}
.y5ef_c00001{bottom:726.420450px;}
.y19db_c00001{bottom:726.687606px;}
.y13_c00001{bottom:726.690450px;}
.y1d6e_c00001{bottom:726.782295px;}
.y249_c00001{bottom:726.960450px;}
.y1f0d_c00001{bottom:727.048983px;}
.ya0a_c00001{bottom:727.049370px;}
.ya8f_c00001{bottom:727.051017px;}
.y1692_c00001{bottom:727.229091px;}
.y12fe_c00001{bottom:727.407543px;}
.y107e_c00001{bottom:727.408200px;}
.y309_c00001{bottom:727.410600px;}
.y1d47_c00001{bottom:727.502232px;}
.y1674_c00001{bottom:727.590450px;}
.y577_c00001{bottom:727.680600px;}
.y1161_c00001{bottom:727.764411px;}
.y13c9_c00001{bottom:727.768263px;}
.y24ca_c00001{bottom:727.770450px;}
.ya7a_c00001{bottom:727.946985px;}
.ya53_c00001{bottom:727.948632px;}
.y20e0_c00001{bottom:727.950450px;}
.y2074_c00001{bottom:727.950675px;}
.y23a6_c00001{bottom:728.222169px;}
.y655_c00001{bottom:728.400450px;}
.y1b77_c00001{bottom:728.488200px;}
.yf8d_c00001{bottom:728.488857px;}
.y1dd1_c00001{bottom:728.845068px;}
.y908_c00001{bottom:728.935185px;}
.yb2f_c00001{bottom:728.936832px;}
.yea9_c00001{bottom:729.031044px;}
.ye70_c00001{bottom:729.031269px;}
.ye0c_c00001{bottom:729.032286px;}
.yd7a_c00001{bottom:729.120450px;}
.y15fa_c00001{bottom:729.298974px;}
.y1d0_c00001{bottom:729.480450px;}
.y1b3d_c00001{bottom:729.568857px;}
.y15d6_c00001{bottom:729.569514px;}
.yc76_c00001{bottom:729.923385px;}
.ybe6_c00001{bottom:729.925032px;}
.y54c_c00001{bottom:729.930450px;}
.y1bf_c00001{bottom:730.020450px;}
.y17f6_c00001{bottom:730.378974px;}
.y409_c00001{bottom:730.560450px;}
.y1741_c00001{bottom:730.645662px;}
.y14dd_c00001{bottom:730.649514px;}
.y2002_c00001{bottom:730.650450px;}
.ydd0_c00001{bottom:730.741881px;}
.y2103_c00001{bottom:730.830600px;}
.yb44_c00001{bottom:730.913232px;}
.y7c4_c00001{bottom:730.920450px;}
.y2491_c00001{bottom:731.100450px;}
.ycbb_c00001{bottom:731.111250px;}
.ycec_c00001{bottom:731.142354px;}
.y82a_c00001{bottom:731.182863px;}
.y1f4b_c00001{bottom:731.370720px;}
.y1dec_c00001{bottom:731.370954px;}
.y1834_c00001{bottom:731.459631px;}
.y1cf6_c00001{bottom:731.725662px;}
.y1434_c00001{bottom:731.726319px;}
.y1334_c00001{bottom:731.729757px;}
.y539_c00001{bottom:731.730450px;}
.y1fc8_c00001{bottom:731.910450px;}
.y23c7_c00001{bottom:732.002214px;}
.y355_c00001{bottom:732.090450px;}
.y1a00_c00001{bottom:732.540945px;}
.y185a_c00001{bottom:732.720450px;}
.y687_c00001{bottom:732.810450px;}
.y437_c00001{bottom:732.900450px;}
.y1e41_c00001{bottom:732.989217px;}
.yf30_c00001{bottom:732.990036px;}
.y18ed_c00001{bottom:733.260882px;}
.yfc_c00001{bottom:733.351359px;}
.y1f88_c00001{bottom:733.440450px;}
.y11e7_c00001{bottom:733.526913px;}
.y101e_c00001{bottom:733.530765px;}
.y3ca_c00001{bottom:733.620450px;}
.y1a5d_c00001{bottom:733.620945px;}
.y508_c00001{bottom:733.980450px;}
.yc23_c00001{bottom:734.065590px;}
.y375_c00001{bottom:734.160450px;}
.y220b_c00001{bottom:734.252205px;}
.y104d_c00001{bottom:734.517390px;}
.y1510_c00001{bottom:734.606913px;}
.y113b_c00001{bottom:734.607570px;}
.y5c3_c00001{bottom:734.790600px;}
.y1788_c00001{bottom:734.873601px;}
.y52f_c00001{bottom:734.880450px;}
.y1a7_c00001{bottom:734.970450px;}
.y2414_c00001{bottom:734.972142px;}
.ya8_c00001{bottom:735.060450px;}
.y4f4_c00001{bottom:735.330954px;}
.y1cb0_c00001{bottom:735.422196px;}
.y2188_c00001{bottom:735.510450px;}
.yaf9_c00001{bottom:735.510549px;}
.y1e28_c00001{bottom:735.600450px;}
.y189f_c00001{bottom:735.688227px;}
.y21be_c00001{bottom:735.782259px;}
.y1d8e_c00001{bottom:735.870468px;}
.y701_c00001{bottom:735.960450px;}
.y5a6_c00001{bottom:735.960600px;}
.y1b1c_c00001{bottom:736.140225px;}
.y10a8_c00001{bottom:736.408164px;}
.y224a_c00001{bottom:736.502196px;}
.y1b54_c00001{bottom:736.768227px;}
.y982_c00001{bottom:736.947840px;}
.yc6a_c00001{bottom:736.949487px;}
.ya2a_c00001{bottom:736.951134px;}
.y25b_c00001{bottom:737.220450px;}
.y1648_c00001{bottom:737.309712px;}
.y19a9_c00001{bottom:737.488164px;}
.y1356_c00001{bottom:737.488821px;}
.ye40_c00001{bottom:737.581071px;}
.y24ae_c00001{bottom:737.670450px;}
.y12dc_c00001{bottom:737.845032px;}
.y930_c00001{bottom:737.936040px;}
.yb7d_c00001{bottom:737.936625px;}
.yac8_c00001{bottom:737.937687px;}
.y2527_c00001{bottom:738.030450px;}
.y1ea_c00001{bottom:738.390450px;}
.y4de_c00001{bottom:738.390600px;}
.y1276_c00001{bottom:738.568821px;}
.y1f02_c00001{bottom:738.569478px;}
.y95b_c00001{bottom:738.924240px;}
.yfbe_c00001{bottom:738.929541px;}
.y76_c00001{bottom:739.020450px;}
.y16eb_c00001{bottom:739.110666px;}
.y1afb_c00001{bottom:739.379595px;}
.y565_c00001{bottom:739.560450px;}
.yff0_c00001{bottom:739.649478px;}
.y1930_c00001{bottom:739.650135px;}
.y673_c00001{bottom:739.650450px;}
.y1f2e_c00001{bottom:739.740450px;}
.yda0_c00001{bottom:739.830450px;}
.ybcc_c00001{bottom:739.914087px;}
.y2231_c00001{bottom:740.282241px;}
.y9e3_c00001{bottom:740.457480px;}
.y1b8d_c00001{bottom:740.459595px;}
.y1254_c00001{bottom:740.726283px;}
.y31_c00001{bottom:740.730450px;}
.y463_c00001{bottom:741.630450px;}
.y1d1e_c00001{bottom:741.721431px;}
.y1fb1_c00001{bottom:741.722115px;}
.y1185_c00001{bottom:741.806283px;}
.y1578_c00001{bottom:741.806940px;}
.y1622_c00001{bottom:741.810792px;}
.y47f_c00001{bottom:741.900450px;}
.y13eb_c00001{bottom:742.172169px;}
.y1987_c00001{bottom:742.620909px;}
.y8de_c00001{bottom:742.795740px;}
.yed7_c00001{bottom:742.800648px;}
.yf05_c00001{bottom:742.801260px;}
.y122a_c00001{bottom:742.886940px;}
.y7ad_c00001{bottom:742.890450px;}
.y156_c00001{bottom:742.980450px;}
.y1876_c00001{bottom:743.069838px;}
.y2038_c00001{bottom:743.070870px;}
.y1409_c00001{bottom:743.157066px;}
.y17a9_c00001{bottom:743.159451px;}
.y810_c00001{bottom:743.160450px;}
.y1c05_c00001{bottom:743.339595px;}
.y10c4_c00001{bottom:743.517354px;}
.y2498_c00001{bottom:743.520450px;}
.y11ca_c00001{bottom:743.607534px;}
.y1e68_c00001{bottom:743.967597px;}
.y1d6d_c00001{bottom:743.972106px;}
.y54_c00001{bottom:744.060450px;}
.yd20_c00001{bottom:744.073122px;}
.yd4d_c00001{bottom:744.100770px;}
.y175_c00001{bottom:744.330450px;}
.y1ad8_c00001{bottom:744.421503px;}
.y1aae_c00001{bottom:744.422160px;}
.y1691_c00001{bottom:744.509082px;}
.y12c0_c00001{bottom:744.687534px;}
.y16b5_c00001{bottom:744.688191px;}
.y1d46_c00001{bottom:744.782223px;}
.y175a_c00001{bottom:744.954222px;}
.y208f_c00001{bottom:745.140450px;}
.y41e_c00001{bottom:745.320450px;}
.y23a5_c00001{bottom:745.502160px;}
.y1b76_c00001{bottom:745.768191px;}
.yf8c_c00001{bottom:745.768848px;}
.y872_c00001{bottom:745.770450px;}
.ya09_c00001{bottom:745.948695px;}
.y1dd0_c00001{bottom:746.034879px;}
.y210_c00001{bottom:746.220450px;}
.yea8_c00001{bottom:746.220855px;}
.ye6f_c00001{bottom:746.221080px;}
.ye0b_c00001{bottom:746.222097px;}
.y13f_c00001{bottom:746.310450px;}
.y15f9_c00001{bottom:746.488785px;}
.y1b3c_c00001{bottom:746.848848px;}
.y153a_c00001{bottom:746.849505px;}
.ya79_c00001{bottom:746.936895px;}
.y897_c00001{bottom:747.480450px;}
.y17f5_c00001{bottom:747.568785px;}
.y1112_c00001{bottom:747.835473px;}
.y972_c00001{bottom:747.925095px;}
.y1450_c00001{bottom:747.925653px;}
.y9ab_c00001{bottom:747.926742px;}
.y14dc_c00001{bottom:747.929505px;}
.y245d_c00001{bottom:747.930162px;}
.y2cd_c00001{bottom:747.930450px;}
.ydcf_c00001{bottom:747.931692px;}
.y1673_c00001{bottom:748.290450px;}
.y2352_c00001{bottom:748.560450px;}
.y1833_c00001{bottom:748.649442px;}
.y243c_c00001{bottom:748.650450px;}
.y1ed1_c00001{bottom:748.915473px;}
.y1433_c00001{bottom:748.916130px;}
.y1333_c00001{bottom:749.009748px;}
.y6b3_c00001{bottom:749.010450px;}
.y2b5_c00001{bottom:749.370450px;}
.y8ab_c00001{bottom:749.550450px;}
.y190_c00001{bottom:749.730450px;}
.y19ff_c00001{bottom:749.730756px;}
.y1a2a_c00001{bottom:750.002142px;}
.y5ee_c00001{bottom:750.090450px;}
.y12_c00001{bottom:750.270450px;}
.y787_c00001{bottom:750.450450px;}
.y248_c00001{bottom:750.540450px;}
.y18ec_c00001{bottom:750.540873px;}
.y2148_c00001{bottom:750.630450px;}
.y136e_c00001{bottom:750.806904px;}
.y101d_c00001{bottom:750.810756px;}
.y195e_c00001{bottom:750.990648px;}
.ycba_c00001{bottom:751.000530px;}
.yceb_c00001{bottom:751.031634px;}
.y291_c00001{bottom:751.080450px;}
.y308_c00001{bottom:751.080600px;}
.y576_c00001{bottom:751.260600px;}
.y2017_c00001{bottom:751.350450px;}
.y24c9_c00001{bottom:751.440450px;}
.y229d_c00001{bottom:751.442016px;}
.y220a_c00001{bottom:751.532196px;}
.yf5e_c00001{bottom:751.797381px;}
.yc99_c00001{bottom:751.884897px;}
.y150f_c00001{bottom:751.886904px;}
.y113a_c00001{bottom:751.887561px;}
.y1f6e_c00001{bottom:751.980450px;}
.y2413_c00001{bottom:752.252133px;}
.y1caf_c00001{bottom:752.702187px;}
.yd79_c00001{bottom:752.790450px;}
.y155c_c00001{bottom:752.967561px;}
.y189e_c00001{bottom:752.968218px;}
.y436_c00001{bottom:752.970450px;}
.y21bd_c00001{bottom:752.972070px;}
.y1d8d_c00001{bottom:753.060279px;}
.y1cf_c00001{bottom:753.060450px;}
.y612_c00001{bottom:753.150450px;}
.y1f0c_c00001{bottom:753.238758px;}
.y1b1b_c00001{bottom:753.420216px;}
.y54b_c00001{bottom:753.600450px;}
.y1daf_c00001{bottom:753.688155px;}
.y1be_c00001{bottom:753.690450px;}
.y2249_c00001{bottom:753.782187px;}
.y19da_c00001{bottom:754.048218px;}
.y2073_c00001{bottom:754.140450px;}
.y408_c00001{bottom:754.230450px;}
.y3c9_c00001{bottom:754.320450px;}
.y7c3_c00001{bottom:754.590450px;}
.y12fd_c00001{bottom:754.768155px;}
.y107d_c00001{bottom:754.768812px;}
.y2490_c00001{bottom:754.770450px;}
.ye3f_c00001{bottom:754.861062px;}
.ya8e_c00001{bottom:754.951197px;}
.y1160_c00001{bottom:755.034843px;}
.yfb_c00001{bottom:755.040702px;}
.y13c8_c00001{bottom:755.128875px;}
.y538_c00001{bottom:755.310450px;}
.y2504_c00001{bottom:755.580450px;}
.y354_c00001{bottom:755.670450px;}
.y4bd_c00001{bottom:755.760450px;}
.y1275_c00001{bottom:755.848812px;}
.y1f01_c00001{bottom:755.849469px;}
.y981_c00001{bottom:755.937750px;}
.ya52_c00001{bottom:755.939397px;}
.y1e27_c00001{bottom:756.300450px;}
.y844_c00001{bottom:756.390450px;}
.y16ea_c00001{bottom:756.390657px;}
.y1afa_c00001{bottom:756.569406px;}
.y907_c00001{bottom:756.925950px;}
.yb7c_c00001{bottom:756.926535px;}
.yac7_c00001{bottom:756.927597px;}
.yfef_c00001{bottom:756.929469px;}
.y15d5_c00001{bottom:756.930126px;}
.y4f3_c00001{bottom:756.931359px;}
.y2230_c00001{bottom:757.472052px;}
.y507_c00001{bottom:757.560450px;}
.y1deb_c00001{bottom:757.560729px;}
.y1a91_c00001{bottom:757.649406px;}
.y20df_c00001{bottom:757.650450px;}
.y1f4a_c00001{bottom:757.650675px;}
.y374_c00001{bottom:757.740450px;}
.y6d4_c00001{bottom:757.830450px;}
.yc75_c00001{bottom:757.914150px;}
.ybe5_c00001{bottom:757.915797px;}
.y1253_c00001{bottom:757.916094px;}
.y23c6_c00001{bottom:758.191989px;}
.y5c2_c00001{bottom:758.370600px;}
.ya7_c00001{bottom:758.730450px;}
.yb43_c00001{bottom:758.903997px;}
.y1cf5_c00001{bottom:758.996094px;}
.y1577_c00001{bottom:758.996751px;}
.y700_c00001{bottom:759.540450px;}
.y1986_c00001{bottom:759.810720px;}
.y1c7e_c00001{bottom:760.076751px;}
.yed6_c00001{bottom:760.080639px;}
.yf04_c00001{bottom:760.081251px;}
.y1875_c00001{bottom:760.259649px;}
.y1f87_c00001{bottom:760.260450px;}
.yf2f_c00001{bottom:760.260468px;}
.y2001_c00001{bottom:760.350450px;}
.yd9f_c00001{bottom:760.440450px;}
.y2306_c00001{bottom:760.441980px;}
.y2102_c00001{bottom:760.530600px;}
.y104c_c00001{bottom:760.797345px;}
.y44b_c00001{bottom:760.800450px;}
.y11c9_c00001{bottom:760.887525px;}
.y25a_c00001{bottom:760.890450px;}
.y654_c00001{bottom:760.980450px;}
.y2526_c00001{bottom:761.610450px;}
.y1aad_c00001{bottom:761.702151px;}
.y16b4_c00001{bottom:761.968182px;}
.y1d45_c00001{bottom:761.972034px;}
.yc22_c00001{bottom:762.056355px;}
.y1787_c00001{bottom:762.234213px;}
.y1fc7_c00001{bottom:762.330450px;}
.y1859_c00001{bottom:762.420450px;}
.y75_c00001{bottom:762.690450px;}
.y23a4_c00001{bottom:762.782151px;}
.yf8b_c00001{bottom:762.958659px;}
.y1b75_c00001{bottom:763.048182px;}
.y564_c00001{bottom:763.230450px;}
.yea7_c00001{bottom:763.500846px;}
.ye6e_c00001{bottom:763.501071px;}
.yaf8_c00001{bottom:763.501314px;}
.ye0a_c00001{bottom:763.502088px;}
.y10a7_c00001{bottom:763.768776px;}
.yd1f_c00001{bottom:763.962402px;}
.yd4c_c00001{bottom:763.990050px;}
.y1b3b_c00001{bottom:764.128839px;}
.y30_c00001{bottom:764.310450px;}
.y1647_c00001{bottom:764.670324px;}
.y1d0c_c00001{bottom:764.849433px;}
.ya29_c00001{bottom:764.941899px;}
.y12db_c00001{bottom:765.115464px;}
.yfbd_c00001{bottom:765.119316px;}
.y245c_c00001{bottom:765.210153px;}
.y2187_c00001{bottom:765.210450px;}
.ydce_c00001{bottom:765.211683px;}
.y47e_c00001{bottom:765.480450px;}
.y74a_c00001{bottom:765.570450px;}
.y9c2_c00001{bottom:765.926805px;}
.y1832_c00001{bottom:765.929433px;}
.y1432_c00001{bottom:766.196121px;}
.y1332_c00001{bottom:766.289739px;}
.y1f2d_c00001{bottom:766.560450px;}
.y95a_c00001{bottom:766.915005px;}
.yba2_c00001{bottom:766.916652px;}
.y192f_c00001{bottom:767.010747px;}
.y2497_c00001{bottom:767.190450px;}
.y1a6_c00001{bottom:767.640450px;}
.yc0_c00001{bottom:767.730450px;}
.y18eb_c00001{bottom:767.730684px;}
.ybcb_c00001{bottom:767.904852px;}
.y174_c00001{bottom:767.910450px;}
.y146a_c00001{bottom:767.996715px;}
.y1d1d_c00001{bottom:768.001386px;}
.y1fb0_c00001{bottom:768.002070px;}
.y101c_c00001{bottom:768.090747px;}
.y195d_c00001{bottom:768.270639px;}
.y13ea_c00001{bottom:768.361944px;}
.y9e2_c00001{bottom:768.448245px;}
.y5a5_c00001{bottom:768.540600px;}
.y2209_c00001{bottom:768.722007px;}
.y1672_c00001{bottom:768.990450px;}
.y1184_c00001{bottom:769.076715px;}
.yf5d_c00001{bottom:769.077372px;}
.y2351_c00001{bottom:769.260450px;}
.y2197_c00001{bottom:769.350450px;}
.y2037_c00001{bottom:769.350825px;}
.y2412_c00001{bottom:769.441944px;}
.y512_c00001{bottom:769.890450px;}
.y1cae_c00001{bottom:769.891998px;}
.y189d_c00001{bottom:770.158029px;}
.y1d6c_c00001{bottom:770.252061px;}
.y1d8c_c00001{bottom:770.340270px;}
.y1408_c00001{bottom:770.517678px;}
.y17a8_c00001{bottom:770.520063px;}
.y1b1a_c00001{bottom:770.610027px;}
.y8dd_c00001{bottom:770.695920px;}
.ycb9_c00001{bottom:770.799954px;}
.ycea_c00001{bottom:770.831058px;}
.y10c3_c00001{bottom:770.877966px;}
.y1497_c00001{bottom:770.968146px;}
.y2248_c00001{bottom:770.971998px;}
.y1e9_c00001{bottom:771.060450px;}
.y4dd_c00001{bottom:771.060600px;}
.y1e67_c00001{bottom:771.238029px;}
.y2cc_c00001{bottom:771.510450px;}
.y1690_c00001{bottom:771.779514px;}
.y1ad7_c00001{bottom:771.782115px;}
.y12bf_c00001{bottom:772.048146px;}
.y1355_c00001{bottom:772.048803px;}
.y208e_c00001{bottom:772.050450px;}
.ye3e_c00001{bottom:772.141053px;}
.y115f_c00001{bottom:772.314834px;}
.y2b4_c00001{bottom:772.950450px;}
.y1274_c00001{bottom:773.128803px;}
.y14b8_c00001{bottom:773.129460px;}
.y18f_c00001{bottom:773.310450px;}
.y1dcf_c00001{bottom:773.395491px;}
.y5ed_c00001{bottom:773.670450px;}
.y16e9_c00001{bottom:773.670648px;}
.y1af9_c00001{bottom:773.849397px;}
.ya08_c00001{bottom:773.939460px;}
.y11_c00001{bottom:773.940450px;}
.ya8d_c00001{bottom:773.941107px;}
.y19b9_c00001{bottom:774.209460px;}
.y1539_c00001{bottom:774.210117px;}
.y462_c00001{bottom:774.210450px;}
.y3c8_c00001{bottom:774.390459px;}
.y307_c00001{bottom:774.660600px;}
.y222f_c00001{bottom:774.752043px;}
.y980_c00001{bottom:774.927660px;}
.ya51_c00001{bottom:774.929307px;}
.y17f4_c00001{bottom:774.929397px;}
.y575_c00001{bottom:774.930600px;}
.y24c8_c00001{bottom:775.020450px;}
.y1111_c00001{bottom:775.105905px;}
.y1252_c00001{bottom:775.196085px;}
.y14db_c00001{bottom:775.290117px;}
.y155_c00001{bottom:775.560450px;}
.y92f_c00001{bottom:775.915860px;}
.y9aa_c00001{bottom:775.917507px;}
.y1c54_c00001{bottom:776.010711px;}
.y2503_c00001{bottom:776.100450px;}
.y1a29_c00001{bottom:776.191917px;}
.y1ed0_c00001{bottom:776.276085px;}
.y1576_c00001{bottom:776.276742px;}
.y786_c00001{bottom:776.280450px;}
.yd78_c00001{bottom:776.460450px;}
.yfa_c00001{bottom:776.641107px;}
.y53_c00001{bottom:776.730450px;}
.y1e26_c00001{bottom:777.000450px;}
.y1985_c00001{bottom:777.090711px;}
.yed5_c00001{bottom:777.270657px;}
.yf03_c00001{bottom:777.271062px;}
.y1c7d_c00001{bottom:777.356742px;}
.y1874_c00001{bottom:777.539640px;}
.yf2e_c00001{bottom:777.540459px;}
.y229c_c00001{bottom:777.721971px;}
.y407_c00001{bottom:777.810450px;}
.yb42_c00001{bottom:777.893907px;}
.y41d_c00001{bottom:777.900450px;}
.y104b_c00001{bottom:778.077336px;}
.y7c2_c00001{bottom:778.170450px;}
.y243b_c00001{bottom:778.260450px;}
.y248f_c00001{bottom:778.350450px;}
.y871_c00001{bottom:778.440450px;}
.y4f2_c00001{bottom:778.620702px;}
.y435_c00001{bottom:778.710450px;}
.y13e_c00001{bottom:778.800450px;}
.y20f_c00001{bottom:778.890450px;}
.y1aac_c00001{bottom:778.891962px;}
.y537_c00001{bottom:778.980450px;}
.y1bf7_c00001{bottom:779.157336px;}
.y16b3_c00001{bottom:779.157993px;}
.y1d44_c00001{bottom:779.252025px;}
.y353_c00001{bottom:779.340450px;}
.y829_c00001{bottom:779.513160px;}
.y1f0b_c00001{bottom:779.518713px;}
.y23a3_c00001{bottom:779.971962px;}
.y155b_c00001{bottom:780.237993px;}
.y10ec_c00001{bottom:780.238650px;}
.y2147_c00001{bottom:780.330450px;}
.y6b2_c00001{bottom:780.510288px;}
.yea6_c00001{bottom:780.780837px;}
.ye6d_c00001{bottom:780.781062px;}
.ye09_c00001{bottom:780.782079px;}
.y22b4_c00001{bottom:780.870450px;}
.y10a6_c00001{bottom:780.958587px;}
.y1fdf_c00001{bottom:780.960450px;}
.yc21_c00001{bottom:781.046265px;}
.y15f8_c00001{bottom:781.048767px;}
.y2016_c00001{bottom:781.050450px;}
.y506_c00001{bottom:781.230450px;}
.y19d9_c00001{bottom:781.318650px;}
.y373_c00001{bottom:781.410450px;}
.y6d3_c00001{bottom:781.500450px;}
.y1f6d_c00001{bottom:781.680450px;}
.y1646_c00001{bottom:781.860135px;}
.y107c_c00001{bottom:782.039244px;}
.y5c1_c00001{bottom:782.040600px;}
.y1d0b_c00001{bottom:782.129424px;}
.ya6_c00001{bottom:782.310450px;}
.y1722_c00001{bottom:782.395455px;}
.yfbc_c00001{bottom:782.399307px;}
.y245b_c00001{bottom:782.399964px;}
.yd9e_c00001{bottom:782.490450px;}
.ydcd_c00001{bottom:782.491674px;}
.yfee_c00001{bottom:783.119244px;}
.y1831_c00001{bottom:783.209424px;}
.y247_c00001{bottom:783.210450px;}
.y1431_c00001{bottom:783.476112px;}
.y1331_c00001{bottom:783.479550px;}
.yd1e_c00001{bottom:783.761826px;}
.yd4b_c00001{bottom:783.789474px;}
.y1f49_c00001{bottom:783.840450px;}
.y1dea_c00001{bottom:783.840684px;}
.yb19_c00001{bottom:783.928515px;}
.yc69_c00001{bottom:783.930162px;}
.ya28_c00001{bottom:783.931809px;}
.y15d4_c00001{bottom:784.290738px;}
.y44a_c00001{bottom:784.470450px;}
.y23c5_c00001{bottom:784.471944px;}
.y653_c00001{bottom:784.650450px;}
.y906_c00001{bottom:784.916715px;}
.yb7b_c00001{bottom:784.917300px;}
.yac6_c00001{bottom:784.918362px;}
.y18ea_c00001{bottom:785.010675px;}
.y1d1c_c00001{bottom:785.191197px;}
.y1469_c00001{bottom:785.276706px;}
.y1a5c_c00001{bottom:785.370738px;}
.y195c_c00001{bottom:785.460450px;}
.y959_c00001{bottom:785.904915px;}
.ybe4_c00001{bottom:785.906562px;}
.y2208_c00001{bottom:786.001998px;}
.yf5c_c00001{bottom:786.267183px;}
.y74_c00001{bottom:786.270450px;}
.y1183_c00001{bottom:786.356706px;}
.y1139_c00001{bottom:786.357363px;}
.y2305_c00001{bottom:786.721935px;}
.y563_c00001{bottom:786.810450px;}
.y672_c00001{bottom:786.900450px;}
.y1cad_c00001{bottom:787.171989px;}
.y1f2c_c00001{bottom:787.260450px;}
.y9e1_c00001{bottom:787.347570px;}
.y189c_c00001{bottom:787.438020px;}
.y1d6b_c00001{bottom:787.441872px;}
.y1c62_c00001{bottom:787.620261px;}
.y1c04_c00001{bottom:787.890018px;}
.y3e6_c00001{bottom:787.980450px;}
.y11e6_c00001{bottom:788.157957px;}
.y492_c00001{bottom:788.250450px;}
.y2247_c00001{bottom:788.251989px;}
.y1e66_c00001{bottom:788.518020px;}
.y1ad6_c00001{bottom:788.971926px;}
.y843_c00001{bottom:789.060450px;}
.y47d_c00001{bottom:789.150450px;}
.y18b3_c00001{bottom:789.237957px;}
.yf8a_c00001{bottom:789.238614px;}
.ye3d_c00001{bottom:789.330864px;}
.y115e_c00001{bottom:789.504645px;}
.y1671_c00001{bottom:789.600450px;}
.y8dc_c00001{bottom:789.685830px;}
.y1f86_c00001{bottom:789.960450px;}
.y2000_c00001{bottom:790.050450px;}
.y686_c00001{bottom:790.140450px;}
.y2101_c00001{bottom:790.230600px;}
.y1273_c00001{bottom:790.318614px;}
.y1f00_c00001{bottom:790.319271px;}
.y52d_c00001{bottom:790.684491px;}
.ycb8_c00001{bottom:790.689234px;}
.yce9_c00001{bottom:790.720338px;}
.y16e8_c00001{bottom:790.860459px;}
.y4dc_c00001{bottom:791.040600px;}
.y1206_c00001{bottom:791.129388px;}
.ybf_c00001{bottom:791.310450px;}
.y1858_c00001{bottom:791.399271px;}
.yaf7_c00001{bottom:791.492079px;}
.y173_c00001{bottom:791.580450px;}
.y3c7_c00001{bottom:791.670450px;}
.y222e_c00001{bottom:791.941854px;}
.y17f3_c00001{bottom:792.209388px;}
.y1110_c00001{bottom:792.385896px;}
.y1251_c00001{bottom:792.476076px;}
.y1fc6_c00001{bottom:792.750450px;}
.ya07_c00001{bottom:792.929370px;}
.y1c53_c00001{bottom:793.290702px;}
.y259_c00001{bottom:793.470450px;}
.yb96_c00001{bottom:793.826985px;}
.y97f_c00001{bottom:793.917570px;}
.yc4a_c00001{bottom:793.919217px;}
.y1faf_c00001{bottom:794.191845px;}
.y461_c00001{bottom:794.280450px;}
.y101b_c00001{bottom:794.280522px;}
.y1621_c00001{bottom:794.370702px;}
.yed4_c00001{bottom:794.550648px;}
.yf02_c00001{bottom:794.551053px;}
.y1e8_c00001{bottom:794.640450px;}
.y13e9_c00001{bottom:794.641899px;}
.y1c34_c00001{bottom:794.729451px;}
.yf2d_c00001{bottom:794.820450px;}
.y971_c00001{bottom:794.905770px;}
.yba1_c00001{bottom:794.907417px;}
.y2186_c00001{bottom:794.910450px;}
.y2cb_c00001{bottom:795.180450px;}
.y11ab_c00001{bottom:795.357327px;}
.y2036_c00001{bottom:795.540600px;}
.y6eb_c00001{bottom:795.810450px;}
.ybca_c00001{bottom:795.895617px;}
.y1aab_c00001{bottom:796.171953px;}
.y130d_c00001{bottom:796.437327px;}
.y16b2_c00001{bottom:796.437984px;}
.y21bc_c00001{bottom:796.441836px;}
.y2b3_c00001{bottom:796.620450px;}
.y2502_c00001{bottom:796.800450px;}
.y2f_c00001{bottom:796.980450px;}
.y10eb_c00001{bottom:797.428461px;}
.y155a_c00001{bottom:797.517984px;}
.y10_c00001{bottom:797.520450px;}
.y1e25_c00001{bottom:797.700450px;}
.y17a7_c00001{bottom:797.790495px;}
.y1407_c00001{bottom:797.878290px;}
.y1b19_c00001{bottom:797.970639px;}
.yea5_c00001{bottom:797.970648px;}
.ye6c_c00001{bottom:797.970873px;}
.ye08_c00001{bottom:797.971890px;}
.y10c2_c00001{bottom:798.238578px;}
.y749_c00001{bottom:798.240450px;}
.yf9_c00001{bottom:798.330450px;}
.y306_c00001{bottom:798.330600px;}
.y574_c00001{bottom:798.510600px;}
.y19d8_c00001{bottom:798.598641px;}
.y24c7_c00001{bottom:798.690450px;}
.y1a5_c00001{bottom:799.050450px;}
.y1645_c00001{bottom:799.140126px;}
.y12be_c00001{bottom:799.318578px;}
.y107b_c00001{bottom:799.319235px;}
.y1721_c00001{bottom:799.585266px;}
.yfbb_c00001{bottom:799.679298px;}
.y245a_c00001{bottom:799.679955px;}
.ydcc_c00001{bottom:799.681485px;}
.y2496_c00001{bottom:799.770450px;}
.y6b1_c00001{bottom:800.130450px;}
.yc98_c00001{bottom:800.215194px;}
.y4f1_c00001{bottom:800.310045px;}
.y52_c00001{bottom:800.310450px;}
.yfed_c00001{bottom:800.399235px;}
.y14b7_c00001{bottom:800.399892px;}
.y611_c00001{bottom:800.400450px;}
.y5a4_c00001{bottom:800.582166px;}
.y1dce_c00001{bottom:800.665923px;}
.y1330_c00001{bottom:800.759541px;}
.yd77_c00001{bottom:801.300450px;}
.y15d3_c00001{bottom:801.480549px;}
.y1fde_c00001{bottom:801.660450px;}
.y2015_c00001{bottom:801.750450px;}
.y7c1_c00001{bottom:801.840450px;}
.ya8c_c00001{bottom:801.930225px;}
.y870_c00001{bottom:802.020450px;}
.y18e9_c00001{bottom:802.290666px;}
.y20e_c00001{bottom:802.470450px;}
.y1d1b_c00001{bottom:802.471188px;}
.y1a28_c00001{bottom:802.471872px;}
.y1468_c00001{bottom:802.556697px;}
.y536_c00001{bottom:802.560450px;}
.y14da_c00001{bottom:802.560549px;}
.yaac_c00001{bottom:802.918425px;}
.ya50_c00001{bottom:802.920072px;}
.y352_c00001{bottom:802.920450px;}
.ya27_c00001{bottom:802.921719px;}
.y4bc_c00001{bottom:803.010450px;}
.y2207_c00001{bottom:803.191809px;}
.yd1d_c00001{bottom:803.561250px;}
.yd4a_c00001{bottom:803.588898px;}
.y1182_c00001{bottom:803.636697px;}
.y1138_c00001{bottom:803.637354px;}
.y896_c00001{bottom:803.730450px;}
.y92e_c00001{bottom:803.906625px;}
.yb7a_c00001{bottom:803.907210px;}
.y9a9_c00001{bottom:803.908272px;}
.y229b_c00001{bottom:804.001926px;}
.y1cac_c00001{bottom:804.361800px;}
.y1c7c_c00001{bottom:804.717354px;}
.y189b_c00001{bottom:804.718011px;}
.y236c_c00001{bottom:804.721863px;}
.y1873_c00001{bottom:804.810072px;}
.y505_c00001{bottom:804.810450px;}
.yc0e_c00001{bottom:804.894825px;}
.ybe3_c00001{bottom:804.896472px;}
.y372_c00001{bottom:804.990450px;}
.y6d2_c00001{bottom:805.080450px;}
.y104a_c00001{bottom:805.347768px;}
.y11e5_c00001{bottom:805.437948px;}
.y1d43_c00001{bottom:805.441800px;}
.y5c0_c00001{bottom:805.620600px;}
.yb41_c00001{bottom:805.794087px;}
.y1e65_c00001{bottom:805.798011px;}
.y1f0a_c00001{bottom:805.798668px;}
.y230_c00001{bottom:805.980450px;}
.yd9d_c00001{bottom:806.160450px;}
.y54a_c00001{bottom:806.250459px;}
.y1ad5_c00001{bottom:806.251917px;}
.y5ec_c00001{bottom:806.340450px;}
.yf89_c00001{bottom:806.428425px;}
.y18b2_c00001{bottom:806.517948px;}
.y1354_c00001{bottom:806.518605px;}
.ye3c_c00001{bottom:806.610855px;}
.y246_c00001{bottom:806.790450px;}
.y154_c00001{bottom:807.060450px;}
.y1272_c00001{bottom:807.598605px;}
.y1eff_c00001{bottom:807.599262px;}
.y1f2b_c00001{bottom:807.960450px;}
.y16e7_c00001{bottom:808.140450px;}
.y652_c00001{bottom:808.230450px;}
.y10a5_c00001{bottom:808.319199px;}
.y13c7_c00001{bottom:808.679262px;}
.yc20_c00001{bottom:809.037030px;}
.y222d_c00001{bottom:809.221845px;}
.y28f_c00001{bottom:809.310450px;}
.y17f2_c00001{bottom:809.399199px;}
.y110f_c00001{bottom:809.665887px;}
.y73_c00001{bottom:809.940450px;}
.y2146_c00001{bottom:810.030450px;}
.y1de9_c00001{bottom:810.030459px;}
.y1670_c00001{bottom:810.300450px;}
.y406_c00001{bottom:810.480450px;}
.y1c52_c00001{bottom:810.480513px;}
.yaf6_c00001{bottom:810.481989px;}
.ycb7_c00001{bottom:810.488658px;}
.yce8_c00001{bottom:810.519762px;}
.y41c_c00001{bottom:810.570450px;}
.y2350_c00001{bottom:810.660450px;}
.y1430_c00001{bottom:810.746544px;}
.y1f48_c00001{bottom:810.750450px;}
.y23c4_c00001{bottom:810.751899px;}
.y1f6c_c00001{bottom:811.380450px;}
.y13d_c00001{bottom:811.560450px;}
.y101a_c00001{bottom:811.560513px;}
.yed3_c00001{bottom:811.740459px;}
.yf01_c00001{bottom:811.740864px;}
.ya06_c00001{bottom:811.919280px;}
.y52c_c00001{bottom:812.373834px;}
.yf5b_c00001{bottom:812.547138px;}
.y11c8_c00001{bottom:812.637318px;}
.y47c_c00001{bottom:812.820450px;}
.y905_c00001{bottom:812.907480px;}
.yc7e_c00001{bottom:812.909127px;}
.y2304_c00001{bottom:813.001890px;}
.y1aaa_c00001{bottom:813.361764px;}
.y258_c00001{bottom:813.450450px;}
.y1298_c00001{bottom:813.717318px;}
.y16b1_c00001{bottom:813.717975px;}
.y1d6a_c00001{bottom:813.721827px;}
.yf2c_c00001{bottom:813.810450px;}
.y958_c00001{bottom:813.895680px;}
.yba0_c00001{bottom:813.897327px;}
.y10ea_c00001{bottom:814.708452px;}
.y1559_c00001{bottom:814.797975px;}
.ya5_c00001{bottom:814.980450px;}
.y172_c00001{bottom:815.160450px;}
.yea4_c00001{bottom:815.250639px;}
.ye6b_c00001{bottom:815.250864px;}
.ye07_c00001{bottom:815.251881px;}
.y9e0_c00001{bottom:815.338335px;}
.y15f7_c00001{bottom:815.518569px;}
.y1644_c00001{bottom:816.420117px;}
.y19a8_c00001{bottom:816.598569px;}
.y107a_c00001{bottom:816.599226px;}
.y115d_c00001{bottom:816.865257px;}
.ydcb_c00001{bottom:816.961476px;}
.y449_c00001{bottom:817.050450px;}
.y511_c00001{bottom:817.140450px;}
.y8db_c00001{bottom:817.676595px;}
.yfec_c00001{bottom:817.679226px;}
.y1538_c00001{bottom:817.679883px;}
.y2525_c00001{bottom:817.860450px;}
.y3c6_c00001{bottom:817.860600px;}
.y1dcd_c00001{bottom:817.945914px;}
.y1e7_c00001{bottom:818.310450px;}
.y1205_c00001{bottom:818.399820px;}
.y1e24_c00001{bottom:818.400450px;}
.y1857_c00001{bottom:818.759883px;}
.y2ca_c00001{bottom:818.760450px;}
.y192e_c00001{bottom:818.760540px;}
.y61e_c00001{bottom:818.940450px;}
.y562_c00001{bottom:819.480450px;}
.y18e8_c00001{bottom:819.480477px;}
.y671_c00001{bottom:819.570450px;}
.y1f85_c00001{bottom:819.660450px;}
.y1250_c00001{bottom:819.746508px;}
.y1fff_c00001{bottom:819.750450px;}
.y14d9_c00001{bottom:819.840540px;}
.y2100_c00001{bottom:819.930600px;}
.y460_c00001{bottom:820.020450px;}
.y2b2_c00001{bottom:820.290450px;}
.y491_c00001{bottom:820.290702px;}
.y1fae_c00001{bottom:820.471800px;}
.y18e_c00001{bottom:820.560450px;}
.y1620_c00001{bottom:820.560477px;}
.y1181_c00001{bottom:820.826508px;}
.y1137_c00001{bottom:820.827165px;}
.ya8b_c00001{bottom:820.920135px;}
.y13e8_c00001{bottom:820.921854px;}
.yf_c00001{bottom:821.190450px;}
.y1984_c00001{bottom:821.641134px;}
.y1cab_c00001{bottom:821.641791px;}
.y189a_c00001{bottom:821.907822px;}
.ya78_c00001{bottom:821.908335px;}
.ya4f_c00001{bottom:821.909982px;}
.y4f0_c00001{bottom:821.910450px;}
.y305_c00001{bottom:821.910600px;}
.y248a_c00001{bottom:822.000450px;}
.y236b_c00001{bottom:822.001854px;}
.y1872_c00001{bottom:822.090063px;}
.y573_c00001{bottom:822.180450px;}
.y24c6_c00001{bottom:822.270450px;}
.y5a3_c00001{bottom:822.271509px;}
.y1fdd_c00001{bottom:822.360450px;}
.y1fc5_c00001{bottom:822.450450px;}
.y842_c00001{bottom:822.540600px;}
.y11aa_c00001{bottom:822.717939px;}
.y1d42_c00001{bottom:822.721791px;}
.y92d_c00001{bottom:822.896535px;}
.yac5_c00001{bottom:822.898182px;}
.y1ad4_c00001{bottom:823.441728px;}
.yd1c_c00001{bottom:823.450530px;}
.yd49_c00001{bottom:823.478178px;}
.y549_c00001{bottom:823.530450px;}
.yf88_c00001{bottom:823.708416px;}
.ybc9_c00001{bottom:823.795797px;}
.y130c_c00001{bottom:823.797939px;}
.y172e_c00001{bottom:823.798596px;}
.ye3b_c00001{bottom:823.890846px;}
.y51_c00001{bottom:823.980450px;}
.y17a6_c00001{bottom:824.070450px;}
.y2185_c00001{bottom:824.610450px;}
.y1271_c00001{bottom:824.878596px;}
.y1efe_c00001{bottom:824.879253px;}
.yd76_c00001{bottom:824.970450px;}
.y1406_c00001{bottom:825.148722px;}
.y16e6_c00001{bottom:825.420441px;}
.y10a4_c00001{bottom:825.599190px;}
.y248e_c00001{bottom:825.600450px;}
.y86f_c00001{bottom:825.690450px;}
.yfba_c00001{bottom:825.869073px;}
.y19b8_c00001{bottom:825.959253px;}
.y2459_c00001{bottom:825.959910px;}
.y6b0_c00001{bottom:825.960450px;}
.y20d_c00001{bottom:826.140450px;}
.y535_c00001{bottom:826.230450px;}
.y222c_c00001{bottom:826.501836px;}
.y351_c00001{bottom:826.590450px;}
.y12bd_c00001{bottom:826.679190px;}
.y1759_c00001{bottom:826.945878px;}
.y828_c00001{bottom:827.755194px;}
.y14b6_c00001{bottom:827.760504px;}
.y132f_c00001{bottom:828.029973px;}
.y6ea_c00001{bottom:828.300450px;}
.y504_c00001{bottom:828.480450px;}
.y371_c00001{bottom:828.660450px;}
.y6d1_c00001{bottom:828.750450px;}
.y1d1a_c00001{bottom:828.751143px;}
.y1a27_c00001{bottom:828.751827px;}
.y1019_c00001{bottom:828.840504px;}
.y15d2_c00001{bottom:828.841161px;}
.yed2_c00001{bottom:829.020450px;}
.yf00_c00001{bottom:829.020855px;}
.y5bf_c00001{bottom:829.290600px;}
.y2e_c00001{bottom:829.560450px;}
.y748_c00001{bottom:829.650450px;}
.yf5a_c00001{bottom:829.827129px;}
.y229a_c00001{bottom:830.191701px;}
.ycb6_c00001{bottom:830.288082px;}
.yce7_c00001{bottom:830.319186px;}
.y245_c00001{bottom:830.460450px;}
.y41b_c00001{bottom:830.550450px;}
.y1575_c00001{bottom:830.907786px;}
.ya26_c00001{bottom:830.910837px;}
.y166f_c00001{bottom:831.000450px;}
.y1d69_c00001{bottom:831.001818px;}
.yd9c_c00001{bottom:831.090450px;}
.y234f_c00001{bottom:831.360450px;}
.y2014_c00001{bottom:831.450450px;}
.y949_c00001{bottom:831.897390px;}
.yb79_c00001{bottom:831.897975px;}
.y9a8_c00001{bottom:831.899037px;}
.y1b74_c00001{bottom:831.987786px;}
.y1f09_c00001{bottom:831.988443px;}
.ye6a_c00001{bottom:832.440675px;}
.ye06_c00001{bottom:832.441692px;}
.y1049_c00001{bottom:832.708380px;}
.yc0d_c00001{bottom:832.795005px;}
.ybe2_c00001{bottom:832.796652px;}
.y11e4_c00001{bottom:832.798560px;}
.y153_c00001{bottom:832.800450px;}
.y28e_c00001{bottom:832.980450px;}
.y1e64_c00001{bottom:833.068443px;}
.y2495_c00001{bottom:833.250450px;}
.y72_c00001{bottom:833.520450px;}
.y168f_c00001{bottom:833.609928px;}
.yb40_c00001{bottom:833.784852px;}
.y1079_c00001{bottom:833.789037px;}
.y1e7f_c00001{bottom:833.878560px;}
.y1778_c00001{bottom:833.879217px;}
.y52b_c00001{bottom:834.063177px;}
.ydca_c00001{bottom:834.241467px;}
.y9df_c00001{bottom:834.328245px;}
.y7c0_c00001{bottom:834.510450px;}
.yfeb_c00001{bottom:834.869037px;}
.y1830_c00001{bottom:834.959217px;}
.y1537_c00001{bottom:834.959874px;}
.y13c_c00001{bottom:835.230450px;}
.y13a0_c00001{bottom:835.679811px;}
.y4bb_c00001{bottom:835.680450px;}
.y13c6_c00001{bottom:836.039874px;}
.y19fe_c00001{bottom:836.040531px;}
.y895_c00001{bottom:836.130450px;}
.y1de8_c00001{bottom:836.310414px;}
.y17f1_c00001{bottom:836.759811px;}
.y18e7_c00001{bottom:836.760468px;}
.y110e_c00001{bottom:836.936319px;}
.yc1f_c00001{bottom:836.937210px;}
.y23c3_c00001{bottom:836.941674px;}
.y12da_c00001{bottom:837.026499px;}
.y1a5b_c00001{bottom:837.030351px;}
.y448_c00001{bottom:837.120450px;}
.y6a1_c00001{bottom:837.480450px;}
.y2206_c00001{bottom:837.751791px;}
.y161f_c00001{bottom:837.840468px;}
.y5eb_c00001{bottom:837.840639px;}
.y1229_c00001{bottom:838.106499px;}
.y142f_c00001{bottom:838.107156px;}
.yaf5_c00001{bottom:838.472754px;}
.y88_c00001{bottom:838.560450px;}
.y171_c00001{bottom:838.830450px;}
.y1caa_c00001{bottom:838.921782px;}
.y1e23_c00001{bottom:839.100450px;}
.y2303_c00001{bottom:839.191665px;}
.y6ff_c00001{bottom:839.460450px;}
.y1aa9_c00001{bottom:839.641719px;}
.y2145_c00001{bottom:839.730450px;}
.y136d_c00001{bottom:839.907750px;}
.ya05_c00001{bottom:839.910045px;}
.y1d41_c00001{bottom:840.001782px;}
.y1f84_c00001{bottom:840.360450px;}
.y1f47_c00001{bottom:840.450450px;}
.y1ad3_c00001{bottom:840.721719px;}
.y904_c00001{bottom:840.898245px;}
.ya4e_c00001{bottom:840.899892px;}
.y651_c00001{bottom:840.900450px;}
.y1297_c00001{bottom:840.987750px;}
.yf87_c00001{bottom:840.988407px;}
.y1f6b_c00001{bottom:841.080450px;}
.ye3a_c00001{bottom:841.080657px;}
.y2524_c00001{bottom:841.530450px;}
.y957_c00001{bottom:841.795860px;}
.yb9f_c00001{bottom:841.797507px;}
.y1e6_c00001{bottom:841.890450px;}
.y490_c00001{bottom:841.891107px;}
.y1270_c00001{bottom:842.068407px;}
.y10e9_c00001{bottom:842.069064px;}
.y2c9_c00001{bottom:842.430450px;}
.y61d_c00001{bottom:842.520450px;}
.y1643_c00001{bottom:842.609892px;}
.y16e5_c00001{bottom:842.610252px;}
.y2489_c00001{bottom:842.700450px;}
.y10a3_c00001{bottom:842.789001px;}
.y1496_c00001{bottom:842.879181px;}
.yfb9_c00001{bottom:843.149064px;}
.y2458_c00001{bottom:843.149721px;}
.y405_c00001{bottom:843.150450px;}
.yd1b_c00001{bottom:843.249954px;}
.yd48_c00001{bottom:843.277602px;}
.y222b_c00001{bottom:843.691647px;}
.y2b1_c00001{bottom:843.870450px;}
.y5a2_c00001{bottom:843.871914px;}
.y12bc_c00001{bottom:843.959181px;}
.y115c_c00001{bottom:844.225869px;}
.y18d_c00001{bottom:844.230450px;}
.y1ec4_c00001{bottom:844.949658px;}
.y192d_c00001{bottom:844.950315px;}
.y1c51_c00001{bottom:845.040495px;}
.y1dcc_c00001{bottom:845.306526px;}
.y47b_c00001{bottom:845.400450px;}
.y304_c00001{bottom:845.580600px;}
.y8da_c00001{bottom:845.667360px;}
.y1204_c00001{bottom:845.760432px;}
.y572_c00001{bottom:845.760450px;}
.y1018_c00001{bottom:846.030315px;}
.yed1_c00001{bottom:846.300846px;}
.y1fad_c00001{bottom:846.751755px;}
.yf59_c00001{bottom:847.016940px;}
.y124f_c00001{bottom:847.107120px;}
.y14d8_c00001{bottom:847.110972px;}
.y13e7_c00001{bottom:847.111629px;}
.y2411_c00001{bottom:847.471692px;}
.y50_c00001{bottom:847.560450px;}
.y1180_c00001{bottom:848.187120px;}
.y1136_c00001{bottom:848.187777px;}
.y21bb_c00001{bottom:848.191629px;}
.yc97_c00001{bottom:848.457228px;}
.y1983_c00001{bottom:849.001746px;}
.y1899_c00001{bottom:849.268434px;}
.y548_c00001{bottom:849.270450px;}
.y1f2a_c00001{bottom:849.360450px;}
.y1ffe_c00001{bottom:849.450450px;}
.y1871_c00001{bottom:849.450675px;}
.y510_c00001{bottom:849.720450px;}
.ye69_c00001{bottom:849.720666px;}
.ye05_c00001{bottom:849.721683px;}
.yaab_c00001{bottom:849.899100px;}
.y534_c00001{bottom:849.900450px;}
.ya25_c00001{bottom:849.900747px;}
.y1048_c00001{bottom:849.988371px;}
.ycb5_c00001{bottom:850.177362px;}
.yce6_c00001{bottom:850.208466px;}
.y92c_c00001{bottom:850.796715px;}
.y9a7_c00001{bottom:850.798362px;}
.y168e_c00001{bottom:850.889919px;}
.y17a5_c00001{bottom:850.890450px;}
.y670_c00001{bottom:850.980450px;}
.y150e_c00001{bottom:851.068371px;}
.y1078_c00001{bottom:851.069028px;}
.ydc9_c00001{bottom:851.431278px;}
.y166e_c00001{bottom:851.700450px;}
.yc0c_c00001{bottom:851.784915px;}
.ybc8_c00001{bottom:851.786562px;}
.y1fc4_c00001{bottom:852.060450px;}
.yfea_c00001{bottom:852.149028px;}
.y1536_c00001{bottom:852.149685px;}
.y503_c00001{bottom:852.150450px;}
.y370_c00001{bottom:852.330450px;}
.y6d0_c00001{bottom:852.420450px;}
.y1405_c00001{bottom:852.509334px;}
.y5be_c00001{bottom:852.870600px;}
.y1eea_c00001{bottom:852.959802px;}
.y8b5_c00001{bottom:853.050450px;}
.y13c5_c00001{bottom:853.229685px;}
.y19fd_c00001{bottom:853.230342px;}
.y22f_c00001{bottom:853.230450px;}
.ye_c00001{bottom:853.770450px;}
.y244_c00001{bottom:854.040450px;}
.y18e6_c00001{bottom:854.040459px;}
.y1380_c00001{bottom:854.306490px;}
.y2184_c00001{bottom:854.310450px;}
.yd9b_c00001{bottom:854.760450px;}
.y24c5_c00001{bottom:854.940450px;}
.y1d19_c00001{bottom:854.940918px;}
.y1a26_c00001{bottom:854.941602px;}
.y161e_c00001{bottom:855.030279px;}
.y5ea_c00001{bottom:855.030450px;}
.y14b5_c00001{bottom:855.030936px;}
.yf2b_c00001{bottom:855.210450px;}
.y142e_c00001{bottom:855.387147px;}
.y132e_c00001{bottom:855.390585px;}
.y4ba_c00001{bottom:855.660450px;}
.y52a_c00001{bottom:855.663582px;}
.y15d1_c00001{bottom:856.111593px;}
.y2299_c00001{bottom:856.471656px;}
.y28d_c00001{bottom:856.560450px;}
.y610_c00001{bottom:856.650450px;}
.y1aa8_c00001{bottom:856.921710px;}
.y11c7_c00001{bottom:857.187741px;}
.y71_c00001{bottom:857.190450px;}
.y1d40_c00001{bottom:857.191593px;}
.y1ad2_c00001{bottom:858.001710px;}
.yf86_c00001{bottom:858.178218px;}
.y1296_c00001{bottom:858.267741px;}
.y16b0_c00001{bottom:858.268398px;}
.y841_c00001{bottom:858.270450px;}
.ye39_c00001{bottom:858.360648px;}
.y20c_c00001{bottom:858.810450px;}
.ya04_c00001{bottom:858.899955px;}
.y13b_c00001{bottom:858.900450px;}
.y350_c00001{bottom:859.170450px;}
.y19d7_c00001{bottom:859.348398px;}
.y1efd_c00001{bottom:859.349055px;}
.y903_c00001{bottom:859.797570px;}
.yb78_c00001{bottom:859.798155px;}
.yc7d_c00001{bottom:859.799217px;}
.y1642_c00001{bottom:859.889883px;}
.y16e4_c00001{bottom:859.890243px;}
.y10a2_c00001{bottom:860.068992px;}
.yfb8_c00001{bottom:860.429055px;}
.y956_c00001{bottom:860.785770px;}
.ybe1_c00001{bottom:860.787417px;}
.y2205_c00001{bottom:860.971638px;}
.y1f83_c00001{bottom:861.060450px;}
.y12bb_c00001{bottom:861.148992px;}
.y6e9_c00001{bottom:861.150450px;}
.y115b_c00001{bottom:861.415680px;}
.yb3f_c00001{bottom:861.775617px;}
.y58b_c00001{bottom:862.050450px;}
.y1ce9_c00001{bottom:862.229649px;}
.y2d_c00001{bottom:862.230450px;}
.y9de_c00001{bottom:862.319010px;}
.y1de7_c00001{bottom:862.590369px;}
.y139f_c00001{bottom:862.950243px;}
.y1203_c00001{bottom:863.040423px;}
.yd1a_c00001{bottom:863.139234px;}
.yd47_c00001{bottom:863.166882px;}
.y23c2_c00001{bottom:863.221629px;}
.y1017_c00001{bottom:863.310306px;}
.y2488_c00001{bottom:863.400450px;}
.yed0_c00001{bottom:863.490657px;}
.y48f_c00001{bottom:863.580450px;}
.y17f0_c00001{bottom:864.030243px;}
.yf58_c00001{bottom:864.296931px;}
.y124e_c00001{bottom:864.387111px;}
.y2410_c00001{bottom:864.751683px;}
.yc1e_c00001{bottom:864.927975px;}
.y2523_c00001{bottom:865.200450px;}
.y1228_c00001{bottom:865.467111px;}
.y18be_c00001{bottom:865.467768px;}
.y47a_c00001{bottom:865.470450px;}
.y21ba_c00001{bottom:865.471620px;}
.y1e5_c00001{bottom:865.560450px;}
.y5a1_c00001{bottom:865.561257px;}
.y7bf_c00001{bottom:865.920450px;}
.y2c8_c00001{bottom:866.010450px;}
.y61c_c00001{bottom:866.190450px;}
.y1982_c00001{bottom:866.191557px;}
.yaf4_c00001{bottom:866.372934px;}
.ye68_c00001{bottom:867.000657px;}
.ye04_c00001{bottom:867.001674px;}
.y11a9_c00001{bottom:867.268362px;}
.y2b0_c00001{bottom:867.540450px;}
.y3e5_c00001{bottom:867.900450px;}
.y1077_c00001{bottom:868.349019px;}
.ydc8_c00001{bottom:868.711269px;}
.ya77_c00001{bottom:868.798425px;}
.ya4d_c00001{bottom:868.800072px;}
.y894_c00001{bottom:868.980450px;}
.y303_c00001{bottom:869.250450px;}
.yfe9_c00001{bottom:869.429019px;}
.y10e8_c00001{bottom:869.429676px;}
.y571_c00001{bottom:869.430450px;}
.y6a0_c00001{bottom:869.521359px;}
.y50f_c00001{bottom:869.700450px;}
.y92b_c00001{bottom:869.786625px;}
.y9a6_c00001{bottom:869.788272px;}
.ycb4_c00001{bottom:869.976786px;}
.yce5_c00001{bottom:870.007890px;}
.y1f46_c00001{bottom:870.060450px;}
.y15f6_c00001{bottom:870.149613px;}
.y21d4_c00001{bottom:870.150450px;}
.y13c4_c00001{bottom:870.509676px;}
.y1f6a_c00001{bottom:870.780450px;}
.y12fc_c00001{bottom:871.229613px;}
.y18e5_c00001{bottom:871.230270px;}
.y4f_c00001{bottom:871.230450px;}
.y170_c00001{bottom:871.410450px;}
.y137f_c00001{bottom:871.496301px;}
.y6fe_c00001{bottom:871.500954px;}
.y161d_c00001{bottom:872.310270px;}
.y192c_c00001{bottom:872.310927px;}
.y650_c00001{bottom:872.400450px;}
.y142d_c00001{bottom:872.576958px;}
.y132d_c00001{bottom:872.670576px;}
.y195b_c00001{bottom:872.850450px;}
.y86e_c00001{bottom:872.940450px;}
.y1fac_c00001{bottom:872.941530px;}
.y13e6_c00001{bottom:873.391584px;}
.yd75_c00001{bottom:873.480450px;}
.y8d9_c00001{bottom:873.658125px;}
.y1aa7_c00001{bottom:874.111521px;}
.y1467_c00001{bottom:874.467732px;}
.y14d7_c00001{bottom:874.471584px;}
.y1ad1_c00001{bottom:875.191521px;}
.yf85_c00001{bottom:875.458209px;}
.y117f_c00001{bottom:875.547732px;}
.y1135_c00001{bottom:875.548389px;}
.y1870_c00001{bottom:875.640450px;}
.ye38_c00001{bottom:875.640639px;}
.y404_c00001{bottom:875.730450px;}
.y36f_c00001{bottom:875.910450px;}
.y6cf_c00001{bottom:876.000450px;}
.y827_c00001{bottom:876.085491px;}
.y5bd_c00001{bottom:876.540450px;}
.y1898_c00001{bottom:876.629046px;}
.y63f_c00001{bottom:876.720450px;}
.y329_c00001{bottom:876.810450px;}
.y18c_c00001{bottom:876.900450px;}
.y1641_c00001{bottom:877.079694px;}
.y16e3_c00001{bottom:877.080054px;}
.y1047_c00001{bottom:877.348983px;}
.y529_c00001{bottom:877.352925px;}
.yfb7_c00001{bottom:877.618866px;}
.y243_c00001{bottom:877.710450px;}
.ya03_c00001{bottom:877.799280px;}
.ya24_c00001{bottom:877.800927px;}
.y2204_c00001{bottom:878.251629px;}
.y12ba_c00001{bottom:878.428983px;}
.y1e85_c00001{bottom:878.429640px;}
.y115a_c00001{bottom:878.695671px;}
.y948_c00001{bottom:878.787480px;}
.yb77_c00001{bottom:878.788065px;}
.yb2e_c00001{bottom:878.789127px;}
.y1f29_c00001{bottom:879.150450px;}
.y19fc_c00001{bottom:879.510297px;}
.yd9a_c00001{bottom:879.600450px;}
.yc0b_c00001{bottom:879.775680px;}
.ybc7_c00001{bottom:879.777327px;}
.y1404_c00001{bottom:879.779766px;}
.y1202_c00001{bottom:880.230234px;}
.y95_c00001{bottom:880.230450px;}
.y1016_c00001{bottom:880.590297px;}
.y17a4_c00001{bottom:880.590450px;}
.y1bd_c00001{bottom:880.770450px;}
.yecf_c00001{bottom:880.770648px;}
.y5e9_c00001{bottom:880.860600px;}
.y1a25_c00001{bottom:881.221557px;}
.y9dd_c00001{bottom:881.308920px;}
.y17ef_c00001{bottom:881.310234px;}
.y110d_c00001{bottom:881.576922px;}
.y1d18_c00001{bottom:881.760450px;}
.y2035_c00001{bottom:881.850450px;}
.y240f_c00001{bottom:881.941494px;}
.y14b4_c00001{bottom:882.391548px;}
.y533_c00001{bottom:882.480450px;}
.y1903_c00001{bottom:882.657579px;}
.y21b9_c00001{bottom:882.751611px;}
.y34f_c00001{bottom:882.840450px;}
.yd19_c00001{bottom:882.938658px;}
.yd46_c00001{bottom:882.966306px;}
.y1981_c00001{bottom:883.471548px;}
.y2487_c00001{bottom:883.920450px;}
.y2183_c00001{bottom:884.010450px;}
.ye67_c00001{bottom:884.190468px;}
.ye03_c00001{bottom:884.191485px;}
.y11a8_c00001{bottom:884.548353px;}
.y561_c00001{bottom:884.730450px;}
.yaf3_c00001{bottom:885.362844px;}
.y1076_c00001{bottom:885.538830px;}
.y14fa_c00001{bottom:885.628353px;}
.ya4_c00001{bottom:885.900450px;}
.ydc7_c00001{bottom:885.991260px;}
.yd_c00001{bottom:886.440450px;}
.yfe8_c00001{bottom:886.618830px;}
.y182f_c00001{bottom:886.709010px;}
.y1535_c00001{bottom:886.709667px;}
.ya8a_c00001{bottom:886.800135px;}
.y5a0_c00001{bottom:887.250600px;}
.y24c4_c00001{bottom:887.340450px;}
.y15f5_c00001{bottom:887.429604px;}
.y13c3_c00001{bottom:887.699487px;}
.y902_c00001{bottom:887.788335px;}
.ya4c_c00001{bottom:887.789982px;}
.y60f_c00001{bottom:888.150450px;}
.y18e4_c00001{bottom:888.510261px;}
.y137e_c00001{bottom:888.776292px;}
.y955_c00001{bottom:888.776535px;}
.yac4_c00001{bottom:888.778182px;}
.y1de6_c00001{bottom:888.780144px;}
.y2522_c00001{bottom:888.780450px;}
.y1e4_c00001{bottom:889.230450px;}
.y23c1_c00001{bottom:889.501584px;}
.y161c_c00001{bottom:889.590261px;}
.y2c7_c00001{bottom:889.680450px;}
.yb3e_c00001{bottom:889.766382px;}
.y70_c00001{bottom:889.770450px;}
.y1dcb_c00001{bottom:889.856949px;}
.y132c_c00001{bottom:889.860387px;}
.ycb3_c00001{bottom:889.866066px;}
.yce4_c00001{bottom:889.897170px;}
.y20b_c00001{bottom:890.220450px;}
.y1fab_c00001{bottom:890.221521px;}
.y139e_c00001{bottom:890.310855px;}
.y15d0_c00001{bottom:890.671575px;}
.y1f45_c00001{bottom:890.760450px;}
.y840_c00001{bottom:890.850450px;}
.y69f_c00001{bottom:891.121764px;}
.y479_c00001{bottom:891.210450px;}
.y1aa6_c00001{bottom:891.391512px;}
.y13a_c00001{bottom:891.480450px;}
.yf57_c00001{bottom:891.657543px;}
.y7be_c00001{bottom:891.750600px;}
.y1d68_c00001{bottom:891.751575px;}
.y1ad0_c00001{bottom:892.471512px;}
.y1227_c00001{bottom:892.737543px;}
.yf84_c00001{bottom:892.738200px;}
.y302_c00001{bottom:892.830450px;}
.yc1d_c00001{bottom:892.917093px;}
.y166d_c00001{bottom:893.100450px;}
.y6fd_c00001{bottom:893.101359px;}
.y6e8_c00001{bottom:893.730450px;}
.y1897_c00001{bottom:893.818857px;}
.y1640_c00001{bottom:894.359685px;}
.y1495_c00001{bottom:894.628974px;}
.yfb6_c00001{bottom:894.898857px;}
.y2c_c00001{bottom:894.900450px;}
.y2203_c00001{bottom:895.441440px;}
.y18b1_c00001{bottom:895.618794px;}
.y1e84_c00001{bottom:895.619451px;}
.y126f_c00001{bottom:895.708974px;}
.y86d_c00001{bottom:896.520450px;}
.yf2a_c00001{bottom:896.610450px;}
.y1c97_c00001{bottom:896.699451px;}
.y10e7_c00001{bottom:896.700108px;}
.yc96_c00001{bottom:896.787525px;}
.yaaa_c00001{bottom:896.789190px;}
.ya23_c00001{bottom:896.790837px;}
.yd74_c00001{bottom:897.150450px;}
.y1201_c00001{bottom:897.510225px;}
.y92a_c00001{bottom:897.777390px;}
.y9a5_c00001{bottom:897.779037px;}
.y1015_c00001{bottom:897.780108px;}
.yece_c00001{bottom:898.050639px;}
.y64f_c00001{bottom:898.140450px;}
.y12fb_c00001{bottom:898.590225px;}
.y110c_c00001{bottom:898.766733px;}
.y124d_c00001{bottom:898.856913px;}
.y528_c00001{bottom:899.042268px;}
.y2144_c00001{bottom:899.130450px;}
.y240e_c00001{bottom:899.221485px;}
.y502_c00001{bottom:899.400450px;}
.y6ce_c00001{bottom:899.670450px;}
.y13e5_c00001{bottom:899.671539px;}
.y142c_c00001{bottom:899.937570px;}
.y21b8_c00001{bottom:899.941422px;}
.y2af_c00001{bottom:900.120450px;}
.y5bc_c00001{bottom:900.210450px;}
.y22e_c00001{bottom:900.480450px;}
.y14d6_c00001{bottom:900.751539px;}
.y242_c00001{bottom:901.380450px;}
.ye66_c00001{bottom:901.470459px;}
.ye02_c00001{bottom:901.471476px;}
.y8d8_c00001{bottom:901.648890px;}
.y893_c00001{bottom:901.650450px;}
.y11a7_c00001{bottom:901.738164px;}
.y570_c00001{bottom:902.010450px;}
.y186f_c00001{bottom:902.460450px;}
.y22d3_c00001{bottom:902.550450px;}
.yd18_c00001{bottom:902.738082px;}
.yd45_c00001{bottom:902.765730px;}
.y117e_c00001{bottom:902.818164px;}
.y1574_c00001{bottom:902.818821px;}
.ydc6_c00001{bottom:903.181071px;}
.yd99_c00001{bottom:903.270450px;}
.y182e_c00001{bottom:903.898821px;}
.y1534_c00001{bottom:903.899478px;}
.y94_c00001{bottom:903.900450px;}
.y16f_c00001{bottom:904.080450px;}
.yaf2_c00001{bottom:904.352754px;}
.y1bc_c00001{bottom:904.440450px;}
.y16e2_c00001{bottom:904.440666px;}
.y1046_c00001{bottom:904.619415px;}
.y11e3_c00001{bottom:904.709595px;}
.y2486_c00001{bottom:904.800450px;}
.y12b9_c00001{bottom:905.699415px;}
.y18e3_c00001{bottom:905.700072px;}
.ya02_c00001{bottom:905.790045px;}
.y1159_c00001{bottom:906.056283px;}
.y8c8_c00001{bottom:906.150450px;}
.yea_c00001{bottom:906.420450px;}
.y34e_c00001{bottom:906.510450px;}
.y901_c00001{bottom:906.778245px;}
.yb76_c00001{bottom:906.778830px;}
.yc7c_c00001{bottom:906.779892px;}
.y161b_c00001{bottom:906.780072px;}
.y132b_c00001{bottom:907.140378px;}
.y1a24_c00001{bottom:907.501512px;}
.y1ee9_c00001{bottom:907.590846px;}
.y954_c00001{bottom:907.766445px;}
.ybc6_c00001{bottom:907.768092px;}
.y1856_c00001{bottom:907.860729px;}
.y15cf_c00001{bottom:907.861386px;}
.y403_c00001{bottom:908.400450px;}
.y36e_c00001{bottom:908.580450px;}
.y1aa5_c00001{bottom:908.671503px;}
.y1f28_c00001{bottom:908.850450px;}
.y16c4_c00001{bottom:908.937534px;}
.y1d67_c00001{bottom:908.941386px;}
.y9dc_c00001{bottom:909.299685px;}
.y5b2_c00001{bottom:909.300450px;}
.ya3_c00001{bottom:909.480450px;}
.ycb2_c00001{bottom:909.665490px;}
.yce3_c00001{bottom:909.696594px;}
.y17a3_c00001{bottom:909.750675px;}
.y23a2_c00001{bottom:909.751503px;}
.y1134_c00001{bottom:910.018191px;}
.ye37_c00001{bottom:910.381890px;}
.y1f44_c00001{bottom:911.460450px;}
.y1fdc_c00001{bottom:911.550450px;}
.y168d_c00001{bottom:911.639676px;}
.y1494_c00001{bottom:911.818785px;}
.yc1c_c00001{bottom:911.907003px;}
.y2521_c00001{bottom:912.450450px;}
.y2202_c00001{bottom:912.721431px;}
.y1e3_c00001{bottom:912.810450px;}
.y69e_c00001{bottom:912.811107px;}
.yfe7_c00001{bottom:912.898785px;}
.y1075_c00001{bottom:912.899442px;}
.y6f_c00001{bottom:913.440450px;}
.y2182_c00001{bottom:913.710450px;}
.y166c_c00001{bottom:913.800450px;}
.y60e_c00001{bottom:913.890450px;}
.y19d6_c00001{bottom:913.979442px;}
.y19fb_c00001{bottom:913.980099px;}
.y83f_c00001{bottom:914.520450px;}
.y1200_c00001{bottom:914.700036px;}
.y6fc_c00001{bottom:914.790702px;}
.y1014_c00001{bottom:915.060099px;}
.y139_c00001{bottom:915.150450px;}
.yecd_c00001{bottom:915.240450px;}
.y23c0_c00001{bottom:915.691359px;}
.y97e_c00001{bottom:915.779100px;}
.y12fa_c00001{bottom:915.780036px;}
.ya4b_c00001{bottom:915.780747px;}
.y110b_c00001{bottom:916.046724px;}
.y151c_c00001{bottom:916.136904px;}
.y301_c00001{bottom:916.500450px;}
.y929_c00001{bottom:916.767300px;}
.y9a4_c00001{bottom:916.768947px;}
.y14b3_c00001{bottom:916.861350px;}
.y1dca_c00001{bottom:917.217561px;}
.yf29_c00001{bottom:917.310450px;}
.y560_c00001{bottom:917.400450px;}
.y139d_c00001{bottom:917.671467px;}
.yb3d_c00001{bottom:917.757147px;}
.y1980_c00001{bottom:917.941350px;}
.y2b_c00001{bottom:918.480450px;}
.ye65_c00001{bottom:918.750639px;}
.ye01_c00001{bottom:918.751467px;}
.yc_c00001{bottom:918.840450px;}
.yf56_c00001{bottom:918.927975px;}
.y11a6_c00001{bottom:919.018155px;}
.yf83_c00001{bottom:920.008632px;}
.y1226_c00001{bottom:920.098155px;}
.y1573_c00001{bottom:920.098812px;}
.y86c_c00001{bottom:920.190450px;}
.ydc5_c00001{bottom:920.461062px;}
.y8d7_c00001{bottom:920.548215px;}
.y527_c00001{bottom:920.731611px;}
.yfb5_c00001{bottom:921.088632px;}
.y182d_c00001{bottom:921.178812px;}
.y2457_c00001{bottom:921.179469px;}
.y163f_c00001{bottom:921.720297px;}
.y16e1_c00001{bottom:921.720657px;}
.y11e2_c00001{bottom:921.899406px;}
.yd73_c00001{bottom:922.080450px;}
.y2c6_c00001{bottom:922.350450px;}
.yd17_c00001{bottom:922.627362px;}
.yd44_c00001{bottom:922.655010px;}
.y18b0_c00001{bottom:922.979406px;}
.y18e2_c00001{bottom:922.980063px;}
.y501_c00001{bottom:922.980450px;}
.y6cd_c00001{bottom:923.250450px;}
.yaf1_c00001{bottom:923.342664px;}
.y1ec3_c00001{bottom:924.060063px;}
.y10e6_c00001{bottom:924.060720px;}
.y22d_c00001{bottom:924.150450px;}
.y826_c00001{bottom:924.415788px;}
.y1faa_c00001{bottom:924.691323px;}
.ya01_c00001{bottom:924.779955px;}
.y1ee8_c00001{bottom:924.780657px;}
.y1855_c00001{bottom:925.140720px;}
.y15ce_c00001{bottom:925.141377px;}
.y892_c00001{bottom:925.230450px;}
.y2485_c00001{bottom:925.500450px;}
.y240d_c00001{bottom:925.501440px;}
.y947_c00001{bottom:925.768155px;}
.yb75_c00001{bottom:925.768740px;}
.yb2d_c00001{bottom:925.769802px;}
.y13e4_c00001{bottom:925.861314px;}
.y124c_c00001{bottom:926.217525px;}
.y21b7_c00001{bottom:926.221377px;}
.ybfb_c00001{bottom:926.758002px;}
.y14d5_c00001{bottom:926.941314px;}
.y142b_c00001{bottom:927.298182px;}
.y93_c00001{bottom:927.480450px;}
.y1bb_c00001{bottom:928.020450px;}
.y9db_c00001{bottom:928.199010px;}
.yd98_c00001{bottom:928.200450px;}
.y2143_c00001{bottom:928.830450px;}
.y1481_c00001{bottom:929.098776px;}
.y248d_c00001{bottom:929.190450px;}
.ye36_c00001{bottom:929.281215px;}
.ycb1_c00001{bottom:929.464914px;}
.yce2_c00001{bottom:929.496018px;}
.y2201_c00001{bottom:930.001422px;}
.yfe6_c00001{bottom:930.088596px;}
.y34d_c00001{bottom:930.090450px;}
.y117d_c00001{bottom:930.178776px;}
.y1533_c00001{bottom:930.179433px;}
.y1f69_c00001{bottom:930.180450px;}
.y1bc8_c00001{bottom:931.259433px;}
.y19fa_c00001{bottom:931.260090px;}
.y2ae_c00001{bottom:931.620450px;}
.y1045_c00001{bottom:931.980027px;}
.y402_c00001{bottom:931.980450px;}
.y36d_c00001{bottom:932.160450px;}
.y1fc3_c00001{bottom:932.250450px;}
.y1013_c00001{bottom:932.340090px;}
.y5bb_c00001{bottom:932.790450px;}
.y12b8_c00001{bottom:933.060027px;}
.ya2_c00001{bottom:933.150450px;}
.y1158_c00001{bottom:933.326715px;}
.y56f_c00001{bottom:933.510450px;}
.y1a23_c00001{bottom:933.691287px;}
.y241_c00001{bottom:933.960450px;}
.y192b_c00001{bottom:934.141341px;}
.y69d_c00001{bottom:934.500450px;}
.y132a_c00001{bottom:934.500990px;}
.y900_c00001{bottom:934.769010px;}
.ya4a_c00001{bottom:934.770657px;}
.y139c_c00001{bottom:934.861278px;}
.y197f_c00001{bottom:935.221341px;}
.y953_c00001{bottom:935.757210px;}
.yac3_c00001{bottom:935.758857px;}
.y17a2_c00001{bottom:935.940450px;}
.ye00_c00001{bottom:935.941278px;}
.yf55_c00001{bottom:936.207966px;}
.y1133_c00001{bottom:936.298146px;}
.y6fb_c00001{bottom:936.480045px;}
.y1e2_c00001{bottom:936.480450px;}
.y6e_c00001{bottom:937.020450px;}
.y300_c00001{bottom:937.200450px;}
.y1558_c00001{bottom:937.287966px;}
.y1896_c00001{bottom:937.288623px;}
.ydc4_c00001{bottom:937.741053px;}
.y38f_c00001{bottom:937.920450px;}
.yf28_c00001{bottom:938.010450px;}
.y83e_c00001{bottom:938.190450px;}
.yfb4_c00001{bottom:938.368623px;}
.y2456_c00001{bottom:938.369280px;}
.y1f27_c00001{bottom:938.550450px;}
.y138_c00001{bottom:938.730450px;}
.y163e_c00001{bottom:938.910108px;}
.y16e0_c00001{bottom:938.910468px;}
.ye9_c00001{bottom:939.000450px;}
.y11e1_c00001{bottom:939.179397px;}
.yc1b_c00001{bottom:939.897768px;}
.y126e_c00001{bottom:940.259397px;}
.y1074_c00001{bottom:940.260054px;}
.y55f_c00001{bottom:940.980450px;}
.y1fdb_c00001{bottom:941.250450px;}
.y19d5_c00001{bottom:941.340054px;}
.y10e5_c00001{bottom:941.340711px;}
.y1fa9_c00001{bottom:941.971314px;}
.y1ee7_c00001{bottom:942.060648px;}
.y2a_c00001{bottom:942.150450px;}
.y526_c00001{bottom:942.332016px;}
.y15cd_c00001{bottom:942.421368px;}
.yd16_c00001{bottom:942.426786px;}
.yd43_c00001{bottom:942.454434px;}
.y240c_c00001{bottom:942.691251px;}
.y14b2_c00001{bottom:943.141305px;}
.y110a_c00001{bottom:943.407336px;}
.y2181_c00001{bottom:943.410450px;}
.y21b6_c00001{bottom:943.501368px;}
.ya00_c00001{bottom:943.769865px;}
.y86b_c00001{bottom:943.770450px;}
.yc49_c00001{bottom:943.771512px;}
.y14d4_c00001{bottom:944.221305px;}
.y142a_c00001{bottom:944.487993px;}
.y928_c00001{bottom:944.758065px;}
.y9a3_c00001{bottom:944.759712px;}
.y2520_c00001{bottom:945.030450px;}
.yc95_c00001{bottom:945.117822px;}
.yb3c_c00001{bottom:945.657327px;}
.yd72_c00001{bottom:945.750450px;}
.y2484_c00001{bottom:946.020450px;}
.y136c_c00001{bottom:946.288587px;}
.y6cc_c00001{bottom:946.920450px;}
.y2200_c00001{bottom:947.191233px;}
.yfe5_c00001{bottom:947.368587px;}
.yf82_c00001{bottom:947.369244px;}
.y22c_c00001{bottom:947.730450px;}
.ye35_c00001{bottom:948.271125px;}
.y19b7_c00001{bottom:948.449244px;}
.y19f9_c00001{bottom:948.449901px;}
.y8d6_c00001{bottom:948.538980px;}
.y891_c00001{bottom:948.900450px;}
.y10a1_c00001{bottom:949.260018px;}
.ycb0_c00001{bottom:949.354194px;}
.yce1_c00001{bottom:949.385298px;}
.y1bde_c00001{bottom:949.529901px;}
.y12b7_c00001{bottom:950.340018px;}
.y1786_c00001{bottom:950.606706px;}
.y92_c00001{bottom:951.150450px;}
.yaf0_c00001{bottom:951.333429px;}
.y192a_c00001{bottom:951.421332px;}
.yb_c00001{bottom:951.690450px;}
.yd97_c00001{bottom:951.870450px;}
.y139b_c00001{bottom:952.141269px;}
.y1854_c00001{bottom:952.501332px;}
.y248c_c00001{bottom:952.770450px;}
.y5ba_c00001{bottom:952.860450px;}
.yeff_c00001{bottom:953.220855px;}
.ydff_c00001{bottom:953.221269px;}
.yf54_c00001{bottom:953.487957px;}
.y8ff_c00001{bottom:953.758920px;}
.yb74_c00001{bottom:953.759505px;}
.y2c5_c00001{bottom:953.760450px;}
.yb2c_c00001{bottom:953.760567px;}
.y17a1_c00001{bottom:953.850450px;}
.y18bd_c00001{bottom:954.568614px;}
.yc74_c00001{bottom:954.656535px;}
.ybc5_c00001{bottom:954.658182px;}
.ydc3_c00001{bottom:954.930864px;}
.y166b_c00001{bottom:955.200450px;}
.y2455_c00001{bottom:955.649271px;}
.y401_c00001{bottom:955.650450px;}
.y36c_c00001{bottom:955.830450px;}
.y9da_c00001{bottom:956.189775px;}
.y11e0_c00001{bottom:956.369208px;}
.ya1_c00001{bottom:956.730450px;}
.y2ff_c00001{bottom:957.180450px;}
.y2ad_c00001{bottom:957.360450px;}
.y1e7e_c00001{bottom:957.449208px;}
.y1073_c00001{bottom:957.449865px;}
.y6fa_c00001{bottom:958.080450px;}
.y1b53_c00001{bottom:958.529865px;}
.y2142_c00001{bottom:958.530450px;}
.y10e4_c00001{bottom:958.530522px;}
.yf27_c00001{bottom:958.710450px;}
.y1f68_c00001{bottom:959.251305px;}
.y56e_c00001{bottom:959.340450px;}
.y1044_c00001{bottom:959.340639px;}
.y1012_c00001{bottom:959.610522px;}
.y1ca9_c00001{bottom:959.611179px;}
.y1a22_c00001{bottom:959.971242px;}
.y1e1_c00001{bottom:960.060450px;}
.y12f9_c00001{bottom:960.420639px;}
.y14b1_c00001{bottom:960.421296px;}
.y1157_c00001{bottom:960.687327px;}
.y6d_c00001{bottom:960.690450px;}
.y1329_c00001{bottom:960.690765px;}
.y21b5_c00001{bottom:960.691179px;}
.y14d3_c00001{bottom:961.501296px;}
.y1429_c00001{bottom:961.767984px;}
.y83d_c00001{bottom:961.770450px;}
.y2013_c00001{bottom:961.860450px;}
.y186e_c00001{bottom:961.950450px;}
.yd15_c00001{bottom:962.316066px;}
.yd42_c00001{bottom:962.343714px;}
.y137_c00001{bottom:962.400450px;}
.ye8_c00001{bottom:962.670450px;}
.y97d_c00001{bottom:962.759775px;}
.y34c_c00001{bottom:962.760450px;}
.ya49_c00001{bottom:962.761422px;}
.y1353_c00001{bottom:963.568578px;}
.y927_c00001{bottom:963.657390px;}
.y9a2_c00001{bottom:963.659037px;}
.y525_c00001{bottom:964.021359px;}
.y21ff_c00001{bottom:964.471224px;}
.yfe4_c00001{bottom:964.648578px;}
.yf81_c00001{bottom:964.649235px;}
.y55e_c00001{bottom:964.650450px;}
.yfb3_c00001{bottom:965.729235px;}
.y19f8_c00001{bottom:965.729892px;}
.y29_c00001{bottom:965.730450px;}
.y240_c00001{bottom:966.000954px;}
.y163d_c00001{bottom:966.270720px;}
.y16df_c00001{bottom:966.271080px;}
.y10a0_c00001{bottom:966.449829px;}
.y1bdd_c00001{bottom:966.809892px;}
.y2483_c00001{bottom:966.900450px;}
.ye34_c00001{bottom:967.170450px;}
.y86a_c00001{bottom:967.440450px;}
.y8d5_c00001{bottom:967.528890px;}
.y126d_c00001{bottom:967.529829px;}
.yc1a_c00001{bottom:967.888533px;}
.y1f26_c00001{bottom:968.250450px;}
.y23bf_c00001{bottom:968.251269px;}
.y19d4_c00001{bottom:968.610486px;}
.y15cc_c00001{bottom:968.611143px;}
.y251f_c00001{bottom:968.700450px;}
.ycaf_c00001{bottom:969.153618px;}
.yce0_c00001{bottom:969.184722px;}
.y139a_c00001{bottom:969.421260px;}
.y1853_c00001{bottom:969.691143px;}
.yaef_c00001{bottom:970.323339px;}
.y38e_c00001{bottom:970.500450px;}
.yefe_c00001{bottom:970.500846px;}
.ydfe_c00001{bottom:970.501260px;}
.yd71_c00001{bottom:970.590450px;}
.yf53_c00001{bottom:970.677768px;}
.y1132_c00001{bottom:970.767948px;}
.y1fda_c00001{bottom:970.950450px;}
.y8c7_c00001{bottom:971.220450px;}
.y328_c00001{bottom:971.400450px;}
.y9ff_c00001{bottom:971.760630px;}
.y18bc_c00001{bottom:971.848605px;}
.ydc2_c00001{bottom:972.210855px;}
.y890_c00001{bottom:972.480450px;}
.y825_c00001{bottom:972.657822px;}
.y946_c00001{bottom:972.658245px;}
.yb73_c00001{bottom:972.658830px;}
.yb2b_c00001{bottom:972.659892px;}
.y2180_c00001{bottom:973.110450px;}
.yb3b_c00001{bottom:973.648092px;}
.y11df_c00001{bottom:973.649199px;}
.y17a0_c00001{bottom:974.550450px;}
.y1295_c00001{bottom:974.729199px;}
.y1072_c00001{bottom:974.729856px;}
.y87_c00001{bottom:974.730450px;}
.y9d9_c00001{bottom:975.179685px;}
.y19b6_c00001{bottom:975.809856px;}
.y10e3_c00001{bottom:975.810513px;}
.y166a_c00001{bottom:975.900450px;}
.y248b_c00001{bottom:976.440450px;}
.y1043_c00001{bottom:976.530450px;}
.yd96_c00001{bottom:976.710450px;}
.y13c2_c00001{bottom:976.890513px;}
.y1ca8_c00001{bottom:976.891170px;}
.y240b_c00001{bottom:977.251233px;}
.y12f8_c00001{bottom:977.610450px;}
.y1929_c00001{bottom:977.611107px;}
.y151b_c00001{bottom:977.877138px;}
.y21b4_c00001{bottom:977.971170px;}
.y5b9_c00001{bottom:978.600450px;}
.y14d2_c00001{bottom:978.691107px;}
.y1dc9_c00001{bottom:978.957795px;}
.y400_c00001{bottom:979.230450px;}
.y36b_c00001{bottom:979.410450px;}
.y6cb_c00001{bottom:979.500450px;}
.y8ba_c00001{bottom:980.220450px;}
.y22b_c00001{bottom:980.400450px;}
.y11c6_c00001{bottom:980.848569px;}
.y8fe_c00001{bottom:981.659100px;}
.ya48_c00001{bottom:981.660747px;}
.y21fe_c00001{bottom:981.751215px;}
.yf80_c00001{bottom:981.839046px;}
.y1225_c00001{bottom:981.928569px;}
.y2454_c00001{bottom:981.929226px;}
.yd14_c00001{bottom:982.115490px;}
.yd41_c00001{bottom:982.143138px;}
.yc73_c00001{bottom:982.647300px;}
.ybc4_c00001{bottom:982.648947px;}
.y182c_c00001{bottom:983.009226px;}
.y2fe_c00001{bottom:983.010450px;}
.y109f_c00001{bottom:983.729820px;}
.y1bdc_c00001{bottom:984.089883px;}
.ya_c00001{bottom:984.360450px;}
.y126c_c00001{bottom:984.809820px;}
.y1c50_c00001{bottom:984.810477px;}
.y83c_c00001{bottom:985.440450px;}
.y1f67_c00001{bottom:985.441080px;}
.y524_c00001{bottom:985.710702px;}
.y19d3_c00001{bottom:985.890477px;}
.y15cb_c00001{bottom:985.891134px;}
.y136_c00001{bottom:985.980450px;}
.ye33_c00001{bottom:985.980648px;}
.ye7_c00001{bottom:986.250450px;}
.y1a21_c00001{bottom:986.251197px;}
.y34b_c00001{bottom:986.340450px;}
.y8d4_c00001{bottom:986.518800px;}
.y1399_c00001{bottom:986.611071px;}
.yc19_c00001{bottom:986.787858px;}
.y1328_c00001{bottom:986.970720px;}
.y1011_c00001{bottom:986.971134px;}
.y23f_c00001{bottom:987.601359px;}
.yefd_c00001{bottom:987.690657px;}
.ydfd_c00001{bottom:987.691071px;}
.yf52_c00001{bottom:987.957759px;}
.y55d_c00001{bottom:988.230450px;}
.y1428_c00001{bottom:989.038416px;}
.ycae_c00001{bottom:989.042898px;}
.ycdf_c00001{bottom:989.074002px;}
.yaee_c00001{bottom:989.222664px;}
.y76e_c00001{bottom:989.310450px;}
.y28_c00001{bottom:989.400450px;}
.ydc1_c00001{bottom:989.400666px;}
.y9c1_c00001{bottom:990.659955px;}
.yc48_c00001{bottom:990.661602px;}
.y1352_c00001{bottom:990.929190px;}
.y2012_c00001{bottom:991.560450px;}
.y926_c00001{bottom:991.648155px;}
.y9a1_c00001{bottom:991.649802px;}
.y186d_c00001{bottom:991.650450px;}
.y1071_c00001{bottom:991.919667px;}
.yfe3_c00001{bottom:992.009190px;}
.y19f7_c00001{bottom:992.009847px;}
.y251e_c00001{bottom:992.280450px;}
.y16de_c00001{bottom:992.370675px;}
.y163c_c00001{bottom:992.550675px;}
.y1e0_c00001{bottom:992.730450px;}
.yfb2_c00001{bottom:993.089847px;}
.yc94_c00001{bottom:993.359856px;}
.y1042_c00001{bottom:993.810441px;}
.y9d8_c00001{bottom:994.169595px;}
.y13c1_c00001{bottom:994.170504px;}
.y1ca7_c00001{bottom:994.171161px;}
.yd70_c00001{bottom:994.260450px;}
.y23be_c00001{bottom:994.441044px;}
.y12f7_c00001{bottom:994.890441px;}
.y1928_c00001{bottom:994.891098px;}
.y3f2_c00001{bottom:994.980450px;}
.y179f_c00001{bottom:995.250450px;}
.y21b3_c00001{bottom:995.251161px;}
.y14d1_c00001{bottom:995.971098px;}
.y88f_c00001{bottom:996.150450px;}
.y1669_c00001{bottom:996.600450px;}
.yd95_c00001{bottom:997.410450px;}
.y1f25_c00001{bottom:997.950450px;}
.y1109_c00001{bottom:998.038380px;}
.y86_c00001{bottom:998.400450px;}
.y21fd_c00001{bottom:998.941026px;}
.y1a7e_c00001{bottom:999.118380px;}
.yf7f_c00001{bottom:999.119037px;}
.yf26_c00001{bottom:999.930450px;}
.y869_c00001{bottom:1000.110450px;}
.y8fd_c00001{bottom:1000.649010px;}
.yb72_c00001{bottom:1000.649595px;}
.y1fd9_c00001{bottom:1000.650450px;}
.ya47_c00001{bottom:1000.650657px;}
.y109e_c00001{bottom:1001.009811px;}
.yb3a_c00001{bottom:1001.638857px;}
.yd13_c00001{bottom:1001.914914px;}
.yd40_c00001{bottom:1001.942562px;}
.y126b_c00001{bottom:1002.089811px;}
.y10e2_c00001{bottom:1002.090468px;}
.y38d_c00001{bottom:1002.543060px;}
.y217f_c00001{bottom:1002.810450px;}
.y36a_c00001{bottom:1003.080450px;}
.y19b5_c00001{bottom:1003.170468px;}
.y15ca_c00001{bottom:1003.171125px;}
.ye32_c00001{bottom:1003.260639px;}
.y5e8_c00001{bottom:1003.800450px;}
.y1398_c00001{bottom:1003.891062px;}
.y22a_c00001{bottom:1003.980450px;}
.y1010_c00001{bottom:1004.251125px;}
.yefc_c00001{bottom:1004.970648px;}
.ydfc_c00001{bottom:1004.971062px;}
.yf51_c00001{bottom:1005.237750px;}
.y1dc8_c00001{bottom:1006.318407px;}
.ydc0_c00001{bottom:1006.680657px;}
.y523_c00001{bottom:1007.311107px;}
.y9_c00001{bottom:1007.940450px;}
.y124b_c00001{bottom:1008.119001px;}
.ycad_c00001{bottom:1008.842322px;}
.ycde_c00001{bottom:1008.873426px;}
.y83b_c00001{bottom:1009.020450px;}
.y1224_c00001{bottom:1009.199001px;}
.y1070_c00001{bottom:1009.199658px;}
.y23e_c00001{bottom:1009.290702px;}
.yb5f_c00001{bottom:1009.559280px;}
.y970_c00001{bottom:1009.649865px;}
.ye6_c00001{bottom:1009.920450px;}
.y34a_c00001{bottom:1010.010450px;}
.yfb1_c00001{bottom:1010.279658px;}
.yc5f_c00001{bottom:1010.638065px;}
.y9a0_c00001{bottom:1010.639712px;}
.y1041_c00001{bottom:1011.090432px;}
.y1bdb_c00001{bottom:1011.360315px;}
.y6ca_c00001{bottom:1011.542268px;}
.y1f66_c00001{bottom:1011.721035px;}
.y3ff_c00001{bottom:1011.900450px;}
.y19a7_c00001{bottom:1012.170432px;}
.y1927_c00001{bottom:1012.171089px;}
.y1a20_c00001{bottom:1012.440972px;}
.y8b9_c00001{bottom:1012.890450px;}
.y27_c00001{bottom:1012.980450px;}
.y1327_c00001{bottom:1013.250675px;}
.y197e_c00001{bottom:1013.251089px;}
.y8d3_c00001{bottom:1014.509565px;}
.yc18_c00001{bottom:1014.778623px;}
.y1131_c00001{bottom:1015.318371px;}
.y179e_c00001{bottom:1015.950450px;}
.y21fc_c00001{bottom:1016.221017px;}
.y1a7d_c00001{bottom:1016.398371px;}
.yf7e_c00001{bottom:1016.399028px;}
.yaed_c00001{bottom:1017.211782px;}
.y1668_c00001{bottom:1017.300450px;}
.yd6f_c00001{bottom:1017.930450px;}
.yd94_c00001{bottom:1018.110450px;}
.y11ff_c00001{bottom:1018.199622px;}
.y135_c00001{bottom:1018.470450px;}
.y16dd_c00001{bottom:1018.560450px;}
.y3e4_c00001{bottom:1018.650450px;}
.ya89_c00001{bottom:1018.650720px;}
.yc47_c00001{bottom:1018.652367px;}
.y163b_c00001{bottom:1018.740450px;}
.yfe2_c00001{bottom:1019.279622px;}
.y10e1_c00001{bottom:1019.280279px;}
.y925_c00001{bottom:1019.638920px;}
.ya46_c00001{bottom:1019.640567px;}
.y88e_c00001{bottom:1019.730450px;}
.y19d2_c00001{bottom:1020.360279px;}
.y15c9_c00001{bottom:1020.360936px;}
.ye31_c00001{bottom:1020.450450px;}
.y23bd_c00001{bottom:1020.720999px;}
.y824_c00001{bottom:1020.988119px;}
.y1397_c00001{bottom:1021.171053px;}
.y186c_c00001{bottom:1021.350450px;}
.y100f_c00001{bottom:1021.440936px;}
.yd12_c00001{bottom:1021.804194px;}
.yd3f_c00001{bottom:1021.831842px;}
.y4e_c00001{bottom:1021.980450px;}
.y9d7_c00001{bottom:1022.160360px;}
.yefb_c00001{bottom:1022.250639px;}
.ydfb_c00001{bottom:1022.251053px;}
.y868_c00001{bottom:1023.690450px;}
.ydbf_c00001{bottom:1023.960648px;}
.y327_c00001{bottom:1024.050450px;}
.y1df_c00001{bottom:1024.230450px;}
.y38c_c00001{bottom:1024.232403px;}
.y1108_c00001{bottom:1025.398992px;}
.y1708_c00001{bottom:1026.478992px;}
.y18bb_c00001{bottom:1026.479649px;}
.y5e7_c00001{bottom:1027.470450px;}
.yfb0_c00001{bottom:1027.559649px;}
.y229_c00001{bottom:1027.650450px;}
.y1040_c00001{bottom:1028.280243px;}
.y8fc_c00001{bottom:1028.639775px;}
.y1bda_c00001{bottom:1028.640306px;}
.yb71_c00001{bottom:1028.640360px;}
.yc7b_c00001{bottom:1028.641422px;}
.ycac_c00001{bottom:1028.641746px;}
.ycdd_c00001{bottom:1028.672850px;}
.y522_c00001{bottom:1029.000450px;}
.y12b6_c00001{bottom:1029.360243px;}
.y18e1_c00001{bottom:1029.360900px;}
.yb39_c00001{bottom:1029.629622px;}
.yf25_c00001{bottom:1030.170450px;}
.y1fd8_c00001{bottom:1030.350450px;}
.y1852_c00001{bottom:1030.440900px;}
.y23d_c00001{bottom:1030.980045px;}
.y8_c00001{bottom:1031.610450px;}
.yf50_c00001{bottom:1032.508182px;}
.y217e_c00001{bottom:1032.510450px;}
.y151a_c00001{bottom:1032.598362px;}
.y83a_c00001{bottom:1032.690450px;}
.y6c9_c00001{bottom:1033.231611px;}
.y8d2_c00001{bottom:1033.408890px;}
.y21fb_c00001{bottom:1033.501008px;}
.ye5_c00001{bottom:1033.590450px;}
.y1dc7_c00001{bottom:1033.679019px;}
.y106f_c00001{bottom:1035.479613px;}
.y369_c00001{bottom:1035.660450px;}
.yaec_c00001{bottom:1036.201692px;}
.yfe1_c00001{bottom:1036.559613px;}
.y10e0_c00001{bottom:1036.560270px;}
.y26_c00001{bottom:1036.650450px;}
.y1b52_c00001{bottom:1037.640270px;}
.y9fe_c00001{bottom:1037.640630px;}
.yc46_c00001{bottom:1037.642277px;}
.ye30_c00001{bottom:1037.910450px;}
.y1667_c00001{bottom:1038.000450px;}
.y1f65_c00001{bottom:1038.000990px;}
.y1396_c00001{bottom:1038.360864px;}
.y924_c00001{bottom:1038.628830px;}
.y99f_c00001{bottom:1038.630477px;}
.y1a1f_c00001{bottom:1038.720927px;}
.yefa_c00001{bottom:1039.440450px;}
.ydfa_c00001{bottom:1039.440864px;}
.y251d_c00001{bottom:1039.620450px;}
.y9d6_c00001{bottom:1041.059685px;}
.ydbe_c00001{bottom:1041.150459px;}
.yd11_c00001{bottom:1041.603618px;}
.yd3e_c00001{bottom:1041.631266px;}
.yc93_c00001{bottom:1041.690153px;}
.y1107_c00001{bottom:1042.588803px;}
.y1130_c00001{bottom:1042.678983px;}
.yc17_c00001{bottom:1042.769388px;}
.yd6e_c00001{bottom:1042.770450px;}
.yd93_c00001{bottom:1043.040450px;}
.y88d_c00001{bottom:1043.400450px;}
.yf7d_c00001{bottom:1043.669460px;}
.y1a7c_c00001{bottom:1043.758983px;}
.y3fe_c00001{bottom:1043.941359px;}
.y55c_c00001{bottom:1044.480450px;}
.yfaf_c00001{bottom:1044.839640px;}
.y103f_c00001{bottom:1045.560234px;}
.y4d_c00001{bottom:1045.650450px;}
.y38b_c00001{bottom:1045.832808px;}
.y150d_c00001{bottom:1046.640234px;}
.y15c8_c00001{bottom:1046.640891px;}
.y2141_c00001{bottom:1047.000954px;}
.y867_c00001{bottom:1047.360450px;}
.y945_c00001{bottom:1047.629685px;}
.yb70_c00001{bottom:1047.630270px;}
.ya45_c00001{bottom:1047.631332px;}
.y100e_c00001{bottom:1047.720891px;}
.ycab_c00001{bottom:1048.531026px;}
.ycdc_c00001{bottom:1048.562130px;}
.y326_c00001{bottom:1049.790450px;}
.y1de_c00001{bottom:1049.970450px;}
.y21fa_c00001{bottom:1050.690819px;}
.y134_c00001{bottom:1051.050450px;}
.y228_c00001{bottom:1051.230450px;}
.y23c_c00001{bottom:1052.580450px;}
.y11a5_c00001{bottom:1052.759604px;}
.yfe0_c00001{bottom:1053.749424px;}
.y10df_c00001{bottom:1053.750081px;}
.yf24_c00001{bottom:1053.750450px;}
.y1223_c00001{bottom:1053.839604px;}
.y18ba_c00001{bottom:1053.840261px;}
.y6c8_c00001{bottom:1054.832016px;}
.y1b3a_c00001{bottom:1054.920261px;}
.y7_c00001{bottom:1055.190450px;}
.y109d_c00001{bottom:1055.640855px;}
.y368_c00001{bottom:1055.730450px;}
.y839_c00001{bottom:1056.270450px;}
.y8fb_c00001{bottom:1056.630540px;}
.yc45_c00001{bottom:1056.632187px;}
.ydf9_c00001{bottom:1056.720855px;}
.y1326_c00001{bottom:1057.350450px;}
.yb2a_c00001{bottom:1057.620387px;}
.ydbd_c00001{bottom:1058.430450px;}
.y349_c00001{bottom:1058.700450px;}
.yf4f_c00001{bottom:1059.868794px;}
.y1fd7_c00001{bottom:1060.050450px;}
.ya0_c00001{bottom:1060.230450px;}
.y1dc6_c00001{bottom:1060.949451px;}
.y8d1_c00001{bottom:1061.399655px;}
.yd10_c00001{bottom:1061.492898px;}
.yd3d_c00001{bottom:1061.520546px;}
.y217d_c00001{bottom:1062.210450px;}
.y103e_c00001{bottom:1062.750045px;}
.yc16_c00001{bottom:1062.839730px;}
.y106e_c00001{bottom:1062.840225px;}
.y251c_c00001{bottom:1063.200450px;}
.y117c_c00001{bottom:1063.920225px;}
.y15c7_c00001{bottom:1063.920882px;}
.y1f64_c00001{bottom:1064.190765px;}
.yaeb_c00001{bottom:1064.192457px;}
.y100d_c00001{bottom:1065.000882px;}
.y3fd_c00001{bottom:1065.541764px;}
.ye4_c00001{bottom:1066.170450px;}
.yd6d_c00001{bottom:1066.440450px;}
.y923_c00001{bottom:1066.619595px;}
.y99e_c00001{bottom:1066.621242px;}
.yd92_c00001{bottom:1066.710450px;}
.y2494_c00001{bottom:1067.070450px;}
.y38a_c00001{bottom:1067.522151px;}
.y21f9_c00001{bottom:1067.970810px;}
.ycaa_c00001{bottom:1068.330450px;}
.ycdb_c00001{bottom:1068.361554px;}
.y9d5_c00001{bottom:1069.050450px;}
.y25_c00001{bottom:1069.230450px;}
.y823_c00001{bottom:1069.318416px;}
.y112f_c00001{bottom:1069.949415px;}
.y866_c00001{bottom:1070.940450px;}
.yfdf_c00001{bottom:1071.029415px;}
.yf7c_c00001{bottom:1071.030072px;}
.yfae_c00001{bottom:1072.110072px;}
.y109c_c00001{bottom:1072.920846px;}
.y2140_c00001{bottom:1073.190729px;}
.ydf8_c00001{bottom:1074.000846px;}
.yf23_c00001{bottom:1074.450450px;}
.y227_c00001{bottom:1074.900450px;}
.y8fa_c00001{bottom:1075.620450px;}
.yb6f_c00001{bottom:1075.621035px;}
.yc44_c00001{bottom:1075.622097px;}
.y88c_c00001{bottom:1076.070450px;}
.y55b_c00001{bottom:1076.521359px;}
.ydbc_c00001{bottom:1076.700450px;}
.y1325_c00001{bottom:1078.050450px;}
.y1666_c00001{bottom:1079.400450px;}
.y838_c00001{bottom:1079.940450px;}
.y103d_c00001{bottom:1080.030036px;}
.y186b_c00001{bottom:1080.750450px;}
.y1222_c00001{bottom:1081.110036px;}
.y18b9_c00001{bottom:1081.110693px;}
.yd0f_c00001{bottom:1081.292322px;}
.yd3c_c00001{bottom:1081.319970px;}
.y367_c00001{bottom:1081.470450px;}
.y100c_c00001{bottom:1082.190693px;}
.y9f_c00001{bottom:1083.900450px;}
.y21f8_c00001{bottom:1085.250801px;}
.yac2_c00001{bottom:1085.611152px;}
.y251b_c00001{bottom:1086.870450px;}
.yf4e_c00001{bottom:1087.229406px;}
.y3fc_c00001{bottom:1087.231107px;}
.y6_c00001{bottom:1087.860450px;}
.yf7b_c00001{bottom:1088.310063px;}
.y9d4_c00001{bottom:1088.851062px;}
.y389_c00001{bottom:1089.211494px;}
.y8d0_c00001{bottom:1089.390420px;}
.y1fd6_c00001{bottom:1089.570450px;}
.yc92_c00001{bottom:1090.020450px;}
.y106d_c00001{bottom:1090.110657px;}
.y1f63_c00001{bottom:1090.470720px;}
.ydf7_c00001{bottom:1091.190657px;}
.yd91_c00001{bottom:1091.640450px;}
.yaea_c00001{bottom:1092.181575px;}
.y24_c00001{bottom:1092.900450px;}
.yc15_c00001{bottom:1093.259820px;}
.y922_c00001{bottom:1094.610360px;}
.yb6e_c00001{bottom:1094.610945px;}
.y99d_c00001{bottom:1094.612007px;}
.yf22_c00001{bottom:1095.150450px;}
.y103c_c00001{bottom:1097.310027px;}
.ye3_c00001{bottom:1098.210702px;}
.yfde_c00001{bottom:1098.390027px;}
.y18e0_c00001{bottom:1098.390684px;}
.y1324_c00001{bottom:1098.750450px;}
.yfad_c00001{bottom:1099.470684px;}
.y2493_c00001{bottom:1099.650450px;}
.ydbb_c00001{bottom:1100.010450px;}
.yd0e_c00001{bottom:1101.091746px;}
.yd3b_c00001{bottom:1101.119394px;}
.y21f7_c00001{bottom:1102.440612px;}
.y865_c00001{bottom:1103.610450px;}
.y8f9_c00001{bottom:1103.611215px;}
.y284_c00001{bottom:1107.390450px;}
.y106c_c00001{bottom:1107.390648px;}
.y2e4_c00001{bottom:1107.480450px;}
.y1c6_c00001{bottom:1107.570450px;}
.ydf6_c00001{bottom:1108.470648px;}
.y3fb_c00001{bottom:1108.920450px;}
.y88b_c00001{bottom:1109.550549px;}
.y186a_c00001{bottom:1110.450450px;}
.yae9_c00001{bottom:1111.080900px;}
.y837_c00001{bottom:1112.610450px;}
.y9d3_c00001{bottom:1112.970756px;}
.y99c_c00001{bottom:1113.511332px;}
.yf4d_c00001{bottom:1114.499838px;}
.y112e_c00001{bottom:1114.590018px;}
.yd90_c00001{bottom:1115.220450px;}
.y1dc5_c00001{bottom:1115.670675px;}
.yf21_c00001{bottom:1115.850450px;}
.y58e_c00001{bottom:1116.390450px;}
.y23_c00001{bottom:1116.570450px;}
.y1f62_c00001{bottom:1116.750675px;}
.y8cf_c00001{bottom:1117.290600px;}
.y822_c00001{bottom:1117.560450px;}
.ydba_c00001{bottom:1118.820450px;}
.y1fd5_c00001{bottom:1119.270450px;}
.y1323_c00001{bottom:1119.450450px;}
.y21f6_c00001{bottom:1119.720603px;}
.y5_c00001{bottom:1119.811107px;}
.yd0d_c00001{bottom:1120.981026px;}
.yd3a_c00001{bottom:1121.008674px;}
.y8f8_c00001{bottom:1122.510540px;}
.yb6d_c00001{bottom:1122.511125px;}
.y106b_c00001{bottom:1124.580459px;}
.y11a4_c00001{bottom:1124.670639px;}
.ydf5_c00001{bottom:1125.750639px;}
.y2492_c00001{bottom:1134.300450px;}
.y836_c00001{bottom:1134.390450px;}
.y864_c00001{bottom:1137.090450px;}
.yd8f_c00001{bottom:1138.890450px;}
.y226_c00001{bottom:1139.970450px;}
.y22_c00001{bottom:1140.150450px;}
.yd0c_c00001{bottom:1140.780450px;}
.yd39_c00001{bottom:1140.808098px;}
.yb6c_c00001{bottom:1141.410450px;}
.y4_c00001{bottom:1141.500450px;}
.yf4c_c00001{bottom:1141.860450px;}
.ydf4_c00001{bottom:1142.940450px;}
.yca8_c00001{bottom:1172.640450px;}
.y2_c00001{bottom:1176.060450px;}
.yca7_c00001{bottom:1193.340450px;}
.y1_c00001{bottom:1196.130450px;}
.h6_c00001{height:34.114922px;}
.h15_c00001{height:38.158594px;}
.h1_c00001{height:52.751777px;}
.h53_c00001{height:52.759229px;}
.h47_c00001{height:52.893623px;}
.h46_c00001{height:52.895207px;}
.h45_c00001{height:52.897799px;}
.h44_c00001{height:52.898363px;}
.h32_c00001{height:52.898555px;}
.h3c_c00001{height:57.115370px;}
.h3_c00001{height:57.805840px;}
.h34_c00001{height:57.966680px;}
.h3a_c00001{height:57.983312px;}
.h3d_c00001{height:57.998180px;}
.h3e_c00001{height:57.999404px;}
.h3b_c00001{height:58.001492px;}
.h38_c00001{height:58.004660px;}
.h39_c00001{height:58.009052px;}
.h35_c00001{height:58.012220px;}
.h36_c00001{height:58.013072px;}
.h3f_c00001{height:58.018700px;}
.h9_c00001{height:58.975137px;}
.h12_c00001{height:59.004492px;}
.h10_c00001{height:60.589687px;}
.h41_c00001{height:60.648750px;}
.h58_c00001{height:62.421259px;}
.h48_c00001{height:62.703281px;}
.h4e_c00001{height:62.726177px;}
.h4d_c00001{height:62.728049px;}
.h4b_c00001{height:62.734493px;}
.h50_c00001{height:62.741513px;}
.h52_c00001{height:62.742341px;}
.h4f_c00001{height:62.742413px;}
.h4c_c00001{height:62.748965px;}
.h51_c00001{height:62.753141px;}
.h49_c00001{height:63.172313px;}
.h59_c00001{height:63.173045px;}
.h57_c00001{height:63.173369px;}
.h54_c00001{height:63.174701px;}
.h55_c00001{height:63.174989px;}
.h2_c00001{height:63.175781px;}
.hd_c00001{height:63.176381px;}
.h1c_c00001{height:63.351562px;}
.h37_c00001{height:64.625449px;}
.h17_c00001{height:64.657617px;}
.h33_c00001{height:66.394687px;}
.hf_c00001{height:66.824296px;}
.hb_c00001{height:66.827932px;}
.h4_c00001{height:66.835204px;}
.h11_c00001{height:66.835816px;}
.he_c00001{height:66.836824px;}
.h42_c00001{height:69.660000px;}
.h7_c00001{height:70.628906px;}
.h24_c00001{height:70.663307px;}
.h13_c00001{height:70.664062px;}
.h1a_c00001{height:70.664663px;}
.h2e_c00001{height:70.665430px;}
.h23_c00001{height:71.202313px;}
.h1d_c00001{height:71.208037px;}
.h2c_c00001{height:71.209177px;}
.h2a_c00001{height:71.209585px;}
.h28_c00001{height:71.210197px;}
.h20_c00001{height:71.210593px;}
.h22_c00001{height:71.211205px;}
.h26_c00001{height:71.211613px;}
.h25_c00001{height:71.212213px;}
.h21_c00001{height:71.212813px;}
.h1e_c00001{height:71.214841px;}
.h2b_c00001{height:71.215849px;}
.h2d_c00001{height:71.216461px;}
.h27_c00001{height:71.217061px;}
.h1f_c00001{height:71.217469px;}
.h29_c00001{height:71.218069px;}
.h18_c00001{height:71.218513px;}
.h5_c00001{height:72.562500px;}
.h43_c00001{height:75.093750px;}
.ha_c00001{height:75.131295px;}
.h8_c00001{height:75.131895px;}
.hc_c00001{height:75.132495px;}
.h19_c00001{height:75.248789px;}
.h1b_c00001{height:80.111002px;}
.h14_c00001{height:80.111602px;}
.h16_c00001{height:80.112202px;}
.h4a_c00001{height:81.374062px;}
.h31_c00001{height:84.535312px;}
.h30_c00001{height:96.870938px;}
.h56_c00001{height:121.511021px;}
.h40_c00001{height:147.515449px;}
.h2f_c00001{height:169.433437px;}
.h0_c00001{height:1263.000000px;}
.w1_c00001{width:892.500000px;}
.w0_c00001{width:892.830000px;}
.x0_c00001{left:0.000000px;}
.x2_c00001{left:127.620000px;}
.x6b_c00001{left:128.880000px;}
.xb_c00001{left:131.940000px;}
.x5e_c00001{left:133.380000px;}
.x95_c00001{left:139.052160px;}
.x67_c00001{left:143.010000px;}
.x46_c00001{left:148.860000px;}
.x73_c00001{left:154.620000px;}
.x88_c00001{left:157.590000px;}
.x1a_c00001{left:159.210000px;}
.x8c_c00001{left:163.080000px;}
.x68_c00001{left:164.250000px;}
.x6f_c00001{left:168.118083px;}
.x4_c00001{left:180.720000px;}
.x55_c00001{left:182.610000px;}
.x4d_c00001{left:183.870000px;}
.x78_c00001{left:185.668974px;}
.x89_c00001{left:187.110000px;}
.x38_c00001{left:191.430000px;}
.x75_c00001{left:195.119595px;}
.x4a_c00001{left:202.410000px;}
.x65_c00001{left:206.010000px;}
.x61_c00001{left:211.500000px;}
.x3_c00001{left:212.670000px;}
.x69_c00001{left:215.910000px;}
.x56_c00001{left:217.350495px;}
.x5f_c00001{left:218.520441px;}
.x74_c00001{left:222.119622px;}
.x51_c00001{left:227.520000px;}
.x11_c00001{left:229.590000px;}
.x6d_c00001{left:231.300000px;}
.x58_c00001{left:232.830000px;}
.x9_c00001{left:234.629280px;}
.x16_c00001{left:237.960369px;}
.x23_c00001{left:244.620000px;}
.x2a_c00001{left:249.930000px;}
.x49_c00001{left:252.808767px;}
.xe_c00001{left:255.240000px;}
.x59_c00001{left:260.100000px;}
.x7_c00001{left:265.860000px;}
.x66_c00001{left:269.280000px;}
.x94_c00001{left:271.620000px;}
.x96_c00001{left:272.703357px;}
.x63_c00001{left:274.860000px;}
.x37_c00001{left:277.290000px;}
.x4f_c00001{left:279.629802px;}
.x30_c00001{left:283.050000px;}
.x4b_c00001{left:284.579010px;}
.x15_c00001{left:289.710162px;}
.x13_c00001{left:293.400000px;}
.x3c_c00001{left:295.020000px;}
.x1_c00001{left:299.520000px;}
.x53_c00001{left:304.740000px;}
.x21_c00001{left:308.610000px;}
.x19_c00001{left:311.310000px;}
.x8a_c00001{left:312.930000px;}
.x20_c00001{left:315.720000px;}
.x48_c00001{left:320.310000px;}
.x44_c00001{left:323.280000px;}
.x2e_c00001{left:326.520000px;}
.x18_c00001{left:330.300000px;}
.x17_c00001{left:338.670000px;}
.x42_c00001{left:342.720000px;}
.x40_c00001{left:344.790000px;}
.x27_c00001{left:347.760000px;}
.x6c_c00001{left:348.840000px;}
.x7c_c00001{left:351.269451px;}
.x6_c00001{left:353.160000px;}
.x1e_c00001{left:355.050000px;}
.x60_c00001{left:356.220000px;}
.x64_c00001{left:357.480000px;}
.x79_c00001{left:360.539955px;}
.x10_c00001{left:363.690000px;}
.xc_c00001{left:365.130000px;}
.x82_c00001{left:368.279397px;}
.x43_c00001{left:370.530000px;}
.x7b_c00001{left:372.600027px;}
.x25_c00001{left:377.460000px;}
.x1c_c00001{left:379.710000px;}
.x5c_c00001{left:384.210000px;}
.x81_c00001{left:389.249253px;}
.x6a_c00001{left:393.930000px;}
.x3e_c00001{left:398.430000px;}
.x5b_c00001{left:402.120000px;}
.x14_c00001{left:408.510000px;}
.x47_c00001{left:410.580000px;}
.x45_c00001{left:412.470000px;}
.x3a_c00001{left:414.540000px;}
.x7a_c00001{left:416.159973px;}
.x50_c00001{left:419.580000px;}
.x5d_c00001{left:421.470000px;}
.x77_c00001{left:423.720000px;}
.x24_c00001{left:424.800000px;}
.x31_c00001{left:428.580000px;}
.x4e_c00001{left:431.370000px;}
.x57_c00001{left:434.610000px;}
.x1f_c00001{left:436.320000px;}
.x3b_c00001{left:439.470000px;}
.xa_c00001{left:442.710000px;}
.x70_c00001{left:443.880000px;}
.xd_c00001{left:446.490000px;}
.x71_c00001{left:447.930000px;}
.x32_c00001{left:451.170000px;}
.x52_c00001{left:453.330000px;}
.xf_c00001{left:454.500000px;}
.x76_c00001{left:459.990000px;}
.x1d_c00001{left:473.040000px;}
.x29_c00001{left:475.290000px;}
.x2b_c00001{left:477.720000px;}
.x72_c00001{left:484.740000px;}
.x8b_c00001{left:497.250000px;}
.x8_c00001{left:507.420000px;}
.x2c_c00001{left:529.830000px;}
.x26_c00001{left:549.360000px;}
.x80_c00001{left:559.800000px;}
.x8e_c00001{left:567.989982px;}
.x4c_c00001{left:570.330000px;}
.x22_c00001{left:580.050000px;}
.x90_c00001{left:584.638713px;}
.x87_c00001{left:587.159784px;}
.x62_c00001{left:588.510000px;}
.x7e_c00001{left:593.549757px;}
.x3d_c00001{left:595.350000px;}
.x39_c00001{left:596.610000px;}
.x84_c00001{left:600.659730px;}
.x28_c00001{left:607.680000px;}
.x5_c00001{left:621.630000px;}
.x5a_c00001{left:624.600000px;}
.x12_c00001{left:626.310000px;}
.x92_c00001{left:628.740252px;}
.x6e_c00001{left:632.790000px;}
.x54_c00001{left:635.490000px;}
.x8f_c00001{left:636.659046px;}
.x7d_c00001{left:638.010000px;}
.x1b_c00001{left:641.610000px;}
.x86_c00001{left:648.629478px;}
.x85_c00001{left:651.150009px;}
.x35_c00001{left:662.670000px;}
.x34_c00001{left:671.760000px;}
.x91_c00001{left:678.419901px;}
.x2f_c00001{left:680.310000px;}
.x7f_c00001{left:694.709172px;}
.x33_c00001{left:696.780000px;}
.x2d_c00001{left:703.170000px;}
.x83_c00001{left:712.349163px;}
.x36_c00001{left:723.060000px;}
.x41_c00001{left:725.940000px;}
.x93_c00001{left:729.360000px;}
.x3f_c00001{left:763.920000px;}
.x8d_c00001{left:765.449613px;}
@media print{
.v8_c00001{vertical-align:-171.841056pt;}
.v9_c00001{vertical-align:-82.240000pt;}
.v7_c00001{vertical-align:-73.600000pt;}
.v6_c00001{vertical-align:-63.680000pt;}
.v4_c00001{vertical-align:-29.440000pt;}
.v5_c00001{vertical-align:-26.560000pt;}
.v2_c00001{vertical-align:-24.000000pt;}
.vb_c00001{vertical-align:-8.000459pt;}
.v0_c00001{vertical-align:0.000000pt;}
.vc_c00001{vertical-align:8.000000pt;}
.v1_c00001{vertical-align:26.557664pt;}
.v3_c00001{vertical-align:29.440000pt;}
.va_c00001{vertical-align:61.120000pt;}
.lsde_c00001{letter-spacing:-3.200000pt;}
.ls167_c00001{letter-spacing:-0.609216pt;}
.ls189_c00001{letter-spacing:-0.582496pt;}
.ls193_c00001{letter-spacing:-0.566464pt;}
.ls179_c00001{letter-spacing:-0.561120pt;}
.ls17f_c00001{letter-spacing:-0.555776pt;}
.ls195_c00001{letter-spacing:-0.545088pt;}
.ls194_c00001{letter-spacing:-0.529056pt;}
.ls17d_c00001{letter-spacing:-0.523712pt;}
.ls17e_c00001{letter-spacing:-0.507680pt;}
.ls97_c00001{letter-spacing:-0.499200pt;}
.ls19a_c00001{letter-spacing:-0.491648pt;}
.ls19b_c00001{letter-spacing:-0.480960pt;}
.ls185_c00001{letter-spacing:-0.470272pt;}
.ls199_c00001{letter-spacing:-0.454240pt;}
.ls7e_c00001{letter-spacing:-0.448896pt;}
.lsad_c00001{letter-spacing:-0.443552pt;}
.lsdd_c00001{letter-spacing:-0.428800pt;}
.lsbc_c00001{letter-spacing:-0.427488pt;}
.ls19e_c00001{letter-spacing:-0.406144pt;}
.ls108_c00001{letter-spacing:-0.392352pt;}
.ls180_c00001{letter-spacing:-0.374080pt;}
.ls18d_c00001{letter-spacing:-0.363392pt;}
.lsd1_c00001{letter-spacing:-0.358048pt;}
.lsa8_c00001{letter-spacing:-0.353920pt;}
.ls177_c00001{letter-spacing:-0.352704pt;}
.ls14b_c00001{letter-spacing:-0.344064pt;}
.ls181_c00001{letter-spacing:-0.336672pt;}
.ls173_c00001{letter-spacing:-0.325984pt;}
.lscd_c00001{letter-spacing:-0.320640pt;}
.ls88_c00001{letter-spacing:-0.320000pt;}
.ls16a_c00001{letter-spacing:-0.315296pt;}
.ls16e_c00001{letter-spacing:-0.309952pt;}
.ls16b_c00001{letter-spacing:-0.304608pt;}
.ls182_c00001{letter-spacing:-0.299264pt;}
.ls106_c00001{letter-spacing:-0.298656pt;}
.lsb1_c00001{letter-spacing:-0.294400pt;}
.ls85_c00001{letter-spacing:-0.293920pt;}
.ls12a_c00001{letter-spacing:-0.292800pt;}
.ls146_c00001{letter-spacing:-0.288768pt;}
.ls172_c00001{letter-spacing:-0.288576pt;}
.lsbe_c00001{letter-spacing:-0.283232pt;}
.ls86_c00001{letter-spacing:-0.277888pt;}
.ls29_c00001{letter-spacing:-0.272544pt;}
.lse1_c00001{letter-spacing:-0.268800pt;}
.ls6d_c00001{letter-spacing:-0.267200pt;}
.lsba_c00001{letter-spacing:-0.261856pt;}
.ls91_c00001{letter-spacing:-0.256512pt;}
.ls94_c00001{letter-spacing:-0.251168pt;}
.lsb2_c00001{letter-spacing:-0.245824pt;}
.ls1a7_c00001{letter-spacing:-0.243200pt;}
.ls3c_c00001{letter-spacing:-0.240480pt;}
.lsb7_c00001{letter-spacing:-0.240096pt;}
.ls3b_c00001{letter-spacing:-0.235136pt;}
.ls30_c00001{letter-spacing:-0.229792pt;}
.ls7c_c00001{letter-spacing:-0.224448pt;}
.lsa6_c00001{letter-spacing:-0.219104pt;}
.ls87_c00001{letter-spacing:-0.213760pt;}
.ls90_c00001{letter-spacing:-0.211200pt;}
.ls84_c00001{letter-spacing:-0.208416pt;}
.lsd6_c00001{letter-spacing:-0.204800pt;}
.lsb6_c00001{letter-spacing:-0.203072pt;}
.ls125_c00001{letter-spacing:-0.199104pt;}
.ls57_c00001{letter-spacing:-0.198400pt;}
.ls6c_c00001{letter-spacing:-0.197728pt;}
.lsab_c00001{letter-spacing:-0.192384pt;}
.ls7d_c00001{letter-spacing:-0.187040pt;}
.ls13b_c00001{letter-spacing:-0.184320pt;}
.ls9f_c00001{letter-spacing:-0.181696pt;}
.lsd5_c00001{letter-spacing:-0.179200pt;}
.lsa2_c00001{letter-spacing:-0.176352pt;}
.lsc6_c00001{letter-spacing:-0.172800pt;}
.ls141_c00001{letter-spacing:-0.172032pt;}
.ls2a_c00001{letter-spacing:-0.171008pt;}
.ls1a8_c00001{letter-spacing:-0.166400pt;}
.ls89_c00001{letter-spacing:-0.165664pt;}
.ls2c_c00001{letter-spacing:-0.160320pt;}
.lsb0_c00001{letter-spacing:-0.160000pt;}
.ls104_c00001{letter-spacing:-0.158112pt;}
.ls4b_c00001{letter-spacing:-0.154976pt;}
.ls73_c00001{letter-spacing:-0.153600pt;}
.ls6b_c00001{letter-spacing:-0.149632pt;}
.lsc4_c00001{letter-spacing:-0.147200pt;}
.ls121_c00001{letter-spacing:-0.146400pt;}
.ls60_c00001{letter-spacing:-0.144288pt;}
.lsaf_c00001{letter-spacing:-0.140800pt;}
.ls27_c00001{letter-spacing:-0.138944pt;}
.lsdf_c00001{letter-spacing:-0.134400pt;}
.ls47_c00001{letter-spacing:-0.133600pt;}
.ls14c_c00001{letter-spacing:-0.129024pt;}
.ls16_c00001{letter-spacing:-0.128256pt;}
.lsb5_c00001{letter-spacing:-0.128000pt;}
.ls5a_c00001{letter-spacing:-0.122912pt;}
.ls46_c00001{letter-spacing:-0.117568pt;}
.ls14d_c00001{letter-spacing:-0.116736pt;}
.ls58_c00001{letter-spacing:-0.115200pt;}
.ls5b_c00001{letter-spacing:-0.112224pt;}
.ls8a_c00001{letter-spacing:-0.108800pt;}
.ls5f_c00001{letter-spacing:-0.106880pt;}
.lsf8_c00001{letter-spacing:-0.105408pt;}
.ls148_c00001{letter-spacing:-0.104448pt;}
.lse3_c00001{letter-spacing:-0.102400pt;}
.ls5e_c00001{letter-spacing:-0.101536pt;}
.ls6a_c00001{letter-spacing:-0.096192pt;}
.lsa5_c00001{letter-spacing:-0.096000pt;}
.ls157_c00001{letter-spacing:-0.093632pt;}
.ls144_c00001{letter-spacing:-0.092160pt;}
.ls15_c00001{letter-spacing:-0.090848pt;}
.ls1a0_c00001{letter-spacing:-0.089664pt;}
.ls99_c00001{letter-spacing:-0.089600pt;}
.ls10a_c00001{letter-spacing:-0.087840pt;}
.ls147_c00001{letter-spacing:-0.086016pt;}
.ls48_c00001{letter-spacing:-0.085504pt;}
.lsd4_c00001{letter-spacing:-0.085440pt;}
.ls66_c00001{letter-spacing:-0.083200pt;}
.lsff_c00001{letter-spacing:-0.081984pt;}
.ls6e_c00001{letter-spacing:-0.080160pt;}
.ls14a_c00001{letter-spacing:-0.079872pt;}
.ls83_c00001{letter-spacing:-0.076800pt;}
.ls15d_c00001{letter-spacing:-0.076608pt;}
.ls10d_c00001{letter-spacing:-0.076128pt;}
.ls28_c00001{letter-spacing:-0.074816pt;}
.ls1a1_c00001{letter-spacing:-0.074720pt;}
.ls145_c00001{letter-spacing:-0.073728pt;}
.ls1e_c00001{letter-spacing:-0.070400pt;}
.lsb4_c00001{letter-spacing:-0.070272pt;}
.ls67_c00001{letter-spacing:-0.069472pt;}
.ls14f_c00001{letter-spacing:-0.067584pt;}
.ls24_c00001{letter-spacing:-0.064128pt;}
.ls45_c00001{letter-spacing:-0.064000pt;}
.ls14e_c00001{letter-spacing:-0.061440pt;}
.lsd2_c00001{letter-spacing:-0.059776pt;}
.ls5d_c00001{letter-spacing:-0.058784pt;}
.lsed_c00001{letter-spacing:-0.058560pt;}
.ls3a_c00001{letter-spacing:-0.057600pt;}
.ls156_c00001{letter-spacing:-0.055328pt;}
.ls143_c00001{letter-spacing:-0.055296pt;}
.ls80_c00001{letter-spacing:-0.053440pt;}
.lsc3_c00001{letter-spacing:-0.052704pt;}
.ls39_c00001{letter-spacing:-0.051200pt;}
.ls142_c00001{letter-spacing:-0.049152pt;}
.ls52_c00001{letter-spacing:-0.048096pt;}
.ls101_c00001{letter-spacing:-0.046848pt;}
.ls68_c00001{letter-spacing:-0.044800pt;}
.ls140_c00001{letter-spacing:-0.043008pt;}
.ls3d_c00001{letter-spacing:-0.042752pt;}
.ls1a2_c00001{letter-spacing:-0.042720pt;}
.lsf2_c00001{letter-spacing:-0.040992pt;}
.ls65_c00001{letter-spacing:-0.038400pt;}
.ls4c_c00001{letter-spacing:-0.037408pt;}
.ls13e_c00001{letter-spacing:-0.036864pt;}
.ls20_c00001{letter-spacing:-0.035392pt;}
.lsf6_c00001{letter-spacing:-0.035136pt;}
.ls25_c00001{letter-spacing:-0.032064pt;}
.ls13_c00001{letter-spacing:-0.032000pt;}
.ls13f_c00001{letter-spacing:-0.030720pt;}
.lsbd_c00001{letter-spacing:-0.030336pt;}
.lse5_c00001{letter-spacing:-0.029888pt;}
.lsfe_c00001{letter-spacing:-0.029280pt;}
.ls23_c00001{letter-spacing:-0.026720pt;}
.ls1f_c00001{letter-spacing:-0.025600pt;}
.ls13a_c00001{letter-spacing:-0.024576pt;}
.ls103_c00001{letter-spacing:-0.023424pt;}
.ls1a3_c00001{letter-spacing:-0.022368pt;}
.ls22_c00001{letter-spacing:-0.021376pt;}
.ls1c_c00001{letter-spacing:-0.019200pt;}
.ls139_c00001{letter-spacing:-0.018432pt;}
.lsae_c00001{letter-spacing:-0.017568pt;}
.lsd0_c00001{letter-spacing:-0.017024pt;}
.ls26_c00001{letter-spacing:-0.016032pt;}
.ls11_c00001{letter-spacing:-0.012800pt;}
.ls13d_c00001{letter-spacing:-0.012288pt;}
.lsef_c00001{letter-spacing:-0.011712pt;}
.ls21_c00001{letter-spacing:-0.010688pt;}
.ls14_c00001{letter-spacing:-0.006400pt;}
.ls13c_c00001{letter-spacing:-0.006144pt;}
.ls8d_c00001{letter-spacing:-0.005856pt;}
.ls3e_c00001{letter-spacing:-0.005344pt;}
.lsf_c00001{letter-spacing:0.000000pt;}
.ls38_c00001{letter-spacing:0.005344pt;}
.ls54_c00001{letter-spacing:0.005856pt;}
.ls12e_c00001{letter-spacing:0.006144pt;}
.lsc_c00001{letter-spacing:0.006400pt;}
.ls153_c00001{letter-spacing:0.007456pt;}
.ls64_c00001{letter-spacing:0.010688pt;}
.ls56_c00001{letter-spacing:0.011712pt;}
.ls130_c00001{letter-spacing:0.012288pt;}
.ls4_c00001{letter-spacing:0.012800pt;}
.lse6_c00001{letter-spacing:0.014912pt;}
.ls4f_c00001{letter-spacing:0.016032pt;}
.ls40_c00001{letter-spacing:0.017568pt;}
.ls131_c00001{letter-spacing:0.018432pt;}
.lsa_c00001{letter-spacing:0.019200pt;}
.lsce_c00001{letter-spacing:0.020224pt;}
.ls1a_c00001{letter-spacing:0.021376pt;}
.lsd3_c00001{letter-spacing:0.022368pt;}
.ls63_c00001{letter-spacing:0.023424pt;}
.ls136_c00001{letter-spacing:0.024576pt;}
.lsb_c00001{letter-spacing:0.025600pt;}
.ls74_c00001{letter-spacing:0.026720pt;}
.ls72_c00001{letter-spacing:0.029280pt;}
.ls10f_c00001{letter-spacing:0.029824pt;}
.ls133_c00001{letter-spacing:0.030720pt;}
.ls5_c00001{letter-spacing:0.032000pt;}
.ls50_c00001{letter-spacing:0.032064pt;}
.ls36_c00001{letter-spacing:0.035136pt;}
.ls12d_c00001{letter-spacing:0.036864pt;}
.lsd7_c00001{letter-spacing:0.037280pt;}
.lse_c00001{letter-spacing:0.037408pt;}
.ls8_c00001{letter-spacing:0.038400pt;}
.ls53_c00001{letter-spacing:0.040992pt;}
.ls42_c00001{letter-spacing:0.042752pt;}
.ls132_c00001{letter-spacing:0.043008pt;}
.lsdb_c00001{letter-spacing:0.044736pt;}
.ls6_c00001{letter-spacing:0.044800pt;}
.ls33_c00001{letter-spacing:0.046848pt;}
.ls17_c00001{letter-spacing:0.048096pt;}
.ls12f_c00001{letter-spacing:0.049152pt;}
.ls7_c00001{letter-spacing:0.051200pt;}
.lsfb_c00001{letter-spacing:0.052192pt;}
.ls35_c00001{letter-spacing:0.052704pt;}
.ls0_c00001{letter-spacing:0.053440pt;}
.ls138_c00001{letter-spacing:0.055296pt;}
.ls9_c00001{letter-spacing:0.057600pt;}
.ls34_c00001{letter-spacing:0.058560pt;}
.ls51_c00001{letter-spacing:0.058784pt;}
.ls12c_c00001{letter-spacing:0.059648pt;}
.ls82_c00001{letter-spacing:0.060672pt;}
.ls137_c00001{letter-spacing:0.061440pt;}
.ls19_c00001{letter-spacing:0.064000pt;}
.ls2b_c00001{letter-spacing:0.064128pt;}
.ls37_c00001{letter-spacing:0.064416pt;}
.ls1a4_c00001{letter-spacing:0.067104pt;}
.ls134_c00001{letter-spacing:0.067584pt;}
.ls3f_c00001{letter-spacing:0.069472pt;}
.ls71_c00001{letter-spacing:0.070272pt;}
.ls41_c00001{letter-spacing:0.070400pt;}
.ls149_c00001{letter-spacing:0.073728pt;}
.ls112_c00001{letter-spacing:0.074560pt;}
.ls2f_c00001{letter-spacing:0.074816pt;}
.ls2_c00001{letter-spacing:0.076128pt;}
.ls32_c00001{letter-spacing:0.076800pt;}
.ls135_c00001{letter-spacing:0.079872pt;}
.ls9e_c00001{letter-spacing:0.080000pt;}
.ls1b_c00001{letter-spacing:0.080160pt;}
.ls10_c00001{letter-spacing:0.081984pt;}
.lsda_c00001{letter-spacing:0.082016pt;}
.ls70_c00001{letter-spacing:0.083200pt;}
.ls76_c00001{letter-spacing:0.085504pt;}
.lsb3_c00001{letter-spacing:0.087840pt;}
.ls1a5_c00001{letter-spacing:0.089472pt;}
.ls4e_c00001{letter-spacing:0.089600pt;}
.ls4d_c00001{letter-spacing:0.090848pt;}
.ls81_c00001{letter-spacing:0.093696pt;}
.lsd_c00001{letter-spacing:0.096000pt;}
.ls2e_c00001{letter-spacing:0.096192pt;}
.lsd9_c00001{letter-spacing:0.096928pt;}
.ls55_c00001{letter-spacing:0.099552pt;}
.ls2d_c00001{letter-spacing:0.101536pt;}
.ls9a_c00001{letter-spacing:0.102400pt;}
.ls62_c00001{letter-spacing:0.105408pt;}
.ls77_c00001{letter-spacing:0.106880pt;}
.ls7f_c00001{letter-spacing:0.108800pt;}
.lsea_c00001{letter-spacing:0.111264pt;}
.ls5c_c00001{letter-spacing:0.112224pt;}
.ls31_c00001{letter-spacing:0.115200pt;}
.lseb_c00001{letter-spacing:0.117120pt;}
.ls49_c00001{letter-spacing:0.117568pt;}
.ls151_c00001{letter-spacing:0.119296pt;}
.ls61_c00001{letter-spacing:0.121600pt;}
.ls43_c00001{letter-spacing:0.122912pt;}
.lse8_c00001{letter-spacing:0.122976pt;}
.ls1d_c00001{letter-spacing:0.128000pt;}
.ls69_c00001{letter-spacing:0.128256pt;}
.lsc8_c00001{letter-spacing:0.128832pt;}
.ls93_c00001{letter-spacing:0.133600pt;}
.lse7_c00001{letter-spacing:0.134688pt;}
.lsaa_c00001{letter-spacing:0.138944pt;}
.lsf1_c00001{letter-spacing:0.140544pt;}
.ls19c_c00001{letter-spacing:0.140800pt;}
.ls6f_c00001{letter-spacing:0.144288pt;}
.lse9_c00001{letter-spacing:0.146400pt;}
.ls152_c00001{letter-spacing:0.147200pt;}
.ls98_c00001{letter-spacing:0.149632pt;}
.ls102_c00001{letter-spacing:0.152256pt;}
.lsb8_c00001{letter-spacing:0.154976pt;}
.lsf3_c00001{letter-spacing:0.158112pt;}
.lsa0_c00001{letter-spacing:0.160000pt;}
.ls9b_c00001{letter-spacing:0.160320pt;}
.ls3_c00001{letter-spacing:0.160992pt;}
.ls18_c00001{letter-spacing:0.161728pt;}
.lsec_c00001{letter-spacing:0.163968pt;}
.ls92_c00001{letter-spacing:0.165664pt;}
.lsf7_c00001{letter-spacing:0.169824pt;}
.ls16d_c00001{letter-spacing:0.171008pt;}
.lsfd_c00001{letter-spacing:0.175680pt;}
.lsac_c00001{letter-spacing:0.179200pt;}
.lsf5_c00001{letter-spacing:0.181536pt;}
.ls59_c00001{letter-spacing:0.181696pt;}
.ls17c_c00001{letter-spacing:0.187040pt;}
.ls7b_c00001{letter-spacing:0.192384pt;}
.ls11b_c00001{letter-spacing:0.193248pt;}
.ls9c_c00001{letter-spacing:0.198400pt;}
.ls17a_c00001{letter-spacing:0.203072pt;}
.ls12b_c00001{letter-spacing:0.204960pt;}
.lsdc_c00001{letter-spacing:0.211200pt;}
.ls75_c00001{letter-spacing:0.213760pt;}
.ls124_c00001{letter-spacing:0.216672pt;}
.lsbb_c00001{letter-spacing:0.224448pt;}
.ls197_c00001{letter-spacing:0.229792pt;}
.ls129_c00001{letter-spacing:0.240096pt;}
.ls105_c00001{letter-spacing:0.281088pt;}
.ls191_c00001{letter-spacing:0.283232pt;}
.ls100_c00001{letter-spacing:0.298656pt;}
.lscc_c00001{letter-spacing:0.315296pt;}
.lsa4_c00001{letter-spacing:0.320000pt;}
.lsfc_c00001{letter-spacing:0.322080pt;}
.ls18f_c00001{letter-spacing:0.325984pt;}
.ls111_c00001{letter-spacing:0.386496pt;}
.lsee_c00001{letter-spacing:0.398208pt;}
.ls8b_c00001{letter-spacing:0.400800pt;}
.ls109_c00001{letter-spacing:0.480192pt;}
.ls196_c00001{letter-spacing:0.496992pt;}
.ls19d_c00001{letter-spacing:0.721440pt;}
.lsa3_c00001{letter-spacing:0.768000pt;}
.ls192_c00001{letter-spacing:0.780224pt;}
.ls16f_c00001{letter-spacing:0.961920pt;}
.ls187_c00001{letter-spacing:1.042080pt;}
.ls190_c00001{letter-spacing:1.090176pt;}
.ls8c_c00001{letter-spacing:1.357376pt;}
.lsf4_c00001{letter-spacing:1.358592pt;}
.ls198_c00001{letter-spacing:1.384096pt;}
.ls16c_c00001{letter-spacing:1.678016pt;}
.ls127_c00001{letter-spacing:1.680672pt;}
.ls128_c00001{letter-spacing:2.318976pt;}
.ls161_c00001{letter-spacing:2.319296pt;}
.lsfa_c00001{letter-spacing:2.641056pt;}
.lsc5_c00001{letter-spacing:3.520000pt;}
.ls110_c00001{letter-spacing:3.601440pt;}
.lsf9_c00001{letter-spacing:3.917664pt;}
.lsf0_c00001{letter-spacing:4.239744pt;}
.lsbf_c00001{letter-spacing:4.800000pt;}
.ls17b_c00001{letter-spacing:4.879072pt;}
.lsc1_c00001{letter-spacing:5.120000pt;}
.ls8f_c00001{letter-spacing:5.199712pt;}
.ls11f_c00001{letter-spacing:5.200128pt;}
.ls7a_c00001{letter-spacing:5.520352pt;}
.lsa9_c00001{letter-spacing:5.680000pt;}
.ls11a_c00001{letter-spacing:5.838432pt;}
.ls10e_c00001{letter-spacing:6.482592pt;}
.ls123_c00001{letter-spacing:6.798816pt;}
.lse0_c00001{letter-spacing:7.360000pt;}
.ls11d_c00001{letter-spacing:8.081280pt;}
.lscf_c00001{letter-spacing:8.400768pt;}
.ls18e_c00001{letter-spacing:8.640000pt;}
.ls126_c00001{letter-spacing:8.719584pt;}
.ls95_c00001{letter-spacing:8.960000pt;}
.ls115_c00001{letter-spacing:9.041664pt;}
.lsd8_c00001{letter-spacing:9.120000pt;}
.ls122_c00001{letter-spacing:9.679968pt;}
.ls18a_c00001{letter-spacing:9.998624pt;}
.ls10b_c00001{letter-spacing:10.002048pt;}
.lsc7_c00001{letter-spacing:10.240000pt;}
.ls96_c00001{letter-spacing:10.560000pt;}
.lsc9_c00001{letter-spacing:10.639904pt;}
.lsc2_c00001{letter-spacing:12.480000pt;}
.ls118_c00001{letter-spacing:13.199424pt;}
.lse2_c00001{letter-spacing:13.760000pt;}
.ls11c_c00001{letter-spacing:14.159808pt;}
.ls11e_c00001{letter-spacing:15.120192pt;}
.ls8e_c00001{letter-spacing:16.400736pt;}
.ls116_c00001{letter-spacing:17.040960pt;}
.ls117_c00001{letter-spacing:17.357184pt;}
.ls10c_c00001{letter-spacing:17.679264pt;}
.lsca_c00001{letter-spacing:17.920000pt;}
.ls79_c00001{letter-spacing:17.998592pt;}
.ls113_c00001{letter-spacing:18.317568pt;}
.lscb_c00001{letter-spacing:18.560000pt;}
.ls119_c00001{letter-spacing:19.922112pt;}
.lsc0_c00001{letter-spacing:21.760000pt;}
.ls120_c00001{letter-spacing:22.798496pt;}
.ls107_c00001{letter-spacing:28.881792pt;}
.ls78_c00001{letter-spacing:29.520256pt;}
.ls1a6_c00001{letter-spacing:29.760000pt;}
.ls114_c00001{letter-spacing:30.158400pt;}
.ls188_c00001{letter-spacing:34.426048pt;}
.ls150_c00001{letter-spacing:43.008000pt;}
.ls184_c00001{letter-spacing:48.822784pt;}
.ls186_c00001{letter-spacing:49.464064pt;}
.ls171_c00001{letter-spacing:52.018496pt;}
.ls178_c00001{letter-spacing:52.018880pt;}
.ls176_c00001{letter-spacing:52.018944pt;}
.ls169_c00001{letter-spacing:52.023840pt;}
.ls170_c00001{letter-spacing:52.024224pt;}
.ls175_c00001{letter-spacing:52.024288pt;}
.ls174_c00001{letter-spacing:52.039872pt;}
.ls168_c00001{letter-spacing:53.942336pt;}
.ls166_c00001{letter-spacing:54.583616pt;}
.ls164_c00001{letter-spacing:106.960160pt;}
.ls160_c00001{letter-spacing:118.583360pt;}
.ls12_c00001{letter-spacing:172.800000pt;}
.lsa1_c00001{letter-spacing:175.438176pt;}
.ls44_c00001{letter-spacing:176.000000pt;}
.ls162_c00001{letter-spacing:224.000000pt;}
.ls15e_c00001{letter-spacing:226.634656pt;}
.ls158_c00001{letter-spacing:226.638592pt;}
.ls154_c00001{letter-spacing:226.639040pt;}
.ls155_c00001{letter-spacing:226.639232pt;}
.ls15f_c00001{letter-spacing:226.640000pt;}
.ls15b_c00001{letter-spacing:226.640224pt;}
.ls15c_c00001{letter-spacing:226.641696pt;}
.ls15a_c00001{letter-spacing:226.642784pt;}
.ls159_c00001{letter-spacing:226.645824pt;}
.ls19f_c00001{letter-spacing:262.805184pt;}
.lsb9_c00001{letter-spacing:295.040000pt;}
.ls163_c00001{letter-spacing:364.240000pt;}
.ls9d_c00001{letter-spacing:368.000000pt;}
.lse4_c00001{letter-spacing:416.085792pt;}
.ls18c_c00001{letter-spacing:622.720000pt;}
.ls18b_c00001{letter-spacing:673.280000pt;}
.ls183_c00001{letter-spacing:740.160000pt;}
.lsa7_c00001{letter-spacing:854.800000pt;}
.ls165_c00001{letter-spacing:956.800000pt;}
.ls4a_c00001{letter-spacing:1071.440000pt;}
.ls1_c00001{letter-spacing:2155.520000pt;}
.ws8b9_c00001{word-spacing:-64.320000pt;}
.ws78_c00001{word-spacing:-64.000000pt;}
.ws1117_c00001{word-spacing:-58.560000pt;}
.ws90d_c00001{word-spacing:-53.440000pt;}
.ws11e5_c00001{word-spacing:-30.945047pt;}
.ws1223_c00001{word-spacing:-29.280000pt;}
.ws7b0_c00001{word-spacing:-16.115200pt;}
.ws9eb_c00001{word-spacing:-16.102400pt;}
.ws265_c00001{word-spacing:-16.096000pt;}
.ws419_c00001{word-spacing:-16.089600pt;}
.wsbc6_c00001{word-spacing:-16.083200pt;}
.ws626_c00001{word-spacing:-16.076800pt;}
.ws7db_c00001{word-spacing:-16.070400pt;}
.wsb01_c00001{word-spacing:-16.064000pt;}
.ws3ec_c00001{word-spacing:-16.057600pt;}
.ws1ba_c00001{word-spacing:-16.051200pt;}
.ws473_c00001{word-spacing:-16.044800pt;}
.ws11e_c00001{word-spacing:-16.038400pt;}
.ws717_c00001{word-spacing:-16.032000pt;}
.ws374_c00001{word-spacing:-16.025600pt;}
.ws186_c00001{word-spacing:-16.019200pt;}
.ws77_c00001{word-spacing:-16.012800pt;}
.ws628_c00001{word-spacing:-16.006400pt;}
.ws1bb_c00001{word-spacing:-16.000000pt;}
.wsb52_c00001{word-spacing:-15.993600pt;}
.ws627_c00001{word-spacing:-15.987200pt;}
.ws954_c00001{word-spacing:-15.980800pt;}
.ws64b_c00001{word-spacing:-15.968000pt;}
.wsc8b_c00001{word-spacing:-15.961600pt;}
.wsa15_c00001{word-spacing:-15.955200pt;}
.ws79_c00001{word-spacing:-15.948800pt;}
.ws3eb_c00001{word-spacing:-15.936000pt;}
.ws6e1_c00001{word-spacing:-15.910400pt;}
.ws8cd_c00001{word-spacing:-15.891200pt;}
.ws1a22_c00001{word-spacing:-15.680000pt;}
.ws67c_c00001{word-spacing:-15.500800pt;}
.ws1331_c00001{word-spacing:-15.026496pt;}
.ws135f_c00001{word-spacing:-14.962080pt;}
.ws1299_c00001{word-spacing:-14.833248pt;}
.ws100f_c00001{word-spacing:-14.798112pt;}
.ws104c_c00001{word-spacing:-14.786400pt;}
.ws11a5_c00001{word-spacing:-14.780544pt;}
.ws12f4_c00001{word-spacing:-14.774688pt;}
.wsff1_c00001{word-spacing:-14.762976pt;}
.ws1222_c00001{word-spacing:-14.757120pt;}
.wsf8a_c00001{word-spacing:-14.751264pt;}
.wsfa8_c00001{word-spacing:-14.745408pt;}
.ws100e_c00001{word-spacing:-14.739552pt;}
.wsfcf_c00001{word-spacing:-14.733696pt;}
.ws11cd_c00001{word-spacing:-14.727840pt;}
.ws9fc_c00001{word-spacing:-14.721984pt;}
.wsfa9_c00001{word-spacing:-14.716128pt;}
.wsf6a_c00001{word-spacing:-14.710272pt;}
.wsff0_c00001{word-spacing:-14.704416pt;}
.wsce3_c00001{word-spacing:-14.698560pt;}
.wsb6f_c00001{word-spacing:-14.692704pt;}
.wsf69_c00001{word-spacing:-14.686848pt;}
.wsf6b_c00001{word-spacing:-14.680992pt;}
.wsa92_c00001{word-spacing:-14.675136pt;}
.ws106c_c00001{word-spacing:-14.669280pt;}
.ws10a6_c00001{word-spacing:-14.663424pt;}
.wscb0_c00001{word-spacing:-14.657568pt;}
.ws1168_c00001{word-spacing:-14.651712pt;}
.ws106d_c00001{word-spacing:-14.645856pt;}
.ws1100_c00001{word-spacing:-14.640000pt;}
.ws102d_c00001{word-spacing:-14.634144pt;}
.wsfaa_c00001{word-spacing:-14.628288pt;}
.ws11e6_c00001{word-spacing:-14.610720pt;}
.ws1101_c00001{word-spacing:-14.599008pt;}
.ws126b_c00001{word-spacing:-14.593152pt;}
.wsbe9_c00001{word-spacing:-14.587296pt;}
.ws130b_c00001{word-spacing:-14.581440pt;}
.wsaa6_c00001{word-spacing:-14.569728pt;}
.ws1133_c00001{word-spacing:-14.558016pt;}
.ws104b_c00001{word-spacing:-14.534592pt;}
.ws1169_c00001{word-spacing:-14.481888pt;}
.ws755_c00001{word-spacing:-13.520320pt;}
.ws154c_c00001{word-spacing:-13.504288pt;}
.ws756_c00001{word-spacing:-13.488256pt;}
.wsd1f_c00001{word-spacing:-13.482912pt;}
.wsa16_c00001{word-spacing:-13.472224pt;}
.ws16d6_c00001{word-spacing:-13.466880pt;}
.ws1576_c00001{word-spacing:-13.461536pt;}
.ws2e_c00001{word-spacing:-13.456192pt;}
.wsb54_c00001{word-spacing:-13.450848pt;}
.ws1708_c00001{word-spacing:-13.445504pt;}
.ws146b_c00001{word-spacing:-13.440160pt;}
.ws5d0_c00001{word-spacing:-13.434816pt;}
.ws1706_c00001{word-spacing:-13.429472pt;}
.ws1874_c00001{word-spacing:-13.424128pt;}
.ws545_c00001{word-spacing:-13.413440pt;}
.ws1925_c00001{word-spacing:-13.408096pt;}
.ws146c_c00001{word-spacing:-13.402752pt;}
.wsb55_c00001{word-spacing:-13.397408pt;}
.ws143c_c00001{word-spacing:-13.386720pt;}
.wsa31_c00001{word-spacing:-13.381376pt;}
.ws32e_c00001{word-spacing:-13.376032pt;}
.ws5fb_c00001{word-spacing:-13.370688pt;}
.wsd0f_c00001{word-spacing:-13.365344pt;}
.ws7c_c00001{word-spacing:-13.360000pt;}
.ws955_c00001{word-spacing:-13.354656pt;}
.ws29e_c00001{word-spacing:-13.349312pt;}
.ws187_c00001{word-spacing:-13.343968pt;}
.ws29d_c00001{word-spacing:-13.338624pt;}
.wsb53_c00001{word-spacing:-13.333280pt;}
.ws938_c00001{word-spacing:-13.327936pt;}
.ws1412_c00001{word-spacing:-13.322592pt;}
.ws90c_c00001{word-spacing:-13.317248pt;}
.wsaef_c00001{word-spacing:-13.311904pt;}
.wsa49_c00001{word-spacing:-13.306560pt;}
.wsb87_c00001{word-spacing:-13.301216pt;}
.ws32d_c00001{word-spacing:-13.295872pt;}
.ws4ed_c00001{word-spacing:-13.290528pt;}
.ws29c_c00001{word-spacing:-13.285184pt;}
.ws15e1_c00001{word-spacing:-13.274496pt;}
.ws1406_c00001{word-spacing:-13.263808pt;}
.wsc6e_c00001{word-spacing:-13.258464pt;}
.ws32f_c00001{word-spacing:-13.253120pt;}
.ws98f_c00001{word-spacing:-13.247776pt;}
.ws4ee_c00001{word-spacing:-13.242432pt;}
.ws5ce_c00001{word-spacing:-13.237088pt;}
.ws4ef_c00001{word-spacing:-13.231744pt;}
.ws16ef_c00001{word-spacing:-13.221056pt;}
.ws5cf_c00001{word-spacing:-13.215712pt;}
.ws1a18_c00001{word-spacing:-13.205024pt;}
.ws9ec_c00001{word-spacing:-13.199680pt;}
.ws1a3a_c00001{word-spacing:-13.194336pt;}
.ws2d_c00001{word-spacing:-13.188992pt;}
.ws183f_c00001{word-spacing:-13.183648pt;}
.ws160c_c00001{word-spacing:-13.156928pt;}
.ws1577_c00001{word-spacing:-13.151584pt;}
.ws1707_c00001{word-spacing:-13.146240pt;}
.ws4a0_c00001{word-spacing:-13.135552pt;}
.ws2f_c00001{word-spacing:-13.130208pt;}
.ws7b_c00001{word-spacing:-13.124864pt;}
.ws1632_c00001{word-spacing:-13.119520pt;}
.ws4ec_c00001{word-spacing:-13.082112pt;}
.wsc38_c00001{word-spacing:-13.076768pt;}
.wsce4_c00001{word-spacing:-13.039360pt;}
.ws9c2_c00001{word-spacing:-12.916448pt;}
.ws158b_c00001{word-spacing:-12.750784pt;}
.ws42f_c00001{word-spacing:-12.700672pt;}
.wsd0e_c00001{word-spacing:-12.660224pt;}
.wsbab_c00001{word-spacing:-12.609664pt;}
.ws2c_c00001{word-spacing:-12.604608pt;}
.ws90b_c00001{word-spacing:-12.286080pt;}
.ws2b_c00001{word-spacing:-10.801728pt;}
.ws1411_c00001{word-spacing:-10.640000pt;}
.wsd38_c00001{word-spacing:-10.622976pt;}
.ws140b_c00001{word-spacing:-10.584672pt;}
.ws1413_c00001{word-spacing:-10.563392pt;}
.ws140c_c00001{word-spacing:-10.546368pt;}
.ws0_c00001{word-spacing:-9.520992pt;}
.ws1_c00001{word-spacing:-8.640000pt;}
.ws5fa_c00001{word-spacing:-2.880000pt;}
.ws1fe_c00001{word-spacing:-2.560000pt;}
.ws29b_c00001{word-spacing:-2.486912pt;}
.ws2d5_c00001{word-spacing:-2.240000pt;}
.ws7d_c00001{word-spacing:-1.920000pt;}
.ws98e_c00001{word-spacing:-1.846912pt;}
.ws247_c00001{word-spacing:-1.846379pt;}
.wsb6e_c00001{word-spacing:-1.526379pt;}
.ws11f_c00001{word-spacing:-1.280000pt;}
.ws953_c00001{word-spacing:-1.206912pt;}
.ws7a_c00001{word-spacing:-0.960000pt;}
.wsa32_c00001{word-spacing:-0.640000pt;}
.ws162_c00001{word-spacing:-0.561792pt;}
.ws1644_c00001{word-spacing:-0.400800pt;}
.ws13e5_c00001{word-spacing:-0.399360pt;}
.ws11b9_c00001{word-spacing:-0.398208pt;}
.wsb32_c00001{word-spacing:-0.395456pt;}
.ws13f3_c00001{word-spacing:-0.393216pt;}
.wsade_c00001{word-spacing:-0.390400pt;}
.ws1390_c00001{word-spacing:-0.386496pt;}
.ws1416_c00001{word-spacing:-0.384768pt;}
.ws13f7_c00001{word-spacing:-0.380928pt;}
.wsd7b_c00001{word-spacing:-0.377600pt;}
.ws13eb_c00001{word-spacing:-0.374784pt;}
.ws615_c00001{word-spacing:-0.374080pt;}
.wsfc5_c00001{word-spacing:-0.368928pt;}
.ws9d3_c00001{word-spacing:-0.368736pt;}
.ws13e0_c00001{word-spacing:-0.368640pt;}
.wsda5_c00001{word-spacing:-0.364800pt;}
.wsf6_c00001{word-spacing:-0.363392pt;}
.ws1002_c00001{word-spacing:-0.363072pt;}
.ws13d5_c00001{word-spacing:-0.362496pt;}
.ws5e3_c00001{word-spacing:-0.358400pt;}
.wsb51_c00001{word-spacing:-0.358048pt;}
.ws114b_c00001{word-spacing:-0.357216pt;}
.ws13cc_c00001{word-spacing:-0.356352pt;}
.ws523_c00001{word-spacing:-0.352704pt;}
.ws87_c00001{word-spacing:-0.352000pt;}
.ws13f4_c00001{word-spacing:-0.350208pt;}
.ws36e_c00001{word-spacing:-0.347360pt;}
.ws6b8_c00001{word-spacing:-0.345600pt;}
.ws1086_c00001{word-spacing:-0.345504pt;}
.ws13e9_c00001{word-spacing:-0.344064pt;}
.ws182_c00001{word-spacing:-0.342016pt;}
.ws1076_c00001{word-spacing:-0.339648pt;}
.wsc64_c00001{word-spacing:-0.339200pt;}
.ws13e4_c00001{word-spacing:-0.337920pt;}
.ws97a_c00001{word-spacing:-0.336672pt;}
.ws1239_c00001{word-spacing:-0.333792pt;}
.ws37e_c00001{word-spacing:-0.332800pt;}
.ws13d1_c00001{word-spacing:-0.331776pt;}
.ws2c3_c00001{word-spacing:-0.331328pt;}
.ws136_c00001{word-spacing:-0.326400pt;}
.ws6ab_c00001{word-spacing:-0.325984pt;}
.ws13cb_c00001{word-spacing:-0.325632pt;}
.ws101e_c00001{word-spacing:-0.322080pt;}
.ws297_c00001{word-spacing:-0.320640pt;}
.ws6ae_c00001{word-spacing:-0.320000pt;}
.ws13d0_c00001{word-spacing:-0.319488pt;}
.ws11f6_c00001{word-spacing:-0.316224pt;}
.ws76_c00001{word-spacing:-0.315296pt;}
.ws2bb_c00001{word-spacing:-0.313600pt;}
.ws13d8_c00001{word-spacing:-0.313344pt;}
.ws12e9_c00001{word-spacing:-0.310368pt;}
.ws184_c00001{word-spacing:-0.309952pt;}
.wsf17_c00001{word-spacing:-0.307200pt;}
.ws831_c00001{word-spacing:-0.304608pt;}
.ws105a_c00001{word-spacing:-0.304512pt;}
.ws13df_c00001{word-spacing:-0.301056pt;}
.wseac_c00001{word-spacing:-0.300800pt;}
.ws444_c00001{word-spacing:-0.299264pt;}
.ws11be_c00001{word-spacing:-0.298656pt;}
.ws13dc_c00001{word-spacing:-0.294912pt;}
.ws2_c00001{word-spacing:-0.293920pt;}
.ws1074_c00001{word-spacing:-0.292800pt;}
.ws13d9_c00001{word-spacing:-0.288768pt;}
.ws30_c00001{word-spacing:-0.288576pt;}
.ws1251_c00001{word-spacing:-0.286944pt;}
.ws5d2_c00001{word-spacing:-0.283232pt;}
.ws13da_c00001{word-spacing:-0.282624pt;}
.ws1281_c00001{word-spacing:-0.281088pt;}
.ws94f_c00001{word-spacing:-0.277888pt;}
.ws13e6_c00001{word-spacing:-0.276480pt;}
.ws11da_c00001{word-spacing:-0.275232pt;}
.wsf10_c00001{word-spacing:-0.275200pt;}
.ws140a_c00001{word-spacing:-0.272544pt;}
.ws13f9_c00001{word-spacing:-0.270336pt;}
.wscad_c00001{word-spacing:-0.268800pt;}
.ws35a_c00001{word-spacing:-0.267200pt;}
.ws858_c00001{word-spacing:-0.262400pt;}
.ws31d_c00001{word-spacing:-0.261856pt;}
.ws13fd_c00001{word-spacing:-0.258048pt;}
.wsfe1_c00001{word-spacing:-0.257664pt;}
.ws2c2_c00001{word-spacing:-0.256512pt;}
.ws743_c00001{word-spacing:-0.256000pt;}
.ws1145_c00001{word-spacing:-0.251808pt;}
.ws9fb_c00001{word-spacing:-0.251168pt;}
.ws135_c00001{word-spacing:-0.249600pt;}
.ws641_c00001{word-spacing:-0.245824pt;}
.ws13ed_c00001{word-spacing:-0.245760pt;}
.ws7f3_c00001{word-spacing:-0.243200pt;}
.ws4aa_c00001{word-spacing:-0.240480pt;}
.wscbd_c00001{word-spacing:-0.236800pt;}
.wsc1_c00001{word-spacing:-0.235136pt;}
.wsc66_c00001{word-spacing:-0.230400pt;}
.ws9e4_c00001{word-spacing:-0.229792pt;}
.ws13f6_c00001{word-spacing:-0.227328pt;}
.ws2f3_c00001{word-spacing:-0.224448pt;}
.ws88_c00001{word-spacing:-0.224000pt;}
.wsc2_c00001{word-spacing:-0.219104pt;}
.ws7a3_c00001{word-spacing:-0.217600pt;}
.ws13fb_c00001{word-spacing:-0.215040pt;}
.ws1442_c00001{word-spacing:-0.213760pt;}
.ws552_c00001{word-spacing:-0.211200pt;}
.wsf68_c00001{word-spacing:-0.209216pt;}
.ws625_c00001{word-spacing:-0.208416pt;}
.ws46b_c00001{word-spacing:-0.204800pt;}
.ws1469_c00001{word-spacing:-0.203072pt;}
.ws13fc_c00001{word-spacing:-0.202752pt;}
.wsa04_c00001{word-spacing:-0.198400pt;}
.wsbd_c00001{word-spacing:-0.197728pt;}
.ws7ca_c00001{word-spacing:-0.192384pt;}
.ws5b9_c00001{word-spacing:-0.192000pt;}
.ws13fa_c00001{word-spacing:-0.190464pt;}
.ws415_c00001{word-spacing:-0.187040pt;}
.ws5d1_c00001{word-spacing:-0.185600pt;}
.ws1ab_c00001{word-spacing:-0.181696pt;}
.ws478_c00001{word-spacing:-0.179200pt;}
.wse1d_c00001{word-spacing:-0.178944pt;}
.ws885_c00001{word-spacing:-0.176352pt;}
.ws285_c00001{word-spacing:-0.172800pt;}
.ws31f_c00001{word-spacing:-0.171008pt;}
.ws551_c00001{word-spacing:-0.166400pt;}
.wsbb_c00001{word-spacing:-0.165664pt;}
.ws730_c00001{word-spacing:-0.160320pt;}
.ws86b_c00001{word-spacing:-0.160000pt;}
.ws1258_c00001{word-spacing:-0.156576pt;}
.ws7af_c00001{word-spacing:-0.154976pt;}
.wsdd4_c00001{word-spacing:-0.153792pt;}
.ws16b_c00001{word-spacing:-0.153600pt;}
.ws23_c00001{word-spacing:-0.149632pt;}
.ws1a74_c00001{word-spacing:-0.149120pt;}
.ws13de_c00001{word-spacing:-0.147456pt;}
.ws495_c00001{word-spacing:-0.147200pt;}
.ws873_c00001{word-spacing:-0.144288pt;}
.ws13c5_c00001{word-spacing:-0.141664pt;}
.ws412_c00001{word-spacing:-0.140800pt;}
.ws832_c00001{word-spacing:-0.138944pt;}
.ws13ce_c00001{word-spacing:-0.135168pt;}
.ws594_c00001{word-spacing:-0.134400pt;}
.ws544_c00001{word-spacing:-0.133600pt;}
.ws7cd_c00001{word-spacing:-0.128256pt;}
.ws290_c00001{word-spacing:-0.128000pt;}
.ws13c6_c00001{word-spacing:-0.126752pt;}
.ws31c_c00001{word-spacing:-0.122912pt;}
.wsa4_c00001{word-spacing:-0.121600pt;}
.ws181_c00001{word-spacing:-0.117568pt;}
.ws1f4_c00001{word-spacing:-0.115200pt;}
.wsf3_c00001{word-spacing:-0.112224pt;}
.ws1257_c00001{word-spacing:-0.111840pt;}
.ws107_c00001{word-spacing:-0.108800pt;}
.ws31e_c00001{word-spacing:-0.106880pt;}
.wse50_c00001{word-spacing:-0.104384pt;}
.ws227_c00001{word-spacing:-0.102400pt;}
.ws373_c00001{word-spacing:-0.101536pt;}
.wsf6c_c00001{word-spacing:-0.096928pt;}
.ws399_c00001{word-spacing:-0.096192pt;}
.ws10e_c00001{word-spacing:-0.096000pt;}
.ws12b7_c00001{word-spacing:-0.093696pt;}
.ws8ee_c00001{word-spacing:-0.090848pt;}
.ws48_c00001{word-spacing:-0.089600pt;}
.ws1404_c00001{word-spacing:-0.089472pt;}
.ws10f_c00001{word-spacing:-0.085504pt;}
.ws55_c00001{word-spacing:-0.083200pt;}
.ws107c_c00001{word-spacing:-0.081984pt;}
.ws2f4_c00001{word-spacing:-0.080160pt;}
.wsc_c00001{word-spacing:-0.076800pt;}
.ws1444_c00001{word-spacing:-0.074816pt;}
.ws14b_c00001{word-spacing:-0.070400pt;}
.ws116d_c00001{word-spacing:-0.070272pt;}
.wsd11_c00001{word-spacing:-0.069472pt;}
.ws13e3_c00001{word-spacing:-0.067584pt;}
.ws1a75_c00001{word-spacing:-0.067104pt;}
.wsf73_c00001{word-spacing:-0.064416pt;}
.ws49a_c00001{word-spacing:-0.064128pt;}
.ws38_c00001{word-spacing:-0.064000pt;}
.ws13ea_c00001{word-spacing:-0.061440pt;}
.ws1a45_c00001{word-spacing:-0.059776pt;}
.ws95f_c00001{word-spacing:-0.058784pt;}
.wsfe2_c00001{word-spacing:-0.058560pt;}
.ws1cd_c00001{word-spacing:-0.057600pt;}
.ws975_c00001{word-spacing:-0.053440pt;}
.wsf6d_c00001{word-spacing:-0.052704pt;}
.ws15e_c00001{word-spacing:-0.051200pt;}
.ws13cf_c00001{word-spacing:-0.049152pt;}
.ws251_c00001{word-spacing:-0.048096pt;}
.wsf89_c00001{word-spacing:-0.046848pt;}
.ws1e_c00001{word-spacing:-0.044800pt;}
.ws13cd_c00001{word-spacing:-0.043008pt;}
.ws4ab_c00001{word-spacing:-0.042752pt;}
.wsf6e_c00001{word-spacing:-0.040992pt;}
.ws20_c00001{word-spacing:-0.038400pt;}
.wsf7_c00001{word-spacing:-0.037408pt;}
.ws13c9_c00001{word-spacing:-0.036864pt;}
.wsf7e_c00001{word-spacing:-0.035136pt;}
.ws238_c00001{word-spacing:-0.032064pt;}
.wsae_c00001{word-spacing:-0.032000pt;}
.ws13d7_c00001{word-spacing:-0.030720pt;}
.wsf8c_c00001{word-spacing:-0.029280pt;}
.ws7ed_c00001{word-spacing:-0.026720pt;}
.ws284_c00001{word-spacing:-0.025600pt;}
.ws13f0_c00001{word-spacing:-0.024576pt;}
.wsf87_c00001{word-spacing:-0.023424pt;}
.ws1b9_c00001{word-spacing:-0.021376pt;}
.ws134_c00001{word-spacing:-0.019200pt;}
.ws13d4_c00001{word-spacing:-0.018432pt;}
.wsc34_c00001{word-spacing:-0.017568pt;}
.ws2d4_c00001{word-spacing:-0.016032pt;}
.wse1c_c00001{word-spacing:-0.014912pt;}
.ws47_c00001{word-spacing:-0.012800pt;}
.ws13e1_c00001{word-spacing:-0.012288pt;}
.wsfbd_c00001{word-spacing:-0.011712pt;}
.ws1ac_c00001{word-spacing:-0.010688pt;}
.wsd_c00001{word-spacing:-0.006400pt;}
.ws13db_c00001{word-spacing:-0.006144pt;}
.wsab4_c00001{word-spacing:-0.005856pt;}
.ws53d_c00001{word-spacing:-0.005344pt;}
.ws3_c00001{word-spacing:0.000000pt;}
.ws143_c00001{word-spacing:0.005344pt;}
.ws5_c00001{word-spacing:0.005856pt;}
.ws13d2_c00001{word-spacing:0.006144pt;}
.ws1f_c00001{word-spacing:0.006400pt;}
.ws1a4b_c00001{word-spacing:0.007456pt;}
.ws564_c00001{word-spacing:0.010688pt;}
.wsbb6_c00001{word-spacing:0.011712pt;}
.ws13d3_c00001{word-spacing:0.012288pt;}
.ws2fb_c00001{word-spacing:0.012800pt;}
.wsbc_c00001{word-spacing:0.016032pt;}
.wsbb7_c00001{word-spacing:0.017568pt;}
.ws13c8_c00001{word-spacing:0.018432pt;}
.ws257_c00001{word-spacing:0.019200pt;}
.ws42e_c00001{word-spacing:0.021376pt;}
.ws6ec_c00001{word-spacing:0.023424pt;}
.ws13ca_c00001{word-spacing:0.024576pt;}
.ws5e4_c00001{word-spacing:0.025600pt;}
.ws255_c00001{word-spacing:0.026720pt;}
.wsc6_c00001{word-spacing:0.029280pt;}
.ws13e8_c00001{word-spacing:0.030720pt;}
.ws3ad_c00001{word-spacing:0.032000pt;}
.ws13e_c00001{word-spacing:0.032064pt;}
.ws230_c00001{word-spacing:0.035136pt;}
.ws13d6_c00001{word-spacing:0.036864pt;}
.wsf5_c00001{word-spacing:0.037408pt;}
.ws741_c00001{word-spacing:0.038400pt;}
.wsa05_c00001{word-spacing:0.040992pt;}
.ws2a_c00001{word-spacing:0.042752pt;}
.ws13dd_c00001{word-spacing:0.043008pt;}
.wsc08_c00001{word-spacing:0.044800pt;}
.wsb80_c00001{word-spacing:0.046848pt;}
.ws147_c00001{word-spacing:0.048096pt;}
.ws13e2_c00001{word-spacing:0.049152pt;}
.ws337_c00001{word-spacing:0.051200pt;}
.wsdd9_c00001{word-spacing:0.052192pt;}
.ws968_c00001{word-spacing:0.052704pt;}
.ws9c5_c00001{word-spacing:0.053440pt;}
.ws13e7_c00001{word-spacing:0.055296pt;}
.ws108_c00001{word-spacing:0.057600pt;}
.wsbb5_c00001{word-spacing:0.058560pt;}
.ws443_c00001{word-spacing:0.058784pt;}
.ws13fe_c00001{word-spacing:0.061440pt;}
.ws3dc_c00001{word-spacing:0.064000pt;}
.ws472_c00001{word-spacing:0.064128pt;}
.ws89b_c00001{word-spacing:0.064416pt;}
.ws13ff_c00001{word-spacing:0.067584pt;}
.ws32a_c00001{word-spacing:0.069472pt;}
.ws176_c00001{word-spacing:0.070272pt;}
.ws334_c00001{word-spacing:0.070400pt;}
.ws13f8_c00001{word-spacing:0.073728pt;}
.wsc3_c00001{word-spacing:0.074816pt;}
.wsf96_c00001{word-spacing:0.076128pt;}
.ws6af_c00001{word-spacing:0.076800pt;}
.ws13f2_c00001{word-spacing:0.079872pt;}
.ws17c_c00001{word-spacing:0.080160pt;}
.ws2ba_c00001{word-spacing:0.081984pt;}
.ws1403_c00001{word-spacing:0.082016pt;}
.wsdf3_c00001{word-spacing:0.083200pt;}
.ws183_c00001{word-spacing:0.085504pt;}
.ws13ef_c00001{word-spacing:0.086016pt;}
.ws108d_c00001{word-spacing:0.087840pt;}
.ws664_c00001{word-spacing:0.089600pt;}
.ws11d_c00001{word-spacing:0.090848pt;}
.ws13ec_c00001{word-spacing:0.092160pt;}
.ws1146_c00001{word-spacing:0.093696pt;}
.wscf5_c00001{word-spacing:0.096000pt;}
.ws1f5_c00001{word-spacing:0.096192pt;}
.wsf74_c00001{word-spacing:0.099552pt;}
.ws6e_c00001{word-spacing:0.101536pt;}
.wse14_c00001{word-spacing:0.102400pt;}
.ws1a91_c00001{word-spacing:0.104384pt;}
.ws13f1_c00001{word-spacing:0.104448pt;}
.ws1322_c00001{word-spacing:0.105408pt;}
.ws246_c00001{word-spacing:0.106880pt;}
.ws571_c00001{word-spacing:0.108800pt;}
.ws733_c00001{word-spacing:0.112224pt;}
.ws7ce_c00001{word-spacing:0.115200pt;}
.ws29a_c00001{word-spacing:0.117568pt;}
.ws1a46_c00001{word-spacing:0.119616pt;}
.ws8bd_c00001{word-spacing:0.121600pt;}
.ws1f6_c00001{word-spacing:0.122912pt;}
.wsbf7_c00001{word-spacing:0.128000pt;}
.ws146_c00001{word-spacing:0.128256pt;}
.ws114f_c00001{word-spacing:0.128832pt;}
.ws5cb_c00001{word-spacing:0.133600pt;}
.ws8bc_c00001{word-spacing:0.134400pt;}
.wsdd3_c00001{word-spacing:0.134496pt;}
.ws1244_c00001{word-spacing:0.134688pt;}
.ws616_c00001{word-spacing:0.138944pt;}
.wsf88_c00001{word-spacing:0.140544pt;}
.ws1dc_c00001{word-spacing:0.140800pt;}
.ws6b_c00001{word-spacing:0.144288pt;}
.ws7b4_c00001{word-spacing:0.147200pt;}
.ws2d1_c00001{word-spacing:0.149632pt;}
.ws818_c00001{word-spacing:0.153600pt;}
.ws642_c00001{word-spacing:0.154976pt;}
.ws665_c00001{word-spacing:0.160000pt;}
.ws1af_c00001{word-spacing:0.160320pt;}
.ws1a44_c00001{word-spacing:0.164384pt;}
.wsf4_c00001{word-spacing:0.165664pt;}
.ws350_c00001{word-spacing:0.166400pt;}
.ws21_c00001{word-spacing:0.171008pt;}
.ws7e6_c00001{word-spacing:0.172800pt;}
.ws252_c00001{word-spacing:0.176352pt;}
.ws496_c00001{word-spacing:0.179200pt;}
.ws1f8_c00001{word-spacing:0.181696pt;}
.ws819_c00001{word-spacing:0.185600pt;}
.ws1b5_c00001{word-spacing:0.187040pt;}
.ws3f7_c00001{word-spacing:0.192000pt;}
.ws185_c00001{word-spacing:0.192384pt;}
.wsf1_c00001{word-spacing:0.197728pt;}
.ws4f9_c00001{word-spacing:0.198400pt;}
.ws13c7_c00001{word-spacing:0.201312pt;}
.ws1aa_c00001{word-spacing:0.203072pt;}
.ws6c9_c00001{word-spacing:0.204800pt;}
.ws22_c00001{word-spacing:0.208416pt;}
.ws351_c00001{word-spacing:0.211200pt;}
.wsf2_c00001{word-spacing:0.213760pt;}
.ws1385_c00001{word-spacing:0.216672pt;}
.ws256_c00001{word-spacing:0.217600pt;}
.ws5c3_c00001{word-spacing:0.219104pt;}
.ws135c_c00001{word-spacing:0.222528pt;}
.wsa27_c00001{word-spacing:0.224000pt;}
.ws1b8_c00001{word-spacing:0.224448pt;}
.ws253_c00001{word-spacing:0.229792pt;}
.ws15a_c00001{word-spacing:0.230400pt;}
.ws36d_c00001{word-spacing:0.235136pt;}
.ws159_c00001{word-spacing:0.236800pt;}
.ws324_c00001{word-spacing:0.240480pt;}
.ws14a_c00001{word-spacing:0.243200pt;}
.ws1571_c00001{word-spacing:0.245824pt;}
.ws6b0_c00001{word-spacing:0.249600pt;}
.ws6f6_c00001{word-spacing:0.251168pt;}
.wsd5_c00001{word-spacing:0.256000pt;}
.ws8a5_c00001{word-spacing:0.256512pt;}
.ws8a0_c00001{word-spacing:0.261856pt;}
.ws149_c00001{word-spacing:0.262400pt;}
.wsb33_c00001{word-spacing:0.267200pt;}
.ws24f_c00001{word-spacing:0.268800pt;}
.ws10a4_c00001{word-spacing:0.269376pt;}
.ws144d_c00001{word-spacing:0.272544pt;}
.ws759_c00001{word-spacing:0.275200pt;}
.ws132d_c00001{word-spacing:0.275232pt;}
.ws254_c00001{word-spacing:0.277888pt;}
.ws135b_c00001{word-spacing:0.281088pt;}
.ws67e_c00001{word-spacing:0.281600pt;}
.wsa7a_c00001{word-spacing:0.283232pt;}
.ws24e_c00001{word-spacing:0.288000pt;}
.ws1b7_c00001{word-spacing:0.288576pt;}
.ws13ee_c00001{word-spacing:0.288768pt;}
.wscb1_c00001{word-spacing:0.292800pt;}
.wsa56_c00001{word-spacing:0.293920pt;}
.wsd4_c00001{word-spacing:0.294400pt;}
.ws132c_c00001{word-spacing:0.298656pt;}
.wsc28_c00001{word-spacing:0.299264pt;}
.ws4f8_c00001{word-spacing:0.300800pt;}
.ws1312_c00001{word-spacing:0.304512pt;}
.ws359_c00001{word-spacing:0.304608pt;}
.ws9dc_c00001{word-spacing:0.307200pt;}
.wsa91_c00001{word-spacing:0.309952pt;}
.ws10d7_c00001{word-spacing:0.310368pt;}
.ws7c3_c00001{word-spacing:0.313600pt;}
.ws1f7_c00001{word-spacing:0.315296pt;}
.ws127e_c00001{word-spacing:0.316224pt;}
.ws398_c00001{word-spacing:0.320000pt;}
.ws4b4_c00001{word-spacing:0.320640pt;}
.ws12d8_c00001{word-spacing:0.322080pt;}
.ws16bd_c00001{word-spacing:0.325984pt;}
.ws7c2_c00001{word-spacing:0.326400pt;}
.wscb2_c00001{word-spacing:0.327936pt;}
.ws624_c00001{word-spacing:0.331328pt;}
.ws799_c00001{word-spacing:0.332800pt;}
.ws128c_c00001{word-spacing:0.333792pt;}
.ws63d_c00001{word-spacing:0.336672pt;}
.ws535_c00001{word-spacing:0.339200pt;}
.wsfd4_c00001{word-spacing:0.339648pt;}
.ws1438_c00001{word-spacing:0.342016pt;}
.ws13f5_c00001{word-spacing:0.344064pt;}
.ws105d_c00001{word-spacing:0.345504pt;}
.ws83a_c00001{word-spacing:0.345600pt;}
.ws15c3_c00001{word-spacing:0.347360pt;}
.wsfb9_c00001{word-spacing:0.351360pt;}
.wsdd5_c00001{word-spacing:0.352000pt;}
.ws2f8_c00001{word-spacing:0.352704pt;}
.wscb3_c00001{word-spacing:0.357216pt;}
.ws162d_c00001{word-spacing:0.358048pt;}
.ws1057_c00001{word-spacing:0.363072pt;}
.ws1b6_c00001{word-spacing:0.363392pt;}
.wse5b_c00001{word-spacing:0.364800pt;}
.ws358_c00001{word-spacing:0.368736pt;}
.ws103d_c00001{word-spacing:0.368928pt;}
.wsed0_c00001{word-spacing:0.371200pt;}
.ws1710_c00001{word-spacing:0.374080pt;}
.wsf86_c00001{word-spacing:0.374784pt;}
.ws8d0_c00001{word-spacing:0.377600pt;}
.ws15cc_c00001{word-spacing:0.379424pt;}
.wsc67_c00001{word-spacing:0.380640pt;}
.ws1477_c00001{word-spacing:0.384768pt;}
.wsf6f_c00001{word-spacing:0.386496pt;}
.ws4eb_c00001{word-spacing:0.390112pt;}
.ws1234_c00001{word-spacing:0.392352pt;}
.ws63f_c00001{word-spacing:0.395456pt;}
.wsda7_c00001{word-spacing:0.396800pt;}
.wsffb_c00001{word-spacing:0.398208pt;}
.ws16c8_c00001{word-spacing:0.400800pt;}
.ws1075_c00001{word-spacing:0.404064pt;}
.ws148d_c00001{word-spacing:0.406144pt;}
.ws35f_c00001{word-spacing:0.411488pt;}
.wsdfd_c00001{word-spacing:0.416000pt;}
.ws14ae_c00001{word-spacing:0.416832pt;}
.ws12d7_c00001{word-spacing:0.421632pt;}
.ws237_c00001{word-spacing:0.422176pt;}
.ws236_c00001{word-spacing:0.427520pt;}
.wsdcc_c00001{word-spacing:0.428800pt;}
.ws1600_c00001{word-spacing:0.432864pt;}
.ws71f_c00001{word-spacing:0.435200pt;}
.ws9ce_c00001{word-spacing:0.438208pt;}
.wsdfe_c00001{word-spacing:0.441600pt;}
.ws9e1_c00001{word-spacing:0.443552pt;}
.ws39b_c00001{word-spacing:0.448000pt;}
.ws19f5_c00001{word-spacing:0.448896pt;}
.ws640_c00001{word-spacing:0.454240pt;}
.ws720_c00001{word-spacing:0.454400pt;}
.ws17e3_c00001{word-spacing:0.459584pt;}
.ws45c_c00001{word-spacing:0.460800pt;}
.ws165f_c00001{word-spacing:0.464928pt;}
.ws657_c00001{word-spacing:0.467200pt;}
.ws15a6_c00001{word-spacing:0.470272pt;}
.ws5ea_c00001{word-spacing:0.475616pt;}
.ws8c2_c00001{word-spacing:0.480000pt;}
.ws63e_c00001{word-spacing:0.480960pt;}
.ws327_c00001{word-spacing:0.486304pt;}
.ws8af_c00001{word-spacing:0.486400pt;}
.ws16c9_c00001{word-spacing:0.491648pt;}
.wsc90_c00001{word-spacing:0.492800pt;}
.ws1697_c00001{word-spacing:0.496992pt;}
.ws45a_c00001{word-spacing:0.499200pt;}
.wsa55_c00001{word-spacing:0.502336pt;}
.ws787_c00001{word-spacing:0.505600pt;}
.ws329_c00001{word-spacing:0.507680pt;}
.ws1f2_c00001{word-spacing:0.512000pt;}
.ws4b5_c00001{word-spacing:0.513024pt;}
.ws19ef_c00001{word-spacing:0.518368pt;}
.ws859_c00001{word-spacing:0.518400pt;}
.ws1899_c00001{word-spacing:0.523712pt;}
.ws690_c00001{word-spacing:0.524800pt;}
.ws179a_c00001{word-spacing:0.529056pt;}
.ws7e1_c00001{word-spacing:0.531200pt;}
.ws14b6_c00001{word-spacing:0.534400pt;}
.ws126_c00001{word-spacing:0.537600pt;}
.wsd44_c00001{word-spacing:0.539744pt;}
.ws127_c00001{word-spacing:0.544000pt;}
.ws15c4_c00001{word-spacing:0.545088pt;}
.ws45b_c00001{word-spacing:0.550400pt;}
.ws14af_c00001{word-spacing:0.550432pt;}
.ws1051_c00001{word-spacing:0.550464pt;}
.ws14b8_c00001{word-spacing:0.555776pt;}
.ws746_c00001{word-spacing:0.556800pt;}
.ws17c1_c00001{word-spacing:0.561120pt;}
.ws136f_c00001{word-spacing:0.562176pt;}
.ws75a_c00001{word-spacing:0.563200pt;}
.ws1941_c00001{word-spacing:0.566464pt;}
.ws557_c00001{word-spacing:0.569600pt;}
.ws1988_c00001{word-spacing:0.571808pt;}
.ws4d2_c00001{word-spacing:0.576000pt;}
.ws264_c00001{word-spacing:0.577152pt;}
.ws4d1_c00001{word-spacing:0.582400pt;}
.ws9d7_c00001{word-spacing:0.582496pt;}
.ws8d2_c00001{word-spacing:0.588800pt;}
.ws1780_c00001{word-spacing:0.593184pt;}
.ws6e4_c00001{word-spacing:0.595200pt;}
.ws9c1_c00001{word-spacing:0.598528pt;}
.ws77c_c00001{word-spacing:0.601600pt;}
.ws1848_c00001{word-spacing:0.603872pt;}
.ws7e9_c00001{word-spacing:0.608000pt;}
.ws1206_c00001{word-spacing:0.609024pt;}
.wsc6c_c00001{word-spacing:0.609216pt;}
.wsdd_c00001{word-spacing:0.614400pt;}
.ws8de_c00001{word-spacing:0.614560pt;}
.ws1245_c00001{word-spacing:0.614880pt;}
.ws49c_c00001{word-spacing:0.619904pt;}
.ws105f_c00001{word-spacing:0.620736pt;}
.ws556_c00001{word-spacing:0.620800pt;}
.ws9d5_c00001{word-spacing:0.625248pt;}
.ws120d_c00001{word-spacing:0.626592pt;}
.wsdc_c00001{word-spacing:0.627200pt;}
.ws35b_c00001{word-spacing:0.630592pt;}
.ws131e_c00001{word-spacing:0.632448pt;}
.ws46c_c00001{word-spacing:0.633600pt;}
.ws328_c00001{word-spacing:0.635936pt;}
.ws10a3_c00001{word-spacing:0.638304pt;}
.ws6e3_c00001{word-spacing:0.640000pt;}
.ws1567_c00001{word-spacing:0.641280pt;}
.ws1043_c00001{word-spacing:0.644160pt;}
.ws39c_c00001{word-spacing:0.646400pt;}
.ws1431_c00001{word-spacing:0.646624pt;}
.ws131f_c00001{word-spacing:0.650016pt;}
.ws794_c00001{word-spacing:0.651968pt;}
.ws974_c00001{word-spacing:0.652800pt;}
.wsf75_c00001{word-spacing:0.655872pt;}
.wsc6b_c00001{word-spacing:0.657312pt;}
.ws125_c00001{word-spacing:0.659200pt;}
.ws133d_c00001{word-spacing:0.661728pt;}
.ws49b_c00001{word-spacing:0.662656pt;}
.wse22_c00001{word-spacing:0.665600pt;}
.ws9f0_c00001{word-spacing:0.667584pt;}
.ws1603_c00001{word-spacing:0.668000pt;}
.ws85a_c00001{word-spacing:0.672000pt;}
.wsa11_c00001{word-spacing:0.673344pt;}
.ws1044_c00001{word-spacing:0.673440pt;}
.ws747_c00001{word-spacing:0.678400pt;}
.ws5c5_c00001{word-spacing:0.678688pt;}
.wsa07_c00001{word-spacing:0.679296pt;}
.ws19a3_c00001{word-spacing:0.684032pt;}
.ws9d4_c00001{word-spacing:0.684800pt;}
.ws10cf_c00001{word-spacing:0.685152pt;}
.ws1664_c00001{word-spacing:0.689376pt;}
.ws1240_c00001{word-spacing:0.691008pt;}
.wsda8_c00001{word-spacing:0.691200pt;}
.ws1585_c00001{word-spacing:0.694720pt;}
.ws11e2_c00001{word-spacing:0.696864pt;}
.ws15a1_c00001{word-spacing:0.700064pt;}
.ws10a2_c00001{word-spacing:0.702720pt;}
.ws1660_c00001{word-spacing:0.705408pt;}
.wsb06_c00001{word-spacing:0.708576pt;}
.wsb71_c00001{word-spacing:0.710400pt;}
.ws325_c00001{word-spacing:0.710752pt;}
.wsa08_c00001{word-spacing:0.714432pt;}
.wsa7e_c00001{word-spacing:0.716096pt;}
.ws137b_c00001{word-spacing:0.720288pt;}
.ws9a6_c00001{word-spacing:0.721440pt;}
.wsbf_c00001{word-spacing:0.726784pt;}
.wsda6_c00001{word-spacing:0.729600pt;}
.ws326_c00001{word-spacing:0.732128pt;}
.ws330_c00001{word-spacing:0.736000pt;}
.wsc0_c00001{word-spacing:0.737472pt;}
.ws5fd_c00001{word-spacing:0.742400pt;}
.ws6d6_c00001{word-spacing:0.742816pt;}
.ws2f9_c00001{word-spacing:0.748160pt;}
.wsb3d_c00001{word-spacing:0.748800pt;}
.ws12a8_c00001{word-spacing:0.749568pt;}
.ws263_c00001{word-spacing:0.753504pt;}
.wsae4_c00001{word-spacing:0.755200pt;}
.ws17c3_c00001{word-spacing:0.758848pt;}
.wsa10_c00001{word-spacing:0.761600pt;}
.ws166c_c00001{word-spacing:0.764192pt;}
.wse98_c00001{word-spacing:0.768000pt;}
.ws9f9_c00001{word-spacing:0.769536pt;}
.ws152_c00001{word-spacing:0.774400pt;}
.ws18e9_c00001{word-spacing:0.774880pt;}
.ws19b4_c00001{word-spacing:0.780224pt;}
.ws940_c00001{word-spacing:0.780800pt;}
.ws165b_c00001{word-spacing:0.785568pt;}
.ws3aa_c00001{word-spacing:0.787200pt;}
.ws6d5_c00001{word-spacing:0.790912pt;}
.ws90e_c00001{word-spacing:0.793600pt;}
.ws5c4_c00001{word-spacing:0.796256pt;}
.ws869_c00001{word-spacing:0.800000pt;}
.ws2f7_c00001{word-spacing:0.801600pt;}
.ws629_c00001{word-spacing:0.806400pt;}
.ws1a31_c00001{word-spacing:0.806944pt;}
.wsa7d_c00001{word-spacing:0.812288pt;}
.ws801_c00001{word-spacing:0.812800pt;}
.ws795_c00001{word-spacing:0.817632pt;}
.ws696_c00001{word-spacing:0.819200pt;}
.ws1675_c00001{word-spacing:0.822976pt;}
.ws64e_c00001{word-spacing:0.825600pt;}
.ws614_c00001{word-spacing:0.828320pt;}
.ws43e_c00001{word-spacing:0.832000pt;}
.ws154a_c00001{word-spacing:0.833664pt;}
.ws1f3_c00001{word-spacing:0.838400pt;}
.ws6f5_c00001{word-spacing:0.839008pt;}
.ws613_c00001{word-spacing:0.844352pt;}
.wsa4c_c00001{word-spacing:0.844800pt;}
.ws1606_c00001{word-spacing:0.849696pt;}
.ws970_c00001{word-spacing:0.851200pt;}
.wsbc2_c00001{word-spacing:0.855040pt;}
.ws9b0_c00001{word-spacing:0.857600pt;}
.ws14a8_c00001{word-spacing:0.860384pt;}
.ws695_c00001{word-spacing:0.864000pt;}
.ws1502_c00001{word-spacing:0.865728pt;}
.ws1d0_c00001{word-spacing:0.870400pt;}
.ws1596_c00001{word-spacing:0.871072pt;}
.ws17af_c00001{word-spacing:0.876416pt;}
.ws151_c00001{word-spacing:0.876800pt;}
.ws1470_c00001{word-spacing:0.881760pt;}
.ws1ce_c00001{word-spacing:0.883200pt;}
.ws50e_c00001{word-spacing:0.889600pt;}
.ws167a_c00001{word-spacing:0.892448pt;}
.ws853_c00001{word-spacing:0.896000pt;}
.ws8df_c00001{word-spacing:0.897792pt;}
.ws107e_c00001{word-spacing:0.901824pt;}
.ws50f_c00001{word-spacing:0.902400pt;}
.wsd43_c00001{word-spacing:0.903136pt;}
.ws1096_c00001{word-spacing:0.907680pt;}
.ws6e2_c00001{word-spacing:0.908800pt;}
.wsfcb_c00001{word-spacing:0.913536pt;}
.ws164b_c00001{word-spacing:0.913824pt;}
.ws8ce_c00001{word-spacing:0.915200pt;}
.wsbe8_c00001{word-spacing:0.919168pt;}
.wsff_c00001{word-spacing:0.921600pt;}
.ws4bd_c00001{word-spacing:0.924512pt;}
.ws131d_c00001{word-spacing:0.925248pt;}
.ws153_c00001{word-spacing:0.928000pt;}
.ws1987_c00001{word-spacing:0.929856pt;}
.ws5a_c00001{word-spacing:0.934400pt;}
.ws1652_c00001{word-spacing:0.935200pt;}
.ws1327_c00001{word-spacing:0.936960pt;}
.ws1774_c00001{word-spacing:0.940544pt;}
.ws5b_c00001{word-spacing:0.940800pt;}
.ws9d6_c00001{word-spacing:0.945888pt;}
.ws4d6_c00001{word-spacing:0.947200pt;}
.ws132b_c00001{word-spacing:0.948672pt;}
.ws822_c00001{word-spacing:0.951232pt;}
.ws1cf_c00001{word-spacing:0.953600pt;}
.wsfc8_c00001{word-spacing:0.954528pt;}
.ws67b_c00001{word-spacing:0.956576pt;}
.ws5cd_c00001{word-spacing:0.960000pt;}
.ws139c_c00001{word-spacing:0.960384pt;}
.ws4e5_c00001{word-spacing:0.961920pt;}
.ws107d_c00001{word-spacing:0.966240pt;}
.ws50d_c00001{word-spacing:0.966400pt;}
.ws966_c00001{word-spacing:0.967264pt;}
.wsfca_c00001{word-spacing:0.972096pt;}
.ws541_c00001{word-spacing:0.972608pt;}
.wsaca_c00001{word-spacing:0.972800pt;}
.ws754_c00001{word-spacing:0.977952pt;}
.ws654_c00001{word-spacing:0.979200pt;}
.ws4bb_c00001{word-spacing:0.983296pt;}
.ws136e_c00001{word-spacing:0.983808pt;}
.ws4c2_c00001{word-spacing:0.985600pt;}
.ws1473_c00001{word-spacing:0.988640pt;}
.ws1115_c00001{word-spacing:0.989664pt;}
.ws5fc_c00001{word-spacing:0.992000pt;}
.wsd2a_c00001{word-spacing:0.993984pt;}
.ws1201_c00001{word-spacing:0.995520pt;}
.ws493_c00001{word-spacing:0.998400pt;}
.ws18ee_c00001{word-spacing:0.999328pt;}
.wsfc9_c00001{word-spacing:1.001376pt;}
.ws17be_c00001{word-spacing:1.004672pt;}
.wsc3c_c00001{word-spacing:1.004800pt;}
.ws1212_c00001{word-spacing:1.007232pt;}
.ws15ae_c00001{word-spacing:1.010016pt;}
.wsf54_c00001{word-spacing:1.011200pt;}
.wsb05_c00001{word-spacing:1.013088pt;}
.ws18ed_c00001{word-spacing:1.015360pt;}
.ws9c_c00001{word-spacing:1.017600pt;}
.ws1143_c00001{word-spacing:1.018944pt;}
.ws15e2_c00001{word-spacing:1.020704pt;}
.wsa62_c00001{word-spacing:1.024000pt;}
.ws137e_c00001{word-spacing:1.024800pt;}
.ws1604_c00001{word-spacing:1.026048pt;}
.ws494_c00001{word-spacing:1.030400pt;}
.ws1250_c00001{word-spacing:1.030656pt;}
.ws4e6_c00001{word-spacing:1.031392pt;}
.ws1655_c00001{word-spacing:1.036736pt;}
.ws100_c00001{word-spacing:1.036800pt;}
.ws731_c00001{word-spacing:1.042080pt;}
.ws113a_c00001{word-spacing:1.042368pt;}
.ws1add_c00001{word-spacing:1.043200pt;}
.ws8ea_c00001{word-spacing:1.047424pt;}
.ws1a5d_c00001{word-spacing:1.049600pt;}
.wsb5e_c00001{word-spacing:1.052768pt;}
.ws300_c00001{word-spacing:1.056000pt;}
.wsd1e_c00001{word-spacing:1.058112pt;}
.wsdab_c00001{word-spacing:1.062400pt;}
.ws732_c00001{word-spacing:1.063456pt;}
.ws779_c00001{word-spacing:1.068800pt;}
.wsc4a_c00001{word-spacing:1.074144pt;}
.ws1aa4_c00001{word-spacing:1.075200pt;}
.wsca2_c00001{word-spacing:1.079488pt;}
.ws192_c00001{word-spacing:1.081600pt;}
.ws170e_c00001{word-spacing:1.084832pt;}
.ws9b6_c00001{word-spacing:1.088000pt;}
.ws5ec_c00001{word-spacing:1.090176pt;}
.wsf01_c00001{word-spacing:1.094400pt;}
.ws4e8_c00001{word-spacing:1.095520pt;}
.ws62a_c00001{word-spacing:1.100800pt;}
.wsbe7_c00001{word-spacing:1.100864pt;}
.ws1645_c00001{word-spacing:1.106208pt;}
.ws9d_c00001{word-spacing:1.107200pt;}
.wsbc4_c00001{word-spacing:1.111552pt;}
.ws2ff_c00001{word-spacing:1.113600pt;}
.ws171a_c00001{word-spacing:1.116896pt;}
.ws941_c00001{word-spacing:1.120000pt;}
.ws619_c00001{word-spacing:1.122240pt;}
.wsc20_c00001{word-spacing:1.126400pt;}
.ws17d9_c00001{word-spacing:1.127584pt;}
.ws286_c00001{word-spacing:1.132800pt;}
.ws176d_c00001{word-spacing:1.132928pt;}
.ws1532_c00001{word-spacing:1.138272pt;}
.ws942_c00001{word-spacing:1.139200pt;}
.ws1533_c00001{word-spacing:1.143616pt;}
.ws729_c00001{word-spacing:1.145600pt;}
.ws1765_c00001{word-spacing:1.148960pt;}
.ws931_c00001{word-spacing:1.152000pt;}
.ws176a_c00001{word-spacing:1.154304pt;}
.wsf30_c00001{word-spacing:1.158400pt;}
.ws171b_c00001{word-spacing:1.159648pt;}
.ws1c3_c00001{word-spacing:1.164800pt;}
.ws1590_c00001{word-spacing:1.164992pt;}
.ws1749_c00001{word-spacing:1.170336pt;}
.ws37_c00001{word-spacing:1.171200pt;}
.ws5eb_c00001{word-spacing:1.175680pt;}
.ws4cd_c00001{word-spacing:1.177600pt;}
.ws5ed_c00001{word-spacing:1.181024pt;}
.ws12d_c00001{word-spacing:1.184000pt;}
.wsbe6_c00001{word-spacing:1.186368pt;}
.ws35_c00001{word-spacing:1.190400pt;}
.ws4e7_c00001{word-spacing:1.191712pt;}
.ws133_c00001{word-spacing:1.196800pt;}
.ws1a34_c00001{word-spacing:1.197056pt;}
.ws16c6_c00001{word-spacing:1.202400pt;}
.ws7b3_c00001{word-spacing:1.203200pt;}
.ws17b1_c00001{word-spacing:1.207744pt;}
.ws81a_c00001{word-spacing:1.209600pt;}
.ws491_c00001{word-spacing:1.216000pt;}
.ws1397_c00001{word-spacing:1.218048pt;}
.ws3e4_c00001{word-spacing:1.222400pt;}
.ws191_c00001{word-spacing:1.228800pt;}
.ws1773_c00001{word-spacing:1.229120pt;}
.ws107a_c00001{word-spacing:1.229760pt;}
.ws283_c00001{word-spacing:1.235200pt;}
.ws133a_c00001{word-spacing:1.235616pt;}
.ws11d1_c00001{word-spacing:1.241472pt;}
.ws154_c00001{word-spacing:1.241600pt;}
.ws4cc_c00001{word-spacing:1.248000pt;}
.ws91c_c00001{word-spacing:1.250496pt;}
.ws12e_c00001{word-spacing:1.254400pt;}
.wsbc5_c00001{word-spacing:1.255840pt;}
.ws282_c00001{word-spacing:1.260800pt;}
.ws17c7_c00001{word-spacing:1.261184pt;}
.ws1036_c00001{word-spacing:1.264896pt;}
.wsd18_c00001{word-spacing:1.266528pt;}
.ws1d_c00001{word-spacing:1.267200pt;}
.ws106b_c00001{word-spacing:1.270752pt;}
.ws595_c00001{word-spacing:1.271872pt;}
.ws62b_c00001{word-spacing:1.273600pt;}
.ws12f7_c00001{word-spacing:1.276608pt;}
.ws4e1_c00001{word-spacing:1.277216pt;}
.ws2dd_c00001{word-spacing:1.280000pt;}
.ws11d0_c00001{word-spacing:1.282464pt;}
.ws2c1_c00001{word-spacing:1.282560pt;}
.ws36_c00001{word-spacing:1.286400pt;}
.ws11c_c00001{word-spacing:1.287904pt;}
.ws106a_c00001{word-spacing:1.288320pt;}
.wsf5f_c00001{word-spacing:1.292800pt;}
.ws768_c00001{word-spacing:1.293248pt;}
.ws134c_c00001{word-spacing:1.294176pt;}
.wscac_c00001{word-spacing:1.298592pt;}
.ws9b_c00001{word-spacing:1.299200pt;}
.wsa96_c00001{word-spacing:1.300032pt;}
.ws61c_c00001{word-spacing:1.303936pt;}
.ws492_c00001{word-spacing:1.305600pt;}
.ws131c_c00001{word-spacing:1.305888pt;}
.ws14d3_c00001{word-spacing:1.309280pt;}
.ws1366_c00001{word-spacing:1.311744pt;}
.wsa1c_c00001{word-spacing:1.312000pt;}
.ws16d1_c00001{word-spacing:1.314624pt;}
.ws1037_c00001{word-spacing:1.317600pt;}
.ws69b_c00001{word-spacing:1.318400pt;}
.ws4bc_c00001{word-spacing:1.319968pt;}
.wscd8_c00001{word-spacing:1.323456pt;}
.ws1453_c00001{word-spacing:1.325312pt;}
.ws1292_c00001{word-spacing:1.329312pt;}
.ws7aa_c00001{word-spacing:1.330656pt;}
.ws160f_c00001{word-spacing:1.336000pt;}
.ws1069_c00001{word-spacing:1.341024pt;}
.ws150d_c00001{word-spacing:1.341344pt;}
.ws6e6_c00001{word-spacing:1.344000pt;}
.ws155e_c00001{word-spacing:1.346688pt;}
.ws122a_c00001{word-spacing:1.346880pt;}
.wsa1b_c00001{word-spacing:1.350400pt;}
.ws61d_c00001{word-spacing:1.352032pt;}
.ws1291_c00001{word-spacing:1.352736pt;}
.ws7a6_c00001{word-spacing:1.357376pt;}
.ws142_c00001{word-spacing:1.362720pt;}
.ws1456_c00001{word-spacing:1.368064pt;}
.ws8a4_c00001{word-spacing:1.369600pt;}
.ws149a_c00001{word-spacing:1.373408pt;}
.ws9a7_c00001{word-spacing:1.378752pt;}
.ws152a_c00001{word-spacing:1.384096pt;}
.wsc55_c00001{word-spacing:1.388800pt;}
.wsca1_c00001{word-spacing:1.389440pt;}
.ws76a_c00001{word-spacing:1.394784pt;}
.ws487_c00001{word-spacing:1.395200pt;}
.ws7a7_c00001{word-spacing:1.400128pt;}
.ws1a82_c00001{word-spacing:1.401600pt;}
.ws16a4_c00001{word-spacing:1.405472pt;}
.wsbc3_c00001{word-spacing:1.410816pt;}
.wsd06_c00001{word-spacing:1.414400pt;}
.ws1734_c00001{word-spacing:1.416160pt;}
.ws1a4c_c00001{word-spacing:1.420800pt;}
.ws1517_c00001{word-spacing:1.421504pt;}
.ws175e_c00001{word-spacing:1.426848pt;}
.ws1a0_c00001{word-spacing:1.427200pt;}
.ws91b_c00001{word-spacing:1.432192pt;}
.ws1ae5_c00001{word-spacing:1.433600pt;}
.ws1539_c00001{word-spacing:1.437536pt;}
.ws5b2_c00001{word-spacing:1.440000pt;}
.ws8ec_c00001{word-spacing:1.442880pt;}
.ws449_c00001{word-spacing:1.446400pt;}
.ws17f3_c00001{word-spacing:1.448224pt;}
.wsdf2_c00001{word-spacing:1.452800pt;}
.wsb66_c00001{word-spacing:1.453568pt;}
.ws8eb_c00001{word-spacing:1.458912pt;}
.wsceb_c00001{word-spacing:1.459200pt;}
.ws16bb_c00001{word-spacing:1.464256pt;}
.ws32_c00001{word-spacing:1.465600pt;}
.ws769_c00001{word-spacing:1.469600pt;}
.ws339_c00001{word-spacing:1.472000pt;}
.wsaa0_c00001{word-spacing:1.474944pt;}
.ws675_c00001{word-spacing:1.478400pt;}
.ws1766_c00001{word-spacing:1.480288pt;}
.ws408_c00001{word-spacing:1.484800pt;}
.wsaa1_c00001{word-spacing:1.485632pt;}
.ws1674_c00001{word-spacing:1.490976pt;}
.ws583_c00001{word-spacing:1.491200pt;}
.ws19d1_c00001{word-spacing:1.496320pt;}
.ws31_c00001{word-spacing:1.497600pt;}
.ws61b_c00001{word-spacing:1.501664pt;}
.ws12f_c00001{word-spacing:1.504000pt;}
.ws18fd_c00001{word-spacing:1.507008pt;}
.ws674_c00001{word-spacing:1.510400pt;}
.ws141_c00001{word-spacing:1.512352pt;}
.ws1ef_c00001{word-spacing:1.516800pt;}
.wsb49_c00001{word-spacing:1.517696pt;}
.ws61a_c00001{word-spacing:1.523040pt;}
.ws228_c00001{word-spacing:1.523200pt;}
.ws1631_c00001{word-spacing:1.528384pt;}
.ws15b_c00001{word-spacing:1.529600pt;}
.ws1c_c00001{word-spacing:1.536000pt;}
.ws3a0_c00001{word-spacing:1.542400pt;}
.ws173f_c00001{word-spacing:1.544416pt;}
.ws50_c00001{word-spacing:1.548800pt;}
.ws9f_c00001{word-spacing:1.555200pt;}
.ws1528_c00001{word-spacing:1.560448pt;}
.ws161_c00001{word-spacing:1.561600pt;}
.ws338_c00001{word-spacing:1.568000pt;}
.ws18a0_c00001{word-spacing:1.571136pt;}
.ws1ee_c00001{word-spacing:1.574400pt;}
.ws1426_c00001{word-spacing:1.576480pt;}
.ws3fa_c00001{word-spacing:1.580800pt;}
.ws4df_c00001{word-spacing:1.581824pt;}
.ws133f_c00001{word-spacing:1.586976pt;}
.ws1fd_c00001{word-spacing:1.587168pt;}
.ws6_c00001{word-spacing:1.587200pt;}
.wsafe_c00001{word-spacing:1.592512pt;}
.ws121f_c00001{word-spacing:1.592832pt;}
.ws44a_c00001{word-spacing:1.593600pt;}
.ws140_c00001{word-spacing:1.597856pt;}
.ws11e9_c00001{word-spacing:1.598688pt;}
.ws778_c00001{word-spacing:1.600000pt;}
.ws235_c00001{word-spacing:1.603200pt;}
.wsfaf_c00001{word-spacing:1.604544pt;}
.ws40d_c00001{word-spacing:1.606400pt;}
.ws617_c00001{word-spacing:1.608544pt;}
.ws133e_c00001{word-spacing:1.610400pt;}
.ws7_c00001{word-spacing:1.612800pt;}
.ws13f_c00001{word-spacing:1.613888pt;}
.ws892_c00001{word-spacing:1.616256pt;}
.ws163_c00001{word-spacing:1.619200pt;}
.ws948_c00001{word-spacing:1.619232pt;}
.wsbf5_c00001{word-spacing:1.622112pt;}
.ws2c4_c00001{word-spacing:1.624576pt;}
.ws390_c00001{word-spacing:1.625600pt;}
.ws893_c00001{word-spacing:1.627968pt;}
.ws11a_c00001{word-spacing:1.629920pt;}
.wsd05_c00001{word-spacing:1.632000pt;}
.ws42c_c00001{word-spacing:1.633824pt;}
.ws118_c00001{word-spacing:1.635264pt;}
.ws130_c00001{word-spacing:1.638400pt;}
.wsfb0_c00001{word-spacing:1.639680pt;}
.ws1616_c00001{word-spacing:1.640608pt;}
.wsc60_c00001{word-spacing:1.644800pt;}
.ws42d_c00001{word-spacing:1.645536pt;}
.ws15fb_c00001{word-spacing:1.645952pt;}
.ws1665_c00001{word-spacing:1.651296pt;}
.wsfae_c00001{word-spacing:1.651392pt;}
.ws1545_c00001{word-spacing:1.656640pt;}
.wsffe_c00001{word-spacing:1.657248pt;}
.wsed9_c00001{word-spacing:1.657600pt;}
.ws1610_c00001{word-spacing:1.661984pt;}
.wsbf1_c00001{word-spacing:1.663104pt;}
.wsdc8_c00001{word-spacing:1.664000pt;}
.wsabf_c00001{word-spacing:1.667328pt;}
.ws1068_c00001{word-spacing:1.668960pt;}
.wse8f_c00001{word-spacing:1.670400pt;}
.ws7ab_c00001{word-spacing:1.672672pt;}
.ws5cc_c00001{word-spacing:1.673088pt;}
.ws113e_c00001{word-spacing:1.674816pt;}
.ws763_c00001{word-spacing:1.676800pt;}
.ws14c6_c00001{word-spacing:1.678016pt;}
.ws229_c00001{word-spacing:1.683200pt;}
.wsb21_c00001{word-spacing:1.683360pt;}
.wsac0_c00001{word-spacing:1.688704pt;}
.ws3e2_c00001{word-spacing:1.689600pt;}
.wsaff_c00001{word-spacing:1.694048pt;}
.wsb2c_c00001{word-spacing:1.696000pt;}
.ws172f_c00001{word-spacing:1.699392pt;}
.ws88a_c00001{word-spacing:1.702400pt;}
.ws1732_c00001{word-spacing:1.704736pt;}
.ws8fd_c00001{word-spacing:1.710080pt;}
.wsde6_c00001{word-spacing:1.715200pt;}
.ws119_c00001{word-spacing:1.715424pt;}
.ws18fc_c00001{word-spacing:1.720768pt;}
.ws197_c00001{word-spacing:1.721600pt;}
.ws16ff_c00001{word-spacing:1.726112pt;}
.ws86e_c00001{word-spacing:1.728000pt;}
.wsa40_c00001{word-spacing:1.731456pt;}
.ws66_c00001{word-spacing:1.734400pt;}
.ws14c9_c00001{word-spacing:1.736800pt;}
.ws531_c00001{word-spacing:1.740800pt;}
.ws14c3_c00001{word-spacing:1.742144pt;}
.ws73d_c00001{word-spacing:1.747200pt;}
.ws8fc_c00001{word-spacing:1.747488pt;}
.wsb48_c00001{word-spacing:1.752832pt;}
.ws2dc_c00001{word-spacing:1.753600pt;}
.ws1472_c00001{word-spacing:1.758176pt;}
.ws3e3_c00001{word-spacing:1.760000pt;}
.ws14cd_c00001{word-spacing:1.763520pt;}
.wsdbf_c00001{word-spacing:1.766400pt;}
.ws1598_c00001{word-spacing:1.768864pt;}
.wsd28_c00001{word-spacing:1.772800pt;}
.ws158f_c00001{word-spacing:1.774208pt;}
.wsd57_c00001{word-spacing:1.779200pt;}
.ws1525_c00001{word-spacing:1.779552pt;}
.ws1681_c00001{word-spacing:1.784896pt;}
.ws66f_c00001{word-spacing:1.785600pt;}
.ws12ee_c00001{word-spacing:1.786080pt;}
.ws175a_c00001{word-spacing:1.790240pt;}
.ws6bd_c00001{word-spacing:1.792000pt;}
.ws174b_c00001{word-spacing:1.795584pt;}
.ws2e6_c00001{word-spacing:1.798400pt;}
.ws1682_c00001{word-spacing:1.800928pt;}
.ws3e1_c00001{word-spacing:1.804800pt;}
.ws952_c00001{word-spacing:1.806272pt;}
.ws800_c00001{word-spacing:1.811200pt;}
.ws178e_c00001{word-spacing:1.811616pt;}
.ws1592_c00001{word-spacing:1.816960pt;}
.ws4fb_c00001{word-spacing:1.817600pt;}
.ws185f_c00001{word-spacing:1.822304pt;}
.wsbdd_c00001{word-spacing:1.824000pt;}
.ws190d_c00001{word-spacing:1.827648pt;}
.ws2e7_c00001{word-spacing:1.830400pt;}
.ws4e0_c00001{word-spacing:1.832992pt;}
.ws193_c00001{word-spacing:1.836800pt;}
.ws18e8_c00001{word-spacing:1.838336pt;}
.ws570_c00001{word-spacing:1.843200pt;}
.ws17e5_c00001{word-spacing:1.843680pt;}
.ws65_c00001{word-spacing:1.849600pt;}
.ws52a_c00001{word-spacing:1.856000pt;}
.ws81b_c00001{word-spacing:1.862400pt;}
.ws4c8_c00001{word-spacing:1.868800pt;}
.ws18b0_c00001{word-spacing:1.870400pt;}
.ws12ef_c00001{word-spacing:1.873920pt;}
.ws6e5_c00001{word-spacing:1.875200pt;}
.wsb65_c00001{word-spacing:1.875744pt;}
.ws1372_c00001{word-spacing:1.879776pt;}
.ws5ff_c00001{word-spacing:1.881600pt;}
.ws6f3_c00001{word-spacing:1.886432pt;}
.ws73c_c00001{word-spacing:1.888000pt;}
.ws195_c00001{word-spacing:1.894400pt;}
.wsb0d_c00001{word-spacing:1.897120pt;}
.ws132f_c00001{word-spacing:1.897344pt;}
.ws3f1_c00001{word-spacing:1.900800pt;}
.ws1538_c00001{word-spacing:1.902464pt;}
.ws58b_c00001{word-spacing:1.907200pt;}
.ws9e8_c00001{word-spacing:1.907808pt;}
.ws1387_c00001{word-spacing:1.909056pt;}
.wscf0_c00001{word-spacing:1.913152pt;}
.ws198_c00001{word-spacing:1.913600pt;}
.ws32c_c00001{word-spacing:1.918496pt;}
.ws194_c00001{word-spacing:1.920000pt;}
.wsaab_c00001{word-spacing:1.920768pt;}
.ws7da_c00001{word-spacing:1.923840pt;}
.ws532_c00001{word-spacing:1.926400pt;}
.ws132e_c00001{word-spacing:1.926624pt;}
.ws8b7_c00001{word-spacing:1.929184pt;}
.ws130f_c00001{word-spacing:1.932480pt;}
.ws196_c00001{word-spacing:1.932800pt;}
.ws979_c00001{word-spacing:1.934528pt;}
.ws1371_c00001{word-spacing:1.938336pt;}
.ws4c7_c00001{word-spacing:1.939200pt;}
.ws14ef_c00001{word-spacing:1.939872pt;}
.wsbe0_c00001{word-spacing:1.944192pt;}
.ws15ce_c00001{word-spacing:1.945216pt;}
.ws93c_c00001{word-spacing:1.945600pt;}
.ws1140_c00001{word-spacing:1.950048pt;}
.ws1521_c00001{word-spacing:1.950560pt;}
.ws775_c00001{word-spacing:1.952000pt;}
.wsfa7_c00001{word-spacing:1.955904pt;}
.ws776_c00001{word-spacing:1.958400pt;}
.ws199a_c00001{word-spacing:1.961248pt;}
.ws16d_c00001{word-spacing:1.961760pt;}
.ws68b_c00001{word-spacing:1.964800pt;}
.ws1614_c00001{word-spacing:1.966592pt;}
.ws107b_c00001{word-spacing:1.967616pt;}
.ws64_c00001{word-spacing:1.971200pt;}
.ws156c_c00001{word-spacing:1.971936pt;}
.wsab2_c00001{word-spacing:1.973472pt;}
.ws1691_c00001{word-spacing:1.977280pt;}
.wsdf7_c00001{word-spacing:1.977600pt;}
.ws2b9_c00001{word-spacing:1.979328pt;}
.ws156d_c00001{word-spacing:1.982624pt;}
.wse9b_c00001{word-spacing:1.984000pt;}
.wsaaa_c00001{word-spacing:1.985184pt;}
.ws1624_c00001{word-spacing:1.987968pt;}
.wse41_c00001{word-spacing:1.990400pt;}
.wsfa6_c00001{word-spacing:1.991040pt;}
.ws1690_c00001{word-spacing:1.993312pt;}
.ws113f_c00001{word-spacing:1.996896pt;}
.ws6f4_c00001{word-spacing:1.998656pt;}
.wsaac_c00001{word-spacing:2.002752pt;}
.wsd41_c00001{word-spacing:2.004000pt;}
.ws2ec_c00001{word-spacing:2.009344pt;}
.wscf_c00001{word-spacing:2.009600pt;}
.ws646_c00001{word-spacing:2.014688pt;}
.ws383_c00001{word-spacing:2.016000pt;}
.ws1489_c00001{word-spacing:2.020032pt;}
.ws1ac7_c00001{word-spacing:2.022400pt;}
.ws16eb_c00001{word-spacing:2.025376pt;}
.wsa86_c00001{word-spacing:2.028800pt;}
.ws2eb_c00001{word-spacing:2.030720pt;}
.ws1e6_c00001{word-spacing:2.035200pt;}
.ws1579_c00001{word-spacing:2.036064pt;}
.wsd1d_c00001{word-spacing:2.041408pt;}
.ws5be_c00001{word-spacing:2.041600pt;}
.ws1615_c00001{word-spacing:2.046752pt;}
.wsce_c00001{word-spacing:2.048000pt;}
.ws643_c00001{word-spacing:2.052096pt;}
.ws9f1_c00001{word-spacing:2.054400pt;}
.ws645_c00001{word-spacing:2.057440pt;}
.wsb75_c00001{word-spacing:2.060800pt;}
.ws1467_c00001{word-spacing:2.062784pt;}
.ws72c_c00001{word-spacing:2.067200pt;}
.ws1800_c00001{word-spacing:2.068128pt;}
.ws11e8_c00001{word-spacing:2.073024pt;}
.ws920_c00001{word-spacing:2.073472pt;}
.wsa01_c00001{word-spacing:2.073600pt;}
.ws644_c00001{word-spacing:2.078816pt;}
.wsa4b_c00001{word-spacing:2.080000pt;}
.ws9e7_c00001{word-spacing:2.084160pt;}
.wsb0f_c00001{word-spacing:2.086400pt;}
.ws32b_c00001{word-spacing:2.089504pt;}
.ws71e_c00001{word-spacing:2.092800pt;}
.ws17f7_c00001{word-spacing:2.094848pt;}
.ws789_c00001{word-spacing:2.099200pt;}
.ws964_c00001{word-spacing:2.100192pt;}
.ws15ad_c00001{word-spacing:2.105536pt;}
.ws864_c00001{word-spacing:2.105600pt;}
.ws157a_c00001{word-spacing:2.110880pt;}
.ws3ab_c00001{word-spacing:2.112000pt;}
.ws1fc_c00001{word-spacing:2.116224pt;}
.ws74b_c00001{word-spacing:2.118400pt;}
.ws15f2_c00001{word-spacing:2.121568pt;}
.wsd7_c00001{word-spacing:2.124800pt;}
.ws17d6_c00001{word-spacing:2.126912pt;}
.ws3fd_c00001{word-spacing:2.131200pt;}
.wsa79_c00001{word-spacing:2.132256pt;}
.ws826_c00001{word-spacing:2.137600pt;}
.ws1768_c00001{word-spacing:2.142944pt;}
.ws1e4_c00001{word-spacing:2.144000pt;}
.ws1ec_c00001{word-spacing:2.150400pt;}
.wsb96_c00001{word-spacing:2.153632pt;}
.ws177_c00001{word-spacing:2.156800pt;}
.ws16a7_c00001{word-spacing:2.158976pt;}
.ws99_c00001{word-spacing:2.163200pt;}
.ws1738_c00001{word-spacing:2.164320pt;}
.wsd6_c00001{word-spacing:2.169600pt;}
.ws17f6_c00001{word-spacing:2.169664pt;}
.ws1025_c00001{word-spacing:2.172576pt;}
.wsb95_c00001{word-spacing:2.175008pt;}
.ws384_c00001{word-spacing:2.176000pt;}
.wsb94_c00001{word-spacing:2.180352pt;}
.wsf0_c00001{word-spacing:2.182400pt;}
.ws139e_c00001{word-spacing:2.184288pt;}
.ws178d_c00001{word-spacing:2.185696pt;}
.ws3c4_c00001{word-spacing:2.188800pt;}
.ws18d5_c00001{word-spacing:2.191040pt;}
.ws6f0_c00001{word-spacing:2.195200pt;}
.ws57b_c00001{word-spacing:2.196384pt;}
.ws34a_c00001{word-spacing:2.201600pt;}
.ws11d2_c00001{word-spacing:2.201856pt;}
.ws19af_c00001{word-spacing:2.207072pt;}
.ws11b6_c00001{word-spacing:2.207712pt;}
.ws6b6_c00001{word-spacing:2.208000pt;}
.ws15ff_c00001{word-spacing:2.212416pt;}
.ws13a3_c00001{word-spacing:2.213568pt;}
.ws477_c00001{word-spacing:2.214400pt;}
.ws18dc_c00001{word-spacing:2.217760pt;}
.ws9a_c00001{word-spacing:2.220800pt;}
.ws57c_c00001{word-spacing:2.223104pt;}
.ws12de_c00001{word-spacing:2.225280pt;}
.ws1e5_c00001{word-spacing:2.227200pt;}
.ws965_c00001{word-spacing:2.228448pt;}
.ws11cb_c00001{word-spacing:2.231136pt;}
.ws7d4_c00001{word-spacing:2.233600pt;}
.ws6dc_c00001{word-spacing:2.233792pt;}
.ws139f_c00001{word-spacing:2.236992pt;}
.ws157d_c00001{word-spacing:2.239136pt;}
.ws148_c00001{word-spacing:2.240000pt;}
.ws12ec_c00001{word-spacing:2.242848pt;}
.ws977_c00001{word-spacing:2.244480pt;}
.ws5a4_c00001{word-spacing:2.246400pt;}
.ws239_c00001{word-spacing:2.249824pt;}
.ws178_c00001{word-spacing:2.252800pt;}
.ws16e_c00001{word-spacing:2.254560pt;}
.ws8b6_c00001{word-spacing:2.255168pt;}
.ws788_c00001{word-spacing:2.259200pt;}
.ws11b5_c00001{word-spacing:2.260416pt;}
.ws579_c00001{word-spacing:2.260512pt;}
.wsd8_c00001{word-spacing:2.265600pt;}
.ws6dd_c00001{word-spacing:2.265856pt;}
.wsaaf_c00001{word-spacing:2.266272pt;}
.ws715_c00001{word-spacing:2.271200pt;}
.ws110_c00001{word-spacing:2.272000pt;}
.ws10ea_c00001{word-spacing:2.272128pt;}
.wsb4d_c00001{word-spacing:2.276544pt;}
.wsfa5_c00001{word-spacing:2.277984pt;}
.wsc1f_c00001{word-spacing:2.278400pt;}
.ws14c0_c00001{word-spacing:2.281888pt;}
.ws16f_c00001{word-spacing:2.283840pt;}
.wsac9_c00001{word-spacing:2.284800pt;}
.ws74f_c00001{word-spacing:2.287232pt;}
.ws11b2_c00001{word-spacing:2.289696pt;}
.wseb4_c00001{word-spacing:2.291200pt;}
.ws17a5_c00001{word-spacing:2.292576pt;}
.wsaae_c00001{word-spacing:2.295552pt;}
.ws155_c00001{word-spacing:2.297600pt;}
.ws976_c00001{word-spacing:2.297920pt;}
.ws1024_c00001{word-spacing:2.301408pt;}
.ws14c1_c00001{word-spacing:2.303264pt;}
.wsd12_c00001{word-spacing:2.304000pt;}
.ws1177_c00001{word-spacing:2.307264pt;}
.ws765_c00001{word-spacing:2.308608pt;}
.wsd37_c00001{word-spacing:2.313088pt;}
.ws170_c00001{word-spacing:2.313120pt;}
.ws896_c00001{word-spacing:2.313952pt;}
.wsdd6_c00001{word-spacing:2.316800pt;}
.ws766_c00001{word-spacing:2.319296pt;}
.ws14ff_c00001{word-spacing:2.324640pt;}
.ws11b4_c00001{word-spacing:2.324832pt;}
.ws828_c00001{word-spacing:2.329600pt;}
.ws1542_c00001{word-spacing:2.329984pt;}
.ws14b4_c00001{word-spacing:2.335328pt;}
.wsf3f_c00001{word-spacing:2.336000pt;}
.wsaed_c00001{word-spacing:2.340672pt;}
.ws1176_c00001{word-spacing:2.342400pt;}
.ws15cf_c00001{word-spacing:2.346016pt;}
.ws6f1_c00001{word-spacing:2.351360pt;}
.ws1556_c00001{word-spacing:2.356704pt;}
.ws1a6b_c00001{word-spacing:2.361600pt;}
.ws1793_c00001{word-spacing:2.362048pt;}
.ws18be_c00001{word-spacing:2.367392pt;}
.wsdb2_c00001{word-spacing:2.368000pt;}
.ws160b_c00001{word-spacing:2.372736pt;}
.wscdf_c00001{word-spacing:2.374400pt;}
.ws1920_c00001{word-spacing:2.378080pt;}
.wse77_c00001{word-spacing:2.380800pt;}
.wsdb3_c00001{word-spacing:2.387200pt;}
.ws1543_c00001{word-spacing:2.388768pt;}
.ws4a5_c00001{word-spacing:2.393600pt;}
.ws2ce_c00001{word-spacing:2.394112pt;}
.ws9f8_c00001{word-spacing:2.399456pt;}
.ws3e_c00001{word-spacing:2.400000pt;}
.wsb4c_c00001{word-spacing:2.404800pt;}
.wsa23_c00001{word-spacing:2.406400pt;}
.ws17e1_c00001{word-spacing:2.410144pt;}
.wsba5_c00001{word-spacing:2.412800pt;}
.wsd16_c00001{word-spacing:2.415488pt;}
.ws218_c00001{word-spacing:2.419200pt;}
.ws15d0_c00001{word-spacing:2.420832pt;}
.ws219_c00001{word-spacing:2.425600pt;}
.ws74e_c00001{word-spacing:2.426176pt;}
.ws6f2_c00001{word-spacing:2.431520pt;}
.ws2a8_c00001{word-spacing:2.432000pt;}
.wsd17_c00001{word-spacing:2.436864pt;}
.ws9c7_c00001{word-spacing:2.438400pt;}
.ws16c1_c00001{word-spacing:2.442208pt;}
.ws77a_c00001{word-spacing:2.444800pt;}
.ws15f6_c00001{word-spacing:2.447552pt;}
.ws939_c00001{word-spacing:2.451200pt;}
.ws1847_c00001{word-spacing:2.452896pt;}
.ws3c7_c00001{word-spacing:2.457600pt;}
.ws190f_c00001{word-spacing:2.458240pt;}
.ws18f8_c00001{word-spacing:2.463584pt;}
.ws68c_c00001{word-spacing:2.464000pt;}
.ws1756_c00001{word-spacing:2.468928pt;}
.ws40_c00001{word-spacing:2.470400pt;}
.ws1841_c00001{word-spacing:2.474272pt;}
.wsa4e_c00001{word-spacing:2.476800pt;}
.ws1142_c00001{word-spacing:2.477088pt;}
.ws1730_c00001{word-spacing:2.479616pt;}
.ws12e8_c00001{word-spacing:2.482944pt;}
.wscd_c00001{word-spacing:2.483200pt;}
.ws591_c00001{word-spacing:2.489600pt;}
.ws750_c00001{word-spacing:2.490304pt;}
.ws7cc_c00001{word-spacing:2.495648pt;}
.wsd36_c00001{word-spacing:2.496000pt;}
.ws12f0_c00001{word-spacing:2.500512pt;}
.ws609_c00001{word-spacing:2.502400pt;}
.wscc_c00001{word-spacing:2.508800pt;}
.ws978_c00001{word-spacing:2.511680pt;}
.ws217_c00001{word-spacing:2.515200pt;}
.ws121b_c00001{word-spacing:2.518080pt;}
.ws12c_c00001{word-spacing:2.521600pt;}
.ws1898_c00001{word-spacing:2.522368pt;}
.ws937_c00001{word-spacing:2.527712pt;}
.ws156_c00001{word-spacing:2.528000pt;}
.ws1973_c00001{word-spacing:2.533056pt;}
.ws6ff_c00001{word-spacing:2.534400pt;}
.ws1504_c00001{word-spacing:2.538400pt;}
.ws3f_c00001{word-spacing:2.540800pt;}
.ws1123_c00001{word-spacing:2.541504pt;}
.ws568_c00001{word-spacing:2.543744pt;}
.ws71c_c00001{word-spacing:2.547200pt;}
.ws430_c00001{word-spacing:2.547360pt;}
.ws7cb_c00001{word-spacing:2.549088pt;}
.ws1389_c00001{word-spacing:2.553216pt;}
.ws593_c00001{word-spacing:2.553600pt;}
.ws1602_c00001{word-spacing:2.554432pt;}
.ws121a_c00001{word-spacing:2.559072pt;}
.ws14b5_c00001{word-spacing:2.559776pt;}
.ws592_c00001{word-spacing:2.560000pt;}
.ws1330_c00001{word-spacing:2.564928pt;}
.ws2ee_c00001{word-spacing:2.565120pt;}
.ws6ed_c00001{word-spacing:2.566400pt;}
.ws904_c00001{word-spacing:2.570464pt;}
.ws1019_c00001{word-spacing:2.570784pt;}
.ws957_c00001{word-spacing:2.572800pt;}
.ws9a5_c00001{word-spacing:2.575808pt;}
.ws108c_c00001{word-spacing:2.576640pt;}
.ws1dd_c00001{word-spacing:2.579200pt;}
.ws649_c00001{word-spacing:2.581152pt;}
.ws101a_c00001{word-spacing:2.582496pt;}
.ws2a9_c00001{word-spacing:2.585600pt;}
.ws936_c00001{word-spacing:2.586496pt;}
.wsc77_c00001{word-spacing:2.588352pt;}
.ws14e5_c00001{word-spacing:2.591840pt;}
.ws4a4_c00001{word-spacing:2.592000pt;}
.wscc3_c00001{word-spacing:2.594208pt;}
.ws15d2_c00001{word-spacing:2.597184pt;}
.ws1a9a_c00001{word-spacing:2.598400pt;}
.ws431_c00001{word-spacing:2.600064pt;}
.ws16b5_c00001{word-spacing:2.602528pt;}
.ws700_c00001{word-spacing:2.604800pt;}
.ws898_c00001{word-spacing:2.605920pt;}
.ws15c9_c00001{word-spacing:2.607872pt;}
.ws121e_c00001{word-spacing:2.611776pt;}
.ws663_c00001{word-spacing:2.613216pt;}
.ws2e4_c00001{word-spacing:2.617600pt;}
.ws110b_c00001{word-spacing:2.617632pt;}
.ws569_c00001{word-spacing:2.618560pt;}
.wscc4_c00001{word-spacing:2.623488pt;}
.wsc4b_c00001{word-spacing:2.623904pt;}
.ws6cf_c00001{word-spacing:2.624000pt;}
.ws57a_c00001{word-spacing:2.629248pt;}
.ws2b1_c00001{word-spacing:2.629344pt;}
.ws1bc_c00001{word-spacing:2.630400pt;}
.wsd94_c00001{word-spacing:2.633088pt;}
.ws2ed_c00001{word-spacing:2.634592pt;}
.ws6d4_c00001{word-spacing:2.639936pt;}
.ws1141_c00001{word-spacing:2.641056pt;}
.ws5c7_c00001{word-spacing:2.645280pt;}
.ws1018_c00001{word-spacing:2.646912pt;}
.wsc1e_c00001{word-spacing:2.650624pt;}
.ws1092_c00001{word-spacing:2.652768pt;}
.ws1672_c00001{word-spacing:2.655968pt;}
.ws14ee_c00001{word-spacing:2.661312pt;}
.wsd47_c00001{word-spacing:2.666656pt;}
.ws897_c00001{word-spacing:2.672000pt;}
.wsf3e_c00001{word-spacing:2.675200pt;}
.ws1498_c00001{word-spacing:2.677344pt;}
.wse49_c00001{word-spacing:2.681600pt;}
.ws15db_c00001{word-spacing:2.682688pt;}
.ws279_c00001{word-spacing:2.688000pt;}
.ws1798_c00001{word-spacing:2.688032pt;}
.ws525_c00001{word-spacing:2.693376pt;}
.wsbea_c00001{word-spacing:2.694400pt;}
.ws18cd_c00001{word-spacing:2.698720pt;}
.ws88c_c00001{word-spacing:2.700800pt;}
.wsb0b_c00001{word-spacing:2.704064pt;}
.ws7f2_c00001{word-spacing:2.707200pt;}
.ws648_c00001{word-spacing:2.709408pt;}
.ws11b3_c00001{word-spacing:2.711328pt;}
.ws84f_c00001{word-spacing:2.713600pt;}
.ws5f3_c00001{word-spacing:2.714752pt;}
.wse30_c00001{word-spacing:2.720000pt;}
.ws149c_c00001{word-spacing:2.720096pt;}
.ws172d_c00001{word-spacing:2.725440pt;}
.wsea1_c00001{word-spacing:2.726400pt;}
.ws524_c00001{word-spacing:2.730784pt;}
.ws1cc_c00001{word-spacing:2.732800pt;}
.ws5f2_c00001{word-spacing:2.736128pt;}
.ws200_c00001{word-spacing:2.739200pt;}
.ws5f4_c00001{word-spacing:2.741472pt;}
.ws986_c00001{word-spacing:2.745600pt;}
.ws17dd_c00001{word-spacing:2.746816pt;}
.ws653_c00001{word-spacing:2.752000pt;}
.ws2cd_c00001{word-spacing:2.752160pt;}
.ws149d_c00001{word-spacing:2.757504pt;}
.ws18b_c00001{word-spacing:2.758400pt;}
.ws1503_c00001{word-spacing:2.762848pt;}
.ws1ff_c00001{word-spacing:2.764800pt;}
.ws160d_c00001{word-spacing:2.768192pt;}
.wscd3_c00001{word-spacing:2.771200pt;}
.wsc1d_c00001{word-spacing:2.773536pt;}
.ws3a5_c00001{word-spacing:2.777600pt;}
.ws184e_c00001{word-spacing:2.778880pt;}
.ws680_c00001{word-spacing:2.784000pt;}
.wsd46_c00001{word-spacing:2.784224pt;}
.ws143b_c00001{word-spacing:2.789568pt;}
.ws6be_c00001{word-spacing:2.790400pt;}
.ws13a6_c00001{word-spacing:2.793312pt;}
.ws18d_c00001{word-spacing:2.796800pt;}
.ws1475_c00001{word-spacing:2.800256pt;}
.ws26b_c00001{word-spacing:2.803200pt;}
.ws278_c00001{word-spacing:2.809600pt;}
.ws19f8_c00001{word-spacing:2.810944pt;}
.ws1e3_c00001{word-spacing:2.816000pt;}
.ws1952_c00001{word-spacing:2.816288pt;}
.ws19f9_c00001{word-spacing:2.821632pt;}
.ws2be_c00001{word-spacing:2.822400pt;}
.ws661_c00001{word-spacing:2.826976pt;}
.ws201_c00001{word-spacing:2.828800pt;}
.ws1313_c00001{word-spacing:2.834304pt;}
.ws266_c00001{word-spacing:2.835200pt;}
.ws1e2_c00001{word-spacing:2.841600pt;}
.ws164a_c00001{word-spacing:2.843008pt;}
.ws203_c00001{word-spacing:2.848000pt;}
.wsd4c_c00001{word-spacing:2.848352pt;}
.ws18cb_c00001{word-spacing:2.853696pt;}
.ws1cb_c00001{word-spacing:2.854400pt;}
.ws1032_c00001{word-spacing:2.857728pt;}
.ws907_c00001{word-spacing:2.859040pt;}
.ws89_c00001{word-spacing:2.860800pt;}
.wsfc4_c00001{word-spacing:2.863584pt;}
.wsd45_c00001{word-spacing:2.864384pt;}
.ws18c_c00001{word-spacing:2.867200pt;}
.ws714_c00001{word-spacing:2.869728pt;}
.ws268_c00001{word-spacing:2.873600pt;}
.ws1751_c00001{word-spacing:2.875072pt;}
.wsfc3_c00001{word-spacing:2.875296pt;}
.ws120_c00001{word-spacing:2.880000pt;}
.ws14dc_c00001{word-spacing:2.880416pt;}
.wsb1_c00001{word-spacing:2.881152pt;}
.ws647_c00001{word-spacing:2.885760pt;}
.ws6c0_c00001{word-spacing:2.886400pt;}
.ws2ae_c00001{word-spacing:2.887008pt;}
.ws2d0_c00001{word-spacing:2.891104pt;}
.ws1bd_c00001{word-spacing:2.892800pt;}
.ws1108_c00001{word-spacing:2.892864pt;}
.ws908_c00001{word-spacing:2.896448pt;}
.wsb0_c00001{word-spacing:2.898720pt;}
.ws202_c00001{word-spacing:2.899200pt;}
.ws5c6_c00001{word-spacing:2.901792pt;}
.ws1110_c00001{word-spacing:2.904576pt;}
.ws6bf_c00001{word-spacing:2.905600pt;}
.ws1499_c00001{word-spacing:2.907136pt;}
.wsc7a_c00001{word-spacing:2.910432pt;}
.ws2bf_c00001{word-spacing:2.912000pt;}
.ws1561_c00001{word-spacing:2.912480pt;}
.wsc33_c00001{word-spacing:2.916288pt;}
.ws660_c00001{word-spacing:2.917824pt;}
.wse78_c00001{word-spacing:2.918400pt;}
.ws10f5_c00001{word-spacing:2.922144pt;}
.ws18b1_c00001{word-spacing:2.923168pt;}
.ws1e7_c00001{word-spacing:2.924800pt;}
.wsa06_c00001{word-spacing:2.928000pt;}
.ws567_c00001{word-spacing:2.928512pt;}
.ws886_c00001{word-spacing:2.931200pt;}
.ws1224_c00001{word-spacing:2.933856pt;}
.ws52f_c00001{word-spacing:2.937600pt;}
.ws1666_c00001{word-spacing:2.939200pt;}
.ws1121_c00001{word-spacing:2.939712pt;}
.ws267_c00001{word-spacing:2.944000pt;}
.ws1605_c00001{word-spacing:2.944544pt;}
.ws113c_c00001{word-spacing:2.945568pt;}
.ws14c4_c00001{word-spacing:2.949888pt;}
.ws469_c00001{word-spacing:2.950400pt;}
.wsb6d_c00001{word-spacing:2.953088pt;}
.ws1609_c00001{word-spacing:2.955232pt;}
.wscaf_c00001{word-spacing:2.957280pt;}
.ws5c8_c00001{word-spacing:2.960576pt;}
.wsd1c_c00001{word-spacing:2.965920pt;}
.ws113b_c00001{word-spacing:2.968992pt;}
.ws1656_c00001{word-spacing:2.971264pt;}
.ws1ab5_c00001{word-spacing:2.976000pt;}
.ws172c_c00001{word-spacing:2.976608pt;}
.ws662_c00001{word-spacing:2.981952pt;}
.wsee5_c00001{word-spacing:2.982400pt;}
.ws36f_c00001{word-spacing:2.987296pt;}
.ws713_c00001{word-spacing:2.992640pt;}
.ws7c0_c00001{word-spacing:2.995200pt;}
.ws370_c00001{word-spacing:2.997984pt;}
.ws7c9_c00001{word-spacing:3.003328pt;}
.ws1441_c00001{word-spacing:3.008672pt;}
.wsb22_c00001{word-spacing:3.014016pt;}
.ws160a_c00001{word-spacing:3.019360pt;}
.ws1ed_c00001{word-spacing:3.020800pt;}
.ws18ae_c00001{word-spacing:3.024704pt;}
.ws8d7_c00001{word-spacing:3.027200pt;}
.ws7c6_c00001{word-spacing:3.030048pt;}
.ws90f_c00001{word-spacing:3.033600pt;}
.ws65f_c00001{word-spacing:3.035392pt;}
.ws876_c00001{word-spacing:3.040000pt;}
.ws262_c00001{word-spacing:3.040736pt;}
.ws16c7_c00001{word-spacing:3.046080pt;}
.ws857_c00001{word-spacing:3.046400pt;}
.ws906_c00001{word-spacing:3.051424pt;}
.ws99d_c00001{word-spacing:3.052800pt;}
.ws621_c00001{word-spacing:3.056768pt;}
.wsb89_c00001{word-spacing:3.059200pt;}
.ws1562_c00001{word-spacing:3.062112pt;}
.ws1e8_c00001{word-spacing:3.065600pt;}
.ws1552_c00001{word-spacing:3.067456pt;}
.ws19c_c00001{word-spacing:3.072000pt;}
.wsd9b_c00001{word-spacing:3.072800pt;}
.ws15b5_c00001{word-spacing:3.078144pt;}
.ws115_c00001{word-spacing:3.078400pt;}
.ws15fe_c00001{word-spacing:3.083488pt;}
.wsb1d_c00001{word-spacing:3.084800pt;}
.ws16e1_c00001{word-spacing:3.088832pt;}
.ws30f_c00001{word-spacing:3.091200pt;}
.ws14a1_c00001{word-spacing:3.094176pt;}
.ws1d2_c00001{word-spacing:3.097600pt;}
.ws1046_c00001{word-spacing:3.097824pt;}
.ws1840_c00001{word-spacing:3.099520pt;}
.ws44d_c00001{word-spacing:3.104000pt;}
.ws192c_c00001{word-spacing:3.104864pt;}
.ws15b6_c00001{word-spacing:3.110208pt;}
.ws434_c00001{word-spacing:3.110400pt;}
.ws9c0_c00001{word-spacing:3.115552pt;}
.ws29f_c00001{word-spacing:3.116800pt;}
.ws177e_c00001{word-spacing:3.120896pt;}
.ws116_c00001{word-spacing:3.123200pt;}
.wsc16_c00001{word-spacing:3.126240pt;}
.ws19b_c00001{word-spacing:3.129600pt;}
.ws2a0_c00001{word-spacing:3.136000pt;}
.ws1314_c00001{word-spacing:3.138816pt;}
.ws536_c00001{word-spacing:3.142400pt;}
.ws1022_c00001{word-spacing:3.144672pt;}
.ws511_c00001{word-spacing:3.148800pt;}
.ws137f_c00001{word-spacing:3.150528pt;}
.ws37b_c00001{word-spacing:3.155200pt;}
.ws1080_c00001{word-spacing:3.156384pt;}
.ws15dc_c00001{word-spacing:3.158304pt;}
.ws117_c00001{word-spacing:3.161600pt;}
.ws115e_c00001{word-spacing:3.162240pt;}
.ws1649_c00001{word-spacing:3.163648pt;}
.ws5b8_c00001{word-spacing:3.168000pt;}
.ws18b5_c00001{word-spacing:3.168992pt;}
.ws1573_c00001{word-spacing:3.174336pt;}
.ws18a_c00001{word-spacing:3.174400pt;}
.ws1685_c00001{word-spacing:3.179680pt;}
.ws12fc_c00001{word-spacing:3.179808pt;}
.ws310_c00001{word-spacing:3.180800pt;}
.ws183d_c00001{word-spacing:3.185024pt;}
.ws1315_c00001{word-spacing:3.185664pt;}
.ws44c_c00001{word-spacing:3.187200pt;}
.ws14cc_c00001{word-spacing:3.190368pt;}
.ws139d_c00001{word-spacing:3.191520pt;}
.ws1d1_c00001{word-spacing:3.193600pt;}
.ws156a_c00001{word-spacing:3.195712pt;}
.ws11ec_c00001{word-spacing:3.197376pt;}
.ws79f_c00001{word-spacing:3.200000pt;}
.ws752_c00001{word-spacing:3.201056pt;}
.ws1089_c00001{word-spacing:3.203232pt;}
.ws540_c00001{word-spacing:3.206400pt;}
.ws125d_c00001{word-spacing:3.209088pt;}
.ws63c_c00001{word-spacing:3.211744pt;}
.ws114_c00001{word-spacing:3.212800pt;}
.ws1029_c00001{word-spacing:3.214944pt;}
.ws922_c00001{word-spacing:3.217088pt;}
.ws1e9_c00001{word-spacing:3.219200pt;}
.ws11eb_c00001{word-spacing:3.220800pt;}
.ws1512_c00001{word-spacing:3.222432pt;}
.ws4b0_c00001{word-spacing:3.225600pt;}
.wsb2_c00001{word-spacing:3.226656pt;}
.ws1506_c00001{word-spacing:3.227776pt;}
.ws19d_c00001{word-spacing:3.232000pt;}
.wsc11_c00001{word-spacing:3.232512pt;}
.ws173e_c00001{word-spacing:3.233120pt;}
.ws2b2_c00001{word-spacing:3.238368pt;}
.wsefc_c00001{word-spacing:3.238400pt;}
.ws1554_c00001{word-spacing:3.238464pt;}
.ws1440_c00001{word-spacing:3.243808pt;}
.ws1021_c00001{word-spacing:3.244224pt;}
.ws162f_c00001{word-spacing:3.249152pt;}
.ws2b6_c00001{word-spacing:3.250080pt;}
.wsae8_c00001{word-spacing:3.251200pt;}
.wsb23_c00001{word-spacing:3.254496pt;}
.ws1174_c00001{word-spacing:3.255936pt;}
.ws1a93_c00001{word-spacing:3.257600pt;}
.ws14c2_c00001{word-spacing:3.259840pt;}
.ws102f_c00001{word-spacing:3.261792pt;}
.ws4b1_c00001{word-spacing:3.264000pt;}
.ws1617_c00001{word-spacing:3.265184pt;}
.wscc2_c00001{word-spacing:3.267648pt;}
.ws9ff_c00001{word-spacing:3.270400pt;}
.ws14f7_c00001{word-spacing:3.270528pt;}
.wsb02_c00001{word-spacing:3.273088pt;}
.ws14eb_c00001{word-spacing:3.275872pt;}
.ws9d0_c00001{word-spacing:3.281216pt;}
.wsb1a_c00001{word-spacing:3.283200pt;}
.ws15dd_c00001{word-spacing:3.286560pt;}
.ws8b8_c00001{word-spacing:3.291904pt;}
.ws1a4f_c00001{word-spacing:3.296000pt;}
.ws6d_c00001{word-spacing:3.297248pt;}
.ws9cf_c00001{word-spacing:3.302592pt;}
.ws15c2_c00001{word-spacing:3.307936pt;}
.wsd58_c00001{word-spacing:3.308800pt;}
.ws6c_c00001{word-spacing:3.313280pt;}
.wsef1_c00001{word-spacing:3.315200pt;}
.ws16f4_c00001{word-spacing:3.318624pt;}
.ws63b_c00001{word-spacing:3.323968pt;}
.ws9a1_c00001{word-spacing:3.329312pt;}
.ws8ad_c00001{word-spacing:3.334400pt;}
.ws1801_c00001{word-spacing:3.334656pt;}
.ws17f4_c00001{word-spacing:3.340000pt;}
.wsbff_c00001{word-spacing:3.340800pt;}
.ws18a3_c00001{word-spacing:3.345344pt;}
.ws40c_c00001{word-spacing:3.347200pt;}
.ws18f7_c00001{word-spacing:3.350688pt;}
.ws343_c00001{word-spacing:3.353600pt;}
.ws1a17_c00001{word-spacing:3.356032pt;}
.ws5d3_c00001{word-spacing:3.360000pt;}
.ws19f3_c00001{word-spacing:3.361376pt;}
.ws91_c00001{word-spacing:3.366400pt;}
.ws14ec_c00001{word-spacing:3.366720pt;}
.ws17b0_c00001{word-spacing:3.372064pt;}
.ws3bb_c00001{word-spacing:3.372800pt;}
.ws7c8_c00001{word-spacing:3.377408pt;}
.ws689_c00001{word-spacing:3.379200pt;}
.ws63a_c00001{word-spacing:3.382752pt;}
.ws312_c00001{word-spacing:3.385600pt;}
.ws18ec_c00001{word-spacing:3.388096pt;}
.ws688_c00001{word-spacing:3.392000pt;}
.ws16a1_c00001{word-spacing:3.393440pt;}
.ws79b_c00001{word-spacing:3.398400pt;}
.ws7c7_c00001{word-spacing:3.398784pt;}
.ws1646_c00001{word-spacing:3.404128pt;}
.ws22b_c00001{word-spacing:3.404800pt;}
.ws1787_c00001{word-spacing:3.409472pt;}
.ws879_c00001{word-spacing:3.411200pt;}
.ws15c7_c00001{word-spacing:3.414816pt;}
.ws8f_c00001{word-spacing:3.417600pt;}
.ws18e1_c00001{word-spacing:3.420160pt;}
.ws4fa_c00001{word-spacing:3.424000pt;}
.ws2d6_c00001{word-spacing:3.430400pt;}
.ws17cd_c00001{word-spacing:3.430848pt;}
.ws17ed_c00001{word-spacing:3.436192pt;}
.ws5d4_c00001{word-spacing:3.436800pt;}
.ws1852_c00001{word-spacing:3.441536pt;}
.ws4be_c00001{word-spacing:3.443200pt;}
.ws108f_c00001{word-spacing:3.443328pt;}
.wsb1f_c00001{word-spacing:3.446880pt;}
.ws287_c00001{word-spacing:3.449600pt;}
.ws18b6_c00001{word-spacing:3.452224pt;}
.ws2d7_c00001{word-spacing:3.456000pt;}
.ws167b_c00001{word-spacing:3.457568pt;}
.ws79e_c00001{word-spacing:3.462400pt;}
.wsb20_c00001{word-spacing:3.462912pt;}
.ws7d7_c00001{word-spacing:3.468800pt;}
.ws1091_c00001{word-spacing:3.472608pt;}
.ws166_c00001{word-spacing:3.475200pt;}
.ws311_c00001{word-spacing:3.481600pt;}
.ws22c_c00001{word-spacing:3.488000pt;}
.ws1982_c00001{word-spacing:3.489632pt;}
.ws11b1_c00001{word-spacing:3.490176pt;}
.ws22d_c00001{word-spacing:3.494400pt;}
.ws16e2_c00001{word-spacing:3.494976pt;}
.ws1a39_c00001{word-spacing:3.500320pt;}
.ws2db_c00001{word-spacing:3.500800pt;}
.ws12e0_c00001{word-spacing:3.501888pt;}
.ws155f_c00001{word-spacing:3.505664pt;}
.ws20f_c00001{word-spacing:3.507200pt;}
.ws1187_c00001{word-spacing:3.507744pt;}
.ws23c_c00001{word-spacing:3.511008pt;}
.ws90_c00001{word-spacing:3.513600pt;}
.ws618_c00001{word-spacing:3.516352pt;}
.ws103e_c00001{word-spacing:3.519456pt;}
.ws20e_c00001{word-spacing:3.520000pt;}
.ws65d_c00001{word-spacing:3.521696pt;}
.ws131a_c00001{word-spacing:3.525312pt;}
.wsad_c00001{word-spacing:3.526400pt;}
.ws298_c00001{word-spacing:3.527040pt;}
.wsffd_c00001{word-spacing:3.531168pt;}
.ws527_c00001{word-spacing:3.532384pt;}
.wsc57_c00001{word-spacing:3.532800pt;}
.ws12df_c00001{word-spacing:3.537024pt;}
.ws679_c00001{word-spacing:3.537728pt;}
.ws342_c00001{word-spacing:3.539200pt;}
.ws152f_c00001{word-spacing:3.543072pt;}
.ws1400_c00001{word-spacing:3.545088pt;}
.wsa5f_c00001{word-spacing:3.545600pt;}
.ws166e_c00001{word-spacing:3.548416pt;}
.ws12e3_c00001{word-spacing:3.548736pt;}
.wsc88_c00001{word-spacing:3.552000pt;}
.ws154b_c00001{word-spacing:3.553760pt;}
.wsa99_c00001{word-spacing:3.554592pt;}
.ws6c1_c00001{word-spacing:3.558400pt;}
.ws1648_c00001{word-spacing:3.559104pt;}
.wsffc_c00001{word-spacing:3.560448pt;}
.ws963_c00001{word-spacing:3.564448pt;}
.wse4d_c00001{word-spacing:3.564800pt;}
.ws921_c00001{word-spacing:3.569792pt;}
.wsbf4_c00001{word-spacing:3.572160pt;}
.ws19eb_c00001{word-spacing:3.575136pt;}
.wsc97_c00001{word-spacing:3.578016pt;}
.ws1951_c00001{word-spacing:3.580480pt;}
.ws6c3_c00001{word-spacing:3.584000pt;}
.ws1901_c00001{word-spacing:3.585824pt;}
.ws1319_c00001{word-spacing:3.589728pt;}
.ws8a6_c00001{word-spacing:3.590400pt;}
.wsd9d_c00001{word-spacing:3.591168pt;}
.ws528_c00001{word-spacing:3.593088pt;}
.ws108e_c00001{word-spacing:3.595584pt;}
.wsc5b_c00001{word-spacing:3.596512pt;}
.wsa1_c00001{word-spacing:3.596800pt;}
.ws14ab_c00001{word-spacing:3.601856pt;}
.ws1555_c00001{word-spacing:3.607200pt;}
.ws125c_c00001{word-spacing:3.607296pt;}
.ws1a87_c00001{word-spacing:3.609600pt;}
.ws155b_c00001{word-spacing:3.612544pt;}
.wsb47_c00001{word-spacing:3.616000pt;}
.ws1620_c00001{word-spacing:3.617888pt;}
.wsd9f_c00001{word-spacing:3.623232pt;}
.ws8b4_c00001{word-spacing:3.628576pt;}
.ws1630_c00001{word-spacing:3.633920pt;}
.wsa70_c00001{word-spacing:3.635200pt;}
.ws678_c00001{word-spacing:3.639264pt;}
.ws780_c00001{word-spacing:3.641600pt;}
.wsc14_c00001{word-spacing:3.644608pt;}
.ws6c2_c00001{word-spacing:3.648000pt;}
.ws142c_c00001{word-spacing:3.649952pt;}
.ws149b_c00001{word-spacing:3.655296pt;}
.wsc15_c00001{word-spacing:3.660640pt;}
.ws16ca_c00001{word-spacing:3.665984pt;}
.ws137_c00001{word-spacing:3.667200pt;}
.ws1902_c00001{word-spacing:3.671328pt;}
.ws407_c00001{word-spacing:3.673600pt;}
.ws1415_c00001{word-spacing:3.676672pt;}
.ws167_c00001{word-spacing:3.680000pt;}
.ws360_c00001{word-spacing:3.682016pt;}
.ws62c_c00001{word-spacing:3.686400pt;}
.ws162e_c00001{word-spacing:3.687360pt;}
.ws144f_c00001{word-spacing:3.692704pt;}
.wsd9e_c00001{word-spacing:3.698048pt;}
.wsb3a_c00001{word-spacing:3.699200pt;}
.ws1432_c00001{word-spacing:3.703392pt;}
.ws52b_c00001{word-spacing:3.705600pt;}
.ws16fd_c00001{word-spacing:3.708736pt;}
.ws405_c00001{word-spacing:3.712000pt;}
.ws299_c00001{word-spacing:3.714080pt;}
.wsae2_c00001{word-spacing:3.718400pt;}
.ws14de_c00001{word-spacing:3.719424pt;}
.ws361_c00001{word-spacing:3.724768pt;}
.wsa2_c00001{word-spacing:3.724800pt;}
.ws438_c00001{word-spacing:3.731200pt;}
.ws1903_c00001{word-spacing:3.735456pt;}
.ws488_c00001{word-spacing:3.737600pt;}
.ws1789_c00001{word-spacing:3.740800pt;}
.ws348_c00001{word-spacing:3.744000pt;}
.ws14df_c00001{word-spacing:3.746144pt;}
.ws637_c00001{word-spacing:3.750400pt;}
.ws1826_c00001{word-spacing:3.751488pt;}
.ws78d_c00001{word-spacing:3.756800pt;}
.ws14d6_c00001{word-spacing:3.756832pt;}
.ws3fb_c00001{word-spacing:3.763200pt;}
.ws452_c00001{word-spacing:3.769600pt;}
.ws406_c00001{word-spacing:3.776000pt;}
.ws3fc_c00001{word-spacing:3.782400pt;}
.ws18e7_c00001{word-spacing:3.783552pt;}
.ws437_c00001{word-spacing:3.788800pt;}
.wsc98_c00001{word-spacing:3.788832pt;}
.wsc37_c00001{word-spacing:3.794240pt;}
.ws347_c00001{word-spacing:3.795200pt;}
.ws1a1f_c00001{word-spacing:3.799584pt;}
.ws3b7_c00001{word-spacing:3.801600pt;}
.ws377_c00001{word-spacing:3.808000pt;}
.ws1761_c00001{word-spacing:3.810272pt;}
.ws11a2_c00001{word-spacing:3.812256pt;}
.ws270_c00001{word-spacing:3.814400pt;}
.ws1929_c00001{word-spacing:3.815616pt;}
.wsa3_c00001{word-spacing:3.820800pt;}
.ws148f_c00001{word-spacing:3.820960pt;}
.ws1175_c00001{word-spacing:3.823968pt;}
.ws1877_c00001{word-spacing:3.826304pt;}
.ws658_c00001{word-spacing:3.827200pt;}
.ws1157_c00001{word-spacing:3.829824pt;}
.ws1797_c00001{word-spacing:3.831648pt;}
.ws21b_c00001{word-spacing:3.833600pt;}
.ws1197_c00001{word-spacing:3.835680pt;}
.ws2c0_c00001{word-spacing:3.836992pt;}
.ws382_c00001{word-spacing:3.840000pt;}
.ws10ae_c00001{word-spacing:3.841536pt;}
.ws144e_c00001{word-spacing:3.842336pt;}
.ws7ee_c00001{word-spacing:3.846400pt;}
.wsf91_c00001{word-spacing:3.847392pt;}
.wsc36_c00001{word-spacing:3.847680pt;}
.ws8f7_c00001{word-spacing:3.852800pt;}
.ws8dd_c00001{word-spacing:3.853024pt;}
.ws42b_c00001{word-spacing:3.853248pt;}
.ws15cd_c00001{word-spacing:3.858368pt;}
.wsf90_c00001{word-spacing:3.859104pt;}
.wsb1e_c00001{word-spacing:3.859200pt;}
.ws1490_c00001{word-spacing:3.863712pt;}
.ws10af_c00001{word-spacing:3.864960pt;}
.ws451_c00001{word-spacing:3.865600pt;}
.ws1781_c00001{word-spacing:3.869056pt;}
.ws42a_c00001{word-spacing:3.870816pt;}
.ws518_c00001{word-spacing:3.872000pt;}
.ws158c_c00001{word-spacing:3.874400pt;}
.ws102b_c00001{word-spacing:3.876672pt;}
.ws983_c00001{word-spacing:3.878400pt;}
.ws923_c00001{word-spacing:3.879744pt;}
.ws1228_c00001{word-spacing:3.882528pt;}
.ws349_c00001{word-spacing:3.884800pt;}
.ws1623_c00001{word-spacing:3.885088pt;}
.ws116a_c00001{word-spacing:3.888384pt;}
.ws142d_c00001{word-spacing:3.890432pt;}
.ws271_c00001{word-spacing:3.891200pt;}
.ws1072_c00001{word-spacing:3.894240pt;}
.ws36b_c00001{word-spacing:3.895776pt;}
.ws967_c00001{word-spacing:3.900096pt;}
.ws1776_c00001{word-spacing:3.901120pt;}
.wsbfd_c00001{word-spacing:3.904000pt;}
.ws891_c00001{word-spacing:3.905952pt;}
.ws6a6_c00001{word-spacing:3.906464pt;}
.wsce8_c00001{word-spacing:3.911808pt;}
.wse34_c00001{word-spacing:3.916800pt;}
.ws155d_c00001{word-spacing:3.917152pt;}
.wsc02_c00001{word-spacing:3.922496pt;}
.wsbec_c00001{word-spacing:3.923200pt;}
.ws36a_c00001{word-spacing:3.927840pt;}
.wsf4b_c00001{word-spacing:3.929600pt;}
.wsc4c_c00001{word-spacing:3.933184pt;}
.wsa0c_c00001{word-spacing:3.935232pt;}
.wsa17_c00001{word-spacing:3.936000pt;}
.ws6a7_c00001{word-spacing:3.938528pt;}
.ws1a59_c00001{word-spacing:3.942400pt;}
.ws18af_c00001{word-spacing:3.943872pt;}
.ws14fc_c00001{word-spacing:3.949216pt;}
.ws1071_c00001{word-spacing:3.952800pt;}
.ws36c_c00001{word-spacing:3.954560pt;}
.ws8cf_c00001{word-spacing:3.955200pt;}
.ws15e7_c00001{word-spacing:3.959904pt;}
.ws1733_c00001{word-spacing:3.965248pt;}
.wsad3_c00001{word-spacing:3.968000pt;}
.ws14e8_c00001{word-spacing:3.970592pt;}
.ws770_c00001{word-spacing:3.974400pt;}
.ws1832_c00001{word-spacing:3.975936pt;}
.wse60_c00001{word-spacing:3.980800pt;}
.ws1570_c00001{word-spacing:3.986624pt;}
.ws57_c00001{word-spacing:3.987200pt;}
.ws1510_c00001{word-spacing:3.991968pt;}
.wse58_c00001{word-spacing:3.993600pt;}
.ws884_c00001{word-spacing:3.997312pt;}
.ws69a_c00001{word-spacing:4.000000pt;}
.ws1981_c00001{word-spacing:4.002656pt;}
.wse9c_c00001{word-spacing:4.006400pt;}
.ws1668_c00001{word-spacing:4.008000pt;}
.wsa8a_c00001{word-spacing:4.012800pt;}
.ws883_c00001{word-spacing:4.013344pt;}
.ws14ca_c00001{word-spacing:4.018688pt;}
.ws2e3_c00001{word-spacing:4.019200pt;}
.ws184d_c00001{word-spacing:4.024032pt;}
.ws58d_c00001{word-spacing:4.025600pt;}
.wsd30_c00001{word-spacing:4.029376pt;}
.wsc2c_c00001{word-spacing:4.032000pt;}
.ws1516_c00001{word-spacing:4.034720pt;}
.ws168_c00001{word-spacing:4.038400pt;}
.ws1515_c00001{word-spacing:4.040064pt;}
.ws39a_c00001{word-spacing:4.044800pt;}
.wsd2f_c00001{word-spacing:4.045408pt;}
.ws146d_c00001{word-spacing:4.050752pt;}
.ws9ae_c00001{word-spacing:4.051200pt;}
.ws1871_c00001{word-spacing:4.056096pt;}
.ws87c_c00001{word-spacing:4.057600pt;}
.ws11ee_c00001{word-spacing:4.058208pt;}
.ws1679_c00001{word-spacing:4.061440pt;}
.ws10_c00001{word-spacing:4.064000pt;}
.ws144c_c00001{word-spacing:4.066784pt;}
.wse_c00001{word-spacing:4.070400pt;}
.ws17c8_c00001{word-spacing:4.072128pt;}
.wsa9_c00001{word-spacing:4.076800pt;}
.ws7c4_c00001{word-spacing:4.083200pt;}
.ws18bd_c00001{word-spacing:4.088160pt;}
.ws392_c00001{word-spacing:4.089600pt;}
.ws11_c00001{word-spacing:4.096000pt;}
.ws341_c00001{word-spacing:4.102400pt;}
.ws16ce_c00001{word-spacing:4.104192pt;}
.ws1a6_c00001{word-spacing:4.108800pt;}
.wsc80_c00001{word-spacing:4.109536pt;}
.wsfbc_c00001{word-spacing:4.110912pt;}
.ws139_c00001{word-spacing:4.115200pt;}
.ws1023_c00001{word-spacing:4.116768pt;}
.ws5dd_c00001{word-spacing:4.121600pt;}
.ws116c_c00001{word-spacing:4.122624pt;}
.ws15b1_c00001{word-spacing:4.125568pt;}
.ws550_c00001{word-spacing:4.128000pt;}
.ws18bb_c00001{word-spacing:4.130912pt;}
.ws1341_c00001{word-spacing:4.134336pt;}
.ws56_c00001{word-spacing:4.134400pt;}
.ws15e3_c00001{word-spacing:4.136256pt;}
.ws1380_c00001{word-spacing:4.140192pt;}
.ws393_c00001{word-spacing:4.140800pt;}
.ws1492_c00001{word-spacing:4.141600pt;}
.wsfde_c00001{word-spacing:4.146048pt;}
.ws2f2_c00001{word-spacing:4.146944pt;}
.ws84_c00001{word-spacing:4.147200pt;}
.ws1077_c00001{word-spacing:4.151904pt;}
.wsc7f_c00001{word-spacing:4.152288pt;}
.ws13a_c00001{word-spacing:4.153600pt;}
.wsb0e_c00001{word-spacing:4.157632pt;}
.ws112e_c00001{word-spacing:4.157760pt;}
.ws102_c00001{word-spacing:4.160000pt;}
.ws1536_c00001{word-spacing:4.162976pt;}
.wsfd0_c00001{word-spacing:4.163616pt;}
.ws39f_c00001{word-spacing:4.166400pt;}
.ws1476_c00001{word-spacing:4.168320pt;}
.ws100b_c00001{word-spacing:4.169472pt;}
.wsaa_c00001{word-spacing:4.172800pt;}
.ws767_c00001{word-spacing:4.173664pt;}
.wsfad_c00001{word-spacing:4.175328pt;}
.ws1414_c00001{word-spacing:4.179008pt;}
.wsaf4_c00001{word-spacing:4.179200pt;}
.ws100a_c00001{word-spacing:4.181184pt;}
.wsb8_c00001{word-spacing:4.184352pt;}
.wsa8_c00001{word-spacing:4.185600pt;}
.wsfd1_c00001{word-spacing:4.187040pt;}
.ws151e_c00001{word-spacing:4.189696pt;}
.ws861_c00001{word-spacing:4.192000pt;}
.ws1147_c00001{word-spacing:4.192896pt;}
.ws197d_c00001{word-spacing:4.195040pt;}
.ws101_c00001{word-spacing:4.198400pt;}
.wsbe2_c00001{word-spacing:4.198752pt;}
.ws165e_c00001{word-spacing:4.200384pt;}
.wsbe3_c00001{word-spacing:4.204608pt;}
.ws86_c00001{word-spacing:4.204800pt;}
.ws16d0_c00001{word-spacing:4.205728pt;}
.ws899_c00001{word-spacing:4.210464pt;}
.wse33_c00001{word-spacing:4.211200pt;}
.wsfdd_c00001{word-spacing:4.216320pt;}
.ws177c_c00001{word-spacing:4.216416pt;}
.ws85_c00001{word-spacing:4.217600pt;}
.ws151f_c00001{word-spacing:4.221760pt;}
.ws89a_c00001{word-spacing:4.222176pt;}
.wsc45_c00001{word-spacing:4.227104pt;}
.ws11ed_c00001{word-spacing:4.228032pt;}
.ws7ef_c00001{word-spacing:4.230400pt;}
.ws1667_c00001{word-spacing:4.232448pt;}
.ws12eb_c00001{word-spacing:4.233888pt;}
.wsb7_c00001{word-spacing:4.237792pt;}
.ws1349_c00001{word-spacing:4.239744pt;}
.ws1495_c00001{word-spacing:4.243136pt;}
.ws33c_c00001{word-spacing:4.243200pt;}
.ws116b_c00001{word-spacing:4.245600pt;}
.wsc47_c00001{word-spacing:4.248480pt;}
.ws1a8a_c00001{word-spacing:4.249600pt;}
.ws65c_c00001{word-spacing:4.253824pt;}
.ws94b_c00001{word-spacing:4.259168pt;}
.ws16db_c00001{word-spacing:4.264512pt;}
.ws65e_c00001{word-spacing:4.269856pt;}
.ws3c3_c00001{word-spacing:4.275200pt;}
.ws15f7_c00001{word-spacing:4.280544pt;}
.ws88f_c00001{word-spacing:4.281600pt;}
.ws16d3_c00001{word-spacing:4.285888pt;}
.ws143d_c00001{word-spacing:4.291232pt;}
.wsd20_c00001{word-spacing:4.294400pt;}
.ws16d4_c00001{word-spacing:4.296576pt;}
.wsc21_c00001{word-spacing:4.300800pt;}
.wsc46_c00001{word-spacing:4.301920pt;}
.ws4ae_c00001{word-spacing:4.307200pt;}
.ws17b5_c00001{word-spacing:4.307264pt;}
.ws179b_c00001{word-spacing:4.312608pt;}
.ws813_c00001{word-spacing:4.313600pt;}
.ws16fb_c00001{word-spacing:4.317952pt;}
.wsafc_c00001{word-spacing:4.320000pt;}
.ws17b6_c00001{word-spacing:4.323296pt;}
.ws1a81_c00001{word-spacing:4.326400pt;}
.ws16e5_c00001{word-spacing:4.328640pt;}
.wse24_c00001{word-spacing:4.332800pt;}
.ws16fa_c00001{word-spacing:4.333984pt;}
.ws499_c00001{word-spacing:4.339200pt;}
.ws6a8_c00001{word-spacing:4.339328pt;}
.ws1491_c00001{word-spacing:4.344672pt;}
.ws5c2_c00001{word-spacing:4.345600pt;}
.ws94c_c00001{word-spacing:4.350016pt;}
.ws304_c00001{word-spacing:4.352000pt;}
.wsc1a_c00001{word-spacing:4.355360pt;}
.ws85b_c00001{word-spacing:4.358400pt;}
.ws1559_c00001{word-spacing:4.360704pt;}
.ws448_c00001{word-spacing:4.364800pt;}
.ws147f_c00001{word-spacing:4.366048pt;}
.ws3c2_c00001{word-spacing:4.371200pt;}
.wsc1b_c00001{word-spacing:4.371392pt;}
.ws14cb_c00001{word-spacing:4.376736pt;}
.ws4af_c00001{word-spacing:4.377600pt;}
.ws17d2_c00001{word-spacing:4.382080pt;}
.ws4f0_c00001{word-spacing:4.384000pt;}
.ws1740_c00001{word-spacing:4.387424pt;}
.wsa9e_c00001{word-spacing:4.390400pt;}
.ws18bc_c00001{word-spacing:4.392768pt;}
.ws5ba_c00001{word-spacing:4.396800pt;}
.ws19a_c00001{word-spacing:4.403200pt;}
.ws2f1_c00001{word-spacing:4.408800pt;}
.ws33a_c00001{word-spacing:4.409600pt;}
.ws188f_c00001{word-spacing:4.414144pt;}
.ws1352_c00001{word-spacing:4.415424pt;}
.ws92a_c00001{word-spacing:4.416000pt;}
.ws16cd_c00001{word-spacing:4.419488pt;}
.ws12f1_c00001{word-spacing:4.421280pt;}
.ws960_c00001{word-spacing:4.422400pt;}
.ws15bc_c00001{word-spacing:4.424832pt;}
.ws44b_c00001{word-spacing:4.428800pt;}
.ws18b3_c00001{word-spacing:4.430176pt;}
.ws670_c00001{word-spacing:4.435200pt;}
.ws17d3_c00001{word-spacing:4.435520pt;}
.ws12db_c00001{word-spacing:4.438848pt;}
.ws19bf_c00001{word-spacing:4.440864pt;}
.ws207_c00001{word-spacing:4.441600pt;}
.ws10ba_c00001{word-spacing:4.444704pt;}
.ws16dc_c00001{word-spacing:4.446208pt;}
.ws2aa_c00001{word-spacing:4.448000pt;}
.ws1398_c00001{word-spacing:4.450560pt;}
.ws1670_c00001{word-spacing:4.451552pt;}
.ws3ba_c00001{word-spacing:4.454400pt;}
.ws1305_c00001{word-spacing:4.456416pt;}
.ws150a_c00001{word-spacing:4.456896pt;}
.ws447_c00001{word-spacing:4.460800pt;}
.ws1635_c00001{word-spacing:4.462240pt;}
.ws208_c00001{word-spacing:4.467200pt;}
.ws147e_c00001{word-spacing:4.467584pt;}
.ws139b_c00001{word-spacing:4.468128pt;}
.ws1612_c00001{word-spacing:4.472928pt;}
.ws671_c00001{word-spacing:4.473600pt;}
.ws12da_c00001{word-spacing:4.473984pt;}
.ws15d6_c00001{word-spacing:4.478272pt;}
.wsa0b_c00001{word-spacing:4.479840pt;}
.ws498_c00001{word-spacing:4.480000pt;}
.wsc2a_c00001{word-spacing:4.483616pt;}
.ws1050_c00001{word-spacing:4.485696pt;}
.ws199_c00001{word-spacing:4.486400pt;}
.ws8ff_c00001{word-spacing:4.488960pt;}
.ws2b0_c00001{word-spacing:4.491552pt;}
.ws3c1_c00001{word-spacing:4.492800pt;}
.ws145e_c00001{word-spacing:4.494304pt;}
.wsa98_c00001{word-spacing:4.497408pt;}
.ws999_c00001{word-spacing:4.499200pt;}
.ws154e_c00001{word-spacing:4.499648pt;}
.wsab0_c00001{word-spacing:4.503264pt;}
.ws1450_c00001{word-spacing:4.504992pt;}
.wsc3b_c00001{word-spacing:4.505600pt;}
.wsc6f_c00001{word-spacing:4.509120pt;}
.ws1496_c00001{word-spacing:4.510336pt;}
.ws676_c00001{word-spacing:4.512000pt;}
.wsfb4_c00001{word-spacing:4.514976pt;}
.ws17f2_c00001{word-spacing:4.515680pt;}
.ws497_c00001{word-spacing:4.518400pt;}
.ws2af_c00001{word-spacing:4.520832pt;}
.ws8fa_c00001{word-spacing:4.524800pt;}
.ws16b4_c00001{word-spacing:4.526368pt;}
.wsa0a_c00001{word-spacing:4.526688pt;}
.ws33b_c00001{word-spacing:4.531200pt;}
.ws1803_c00001{word-spacing:4.531712pt;}
.wsa97_c00001{word-spacing:4.532544pt;}
.ws67_c00001{word-spacing:4.537056pt;}
.wsa78_c00001{word-spacing:4.537600pt;}
.wscd7_c00001{word-spacing:4.538400pt;}
.ws6db_c00001{word-spacing:4.542400pt;}
.ws1ae6_c00001{word-spacing:4.544000pt;}
.wsab3_c00001{word-spacing:4.544256pt;}
.ws1669_c00001{word-spacing:4.547744pt;}
.ws139a_c00001{word-spacing:4.550112pt;}
.ws14a6_c00001{word-spacing:4.553088pt;}
.ws1377_c00001{word-spacing:4.555968pt;}
.wse13_c00001{word-spacing:4.556800pt;}
.ws15ea_c00001{word-spacing:4.558432pt;}
.wsd0d_c00001{word-spacing:4.563776pt;}
.ws124e_c00001{word-spacing:4.567680pt;}
.ws68_c00001{word-spacing:4.569120pt;}
.ws6d9_c00001{word-spacing:4.574464pt;}
.ws14a5_c00001{word-spacing:4.579808pt;}
.wse66_c00001{word-spacing:4.582400pt;}
.ws1662_c00001{word-spacing:4.585152pt;}
.ws19d2_c00001{word-spacing:4.588800pt;}
.ws1802_c00001{word-spacing:4.590496pt;}
.wse9_c00001{word-spacing:4.595200pt;}
.ws17c9_c00001{word-spacing:4.595840pt;}
.ws1045_c00001{word-spacing:4.596960pt;}
.wsc29_c00001{word-spacing:4.601184pt;}
.wsf50_c00001{word-spacing:4.601600pt;}
.ws17ce_c00001{word-spacing:4.606528pt;}
.ws1760_c00001{word-spacing:4.611872pt;}
.wse65_c00001{word-spacing:4.614400pt;}
.ws199f_c00001{word-spacing:4.617216pt;}
.ws13_c00001{word-spacing:4.620800pt;}
.wsd0c_c00001{word-spacing:4.622560pt;}
.wsbed_c00001{word-spacing:4.627200pt;}
.ws1698_c00001{word-spacing:4.627904pt;}
.ws17c6_c00001{word-spacing:4.633248pt;}
.ws3b6_c00001{word-spacing:4.633600pt;}
.ws1248_c00001{word-spacing:4.637952pt;}
.ws5f1_c00001{word-spacing:4.638592pt;}
.wsacb_c00001{word-spacing:4.640000pt;}
.ws1747_c00001{word-spacing:4.643936pt;}
.wse8_c00001{word-spacing:4.646400pt;}
.ws418_c00001{word-spacing:4.649280pt;}
.ws352_c00001{word-spacing:4.652800pt;}
.ws174e_c00001{word-spacing:4.654624pt;}
.wsc9a_c00001{word-spacing:4.659200pt;}
.ws15b2_c00001{word-spacing:4.659968pt;}
.ws932_c00001{word-spacing:4.665312pt;}
.wsa19_c00001{word-spacing:4.665600pt;}
.ws6da_c00001{word-spacing:4.670656pt;}
.ws656_c00001{word-spacing:4.672000pt;}
.ws16be_c00001{word-spacing:4.676000pt;}
.ws353_c00001{word-spacing:4.678400pt;}
.ws16cf_c00001{word-spacing:4.681344pt;}
.ws12_c00001{word-spacing:4.684800pt;}
.ws23b_c00001{word-spacing:4.686688pt;}
.ws123_c00001{word-spacing:4.691200pt;}
.ws147c_c00001{word-spacing:4.692032pt;}
.ws14e4_c00001{word-spacing:4.697376pt;}
.ws7f5_c00001{word-spacing:4.697600pt;}
.ws14e3_c00001{word-spacing:4.702720pt;}
.ws21c_c00001{word-spacing:4.704000pt;}
.ws417_c00001{word-spacing:4.708064pt;}
.ws82_c00001{word-spacing:4.710400pt;}
.ws1998_c00001{word-spacing:4.713408pt;}
.ws3ea_c00001{word-spacing:4.716800pt;}
.ws401_c00001{word-spacing:4.723200pt;}
.ws18e6_c00001{word-spacing:4.724096pt;}
.ws295_c00001{word-spacing:4.729600pt;}
.ws914_c00001{word-spacing:4.736000pt;}
.ws659_c00001{word-spacing:4.742400pt;}
.ws517_c00001{word-spacing:4.748800pt;}
.ws18ab_c00001{word-spacing:4.750816pt;}
.ws1323_c00001{word-spacing:4.755072pt;}
.ws296_c00001{word-spacing:4.755200pt;}
.ws18e4_c00001{word-spacing:4.756160pt;}
.ws1063_c00001{word-spacing:4.760928pt;}
.wsdf_c00001{word-spacing:4.761600pt;}
.ws1181_c00001{word-spacing:4.766784pt;}
.ws191a_c00001{word-spacing:4.766848pt;}
.ws63_c00001{word-spacing:4.768000pt;}
.ws1634_c00001{word-spacing:4.772192pt;}
.ws4c5_c00001{word-spacing:4.774400pt;}
.ws75_c00001{word-spacing:4.777536pt;}
.ws1103_c00001{word-spacing:4.778496pt;}
.ws124_c00001{word-spacing:4.780800pt;}
.ws1558_c00001{word-spacing:4.782880pt;}
.ws516_c00001{word-spacing:4.787200pt;}
.ws147d_c00001{word-spacing:4.788224pt;}
.ws117f_c00001{word-spacing:4.790208pt;}
.ws17dc_c00001{word-spacing:4.793568pt;}
.ws83_c00001{word-spacing:4.793600pt;}
.ws1261_c00001{word-spacing:4.796064pt;}
.ws15ee_c00001{word-spacing:4.798912pt;}
.wse7_c00001{word-spacing:4.800000pt;}
.ws1180_c00001{word-spacing:4.801920pt;}
.ws1599_c00001{word-spacing:4.804256pt;}
.ws529_c00001{word-spacing:4.806400pt;}
.ws1062_c00001{word-spacing:4.807776pt;}
.wsdd1_c00001{word-spacing:4.809600pt;}
.ws7bf_c00001{word-spacing:4.812800pt;}
.wsb4_c00001{word-spacing:4.813632pt;}
.ws14a9_c00001{word-spacing:4.814944pt;}
.ws7f4_c00001{word-spacing:4.819200pt;}
.ws12f5_c00001{word-spacing:4.819488pt;}
.ws98d_c00001{word-spacing:4.820288pt;}
.ws1102_c00001{word-spacing:4.825344pt;}
.wsd86_c00001{word-spacing:4.825600pt;}
.ws166f_c00001{word-spacing:4.825632pt;}
.ws161d_c00001{word-spacing:4.830976pt;}
.ws1061_c00001{word-spacing:4.831200pt;}
.ws14_c00001{word-spacing:4.832000pt;}
.ws190b_c00001{word-spacing:4.836320pt;}
.wsa0d_c00001{word-spacing:4.837056pt;}
.ws14f4_c00001{word-spacing:4.841664pt;}
.wsfac_c00001{word-spacing:4.842912pt;}
.wsde_c00001{word-spacing:4.844800pt;}
.ws1693_c00001{word-spacing:4.847008pt;}
.ws12e5_c00001{word-spacing:4.848768pt;}
.ws4c6_c00001{word-spacing:4.851200pt;}
.ws14f3_c00001{word-spacing:4.852352pt;}
.ws1260_c00001{word-spacing:4.854624pt;}
.ws56d_c00001{word-spacing:4.857600pt;}
.ws414_c00001{word-spacing:4.857696pt;}
.ws118e_c00001{word-spacing:4.860480pt;}
.ws151d_c00001{word-spacing:4.863040pt;}
.ws10a9_c00001{word-spacing:4.866336pt;}
.ws151c_c00001{word-spacing:4.868384pt;}
.ws19d3_c00001{word-spacing:4.870400pt;}
.ws1373_c00001{word-spacing:4.872192pt;}
.ws1424_c00001{word-spacing:4.873728pt;}
.ws413_c00001{word-spacing:4.879072pt;}
.ws1a8c_c00001{word-spacing:4.883200pt;}
.ws13a5_c00001{word-spacing:4.883904pt;}
.ws16ec_c00001{word-spacing:4.884416pt;}
.ws1abb_c00001{word-spacing:4.889600pt;}
.ws14e2_c00001{word-spacing:4.889760pt;}
.ws1557_c00001{word-spacing:4.895104pt;}
.ws1aa6_c00001{word-spacing:4.896000pt;}
.ws1876_c00001{word-spacing:4.900448pt;}
.ws64a_c00001{word-spacing:4.905792pt;}
.ws1425_c00001{word-spacing:4.911136pt;}
.wsebc_c00001{word-spacing:4.915200pt;}
.ws1677_c00001{word-spacing:4.916480pt;}
.wsd21_c00001{word-spacing:4.921600pt;}
.ws167e_c00001{word-spacing:4.921824pt;}
.ws1451_c00001{word-spacing:4.927168pt;}
.ws748_c00001{word-spacing:4.928000pt;}
.ws18e5_c00001{word-spacing:4.937856pt;}
.wsa34_c00001{word-spacing:4.940800pt;}
.ws16a5_c00001{word-spacing:4.943200pt;}
.ws17cb_c00001{word-spacing:4.948544pt;}
.ws3a2_c00001{word-spacing:4.953600pt;}
.ws16b3_c00001{word-spacing:4.953888pt;}
.wsdc2_c00001{word-spacing:4.959232pt;}
.ws1a5c_c00001{word-spacing:4.960000pt;}
.ws5f0_c00001{word-spacing:4.964576pt;}
.ws6d0_c00001{word-spacing:4.966400pt;}
.ws900_c00001{word-spacing:4.969920pt;}
.ws70c_c00001{word-spacing:4.972800pt;}
.ws1480_c00001{word-spacing:4.975264pt;}
.ws81f_c00001{word-spacing:4.979200pt;}
.ws7a4_c00001{word-spacing:4.980608pt;}
.ws5fe_c00001{word-spacing:4.985600pt;}
.ws14aa_c00001{word-spacing:4.985952pt;}
.wsdc1_c00001{word-spacing:4.991296pt;}
.ws2bd_c00001{word-spacing:4.992000pt;}
.ws17f1_c00001{word-spacing:4.996640pt;}
.ws3f5_c00001{word-spacing:4.998400pt;}
.ws7a5_c00001{word-spacing:5.001984pt;}
.ws4c_c00001{word-spacing:5.004800pt;}
.ws1514_c00001{word-spacing:5.007328pt;}
.ws3a3_c00001{word-spacing:5.011200pt;}
.ws18a9_c00001{word-spacing:5.012672pt;}
.ws6e8_c00001{word-spacing:5.017600pt;}
.ws18aa_c00001{word-spacing:5.018016pt;}
.ws18e2_c00001{word-spacing:5.023360pt;}
.ws802_c00001{word-spacing:5.024000pt;}
.ws1513_c00001{word-spacing:5.028704pt;}
.ws4d_c00001{word-spacing:5.030400pt;}
.ws8fe_c00001{word-spacing:5.034048pt;}
.ws27d_c00001{word-spacing:5.036800pt;}
.ws74_c00001{word-spacing:5.039392pt;}
.ws3d_c00001{word-spacing:5.043200pt;}
.ws1916_c00001{word-spacing:5.044736pt;}
.ws3f4_c00001{word-spacing:5.049600pt;}
.ws1825_c00001{word-spacing:5.055424pt;}
.ws6e7_c00001{word-spacing:5.056000pt;}
.ws51d_c00001{word-spacing:5.062400pt;}
.ws38c_c00001{word-spacing:5.068800pt;}
.ws1300_c00001{word-spacing:5.071296pt;}
.ws333_c00001{word-spacing:5.075200pt;}
.ws19cc_c00001{word-spacing:5.076800pt;}
.ws1301_c00001{word-spacing:5.077152pt;}
.ws3c9_c00001{word-spacing:5.081600pt;}
.ws1878_c00001{word-spacing:5.087488pt;}
.ws38b_c00001{word-spacing:5.088000pt;}
.ws19cb_c00001{word-spacing:5.092832pt;}
.ws6d1_c00001{word-spacing:5.094400pt;}
.ws2bc_c00001{word-spacing:5.100800pt;}
.ws1827_c00001{word-spacing:5.103520pt;}
.ws10b8_c00001{word-spacing:5.106432pt;}
.ws51c_c00001{word-spacing:5.107200pt;}
.ws1711_c00001{word-spacing:5.108864pt;}
.ws10b9_c00001{word-spacing:5.112288pt;}
.ws3bf_c00001{word-spacing:5.113600pt;}
.ws154d_c00001{word-spacing:5.114208pt;}
.wsbb1_c00001{word-spacing:5.118144pt;}
.ws146f_c00001{word-spacing:5.119552pt;}
.ws3a4_c00001{word-spacing:5.120000pt;}
.ws11df_c00001{word-spacing:5.124000pt;}
.ws151a_c00001{word-spacing:5.124896pt;}
.wsa93_c00001{word-spacing:5.126400pt;}
.ws102a_c00001{word-spacing:5.129856pt;}
.ws1459_c00001{word-spacing:5.130240pt;}
.ws87f_c00001{word-spacing:5.132800pt;}
.ws4de_c00001{word-spacing:5.135584pt;}
.ws110c_c00001{word-spacing:5.135712pt;}
.ws27e_c00001{word-spacing:5.139200pt;}
.ws1541_c00001{word-spacing:5.140928pt;}
.ws10b7_c00001{word-spacing:5.141568pt;}
.ws3f6_c00001{word-spacing:5.145600pt;}
.ws1484_c00001{word-spacing:5.146272pt;}
.ws105e_c00001{word-spacing:5.147424pt;}
.ws15b3_c00001{word-spacing:5.151616pt;}
.wsc75_c00001{word-spacing:5.152000pt;}
.ws11e0_c00001{word-spacing:5.153280pt;}
.ws188a_c00001{word-spacing:5.156960pt;}
.wsa1e_c00001{word-spacing:5.158400pt;}
.wsbb0_c00001{word-spacing:5.159136pt;}
.ws16bf_c00001{word-spacing:5.162304pt;}
.wscd4_c00001{word-spacing:5.164992pt;}
.ws19a6_c00001{word-spacing:5.167648pt;}
.wse5c_c00001{word-spacing:5.171200pt;}
.wscca_c00001{word-spacing:5.172992pt;}
.ws1340_c00001{word-spacing:5.176704pt;}
.ws933_c00001{word-spacing:5.178336pt;}
.ws57e_c00001{word-spacing:5.182560pt;}
.ws14e7_c00001{word-spacing:5.183680pt;}
.wsf53_c00001{word-spacing:5.184000pt;}
.wsfab_c00001{word-spacing:5.188416pt;}
.ws1550_c00001{word-spacing:5.189024pt;}
.wse27_c00001{word-spacing:5.190400pt;}
.ws12ca_c00001{word-spacing:5.194272pt;}
.ws14e6_c00001{word-spacing:5.194368pt;}
.wsc43_c00001{word-spacing:5.196800pt;}
.ws961_c00001{word-spacing:5.199712pt;}
.ws1235_c00001{word-spacing:5.200128pt;}
.ws4dc_c00001{word-spacing:5.205056pt;}
.ws57d_c00001{word-spacing:5.205984pt;}
.ws7a8_c00001{word-spacing:5.210400pt;}
.ws4dd_c00001{word-spacing:5.215744pt;}
.ws1790_c00001{word-spacing:5.221088pt;}
.ws165a_c00001{word-spacing:5.226432pt;}
.wsedf_c00001{word-spacing:5.228800pt;}
.ws1757_c00001{word-spacing:5.231776pt;}
.wsad8_c00001{word-spacing:5.235200pt;}
.ws15fd_c00001{word-spacing:5.237120pt;}
.ws1a8d_c00001{word-spacing:5.241600pt;}
.ws1522_c00001{word-spacing:5.242464pt;}
.ws43d_c00001{word-spacing:5.248000pt;}
.ws151b_c00001{word-spacing:5.253152pt;}
.ws6a3_c00001{word-spacing:5.254400pt;}
.ws19e9_c00001{word-spacing:5.258496pt;}
.ws6a2_c00001{word-spacing:5.260800pt;}
.ws1950_c00001{word-spacing:5.263840pt;}
.ws196d_c00001{word-spacing:5.267200pt;}
.ws14f5_c00001{word-spacing:5.269184pt;}
.ws17bd_c00001{word-spacing:5.274528pt;}
.ws16d8_c00001{word-spacing:5.279872pt;}
.ws1509_c00001{word-spacing:5.285216pt;}
.wsaf2_c00001{word-spacing:5.286400pt;}
.wsa45_c00001{word-spacing:5.290560pt;}
.wsab_c00001{word-spacing:5.292800pt;}
.ws1a5a_c00001{word-spacing:5.299200pt;}
.ws14f6_c00001{word-spacing:5.301248pt;}
.wsaf1_c00001{word-spacing:5.305600pt;}
.ws1578_c00001{word-spacing:5.306592pt;}
.ws17d8_c00001{word-spacing:5.311936pt;}
.ws505_c00001{word-spacing:5.312000pt;}
.ws1771_c00001{word-spacing:5.317280pt;}
.wsba6_c00001{word-spacing:5.318400pt;}
.ws4b3_c00001{word-spacing:5.322624pt;}
.wse5_c00001{word-spacing:5.324800pt;}
.ws14b9_c00001{word-spacing:5.327968pt;}
.ws781_c00001{word-spacing:5.331200pt;}
.wsabc_c00001{word-spacing:5.333312pt;}
.ws7e3_c00001{word-spacing:5.337600pt;}
.ws191d_c00001{word-spacing:5.338656pt;}
.ws4a9_c00001{word-spacing:5.344000pt;}
.ws1540_c00001{word-spacing:5.349344pt;}
.wsbdb_c00001{word-spacing:5.350400pt;}
.ws1990_c00001{word-spacing:5.354688pt;}
.wse3_c00001{word-spacing:5.356800pt;}
.ws1853_c00001{word-spacing:5.360032pt;}
.wsac_c00001{word-spacing:5.363200pt;}
.ws1726_c00001{word-spacing:5.365376pt;}
.ws1df_c00001{word-spacing:5.369600pt;}
.ws13b3_c00001{word-spacing:5.369952pt;}
.ws1321_c00001{word-spacing:5.375808pt;}
.wsed_c00001{word-spacing:5.376000pt;}
.ws783_c00001{word-spacing:5.382400pt;}
.ws19e5_c00001{word-spacing:5.386752pt;}
.ws436_c00001{word-spacing:5.388800pt;}
.ws1088_c00001{word-spacing:5.393376pt;}
.ws6b2_c00001{word-spacing:5.395200pt;}
.ws19e6_c00001{word-spacing:5.397440pt;}
.ws3e9_c00001{word-spacing:5.401600pt;}
.ws506_c00001{word-spacing:5.408000pt;}
.ws17bc_c00001{word-spacing:5.408128pt;}
.ws45f_c00001{word-spacing:5.414400pt;}
.ws49e_c00001{word-spacing:5.418816pt;}
.wsa7_c00001{word-spacing:5.420800pt;}
.ws1984_c00001{word-spacing:5.424160pt;}
.wsef_c00001{word-spacing:5.427200pt;}
.ws1293_c00001{word-spacing:5.428512pt;}
.ws17d0_c00001{word-spacing:5.429504pt;}
.ws46d_c00001{word-spacing:5.433600pt;}
.ws1087_c00001{word-spacing:5.434368pt;}
.ws153e_c00001{word-spacing:5.434848pt;}
.ws8d3_c00001{word-spacing:5.440000pt;}
.ws15e8_c00001{word-spacing:5.440192pt;}
.ws1294_c00001{word-spacing:5.440224pt;}
.wsd15_c00001{word-spacing:5.445536pt;}
.wsfff_c00001{word-spacing:5.446080pt;}
.wse4_c00001{word-spacing:5.446400pt;}
.ws2c5_c00001{word-spacing:5.450880pt;}
.ws1189_c00001{word-spacing:5.451936pt;}
.ws55c_c00001{word-spacing:5.452800pt;}
.ws4fd_c00001{word-spacing:5.456224pt;}
.wsf9a_c00001{word-spacing:5.457792pt;}
.ws3e8_c00001{word-spacing:5.459200pt;}
.ws16fc_c00001{word-spacing:5.461568pt;}
.ws10b2_c00001{word-spacing:5.463648pt;}
.ws782_c00001{word-spacing:5.465600pt;}
.ws395_c00001{word-spacing:5.466912pt;}
.ws1130_c00001{word-spacing:5.469504pt;}
.ws870_c00001{word-spacing:5.472000pt;}
.ws1863_c00001{word-spacing:5.472256pt;}
.wsaf_c00001{word-spacing:5.475360pt;}
.ws1493_c00001{word-spacing:5.477600pt;}
.ws3b2_c00001{word-spacing:5.478400pt;}
.ws1188_c00001{word-spacing:5.481216pt;}
.ws198f_c00001{word-spacing:5.482944pt;}
.ws825_c00001{word-spacing:5.484800pt;}
.ws2b8_c00001{word-spacing:5.487072pt;}
.ws1452_c00001{word-spacing:5.488288pt;}
.wsee_c00001{word-spacing:5.491200pt;}
.wsf9b_c00001{word-spacing:5.492928pt;}
.ws18d1_c00001{word-spacing:5.493632pt;}
.ws980_c00001{word-spacing:5.497600pt;}
.ws522_c00001{word-spacing:5.498976pt;}
.wsd79_c00001{word-spacing:5.504000pt;}
.ws1815_c00001{word-spacing:5.504320pt;}
.wsf99_c00001{word-spacing:5.504640pt;}
.ws365_c00001{word-spacing:5.509664pt;}
.ws841_c00001{word-spacing:5.510400pt;}
.wsfe7_c00001{word-spacing:5.510496pt;}
.wsccf_c00001{word-spacing:5.515008pt;}
.wsfe8_c00001{word-spacing:5.516352pt;}
.ws80b_c00001{word-spacing:5.516800pt;}
.ws9e9_c00001{word-spacing:5.520352pt;}
.ws1320_c00001{word-spacing:5.522208pt;}
.ws19d4_c00001{word-spacing:5.523200pt;}
.ws1721_c00001{word-spacing:5.525696pt;}
.ws736_c00001{word-spacing:5.529600pt;}
.ws145f_c00001{word-spacing:5.531040pt;}
.ws8c4_c00001{word-spacing:5.536000pt;}
.ws49d_c00001{word-spacing:5.536384pt;}
.ws12d5_c00001{word-spacing:5.539776pt;}
.ws9ea_c00001{word-spacing:5.541728pt;}
.ws16ad_c00001{word-spacing:5.547072pt;}
.ws1494_c00001{word-spacing:5.552416pt;}
.ws840_c00001{word-spacing:5.555200pt;}
.ws7a9_c00001{word-spacing:5.557760pt;}
.ws8a1_c00001{word-spacing:5.561600pt;}
.ws18ad_c00001{word-spacing:5.563104pt;}
.ws850_c00001{word-spacing:5.568000pt;}
.ws1574_c00001{word-spacing:5.568448pt;}
.ws14fd_c00001{word-spacing:5.573792pt;}
.wsa3b_c00001{word-spacing:5.574400pt;}
.ws1460_c00001{word-spacing:5.579136pt;}
.wsa54_c00001{word-spacing:5.580800pt;}
.ws1764_c00001{word-spacing:5.584480pt;}
.ws7fb_c00001{word-spacing:5.587200pt;}
.ws140f_c00001{word-spacing:5.589824pt;}
.ws14f1_c00001{word-spacing:5.595168pt;}
.ws7c5_c00001{word-spacing:5.600000pt;}
.ws1746_c00001{word-spacing:5.600512pt;}
.ws806_c00001{word-spacing:5.606400pt;}
.ws49f_c00001{word-spacing:5.611200pt;}
.wse3d_c00001{word-spacing:5.612800pt;}
.ws807_c00001{word-spacing:5.619200pt;}
.ws187f_c00001{word-spacing:5.621888pt;}
.ws24b_c00001{word-spacing:5.625600pt;}
.ws1a1b_c00001{word-spacing:5.627232pt;}
.ws4da_c00001{word-spacing:5.632000pt;}
.ws1410_c00001{word-spacing:5.632576pt;}
.ws562_c00001{word-spacing:5.637920pt;}
.wsab8_c00001{word-spacing:5.638400pt;}
.ws1777_c00001{word-spacing:5.643264pt;}
.ws96c_c00001{word-spacing:5.644800pt;}
.ws394_c00001{word-spacing:5.648608pt;}
.ws5bc_c00001{word-spacing:5.651200pt;}
.ws16f3_c00001{word-spacing:5.653952pt;}
.ws294_c00001{word-spacing:5.657600pt;}
.ws15b8_c00001{word-spacing:5.659296pt;}
.ws24d_c00001{word-spacing:5.664000pt;}
.ws563_c00001{word-spacing:5.664640pt;}
.ws12c2_c00001{word-spacing:5.668608pt;}
.wsb6c_c00001{word-spacing:5.669984pt;}
.ws1c8_c00001{word-spacing:5.670400pt;}
.ws2d9_c00001{word-spacing:5.676800pt;}
.ws1a3d_c00001{word-spacing:5.680672pt;}
.ws280_c00001{word-spacing:5.683200pt;}
.ws1905_c00001{word-spacing:5.686016pt;}
.ws7f1_c00001{word-spacing:5.689600pt;}
.ws19ad_c00001{word-spacing:5.691360pt;}
.ws12b6_c00001{word-spacing:5.692032pt;}
.ws27f_c00001{word-spacing:5.696000pt;}
.ws19ac_c00001{word-spacing:5.696704pt;}
.wsb45_c00001{word-spacing:5.702400pt;}
.ws1983_c00001{word-spacing:5.707392pt;}
.ws83d_c00001{word-spacing:5.708800pt;}
.ws133b_c00001{word-spacing:5.709600pt;}
.ws281_c00001{word-spacing:5.715200pt;}
.wsfb2_c00001{word-spacing:5.715456pt;}
.ws8c3_c00001{word-spacing:5.721600pt;}
.ws18f1_c00001{word-spacing:5.723424pt;}
.ws420_c00001{word-spacing:5.728000pt;}
.ws1329_c00001{word-spacing:5.733024pt;}
.ws388_c00001{word-spacing:5.734400pt;}
.ws14b3_c00001{word-spacing:5.739456pt;}
.ws5bb_c00001{word-spacing:5.740800pt;}
.ws1974_c00001{word-spacing:5.744800pt;}
.ws7fc_c00001{word-spacing:5.747200pt;}
.ws4ea_c00001{word-spacing:5.750144pt;}
.ws2d8_c00001{word-spacing:5.753600pt;}
.ws5f9_c00001{word-spacing:5.755488pt;}
.ws1286_c00001{word-spacing:5.756448pt;}
.ws389_c00001{word-spacing:5.760000pt;}
.ws1520_c00001{word-spacing:5.760832pt;}
.ws1167_c00001{word-spacing:5.762304pt;}
.ws14e0_c00001{word-spacing:5.766176pt;}
.ws3e0_c00001{word-spacing:5.766400pt;}
.ws126a_c00001{word-spacing:5.768160pt;}
.ws5ca_c00001{word-spacing:5.771520pt;}
.ws1c7_c00001{word-spacing:5.772800pt;}
.ws1285_c00001{word-spacing:5.774016pt;}
.ws14ac_c00001{word-spacing:5.776864pt;}
.ws7f0_c00001{word-spacing:5.779200pt;}
.ws9ef_c00001{word-spacing:5.779872pt;}
.ws8db_c00001{word-spacing:5.782208pt;}
.ws7d6_c00001{word-spacing:5.785600pt;}
.ws175_c00001{word-spacing:5.785728pt;}
.ws1739_c00001{word-spacing:5.787552pt;}
.ws11af_c00001{word-spacing:5.791584pt;}
.ws93b_c00001{word-spacing:5.792000pt;}
.ws1939_c00001{word-spacing:5.792896pt;}
.ws10f3_c00001{word-spacing:5.797440pt;}
.ws17c0_c00001{word-spacing:5.798240pt;}
.ws1a6e_c00001{word-spacing:5.798400pt;}
.wsfb1_c00001{word-spacing:5.803296pt;}
.ws15e6_c00001{word-spacing:5.803584pt;}
.ws24c_c00001{word-spacing:5.804800pt;}
.ws157e_c00001{word-spacing:5.808928pt;}
.wsfd8_c00001{word-spacing:5.809152pt;}
.ws80a_c00001{word-spacing:5.811200pt;}
.ws1462_c00001{word-spacing:5.814272pt;}
.ws12a9_c00001{word-spacing:5.815008pt;}
.wsce9_c00001{word-spacing:5.817600pt;}
.ws148a_c00001{word-spacing:5.819616pt;}
.ws1166_c00001{word-spacing:5.820864pt;}
.ws1461_c00001{word-spacing:5.824960pt;}
.ws1647_c00001{word-spacing:5.830304pt;}
.ws8a2_c00001{word-spacing:5.830400pt;}
.ws11b0_c00001{word-spacing:5.832576pt;}
.ws14fe_c00001{word-spacing:5.835648pt;}
.wsd77_c00001{word-spacing:5.836800pt;}
.ws5c9_c00001{word-spacing:5.840992pt;}
.wsf4a_c00001{word-spacing:5.843200pt;}
.wsd14_c00001{word-spacing:5.846336pt;}
.ws144b_c00001{word-spacing:5.851680pt;}
.ws1ad1_c00001{word-spacing:5.856000pt;}
.ws1463_c00001{word-spacing:5.857024pt;}
.ws69_c00001{word-spacing:5.862368pt;}
.ws1ab2_c00001{word-spacing:5.862400pt;}
.ws6a_c00001{word-spacing:5.867712pt;}
.ws71d_c00001{word-spacing:5.868800pt;}
.ws16bc_c00001{word-spacing:5.873056pt;}
.ws372_c00001{word-spacing:5.878400pt;}
.ws38a_c00001{word-spacing:5.881600pt;}
.ws367_c00001{word-spacing:5.883744pt;}
.ws1699_c00001{word-spacing:5.889088pt;}
.ws44_c00001{word-spacing:5.894400pt;}
.ws19c7_c00001{word-spacing:5.899776pt;}
.ws16a_c00001{word-spacing:5.900800pt;}
.ws8da_c00001{word-spacing:5.905120pt;}
.wse9e_c00001{word-spacing:5.913600pt;}
.wsad2_c00001{word-spacing:5.915808pt;}
.ws7d1_c00001{word-spacing:5.920000pt;}
.ws137c_c00001{word-spacing:5.920416pt;}
.ws1575_c00001{word-spacing:5.921152pt;}
.ws169_c00001{word-spacing:5.926400pt;}
.ws1b1_c00001{word-spacing:5.926496pt;}
.ws1613_c00001{word-spacing:5.931840pt;}
.wsdda_c00001{word-spacing:5.932800pt;}
.wsad1_c00001{word-spacing:5.937184pt;}
.wsc8_c00001{word-spacing:5.939200pt;}
.ws366_c00001{word-spacing:5.942528pt;}
.wsa77_c00001{word-spacing:5.945600pt;}
.ws5f8_c00001{word-spacing:5.947872pt;}
.wsc9_c00001{word-spacing:5.952000pt;}
.ws1844_c00001{word-spacing:5.953216pt;}
.ws10a8_c00001{word-spacing:5.957344pt;}
.ws59_c00001{word-spacing:5.958400pt;}
.ws1975_c00001{word-spacing:5.958560pt;}
.ws15af_c00001{word-spacing:5.963904pt;}
.ws453_c00001{word-spacing:5.964800pt;}
.ws15b0_c00001{word-spacing:5.969248pt;}
.ws41d_c00001{word-spacing:5.971200pt;}
.ws1869_c00001{word-spacing:5.974592pt;}
.ws677_c00001{word-spacing:5.977600pt;}
.ws371_c00001{word-spacing:5.979936pt;}
.wsa5_c00001{word-spacing:5.984000pt;}
.ws8dc_c00001{word-spacing:5.985280pt;}
.wsd1_c00001{word-spacing:5.990400pt;}
.ws1529_c00001{word-spacing:5.990624pt;}
.ws15be_c00001{word-spacing:5.995968pt;}
.ws2e5_c00001{word-spacing:5.996800pt;}
.ws1a3c_c00001{word-spacing:6.001312pt;}
.ws58_c00001{word-spacing:6.003200pt;}
.wsd0_c00001{word-spacing:6.009600pt;}
.ws1985_c00001{word-spacing:6.012000pt;}
.ws134e_c00001{word-spacing:6.014112pt;}
.ws6b7_c00001{word-spacing:6.016000pt;}
.ws107f_c00001{word-spacing:6.019968pt;}
.ws9ee_c00001{word-spacing:6.022400pt;}
.ws17eb_c00001{word-spacing:6.028032pt;}
.ws223_c00001{word-spacing:6.028800pt;}
.wsd4a_c00001{word-spacing:6.033376pt;}
.ws7e_c00001{word-spacing:6.035200pt;}
.ws8e5_c00001{word-spacing:6.038720pt;}
.wsc7_c00001{word-spacing:6.041600pt;}
.ws817_c00001{word-spacing:6.048000pt;}
.wsf78_c00001{word-spacing:6.049248pt;}
.ws8e2_c00001{word-spacing:6.049408pt;}
.wsdb_c00001{word-spacing:6.054400pt;}
.ws168a_c00001{word-spacing:6.054752pt;}
.ws11de_c00001{word-spacing:6.055104pt;}
.ws155a_c00001{word-spacing:6.060096pt;}
.ws45_c00001{word-spacing:6.060800pt;}
.ws9fa_c00001{word-spacing:6.065440pt;}
.ws1219_c00001{word-spacing:6.066816pt;}
.ws7f_c00001{word-spacing:6.067200pt;}
.ws15fc_c00001{word-spacing:6.070784pt;}
.ws43_c00001{word-spacing:6.073600pt;}
.ws1581_c00001{word-spacing:6.076128pt;}
.ws1399_c00001{word-spacing:6.078528pt;}
.ws4f1_c00001{word-spacing:6.080000pt;}
.wsd4b_c00001{word-spacing:6.081472pt;}
.ws1013_c00001{word-spacing:6.084384pt;}
.wsa6_c00001{word-spacing:6.086400pt;}
.ws1b0_c00001{word-spacing:6.086816pt;}
.ws1014_c00001{word-spacing:6.090240pt;}
.wsaee_c00001{word-spacing:6.092160pt;}
.ws440_c00001{word-spacing:6.092800pt;}
.ws10b1_c00001{word-spacing:6.096096pt;}
.wsd40_c00001{word-spacing:6.097504pt;}
.ws46_c00001{word-spacing:6.099200pt;}
.ws10c1_c00001{word-spacing:6.101952pt;}
.ws145d_c00001{word-spacing:6.102848pt;}
.wsb7a_c00001{word-spacing:6.105600pt;}
.wsbf3_c00001{word-spacing:6.107808pt;}
.ws172a_c00001{word-spacing:6.108192pt;}
.ws43f_c00001{word-spacing:6.112000pt;}
.ws751_c00001{word-spacing:6.113536pt;}
.ws10b0_c00001{word-spacing:6.113664pt;}
.ws145c_c00001{word-spacing:6.118880pt;}
.ws1012_c00001{word-spacing:6.119520pt;}
.wsd88_c00001{word-spacing:6.124800pt;}
.ws11dd_c00001{word-spacing:6.125376pt;}
.ws322_c00001{word-spacing:6.129568pt;}
.ws1a62_c00001{word-spacing:6.131200pt;}
.ws1221_c00001{word-spacing:6.131232pt;}
.ws18dd_c00001{word-spacing:6.134912pt;}
.ws222_c00001{word-spacing:6.137600pt;}
.ws182f_c00001{word-spacing:6.140256pt;}
.ws1218_c00001{word-spacing:6.142944pt;}
.ws17ff_c00001{word-spacing:6.145600pt;}
.ws120a_c00001{word-spacing:6.148800pt;}
.wsc8d_c00001{word-spacing:6.150400pt;}
.ws154f_c00001{word-spacing:6.150944pt;}
.ws1220_c00001{word-spacing:6.154656pt;}
.ws1629_c00001{word-spacing:6.156288pt;}
.ws1a7c_c00001{word-spacing:6.156800pt;}
.wsd3f_c00001{word-spacing:6.161632pt;}
.ws1b2_c00001{word-spacing:6.166976pt;}
.wsd27_c00001{word-spacing:6.169600pt;}
.ws1582_c00001{word-spacing:6.172320pt;}
.wsd3e_c00001{word-spacing:6.177664pt;}
.ws323_c00001{word-spacing:6.183008pt;}
.ws16df_c00001{word-spacing:6.188352pt;}
.ws1a5e_c00001{word-spacing:6.188800pt;}
.ws1650_c00001{word-spacing:6.193696pt;}
.ws8ab_c00001{word-spacing:6.195200pt;}
.ws18ff_c00001{word-spacing:6.199040pt;}
.ws168e_c00001{word-spacing:6.204384pt;}
.wse7a_c00001{word-spacing:6.208000pt;}
.ws1689_c00001{word-spacing:6.209728pt;}
.ws6c6_c00001{word-spacing:6.214400pt;}
.ws1850_c00001{word-spacing:6.215072pt;}
.ws6c7_c00001{word-spacing:6.220800pt;}
.ws167c_c00001{word-spacing:6.225760pt;}
.ws996_c00001{word-spacing:6.227200pt;}
.ws17a9_c00001{word-spacing:6.231104pt;}
.wsc58_c00001{word-spacing:6.233600pt;}
.ws1966_c00001{word-spacing:6.236448pt;}
.wsb5c_c00001{word-spacing:6.240000pt;}
.ws15e0_c00001{word-spacing:6.241792pt;}
.ws5a7_c00001{word-spacing:6.246400pt;}
.ws1891_c00001{word-spacing:6.247136pt;}
.wsbe_c00001{word-spacing:6.252480pt;}
.ws31a_c00001{word-spacing:6.252800pt;}
.ws1723_c00001{word-spacing:6.257824pt;}
.wsf52_c00001{word-spacing:6.259200pt;}
.ws161a_c00001{word-spacing:6.263168pt;}
.ws46a_c00001{word-spacing:6.265600pt;}
.ws1851_c00001{word-spacing:6.268512pt;}
.wsd80_c00001{word-spacing:6.272000pt;}
.wsccb_c00001{word-spacing:6.273856pt;}
.wse7b_c00001{word-spacing:6.278400pt;}
.ws192b_c00001{word-spacing:6.279200pt;}
.ws182d_c00001{word-spacing:6.284544pt;}
.ws64c_c00001{word-spacing:6.284800pt;}
.ws156b_c00001{word-spacing:6.289888pt;}
.ws3de_c00001{word-spacing:6.291200pt;}
.ws182e_c00001{word-spacing:6.295232pt;}
.ws31b_c00001{word-spacing:6.297600pt;}
.ws1a24_c00001{word-spacing:6.300576pt;}
.ws5da_c00001{word-spacing:6.304000pt;}
.ws1511_c00001{word-spacing:6.305920pt;}
.ws385_c00001{word-spacing:6.310400pt;}
.ws1880_c00001{word-spacing:6.311264pt;}
.ws17ec_c00001{word-spacing:6.316608pt;}
.ws3df_c00001{word-spacing:6.316800pt;}
.wsccc_c00001{word-spacing:6.321952pt;}
.ws668_c00001{word-spacing:6.323200pt;}
.ws1619_c00001{word-spacing:6.327296pt;}
.ws586_c00001{word-spacing:6.329600pt;}
.ws1678_c00001{word-spacing:6.332640pt;}
.ws75b_c00001{word-spacing:6.336000pt;}
.ws427_c00001{word-spacing:6.342400pt;}
.ws537_c00001{word-spacing:6.348800pt;}
.ws41c_c00001{word-spacing:6.355200pt;}
.ws386_c00001{word-spacing:6.361600pt;}
.wsd48_c00001{word-spacing:6.364704pt;}
.ws3db_c00001{word-spacing:6.368000pt;}
.ws199b_c00001{word-spacing:6.370048pt;}
.ws1256_c00001{word-spacing:6.371328pt;}
.ws3da_c00001{word-spacing:6.374400pt;}
.ws164d_c00001{word-spacing:6.375392pt;}
.wsff9_c00001{word-spacing:6.377184pt;}
.ws19f4_c00001{word-spacing:6.380736pt;}
.ws319_c00001{word-spacing:6.380800pt;}
.wsfef_c00001{word-spacing:6.383040pt;}
.ws1618_c00001{word-spacing:6.386080pt;}
.ws428_c00001{word-spacing:6.387200pt;}
.wsffa_c00001{word-spacing:6.388896pt;}
.ws11b_c00001{word-spacing:6.391424pt;}
.ws426_c00001{word-spacing:6.393600pt;}
.ws12dd_c00001{word-spacing:6.394752pt;}
.ws177b_c00001{word-spacing:6.396768pt;}
.wsb86_c00001{word-spacing:6.400000pt;}
.ws1333_c00001{word-spacing:6.400608pt;}
.ws173a_c00001{word-spacing:6.402112pt;}
.wsaa7_c00001{word-spacing:6.406400pt;}
.wsfd6_c00001{word-spacing:6.406464pt;}
.ws1671_c00001{word-spacing:6.407456pt;}
.wsfd7_c00001{word-spacing:6.412320pt;}
.ws9b5_c00001{word-spacing:6.412800pt;}
.ws73_c00001{word-spacing:6.418144pt;}
.wsf77_c00001{word-spacing:6.418176pt;}
.wscf1_c00001{word-spacing:6.419200pt;}
.ws4b9_c00001{word-spacing:6.423488pt;}
.wsc10_c00001{word-spacing:6.424032pt;}
.wsc3e_c00001{word-spacing:6.425600pt;}
.ws178f_c00001{word-spacing:6.428832pt;}
.wsb03_c00001{word-spacing:6.429888pt;}
.wsd7f_c00001{word-spacing:6.432000pt;}
.ws15f4_c00001{word-spacing:6.434176pt;}
.wsb7d_c00001{word-spacing:6.435744pt;}
.wse8c_c00001{word-spacing:6.438400pt;}
.ws1823_c00001{word-spacing:6.439520pt;}
.wsfa4_c00001{word-spacing:6.441600pt;}
.ws67f_c00001{word-spacing:6.444800pt;}
.wsb7c_c00001{word-spacing:6.447456pt;}
.ws1918_c00001{word-spacing:6.450208pt;}
.ws88e_c00001{word-spacing:6.451200pt;}
.ws118d_c00001{word-spacing:6.453312pt;}
.ws16aa_c00001{word-spacing:6.455552pt;}
.wsfd5_c00001{word-spacing:6.459168pt;}
.ws174a_c00001{word-spacing:6.460896pt;}
.wsff8_c00001{word-spacing:6.465024pt;}
.wscfc_c00001{word-spacing:6.466240pt;}
.ws11dc_c00001{word-spacing:6.470880pt;}
.ws14d7_c00001{word-spacing:6.471584pt;}
.ws1633_c00001{word-spacing:6.476928pt;}
.ws1569_c00001{word-spacing:6.482272pt;}
.ws10ec_c00001{word-spacing:6.482592pt;}
.ws16ab_c00001{word-spacing:6.487616pt;}
.ws8e4_c00001{word-spacing:6.492960pt;}
.ws82f_c00001{word-spacing:6.496000pt;}
.ws4ba_c00001{word-spacing:6.498304pt;}
.ws14b1_c00001{word-spacing:6.503648pt;}
.wsb7b_c00001{word-spacing:6.508800pt;}
.ws14d1_c00001{word-spacing:6.508992pt;}
.ws8e3_c00001{word-spacing:6.514336pt;}
.ws1abe_c00001{word-spacing:6.515200pt;}
.ws181a_c00001{word-spacing:6.519680pt;}
.ws15ec_c00001{word-spacing:6.525024pt;}
.ws1886_c00001{word-spacing:6.530368pt;}
.ws4c1_c00001{word-spacing:6.534400pt;}
.ws8e1_c00001{word-spacing:6.535712pt;}
.ws7d2_c00001{word-spacing:6.540800pt;}
.ws1586_c00001{word-spacing:6.541056pt;}
.ws1546_c00001{word-spacing:6.546400pt;}
.ws78c_c00001{word-spacing:6.547200pt;}
.ws1818_c00001{word-spacing:6.551744pt;}
.ws1593_c00001{word-spacing:6.557088pt;}
.ws88b_c00001{word-spacing:6.560000pt;}
.ws14d8_c00001{word-spacing:6.562432pt;}
.ws1a57_c00001{word-spacing:6.566400pt;}
.ws185b_c00001{word-spacing:6.567776pt;}
.ws68d_c00001{word-spacing:6.572800pt;}
.ws1651_c00001{word-spacing:6.573120pt;}
.ws16a0_c00001{word-spacing:6.578464pt;}
.wsc5c_c00001{word-spacing:6.579200pt;}
.ws15f3_c00001{word-spacing:6.583808pt;}
.ws58c_c00001{word-spacing:6.585600pt;}
.ws146a_c00001{word-spacing:6.589152pt;}
.wsae5_c00001{word-spacing:6.592000pt;}
.ws1829_c00001{word-spacing:6.594496pt;}
.wsaf0_c00001{word-spacing:6.598400pt;}
.ws1594_c00001{word-spacing:6.599840pt;}
.ws508_c00001{word-spacing:6.604800pt;}
.wscfb_c00001{word-spacing:6.610528pt;}
.ws9de_c00001{word-spacing:6.611200pt;}
.ws15ef_c00001{word-spacing:6.615872pt;}
.wsc4d_c00001{word-spacing:6.617600pt;}
.ws1855_c00001{word-spacing:6.621216pt;}
.ws926_c00001{word-spacing:6.624000pt;}
.ws1501_c00001{word-spacing:6.626560pt;}
.ws19_c00001{word-spacing:6.630400pt;}
.ws15f0_c00001{word-spacing:6.631904pt;}
.ws11f7_c00001{word-spacing:6.634848pt;}
.ws2e0_c00001{word-spacing:6.636800pt;}
.ws1897_c00001{word-spacing:6.637248pt;}
.ws14a7_c00001{word-spacing:6.642592pt;}
.ws8d6_c00001{word-spacing:6.643200pt;}
.wsd49_c00001{word-spacing:6.647936pt;}
.ws519_c00001{word-spacing:6.649600pt;}
.ws213_c00001{word-spacing:6.656000pt;}
.ws132_c00001{word-spacing:6.662400pt;}
.ws7f8_c00001{word-spacing:6.668800pt;}
.ws2df_c00001{word-spacing:6.675200pt;}
.ws1d8_c00001{word-spacing:6.681600pt;}
.ws12f2_c00001{word-spacing:6.681696pt;}
.ws82e_c00001{word-spacing:6.688000pt;}
.ws18_c00001{word-spacing:6.694400pt;}
.ws12cf_c00001{word-spacing:6.699264pt;}
.ws507_c00001{word-spacing:6.700800pt;}
.ws17a3_c00001{word-spacing:6.701376pt;}
.ws753_c00001{word-spacing:6.706720pt;}
.ws6eb_c00001{word-spacing:6.707200pt;}
.ws12d0_c00001{word-spacing:6.710976pt;}
.ws14d2_c00001{word-spacing:6.712064pt;}
.ws212_c00001{word-spacing:6.713600pt;}
.ws1125_c00001{word-spacing:6.716832pt;}
.ws14d0_c00001{word-spacing:6.717408pt;}
.ws849_c00001{word-spacing:6.720000pt;}
.ws597_c00001{word-spacing:6.722752pt;}
.ws82d_c00001{word-spacing:6.726400pt;}
.wsc1c_c00001{word-spacing:6.728096pt;}
.ws1124_c00001{word-spacing:6.728544pt;}
.ws4c0_c00001{word-spacing:6.732800pt;}
.ws1720_c00001{word-spacing:6.733440pt;}
.ws11bd_c00001{word-spacing:6.734400pt;}
.ws150c_c00001{word-spacing:6.738784pt;}
.ws27a_c00001{word-spacing:6.739200pt;}
.ws12ce_c00001{word-spacing:6.740256pt;}
.ws1643_c00001{word-spacing:6.744128pt;}
.wsad6_c00001{word-spacing:6.745600pt;}
.ws119a_c00001{word-spacing:6.746112pt;}
.ws1547_c00001{word-spacing:6.749472pt;}
.wsa09_c00001{word-spacing:6.751968pt;}
.ws4bf_c00001{word-spacing:6.752000pt;}
.ws599_c00001{word-spacing:6.754816pt;}
.wsede_c00001{word-spacing:6.758400pt;}
.ws191f_c00001{word-spacing:6.760160pt;}
.wsb70_c00001{word-spacing:6.764800pt;}
.ws1814_c00001{word-spacing:6.765504pt;}
.ws11bc_c00001{word-spacing:6.769536pt;}
.wsbac_c00001{word-spacing:6.771200pt;}
.ws12af_c00001{word-spacing:6.775392pt;}
.ws1583_c00001{word-spacing:6.776192pt;}
.ws10ef_c00001{word-spacing:6.781248pt;}
.ws1458_c00001{word-spacing:6.781536pt;}
.wse81_c00001{word-spacing:6.784000pt;}
.ws1457_c00001{word-spacing:6.786880pt;}
.ws1332_c00001{word-spacing:6.787104pt;}
.ws575_c00001{word-spacing:6.790400pt;}
.ws1731_c00001{word-spacing:6.792224pt;}
.ws156f_c00001{word-spacing:6.797568pt;}
.wsb63_c00001{word-spacing:6.802912pt;}
.ws509_c00001{word-spacing:6.803200pt;}
.ws16a6_c00001{word-spacing:6.808256pt;}
.wsa5a_c00001{word-spacing:6.813600pt;}
.wse1a_c00001{word-spacing:6.816000pt;}
.ws596_c00001{word-spacing:6.818944pt;}
.wsa59_c00001{word-spacing:6.824288pt;}
.wsba4_c00001{word-spacing:6.828800pt;}
.ws14f2_c00001{word-spacing:6.829632pt;}
.ws1428_c00001{word-spacing:6.834976pt;}
.ws1a64_c00001{word-spacing:6.835200pt;}
.wscef_c00001{word-spacing:6.841600pt;}
.wsad4_c00001{word-spacing:6.848000pt;}
.ws176c_c00001{word-spacing:6.851008pt;}
.wse6a_c00001{word-spacing:6.854400pt;}
.ws777_c00001{word-spacing:6.860800pt;}
.ws180c_c00001{word-spacing:6.861696pt;}
.ws91e_c00001{word-spacing:6.867040pt;}
.wsd87_c00001{word-spacing:6.867200pt;}
.ws18cc_c00001{word-spacing:6.872384pt;}
.ws815_c00001{word-spacing:6.873600pt;}
.ws15eb_c00001{word-spacing:6.877728pt;}
.ws17ef_c00001{word-spacing:6.888416pt;}
.ws20b_c00001{word-spacing:6.892800pt;}
.ws1591_c00001{word-spacing:6.893760pt;}
.ws180d_c00001{word-spacing:6.899104pt;}
.ws814_c00001{word-spacing:6.899200pt;}
.ws19a4_c00001{word-spacing:6.904448pt;}
.wsba3_c00001{word-spacing:6.905600pt;}
.ws9d8_c00001{word-spacing:6.912000pt;}
.ws18b2_c00001{word-spacing:6.915136pt;}
.wsd02_c00001{word-spacing:6.918400pt;}
.ws180b_c00001{word-spacing:6.920480pt;}
.ws577_c00001{word-spacing:6.924800pt;}
.ws18d2_c00001{word-spacing:6.931168pt;}
.wsd10_c00001{word-spacing:6.931200pt;}
.ws194a_c00001{word-spacing:6.936512pt;}
.wsc56_c00001{word-spacing:6.937600pt;}
.ws946_c00001{word-spacing:6.941856pt;}
.wsb5b_c00001{word-spacing:6.944000pt;}
.wsb64_c00001{word-spacing:6.947200pt;}
.ws51_c00001{word-spacing:6.950400pt;}
.ws947_c00001{word-spacing:6.952544pt;}
.ws40f_c00001{word-spacing:6.956800pt;}
.ws481_c00001{word-spacing:6.963200pt;}
.ws598_c00001{word-spacing:6.963232pt;}
.ws3a_c00001{word-spacing:6.969600pt;}
.wse82_c00001{word-spacing:6.976000pt;}
.wsc06_c00001{word-spacing:6.982400pt;}
.ws1a_c00001{word-spacing:6.988800pt;}
.ws224_c00001{word-spacing:6.995200pt;}
.ws91f_c00001{word-spacing:6.995296pt;}
.wse2_c00001{word-spacing:7.001600pt;}
.ws1345_c00001{word-spacing:7.003776pt;}
.ws1d5_c00001{word-spacing:7.008000pt;}
.ws35d_c00001{word-spacing:7.011328pt;}
.wse1_c00001{word-spacing:7.014400pt;}
.ws14e1_c00001{word-spacing:7.016672pt;}
.ws482_c00001{word-spacing:7.020800pt;}
.ws1882_c00001{word-spacing:7.022016pt;}
.ws39_c00001{word-spacing:7.027200pt;}
.ws1427_c00001{word-spacing:7.027360pt;}
.ws9d2_c00001{word-spacing:7.032704pt;}
.wscfa_c00001{word-spacing:7.033600pt;}
.ws240_c00001{word-spacing:7.038048pt;}
.wsc54_c00001{word-spacing:7.040000pt;}
.ws1560_c00001{word-spacing:7.043392pt;}
.ws1b_c00001{word-spacing:7.046400pt;}
.ws1474_c00001{word-spacing:7.048736pt;}
.ws12cd_c00001{word-spacing:7.050624pt;}
.ws576_c00001{word-spacing:7.052800pt;}
.ws2cf_c00001{word-spacing:7.054080pt;}
.ws1a95_c00001{word-spacing:7.059200pt;}
.ws4e3_c00001{word-spacing:7.059424pt;}
.ws120f_c00001{word-spacing:7.062336pt;}
.ws14fa_c00001{word-spacing:7.064768pt;}
.ws816_c00001{word-spacing:7.065600pt;}
.ws120e_c00001{word-spacing:7.068192pt;}
.ws1709_c00001{word-spacing:7.070112pt;}
.wsac5_c00001{word-spacing:7.072000pt;}
.ws11b7_c00001{word-spacing:7.074048pt;}
.ws1893_c00001{word-spacing:7.075456pt;}
.ws12f3_c00001{word-spacing:7.079904pt;}
.ws3d7_c00001{word-spacing:7.084800pt;}
.ws40e_c00001{word-spacing:7.091200pt;}
.ws1654_c00001{word-spacing:7.091488pt;}
.ws11db_c00001{word-spacing:7.091616pt;}
.ws16b8_c00001{word-spacing:7.096832pt;}
.wscd6_c00001{word-spacing:7.097472pt;}
.wsc2b_c00001{word-spacing:7.097600pt;}
.ws14fb_c00001{word-spacing:7.102176pt;}
.wsb7e_c00001{word-spacing:7.103328pt;}
.ws483_c00001{word-spacing:7.104000pt;}
.ws14b0_c00001{word-spacing:7.107520pt;}
.wsa82_c00001{word-spacing:7.109184pt;}
.ws52_c00001{word-spacing:7.110400pt;}
.ws159d_c00001{word-spacing:7.112864pt;}
.ws11b8_c00001{word-spacing:7.115040pt;}
.ws16b1_c00001{word-spacing:7.118208pt;}
.wsae9_c00001{word-spacing:7.123200pt;}
.ws159e_c00001{word-spacing:7.123552pt;}
.ws4e2_c00001{word-spacing:7.128896pt;}
.ws4e4_c00001{word-spacing:7.134240pt;}
.wsd2b_c00001{word-spacing:7.139584pt;}
.wsed3_c00001{word-spacing:7.142400pt;}
.ws1748_c00001{word-spacing:7.144928pt;}
.ws1811_c00001{word-spacing:7.150272pt;}
.ws180a_c00001{word-spacing:7.155616pt;}
.ws159f_c00001{word-spacing:7.166304pt;}
.ws484_c00001{word-spacing:7.168000pt;}
.ws1753_c00001{word-spacing:7.171648pt;}
.ws16a8_c00001{word-spacing:7.176992pt;}
.ws91d_c00001{word-spacing:7.182336pt;}
.wsa00_c00001{word-spacing:7.187200pt;}
.ws1809_c00001{word-spacing:7.187680pt;}
.ws15b7_c00001{word-spacing:7.193024pt;}
.ws1a68_c00001{word-spacing:7.193600pt;}
.ws2f0_c00001{word-spacing:7.198368pt;}
.ws196e_c00001{word-spacing:7.200000pt;}
.ws16e4_c00001{word-spacing:7.203712pt;}
.wse8e_c00001{word-spacing:7.206400pt;}
.ws16e0_c00001{word-spacing:7.209056pt;}
.wsb38_c00001{word-spacing:7.212800pt;}
.ws8b3_c00001{word-spacing:7.214400pt;}
.wsb43_c00001{word-spacing:7.219200pt;}
.ws171d_c00001{word-spacing:7.219744pt;}
.wsdc3_c00001{word-spacing:7.225088pt;}
.wsced_c00001{word-spacing:7.225600pt;}
.wsd2c_c00001{word-spacing:7.230432pt;}
.ws93a_c00001{word-spacing:7.232000pt;}
.ws1464_c00001{word-spacing:7.235776pt;}
.wsab7_c00001{word-spacing:7.238400pt;}
.ws1913_c00001{word-spacing:7.241120pt;}
.wsb39_c00001{word-spacing:7.244800pt;}
.ws143f_c00001{word-spacing:7.246464pt;}
.ws1de_c00001{word-spacing:7.251200pt;}
.ws1595_c00001{word-spacing:7.251808pt;}
.ws26a_c00001{word-spacing:7.257600pt;}
.ws1465_c00001{word-spacing:7.262496pt;}
.ws344_c00001{word-spacing:7.264000pt;}
.ws5d_c00001{word-spacing:7.270400pt;}
.ws17df_c00001{word-spacing:7.273184pt;}
.ws969_c00001{word-spacing:7.276800pt;}
.ws1791_c00001{word-spacing:7.278528pt;}
.ws269_c00001{word-spacing:7.283200pt;}
.ws20d_c00001{word-spacing:7.289600pt;}
.ws485_c00001{word-spacing:7.296000pt;}
.ws53b_c00001{word-spacing:7.302400pt;}
.ws15f_c00001{word-spacing:7.308800pt;}
.ws7be_c00001{word-spacing:7.315200pt;}
.ws2cc_c00001{word-spacing:7.315936pt;}
.ws20c_c00001{word-spacing:7.321600pt;}
.ws7bd_c00001{word-spacing:7.328000pt;}
.ws7dd_c00001{word-spacing:7.334400pt;}
.ws5c_c00001{word-spacing:7.340800pt;}
.ws19ea_c00001{word-spacing:7.342656pt;}
.ws1179_c00001{word-spacing:7.343424pt;}
.ws7de_c00001{word-spacing:7.347200pt;}
.ws16d7_c00001{word-spacing:7.348000pt;}
.ws1653_c00001{word-spacing:7.353344pt;}
.ws53c_c00001{word-spacing:7.353600pt;}
.ws61e_c00001{word-spacing:7.358688pt;}
.ws1e0_c00001{word-spacing:7.360000pt;}
.ws11ba_c00001{word-spacing:7.360992pt;}
.wsa44_c00001{word-spacing:7.364032pt;}
.ws719_c00001{word-spacing:7.366400pt;}
.ws1070_c00001{word-spacing:7.366848pt;}
.ws35c_c00001{word-spacing:7.369376pt;}
.wsfec_c00001{word-spacing:7.372704pt;}
.ws160_c00001{word-spacing:7.372800pt;}
.wsd3d_c00001{word-spacing:7.374720pt;}
.wsbf2_c00001{word-spacing:7.378560pt;}
.ws1e1_c00001{word-spacing:7.379200pt;}
.ws1507_c00001{word-spacing:7.380064pt;}
.ws1178_c00001{word-spacing:7.384416pt;}
.wsa2a_c00001{word-spacing:7.385408pt;}
.wsd89_c00001{word-spacing:7.385600pt;}
.wsfed_c00001{word-spacing:7.390272pt;}
.ws187b_c00001{word-spacing:7.390752pt;}
.wsa3f_c00001{word-spacing:7.396096pt;}
.ws249_c00001{word-spacing:7.396128pt;}
.ws972_c00001{word-spacing:7.398400pt;}
.ws181e_c00001{word-spacing:7.401440pt;}
.ws1047_c00001{word-spacing:7.401984pt;}
.ws18b9_c00001{word-spacing:7.406784pt;}
.ws106f_c00001{word-spacing:7.407840pt;}
.ws718_c00001{word-spacing:7.411200pt;}
.ws129b_c00001{word-spacing:7.413696pt;}
.ws1639_c00001{word-spacing:7.417472pt;}
.ws248_c00001{word-spacing:7.419552pt;}
.ws157f_c00001{word-spacing:7.422816pt;}
.ws11e7_c00001{word-spacing:7.425408pt;}
.ws16b7_c00001{word-spacing:7.428160pt;}
.ws199c_c00001{word-spacing:7.430400pt;}
.ws2c9_c00001{word-spacing:7.433504pt;}
.ws2e1_c00001{word-spacing:7.436800pt;}
.ws622_c00001{word-spacing:7.438848pt;}
.wsf4d_c00001{word-spacing:7.443200pt;}
.ws17d1_c00001{word-spacing:7.444192pt;}
.ws153c_c00001{word-spacing:7.449536pt;}
.ws1122_c00001{word-spacing:7.454688pt;}
.ws163a_c00001{word-spacing:7.454880pt;}
.ws181d_c00001{word-spacing:7.460224pt;}
.wsf5e_c00001{word-spacing:7.462400pt;}
.ws23f_c00001{word-spacing:7.465568pt;}
.wsa3e_c00001{word-spacing:7.470912pt;}
.ws1a88_c00001{word-spacing:7.475200pt;}
.ws175f_c00001{word-spacing:7.476256pt;}
.wsaf9_c00001{word-spacing:7.481600pt;}
.ws1980_c00001{word-spacing:7.486944pt;}
.ws221_c00001{word-spacing:7.488000pt;}
.ws2e9_c00001{word-spacing:7.502976pt;}
.ws171c_c00001{word-spacing:7.508320pt;}
.ws355_c00001{word-spacing:7.513600pt;}
.ws149e_c00001{word-spacing:7.513664pt;}
.ws180e_c00001{word-spacing:7.519008pt;}
.ws4cf_c00001{word-spacing:7.520000pt;}
.ws241_c00001{word-spacing:7.524352pt;}
.wsc53_c00001{word-spacing:7.526400pt;}
.ws1948_c00001{word-spacing:7.529696pt;}
.ws72d_c00001{word-spacing:7.532800pt;}
.ws1856_c00001{word-spacing:7.535040pt;}
.wsee1_c00001{word-spacing:7.539200pt;}
.ws2ea_c00001{word-spacing:7.540384pt;}
.ws588_c00001{word-spacing:7.545600pt;}
.ws1719_c00001{word-spacing:7.545728pt;}
.wsaf7_c00001{word-spacing:7.552000pt;}
.ws2e2_c00001{word-spacing:7.558400pt;}
.ws1621_c00001{word-spacing:7.561760pt;}
.ws26f_c00001{word-spacing:7.564800pt;}
.wsb93_c00001{word-spacing:7.567104pt;}
.ws25c_c00001{word-spacing:7.571200pt;}
.wsa6b_c00001{word-spacing:7.572448pt;}
.ws3b5_c00001{word-spacing:7.577600pt;}
.ws1881_c00001{word-spacing:7.577792pt;}
.ws2cb_c00001{word-spacing:7.583136pt;}
.ws466_c00001{word-spacing:7.584000pt;}
.ws2ef_c00001{word-spacing:7.588480pt;}
.wsc71_c00001{word-spacing:7.590400pt;}
.ws143e_c00001{word-spacing:7.593824pt;}
.ws1db_c00001{word-spacing:7.596800pt;}
.wsa30_c00001{word-spacing:7.599168pt;}
.ws4ce_c00001{word-spacing:7.603200pt;}
.ws130d_c00001{word-spacing:7.606944pt;}
.wsa9f_c00001{word-spacing:7.609600pt;}
.ws220_c00001{word-spacing:7.616000pt;}
.ws742_c00001{word-spacing:7.622400pt;}
.ws26e_c00001{word-spacing:7.628800pt;}
.ws135a_c00001{word-spacing:7.630368pt;}
.ws7d0_c00001{word-spacing:7.635200pt;}
.ws1862_c00001{word-spacing:7.636576pt;}
.wsc52_c00001{word-spacing:7.641600pt;}
.ws18f0_c00001{word-spacing:7.647264pt;}
.ws9e_c00001{word-spacing:7.648000pt;}
.ws4d3_c00001{word-spacing:7.654400pt;}
.ws9e6_c00001{word-spacing:7.657952pt;}
.ws33d_c00001{word-spacing:7.660800pt;}
.ws17f9_c00001{word-spacing:7.663296pt;}
.ws435_c00001{word-spacing:7.667200pt;}
.ws19e3_c00001{word-spacing:7.668640pt;}
.wsaf3_c00001{word-spacing:7.673600pt;}
.ws1565_c00001{word-spacing:7.673984pt;}
.ws1205_c00001{word-spacing:7.677216pt;}
.ws153f_c00001{word-spacing:7.679328pt;}
.ws25b_c00001{word-spacing:7.680000pt;}
.ws1107_c00001{word-spacing:7.683072pt;}
.ws67a_c00001{word-spacing:7.684672pt;}
.wsdf0_c00001{word-spacing:7.686400pt;}
.ws10bc_c00001{word-spacing:7.688928pt;}
.ws171f_c00001{word-spacing:7.690016pt;}
.ws587_c00001{word-spacing:7.692800pt;}
.ws116e_c00001{word-spacing:7.694784pt;}
.ws2ca_c00001{word-spacing:7.695360pt;}
.ws465_c00001{word-spacing:7.699200pt;}
.wsa71_c00001{word-spacing:7.700640pt;}
.ws17f5_c00001{word-spacing:7.700704pt;}
.ws6e9_c00001{word-spacing:7.705600pt;}
.ws5f5_c00001{word-spacing:7.706048pt;}
.ws10bb_c00001{word-spacing:7.706496pt;}
.ws1a3b_c00001{word-spacing:7.711392pt;}
.ws851_c00001{word-spacing:7.712000pt;}
.ws1106_c00001{word-spacing:7.712352pt;}
.ws15de_c00001{word-spacing:7.716736pt;}
.ws115a_c00001{word-spacing:7.718208pt;}
.ws824_c00001{word-spacing:7.718400pt;}
.ws15f8_c00001{word-spacing:7.722080pt;}
.ws1202_c00001{word-spacing:7.724064pt;}
.wsdb0_c00001{word-spacing:7.724800pt;}
.ws15e5_c00001{word-spacing:7.727424pt;}
.wsbb3_c00001{word-spacing:7.729920pt;}
.ws33e_c00001{word-spacing:7.731200pt;}
.ws321_c00001{word-spacing:7.732768pt;}
.wsc32_c00001{word-spacing:7.735776pt;}
.ws1ab7_c00001{word-spacing:7.737600pt;}
.ws15f9_c00001{word-spacing:7.738112pt;}
.wsfe3_c00001{word-spacing:7.741632pt;}
.ws181f_c00001{word-spacing:7.743456pt;}
.ws1359_c00001{word-spacing:7.747488pt;}
.ws320_c00001{word-spacing:7.748800pt;}
.wsb44_c00001{word-spacing:7.750400pt;}
.ws106e_c00001{word-spacing:7.753344pt;}
.ws847_c00001{word-spacing:7.753621pt;}
.ws15fa_c00001{word-spacing:7.754144pt;}
.ws15e4_c00001{word-spacing:7.759488pt;}
.ws6ea_c00001{word-spacing:7.763200pt;}
.ws15df_c00001{word-spacing:7.764832pt;}
.ws1048_c00001{word-spacing:7.765056pt;}
.ws1563_c00001{word-spacing:7.770176pt;}
.ws9bf_c00001{word-spacing:7.775520pt;}
.wsee7_c00001{word-spacing:7.776000pt;}
.wsbb4_c00001{word-spacing:7.776768pt;}
.ws901_c00001{word-spacing:7.780864pt;}
.wsebb_c00001{word-spacing:7.782400pt;}
.ws1549_c00001{word-spacing:7.786208pt;}
.wsdaf_c00001{word-spacing:7.788800pt;}
.ws1715_c00001{word-spacing:7.791552pt;}
.ws87b_c00001{word-spacing:7.795200pt;}
.ws19a1_c00001{word-spacing:7.796896pt;}
.ws1199_c00001{word-spacing:7.800192pt;}
.ws672_c00001{word-spacing:7.801600pt;}
.ws18d0_c00001{word-spacing:7.802240pt;}
.ws1548_c00001{word-spacing:7.807584pt;}
.ws83b_c00001{word-spacing:7.808000pt;}
.wsed5_c00001{word-spacing:7.820800pt;}
.ws673_c00001{word-spacing:7.827200pt;}
.ws193a_c00001{word-spacing:7.828960pt;}
.wsf0a_c00001{word-spacing:7.833600pt;}
.ws23d_c00001{word-spacing:7.834304pt;}
.ws15a0_c00001{word-spacing:7.839648pt;}
.wsbfc_c00001{word-spacing:7.840000pt;}
.ws7fa_c00001{word-spacing:7.846400pt;}
.ws18c4_c00001{word-spacing:7.850336pt;}
.ws848_c00001{word-spacing:7.852800pt;}
.ws17e7_c00001{word-spacing:7.855680pt;}
.wsc40_c00001{word-spacing:7.859200pt;}
.ws171e_c00001{word-spacing:7.861024pt;}
.ws697_c00001{word-spacing:7.865600pt;}
.ws23e_c00001{word-spacing:7.866368pt;}
.ws902_c00001{word-spacing:7.871712pt;}
.ws810_c00001{word-spacing:7.872000pt;}
.ws903_c00001{word-spacing:7.877056pt;}
.ws7f9_c00001{word-spacing:7.878400pt;}
.ws9e5_c00001{word-spacing:7.882400pt;}
.wsd9_c00001{word-spacing:7.884800pt;}
.ws8c_c00001{word-spacing:7.891200pt;}
.ws138_c00001{word-spacing:7.897600pt;}
.ws1954_c00001{word-spacing:7.898432pt;}
.ws17b8_c00001{word-spacing:7.903776pt;}
.ws710_c00001{word-spacing:7.904000pt;}
.wsbc7_c00001{word-spacing:7.910400pt;}
.ws1531_c00001{word-spacing:7.914464pt;}
.ws6a0_c00001{word-spacing:7.916800pt;}
.ws188_c00001{word-spacing:7.923200pt;}
.ws5f_c00001{word-spacing:7.929600pt;}
.ws5e_c00001{word-spacing:7.936000pt;}
.ws704_c00001{word-spacing:7.942400pt;}
.wsbc1_c00001{word-spacing:7.948800pt;}
.ws1810_c00001{word-spacing:7.951872pt;}
.wsda_c00001{word-spacing:7.955200pt;}
.ws137d_c00001{word-spacing:7.958304pt;}
.wsb3b_c00001{word-spacing:7.961600pt;}
.ws1817_c00001{word-spacing:7.962560pt;}
.ws1c9_c00001{word-spacing:7.968000pt;}
.ws997_c00001{word-spacing:7.974400pt;}
.ws189_c00001{word-spacing:7.980800pt;}
.ws1572_c00001{word-spacing:7.983936pt;}
.ws1ca_c00001{word-spacing:7.987200pt;}
.ws1355_c00001{word-spacing:7.987584pt;}
.ws17db_c00001{word-spacing:7.989280pt;}
.ws8d_c00001{word-spacing:7.993600pt;}
.ws17a4_c00001{word-spacing:7.994624pt;}
.ws11c4_c00001{word-spacing:7.999296pt;}
.ws416_c00001{word-spacing:7.999968pt;}
.ws811_c00001{word-spacing:8.000000pt;}
.wsb0c_c00001{word-spacing:8.005312pt;}
.wsa33_c00001{word-spacing:8.006400pt;}
.ws1692_c00001{word-spacing:8.010656pt;}
.ws103b_c00001{word-spacing:8.011008pt;}
.ws855_c00001{word-spacing:8.012800pt;}
.ws14ad_c00001{word-spacing:8.016000pt;}
.ws1198_c00001{word-spacing:8.016864pt;}
.ws8e_c00001{word-spacing:8.019200pt;}
.ws85d_c00001{word-spacing:8.021344pt;}
.ws1000_c00001{word-spacing:8.022720pt;}
.ws87a_c00001{word-spacing:8.025600pt;}
.wsa42_c00001{word-spacing:8.026688pt;}
.wsa73_c00001{word-spacing:8.028576pt;}
.ws698_c00001{word-spacing:8.032000pt;}
.ws14bd_c00001{word-spacing:8.032032pt;}
.ws103a_c00001{word-spacing:8.034432pt;}
.ws998_c00001{word-spacing:8.038400pt;}
.wsa74_c00001{word-spacing:8.040288pt;}
.ws9be_c00001{word-spacing:8.042720pt;}
.wsf5d_c00001{word-spacing:8.044800pt;}
.ws10a5_c00001{word-spacing:8.046144pt;}
.ws157c_c00001{word-spacing:8.048064pt;}
.ws6a1_c00001{word-spacing:8.051200pt;}
.ws2b5_c00001{word-spacing:8.052000pt;}
.ws145b_c00001{word-spacing:8.053408pt;}
.wsaa9_c00001{word-spacing:8.057856pt;}
.ws175d_c00001{word-spacing:8.058752pt;}
.ws11c5_c00001{word-spacing:8.063712pt;}
.wsbd7_c00001{word-spacing:8.064000pt;}
.ws14be_c00001{word-spacing:8.064096pt;}
.ws1408_c00001{word-spacing:8.069440pt;}
.ws19ec_c00001{word-spacing:8.070400pt;}
.ws145a_c00001{word-spacing:8.074784pt;}
.ws175c_c00001{word-spacing:8.080128pt;}
.ws130c_c00001{word-spacing:8.081280pt;}
.ws157b_c00001{word-spacing:8.085472pt;}
.ws85c_c00001{word-spacing:8.090816pt;}
.ws1356_c00001{word-spacing:8.092992pt;}
.wsc59_c00001{word-spacing:8.096000pt;}
.ws1564_c00001{word-spacing:8.096160pt;}
.ws18ce_c00001{word-spacing:8.101504pt;}
.ws9bc_c00001{word-spacing:8.106848pt;}
.ws1ade_c00001{word-spacing:8.108800pt;}
.ws9bd_c00001{word-spacing:8.112192pt;}
.wsbc8_c00001{word-spacing:8.115200pt;}
.ws199e_c00001{word-spacing:8.117536pt;}
.ws19c3_c00001{word-spacing:8.122880pt;}
.ws1adf_c00001{word-spacing:8.128000pt;}
.ws167f_c00001{word-spacing:8.133568pt;}
.ws17f0_c00001{word-spacing:8.138912pt;}
.wsde1_c00001{word-spacing:8.140800pt;}
.ws1854_c00001{word-spacing:8.144256pt;}
.ws460_c00001{word-spacing:8.147200pt;}
.ws16d9_c00001{word-spacing:8.149600pt;}
.wsbcb_c00001{word-spacing:8.153600pt;}
.ws1701_c00001{word-spacing:8.154944pt;}
.ws75d_c00001{word-spacing:8.160000pt;}
.wsa43_c00001{word-spacing:8.165632pt;}
.wsc5a_c00001{word-spacing:8.166400pt;}
.ws1702_c00001{word-spacing:8.170976pt;}
.wse18_c00001{word-spacing:8.172800pt;}
.ws16da_c00001{word-spacing:8.176320pt;}
.ws216_c00001{word-spacing:8.179200pt;}
.ws180f_c00001{word-spacing:8.181664pt;}
.wsc83_c00001{word-spacing:8.185600pt;}
.ws197b_c00001{word-spacing:8.187008pt;}
.ws8ae_c00001{word-spacing:8.192000pt;}
.ws1566_c00001{word-spacing:8.192352pt;}
.ws1407_c00001{word-spacing:8.197696pt;}
.ws75e_c00001{word-spacing:8.198400pt;}
.wsa13_c00001{word-spacing:8.203040pt;}
.wsbca_c00001{word-spacing:8.204800pt;}
.ws19c4_c00001{word-spacing:8.208384pt;}
.ws512_c00001{word-spacing:8.211200pt;}
.ws1873_c00001{word-spacing:8.213728pt;}
.wsd82_c00001{word-spacing:8.217600pt;}
.ws18f9_c00001{word-spacing:8.219072pt;}
.ws8d1_c00001{word-spacing:8.224000pt;}
.wsa14_c00001{word-spacing:8.224416pt;}
.ws197c_c00001{word-spacing:8.229760pt;}
.ws513_c00001{word-spacing:8.230400pt;}
.ws18cf_c00001{word-spacing:8.235104pt;}
.ws66d_c00001{word-spacing:8.236800pt;}
.ws2fd_c00001{word-spacing:8.243200pt;}
.ws259_c00001{word-spacing:8.249600pt;}
.wsa22_c00001{word-spacing:8.256000pt;}
.wsef0_c00001{word-spacing:8.262400pt;}
.ws1001_c00001{word-spacing:8.262816pt;}
.ws214_c00001{word-spacing:8.268800pt;}
.ws1a1_c00001{word-spacing:8.275200pt;}
.ws461_c00001{word-spacing:8.281600pt;}
.ws66e_c00001{word-spacing:8.288000pt;}
.ws486_c00001{word-spacing:8.294400pt;}
.ws1d7_c00001{word-spacing:8.300800pt;}
.ws8e7_c00001{word-spacing:8.304576pt;}
.ws514_c00001{word-spacing:8.307200pt;}
.ws1311_c00001{word-spacing:8.309664pt;}
.ws193e_c00001{word-spacing:8.309920pt;}
.ws764_c00001{word-spacing:8.313600pt;}
.ws146e_c00001{word-spacing:8.315264pt;}
.ws1a2_c00001{word-spacing:8.320000pt;}
.wsac1_c00001{word-spacing:8.320608pt;}
.ws1277_c00001{word-spacing:8.321376pt;}
.ws148e_c00001{word-spacing:8.325952pt;}
.ws215_c00001{word-spacing:8.326400pt;}
.ws127d_c00001{word-spacing:8.327232pt;}
.ws163c_c00001{word-spacing:8.331296pt;}
.ws258_c00001{word-spacing:8.332800pt;}
.ws11a1_c00001{word-spacing:8.333088pt;}
.ws1824_c00001{word-spacing:8.336640pt;}
.wsf8e_c00001{word-spacing:8.338944pt;}
.ws2fc_c00001{word-spacing:8.339200pt;}
.ws1725_c00001{word-spacing:8.341984pt;}
.wsf8f_c00001{word-spacing:8.344800pt;}
.ws25a_c00001{word-spacing:8.345600pt;}
.ws166a_c00001{word-spacing:8.347328pt;}
.wsf8d_c00001{word-spacing:8.350656pt;}
.wsc99_c00001{word-spacing:8.352000pt;}
.ws18da_c00001{word-spacing:8.352672pt;}
.ws1190_c00001{word-spacing:8.356512pt;}
.ws8e6_c00001{word-spacing:8.358016pt;}
.ws7b1_c00001{word-spacing:8.358400pt;}
.ws1217_c00001{word-spacing:8.362368pt;}
.ws161f_c00001{word-spacing:8.363360pt;}
.ws2fe_c00001{word-spacing:8.364800pt;}
.wsfa3_c00001{word-spacing:8.368224pt;}
.wsd1b_c00001{word-spacing:8.368704pt;}
.ws830_c00001{word-spacing:8.371200pt;}
.ws17fa_c00001{word-spacing:8.374048pt;}
.ws10e3_c00001{word-spacing:8.374080pt;}
.ws166b_c00001{word-spacing:8.379392pt;}
.ws11fc_c00001{word-spacing:8.379936pt;}
.ws1aae_c00001{word-spacing:8.384000pt;}
.ws17b7_c00001{word-spacing:8.384736pt;}
.wsfa2_c00001{word-spacing:8.385792pt;}
.wsd1a_c00001{word-spacing:8.390080pt;}
.ws9f5_c00001{word-spacing:8.395424pt;}
.ws11a0_c00001{word-spacing:8.397504pt;}
.ws1979_c00001{word-spacing:8.400768pt;}
.ws1310_c00001{word-spacing:8.403360pt;}
.ws161e_c00001{word-spacing:8.406112pt;}
.ws1769_c00001{word-spacing:8.411456pt;}
.ws77f_c00001{word-spacing:8.416000pt;}
.ws14f0_c00001{word-spacing:8.416800pt;}
.wsa41_c00001{word-spacing:8.422144pt;}
.ws8f2_c00001{word-spacing:8.422400pt;}
.ws16c4_c00001{word-spacing:8.427488pt;}
.ws189e_c00001{word-spacing:8.432832pt;}
.ws15a7_c00001{word-spacing:8.438176pt;}
.ws176e_c00001{word-spacing:8.443520pt;}
.ws19fe_c00001{word-spacing:8.448000pt;}
.ws9f6_c00001{word-spacing:8.448864pt;}
.ws15a8_c00001{word-spacing:8.459552pt;}
.ws88d_c00001{word-spacing:8.460800pt;}
.ws9b1_c00001{word-spacing:8.467200pt;}
.ws1f1_c00001{word-spacing:8.473600pt;}
.wsac2_c00001{word-spacing:8.475584pt;}
.ws6fd_c00001{word-spacing:8.480000pt;}
.ws565_c00001{word-spacing:8.486272pt;}
.ws6fe_c00001{word-spacing:8.486400pt;}
.ws14da_c00001{word-spacing:8.491616pt;}
.wsddf_c00001{word-spacing:8.492800pt;}
.ws15f1_c00001{word-spacing:8.496960pt;}
.wsd78_c00001{word-spacing:8.499200pt;}
.ws9f7_c00001{word-spacing:8.502304pt;}
.ws470_c00001{word-spacing:8.505600pt;}
.ws16c3_c00001{word-spacing:8.507648pt;}
.ws49_c00001{word-spacing:8.512000pt;}
.ws1703_c00001{word-spacing:8.512992pt;}
.ws1597_c00001{word-spacing:8.518336pt;}
.wsd19_c00001{word-spacing:8.523680pt;}
.wsa4d_c00001{word-spacing:8.524800pt;}
.ws18a6_c00001{word-spacing:8.529024pt;}
.ws1804_c00001{word-spacing:8.534368pt;}
.ws925_c00001{word-spacing:8.537600pt;}
.wsa12_c00001{word-spacing:8.539712pt;}
.wsc72_c00001{word-spacing:8.544000pt;}
.ws566_c00001{word-spacing:8.545056pt;}
.ws17a_c00001{word-spacing:8.550400pt;}
.ws4d4_c00001{word-spacing:8.556800pt;}
.ws179_c00001{word-spacing:8.563200pt;}
.ws3cf_c00001{word-spacing:8.569600pt;}
.ws4a_c00001{word-spacing:8.576000pt;}
.ws7e8_c00001{word-spacing:8.582400pt;}
.ws4d5_c00001{word-spacing:8.588800pt;}
.ws95c_c00001{word-spacing:8.595200pt;}
.ws68a_c00001{word-spacing:8.601600pt;}
.ws1f0_c00001{word-spacing:8.608000pt;}
.ws11fa_c00001{word-spacing:8.614176pt;}
.ws43b_c00001{word-spacing:8.614400pt;}
.ws15d1_c00001{word-spacing:8.614528pt;}
.ws43a_c00001{word-spacing:8.620800pt;}
.ws1658_c00001{word-spacing:8.625216pt;}
.wsc8a_c00001{word-spacing:8.627200pt;}
.ws14ed_c00001{word-spacing:8.630560pt;}
.ws1383_c00001{word-spacing:8.631744pt;}
.ws1d6_c00001{word-spacing:8.633600pt;}
.ws1537_c00001{word-spacing:8.635904pt;}
.ws9b2_c00001{word-spacing:8.640000pt;}
.ws16d5_c00001{word-spacing:8.641248pt;}
.ws471_c00001{word-spacing:8.646400pt;}
.ws14d9_c00001{word-spacing:8.646592pt;}
.ws120c_c00001{word-spacing:8.649312pt;}
.ws156e_c00001{word-spacing:8.651936pt;}
.wsac4_c00001{word-spacing:8.652800pt;}
.ws11e3_c00001{word-spacing:8.655168pt;}
.ws1434_c00001{word-spacing:8.657280pt;}
.ws122c_c00001{word-spacing:8.661024pt;}
.ws17b4_c00001{word-spacing:8.662624pt;}
.ws4b_c00001{word-spacing:8.665600pt;}
.ws10eb_c00001{word-spacing:8.666880pt;}
.ws1505_c00001{word-spacing:8.667968pt;}
.wsa3d_c00001{word-spacing:8.672000pt;}
.ws11e4_c00001{word-spacing:8.672736pt;}
.ws716_c00001{word-spacing:8.673312pt;}
.wsdde_c00001{word-spacing:8.678400pt;}
.ws11a6_c00001{word-spacing:8.678592pt;}
.ws1831_c00001{word-spacing:8.678656pt;}
.ws122b_c00001{word-spacing:8.684448pt;}
.wsc87_c00001{word-spacing:8.684800pt;}
.ws11a7_c00001{word-spacing:8.690304pt;}
.ws7e7_c00001{word-spacing:8.691200pt;}
.ws18d3_c00001{word-spacing:8.694688pt;}
.ws10b5_c00001{word-spacing:8.696160pt;}
.wsc68_c00001{word-spacing:8.700032pt;}
.wsc95_c00001{word-spacing:8.702016pt;}
.ws19fd_c00001{word-spacing:8.704000pt;}
.ws1772_c00001{word-spacing:8.705376pt;}
.ws148b_c00001{word-spacing:8.710720pt;}
.wsb85_c00001{word-spacing:8.713088pt;}
.ws148c_c00001{word-spacing:8.716064pt;}
.ws15f5_c00001{word-spacing:8.721408pt;}
.wsec3_c00001{word-spacing:8.723200pt;}
.wsc6a_c00001{word-spacing:8.726752pt;}
.ws10b6_c00001{word-spacing:8.731296pt;}
.ws526_c00001{word-spacing:8.732096pt;}
.wse96_c00001{word-spacing:8.736000pt;}
.ws14f9_c00001{word-spacing:8.742784pt;}
.ws188b_c00001{word-spacing:8.748128pt;}
.ws14f8_c00001{word-spacing:8.753472pt;}
.ws17b_c00001{word-spacing:8.755200pt;}
.wsc69_c00001{word-spacing:8.758816pt;}
.ws41b_c00001{word-spacing:8.761600pt;}
.ws187a_c00001{word-spacing:8.764160pt;}
.ws1a6c_c00001{word-spacing:8.774400pt;}
.ws16ae_c00001{word-spacing:8.774848pt;}
.ws195c_c00001{word-spacing:8.780192pt;}
.wsdd0_c00001{word-spacing:8.790880pt;}
.wsc73_c00001{word-spacing:8.793600pt;}
.wsac3_c00001{word-spacing:8.796224pt;}
.wsa69_c00001{word-spacing:8.801568pt;}
.ws1808_c00001{word-spacing:8.806912pt;}
.ws18c7_c00001{word-spacing:8.812256pt;}
.ws6f9_c00001{word-spacing:8.812800pt;}
.wsa68_c00001{word-spacing:8.817600pt;}
.wsc9f_c00001{word-spacing:8.819200pt;}
.ws159a_c00001{word-spacing:8.822944pt;}
.ws225_c00001{word-spacing:8.825600pt;}
.ws1401_c00001{word-spacing:8.827904pt;}
.ws4f2_c00001{word-spacing:8.832000pt;}
.ws1741_c00001{word-spacing:8.833632pt;}
.ws6f8_c00001{word-spacing:8.838400pt;}
.ws1688_c00001{word-spacing:8.844320pt;}
.wsa3c_c00001{word-spacing:8.844800pt;}
.ws14db_c00001{word-spacing:8.849664pt;}
.wsa94_c00001{word-spacing:8.851200pt;}
.ws15d_c00001{word-spacing:8.857600pt;}
.ws1687_c00001{word-spacing:8.860352pt;}
.wsd81_c00001{word-spacing:8.864000pt;}
.ws1686_c00001{word-spacing:8.865696pt;}
.ws138b_c00001{word-spacing:8.865984pt;}
.ws28c_c00001{word-spacing:8.870400pt;}
.ws686_c00001{word-spacing:8.876800pt;}
.ws1755_c00001{word-spacing:8.881728pt;}
.ws687_c00001{word-spacing:8.883200pt;}
.ws15c_c00001{word-spacing:8.889600pt;}
.ws19bd_c00001{word-spacing:8.892416pt;}
.ws773_c00001{word-spacing:8.896000pt;}
.ws95d_c00001{word-spacing:8.902400pt;}
.ws60_c00001{word-spacing:8.908800pt;}
.ws226_c00001{word-spacing:8.915200pt;}
.ws1402_c00001{word-spacing:8.917376pt;}
.ws10c9_c00001{word-spacing:8.918688pt;}
.wsb60_c00001{word-spacing:8.919136pt;}
.ws1ea_c00001{word-spacing:8.921600pt;}
.ws578_c00001{word-spacing:8.928000pt;}
.ws61_c00001{word-spacing:8.934400pt;}
.wsb5f_c00001{word-spacing:8.935168pt;}
.ws1eb_c00001{word-spacing:8.940800pt;}
.ws1796_c00001{word-spacing:8.945856pt;}
.ws603_c00001{word-spacing:8.947200pt;}
.ws4b6_c00001{word-spacing:8.951200pt;}
.ws4f3_c00001{word-spacing:8.953600pt;}
.ws1622_c00001{word-spacing:8.956544pt;}
.ws24a_c00001{word-spacing:8.959680pt;}
.ws41a_c00001{word-spacing:8.960000pt;}
.ws7ac_c00001{word-spacing:8.961888pt;}
.ws4_c00001{word-spacing:8.965536pt;}
.ws315_c00001{word-spacing:8.966400pt;}
.ws542_c00001{word-spacing:8.967232pt;}
.ws1059_c00001{word-spacing:8.971392pt;}
.ws1433_c00001{word-spacing:8.972576pt;}
.ws6fa_c00001{word-spacing:8.972800pt;}
.ws13be_c00001{word-spacing:8.977248pt;}
.ws1519_c00001{word-spacing:8.977920pt;}
.ws774_c00001{word-spacing:8.979200pt;}
.ws112d_c00001{word-spacing:8.983104pt;}
.ws19de_c00001{word-spacing:8.983264pt;}
.ws167d_c00001{word-spacing:8.988608pt;}
.ws11bb_c00001{word-spacing:8.988960pt;}
.wse1e_c00001{word-spacing:8.992000pt;}
.ws19ee_c00001{word-spacing:8.993952pt;}
.wsff5_c00001{word-spacing:8.994816pt;}
.wsbb2_c00001{word-spacing:9.000672pt;}
.wsb40_c00001{word-spacing:9.004800pt;}
.ws1058_c00001{word-spacing:9.006528pt;}
.ws196c_c00001{word-spacing:9.009984pt;}
.ws4f5_c00001{word-spacing:9.011200pt;}
.ws100d_c00001{word-spacing:9.012384pt;}
.ws196b_c00001{word-spacing:9.015328pt;}
.wsbf0_c00001{word-spacing:9.018240pt;}
.ws1421_c00001{word-spacing:9.020672pt;}
.wsc5_c00001{word-spacing:9.024096pt;}
.wsaa4_c00001{word-spacing:9.026016pt;}
.wsb04_c00001{word-spacing:9.029952pt;}
.ws138a_c00001{word-spacing:9.035808pt;}
.ws16af_c00001{word-spacing:9.036704pt;}
.wsf08_c00001{word-spacing:9.036800pt;}
.wsb62_c00001{word-spacing:9.042048pt;}
.ws1fa_c00001{word-spacing:9.047392pt;}
.ws1388_c00001{word-spacing:9.047520pt;}
.ws2e8_c00001{word-spacing:9.049600pt;}
.ws14a2_c00001{word-spacing:9.052736pt;}
.ws4f4_c00001{word-spacing:9.056000pt;}
.ws4b7_c00001{word-spacing:9.058080pt;}
.ws1518_c00001{word-spacing:9.063424pt;}
.ws16c5_c00001{word-spacing:9.068768pt;}
.ws1754_c00001{word-spacing:9.074112pt;}
.ws1a9_c00001{word-spacing:9.075200pt;}
.ws1911_c00001{word-spacing:9.079456pt;}
.wse7f_c00001{word-spacing:9.081600pt;}
.ws1857_c00001{word-spacing:9.084800pt;}
.ws17ee_c00001{word-spacing:9.090144pt;}
.wsf56_c00001{word-spacing:9.094400pt;}
.wse26_c00001{word-spacing:9.100800pt;}
.wsb5d_c00001{word-spacing:9.100832pt;}
.ws6b3_c00001{word-spacing:9.107200pt;}
.ws176b_c00001{word-spacing:9.111520pt;}
.wsdca_c00001{word-spacing:9.113600pt;}
.ws1900_c00001{word-spacing:9.116864pt;}
.ws6b4_c00001{word-spacing:9.120000pt;}
.ws1a10_c00001{word-spacing:9.122208pt;}
.ws1a5b_c00001{word-spacing:9.126400pt;}
.ws1684_c00001{word-spacing:9.127552pt;}
.wse95_c00001{word-spacing:9.132800pt;}
.ws16b6_c00001{word-spacing:9.132896pt;}
.ws199d_c00001{word-spacing:9.138240pt;}
.ws3cc_c00001{word-spacing:9.139200pt;}
.ws4b8_c00001{word-spacing:9.143584pt;}
.wsefd_c00001{word-spacing:9.152000pt;}
.ws1806_c00001{word-spacing:9.154272pt;}
.ws530_c00001{word-spacing:9.158400pt;}
.ws1838_c00001{word-spacing:9.159616pt;}
.ws1a8_c00001{word-spacing:9.164800pt;}
.ws18a8_c00001{word-spacing:9.164960pt;}
.ws9c9_c00001{word-spacing:9.171200pt;}
.ws1683_c00001{word-spacing:9.175648pt;}
.ws313_c00001{word-spacing:9.177600pt;}
.ws17e2_c00001{word-spacing:9.180992pt;}
.ws3cd_c00001{word-spacing:9.184000pt;}
.ws543_c00001{word-spacing:9.186336pt;}
.ws1a7_c00001{word-spacing:9.190400pt;}
.ws314_c00001{word-spacing:9.196800pt;}
.ws18db_c00001{word-spacing:9.197024pt;}
.wsb61_c00001{word-spacing:9.202368pt;}
.ws2a1_c00001{word-spacing:9.203200pt;}
.ws6b5_c00001{word-spacing:9.209600pt;}
.ws1917_c00001{word-spacing:9.213056pt;}
.ws8cc_c00001{word-spacing:9.216000pt;}
.ws6ce_c00001{word-spacing:9.222400pt;}
.ws6cd_c00001{word-spacing:9.228800pt;}
.ws7bc_c00001{word-spacing:9.235200pt;}
.wsea_c00001{word-spacing:9.241600pt;}
.ws682_c00001{word-spacing:9.248000pt;}
.ws231_c00001{word-spacing:9.252480pt;}
.ws681_c00001{word-spacing:9.254400pt;}
.ws16d2_c00001{word-spacing:9.255808pt;}
.ws1a3_c00001{word-spacing:9.260800pt;}
.ws1fb_c00001{word-spacing:9.261152pt;}
.ws1337_c00001{word-spacing:9.264192pt;}
.ws14dd_c00001{word-spacing:9.266496pt;}
.ws86a_c00001{word-spacing:9.267200pt;}
.ws1820_c00001{word-spacing:9.271840pt;}
.ws51a_c00001{word-spacing:9.273600pt;}
.ws1207_c00001{word-spacing:9.275904pt;}
.ws76b_c00001{word-spacing:9.277184pt;}
.ws356_c00001{word-spacing:9.280000pt;}
.ws137a_c00001{word-spacing:9.281760pt;}
.ws1767_c00001{word-spacing:9.282528pt;}
.ws798_c00001{word-spacing:9.286400pt;}
.ws11f1_c00001{word-spacing:9.287616pt;}
.ws16a9_c00001{word-spacing:9.287872pt;}
.ws3d0_c00001{word-spacing:9.292800pt;}
.ws1486_c00001{word-spacing:9.293216pt;}
.ws1471_c00001{word-spacing:9.298560pt;}
.ws357_c00001{word-spacing:9.299200pt;}
.ws128e_c00001{word-spacing:9.299328pt;}
.ws1530_c00001{word-spacing:9.303904pt;}
.ws119d_c00001{word-spacing:9.305184pt;}
.wsdcb_c00001{word-spacing:9.305600pt;}
.wsff4_c00001{word-spacing:9.311040pt;}
.wsf15_c00001{word-spacing:9.312000pt;}
.ws1694_c00001{word-spacing:9.314592pt;}
.wsb99_c00001{word-spacing:9.318400pt;}
.ws1626_c00001{word-spacing:9.319936pt;}
.ws51b_c00001{word-spacing:9.324800pt;}
.ws1859_c00001{word-spacing:9.325280pt;}
.ws11f2_c00001{word-spacing:9.328608pt;}
.wsdea_c00001{word-spacing:9.331200pt;}
.ws232_c00001{word-spacing:9.334464pt;}
.ws1858_c00001{word-spacing:9.335968pt;}
.ws924_c00001{word-spacing:9.337600pt;}
.ws100c_c00001{word-spacing:9.340320pt;}
.ws14ea_c00001{word-spacing:9.341312pt;}
.wseb_c00001{word-spacing:9.344000pt;}
.ws1357_c00001{word-spacing:9.346176pt;}
.ws189b_c00001{word-spacing:9.346656pt;}
.wsf0b_c00001{word-spacing:9.350400pt;}
.ws14c5_c00001{word-spacing:9.352000pt;}
.ws3ce_c00001{word-spacing:9.356800pt;}
.ws14e9_c00001{word-spacing:9.357344pt;}
.ws1379_c00001{word-spacing:9.357888pt;}
.wsa2c_c00001{word-spacing:9.362688pt;}
.ws16b9_c00001{word-spacing:9.368032pt;}
.wsec2_c00001{word-spacing:9.369600pt;}
.ws1488_c00001{word-spacing:9.373376pt;}
.ws16ba_c00001{word-spacing:9.378720pt;}
.ws1f9_c00001{word-spacing:9.384064pt;}
.wsaa2_c00001{word-spacing:9.389408pt;}
.ws1422_c00001{word-spacing:9.394752pt;}
.ws1aa0_c00001{word-spacing:9.401600pt;}
.wsdd2_c00001{word-spacing:9.405440pt;}
.ws1a56_c00001{word-spacing:9.408000pt;}
.ws305_c00001{word-spacing:9.414400pt;}
.ws17f8_c00001{word-spacing:9.421472pt;}
.ws1487_c00001{word-spacing:9.426816pt;}
.ws9b3_c00001{word-spacing:9.427200pt;}
.ws19f7_c00001{word-spacing:9.432160pt;}
.ws307_c00001{word-spacing:9.433600pt;}
.ws16f2_c00001{word-spacing:9.437504pt;}
.ws9cd_c00001{word-spacing:9.440000pt;}
.ws15d5_c00001{word-spacing:9.442848pt;}
.ws195d_c00001{word-spacing:9.448192pt;}
.ws6c8_c00001{word-spacing:9.452800pt;}
.wsaa5_c00001{word-spacing:9.453536pt;}
.wsaa3_c00001{word-spacing:9.458880pt;}
.wsb9d_c00001{word-spacing:9.459200pt;}
.ws9b4_c00001{word-spacing:9.465600pt;}
.ws17a1_c00001{word-spacing:9.469568pt;}
.ws86d_c00001{word-spacing:9.472000pt;}
.ws17fd_c00001{word-spacing:9.474912pt;}
.ws8bf_c00001{word-spacing:9.478400pt;}
.ws3f0_c00001{word-spacing:9.484800pt;}
.ws166d_c00001{word-spacing:9.485600pt;}
.ws1868_c00001{word-spacing:9.490944pt;}
.ws4db_c00001{word-spacing:9.491200pt;}
.ws971_c00001{word-spacing:9.497600pt;}
.ws1967_c00001{word-spacing:9.501632pt;}
.ws7e4_c00001{word-spacing:9.504000pt;}
.ws1896_c00001{word-spacing:9.506976pt;}
.wse4a_c00001{word-spacing:9.510400pt;}
.ws9d1_c00001{word-spacing:9.512320pt;}
.ws555_c00001{word-spacing:9.516800pt;}
.ws391_c00001{word-spacing:9.523200pt;}
.ws1c6_c00001{word-spacing:9.529600pt;}
.wse0c_c00001{word-spacing:9.536000pt;}
.ws3ef_c00001{word-spacing:9.542400pt;}
.ws306_c00001{word-spacing:9.548800pt;}
.ws8ac_c00001{word-spacing:9.555200pt;}
.ws292_c00001{word-spacing:9.561600pt;}
.ws11f0_c00001{word-spacing:9.562848pt;}
.ws1c4_c00001{word-spacing:9.568000pt;}
.ws13a4_c00001{word-spacing:9.568704pt;}
.ws291_c00001{word-spacing:9.574400pt;}
.ws1008_c00001{word-spacing:9.574560pt;}
.ws115d_c00001{word-spacing:9.580416pt;}
.ws129_c00001{word-spacing:9.580800pt;}
.ws6aa_c00001{word-spacing:9.581792pt;}
.ws86c_c00001{word-spacing:9.587200pt;}
.ws138e_c00001{word-spacing:9.592128pt;}
.ws142f_c00001{word-spacing:9.592480pt;}
.ws2da_c00001{word-spacing:9.593600pt;}
.ws13d_c00001{word-spacing:9.597824pt;}
.ws12cc_c00001{word-spacing:9.597984pt;}
.ws7e5_c00001{word-spacing:9.600000pt;}
.ws15bd_c00001{word-spacing:9.603168pt;}
.ws1009_c00001{word-spacing:9.603840pt;}
.ws1c5_c00001{word-spacing:9.606400pt;}
.ws14b2_c00001{word-spacing:9.608512pt;}
.ws118a_c00001{word-spacing:9.609696pt;}
.ws128_c00001{word-spacing:9.612800pt;}
.ws1500_c00001{word-spacing:9.613856pt;}
.ws5e5_c00001{word-spacing:9.619200pt;}
.ws1006_c00001{word-spacing:9.621408pt;}
.ws1a3e_c00001{word-spacing:9.624544pt;}
.ws93e_c00001{word-spacing:9.625600pt;}
.ws115c_c00001{word-spacing:9.627264pt;}
.ws8be_c00001{word-spacing:9.632000pt;}
.ws1007_c00001{word-spacing:9.633120pt;}
.ws9da_c00001{word-spacing:9.638400pt;}
.ws128d_c00001{word-spacing:9.638976pt;}
.ws17a2_c00001{word-spacing:9.640576pt;}
.ws129a_c00001{word-spacing:9.644832pt;}
.ws1098_c00001{word-spacing:9.650688pt;}
.ws1aa1_c00001{word-spacing:9.651200pt;}
.wscff_c00001{word-spacing:9.656544pt;}
.wsa2b_c00001{word-spacing:9.656608pt;}
.wsca4_c00001{word-spacing:9.657600pt;}
.wse03_c00001{word-spacing:9.664000pt;}
.ws881_c00001{word-spacing:9.667296pt;}
.wsd00_c00001{word-spacing:9.668256pt;}
.ws735_c00001{word-spacing:9.672640pt;}
.ws5b0_c00001{word-spacing:9.676800pt;}
.ws1759_c00001{word-spacing:9.677984pt;}
.wse28_c00001{word-spacing:9.683200pt;}
.ws882_c00001{word-spacing:9.683328pt;}
.ws15b4_c00001{word-spacing:9.688672pt;}
.ws1627_c00001{word-spacing:9.694016pt;}
.ws1758_c00001{word-spacing:9.699360pt;}
.ws18d4_c00001{word-spacing:9.704704pt;}
.wsde7_c00001{word-spacing:9.715200pt;}
.ws15d4_c00001{word-spacing:9.715392pt;}
.ws8ed_c00001{word-spacing:9.726080pt;}
.wse25_c00001{word-spacing:9.734400pt;}
.ws1435_c00001{word-spacing:9.736768pt;}
.wsa39_c00001{word-spacing:9.740800pt;}
.ws18f5_c00001{word-spacing:9.742112pt;}
.ws7a1_c00001{word-spacing:9.747200pt;}
.ws70_c00001{word-spacing:9.752800pt;}
.wseb0_c00001{word-spacing:9.753600pt;}
.ws44e_c00001{word-spacing:9.760000pt;}
.ws18de_c00001{word-spacing:9.763488pt;}
.wse83_c00001{word-spacing:9.766400pt;}
.ws456_c00001{word-spacing:9.772800pt;}
.ws6a9_c00001{word-spacing:9.774176pt;}
.wsa3a_c00001{word-spacing:9.779200pt;}
.ws19e4_c00001{word-spacing:9.779520pt;}
.ws15e9_c00001{word-spacing:9.784864pt;}
.ws3af_c00001{word-spacing:9.785600pt;}
.ws186b_c00001{word-spacing:9.790208pt;}
.wsd9a_c00001{word-spacing:9.792000pt;}
.ws1a2b_c00001{word-spacing:9.795552pt;}
.wsb9e_c00001{word-spacing:9.798400pt;}
.ws845_c00001{word-spacing:9.804800pt;}
.ws18f6_c00001{word-spacing:9.806240pt;}
.wse29_c00001{word-spacing:9.811200pt;}
.ws142e_c00001{word-spacing:9.811584pt;}
.ws6f_c00001{word-spacing:9.816928pt;}
.wsba0_c00001{word-spacing:9.817600pt;}
.ws457_c00001{word-spacing:9.824000pt;}
.ws3dd_c00001{word-spacing:9.830400pt;}
.ws1949_c00001{word-spacing:9.832960pt;}
.wsb9f_c00001{word-spacing:9.836800pt;}
.ws4ac_c00001{word-spacing:9.843200pt;}
.ws19da_c00001{word-spacing:9.843648pt;}
.wsd0b_c00001{word-spacing:9.849600pt;}
.ws33_c00001{word-spacing:9.856000pt;}
.ws7a0_c00001{word-spacing:9.862400pt;}
.wsfe5_c00001{word-spacing:9.867360pt;}
.wsd09_c00001{word-spacing:9.868800pt;}
.ws877_c00001{word-spacing:9.875200pt;}
.wsfc1_c00001{word-spacing:9.879072pt;}
.ws1c0_c00001{word-spacing:9.881600pt;}
.ws18c9_c00001{word-spacing:9.886400pt;}
.ws829_c00001{word-spacing:9.888000pt;}
.ws1386_c00001{word-spacing:9.890784pt;}
.ws1860_c00001{word-spacing:9.891744pt;}
.ws3ae_c00001{word-spacing:9.894400pt;}
.ws860_c00001{word-spacing:9.900800pt;}
.ws5b1_c00001{word-spacing:9.907200pt;}
.ws18fe_c00001{word-spacing:9.907776pt;}
.ws16de_c00001{word-spacing:9.913120pt;}
.ws34_c00001{word-spacing:9.913600pt;}
.ws1283_c00001{word-spacing:9.914208pt;}
.ws502_c00001{word-spacing:9.918464pt;}
.ws56a_c00001{word-spacing:9.920000pt;}
.wsfe4_c00001{word-spacing:9.920064pt;}
.ws905_c00001{word-spacing:9.923808pt;}
.wsfbf_c00001{word-spacing:9.925920pt;}
.ws8fb_c00001{word-spacing:9.926400pt;}
.wsa7b_c00001{word-spacing:9.929152pt;}
.ws1095_c00001{word-spacing:9.931776pt;}
.ws7a2_c00001{word-spacing:9.932800pt;}
.wsb4e_c00001{word-spacing:9.934496pt;}
.ws12bb_c00001{word-spacing:9.937632pt;}
.ws87e_c00001{word-spacing:9.939200pt;}
.ws1264_c00001{word-spacing:9.943488pt;}
.wsfe6_c00001{word-spacing:9.949344pt;}
.wsee0_c00001{word-spacing:9.952000pt;}
.ws1097_c00001{word-spacing:9.955200pt;}
.wsde9_c00001{word-spacing:9.958400pt;}
.ws12fd_c00001{word-spacing:9.961056pt;}
.ws71_c00001{word-spacing:9.961216pt;}
.wsca3_c00001{word-spacing:9.964800pt;}
.ws1783_c00001{word-spacing:9.966560pt;}
.wsd01_c00001{word-spacing:9.966912pt;}
.wse90_c00001{word-spacing:9.971200pt;}
.ws1274_c00001{word-spacing:9.972768pt;}
.ws1449_c00001{word-spacing:9.977248pt;}
.ws1094_c00001{word-spacing:9.978624pt;}
.wsfc2_c00001{word-spacing:9.984480pt;}
.ws18f4_c00001{word-spacing:9.987936pt;}
.ws734_c00001{word-spacing:9.993280pt;}
.ws1093_c00001{word-spacing:9.996192pt;}
.ws4ad_c00001{word-spacing:9.996800pt;}
.wsc49_c00001{word-spacing:9.998624pt;}
.ws172e_c00001{word-spacing:10.003968pt;}
.wsa7c_c00001{word-spacing:10.009312pt;}
.wsfc0_c00001{word-spacing:10.013760pt;}
.ws1608_c00001{word-spacing:10.014656pt;}
.wsebe_c00001{word-spacing:10.016000pt;}
.ws12d2_c00001{word-spacing:10.019616pt;}
.ws17b2_c00001{word-spacing:10.020000pt;}
.wsbaf_c00001{word-spacing:10.022400pt;}
.ws17b3_c00001{word-spacing:10.030688pt;}
.wsbd8_c00001{word-spacing:10.036032pt;}
.ws1282_c00001{word-spacing:10.037184pt;}
.ws15ed_c00001{word-spacing:10.046720pt;}
.wsd34_c00001{word-spacing:10.048000pt;}
.ws183a_c00001{word-spacing:10.052064pt;}
.wsebf_c00001{word-spacing:10.054400pt;}
.ws179c_c00001{word-spacing:10.057408pt;}
.ws26_c00001{word-spacing:10.060800pt;}
.ws1936_c00001{word-spacing:10.062752pt;}
.wscda_c00001{word-spacing:10.067200pt;}
.ws1607_c00001{word-spacing:10.068096pt;}
.wsead_c00001{word-spacing:10.073600pt;}
.ws949_c00001{word-spacing:10.084128pt;}
.wsae6_c00001{word-spacing:10.086400pt;}
.ws94a_c00001{word-spacing:10.089472pt;}
.ws561_c00001{word-spacing:10.092800pt;}
.ws75f_c00001{word-spacing:10.099200pt;}
.wsd33_c00001{word-spacing:10.105600pt;}
.wsd08_c00001{word-spacing:10.112000pt;}
.ws164c_c00001{word-spacing:10.116192pt;}
.wsc74_c00001{word-spacing:10.118400pt;}
.ws1953_c00001{word-spacing:10.121536pt;}
.wsadc_c00001{word-spacing:10.124800pt;}
.ws18c5_c00001{word-spacing:10.126880pt;}
.ws92_c00001{word-spacing:10.131200pt;}
.ws1821_c00001{word-spacing:10.132224pt;}
.wsa28_c00001{word-spacing:10.137568pt;}
.ws387_c00001{word-spacing:10.137600pt;}
.ws1822_c00001{word-spacing:10.142912pt;}
.ws7bb_c00001{word-spacing:10.144000pt;}
.ws35e_c00001{word-spacing:10.148256pt;}
.ws273_c00001{word-spacing:10.150400pt;}
.ws5af_c00001{word-spacing:10.156800pt;}
.ws7ba_c00001{word-spacing:10.163200pt;}
.ws3f3_c00001{word-spacing:10.169600pt;}
.ws2de_c00001{word-spacing:10.176000pt;}
.ws1807_c00001{word-spacing:10.180320pt;}
.ws3f2_c00001{word-spacing:10.182400pt;}
.ws8c8_c00001{word-spacing:10.188800pt;}
.ws956_c00001{word-spacing:10.195200pt;}
.ws40a_c00001{word-spacing:10.201600pt;}
.ws12ba_c00001{word-spacing:10.207008pt;}
.ws13b_c00001{word-spacing:10.208000pt;}
.wsae3_c00001{word-spacing:10.214400pt;}
.wsc03_c00001{word-spacing:10.217728pt;}
.ws25_c00001{word-spacing:10.220800pt;}
.ws1481_c00001{word-spacing:10.223072pt;}
.wsf72_c00001{word-spacing:10.224576pt;}
.ws875_c00001{word-spacing:10.227200pt;}
.wsc44_c00001{word-spacing:10.233600pt;}
.ws162a_c00001{word-spacing:10.233760pt;}
.ws1508_c00001{word-spacing:10.239104pt;}
.ws5ae_c00001{word-spacing:10.240000pt;}
.ws115f_c00001{word-spacing:10.242144pt;}
.ws16fe_c00001{word-spacing:10.244448pt;}
.wsf20_c00001{word-spacing:10.246400pt;}
.ws1160_c00001{word-spacing:10.248000pt;}
.ws180_c00001{word-spacing:10.249792pt;}
.ws1999_c00001{word-spacing:10.252800pt;}
.ws1011_c00001{word-spacing:10.253856pt;}
.ws1640_c00001{word-spacing:10.255136pt;}
.wsdb9_c00001{word-spacing:10.259200pt;}
.wsf71_c00001{word-spacing:10.259712pt;}
.ws1a25_c00001{word-spacing:10.260480pt;}
.ws1067_c00001{word-spacing:10.265568pt;}
.ws93_c00001{word-spacing:10.265600pt;}
.ws189a_c00001{word-spacing:10.265824pt;}
.ws72_c00001{word-spacing:10.271168pt;}
.wsf98_c00001{word-spacing:10.271424pt;}
.wseae_c00001{word-spacing:10.272000pt;}
.ws17d5_c00001{word-spacing:10.276512pt;}
.wsc96_c00001{word-spacing:10.277280pt;}
.ws1adc_c00001{word-spacing:10.278400pt;}
.ws1430_c00001{word-spacing:10.281856pt;}
.wsf9c_c00001{word-spacing:10.283136pt;}
.wsee2_c00001{word-spacing:10.284800pt;}
.ws1a26_c00001{word-spacing:10.287200pt;}
.ws1249_c00001{word-spacing:10.288992pt;}
.ws1a27_c00001{word-spacing:10.292544pt;}
.wsc76_c00001{word-spacing:10.294848pt;}
.ws40b_c00001{word-spacing:10.297600pt;}
.wsf97_c00001{word-spacing:10.300704pt;}
.wsd4e_c00001{word-spacing:10.303232pt;}
.wse99_c00001{word-spacing:10.304000pt;}
.ws101f_c00001{word-spacing:10.306560pt;}
.ws1879_c00001{word-spacing:10.308576pt;}
.ws94_c00001{word-spacing:10.310400pt;}
.ws1161_c00001{word-spacing:10.312416pt;}
.ws67d_c00001{word-spacing:10.313088pt;}
.ws18ca_c00001{word-spacing:10.313920pt;}
.ws1785_c00001{word-spacing:10.319264pt;}
.ws172b_c00001{word-spacing:10.324608pt;}
.ws16b0_c00001{word-spacing:10.329952pt;}
.wsd4d_c00001{word-spacing:10.335296pt;}
.ws16dd_c00001{word-spacing:10.340640pt;}
.wsce2_c00001{word-spacing:10.351328pt;}
.wse5d_c00001{word-spacing:10.355200pt;}
.ws17d7_c00001{word-spacing:10.362016pt;}
.ws149f_c00001{word-spacing:10.367360pt;}
.wsf19_c00001{word-spacing:10.368000pt;}
.wsea5_c00001{word-spacing:10.374400pt;}
.wse5e_c00001{word-spacing:10.380800pt;}
.ws19c9_c00001{word-spacing:10.388736pt;}
.wse84_c00001{word-spacing:10.393600pt;}
.ws1a1a_c00001{word-spacing:10.399424pt;}
.ws14c8_c00001{word-spacing:10.404768pt;}
.wsea4_c00001{word-spacing:10.406400pt;}
.ws1835_c00001{word-spacing:10.410112pt;}
.wscd2_c00001{word-spacing:10.412800pt;}
.ws14a0_c00001{word-spacing:10.415456pt;}
.ws5a6_c00001{word-spacing:10.425600pt;}
.ws1786_c00001{word-spacing:10.426144pt;}
.ws623_c00001{word-spacing:10.431488pt;}
.ws694_c00001{word-spacing:10.432000pt;}
.ws1779_c00001{word-spacing:10.436832pt;}
.ws3d8_c00001{word-spacing:10.438400pt;}
.ws19d9_c00001{word-spacing:10.442176pt;}
.ws272_c00001{word-spacing:10.444800pt;}
.wsc48_c00001{word-spacing:10.447520pt;}
.wsae7_c00001{word-spacing:10.451200pt;}
.ws17d4_c00001{word-spacing:10.452864pt;}
.wsbcd_c00001{word-spacing:10.457600pt;}
.ws1448_c00001{word-spacing:10.463552pt;}
.wsf00_c00001{word-spacing:10.464000pt;}
.ws3b9_c00001{word-spacing:10.470400pt;}
.ws19c8_c00001{word-spacing:10.474240pt;}
.ws92d_c00001{word-spacing:10.476800pt;}
.ws5a5_c00001{word-spacing:10.483200pt;}
.ws699_c00001{word-spacing:10.489600pt;}
.ws182c_c00001{word-spacing:10.495616pt;}
.ws4fc_c00001{word-spacing:10.496000pt;}
.wsafa_c00001{word-spacing:10.502400pt;}
.ws79c_c00001{word-spacing:10.508800pt;}
.wsf55_c00001{word-spacing:10.515200pt;}
.ws3f8_c00001{word-spacing:10.521600pt;}
.ws161c_c00001{word-spacing:10.522336pt;}
.ws3b8_c00001{word-spacing:10.528000pt;}
.ws73e_c00001{word-spacing:10.534400pt;}
.ws1a2f_c00001{word-spacing:10.538368pt;}
.ws400_c00001{word-spacing:10.540800pt;}
.ws5e9_c00001{word-spacing:10.543712pt;}
.wsc92_c00001{word-spacing:10.546656pt;}
.wsbcc_c00001{word-spacing:10.547200pt;}
.ws1784_c00001{word-spacing:10.549056pt;}
.ws1243_c00001{word-spacing:10.552512pt;}
.ws9d9_c00001{word-spacing:10.553600pt;}
.ws155c_c00001{word-spacing:10.554400pt;}
.ws179f_c00001{word-spacing:10.559744pt;}
.ws80e_c00001{word-spacing:10.560000pt;}
.ws1836_c00001{word-spacing:10.565088pt;}
.ws836_c00001{word-spacing:10.566400pt;}
.ws10f0_c00001{word-spacing:10.570080pt;}
.ws1454_c00001{word-spacing:10.570432pt;}
.ws3d9_c00001{word-spacing:10.572800pt;}
.ws1794_c00001{word-spacing:10.575776pt;}
.ws117a_c00001{word-spacing:10.575936pt;}
.ws96e_c00001{word-spacing:10.579200pt;}
.ws15c8_c00001{word-spacing:10.581120pt;}
.ws1384_c00001{word-spacing:10.581792pt;}
.wscd0_c00001{word-spacing:10.585600pt;}
.ws1455_c00001{word-spacing:10.586464pt;}
.ws93f_c00001{word-spacing:10.592000pt;}
.wsc91_c00001{word-spacing:10.593504pt;}
.wsc0a_c00001{word-spacing:10.598400pt;}
.ws117b_c00001{word-spacing:10.599360pt;}
.ws1737_c00001{word-spacing:10.602496pt;}
.ws173_c00001{word-spacing:10.605216pt;}
.ws1553_c00001{word-spacing:10.607840pt;}
.ws10f6_c00001{word-spacing:10.611072pt;}
.ws160e_c00001{word-spacing:10.613184pt;}
.ws1054_c00001{word-spacing:10.616928pt;}
.wsa2f_c00001{word-spacing:10.618528pt;}
.ws2b7_c00001{word-spacing:10.622784pt;}
.ws19b1_c00001{word-spacing:10.623872pt;}
.ws1346_c00001{word-spacing:10.628640pt;}
.ws396_c00001{word-spacing:10.629216pt;}
.ws12e7_c00001{word-spacing:10.634496pt;}
.ws397_c00001{word-spacing:10.634560pt;}
.ws73f_c00001{word-spacing:10.636800pt;}
.ws1676_c00001{word-spacing:10.639904pt;}
.ws912_c00001{word-spacing:10.643200pt;}
.ws174c_c00001{word-spacing:10.645248pt;}
.ws80f_c00001{word-spacing:10.649600pt;}
.wsa2d_c00001{word-spacing:10.650592pt;}
.ws16a2_c00001{word-spacing:10.655936pt;}
.ws13ae_c00001{word-spacing:10.657920pt;}
.ws165c_c00001{word-spacing:10.661280pt;}
.ws174d_c00001{word-spacing:10.666624pt;}
.ws1830_c00001{word-spacing:10.671968pt;}
.ws878_c00001{word-spacing:10.675200pt;}
.wsa2e_c00001{word-spacing:10.677312pt;}
.wsaeb_c00001{word-spacing:10.681600pt;}
.ws19a9_c00001{word-spacing:10.682656pt;}
.ws1661_c00001{word-spacing:10.688000pt;}
.ws16a3_c00001{word-spacing:10.693344pt;}
.ws7dc_c00001{word-spacing:10.694400pt;}
.ws15a9_c00001{word-spacing:10.704032pt;}
.ws1912_c00001{word-spacing:10.709376pt;}
.wsb8d_c00001{word-spacing:10.713600pt;}
.ws554_c00001{word-spacing:10.720000pt;}
.ws161b_c00001{word-spacing:10.725408pt;}
.ws80d_c00001{word-spacing:10.730752pt;}
.wsb8c_c00001{word-spacing:10.732800pt;}
.ws1892_c00001{word-spacing:10.736096pt;}
.wsaea_c00001{word-spacing:10.739200pt;}
.ws1716_c00001{word-spacing:10.741440pt;}
.ws3b3_c00001{word-spacing:10.745600pt;}
.ws18c3_c00001{word-spacing:10.746784pt;}
.ws2a7_c00001{word-spacing:10.752000pt;}
.wscc9_c00001{word-spacing:10.757472pt;}
.ws3b4_c00001{word-spacing:10.758400pt;}
.ws1875_c00001{word-spacing:10.762816pt;}
.ws1a9b_c00001{word-spacing:10.764800pt;}
.ws1625_c00001{word-spacing:10.768160pt;}
.wsaec_c00001{word-spacing:10.771200pt;}
.ws18b8_c00001{word-spacing:10.773504pt;}
.ws9c4_c00001{word-spacing:10.777600pt;}
.ws1227_c00001{word-spacing:10.780896pt;}
.ws2a5_c00001{word-spacing:10.784000pt;}
.ws80c_c00001{word-spacing:10.784192pt;}
.ws9c3_c00001{word-spacing:10.790400pt;}
.ws1727_c00001{word-spacing:10.794880pt;}
.ws2a6_c00001{word-spacing:10.796800pt;}
.ws72b_c00001{word-spacing:10.803200pt;}
.wsb8e_c00001{word-spacing:10.809600pt;}
.ws651_c00001{word-spacing:10.816000pt;}
.ws652_c00001{word-spacing:10.822400pt;}
.ws13af_c00001{word-spacing:10.827744pt;}
.wsa95_c00001{word-spacing:10.828800pt;}
.ws72a_c00001{word-spacing:10.835200pt;}
.ws5a8_c00001{word-spacing:10.841600pt;}
.ws558_c00001{word-spacing:10.848000pt;}
.ws6ba_c00001{word-spacing:10.854400pt;}
.ws15d9_c00001{word-spacing:10.859008pt;}
.ws410_c00001{word-spacing:10.860800pt;}
.ws1934_c00001{word-spacing:10.864352pt;}
.ws55a_c00001{word-spacing:10.867200pt;}
.ws19df_c00001{word-spacing:10.869696pt;}
.ws559_c00001{word-spacing:10.873600pt;}
.ws11d5_c00001{word-spacing:10.874592pt;}
.ws183e_c00001{word-spacing:10.875040pt;}
.ws553_c00001{word-spacing:10.880000pt;}
.ws18a2_c00001{word-spacing:10.880384pt;}
.ws110a_c00001{word-spacing:10.880448pt;}
.ws165d_c00001{word-spacing:10.885728pt;}
.ws13a7_c00001{word-spacing:10.886304pt;}
.wseb5_c00001{word-spacing:10.886400pt;}
.ws16f6_c00001{word-spacing:10.891072pt;}
.wsce5_c00001{word-spacing:10.892160pt;}
.ws411_c00001{word-spacing:10.892800pt;}
.ws14a3_c00001{word-spacing:10.896416pt;}
.wse01_c00001{word-spacing:10.899200pt;}
.ws1894_c00001{word-spacing:10.907104pt;}
.ws119b_c00001{word-spacing:10.909728pt;}
.wsbfb_c00001{word-spacing:10.912000pt;}
.ws16ac_c00001{word-spacing:10.912448pt;}
.ws11d4_c00001{word-spacing:10.915584pt;}
.wseb6_c00001{word-spacing:10.918400pt;}
.ws1226_c00001{word-spacing:10.921440pt;}
.ws6bb_c00001{word-spacing:10.924800pt;}
.ws119c_c00001{word-spacing:10.927296pt;}
.ws1895_c00001{word-spacing:10.933824pt;}
.ws19b0_c00001{word-spacing:10.944512pt;}
.ws1935_c00001{word-spacing:10.949856pt;}
.ws9b9_c00001{word-spacing:10.950400pt;}
.ws152c_c00001{word-spacing:10.955200pt;}
.ws12d6_c00001{word-spacing:10.956576pt;}
.ws19fc_c00001{word-spacing:10.956800pt;}
.ws1587_c00001{word-spacing:10.960544pt;}
.ws15d3_c00001{word-spacing:10.965888pt;}
.ws1a4d_c00001{word-spacing:10.969600pt;}
.ws1782_c00001{word-spacing:10.971232pt;}
.ws1225_c00001{word-spacing:10.974144pt;}
.ws96_c00001{word-spacing:10.976000pt;}
.ws1423_c00001{word-spacing:10.976576pt;}
.ws14b7_c00001{word-spacing:10.981920pt;}
.ws70d_c00001{word-spacing:10.988800pt;}
.ws1b4_c00001{word-spacing:10.992608pt;}
.wsa29_c00001{word-spacing:10.997952pt;}
.wsf1a_c00001{word-spacing:11.001600pt;}
.ws177a_c00001{word-spacing:11.003296pt;}
.ws15aa_c00001{word-spacing:11.013984pt;}
.ws821_c00001{word-spacing:11.027200pt;}
.ws1816_c00001{word-spacing:11.030016pt;}
.wse54_c00001{word-spacing:11.033600pt;}
.wseed_c00001{word-spacing:11.040000pt;}
.ws189f_c00001{word-spacing:11.040704pt;}
.ws547_c00001{word-spacing:11.046400pt;}
.ws11d6_c00001{word-spacing:11.050272pt;}
.ws1b3_c00001{word-spacing:11.051392pt;}
.ws725_c00001{word-spacing:11.059200pt;}
.ws1ae_c00001{word-spacing:11.062080pt;}
.ws9dd_c00001{word-spacing:11.065600pt;}
.ws1927_c00001{word-spacing:11.067424pt;}
.wsf2a_c00001{word-spacing:11.072000pt;}
.ws194b_c00001{word-spacing:11.072768pt;}
.ws74d_c00001{word-spacing:11.078112pt;}
.ws87d_c00001{word-spacing:11.078400pt;}
.ws168d_c00001{word-spacing:11.088800pt;}
.ws546_c00001{word-spacing:11.091200pt;}
.ws56f_c00001{word-spacing:11.097600pt;}
.ws99e_c00001{word-spacing:11.104000pt;}
.ws18c2_c00001{word-spacing:11.104832pt;}
.ws59f_c00001{word-spacing:11.110400pt;}
.ws71a_c00001{word-spacing:11.116800pt;}
.ws9e0_c00001{word-spacing:11.123200pt;}
.ws318_c00001{word-spacing:11.129600pt;}
.ws168c_c00001{word-spacing:11.131552pt;}
.ws132a_c00001{word-spacing:11.132256pt;}
.ws59b_c00001{word-spacing:11.136000pt;}
.ws1938_c00001{word-spacing:11.136896pt;}
.ws973_c00001{word-spacing:11.142400pt;}
.wsda3_c00001{word-spacing:11.148800pt;}
.ws316_c00001{word-spacing:11.155200pt;}
.wsa89_c00001{word-spacing:11.161600pt;}
.ws56e_c00001{word-spacing:11.168000pt;}
.ws1976_c00001{word-spacing:11.174304pt;}
.ws58e_c00001{word-spacing:11.174400pt;}
.ws820_c00001{word-spacing:11.180800pt;}
.ws11d3_c00001{word-spacing:11.184960pt;}
.ws1700_c00001{word-spacing:11.184992pt;}
.ws95_c00001{word-spacing:11.187200pt;}
.ws1864_c00001{word-spacing:11.190336pt;}
.ws9df_c00001{word-spacing:11.193600pt;}
.ws14cf_c00001{word-spacing:11.195680pt;}
.ws5a0_c00001{word-spacing:11.200000pt;}
.ws2c8_c00001{word-spacing:11.201024pt;}
.ws12fe_c00001{word-spacing:11.202528pt;}
.ws1ad_c00001{word-spacing:11.206368pt;}
.wsa4a_c00001{word-spacing:11.206400pt;}
.ws126d_c00001{word-spacing:11.208384pt;}
.ws1588_c00001{word-spacing:11.211712pt;}
.wse92_c00001{word-spacing:11.212800pt;}
.ws10f2_c00001{word-spacing:11.214240pt;}
.ws16f7_c00001{word-spacing:11.217056pt;}
.wscea_c00001{word-spacing:11.219200pt;}
.ws10f1_c00001{word-spacing:11.220096pt;}
.wsafd_c00001{word-spacing:11.222400pt;}
.ws548_c00001{word-spacing:11.225600pt;}
.wsaad_c00001{word-spacing:11.225952pt;}
.ws1828_c00001{word-spacing:11.227744pt;}
.ws1104_c00001{word-spacing:11.231808pt;}
.wse4b_c00001{word-spacing:11.232000pt;}
.ws186a_c00001{word-spacing:11.233088pt;}
.wseb8_c00001{word-spacing:11.238400pt;}
.ws19ae_c00001{word-spacing:11.238432pt;}
.ws1926_c00001{word-spacing:11.243776pt;}
.ws1611_c00001{word-spacing:11.249120pt;}
.ws124a_c00001{word-spacing:11.249376pt;}
.ws19d6_c00001{word-spacing:11.254464pt;}
.ws124b_c00001{word-spacing:11.255232pt;}
.ws126c_c00001{word-spacing:11.261088pt;}
.ws1526_c00001{word-spacing:11.270496pt;}
.ws846_c00001{word-spacing:11.273088pt;}
.ws2c6_c00001{word-spacing:11.275840pt;}
.ws2c7_c00001{word-spacing:11.281184pt;}
.ws152b_c00001{word-spacing:11.286528pt;}
.ws895_c00001{word-spacing:11.291872pt;}
.ws152d_c00001{word-spacing:11.297216pt;}
.wsac6_c00001{word-spacing:11.302400pt;}
.ws18d6_c00001{word-spacing:11.302560pt;}
.ws894_c00001{word-spacing:11.307904pt;}
.ws1527_c00001{word-spacing:11.313248pt;}
.wse2d_c00001{word-spacing:11.315200pt;}
.ws1551_c00001{word-spacing:11.323936pt;}
.ws317_c00001{word-spacing:11.328000pt;}
.wsc00_c00001{word-spacing:11.334400pt;}
.wsb4a_c00001{word-spacing:11.334624pt;}
.ws706_c00001{word-spacing:11.340800pt;}
.ws8d8_c00001{word-spacing:11.347200pt;}
.wscec_c00001{word-spacing:11.353600pt;}
.wse0d_c00001{word-spacing:11.366400pt;}
.ws184b_c00001{word-spacing:11.377376pt;}
.ws189d_c00001{word-spacing:11.382720pt;}
.ws4d7_c00001{word-spacing:11.385600pt;}
.ws184c_c00001{word-spacing:11.388064pt;}
.wscf9_c00001{word-spacing:11.392000pt;}
.wsca8_c00001{word-spacing:11.398400pt;}
.ws19e7_c00001{word-spacing:11.398752pt;}
.ws9aa_c00001{word-spacing:11.404800pt;}
.ws3a6_c00001{word-spacing:11.411200pt;}
.wsf4f_c00001{word-spacing:11.417600pt;}
.ws1946_c00001{word-spacing:11.420128pt;}
.wsb88_c00001{word-spacing:11.424000pt;}
.ws1928_c00001{word-spacing:11.425472pt;}
.wsd75_c00001{word-spacing:11.430400pt;}
.ws7e0_c00001{word-spacing:11.436800pt;}
.ws707_c00001{word-spacing:11.443200pt;}
.wsa1f_c00001{word-spacing:11.449600pt;}
.ws3a7_c00001{word-spacing:11.456000pt;}
.wsf9_c00001{word-spacing:11.462400pt;}
.ws667_c00001{word-spacing:11.468800pt;}
.wsa0_c00001{word-spacing:11.475200pt;}
.ws7df_c00001{word-spacing:11.481600pt;}
.ws8d9_c00001{word-spacing:11.488000pt;}
.wsa20_c00001{word-spacing:11.494400pt;}
.ws13ad_c00001{word-spacing:11.495328pt;}
.wsac8_c00001{word-spacing:11.500800pt;}
.ws124c_c00001{word-spacing:11.507040pt;}
.ws92c_c00001{word-spacing:11.507200pt;}
.wsa5b_c00001{word-spacing:11.510976pt;}
.wsbd9_c00001{word-spacing:11.513600pt;}
.ws18e3_c00001{word-spacing:11.516320pt;}
.ws9a9_c00001{word-spacing:11.520000pt;}
.ws1466_c00001{word-spacing:11.521664pt;}
.ws12c5_c00001{word-spacing:11.524608pt;}
.wsfa_c00001{word-spacing:11.526400pt;}
.ws150b_c00001{word-spacing:11.527008pt;}
.ws12ff_c00001{word-spacing:11.530464pt;}
.ws1601_c00001{word-spacing:11.532352pt;}
.wsac7_c00001{word-spacing:11.532800pt;}
.ws1637_c00001{word-spacing:11.537696pt;}
.wsc01_c00001{word-spacing:11.539200pt;}
.ws12c6_c00001{word-spacing:11.542176pt;}
.ws945_c00001{word-spacing:11.545600pt;}
.ws1304_c00001{word-spacing:11.548032pt;}
.ws1544_c00001{word-spacing:11.548384pt;}
.ws62d_c00001{word-spacing:11.552000pt;}
.ws92b_c00001{word-spacing:11.558400pt;}
.ws13ac_c00001{word-spacing:11.565600pt;}
.wsf92_c00001{word-spacing:11.571456pt;}
.ws17c5_c00001{word-spacing:11.575104pt;}
.ws17c4_c00001{word-spacing:11.580448pt;}
.ws12c4_c00001{word-spacing:11.583168pt;}
.ws99c_c00001{word-spacing:11.584000pt;}
.ws159c_c00001{word-spacing:11.585792pt;}
.wsf93_c00001{word-spacing:11.589024pt;}
.ws15c1_c00001{word-spacing:11.596480pt;}
.wsca9_c00001{word-spacing:11.596800pt;}
.ws169f_c00001{word-spacing:11.601824pt;}
.ws159b_c00001{word-spacing:11.607168pt;}
.wsa5e_c00001{word-spacing:11.612512pt;}
.ws1736_c00001{word-spacing:11.617856pt;}
.ws1abf_c00001{word-spacing:11.622400pt;}
.ws169e_c00001{word-spacing:11.623200pt;}
.ws1478_c00001{word-spacing:11.628544pt;}
.ws1ad9_c00001{word-spacing:11.628800pt;}
.ws15c0_c00001{word-spacing:11.633888pt;}
.ws17c2_c00001{word-spacing:11.639232pt;}
.ws15bf_c00001{word-spacing:11.649920pt;}
.ws1bf_c00001{word-spacing:11.654400pt;}
.ws1479_c00001{word-spacing:11.655264pt;}
.wscc7_c00001{word-spacing:11.680000pt;}
.ws17cc_c00001{word-spacing:11.692672pt;}
.wsa5d_c00001{word-spacing:11.698016pt;}
.ws62f_c00001{word-spacing:11.699200pt;}
.ws84a_c00001{word-spacing:11.705600pt;}
.wse15_c00001{word-spacing:11.712000pt;}
.ws1a99_c00001{word-spacing:11.718400pt;}
.ws19b7_c00001{word-spacing:11.719392pt;}
.ws62e_c00001{word-spacing:11.724800pt;}
.ws34d_c00001{word-spacing:11.731200pt;}
.ws109_c00001{word-spacing:11.737600pt;}
.wse57_c00001{word-spacing:11.744000pt;}
.ws97b_c00001{word-spacing:11.750400pt;}
.ws22e_c00001{word-spacing:11.756800pt;}
.wsd0a_c00001{word-spacing:11.763200pt;}
.wsec0_c00001{word-spacing:11.769600pt;}
.ws8d4_c00001{word-spacing:11.776000pt;}
.wsc8c_c00001{word-spacing:11.782400pt;}
.wsb34_c00001{word-spacing:11.788800pt;}
.ws10a_c00001{word-spacing:11.795200pt;}
.ws34b_c00001{word-spacing:11.801600pt;}
.ws1ac3_c00001{word-spacing:11.808000pt;}
.ws62_c00001{word-spacing:11.814400pt;}
.ws12ac_c00001{word-spacing:11.817408pt;}
.ws34c_c00001{word-spacing:11.820800pt;}
.ws1be_c00001{word-spacing:11.827200pt;}
.ws17bf_c00001{word-spacing:11.831616pt;}
.ws705_c00001{word-spacing:11.833600pt;}
.ws12ab_c00001{word-spacing:11.834976pt;}
.ws152e_c00001{word-spacing:11.836960pt;}
.ws1955_c00001{word-spacing:11.840000pt;}
.ws17fe_c00001{word-spacing:11.842304pt;}
.wsf5b_c00001{word-spacing:11.846400pt;}
.ws7ae_c00001{word-spacing:11.847648pt;}
.ws1214_c00001{word-spacing:11.852544pt;}
.ws70f_c00001{word-spacing:11.852800pt;}
.wsd42_c00001{word-spacing:11.852992pt;}
.ws12d1_c00001{word-spacing:11.858400pt;}
.ws7ad_c00001{word-spacing:11.863680pt;}
.wsfdb_c00001{word-spacing:11.864256pt;}
.wsf58_c00001{word-spacing:11.865600pt;}
.ws15da_c00001{word-spacing:11.869024pt;}
.wsfdc_c00001{word-spacing:11.870112pt;}
.ws1ac4_c00001{word-spacing:11.872000pt;}
.ws34e_c00001{word-spacing:11.878400pt;}
.ws1ac0_c00001{word-spacing:11.884800pt;}
.ws12c3_c00001{word-spacing:11.887680pt;}
.ws1849_c00001{word-spacing:11.890400pt;}
.ws1908_c00001{word-spacing:11.895744pt;}
.ws12aa_c00001{word-spacing:11.899392pt;}
.ws1020_c00001{word-spacing:11.905248pt;}
.ws17e8_c00001{word-spacing:11.906432pt;}
.ws122d_c00001{word-spacing:11.911104pt;}
.ws1144_c00001{word-spacing:11.916960pt;}
.ws177f_c00001{word-spacing:11.917120pt;}
.wsa5c_c00001{word-spacing:11.922464pt;}
.wsf5c_c00001{word-spacing:11.923200pt;}
.ws17fb_c00001{word-spacing:11.927808pt;}
.ws1657_c00001{word-spacing:11.938496pt;}
.ws1659_c00001{word-spacing:11.943840pt;}
.wsb35_c00001{word-spacing:11.948800pt;}
.ws1523_c00001{word-spacing:11.949184pt;}
.ws188c_c00001{word-spacing:11.954528pt;}
.wse6f_c00001{word-spacing:11.955200pt;}
.ws1524_c00001{word-spacing:11.959872pt;}
.wsf47_c00001{word-spacing:11.968000pt;}
.wseca_c00001{word-spacing:11.974400pt;}
.ws1a8e_c00001{word-spacing:11.980800pt;}
.ws48e_c00001{word-spacing:11.987200pt;}
.ws1a92_c00001{word-spacing:11.993600pt;}
.wsdc7_c00001{word-spacing:12.000000pt;}
.ws823_c00001{word-spacing:12.006400pt;}
.ws1a8f_c00001{word-spacing:12.012800pt;}
.ws1a20_c00001{word-spacing:12.018656pt;}
.wsbdc_c00001{word-spacing:12.025600pt;}
.ws1a21_c00001{word-spacing:12.029344pt;}
.wsf37_c00001{word-spacing:12.032000pt;}
.ws210_c00001{word-spacing:12.038400pt;}
.ws9a2_c00001{word-spacing:12.040032pt;}
.ws8f4_c00001{word-spacing:12.044800pt;}
.ws16ee_c00001{word-spacing:12.045376pt;}
.ws17e6_c00001{word-spacing:12.050720pt;}
.wsf02_c00001{word-spacing:12.051200pt;}
.ws42_c00001{word-spacing:12.057600pt;}
.wsa6a_c00001{word-spacing:12.061408pt;}
.ws476_c00001{word-spacing:12.064000pt;}
.ws8b0_c00001{word-spacing:12.070400pt;}
.ws41_c00001{word-spacing:12.076800pt;}
.ws16ed_c00001{word-spacing:12.077440pt;}
.ws168b_c00001{word-spacing:12.082784pt;}
.wsd53_c00001{word-spacing:12.083200pt;}
.ws1da_c00001{word-spacing:12.089600pt;}
.ws1a6a_c00001{word-spacing:12.096000pt;}
.ws211_c00001{word-spacing:12.102400pt;}
.wsc5f_c00001{word-spacing:12.108800pt;}
.ws122_c00001{word-spacing:12.115200pt;}
.ws92e_c00001{word-spacing:12.121600pt;}
.ws47f_c00001{word-spacing:12.128000pt;}
.ws402_c00001{word-spacing:12.134400pt;}
.ws12f8_c00001{word-spacing:12.139488pt;}
.ws121_c00001{word-spacing:12.140800pt;}
.ws1872_c00001{word-spacing:12.146912pt;}
.ws71b_c00001{word-spacing:12.147200pt;}
.ws1242_c00001{word-spacing:12.151200pt;}
.ws86f_c00001{word-spacing:12.153600pt;}
.ws1183_c00001{word-spacing:12.157056pt;}
.ws153a_c00001{word-spacing:12.157600pt;}
.ws8b2_c00001{word-spacing:12.160000pt;}
.ws11a9_c00001{word-spacing:12.162912pt;}
.ws1837_c00001{word-spacing:12.162944pt;}
.ws1d9_c00001{word-spacing:12.166400pt;}
.wsc13_c00001{word-spacing:12.168288pt;}
.ws16f1_c00001{word-spacing:12.173632pt;}
.ws11a4_c00001{word-spacing:12.174624pt;}
.wsaba_c00001{word-spacing:12.178976pt;}
.wsa18_c00001{word-spacing:12.179200pt;}
.ws120b_c00001{word-spacing:12.180480pt;}
.ws16b2_c00001{word-spacing:12.184320pt;}
.wsd52_c00001{word-spacing:12.185600pt;}
.ws11a3_c00001{word-spacing:12.186336pt;}
.ws8b1_c00001{word-spacing:12.192000pt;}
.ws108b_c00001{word-spacing:12.192192pt;}
.ws17fc_c00001{word-spacing:12.195008pt;}
.ws13c1_c00001{word-spacing:12.198048pt;}
.wseee_c00001{word-spacing:12.198400pt;}
.ws1182_c00001{word-spacing:12.203904pt;}
.ws4b2_c00001{word-spacing:12.204800pt;}
.ws1211_c00001{word-spacing:12.209760pt;}
.wsfb8_c00001{word-spacing:12.215616pt;}
.ws1210_c00001{word-spacing:12.221472pt;}
.ws1752_c00001{word-spacing:12.221728pt;}
.ws18f3_c00001{word-spacing:12.227072pt;}
.wseef_c00001{word-spacing:12.230400pt;}
.ws2fa_c00001{word-spacing:12.233088pt;}
.ws150f_c00001{word-spacing:12.237760pt;}
.ws1996_c00001{word-spacing:12.243104pt;}
.ws18f2_c00001{word-spacing:12.248448pt;}
.ws19b3_c00001{word-spacing:12.253792pt;}
.ws1805_c00001{word-spacing:12.264480pt;}
.wsabb_c00001{word-spacing:12.269824pt;}
.ws153b_c00001{word-spacing:12.285856pt;}
.ws19ce_c00001{word-spacing:12.301888pt;}
.ws1568_c00001{word-spacing:12.312576pt;}
.ws1742_c00001{word-spacing:12.317920pt;}
.ws489_c00001{word-spacing:12.320000pt;}
.ws187d_c00001{word-spacing:12.328608pt;}
.wsadf_c00001{word-spacing:12.332800pt;}
.ws1915_c00001{word-spacing:12.333952pt;}
.ws1887_c00001{word-spacing:12.339296pt;}
.wsc12_c00001{word-spacing:12.344640pt;}
.ws5db_c00001{word-spacing:12.345600pt;}
.ws187c_c00001{word-spacing:12.349984pt;}
.ws771_c00001{word-spacing:12.352000pt;}
.ws16c2_c00001{word-spacing:12.355328pt;}
.wsd8d_c00001{word-spacing:12.358400pt;}
.ws150e_c00001{word-spacing:12.360672pt;}
.wsbbe_c00001{word-spacing:12.364800pt;}
.ws772_c00001{word-spacing:12.377600pt;}
.wsb2d_c00001{word-spacing:12.384000pt;}
.wsae0_c00001{word-spacing:12.390400pt;}
.ws3e5_c00001{word-spacing:12.396800pt;}
.ws12a5_c00001{word-spacing:12.397152pt;}
.ws375_c00001{word-spacing:12.403200pt;}
.ws9a8_c00001{word-spacing:12.409600pt;}
.ws842_c00001{word-spacing:12.416000pt;}
.wsf57_c00001{word-spacing:12.422400pt;}
.ws3e7_c00001{word-spacing:12.428800pt;}
.wsaf8_c00001{word-spacing:12.435200pt;}
.ws158a_c00001{word-spacing:12.435488pt;}
.ws3ff_c00001{word-spacing:12.441600pt;}
.ws376_c00001{word-spacing:12.448000pt;}
.ws158d_c00001{word-spacing:12.451520pt;}
.ws3e6_c00001{word-spacing:12.454400pt;}
.ws48a_c00001{word-spacing:12.460800pt;}
.ws17a8_c00001{word-spacing:12.462208pt;}
.ws827_c00001{word-spacing:12.467200pt;}
.ws118c_c00001{word-spacing:12.467424pt;}
.ws17ca_c00001{word-spacing:12.467552pt;}
.ws175b_c00001{word-spacing:12.472896pt;}
.ws45d_c00001{word-spacing:12.473600pt;}
.ws17cf_c00001{word-spacing:12.478240pt;}
.ws11a8_c00001{word-spacing:12.479136pt;}
.wsbbd_c00001{word-spacing:12.480000pt;}
.ws1842_c00001{word-spacing:12.483584pt;}
.ws45e_c00001{word-spacing:12.486400pt;}
.ws158e_c00001{word-spacing:12.488928pt;}
.ws11aa_c00001{word-spacing:12.490848pt;}
.wsa21_c00001{word-spacing:12.492800pt;}
.ws85e_c00001{word-spacing:12.494272pt;}
.ws12a4_c00001{word-spacing:12.496704pt;}
.wsd8c_c00001{word-spacing:12.499200pt;}
.ws1589_c00001{word-spacing:12.499616pt;}
.ws118b_c00001{word-spacing:12.502560pt;}
.wse62_c00001{word-spacing:12.505600pt;}
.ws1192_c00001{word-spacing:12.508416pt;}
.ws19a2_c00001{word-spacing:12.510304pt;}
.wsb16_c00001{word-spacing:12.512000pt;}
.ws108a_c00001{word-spacing:12.514272pt;}
.ws368_c00001{word-spacing:12.515648pt;}
.ws104a_c00001{word-spacing:12.520128pt;}
.ws1750_c00001{word-spacing:12.526336pt;}
.wsf18_c00001{word-spacing:12.531200pt;}
.ws192f_c00001{word-spacing:12.531680pt;}
.ws1049_c00001{word-spacing:12.531840pt;}
.ws173d_c00001{word-spacing:12.537024pt;}
.ws1191_c00001{word-spacing:12.537696pt;}
.ws173c_c00001{word-spacing:12.542368pt;}
.wsb1c_c00001{word-spacing:12.544000pt;}
.ws170d_c00001{word-spacing:12.547712pt;}
.ws53f_c00001{word-spacing:12.553056pt;}
.ws12a3_c00001{word-spacing:12.555264pt;}
.ws369_c00001{word-spacing:12.558400pt;}
.wsb82_c00001{word-spacing:12.569088pt;}
.ws53e_c00001{word-spacing:12.574432pt;}
.ws1704_c00001{word-spacing:12.579776pt;}
.wsd90_c00001{word-spacing:12.582400pt;}
.ws173b_c00001{word-spacing:12.585120pt;}
.wsb84_c00001{word-spacing:12.590464pt;}
.wsa9c_c00001{word-spacing:12.595200pt;}
.ws1969_c00001{word-spacing:12.595808pt;}
.ws5a2_c00001{word-spacing:12.608000pt;}
.ws1705_c00001{word-spacing:12.611840pt;}
.wsb81_c00001{word-spacing:12.617184pt;}
.ws1c2_c00001{word-spacing:12.620800pt;}
.ws1a58_c00001{word-spacing:12.627200pt;}
.wsd92_c00001{word-spacing:12.633600pt;}
.ws1888_c00001{word-spacing:12.638560pt;}
.wsd73_c00001{word-spacing:12.652800pt;}
.ws744_c00001{word-spacing:12.659200pt;}
.ws1485_c00001{word-spacing:12.665280pt;}
.ws5a3_c00001{word-spacing:12.665600pt;}
.ws987_c00001{word-spacing:12.672000pt;}
.ws308_c00001{word-spacing:12.684800pt;}
.ws16f0_c00001{word-spacing:12.686656pt;}
.ws1994_c00001{word-spacing:12.691200pt;}
.ws17ac_c00001{word-spacing:12.697344pt;}
.ws55b_c00001{word-spacing:12.697600pt;}
.ws5a1_c00001{word-spacing:12.704000pt;}
.ws46f_c00001{word-spacing:12.710400pt;}
.wsb1b_c00001{word-spacing:12.716800pt;}
.ws455_c00001{word-spacing:12.729600pt;}
.wsa9d_c00001{word-spacing:12.736000pt;}
.ws745_c00001{word-spacing:12.742400pt;}
.wsd93_c00001{word-spacing:12.748800pt;}
.wsec_c00001{word-spacing:12.755200pt;}
.wsf40_c00001{word-spacing:12.761600pt;}
.wsb83_c00001{word-spacing:12.766816pt;}
.ws454_c00001{word-spacing:12.768000pt;}
.ws1c1_c00001{word-spacing:12.774400pt;}
.wsb4b_c00001{word-spacing:12.777504pt;}
.ws425_c00001{word-spacing:12.780800pt;}
.ws1922_c00001{word-spacing:12.782848pt;}
.wsd51_c00001{word-spacing:12.787200pt;}
.wscbf_c00001{word-spacing:12.793600pt;}
.ws185d_c00001{word-spacing:12.798880pt;}
.ws46e_c00001{word-spacing:12.800000pt;}
.ws1944_c00001{word-spacing:12.804224pt;}
.wsd74_c00001{word-spacing:12.806400pt;}
.ws198e_c00001{word-spacing:12.809568pt;}
.ws59a_c00001{word-spacing:12.812800pt;}
.ws1273_c00001{word-spacing:12.812928pt;}
.ws1865_c00001{word-spacing:12.814912pt;}
.ws10e5_c00001{word-spacing:12.818784pt;}
.wsafb_c00001{word-spacing:12.819200pt;}
.ws8e0_c00001{word-spacing:12.820256pt;}
.ws11fe_c00001{word-spacing:12.824640pt;}
.ws916_c00001{word-spacing:12.825600pt;}
.ws1041_c00001{word-spacing:12.830496pt;}
.ws1885_c00001{word-spacing:12.830944pt;}
.wse43_c00001{word-spacing:12.832000pt;}
.wsb7f_c00001{word-spacing:12.836352pt;}
.wsd91_c00001{word-spacing:12.838400pt;}
.ws988_c00001{word-spacing:12.844800pt;}
.ws11ff_c00001{word-spacing:12.848064pt;}
.ws309_c00001{word-spacing:12.851200pt;}
.ws1272_c00001{word-spacing:12.859776pt;}
.ws141f_c00001{word-spacing:12.863008pt;}
.ws837_c00001{word-spacing:12.864000pt;}
.ws1921_c00001{word-spacing:12.868352pt;}
.ws1042_c00001{word-spacing:12.871488pt;}
.wsf8_c00001{word-spacing:12.873088pt;}
.ws141e_c00001{word-spacing:12.873696pt;}
.ws6d8_c00001{word-spacing:12.879040pt;}
.ws142b_c00001{word-spacing:12.884384pt;}
.ws1a48_c00001{word-spacing:12.889600pt;}
.ws16f8_c00001{word-spacing:12.889728pt;}
.wsa46_c00001{word-spacing:12.895072pt;}
.ws1429_c00001{word-spacing:12.905760pt;}
.ws1843_c00001{word-spacing:12.916448pt;}
.ws336_c00001{word-spacing:12.921600pt;}
.ws1991_c00001{word-spacing:12.921792pt;}
.ws1a23_c00001{word-spacing:12.927136pt;}
.ws3b_c00001{word-spacing:12.928000pt;}
.ws142a_c00001{word-spacing:12.932480pt;}
.ws1904_c00001{word-spacing:12.937824pt;}
.wsefa_c00001{word-spacing:12.940800pt;}
.ws1968_c00001{word-spacing:12.959200pt;}
.ws64f_c00001{word-spacing:12.960000pt;}
.wse9d_c00001{word-spacing:12.966400pt;}
.ws726_c00001{word-spacing:12.972800pt;}
.ws17ea_c00001{word-spacing:12.975232pt;}
.ws835_c00001{word-spacing:12.979200pt;}
.ws18c1_c00001{word-spacing:12.980576pt;}
.wsc27_c00001{word-spacing:12.992000pt;}
.ws186f_c00001{word-spacing:12.996608pt;}
.ws650_c00001{word-spacing:12.998400pt;}
.ws1436_c00001{word-spacing:13.001952pt;}
.wseff_c00001{word-spacing:13.011200pt;}
.ws177d_c00001{word-spacing:13.012640pt;}
.ws8f6_c00001{word-spacing:13.017600pt;}
.ws141d_c00001{word-spacing:13.023328pt;}
.ws982_c00001{word-spacing:13.024000pt;}
.ws3a8_c00001{word-spacing:13.030400pt;}
.ws3c8_c00001{word-spacing:13.036800pt;}
.ws8a_c00001{word-spacing:13.043200pt;}
.ws165_c00001{word-spacing:13.049600pt;}
.ws913_c00001{word-spacing:13.056000pt;}
.ws3fe_c00001{word-spacing:13.062400pt;}
.wsc35_c00001{word-spacing:13.066080pt;}
.ws915_c00001{word-spacing:13.068800pt;}
.ws164_c00001{word-spacing:13.075200pt;}
.ws6e0_c00001{word-spacing:13.076768pt;}
.wsae1_c00001{word-spacing:13.081600pt;}
.ws1986_c00001{word-spacing:13.087456pt;}
.ws79a_c00001{word-spacing:13.088000pt;}
.ws2b4_c00001{word-spacing:13.094016pt;}
.ws3c_c00001{word-spacing:13.094400pt;}
.ws171_c00001{word-spacing:13.099872pt;}
.ws335_c00001{word-spacing:13.100800pt;}
.ws1680_c00001{word-spacing:13.103488pt;}
.ws1171_c00001{word-spacing:13.105728pt;}
.ws3a1_c00001{word-spacing:13.107200pt;}
.ws12ae_c00001{word-spacing:13.111584pt;}
.wsc65_c00001{word-spacing:13.113600pt;}
.ws244_c00001{word-spacing:13.114176pt;}
.ws22f_c00001{word-spacing:13.117440pt;}
.wsa80_c00001{word-spacing:13.119520pt;}
.wsb17_c00001{word-spacing:13.120000pt;}
.ws1339_c00001{word-spacing:13.123296pt;}
.ws14a4_c00001{word-spacing:13.124864pt;}
.wsb18_c00001{word-spacing:13.126400pt;}
.ws1580_c00001{word-spacing:13.130208pt;}
.ws3a9_c00001{word-spacing:13.132800pt;}
.ws1170_c00001{word-spacing:13.135008pt;}
.ws6d3_c00001{word-spacing:13.135552pt;}
.ws429_c00001{word-spacing:13.139200pt;}
.ws1338_c00001{word-spacing:13.140864pt;}
.ws189c_c00001{word-spacing:13.140896pt;}
.ws1208_c00001{word-spacing:13.146720pt;}
.ws184a_c00001{word-spacing:13.151584pt;}
.ws8b_c00001{word-spacing:13.152000pt;}
.ws116f_c00001{word-spacing:13.152576pt;}
.ws81e_c00001{word-spacing:13.158400pt;}
.ws243_c00001{word-spacing:13.162272pt;}
.ws2b3_c00001{word-spacing:13.164288pt;}
.ws12a0_c00001{word-spacing:13.170144pt;}
.wsb19_c00001{word-spacing:13.171200pt;}
.ws61f_c00001{word-spacing:13.172960pt;}
.ws119f_c00001{word-spacing:13.176000pt;}
.ws19c1_c00001{word-spacing:13.178304pt;}
.wsc30_c00001{word-spacing:13.181856pt;}
.wsc2f_c00001{word-spacing:13.187712pt;}
.ws19c0_c00001{word-spacing:13.188992pt;}
.ws1209_c00001{word-spacing:13.193568pt;}
.ws15d7_c00001{word-spacing:13.194336pt;}
.wseba_c00001{word-spacing:13.196800pt;}
.ws15d8_c00001{word-spacing:13.205024pt;}
.ws6d7_c00001{word-spacing:13.210368pt;}
.ws1447_c00001{word-spacing:13.215712pt;}
.wsd68_c00001{word-spacing:13.216000pt;}
.ws620_c00001{word-spacing:13.221056pt;}
.ws185a_c00001{word-spacing:13.226400pt;}
.ws1468_c00001{word-spacing:13.231744pt;}
.wsb72_c00001{word-spacing:13.235200pt;}
.ws245_c00001{word-spacing:13.247776pt;}
.ws81d_c00001{word-spacing:13.254400pt;}
.ws1799_c00001{word-spacing:13.258464pt;}
.wsc70_c00001{word-spacing:13.260800pt;}
.ws242_c00001{word-spacing:13.269152pt;}
.ws796_c00001{word-spacing:13.273600pt;}
.ws1a55_c00001{word-spacing:13.280000pt;}
.ws193b_c00001{word-spacing:13.285184pt;}
.ws838_c00001{word-spacing:13.286400pt;}
.ws1995_c00001{word-spacing:13.290528pt;}
.ws8ba_c00001{word-spacing:13.292800pt;}
.ws15a4_c00001{word-spacing:13.295872pt;}
.wscf6_c00001{word-spacing:13.299200pt;}
.ws66c_c00001{word-spacing:13.305600pt;}
.ws15a5_c00001{word-spacing:13.306560pt;}
.ws1889_c00001{word-spacing:13.311904pt;}
.ws54c_c00001{word-spacing:13.324800pt;}
.ws190_c00001{word-spacing:13.331200pt;}
.ws170a_c00001{word-spacing:13.333280pt;}
.ws8c0_c00001{word-spacing:13.337600pt;}
.ws1930_c00001{word-spacing:13.343968pt;}
.wseaf_c00001{word-spacing:13.344000pt;}
.ws78a_c00001{word-spacing:13.350400pt;}
.ws54b_c00001{word-spacing:13.356800pt;}
.ws293_c00001{word-spacing:13.363200pt;}
.ws928_c00001{word-spacing:13.369600pt;}
.ws7ec_c00001{word-spacing:13.376000pt;}
.ws8c1_c00001{word-spacing:13.382400pt;}
.ws409_c00001{word-spacing:13.388800pt;}
.ws5a9_c00001{word-spacing:13.395200pt;}
.wsa0f_c00001{word-spacing:13.401600pt;}
.wsb69_c00001{word-spacing:13.402752pt;}
.ws3f9_c00001{word-spacing:13.408000pt;}
.ws1348_c00001{word-spacing:13.410240pt;}
.ws5f6_c00001{word-spacing:13.413440pt;}
.ws5b3_c00001{word-spacing:13.414400pt;}
.wsb3c_c00001{word-spacing:13.420800pt;}
.ws10f7_c00001{word-spacing:13.421952pt;}
.ws66b_c00001{word-spacing:13.427200pt;}
.ws94d_c00001{word-spacing:13.429472pt;}
.ws927_c00001{word-spacing:13.433600pt;}
.ws5f7_c00001{word-spacing:13.434816pt;}
.ws1196_c00001{word-spacing:13.439520pt;}
.ws18e_c00001{word-spacing:13.440000pt;}
.ws610_c00001{word-spacing:13.440160pt;}
.ws114e_c00001{word-spacing:13.445376pt;}
.ws184f_c00001{word-spacing:13.445504pt;}
.ws54d_c00001{word-spacing:13.446400pt;}
.ws1497_c00001{word-spacing:13.450848pt;}
.wsde5_c00001{word-spacing:13.452800pt;}
.ws170f_c00001{word-spacing:13.456192pt;}
.ws18f_c00001{word-spacing:13.459200pt;}
.ws1907_c00001{word-spacing:13.461536pt;}
.ws1195_c00001{word-spacing:13.462944pt;}
.ws929_c00001{word-spacing:13.465600pt;}
.ws174f_c00001{word-spacing:13.466880pt;}
.ws11ea_c00001{word-spacing:13.468800pt;}
.wsdfa_c00001{word-spacing:13.472000pt;}
.ws124d_c00001{word-spacing:13.474656pt;}
.ws94e_c00001{word-spacing:13.477568pt;}
.wsacc_c00001{word-spacing:13.478400pt;}
.ws10f9_c00001{word-spacing:13.480512pt;}
.wsc42_c00001{word-spacing:13.484800pt;}
.ws10f8_c00001{word-spacing:13.486368pt;}
.ws1347_c00001{word-spacing:13.492224pt;}
.ws172_c00001{word-spacing:13.503936pt;}
.ws1a86_c00001{word-spacing:13.504000pt;}
.ws12ad_c00001{word-spacing:13.509792pt;}
.wsa7f_c00001{word-spacing:13.514976pt;}
.ws114d_c00001{word-spacing:13.515648pt;}
.ws1a0a_c00001{word-spacing:13.520320pt;}
.wsacd_c00001{word-spacing:13.523200pt;}
.ws6df_c00001{word-spacing:13.525664pt;}
.ws839_c00001{word-spacing:13.529600pt;}
.ws1906_c00001{word-spacing:13.531008pt;}
.ws6de_c00001{word-spacing:13.536352pt;}
.ws1a0b_c00001{word-spacing:13.541696pt;}
.wsbd2_c00001{word-spacing:13.542400pt;}
.wsba9_c00001{word-spacing:13.547040pt;}
.ws6b1_c00001{word-spacing:13.548800pt;}
.ws60f_c00001{word-spacing:13.557728pt;}
.wse93_c00001{word-spacing:13.574400pt;}
.wse8a_c00001{word-spacing:13.580800pt;}
.ws1a67_c00001{word-spacing:13.587200pt;}
.ws19be_c00001{word-spacing:13.589792pt;}
.ws943_c00001{word-spacing:13.593600pt;}
.ws1a8b_c00001{word-spacing:13.600000pt;}
.wsc6d_c00001{word-spacing:13.605824pt;}
.ws4a7_c00001{word-spacing:13.606400pt;}
.ws17e0_c00001{word-spacing:13.611168pt;}
.ws1a4e_c00001{word-spacing:13.612800pt;}
.ws1a6f_c00001{word-spacing:13.619200pt;}
.ws18ba_c00001{word-spacing:13.621856pt;}
.wsef3_c00001{word-spacing:13.625600pt;}
.ws21e_c00001{word-spacing:13.632000pt;}
.ws1945_c00001{word-spacing:13.637888pt;}
.ws1a49_c00001{word-spacing:13.638400pt;}
.ws604_c00001{word-spacing:13.644800pt;}
.ws560_c00001{word-spacing:13.651200pt;}
.ws605_c00001{word-spacing:13.657600pt;}
.ws55f_c00001{word-spacing:13.664000pt;}
.ws1a2c_c00001{word-spacing:13.664608pt;}
.ws439_c00001{word-spacing:13.670400pt;}
.ws168f_c00001{word-spacing:13.675296pt;}
.ws1a66_c00001{word-spacing:13.676800pt;}
.ws5ad_c00001{word-spacing:13.683200pt;}
.wsd32_c00001{word-spacing:13.689600pt;}
.ws944_c00001{word-spacing:13.696000pt;}
.wscce_c00001{word-spacing:13.702016pt;}
.wsa1a_c00001{word-spacing:13.702400pt;}
.ws5ac_c00001{word-spacing:13.708800pt;}
.ws854_c00001{word-spacing:13.715200pt;}
.wse17_c00001{word-spacing:13.721600pt;}
.wsefe_c00001{word-spacing:13.728000pt;}
.ws1735_c00001{word-spacing:13.734080pt;}
.ws10c_c00001{word-spacing:13.734400pt;}
.ws10b_c00001{word-spacing:13.740800pt;}
.ws9fe_c00001{word-spacing:13.747200pt;}
.ws19cf_c00001{word-spacing:13.750112pt;}
.ws21d_c00001{word-spacing:13.753600pt;}
.wse16_c00001{word-spacing:13.760000pt;}
.ws21f_c00001{word-spacing:13.766400pt;}
.ws4a8_c00001{word-spacing:13.772800pt;}
.ws1213_c00001{word-spacing:13.773312pt;}
.ws611_c00001{word-spacing:13.776832pt;}
.ws12b8_c00001{word-spacing:13.779168pt;}
.ws10d_c00001{word-spacing:13.779200pt;}
.ws1673_c00001{word-spacing:13.782176pt;}
.ws11f9_c00001{word-spacing:13.785024pt;}
.ws1795_c00001{word-spacing:13.787520pt;}
.ws10a0_c00001{word-spacing:13.790880pt;}
.wsf85_c00001{word-spacing:13.796736pt;}
.ws129d_c00001{word-spacing:13.802592pt;}
.ws198c_c00001{word-spacing:13.803552pt;}
.wsbef_c00001{word-spacing:13.808448pt;}
.wsba8_c00001{word-spacing:13.808896pt;}
.ws11f8_c00001{word-spacing:13.814304pt;}
.ws11c9_c00001{word-spacing:13.820160pt;}
.ws1aa5_c00001{word-spacing:13.824000pt;}
.ws190a_c00001{word-spacing:13.824928pt;}
.ws17e4_c00001{word-spacing:13.830272pt;}
.ws424_c00001{word-spacing:13.830400pt;}
.ws109f_c00001{word-spacing:13.837728pt;}
.ws1483_c00001{word-spacing:13.840960pt;}
.ws1ae0_c00001{word-spacing:13.849600pt;}
.wsb6a_c00001{word-spacing:13.851648pt;}
.ws179d_c00001{word-spacing:13.856992pt;}
.wsccd_c00001{word-spacing:13.862336pt;}
.wsf60_c00001{word-spacing:13.862400pt;}
.wsb67_c00001{word-spacing:13.867680pt;}
.ws1ad2_c00001{word-spacing:13.868800pt;}
.ws7b2_c00001{word-spacing:13.875200pt;}
.ws1712_c00001{word-spacing:13.878368pt;}
.wsdcf_c00001{word-spacing:13.888000pt;}
.wsba7_c00001{word-spacing:13.889056pt;}
.ws59d_c00001{word-spacing:13.894400pt;}
.ws1aad_c00001{word-spacing:13.900800pt;}
.ws78f_c00001{word-spacing:13.907200pt;}
.wsbaa_c00001{word-spacing:13.910432pt;}
.wsd8f_c00001{word-spacing:13.913600pt;}
.ws197e_c00001{word-spacing:13.915776pt;}
.wsd8e_c00001{word-spacing:13.920000pt;}
.ws16e9_c00001{word-spacing:13.921120pt;}
.wse19_c00001{word-spacing:13.932800pt;}
.wsb41_c00001{word-spacing:13.939200pt;}
.wsb68_c00001{word-spacing:13.942496pt;}
.ws44f_c00001{word-spacing:13.945600pt;}
.ws18c8_c00001{word-spacing:13.947840pt;}
.wsc07_c00001{word-spacing:13.952000pt;}
.ws490_c00001{word-spacing:13.958400pt;}
.ws194d_c00001{word-spacing:13.958528pt;}
.wscee_c00001{word-spacing:13.964800pt;}
.wsb6b_c00001{word-spacing:13.974560pt;}
.wsf4e_c00001{word-spacing:13.977600pt;}
.ws3cb_c00001{word-spacing:13.984000pt;}
.wsa02_c00001{word-spacing:13.990400pt;}
.ws16ea_c00001{word-spacing:13.990592pt;}
.ws450_c00001{word-spacing:13.996800pt;}
.ws423_c00001{word-spacing:14.003200pt;}
.ws59c_c00001{word-spacing:14.009600pt;}
.ws54_c00001{word-spacing:14.016000pt;}
.wsa6e_c00001{word-spacing:14.022400pt;}
.ws53_c00001{word-spacing:14.028800pt;}
.ws96b_c00001{word-spacing:14.035200pt;}
.ws59e_c00001{word-spacing:14.041600pt;}
.ws10a1_c00001{word-spacing:14.042688pt;}
.ws510_c00001{word-spacing:14.048000pt;}
.ws3ca_c00001{word-spacing:14.054400pt;}
.ws19dd_c00001{word-spacing:14.060064pt;}
.ws48f_c00001{word-spacing:14.060800pt;}
.ws1247_c00001{word-spacing:14.066112pt;}
.wsb29_c00001{word-spacing:14.067200pt;}
.ws19ca_c00001{word-spacing:14.070752pt;}
.ws11ca_c00001{word-spacing:14.071968pt;}
.ws503_c00001{word-spacing:14.073600pt;}
.ws1a03_c00001{word-spacing:14.076096pt;}
.ws5bf_c00001{word-spacing:14.080000pt;}
.ws169d_c00001{word-spacing:14.081440pt;}
.ws117d_c00001{word-spacing:14.083680pt;}
.wsdc6_c00001{word-spacing:14.086400pt;}
.ws1722_c00001{word-spacing:14.086784pt;}
.ws117c_c00001{word-spacing:14.089536pt;}
.ws85f_c00001{word-spacing:14.092128pt;}
.ws504_c00001{word-spacing:14.092800pt;}
.ws101d_c00001{word-spacing:14.095392pt;}
.ws179e_c00001{word-spacing:14.097472pt;}
.wsa6f_c00001{word-spacing:14.099200pt;}
.ws117e_c00001{word-spacing:14.101248pt;}
.ws16f5_c00001{word-spacing:14.102816pt;}
.wsaf5_c00001{word-spacing:14.105600pt;}
.wsbe4_c00001{word-spacing:14.107104pt;}
.ws8e8_c00001{word-spacing:14.108160pt;}
.ws1959_c00001{word-spacing:14.112000pt;}
.wsfd3_c00001{word-spacing:14.112960pt;}
.wsc24_c00001{word-spacing:14.118400pt;}
.ws105c_c00001{word-spacing:14.118816pt;}
.ws11f3_c00001{word-spacing:14.124672pt;}
.ws78e_c00001{word-spacing:14.124800pt;}
.ws950_c00001{word-spacing:14.129536pt;}
.ws105b_c00001{word-spacing:14.130528pt;}
.wsa0e_c00001{word-spacing:14.131200pt;}
.ws11f4_c00001{word-spacing:14.136384pt;}
.wsd7c_c00001{word-spacing:14.137600pt;}
.ws233_c00001{word-spacing:14.145568pt;}
.ws169b_c00001{word-spacing:14.150912pt;}
.ws1482_c00001{word-spacing:14.156256pt;}
.ws234_c00001{word-spacing:14.161600pt;}
.ws169a_c00001{word-spacing:14.166944pt;}
.ws11f5_c00001{word-spacing:14.171520pt;}
.wsd26_c00001{word-spacing:14.176000pt;}
.ws14c7_c00001{word-spacing:14.177632pt;}
.ws951_c00001{word-spacing:14.182976pt;}
.ws12b9_c00001{word-spacing:14.183232pt;}
.ws19a8_c00001{word-spacing:14.220384pt;}
.ws1ab6_c00001{word-spacing:14.220800pt;}
.ws198d_c00001{word-spacing:14.247104pt;}
.ws1a30_c00001{word-spacing:14.252448pt;}
.ws19a7_c00001{word-spacing:14.257792pt;}
.wse0b_c00001{word-spacing:14.259200pt;}
.ws47e_c00001{word-spacing:14.265600pt;}
.ws1890_c00001{word-spacing:14.268480pt;}
.wsf06_c00001{word-spacing:14.272000pt;}
.ws277_c00001{word-spacing:14.291200pt;}
.ws5dc_c00001{word-spacing:14.297600pt;}
.ws1adb_c00001{word-spacing:14.304000pt;}
.ws834_c00001{word-spacing:14.316800pt;}
.ws403_c00001{word-spacing:14.323200pt;}
.ws18a1_c00001{word-spacing:14.327264pt;}
.ws3c5_c00001{word-spacing:14.329600pt;}
.ws3c6_c00001{word-spacing:14.342400pt;}
.ws5c0_c00001{word-spacing:14.355200pt;}
.ws638_c00001{word-spacing:14.361600pt;}
.ws276_c00001{word-spacing:14.368000pt;}
.ws12b0_c00001{word-spacing:14.370624pt;}
.ws96f_c00001{word-spacing:14.374400pt;}
.wscdd_c00001{word-spacing:14.380800pt;}
.ws1035_c00001{word-spacing:14.382336pt;}
.ws404_c00001{word-spacing:14.387200pt;}
.ws833_c00001{word-spacing:14.393600pt;}
.ws1033_c00001{word-spacing:14.399904pt;}
.wsd66_c00001{word-spacing:14.400000pt;}
.ws1714_c00001{word-spacing:14.402080pt;}
.wsf05_c00001{word-spacing:14.406400pt;}
.ws182b_c00001{word-spacing:14.407424pt;}
.wsf9e_c00001{word-spacing:14.411616pt;}
.ws191e_c00001{word-spacing:14.412768pt;}
.wse0a_c00001{word-spacing:14.412800pt;}
.ws1306_c00001{word-spacing:14.417472pt;}
.ws16f9_c00001{word-spacing:14.418112pt;}
.wse09_c00001{word-spacing:14.419200pt;}
.ws1034_c00001{word-spacing:14.423328pt;}
.ws5c1_c00001{word-spacing:14.425600pt;}
.ws138f_c00001{word-spacing:14.429184pt;}
.ws1abd_c00001{word-spacing:14.432000pt;}
.ws18c0_c00001{word-spacing:14.434144pt;}
.ws89d_c00001{word-spacing:14.435040pt;}
.ws89c_c00001{word-spacing:14.440896pt;}
.wsfd2_c00001{word-spacing:14.446752pt;}
.ws1729_c00001{word-spacing:14.450176pt;}
.ws147b_c00001{word-spacing:14.455520pt;}
.ws4f6_c00001{word-spacing:14.464000pt;}
.wsf9d_c00001{word-spacing:14.464320pt;}
.ws101c_c00001{word-spacing:14.470176pt;}
.ws147a_c00001{word-spacing:14.471552pt;}
.wsbe5_c00001{word-spacing:14.476032pt;}
.ws14bf_c00001{word-spacing:14.476896pt;}
.ws1420_c00001{word-spacing:14.487584pt;}
.wsd67_c00001{word-spacing:14.489600pt;}
.ws153d_c00001{word-spacing:14.492928pt;}
.wsd50_c00001{word-spacing:14.496000pt;}
.ws141b_c00001{word-spacing:14.498272pt;}
.ws18fa_c00001{word-spacing:14.514304pt;}
.ws8e9_c00001{word-spacing:14.519648pt;}
.wsa57_c00001{word-spacing:14.524992pt;}
.ws289_c00001{word-spacing:14.528000pt;}
.wsef7_c00001{word-spacing:14.553600pt;}
.wsabe_c00001{word-spacing:14.557056pt;}
.wsd5d_c00001{word-spacing:14.560000pt;}
.ws17e9_c00001{word-spacing:14.562400pt;}
.ws2f5_c00001{word-spacing:14.567744pt;}
.ws1728_c00001{word-spacing:14.578432pt;}
.ws422_c00001{word-spacing:14.585600pt;}
.ws182a_c00001{word-spacing:14.594464pt;}
.ws28a_c00001{word-spacing:14.598400pt;}
.wsf22_c00001{word-spacing:14.604800pt;}
.wsabd_c00001{word-spacing:14.605152pt;}
.wsa58_c00001{word-spacing:14.610496pt;}
.wsd3_c00001{word-spacing:14.611200pt;}
.ws1a4a_c00001{word-spacing:14.617600pt;}
.ws38f_c00001{word-spacing:14.624000pt;}
.ws2f6_c00001{word-spacing:14.626528pt;}
.wsdf9_c00001{word-spacing:14.630400pt;}
.ws18fb_c00001{word-spacing:14.631872pt;}
.wsa8e_c00001{word-spacing:14.636800pt;}
.wsd97_c00001{word-spacing:14.643200pt;}
.wse59_c00001{word-spacing:14.649600pt;}
.wsd2_c00001{word-spacing:14.656000pt;}
.ws169c_c00001{word-spacing:14.663936pt;}
.wsd61_c00001{word-spacing:14.668800pt;}
.ws38e_c00001{word-spacing:14.675200pt;}
.ws538_c00001{word-spacing:14.681600pt;}
.ws28b_c00001{word-spacing:14.688000pt;}
.ws104f_c00001{word-spacing:14.692704pt;}
.ws22a_c00001{word-spacing:14.694400pt;}
.ws18d7_c00001{word-spacing:14.696000pt;}
.ws421_c00001{word-spacing:14.700800pt;}
.ws1a1e_c00001{word-spacing:14.701344pt;}
.ws17da_c00001{word-spacing:14.706688pt;}
.ws7cf_c00001{word-spacing:14.707200pt;}
.ws15a2_c00001{word-spacing:14.712032pt;}
.wsec1_c00001{word-spacing:14.713600pt;}
.wsf04_c00001{word-spacing:14.720000pt;}
.wsfda_c00001{word-spacing:14.721984pt;}
.ws188e_c00001{word-spacing:14.722720pt;}
.wscc5_c00001{word-spacing:14.726400pt;}
.wsf7c_c00001{word-spacing:14.727840pt;}
.wsc4_c00001{word-spacing:14.728064pt;}
.wsa03_c00001{word-spacing:14.732800pt;}
.ws197f_c00001{word-spacing:14.733408pt;}
.ws1263_c00001{word-spacing:14.733696pt;}
.ws1947_c00001{word-spacing:14.738752pt;}
.wsd4f_c00001{word-spacing:14.739200pt;}
.ws104d_c00001{word-spacing:14.739552pt;}
.ws18d9_c00001{word-spacing:14.744096pt;}
.ws917_c00001{word-spacing:14.745600pt;}
.wsf7b_c00001{word-spacing:14.751264pt;}
.wse5a_c00001{word-spacing:14.752000pt;}
.ws918_c00001{word-spacing:14.758400pt;}
.wsb9_c00001{word-spacing:14.760128pt;}
.wsfee_c00001{word-spacing:14.762976pt;}
.wsf09_c00001{word-spacing:14.764800pt;}
.ws104e_c00001{word-spacing:14.768832pt;}
.ws10ab_c00001{word-spacing:14.774688pt;}
.ws1a61_c00001{word-spacing:14.777600pt;}
.ws13aa_c00001{word-spacing:14.780544pt;}
.wsfd9_c00001{word-spacing:14.786400pt;}
.ws141c_c00001{word-spacing:14.786848pt;}
.wsef6_c00001{word-spacing:14.790400pt;}
.ws170c_c00001{word-spacing:14.792192pt;}
.ws193c_c00001{word-spacing:14.797536pt;}
.ws185c_c00001{word-spacing:14.802880pt;}
.wsea3_c00001{word-spacing:14.803200pt;}
.ws18d8_c00001{word-spacing:14.813568pt;}
.wsbad_c00001{word-spacing:14.835200pt;}
.ws186c_c00001{word-spacing:14.840288pt;}
.ws1acd_c00001{word-spacing:14.848000pt;}
.ws345_c00001{word-spacing:14.854400pt;}
.ws15a3_c00001{word-spacing:14.856320pt;}
.wse85_c00001{word-spacing:14.873600pt;}
.ws6fc_c00001{word-spacing:14.886400pt;}
.ws9b7_c00001{word-spacing:14.905600pt;}
.ws1acc_c00001{word-spacing:14.912000pt;}
.ws5ef_c00001{word-spacing:14.915104pt;}
.wsd6e_c00001{word-spacing:14.918400pt;}
.wsb78_c00001{word-spacing:14.924800pt;}
.wsbfa_c00001{word-spacing:14.931200pt;}
.wse56_c00001{word-spacing:14.944000pt;}
.ws866_c00001{word-spacing:14.950400pt;}
.wsc89_c00001{word-spacing:14.956800pt;}
.wsbae_c00001{word-spacing:14.963200pt;}
.wscf8_c00001{word-spacing:14.982400pt;}
.ws346_c00001{word-spacing:14.988800pt;}
.wsa24_c00001{word-spacing:14.995200pt;}
.ws195a_c00001{word-spacing:15.000608pt;}
.ws1a4_c00001{word-spacing:15.001600pt;}
.ws1a5_c00001{word-spacing:15.008000pt;}
.ws6fb_c00001{word-spacing:15.014400pt;}
.ws12a2_c00001{word-spacing:15.014784pt;}
.ws7ea_c00001{word-spacing:15.020800pt;}
.ws18ac_c00001{word-spacing:15.021984pt;}
.ws9b8_c00001{word-spacing:15.027200pt;}
.ws194c_c00001{word-spacing:15.027328pt;}
.ws12c1_c00001{word-spacing:15.032352pt;}
.wscf7_c00001{word-spacing:15.033600pt;}
.wsba_c00001{word-spacing:15.038016pt;}
.ws12bf_c00001{word-spacing:15.038208pt;}
.wsd6f_c00001{word-spacing:15.040000pt;}
.ws76c_c00001{word-spacing:15.043360pt;}
.wsd07_c00001{word-spacing:15.046400pt;}
.ws1943_c00001{word-spacing:15.048704pt;}
.ws12c0_c00001{word-spacing:15.049920pt;}
.ws480_c00001{word-spacing:15.052800pt;}
.ws1909_c00001{word-spacing:15.054048pt;}
.ws1362_c00001{word-spacing:15.055776pt;}
.wsd6d_c00001{word-spacing:15.059200pt;}
.ws19d5_c00001{word-spacing:15.059392pt;}
.ws12be_c00001{word-spacing:15.061632pt;}
.ws170b_c00001{word-spacing:15.064736pt;}
.ws9af_c00001{word-spacing:15.072000pt;}
.ws1262_c00001{word-spacing:15.073344pt;}
.ws865_c00001{word-spacing:15.078400pt;}
.ws1391_c00001{word-spacing:15.079200pt;}
.ws10dd_c00001{word-spacing:15.090912pt;}
.ws181c_c00001{word-spacing:15.091456pt;}
.ws1215_c00001{word-spacing:15.096768pt;}
.ws10de_c00001{word-spacing:15.102624pt;}
.ws1a40_c00001{word-spacing:15.107488pt;}
.wse10_c00001{word-spacing:15.110400pt;}
.ws193d_c00001{word-spacing:15.112832pt;}
.ws12a1_c00001{word-spacing:15.114336pt;}
.wsa25_c00001{word-spacing:15.116800pt;}
.ws1a12_c00001{word-spacing:15.118176pt;}
.ws5ee_c00001{word-spacing:15.123520pt;}
.ws196a_c00001{word-spacing:15.128864pt;}
.wse68_c00001{word-spacing:15.129600pt;}
.ws181b_c00001{word-spacing:15.134208pt;}
.ws9f3_c00001{word-spacing:15.139552pt;}
.ws9f4_c00001{word-spacing:15.150240pt;}
.ws14ce_c00001{word-spacing:15.155584pt;}
.wsf3b_c00001{word-spacing:15.161600pt;}
.ws9f2_c00001{word-spacing:15.171616pt;}
.ws785_c00001{word-spacing:15.174400pt;}
.ws17de_c00001{word-spacing:15.182304pt;}
.ws9a3_c00001{word-spacing:15.192992pt;}
.wsf1d_c00001{word-spacing:15.193600pt;}
.wsf4c_c00001{word-spacing:15.200000pt;}
.ws601_c00001{word-spacing:15.206400pt;}
.ws862_c00001{word-spacing:15.212800pt;}
.wsf64_c00001{word-spacing:15.219200pt;}
.ws1743_c00001{word-spacing:15.219712pt;}
.ws786_c00001{word-spacing:15.225600pt;}
.wse20_c00001{word-spacing:15.228672pt;}
.ws1ab0_c00001{word-spacing:15.232000pt;}
.ws784_c00001{word-spacing:15.244800pt;}
.ws9a4_c00001{word-spacing:15.246432pt;}
.wsf3a_c00001{word-spacing:15.251200pt;}
.ws1745_c00001{word-spacing:15.262464pt;}
.ws15_c00001{word-spacing:15.264000pt;}
.wse69_c00001{word-spacing:15.270400pt;}
.ws1744_c00001{word-spacing:15.273152pt;}
.ws7b8_c00001{word-spacing:15.276800pt;}
.ws25d_c00001{word-spacing:15.283200pt;}
.ws7f6_c00001{word-spacing:15.289600pt;}
.wsf65_c00001{word-spacing:15.296000pt;}
.ws8f5_c00001{word-spacing:15.302400pt;}
.wsec9_c00001{word-spacing:15.308800pt;}
.ws131_c00001{word-spacing:15.315200pt;}
.ws14f_c00001{word-spacing:15.321600pt;}
.ws7f7_c00001{word-spacing:15.328000pt;}
.ws25f_c00001{word-spacing:15.334400pt;}
.wse67_c00001{word-spacing:15.340800pt;}
.ws150_c00001{word-spacing:15.347200pt;}
.ws1584_c00001{word-spacing:15.347968pt;}
.ws1861_c00001{word-spacing:15.353312pt;}
.ws60d_c00001{word-spacing:15.353600pt;}
.ws1084_c00001{word-spacing:15.354432pt;}
.ws25e_c00001{word-spacing:15.360000pt;}
.wsa67_c00001{word-spacing:15.364000pt;}
.ws17_c00001{word-spacing:15.366400pt;}
.ws1933_c00001{word-spacing:15.369344pt;}
.ws16_c00001{word-spacing:15.372800pt;}
.ws10d5_c00001{word-spacing:15.377856pt;}
.wsec8_c00001{word-spacing:15.379200pt;}
.ws1770_c00001{word-spacing:15.380032pt;}
.ws113d_c00001{word-spacing:15.383712pt;}
.ws1919_c00001{word-spacing:15.385376pt;}
.ws1083_c00001{word-spacing:15.389568pt;}
.wsc79_c00001{word-spacing:15.395424pt;}
.ws7eb_c00001{word-spacing:15.398400pt;}
.wsaa8_c00001{word-spacing:15.401280pt;}
.ws16cb_c00001{word-spacing:15.406752pt;}
.wse12_c00001{word-spacing:15.417600pt;}
.ws1085_c00001{word-spacing:15.418848pt;}
.ws60e_c00001{word-spacing:15.424000pt;}
.ws602_c00001{word-spacing:15.436800pt;}
.ws16cc_c00001{word-spacing:15.444160pt;}
.ws19a5_c00001{word-spacing:15.454848pt;}
.ws12a_c00001{word-spacing:15.475200pt;}
.ws4a1_c00001{word-spacing:15.494400pt;}
.ws792_c00001{word-spacing:15.507200pt;}
.ws1845_c00001{word-spacing:15.508288pt;}
.wsea8_c00001{word-spacing:15.526400pt;}
.ws176f_c00001{word-spacing:15.529664pt;}
.ws793_c00001{word-spacing:15.532800pt;}
.ws4a2_c00001{word-spacing:15.539200pt;}
.ws18a7_c00001{word-spacing:15.540352pt;}
.ws82c_c00001{word-spacing:15.545600pt;}
.ws354_c00001{word-spacing:15.552000pt;}
.ws28d_c00001{word-spacing:15.558400pt;}
.ws164f_c00001{word-spacing:15.561728pt;}
.ws4a6_c00001{word-spacing:15.564800pt;}
.ws8c7_c00001{word-spacing:15.571200pt;}
.ws1354_c00001{word-spacing:15.576960pt;}
.wse11_c00001{word-spacing:15.577600pt;}
.ws1271_c00001{word-spacing:15.582816pt;}
.ws164e_c00001{word-spacing:15.583104pt;}
.ws28f_c00001{word-spacing:15.584000pt;}
.ws8b5_c00001{word-spacing:15.588448pt;}
.wse23_c00001{word-spacing:15.590400pt;}
.ws113_c00001{word-spacing:15.596800pt;}
.ws48d_c00001{word-spacing:15.603200pt;}
.wsde8_c00001{word-spacing:15.609600pt;}
.ws468_c00001{word-spacing:15.616000pt;}
.ws8c5_c00001{word-spacing:15.622400pt;}
.ws111_c00001{word-spacing:15.628800pt;}
.ws275_c00001{word-spacing:15.635200pt;}
.ws1a63_c00001{word-spacing:15.641600pt;}
.ws274_c00001{word-spacing:15.648000pt;}
.ws48c_c00001{word-spacing:15.654400pt;}
.ws467_c00001{word-spacing:15.660800pt;}
.ws12b_c00001{word-spacing:15.667200pt;}
.ws19d0_c00001{word-spacing:15.668608pt;}
.ws115b_c00001{word-spacing:15.670656pt;}
.wse47_c00001{word-spacing:15.673600pt;}
.ws1937_c00001{word-spacing:15.673952pt;}
.wsdc0_c00001{word-spacing:15.680000pt;}
.ws193f_c00001{word-spacing:15.684640pt;}
.ws48b_c00001{word-spacing:15.686400pt;}
.wsf84_c00001{word-spacing:15.688224pt;}
.ws1839_c00001{word-spacing:15.689984pt;}
.ws112_c00001{word-spacing:15.692800pt;}
.ws1073_c00001{word-spacing:15.694080pt;}
.ws19b2_c00001{word-spacing:15.695328pt;}
.ws8d5_c00001{word-spacing:15.699200pt;}
.ws13c_c00001{word-spacing:15.700672pt;}
.ws12d9_c00001{word-spacing:15.705792pt;}
.ws188d_c00001{word-spacing:15.706016pt;}
.ws19e8_c00001{word-spacing:15.711360pt;}
.wsf83_c00001{word-spacing:15.711648pt;}
.ws28e_c00001{word-spacing:15.712000pt;}
.ws81c_c00001{word-spacing:15.718400pt;}
.ws8c6_c00001{word-spacing:15.724800pt;}
.wsc31_c00001{word-spacing:15.729216pt;}
.ws4a3_c00001{word-spacing:15.731200pt;}
.ws1216_c00001{word-spacing:15.740928pt;}
.wse55_c00001{word-spacing:15.750400pt;}
.ws1353_c00001{word-spacing:15.752640pt;}
.ws1846_c00001{word-spacing:15.754112pt;}
.ws196f_c00001{word-spacing:15.759456pt;}
.ws1833_c00001{word-spacing:15.770144pt;}
.ws1834_c00001{word-spacing:15.786176pt;}
.ws631_c00001{word-spacing:15.801600pt;}
.wsbcf_c00001{word-spacing:15.814400pt;}
.wsdbd_c00001{word-spacing:15.820800pt;}
.ws1970_c00001{word-spacing:15.823584pt;}
.wsb5_c00001{word-spacing:15.834272pt;}
.wsdbe_c00001{word-spacing:15.840000pt;}
.ws1997_c00001{word-spacing:15.855648pt;}
.wse31_c00001{word-spacing:15.865600pt;}
.wsdf1_c00001{word-spacing:15.872000pt;}
.ws572_c00001{word-spacing:15.878400pt;}
.wse32_c00001{word-spacing:15.884800pt;}
.ws190c_c00001{word-spacing:15.887712pt;}
.ws1a85_c00001{word-spacing:15.891200pt;}
.ws24_c00001{word-spacing:15.897600pt;}
.wsb6_c00001{word-spacing:15.898400pt;}
.ws632_c00001{word-spacing:15.904000pt;}
.wsbce_c00001{word-spacing:15.910400pt;}
.ws1a78_c00001{word-spacing:15.916800pt;}
.ws573_c00001{word-spacing:15.923200pt;}
.ws589_c00001{word-spacing:15.936000pt;}
.ws7b9_c00001{word-spacing:15.942400pt;}
.ws43c_c00001{word-spacing:15.948800pt;}
.ws1a84_c00001{word-spacing:15.955200pt;}
.ws7b5_c00001{word-spacing:15.961600pt;}
.ws515_c00001{word-spacing:15.968000pt;}
.ws7b6_c00001{word-spacing:15.974400pt;}
.ws981_c00001{word-spacing:15.980800pt;}
.ws1792_c00001{word-spacing:15.983904pt;}
.wse48_c00001{word-spacing:15.987200pt;}
.ws1778_c00001{word-spacing:15.989248pt;}
.ws574_c00001{word-spacing:15.993600pt;}
.ws162b_c00001{word-spacing:15.999936pt;}
.wsdbc_c00001{word-spacing:16.000000pt;}
.ws19cd_c00001{word-spacing:16.005280pt;}
.ws803_c00001{word-spacing:16.006400pt;}
.ws12c7_c00001{word-spacing:16.010304pt;}
.ws19bc_c00001{word-spacing:16.010624pt;}
.wse1f_c00001{word-spacing:16.012800pt;}
.ws1a33_c00001{word-spacing:16.015968pt;}
.ws1139_c00001{word-spacing:16.016160pt;}
.wsdec_c00001{word-spacing:16.025600pt;}
.ws1a32_c00001{word-spacing:16.032000pt;}
.ws10b3_c00001{word-spacing:16.033728pt;}
.ws633_c00001{word-spacing:16.038400pt;}
.ws10b4_c00001{word-spacing:16.039584pt;}
.ws1a83_c00001{word-spacing:16.051200pt;}
.ws58a_c00001{word-spacing:16.057600pt;}
.ws23a_c00001{word-spacing:16.069408pt;}
.ws1a02_c00001{word-spacing:16.074752pt;}
.ws1940_c00001{word-spacing:16.080096pt;}
.ws16e7_c00001{word-spacing:16.085440pt;}
.ws1534_c00001{word-spacing:16.090784pt;}
.ws19b8_c00001{word-spacing:16.101472pt;}
.wsf07_c00001{word-spacing:16.108800pt;}
.ws1a28_c00001{word-spacing:16.112160pt;}
.ws19b6_c00001{word-spacing:16.117504pt;}
.wsbba_c00001{word-spacing:16.121600pt;}
.wsf1f_c00001{word-spacing:16.160000pt;}
.ws1a0c_c00001{word-spacing:16.165600pt;}
.wsef8_c00001{word-spacing:16.166400pt;}
.ws692_c00001{word-spacing:16.172800pt;}
.ws162c_c00001{word-spacing:16.176288pt;}
.ws65a_c00001{word-spacing:16.185600pt;}
.ws19b5_c00001{word-spacing:16.186976pt;}
.ws1ada_c00001{word-spacing:16.198400pt;}
.wscd9_c00001{word-spacing:16.204800pt;}
.ws607_c00001{word-spacing:16.211200pt;}
.ws65b_c00001{word-spacing:16.217600pt;}
.ws9ac_c00001{word-spacing:16.224000pt;}
.wsef9_c00001{word-spacing:16.230400pt;}
.wsde0_c00001{word-spacing:16.236800pt;}
.wsb_c00001{word-spacing:16.243200pt;}
.wse40_c00001{word-spacing:16.249600pt;}
.wsadd_c00001{word-spacing:16.256000pt;}
.ws608_c00001{word-spacing:16.262400pt;}
.wsa_c00001{word-spacing:16.275200pt;}
.ws141a_c00001{word-spacing:16.277824pt;}
.ws69e_c00001{word-spacing:16.281600pt;}
.wscd1_c00001{word-spacing:16.288000pt;}
.ws691_c00001{word-spacing:16.294400pt;}
.wscfe_c00001{word-spacing:16.297248pt;}
.wsd03_c00001{word-spacing:16.300800pt;}
.wsfbb_c00001{word-spacing:16.303104pt;}
.wsbbc_c00001{word-spacing:16.307200pt;}
.ws1363_c00001{word-spacing:16.308960pt;}
.ws2a4_c00001{word-spacing:16.313600pt;}
.wsf1e_c00001{word-spacing:16.320000pt;}
.wsd2e_c00001{word-spacing:16.320576pt;}
.ws1278_c00001{word-spacing:16.320672pt;}
.wsd2d_c00001{word-spacing:16.325920pt;}
.ws69f_c00001{word-spacing:16.326400pt;}
.ws1284_c00001{word-spacing:16.326528pt;}
.ws1a1c_c00001{word-spacing:16.331264pt;}
.wscfd_c00001{word-spacing:16.338240pt;}
.ws9ab_c00001{word-spacing:16.339200pt;}
.ws16e8_c00001{word-spacing:16.341952pt;}
.ws1279_c00001{word-spacing:16.344096pt;}
.ws6d2_c00001{word-spacing:16.352640pt;}
.ws112c_c00001{word-spacing:16.355808pt;}
.wse72_c00001{word-spacing:16.358400pt;}
.wsfba_c00001{word-spacing:16.361664pt;}
.wscd5_c00001{word-spacing:16.367520pt;}
.ws17ab_c00001{word-spacing:16.368672pt;}
.ws10fa_c00001{word-spacing:16.373376pt;}
.ws10fb_c00001{word-spacing:16.379232pt;}
.ws1a7b_c00001{word-spacing:16.384000pt;}
.ws711_c00001{word-spacing:16.384704pt;}
.ws1105_c00001{word-spacing:16.385088pt;}
.ws15ab_c00001{word-spacing:16.395392pt;}
.ws11fb_c00001{word-spacing:16.396800pt;}
.wse91_c00001{word-spacing:16.403200pt;}
.ws1535_c00001{word-spacing:16.406080pt;}
.wsd13_c00001{word-spacing:16.409600pt;}
.wscc1_c00001{word-spacing:16.416000pt;}
.ws1a05_c00001{word-spacing:16.416768pt;}
.ws1a06_c00001{word-spacing:16.422112pt;}
.wsbbb_c00001{word-spacing:16.422400pt;}
.ws712_c00001{word-spacing:16.427456pt;}
.ws549_c00001{word-spacing:16.428800pt;}
.wsa47_c00001{word-spacing:16.432800pt;}
.wsa48_c00001{word-spacing:16.443488pt;}
.ws99a_c00001{word-spacing:16.460800pt;}
.ws1a0d_c00001{word-spacing:16.480896pt;}
.ws185e_c00001{word-spacing:16.486240pt;}
.ws78b_c00001{word-spacing:16.499200pt;}
.wse88_c00001{word-spacing:16.524800pt;}
.wsd8b_c00001{word-spacing:16.531200pt;}
.ws19e1_c00001{word-spacing:16.534336pt;}
.ws99b_c00001{word-spacing:16.537600pt;}
.ws1419_c00001{word-spacing:16.539680pt;}
.ws890_c00001{word-spacing:16.544000pt;}
.ws863_c00001{word-spacing:16.550400pt;}
.ws666_c00001{word-spacing:16.556800pt;}
.wsd8a_c00001{word-spacing:16.563200pt;}
.ws70e_c00001{word-spacing:16.569600pt;}
.ws1a7e_c00001{word-spacing:16.576000pt;}
.ws54a_c00001{word-spacing:16.588800pt;}
.wsed4_c00001{word-spacing:16.595200pt;}
.ws7e2_c00001{word-spacing:16.601600pt;}
.ws8_c00001{word-spacing:16.608000pt;}
.ws442_c00001{word-spacing:16.614400pt;}
.ws209_c00001{word-spacing:16.620800pt;}
.ws9_c00001{word-spacing:16.627200pt;}
.ws1775_c00001{word-spacing:16.630528pt;}
.ws20a_c00001{word-spacing:16.633600pt;}
.ws10ca_c00001{word-spacing:16.636896pt;}
.wsb42_c00001{word-spacing:16.640000pt;}
.ws1365_c00001{word-spacing:16.642752pt;}
.ws7fd_c00001{word-spacing:16.646400pt;}
.ws1628_c00001{word-spacing:16.646560pt;}
.ws135e_c00001{word-spacing:16.648608pt;}
.ws1819_c00001{word-spacing:16.651904pt;}
.wsa9a_c00001{word-spacing:16.652800pt;}
.ws11ce_c00001{word-spacing:16.654464pt;}
.ws935_c00001{word-spacing:16.657248pt;}
.ws441_c00001{word-spacing:16.659200pt;}
.ws10be_c00001{word-spacing:16.660320pt;}
.ws15ac_c00001{word-spacing:16.662592pt;}
.ws288_c00001{word-spacing:16.665600pt;}
.ws119e_c00001{word-spacing:16.666176pt;}
.ws195b_c00001{word-spacing:16.667936pt;}
.ws1200_c00001{word-spacing:16.672032pt;}
.ws1a7d_c00001{word-spacing:16.678400pt;}
.ws11cf_c00001{word-spacing:16.683744pt;}
.ws10bd_c00001{word-spacing:16.689600pt;}
.ws934_c00001{word-spacing:16.716032pt;}
.wsab1_c00001{word-spacing:16.718880pt;}
.wsb00_c00001{word-spacing:16.732064pt;}
.ws19e0_c00001{word-spacing:16.737408pt;}
.ws72e_c00001{word-spacing:16.742400pt;}
.ws17aa_c00001{word-spacing:16.742752pt;}
.ws1a04_c00001{word-spacing:16.748096pt;}
.ws1a73_c00001{word-spacing:16.768000pt;}
.ws1418_c00001{word-spacing:16.769472pt;}
.ws919_c00001{word-spacing:16.774400pt;}
.ws761_c00001{word-spacing:16.780800pt;}
.ws909_c00001{word-spacing:16.785504pt;}
.ws1a7f_c00001{word-spacing:16.787200pt;}
.ws90a_c00001{word-spacing:16.801536pt;}
.wseb7_c00001{word-spacing:16.806400pt;}
.wsbde_c00001{word-spacing:16.812800pt;}
.wsad9_c00001{word-spacing:16.832000pt;}
.ws91a_c00001{word-spacing:16.844800pt;}
.ws1d4_c00001{word-spacing:16.851200pt;}
.ws194f_c00001{word-spacing:16.854976pt;}
.wsddb_c00001{word-spacing:16.857600pt;}
.wsd31_c00001{word-spacing:16.870400pt;}
.wsdef_c00001{word-spacing:16.876800pt;}
.ws1d3_c00001{word-spacing:16.883200pt;}
.wsa50_c00001{word-spacing:16.889600pt;}
.ws58f_c00001{word-spacing:16.896000pt;}
.ws1a72_c00001{word-spacing:16.902400pt;}
.ws1417_c00001{word-spacing:16.908416pt;}
.ws72f_c00001{word-spacing:16.908800pt;}
.ws5d6_c00001{word-spacing:16.915200pt;}
.wse79_c00001{word-spacing:16.921600pt;}
.ws590_c00001{word-spacing:16.928000pt;}
.ws533_c00001{word-spacing:16.934400pt;}
.ws1296_c00001{word-spacing:16.935552pt;}
.wsd3b_c00001{word-spacing:16.940800pt;}
.ws5d5_c00001{word-spacing:16.947200pt;}
.wscdb_c00001{word-spacing:16.953600pt;}
.wsa51_c00001{word-spacing:16.960000pt;}
.ws4e9_c00001{word-spacing:16.961856pt;}
.ws1295_c00001{word-spacing:16.964832pt;}
.ws760_c00001{word-spacing:16.966400pt;}
.ws10dc_c00001{word-spacing:16.970688pt;}
.wseb9_c00001{word-spacing:16.972800pt;}
.ws612_c00001{word-spacing:16.977888pt;}
.ws17ae_c00001{word-spacing:16.983232pt;}
.ws163b_c00001{word-spacing:16.988576pt;}
.wse7d_c00001{word-spacing:16.992000pt;}
.ws1165_c00001{word-spacing:16.994112pt;}
.ws534_c00001{word-spacing:16.998400pt;}
.wscdc_c00001{word-spacing:17.004800pt;}
.ws1164_c00001{word-spacing:17.005824pt;}
.ws18bf_c00001{word-spacing:17.009952pt;}
.ws15c5_c00001{word-spacing:17.015296pt;}
.ws128a_c00001{word-spacing:17.017536pt;}
.ws762_c00001{word-spacing:17.024000pt;}
.ws17bb_c00001{word-spacing:17.036672pt;}
.ws1ab8_c00001{word-spacing:17.043200pt;}
.ws15c6_c00001{word-spacing:17.047360pt;}
.wsdeb_c00001{word-spacing:17.056000pt;}
.ws163e_c00001{word-spacing:17.058048pt;}
.ws128b_c00001{word-spacing:17.058528pt;}
.ws17ba_c00001{word-spacing:17.063392pt;}
.ws18b7_c00001{word-spacing:17.074080pt;}
.wse21_c00001{word-spacing:17.120000pt;}
.wsf46_c00001{word-spacing:17.126400pt;}
.ws1acf_c00001{word-spacing:17.158400pt;}
.wsf44_c00001{word-spacing:17.164800pt;}
.ws194e_c00001{word-spacing:17.170272pt;}
.wsc19_c00001{word-spacing:17.175616pt;}
.ws9db_c00001{word-spacing:17.177600pt;}
.ws728_c00001{word-spacing:17.184000pt;}
.ws163f_c00001{word-spacing:17.186304pt;}
.ws1a69_c00001{word-spacing:17.190400pt;}
.ws727_c00001{word-spacing:17.196800pt;}
.ws83c_c00001{word-spacing:17.203200pt;}
.wse4c_c00001{word-spacing:17.209600pt;}
.ws844_c00001{word-spacing:17.216000pt;}
.ws5b7_c00001{word-spacing:17.222400pt;}
.ws13b1_c00001{word-spacing:17.228352pt;}
.ws8f1_c00001{word-spacing:17.235200pt;}
.ws77b_c00001{word-spacing:17.241600pt;}
.ws9ed_c00001{word-spacing:17.248000pt;}
.ws843_c00001{word-spacing:17.254400pt;}
.ws693_c00001{word-spacing:17.260800pt;}
.ws18e0_c00001{word-spacing:17.266464pt;}
.ws51f_c00001{word-spacing:17.267200pt;}
.ws1abc_c00001{word-spacing:17.273600pt;}
.ws10db_c00001{word-spacing:17.275200pt;}
.ws874_c00001{word-spacing:17.280000pt;}
.wsc8e_c00001{word-spacing:17.286400pt;}
.ws13b2_c00001{word-spacing:17.286912pt;}
.ws1942_c00001{word-spacing:17.287840pt;}
.ws129f_c00001{word-spacing:17.292768pt;}
.ws51e_c00001{word-spacing:17.292800pt;}
.wsa81_c00001{word-spacing:17.298624pt;}
.wsec5_c00001{word-spacing:17.299200pt;}
.ws3ac_c00001{word-spacing:17.303872pt;}
.wsc8f_c00001{word-spacing:17.305600pt;}
.ws1ace_c00001{word-spacing:17.312000pt;}
.wsf45_c00001{word-spacing:17.318400pt;}
.wsf03_c00001{word-spacing:17.324800pt;}
.ws129e_c00001{word-spacing:17.333760pt;}
.wse3f_c00001{word-spacing:17.344000pt;}
.ws13b0_c00001{word-spacing:17.345472pt;}
.ws163d_c00001{word-spacing:17.351968pt;}
.ws1813_c00001{word-spacing:17.357312pt;}
.ws740_c00001{word-spacing:17.369600pt;}
.ws1638_c00001{word-spacing:17.378688pt;}
.ws1812_c00001{word-spacing:17.384032pt;}
.wsc18_c00001{word-spacing:17.389376pt;}
.ws379_c00001{word-spacing:17.420800pt;}
.ws8c9_c00001{word-spacing:17.427200pt;}
.ws18a4_c00001{word-spacing:17.432128pt;}
.ws683_c00001{word-spacing:17.433600pt;}
.ws378_c00001{word-spacing:17.440000pt;}
.ws5b6_c00001{word-spacing:17.452800pt;}
.ws812_c00001{word-spacing:17.465600pt;}
.ws18a5_c00001{word-spacing:17.469536pt;}
.ws37a_c00001{word-spacing:17.472000pt;}
.ws17ad_c00001{word-spacing:17.474880pt;}
.ws5b5_c00001{word-spacing:17.478400pt;}
.wsc17_c00001{word-spacing:17.485568pt;}
.wse42_c00001{word-spacing:17.491200pt;}
.wsb37_c00001{word-spacing:17.504000pt;}
.ws4c9_c00001{word-spacing:17.510400pt;}
.ws96a_c00001{word-spacing:17.516800pt;}
.ws28_c00001{word-spacing:17.523200pt;}
.ws6ca_c00001{word-spacing:17.529600pt;}
.wsb36_c00001{word-spacing:17.536000pt;}
.ws29_c00001{word-spacing:17.548800pt;}
.ws8ca_c00001{word-spacing:17.555200pt;}
.ws3bd_c00001{word-spacing:17.561600pt;}
.ws37f_c00001{word-spacing:17.568000pt;}
.ws685_c00001{word-spacing:17.574400pt;}
.wsa64_c00001{word-spacing:17.580800pt;}
.ws5e6_c00001{word-spacing:17.581760pt;}
.ws27_c00001{word-spacing:17.587200pt;}
.ws739_c00001{word-spacing:17.593600pt;}
.ws12b5_c00001{word-spacing:17.597280pt;}
.ws190e_c00001{word-spacing:17.597792pt;}
.ws684_c00001{word-spacing:17.600000pt;}
.ws1910_c00001{word-spacing:17.603136pt;}
.ws79d_c00001{word-spacing:17.612800pt;}
.ws1992_c00001{word-spacing:17.613824pt;}
.ws123e_c00001{word-spacing:17.614848pt;}
.ws3bc_c00001{word-spacing:17.619200pt;}
.ws1265_c00001{word-spacing:17.620704pt;}
.wse3e_c00001{word-spacing:17.625600pt;}
.ws89f_c00001{word-spacing:17.626560pt;}
.ws3be_c00001{word-spacing:17.632000pt;}
.ws123d_c00001{word-spacing:17.632416pt;}
.ws89e_c00001{word-spacing:17.638272pt;}
.ws73a_c00001{word-spacing:17.638400pt;}
.ws12b4_c00001{word-spacing:17.644128pt;}
.ws73b_c00001{word-spacing:17.644800pt;}
.ws18ea_c00001{word-spacing:17.656576pt;}
.ws7d5_c00001{word-spacing:17.664000pt;}
.ws123f_c00001{word-spacing:17.667552pt;}
.ws14d5_c00001{word-spacing:17.672608pt;}
.ws5e7_c00001{word-spacing:17.677952pt;}
.ws18eb_c00001{word-spacing:17.683296pt;}
.ws14d4_c00001{word-spacing:17.715360pt;}
.wsc0e_c00001{word-spacing:17.760000pt;}
.wsc62_c00001{word-spacing:17.779200pt;}
.ws2a3_c00001{word-spacing:17.785600pt;}
.wsb56_c00001{word-spacing:17.792000pt;}
.ws1762_c00001{word-spacing:17.795520pt;}
.wse2e_c00001{word-spacing:17.804800pt;}
.ws2a2_c00001{word-spacing:17.811200pt;}
.ws5e8_c00001{word-spacing:17.811552pt;}
.wsc61_c00001{word-spacing:17.817600pt;}
.ws992_c00001{word-spacing:17.824000pt;}
.ws930_c00001{word-spacing:17.830400pt;}
.wsc0d_c00001{word-spacing:17.836800pt;}
.wse36_c00001{word-spacing:17.843200pt;}
.ws92f_c00001{word-spacing:17.849600pt;}
.ws1763_c00001{word-spacing:17.854304pt;}
.wsbd1_c00001{word-spacing:17.856000pt;}
.ws3d6_c00001{word-spacing:17.862400pt;}
.wsa26_c00001{word-spacing:17.868800pt;}
.wsbdf_c00001{word-spacing:17.875200pt;}
.wsda1_c00001{word-spacing:17.881600pt;}
.wsa83_c00001{word-spacing:17.888000pt;}
.wsbd0_c00001{word-spacing:17.894400pt;}
.wsa84_c00001{word-spacing:17.900800pt;}
.ws364_c00001{word-spacing:17.902400pt;}
.wsda2_c00001{word-spacing:17.907200pt;}
.ws18b4_c00001{word-spacing:17.907744pt;}
.ws30d_c00001{word-spacing:17.913600pt;}
.ws57f_c00001{word-spacing:17.925216pt;}
.wsdb1_c00001{word-spacing:17.926400pt;}
.wsc63_c00001{word-spacing:17.932800pt;}
.wsff6_c00001{word-spacing:17.936928pt;}
.wsc39_c00001{word-spacing:17.939200pt;}
.wsfea_c00001{word-spacing:17.942784pt;}
.ws187e_c00001{word-spacing:17.950496pt;}
.ws30e_c00001{word-spacing:17.952000pt;}
.wsfe9_c00001{word-spacing:17.954496pt;}
.wse37_c00001{word-spacing:17.964800pt;}
.wsff7_c00001{word-spacing:17.966208pt;}
.wse51_c00001{word-spacing:17.971200pt;}
.wsfb3_c00001{word-spacing:17.972064pt;}
.ws129c_c00001{word-spacing:17.983776pt;}
.ws991_c00001{word-spacing:17.990400pt;}
.ws723_c00001{word-spacing:17.996800pt;}
.wsfeb_c00001{word-spacing:18.013056pt;}
.wsf2f_c00001{word-spacing:18.035200pt;}
.ws1ac9_c00001{word-spacing:18.041600pt;}
.wsdba_c00001{word-spacing:18.054400pt;}
.ws1a90_c00001{word-spacing:18.060800pt;}
.ws140e_c00001{word-spacing:18.078752pt;}
.wsd04_c00001{word-spacing:18.080000pt;}
.wsf0c_c00001{word-spacing:18.092800pt;}
.wsf16_c00001{word-spacing:18.099200pt;}
.wsf3c_c00001{word-spacing:18.118400pt;}
.wseeb_c00001{word-spacing:18.124800pt;}
.ws19ed_c00001{word-spacing:18.132192pt;}
.ws74a_c00001{word-spacing:18.137600pt;}
.wsd72_c00001{word-spacing:18.144000pt;}
.wscb6_c00001{word-spacing:18.150400pt;}
.wsad5_c00001{word-spacing:18.156800pt;}
.wsd55_c00001{word-spacing:18.163200pt;}
.ws331_c00001{word-spacing:18.182400pt;}
.ws808_c00001{word-spacing:18.188800pt;}
.wscb7_c00001{word-spacing:18.195200pt;}
.ws8ef_c00001{word-spacing:18.201600pt;}
.ws749_c00001{word-spacing:18.208000pt;}
.wsd71_c00001{word-spacing:18.214400pt;}
.wscc8_c00001{word-spacing:18.220800pt;}
.wsda0_c00001{word-spacing:18.227200pt;}
.ws332_c00001{word-spacing:18.233600pt;}
.ws16e3_c00001{word-spacing:18.233728pt;}
.ws1883_c00001{word-spacing:18.239072pt;}
.ws8f0_c00001{word-spacing:18.240000pt;}
.ws127b_c00001{word-spacing:18.241440pt;}
.wsda4_c00001{word-spacing:18.246400pt;}
.ws1a38_c00001{word-spacing:18.252800pt;}
.ws127c_c00001{word-spacing:18.253152pt;}
.ws809_c00001{word-spacing:18.259200pt;}
.wsdb8_c00001{word-spacing:18.265600pt;}
.wsdbb_c00001{word-spacing:18.272000pt;}
.wsc93_c00001{word-spacing:18.276576pt;}
.ws724_c00001{word-spacing:18.278400pt;}
.wsb3_c00001{word-spacing:18.282432pt;}
.ws127a_c00001{word-spacing:18.288288pt;}
.ws1aac_c00001{word-spacing:18.291200pt;}
.wsc94_c00001{word-spacing:18.294144pt;}
.ws1718_c00001{word-spacing:18.313888pt;}
.wsd96_c00001{word-spacing:18.323200pt;}
.ws1717_c00001{word-spacing:18.335264pt;}
.ws1aab_c00001{word-spacing:18.361600pt;}
.wse35_c00001{word-spacing:18.368000pt;}
.wsd54_c00001{word-spacing:18.374400pt;}
.ws1724_c00001{word-spacing:18.404736pt;}
.ws4c3_c00001{word-spacing:18.412800pt;}
.ws1884_c00001{word-spacing:18.415424pt;}
.wsa65_c00001{word-spacing:18.432000pt;}
.wsce0_c00001{word-spacing:18.444800pt;}
.ws140d_c00001{word-spacing:18.452832pt;}
.wsfc_c00001{word-spacing:18.457600pt;}
.ws17a6_c00001{word-spacing:18.458176pt;}
.wsaf6_c00001{word-spacing:18.464000pt;}
.ws1a89_c00001{word-spacing:18.470400pt;}
.ws17a7_c00001{word-spacing:18.474208pt;}
.ws655_c00001{word-spacing:18.476800pt;}
.ws9ca_c00001{word-spacing:18.483200pt;}
.wsfb_c00001{word-spacing:18.489600pt;}
.ws3b1_c00001{word-spacing:18.502400pt;}
.ws9ad_c00001{word-spacing:18.508800pt;}
.ws250_c00001{word-spacing:18.515200pt;}
.wsa63_c00001{word-spacing:18.521600pt;}
.wsd5a_c00001{word-spacing:18.528000pt;}
.wsd59_c00001{word-spacing:18.534400pt;}
.wsa66_c00001{word-spacing:18.540800pt;}
.ws12fb_c00001{word-spacing:18.545952pt;}
.wsded_c00001{word-spacing:18.547200pt;}
.ws17b9_c00001{word-spacing:18.549024pt;}
.ws12e6_c00001{word-spacing:18.551808pt;}
.ws9cb_c00001{word-spacing:18.553600pt;}
.ws1866_c00001{word-spacing:18.559712pt;}
.wsc2d_c00001{word-spacing:18.560000pt;}
.ws12fa_c00001{word-spacing:18.563520pt;}
.wsc2e_c00001{word-spacing:18.566400pt;}
.ws1039_c00001{word-spacing:18.569376pt;}
.ws4c4_c00001{word-spacing:18.572800pt;}
.ws12f9_c00001{word-spacing:18.575232pt;}
.wsd95_c00001{word-spacing:18.579200pt;}
.ws1038_c00001{word-spacing:18.581088pt;}
.wsd85_c00001{word-spacing:18.585600pt;}
.wsfa1_c00001{word-spacing:18.586944pt;}
.wsce1_c00001{word-spacing:18.592000pt;}
.wsf7a_c00001{word-spacing:18.592800pt;}
.ws19db_c00001{word-spacing:18.607808pt;}
.wsf9f_c00001{word-spacing:18.610368pt;}
.wsfa0_c00001{word-spacing:18.616224pt;}
.ws3b0_c00001{word-spacing:18.617600pt;}
.ws15ca_c00001{word-spacing:18.629184pt;}
.ws1a2a_c00001{word-spacing:18.634528pt;}
.ws990_c00001{word-spacing:18.656000pt;}
.ws1a29_c00001{word-spacing:18.661248pt;}
.ws15cb_c00001{word-spacing:18.666592pt;}
.ws1663_c00001{word-spacing:18.671936pt;}
.ws6ad_c00001{word-spacing:18.682624pt;}
.wsf14_c00001{word-spacing:18.700800pt;}
.wsb8a_c00001{word-spacing:18.726400pt;}
.ws18df_c00001{word-spacing:18.736064pt;}
.wsb24_c00001{word-spacing:18.745600pt;}
.ws261_c00001{word-spacing:18.752000pt;}
.ws6ac_c00001{word-spacing:18.762784pt;}
.wsdb4_c00001{word-spacing:18.764800pt;}
.wsa60_c00001{word-spacing:18.771200pt;}
.wsb25_c00001{word-spacing:18.777600pt;}
.ws17f_c00001{word-spacing:18.778816pt;}
.ws260_c00001{word-spacing:18.784000pt;}
.ws55e_c00001{word-spacing:18.790400pt;}
.ws69c_c00001{word-spacing:18.803200pt;}
.ws69d_c00001{word-spacing:18.809600pt;}
.wsdee_c00001{word-spacing:18.816000pt;}
.wsb79_c00001{word-spacing:18.822400pt;}
.wsa61_c00001{word-spacing:18.828800pt;}
.ws41e_c00001{word-spacing:18.835200pt;}
.ws76d_c00001{word-spacing:18.841600pt;}
.wsbeb_c00001{word-spacing:18.848000pt;}
.ws55d_c00001{word-spacing:18.854400pt;}
.ws17e_c00001{word-spacing:18.858976pt;}
.wsf0e_c00001{word-spacing:18.860800pt;}
.wsb8b_c00001{word-spacing:18.867200pt;}
.ws8f3_c00001{word-spacing:18.873600pt;}
.ws1867_c00001{word-spacing:18.880352pt;}
.wsd9c_c00001{word-spacing:18.885696pt;}
.wsb31_c00001{word-spacing:18.886400pt;}
.ws1972_c00001{word-spacing:18.891040pt;}
.ws68f_c00001{word-spacing:18.892800pt;}
.ws1030_c00001{word-spacing:18.897312pt;}
.wsdb5_c00001{word-spacing:18.899200pt;}
.ws11ad_c00001{word-spacing:18.903168pt;}
.ws16c0_c00001{word-spacing:18.907072pt;}
.ws1016_c00001{word-spacing:18.914880pt;}
.ws1aa7_c00001{word-spacing:18.918400pt;}
.ws1017_c00001{word-spacing:18.920736pt;}
.ws17d_c00001{word-spacing:18.923104pt;}
.ws125f_c00001{word-spacing:18.926592pt;}
.ws1031_c00001{word-spacing:18.932448pt;}
.ws1aa8_c00001{word-spacing:18.937600pt;}
.ws125e_c00001{word-spacing:18.938304pt;}
.ws11ae_c00001{word-spacing:18.944160pt;}
.ws68e_c00001{word-spacing:18.950400pt;}
.ws1971_c00001{word-spacing:18.955168pt;}
.ws9e2_c00001{word-spacing:18.965856pt;}
.wsbf9_c00001{word-spacing:19.014400pt;}
.ws9e3_c00001{word-spacing:19.019296pt;}
.ws74c_c00001{word-spacing:19.040000pt;}
.ws1382_c00001{word-spacing:19.049568pt;}
.ws97_c00001{word-spacing:19.059200pt;}
.wse9a_c00001{word-spacing:19.065600pt;}
.wsdfb_c00001{word-spacing:19.078400pt;}
.wscae_c00001{word-spacing:19.084800pt;}
.wsab5_c00001{word-spacing:19.091200pt;}
.wseec_c00001{word-spacing:19.097600pt;}
.ws84e_c00001{word-spacing:19.104000pt;}
.wsdf8_c00001{word-spacing:19.110400pt;}
.ws98_c00001{word-spacing:19.116800pt;}
.ws5d9_c00001{word-spacing:19.129600pt;}
.wsbf8_c00001{word-spacing:19.136000pt;}
.wscf3_c00001{word-spacing:19.148800pt;}
.ws703_c00001{word-spacing:19.168000pt;}
.ws93d_c00001{word-spacing:19.174400pt;}
.ws34f_c00001{word-spacing:19.180800pt;}
.wsab6_c00001{word-spacing:19.187200pt;}
.ws5d8_c00001{word-spacing:19.193600pt;}
.ws191b_c00001{word-spacing:19.195648pt;}
.ws5d7_c00001{word-spacing:19.200000pt;}
.wsdfc_c00001{word-spacing:19.206400pt;}
.ws630_c00001{word-spacing:19.219200pt;}
.ws13bd_c00001{word-spacing:19.231104pt;}
.wscf4_c00001{word-spacing:19.232000pt;}
.ws1015_c00001{word-spacing:19.254528pt;}
.ws191c_c00001{word-spacing:19.275808pt;}
.ws10c8_c00001{word-spacing:19.277952pt;}
.ws19ff_c00001{word-spacing:19.281152pt;}
.wse45_c00001{word-spacing:19.347200pt;}
.wsc3f_c00001{word-spacing:19.353600pt;}
.wsf3d_c00001{word-spacing:19.360000pt;}
.ws758_c00001{word-spacing:19.385600pt;}
.ws95e_c00001{word-spacing:19.392000pt;}
.wse44_c00001{word-spacing:19.398400pt;}
.wsa90_c00001{word-spacing:19.404800pt;}
.ws2ac_c00001{word-spacing:19.411200pt;}
.ws757_c00001{word-spacing:19.417600pt;}
.wsc84_c00001{word-spacing:19.430400pt;}
.ws77e_c00001{word-spacing:19.449600pt;}
.ws867_c00001{word-spacing:19.456000pt;}
.ws2ad_c00001{word-spacing:19.468800pt;}
.wsb10_c00001{word-spacing:19.481600pt;}
.ws77d_c00001{word-spacing:19.488000pt;}
.wsa9b_c00001{word-spacing:19.494400pt;}
.ws13bc_c00001{word-spacing:19.500480pt;}
.wsa8f_c00001{word-spacing:19.500800pt;}
.ws868_c00001{word-spacing:19.507200pt;}
.ws10c6_c00001{word-spacing:19.512192pt;}
.wsdf6_c00001{word-spacing:19.513600pt;}
.wsf21_c00001{word-spacing:19.520000pt;}
.ws1005_c00001{word-spacing:19.523904pt;}
.ws2ab_c00001{word-spacing:19.526400pt;}
.wsc85_c00001{word-spacing:19.532800pt;}
.wse46_c00001{word-spacing:19.539200pt;}
.wsc86_c00001{word-spacing:19.545600pt;}
.ws10c7_c00001{word-spacing:19.547328pt;}
.wsa72_c00001{word-spacing:19.553184pt;}
.ws1a47_c00001{word-spacing:19.558400pt;}
.ws124f_c00001{word-spacing:19.564896pt;}
.ws1003_c00001{word-spacing:19.582464pt;}
.ws1004_c00001{word-spacing:19.588320pt;}
.ws639_c00001{word-spacing:19.591104pt;}
.wsa52_c00001{word-spacing:19.596800pt;}
.ws1a01_c00001{word-spacing:19.623168pt;}
.ws1a00_c00001{word-spacing:19.633856pt;}
.ws1ae1_c00001{word-spacing:19.641600pt;}
.ws1713_c00001{word-spacing:19.644544pt;}
.wsd63_c00001{word-spacing:19.648000pt;}
.ws1ad0_c00001{word-spacing:19.660800pt;}
.wsca7_c00001{word-spacing:19.680000pt;}
.ws585_c00001{word-spacing:19.686400pt;}
.wsca5_c00001{word-spacing:19.692800pt;}
.ws19ab_c00001{word-spacing:19.697984pt;}
.ws1ae2_c00001{word-spacing:19.699200pt;}
.wsd62_c00001{word-spacing:19.724800pt;}
.ws1aaf_c00001{word-spacing:19.737600pt;}
.ws60b_c00001{word-spacing:19.744000pt;}
.ws19e_c00001{word-spacing:19.750400pt;}
.ws30b_c00001{word-spacing:19.756800pt;}
.wsdc9_c00001{word-spacing:19.763200pt;}
.ws30a_c00001{word-spacing:19.769600pt;}
.ws19f_c00001{word-spacing:19.782400pt;}
.ws910_c00001{word-spacing:19.788800pt;}
.ws3c0_c00001{word-spacing:19.795200pt;}
.ws856_c00001{word-spacing:19.801600pt;}
.ws60c_c00001{word-spacing:19.808000pt;}
.ws432_c00001{word-spacing:19.814400pt;}
.ws30c_c00001{word-spacing:19.820800pt;}
.wsbc9_c00001{word-spacing:19.827200pt;}
.ws1445_c00001{word-spacing:19.831584pt;}
.ws584_c00001{word-spacing:19.833600pt;}
.ws433_c00001{word-spacing:19.840000pt;}
.ws1642_c00001{word-spacing:19.842272pt;}
.ws911_c00001{word-spacing:19.846400pt;}
.ws1641_c00001{word-spacing:19.847616pt;}
.ws8a3_c00001{word-spacing:19.852800pt;}
.wsca6_c00001{word-spacing:19.859200pt;}
.wsa53_c00001{word-spacing:19.865600pt;}
.wsd76_c00001{word-spacing:19.872000pt;}
.ws12b3_c00001{word-spacing:19.875264pt;}
.ws12b2_c00001{word-spacing:19.881120pt;}
.wse8d_c00001{word-spacing:19.884800pt;}
.ws1931_c00001{word-spacing:19.890368pt;}
.ws600_c00001{word-spacing:19.891200pt;}
.ws12b1_c00001{word-spacing:19.898688pt;}
.ws144_c00001{word-spacing:19.906400pt;}
.ws145_c00001{word-spacing:19.927776pt;}
.ws1a7a_c00001{word-spacing:19.929600pt;}
.wsd5e_c00001{word-spacing:19.936000pt;}
.wse61_c00001{word-spacing:19.974400pt;}
.ws1932_c00001{word-spacing:19.991904pt;}
.ws1788_c00001{word-spacing:20.018624pt;}
.wsfd_c00001{word-spacing:20.019200pt;}
.wsb3f_c00001{word-spacing:20.032000pt;}
.wsc23_c00001{word-spacing:20.038400pt;}
.wsfe_c00001{word-spacing:20.044800pt;}
.ws1a79_c00001{word-spacing:20.051200pt;}
.wsb3e_c00001{word-spacing:20.057600pt;}
.ws462_c00001{word-spacing:20.064000pt;}
.ws1446_c00001{word-spacing:20.066720pt;}
.ws463_c00001{word-spacing:20.083200pt;}
.wse5f_c00001{word-spacing:20.108800pt;}
.ws737_c00001{word-spacing:20.115200pt;}
.ws1276_c00001{word-spacing:20.115360pt;}
.wsa85_c00001{word-spacing:20.121600pt;}
.wse39_c00001{word-spacing:20.128000pt;}
.wse38_c00001{word-spacing:20.134400pt;}
.ws39e_c00001{word-spacing:20.140800pt;}
.ws989_c00001{word-spacing:20.147200pt;}
.ws1a2e_c00001{word-spacing:20.152224pt;}
.wsc22_c00001{word-spacing:20.153600pt;}
.ws19aa_c00001{word-spacing:20.157568pt;}
.ws738_c00001{word-spacing:20.160000pt;}
.ws1055_c00001{word-spacing:20.162208pt;}
.ws464_c00001{word-spacing:20.166400pt;}
.wsfc7_c00001{word-spacing:20.168064pt;}
.ws1056_c00001{word-spacing:20.179776pt;}
.ws10d3_c00001{word-spacing:20.185632pt;}
.wsfc6_c00001{word-spacing:20.191488pt;}
.ws174_c00001{word-spacing:20.203200pt;}
.ws1364_c00001{word-spacing:20.209056pt;}
.ws1358_c00001{word-spacing:20.214912pt;}
.ws12cb_c00001{word-spacing:20.226624pt;}
.ws1a2d_c00001{word-spacing:20.232384pt;}
.ws39d_c00001{word-spacing:20.249600pt;}
.wsecf_c00001{word-spacing:20.326400pt;}
.wsde4_c00001{word-spacing:20.332800pt;}
.ws635_c00001{word-spacing:20.339200pt;}
.wsd5f_c00001{word-spacing:20.352000pt;}
.ws206_c00001{word-spacing:20.358400pt;}
.wsc5d_c00001{word-spacing:20.364800pt;}
.wsd60_c00001{word-spacing:20.371200pt;}
.ws75c_c00001{word-spacing:20.377600pt;}
.wse0_c00001{word-spacing:20.384000pt;}
.wsece_c00001{word-spacing:20.390400pt;}
.ws204_c00001{word-spacing:20.403200pt;}
.ws3ed_c00001{word-spacing:20.409600pt;}
.wsbc0_c00001{word-spacing:20.422400pt;}
.wsd35_c00001{word-spacing:20.428800pt;}
.wseea_c00001{word-spacing:20.448000pt;}
.wsbbf_c00001{word-spacing:20.454400pt;}
.ws636_c00001{word-spacing:20.460800pt;}
.ws880_c00001{word-spacing:20.473600pt;}
.ws634_c00001{word-spacing:20.480000pt;}
.wsecd_c00001{word-spacing:20.486400pt;}
.wsc5e_c00001{word-spacing:20.492800pt;}
.wsfcd_c00001{word-spacing:20.496000pt;}
.ws1870_c00001{word-spacing:20.499584pt;}
.ws112f_c00001{word-spacing:20.501856pt;}
.ws205_c00001{word-spacing:20.505600pt;}
.wsbe1_c00001{word-spacing:20.513568pt;}
.ws110f_c00001{word-spacing:20.525280pt;}
.wsfcc_c00001{word-spacing:20.536992pt;}
.wsfce_c00001{word-spacing:20.542848pt;}
.wsb5a_c00001{word-spacing:20.550400pt;}
.ws19d8_c00001{word-spacing:20.558368pt;}
.ws19d7_c00001{word-spacing:20.569056pt;}
.wsb59_c00001{word-spacing:20.620800pt;}
.ws958_c00001{word-spacing:20.672000pt;}
.wsc4f_c00001{word-spacing:20.691200pt;}
.wsc3d_c00001{word-spacing:20.697600pt;}
.wsa35_c00001{word-spacing:20.704000pt;}
.wsb9b_c00001{word-spacing:20.710400pt;}
.wsb9a_c00001{word-spacing:20.723200pt;}
.wsc4e_c00001{word-spacing:20.736000pt;}
.ws6b9_c00001{word-spacing:20.748800pt;}
.ws8f8_c00001{word-spacing:20.761600pt;}
.wscc0_c00001{word-spacing:20.768000pt;}
.ws1159_c00001{word-spacing:20.771232pt;}
.ws8bb_c00001{word-spacing:20.774400pt;}
.wsa36_c00001{word-spacing:20.780800pt;}
.wsb9c_c00001{word-spacing:20.787200pt;}
.ws1393_c00001{word-spacing:20.788800pt;}
.ws19e2_c00001{word-spacing:20.793600pt;}
.ws1120_c00001{word-spacing:20.800512pt;}
.ws143a_c00001{word-spacing:20.804192pt;}
.ws111f_c00001{word-spacing:20.806368pt;}
.wse2f_c00001{word-spacing:20.806400pt;}
.ws19f6_c00001{word-spacing:20.814880pt;}
.wsfb5_c00001{word-spacing:20.823936pt;}
.wsdf5_c00001{word-spacing:20.832000pt;}
.ws111e_c00001{word-spacing:20.847360pt;}
.ws8f9_c00001{word-spacing:20.851200pt;}
.ws1392_c00001{word-spacing:20.859072pt;}
.wsfb6_c00001{word-spacing:20.876640pt;}
.ws479_c00001{word-spacing:20.915200pt;}
.ws47b_c00001{word-spacing:20.947200pt;}
.ws1a19_c00001{word-spacing:20.953824pt;}
.wsdcd_c00001{word-spacing:20.960000pt;}
.wsdf4_c00001{word-spacing:20.979200pt;}
.wsdce_c00001{word-spacing:20.985600pt;}
.ws47a_c00001{word-spacing:21.004800pt;}
.wse0e_c00001{word-spacing:21.017600pt;}
.wse63_c00001{word-spacing:21.024000pt;}
.wsc51_c00001{word-spacing:21.030400pt;}
.wsee3_c00001{word-spacing:21.036800pt;}
.wsea6_c00001{word-spacing:21.049600pt;}
.wsf11_c00001{word-spacing:21.056000pt;}
.wsea7_c00001{word-spacing:21.062400pt;}
.ws1027_c00001{word-spacing:21.064032pt;}
.wse64_c00001{word-spacing:21.075200pt;}
.wscbe_c00001{word-spacing:21.094400pt;}
.wsc50_c00001{word-spacing:21.100800pt;}
.wse1b_c00001{word-spacing:21.107200pt;}
.ws1028_c00001{word-spacing:21.122592pt;}
.ws1232_c00001{word-spacing:21.134304pt;}
.wse0f_c00001{word-spacing:21.145600pt;}
.ws118f_c00001{word-spacing:21.146016pt;}
.ws581_c00001{word-spacing:21.151872pt;}
.ws1026_c00001{word-spacing:21.157728pt;}
.ws1158_c00001{word-spacing:21.169440pt;}
.wsd5c_c00001{word-spacing:21.171200pt;}
.ws134f_c00001{word-spacing:21.181152pt;}
.ws1040_c00001{word-spacing:21.187008pt;}
.ws1439_c00001{word-spacing:21.188960pt;}
.ws580_c00001{word-spacing:21.192864pt;}
.ws1924_c00001{word-spacing:21.210336pt;}
.ws19dc_c00001{word-spacing:21.295840pt;}
.wse3c_c00001{word-spacing:21.299200pt;}
.ws1923_c00001{word-spacing:21.311872pt;}
.ws1ac6_c00001{word-spacing:21.324800pt;}
.ws1ac5_c00001{word-spacing:21.344000pt;}
.ws1ab1_c00001{word-spacing:21.350400pt;}
.wse3b_c00001{word-spacing:21.363200pt;}
.wsb13_c00001{word-spacing:21.376000pt;}
.wsf_c00001{word-spacing:21.401600pt;}
.ws722_c00001{word-spacing:21.408000pt;}
.wsc05_c00001{word-spacing:21.414400pt;}
.ws721_c00001{word-spacing:21.420800pt;}
.wsb14_c00001{word-spacing:21.440000pt;}
.ws1155_c00001{word-spacing:21.450528pt;}
.wsb15_c00001{word-spacing:21.452800pt;}
.wsd5b_c00001{word-spacing:21.459200pt;}
.ws13b4_c00001{word-spacing:21.468096pt;}
.ws1233_c00001{word-spacing:21.479808pt;}
.ws1231_c00001{word-spacing:21.485664pt;}
.ws103f_c00001{word-spacing:21.497376pt;}
.ws1a0e_c00001{word-spacing:21.525632pt;}
.ws340_c00001{word-spacing:21.555200pt;}
.wsd29_c00001{word-spacing:21.584416pt;}
.ws1a0f_c00001{word-spacing:21.621824pt;}
.ws70a_c00001{word-spacing:21.644800pt;}
.wsf25_c00001{word-spacing:21.657600pt;}
.wsea2_c00001{word-spacing:21.670400pt;}
.ws33f_c00001{word-spacing:21.676800pt;}
.ws3d1_c00001{word-spacing:21.689600pt;}
.ws19f2_c00001{word-spacing:21.696000pt;}
.ws5e1_c00001{word-spacing:21.702400pt;}
.wsf29_c00001{word-spacing:21.721600pt;}
.ws702_c00001{word-spacing:21.728000pt;}
.wsbda_c00001{word-spacing:21.734400pt;}
.wscc6_c00001{word-spacing:21.747200pt;}
.ws70b_c00001{word-spacing:21.753600pt;}
.ws1255_c00001{word-spacing:21.755040pt;}
.ws19f1_c00001{word-spacing:21.760000pt;}
.ws1253_c00001{word-spacing:21.760896pt;}
.ws701_c00001{word-spacing:21.766400pt;}
.ws133c_c00001{word-spacing:21.766752pt;}
.ws3d3_c00001{word-spacing:21.772800pt;}
.wsf26_c00001{word-spacing:21.785600pt;}
.ws19c2_c00001{word-spacing:21.787488pt;}
.ws1254_c00001{word-spacing:21.790176pt;}
.ws3d2_c00001{word-spacing:21.804800pt;}
.wsea9_c00001{word-spacing:21.824000pt;}
.ws1252_c00001{word-spacing:21.837024pt;}
.ws1a80_c00001{word-spacing:21.856000pt;}
.ws15bb_c00001{word-spacing:21.862304pt;}
.wscb5_c00001{word-spacing:21.894400pt;}
.wsef2_c00001{word-spacing:21.900800pt;}
.ws1a6d_c00001{word-spacing:21.907200pt;}
.wsf28_c00001{word-spacing:21.971200pt;}
.wsd23_c00001{word-spacing:21.977600pt;}
.ws15b9_c00001{word-spacing:21.979872pt;}
.wsb97_c00001{word-spacing:21.990400pt;}
.wscb4_c00001{word-spacing:22.003200pt;}
.wsf32_c00001{word-spacing:22.009600pt;}
.ws5df_c00001{word-spacing:22.016000pt;}
.wsf31_c00001{word-spacing:22.022400pt;}
.wsf62_c00001{word-spacing:22.028800pt;}
.ws5de_c00001{word-spacing:22.035200pt;}
.ws38d_c00001{word-spacing:22.048000pt;}
.wsb98_c00001{word-spacing:22.054400pt;}
.ws5e2_c00001{word-spacing:22.060800pt;}
.wsd24_c00001{word-spacing:22.073600pt;}
.ws1132_c00001{word-spacing:22.077120pt;}
.ws16e6_c00001{word-spacing:22.086752pt;}
.wsf27_c00001{word-spacing:22.092800pt;}
.ws1065_c00001{word-spacing:22.106400pt;}
.ws1185_c00001{word-spacing:22.112256pt;}
.ws1186_c00001{word-spacing:22.118112pt;}
.ws1131_c00001{word-spacing:22.123968pt;}
.ws1066_c00001{word-spacing:22.129824pt;}
.ws5e0_c00001{word-spacing:22.131200pt;}
.ws1064_c00001{word-spacing:22.159104pt;}
.ws1978_c00001{word-spacing:22.241728pt;}
.ws1977_c00001{word-spacing:22.263104pt;}
.ws8aa_c00001{word-spacing:22.278400pt;}
.wsed7_c00001{word-spacing:22.297600pt;}
.ws15ba_c00001{word-spacing:22.300512pt;}
.wsed8_c00001{word-spacing:22.316800pt;}
.ws7b7_c00001{word-spacing:22.348800pt;}
.wsed6_c00001{word-spacing:22.355200pt;}
.ws1aa9_c00001{word-spacing:22.374400pt;}
.ws1308_c00001{word-spacing:22.375776pt;}
.ws1aaa_c00001{word-spacing:22.380800pt;}
.ws3d4_c00001{word-spacing:22.387200pt;}
.ws1636_c00001{word-spacing:22.391360pt;}
.ws10e1_c00001{word-spacing:22.399200pt;}
.ws3d5_c00001{word-spacing:22.406400pt;}
.ws10e0_c00001{word-spacing:22.410912pt;}
.ws10df_c00001{word-spacing:22.422624pt;}
.ws1307_c00001{word-spacing:22.440192pt;}
.ws1119_c00001{word-spacing:22.451904pt;}
.ws1184_c00001{word-spacing:22.475328pt;}
.ws446_c00001{word-spacing:22.496000pt;}
.wsc9b_c00001{word-spacing:22.572800pt;}
.wsf1c_c00001{word-spacing:22.585600pt;}
.ws445_c00001{word-spacing:22.598400pt;}
.ws192a_c00001{word-spacing:22.610464pt;}
.ws41f_c00001{word-spacing:22.611200pt;}
.wsc0c_c00001{word-spacing:22.617600pt;}
.wsa6c_c00001{word-spacing:22.624000pt;}
.wsb73_c00001{word-spacing:22.636800pt;}
.wsc0b_c00001{word-spacing:22.643200pt;}
.wsb74_c00001{word-spacing:22.649600pt;}
.wsedd_c00001{word-spacing:22.656000pt;}
.wsb2f_c00001{word-spacing:22.662400pt;}
.wsc9c_c00001{word-spacing:22.668800pt;}
.wsa6d_c00001{word-spacing:22.675200pt;}
.wsb30_c00001{word-spacing:22.681600pt;}
.ws37d_c00001{word-spacing:22.688000pt;}
.wsd3c_c00001{word-spacing:22.694400pt;}
.wsf1b_c00001{word-spacing:22.700800pt;}
.ws37c_c00001{word-spacing:22.707200pt;}
.ws1914_c00001{word-spacing:22.712000pt;}
.ws12c9_c00001{word-spacing:22.715424pt;}
.ws197a_c00001{word-spacing:22.720000pt;}
.ws19b9_c00001{word-spacing:22.722688pt;}
.ws19bb_c00001{word-spacing:22.728032pt;}
.ws111a_c00001{word-spacing:22.744704pt;}
.ws12c8_c00001{word-spacing:22.762272pt;}
.ws1241_c00001{word-spacing:22.768128pt;}
.ws1ad7_c00001{word-spacing:22.771200pt;}
.ws19a0_c00001{word-spacing:22.808192pt;}
.ws19ba_c00001{word-spacing:22.850944pt;}
.wse05_c00001{word-spacing:22.867200pt;}
.ws804_c00001{word-spacing:22.918400pt;}
.wsf24_c00001{word-spacing:22.950400pt;}
.wsf66_c00001{word-spacing:22.956800pt;}
.ws19c6_c00001{word-spacing:22.976000pt;}
.ws27c_c00001{word-spacing:22.982400pt;}
.wsf67_c00001{word-spacing:22.988800pt;}
.ws805_c00001{word-spacing:23.001600pt;}
.wse04_c00001{word-spacing:23.027200pt;}
.ws1a65_c00001{word-spacing:23.033600pt;}
.ws27b_c00001{word-spacing:23.046400pt;}
.wsb91_c00001{word-spacing:23.048672pt;}
.wsf23_c00001{word-spacing:23.052800pt;}
.ws1ad5_c00001{word-spacing:23.059200pt;}
.ws109b_c00001{word-spacing:23.060928pt;}
.wsd22_c00001{word-spacing:23.078400pt;}
.ws1ad6_c00001{word-spacing:23.091200pt;}
.ws109a_c00001{word-spacing:23.101920pt;}
.ws1099_c00001{word-spacing:23.119488pt;}
.wsb92_c00001{word-spacing:23.150208pt;}
.wsd99_c00001{word-spacing:23.206400pt;}
.wsc7e_c00001{word-spacing:23.219200pt;}
.wsc7d_c00001{word-spacing:23.270400pt;}
.wsd98_c00001{word-spacing:23.283200pt;}
.wsb76_c00001{word-spacing:23.289600pt;}
.ws6cb_c00001{word-spacing:23.296000pt;}
.wse2c_c00001{word-spacing:23.302400pt;}
.wsc04_c00001{word-spacing:23.328000pt;}
.ws106_c00001{word-spacing:23.334400pt;}
.ws995_c00001{word-spacing:23.340800pt;}
.wsb77_c00001{word-spacing:23.347200pt;}
.ws1696_c00001{word-spacing:23.353280pt;}
.ws105_c00001{word-spacing:23.353600pt;}
.ws1334_c00001{word-spacing:23.365440pt;}
.ws6cc_c00001{word-spacing:23.372800pt;}
.ws1a3f_c00001{word-spacing:23.374656pt;}
.wsdb7_c00001{word-spacing:23.385600pt;}
.wsdb6_c00001{word-spacing:23.392000pt;}
.ws1a71_c00001{word-spacing:23.424000pt;}
.ws1335_c00001{word-spacing:23.429856pt;}
.ws1695_c00001{word-spacing:23.465504pt;}
.ws1a70_c00001{word-spacing:23.520000pt;}
.ws1a9c_c00001{word-spacing:23.526400pt;}
.ws21a_c00001{word-spacing:23.545600pt;}
.ws4e_c00001{word-spacing:23.564800pt;}
.wsee9_c00001{word-spacing:23.571200pt;}
.wse9f_c00001{word-spacing:23.596800pt;}
.ws380_c00001{word-spacing:23.616000pt;}
.wsee8_c00001{word-spacing:23.622400pt;}
.wsb09_c00001{word-spacing:23.635200pt;}
.ws381_c00001{word-spacing:23.641600pt;}
.ws4f_c00001{word-spacing:23.654400pt;}
.wsea0_c00001{word-spacing:23.660800pt;}
.wse8b_c00001{word-spacing:23.667200pt;}
.ws1204_c00001{word-spacing:23.681664pt;}
.ws11ab_c00001{word-spacing:23.699232pt;}
.ws1289_c00001{word-spacing:23.710944pt;}
.wsb46_c00001{word-spacing:23.712000pt;}
.ws1287_c00001{word-spacing:23.734368pt;}
.ws1288_c00001{word-spacing:23.740224pt;}
.ws11ac_c00001{word-spacing:23.746080pt;}
.wseab_c00001{word-spacing:23.833600pt;}
.ws52e_c00001{word-spacing:23.891200pt;}
.wsd25_c00001{word-spacing:23.897600pt;}
.ws708_c00001{word-spacing:23.910400pt;}
.ws82b_c00001{word-spacing:23.923200pt;}
.wsd39_c00001{word-spacing:23.936000pt;}
.wseaa_c00001{word-spacing:23.942400pt;}
.ws6f7_c00001{word-spacing:23.955200pt;}
.wsf0f_c00001{word-spacing:23.968000pt;}
.ws52c_c00001{word-spacing:23.974400pt;}
.ws709_c00001{word-spacing:23.980800pt;}
.wsebd_c00001{word-spacing:23.987200pt;}
.ws82a_c00001{word-spacing:23.993600pt;}
.ws136a_c00001{word-spacing:24.009600pt;}
.wse97_c00001{word-spacing:24.019200pt;}
.wsab9_c00001{word-spacing:24.025600pt;}
.wsd3a_c00001{word-spacing:24.032000pt;}
.ws122f_c00001{word-spacing:24.033024pt;}
.wsb0a_c00001{word-spacing:24.051200pt;}
.ws1aba_c00001{word-spacing:24.070400pt;}
.ws1230_c00001{word-spacing:24.074016pt;}
.ws52d_c00001{word-spacing:24.083200pt;}
.wsa8c_c00001{word-spacing:24.102400pt;}
.ws122e_c00001{word-spacing:24.103296pt;}
.ws6c5_c00001{word-spacing:24.134400pt;}
.ws1ab9_c00001{word-spacing:24.140800pt;}
.wsa8d_c00001{word-spacing:24.198400pt;}
.ws5b4_c00001{word-spacing:24.230400pt;}
.wsde3_c00001{word-spacing:24.236800pt;}
.ws1956_c00001{word-spacing:24.249600pt;}
.ws4d0_c00001{word-spacing:24.262400pt;}
.ws8cb_c00001{word-spacing:24.281600pt;}
.wscf2_c00001{word-spacing:24.288000pt;}
.ws6c4_c00001{word-spacing:24.307200pt;}
.ws1957_c00001{word-spacing:24.313600pt;}
.ws9cc_c00001{word-spacing:24.320000pt;}
.wsde2_c00001{word-spacing:24.326400pt;}
.ws9c8_c00001{word-spacing:24.332800pt;}
.wsbee_c00001{word-spacing:24.349248pt;}
.ws109d_c00001{word-spacing:24.355104pt;}
.ws109c_c00001{word-spacing:24.360960pt;}
.ws109e_c00001{word-spacing:24.384384pt;}
.ws192d_c00001{word-spacing:24.395360pt;}
.wsf41_c00001{word-spacing:24.409600pt;}
.ws192e_c00001{word-spacing:24.411392pt;}
.ws6ee_c00001{word-spacing:24.512000pt;}
.ws5ab_c00001{word-spacing:24.518400pt;}
.ws64d_c00001{word-spacing:24.531200pt;}
.ws6ef_c00001{word-spacing:24.544000pt;}
.ws54f_c00001{word-spacing:24.576000pt;}
.ws158_c00001{word-spacing:24.582400pt;}
.ws157_c00001{word-spacing:24.588800pt;}
.wsd70_c00001{word-spacing:24.595200pt;}
.ws126f_c00001{word-spacing:24.618624pt;}
.wscab_c00001{word-spacing:24.633600pt;}
.ws54e_c00001{word-spacing:24.640000pt;}
.wsf43_c00001{word-spacing:24.652800pt;}
.ws5aa_c00001{word-spacing:24.659200pt;}
.wsc7c_c00001{word-spacing:24.659616pt;}
.ws1270_c00001{word-spacing:24.665472pt;}
.wscaa_c00001{word-spacing:24.665600pt;}
.wsc7b_c00001{word-spacing:24.671328pt;}
.wsf42_c00001{word-spacing:24.678400pt;}
.ws1328_c00001{word-spacing:24.688896pt;}
.ws126e_c00001{word-spacing:24.700608pt;}
.wseb1_c00001{word-spacing:24.761600pt;}
.wse89_c00001{word-spacing:24.787200pt;}
.wse4e_c00001{word-spacing:24.798656pt;}
.ws5bd_c00001{word-spacing:24.812800pt;}
.wse53_c00001{word-spacing:24.851200pt;}
.ws4d9_c00001{word-spacing:24.857600pt;}
.ws50a_c00001{word-spacing:24.864000pt;}
.ws50c_c00001{word-spacing:24.870400pt;}
.ws1ad8_c00001{word-spacing:24.883200pt;}
.ws81_c00001{word-spacing:24.915200pt;}
.ws98a_c00001{word-spacing:24.928000pt;}
.ws7c1_c00001{word-spacing:24.934400pt;}
.wsba2_c00001{word-spacing:24.940800pt;}
.wsc0f_c00001{word-spacing:24.947200pt;}
.wseb3_c00001{word-spacing:24.960000pt;}
.ws4d8_c00001{word-spacing:24.972800pt;}
.wsba1_c00001{word-spacing:24.979200pt;}
.wseb2_c00001{word-spacing:24.985600pt;}
.wse52_c00001{word-spacing:24.992000pt;}
.ws1336_c00001{word-spacing:25.016832pt;}
.wsc78_c00001{word-spacing:25.022688pt;}
.wse4f_c00001{word-spacing:25.044704pt;}
.ws1a51_c00001{word-spacing:25.113600pt;}
.ws887_c00001{word-spacing:25.120000pt;}
.ws4ca_c00001{word-spacing:25.145600pt;}
.ws871_c00001{word-spacing:25.196800pt;}
.ws4f7_c00001{word-spacing:25.203200pt;}
.ws872_c00001{word-spacing:25.209600pt;}
.ws1ac8_c00001{word-spacing:25.235200pt;}
.ws7d3_c00001{word-spacing:25.254400pt;}
.ws4cb_c00001{word-spacing:25.267200pt;}
.ws50b_c00001{word-spacing:25.280000pt;}
.ws18ef_c00001{word-spacing:25.287808pt;}
.ws1a50_c00001{word-spacing:25.305600pt;}
.ws520_c00001{word-spacing:25.491200pt;}
.wscba_c00001{word-spacing:25.497600pt;}
.wscbb_c00001{word-spacing:25.510400pt;}
.ws56b_c00001{word-spacing:25.516800pt;}
.wseda_c00001{word-spacing:25.523200pt;}
.wsb2b_c00001{word-spacing:25.529600pt;}
.wsd56_c00001{word-spacing:25.548800pt;}
.ws521_c00001{word-spacing:25.555200pt;}
.wse7c_c00001{word-spacing:25.561600pt;}
.wsada_c00001{word-spacing:25.568000pt;}
.ws7d8_c00001{word-spacing:25.574400pt;}
.wsb2a_c00001{word-spacing:25.580800pt;}
.ws1a5f_c00001{word-spacing:25.587200pt;}
.wsf95_c00001{word-spacing:25.590720pt;}
.wsefb_c00001{word-spacing:25.593600pt;}
.ws1a60_c00001{word-spacing:25.600000pt;}
.ws186d_c00001{word-spacing:25.613792pt;}
.wsce6_c00001{word-spacing:25.614144pt;}
.wsce7_c00001{word-spacing:25.631712pt;}
.ws56c_c00001{word-spacing:25.638400pt;}
.wsf94_c00001{word-spacing:25.643424pt;}
.ws7d9_c00001{word-spacing:25.651200pt;}
.ws1a96_c00001{word-spacing:25.664000pt;}
.wsadb_c00001{word-spacing:25.670400pt;}
.ws1a94_c00001{word-spacing:25.683200pt;}
.ws186e_c00001{word-spacing:25.683264pt;}
.ws53a_c00001{word-spacing:25.753600pt;}
.ws1a98_c00001{word-spacing:25.811200pt;}
.ws17a0_c00001{word-spacing:25.811520pt;}
.wse6e_c00001{word-spacing:25.830400pt;}
.wsa8b_c00001{word-spacing:25.862400pt;}
.ws539_c00001{word-spacing:25.888000pt;}
.wse6d_c00001{word-spacing:25.894400pt;}
.ws1a97_c00001{word-spacing:25.932800pt;}
.ws458_c00001{word-spacing:26.048000pt;}
.ws459_c00001{word-spacing:26.124800pt;}
.ws1a9d_c00001{word-spacing:26.169600pt;}
.wsd7a_c00001{word-spacing:26.176000pt;}
.wsc81_c00001{word-spacing:26.182400pt;}
.ws1993_c00001{word-spacing:26.188800pt;}
.ws96d_c00001{word-spacing:26.201600pt;}
.ws606_c00001{word-spacing:26.214400pt;}
.ws1958_c00001{word-spacing:26.227200pt;}
.wse94_c00001{word-spacing:26.233600pt;}
.wsc82_c00001{word-spacing:26.246400pt;}
.ws1134_c00001{word-spacing:26.270016pt;}
.ws1135_c00001{word-spacing:26.275872pt;}
.ws1136_c00001{word-spacing:26.287584pt;}
.wse2a_c00001{word-spacing:26.444800pt;}
.ws14e_c00001{word-spacing:26.451200pt;}
.wsad7_c00001{word-spacing:26.470400pt;}
.wse2b_c00001{word-spacing:26.476800pt;}
.wsca0_c00001{word-spacing:26.489600pt;}
.ws14c_c00001{word-spacing:26.496000pt;}
.ws14d_c00001{word-spacing:26.540800pt;}
.wsee6_c00001{word-spacing:26.547200pt;}
.ws1a07_c00001{word-spacing:26.553600pt;}
.ws1a1d_c00001{word-spacing:26.554336pt;}
.wse08_c00001{word-spacing:26.560000pt;}
.wse07_c00001{word-spacing:26.572800pt;}
.ws10ed_c00001{word-spacing:26.574528pt;}
.wse06_c00001{word-spacing:26.579200pt;}
.ws1052_c00001{word-spacing:26.586240pt;}
.ws1053_c00001{word-spacing:26.592096pt;}
.wsf82_c00001{word-spacing:26.644800pt;}
.ws962_c00001{word-spacing:26.661216pt;}
.ws60a_c00001{word-spacing:26.752000pt;}
.ws19f0_c00001{word-spacing:26.860800pt;}
.ws501_c00001{word-spacing:26.874976pt;}
.ws13c2_c00001{word-spacing:26.896608pt;}
.ws11c0_c00001{word-spacing:26.902464pt;}
.ws1965_c00001{word-spacing:26.905600pt;}
.ws14ba_c00001{word-spacing:26.912384pt;}
.ws11bf_c00001{word-spacing:26.914176pt;}
.ws1275_c00001{word-spacing:26.931744pt;}
.ws16c_c00001{word-spacing:26.943456pt;}
.ws178b_c00001{word-spacing:26.955136pt;}
.ws178c_c00001{word-spacing:27.013920pt;}
.ws19fb_c00001{word-spacing:27.040000pt;}
.ws178a_c00001{word-spacing:27.045984pt;}
.ws1964_c00001{word-spacing:27.097600pt;}
.wsd6c_c00001{word-spacing:27.123200pt;}
.ws12a6_c00001{word-spacing:27.160128pt;}
.ws790_c00001{word-spacing:27.168000pt;}
.ws797_c00001{word-spacing:27.174400pt;}
.wsd6b_c00001{word-spacing:27.180800pt;}
.ws791_c00001{word-spacing:27.187200pt;}
.ws13a2_c00001{word-spacing:27.189408pt;}
.ws13a1_c00001{word-spacing:27.201120pt;}
.ws19fa_c00001{word-spacing:27.206400pt;}
.ws13a0_c00001{word-spacing:27.212832pt;}
.ws1081_c00001{word-spacing:27.230400pt;}
.ws14bc_c00001{word-spacing:27.233024pt;}
.ws1082_c00001{word-spacing:27.242112pt;}
.wsa4f_c00001{word-spacing:27.328000pt;}
.wsdff_c00001{word-spacing:27.417600pt;}
.ws95a_c00001{word-spacing:27.430400pt;}
.wsc3a_c00001{word-spacing:27.443200pt;}
.ws9fd_c00001{word-spacing:27.449600pt;}
.wsace_c00001{word-spacing:27.481600pt;}
.wsf2b_c00001{word-spacing:27.488000pt;}
.ws128f_c00001{word-spacing:27.493920pt;}
.wse00_c00001{word-spacing:27.494400pt;}
.ws959_c00001{word-spacing:27.500800pt;}
.ws99f_c00001{word-spacing:27.513600pt;}
.ws95b_c00001{word-spacing:27.520000pt;}
.ws125b_c00001{word-spacing:27.523200pt;}
.ws9a0_c00001{word-spacing:27.532800pt;}
.ws125a_c00001{word-spacing:27.534912pt;}
.wsf2c_c00001{word-spacing:27.545600pt;}
.ws1290_c00001{word-spacing:27.546624pt;}
.ws12a7_c00001{word-spacing:27.564192pt;}
.ws1259_c00001{word-spacing:27.593472pt;}
.wsecc_c00001{word-spacing:27.724800pt;}
.ws14bb_c00001{word-spacing:27.730016pt;}
.ws993_c00001{word-spacing:27.744000pt;}
.wsecb_c00001{word-spacing:27.750400pt;}
.ws97c_c00001{word-spacing:27.756800pt;}
.ws1ae3_c00001{word-spacing:27.788800pt;}
.wsbfe_c00001{word-spacing:27.808000pt;}
.ws1a09_c00001{word-spacing:27.814400pt;}
.ws1ae4_c00001{word-spacing:27.820800pt;}
.ws97d_c00001{word-spacing:27.827200pt;}
.wsa87_c00001{word-spacing:27.833600pt;}
.ws1268_c00001{word-spacing:27.845280pt;}
.ws994_c00001{word-spacing:27.846400pt;}
.ws1298_c00001{word-spacing:27.856992pt;}
.ws1297_c00001{word-spacing:27.862848pt;}
.ws1269_c00001{word-spacing:27.880416pt;}
.wsa88_c00001{word-spacing:27.904000pt;}
.ws101b_c00001{word-spacing:27.909696pt;}
.ws1aca_c00001{word-spacing:27.923200pt;}
.ws1a08_c00001{word-spacing:27.948800pt;}
.ws97e_c00001{word-spacing:28.064000pt;}
.wse80_c00001{word-spacing:28.089600pt;}
.wsbb9_c00001{word-spacing:28.102400pt;}
.ws1acb_c00001{word-spacing:28.115200pt;}
.ws1267_c00001{word-spacing:28.126368pt;}
.wsbb8_c00001{word-spacing:28.134400pt;}
.wsbf6_c00001{word-spacing:28.147200pt;}
.wse3a_c00001{word-spacing:28.153600pt;}
.ws84d_c00001{word-spacing:28.160000pt;}
.ws12bc_c00001{word-spacing:28.161504pt;}
.ws10fd_c00001{word-spacing:28.173216pt;}
.ws10fc_c00001{word-spacing:28.179072pt;}
.wse71_c00001{word-spacing:28.185600pt;}
.wsee4_c00001{word-spacing:28.192000pt;}
.ws12bd_c00001{word-spacing:28.196640pt;}
.ws97f_c00001{word-spacing:28.204800pt;}
.wse70_c00001{word-spacing:28.217600pt;}
.wsdc4_c00001{word-spacing:28.300800pt;}
.wsdc5_c00001{word-spacing:28.326400pt;}
.wsd83_c00001{word-spacing:28.371200pt;}
.wsa37_c00001{word-spacing:28.377600pt;}
.wsf49_c00001{word-spacing:28.384000pt;}
.ws1ab4_c00001{word-spacing:28.390400pt;}
.wsb2e_c00001{word-spacing:28.409600pt;}
.wsc09_c00001{word-spacing:28.416000pt;}
.wsa38_c00001{word-spacing:28.422400pt;}
.wsd84_c00001{word-spacing:28.435200pt;}
.wse02_c00001{word-spacing:28.454400pt;}
.wsf48_c00001{word-spacing:28.460800pt;}
.wscde_c00001{word-spacing:28.467200pt;}
.ws18c6_c00001{word-spacing:28.472832pt;}
.ws582_c00001{word-spacing:28.512864pt;}
.ws11fd_c00001{word-spacing:28.548000pt;}
.ws1266_c00001{word-spacing:28.559712pt;}
.ws1ab3_c00001{word-spacing:28.563200pt;}
.wsedb_c00001{word-spacing:28.678400pt;}
.ws9ba_c00001{word-spacing:28.710400pt;}
.wsacf_c00001{word-spacing:28.755200pt;}
.wsf2d_c00001{word-spacing:28.761600pt;}
.wsedc_c00001{word-spacing:28.774400pt;}
.ws11c8_c00001{word-spacing:28.799808pt;}
.wsad0_c00001{word-spacing:28.800000pt;}
.ws9bb_c00001{word-spacing:28.806400pt;}
.ws11c7_c00001{word-spacing:28.811520pt;}
.wsf2e_c00001{word-spacing:28.812800pt;}
.ws11c6_c00001{word-spacing:28.864224pt;}
.wse6c_c00001{word-spacing:28.915200pt;}
.wsdaa_c00001{word-spacing:28.960000pt;}
.wsf5a_c00001{word-spacing:28.985600pt;}
.ws985_c00001{word-spacing:29.011200pt;}
.wsf59_c00001{word-spacing:29.075200pt;}
.ws984_c00001{word-spacing:29.107200pt;}
.ws1a41_c00001{word-spacing:29.108768pt;}
.wsa76_c00001{word-spacing:29.110176pt;}
.ws1079_c00001{word-spacing:29.116032pt;}
.wsda9_c00001{word-spacing:29.120000pt;}
.wsa75_c00001{word-spacing:29.127744pt;}
.wse7e_c00001{word-spacing:29.132800pt;}
.wsff3_c00001{word-spacing:29.145312pt;}
.wse6b_c00001{word-spacing:29.152000pt;}
.wsff2_c00001{word-spacing:29.157024pt;}
.ws1078_c00001{word-spacing:29.186304pt;}
.ws1a43_c00001{word-spacing:29.322528pt;}
.ws1aa2_c00001{word-spacing:29.337600pt;}
.ws1a42_c00001{word-spacing:29.343904pt;}
.wsb90_c00001{word-spacing:29.356800pt;}
.ws1aa3_c00001{word-spacing:29.376000pt;}
.wsb8f_c00001{word-spacing:29.401600pt;}
.wscbc_c00001{word-spacing:29.408000pt;}
.ws363_c00001{word-spacing:29.424064pt;}
.ws1a15_c00001{word-spacing:29.587200pt;}
.ws362_c00001{word-spacing:29.621792pt;}
.wsec7_c00001{word-spacing:29.683200pt;}
.ws1a9e_c00001{word-spacing:29.708800pt;}
.ws111d_c00001{word-spacing:29.713344pt;}
.wsec6_c00001{word-spacing:29.721600pt;}
.ws852_c00001{word-spacing:29.728000pt;}
.ws1a9f_c00001{word-spacing:29.740800pt;}
.wsa1d_c00001{word-spacing:29.747200pt;}
.ws8a8_c00001{word-spacing:29.760000pt;}
.ws11c3_c00001{word-spacing:29.771904pt;}
.ws111b_c00001{word-spacing:29.777760pt;}
.ws1a14_c00001{word-spacing:29.792000pt;}
.ws111c_c00001{word-spacing:29.795328pt;}
.ws1a16_c00001{word-spacing:29.830400pt;}
.ws8a7_c00001{word-spacing:30.009600pt;}
.ws6bc_c00001{word-spacing:30.035200pt;}
.ws8a9_c00001{word-spacing:30.067200pt;}
.ws123c_c00001{word-spacing:30.076416pt;}
.ws127f_c00001{word-spacing:30.082272pt;}
.ws1280_c00001{word-spacing:30.099840pt;}
.wsf34_c00001{word-spacing:30.323200pt;}
.wsf33_c00001{word-spacing:30.393600pt;}
.ws1a11_c00001{word-spacing:30.423392pt;}
.ws183c_c00001{word-spacing:30.487520pt;}
.ws183b_c00001{word-spacing:30.498208pt;}
.ws6a4_c00001{word-spacing:30.579200pt;}
.ws474_c00001{word-spacing:30.585600pt;}
.ws475_c00001{word-spacing:30.643200pt;}
.ws80_c00001{word-spacing:30.656000pt;}
.wsf51_c00001{word-spacing:30.688000pt;}
.ws6a5_c00001{word-spacing:30.707200pt;}
.ws1a53_c00001{word-spacing:30.899200pt;}
.ws1238_c00001{word-spacing:31.025088pt;}
.ws1a52_c00001{word-spacing:31.046400pt;}
.ws1237_c00001{word-spacing:31.066080pt;}
.ws1a54_c00001{word-spacing:31.072000pt;}
.ws10cb_c00001{word-spacing:31.077792pt;}
.wsf0d_c00001{word-spacing:31.328000pt;}
.ws84c_c00001{word-spacing:31.584000pt;}
.wsf63_c00001{word-spacing:31.622400pt;}
.wsb58_c00001{word-spacing:31.648000pt;}
.ws84b_c00001{word-spacing:31.654400pt;}
.wsc26_c00001{word-spacing:31.660800pt;}
.wsc25_c00001{word-spacing:31.673600pt;}
.wsb57_c00001{word-spacing:31.737600pt;}
.wsb50_c00001{word-spacing:31.839552pt;}
.wsb4f_c00001{word-spacing:31.930400pt;}
.wsef4_c00001{word-spacing:31.974400pt;}
.wsef5_c00001{word-spacing:31.980800pt;}
.ws10ac_c00001{word-spacing:32.038176pt;}
.ws10ad_c00001{word-spacing:32.049888pt;}
.wscb_c00001{word-spacing:32.224000pt;}
.wsca_c00001{word-spacing:32.288000pt;}
.ws1a77_c00001{word-spacing:32.294400pt;}
.wsd65_c00001{word-spacing:32.428800pt;}
.ws1a76_c00001{word-spacing:32.473600pt;}
.ws301_c00001{word-spacing:32.524800pt;}
.wsd64_c00001{word-spacing:32.608000pt;}
.ws303_c00001{word-spacing:32.646400pt;}
.ws302_c00001{word-spacing:32.691200pt;}
.ws1a13_c00001{word-spacing:32.729600pt;}
.wsc9d_c00001{word-spacing:32.921600pt;}
.ws98c_c00001{word-spacing:32.934400pt;}
.wsc9e_c00001{word-spacing:32.940800pt;}
.ws12ed_c00001{word-spacing:32.975136pt;}
.ws98b_c00001{word-spacing:33.004800pt;}
.wsd7e_c00001{word-spacing:33.030400pt;}
.wsd7d_c00001{word-spacing:33.126400pt;}
.ws103_c00001{word-spacing:33.248000pt;}
.ws104_c00001{word-spacing:33.254400pt;}
.wsddc_c00001{word-spacing:33.260800pt;}
.wsddd_c00001{word-spacing:33.267200pt;}
.ws1ac2_c00001{word-spacing:33.440000pt;}
.ws1ac1_c00001{word-spacing:33.465600pt;}
.wsf61_c00001{word-spacing:33.574400pt;}
.ws1154_c00001{word-spacing:33.584160pt;}
.wsfdf_c00001{word-spacing:33.590016pt;}
.ws1152_c00001{word-spacing:33.648576pt;}
.ws1153_c00001{word-spacing:33.660288pt;}
.wsfe0_c00001{word-spacing:33.677856pt;}
.wsed2_c00001{word-spacing:34.067200pt;}
.wsed1_c00001{word-spacing:34.150400pt;}
.wsb28_c00001{word-spacing:34.201600pt;}
.wsb27_c00001{word-spacing:34.220800pt;}
.wsb26_c00001{word-spacing:34.227200pt;}
.wsf35_c00001{word-spacing:34.438400pt;}
.wsf36_c00001{word-spacing:34.540800pt;}
.ws13bb_c00001{word-spacing:34.556256pt;}
.ws13ba_c00001{word-spacing:34.608960pt;}
.ws13b9_c00001{word-spacing:34.632384pt;}
.wsc41_c00001{word-spacing:34.809600pt;}
.wse74_c00001{word-spacing:35.155200pt;}
.wse73_c00001{word-spacing:35.219200pt;}
.wsf12_c00001{word-spacing:35.436800pt;}
.ws83e_c00001{word-spacing:35.443200pt;}
.wsf13_c00001{word-spacing:35.462400pt;}
.ws13b6_c00001{word-spacing:35.469792pt;}
.ws13b7_c00001{word-spacing:35.504928pt;}
.ws83f_c00001{word-spacing:35.520000pt;}
.ws13b5_c00001{word-spacing:35.522496pt;}
.wsdac_c00001{word-spacing:35.737600pt;}
.wsdae_c00001{word-spacing:35.846400pt;}
.wsdad_c00001{word-spacing:35.872000pt;}
.wsb11_c00001{word-spacing:36.128000pt;}
.wsb12_c00001{word-spacing:36.153600pt;}
.wsf38_c00001{word-spacing:36.300800pt;}
.wsf39_c00001{word-spacing:36.486400pt;}
.ws889_c00001{word-spacing:36.761600pt;}
.ws888_c00001{word-spacing:36.774400pt;}
.ws1113_c00001{word-spacing:36.834240pt;}
.ws1114_c00001{word-spacing:36.869376pt;}
.ws1129_c00001{word-spacing:37.408128pt;}
.ws1127_c00001{word-spacing:37.472544pt;}
.ws1128_c00001{word-spacing:37.484256pt;}
.ws1126_c00001{word-spacing:37.501824pt;}
.wscb8_c00001{word-spacing:38.048000pt;}
.ws112b_c00001{word-spacing:38.081568pt;}
.wscb9_c00001{word-spacing:38.105600pt;}
.ws1309_c00001{word-spacing:38.122560pt;}
.ws112a_c00001{word-spacing:38.140128pt;}
.ws1ad4_c00001{word-spacing:38.700800pt;}
.ws198a_c00001{word-spacing:39.276800pt;}
.ws1989_c00001{word-spacing:39.360000pt;}
.ws26d_c00001{word-spacing:39.584000pt;}
.ws26c_c00001{word-spacing:39.622400pt;}
.ws1369_c00001{word-spacing:39.650976pt;}
.ws1ad3_c00001{word-spacing:39.680000pt;}
.ws1368_c00001{word-spacing:39.691968pt;}
.ws1367_c00001{word-spacing:39.732960pt;}
.ws10d9_c00001{word-spacing:40.863168pt;}
.ws10da_c00001{word-spacing:40.962720pt;}
.ws10d8_c00001{word-spacing:40.980288pt;}
.ws1112_c00001{word-spacing:41.261376pt;}
.ws1111_c00001{word-spacing:41.296512pt;}
.wse6_c00001{word-spacing:41.600000pt;}
.ws7fe_c00001{word-spacing:41.868800pt;}
.ws7ff_c00001{word-spacing:41.888000pt;}
.ws76e_c00001{word-spacing:42.150400pt;}
.ws11d8_c00001{word-spacing:42.227616pt;}
.ws13bf_c00001{word-spacing:42.233472pt;}
.ws76f_c00001{word-spacing:42.233600pt;}
.ws13c0_c00001{word-spacing:42.268608pt;}
.ws11d7_c00001{word-spacing:42.280320pt;}
.wsdd7_c00001{word-spacing:42.444800pt;}
.wsdd8_c00001{word-spacing:42.560000pt;}
.wsbd6_c00001{word-spacing:43.136000pt;}
.wsbd5_c00001{word-spacing:43.174400pt;}
.ws1236_c00001{word-spacing:43.275840pt;}
.wsb08_c00001{word-spacing:43.699200pt;}
.wsb07_c00001{word-spacing:43.833600pt;}
.ws10c0_c00001{word-spacing:43.849728pt;}
.ws10bf_c00001{word-spacing:43.861440pt;}
.ws669_c00001{word-spacing:44.057600pt;}
.ws66a_c00001{word-spacing:44.089600pt;}
.ws10e7_c00001{word-spacing:44.136672pt;}
.ws10e8_c00001{word-spacing:44.148384pt;}
.ws10e6_c00001{word-spacing:44.165952pt;}
.ws114c_c00001{word-spacing:44.206944pt;}
.wse87_c00001{word-spacing:45.030400pt;}
.wse86_c00001{word-spacing:45.126400pt;}
.ws13c4_c00001{word-spacing:45.149760pt;}
.ws13c3_c00001{word-spacing:45.196608pt;}
.wsec4_c00001{word-spacing:45.401600pt;}
.wsd69_c00001{word-spacing:45.420800pt;}
.wsd6a_c00001{word-spacing:45.427200pt;}
.ws11e1_c00001{word-spacing:45.823200pt;}
.ws4fe_c00001{word-spacing:45.830144pt;}
.ws198b_c00001{word-spacing:46.022400pt;}
.ws500_c00001{word-spacing:46.054592pt;}
.ws4ff_c00001{word-spacing:46.193536pt;}
.ws1303_c00001{word-spacing:47.697120pt;}
.ws1302_c00001{word-spacing:47.738112pt;}
.ws10cd_c00001{word-spacing:48.323712pt;}
.ws131b_c00001{word-spacing:48.628224pt;}
.ws121c_c00001{word-spacing:48.645792pt;}
.ws121d_c00001{word-spacing:48.651648pt;}
.ws1172_c00001{word-spacing:48.710208pt;}
.ws1173_c00001{word-spacing:48.716064pt;}
.ws10c2_c00001{word-spacing:49.008864pt;}
.wse76_c00001{word-spacing:49.433600pt;}
.ws1a37_c00001{word-spacing:49.561600pt;}
.ws1a36_c00001{word-spacing:49.587200pt;}
.ws13b8_c00001{word-spacing:49.647168pt;}
.wse75_c00001{word-spacing:49.657600pt;}
.ws10a7_c00001{word-spacing:50.820096pt;}
.ws10ce_c00001{word-spacing:51.860736pt;}
.ws1162_c00001{word-spacing:52.844544pt;}
.ws1163_c00001{word-spacing:53.190048pt;}
.ws13a9_c00001{word-spacing:53.763936pt;}
.ws1318_c00001{word-spacing:54.033312pt;}
.ws1317_c00001{word-spacing:54.103584pt;}
.ws1316_c00001{word-spacing:54.115296pt;}
.ws13a8_c00001{word-spacing:54.173856pt;}
.ws12d4_c00001{word-spacing:54.367104pt;}
.ws12d3_c00001{word-spacing:54.372960pt;}
.ws110e_c00001{word-spacing:54.390528pt;}
.ws110d_c00001{word-spacing:54.408096pt;}
.ws1343_c00001{word-spacing:54.671616pt;}
.ws1344_c00001{word-spacing:54.700896pt;}
.ws1342_c00001{word-spacing:54.730176pt;}
.wsbd3_c00001{word-spacing:55.955200pt;}
.wsbd4_c00001{word-spacing:56.102400pt;}
.ws114a_c00001{word-spacing:56.961312pt;}
.ws1149_c00001{word-spacing:57.014016pt;}
.ws1325_c00001{word-spacing:58.460448pt;}
.ws1326_c00001{word-spacing:58.548288pt;}
.ws1138_c00001{word-spacing:58.565856pt;}
.ws1324_c00001{word-spacing:58.612704pt;}
.ws1137_c00001{word-spacing:58.618560pt;}
.ws144a_c00001{word-spacing:59.571200pt;}
.ws11d9_c00001{word-spacing:60.205536pt;}
.ws1118_c00001{word-spacing:60.832128pt;}
.ws10c4_c00001{word-spacing:61.745664pt;}
.ws10c5_c00001{word-spacing:61.815936pt;}
.ws10c3_c00001{word-spacing:62.167296pt;}
.ws10f4_c00001{word-spacing:63.695712pt;}
.ws10d0_c00001{word-spacing:67.548960pt;}
.ws47c_c00001{word-spacing:69.580800pt;}
.ws47d_c00001{word-spacing:69.702400pt;}
.wsfb7_c00001{word-spacing:70.740480pt;}
.ws13ab_c00001{word-spacing:70.746336pt;}
.ws1060_c00001{word-spacing:70.752192pt;}
.wsfbe_c00001{word-spacing:70.758048pt;}
.ws1090_c00001{word-spacing:70.834176pt;}
.ws10ff_c00001{word-spacing:71.085984pt;}
.ws10d1_c00001{word-spacing:72.649536pt;}
.ws10d2_c00001{word-spacing:72.667104pt;}
.ws102e_c00001{word-spacing:79.700160pt;}
.ws103c_c00001{word-spacing:84.789024pt;}
.ws11c2_c00001{word-spacing:85.046688pt;}
.ws11c1_c00001{word-spacing:85.134528pt;}
.ws136d_c00001{word-spacing:90.861696pt;}
.ws136b_c00001{word-spacing:90.890976pt;}
.ws136c_c00001{word-spacing:90.902688pt;}
.ws11cc_c00001{word-spacing:91.523424pt;}
.ws102c_c00001{word-spacing:92.829312pt;}
.ws1361_c00001{word-spacing:96.629856pt;}
.ws1360_c00001{word-spacing:96.641568pt;}
.ws1395_c00001{word-spacing:100.811040pt;}
.ws1394_c00001{word-spacing:100.840320pt;}
.ws1396_c00001{word-spacing:100.875456pt;}
.ws1156_c00001{word-spacing:103.692192pt;}
.ws10e9_c00001{word-spacing:113.284320pt;}
.ws11ef_c00001{word-spacing:119.058336pt;}
.ws3ee_c00001{word-spacing:121.580800pt;}
.ws1376_c00001{word-spacing:125.728320pt;}
.ws1374_c00001{word-spacing:125.751744pt;}
.ws1375_c00001{word-spacing:125.781024pt;}
.ws1194_c00001{word-spacing:126.647712pt;}
.ws1193_c00001{word-spacing:126.770688pt;}
.ws1351_c00001{word-spacing:127.654944pt;}
.ws1350_c00001{word-spacing:127.678368pt;}
.ws1148_c00001{word-spacing:133.112736pt;}
.wsf80_c00001{word-spacing:134.090688pt;}
.wsf7f_c00001{word-spacing:134.149248pt;}
.wsf81_c00001{word-spacing:134.319072pt;}
.ws10cc_c00001{word-spacing:138.898464pt;}
.ws12e2_c00001{word-spacing:140.456160pt;}
.ws12e1_c00001{word-spacing:140.485440pt;}
.ws130a_c00001{word-spacing:143.044512pt;}
.ws130e_c00001{word-spacing:143.103072pt;}
.ws1150_c00001{word-spacing:161.291808pt;}
.ws1151_c00001{word-spacing:161.590464pt;}
.ws138c_c00001{word-spacing:163.154016pt;}
.ws138d_c00001{word-spacing:163.195008pt;}
.ws19c5_c00001{word-spacing:172.787200pt;}
.ws1a35_c00001{word-spacing:172.793600pt;}
.ws9c6_c00001{word-spacing:172.800000pt;}
.ws1437_c00001{word-spacing:175.491616pt;}
.ws123a_c00001{word-spacing:177.237696pt;}
.ws123b_c00001{word-spacing:177.261120pt;}
.ws134a_c00001{word-spacing:183.304512pt;}
.ws134b_c00001{word-spacing:183.322080pt;}
.ws1010_c00001{word-spacing:183.439200pt;}
.ws1378_c00001{word-spacing:184.311744pt;}
.ws1381_c00001{word-spacing:190.062336pt;}
.ws10ee_c00001{word-spacing:215.114304pt;}
.ws10e2_c00001{word-spacing:222.147360pt;}
.ws1443_c00001{word-spacing:226.617664pt;}
.ws1405_c00001{word-spacing:226.633696pt;}
.ws1409_c00001{word-spacing:226.639040pt;}
.ws2d3_c00001{word-spacing:226.713856pt;}
.ws2d2_c00001{word-spacing:226.997088pt;}
.ws12ea_c00001{word-spacing:240.371232pt;}
.ws1109_c00001{word-spacing:245.126304pt;}
.ws1203_c00001{word-spacing:245.477664pt;}
.wsf79_c00001{word-spacing:294.392832pt;}
.ws1229_c00001{word-spacing:295.089696pt;}
.wsf76_c00001{word-spacing:312.347328pt;}
.ws135d_c00001{word-spacing:355.833984pt;}
.ws10d6_c00001{word-spacing:394.905216pt;}
.ws1370_c00001{word-spacing:411.524544pt;}
.ws1960_c00001{word-spacing:420.787200pt;}
.ws1961_c00001{word-spacing:428.780800pt;}
.ws1963_c00001{word-spacing:443.200000pt;}
.ws10d4_c00001{word-spacing:463.701504pt;}
.ws10e4_c00001{word-spacing:465.323616pt;}
.ws195f_c00001{word-spacing:480.684800pt;}
.ws1962_c00001{word-spacing:501.760000pt;}
.ws195e_c00001{word-spacing:518.156800pt;}
.ws1246_c00001{word-spacing:568.974816pt;}
.ws12e4_c00001{word-spacing:576.294816pt;}
.ws12dc_c00001{word-spacing:578.900736pt;}
.ws10aa_c00001{word-spacing:800.087712pt;}
.wsf7d_c00001{word-spacing:851.251584pt;}
.ws10fe_c00001{word-spacing:857.037312pt;}
.wsf70_c00001{word-spacing:857.652192pt;}
.ws1116_c00001{word-spacing:868.907424pt;}
.wsf8b_c00001{word-spacing:869.194368pt;}
.ws12f6_c00001{word-spacing:899.838816pt;}
.ws134d_c00001{word-spacing:925.769184pt;}
._71_c00001{margin-left:-856.955328pt;}
._aa_c00001{margin-left:-420.800000pt;}
._9e_c00001{margin-left:-413.760000pt;}
._9f_c00001{margin-left:-354.585600pt;}
._a6_c00001{margin-left:-326.720000pt;}
._a7_c00001{margin-left:-244.800000pt;}
._8e_c00001{margin-left:-226.558880pt;}
._ae_c00001{margin-left:-212.800000pt;}
._ac_c00001{margin-left:-204.800000pt;}
._a8_c00001{margin-left:-184.640000pt;}
._96_c00001{margin-left:-175.464896pt;}
._40_c00001{margin-left:-172.800000pt;}
._bc_c00001{margin-left:-147.200000pt;}
._94_c00001{margin-left:-137.597312pt;}
._c5_c00001{margin-left:-128.000000pt;}
._b2_c00001{margin-left:-124.480000pt;}
._6f_c00001{margin-left:-113.875776pt;}
._a5_c00001{margin-left:-110.720000pt;}
._a9_c00001{margin-left:-102.720000pt;}
._9d_c00001{margin-left:-89.600000pt;}
._ab_c00001{margin-left:-73.280000pt;}
._6b_c00001{margin-left:-71.561088pt;}
._32_c00001{margin-left:-70.347360pt;}
._67_c00001{margin-left:-67.841760pt;}
._bd_c00001{margin-left:-65.280000pt;}
._70_c00001{margin-left:-63.673472pt;}
._66_c00001{margin-left:-60.802848pt;}
._65_c00001{margin-left:-58.595136pt;}
._86_c00001{margin-left:-54.718464pt;}
._af_c00001{margin-left:-50.880000pt;}
._ad_c00001{margin-left:-42.880000pt;}
._c1_c00001{margin-left:-36.160000pt;}
._c6_c00001{margin-left:-32.320704pt;}
._7a_c00001{margin-left:-27.839424pt;}
._51_c00001{margin-left:-25.548800pt;}
._35_c00001{margin-left:-23.891200pt;}
._4f_c00001{margin-left:-20.944352pt;}
._18_c00001{margin-left:-19.842272pt;}
._3b_c00001{margin-left:-18.559712pt;}
._2c_c00001{margin-left:-17.277152pt;}
._e_c00001{margin-left:-15.679296pt;}
._f_c00001{margin-left:-14.717376pt;}
._39_c00001{margin-left:-13.440160pt;}
._36_c00001{margin-left:-12.407136pt;}
._3e_c00001{margin-left:-11.421184pt;}
._1d_c00001{margin-left:-10.239104pt;}
._9_c00001{margin-left:-9.039904pt;}
._23_c00001{margin-left:-7.334400pt;}
._d_c00001{margin-left:-5.971200pt;}
._7_c00001{margin-left:-4.478272pt;}
._8_c00001{margin-left:-3.201056pt;}
._19_c00001{margin-left:-2.131200pt;}
._0_c00001{margin-left:-0.892448pt;}
._2_c00001{width:1.042080pt;}
._1c_c00001{width:2.240000pt;}
._2a_c00001{width:3.420160pt;}
._b_c00001{width:4.408896pt;}
._16_c00001{width:5.836800pt;}
._15_c00001{width:6.939520pt;}
._22_c00001{width:8.062080pt;}
._a_c00001{width:9.661952pt;}
._20_c00001{width:10.953920pt;}
._24_c00001{width:12.280512pt;}
._34_c00001{width:14.057248pt;}
._29_c00001{width:16.935136pt;}
._1b_c00001{width:18.335264pt;}
._3a_c00001{width:20.393248pt;}
._13_c00001{width:22.784000pt;}
._6e_c00001{width:24.513216pt;}
._62_c00001{width:26.252448pt;}
._7b_c00001{width:28.161504pt;}
._28_c00001{width:29.204960pt;}
._61_c00001{width:35.686400pt;}
._95_c00001{width:38.315520pt;}
._97_c00001{width:40.320000pt;}
._83_c00001{width:41.278944pt;}
._c2_c00001{width:43.315200pt;}
._7e_c00001{width:44.726400pt;}
._89_c00001{width:46.489024pt;}
._84_c00001{width:49.170912pt;}
._82_c00001{width:50.459232pt;}
._7d_c00001{width:51.735840pt;}
._80_c00001{width:52.807232pt;}
._73_c00001{width:53.758080pt;}
._85_c00001{width:54.934752pt;}
._68_c00001{width:56.000928pt;}
._76_c00001{width:57.277536pt;}
._72_c00001{width:58.876224pt;}
._78_c00001{width:59.836608pt;}
._7c_c00001{width:60.796992pt;}
._75_c00001{width:62.401536pt;}
._74_c00001{width:63.361920pt;}
._79_c00001{width:64.316448pt;}
._69_c00001{width:65.276832pt;}
._64_c00001{width:66.237216pt;}
._6a_c00001{width:67.519680pt;}
._6c_c00001{width:68.480064pt;}
._6d_c00001{width:69.440448pt;}
._63_c00001{width:70.799040pt;}
._be_c00001{width:72.640000pt;}
._c3_c00001{width:75.392000pt;}
._9b_c00001{width:79.999680pt;}
._9a_c00001{width:82.238816pt;}
._c4_c00001{width:83.719104pt;}
._9c_c00001{width:88.320000pt;}
._bf_c00001{width:90.560000pt;}
._77_c00001{width:91.980192pt;}
._88_c00001{width:96.723552pt;}
._8a_c00001{width:100.799328pt;}
._91_c00001{width:106.479200pt;}
._90_c00001{width:107.606784pt;}
._8b_c00001{width:120.250688pt;}
._87_c00001{width:127.772064pt;}
._45_c00001{width:128.960000pt;}
._60_c00001{width:131.200000pt;}
._c0_c00001{width:132.800000pt;}
._99_c00001{width:134.732800pt;}
._7f_c00001{width:139.841280pt;}
._98_c00001{width:140.800000pt;}
._3f_c00001{width:146.735648pt;}
._42_c00001{width:148.480000pt;}
._1a_c00001{width:149.440000pt;}
._c7_c00001{width:152.000000pt;}
._1f_c00001{width:153.011200pt;}
._2f_c00001{width:153.920000pt;}
._2e_c00001{width:154.924800pt;}
._3_c00001{width:156.864000pt;}
._5f_c00001{width:157.760000pt;}
._5e_c00001{width:158.828800pt;}
._21_c00001{width:160.640000pt;}
._37_c00001{width:161.920000pt;}
._2d_c00001{width:162.880000pt;}
._12_c00001{width:164.531200pt;}
._4_c00001{width:165.760000pt;}
._5_c00001{width:167.468800pt;}
._1_c00001{width:168.678400pt;}
._c_c00001{width:169.920000pt;}
._38_c00001{width:170.937600pt;}
._6_c00001{width:171.891200pt;}
._1e_c00001{width:172.800000pt;}
._10_c00001{width:173.843200pt;}
._26_c00001{width:174.803200pt;}
._14_c00001{width:176.000000pt;}
._ba_c00001{width:196.953600pt;}
._8f_c00001{width:199.678560pt;}
._a3_c00001{width:207.040000pt;}
._8c_c00001{width:213.118720pt;}
._a0_c00001{width:216.275200pt;}
._93_c00001{width:217.596992pt;}
._92_c00001{width:221.118688pt;}
._8d_c00001{width:226.558880pt;}
._b6_c00001{width:228.480000pt;}
._b0_c00001{width:232.000000pt;}
._b1_c00001{width:258.880000pt;}
._b9_c00001{width:286.400000pt;}
._a1_c00001{width:297.920000pt;}
._b7_c00001{width:313.920000pt;}
._a2_c00001{width:317.760000pt;}
._b4_c00001{width:324.480000pt;}
._a4_c00001{width:328.256000pt;}
._b8_c00001{width:332.160000pt;}
._b5_c00001{width:339.200000pt;}
._bb_c00001{width:377.920000pt;}
._4a_c00001{width:414.080000pt;}
._b3_c00001{width:435.200000pt;}
._54_c00001{width:534.720000pt;}
._56_c00001{width:547.200000pt;}
._11_c00001{width:567.760000pt;}
._47_c00001{width:591.360000pt;}
._4b_c00001{width:610.560000pt;}
._31_c00001{width:613.120000pt;}
._49_c00001{width:619.520000pt;}
._4d_c00001{width:627.520000pt;}
._30_c00001{width:635.200000pt;}
._53_c00001{width:647.040000pt;}
._46_c00001{width:649.920000pt;}
._50_c00001{width:656.960000pt;}
._57_c00001{width:679.360000pt;}
._58_c00001{width:732.480000pt;}
._48_c00001{width:739.520000pt;}
._3d_c00001{width:752.320000pt;}
._3c_c00001{width:769.920000pt;}
._55_c00001{width:771.199467pt;}
._33_c00001{width:816.960000pt;}
._43_c00001{width:824.639467pt;}
._52_c00001{width:839.040000pt;}
._4c_c00001{width:877.120000pt;}
._5a_c00001{width:892.480000pt;}
._5d_c00001{width:904.000000pt;}
._2b_c00001{width:916.160000pt;}
._59_c00001{width:921.280000pt;}
._17_c00001{width:975.680000pt;}
._44_c00001{width:1060.800000pt;}
._4e_c00001{width:1086.720000pt;}
._27_c00001{width:1123.838880pt;}
._5c_c00001{width:1149.440000pt;}
._41_c00001{width:1155.200000pt;}
._25_c00001{width:1166.400000pt;}
._5b_c00001{width:1221.760000pt;}
._81_c00001{width:1998.418560pt;}
.fs4_c00001{font-size:34.560000pt;}
.fs3_c00001{font-size:37.440000pt;}
.fs5_c00001{font-size:42.560000pt;}
.fs6_c00001{font-size:50.560000pt;}
.fs0_c00001{font-size:53.440000pt;}
.fs2_c00001{font-size:58.560000pt;}
.fsb_c00001{font-size:61.440000pt;}
.fsa_c00001{font-size:61.890094pt;}
.fs1_c00001{font-size:64.000000pt;}
.fsc_c00001{font-size:67.639544pt;}
.fs9_c00001{font-size:74.560000pt;}
.fs8_c00001{font-size:85.440000pt;}
.fs7_c00001{font-size:149.440000pt;}
.y0_c00001{bottom:0.000000pt;}
.y3_c00001{bottom:50.987067pt;}
.y6c_c00001{bottom:97.707235pt;}
.yd3_c00001{bottom:97.707243pt;}
.yc6_c00001{bottom:97.707251pt;}
.y4a2_c00001{bottom:97.707395pt;}
.y2c4_c00001{bottom:97.707419pt;}
.y7d5_c00001{bottom:97.707435pt;}
.ye2_c00001{bottom:97.707603pt;}
.y1ff_c00001{bottom:97.707611pt;}
.y115_c00001{bottom:97.707787pt;}
.y1ecf_c00001{bottom:98.021547pt;}
.y20c2_c00001{bottom:98.189003pt;}
.y1de5_c00001{bottom:98.266523pt;}
.y8b4_c00001{bottom:98.267067pt;}
.y18cb_c00001{bottom:98.267075pt;}
.y921_c00001{bottom:98.346387pt;}
.yc3c_c00001{bottom:98.347067pt;}
.y9c0_c00001{bottom:98.347147pt;}
.y176b_c00001{bottom:98.586315pt;}
.y247c_c00001{bottom:98.666523pt;}
.y213f_c00001{bottom:98.669355pt;}
.y2428_c00001{bottom:98.670843pt;}
.y2501_c00001{bottom:98.907067pt;}
.y1917_c00001{bottom:98.982715pt;}
.y1294_c00001{bottom:98.986323pt;}
.y15f4_c00001{bottom:98.986699pt;}
.y8cc_c00001{bottom:99.307067pt;}
.y2196_c00001{bottom:99.387067pt;}
.y163a_c00001{bottom:99.469771pt;}
.y1403_c00001{bottom:99.710835pt;}
.y103b_c00001{bottom:99.867067pt;}
.y1ec2_c00001{bottom:99.947067pt;}
.y1221_c00001{bottom:99.947243pt;}
.y1d66_c00001{bottom:100.030891pt;}
.y12f6_c00001{bottom:100.187539pt;}
.y1c4f_c00001{bottom:100.662403pt;}
.y17e8_c00001{bottom:100.663403pt;}
.y785_c00001{bottom:100.747067pt;}
.y1f43_c00001{bottom:100.747200pt;}
.y1b67_c00001{bottom:100.903299pt;}
.y1bc7_c00001{bottom:100.903883pt;}
.y11a3_c00001{bottom:100.906147pt;}
.ybfa_c00001{bottom:100.906387pt;}
.ydb9_c00001{bottom:100.909603pt;}
.y144f_c00001{bottom:101.140355pt;}
.y1758_c00001{bottom:101.145219pt;}
.y1c03_c00001{bottom:101.147067pt;}
.y2051_c00001{bottom:101.229784pt;}
.y8b8_c00001{bottom:101.307067pt;}
.y1b18_c00001{bottom:101.307355pt;}
.y158f_c00001{bottom:101.386699pt;}
.y1e03_c00001{bottom:101.787067pt;}
.y1bd9_c00001{bottom:101.863883pt;}
.y1c7b_c00001{bottom:101.942291pt;}
.y1e40_c00001{bottom:101.947067pt;}
.y1acf_c00001{bottom:102.027459pt;}
.y685_c00001{bottom:102.027475pt;}
.y15c6_c00001{bottom:102.106723pt;}
.y1ba6_c00001{bottom:102.263347pt;}
.y217c_c00001{bottom:102.269267pt;}
.y1707_c00001{bottom:102.341515pt;}
.y1dbd_c00001{bottom:102.506699pt;}
.y15bb_c00001{bottom:102.507075pt;}
.y1c96_c00001{bottom:102.820459pt;}
.y1e1a_c00001{bottom:102.821043pt;}
.y17ca_c00001{bottom:102.826219pt;}
.y20ff_c00001{bottom:102.988179pt;}
.y1427_c00001{bottom:103.060571pt;}
.y150c_c00001{bottom:103.067419pt;}
.y1f61_c00001{bottom:103.067635pt;}
.y7bd_c00001{bottom:103.227067pt;}
.ycda_c00001{bottom:103.334075pt;}
.yd0b_c00001{bottom:103.361723pt;}
.y1efc_c00001{bottom:103.460987pt;}
.y14b0_c00001{bottom:103.466824pt;}
.y12d9_c00001{bottom:103.467067pt;}
.y243a_c00001{bottom:103.547067pt;}
.ya22_c00001{bottom:103.700387pt;}
.y21_c00001{bottom:103.707067pt;}
.y63e_c00001{bottom:103.707200pt;}
.ye64_c00001{bottom:103.707576pt;}
.y14d0_c00001{bottom:103.781627pt;}
.y161a_c00001{bottom:103.867067pt;}
.y1b39_c00001{bottom:104.103243pt;}
.y88a_c00001{bottom:104.267067pt;}
.y18af_c00001{bottom:104.427067pt;}
.y1895_c00001{bottom:104.583563pt;}
.yae8_c00001{bottom:104.587147pt;}
.y16dc_c00001{bottom:104.664723pt;}
.y13c0_c00001{bottom:104.747275pt;}
.y1d17_c00001{bottom:105.067067pt;}
.y1b73_c00001{bottom:105.067267pt;}
.y19a6_c00001{bottom:105.145099pt;}
.yb6b_c00001{bottom:105.385947pt;}
.y1a1e_c00001{bottom:105.386163pt;}
.y1cf4_c00001{bottom:105.387067pt;}
.y130b_c00001{bottom:105.387075pt;}
.y136b_c00001{bottom:105.387243pt;}
.y1fa8_c00001{bottom:105.388923pt;}
.y2302_c00001{bottom:105.389435pt;}
.y1d3f_c00001{bottom:105.390315pt;}
.yc90_c00001{bottom:105.458651pt;}
.yb18_c00001{bottom:105.466467pt;}
.y1ce8_c00001{bottom:105.544147pt;}
.y172d_c00001{bottom:105.627067pt;}
.y1bf6_c00001{bottom:105.706219pt;}
.y2453_c00001{bottom:106.027067pt;}
.y1720_c00001{bottom:106.258571pt;}
.y17ee_c00001{bottom:106.267267pt;}
.y9d2_c00001{bottom:106.267411pt;}
.ybb8_c00001{bottom:106.345787pt;}
.y97c_c00001{bottom:106.347147pt;}
.y197d_c00001{bottom:106.506067pt;}
.y1a41_c00001{bottom:106.670811pt;}
.y20de_c00001{bottom:106.987067pt;}
.y2120_c00001{bottom:106.987200pt;}
.yb38_c00001{bottom:107.215451pt;}
.y1519_c00001{bottom:107.226280pt;}
.y1782_c00001{bottom:107.226531pt;}
.yc43_c00001{bottom:107.227067pt;}
.y2296_c00001{bottom:107.390915pt;}
.y21f5_c00001{bottom:107.869171pt;}
.y124a_c00001{bottom:107.942683pt;}
.y22b3_c00001{bottom:108.030859pt;}
.y1e22_c00001{bottom:108.179739pt;}
.y1e9a_c00001{bottom:108.187200pt;}
.y1351_c00001{bottom:108.262955pt;}
.y194b_c00001{bottom:108.263907pt;}
.y1ead_c00001{bottom:108.346699pt;}
.y1fd4_c00001{bottom:108.747067pt;}
.y126a_c00001{bottom:108.906448pt;}
.y1ca6_c00001{bottom:108.907067pt;}
.y1d8b_c00001{bottom:109.227243pt;}
.y1af8_c00001{bottom:109.306739pt;}
.y8a8_c00001{bottom:109.307067pt;}
.y1aa4_c00001{bottom:109.543211pt;}
.y1f24_c00001{bottom:109.627963pt;}
.y233a_c00001{bottom:109.629259pt;}
.y106a_c00001{bottom:109.705787pt;}
.y7e9_c00001{bottom:109.787067pt;}
.y18b8_c00001{bottom:109.859843pt;}
.y1e63_c00001{bottom:109.860427pt;}
.y1777_c00001{bottom:109.866691pt;}
.y1c33_c00001{bottom:109.947067pt;}
.y23bc_c00001{bottom:110.030851pt;}
.y11fe_c00001{bottom:110.106691pt;}
.y23f0_c00001{bottom:110.189035pt;}
.yca6_c00001{bottom:110.250979pt;}
.y216d_c00001{bottom:110.269235pt;}
.yd8e_c00001{bottom:110.347067pt;}
.y1322_c00001{bottom:110.422299pt;}
.y195a_c00001{bottom:110.425555pt;}
.yb29_c00001{bottom:110.427067pt;}
.y208d_c00001{bottom:110.587200pt;}
.y1106_c00001{bottom:110.660691pt;}
.y12b5_c00001{bottom:110.820427pt;}
.y24c3_c00001{bottom:110.827067pt;}
.y240a_c00001{bottom:110.828979pt;}
.y1736_c00001{bottom:111.066139pt;}
.y22ec_c00001{bottom:111.229179pt;}
.yecc_c00001{bottom:111.387067pt;}
.ye93_c00001{bottom:111.387560pt;}
.yea3_c00001{bottom:111.387603pt;}
.ye2f_c00001{bottom:111.390899pt;}
.y21b2_c00001{bottom:111.468923pt;}
.y1fc2_c00001{bottom:111.707067pt;}
.y18c8_c00001{bottom:111.781595pt;}
.y2381_c00001{bottom:111.868227pt;}
.y1a7b_c00001{bottom:112.188491pt;}
.y85d_c00001{bottom:112.267067pt;}
.yfac_c00001{bottom:112.425547pt;}
.ybc3_c00001{bottom:112.581011pt;}
.ya44_c00001{bottom:112.585403pt;}
.yadd_c00001{bottom:112.585787pt;}
.y100b_c00001{bottom:112.587083pt;}
.y1dc4_c00001{bottom:112.666691pt;}
.y1ffd_c00001{bottom:112.668560pt;}
.y1e7d_c00001{bottom:112.741595pt;}
.y1b8c_c00001{bottom:112.747235pt;}
.y2158_c00001{bottom:112.827067pt;}
.ydf3_c00001{bottom:112.910539pt;}
.yd2_c00001{bottom:112.987075pt;}
.yc5_c00001{bottom:112.987083pt;}
.y4c_c00001{bottom:112.987251pt;}
.y5da_c00001{bottom:112.987259pt;}
.y7d4_c00001{bottom:112.987267pt;}
.ye1_c00001{bottom:112.987435pt;}
.y1fe_c00001{bottom:112.987443pt;}
.y114_c00001{bottom:112.987619pt;}
.yb11_c00001{bottom:113.066987pt;}
.y168c_c00001{bottom:113.147067pt;}
.y109b_c00001{bottom:113.301963pt;}
.y1ece_c00001{bottom:113.381539pt;}
.y1e92_c00001{bottom:113.382123pt;}
.y1bb1_c00001{bottom:113.387067pt;}
.y112d_c00001{bottom:113.467283pt;}
.y20c1_c00001{bottom:113.468835pt;}
.y20_c00001{bottom:113.627067pt;}
.y348_c00001{bottom:113.627200pt;}
.y3e3_c00001{bottom:113.787347pt;}
.y176a_c00001{bottom:113.866147pt;}
.y1f82_c00001{bottom:114.027067pt;}
.y2072_c00001{bottom:114.028112pt;}
.y213e_c00001{bottom:114.029347pt;}
.y23a1_c00001{bottom:114.029379pt;}
.y23d8_c00001{bottom:114.030835pt;}
.y24e3_c00001{bottom:114.267067pt;}
.ya76_c00001{bottom:114.336347pt;}
.y1820_c00001{bottom:114.342123pt;}
.y1916_c00001{bottom:114.342707pt;}
.yb95_c00001{bottom:114.345707pt;}
.yfdd_c00001{bottom:114.346131pt;}
.y1293_c00001{bottom:114.346315pt;}
.y15f3_c00001{bottom:114.346691pt;}
.y179d_c00001{bottom:114.416187pt;}
.y1e13_c00001{bottom:114.504699pt;}
.y14f9_c00001{bottom:114.582603pt;}
.y1edd_c00001{bottom:114.585779pt;}
.y1d0a_c00001{bottom:114.586824pt;}
.y1cd2_c00001{bottom:114.587067pt;}
.y1532_c00001{bottom:114.587283pt;}
.yd6c_c00001{bottom:114.878779pt;}
.y103a_c00001{bottom:115.222547pt;}
.y1c23_c00001{bottom:115.226531pt;}
.y9bf_c00001{bottom:115.227067pt;}
.y1220_c00001{bottom:115.227075pt;}
.y1ec1_c00001{bottom:115.302707pt;}
.y11c5_c00001{bottom:115.303291pt;}
.yf7a_c00001{bottom:115.387067pt;}
.y1d65_c00001{bottom:115.390883pt;}
.y1156_c00001{bottom:115.546699pt;}
.y12f5_c00001{bottom:115.547531pt;}
.y9fd_c00001{bottom:115.699227pt;}
.y24dc_c00001{bottom:115.787067pt;}
.y17e7_c00001{bottom:115.943235pt;}
.y2452_c00001{bottom:115.947067pt;}
.y747_c00001{bottom:116.027200pt;}
.y231a_c00001{bottom:116.030827pt;}
.y1bc6_c00001{bottom:116.263875pt;}
.y174b_c00001{bottom:116.425611pt;}
.y1572_c00001{bottom:116.499763pt;}
.y1ef4_c00001{bottom:116.663339pt;}
.y1b17_c00001{bottom:116.667347pt;}
.y158e_c00001{bottom:116.746691pt;}
.ybe0_c00001{bottom:116.892491pt;}
.yb5e_c00001{bottom:117.064640pt;}
.y1bd8_c00001{bottom:117.223875pt;}
.y1c7a_c00001{bottom:117.302283pt;}
.y8be_c00001{bottom:117.307067pt;}
.y1ace_c00001{bottom:117.307291pt;}
.y21d3_c00001{bottom:117.390875pt;}
.yef9_c00001{bottom:117.467075pt;}
.y1ba5_c00001{bottom:117.543179pt;}
.y1706_c00001{bottom:117.621347pt;}
.y217b_c00001{bottom:117.629259pt;}
.y1e96_c00001{bottom:117.860395pt;}
.y1dbc_c00001{bottom:117.866691pt;}
.y15ba_c00001{bottom:117.867067pt;}
.y1c95_c00001{bottom:118.100291pt;}
.y17c9_c00001{bottom:118.186211pt;}
.y1c61_c00001{bottom:118.187067pt;}
.y20fe_c00001{bottom:118.268011pt;}
.y150b_c00001{bottom:118.347251pt;}
.y1426_c00001{bottom:118.420563pt;}
.y2034_c00001{bottom:118.669275pt;}
.y12d8_c00001{bottom:118.820395pt;}
.y4a1_c00001{bottom:118.907067pt;}
.y6b_c00001{bottom:118.987067pt;}
.y14cf_c00001{bottom:119.061459pt;}
.ybe_c00001{bottom:119.067067pt;}
.ye63_c00001{bottom:119.067568pt;}
.y1619_c00001{bottom:119.224451pt;}
.y8b3_c00001{bottom:119.307067pt;}
.y1b38_c00001{bottom:119.463235pt;}
.yaa9_c00001{bottom:119.703371pt;}
.y18ae_c00001{bottom:119.781563pt;}
.y10de_c00001{bottom:119.866656pt;}
.y2500_c00001{bottom:119.867067pt;}
.yb67_c00001{bottom:119.946067pt;}
.y13bf_c00001{bottom:120.107267pt;}
.yb9e_c00001{bottom:120.266691pt;}
.y889_c00001{bottom:120.267067pt;}
.y1e3f_c00001{bottom:120.347067pt;}
.y19a5_c00001{bottom:120.424931pt;}
.y1b72_c00001{bottom:120.427259pt;}
.ya21_c00001{bottom:120.580307pt;}
.y10c1_c00001{bottom:120.586531pt;}
.y1dae_c00001{bottom:120.587507pt;}
.y1c1f_c00001{bottom:120.660291pt;}
.y1fa7_c00001{bottom:120.668755pt;}
.y2301_c00001{bottom:120.669267pt;}
.y1d3e_c00001{bottom:120.670147pt;}
.y130a_c00001{bottom:120.741563pt;}
.y1f08_c00001{bottom:120.742147pt;}
.y1a1d_c00001{bottom:120.746155pt;}
.y136a_c00001{bottom:120.747235pt;}
.y1ce7_c00001{bottom:120.823979pt;}
.ycd9_c00001{bottom:121.013435pt;}
.yd0a_c00001{bottom:121.041083pt;}
.y1bf5_c00001{bottom:121.066211pt;}
.y1851_c00001{bottom:121.145035pt;}
.y684_c00001{bottom:121.306891pt;}
.yc68_c00001{bottom:121.458707pt;}
.ya6c_c00001{bottom:121.460171pt;}
.yc72_c00001{bottom:121.461635pt;}
.y99b_c00001{bottom:121.467147pt;}
.y2011_c00001{bottom:121.547067pt;}
.y18d9_c00001{bottom:121.622571pt;}
.y1599_c00001{bottom:121.627251pt;}
.y17ed_c00001{bottom:121.627259pt;}
.y2115_c00001{bottom:121.707200pt;}
.y784_c00001{bottom:121.787067pt;}
.y197c_c00001{bottom:121.866059pt;}
.y22d2_c00001{bottom:121.947067pt;}
.y1e5c_c00001{bottom:122.021035pt;}
.y338_c00001{bottom:122.267067pt;}
.yc8f_c00001{bottom:122.338571pt;}
.yac1_c00001{bottom:122.346307pt;}
.yb17_c00001{bottom:122.346387pt;}
.ybbd_c00001{bottom:122.347147pt;}
.ydb8_c00001{bottom:122.349331pt;}
.y1de4_c00001{bottom:122.579147pt;}
.y1715_c00001{bottom:122.585779pt;}
.y1e83_c00001{bottom:122.586272pt;}
.y1781_c00001{bottom:122.586523pt;}
.y19c_c00001{bottom:122.667067pt;}
.y1639_c00001{bottom:122.749571pt;}
.y247b_c00001{bottom:122.987067pt;}
.y1ee6_c00001{bottom:122.987083pt;}
.y1402_c00001{bottom:123.070795pt;}
.y920_c00001{bottom:123.215507pt;}
.y952_c00001{bottom:123.225627pt;}
.ybb7_c00001{bottom:123.225707pt;}
.y859_c00001{bottom:123.227067pt;}
.y21f4_c00001{bottom:123.229163pt;}
.y1249_c00001{bottom:123.302675pt;}
.y1869_c00001{bottom:123.307067pt;}
.y2434_c00001{bottom:123.390851pt;}
.y1350_c00001{bottom:123.542787pt;}
.y194a_c00001{bottom:123.543739pt;}
.y1269_c00001{bottom:124.186280pt;}
.y7bc_c00001{bottom:124.267067pt;}
.y2050_c00001{bottom:124.509584pt;}
.y1d8a_c00001{bottom:124.587235pt;}
.y63d_c00001{bottom:124.667200pt;}
.y1c4e_c00001{bottom:124.902787pt;}
.y2339_c00001{bottom:124.989251pt;}
.y18b7_c00001{bottom:125.139675pt;}
.y1e62_c00001{bottom:125.140259pt;}
.y1557_c00001{bottom:125.146371pt;}
.y11a2_c00001{bottom:125.146531pt;}
.y1b66_c00001{bottom:125.223843pt;}
.y85f_c00001{bottom:125.307067pt;}
.y1757_c00001{bottom:125.385603pt;}
.y11fd_c00001{bottom:125.386523pt;}
.y23bb_c00001{bottom:125.390843pt;}
.y144e_c00001{bottom:125.460899pt;}
.y23ef_c00001{bottom:125.468867pt;}
.y216c_c00001{bottom:125.629227pt;}
.ybf9_c00001{bottom:125.771651pt;}
.y2195_c00001{bottom:125.787067pt;}
.y1813_c00001{bottom:125.863787pt;}
.y1105_c00001{bottom:126.020683pt;}
.y12b4_c00001{bottom:126.100259pt;}
.y1493_c00001{bottom:126.100843pt;}
.y2409_c00001{bottom:126.188971pt;}
.y15c5_c00001{bottom:126.347107pt;}
.y1f60_c00001{bottom:126.427595pt;}
.y8f7_c00001{bottom:126.576320pt;}
.ye92_c00001{bottom:126.667392pt;}
.yea2_c00001{bottom:126.667435pt;}
.yecb_c00001{bottom:126.669627pt;}
.ye2e_c00001{bottom:126.670731pt;}
.y21b1_c00001{bottom:126.828915pt;}
.y18c7_c00001{bottom:127.061427pt;}
.y1f42_c00001{bottom:127.147200pt;}
.y1fd3_c00001{bottom:127.227067pt;}
.yb28_c00001{bottom:127.302995pt;}
.y251a_c00001{bottom:127.467067pt;}
.y1c02_c00001{bottom:127.547067pt;}
.y1a7a_c00001{bottom:127.548483pt;}
.yfab_c00001{bottom:127.705379pt;}
.yc3b_c00001{bottom:127.777331pt;}
.y182b_c00001{bottom:127.781531pt;}
.y14af_c00001{bottom:127.787368pt;}
.y100a_c00001{bottom:127.947075pt;}
.y1750_c00001{bottom:128.018003pt;}
.y1b8b_c00001{bottom:128.021427pt;}
.y16db_c00001{bottom:128.024683pt;}
.y137d_c00001{bottom:128.025779pt;}
.y1dc3_c00001{bottom:128.026683pt;}
.y1ffc_c00001{bottom:128.028552pt;}
.y4a0_c00001{bottom:128.107235pt;}
.y1e02_c00001{bottom:128.187067pt;}
.ybd_c00001{bottom:128.187075pt;}
.y1466_c00001{bottom:128.258483pt;}
.y863_c00001{bottom:128.267067pt;}
.ydf2_c00001{bottom:128.270531pt;}
.yc4_c00001{bottom:128.347075pt;}
.y4b_c00001{bottom:128.347243pt;}
.y56d_c00001{bottom:128.347251pt;}
.y3c5_c00001{bottom:128.347259pt;}
.ye0_c00001{bottom:128.347427pt;}
.y1fd_c00001{bottom:128.347435pt;}
.y113_c00001{bottom:128.347611pt;}
.y7fe_c00001{bottom:128.587067pt;}
.y1ecd_c00001{bottom:128.741531pt;}
.y1894_c00001{bottom:128.823947pt;}
.y112c_c00001{bottom:128.827275pt;}
.y20c0_c00001{bottom:128.828827pt;}
.y16e_c00001{bottom:128.907067pt;}
.y1ca0_c00001{bottom:128.982011pt;}
.y18df_c00001{bottom:128.987067pt;}
.yf20_c00001{bottom:129.149331pt;}
.y1769_c00001{bottom:129.226139pt;}
.y2281_c00001{bottom:129.229139pt;}
.y2071_c00001{bottom:129.388104pt;}
.y213d_c00001{bottom:129.389339pt;}
.y23a0_c00001{bottom:129.389371pt;}
.y2427_c00001{bottom:129.390827pt;}
.yad4_c00001{bottom:129.460931pt;}
.ya43_c00001{bottom:129.465323pt;}
.yadc_c00001{bottom:129.465707pt;}
.yfdc_c00001{bottom:129.625963pt;}
.y1292_c00001{bottom:129.626147pt;}
.y15f2_c00001{bottom:129.626523pt;}
.y1915_c00001{bottom:129.702699pt;}
.y24ee_c00001{bottom:129.867067pt;}
.y172c_c00001{bottom:129.939171pt;}
.y14f8_c00001{bottom:129.942595pt;}
.yb10_c00001{bottom:129.946907pt;}
.y1531_c00001{bottom:129.947275pt;}
.y1a40_c00001{bottom:130.030771pt;}
.y8a7_c00001{bottom:130.267067pt;}
.y171f_c00001{bottom:130.579115pt;}
.y19f6_c00001{bottom:130.582539pt;}
.y1c22_c00001{bottom:130.586523pt;}
.y121f_c00001{bottom:130.587067pt;}
.y1d64_c00001{bottom:130.670715pt;}
.y7e8_c00001{bottom:130.827067pt;}
.y1155_c00001{bottom:130.906691pt;}
.y1a90_c00001{bottom:131.066171pt;}
.ya75_c00001{bottom:131.216267pt;}
.y944_c00001{bottom:131.226987pt;}
.y9d1_c00001{bottom:131.227147pt;}
.y9c6_c00001{bottom:131.227280pt;}
.y17e6_c00001{bottom:131.303227pt;}
.y22b2_c00001{bottom:131.310659pt;}
.yd8d_c00001{bottom:131.387067pt;}
.y234e_c00001{bottom:131.390819pt;}
.y1d16_c00001{bottom:131.467067pt;}
.y1e99_c00001{bottom:131.539699pt;}
.y19d1_c00001{bottom:131.543123pt;}
.y1bc5_c00001{bottom:131.543707pt;}
.y1518_c00001{bottom:131.546824pt;}
.y168b_c00001{bottom:131.547067pt;}
.y117b_c00001{bottom:131.786323pt;}
.y24c2_c00001{bottom:131.787067pt;}
.y1ef3_c00001{bottom:131.943171pt;}
.y79a_c00001{bottom:132.027067pt;}
.y1b16_c00001{bottom:132.027339pt;}
.yc42_c00001{bottom:132.094667pt;}
.yb37_c00001{bottom:132.096131pt;}
.y158d_c00001{bottom:132.106683pt;}
.y1cd1_c00001{bottom:132.430811pt;}
.yd6b_c00001{bottom:132.478267pt;}
.y1e21_c00001{bottom:132.500283pt;}
.y1bd7_c00001{bottom:132.503707pt;}
.y15a9_c00001{bottom:132.506272pt;}
.y1eac_c00001{bottom:132.667243pt;}
.y1acd_c00001{bottom:132.667283pt;}
.yef8_c00001{bottom:132.827067pt;}
.y1eba_c00001{bottom:132.903755pt;}
.y2539_c00001{bottom:132.907067pt;}
.y1f23_c00001{bottom:132.907763pt;}
.y1705_c00001{bottom:132.981339pt;}
.y217a_c00001{bottom:132.989251pt;}
.y1ca5_c00001{bottom:133.140227pt;}
.y1dbb_c00001{bottom:133.146523pt;}
.y85c_c00001{bottom:133.307067pt;}
.y20dd_c00001{bottom:133.387067pt;}
.y211f_c00001{bottom:133.387200pt;}
.y1c94_c00001{bottom:133.460283pt;}
.y17c8_c00001{bottom:133.466043pt;}
.y1af7_c00001{bottom:133.627283pt;}
.y20fd_c00001{bottom:133.628003pt;}
.y1425_c00001{bottom:133.700395pt;}
.y13e3_c00001{bottom:133.700763pt;}
.y11de_c00001{bottom:133.706355pt;}
.y150a_c00001{bottom:133.707243pt;}
.yc0a_c00001{bottom:133.772411pt;}
.y1321_c00001{bottom:133.782259pt;}
.y1959_c00001{bottom:133.785515pt;}
.y1aa3_c00001{bottom:133.863755pt;}
.yb5d_c00001{bottom:133.944560pt;}
.y1069_c00001{bottom:134.026331pt;}
.y12d7_c00001{bottom:134.100227pt;}
.y1926_c00001{bottom:134.100811pt;}
.y1776_c00001{bottom:134.107075pt;}
.y1395_c00001{bottom:134.345979pt;}
.y85_c00001{bottom:134.347067pt;}
.ye62_c00001{bottom:134.347400pt;}
.y1618_c00001{bottom:134.504283pt;}
.y22eb_c00001{bottom:134.589139pt;}
.yca9_c00001{bottom:134.809435pt;}
.y1b37_c00001{bottom:134.823227pt;}
.y18ad_c00001{bottom:135.061395pt;}
.y2380_c00001{bottom:135.228187pt;}
.y1735_c00001{bottom:135.306523pt;}
.y24e2_c00001{bottom:135.307067pt;}
.y19a4_c00001{bottom:135.784923pt;}
.y1b71_c00001{bottom:135.787251pt;}
.y1c32_c00001{bottom:135.942571pt;}
.y1dad_c00001{bottom:135.947499pt;}
.y19b4_c00001{bottom:136.021395pt;}
.y1369_c00001{bottom:136.021979pt;}
.y1fa6_c00001{bottom:136.028747pt;}
.y2300_c00001{bottom:136.029259pt;}
.y1d3d_c00001{bottom:136.030139pt;}
.y69c_c00001{bottom:136.267067pt;}
.y1bf4_c00001{bottom:136.346043pt;}
.y3e2_c00001{bottom:136.347067pt;}
.y1850_c00001{bottom:136.424867pt;}
.yaa8_c00001{bottom:136.583291pt;}
.y1c60_c00001{bottom:136.587067pt;}
.y16c3_c00001{bottom:136.742083pt;}
.y24db_c00001{bottom:136.827067pt;}
.y18ca_c00001{bottom:136.978555pt;}
.y208c_c00001{bottom:136.987200pt;}
.y1598_c00001{bottom:136.987243pt;}
.y17ec_c00001{bottom:136.987251pt;}
.y746_c00001{bottom:137.067200pt;}
.y1547_c00001{bottom:137.225979pt;}
.y23d7_c00001{bottom:137.310635pt;}
.y109a_c00001{bottom:137.542347pt;}
.y1bb0_c00001{bottom:137.622507pt;}
.y1e91_c00001{bottom:137.702667pt;}
.y76d_c00001{bottom:137.707067pt;}
.y179c_c00001{bottom:137.776147pt;}
.y1fc1_c00001{bottom:138.027067pt;}
.y1785_c00001{bottom:138.186691pt;}
.y8bd_c00001{bottom:138.267067pt;}
.y247a_c00001{bottom:138.267795pt;}
.y99a_c00001{bottom:138.338627pt;}
.ya6b_c00001{bottom:138.340091pt;}
.yc5c_c00001{bottom:138.341555pt;}
.y1ee5_c00001{bottom:138.347075pt;}
.y1248_c00001{bottom:138.582507pt;}
.y21f3_c00001{bottom:138.589155pt;}
.ycd8_c00001{bottom:138.612923pt;}
.yd09_c00001{bottom:138.640571pt;}
.y2433_c00001{bottom:138.670683pt;}
.y1a5a_c00001{bottom:138.745083pt;}
.y1e3e_c00001{bottom:138.747067pt;}
.y134f_c00001{bottom:138.902779pt;}
.y1949_c00001{bottom:138.903731pt;}
.y1edc_c00001{bottom:138.906323pt;}
.y1d09_c00001{bottom:138.907368pt;}
.y12f4_c00001{bottom:138.907491pt;}
.yc14_c00001{bottom:139.217027pt;}
.yc8e_c00001{bottom:139.218491pt;}
.yb94_c00001{bottom:139.226387pt;}
.ybbc_c00001{bottom:139.227067pt;}
.y2319_c00001{bottom:139.310627pt;}
.y1039_c00001{bottom:139.462931pt;}
.y11c4_c00001{bottom:139.543675pt;}
.yf79_c00001{bottom:139.699987pt;}
.y1d89_c00001{bottom:139.867067pt;}
.y7ac_c00001{bottom:140.027067pt;}
.y97b_c00001{bottom:140.095427pt;}
.y96f_c00001{bottom:140.096891pt;}
.y1c4d_c00001{bottom:140.262779pt;}
.y8b2_c00001{bottom:140.267067pt;}
.y2338_c00001{bottom:140.269083pt;}
.y1f81_c00001{bottom:140.427067pt;}
.y9fc_c00001{bottom:140.499387pt;}
.y18b6_c00001{bottom:140.499667pt;}
.y1e61_c00001{bottom:140.500251pt;}
.y1b65_c00001{bottom:140.503675pt;}
.y1556_c00001{bottom:140.506363pt;}
.y21d2_c00001{bottom:140.670675pt;}
.y174a_c00001{bottom:140.746155pt;}
.y1571_c00001{bottom:140.820307pt;}
.y144d_c00001{bottom:140.820891pt;}
.y23ee_c00001{bottom:140.828859pt;}
.y24ff_c00001{bottom:140.907067pt;}
.y216b_c00001{bottom:140.989219pt;}
.y1812_c00001{bottom:141.223779pt;}
.y1104_c00001{bottom:141.300515pt;}
.y888_c00001{bottom:141.307067pt;}
.y12b3_c00001{bottom:141.460251pt;}
.y2408_c00001{bottom:141.468803pt;}
.y1c79_c00001{bottom:141.622827pt;}
.y1f5f_c00001{bottom:141.707427pt;}
.ybdf_c00001{bottom:141.773171pt;}
.y1ba4_c00001{bottom:141.863723pt;}
.ye91_c00001{bottom:142.027384pt;}
.yea1_c00001{bottom:142.027427pt;}
.y2033_c00001{bottom:142.029235pt;}
.yeca_c00001{bottom:142.029619pt;}
.ye2d_c00001{bottom:142.030723pt;}
.y15b9_c00001{bottom:142.100779pt;}
.y1ef9_c00001{bottom:142.420835pt;}
.y14ce_c00001{bottom:142.421419pt;}
.y2fd_c00001{bottom:142.747067pt;}
.y885_c00001{bottom:142.827067pt;}
.y1a79_c00001{bottom:142.828315pt;}
.y16af_c00001{bottom:142.906163pt;}
.y14ae_c00001{bottom:143.061363pt;}
.yfaa_c00001{bottom:143.065371pt;}
.y337_c00001{bottom:143.307067pt;}
.y1e7c_c00001{bottom:143.381419pt;}
.y13be_c00001{bottom:143.387067pt;}
.ydf1_c00001{bottom:143.550363pt;}
.y19b_c00001{bottom:143.707067pt;}
.y4a_c00001{bottom:143.707235pt;}
.y290_c00001{bottom:143.707243pt;}
.y3c4_c00001{bottom:143.707251pt;}
.ydf_c00001{bottom:143.707419pt;}
.y1fc_c00001{bottom:143.707427pt;}
.y112_c00001{bottom:143.707603pt;}
.y2451_c00001{bottom:143.862395pt;}
.ydb7_c00001{bottom:143.869211pt;}
.y1ecc_c00001{bottom:144.021363pt;}
.y1a1c_c00001{bottom:144.106115pt;}
.yb27_c00001{bottom:144.182915pt;}
.y1893_c00001{bottom:144.183939pt;}
.y10dd_c00001{bottom:144.187200pt;}
.y112b_c00001{bottom:144.187267pt;}
.y20bf_c00001{bottom:144.188819pt;}
.y1ce_c00001{bottom:144.267067pt;}
.y6c7_c00001{bottom:144.267200pt;}
.yc3a_c00001{bottom:144.576731pt;}
.y1740_c00001{bottom:144.586683pt;}
.y2280_c00001{bottom:144.589131pt;}
.y2070_c00001{bottom:144.667936pt;}
.y213c_c00001{bottom:144.669171pt;}
.y239f_c00001{bottom:144.669203pt;}
.yb66_c00001{bottom:144.826747pt;}
.y10c0_c00001{bottom:144.907075pt;}
.y1c1e_c00001{bottom:144.980835pt;}
.y1309_c00001{bottom:144.981947pt;}
.y1914_c00001{bottom:144.982531pt;}
.yfdb_c00001{bottom:144.985955pt;}
.y1ce6_c00001{bottom:145.144523pt;}
.y197b_c00001{bottom:145.145859pt;}
.y172b_c00001{bottom:145.219003pt;}
.y14f7_c00001{bottom:145.302587pt;}
.ya20_c00001{bottom:145.460987pt;}
.y1fd2_c00001{bottom:145.627067pt;}
.y63c_c00001{bottom:145.707200pt;}
.y121e_c00001{bottom:145.939107pt;}
.y18d8_c00001{bottom:145.943115pt;}
.y222a_c00001{bottom:146.030707pt;}
.y1638_c00001{bottom:146.109531pt;}
.y1154_c00001{bottom:146.186523pt;}
.y85e_c00001{bottom:146.267067pt;}
.ya88_c00001{bottom:146.340851pt;}
.y1e5b_c00001{bottom:146.341579pt;}
.ya42_c00001{bottom:146.345243pt;}
.y1a8f_c00001{bottom:146.346003pt;}
.yb9d_c00001{bottom:146.346387pt;}
.y1401_c00001{bottom:146.430755pt;}
.y17e5_c00001{bottom:146.583059pt;}
.y20a2_c00001{bottom:146.747067pt;}
.y1780_c00001{bottom:146.899691pt;}
.y1bc4_c00001{bottom:146.903699pt;}
.y1714_c00001{bottom:146.906323pt;}
.y1517_c00001{bottom:146.906816pt;}
.y117a_c00001{bottom:147.146315pt;}
.yac0_c00001{bottom:147.226987pt;}
.yb16_c00001{bottom:147.227067pt;}
.y1ef2_c00001{bottom:147.303163pt;}
.y1b15_c00001{bottom:147.307171pt;}
.y2268_c00001{bottom:147.390755pt;}
.y1cd0_c00001{bottom:147.710643pt;}
.y22d1_c00001{bottom:147.789371pt;}
.y1e20_c00001{bottom:147.860275pt;}
.y1bd6_c00001{bottom:147.863699pt;}
.y204f_c00001{bottom:147.869544pt;}
.yf4b_c00001{bottom:147.942835pt;}
.y2010_c00001{bottom:147.947067pt;}
.y1eab_c00001{bottom:147.947075pt;}
.y1665_c00001{bottom:148.024379pt;}
.y1acc_c00001{bottom:148.027275pt;}
.y91f_c00001{bottom:148.096187pt;}
.y951_c00001{bottom:148.106307pt;}
.ybb6_c00001{bottom:148.106387pt;}
.y9d0_c00001{bottom:148.107067pt;}
.y9c5_c00001{bottom:148.107200pt;}
.yef7_c00001{bottom:148.187971pt;}
.y2179_c00001{bottom:148.269083pt;}
.y1268_c00001{bottom:148.506824pt;}
.y2519_c00001{bottom:148.507067pt;}
.y683_c00001{bottom:148.587067pt;}
.y1c93_c00001{bottom:148.820275pt;}
.y17c7_c00001{bottom:148.826035pt;}
.y236a_c00001{bottom:148.827467pt;}
.y1af6_c00001{bottom:148.987275pt;}
.y20fc_c00001{bottom:148.987995pt;}
.y1509_c00001{bottom:149.067235pt;}
.y1aa2_c00001{bottom:149.223747pt;}
.y1068_c00001{bottom:149.306163pt;}
.y862_c00001{bottom:149.307067pt;}
.y3c0_c00001{bottom:149.387067pt;}
.y12d6_c00001{bottom:149.460219pt;}
.y1775_c00001{bottom:149.460803pt;}
.y11a1_c00001{bottom:149.467075pt;}
.ybc_c00001{bottom:149.547067pt;}
.y7fd_c00001{bottom:149.627067pt;}
.y15c4_c00001{bottom:149.697275pt;}
.y1756_c00001{bottom:149.706147pt;}
.y84_c00001{bottom:149.707067pt;}
.ye61_c00001{bottom:149.707392pt;}
.y1617_c00001{bottom:149.864275pt;}
.y168a_c00001{bottom:149.947067pt;}
.yd6a_c00001{bottom:150.157627pt;}
.y21b0_c00001{bottom:150.188875pt;}
.y1492_c00001{bottom:150.421387pt;}
.ybf8_c00001{bottom:150.652331pt;}
.yf1f_c00001{bottom:150.669211pt;}
.y1b70_c00001{bottom:151.067083pt;}
.y19a3_c00001{bottom:151.144915pt;}
.y16da_c00001{bottom:151.304483pt;}
.y8aa_c00001{bottom:151.307067pt;}
.y19b3_c00001{bottom:151.381387pt;}
.y1e19_c00001{bottom:151.381971pt;}
.y1ffb_c00001{bottom:151.388512pt;}
.y1fa5_c00001{bottom:151.388739pt;}
.y22ff_c00001{bottom:151.389251pt;}
.y8f6_c00001{bottom:151.457000pt;}
.y1f_c00001{bottom:151.467067pt;}
.y3e1_c00001{bottom:151.627067pt;}
.y1bf3_c00001{bottom:151.706035pt;}
.y184f_c00001{bottom:151.784859pt;}
.y7e7_c00001{bottom:151.867067pt;}
.y1902_c00001{bottom:152.021915pt;}
.y2194_c00001{bottom:152.187067pt;}
.y174f_c00001{bottom:152.258387pt;}
.y137c_c00001{bottom:152.266163pt;}
.y1597_c00001{bottom:152.267075pt;}
.y17eb_c00001{bottom:152.267083pt;}
.y1b8a_c00001{bottom:152.341971pt;}
.y75a_c00001{bottom:152.427067pt;}
.y1465_c00001{bottom:152.579027pt;}
.y2426_c00001{bottom:152.670627pt;}
.y1099_c00001{bottom:152.902339pt;}
.y1e90_c00001{bottom:152.982499pt;}
.y799_c00001{bottom:152.987067pt;}
.yca5_c00001{bottom:153.211243pt;}
.y18de_c00001{bottom:153.218971pt;}
.y7bb_c00001{bottom:153.227067pt;}
.y1530_c00001{bottom:153.227075pt;}
.y1c9f_c00001{bottom:153.302555pt;}
.y16d_c00001{bottom:153.307067pt;}
.y1a3f_c00001{bottom:153.310571pt;}
.y23f6_c00001{bottom:153.390731pt;}
.y1768_c00001{bottom:153.466523pt;}
.yd8c_c00001{bottom:153.547067pt;}
.y1f41_c00001{bottom:153.547200pt;}
.y2479_c00001{bottom:153.627787pt;}
.y1ee4_c00001{bottom:153.707067pt;}
.y24ad_c00001{bottom:153.787067pt;}
.y2538_c00001{bottom:153.867067pt;}
.y21f2_c00001{bottom:153.868987pt;}
.y1247_c00001{bottom:153.942499pt;}
.y1291_c00001{bottom:153.946691pt;}
.y15f1_c00001{bottom:153.947067pt;}
.y1d63_c00001{bottom:154.030675pt;}
.y1a59_c00001{bottom:154.105075pt;}
.y1edb_c00001{bottom:154.186155pt;}
.y547_c00001{bottom:154.187067pt;}
.y1d08_c00001{bottom:154.187200pt;}
.y12f3_c00001{bottom:154.187323pt;}
.y1948_c00001{bottom:154.263723pt;}
.y85b_c00001{bottom:154.267067pt;}
.ybc2_c00001{bottom:154.341611pt;}
.yadb_c00001{bottom:154.346387pt;}
.y1e01_c00001{bottom:154.587067pt;}
.y22b1_c00001{bottom:154.670619pt;}
.yb0f_c00001{bottom:154.747067pt;}
.y171e_c00001{bottom:154.899659pt;}
.y19f5_c00001{bottom:154.903083pt;}
.y1c21_c00001{bottom:154.907067pt;}
.y1c5f_c00001{bottom:154.987067pt;}
.yc67_c00001{bottom:155.218547pt;}
.yc5b_c00001{bottom:155.221475pt;}
.y1d88_c00001{bottom:155.627200pt;}
.y2337_c00001{bottom:155.629075pt;}
.y19d0_c00001{bottom:155.863667pt;}
.y1555_c00001{bottom:155.866355pt;}
.y23ba_c00001{bottom:156.030667pt;}
.ya74_c00001{bottom:156.096947pt;}
.y144c_c00001{bottom:156.100723pt;}
.y1749_c00001{bottom:156.106147pt;}
.yb93_c00001{bottom:156.106307pt;}
.y943_c00001{bottom:156.107667pt;}
.ycd7_c00001{bottom:156.212411pt;}
.yd08_c00001{bottom:156.240059pt;}
.y1eb9_c00001{bottom:156.263715pt;}
.y24e1_c00001{bottom:156.267067pt;}
.y1f22_c00001{bottom:156.267723pt;}
.y216a_c00001{bottom:156.269051pt;}
.y158c_c00001{bottom:156.337195pt;}
.y1103_c00001{bottom:156.660507pt;}
.y12b2_c00001{bottom:156.820243pt;}
.y15a8_c00001{bottom:156.826816pt;}
.y2407_c00001{bottom:156.828795pt;}
.yc41_c00001{bottom:156.894827pt;}
.y9be_c00001{bottom:156.896291pt;}
.y11dd_c00001{bottom:157.066315pt;}
.y1320_c00001{bottom:157.142219pt;}
.y1958_c00001{bottom:157.145475pt;}
.y1e3d_c00001{bottom:157.147067pt;}
.y1704_c00001{bottom:157.221723pt;}
.y1ba3_c00001{bottom:157.223715pt;}
.y69b_c00001{bottom:157.227067pt;}
.y9fb_c00001{bottom:157.379307pt;}
.ye90_c00001{bottom:157.387376pt;}
.yea0_c00001{bottom:157.387419pt;}
.yec9_c00001{bottom:157.389611pt;}
.ye2c_c00001{bottom:157.390715pt;}
.y15b8_c00001{bottom:157.460771pt;}
.y14cd_c00001{bottom:157.781411pt;}
.y24da_c00001{bottom:157.787067pt;}
.y1d15_c00001{bottom:157.867067pt;}
.y22ea_c00001{bottom:157.868939pt;}
.y1424_c00001{bottom:158.020939pt;}
.y13e2_c00001{bottom:158.021307pt;}
.y745_c00001{bottom:158.027200pt;}
.y1a78_c00001{bottom:158.188307pt;}
.y182a_c00001{bottom:158.421355pt;}
.yfa9_c00001{bottom:158.425363pt;}
.y1009_c00001{bottom:158.581091pt;}
.y237f_c00001{bottom:158.588147pt;}
.yc09_c00001{bottom:158.653091pt;}
.y1e7b_c00001{bottom:158.661251pt;}
.y1394_c00001{bottom:158.666523pt;}
.y76c_c00001{bottom:158.667067pt;}
.y13bd_c00001{bottom:158.746003pt;}
.y49f_c00001{bottom:158.747427pt;}
.yb5c_c00001{bottom:158.825240pt;}
.y24ed_c00001{bottom:158.907067pt;}
.ybb_c00001{bottom:158.907368pt;}
.ydf0_c00001{bottom:158.910355pt;}
.y532_c00001{bottom:158.987067pt;}
.yc3_c00001{bottom:158.987075pt;}
.y222_c00001{bottom:158.987083pt;}
.yde_c00001{bottom:158.987251pt;}
.y1fb_c00001{bottom:158.987259pt;}
.y27b_c00001{bottom:158.987267pt;}
.y111_c00001{bottom:158.987435pt;}
.y1b36_c00001{bottom:159.063611pt;}
.y3a3_c00001{bottom:159.147067pt;}
.y1c31_c00001{bottom:159.302531pt;}
.y8a6_c00001{bottom:159.307067pt;}
.y1a1b_c00001{bottom:159.385947pt;}
.y1d3c_c00001{bottom:159.390099pt;}
.y10dc_c00001{bottom:159.458091pt;}
.y20be_c00001{bottom:159.468651pt;}
.y1892_c00001{bottom:159.543931pt;}
.y83_c00001{bottom:159.627067pt;}
.y23b_c00001{bottom:159.627200pt;}
.y20dc_c00001{bottom:159.787067pt;}
.y211e_c00001{bottom:159.787200pt;}
.y227f_c00001{bottom:159.868963pt;}
.y206f_c00001{bottom:160.027928pt;}
.y213b_c00001{bottom:160.029163pt;}
.y239e_c00001{bottom:160.029195pt;}
.y1dac_c00001{bottom:160.187883pt;}
.y1c1d_c00001{bottom:160.260667pt;}
.y10bf_c00001{bottom:160.267067pt;}
.y1368_c00001{bottom:160.342523pt;}
.yfda_c00001{bottom:160.345947pt;}
.y197a_c00001{bottom:160.505851pt;}
.y172a_c00001{bottom:160.578995pt;}
.y2fc_c00001{bottom:160.587067pt;}
.y23d6_c00001{bottom:160.670595pt;}
.y24c1_c00001{bottom:160.827067pt;}
.y16c2_c00001{bottom:160.982467pt;}
.y3e0_c00001{bottom:160.987075pt;}
.yb26_c00001{bottom:161.062835pt;}
.y7ab_c00001{bottom:161.067067pt;}
.y179b_c00001{bottom:161.136107pt;}
.y121d_c00001{bottom:161.218939pt;}
.y18d7_c00001{bottom:161.303107pt;}
.y8b1_c00001{bottom:161.307067pt;}
.y2229_c00001{bottom:161.390699pt;}
.yaa7_c00001{bottom:161.463971pt;}
.y1546_c00001{bottom:161.546523pt;}
.y17e4_c00001{bottom:161.943051pt;}
.y1e12_c00001{bottom:162.105043pt;}
.y1de3_c00001{bottom:162.179523pt;}
.y1713_c00001{bottom:162.186155pt;}
.y134e_c00001{bottom:162.262739pt;}
.y1bc3_c00001{bottom:162.263691pt;}
.y887_c00001{bottom:162.267067pt;}
.ya1f_c00001{bottom:162.340907pt;}
.y1ef1_c00001{bottom:162.582995pt;}
.y1b14_c00001{bottom:162.667163pt;}
.y2318_c00001{bottom:162.670587pt;}
.y22d0_c00001{bottom:163.069203pt;}
.y1ccf_c00001{bottom:163.070635pt;}
.y999_c00001{bottom:163.219307pt;}
.ya6a_c00001{bottom:163.220771pt;}
.yf4a_c00001{bottom:163.222667pt;}
.y1bd5_c00001{bottom:163.223691pt;}
.yb9c_c00001{bottom:163.226307pt;}
.y1eaa_c00001{bottom:163.305411pt;}
.y1acb_c00001{bottom:163.307107pt;}
.y1664_c00001{bottom:163.384371pt;}
.y208b_c00001{bottom:163.387200pt;}
.yef6_c00001{bottom:163.467803pt;}
.y2246_c00001{bottom:163.629075pt;}
.y1038_c00001{bottom:163.783475pt;}
.y783_c00001{bottom:163.787067pt;}
.y11c3_c00001{bottom:163.864219pt;}
.y1267_c00001{bottom:163.866816pt;}
.yf78_c00001{bottom:164.020531pt;}
.y21d1_c00001{bottom:164.030635pt;}
.yb15_c00001{bottom:164.097707pt;}
.ybbb_c00001{bottom:164.099171pt;}
.y1c92_c00001{bottom:164.100107pt;}
.y17c6_c00001{bottom:164.105867pt;}
.yabf_c00001{bottom:164.106907pt;}
.yb6a_c00001{bottom:164.106987pt;}
.y23ed_c00001{bottom:164.188819pt;}
.y336_c00001{bottom:164.267067pt;}
.y1af5_c00001{bottom:164.267107pt;}
.y20fb_c00001{bottom:164.267827pt;}
.y1508_c00001{bottom:164.336579pt;}
.y1fc0_c00001{bottom:164.427067pt;}
.y1aa1_c00001{bottom:164.503579pt;}
.y1c4c_c00001{bottom:164.583323pt;}
.y1067_c00001{bottom:164.666155pt;}
.y19a_c00001{bottom:164.747067pt;}
.y12d5_c00001{bottom:164.820211pt;}
.y1e60_c00001{bottom:164.820795pt;}
.y1b64_c00001{bottom:164.824219pt;}
.y11a0_c00001{bottom:164.827067pt;}
.y91e_c00001{bottom:164.895587pt;}
.y96e_c00001{bottom:164.897051pt;}
.ybb5_c00001{bottom:164.905787pt;}
.y9cf_c00001{bottom:164.906467pt;}
.y49_c00001{bottom:164.987067pt;}
.y15c3_c00001{bottom:165.057267pt;}
.y1570_c00001{bottom:165.060691pt;}
.ye60_c00001{bottom:165.067384pt;}
.y1f5e_c00001{bottom:165.067387pt;}
.y1616_c00001{bottom:165.224267pt;}
.ydb6_c00001{bottom:165.308939pt;}
.y2032_c00001{bottom:165.389195pt;}
.y1811_c00001{bottom:165.464163pt;}
.y21af_c00001{bottom:165.468707pt;}
.y2157_c00001{bottom:165.627067pt;}
.y1491_c00001{bottom:165.701219pt;}
.y18ac_c00001{bottom:165.781379pt;}
.y1c78_c00001{bottom:165.863211pt;}
.y1e95_c00001{bottom:166.421323pt;}
.y1b51_c00001{bottom:166.424747pt;}
.y1b6f_c00001{bottom:166.427075pt;}
.ybde_c00001{bottom:166.653851pt;}
.y1ef8_c00001{bottom:166.661219pt;}
.y18c6_c00001{bottom:166.661803pt;}
.y1ffa_c00001{bottom:166.668344pt;}
.y22fe_c00001{bottom:166.669083pt;}
.y63b_c00001{bottom:166.747200pt;}
.y1f80_c00001{bottom:166.827067pt;}
.y184e_c00001{bottom:167.144851pt;}
.y16ae_c00001{bottom:167.226707pt;}
.y1cd_c00001{bottom:167.307067pt;}
.y14ad_c00001{bottom:167.381907pt;}
.y112a_c00001{bottom:167.467067pt;}
.y137b_c00001{bottom:167.626155pt;}
.y1596_c00001{bottom:167.627067pt;}
.y17ea_c00001{bottom:167.627075pt;}
.yd69_c00001{bottom:167.757115pt;}
.y2425_c00001{bottom:168.030619pt;}
.y2450_c00001{bottom:168.102779pt;}
.y1098_c00001{bottom:168.262331pt;}
.y2da_c00001{bottom:168.267067pt;}
.y1ecb_c00001{bottom:168.341907pt;}
.y1e8f_c00001{bottom:168.342491pt;}
.y434_c00001{bottom:168.347067pt;}
.y18dd_c00001{bottom:168.578963pt;}
.y152f_c00001{bottom:168.587067pt;}
.y173f_c00001{bottom:168.815435pt;}
.y1ee3_c00001{bottom:168.982435pt;}
.y21f1_c00001{bottom:169.228979pt;}
.y1246_c00001{bottom:169.302491pt;}
.y1290_c00001{bottom:169.306683pt;}
.y1d62_c00001{bottom:169.390667pt;}
.yc39_c00001{bottom:169.457411pt;}
.y1a58_c00001{bottom:169.465067pt;}
.y1637_c00001{bottom:169.469491pt;}
.y1d07_c00001{bottom:169.538963pt;}
.y14f6_c00001{bottom:169.542971pt;}
.y1947_c00001{bottom:169.543555pt;}
.y1eda_c00001{bottom:169.546147pt;}
.y80f_c00001{bottom:169.547067pt;}
.y1a8e_c00001{bottom:169.705963pt;}
.yb65_c00001{bottom:169.707427pt;}
.y1400_c00001{bottom:169.710555pt;}
.y24fe_c00001{bottom:169.867067pt;}
.y234d_c00001{bottom:170.030611pt;}
.y171d_c00001{bottom:170.179491pt;}
.y19f4_c00001{bottom:170.263075pt;}
.y861_c00001{bottom:170.267067pt;}
.y3bf_c00001{bottom:170.427067pt;}
.y1153_c00001{bottom:170.500131pt;}
.y1e5a_c00001{bottom:170.662123pt;}
.y7fc_c00001{bottom:170.667067pt;}
.y2267_c00001{bottom:170.670555pt;}
.y1516_c00001{bottom:171.139491pt;}
.y177f_c00001{bottom:171.140075pt;}
.yad3_c00001{bottom:171.221531pt;}
.y19cf_c00001{bottom:171.223659pt;}
.ya41_c00001{bottom:171.225923pt;}
.y204e_c00001{bottom:171.229504pt;}
.y1179_c00001{bottom:171.386699pt;}
.y23b9_c00001{bottom:171.390659pt;}
.y144b_c00001{bottom:171.460715pt;}
.y1eb8_c00001{bottom:171.543547pt;}
.yb0e_c00001{bottom:171.620219pt;}
.y2178_c00001{bottom:171.629043pt;}
.y1102_c00001{bottom:172.020499pt;}
.y1fd1_c00001{bottom:172.027067pt;}
.yc66_c00001{bottom:172.098467pt;}
.y1e1f_c00001{bottom:172.100659pt;}
.yf1e_c00001{bottom:172.108939pt;}
.y2369_c00001{bottom:172.187427pt;}
.y8bc_c00001{bottom:172.267067pt;}
.y1e_c00001{bottom:172.427067pt;}
.ye8f_c00001{bottom:172.667208pt;}
.ye9f_c00001{bottom:172.667251pt;}
.yec8_c00001{bottom:172.669443pt;}
.ye2b_c00001{bottom:172.670547pt;}
.y1c5_c00001{bottom:172.827067pt;}
.y942_c00001{bottom:172.896347pt;}
.y950_c00001{bottom:172.906467pt;}
.y14cc_c00001{bottom:173.061243pt;}
.y20a1_c00001{bottom:173.147067pt;}
.y858_c00001{bottom:173.307067pt;}
.y759_c00001{bottom:173.387067pt;}
.y1a77_c00001{bottom:173.548299pt;}
.y1774_c00001{bottom:173.701187pt;}
.yc40_c00001{bottom:173.774747pt;}
.yb36_c00001{bottom:173.776211pt;}
.y1829_c00001{bottom:173.781347pt;}
.ycd6_c00001{bottom:173.891771pt;}
.yd07_c00001{bottom:173.919419pt;}
.y11fc_c00001{bottom:174.017819pt;}
.y1e7a_c00001{bottom:174.021243pt;}
.y13bc_c00001{bottom:174.025835pt;}
.y1755_c00001{bottom:174.026691pt;}
.y798_c00001{bottom:174.027067pt;}
.y1d87_c00001{bottom:174.027200pt;}
.y49e_c00001{bottom:174.107419pt;}
.y16c_c00001{bottom:174.267067pt;}
.ydef_c00001{bottom:174.270347pt;}
.y4b9_c00001{bottom:174.346987pt;}
.y200f_c00001{bottom:174.347067pt;}
.y1a4_c00001{bottom:174.347075pt;}
.y9e_c00001{bottom:174.347243pt;}
.y6a_c00001{bottom:174.347251pt;}
.y27a_c00001{bottom:174.347259pt;}
.y110_c00001{bottom:174.347427pt;}
.y133_c00001{bottom:174.347928pt;}
.yd8b_c00001{bottom:174.507067pt;}
.y2114_c00001{bottom:174.507200pt;}
.y19b2_c00001{bottom:174.661187pt;}
.y16d9_c00001{bottom:174.664443pt;}
.y1fa4_c00001{bottom:174.668539pt;}
.y1d3b_c00001{bottom:174.669931pt;}
.y1a1a_c00001{bottom:174.745939pt;}
.y1891_c00001{bottom:174.823763pt;}
.y24ac_c00001{bottom:174.827067pt;}
.y20bd_c00001{bottom:174.828643pt;}
.yd1_c00001{bottom:174.907067pt;}
.y478_c00001{bottom:174.907200pt;}
.y546_c00001{bottom:175.227067pt;}
.y227e_c00001{bottom:175.228955pt;}
.y85a_c00001{bottom:175.307067pt;}
.y19a2_c00001{bottom:175.385299pt;}
.y206e_c00001{bottom:175.387920pt;}
.y213a_c00001{bottom:175.389155pt;}
.y239d_c00001{bottom:175.389187pt;}
.y18b_c00001{bottom:175.467067pt;}
.ybf7_c00001{bottom:175.533011pt;}
.y10be_c00001{bottom:175.542195pt;}
.y1e3c_c00001{bottom:175.547067pt;}
.y1dab_c00001{bottom:175.547875pt;}
.y1c1c_c00001{bottom:175.620659pt;}
.y1cf3_c00001{bottom:175.621771pt;}
.y1480_c00001{bottom:175.622355pt;}
.yfd9_c00001{bottom:175.625779pt;}
.yb5b_c00001{bottom:175.705160pt;}
.y1979_c00001{bottom:175.865843pt;}
.y1729_c00001{bottom:175.938987pt;}
.y1bf2_c00001{bottom:176.026579pt;}
.y2439_c00001{bottom:176.030587pt;}
.y1868_c00001{bottom:176.107067pt;}
.y8f5_c00001{bottom:176.337680pt;}
.y16c1_c00001{bottom:176.342459pt;}
.y682_c00001{bottom:176.347067pt;}
.y174e_c00001{bottom:176.578931pt;}
.y1b89_c00001{bottom:176.582355pt;}
.y18d6_c00001{bottom:176.582939pt;}
.y1a3e_c00001{bottom:176.670531pt;}
.y1464_c00001{bottom:176.899571pt;}
.y181f_c00001{bottom:177.302459pt;}
.y17e3_c00001{bottom:177.303043pt;}
.y24e0_c00001{bottom:177.307067pt;}
.y2432_c00001{bottom:177.390635pt;}
.y1de2_c00001{bottom:177.539515pt;}
.y134d_c00001{bottom:177.542571pt;}
.y1c9e_c00001{bottom:177.542939pt;}
.y12f2_c00001{bottom:177.547283pt;}
.y835_c00001{bottom:177.691243pt;}
.y1784_c00001{bottom:177.775987pt;}
.y1767_c00001{bottom:177.787067pt;}
.y2478_c00001{bottom:177.868171pt;}
.yb25_c00001{bottom:177.942755pt;}
.y1ef0_c00001{bottom:177.942987pt;}
.y1b13_c00001{bottom:178.027155pt;}
.y22b0_c00001{bottom:178.030579pt;}
.y15f0_c00001{bottom:178.263627pt;}
.yaa6_c00001{bottom:178.343891pt;}
.y22cf_c00001{bottom:178.429195pt;}
.y1cce_c00001{bottom:178.430627pt;}
.yf49_c00001{bottom:178.582659pt;}
.y2193_c00001{bottom:178.587067pt;}
.y1ea9_c00001{bottom:178.665403pt;}
.y1aca_c00001{bottom:178.667099pt;}
.y1663_c00001{bottom:178.744363pt;}
.y24d9_c00001{bottom:178.827067pt;}
.yef5_c00001{bottom:178.827795pt;}
.y2336_c00001{bottom:178.989035pt;}
.y2245_c00001{bottom:178.989067pt;}
.y744_c00001{bottom:179.067200pt;}
.y1037_c00001{bottom:179.143467pt;}
.ya1e_c00001{bottom:179.220827pt;}
.y1ec0_c00001{bottom:179.223627pt;}
.y11c2_c00001{bottom:179.224211pt;}
.yada_c00001{bottom:179.227067pt;}
.yf77_c00001{bottom:179.300363pt;}
.y1c91_c00001{bottom:179.460099pt;}
.y23ec_c00001{bottom:179.468651pt;}
.y1af4_c00001{bottom:179.627099pt;}
.y6c6_c00001{bottom:179.627200pt;}
.y1f21_c00001{bottom:179.627683pt;}
.y20fa_c00001{bottom:179.627819pt;}
.y2169_c00001{bottom:179.629011pt;}
.y76b_c00001{bottom:179.707067pt;}
.y1aa0_c00001{bottom:179.863571pt;}
.y24ec_c00001{bottom:179.947067pt;}
.y1f40_c00001{bottom:179.947200pt;}
.y1066_c00001{bottom:180.026147pt;}
.y596_c00001{bottom:180.027067pt;}
.y998_c00001{bottom:180.099227pt;}
.y12b1_c00001{bottom:180.100043pt;}
.y1e5f_c00001{bottom:180.100627pt;}
.yb14_c00001{bottom:180.100691pt;}
.yc5a_c00001{bottom:180.102155pt;}
.y1554_c00001{bottom:180.106739pt;}
.y8a9_c00001{bottom:180.107067pt;}
.y1b63_c00001{bottom:180.184211pt;}
.y3a2_c00001{bottom:180.187067pt;}
.yba_c00001{bottom:180.187200pt;}
.y2406_c00001{bottom:180.188755pt;}
.y8a5_c00001{bottom:180.267067pt;}
.y15c2_c00001{bottom:180.337099pt;}
.y1748_c00001{bottom:180.346531pt;}
.y48_c00001{bottom:180.347067pt;}
.ye5f_c00001{bottom:180.347216pt;}
.y131f_c00001{bottom:180.422019pt;}
.y1957_c00001{bottom:180.425275pt;}
.y82_c00001{bottom:180.427531pt;}
.y1615_c00001{bottom:180.504099pt;}
.y158b_c00001{bottom:180.657739pt;}
.y66f_c00001{bottom:180.667067pt;}
.y21ae_c00001{bottom:180.828699pt;}
.ya73_c00001{bottom:180.897107pt;}
.yc8d_c00001{bottom:180.898571pt;}
.yb92_c00001{bottom:180.906467pt;}
.y1e00_c00001{bottom:180.987067pt;}
.y18ab_c00001{bottom:181.061211pt;}
.y15a7_c00001{bottom:181.067200pt;}
.y22e9_c00001{bottom:181.228899pt;}
.y11dc_c00001{bottom:181.306699pt;}
.y1ba2_c00001{bottom:181.464099pt;}
.y1703_c00001{bottom:181.542267pt;}
.y97a_c00001{bottom:181.775507pt;}
.y96d_c00001{bottom:181.776971pt;}
.y15b7_c00001{bottom:181.781315pt;}
.y1b50_c00001{bottom:181.784739pt;}
.y1b6e_c00001{bottom:181.787067pt;}
.y237e_c00001{bottom:181.867947pt;}
.y1ff9_c00001{bottom:182.028336pt;}
.y22fd_c00001{bottom:182.029075pt;}
.y7aa_c00001{bottom:182.107067pt;}
.y9fa_c00001{bottom:182.259987pt;}
.y1423_c00001{bottom:182.341483pt;}
.y13e1_c00001{bottom:182.341851pt;}
.y3df_c00001{bottom:182.347067pt;}
.y184d_c00001{bottom:182.424683pt;}
.y16ad_c00001{bottom:182.506539pt;}
.y1c30_c00001{bottom:182.582331pt;}
.y1925_c00001{bottom:182.661739pt;}
.yfa8_c00001{bottom:182.665747pt;}
.y1129_c00001{bottom:182.818051pt;}
.y1008_c00001{bottom:182.901635pt;}
.y1393_c00001{bottom:182.978371pt;}
.y137a_c00001{bottom:182.986147pt;}
.y17e9_c00001{bottom:182.987067pt;}
.y886_c00001{bottom:183.307067pt;}
.y1b35_c00001{bottom:183.384155pt;}
.y244f_c00001{bottom:183.462771pt;}
.y2fb_c00001{bottom:183.467067pt;}
.yc08_c00001{bottom:183.533771pt;}
.y1097_c00001{bottom:183.542163pt;}
.y1d14_c00001{bottom:183.627107pt;}
.y10db_c00001{bottom:183.778635pt;}
.y152e_c00001{bottom:183.938955pt;}
.y23d5_c00001{bottom:184.030555pt;}
.y41a_c00001{bottom:184.267067pt;}
.y1ee2_c00001{bottom:184.342427pt;}
.y179a_c00001{bottom:184.415907pt;}
.y1245_c00001{bottom:184.582323pt;}
.y1367_c00001{bottom:184.582907pt;}
.y21f0_c00001{bottom:184.588971pt;}
.y1d61_c00001{bottom:184.670499pt;}
.y1a57_c00001{bottom:184.744899pt;}
.y782_c00001{bottom:184.747067pt;}
.y884_c00001{bottom:184.827067pt;}
.y1d06_c00001{bottom:184.898955pt;}
.y1946_c00001{bottom:184.903547pt;}
.y5b1_c00001{bottom:184.907067pt;}
.y1a8d_c00001{bottom:185.065955pt;}
.y45f_c00001{bottom:185.147067pt;}
.y335_c00001{bottom:185.307067pt;}
.yd68_c00001{bottom:185.356603pt;}
.y234c_c00001{bottom:185.390603pt;}
.y121c_c00001{bottom:185.539483pt;}
.y19f3_c00001{bottom:185.542907pt;}
.y20db_c00001{bottom:185.628987pt;}
.y199_c00001{bottom:185.707067pt;}
.y1545_c00001{bottom:185.860123pt;}
.y2266_c00001{bottom:186.030547pt;}
.y211d_c00001{bottom:186.187200pt;}
.y69a_c00001{bottom:186.267067pt;}
.y1e11_c00001{bottom:186.345427pt;}
.y19ce_c00001{bottom:186.503491pt;}
.y1bc2_c00001{bottom:186.504075pt;}
.y1712_c00001{bottom:186.506699pt;}
.y23b8_c00001{bottom:186.670491pt;}
.y1689_c00001{bottom:186.747067pt;}
.ydb5_c00001{bottom:186.748667pt;}
.y144a_c00001{bottom:186.820707pt;}
.y1eb7_c00001{bottom:186.903539pt;}
.y2177_c00001{bottom:186.989035pt;}
.y21d0_c00001{bottom:187.310435pt;}
.y2368_c00001{bottom:187.467259pt;}
.y63a_c00001{bottom:187.707200pt;}
.ye9e_c00001{bottom:188.027243pt;}
.ye8e_c00001{bottom:188.028296pt;}
.yec7_c00001{bottom:188.029435pt;}
.ye2a_c00001{bottom:188.030539pt;}
.ya69_c00001{bottom:188.101451pt;}
.ya40_c00001{bottom:188.105843pt;}
.yb9b_c00001{bottom:188.106987pt;}
.y1266_c00001{bottom:188.107200pt;}
.y1cc_c00001{bottom:188.267067pt;}
.y14cb_c00001{bottom:188.421235pt;}
.y17c5_c00001{bottom:188.426411pt;}
.y1f5d_c00001{bottom:188.427347pt;}
.y1507_c00001{bottom:188.657123pt;}
.y2031_c00001{bottom:188.668995pt;}
.y1c4b_c00001{bottom:188.823707pt;}
.y1a76_c00001{bottom:188.828131pt;}
.yabe_c00001{bottom:188.899331pt;}
.yb69_c00001{bottom:188.907147pt;}
.y119f_c00001{bottom:189.060595pt;}
.y1828_c00001{bottom:189.061179pt;}
.y156f_c00001{bottom:189.381235pt;}
.y13bb_c00001{bottom:189.385827pt;}
.y433_c00001{bottom:189.387067pt;}
.y49d_c00001{bottom:189.387251pt;}
.ydee_c00001{bottom:189.550179pt;}
.y4b8_c00001{bottom:189.706979pt;}
.y47_c00001{bottom:189.707235pt;}
.y69_c00001{bottom:189.707243pt;}
.y279_c00001{bottom:189.707251pt;}
.y10f_c00001{bottom:189.707419pt;}
.y5e6_c00001{bottom:189.707427pt;}
.y132_c00001{bottom:189.707920pt;}
.y91d_c00001{bottom:189.776267pt;}
.y1810_c00001{bottom:189.784707pt;}
.y94f_c00001{bottom:189.786387pt;}
.ybb4_c00001{bottom:189.786467pt;}
.y9ce_c00001{bottom:189.787147pt;}
.y208a_c00001{bottom:189.787200pt;}
.y19b1_c00001{bottom:190.021179pt;}
.y1490_c00001{bottom:190.021763pt;}
.y1fa3_c00001{bottom:190.028531pt;}
.y1d3a_c00001{bottom:190.029923pt;}
.y1a19_c00001{bottom:190.105931pt;}
.yb9_c00001{bottom:190.107067pt;}
.y347_c00001{bottom:190.107200pt;}
.y1c77_c00001{bottom:190.183755pt;}
.y91_c00001{bottom:190.267067pt;}
.y65f_c00001{bottom:190.347067pt;}
.y80e_c00001{bottom:190.587067pt;}
.y206d_c00001{bottom:190.667752pt;}
.y1fbf_c00001{bottom:190.827067pt;}
.y24fd_c00001{bottom:190.907067pt;}
.y1ef7_c00001{bottom:190.981763pt;}
.y147f_c00001{bottom:190.982347pt;}
.y1978_c00001{bottom:191.145675pt;}
.y2d9_c00001{bottom:191.147200pt;}
.y1bf1_c00001{bottom:191.306411pt;}
.y860_c00001{bottom:191.307067pt;}
.y3be_c00001{bottom:191.387067pt;}
.y2424_c00001{bottom:191.390579pt;}
.ycd5_c00001{bottom:191.491259pt;}
.yd06_c00001{bottom:191.518907pt;}
.ybdd_c00001{bottom:191.534531pt;}
.y14ac_c00001{bottom:191.622291pt;}
.y7fb_c00001{bottom:191.627067pt;}
.y3de_c00001{bottom:191.627083pt;}
.y255_c00001{bottom:191.707067pt;}
.y1dc2_c00001{bottom:191.938923pt;}
.y1b88_c00001{bottom:191.942347pt;}
.y18d5_c00001{bottom:191.942931pt;}
.y2156_c00001{bottom:192.027067pt;}
.y2228_c00001{bottom:192.030523pt;}
.y50e_c00001{bottom:192.267067pt;}
.y1d86_c00001{bottom:192.427200pt;}
.yb5a_c00001{bottom:192.504560pt;}
.y181e_c00001{bottom:192.582291pt;}
.y1e8e_c00001{bottom:192.582875pt;}
.y2431_c00001{bottom:192.670467pt;}
.y1636_c00001{bottom:192.749291pt;}
.y18dc_c00001{bottom:192.899507pt;}
.y134c_c00001{bottom:192.902563pt;}
.y12f1_c00001{bottom:192.907275pt;}
.y13ff_c00001{bottom:193.070515pt;}
.y173e_c00001{bottom:193.135979pt;}
.y1f7f_c00001{bottom:193.227067pt;}
.y1eef_c00001{bottom:193.302979pt;}
.y1b12_c00001{bottom:193.306987pt;}
.y8bb_c00001{bottom:193.307067pt;}
.y1d_c00001{bottom:193.467067pt;}
.y128f_c00001{bottom:193.542875pt;}
.y15ef_c00001{bottom:193.543459pt;}
.yf1d_c00001{bottom:193.548667pt;}
.y1ccd_c00001{bottom:193.710459pt;}
.y22ce_c00001{bottom:193.789187pt;}
.y14f5_c00001{bottom:193.863515pt;}
.y1ed9_c00001{bottom:193.866691pt;}
.y7e6_c00001{bottom:193.867067pt;}
.yf48_c00001{bottom:193.942651pt;}
.y1ea8_c00001{bottom:193.945235pt;}
.yf4_c00001{bottom:193.947067pt;}
.y1662_c00001{bottom:194.024195pt;}
.y1ac9_c00001{bottom:194.027091pt;}
.yef4_c00001{bottom:194.187787pt;}
.y857_c00001{bottom:194.267067pt;}
.y2335_c00001{bottom:194.268867pt;}
.y2244_c00001{bottom:194.268899pt;}
.yc38_c00001{bottom:194.338091pt;}
.y1036_c00001{bottom:194.423299pt;}
.y758_c00001{bottom:194.427067pt;}
.y171c_c00001{bottom:194.500035pt;}
.y1ebf_c00001{bottom:194.503459pt;}
.y11c1_c00001{bottom:194.504043pt;}
.y204d_c00001{bottom:194.509304pt;}
.y1152_c00001{bottom:194.820675pt;}
.y23eb_c00001{bottom:194.828643pt;}
.y1e59_c00001{bottom:194.902507pt;}
.y1af3_c00001{bottom:194.906931pt;}
.y797_c00001{bottom:194.987067pt;}
.y20f9_c00001{bottom:194.987811pt;}
.y2168_c00001{bottom:194.989003pt;}
.y1a9f_c00001{bottom:195.223563pt;}
.yaa5_c00001{bottom:195.223811pt;}
.y16b_c00001{bottom:195.307067pt;}
.y12b0_c00001{bottom:195.460035pt;}
.y177e_c00001{bottom:195.460619pt;}
.y1553_c00001{bottom:195.466731pt;}
.y2405_c00001{bottom:195.468587pt;}
.yd8a_c00001{bottom:195.547067pt;}
.y15c1_c00001{bottom:195.697091pt;}
.y1747_c00001{bottom:195.706523pt;}
.y1a3_c00001{bottom:195.707067pt;}
.ye5e_c00001{bottom:195.707208pt;}
.y1178_c00001{bottom:195.707243pt;}
.y1c4_c00001{bottom:195.787067pt;}
.y1614_c00001{bottom:195.864091pt;}
.y2537_c00001{bottom:195.947067pt;}
.y23a_c00001{bottom:195.947200pt;}
.y158a_c00001{bottom:196.017731pt;}
.yca4_c00001{bottom:196.093051pt;}
.yad9_c00001{bottom:196.100747pt;}
.ybc1_c00001{bottom:196.102211pt;}
.y545_c00001{bottom:196.187067pt;}
.y21ad_c00001{bottom:196.188691pt;}
.y1101_c00001{bottom:196.260883pt;}
.y728_c00001{bottom:196.267067pt;}
.y15a6_c00001{bottom:196.421203pt;}
.yb0d_c00001{bottom:196.500899pt;}
.y18a_c00001{bottom:196.507067pt;}
.y11db_c00001{bottom:196.666691pt;}
.yc65_c00001{bottom:196.898627pt;}
.yb13_c00001{bottom:196.900091pt;}
.yc59_c00001{bottom:196.901555pt;}
.y1702_c00001{bottom:196.902259pt;}
.y15b6_c00001{bottom:197.061147pt;}
.y1b4f_c00001{bottom:197.144731pt;}
.y681_c00001{bottom:197.387067pt;}
.y1ff8_c00001{bottom:197.388328pt;}
.y22fc_c00001{bottom:197.389067pt;}
.y20bc_c00001{bottom:197.468499pt;}
.y941_c00001{bottom:197.777027pt;}
.y184c_c00001{bottom:197.784675pt;}
.yb91_c00001{bottom:197.786387pt;}
.y16ac_c00001{bottom:197.866531pt;}
.y1773_c00001{bottom:198.021731pt;}
.y16d8_c00001{bottom:198.024403pt;}
.y366_c00001{bottom:198.107067pt;}
.y1128_c00001{bottom:198.178043pt;}
.y11fb_c00001{bottom:198.258203pt;}
.y1754_c00001{bottom:198.267075pt;}
.y2518_c00001{bottom:198.507067pt;}
.y227d_c00001{bottom:198.588915pt;}
.yc3f_c00001{bottom:198.655427pt;}
.y9bd_c00001{bottom:198.656891pt;}
.y2139_c00001{bottom:198.668955pt;}
.y239c_c00001{bottom:198.668987pt;}
.y244e_c00001{bottom:198.822763pt;}
.y1096_c00001{bottom:198.902155pt;}
.y1daa_c00001{bottom:198.907835pt;}
.y10da_c00001{bottom:199.138627pt;}
.y9f9_c00001{bottom:199.139907pt;}
.y1890_c00001{bottom:199.144307pt;}
.y477_c00001{bottom:199.147200pt;}
.y152d_c00001{bottom:199.218787pt;}
.y1c5e_c00001{bottom:199.306963pt;}
.y2438_c00001{bottom:199.390547pt;}
.y20a0_c00001{bottom:199.547067pt;}
.y1ee1_c00001{bottom:199.622259pt;}
.y19a1_c00001{bottom:199.705843pt;}
.y24d8_c00001{bottom:199.787067pt;}
.y21ef_c00001{bottom:199.868803pt;}
.y1c1b_c00001{bottom:199.941203pt;}
.y1244_c00001{bottom:199.942315pt;}
.y1366_c00001{bottom:199.942899pt;}
.yfd8_c00001{bottom:199.946323pt;}
.y743_c00001{bottom:200.027200pt;}
.y1a3d_c00001{bottom:200.030491pt;}
.y1a56_c00001{bottom:200.104891pt;}
.y1d05_c00001{bottom:200.178787pt;}
.y1945_c00001{bottom:200.263539pt;}
.y1a8c_c00001{bottom:200.345787pt;}
.ybf6_c00001{bottom:200.413691pt;}
.y1901_c00001{bottom:200.582843pt;}
.y234b_c00001{bottom:200.670435pt;}
.y200e_c00001{bottom:200.747067pt;}
.y2113_c00001{bottom:200.827200pt;}
.y174d_c00001{bottom:200.899475pt;}
.y19f2_c00001{bottom:200.902899pt;}
.y24eb_c00001{bottom:200.907067pt;}
.y595_c00001{bottom:200.987067pt;}
.y1463_c00001{bottom:201.139955pt;}
.y8f4_c00001{bottom:201.218360pt;}
.y28c_c00001{bottom:201.307067pt;}
.y22af_c00001{bottom:201.310379pt;}
.y17e2_c00001{bottom:201.543427pt;}
.y66e_c00001{bottom:201.627067pt;}
.y1bd4_c00001{bottom:201.863483pt;}
.y1bc1_c00001{bottom:201.864067pt;}
.y23b7_c00001{bottom:202.030483pt;}
.y1766_c00001{bottom:202.096531pt;}
.y1449_c00001{bottom:202.100539pt;}
.y2477_c00001{bottom:202.188715pt;}
.y1eb6_c00001{bottom:202.263531pt;}
.y2176_c00001{bottom:202.268867pt;}
.y1867_c00001{bottom:202.507067pt;}
.yb24_c00001{bottom:202.742915pt;}
.y1c90_c00001{bottom:202.820059pt;}
.y24c0_c00001{bottom:202.827067pt;}
.y2367_c00001{bottom:202.827251pt;}
.y81_c00001{bottom:202.907067pt;}
.y1f20_c00001{bottom:202.907483pt;}
.yd67_c00001{bottom:203.035963pt;}
.y7a9_c00001{bottom:203.067067pt;}
.ye9d_c00001{bottom:203.387235pt;}
.ye8d_c00001{bottom:203.388288pt;}
.yec6_c00001{bottom:203.389427pt;}
.ye29_c00001{bottom:203.390531pt;}
.y1265_c00001{bottom:203.460587pt;}
.yf76_c00001{bottom:203.620907pt;}
.y14ca_c00001{bottom:203.701067pt;}
.y131e_c00001{bottom:203.781979pt;}
.y1956_c00001{bottom:203.785235pt;}
.ya1d_c00001{bottom:204.101507pt;}
.y1a75_c00001{bottom:204.188123pt;}
.y1065_c00001{bottom:204.266531pt;}
.yd0_c00001{bottom:204.267067pt;}
.y1827_c00001{bottom:204.421171pt;}
.y1b62_c00001{bottom:204.424595pt;}
.y22e8_c00001{bottom:204.508699pt;}
.y1e79_c00001{bottom:204.661067pt;}
.y49c_c00001{bottom:204.747243pt;}
.y997_c00001{bottom:204.899387pt;}
.ya68_c00001{bottom:204.900851pt;}
.yc71_c00001{bottom:204.902315pt;}
.yb9a_c00001{bottom:204.906387pt;}
.yded_c00001{bottom:204.910171pt;}
.y4b7_c00001{bottom:204.986811pt;}
.y1f2_c00001{bottom:204.987067pt;}
.y68_c00001{bottom:204.987075pt;}
.y20a_c00001{bottom:204.987083pt;}
.y10e_c00001{bottom:204.987251pt;}
.y5e5_c00001{bottom:204.987259pt;}
.y131_c00001{bottom:204.987752pt;}
.y180f_c00001{bottom:205.144699pt;}
.y1688_c00001{bottom:205.147067pt;}
.y237d_c00001{bottom:205.227907pt;}
.y2a4_c00001{bottom:205.307067pt;}
.y1fa2_c00001{bottom:205.388523pt;}
.y1c76_c00001{bottom:205.543747pt;}
.y225_c00001{bottom:205.627067pt;}
.y6e7_c00001{bottom:205.627200pt;}
.ya72_c00001{bottom:205.777787pt;}
.yc8c_c00001{bottom:205.779251pt;}
.y1ba1_c00001{bottom:205.784643pt;}
.y781_c00001{bottom:205.787067pt;}
.y5b0_c00001{bottom:205.867067pt;}
.y1c2f_c00001{bottom:205.942291pt;}
.y206c_c00001{bottom:206.027744pt;}
.y45e_c00001{bottom:206.187067pt;}
.y147e_c00001{bottom:206.342339pt;}
.y8b7_c00001{bottom:206.347067pt;}
.y1f3f_c00001{bottom:206.347200pt;}
.y1977_c00001{bottom:206.505667pt;}
.y1422_c00001{bottom:206.581867pt;}
.y13e0_c00001{bottom:206.582235pt;}
.y979_c00001{bottom:206.656187pt;}
.y96c_c00001{bottom:206.657651pt;}
.y1bf0_c00001{bottom:206.666403pt;}
.y2423_c00001{bottom:206.670411pt;}
.y1c01_c00001{bottom:206.747067pt;}
.y1dff_c00001{bottom:206.749235pt;}
.y388_c00001{bottom:206.907875pt;}
.y14ab_c00001{bottom:206.982283pt;}
.yfa7_c00001{bottom:206.986291pt;}
.y1d13_c00001{bottom:206.987067pt;}
.y3dd_c00001{bottom:206.987075pt;}
.y1392_c00001{bottom:207.218755pt;}
.y1007_c00001{bottom:207.222179pt;}
.y1379_c00001{bottom:207.226531pt;}
.y18d4_c00001{bottom:207.302923pt;}
.y699_c00001{bottom:207.307067pt;}
.y23d4_c00001{bottom:207.310355pt;}
.y2227_c00001{bottom:207.390515pt;}
.y1b34_c00001{bottom:207.624539pt;}
.y58d_c00001{bottom:207.627067pt;}
.y1799_c00001{bottom:207.775867pt;}
.y181d_c00001{bottom:207.942283pt;}
.y2430_c00001{bottom:208.030459pt;}
.y1734_c00001{bottom:208.179339pt;}
.y12f0_c00001{bottom:208.187107pt;}
.ydb4_c00001{bottom:208.188395pt;}
.y134b_c00001{bottom:208.262555pt;}
.yc07_c00001{bottom:208.414451pt;}
.y1eee_c00001{bottom:208.582811pt;}
.y1b11_c00001{bottom:208.666979pt;}
.y76a_c00001{bottom:208.667067pt;}
.y6c5_c00001{bottom:208.667200pt;}
.y639_c00001{bottom:208.747200pt;}
.y20da_c00001{bottom:208.988947pt;}
.y22cd_c00001{bottom:209.069019pt;}
.y1ccc_c00001{bottom:209.070451pt;}
.y3a1_c00001{bottom:209.147067pt;}
.ycd4_c00001{bottom:209.170619pt;}
.yd05_c00001{bottom:209.198267pt;}
.y14f4_c00001{bottom:209.223507pt;}
.y1ea7_c00001{bottom:209.305227pt;}
.y1ac8_c00001{bottom:209.306923pt;}
.y1cb_c00001{bottom:209.307067pt;}
.y2317_c00001{bottom:209.310347pt;}
.y1661_c00001{bottom:209.384187pt;}
.y2265_c00001{bottom:209.390507pt;}
.yef3_c00001{bottom:209.467619pt;}
.y2334_c00001{bottom:209.628859pt;}
.y2243_c00001{bottom:209.628891pt;}
.y121b_c00001{bottom:209.860027pt;}
.y1ebe_c00001{bottom:209.863451pt;}
.y11c0_c00001{bottom:209.864035pt;}
.y1151_c00001{bottom:210.100507pt;}
.y521_c00001{bottom:210.187067pt;}
.y23ea_c00001{bottom:210.188635pt;}
.y20f8_c00001{bottom:210.267643pt;}
.y2167_c00001{bottom:210.268835pt;}
.y432_c00001{bottom:210.347067pt;}
.y1a9e_c00001{bottom:210.503395pt;}
.y1e10_c00001{bottom:210.665971pt;}
.y21cf_c00001{bottom:210.670395pt;}
.y12d4_c00001{bottom:210.739867pt;}
.y177d_c00001{bottom:210.740451pt;}
.y12af_c00001{bottom:210.820027pt;}
.y19cd_c00001{bottom:210.824035pt;}
.y2ac_c00001{bottom:210.827067pt;}
.y1d85_c00001{bottom:210.827200pt;}
.y1711_c00001{bottom:210.827243pt;}
.y2404_c00001{bottom:210.828579pt;}
.y46_c00001{bottom:210.987067pt;}
.y15c0_c00001{bottom:211.057083pt;}
.y346_c00001{bottom:211.067200pt;}
.y1177_c00001{bottom:211.067235pt;}
.ye5d_c00001{bottom:211.067243pt;}
.yc37_c00001{bottom:211.218011pt;}
.y1613_c00001{bottom:211.224083pt;}
.y1589_c00001{bottom:211.297563pt;}
.y8b0_c00001{bottom:211.307067pt;}
.y21ac_c00001{bottom:211.468523pt;}
.yb64_c00001{bottom:211.547067pt;}
.y80d_c00001{bottom:211.627067pt;}
.y1e1e_c00001{bottom:211.701035pt;}
.y1f5c_c00001{bottom:211.707147pt;}
.y24fc_c00001{bottom:211.947067pt;}
.y2030_c00001{bottom:212.028955pt;}
.y1701_c00001{bottom:212.182091pt;}
.y8a3_c00001{bottom:212.187067pt;}
.y1dd_c00001{bottom:212.267067pt;}
.y1e3b_c00001{bottom:212.347067pt;}
.y1b6d_c00001{bottom:212.421139pt;}
.y1b4e_c00001{bottom:212.424563pt;}
.y3bd_c00001{bottom:212.427067pt;}
.y211c_c00001{bottom:212.587200pt;}
.y7fa_c00001{bottom:212.667067pt;}
.y1ff7_c00001{bottom:212.668160pt;}
.y22fb_c00001{bottom:212.668899pt;}
.y17c4_c00001{bottom:212.746955pt;}
.y20bb_c00001{bottom:212.828491pt;}
.yad2_c00001{bottom:212.901611pt;}
.ya3f_c00001{bottom:212.906003pt;}
.y1506_c00001{bottom:212.977667pt;}
.y1c4a_c00001{bottom:213.144251pt;}
.y184b_c00001{bottom:213.144667pt;}
.y16ab_c00001{bottom:213.226523pt;}
.y50d_c00001{bottom:213.307067pt;}
.yb0c_c00001{bottom:213.380819pt;}
.y119e_c00001{bottom:213.381139pt;}
.y1772_c00001{bottom:213.381723pt;}
.y1d39_c00001{bottom:213.389883pt;}
.y11fa_c00001{bottom:213.618195pt;}
.y156e_c00001{bottom:213.621619pt;}
.y1753_c00001{bottom:213.627067pt;}
.y13ba_c00001{bottom:213.706371pt;}
.yc64_c00001{bottom:213.778547pt;}
.yabd_c00001{bottom:213.780011pt;}
.y227c_c00001{bottom:213.868747pt;}
.y239b_c00001{bottom:214.028979pt;}
.y1da9_c00001{bottom:214.187667pt;}
.y10bd_c00001{bottom:214.262147pt;}
.y334_c00001{bottom:214.267067pt;}
.y19b0_c00001{bottom:214.341723pt;}
.y148f_c00001{bottom:214.342307pt;}
.y1a18_c00001{bottom:214.346315pt;}
.y8c1_c00001{bottom:214.347067pt;}
.y325_c00001{bottom:214.347200pt;}
.y91c_c00001{bottom:214.656947pt;}
.ybb3_c00001{bottom:214.667147pt;}
.y198_c00001{bottom:214.747067pt;}
.y7e5_c00001{bottom:214.827067pt;}
.y1ee0_c00001{bottom:214.982251pt;}
.yf3_c00001{bottom:214.987067pt;}
.y19a0_c00001{bottom:215.065835pt;}
.yf1c_c00001{bottom:215.068547pt;}
.y21ee_c00001{bottom:215.228795pt;}
.y1308_c00001{bottom:215.302307pt;}
.y1365_c00001{bottom:215.302891pt;}
.y856_c00001{bottom:215.307067pt;}
.y1ce5_c00001{bottom:215.384723pt;}
.y1d60_c00001{bottom:215.390483pt;}
.y1a8b_c00001{bottom:215.705779pt;}
.y5d9_c00001{bottom:215.707067pt;}
.y796_c00001{bottom:216.027067pt;}
.y1635_c00001{bottom:216.109251pt;}
.y18c9_c00001{bottom:216.179307pt;}
.y2089_c00001{bottom:216.187200pt;}
.y19f1_c00001{bottom:216.262891pt;}
.y7ba_c00001{bottom:216.267067pt;}
.y16a_c00001{bottom:216.347067pt;}
.y13fe_c00001{bottom:216.350315pt;}
.ybdc_c00001{bottom:216.415211pt;}
.y1462_c00001{bottom:216.499947pt;}
.y5d7_c00001{bottom:216.747067pt;}
.y1baf_c00001{bottom:216.903419pt;}
.y2536_c00001{bottom:216.907067pt;}
.y239_c00001{bottom:216.987200pt;}
.y18db_c00001{bottom:217.139891pt;}
.y8bf_c00001{bottom:217.147067pt;}
.y1ba_c00001{bottom:217.147651pt;}
.y1bd3_c00001{bottom:217.223475pt;}
.y544_c00001{bottom:217.227067pt;}
.yf8_c00001{bottom:217.307067pt;}
.y173d_c00001{bottom:217.376363pt;}
.yb59_c00001{bottom:217.385240pt;}
.y23b6_c00001{bottom:217.390475pt;}
.y1448_c00001{bottom:217.460531pt;}
.y189_c00001{bottom:217.467067pt;}
.y1eb5_c00001{bottom:217.543363pt;}
.y2175_c00001{bottom:217.628859pt;}
.yd89_c00001{bottom:217.707067pt;}
.y128e_c00001{bottom:217.863419pt;}
.y15ee_c00001{bottom:217.864003pt;}
.y204c_c00001{bottom:217.869264pt;}
.y1c8f_c00001{bottom:218.099891pt;}
.y1ed8_c00001{bottom:218.107075pt;}
.yf47_c00001{bottom:218.183035pt;}
.y2366_c00001{bottom:218.187243pt;}
.y680_c00001{bottom:218.347067pt;}
.y2155_c00001{bottom:218.427067pt;}
.ye9c_c00001{bottom:218.667752pt;}
.ye8c_c00001{bottom:218.668120pt;}
.yec5_c00001{bottom:218.669259pt;}
.ye28_c00001{bottom:218.670363pt;}
.y1035_c00001{bottom:218.743843pt;}
.y1264_c00001{bottom:218.820579pt;}
.y14c9_c00001{bottom:219.061059pt;}
.y1e58_c00001{bottom:219.223051pt;}
.y1af2_c00001{bottom:219.227475pt;}
.y65e_c00001{bottom:219.307067pt;}
.y2517_c00001{bottom:219.547067pt;}
.y1a74_c00001{bottom:219.548115pt;}
.yb23_c00001{bottom:219.622835pt;}
.y1064_c00001{bottom:219.626523pt;}
.y1f7e_c00001{bottom:219.627067pt;}
.y1515_c00001{bottom:219.700419pt;}
.y1905_c00001{bottom:219.701003pt;}
.y1552_c00001{bottom:219.707115pt;}
.y1b61_c00001{bottom:219.784587pt;}
.y1746_c00001{bottom:220.027067pt;}
.yaa4_c00001{bottom:220.104491pt;}
.y476_c00001{bottom:220.107200pt;}
.y49b_c00001{bottom:220.107235pt;}
.ydec_c00001{bottom:220.270163pt;}
.y209_c00001{bottom:220.347075pt;}
.y45_c00001{bottom:220.347243pt;}
.ydd_c00001{bottom:220.347251pt;}
.y26d_c00001{bottom:220.347443pt;}
.y130_c00001{bottom:220.347744pt;}
.y180e_c00001{bottom:220.424531pt;}
.yd66_c00001{bottom:220.475707pt;}
.y1100_c00001{bottom:220.581427pt;}
.y834_c00001{bottom:220.651507pt;}
.y15a5_c00001{bottom:220.661587pt;}
.y1fa1_c00001{bottom:220.668355pt;}
.y24d7_c00001{bottom:220.827067pt;}
.ya1c_c00001{bottom:220.900907pt;}
.ybc0_c00001{bottom:220.902371pt;}
.y9d_c00001{bottom:220.907067pt;}
.y11da_c00001{bottom:220.987235pt;}
.y742_c00001{bottom:221.067200pt;}
.y1ba0_c00001{bottom:221.144635pt;}
.yc2_c00001{bottom:221.227067pt;}
.y16d7_c00001{bottom:221.304203pt;}
.y15b5_c00001{bottom:221.381691pt;}
.y206b_c00001{bottom:221.387736pt;}
.y147d_c00001{bottom:221.622171pt;}
.yb12_c00001{bottom:221.780771pt;}
.yc58_c00001{bottom:221.782235pt;}
.y1976_c00001{bottom:221.865659pt;}
.y2138_c00001{bottom:221.868595pt;}
.y13df_c00001{bottom:221.942227pt;}
.y1bef_c00001{bottom:221.946235pt;}
.y24ea_c00001{bottom:221.947067pt;}
.y594_c00001{bottom:222.027067pt;}
.y2422_c00001{bottom:222.030403pt;}
.y8cb_c00001{bottom:222.187067pt;}
.y14aa_c00001{bottom:222.342275pt;}
.yfa6_c00001{bottom:222.346283pt;}
.y28b_c00001{bottom:222.347067pt;}
.y1127_c00001{bottom:222.418427pt;}
.y1006_c00001{bottom:222.502011pt;}
.y1c_c00001{bottom:222.507067pt;}
.y1391_c00001{bottom:222.578747pt;}
.y18d3_c00001{bottom:222.582755pt;}
.ya71_c00001{bottom:222.657707pt;}
.y1c5d_c00001{bottom:222.666923pt;}
.y66d_c00001{bottom:222.667067pt;}
.y2226_c00001{bottom:222.670347pt;}
.y244d_c00001{bottom:223.063147pt;}
.y1095_c00001{bottom:223.222699pt;}
.y181c_c00001{bottom:223.302275pt;}
.y1a3c_c00001{bottom:223.310291pt;}
.y10d9_c00001{bottom:223.379011pt;}
.y188f_c00001{bottom:223.384691pt;}
.y757_c00001{bottom:223.387067pt;}
.y23f5_c00001{bottom:223.390451pt;}
.y978_c00001{bottom:223.536107pt;}
.y96b_c00001{bottom:223.537571pt;}
.y152c_c00001{bottom:223.539331pt;}
.y1944_c00001{bottom:223.543339pt;}
.y1687_c00001{bottom:223.547067pt;}
.y24bf_c00001{bottom:223.787067pt;}
.y2482_c00001{bottom:223.942803pt;}
.y9f8_c00001{bottom:224.020587pt;}
.y1b10_c00001{bottom:224.026971pt;}
.y234a_c00001{bottom:224.030395pt;}
.y7a8_c00001{bottom:224.107067pt;}
.y1c1a_c00001{bottom:224.181587pt;}
.y1243_c00001{bottom:224.262859pt;}
.yfd7_c00001{bottom:224.266867pt;}
.y22cc_c00001{bottom:224.429011pt;}
.y1ccb_c00001{bottom:224.430443pt;}
.y1d04_c00001{bottom:224.499331pt;}
.y14f3_c00001{bottom:224.503339pt;}
.y1ea6_c00001{bottom:224.585059pt;}
.y2264_c00001{bottom:224.670339pt;}
.y1660_c00001{bottom:224.744179pt;}
.y24ab_c00001{bottom:224.827067pt;}
.yef2_c00001{bottom:224.827611pt;}
.y1900_c00001{bottom:224.903387pt;}
.y2333_c00001{bottom:224.988851pt;}
.y2242_c00001{bottom:224.988883pt;}
.y171b_c00001{bottom:225.139859pt;}
.ybf5_c00001{bottom:225.213851pt;}
.y1c9d_c00001{bottom:225.223443pt;}
.ycf_c00001{bottom:225.307067pt;}
.y1544_c00001{bottom:225.460499pt;}
.y23e9_c00001{bottom:225.468467pt;}
.y2476_c00001{bottom:225.548675pt;}
.y20f7_c00001{bottom:225.627635pt;}
.y2166_c00001{bottom:225.628827pt;}
.y1a9d_c00001{bottom:225.863387pt;}
.y17e1_c00001{bottom:225.863971pt;}
.y209f_c00001{bottom:225.947067pt;}
.y8f3_c00001{bottom:226.018520pt;}
.y1e0f_c00001{bottom:226.025963pt;}
.y12ae_c00001{bottom:226.099859pt;}
.y1710_c00001{bottom:226.107075pt;}
.y1bc0_c00001{bottom:226.184611pt;}
.y1fd0_c00001{bottom:226.187067pt;}
.y387_c00001{bottom:226.187291pt;}
.y2403_c00001{bottom:226.188571pt;}
.y1f1f_c00001{bottom:226.267443pt;}
.y1176_c00001{bottom:226.336915pt;}
.y67_c00001{bottom:226.347067pt;}
.ye5c_c00001{bottom:226.347075pt;}
.y1612_c00001{bottom:226.503915pt;}
.y780_c00001{bottom:226.747067pt;}
.ycd3_c00001{bottom:226.770107pt;}
.yd04_c00001{bottom:226.797755pt;}
.y883_c00001{bottom:226.827067pt;}
.y21ab_c00001{bottom:226.828515pt;}
.y5af_c00001{bottom:226.907067pt;}
.y1e1d_c00001{bottom:227.061027pt;}
.y4b1_c00001{bottom:227.067067pt;}
.y131d_c00001{bottom:227.141939pt;}
.y1955_c00001{bottom:227.145195pt;}
.y45d_c00001{bottom:227.147067pt;}
.y365_c00001{bottom:227.147200pt;}
.y2112_c00001{bottom:227.227200pt;}
.y8b6_c00001{bottom:227.307067pt;}
.y1700_c00001{bottom:227.542083pt;}
.y1efb_c00001{bottom:227.700971pt;}
.y60d_c00001{bottom:227.707067pt;}
.y1b4d_c00001{bottom:227.784555pt;}
.y22e7_c00001{bottom:227.868659pt;}
.yf75_c00001{bottom:227.941451pt;}
.y17c3_c00001{bottom:228.026787pt;}
.y1ff6_c00001{bottom:228.028152pt;}
.y20ba_c00001{bottom:228.188483pt;}
.y698_c00001{bottom:228.267067pt;}
.y3dc_c00001{bottom:228.347067pt;}
.y184a_c00001{bottom:228.424499pt;}
.y16aa_c00001{bottom:228.506355pt;}
.y237c_c00001{bottom:228.507707pt;}
.y119d_c00001{bottom:228.660971pt;}
.y1771_c00001{bottom:228.661555pt;}
.y1d38_c00001{bottom:228.669715pt;}
.y1866_c00001{bottom:228.907067pt;}
.y11f9_c00001{bottom:228.978187pt;}
.y1e78_c00001{bottom:228.981611pt;}
.y1d84_c00001{bottom:229.227200pt;}
.y227b_c00001{bottom:229.228739pt;}
.y1c2e_c00001{bottom:229.302251pt;}
.y239a_c00001{bottom:229.388971pt;}
.y10bc_c00001{bottom:229.541979pt;}
.y1da8_c00001{bottom:229.547659pt;}
.y148e_c00001{bottom:229.622139pt;}
.y769_c00001{bottom:229.707067pt;}
.y638_c00001{bottom:229.707200pt;}
.ydb3_c00001{bottom:229.708275pt;}
.y996_c00001{bottom:229.780067pt;}
.ya67_c00001{bottom:229.781531pt;}
.yc70_c00001{bottom:229.782995pt;}
.y1c75_c00001{bottom:229.784131pt;}
.ya3e_c00001{bottom:229.785923pt;}
.y1dfe_c00001{bottom:230.109195pt;}
.y1edf_c00001{bottom:230.342243pt;}
.y199f_c00001{bottom:230.345667pt;}
.y2e3_c00001{bottom:230.347067pt;}
.y1307_c00001{bottom:230.582139pt;}
.y1913_c00001{bottom:230.582723pt;}
.y21ed_c00001{bottom:230.588787pt;}
.yb68_c00001{bottom:230.658467pt;}
.yc8b_c00001{bottom:230.659931pt;}
.y1d5f_c00001{bottom:230.670315pt;}
.y1ce4_c00001{bottom:230.744715pt;}
.y1e3a_c00001{bottom:230.747067pt;}
.y1421_c00001{bottom:230.902411pt;}
.y1a8a_c00001{bottom:231.065771pt;}
.y1798_c00001{bottom:231.135827pt;}
.y520_c00001{bottom:231.227067pt;}
.y16c0_c00001{bottom:231.302827pt;}
.y431_c00001{bottom:231.387067pt;}
.y91b_c00001{bottom:231.536867pt;}
.y9cd_c00001{bottom:231.538331pt;}
.y1595_c00001{bottom:231.539299pt;}
.ybb2_c00001{bottom:231.539795pt;}
.y19f0_c00001{bottom:231.542723pt;}
.y12ef_c00001{bottom:231.547067pt;}
.y1378_c00001{bottom:231.547075pt;}
.y58a_c00001{bottom:231.707067pt;}
.y1b33_c00001{bottom:231.945083pt;}
.y345_c00001{bottom:232.107200pt;}
.y1bae_c00001{bottom:232.263411pt;}
.y20d9_c00001{bottom:232.268747pt;}
.y1733_c00001{bottom:232.499883pt;}
.y134a_c00001{bottom:232.502939pt;}
.y1bd2_c00001{bottom:232.503307pt;}
.y80c_c00001{bottom:232.587067pt;}
.y2316_c00001{bottom:232.670307pt;}
.y1f3e_c00001{bottom:232.747200pt;}
.y1eb4_c00001{bottom:232.903355pt;}
.y24fb_c00001{bottom:232.907067pt;}
.y2174_c00001{bottom:232.988851pt;}
.ybdb_c00001{bottom:233.214611pt;}
.y11bf_c00001{bottom:233.223995pt;}
.y1dc_c00001{bottom:233.307067pt;}
.y3bc_c00001{bottom:233.387067pt;}
.y1c8e_c00001{bottom:233.459883pt;}
.y2365_c00001{bottom:233.467075pt;}
.y7f9_c00001{bottom:233.627067pt;}
.y1ac7_c00001{bottom:233.627467pt;}
.y55a_c00001{bottom:233.787067pt;}
.ye9b_c00001{bottom:234.027744pt;}
.ye8b_c00001{bottom:234.028112pt;}
.yec4_c00001{bottom:234.029251pt;}
.ye27_c00001{bottom:234.030355pt;}
.y121a_c00001{bottom:234.100411pt;}
.yb58_c00001{bottom:234.265160pt;}
.y224_c00001{bottom:234.347067pt;}
.y1150_c00001{bottom:234.421051pt;}
.y1af1_c00001{bottom:234.587467pt;}
.y1a73_c00001{bottom:234.827947pt;}
.y12d3_c00001{bottom:235.060411pt;}
.y177c_c00001{bottom:235.060995pt;}
.y1f5b_c00001{bottom:235.067107pt;}
.y61b_c00001{bottom:235.067291pt;}
.y19cc_c00001{bottom:235.144579pt;}
.y24df_c00001{bottom:235.147067pt;}
.y333_c00001{bottom:235.307067pt;}
.y202f_c00001{bottom:235.308755pt;}
.ydeb_c00001{bottom:235.549995pt;}
.y1588_c00001{bottom:235.618107pt;}
.y58c_c00001{bottom:235.627067pt;}
.y197_c00001{bottom:235.707067pt;}
.y44_c00001{bottom:235.707235pt;}
.ydc_c00001{bottom:235.707243pt;}
.y283_c00001{bottom:235.707251pt;}
.y26c_c00001{bottom:235.707435pt;}
.y12f_c00001{bottom:235.707736pt;}
.y180d_c00001{bottom:235.784523pt;}
.y7e4_c00001{bottom:235.867067pt;}
.y10ff_c00001{bottom:235.941419pt;}
.yf2_c00001{bottom:235.947067pt;}
.y1fa0_c00001{bottom:236.028347pt;}
.y22fa_c00001{bottom:236.028859pt;}
.yc36_c00001{bottom:236.098691pt;}
.y66_c00001{bottom:236.267067pt;}
.y1b9f_c00001{bottom:236.424467pt;}
.y1b9_c00001{bottom:236.427067pt;}
.yf1b_c00001{bottom:236.508275pt;}
.y15b4_c00001{bottom:236.661523pt;}
.y206a_c00001{bottom:236.667568pt;}
.yaa3_c00001{bottom:236.903891pt;}
.y147c_c00001{bottom:236.982163pt;}
.y795_c00001{bottom:236.987067pt;}
.y1505_c00001{bottom:237.218051pt;}
.y13de_c00001{bottom:237.302219pt;}
.y1bee_c00001{bottom:237.306227pt;}
.y169_c00001{bottom:237.307067pt;}
.y1c49_c00001{bottom:237.384635pt;}
.y14a9_c00001{bottom:237.622107pt;}
.yfa5_c00001{bottom:237.626115pt;}
.y4b6_c00001{bottom:237.627075pt;}
.y1126_c00001{bottom:237.778419pt;}
.yb63_c00001{bottom:237.780827pt;}
.ybbf_c00001{bottom:237.782291pt;}
.y1390_c00001{bottom:237.938739pt;}
.y156d_c00001{bottom:237.942163pt;}
.y13b9_c00001{bottom:237.946755pt;}
.y238_c00001{bottom:238.027200pt;}
.y2225_c00001{bottom:238.030339pt;}
.y3a0_c00001{bottom:238.187067pt;}
.y3db_c00001{bottom:238.187200pt;}
.yb0b_c00001{bottom:238.261499pt;}
.y727_c00001{bottom:238.267067pt;}
.yd38_c00001{bottom:238.291771pt;}
.yd65_c00001{bottom:238.316347pt;}
.yf7_c00001{bottom:238.347067pt;}
.y188_c00001{bottom:238.507067pt;}
.y181b_c00001{bottom:238.582107pt;}
.yabc_c00001{bottom:238.660691pt;}
.yc57_c00001{bottom:238.662155pt;}
.y1a17_c00001{bottom:238.666859pt;}
.y242f_c00001{bottom:238.670283pt;}
.y188e_c00001{bottom:238.744683pt;}
.y2ab_c00001{bottom:238.747067pt;}
.y1de1_c00001{bottom:238.899323pt;}
.y211b_c00001{bottom:238.987200pt;}
.yca3_c00001{bottom:239.053315pt;}
.y713_c00001{bottom:239.067200pt;}
.y1b0f_c00001{bottom:239.306803pt;}
.y67f_c00001{bottom:239.387067pt;}
.y2349_c00001{bottom:239.390387pt;}
.y1634_c00001{bottom:239.469211pt;}
.y94e_c00001{bottom:239.537627pt;}
.y1c19_c00001{bottom:239.541579pt;}
.y1cf2_c00001{bottom:239.542691pt;}
.y1364_c00001{bottom:239.543275pt;}
.yfd6_c00001{bottom:239.546699pt;}
.yb90_c00001{bottom:239.546987pt;}
.y13fd_c00001{bottom:239.710275pt;}
.y22cb_c00001{bottom:239.789003pt;}
.y1461_c00001{bottom:239.859907pt;}
.y1ea5_c00001{bottom:239.945051pt;}
.y165f_c00001{bottom:240.024011pt;}
.y2263_c00001{bottom:240.030331pt;}
.y8af_c00001{bottom:240.187067pt;}
.yef1_c00001{bottom:240.187603pt;}
.y18ff_c00001{bottom:240.263379pt;}
.y2241_c00001{bottom:240.268715pt;}
.y152_c00001{bottom:240.347067pt;}
.yc3e_c00001{bottom:240.416027pt;}
.y9bc_c00001{bottom:240.417491pt;}
.y171a_c00001{bottom:240.499851pt;}
.y1c9c_c00001{bottom:240.503275pt;}
.y2516_c00001{bottom:240.507067pt;}
.y4db_c00001{bottom:240.667067pt;}
.y9f7_c00001{bottom:240.900507pt;}
.y2165_c00001{bottom:240.988819pt;}
.y1a9c_c00001{bottom:241.223379pt;}
.y17e0_c00001{bottom:241.223963pt;}
.y204b_c00001{bottom:241.229224pt;}
.y1e0e_c00001{bottom:241.305795pt;}
.y8a2_c00001{bottom:241.307067pt;}
.y49a_c00001{bottom:241.387067pt;}
.y12ad_c00001{bottom:241.459851pt;}
.y1bbf_c00001{bottom:241.464443pt;}
.y2402_c00001{bottom:241.468403pt;}
.y173c_c00001{bottom:241.696907pt;}
.y1447_c00001{bottom:241.700915pt;}
.y1fa_c00001{bottom:241.707067pt;}
.ye5b_c00001{bottom:241.709435pt;}
.y24d6_c00001{bottom:241.787067pt;}
.y1611_c00001{bottom:241.863907pt;}
.y1686_c00001{bottom:241.947067pt;}
.yc06_c00001{bottom:242.093771pt;}
.y128d_c00001{bottom:242.183963pt;}
.y15ed_c00001{bottom:242.184547pt;}
.y1e1c_c00001{bottom:242.421019pt;}
.yf46_c00001{bottom:242.503579pt;}
.y2088_c00001{bottom:242.587200pt;}
.y8f2_c00001{bottom:242.898440pt;}
.y16ff_c00001{bottom:242.902075pt;}
.y593_c00001{bottom:242.987067pt;}
.y1efa_c00001{bottom:243.060963pt;}
.y1034_c00001{bottom:243.064387pt;}
.y1551_c00001{bottom:243.067075pt;}
.yf74_c00001{bottom:243.221283pt;}
.y28a_c00001{bottom:243.307067pt;}
.y1ff5_c00001{bottom:243.307984pt;}
.y17c2_c00001{bottom:243.386779pt;}
.y324_c00001{bottom:243.387200pt;}
.y20b9_c00001{bottom:243.468315pt;}
.y1e57_c00001{bottom:243.543595pt;}
.y1fbe_c00001{bottom:243.627067pt;}
.y66c_c00001{bottom:243.707067pt;}
.y1849_c00001{bottom:243.784491pt;}
.y1063_c00001{bottom:243.947067pt;}
.y119c_c00001{bottom:244.020963pt;}
.y1770_c00001{bottom:244.021547pt;}
.y1d37_c00001{bottom:244.029707pt;}
.y1745_c00001{bottom:244.258019pt;}
.ycd2_c00001{bottom:244.369595pt;}
.yd03_c00001{bottom:244.397243pt;}
.y756_c00001{bottom:244.427067pt;}
.yb22_c00001{bottom:244.503515pt;}
.y31b_c00001{bottom:244.507067pt;}
.y227a_c00001{bottom:244.508571pt;}
.y16d6_c00001{bottom:244.664163pt;}
.y62d_c00001{bottom:244.667067pt;}
.y2399_c00001{bottom:244.668803pt;}
.y2154_c00001{bottom:244.827067pt;}
.y10bb_c00001{bottom:244.901971pt;}
.y1da7_c00001{bottom:244.907651pt;}
.y148d_c00001{bottom:244.982131pt;}
.y7a7_c00001{bottom:245.067067pt;}
.y1c74_c00001{bottom:245.144123pt;}
.y2137_c00001{bottom:245.228555pt;}
.y5d6_c00001{bottom:245.228907pt;}
.y2421_c00001{bottom:245.390363pt;}
.y386_c00001{bottom:245.466707pt;}
.y1dba_c00001{bottom:245.622075pt;}
.y199e_c00001{bottom:245.705659pt;}
.ya1b_c00001{bottom:245.781587pt;}
.y24aa_c00001{bottom:245.787067pt;}
.y21ec_c00001{bottom:245.868619pt;}
.y1b87_c00001{bottom:245.942131pt;}
.y18d2_c00001{bottom:245.942715pt;}
.y1c5c_c00001{bottom:245.946723pt;}
.y2535_c00001{bottom:245.947067pt;}
.y1f7d_c00001{bottom:246.027067pt;}
.y1d5e_c00001{bottom:246.030307pt;}
.y1ce3_c00001{bottom:246.104707pt;}
.y1975_c00001{bottom:246.106043pt;}
.y601_c00001{bottom:246.107200pt;}
.y1420_c00001{bottom:246.262403pt;}
.y1a89_c00001{bottom:246.345603pt;}
.yce_c00001{bottom:246.347067pt;}
.y1dc1_c00001{bottom:246.582659pt;}
.y995_c00001{bottom:246.659987pt;}
.ya66_c00001{bottom:246.661451pt;}
.yc6f_c00001{bottom:246.662915pt;}
.y1a3b_c00001{bottom:246.670251pt;}
.y1005_c00001{bottom:246.822555pt;}
.y12ee_c00001{bottom:246.899291pt;}
.y19ef_c00001{bottom:246.902715pt;}
.y1943_c00001{bottom:246.903299pt;}
.y1377_c00001{bottom:246.907067pt;}
.y2a3_c00001{bottom:247.307067pt;}
.y244c_c00001{bottom:247.383691pt;}
.y1094_c00001{bottom:247.463083pt;}
.ya70_c00001{bottom:247.538387pt;}
.yc8a_c00001{bottom:247.539851pt;}
.y1242_c00001{bottom:247.542659pt;}
.y1bad_c00001{bottom:247.543243pt;}
.y1d83_c00001{bottom:247.627200pt;}
.y10d8_c00001{bottom:247.699555pt;}
.y77f_c00001{bottom:247.787067pt;}
.y152b_c00001{bottom:247.859875pt;}
.y5ae_c00001{bottom:247.867067pt;}
.y22ae_c00001{bottom:248.030299pt;}
.y4b0_c00001{bottom:248.107067pt;}
.y364_c00001{bottom:248.107200pt;}
.y45c_c00001{bottom:248.187067pt;}
.y1eb3_c00001{bottom:248.263347pt;}
.y2332_c00001{bottom:248.268651pt;}
.y2173_c00001{bottom:248.268683pt;}
.y977_c00001{bottom:248.416787pt;}
.y96a_c00001{bottom:248.418251pt;}
.y11be_c00001{bottom:248.503827pt;}
.y1d03_c00001{bottom:248.739715pt;}
.y60c_c00001{bottom:248.747067pt;}
.y14f2_c00001{bottom:248.823883pt;}
.y2364_c00001{bottom:248.827067pt;}
.y23e8_c00001{bottom:248.828427pt;}
.y2475_c00001{bottom:248.828475pt;}
.y1ac6_c00001{bottom:248.907299pt;}
.y20f6_c00001{bottom:248.987595pt;}
.y1e39_c00001{bottom:249.147067pt;}
.y475_c00001{bottom:249.147200pt;}
.y697_c00001{bottom:249.307067pt;}
.ye9a_c00001{bottom:249.387736pt;}
.ye8a_c00001{bottom:249.388104pt;}
.yec3_c00001{bottom:249.389243pt;}
.ye26_c00001{bottom:249.390347pt;}
.y1263_c00001{bottom:249.460403pt;}
.y821_c00001{bottom:249.627067pt;}
.y1f1e_c00001{bottom:249.627403pt;}
.y14c8_c00001{bottom:249.700883pt;}
.ybda_c00001{bottom:250.094531pt;}
.y741_c00001{bottom:250.107200pt;}
.y1a72_c00001{bottom:250.187939pt;}
.y21aa_c00001{bottom:250.188475pt;}
.y6f9_c00001{bottom:250.347067pt;}
.y1e82_c00001{bottom:250.420403pt;}
.y177b_c00001{bottom:250.420987pt;}
.y131c_c00001{bottom:250.421739pt;}
.y19cb_c00001{bottom:250.424411pt;}
.y1954_c00001{bottom:250.424995pt;}
.y1b_c00001{bottom:250.427067pt;}
.y1175_c00001{bottom:250.657459pt;}
.y6c4_c00001{bottom:250.667200pt;}
.y768_c00001{bottom:250.747067pt;}
.y637_c00001{bottom:250.747200pt;}
.y24e9_c00001{bottom:250.907067pt;}
.ydea_c00001{bottom:250.909987pt;}
.y11c_c00001{bottom:250.987067pt;}
.ydb_c00001{bottom:250.987075pt;}
.y278_c00001{bottom:250.987083pt;}
.y26b_c00001{bottom:250.987267pt;}
.y738_c00001{bottom:250.987443pt;}
.y12e_c00001{bottom:250.987568pt;}
.y180c_c00001{bottom:251.144515pt;}
.ydb2_c00001{bottom:251.148003pt;}
.y10fe_c00001{bottom:251.221251pt;}
.y22e6_c00001{bottom:251.228619pt;}
.y499_c00001{bottom:251.307067pt;}
.y1f9f_c00001{bottom:251.308179pt;}
.y22f9_c00001{bottom:251.308691pt;}
.y9c_c00001{bottom:251.467067pt;}
.y11d9_c00001{bottom:251.618043pt;}
.y208_c00001{bottom:251.627067pt;}
.y1b9e_c00001{bottom:251.784459pt;}
.y237b_c00001{bottom:251.867667pt;}
.y2069_c00001{bottom:252.027560pt;}
.y51f_c00001{bottom:252.187067pt;}
.y18c5_c00001{bottom:252.342155pt;}
.y430_c00001{bottom:252.347067pt;}
.y13dd_c00001{bottom:252.582051pt;}
.y64e_c00001{bottom:252.587067pt;}
.y1bed_c00001{bottom:252.666219pt;}
.y589_c00001{bottom:252.667067pt;}
.y1c48_c00001{bottom:252.744627pt;}
.y16a9_c00001{bottom:252.826899pt;}
.y14a8_c00001{bottom:252.982099pt;}
.yfa4_c00001{bottom:252.986107pt;}
.y344_c00001{bottom:253.067200pt;}
.y11f8_c00001{bottom:253.218571pt;}
.y156c_c00001{bottom:253.302155pt;}
.y13b8_c00001{bottom:253.306747pt;}
.y1fcf_c00001{bottom:253.307067pt;}
.y1dfd_c00001{bottom:253.388995pt;}
.y2224_c00001{bottom:253.390331pt;}
.y200d_c00001{bottom:253.547067pt;}
.y80b_c00001{bottom:253.627067pt;}
.y2111_c00001{bottom:253.627200pt;}
.y181a_c00001{bottom:253.942099pt;}
.y1a16_c00001{bottom:253.946691pt;}
.y24fa_c00001{bottom:253.947067pt;}
.y23d3_c00001{bottom:254.030275pt;}
.y188d_c00001{bottom:254.104675pt;}
.y1de0_c00001{bottom:254.179155pt;}
.y4ef_c00001{bottom:254.267067pt;}
.y61a_c00001{bottom:254.267651pt;}
.y1db_c00001{bottom:254.347067pt;}
.y1797_c00001{bottom:254.415627pt;}
.y3bb_c00001{bottom:254.427067pt;}
.y1ede_c00001{bottom:254.582627pt;}
.yb99_c00001{bottom:254.660747pt;}
.ya87_c00001{bottom:254.662211pt;}
.ya3d_c00001{bottom:254.666603pt;}
.y1b0e_c00001{bottom:254.666795pt;}
.y7f8_c00001{bottom:254.667067pt;}
.y2348_c00001{bottom:254.670219pt;}
.y1306_c00001{bottom:254.902683pt;}
.y1912_c00001{bottom:254.903267pt;}
.yfd5_c00001{bottom:254.906691pt;}
.yb0a_c00001{bottom:255.060899pt;}
.y22ca_c00001{bottom:255.068835pt;}
.y1cca_c00001{bottom:255.070267pt;}
.y1460_c00001{bottom:255.139739pt;}
.y1b32_c00001{bottom:255.305043pt;}
.y419_c00001{bottom:255.307067pt;}
.y165e_c00001{bottom:255.384003pt;}
.y2262_c00001{bottom:255.390323pt;}
.yef0_c00001{bottom:255.467435pt;}
.yc63_c00001{bottom:255.539147pt;}
.yabb_c00001{bottom:255.540611pt;}
.y16bf_c00001{bottom:255.543211pt;}
.y20d8_c00001{bottom:255.628707pt;}
.y1e98_c00001{bottom:255.779683pt;}
.y882_c00001{bottom:255.787067pt;}
.y1c20_c00001{bottom:255.859843pt;}
.y1bd1_c00001{bottom:255.863267pt;}
.yd37_c00001{bottom:255.891259pt;}
.yd64_c00001{bottom:255.915835pt;}
.y2315_c00001{bottom:256.030267pt;}
.y2164_c00001{bottom:256.268651pt;}
.y332_c00001{bottom:256.347067pt;}
.y91a_c00001{bottom:256.417547pt;}
.y9cc_c00001{bottom:256.419011pt;}
.ybb1_c00001{bottom:256.420475pt;}
.y1a9b_c00001{bottom:256.503211pt;}
.y17df_c00001{bottom:256.503795pt;}
.y1e0d_c00001{bottom:256.665787pt;}
.y12ac_c00001{bottom:256.739683pt;}
.y196_c00001{bottom:256.747067pt;}
.y1349_c00001{bottom:256.823483pt;}
.y43_c00001{bottom:256.987067pt;}
.ye5a_c00001{bottom:256.989267pt;}
.y1765_c00001{bottom:257.056899pt;}
.y1610_c00001{bottom:257.223899pt;}
.y21ce_c00001{bottom:257.310155pt;}
.y15ec_c00001{bottom:257.464379pt;}
.y1c8d_c00001{bottom:257.700267pt;}
.y2192_c00001{bottom:257.787067pt;}
.yf45_c00001{bottom:257.863571pt;}
.yf1a_c00001{bottom:257.948003pt;}
.y794_c00001{bottom:258.027067pt;}
.y7b9_c00001{bottom:258.267067pt;}
.y1033_c00001{bottom:258.344219pt;}
.y168_c00001{bottom:258.347067pt;}
.y1219_c00001{bottom:258.420955pt;}
.y1550_c00001{bottom:258.427067pt;}
.y114f_c00001{bottom:258.661435pt;}
.y202e_c00001{bottom:258.668715pt;}
.y17c1_c00001{bottom:258.746771pt;}
.y1e56_c00001{bottom:258.823427pt;}
.y1af0_c00001{bottom:258.827851pt;}
.y20b8_c00001{bottom:258.828307pt;}
.y4b5_c00001{bottom:258.987067pt;}
.yb57_c00001{bottom:259.145840pt;}
.y1f3d_c00001{bottom:259.147200pt;}
.y1062_c00001{bottom:259.221219pt;}
.yf6_c00001{bottom:259.307067pt;}
.y1d36_c00001{bottom:259.309539pt;}
.y119b_c00001{bottom:259.380955pt;}
.y187_c00001{bottom:259.467067pt;}
.y1744_c00001{bottom:259.618011pt;}
.y2279_c00001{bottom:259.868563pt;}
.y1587_c00001{bottom:259.938651pt;}
.y59f_c00001{bottom:260.027067pt;}
.y712_c00001{bottom:260.027200pt;}
.y2398_c00001{bottom:260.028795pt;}
.y1da6_c00001{bottom:260.187483pt;}
.y147b_c00001{bottom:260.342123pt;}
.y67e_c00001{bottom:260.347067pt;}
.y2420_c00001{bottom:260.670195pt;}
.yd88_c00001{bottom:260.827067pt;}
.y2fa_c00001{bottom:260.907067pt;}
.yc35_c00001{bottom:260.979371pt;}
.y15b3_c00001{bottom:260.982067pt;}
.y199d_c00001{bottom:260.985491pt;}
.y21eb_c00001{bottom:261.228611pt;}
.y1b86_c00001{bottom:261.302123pt;}
.y151_c00001{bottom:261.307067pt;}
.yb21_c00001{bottom:261.383435pt;}
.y1ce2_c00001{bottom:261.384539pt;}
.y65d_c00001{bottom:261.387067pt;}
.y1d5d_c00001{bottom:261.390299pt;}
.y1504_c00001{bottom:261.538595pt;}
.y141f_c00001{bottom:261.542235pt;}
.y2515_c00001{bottom:261.547067pt;}
.y4da_c00001{bottom:261.627067pt;}
.y1a88_c00001{bottom:261.705595pt;}
.yaa2_c00001{bottom:261.784571pt;}
.y1dc0_c00001{bottom:261.942651pt;}
.ycd1_c00001{bottom:262.048955pt;}
.yd02_c00001{bottom:262.076603pt;}
.y1125_c00001{bottom:262.098963pt;}
.y12ed_c00001{bottom:262.179123pt;}
.y1942_c00001{bottom:262.263291pt;}
.ya1a_c00001{bottom:262.661507pt;}
.yc5e_c00001{bottom:262.662971pt;}
.y559_c00001{bottom:262.747067pt;}
.y1633_c00001{bottom:262.749011pt;}
.y1093_c00001{bottom:262.823075pt;}
.y1241_c00001{bottom:262.902651pt;}
.y1bac_c00001{bottom:262.903235pt;}
.y10d7_c00001{bottom:263.059547pt;}
.y13fc_c00001{bottom:263.070235pt;}
.y152a_c00001{bottom:263.139707pt;}
.yae7_c00001{bottom:263.541371pt;}
.yc56_c00001{bottom:263.542835pt;}
.y1eb2_c00001{bottom:263.543179pt;}
.y833_c00001{bottom:263.611771pt;}
.y2331_c00001{bottom:263.628643pt;}
.y1c18_c00001{bottom:263.862123pt;}
.y1cf1_c00001{bottom:263.863235pt;}
.y11bd_c00001{bottom:263.863819pt;}
.y1d02_c00001{bottom:264.099707pt;}
.y23e7_c00001{bottom:264.108259pt;}
.y2474_c00001{bottom:264.188467pt;}
.y1b8_c00001{bottom:264.267067pt;}
.y1ac5_c00001{bottom:264.267291pt;}
.y20f5_c00001{bottom:264.267427pt;}
.y289_c00001{bottom:264.347067pt;}
.y9c4_c00001{bottom:264.418307pt;}
.y323_c00001{bottom:264.427200pt;}
.yb8f_c00001{bottom:264.427667pt;}
.y18fe_c00001{bottom:264.503763pt;}
.y5d5_c00001{bottom:264.508323pt;}
.y204a_c00001{bottom:264.509024pt;}
.y385_c00001{bottom:264.667067pt;}
.ye99_c00001{bottom:264.667568pt;}
.ye89_c00001{bottom:264.667936pt;}
.yec2_c00001{bottom:264.669075pt;}
.ye25_c00001{bottom:264.670179pt;}
.y1719_c00001{bottom:264.740235pt;}
.y7e3_c00001{bottom:264.827067pt;}
.y2401_c00001{bottom:264.828363pt;}
.y14c7_c00001{bottom:265.060875pt;}
.y5b8_c00001{bottom:265.067067pt;}
.yc3d_c00001{bottom:265.216187pt;}
.y969_c00001{bottom:265.217651pt;}
.y855_c00001{bottom:265.307067pt;}
.y755_c00001{bottom:265.387067pt;}
.y211a_c00001{bottom:265.387200pt;}
.y128c_c00001{bottom:265.463763pt;}
.y21a9_c00001{bottom:265.468307pt;}
.y1a71_c00001{bottom:265.547931pt;}
.y170f_c00001{bottom:265.700235pt;}
.y9f6_c00001{bottom:265.700667pt;}
.y177a_c00001{bottom:265.700819pt;}
.y19ca_c00001{bottom:265.784403pt;}
.y1bbe_c00001{bottom:265.784987pt;}
.y24be_c00001{bottom:265.787067pt;}
.y1174_c00001{bottom:266.017451pt;}
.y1446_c00001{bottom:266.021459pt;}
.y1d82_c00001{bottom:266.027200pt;}
.y7a6_c00001{bottom:266.107067pt;}
.y39f_c00001{bottom:266.187200pt;}
.yde9_c00001{bottom:266.189819pt;}
.y277_c00001{bottom:266.347075pt;}
.y26a_c00001{bottom:266.347259pt;}
.y737_c00001{bottom:266.347435pt;}
.y12d_c00001{bottom:266.347560pt;}
.y180b_c00001{bottom:266.424347pt;}
.y10fd_c00001{bottom:266.581243pt;}
.y1e1b_c00001{bottom:266.661403pt;}
.y1ff4_c00001{bottom:266.667944pt;}
.y22f8_c00001{bottom:266.668683pt;}
.y24a9_c00001{bottom:266.827067pt;}
.y42_c00001{bottom:266.907067pt;}
.y207_c00001{bottom:266.907200pt;}
.yc05_c00001{bottom:266.974451pt;}
.y237_c00001{bottom:266.987200pt;}
.y16fe_c00001{bottom:267.142459pt;}
.y1b9d_c00001{bottom:267.144451pt;}
.y600_c00001{bottom:267.147200pt;}
.y543_c00001{bottom:267.227067pt;}
.ycd_c00001{bottom:267.307067pt;}
.y2068_c00001{bottom:267.307392pt;}
.y176f_c00001{bottom:267.381507pt;}
.yf73_c00001{bottom:267.541827pt;}
.y1e38_c00001{bottom:267.547067pt;}
.y18c4_c00001{bottom:267.621987pt;}
.y8f1_c00001{bottom:267.779120pt;}
.y13dc_c00001{bottom:267.942043pt;}
.y16d5_c00001{bottom:267.943963pt;}
.y1c47_c00001{bottom:268.104619pt;}
.y1848_c00001{bottom:268.105035pt;}
.y1d12_c00001{bottom:268.342091pt;}
.yfa3_c00001{bottom:268.346099pt;}
.y2a2_c00001{bottom:268.347067pt;}
.y138f_c00001{bottom:268.578563pt;}
.y156b_c00001{bottom:268.581987pt;}
.y13b7_c00001{bottom:268.666739pt;}
.y2136_c00001{bottom:268.668675pt;}
.y2223_c00001{bottom:268.670163pt;}
.y6e6_c00001{bottom:268.907200pt;}
.y2087_c00001{bottom:268.987200pt;}
.y4af_c00001{bottom:269.067067pt;}
.y45b_c00001{bottom:269.147067pt;}
.y363_c00001{bottom:269.147200pt;}
.y10ba_c00001{bottom:269.222515pt;}
.y1eca_c00001{bottom:269.302091pt;}
.y18d1_c00001{bottom:269.302675pt;}
.y1a15_c00001{bottom:269.306683pt;}
.y8ae_c00001{bottom:269.307067pt;}
.y1a55_c00001{bottom:269.384507pt;}
.y1ddf_c00001{bottom:269.539147pt;}
.y1b0d_c00001{bottom:269.946627pt;}
.y1fbd_c00001{bottom:270.027067pt;}
.y1a3a_c00001{bottom:270.030211pt;}
.y474_c00001{bottom:270.107200pt;}
.y1911_c00001{bottom:270.263259pt;}
.yfd4_c00001{bottom:270.266683pt;}
.y696_c00001{bottom:270.267067pt;}
.y8a1_c00001{bottom:270.347067pt;}
.y1974_c00001{bottom:270.426587pt;}
.y22c9_c00001{bottom:270.428827pt;}
.y1cc9_c00001{bottom:270.430259pt;}
.y145f_c00001{bottom:270.499731pt;}
.y1b31_c00001{bottom:270.584875pt;}
.y820_c00001{bottom:270.667067pt;}
.y2261_c00001{bottom:270.670155pt;}
.y24d5_c00001{bottom:270.827067pt;}
.yeef_c00001{bottom:270.827427pt;}
.y16be_c00001{bottom:270.903203pt;}
.y20d7_c00001{bottom:270.908539pt;}
.y740_c00001{bottom:271.067200pt;}
.y1594_c00001{bottom:271.139675pt;}
.y1004_c00001{bottom:271.143099pt;}
.y19ee_c00001{bottom:271.223259pt;}
.y2153_c00001{bottom:271.227067pt;}
.y6f8_c00001{bottom:271.307067pt;}
.y22ad_c00001{bottom:271.310099pt;}
.y23b5_c00001{bottom:271.390259pt;}
.y1f1_c00001{bottom:271.467067pt;}
.y994_c00001{bottom:271.540667pt;}
.ya65_c00001{bottom:271.542131pt;}
.ya3c_c00001{bottom:271.546523pt;}
.y2163_c00001{bottom:271.628643pt;}
.y244b_c00001{bottom:271.704235pt;}
.y767_c00001{bottom:271.707067pt;}
.y636_c00001{bottom:271.707200pt;}
.y1a9a_c00001{bottom:271.863203pt;}
.y17de_c00001{bottom:271.863787pt;}
.y24e8_c00001{bottom:271.947067pt;}
.y1e0c_c00001{bottom:272.025779pt;}
.y592_c00001{bottom:272.027067pt;}
.y12ab_c00001{bottom:272.099675pt;}
.y1348_c00001{bottom:272.183475pt;}
.y24dd_c00001{bottom:272.187067pt;}
.y1764_c00001{bottom:272.336731pt;}
.yda_c00001{bottom:272.347067pt;}
.ye59_c00001{bottom:272.349259pt;}
.ya6f_c00001{bottom:272.419067pt;}
.yc89_c00001{bottom:272.420531pt;}
.y1f7c_c00001{bottom:272.427067pt;}
.y160f_c00001{bottom:272.503731pt;}
.y9b_c00001{bottom:272.507067pt;}
.ydb1_c00001{bottom:272.587731pt;}
.y2363_c00001{bottom:272.747067pt;}
.y15eb_c00001{bottom:272.824371pt;}
.y1f1d_c00001{bottom:272.907203pt;}
.yf44_c00001{bottom:273.143403pt;}
.y14f1_c00001{bottom:273.144427pt;}
.y919_c00001{bottom:273.216947pt;}
.y9cb_c00001{bottom:273.218411pt;}
.ybb0_c00001{bottom:273.219875pt;}
.y51e_c00001{bottom:273.227067pt;}
.y1a_c00001{bottom:273.387067pt;}
.yd36_c00001{bottom:273.490747pt;}
.yd63_c00001{bottom:273.515323pt;}
.y619_c00001{bottom:273.547067pt;}
.y31a_c00001{bottom:273.547200pt;}
.y1218_c00001{bottom:273.700787pt;}
.y1032_c00001{bottom:273.704211pt;}
.y588_c00001{bottom:273.707067pt;}
.y131b_c00001{bottom:273.781699pt;}
.y1953_c00001{bottom:273.784955pt;}
.y62c_c00001{bottom:273.787067pt;}
.y114e_c00001{bottom:274.021427pt;}
.y17c0_c00001{bottom:274.026603pt;}
.y343_c00001{bottom:274.107200pt;}
.y20b7_c00001{bottom:274.108139pt;}
.y1e55_c00001{bottom:274.183419pt;}
.y1aef_c00001{bottom:274.187843pt;}
.y221_c00001{bottom:274.267067pt;}
.y22e5_c00001{bottom:274.508419pt;}
.y1061_c00001{bottom:274.581211pt;}
.y80a_c00001{bottom:274.587067pt;}
.y119a_c00001{bottom:274.660787pt;}
.y1f9e_c00001{bottom:274.668139pt;}
.y1d35_c00001{bottom:274.669531pt;}
.y1b60_c00001{bottom:274.744955pt;}
.y24f9_c00001{bottom:274.907067pt;}
.ybd9_c00001{bottom:274.975211pt;}
.y1783_c00001{bottom:274.978003pt;}
.y1586_c00001{bottom:275.218483pt;}
.y237a_c00001{bottom:275.227627pt;}
.y2278_c00001{bottom:275.228555pt;}
.y1da_c00001{bottom:275.307067pt;}
.y2397_c00001{bottom:275.308627pt;}
.y3ba_c00001{bottom:275.467067pt;}
.y725_c00001{bottom:275.547067pt;}
.y1da5_c00001{bottom:275.547475pt;}
.y147a_c00001{bottom:275.621955pt;}
.y11d8_c00001{bottom:275.858427pt;}
.y1c2d_c00001{bottom:275.942011pt;}
.yb56_c00001{bottom:276.025760pt;}
.y241f_c00001{bottom:276.030187pt;}
.y15b2_c00001{bottom:276.342059pt;}
.y199c_c00001{bottom:276.345483pt;}
.y418_c00001{bottom:276.347067pt;}
.y21ea_c00001{bottom:276.508443pt;}
.y1b85_c00001{bottom:276.581955pt;}
.y2295_c00001{bottom:276.670131pt;}
.y1ce1_c00001{bottom:276.744531pt;}
.y77e_c00001{bottom:276.747067pt;}
.y1dfc_c00001{bottom:276.748955pt;}
.y1503_c00001{bottom:276.818427pt;}
.y881_c00001{bottom:276.827067pt;}
.y141e_c00001{bottom:276.902227pt;}
.y1bec_c00001{bottom:276.906603pt;}
.y5ad_c00001{bottom:276.907067pt;}
.y1a87_c00001{bottom:276.985427pt;}
.y16a8_c00001{bottom:277.147443pt;}
.y14a7_c00001{bottom:277.302643pt;}
.y331_c00001{bottom:277.307067pt;}
.y23d2_c00001{bottom:277.310075pt;}
.y1124_c00001{bottom:277.378795pt;}
.y242e_c00001{bottom:277.390235pt;}
.y11f7_c00001{bottom:277.539115pt;}
.y1941_c00001{bottom:277.543123pt;}
.y195_c00001{bottom:277.707067pt;}
.yf1_c00001{bottom:277.947067pt;}
.y1092_c00001{bottom:278.183067pt;}
.y1240_c00001{bottom:278.262643pt;}
.y1bab_c00001{bottom:278.263227pt;}
.y10d6_c00001{bottom:278.339379pt;}
.y188c_c00001{bottom:278.345059pt;}
.y1529_c00001{bottom:278.499699pt;}
.yaa1_c00001{bottom:278.664491pt;}
.y1796_c00001{bottom:278.736171pt;}
.y1685_c00001{bottom:278.747067pt;}
.y1eb1_c00001{bottom:278.903171pt;}
.y2330_c00001{bottom:278.908475pt;}
.y2240_c00001{bottom:278.908507pt;}
.y793_c00001{bottom:278.987067pt;}
.y1305_c00001{bottom:279.223227pt;}
.y11bc_c00001{bottom:279.223811pt;}
.y167_c00001{bottom:279.307067pt;}
.y2314_c00001{bottom:279.310067pt;}
.yf19_c00001{bottom:279.387731pt;}
.y1d01_c00001{bottom:279.459699pt;}
.y23e6_c00001{bottom:279.468251pt;}
.ya19_c00001{bottom:279.541427pt;}
.ya86_c00001{bottom:279.542891pt;}
.y2473_c00001{bottom:279.548459pt;}
.y165d_c00001{bottom:279.624387pt;}
.y1ac4_c00001{bottom:279.627283pt;}
.y20f4_c00001{bottom:279.627419pt;}
.ycd0_c00001{bottom:279.648443pt;}
.yd01_c00001{bottom:279.676091pt;}
.y18fd_c00001{bottom:279.863755pt;}
.yb09_c00001{bottom:279.941579pt;}
.y200c_c00001{bottom:279.947067pt;}
.y2110_c00001{bottom:280.027200pt;}
.ye98_c00001{bottom:280.027560pt;}
.ye88_c00001{bottom:280.027928pt;}
.yec1_c00001{bottom:280.029067pt;}
.ye24_c00001{bottom:280.030171pt;}
.y1e97_c00001{bottom:280.100227pt;}
.y2400_c00001{bottom:280.108195pt;}
.yf5_c00001{bottom:280.347067pt;}
.yaba_c00001{bottom:280.421291pt;}
.yc55_c00001{bottom:280.422755pt;}
.y186_c00001{bottom:280.507067pt;}
.y21cd_c00001{bottom:280.670115pt;}
.y90_c00001{bottom:280.747067pt;}
.y128b_c00001{bottom:280.823755pt;}
.y1a70_c00001{bottom:280.827763pt;}
.y21a8_c00001{bottom:280.828299pt;}
.y1e5e_c00001{bottom:281.060811pt;}
.y711_c00001{bottom:281.067200pt;}
.y19c9_c00001{bottom:281.144395pt;}
.y940_c00001{bottom:281.217707pt;}
.yb8e_c00001{bottom:281.218227pt;}
.y1173_c00001{bottom:281.297283pt;}
.y1445_c00001{bottom:281.381451pt;}
.y42f_c00001{bottom:281.387067pt;}
.y64d_c00001{bottom:281.547067pt;}
.yde8_c00001{bottom:281.549811pt;}
.y1865_c00001{bottom:281.707067pt;}
.y3c2_c00001{bottom:281.707235pt;}
.y269_c00001{bottom:281.707251pt;}
.y736_c00001{bottom:281.707427pt;}
.y12c_c00001{bottom:281.707552pt;}
.y180a_c00001{bottom:281.784339pt;}
.yd87_c00001{bottom:281.867067pt;}
.y10fc_c00001{bottom:281.941235pt;}
.yca2_c00001{bottom:282.013579pt;}
.y1c8c_c00001{bottom:282.020811pt;}
.y1ff3_c00001{bottom:282.027936pt;}
.y202d_c00001{bottom:282.028675pt;}
.yd9_c00001{bottom:282.267067pt;}
.y59e_c00001{bottom:282.267200pt;}
.y150_c00001{bottom:282.347067pt;}
.y1b9c_c00001{bottom:282.424283pt;}
.y2514_c00001{bottom:282.507067pt;}
.y9f5_c00001{bottom:282.580587pt;}
.y154f_c00001{bottom:282.661339pt;}
.y4d9_c00001{bottom:282.667067pt;}
.y2067_c00001{bottom:282.667384pt;}
.y13db_c00001{bottom:283.302035pt;}
.y1c46_c00001{bottom:283.384451pt;}
.y1847_c00001{bottom:283.384867pt;}
.y148c_c00001{bottom:283.621923pt;}
.y7f7_c00001{bottom:283.627067pt;}
.y5d4_c00001{bottom:283.708683pt;}
.y558_c00001{bottom:283.787067pt;}
.y1752_c00001{bottom:283.858395pt;}
.y138e_c00001{bottom:283.938555pt;}
.y13b6_c00001{bottom:283.946571pt;}
.y2135_c00001{bottom:284.028667pt;}
.y2222_c00001{bottom:284.030155pt;}
.y2191_c00001{bottom:284.187067pt;}
.y1d81_c00001{bottom:284.427200pt;}
.y1ec9_c00001{bottom:284.581923pt;}
.y15a4_c00001{bottom:284.582507pt;}
.y8f0_c00001{bottom:284.659040pt;}
.y1c5b_c00001{bottom:284.666675pt;}
.y1d5c_c00001{bottom:284.670099pt;}
.y1a54_c00001{bottom:284.744499pt;}
.y1dde_c00001{bottom:284.818979pt;}
.y3b0_c00001{bottom:284.827067pt;}
.y2eb_c00001{bottom:284.987067pt;}
.y1db9_c00001{bottom:285.302611pt;}
.y1b0c_c00001{bottom:285.306619pt;}
.y288_c00001{bottom:285.307067pt;}
.y322_c00001{bottom:285.387200pt;}
.y2347_c00001{bottom:285.390203pt;}
.y1910_c00001{bottom:285.543091pt;}
.yfd3_c00001{bottom:285.546515pt;}
.y1f3c_c00001{bottom:285.547200pt;}
.y66b_c00001{bottom:285.707067pt;}
.y22c8_c00001{bottom:285.708659pt;}
.y1cc8_c00001{bottom:285.710091pt;}
.yc34_c00001{bottom:285.779531pt;}
.y1973_c00001{bottom:285.786579pt;}
.y7e2_c00001{bottom:285.867067pt;}
.y3f1_c00001{bottom:285.867200pt;}
.y1e37_c00001{bottom:285.947067pt;}
.y2260_c00001{bottom:286.030147pt;}
.y1632_c00001{bottom:286.108971pt;}
.yeee_c00001{bottom:286.187419pt;}
.y16bd_c00001{bottom:286.263195pt;}
.yb20_c00001{bottom:286.264115pt;}
.y854_c00001{bottom:286.267067pt;}
.y48e_c00001{bottom:286.347067pt;}
.y13fb_c00001{bottom:286.350035pt;}
.y1003_c00001{bottom:286.422931pt;}
.y447_c00001{bottom:286.427067pt;}
.y12ec_c00001{bottom:286.499667pt;}
.y1bd0_c00001{bottom:286.503091pt;}
.y23b4_c00001{bottom:286.670091pt;}
.y24bd_c00001{bottom:286.827067pt;}
.y2162_c00001{bottom:286.908475pt;}
.y7a5_c00001{bottom:287.067067pt;}
.y19af_c00001{bottom:287.223195pt;}
.y1e0b_c00001{bottom:287.305611pt;}
.y7b8_c00001{bottom:287.307067pt;}
.y12aa_c00001{bottom:287.459667pt;}
.y1732_c00001{bottom:287.460251pt;}
.y1347_c00001{bottom:287.463307pt;}
.yad8_c00001{bottom:287.542187pt;}
.y1763_c00001{bottom:287.696723pt;}
.y10d_c00001{bottom:287.707067pt;}
.ye58_c00001{bottom:287.709251pt;}
.y24a8_c00001{bottom:287.787067pt;}
.y160e_c00001{bottom:287.863723pt;}
.y2049_c00001{bottom:287.868984pt;}
.y2534_c00001{bottom:287.947067pt;}
.y236_c00001{bottom:288.027200pt;}
.y1c17_c00001{bottom:288.102507pt;}
.y5ff_c00001{bottom:288.107200pt;}
.y15ea_c00001{bottom:288.184363pt;}
.ycc_c00001{bottom:288.347067pt;}
.ya64_c00001{bottom:288.422051pt;}
.yc6e_c00001{bottom:288.423515pt;}
.y14f0_c00001{bottom:288.424259pt;}
.yf43_c00001{bottom:288.503395pt;}
.y65_c00001{bottom:288.508459pt;}
.y1217_c00001{bottom:289.060779pt;}
.y1031_c00001{bottom:289.064203pt;}
.y1952_c00001{bottom:289.144947pt;}
.ya6e_c00001{bottom:289.218467pt;}
.yc88_c00001{bottom:289.219931pt;}
.y2a1_c00001{bottom:289.307067pt;}
.y114d_c00001{bottom:289.381419pt;}
.y17bf_c00001{bottom:289.386595pt;}
.y1e54_c00001{bottom:289.463251pt;}
.y20b6_c00001{bottom:289.468131pt;}
.y1aee_c00001{bottom:289.547835pt;}
.y4b4_c00001{bottom:289.627067pt;}
.y591_c00001{bottom:289.867235pt;}
.y2f9_c00001{bottom:289.947067pt;}
.y1199_c00001{bottom:290.020779pt;}
.y1779_c00001{bottom:290.021363pt;}
.y1bbd_c00001{bottom:290.025371pt;}
.y1f9d_c00001{bottom:290.028131pt;}
.y976_c00001{bottom:290.096867pt;}
.y968_c00001{bottom:290.098331pt;}
.y362_c00001{bottom:290.107200pt;}
.y45a_c00001{bottom:290.187067pt;}
.y15bf_c00001{bottom:290.257835pt;}
.y2396_c00001{bottom:290.668619pt;}
.y1da4_c00001{bottom:290.907467pt;}
.y1479_c00001{bottom:290.981947pt;}
.y473_c00001{bottom:291.147200pt;}
.yd35_c00001{bottom:291.170107pt;}
.yd62_c00001{bottom:291.194683pt;}
.y16d4_c00001{bottom:291.303923pt;}
.yb8_c00001{bottom:291.307067pt;}
.y241e_c00001{bottom:291.310019pt;}
.y16fd_c00001{bottom:291.463003pt;}
.y15b1_c00001{bottom:291.621891pt;}
.y81f_c00001{bottom:291.627067pt;}
.y199b_c00001{bottom:291.705475pt;}
.y2119_c00001{bottom:291.787200pt;}
.yc04_c00001{bottom:291.855131pt;}
.yf72_c00001{bottom:291.862371pt;}
.y21e9_c00001{bottom:291.868435pt;}
.y1b84_c00001{bottom:291.941947pt;}
.y2294_c00001{bottom:292.030123pt;}
.y1ce0_c00001{bottom:292.104523pt;}
.y73f_c00001{bottom:292.107200pt;}
.y141d_c00001{bottom:292.262219pt;}
.y1beb_c00001{bottom:292.266595pt;}
.y1a86_c00001{bottom:292.345419pt;}
.y6f7_c00001{bottom:292.347067pt;}
.y1f0_c00001{bottom:292.427067pt;}
.y16a7_c00001{bottom:292.427275pt;}
.y384_c00001{bottom:292.507067pt;}
.y1d11_c00001{bottom:292.582475pt;}
.yfa2_c00001{bottom:292.586483pt;}
.y39e_c00001{bottom:292.667067pt;}
.y6c3_c00001{bottom:292.667200pt;}
.y242d_c00001{bottom:292.670067pt;}
.y766_c00001{bottom:292.747067pt;}
.y1728_c00001{bottom:292.818947pt;}
.y156a_c00001{bottom:292.902531pt;}
.y1940_c00001{bottom:292.903115pt;}
.y24e7_c00001{bottom:292.907067pt;}
.y1b7_c00001{bottom:293.227067pt;}
.y2ec_c00001{bottom:293.307067pt;}
.y1a39_c00001{bottom:293.310011pt;}
.y10b9_c00001{bottom:293.462899pt;}
.y9a_c00001{bottom:293.467200pt;}
.y123f_c00001{bottom:293.542475pt;}
.y1baa_c00001{bottom:293.543059pt;}
.y5b7_c00001{bottom:293.547515pt;}
.y1a14_c00001{bottom:293.627227pt;}
.y1c73_c00001{bottom:293.705051pt;}
.y145e_c00001{bottom:293.779531pt;}
.y1b30_c00001{bottom:293.944835pt;}
.ydb0_c00001{bottom:294.107611pt;}
.y51d_c00001{bottom:294.187067pt;}
.y1eb0_c00001{bottom:294.263163pt;}
.y232f_c00001{bottom:294.268467pt;}
.y20d6_c00001{bottom:294.268499pt;}
.y1c00_c00001{bottom:294.503059pt;}
.y319_c00001{bottom:294.507200pt;}
.y22ac_c00001{bottom:294.670059pt;}
.y1d00_c00001{bottom:294.739531pt;}
.y587_c00001{bottom:294.747067pt;}
.y62b_c00001{bottom:294.827067pt;}
.y23e5_c00001{bottom:294.828243pt;}
.y2472_c00001{bottom:294.828291pt;}
.y1ac3_c00001{bottom:294.907115pt;}
.y20f3_c00001{bottom:294.907251pt;}
.y220_c00001{bottom:295.227067pt;}
.y542_c00001{bottom:295.227235pt;}
.y2086_c00001{bottom:295.387200pt;}
.ye97_c00001{bottom:295.387552pt;}
.ye87_c00001{bottom:295.387920pt;}
.yec0_c00001{bottom:295.389059pt;}
.ye23_c00001{bottom:295.390163pt;}
.y1593_c00001{bottom:295.460219pt;}
.y19ed_c00001{bottom:295.463643pt;}
.y23ff_c00001{bottom:295.468187pt;}
.y206_c00001{bottom:295.867200pt;}
.y244a_c00001{bottom:295.944619pt;}
.y24f8_c00001{bottom:295.947067pt;}
.y21a7_c00001{bottom:296.108131pt;}
.y1a99_c00001{bottom:296.183747pt;}
.y17dd_c00001{bottom:296.184331pt;}
.y1a6f_c00001{bottom:296.187755pt;}
.y1f1c_c00001{bottom:296.267163pt;}
.y1d9_c00001{bottom:296.347067pt;}
.y1e5d_c00001{bottom:296.420803pt;}
.y993_c00001{bottom:296.421347pt;}
.ya85_c00001{bottom:296.422811pt;}
.y19c8_c00001{bottom:296.424227pt;}
.y3b9_c00001{bottom:296.427067pt;}
.ya3b_c00001{bottom:296.427203pt;}
.y724_c00001{bottom:296.507067pt;}
.y1172_c00001{bottom:296.657275pt;}
.y1444_c00001{bottom:296.661283pt;}
.yb08_c00001{bottom:296.821499pt;}
.yde7_c00001{bottom:296.909803pt;}
.y10c_c00001{bottom:296.987083pt;}
.y735_c00001{bottom:296.987259pt;}
.y12b_c00001{bottom:296.987384pt;}
.y131a_c00001{bottom:297.141659pt;}
.y1809_c00001{bottom:297.144331pt;}
.y1684_c00001{bottom:297.147067pt;}
.yc62_c00001{bottom:297.219227pt;}
.yab9_c00001{bottom:297.220691pt;}
.y10fb_c00001{bottom:297.221067pt;}
.yc54_c00001{bottom:297.222155pt;}
.y417_c00001{bottom:297.307067pt;}
.y1ff2_c00001{bottom:297.307768pt;}
.y22f7_c00001{bottom:297.308507pt;}
.yccf_c00001{bottom:297.327803pt;}
.yd00_c00001{bottom:297.355451pt;}
.y1c8b_c00001{bottom:297.380803pt;}
.y282_c00001{bottom:297.627067pt;}
.y4cc_c00001{bottom:297.627200pt;}
.y1b9b_c00001{bottom:297.784275pt;}
.y77d_c00001{bottom:297.787067pt;}
.y6e5_c00001{bottom:297.867200pt;}
.y22e4_c00001{bottom:297.868379pt;}
.y1262_c00001{bottom:298.021331pt;}
.y2066_c00001{bottom:298.027376pt;}
.y1d34_c00001{bottom:298.029491pt;}
.y918_c00001{bottom:298.097627pt;}
.y9ca_c00001{bottom:298.099091pt;}
.ybaf_c00001{bottom:298.100555pt;}
.y4ae_c00001{bottom:298.107067pt;}
.y2aa_c00001{bottom:298.347067pt;}
.y2379_c00001{bottom:298.507427pt;}
.y2277_c00001{bottom:298.508355pt;}
.y13da_c00001{bottom:298.581867pt;}
.y194_c00001{bottom:298.747067pt;}
.y1f7b_c00001{bottom:298.827067pt;}
.y1060_c00001{bottom:298.901755pt;}
.y12d2_c00001{bottom:298.981331pt;}
.y148b_c00001{bottom:298.981915pt;}
.y1b5f_c00001{bottom:298.985339pt;}
.yf0_c00001{bottom:298.987067pt;}
.y2362_c00001{bottom:299.147067pt;}
.y138d_c00001{bottom:299.218387pt;}
.y1c2c_c00001{bottom:299.301971pt;}
.y13b5_c00001{bottom:299.306563pt;}
.y2134_c00001{bottom:299.308499pt;}
.y2221_c00001{bottom:299.390147pt;}
.y1585_c00001{bottom:299.539027pt;}
.y24d4_c00001{bottom:299.707067pt;}
.ybd8_c00001{bottom:299.855891pt;}
.y1ec8_c00001{bottom:299.941915pt;}
.y15a3_c00001{bottom:299.942499pt;}
.y1d5b_c00001{bottom:300.030091pt;}
.y1a53_c00001{bottom:300.104491pt;}
.y1dfb_c00001{bottom:300.108915pt;}
.y11d7_c00001{bottom:300.178971pt;}
.y166_c00001{bottom:300.347067pt;}
.y1924_c00001{bottom:300.582443pt;}
.y1b0b_c00001{bottom:300.666611pt;}
.y2346_c00001{bottom:300.670035pt;}
.y635_c00001{bottom:300.747200pt;}
.yb55_c00001{bottom:300.825920pt;}
.y190f_c00001{bottom:300.903083pt;}
.yfd2_c00001{bottom:300.906507pt;}
.yf18_c00001{bottom:300.907611pt;}
.y22c7_c00001{bottom:301.068651pt;}
.y1cc7_c00001{bottom:301.070083pt;}
.y1502_c00001{bottom:301.138971pt;}
.y1ca_c00001{bottom:301.307067pt;}
.y618_c00001{bottom:301.387067pt;}
.y225f_c00001{bottom:301.390139pt;}
.yeed_c00001{bottom:301.467251pt;}
.y14a6_c00001{bottom:301.543027pt;}
.y185_c00001{bottom:301.547067pt;}
.y10d5_c00001{bottom:301.699339pt;}
.y11f6_c00001{bottom:301.779499pt;}
.y8f_c00001{bottom:301.787067pt;}
.y23b3_c00001{bottom:302.030083pt;}
.y710_c00001{bottom:302.107200pt;}
.y2161_c00001{bottom:302.268467pt;}
.y67d_c00001{bottom:302.347067pt;}
.y1091_c00001{bottom:302.423451pt;}
.y42e_c00001{bottom:302.427067pt;}
.y1304_c00001{bottom:302.503027pt;}
.y11bb_c00001{bottom:302.503611pt;}
.y64c_c00001{bottom:302.587067pt;}
.yc33_c00001{bottom:302.659451pt;}
.y188b_c00001{bottom:302.665603pt;}
.y2313_c00001{bottom:302.670027pt;}
.y1ed7_c00001{bottom:302.739499pt;}
.y1528_c00001{bottom:302.740083pt;}
.y1d80_c00001{bottom:302.827200pt;}
.y276_c00001{bottom:302.987067pt;}
.y5d3_c00001{bottom:302.988099pt;}
.ye57_c00001{bottom:302.989083pt;}
.y1762_c00001{bottom:303.056715pt;}
.yb1f_c00001{bottom:303.063515pt;}
.y342_c00001{bottom:303.067200pt;}
.y160d_c00001{bottom:303.223715pt;}
.y14f_c00001{bottom:303.307067pt;}
.y65c_c00001{bottom:303.387067pt;}
.y15e9_c00001{bottom:303.464195pt;}
.yaa0_c00001{bottom:303.545171pt;}
.y2513_c00001{bottom:303.547067pt;}
.y809_c00001{bottom:303.627067pt;}
.y4d8_c00001{bottom:303.627200pt;}
.y14ef_c00001{bottom:303.784251pt;}
.y165c_c00001{bottom:303.944931pt;}
.yd86_c00001{bottom:304.027067pt;}
.y21cc_c00001{bottom:304.030075pt;}
.y18fc_c00001{bottom:304.184299pt;}
.y4ee_c00001{bottom:304.267067pt;}
.y1030_c00001{bottom:304.344035pt;}
.y1e36_c00001{bottom:304.347067pt;}
.y1216_c00001{bottom:304.420771pt;}
.ya18_c00001{bottom:304.422107pt;}
.y1951_c00001{bottom:304.424779pt;}
.y114c_c00001{bottom:304.661251pt;}
.y7f6_c00001{bottom:304.667067pt;}
.y17be_c00001{bottom:304.746587pt;}
.y557_c00001{bottom:304.747067pt;}
.y1e53_c00001{bottom:304.823243pt;}
.y1aed_c00001{bottom:304.827667pt;}
.y4b3_c00001{bottom:304.987067pt;}
.y128a_c00001{bottom:305.064139pt;}
.y209e_c00001{bottom:305.147067pt;}
.yae6_c00001{bottom:305.221451pt;}
.y1f9c_c00001{bottom:305.307963pt;}
.y202c_c00001{bottom:305.308475pt;}
.y1198_c00001{bottom:305.380771pt;}
.y71e_c00001{bottom:305.467067pt;}
.y173b_c00001{bottom:305.617827pt;}
.y3af_c00001{bottom:305.867067pt;}
.yd8_c00001{bottom:306.027291pt;}
.y2395_c00001{bottom:306.028611pt;}
.y93f_c00001{bottom:306.098387pt;}
.yb8d_c00001{bottom:306.098907pt;}
.y1da3_c00001{bottom:306.187299pt;}
.y1478_c00001{bottom:306.341939pt;}
.y41_c00001{bottom:306.347067pt;}
.y321_c00001{bottom:306.427200pt;}
.y832_c00001{bottom:306.493579pt;}
.y66a_c00001{bottom:306.667067pt;}
.y241d_c00001{bottom:306.670011pt;}
.y7e1_c00001{bottom:306.907067pt;}
.y3f0_c00001{bottom:306.907200pt;}
.y967_c00001{bottom:306.978251pt;}
.y154e_c00001{bottom:306.981883pt;}
.yf71_c00001{bottom:307.142203pt;}
.y21e8_c00001{bottom:307.228427pt;}
.y853_c00001{bottom:307.307067pt;}
.y2293_c00001{bottom:307.309955pt;}
.y1cdf_c00001{bottom:307.384355pt;}
.y446_c00001{bottom:307.387067pt;}
.y9f4_c00001{bottom:307.461267pt;}
.y141c_c00001{bottom:307.542051pt;}
.y1c45_c00001{bottom:307.704995pt;}
.y1846_c00001{bottom:307.705411pt;}
.y16a6_c00001{bottom:307.787267pt;}
.y64_c00001{bottom:307.787875pt;}
.y24bc_c00001{bottom:307.867067pt;}
.y1dbf_c00001{bottom:307.942467pt;}
.yfa1_c00001{bottom:307.946475pt;}
.y792_c00001{bottom:308.027067pt;}
.y7a4_c00001{bottom:308.107067pt;}
.y3da_c00001{bottom:308.107200pt;}
.y1f5a_c00001{bottom:308.108675pt;}
.y1751_c00001{bottom:308.178939pt;}
.y1569_c00001{bottom:308.262523pt;}
.y7b7_c00001{bottom:308.267067pt;}
.yc03_c00001{bottom:308.735051pt;}
.yd34_c00001{bottom:308.769595pt;}
.yd61_c00001{bottom:308.794171pt;}
.y10b8_c00001{bottom:308.822891pt;}
.y123e_c00001{bottom:308.902467pt;}
.y18aa_c00001{bottom:308.903051pt;}
.y2533_c00001{bottom:308.907067pt;}
.y235_c00001{bottom:308.987200pt;}
.y1c72_c00001{bottom:309.065043pt;}
.y145d_c00001{bottom:309.139523pt;}
.y5fe_c00001{bottom:309.147200pt;}
.y1b2f_c00001{bottom:309.304827pt;}
.ycb_c00001{bottom:309.307067pt;}
.y1631_c00001{bottom:309.388771pt;}
.y8ef_c00001{bottom:309.539720pt;}
.y1db8_c00001{bottom:309.542995pt;}
.y232e_c00001{bottom:309.628459pt;}
.y20d5_c00001{bottom:309.628491pt;}
.y13fa_c00001{bottom:309.709995pt;}
.y1002_c00001{bottom:309.782891pt;}
.y1bff_c00001{bottom:309.863051pt;}
.y1972_c00001{bottom:310.026963pt;}
.y23e4_c00001{bottom:310.108075pt;}
.y20f2_c00001{bottom:310.267243pt;}
.y2a0_c00001{bottom:310.347067pt;}
.y541_c00001{bottom:310.507067pt;}
.y2190_c00001{bottom:310.587067pt;}
.ye96_c00001{bottom:310.667384pt;}
.ye86_c00001{bottom:310.667752pt;}
.yebf_c00001{bottom:310.668891pt;}
.ye22_c00001{bottom:310.669995pt;}
.y12eb_c00001{bottom:310.740051pt;}
.y19ec_c00001{bottom:310.823635pt;}
.y23fe_c00001{bottom:310.828179pt;}
.y2f8_c00001{bottom:310.987067pt;}
.y361_c00001{bottom:311.147200pt;}
.y459_c00001{bottom:311.227067pt;}
.y2048_c00001{bottom:311.228944pt;}
.y21a6_c00001{bottom:311.468123pt;}
.y1a6e_c00001{bottom:311.547747pt;}
.y12a9_c00001{bottom:311.700051pt;}
.y1731_c00001{bottom:311.700635pt;}
.y1346_c00001{bottom:311.783851pt;}
.y19c7_c00001{bottom:311.784219pt;}
.y3fa_c00001{bottom:311.787067pt;}
.y1f3b_c00001{bottom:311.947200pt;}
.y20b5_c00001{bottom:312.107987pt;}
.y472_c00001{bottom:312.187200pt;}
.yde6_c00001{bottom:312.189635pt;}
.y695_c00001{bottom:312.267067pt;}
.yb7_c00001{bottom:312.347067pt;}
.y10b_c00001{bottom:312.347075pt;}
.y734_c00001{bottom:312.347251pt;}
.y12a_c00001{bottom:312.347376pt;}
.y275_c00001{bottom:312.347435pt;}
.y1c16_c00001{bottom:312.423051pt;}
.y1808_c00001{bottom:312.424163pt;}
.y1c8a_c00001{bottom:312.660635pt;}
.y81e_c00001{bottom:312.667067pt;}
.y1ff1_c00001{bottom:312.667760pt;}
.y22f6_c00001{bottom:312.668499pt;}
.y5b6_c00001{bottom:312.747875pt;}
.yf42_c00001{bottom:312.823939pt;}
.y3c3_c00001{bottom:312.907067pt;}
.y1b9a_c00001{bottom:313.064107pt;}
.y73e_c00001{bottom:313.067200pt;}
.yb98_c00001{bottom:313.220747pt;}
.ya63_c00001{bottom:313.222211pt;}
.yc6d_c00001{bottom:313.223675pt;}
.ya3a_c00001{bottom:313.226603pt;}
.y6f6_c00001{bottom:313.307067pt;}
.y2065_c00001{bottom:313.307208pt;}
.y1d33_c00001{bottom:313.309323pt;}
.y1261_c00001{bottom:313.381323pt;}
.y1bbc_c00001{bottom:313.385331pt;}
.y1ef_c00001{bottom:313.467067pt;}
.y39d_c00001{bottom:313.707067pt;}
.y6c2_c00001{bottom:313.707200pt;}
.y13d9_c00001{bottom:313.941859pt;}
.y2ea_c00001{bottom:313.947067pt;}
.ya6d_c00001{bottom:314.099147pt;}
.yc87_c00001{bottom:314.100611pt;}
.y498_c00001{bottom:314.107067pt;}
.y1b6_c00001{bottom:314.267067pt;}
.y170e_c00001{bottom:314.341323pt;}
.y148a_c00001{bottom:314.341907pt;}
.y1b5e_c00001{bottom:314.345331pt;}
.y287_c00001{bottom:314.347067pt;}
.y99_c00001{bottom:314.507200pt;}
.y138c_c00001{bottom:314.578379pt;}
.y16d3_c00001{bottom:314.663883pt;}
.y13b4_c00001{bottom:314.666555pt;}
.y2133_c00001{bottom:314.668491pt;}
.y2220_c00001{bottom:314.669979pt;}
.y4b2_c00001{bottom:314.907067pt;}
.ycce_c00001{bottom:314.927291pt;}
.ycff_c00001{bottom:314.954939pt;}
.y975_c00001{bottom:314.977547pt;}
.y9bb_c00001{bottom:314.979011pt;}
.ybae_c00001{bottom:314.980475pt;}
.y199a_c00001{bottom:314.985275pt;}
.y51c_c00001{bottom:315.227067pt;}
.y15a2_c00001{bottom:315.302491pt;}
.y1d5a_c00001{bottom:315.309923pt;}
.y1a52_c00001{bottom:315.384323pt;}
.y1ddd_c00001{bottom:315.538963pt;}
.y1683_c00001{bottom:315.547067pt;}
.y318_c00001{bottom:315.547200pt;}
.ydaf_c00001{bottom:315.547339pt;}
.y1bea_c00001{bottom:315.626555pt;}
.y16fc_c00001{bottom:315.703387pt;}
.y586_c00001{bottom:315.707067pt;}
.y62a_c00001{bottom:315.867067pt;}
.y1923_c00001{bottom:315.942435pt;}
.y1b0a_c00001{bottom:315.946443pt;}
.y59d_c00001{bottom:315.947200pt;}
.y2345_c00001{bottom:316.030027pt;}
.y1b83_c00001{bottom:316.262491pt;}
.y190e_c00001{bottom:316.263075pt;}
.yfd1_c00001{bottom:316.266499pt;}
.y21f_c00001{bottom:316.267067pt;}
.y11b_c00001{bottom:316.347067pt;}
.y22c6_c00001{bottom:316.428643pt;}
.y1cc6_c00001{bottom:316.430075pt;}
.y1501_c00001{bottom:316.498963pt;}
.y1a38_c00001{bottom:316.669971pt;}
.ybd7_c00001{bottom:316.735811pt;}
.y24a7_c00001{bottom:316.827067pt;}
.y205_c00001{bottom:316.827200pt;}
.yeec_c00001{bottom:316.827243pt;}
.y14a5_c00001{bottom:316.903019pt;}
.y24f7_c00001{bottom:316.907067pt;}
.y10d4_c00001{bottom:317.059331pt;}
.y1727_c00001{bottom:317.139491pt;}
.y1e77_c00001{bottom:317.223075pt;}
.y193f_c00001{bottom:317.223659pt;}
.y1a2_c00001{bottom:317.307067pt;}
.y23b2_c00001{bottom:317.390075pt;}
.y723_c00001{bottom:317.547067pt;}
.y2172_c00001{bottom:317.628459pt;}
.yb54_c00001{bottom:317.705840pt;}
.y1303_c00001{bottom:317.863019pt;}
.y11ba_c00001{bottom:317.863603pt;}
.y1a13_c00001{bottom:317.867611pt;}
.y188a_c00001{bottom:318.025595pt;}
.y22ab_c00001{bottom:318.030019pt;}
.y1ed6_c00001{bottom:318.099491pt;}
.y2118_c00001{bottom:318.187200pt;}
.y2471_c00001{bottom:318.188251pt;}
.y416_c00001{bottom:318.347067pt;}
.ye56_c00001{bottom:318.349075pt;}
.y160c_c00001{bottom:318.503547pt;}
.y1cf0_c00001{bottom:318.823603pt;}
.y77c_c00001{bottom:318.827067pt;}
.y6e4_c00001{bottom:318.907200pt;}
.y1cff_c00001{bottom:319.060075pt;}
.y120_c00001{bottom:319.147707pt;}
.y1ac2_c00001{bottom:319.227659pt;}
.y165b_c00001{bottom:319.304923pt;}
.y2a9_c00001{bottom:319.307067pt;}
.y18fb_c00001{bottom:319.464131pt;}
.y1f1b_c00001{bottom:319.627123pt;}
.y1215_c00001{bottom:319.700603pt;}
.y102f_c00001{bottom:319.704027pt;}
.y193_c00001{bottom:319.707067pt;}
.yb1e_c00001{bottom:319.943435pt;}
.y114b_c00001{bottom:320.021243pt;}
.y17bd_c00001{bottom:320.026419pt;}
.yef_c00001{bottom:320.027067pt;}
.y223e_c00001{bottom:320.030011pt;}
.y1e52_c00001{bottom:320.183235pt;}
.y1aec_c00001{bottom:320.187659pt;}
.y2449_c00001{bottom:320.265163pt;}
.y8a0_c00001{bottom:320.347067pt;}
.y1319_c00001{bottom:320.421459pt;}
.y1a98_c00001{bottom:320.424131pt;}
.y17dc_c00001{bottom:320.424715pt;}
.ya9f_c00001{bottom:320.425091pt;}
.y202b_c00001{bottom:320.668467pt;}
.y1171_c00001{bottom:320.897659pt;}
.y1443_c00001{bottom:320.981827pt;}
.y590_c00001{bottom:321.067067pt;}
.y992_c00001{bottom:321.221507pt;}
.yad1_c00001{bottom:321.222971pt;}
.y1d7f_c00001{bottom:321.227200pt;}
.y22e3_c00001{bottom:321.228339pt;}
.y165_c00001{bottom:321.307067pt;}
.y2394_c00001{bottom:321.308443pt;}
.y383_c00001{bottom:321.467067pt;}
.y10fa_c00001{bottom:321.541611pt;}
.y1da2_c00001{bottom:321.547291pt;}
.y18c3_c00001{bottom:321.621771pt;}
.yb07_c00001{bottom:321.702179pt;}
.y634_c00001{bottom:321.707200pt;}
.y2085_c00001{bottom:321.787200pt;}
.y2378_c00001{bottom:321.867387pt;}
.y2276_c00001{bottom:321.868315pt;}
.yab8_c00001{bottom:322.101371pt;}
.yc53_c00001{bottom:322.102835pt;}
.y5d2_c00001{bottom:322.267515pt;}
.y154d_c00001{bottom:322.341875pt;}
.y257_c00001{bottom:322.347067pt;}
.yf17_c00001{bottom:322.347339pt;}
.y184_c00001{bottom:322.507067pt;}
.y21e7_c00001{bottom:322.508259pt;}
.y1c2b_c00001{bottom:322.581771pt;}
.y2292_c00001{bottom:322.669947pt;}
.y1cde_c00001{bottom:322.744347pt;}
.y8e_c00001{bottom:322.747067pt;}
.y1fbc_c00001{bottom:322.827067pt;}
.y141b_c00001{bottom:322.902043pt;}
.y917_c00001{bottom:322.978307pt;}
.yb8c_c00001{bottom:322.978827pt;}
.yb35_c00001{bottom:322.979771pt;}
.y1845_c00001{bottom:322.985243pt;}
.y281_c00001{bottom:323.067067pt;}
.y70f_c00001{bottom:323.067200pt;}
.y105f_c00001{bottom:323.142139pt;}
.y16a5_c00001{bottom:323.147259pt;}
.y12d1_c00001{bottom:323.301875pt;}
.y1dbe_c00001{bottom:323.302459pt;}
.y1c5a_c00001{bottom:323.306467pt;}
.y42d_c00001{bottom:323.387067pt;}
.y1dfa_c00001{bottom:323.388715pt;}
.y1743_c00001{bottom:323.538931pt;}
.y64b_c00001{bottom:323.547067pt;}
.y1584_c00001{bottom:323.779411pt;}
.y2152_c00001{bottom:324.027067pt;}
.y23d1_c00001{bottom:324.029995pt;}
.y341_c00001{bottom:324.107200pt;}
.y10b7_c00001{bottom:324.182883pt;}
.y123d_c00001{bottom:324.262459pt;}
.y18a9_c00001{bottom:324.263043pt;}
.y9f3_c00001{bottom:324.341187pt;}
.y1c71_c00001{bottom:324.344875pt;}
.y14e_c00001{bottom:324.347067pt;}
.y11d6_c00001{bottom:324.499515pt;}
.y1b2e_c00001{bottom:324.584659pt;}
.y808_c00001{bottom:324.587067pt;}
.y4d7_c00001{bottom:324.667200pt;}
.ybf4_c00001{bottom:324.736571pt;}
.yca1_c00001{bottom:324.895387pt;}
.y1db7_c00001{bottom:324.902987pt;}
.y2361_c00001{bottom:324.907731pt;}
.y232d_c00001{bottom:324.908291pt;}
.yd85_c00001{bottom:324.987067pt;}
.y1001_c00001{bottom:325.142883pt;}
.y1c9b_c00001{bottom:325.223043pt;}
.y1e18_c00001{bottom:325.223627pt;}
.y1f7a_c00001{bottom:325.227067pt;}
.yd7_c00001{bottom:325.306707pt;}
.y4ed_c00001{bottom:325.307067pt;}
.y3b8_c00001{bottom:325.467067pt;}
.y7f5_c00001{bottom:325.627067pt;}
.y20f1_c00001{bottom:325.627235pt;}
.y2160_c00001{bottom:325.628427pt;}
.y556_c00001{bottom:325.787067pt;}
.y1123_c00001{bottom:326.019883pt;}
.ye95_c00001{bottom:326.027376pt;}
.ye85_c00001{bottom:326.027744pt;}
.yebe_c00001{bottom:326.028883pt;}
.ye21_c00001{bottom:326.029987pt;}
.y11f5_c00001{bottom:326.100043pt;}
.y1bcf_c00001{bottom:326.103467pt;}
.y23fd_c00001{bottom:326.108011pt;}
.y19eb_c00001{bottom:326.183627pt;}
.y50c_c00001{bottom:326.347067pt;}
.y8ee_c00001{bottom:326.419640pt;}
.yd33_c00001{bottom:326.448955pt;}
.yd60_c00001{bottom:326.473531pt;}
.y71d_c00001{bottom:326.507067pt;}
.y4ad_c00001{bottom:326.508459pt;}
.y7d3_c00001{bottom:326.667067pt;}
.y1090_c00001{bottom:326.743995pt;}
.y1e8d_c00001{bottom:326.824155pt;}
.y3ae_c00001{bottom:326.827067pt;}
.y1a6d_c00001{bottom:326.827579pt;}
.y21a5_c00001{bottom:326.828115pt;}
.y1527_c00001{bottom:327.060627pt;}
.y1345_c00001{bottom:327.063683pt;}
.y14ee_c00001{bottom:327.064051pt;}
.y63_c00001{bottom:327.067291pt;}
.y1761_c00001{bottom:327.297099pt;}
.y40_c00001{bottom:327.307067pt;}
.y21cb_c00001{bottom:327.309875pt;}
.y320_c00001{bottom:327.387200pt;}
.y20b4_c00001{bottom:327.467979pt;}
.yc32_c00001{bottom:327.540131pt;}
.yde5_c00001{bottom:327.549627pt;}
.y733_c00001{bottom:327.707243pt;}
.y129_c00001{bottom:327.707368pt;}
.y274_c00001{bottom:327.707427pt;}
.y1b4c_c00001{bottom:327.784155pt;}
.y15e8_c00001{bottom:327.784739pt;}
.y7e0_c00001{bottom:327.867067pt;}
.y3ef_c00001{bottom:327.867200pt;}
.y1c89_c00001{bottom:328.020627pt;}
.y1ff0_c00001{bottom:328.027752pt;}
.y22f5_c00001{bottom:328.028491pt;}
.y5e4_c00001{bottom:328.267067pt;}
.y445_c00001{bottom:328.427067pt;}
.y1260_c00001{bottom:328.661155pt;}
.y1f9b_c00001{bottom:328.667923pt;}
.y2064_c00001{bottom:328.668467pt;}
.y1d32_c00001{bottom:328.669315pt;}
.y1bbb_c00001{bottom:328.745323pt;}
.y24bb_c00001{bottom:328.827067pt;}
.y14c6_c00001{bottom:328.981795pt;}
.y791_c00001{bottom:329.067067pt;}
.y3d9_c00001{bottom:329.067200pt;}
.y7a3_c00001{bottom:329.147067pt;}
.y13d8_c00001{bottom:329.301851pt;}
.y7b6_c00001{bottom:329.307067pt;}
.y1289_c00001{bottom:329.384683pt;}
.y1197_c00001{bottom:329.621155pt;}
.y1477_c00001{bottom:329.621739pt;}
.y13b3_c00001{bottom:329.946387pt;}
.y2532_c00001{bottom:329.947067pt;}
.y234_c00001{bottom:330.027200pt;}
.y2132_c00001{bottom:330.028483pt;}
.y221f_c00001{bottom:330.029971pt;}
.ya62_c00001{bottom:330.102131pt;}
.yc6c_c00001{bottom:330.103595pt;}
.y5fd_c00001{bottom:330.187200pt;}
.yca_c00001{bottom:330.347067pt;}
.yf70_c00001{bottom:330.502163pt;}
.y1d59_c00001{bottom:330.669915pt;}
.y1a51_c00001{bottom:330.744315pt;}
.y1ddc_c00001{bottom:330.818795pt;}
.y1be9_c00001{bottom:330.906387pt;}
.y93e_c00001{bottom:330.979067pt;}
.yc86_c00001{bottom:330.980531pt;}
.y1ca4_c00001{bottom:331.302427pt;}
.y1b09_c00001{bottom:331.306435pt;}
.y29f_c00001{bottom:331.307067pt;}
.y23f4_c00001{bottom:331.309859pt;}
.y1f59_c00001{bottom:331.468635pt;}
.y1b82_c00001{bottom:331.542323pt;}
.y190d_c00001{bottom:331.542907pt;}
.yfd0_c00001{bottom:331.546331pt;}
.y209d_c00001{bottom:331.547067pt;}
.y22c5_c00001{bottom:331.708475pt;}
.y1cc5_c00001{bottom:331.709907pt;}
.y2e9_c00001{bottom:331.787067pt;}
.y966_c00001{bottom:331.858931pt;}
.y2f7_c00001{bottom:331.947067pt;}
.y1c44_c00001{bottom:332.025539pt;}
.y5b5_c00001{bottom:332.027291pt;}
.y225e_c00001{bottom:332.029963pt;}
.y360_c00001{bottom:332.107200pt;}
.y286_c00001{bottom:332.186667pt;}
.y458_c00001{bottom:332.187067pt;}
.yeeb_c00001{bottom:332.187235pt;}
.y14a4_c00001{bottom:332.263011pt;}
.yfa0_c00001{bottom:332.267019pt;}
.y10d3_c00001{bottom:332.339163pt;}
.y1726_c00001{bottom:332.499483pt;}
.y1568_c00001{bottom:332.502907pt;}
.y2512_c00001{bottom:332.507067pt;}
.yccd_c00001{bottom:332.526779pt;}
.ycfe_c00001{bottom:332.554427pt;}
.y23b1_c00001{bottom:332.669907pt;}
.y200b_c00001{bottom:332.747067pt;}
.y1630_c00001{bottom:332.748731pt;}
.y3f9_c00001{bottom:332.827067pt;}
.y210f_c00001{bottom:332.827200pt;}
.y20d4_c00001{bottom:332.908291pt;}
.y13f9_c00001{bottom:333.069955pt;}
.y471_c00001{bottom:333.147200pt;}
.y1302_c00001{bottom:333.223011pt;}
.y11b9_c00001{bottom:333.223595pt;}
.y1a12_c00001{bottom:333.227603pt;}
.y1889_c00001{bottom:333.305427pt;}
.y540_c00001{bottom:333.467067pt;}
.y23e3_c00001{bottom:333.468035pt;}
.y2470_c00001{bottom:333.548243pt;}
.yc02_c00001{bottom:333.615731pt;}
.y81d_c00001{bottom:333.627067pt;}
.y10a_c00001{bottom:333.707067pt;}
.ye55_c00001{bottom:333.709067pt;}
.y1eaf_c00001{bottom:333.863539pt;}
.y1682_c00001{bottom:333.947067pt;}
.y1cef_c00001{bottom:334.103435pt;}
.y73d_c00001{bottom:334.107200pt;}
.y6f5_c00001{bottom:334.347067pt;}
.y1971_c00001{bottom:334.347507pt;}
.y1ee_c00001{bottom:334.427067pt;}
.y11f_c00001{bottom:334.427539pt;}
.y1864_c00001{bottom:334.507067pt;}
.y2047_c00001{bottom:334.508744pt;}
.y165a_c00001{bottom:334.584755pt;}
.yb53_c00001{bottom:334.585760pt;}
.y1ac1_c00001{bottom:334.587651pt;}
.y39c_c00001{bottom:334.667067pt;}
.y6c1_c00001{bottom:334.667200pt;}
.y765_c00001{bottom:334.747067pt;}
.y18fa_c00001{bottom:334.824123pt;}
.y24e6_c00001{bottom:334.907067pt;}
.y2c3_c00001{bottom:334.987067pt;}
.y1718_c00001{bottom:335.060595pt;}
.y497_c00001{bottom:335.067067pt;}
.y1b5_c00001{bottom:335.227067pt;}
.y531_c00001{bottom:335.307067pt;}
.y17bc_c00001{bottom:335.386411pt;}
.y223d_c00001{bottom:335.390003pt;}
.y1e51_c00001{bottom:335.463067pt;}
.y1aeb_c00001{bottom:335.547651pt;}
.y669_c00001{bottom:335.707067pt;}
.y1807_c00001{bottom:335.784123pt;}
.y17db_c00001{bottom:335.784707pt;}
.y58f_c00001{bottom:335.787067pt;}
.y12a8_c00001{bottom:336.020595pt;}
.y202a_c00001{bottom:336.028459pt;}
.y51b_c00001{bottom:336.267067pt;}
.y317_c00001{bottom:336.507200pt;}
.y1c15_c00001{bottom:336.663435pt;}
.y585_c00001{bottom:336.747067pt;}
.yb1d_c00001{bottom:336.823355pt;}
.y629_c00001{bottom:336.827067pt;}
.y1da1_c00001{bottom:336.907283pt;}
.ydae_c00001{bottom:336.987067pt;}
.y59c_c00001{bottom:336.987200pt;}
.yf41_c00001{bottom:337.064323pt;}
.ya9e_c00001{bottom:337.224491pt;}
.y21e_c00001{bottom:337.227067pt;}
.y1b99_c00001{bottom:337.384651pt;}
.y11a_c00001{bottom:337.387067pt;}
.y154c_c00001{bottom:337.621707pt;}
.y1b5d_c00001{bottom:337.705291pt;}
.y24a6_c00001{bottom:337.867067pt;}
.y204_c00001{bottom:337.867200pt;}
.y21e6_c00001{bottom:337.868251pt;}
.y1c2a_c00001{bottom:337.941763pt;}
.y16d2_c00001{bottom:337.943683pt;}
.y24f6_c00001{bottom:337.947067pt;}
.y2291_c00001{bottom:338.029939pt;}
.y991_c00001{bottom:338.101427pt;}
.ya84_c00001{bottom:338.102891pt;}
.ya39_c00001{bottom:338.107283pt;}
.y1844_c00001{bottom:338.345235pt;}
.y1a1_c00001{bottom:338.347067pt;}
.y1f3a_c00001{bottom:338.347200pt;}
.y105e_c00001{bottom:338.502131pt;}
.y722_c00001{bottom:338.507067pt;}
.y12d0_c00001{bottom:338.581707pt;}
.yb06_c00001{bottom:338.582099pt;}
.y15a1_c00001{bottom:338.582291pt;}
.y138b_c00001{bottom:338.818763pt;}
.yc61_c00001{bottom:338.979827pt;}
.yab7_c00001{bottom:338.981291pt;}
.y1999_c00001{bottom:339.305819pt;}
.y2344_c00001{bottom:339.309827pt;}
.y10b6_c00001{bottom:339.462715pt;}
.y1ec7_c00001{bottom:339.542291pt;}
.y18a8_c00001{bottom:339.542875pt;}
.y1d7e_c00001{bottom:339.627200pt;}
.y145c_c00001{bottom:339.779347pt;}
.y916_c00001{bottom:339.858227pt;}
.y9ba_c00001{bottom:339.859691pt;}
.ybad_c00001{bottom:339.861155pt;}
.y880_c00001{bottom:339.867067pt;}
.y1ea4_c00001{bottom:339.944651pt;}
.y16fb_c00001{bottom:340.023931pt;}
.y1a37_c00001{bottom:340.029931pt;}
.y1922_c00001{bottom:340.262979pt;}
.y232c_c00001{bottom:340.268283pt;}
.y330_c00001{bottom:340.347067pt;}
.y1000_c00001{bottom:340.422715pt;}
.y1c9a_c00001{bottom:340.502875pt;}
.y4cb_c00001{bottom:340.667067pt;}
.y1500_c00001{bottom:340.739347pt;}
.y60b_c00001{bottom:340.747067pt;}
.y20f0_c00001{bottom:340.907067pt;}
.y215f_c00001{bottom:340.908259pt;}
.yee_c00001{bottom:340.987067pt;}
.y1e35_c00001{bottom:341.147067pt;}
.y1122_c00001{bottom:341.299715pt;}
.yb6_c00001{bottom:341.307067pt;}
.y22aa_c00001{bottom:341.309819pt;}
.ye94_c00001{bottom:341.387368pt;}
.ye84_c00001{bottom:341.387736pt;}
.yebd_c00001{bottom:341.388875pt;}
.ye20_c00001{bottom:341.389979pt;}
.y12ea_c00001{bottom:341.460035pt;}
.y19ea_c00001{bottom:341.463459pt;}
.y193e_c00001{bottom:341.464043pt;}
.y5d1_c00001{bottom:341.467875pt;}
.y23fc_c00001{bottom:341.468003pt;}
.ybd6_c00001{bottom:341.616491pt;}
.y108f_c00001{bottom:342.103987pt;}
.y21a4_c00001{bottom:342.107947pt;}
.y1819_c00001{bottom:342.183563pt;}
.y1a6c_c00001{bottom:342.187571pt;}
.y6af_c00001{bottom:342.347067pt;}
.y1ed5_c00001{bottom:342.420035pt;}
.y1526_c00001{bottom:342.420619pt;}
.y14ed_c00001{bottom:342.424043pt;}
.y382_c00001{bottom:342.507067pt;}
.y633_c00001{bottom:342.747200pt;}
.y160b_c00001{bottom:342.824091pt;}
.y20b3_c00001{bottom:342.827971pt;}
.y1f1a_c00001{bottom:342.906923pt;}
.yde4_c00001{bottom:342.909619pt;}
.y732_c00001{bottom:342.987075pt;}
.y273_c00001{bottom:342.987259pt;}
.y1b4b_c00001{bottom:343.063987pt;}
.y1950_c00001{bottom:343.064571pt;}
.y8ed_c00001{bottom:343.219040pt;}
.y3b7_c00001{bottom:343.227067pt;}
.y256_c00001{bottom:343.307067pt;}
.y1fef_c00001{bottom:343.307584pt;}
.y1cfe_c00001{bottom:343.380619pt;}
.y98_c00001{bottom:343.467200pt;}
.y268_c00001{bottom:343.627067pt;}
.y109_c00001{bottom:343.627200pt;}
.y1318_c00001{bottom:343.781419pt;}
.y8d_c00001{bottom:343.787200pt;}
.y2117_c00001{bottom:343.868139pt;}
.y1214_c00001{bottom:344.021147pt;}
.y102e_c00001{bottom:344.024571pt;}
.y1bba_c00001{bottom:344.025155pt;}
.y1f9a_c00001{bottom:344.027915pt;}
.y2063_c00001{bottom:344.028459pt;}
.y1d31_c00001{bottom:344.029307pt;}
.yd32_c00001{bottom:344.048443pt;}
.yd5f_c00001{bottom:344.073019pt;}
.y280_c00001{bottom:344.107067pt;}
.y70e_c00001{bottom:344.107200pt;}
.y114a_c00001{bottom:344.341787pt;}
.yc31_c00001{bottom:344.420051pt;}
.y42c_c00001{bottom:344.427067pt;}
.y2448_c00001{bottom:344.505547pt;}
.yd6_c00001{bottom:344.507067pt;}
.y22e2_c00001{bottom:344.508139pt;}
.y13d7_c00001{bottom:344.581683pt;}
.y64a_c00001{bottom:344.587067pt;}
.y2393_c00001{bottom:344.668403pt;}
.y1288_c00001{bottom:344.744675pt;}
.y1196_c00001{bottom:344.981147pt;}
.y1476_c00001{bottom:344.981731pt;}
.y340_c00001{bottom:345.067200pt;}
.y1170_c00001{bottom:345.218203pt;}
.y2377_c00001{bottom:345.227347pt;}
.y2275_c00001{bottom:345.228275pt;}
.y1442_c00001{bottom:345.302371pt;}
.y13b2_c00001{bottom:345.306379pt;}
.y14d_c00001{bottom:345.307067pt;}
.y2131_c00001{bottom:345.308315pt;}
.y241c_c00001{bottom:345.309803pt;}
.y65b_c00001{bottom:345.387067pt;}
.y221e_c00001{bottom:345.389963pt;}
.y807_c00001{bottom:345.627067pt;}
.y4d6_c00001{bottom:345.707200pt;}
.y4ac_c00001{bottom:345.787875pt;}
.yf6f_c00001{bottom:345.862155pt;}
.yd84_c00001{bottom:346.027067pt;}
.y1d58_c00001{bottom:346.029907pt;}
.ya17_c00001{bottom:346.102187pt;}
.y1a50_c00001{bottom:346.104307pt;}
.y4ec_c00001{bottom:346.267067pt;}
.y62_c00001{bottom:346.267651pt;}
.y1d8_c00001{bottom:346.347067pt;}
.y16a4_c00001{bottom:346.427059pt;}
.y1e94_c00001{bottom:346.582259pt;}
.y1b08_c00001{bottom:346.666427pt;}
.y7f4_c00001{bottom:346.667067pt;}
.y242c_c00001{bottom:346.669851pt;}
.y1df9_c00001{bottom:346.748675pt;}
.y555_c00001{bottom:346.827067pt;}
.y1b81_c00001{bottom:346.902315pt;}
.y190c_c00001{bottom:346.902899pt;}
.yfcf_c00001{bottom:346.906323pt;}
.yae5_c00001{bottom:346.982051pt;}
.yc52_c00001{bottom:346.983515pt;}
.y1cdd_c00001{bottom:347.064891pt;}
.y22c4_c00001{bottom:347.068467pt;}
.y1cc4_c00001{bottom:347.069899pt;}
.y141a_c00001{bottom:347.142427pt;}
.y1c43_c00001{bottom:347.305371pt;}
.y415_c00001{bottom:347.307067pt;}
.y225d_c00001{bottom:347.309795pt;}
.y71c_c00001{bottom:347.467067pt;}
.y14a3_c00001{bottom:347.542843pt;}
.yf9f_c00001{bottom:347.546851pt;}
.y7d2_c00001{bottom:347.627067pt;}
.y1725_c00001{bottom:347.779315pt;}
.y77b_c00001{bottom:347.787067pt;}
.y94d_c00001{bottom:347.858987pt;}
.yb8b_c00001{bottom:347.859507pt;}
.yb34_c00001{bottom:347.860451pt;}
.y6e3_c00001{bottom:347.867200pt;}
.y23b0_c00001{bottom:348.029899pt;}
.y1583_c00001{bottom:348.099955pt;}
.y2084_c00001{bottom:348.187200pt;}
.y2360_c00001{bottom:348.267691pt;}
.y20d3_c00001{bottom:348.268283pt;}
.y1f9_c00001{bottom:348.347067pt;}
.y31f_c00001{bottom:348.427200pt;}
.y123c_c00001{bottom:348.502843pt;}
.y11b8_c00001{bottom:348.503427pt;}
.y1888_c00001{bottom:348.665419pt;}
.y965_c00001{bottom:348.738851pt;}
.y11d5_c00001{bottom:348.739899pt;}
.y192_c00001{bottom:348.747067pt;}
.y23e2_c00001{bottom:348.828027pt;}
.y246f_c00001{bottom:348.828075pt;}
.y1b2d_c00001{bottom:348.905203pt;}
.y7df_c00001{bottom:348.907067pt;}
.y3ee_c00001{bottom:348.907200pt;}
.y128_c00001{bottom:348.987200pt;}
.ye54_c00001{bottom:348.988899pt;}
.y9f2_c00001{bottom:349.221867pt;}
.y1db6_c00001{bottom:349.223531pt;}
.y1fbb_c00001{bottom:349.227067pt;}
.y852_c00001{bottom:349.307067pt;}
.y2312_c00001{bottom:349.309787pt;}
.y444_c00001{bottom:349.387067pt;}
.y831_c00001{bottom:349.453843pt;}
.y1ef6_c00001{bottom:349.463427pt;}
.y1e17_c00001{bottom:349.464011pt;}
.y754_c00001{bottom:349.467067pt;}
.ybf3_c00001{bottom:349.617251pt;}
.y1970_c00001{bottom:349.707499pt;}
.y11e_c00001{bottom:349.787531pt;}
.y1ac0_c00001{bottom:349.867483pt;}
.y1659_c00001{bottom:349.944747pt;}
.y790_c00001{bottom:350.027067pt;}
.y7a2_c00001{bottom:350.107067pt;}
.y3d8_c00001{bottom:350.107200pt;}
.y18f9_c00001{bottom:350.184115pt;}
.yccc_c00001{bottom:350.206139pt;}
.ycfd_c00001{bottom:350.233787pt;}
.y164_c00001{bottom:350.347067pt;}
.y11f4_c00001{bottom:350.420587pt;}
.y1bce_c00001{bottom:350.424011pt;}
.y2151_c00001{bottom:350.427067pt;}
.y21ca_c00001{bottom:350.669835pt;}
.y1aea_c00001{bottom:350.827483pt;}
.y233_c00001{bottom:350.987200pt;}
.y1806_c00001{bottom:351.063955pt;}
.y1e8c_c00001{bottom:351.064539pt;}
.y5fc_c00001{bottom:351.147200pt;}
.y5b4_c00001{bottom:351.306707pt;}
.yc9_c00001{bottom:351.307067pt;}
.y22f4_c00001{bottom:351.308291pt;}
.y12a7_c00001{bottom:351.380587pt;}
.y18da_c00001{bottom:351.381171pt;}
.y1344_c00001{bottom:351.384227pt;}
.y617_c00001{bottom:351.387067pt;}
.y183_c00001{bottom:351.547067pt;}
.y1760_c00001{bottom:351.617643pt;}
.y1f79_c00001{bottom:351.627067pt;}
.y15e7_c00001{bottom:352.025123pt;}
.y1da0_c00001{bottom:352.187115pt;}
.y1c88_c00001{bottom:352.341171pt;}
.y29e_c00001{bottom:352.347067pt;}
.yf40_c00001{bottom:352.424315pt;}
.y285_c00001{bottom:352.427067pt;}
.y1b98_c00001{bottom:352.744643pt;}
.y125f_c00001{bottom:352.981699pt;}
.y1b5c_c00001{bottom:352.985123pt;}
.y2f6_c00001{bottom:352.987067pt;}
.y35f_c00001{bottom:353.147200pt;}
.y457_c00001{bottom:353.227067pt;}
.y21e5_c00001{bottom:353.228243pt;}
.y14c5_c00001{bottom:353.302339pt;}
.y2511_c00001{bottom:353.547067pt;}
.y1843_c00001{bottom:353.705227pt;}
.y3f8_c00001{bottom:353.787067pt;}
.y105d_c00001{bottom:353.862123pt;}
.y12cf_c00001{bottom:353.941699pt;}
.y15a0_c00001{bottom:353.942283pt;}
.y470_c00001{bottom:354.187200pt;}
.y1be8_c00001{bottom:354.266347pt;}
.y81c_c00001{bottom:354.667067pt;}
.y2e8_c00001{bottom:354.667200pt;}
.y2343_c00001{bottom:354.669819pt;}
.y10b5_c00001{bottom:354.822707pt;}
.y1f58_c00001{bottom:354.828595pt;}
.ya61_c00001{bottom:354.982811pt;}
.ya38_c00001{bottom:354.987203pt;}
.y73c_c00001{bottom:355.067200pt;}
.y145b_c00001{bottom:355.139339pt;}
.y1ea3_c00001{bottom:355.304643pt;}
.y6f4_c00001{bottom:355.307067pt;}
.y1ed_c00001{bottom:355.467067pt;}
.y1921_c00001{bottom:355.542811pt;}
.y232b_c00001{bottom:355.628275pt;}
.y764_c00001{bottom:355.707067pt;}
.y6c0_c00001{bottom:355.707200pt;}
.yfff_c00001{bottom:355.782707pt;}
.y93d_c00001{bottom:355.859747pt;}
.yc85_c00001{bottom:355.861211pt;}
.y3ad_c00001{bottom:355.867067pt;}
.y2c2_c00001{bottom:356.027200pt;}
.y496_c00001{bottom:356.107067pt;}
.y162f_c00001{bottom:356.108691pt;}
.y1b4_c00001{bottom:356.267067pt;}
.y215e_c00001{bottom:356.268251pt;}
.y3f_c00001{bottom:356.347067pt;}
.y13f8_c00001{bottom:356.349755pt;}
.y1826_c00001{bottom:356.503395pt;}
.y10d2_c00001{bottom:356.659707pt;}
.y668_c00001{bottom:356.667067pt;}
.ye83_c00001{bottom:356.667568pt;}
.yebc_c00001{bottom:356.668707pt;}
.ye1f_c00001{bottom:356.669811pt;}
.yc13_c00001{bottom:356.738147pt;}
.ybac_c00001{bottom:356.741075pt;}
.y1567_c00001{bottom:356.823451pt;}
.y193d_c00001{bottom:356.824035pt;}
.y23fb_c00001{bottom:356.827995pt;}
.y51a_c00001{bottom:357.227067pt;}
.y108e_c00001{bottom:357.383819pt;}
.y48d_c00001{bottom:357.387067pt;}
.y1818_c00001{bottom:357.463395pt;}
.y21a3_c00001{bottom:357.467939pt;}
.y316_c00001{bottom:357.547200pt;}
.y1a6b_c00001{bottom:357.547563pt;}
.y1a11_c00001{bottom:357.548147pt;}
.y1525_c00001{bottom:357.700451pt;}
.y584_c00001{bottom:357.707067pt;}
.y14ec_c00001{bottom:357.784035pt;}
.y24ba_c00001{bottom:357.867067pt;}
.y2046_c00001{bottom:357.868704pt;}
.y209c_c00001{bottom:357.947067pt;}
.y59b_c00001{bottom:357.947200pt;}
.y1d7d_c00001{bottom:358.027200pt;}
.y20b2_c00001{bottom:358.107803pt;}
.y1eae_c00001{bottom:358.184083pt;}
.yde3_c00001{bottom:358.189451pt;}
.y21d_c00001{bottom:358.267067pt;}
.y119_c00001{bottom:358.347067pt;}
.y272_c00001{bottom:358.347251pt;}
.yc01_c00001{bottom:358.415891pt;}
.y1cee_c00001{bottom:358.423979pt;}
.y194f_c00001{bottom:358.424563pt;}
.y1cfd_c00001{bottom:358.660451pt;}
.y1fee_c00001{bottom:358.667576pt;}
.y17bb_c00001{bottom:358.746371pt;}
.y1e50_c00001{bottom:358.823027pt;}
.y24a5_c00001{bottom:358.827067pt;}
.y203_c00001{bottom:358.827200pt;}
.y3c1_c00001{bottom:358.907067pt;}
.y17da_c00001{bottom:359.064507pt;}
.y200a_c00001{bottom:359.147067pt;}
.y210e_c00001{bottom:359.227200pt;}
.y1a0_c00001{bottom:359.307067pt;}
.y1f99_c00001{bottom:359.307747pt;}
.y2029_c00001{bottom:359.308259pt;}
.y2062_c00001{bottom:359.308291pt;}
.y1213_c00001{bottom:359.381139pt;}
.y1bb9_c00001{bottom:359.385147pt;}
.yb52_c00001{bottom:359.466440pt;}
.y1e34_c00001{bottom:359.547067pt;}
.y1287_c00001{bottom:360.024507pt;}
.y2392_c00001{bottom:360.028395pt;}
.y1195_c00001{bottom:360.341139pt;}
.y1475_c00001{bottom:360.341723pt;}
.y116f_c00001{bottom:360.578195pt;}
.y500_c00001{bottom:360.587067pt;}
.y2130_c00001{bottom:360.668307pt;}
.y221d_c00001{bottom:360.669795pt;}
.ydad_c00001{bottom:360.747067pt;}
.y5d0_c00001{bottom:360.747291pt;}
.y87f_c00001{bottom:360.827067pt;}
.y1863_c00001{bottom:360.907067pt;}
.y1c14_c00001{bottom:360.983979pt;}
.yf6e_c00001{bottom:361.141987pt;}
.y16d1_c00001{bottom:361.303643pt;}
.y32f_c00001{bottom:361.307067pt;}
.y1d57_c00001{bottom:361.309739pt;}
.y1a4f_c00001{bottom:361.384139pt;}
.y1fce_c00001{bottom:361.547067pt;}
.yd31_c00001{bottom:361.647931pt;}
.yd5e_c00001{bottom:361.672507pt;}
.y4ca_c00001{bottom:361.707067pt;}
.y16a3_c00001{bottom:361.787051pt;}
.y1e93_c00001{bottom:361.942251pt;}
.y1b07_c00001{bottom:361.946259pt;}
.y242b_c00001{bottom:362.029843pt;}
.ya9d_c00001{bottom:362.105171pt;}
.y1c29_c00001{bottom:362.182147pt;}
.yfce_c00001{bottom:362.186155pt;}
.y1b80_c00001{bottom:362.262307pt;}
.y190b_c00001{bottom:362.262891pt;}
.y694_c00001{bottom:362.347067pt;}
.y22c3_c00001{bottom:362.428459pt;}
.y1cc3_c00001{bottom:362.429891pt;}
.yb1c_c00001{bottom:362.662955pt;}
.y1ba9_c00001{bottom:362.902835pt;}
.yf9e_c00001{bottom:362.906843pt;}
.y990_c00001{bottom:362.982107pt;}
.ya83_c00001{bottom:362.983571pt;}
.y138a_c00001{bottom:363.139307pt;}
.y6ae_c00001{bottom:363.307067pt;}
.y1a36_c00001{bottom:363.309731pt;}
.yeea_c00001{bottom:363.387067pt;}
.yb05_c00001{bottom:363.462779pt;}
.y381_c00001{bottom:363.467067pt;}
.y1998_c00001{bottom:363.626363pt;}
.y20d2_c00001{bottom:363.628275pt;}
.y39b_c00001{bottom:363.707067pt;}
.y632_c00001{bottom:363.787200pt;}
.yab6_c00001{bottom:363.861971pt;}
.y123b_c00001{bottom:363.862835pt;}
.y11b7_c00001{bottom:363.863419pt;}
.yc51_c00001{bottom:363.863435pt;}
.y24e5_c00001{bottom:363.947067pt;}
.y1c70_c00001{bottom:364.025411pt;}
.y5e3_c00001{bottom:364.027291pt;}
.y11d4_c00001{bottom:364.099891pt;}
.y23e1_c00001{bottom:364.107859pt;}
.y20ef_c00001{bottom:364.267915pt;}
.y16fa_c00001{bottom:364.344475pt;}
.y127_c00001{bottom:364.347067pt;}
.ye53_c00001{bottom:364.348891pt;}
.y1eed_c00001{bottom:364.503363pt;}
.y22a9_c00001{bottom:364.669779pt;}
.y915_c00001{bottom:364.738907pt;}
.yb8a_c00001{bottom:364.739427pt;}
.y9b9_c00001{bottom:364.740371pt;}
.y1f39_c00001{bottom:364.747200pt;}
.y1ef5_c00001{bottom:364.823419pt;}
.y8c_c00001{bottom:364.827200pt;}
.y196f_c00001{bottom:364.987331pt;}
.y14ff_c00001{bottom:365.059891pt;}
.y27f_c00001{bottom:365.067067pt;}
.y70d_c00001{bottom:365.067200pt;}
.y4ab_c00001{bottom:365.067291pt;}
.y1abf_c00001{bottom:365.227475pt;}
.y1658_c00001{bottom:365.304739pt;}
.y42b_c00001{bottom:365.387067pt;}
.y18f8_c00001{bottom:365.463947pt;}
.y61_c00001{bottom:365.547067pt;}
.y649_c00001{bottom:365.627067pt;}
.y11f3_c00001{bottom:365.700419pt;}
.y1bcd_c00001{bottom:365.784003pt;}
.y628_c00001{bottom:365.867067pt;}
.y9f1_c00001{bottom:366.021267pt;}
.y223c_c00001{bottom:366.029827pt;}
.y33f_c00001{bottom:366.107200pt;}
.y3b6_c00001{bottom:366.187200pt;}
.y1ae9_c00001{bottom:366.187475pt;}
.y1f19_c00001{bottom:366.266883pt;}
.y14c_c00001{bottom:366.347067pt;}
.ybd5_c00001{bottom:366.416651pt;}
.y1805_c00001{bottom:366.423947pt;}
.y12a6_c00001{bottom:366.660419pt;}
.y1730_c00001{bottom:366.661003pt;}
.y806_c00001{bottom:366.667067pt;}
.y22f3_c00001{bottom:366.668283pt;}
.y1343_c00001{bottom:366.744219pt;}
.y19c6_c00001{bottom:366.744587pt;}
.y1795_c00001{bottom:366.897475pt;}
.y24f5_c00001{bottom:366.907067pt;}
.y160a_c00001{bottom:367.064475pt;}
.y1317_c00001{bottom:367.141379pt;}
.y1d7_c00001{bottom:367.307067pt;}
.y2116_c00001{bottom:367.308259pt;}
.y1d30_c00001{bottom:367.309107pt;}
.y1b4a_c00001{bottom:367.384531pt;}
.y15e6_c00001{bottom:367.385115pt;}
.y721_c00001{bottom:367.547067pt;}
.y1d9f_c00001{bottom:367.547107pt;}
.y7f3_c00001{bottom:367.707067pt;}
.yf3f_c00001{bottom:367.784307pt;}
.y554_c00001{bottom:367.787067pt;}
.yccb_c00001{bottom:367.805627pt;}
.ycfc_c00001{bottom:367.833275pt;}
.yca0_c00001{bottom:367.855651pt;}
.y22e1_c00001{bottom:367.868099pt;}
.y8ec_c00001{bottom:368.099720pt;}
.yd83_c00001{bottom:368.187067pt;}
.y102d_c00001{bottom:368.264955pt;}
.y154b_c00001{bottom:368.341691pt;}
.y1b5b_c00001{bottom:368.345115pt;}
.y414_c00001{bottom:368.347067pt;}
.y71b_c00001{bottom:368.507067pt;}
.y2376_c00001{bottom:368.507147pt;}
.y21e4_c00001{bottom:368.508075pt;}
.y1149_c00001{bottom:368.582171pt;}
.y13b1_c00001{bottom:368.666339pt;}
.y7d1_c00001{bottom:368.667067pt;}
.y2447_c00001{bottom:368.826091pt;}
.y77a_c00001{bottom:368.827067pt;}
.y13d6_c00001{bottom:368.902227pt;}
.y6e2_c00001{bottom:368.907200pt;}
.y1842_c00001{bottom:368.985059pt;}
.y105c_c00001{bottom:369.141955pt;}
.yc30_c00001{bottom:369.300731pt;}
.y1514_c00001{bottom:369.301691pt;}
.y159f_c00001{bottom:369.302275pt;}
.y1f8_c00001{bottom:369.307067pt;}
.y31e_c00001{bottom:369.387200pt;}
.y1441_c00001{bottom:369.542755pt;}
.y1be7_c00001{bottom:369.626339pt;}
.yb5_c00001{bottom:369.789267pt;}
.y7de_c00001{bottom:369.867067pt;}
.y3ed_c00001{bottom:369.867200pt;}
.yed_c00001{bottom:370.027067pt;}
.y2342_c00001{bottom:370.029811pt;}
.y1df8_c00001{bottom:370.108635pt;}
.y10f9_c00001{bottom:370.182699pt;}
.y1f07_c00001{bottom:370.262859pt;}
.y851_c00001{bottom:370.347067pt;}
.y443_c00001{bottom:370.427067pt;}
.y145a_c00001{bottom:370.499331pt;}
.y5b3_c00001{bottom:370.507067pt;}
.y1ea2_c00001{bottom:370.584475pt;}
.y1c42_c00001{bottom:370.665331pt;}
.y225c_c00001{bottom:370.669755pt;}
.y1681_c00001{bottom:370.747067pt;}
.y1ca3_c00001{bottom:370.902803pt;}
.ya16_c00001{bottom:370.982867pt;}
.y78f_c00001{bottom:371.067067pt;}
.y3d7_c00001{bottom:371.067200pt;}
.y1cdc_c00001{bottom:371.305275pt;}
.y163_c00001{bottom:371.307067pt;}
.y1419_c00001{bottom:371.462971pt;}
.y235f_c00001{bottom:371.627651pt;}
.y215d_c00001{bottom:371.628243pt;}
.ya60_c00001{bottom:371.862731pt;}
.y14a2_c00001{bottom:371.863387pt;}
.yc6b_c00001{bottom:371.864195pt;}
.y1121_c00001{bottom:372.019699pt;}
.ye82_c00001{bottom:372.027560pt;}
.yebb_c00001{bottom:372.028699pt;}
.ye1e_c00001{bottom:372.029803pt;}
.y1724_c00001{bottom:372.099859pt;}
.y1566_c00001{bottom:372.103283pt;}
.y23fa_c00001{bottom:372.107827pt;}
.y246e_c00001{bottom:372.188035pt;}
.y11d_c00001{bottom:372.267067pt;}
.yc8_c00001{bottom:372.347067pt;}
.y1582_c00001{bottom:372.420499pt;}
.y182_c00001{bottom:372.507067pt;}
.y97_c00001{bottom:372.507200pt;}
.y2311_c00001{bottom:372.669747pt;}
.y93c_c00001{bottom:372.739667pt;}
.yc84_c00001{bottom:372.741131pt;}
.y108d_c00001{bottom:372.743811pt;}
.y1a6a_c00001{bottom:372.827395pt;}
.y1887_c00001{bottom:372.985963pt;}
.y1524_c00001{bottom:373.060443pt;}
.y14eb_c00001{bottom:373.063867pt;}
.y1b2c_c00001{bottom:373.225747pt;}
.y29d_c00001{bottom:373.387067pt;}
.y1db5_c00001{bottom:373.463915pt;}
.y20b1_c00001{bottom:373.467795pt;}
.yde2_c00001{bottom:373.549443pt;}
.yc12_c00001{bottom:373.618067pt;}
.y964_c00001{bottom:373.619531pt;}
.ybab_c00001{bottom:373.620995pt;}
.y271_c00001{bottom:373.707243pt;}
.y1ced_c00001{bottom:373.783971pt;}
.y1e16_c00001{bottom:373.784555pt;}
.y2f5_c00001{bottom:373.947067pt;}
.y17ba_c00001{bottom:374.026203pt;}
.y1fed_c00001{bottom:374.027568pt;}
.y21c9_c00001{bottom:374.029795pt;}
.y1e4f_c00001{bottom:374.183019pt;}
.y456_c00001{bottom:374.187067pt;}
.y267_c00001{bottom:374.267067pt;}
.ybf2_c00001{bottom:374.417411pt;}
.y17d9_c00001{bottom:374.424499pt;}
.y2510_c00001{bottom:374.587067pt;}
.y2083_c00001{bottom:374.587200pt;}
.y1376_c00001{bottom:374.660971pt;}
.y4d5_c00001{bottom:374.667200pt;}
.y1f98_c00001{bottom:374.667739pt;}
.y2028_c00001{bottom:374.668251pt;}
.y3f7_c00001{bottom:374.827067pt;}
.y46f_c00001{bottom:375.147200pt;}
.y4eb_c00001{bottom:375.307067pt;}
.y2391_c00001{bottom:375.308227pt;}
.y1286_c00001{bottom:375.384499pt;}
.y1e8b_c00001{bottom:375.385083pt;}
.y1474_c00001{bottom:375.621555pt;}
.y1fba_c00001{bottom:375.627067pt;}
.y175f_c00001{bottom:375.858027pt;}
.y212f_c00001{bottom:376.028299pt;}
.y221c_c00001{bottom:376.029787pt;}
.y73b_c00001{bottom:376.107200pt;}
.y6f3_c00001{bottom:376.347067pt;}
.y1d7c_c00001{bottom:376.427200pt;}
.yf6d_c00001{bottom:376.501979pt;}
.y1c87_c00001{bottom:376.581555pt;}
.y1d56_c00001{bottom:376.669731pt;}
.y1a4e_c00001{bottom:376.744131pt;}
.y6bf_c00001{bottom:376.747200pt;}
.y3ac_c00001{bottom:376.827067pt;}
.y1b97_c00001{bottom:376.985027pt;}
.y495_c00001{bottom:377.067067pt;}
.y2c1_c00001{bottom:377.067200pt;}
.y16a2_c00001{bottom:377.147043pt;}
.y1b3_c00001{bottom:377.227067pt;}
.y125e_c00001{bottom:377.302243pt;}
.y1b06_c00001{bottom:377.306251pt;}
.y3e_c00001{bottom:377.307067pt;}
.y242a_c00001{bottom:377.309675pt;}
.y1b7f_c00001{bottom:377.542139pt;}
.y14c4_c00001{bottom:377.542723pt;}
.yfcd_c00001{bottom:377.546147pt;}
.y667_c00001{bottom:377.707067pt;}
.y1cc2_c00001{bottom:377.709723pt;}
.y191_c00001{bottom:377.787067pt;}
.y1e33_c00001{bottom:377.947067pt;}
.y1f78_c00001{bottom:378.027067pt;}
.y10b4_c00001{bottom:378.102507pt;}
.y1f57_c00001{bottom:378.108395pt;}
.y12ce_c00001{bottom:378.182083pt;}
.y48c_c00001{bottom:378.427067pt;}
.y1389_c00001{bottom:378.499299pt;}
.y315_c00001{bottom:378.587200pt;}
.y23af_c00001{bottom:378.669723pt;}
.y24b9_c00001{bottom:378.827067pt;}
.y1997_c00001{bottom:378.906195pt;}
.y232a_c00001{bottom:378.908075pt;}
.y20d1_c00001{bottom:378.908107pt;}
.ya9c_c00001{bottom:378.985091pt;}
.y232_c00001{bottom:378.987200pt;}
.y123a_c00001{bottom:379.142667pt;}
.y1363_c00001{bottom:379.143251pt;}
.y7a1_c00001{bottom:379.147067pt;}
.y1e0a_c00001{bottom:379.305243pt;}
.y21c_c00001{bottom:379.307067pt;}
.yd30_c00001{bottom:379.327291pt;}
.yd5d_c00001{bottom:379.351867pt;}
.y162e_c00001{bottom:379.388491pt;}
.y11d3_c00001{bottom:379.459883pt;}
.y23e0_c00001{bottom:379.467851pt;}
.y20ee_c00001{bottom:379.627907pt;}
.y126_c00001{bottom:379.707067pt;}
.ye52_c00001{bottom:379.708883pt;}
.y13f7_c00001{bottom:379.709715pt;}
.yc91_c00001{bottom:379.781507pt;}
.yb97_c00001{bottom:379.862027pt;}
.y1920_c00001{bottom:379.863355pt;}
.ya82_c00001{bottom:379.863491pt;}
.ya37_c00001{bottom:379.866419pt;}
.y24a4_c00001{bottom:379.867067pt;}
.yf16_c00001{bottom:379.947067pt;}
.y5cf_c00001{bottom:380.026707pt;}
.yffe_c00001{bottom:380.103251pt;}
.y193c_c00001{bottom:380.103835pt;}
.y5fb_c00001{bottom:380.187200pt;}
.y19f_c00001{bottom:380.347067pt;}
.y196e_c00001{bottom:380.347323pt;}
.y1657_c00001{bottom:380.584571pt;}
.y108_c00001{bottom:380.587067pt;}
.y1abe_c00001{bottom:380.587467pt;}
.yc60_c00001{bottom:380.740427pt;}
.yab5_c00001{bottom:380.741891pt;}
.y1d10_c00001{bottom:380.823939pt;}
.y21a2_c00001{bottom:380.827899pt;}
.y10d1_c00001{bottom:380.980251pt;}
.y11f2_c00001{bottom:381.060411pt;}
.y1e76_c00001{bottom:381.063835pt;}
.y67c_c00001{bottom:381.227067pt;}
.yee9_c00001{bottom:381.227803pt;}
.y2045_c00001{bottom:381.228664pt;}
.y223b_c00001{bottom:381.309659pt;}
.y1ae8_c00001{bottom:381.547467pt;}
.y914_c00001{bottom:381.618827pt;}
.y9b8_c00001{bottom:381.620291pt;}
.y4ff_c00001{bottom:381.627067pt;}
.y1804_c00001{bottom:381.783939pt;}
.y194e_c00001{bottom:381.784523pt;}
.y1a10_c00001{bottom:381.788531pt;}
.y87e_c00001{bottom:381.867067pt;}
.y12a5_c00001{bottom:382.020411pt;}
.y1342_c00001{bottom:382.024051pt;}
.y22f2_c00001{bottom:382.028275pt;}
.y24e4_c00001{bottom:382.187067pt;}
.y35e_c00001{bottom:382.187200pt;}
.y1794_c00001{bottom:382.257467pt;}
.y32e_c00001{bottom:382.347067pt;}
.y1609_c00001{bottom:382.424467pt;}
.y2061_c00001{bottom:382.668251pt;}
.y1d2f_c00001{bottom:382.669099pt;}
.y1b49_c00001{bottom:382.744523pt;}
.y15e5_c00001{bottom:382.745107pt;}
.y4c9_c00001{bottom:382.747067pt;}
.y1d9e_c00001{bottom:382.826939pt;}
.ydac_c00001{bottom:382.907067pt;}
.yf3e_c00001{bottom:383.064139pt;}
.ybd4_c00001{bottom:383.296571pt;}
.y5e2_c00001{bottom:383.306707pt;}
.y693_c00001{bottom:383.307067pt;}
.y1212_c00001{bottom:383.621523pt;}
.y1b5a_c00001{bottom:383.705107pt;}
.y81b_c00001{bottom:383.707067pt;}
.y2274_c00001{bottom:383.868067pt;}
.y1148_c00001{bottom:383.942163pt;}
.y13b0_c00001{bottom:383.946171pt;}
.y4aa_c00001{bottom:384.267651pt;}
.y1841_c00001{bottom:384.345051pt;}
.y6ad_c00001{bottom:384.347067pt;}
.yb51_c00001{bottom:384.347120pt;}
.y105b_c00001{bottom:384.501947pt;}
.y1ec_c00001{bottom:384.507067pt;}
.y1194_c00001{bottom:384.581523pt;}
.y16d0_c00001{bottom:384.663603pt;}
.y39a_c00001{bottom:384.667067pt;}
.y2290_c00001{bottom:384.669699pt;}
.y763_c00001{bottom:384.747067pt;}
.y631_c00001{bottom:384.747200pt;}
.y116e_c00001{bottom:384.818579pt;}
.y8c6_c00001{bottom:385.147067pt;}
.y1c13_c00001{bottom:385.304523pt;}
.y2e2_c00001{bottom:385.307067pt;}
.y2341_c00001{bottom:385.309643pt;}
.ycca_c00001{bottom:385.405115pt;}
.ycfb_c00001{bottom:385.432763pt;}
.y1f06_c00001{bottom:385.542691pt;}
.y2009_c00001{bottom:385.547067pt;}
.y210d_c00001{bottom:385.627200pt;}
.y22c2_c00001{bottom:385.708259pt;}
.y1ea1_c00001{bottom:385.944467pt;}
.y1c41_c00001{bottom:386.025323pt;}
.y225b_c00001{bottom:386.029747pt;}
.yc2f_c00001{bottom:386.100131pt;}
.y70c_c00001{bottom:386.107200pt;}
.yf9d_c00001{bottom:386.186643pt;}
.y1ca2_c00001{bottom:386.262795pt;}
.y519_c00001{bottom:386.267067pt;}
.y42a_c00001{bottom:386.427067pt;}
.y1c28_c00001{bottom:386.502691pt;}
.y648_c00001{bottom:386.587067pt;}
.y1cdb_c00001{bottom:386.665267pt;}
.y1a35_c00001{bottom:386.669691pt;}
.y583_c00001{bottom:386.747067pt;}
.y1418_c00001{bottom:386.822963pt;}
.y202_c00001{bottom:386.826795pt;}
.y235e_c00001{bottom:386.907483pt;}
.y215c_c00001{bottom:386.908075pt;}
.y1ba8_c00001{bottom:387.143219pt;}
.y33e_c00001{bottom:387.147067pt;}
.y1120_c00001{bottom:387.299531pt;}
.y1862_c00001{bottom:387.307067pt;}
.ye81_c00001{bottom:387.307392pt;}
.yeba_c00001{bottom:387.308531pt;}
.ye1d_c00001{bottom:387.309635pt;}
.y118_c00001{bottom:387.387067pt;}
.y15be_c00001{bottom:387.459851pt;}
.y19e9_c00001{bottom:387.463275pt;}
.y23f9_c00001{bottom:387.467819pt;}
.y246d_c00001{bottom:387.548027pt;}
.y805_c00001{bottom:387.627067pt;}
.y98f_c00001{bottom:387.862787pt;}
.y24f4_c00001{bottom:387.947067pt;}
.y22a8_c00001{bottom:388.029739pt;}
.y1c99_c00001{bottom:388.103219pt;}
.y108c_c00001{bottom:388.103803pt;}
.yb04_c00001{bottom:388.262939pt;}
.y1c6f_c00001{bottom:388.265795pt;}
.y1d6_c00001{bottom:388.347067pt;}
.y1523_c00001{bottom:388.420435pt;}
.y14ea_c00001{bottom:388.423859pt;}
.y1b2b_c00001{bottom:388.505579pt;}
.y16f9_c00001{bottom:388.584859pt;}
.y1fcd_c00001{bottom:388.587200pt;}
.y7f2_c00001{bottom:388.667067pt;}
.yae4_c00001{bottom:388.742651pt;}
.yc50_c00001{bottom:388.744115pt;}
.y1eec_c00001{bottom:388.823907pt;}
.y553_c00001{bottom:388.827067pt;}
.y20b0_c00001{bottom:388.827787pt;}
.yde1_c00001{bottom:388.909435pt;}
.y125_c00001{bottom:388.987075pt;}
.y1bcc_c00001{bottom:389.063803pt;}
.yb4_c00001{bottom:389.068683pt;}
.yd82_c00001{bottom:389.147067pt;}
.y21e3_c00001{bottom:389.228099pt;}
.y1fec_c00001{bottom:389.307400pt;}
.y14fe_c00001{bottom:389.380435pt;}
.y17b9_c00001{bottom:389.386195pt;}
.y413_c00001{bottom:389.387067pt;}
.y1e4e_c00001{bottom:389.462851pt;}
.y71a_c00001{bottom:389.547067pt;}
.y9c3_c00001{bottom:389.619587pt;}
.yb89_c00001{bottom:389.620107pt;}
.yb33_c00001{bottom:389.621051pt;}
.y1f18_c00001{bottom:389.626843pt;}
.y7d0_c00001{bottom:389.707067pt;}
.y17d8_c00001{bottom:389.784491pt;}
.y779_c00001{bottom:389.787067pt;}
.y6e1_c00001{bottom:389.867200pt;}
.y1375_c00001{bottom:390.020963pt;}
.y2027_c00001{bottom:390.028243pt;}
.y1f7_c00001{bottom:390.347067pt;}
.y1316_c00001{bottom:390.421179pt;}
.y2390_c00001{bottom:390.668219pt;}
.y1285_c00001{bottom:390.744491pt;}
.y1e8a_c00001{bottom:390.745075pt;}
.y60a_c00001{bottom:390.747067pt;}
.y9f0_c00001{bottom:390.901947pt;}
.y7dd_c00001{bottom:390.907067pt;}
.y3ec_c00001{bottom:390.907200pt;}
.y1473_c00001{bottom:390.981547pt;}
.y19c5_c00001{bottom:390.984971pt;}
.y1f38_c00001{bottom:391.147200pt;}
.y175e_c00001{bottom:391.218019pt;}
.y22e0_c00001{bottom:391.228059pt;}
.y850_c00001{bottom:391.307067pt;}
.y212e_c00001{bottom:391.308131pt;}
.y221b_c00001{bottom:391.309619pt;}
.y442_c00001{bottom:391.387067pt;}
.y753_c00001{bottom:391.467067pt;}
.yf6c_c00001{bottom:391.861971pt;}
.y2375_c00001{bottom:391.867107pt;}
.y1c86_c00001{bottom:391.941547pt;}
.y78e_c00001{bottom:392.027067pt;}
.y1a4d_c00001{bottom:392.104123pt;}
.y830_c00001{bottom:392.335651pt;}
.y1b96_c00001{bottom:392.345019pt;}
.y162_c00001{bottom:392.347067pt;}
.y16a1_c00001{bottom:392.426875pt;}
.y125d_c00001{bottom:392.582075pt;}
.y102c_c00001{bottom:392.585499pt;}
.y1b05_c00001{bottom:392.666243pt;}
.y2429_c00001{bottom:392.669667pt;}
.y8b_c00001{bottom:392.747200pt;}
.y1b7e_c00001{bottom:392.902131pt;}
.y1543_c00001{bottom:392.902715pt;}
.yfcc_c00001{bottom:392.906139pt;}
.y8eb_c00001{bottom:392.980400pt;}
.y1cc1_c00001{bottom:393.069715pt;}
.y13d5_c00001{bottom:393.142611pt;}
.y2446_c00001{bottom:393.146635pt;}
.y60_c00001{bottom:393.307067pt;}
.y616_c00001{bottom:393.387067pt;}
.y1df7_c00001{bottom:393.388435pt;}
.y10b3_c00001{bottom:393.462499pt;}
.y159e_c00001{bottom:393.542659pt;}
.y181_c00001{bottom:393.547067pt;}
.y1388_c00001{bottom:393.779131pt;}
.y1440_c00001{bottom:393.863299pt;}
.y23ae_c00001{bottom:394.029715pt;}
.y1996_c00001{bottom:394.266187pt;}
.y2329_c00001{bottom:394.268067pt;}
.y20d0_c00001{bottom:394.268099pt;}
.y627_c00001{bottom:394.269267pt;}
.y29c_c00001{bottom:394.347067pt;}
.y10f8_c00001{bottom:394.423083pt;}
.y1301_c00001{bottom:394.502659pt;}
.y1362_c00001{bottom:394.503243pt;}
.y1e09_c00001{bottom:394.665235pt;}
.y1459_c00001{bottom:394.739715pt;}
.y1d7b_c00001{bottom:394.827200pt;}
.y20ed_c00001{bottom:394.907739pt;}
.y2f4_c00001{bottom:394.987067pt;}
.ye51_c00001{bottom:394.988715pt;}
.y191f_c00001{bottom:395.143187pt;}
.y266_c00001{bottom:395.227067pt;}
.y14b_c00001{bottom:395.387067pt;}
.y193b_c00001{bottom:395.463827pt;}
.y720_c00001{bottom:395.547067pt;}
.y4d4_c00001{bottom:395.707200pt;}
.y3f6_c00001{bottom:395.787067pt;}
.y1abd_c00001{bottom:395.867299pt;}
.y1656_c00001{bottom:395.944563pt;}
.y2310_c00001{bottom:396.029707pt;}
.y14a1_c00001{bottom:396.103771pt;}
.y21a1_c00001{bottom:396.107731pt;}
.y1a69_c00001{bottom:396.187355pt;}
.y4ea_c00001{bottom:396.267067pt;}
.y1e32_c00001{bottom:396.347067pt;}
.y1717_c00001{bottom:396.420403pt;}
.y1565_c00001{bottom:396.423827pt;}
.yf15_c00001{bottom:396.507435pt;}
.yee8_c00001{bottom:396.507635pt;}
.y1581_c00001{bottom:396.660883pt;}
.y223a_c00001{bottom:396.669651pt;}
.yc5d_c00001{bottom:396.741947pt;}
.ya5f_c00001{bottom:396.743411pt;}
.ya36_c00001{bottom:396.746339pt;}
.y2d8_c00001{bottom:396.747067pt;}
.y1ae7_c00001{bottom:396.827299pt;}
.yd2f_c00001{bottom:396.926779pt;}
.yd5c_c00001{bottom:396.951355pt;}
.y1817_c00001{bottom:397.063771pt;}
.y194d_c00001{bottom:397.064355pt;}
.y1a0f_c00001{bottom:397.148523pt;}
.y1886_c00001{bottom:397.226347pt;}
.y22f1_c00001{bottom:397.308107pt;}
.y21c8_c00001{bottom:397.309595pt;}
.y12a4_c00001{bottom:397.380403pt;}
.y1341_c00001{bottom:397.384043pt;}
.y6f2_c00001{bottom:397.387067pt;}
.y93b_c00001{bottom:397.620347pt;}
.y6be_c00001{bottom:397.707200pt;}
.y1608_c00001{bottom:397.784459pt;}
.y3ab_c00001{bottom:397.867067pt;}
.y96_c00001{bottom:397.947200pt;}
.y1b48_c00001{bottom:398.024355pt;}
.y1bb8_c00001{bottom:398.024939pt;}
.yec_c00001{bottom:398.027200pt;}
.y1f97_c00001{bottom:398.027699pt;}
.y2060_c00001{bottom:398.028243pt;}
.y1d2e_c00001{bottom:398.029091pt;}
.y1d9d_c00001{bottom:398.186931pt;}
.y1b2_c00001{bottom:398.267067pt;}
.y3d_c00001{bottom:398.347067pt;}
.yc11_c00001{bottom:398.418227pt;}
.y963_c00001{bottom:398.419691pt;}
.ybaa_c00001{bottom:398.421155pt;}
.yf3d_c00001{bottom:398.424131pt;}
.y31d_c00001{bottom:398.427200pt;}
.y666_c00001{bottom:398.667067pt;}
.y154a_c00001{bottom:398.981515pt;}
.y1b59_c00001{bottom:398.984939pt;}
.y254_c00001{bottom:399.067067pt;}
.y5ce_c00001{bottom:399.227067pt;}
.y2273_c00001{bottom:399.228059pt;}
.ybf1_c00001{bottom:399.298091pt;}
.y1147_c00001{bottom:399.302155pt;}
.y13af_c00001{bottom:399.306163pt;}
.y48b_c00001{bottom:399.387067pt;}
.y314_c00001{bottom:399.547200pt;}
.y1840_c00001{bottom:399.705043pt;}
.y24b8_c00001{bottom:399.867067pt;}
.y170d_c00001{bottom:399.941515pt;}
.y1489_c00001{bottom:399.942099pt;}
.y35d_c00001{bottom:399.947200pt;}
.y1d55_c00001{bottom:400.029691pt;}
.y7a0_c00001{bottom:400.107067pt;}
.y3d6_c00001{bottom:400.107200pt;}
.y21b_c00001{bottom:400.267067pt;}
.y7b5_c00001{bottom:400.347067pt;}
.y2082_c00001{bottom:400.428307pt;}
.y2340_c00001{bottom:400.669635pt;}
.y24a3_c00001{bottom:400.827067pt;}
.y14c3_c00001{bottom:400.902683pt;}
.y2531_c00001{bottom:400.987067pt;}
.y22c1_c00001{bottom:401.068251pt;}
.yb50_c00001{bottom:401.146520pt;}
.y1ea0_c00001{bottom:401.304459pt;}
.y1c40_c00001{bottom:401.305155pt;}
.yc7_c00001{bottom:401.307067pt;}
.y225a_c00001{bottom:401.309579pt;}
.y1f56_c00001{bottom:401.468355pt;}
.y1b6c_c00001{bottom:401.542627pt;}
.yf9c_c00001{bottom:401.546635pt;}
.y107_c00001{bottom:401.627067pt;}
.y1c27_c00001{bottom:401.862683pt;}
.y231_c00001{bottom:401.947200pt;}
.y1cda_c00001{bottom:402.025259pt;}
.y1fb9_c00001{bottom:402.027067pt;}
.y726_c00001{bottom:402.187200pt;}
.y235d_c00001{bottom:402.267475pt;}
.y215b_c00001{bottom:402.268067pt;}
.y12cd_c00001{bottom:402.502627pt;}
.y1ba7_c00001{bottom:402.503211pt;}
.y5e1_c00001{bottom:402.507067pt;}
.y4fe_c00001{bottom:402.587067pt;}
.y111f_c00001{bottom:402.659523pt;}
.ye80_c00001{bottom:402.667384pt;}
.yeb9_c00001{bottom:402.668523pt;}
.ye1c_c00001{bottom:402.669627pt;}
.y15bd_c00001{bottom:402.739683pt;}
.y162d_c00001{bottom:402.748451pt;}
.y19e8_c00001{bottom:402.823267pt;}
.y87d_c00001{bottom:402.827067pt;}
.y23df_c00001{bottom:402.827811pt;}
.y246c_c00001{bottom:402.827859pt;}
.y13f6_c00001{bottom:403.069675pt;}
.ycc9_c00001{bottom:403.084475pt;}
.ycfa_c00001{bottom:403.112123pt;}
.y455_c00001{bottom:403.227067pt;}
.y108b_c00001{bottom:403.383635pt;}
.y1239_c00001{bottom:403.463211pt;}
.y18a7_c00001{bottom:403.463795pt;}
.y4a9_c00001{bottom:403.547067pt;}
.y1c6e_c00001{bottom:403.625787pt;}
.y11d2_c00001{bottom:403.700267pt;}
.y4c8_c00001{bottom:403.707067pt;}
.y1b2a_c00001{bottom:403.865571pt;}
.ya9b_c00001{bottom:403.865771pt;}
.y16f8_c00001{bottom:403.944851pt;}
.ydab_c00001{bottom:403.947067pt;}
.y1eeb_c00001{bottom:404.103739pt;}
.y20af_c00001{bottom:404.107619pt;}
.y46e_c00001{bottom:404.187200pt;}
.yde0_c00001{bottom:404.189267pt;}
.yffd_c00001{bottom:404.343635pt;}
.y692_c00001{bottom:404.347067pt;}
.y1bcb_c00001{bottom:404.423795pt;}
.y1f77_c00001{bottom:404.427067pt;}
.y21e2_c00001{bottom:404.507931pt;}
.y2044_c00001{bottom:404.508464pt;}
.y196d_c00001{bottom:404.587707pt;}
.y81a_c00001{bottom:404.667067pt;}
.y1feb_c00001{bottom:404.667392pt;}
.y98e_c00001{bottom:404.742707pt;}
.yad0_c00001{bottom:404.744171pt;}
.y17b8_c00001{bottom:404.746187pt;}
.y1e4d_c00001{bottom:404.822843pt;}
.y1803_c00001{bottom:405.063739pt;}
.y17d7_c00001{bottom:405.064323pt;}
.y73a_c00001{bottom:405.147200pt;}
.y10d0_c00001{bottom:405.220635pt;}
.y2026_c00001{bottom:405.308075pt;}
.y11f1_c00001{bottom:405.380955pt;}
.y380_c00001{bottom:405.547067pt;}
.yab4_c00001{bottom:405.621107pt;}
.yae3_c00001{bottom:405.622571pt;}
.y399_c00001{bottom:405.707067pt;}
.y762_c00001{bottom:405.787067pt;}
.y630_c00001{bottom:405.787200pt;}
.y1284_c00001{bottom:406.024323pt;}
.y1e89_c00001{bottom:406.024907pt;}
.y238f_c00001{bottom:406.028211pt;}
.y494_c00001{bottom:406.107067pt;}
.y1472_c00001{bottom:406.341539pt;}
.y19c4_c00001{bottom:406.344963pt;}
.y2e1_c00001{bottom:406.347067pt;}
.y913_c00001{bottom:406.418987pt;}
.y9b7_c00001{bottom:406.420451pt;}
.y22df_c00001{bottom:406.507891pt;}
.y1793_c00001{bottom:406.578011pt;}
.y212d_c00001{bottom:406.668123pt;}
.y15e4_c00001{bottom:406.985491pt;}
.yf6b_c00001{bottom:407.141803pt;}
.y1c85_c00001{bottom:407.221379pt;}
.y1a4c_c00001{bottom:407.383955pt;}
.y429_c00001{bottom:407.387067pt;}
.y1680_c00001{bottom:407.547067pt;}
.y647_c00001{bottom:407.627067pt;}
.y1b95_c00001{bottom:407.705011pt;}
.y582_c00001{bottom:407.707067pt;}
.y9ef_c00001{bottom:407.781867pt;}
.y24d3_c00001{bottom:407.867067pt;}
.y1211_c00001{bottom:407.942067pt;}
.y16cf_c00001{bottom:407.943403pt;}
.y1b04_c00001{bottom:407.946075pt;}
.y59a_c00001{bottom:407.947200pt;}
.y228f_c00001{bottom:408.029659pt;}
.y33d_c00001{bottom:408.107067pt;}
.ybd3_c00001{bottom:408.177251pt;}
.y190a_c00001{bottom:408.182547pt;}
.y1be6_c00001{bottom:408.266131pt;}
.yb3_c00001{bottom:408.269043pt;}
.y1cc0_c00001{bottom:408.349547pt;}
.y2445_c00001{bottom:408.426467pt;}
.y13d4_c00001{bottom:408.502603pt;}
.y5fa_c00001{bottom:408.589043pt;}
.y804_c00001{bottom:408.667067pt;}
.y105a_c00001{bottom:408.822491pt;}
.y1193_c00001{bottom:408.902067pt;}
.y24f3_c00001{bottom:408.987067pt;}
.y116d_c00001{bottom:409.139123pt;}
.y1d5_c00001{bottom:409.307067pt;}
.y23ad_c00001{bottom:409.309547pt;}
.y1c12_c00001{bottom:409.544907pt;}
.y1995_c00001{bottom:409.626179pt;}
.y2328_c00001{bottom:409.628059pt;}
.y20cf_c00001{bottom:409.628091pt;}
.y7f1_c00001{bottom:409.707067pt;}
.y10f7_c00001{bottom:409.783075pt;}
.y552_c00001{bottom:409.787067pt;}
.y1bfe_c00001{bottom:409.862651pt;}
.y1361_c00001{bottom:409.863235pt;}
.y1e08_c00001{bottom:410.025227pt;}
.y1a34_c00001{bottom:410.029651pt;}
.y1417_c00001{bottom:410.102763pt;}
.yd81_c00001{bottom:410.187067pt;}
.y20ec_c00001{bottom:410.267731pt;}
.y124_c00001{bottom:410.347067pt;}
.ye50_c00001{bottom:410.348707pt;}
.y67b_c00001{bottom:410.427067pt;}
.y719_c00001{bottom:410.507067pt;}
.y7cf_c00001{bottom:410.667067pt;}
.yc9f_c00001{bottom:410.737459pt;}
.y209b_c00001{bottom:410.747067pt;}
.y778_c00001{bottom:410.827067pt;}
.y6e0_c00001{bottom:410.907200pt;}
.yc2e_c00001{bottom:410.980811pt;}
.y731_c00001{bottom:411.147067pt;}
.y1abc_c00001{bottom:411.227291pt;}
.y22a7_c00001{bottom:411.309539pt;}
.y1f6_c00001{bottom:411.387067pt;}
.y14a0_c00001{bottom:411.463763pt;}
.y21a0_c00001{bottom:411.467723pt;}
.y1a68_c00001{bottom:411.547347pt;}
.y1723_c00001{bottom:411.700235pt;}
.y1564_c00001{bottom:411.783819pt;}
.y609_c00001{bottom:411.787067pt;}
.y3eb_c00001{bottom:411.867200pt;}
.yf14_c00001{bottom:411.867427pt;}
.yee7_c00001{bottom:411.867627pt;}
.y2008_c00001{bottom:411.947067pt;}
.y210c_c00001{bottom:412.027200pt;}
.y221a_c00001{bottom:412.029643pt;}
.y1ae6_c00001{bottom:412.187291pt;}
.y201_c00001{bottom:412.347067pt;}
.y1816_c00001{bottom:412.423763pt;}
.y11b6_c00001{bottom:412.424347pt;}
.y1eb_c00001{bottom:412.427067pt;}
.y1a0e_c00001{bottom:412.508515pt;}
.y1885_c00001{bottom:412.586339pt;}
.y1cfc_c00001{bottom:412.660235pt;}
.y22f0_c00001{bottom:412.668099pt;}
.ya15_c00001{bottom:412.743467pt;}
.y14e9_c00001{bottom:412.744403pt;}
.y1f17_c00001{bottom:412.906643pt;}
.y1607_c00001{bottom:413.064291pt;}
.y78d_c00001{bottom:413.067067pt;}
.yb03_c00001{bottom:413.143619pt;}
.y1d7a_c00001{bottom:413.227200pt;}
.y1f96_c00001{bottom:413.307531pt;}
.y205f_c00001{bottom:413.308075pt;}
.y1d2d_c00001{bottom:413.308923pt;}
.y1bb7_c00001{bottom:413.384931pt;}
.y6ac_c00001{bottom:413.387067pt;}
.y1d9c_c00001{bottom:413.546923pt;}
.y626_c00001{bottom:413.548683pt;}
.y14fd_c00001{bottom:413.620819pt;}
.ya5e_c00001{bottom:413.623331pt;}
.yc4f_c00001{bottom:413.624795pt;}
.y1861_c00001{bottom:413.707067pt;}
.y1315_c00001{bottom:413.781139pt;}
.yf3c_c00001{bottom:413.784123pt;}
.y18f7_c00001{bottom:414.024875pt;}
.y8c5_c00001{bottom:414.187067pt;}
.y1549_c00001{bottom:414.341507pt;}
.y1b58_c00001{bottom:414.344931pt;}
.y1c9_c00001{bottom:414.347067pt;}
.y93a_c00001{bottom:414.419747pt;}
.yb88_c00001{bottom:414.420267pt;}
.yc83_c00001{bottom:414.421211pt;}
.y180_c00001{bottom:414.507067pt;}
.y2272_c00001{bottom:414.507891pt;}
.yd2e_c00001{bottom:414.606139pt;}
.yd5b_c00001{bottom:414.630715pt;}
.y13ae_c00001{bottom:414.666155pt;}
.y518_c00001{bottom:414.667875pt;}
.y241b_c00001{bottom:414.669579pt;}
.y1e31_c00001{bottom:414.747067pt;}
.y183f_c00001{bottom:414.984875pt;}
.y70b_c00001{bottom:415.067200pt;}
.y172f_c00001{bottom:415.221931pt;}
.y2374_c00001{bottom:415.227067pt;}
.y18c2_c00001{bottom:415.302091pt;}
.y117_c00001{bottom:415.307067pt;}
.y1d54_c00001{bottom:415.309523pt;}
.y29b_c00001{bottom:415.387067pt;}
.y175d_c00001{bottom:415.538563pt;}
.y1fcc_c00001{bottom:415.707067pt;}
.y16a0_c00001{bottom:415.786835pt;}
.y233f_c00001{bottom:416.029627pt;}
.y14c2_c00001{bottom:416.182515pt;}
.y218f_c00001{bottom:416.187067pt;}
.y31c_c00001{bottom:416.187200pt;}
.y14a_c00001{bottom:416.347067pt;}
.y65a_c00001{bottom:416.427067pt;}
.y22c0_c00001{bottom:416.428243pt;}
.y1e9f_c00001{bottom:416.584291pt;}
.y4d3_c00001{bottom:416.667067pt;}
.y2259_c00001{bottom:416.669571pt;}
.y1df6_c00001{bottom:416.748395pt;}
.y3f5_c00001{bottom:416.827067pt;}
.y1ca1_c00001{bottom:416.902619pt;}
.y102b_c00001{bottom:416.906043pt;}
.yf9b_c00001{bottom:416.906627pt;}
.y1f37_c00001{bottom:416.907200pt;}
.y1b7d_c00001{bottom:417.142515pt;}
.y143f_c00001{bottom:417.143099pt;}
.yfcb_c00001{bottom:417.226683pt;}
.y1cd9_c00001{bottom:417.305091pt;}
.y4e9_c00001{bottom:417.307067pt;}
.y23d0_c00001{bottom:417.309515pt;}
.y235c_c00001{bottom:417.627467pt;}
.y215a_c00001{bottom:417.628059pt;}
.y27e_c00001{bottom:417.787067pt;}
.y8ea_c00001{bottom:417.861080pt;}
.y18b5_c00001{bottom:417.862619pt;}
.y159d_c00001{bottom:417.863203pt;}
.y111e_c00001{bottom:418.019515pt;}
.ye7f_c00001{bottom:418.027376pt;}
.yeb8_c00001{bottom:418.028515pt;}
.ye1b_c00001{bottom:418.029619pt;}
.y15bc_c00001{bottom:418.099675pt;}
.y23de_c00001{bottom:418.107643pt;}
.y246b_c00001{bottom:418.187851pt;}
.y8a_c00001{bottom:418.267067pt;}
.y6f1_c00001{bottom:418.347067pt;}
.y71f_c00001{bottom:418.427067pt;}
.y108a_c00001{bottom:418.743627pt;}
.y6bd_c00001{bottom:418.747200pt;}
.y1300_c00001{bottom:418.823203pt;}
.y18a6_c00001{bottom:418.823787pt;}
.y3aa_c00001{bottom:418.827067pt;}
.y1c6d_c00001{bottom:418.985779pt;}
.y1458_c00001{bottom:419.060259pt;}
.y2c0_c00001{bottom:419.067200pt;}
.y1b29_c00001{bottom:419.225563pt;}
.y16f7_c00001{bottom:419.304843pt;}
.y1b1_c00001{bottom:419.307067pt;}
.y230f_c00001{bottom:419.309507pt;}
.y3c_c00001{bottom:419.387067pt;}
.y191e_c00001{bottom:419.463731pt;}
.y20ae_c00001{bottom:419.467611pt;}
.yddf_c00001{bottom:419.549259pt;}
.y270_c00001{bottom:419.627208pt;}
.yffc_c00001{bottom:419.703627pt;}
.y665_c00001{bottom:419.707067pt;}
.y1cec_c00001{bottom:419.783787pt;}
.y193a_c00001{bottom:419.784371pt;}
.y7dc_c00001{bottom:419.867067pt;}
.y21e1_c00001{bottom:419.867923pt;}
.y1fea_c00001{bottom:420.027384pt;}
.y1e4c_c00001{bottom:420.182835pt;}
.y1655_c00001{bottom:420.265107pt;}
.y123_c00001{bottom:420.267067pt;}
.y84f_c00001{bottom:420.347067pt;}
.y1802_c00001{bottom:420.423731pt;}
.y48a_c00001{bottom:420.427067pt;}
.y313_c00001{bottom:420.587200pt;}
.y12e9_c00001{bottom:420.660787pt;}
.y2025_c00001{bottom:420.668067pt;}
.y21c7_c00001{bottom:420.669555pt;}
.ycc8_c00001{bottom:420.683963pt;}
.ycf9_c00001{bottom:420.711611pt;}
.ya9a_c00001{bottom:420.745691pt;}
.y24b7_c00001{bottom:420.827067pt;}
.yeb_c00001{bottom:420.907200pt;}
.y1580_c00001{bottom:420.981427pt;}
.y3d5_c00001{bottom:421.067067pt;}
.y79f_c00001{bottom:421.147067pt;}
.y7b4_c00001{bottom:421.307067pt;}
.y238e_c00001{bottom:421.308043pt;}
.y1283_c00001{bottom:421.384315pt;}
.y1e88_c00001{bottom:421.384899pt;}
.y161_c00001{bottom:421.387067pt;}
.y12a3_c00001{bottom:421.620787pt;}
.y1471_c00001{bottom:421.621371pt;}
.yad7_c00001{bottom:421.622627pt;}
.yacf_c00001{bottom:421.624091pt;}
.ya35_c00001{bottom:421.627019pt;}
.y1340_c00001{bottom:421.704587pt;}
.y19c3_c00001{bottom:421.704955pt;}
.y1792_c00001{bottom:421.857843pt;}
.y24a2_c00001{bottom:421.867067pt;}
.y22de_c00001{bottom:421.867883pt;}
.y2530_c00001{bottom:421.947067pt;}
.y1db4_c00001{bottom:422.024843pt;}
.y212c_c00001{bottom:422.028115pt;}
.y1b47_c00001{bottom:422.344899pt;}
.y5f_c00001{bottom:422.347067pt;}
.yab3_c00001{bottom:422.420507pt;}
.y1146_c00001{bottom:422.581955pt;}
.y1a4b_c00001{bottom:422.743947pt;}
.y35c_c00001{bottom:422.907200pt;}
.y1b94_c00001{bottom:422.984843pt;}
.y15b0_c00001{bottom:423.221899pt;}
.yc10_c00001{bottom:423.298907pt;}
.y962_c00001{bottom:423.300371pt;}
.yba9_c00001{bottom:423.301835pt;}
.y125c_c00001{bottom:423.302059pt;}
.y1b03_c00001{bottom:423.306067pt;}
.y1909_c00001{bottom:423.542539pt;}
.y2081_c00001{bottom:423.708107pt;}
.y1cbf_c00001{bottom:423.709539pt;}
.y2444_c00001{bottom:423.786459pt;}
.y13d3_c00001{bottom:423.862595pt;}
.y493_c00001{bottom:423.867067pt;}
.y2f3_c00001{bottom:423.947067pt;}
.y10b2_c00001{bottom:424.102323pt;}
.ybf0_c00001{bottom:424.178771pt;}
.y1192_c00001{bottom:424.181899pt;}
.y1488_c00001{bottom:424.182483pt;}
.y454_c00001{bottom:424.187067pt;}
.y265_c00001{bottom:424.267067pt;}
.y173a_c00001{bottom:424.499115pt;}
.y250f_c00001{bottom:424.587067pt;}
.y23ac_c00001{bottom:424.669539pt;}
.y4c7_c00001{bottom:424.747067pt;}
.y1f55_c00001{bottom:424.828315pt;}
.y1994_c00001{bottom:424.906011pt;}
.y2327_c00001{bottom:424.907891pt;}
.y2171_c00001{bottom:424.907923pt;}
.y10f6_c00001{bottom:425.062907pt;}
.y1bfd_c00001{bottom:425.142483pt;}
.y1f05_c00001{bottom:425.143067pt;}
.y46d_c00001{bottom:425.147200pt;}
.y1e07_c00001{bottom:425.305059pt;}
.y691_c00001{bottom:425.307067pt;}
.y89f_c00001{bottom:425.387067pt;}
.y1416_c00001{bottom:425.462755pt;}
.y1c3f_c00001{bottom:425.625699pt;}
.y20eb_c00001{bottom:425.627723pt;}
.y2d7_c00001{bottom:425.707067pt;}
.ye4f_c00001{bottom:425.708699pt;}
.y1b6b_c00001{bottom:425.863171pt;}
.y167f_c00001{bottom:425.947067pt;}
.ydaa_c00001{bottom:426.027067pt;}
.yb4f_c00001{bottom:426.027200pt;}
.y19e7_c00001{bottom:426.103067pt;}
.y23f8_c00001{bottom:426.107611pt;}
.y162c_c00001{bottom:426.108411pt;}
.y13f5_c00001{bottom:426.349475pt;}
.y37f_c00001{bottom:426.507067pt;}
.y1abb_c00001{bottom:426.587283pt;}
.y398_c00001{bottom:426.747067pt;}
.y12cc_c00001{bottom:426.823171pt;}
.y149f_c00001{bottom:426.823755pt;}
.y1a67_c00001{bottom:426.827179pt;}
.y219f_c00001{bottom:426.827715pt;}
.y1522_c00001{bottom:427.060227pt;}
.y1e75_c00001{bottom:427.063651pt;}
.y5cd_c00001{bottom:427.067067pt;}
.y8c3_c00001{bottom:427.227067pt;}
.yf13_c00001{bottom:427.227419pt;}
.yee6_c00001{bottom:427.227619pt;}
.y2219_c00001{bottom:427.309475pt;}
.y2e0_c00001{bottom:427.387067pt;}
.y1ae5_c00001{bottom:427.547283pt;}
.yb2_c00001{bottom:427.548459pt;}
.y1238_c00001{bottom:427.783755pt;}
.y18d0_c00001{bottom:427.784339pt;}
.y1a0d_c00001{bottom:427.788347pt;}
.yc2d_c00001{bottom:427.860731pt;}
.y1884_c00001{bottom:427.866171pt;}
.y2043_c00001{bottom:427.868424pt;}
.y5f9_c00001{bottom:427.868459pt;}
.y1cfb_c00001{bottom:428.020227pt;}
.y11d1_c00001{bottom:428.020811pt;}
.y17b7_c00001{bottom:428.025987pt;}
.y253_c00001{bottom:428.107067pt;}
.y1606_c00001{bottom:428.424283pt;}
.y428_c00001{bottom:428.427067pt;}
.y1f95_c00001{bottom:428.667523pt;}
.y205e_c00001{bottom:428.668067pt;}
.y1d2c_c00001{bottom:428.668915pt;}
.y1bb6_c00001{bottom:428.744923pt;}
.y581_c00001{bottom:428.747067pt;}
.y1d9b_c00001{bottom:428.826755pt;}
.y24d2_c00001{bottom:428.827067pt;}
.y196c_c00001{bottom:428.908251pt;}
.y33c_c00001{bottom:429.147067pt;}
.y21a_c00001{bottom:429.307067pt;}
.y17d6_c00001{bottom:429.384867pt;}
.y10cf_c00001{bottom:429.541179pt;}
.y11f0_c00001{bottom:429.621339pt;}
.y98d_c00001{bottom:429.623387pt;}
.y803_c00001{bottom:429.627067pt;}
.y2271_c00001{bottom:429.867883pt;}
.y13ad_c00001{bottom:429.945987pt;}
.y24f2_c00001{bottom:429.947067pt;}
.y241a_c00001{bottom:430.029571pt;}
.y183e_c00001{bottom:430.344867pt;}
.y1d4_c00001{bottom:430.347067pt;}
.ybbe_c00001{bottom:430.421267pt;}
.yae2_c00001{bottom:430.422731pt;}
.yc4e_c00001{bottom:430.424195pt;}
.y18c1_c00001{bottom:430.581923pt;}
.y106_c00001{bottom:430.587067pt;}
.y7f0_c00001{bottom:430.667067pt;}
.y1d53_c00001{bottom:430.669515pt;}
.y175c_c00001{bottom:430.818395pt;}
.y80_c00001{bottom:430.827067pt;}
.y169f_c00001{bottom:431.146827pt;}
.y912_c00001{bottom:431.299667pt;}
.yb87_c00001{bottom:431.300187pt;}
.y9b6_c00001{bottom:431.301131pt;}
.y16ce_c00001{bottom:431.303363pt;}
.y15e3_c00001{bottom:431.306035pt;}
.y228e_c00001{bottom:431.309459pt;}
.y412_c00001{bottom:431.387067pt;}
.yf6a_c00001{bottom:431.462347pt;}
.y1c84_c00001{bottom:431.541923pt;}
.y14c1_c00001{bottom:431.542507pt;}
.y718_c00001{bottom:431.547067pt;}
.y1be5_c00001{bottom:431.626091pt;}
.y4fd_c00001{bottom:431.627067pt;}
.y7ce_c00001{bottom:431.707067pt;}
.y22bf_c00001{bottom:431.708075pt;}
.y777_c00001{bottom:431.787067pt;}
.y1d79_c00001{bottom:431.787200pt;}
.y6df_c00001{bottom:431.947067pt;}
.y2258_c00001{bottom:432.029563pt;}
.y1210_c00001{bottom:432.182451pt;}
.y102a_c00001{bottom:432.185875pt;}
.yf9a_c00001{bottom:432.186459pt;}
.y730_c00001{bottom:432.187067pt;}
.yd2d_c00001{bottom:432.205627pt;}
.yd5a_c00001{bottom:432.230203pt;}
.y1f5_c00001{bottom:432.347067pt;}
.y143e_c00001{bottom:432.503091pt;}
.y9ee_c00001{bottom:432.662547pt;}
.y2239_c00001{bottom:432.669507pt;}
.y608_c00001{bottom:432.747067pt;}
.y625_c00001{bottom:432.828099pt;}
.y235b_c00001{bottom:432.907299pt;}
.y20ce_c00001{bottom:432.907891pt;}
.ybd2_c00001{bottom:433.057931pt;}
.y1059_c00001{bottom:433.062875pt;}
.y739_c00001{bottom:433.067200pt;}
.y1513_c00001{bottom:433.142451pt;}
.y1360_c00001{bottom:433.143035pt;}
.y1e30_c00001{bottom:433.147067pt;}
.y111d_c00001{bottom:433.299347pt;}
.ye7e_c00001{bottom:433.307208pt;}
.yeb7_c00001{bottom:433.308347pt;}
.ye1a_c00001{bottom:433.309451pt;}
.y116c_c00001{bottom:433.459667pt;}
.y441_c00001{bottom:433.467067pt;}
.y23dd_c00001{bottom:433.467635pt;}
.y1c11_c00001{bottom:433.865451pt;}
.y517_c00001{bottom:433.947291pt;}
.y18a5_c00001{bottom:434.103619pt;}
.y1c6c_c00001{bottom:434.265611pt;}
.y6ab_c00001{bottom:434.347067pt;}
.y1b28_c00001{bottom:434.505395pt;}
.y22a6_c00001{bottom:434.669499pt;}
.y8e9_c00001{bottom:434.741000pt;}
.y20ad_c00001{bottom:434.827603pt;}
.ydde_c00001{bottom:434.909251pt;}
.y1563_c00001{bottom:435.063619pt;}
.y21e0_c00001{bottom:435.227915pt;}
.y82f_c00001{bottom:435.295915pt;}
.y200_c00001{bottom:435.307067pt;}
.y1fe9_c00001{bottom:435.307216pt;}
.y1c8_c00001{bottom:435.387067pt;}
.y17f_c00001{bottom:435.547067pt;}
.y19ae_c00001{bottom:435.783723pt;}
.y599_c00001{bottom:435.947075pt;}
.y12e8_c00001{bottom:436.020779pt;}
.y646_c00001{bottom:436.026891pt;}
.y2024_c00001{bottom:436.028059pt;}
.y70a_c00001{bottom:436.107067pt;}
.y157f_c00001{bottom:436.261259pt;}
.y1f16_c00001{bottom:436.266603pt;}
.y29a_c00001{bottom:436.347067pt;}
.y238d_c00001{bottom:436.668035pt;}
.y1282_c00001{bottom:436.744307pt;}
.y11b5_c00001{bottom:436.744891pt;}
.y12a2_c00001{bottom:436.980779pt;}
.y1470_c00001{bottom:436.981363pt;}
.y133f_c00001{bottom:436.984419pt;}
.y14e8_c00001{bottom:436.984787pt;}
.y1314_c00001{bottom:437.060939pt;}
.y209a_c00001{bottom:437.147067pt;}
.y22dd_c00001{bottom:437.227875pt;}
.y212b_c00001{bottom:437.307947pt;}
.y1db3_c00001{bottom:437.384835pt;}
.y149_c00001{bottom:437.387067pt;}
.ya14_c00001{bottom:437.624147pt;}
.ya99_c00001{bottom:437.625611pt;}
.y1b46_c00001{bottom:437.704891pt;}
.y4d2_c00001{bottom:437.707067pt;}
.y14fc_c00001{bottom:437.941363pt;}
.y1145_c00001{bottom:437.941947pt;}
.yb02_c00001{bottom:438.024299pt;}
.yf3b_c00001{bottom:438.024507pt;}
.y116_c00001{bottom:438.267067pt;}
.y1b93_c00001{bottom:438.344835pt;}
.y4e8_c00001{bottom:438.347067pt;}
.ycc7_c00001{bottom:438.363323pt;}
.ycf8_c00001{bottom:438.390971pt;}
.yad6_c00001{bottom:438.422027pt;}
.ya5d_c00001{bottom:438.423491pt;}
.ya34_c00001{bottom:438.426419pt;}
.y210b_c00001{bottom:438.427200pt;}
.y125b_c00001{bottom:438.581891pt;}
.y1b02_c00001{bottom:438.666059pt;}
.y2373_c00001{bottom:438.987067pt;}
.y2080_c00001{bottom:439.068099pt;}
.y1cbe_c00001{bottom:439.069531pt;}
.y939_c00001{bottom:439.300427pt;}
.yc82_c00001{bottom:439.301891pt;}
.y67a_c00001{bottom:439.387067pt;}
.y10b1_c00001{bottom:439.462315pt;}
.y1487_c00001{bottom:439.542475pt;}
.y6bc_c00001{bottom:439.707200pt;}
.y1739_c00001{bottom:439.778947pt;}
.y3a9_c00001{bottom:439.867067pt;}
.y23ab_c00001{bottom:440.029531pt;}
.y1860_c00001{bottom:440.107067pt;}
.y1df5_c00001{bottom:440.108355pt;}
.y961_c00001{bottom:440.180291pt;}
.y1993_c00001{bottom:440.266003pt;}
.y1b0_c00001{bottom:440.267067pt;}
.y2326_c00001{bottom:440.267883pt;}
.y2170_c00001{bottom:440.267915pt;}
.y3b_c00001{bottom:440.347067pt;}
.y10f5_c00001{bottom:440.422899pt;}
.y1bfc_c00001{bottom:440.502475pt;}
.y1e06_c00001{bottom:440.665051pt;}
.y23cf_c00001{bottom:440.669475pt;}
.y664_c00001{bottom:440.747067pt;}
.y89_c00001{bottom:440.747200pt;}
.y1415_c00001{bottom:440.822747pt;}
.y1e9e_c00001{bottom:440.904835pt;}
.y7db_c00001{bottom:440.907067pt;}
.y3ea_c00001{bottom:440.907200pt;}
.y20ea_c00001{bottom:440.907555pt;}
.y26f_c00001{bottom:440.987200pt;}
.ye4e_c00001{bottom:440.988531pt;}
.y1b6a_c00001{bottom:441.143003pt;}
.y1c59_c00001{bottom:441.227171pt;}
.y84e_c00001{bottom:441.307067pt;}
.y489_c00001{bottom:441.387067pt;}
.y19e6_c00001{bottom:441.463059pt;}
.y752_c00001{bottom:441.467067pt;}
.y23f7_c00001{bottom:441.467603pt;}
.y312_c00001{bottom:441.547200pt;}
.y246a_c00001{bottom:441.547811pt;}
.y1cd8_c00001{bottom:441.625635pt;}
.y24b6_c00001{bottom:441.867067pt;}
.y1aba_c00001{bottom:441.867115pt;}
.y78c_c00001{bottom:442.027067pt;}
.y149e_c00001{bottom:442.103587pt;}
.y3d4_c00001{bottom:442.107067pt;}
.y219e_c00001{bottom:442.107547pt;}
.y1a66_c00001{bottom:442.187171pt;}
.y160_c00001{bottom:442.347067pt;}
.y1521_c00001{bottom:442.420219pt;}
.yf12_c00001{bottom:442.507251pt;}
.yee5_c00001{bottom:442.507451pt;}
.y218e_c00001{bottom:442.587067pt;}
.y2218_c00001{bottom:442.669467pt;}
.y1fcb_c00001{bottom:442.747200pt;}
.y24a1_c00001{bottom:442.827067pt;}
.y1ae4_c00001{bottom:442.827115pt;}
.y252f_c00001{bottom:442.987067pt;}
.y1237_c00001{bottom:443.063587pt;}
.y1089_c00001{bottom:443.064171pt;}
.yb4e_c00001{bottom:443.067200pt;}
.y1a0c_c00001{bottom:443.148339pt;}
.y1883_c00001{bottom:443.226163pt;}
.y1cfa_c00001{bottom:443.380219pt;}
.y1457_c00001{bottom:443.380803pt;}
.y17b6_c00001{bottom:443.385979pt;}
.y5e_c00001{bottom:443.387067pt;}
.y16f6_c00001{bottom:443.545227pt;}
.y1605_c00001{bottom:443.784275pt;}
.yffb_c00001{bottom:444.024171pt;}
.y1939_c00001{bottom:444.024755pt;}
.y1f94_c00001{bottom:444.027515pt;}
.y205d_c00001{bottom:444.028059pt;}
.y1d2b_c00001{bottom:444.028907pt;}
.y21c6_c00001{bottom:444.029515pt;}
.y1d9a_c00001{bottom:444.186747pt;}
.y196b_c00001{bottom:444.268243pt;}
.y167e_c00001{bottom:444.347067pt;}
.y1e4b_c00001{bottom:444.423219pt;}
.y1654_c00001{bottom:444.505491pt;}
.y1801_c00001{bottom:444.744275pt;}
.y18f6_c00001{bottom:444.744859pt;}
.y11ef_c00001{bottom:444.981331pt;}
.y2f2_c00001{bottom:444.987067pt;}
.y62f_c00001{bottom:445.147200pt;}
.y453_c00001{bottom:445.227067pt;}
.y13ac_c00001{bottom:445.305979pt;}
.y264_c00001{bottom:445.307067pt;}
.y2419_c00001{bottom:445.309403pt;}
.y250e_c00001{bottom:445.547067pt;}
.y183d_c00001{bottom:445.704859pt;}
.y4c6_c00001{bottom:445.707067pt;}
.y3f4_c00001{bottom:445.867067pt;}
.y1ed4_c00001{bottom:445.941331pt;}
.y18c0_c00001{bottom:445.941915pt;}
.y1d52_c00001{bottom:446.029507pt;}
.y1791_c00001{bottom:446.178387pt;}
.y46c_c00001{bottom:446.187067pt;}
.y89e_c00001{bottom:446.347067pt;}
.y98c_c00001{bottom:446.422787pt;}
.yace_c00001{bottom:446.424251pt;}
.y169e_c00001{bottom:446.426659pt;}
.y228d_c00001{bottom:446.669451pt;}
.y27d_c00001{bottom:446.747067pt;}
.yb1_c00001{bottom:446.827875pt;}
.y1c83_c00001{bottom:446.901915pt;}
.y14c0_c00001{bottom:446.902499pt;}
.y1a4a_c00001{bottom:447.064491pt;}
.yda9_c00001{bottom:447.067067pt;}
.y22be_c00001{bottom:447.068067pt;}
.y5f8_c00001{bottom:447.147875pt;}
.yab2_c00001{bottom:447.301187pt;}
.yae1_c00001{bottom:447.302651pt;}
.y2257_c00001{bottom:447.309395pt;}
.y6f0_c00001{bottom:447.387067pt;}
.y15af_c00001{bottom:447.542443pt;}
.y1029_c00001{bottom:447.545867pt;}
.yf99_c00001{bottom:447.546451pt;}
.y37e_c00001{bottom:447.547067pt;}
.y397_c00001{bottom:447.707067pt;}
.y761_c00001{bottom:447.787067pt;}
.y143d_c00001{bottom:447.863083pt;}
.y2443_c00001{bottom:448.026843pt;}
.y2bf_c00001{bottom:448.027067pt;}
.y2238_c00001{bottom:448.029499pt;}
.y13d2_c00001{bottom:448.102979pt;}
.y1f54_c00001{bottom:448.108115pt;}
.y911_c00001{bottom:448.179587pt;}
.y9c9_c00001{bottom:448.181051pt;}
.yba8_c00001{bottom:448.182515pt;}
.y8c4_c00001{bottom:448.187067pt;}
.y235a_c00001{bottom:448.267291pt;}
.y20cd_c00001{bottom:448.267883pt;}
.y2df_c00001{bottom:448.347067pt;}
.y1058_c00001{bottom:448.422867pt;}
.y1191_c00001{bottom:448.502443pt;}
.y135f_c00001{bottom:448.503027pt;}
.ye7d_c00001{bottom:448.667208pt;}
.yeb6_c00001{bottom:448.668339pt;}
.ye19_c00001{bottom:448.669443pt;}
.y116b_c00001{bottom:448.739499pt;}
.ybef_c00001{bottom:449.059451pt;}
.y1c10_c00001{bottom:449.145283pt;}
.y252_c00001{bottom:449.147067pt;}
.y427_c00001{bottom:449.387067pt;}
.y162b_c00001{bottom:449.388211pt;}
.y18a4_c00001{bottom:449.463611pt;}
.y9ed_c00001{bottom:449.542467pt;}
.y1c6b_c00001{bottom:449.625603pt;}
.y580_c00001{bottom:449.707067pt;}
.y13f4_c00001{bottom:449.709435pt;}
.yd2c_c00001{bottom:449.805115pt;}
.yd59_c00001{bottom:449.829691pt;}
.y1b27_c00001{bottom:449.865387pt;}
.y1c3e_c00001{bottom:449.866083pt;}
.y24d1_c00001{bottom:449.867067pt;}
.y33b_c00001{bottom:450.107067pt;}
.y20ac_c00001{bottom:450.107435pt;}
.y1d78_c00001{bottom:450.187200pt;}
.yddd_c00001{bottom:450.189083pt;}
.y1562_c00001{bottom:450.423611pt;}
.y21df_c00001{bottom:450.507747pt;}
.y802_c00001{bottom:450.667067pt;}
.y1fe8_c00001{bottom:450.667208pt;}
.y26e_c00001{bottom:450.907067pt;}
.y24f1_c00001{bottom:450.987067pt;}
.y12cb_c00001{bottom:451.063555pt;}
.y16bc_c00001{bottom:451.064139pt;}
.y2042_c00001{bottom:451.228384pt;}
.y598_c00001{bottom:451.307067pt;}
.y2023_c00001{bottom:451.307891pt;}
.y12e7_c00001{bottom:451.380771pt;}
.y1e74_c00001{bottom:451.384195pt;}
.y1d3_c00001{bottom:451.387067pt;}
.y8e8_c00001{bottom:451.540400pt;}
.y1e2f_c00001{bottom:451.547067pt;}
.y7ef_c00001{bottom:451.707067pt;}
.y551_c00001{bottom:451.787067pt;}
.y1281_c00001{bottom:452.024139pt;}
.y1e87_c00001{bottom:452.024723pt;}
.y624_c00001{bottom:452.028459pt;}
.y11d0_c00001{bottom:452.261195pt;}
.y146f_c00001{bottom:452.341355pt;}
.y14e7_c00001{bottom:452.344779pt;}
.y411_c00001{bottom:452.347067pt;}
.y717_c00001{bottom:452.507067pt;}
.y4fc_c00001{bottom:452.587067pt;}
.y7cd_c00001{bottom:452.667067pt;}
.yc2c_c00001{bottom:452.741411pt;}
.y1db2_c00001{bottom:452.744827pt;}
.y87c_c00001{bottom:452.827067pt;}
.y6de_c00001{bottom:452.907067pt;}
.y1b45_c00001{bottom:452.984723pt;}
.y72f_c00001{bottom:453.147067pt;}
.y516_c00001{bottom:453.226707pt;}
.y2270_c00001{bottom:453.227843pt;}
.y2a8_c00001{bottom:453.387067pt;}
.yc9e_c00001{bottom:453.697723pt;}
.y1a85_c00001{bottom:453.704827pt;}
.y17d5_c00001{bottom:453.705411pt;}
.y607_c00001{bottom:453.787067pt;}
.y10ce_c00001{bottom:453.861723pt;}
.y125a_c00001{bottom:453.941883pt;}
.y1b01_c00001{bottom:453.945891pt;}
.y2437_c00001{bottom:454.029475pt;}
.y690_c00001{bottom:454.347067pt;}
.y1cbd_c00001{bottom:454.349363pt;}
.y440_c00001{bottom:454.427067pt;}
.y207f_c00001{bottom:454.428091pt;}
.y16cd_c00001{bottom:454.663323pt;}
.y819_c00001{bottom:454.667067pt;}
.y233e_c00001{bottom:454.669419pt;}
.y1fb8_c00001{bottom:454.827067pt;}
.y1486_c00001{bottom:454.902467pt;}
.y1be4_c00001{bottom:454.905891pt;}
.y1738_c00001{bottom:455.138939pt;}
.ya81_c00001{bottom:455.303411pt;}
.yc4d_c00001{bottom:455.304875pt;}
.ya33_c00001{bottom:455.306339pt;}
.y23aa_c00001{bottom:455.309363pt;}
.y6aa_c00001{bottom:455.387067pt;}
.y1992_c00001{bottom:455.625995pt;}
.y15e2_c00001{bottom:455.626579pt;}
.y2325_c00001{bottom:455.627875pt;}
.y216f_c00001{bottom:455.627907pt;}
.yf69_c00001{bottom:455.782891pt;}
.y1bfb_c00001{bottom:455.862467pt;}
.ycc6_c00001{bottom:455.962811pt;}
.ycf7_c00001{bottom:455.990459pt;}
.y2150_c00001{bottom:456.027067pt;}
.y1414_c00001{bottom:456.102579pt;}
.y5cc_c00001{bottom:456.107067pt;}
.y938_c00001{bottom:456.180347pt;}
.yb86_c00001{bottom:456.180867pt;}
.y9b5_c00001{bottom:456.181811pt;}
.y8c2_c00001{bottom:456.187067pt;}
.y20e9_c00001{bottom:456.267547pt;}
.y1c7_c00001{bottom:456.347067pt;}
.ye4d_c00001{bottom:456.348523pt;}
.y120f_c00001{bottom:456.502995pt;}
.y1c58_c00001{bottom:456.587163pt;}
.y1a33_c00001{bottom:456.669411pt;}
.y19e5_c00001{bottom:456.823051pt;}
.yfca_c00001{bottom:456.827059pt;}
.y23dc_c00001{bottom:456.827595pt;}
.y2469_c00001{bottom:456.827643pt;}
.y709_c00001{bottom:457.147067pt;}
.y1f76_c00001{bottom:457.227067pt;}
.y1ab9_c00001{bottom:457.227107pt;}
.y299_c00001{bottom:457.387067pt;}
.y18b4_c00001{bottom:457.462995pt;}
.y149d_c00001{bottom:457.463579pt;}
.y219d_c00001{bottom:457.467539pt;}
.y1a65_c00001{bottom:457.547163pt;}
.y111c_c00001{bottom:457.619891pt;}
.y1387_c00001{bottom:457.700051pt;}
.yf11_c00001{bottom:457.867243pt;}
.yee4_c00001{bottom:457.867443pt;}
.ybd1_c00001{bottom:457.938611pt;}
.y2217_c00001{bottom:458.029459pt;}
.y1ae3_c00001{bottom:458.187107pt;}
.y219_c00001{bottom:458.267067pt;}
.y148_c00001{bottom:458.347067pt;}
.y1236_c00001{bottom:458.423579pt;}
.y18cf_c00001{bottom:458.424163pt;}
.y659_c00001{bottom:458.427067pt;}
.y1a0b_c00001{bottom:458.428171pt;}
.y1882_c00001{bottom:458.586155pt;}
.y1ddb_c00001{bottom:458.660635pt;}
.y17b5_c00001{bottom:458.665811pt;}
.y4d1_c00001{bottom:458.667067pt;}
.y3e9_c00001{bottom:458.747200pt;}
.y1604_c00001{bottom:459.064107pt;}
.y4e7_c00001{bottom:459.307067pt;}
.y1f93_c00001{bottom:459.307347pt;}
.y205c_c00001{bottom:459.307891pt;}
.y1ceb_c00001{bottom:459.384163pt;}
.y1bb5_c00001{bottom:459.384747pt;}
.y5e0_c00001{bottom:459.387067pt;}
.y1f15_c00001{bottom:459.546403pt;}
.y196a_c00001{bottom:459.548075pt;}
.y105_c00001{bottom:459.627067pt;}
.y1653_c00001{bottom:459.865483pt;}
.y7f_c00001{bottom:459.867067pt;}
.y238c_c00001{bottom:460.027995pt;}
.y11ee_c00001{bottom:460.261163pt;}
.y174c_c00001{bottom:460.341323pt;}
.y19c2_c00001{bottom:460.344747pt;}
.y4a8_c00001{bottom:460.347067pt;}
.y1313_c00001{bottom:460.420899pt;}
.y679_c00001{bottom:460.427067pt;}
.y22dc_c00001{bottom:460.507675pt;}
.y157e_c00001{bottom:460.581803pt;}
.y13ab_c00001{bottom:460.585811pt;}
.y212a_c00001{bottom:460.667907pt;}
.y2418_c00001{bottom:460.669395pt;}
.y6bb_c00001{bottom:460.747067pt;}
.y776_c00001{bottom:460.827067pt;}
.y3a8_c00001{bottom:460.907067pt;}
.y183c_c00001{bottom:460.984691pt;}
.y11b4_c00001{bottom:460.985275pt;}
.y1fca_c00001{bottom:461.147200pt;}
.y12a1_c00001{bottom:461.221163pt;}
.y1144_c00001{bottom:461.221747pt;}
.yb4d_c00001{bottom:461.227067pt;}
.y133e_c00001{bottom:461.304963pt;}
.y3a_c00001{bottom:461.387067pt;}
.y1790_c00001{bottom:461.538379pt;}
.y663_c00001{bottom:461.707067pt;}
.y169d_c00001{bottom:461.786651pt;}
.y7da_c00001{bottom:461.867067pt;}
.y228c_c00001{bottom:462.029443pt;}
.y1c82_c00001{bottom:462.181747pt;}
.y1908_c00001{bottom:462.182331pt;}
.yf3a_c00001{bottom:462.345051pt;}
.y84d_c00001{bottom:462.347067pt;}
.ya13_c00001{bottom:462.424307pt;}
.ya98_c00001{bottom:462.425771pt;}
.y488_c00001{bottom:462.427067pt;}
.y22bd_c00001{bottom:462.428059pt;}
.y167d_c00001{bottom:462.747067pt;}
.y24b5_c00001{bottom:462.827067pt;}
.y15ae_c00001{bottom:462.902435pt;}
.yb01_c00001{bottom:462.904979pt;}
.y1028_c00001{bottom:462.905859pt;}
.yf98_c00001{bottom:462.906443pt;}
.y62e_c00001{bottom:462.987200pt;}
.y3d3_c00001{bottom:463.067067pt;}
.y143c_c00001{bottom:463.142915pt;}
.y79e_c00001{bottom:463.147067pt;}
.yad5_c00001{bottom:463.302707pt;}
.ya5c_c00001{bottom:463.304171pt;}
.y7b3_c00001{bottom:463.307067pt;}
.y645_c00001{bottom:463.309043pt;}
.y2237_c00001{bottom:463.309331pt;}
.y15f_c00001{bottom:463.387067pt;}
.y1df4_c00001{bottom:463.388155pt;}
.y2099_c00001{bottom:463.547067pt;}
.y3f3_c00001{bottom:463.627067pt;}
.y20cc_c00001{bottom:463.627875pt;}
.y1057_c00001{bottom:463.782859pt;}
.y1190_c00001{bottom:463.862435pt;}
.y135e_c00001{bottom:463.863019pt;}
.y252e_c00001{bottom:463.947067pt;}
.ye7c_c00001{bottom:464.027235pt;}
.yeb5_c00001{bottom:464.028331pt;}
.ye18_c00001{bottom:464.029435pt;}
.yab1_c00001{bottom:464.181107pt;}
.y5d_c00001{bottom:464.347067pt;}
.y615_c00001{bottom:464.427067pt;}
.y1c0f_c00001{bottom:464.505275pt;}
.y17e_c00001{bottom:464.587067pt;}
.y10f4_c00001{bottom:464.743443pt;}
.y2007_c00001{bottom:464.747067pt;}
.y18a3_c00001{bottom:464.823603pt;}
.y210a_c00001{bottom:464.827200pt;}
.y1c6a_c00001{bottom:464.905435pt;}
.y960_c00001{bottom:465.060971pt;}
.yba7_c00001{bottom:465.062435pt;}
.y1b26_c00001{bottom:465.145219pt;}
.y1c3d_c00001{bottom:465.226075pt;}
.y20ab_c00001{bottom:465.467427pt;}
.y2372_c00001{bottom:465.547067pt;}
.yddc_c00001{bottom:465.549075pt;}
.y1b7c_c00001{bottom:465.783603pt;}
.y1cd7_c00001{bottom:465.866019pt;}
.y2f1_c00001{bottom:466.027067pt;}
.y1fe7_c00001{bottom:466.027315pt;}
.yb0_c00001{bottom:466.028235pt;}
.y230e_c00001{bottom:466.029427pt;}
.y452_c00001{bottom:466.187067pt;}
.y263_c00001{bottom:466.267067pt;}
.y5f7_c00001{bottom:466.348235pt;}
.y12ca_c00001{bottom:466.423547pt;}
.y1d0f_c00001{bottom:466.424131pt;}
.y185f_c00001{bottom:466.507067pt;}
.y250d_c00001{bottom:466.587067pt;}
.y12e6_c00001{bottom:466.660603pt;}
.y2022_c00001{bottom:466.667883pt;}
.y1e73_c00001{bottom:466.744187pt;}
.y4c5_c00001{bottom:466.747067pt;}
.y46b_c00001{bottom:467.147067pt;}
.y1088_c00001{bottom:467.304555pt;}
.y1d2a_c00001{bottom:467.308707pt;}
.y21c5_c00001{bottom:467.309315pt;}
.y1e86_c00001{bottom:467.384715pt;}
.y89d_c00001{bottom:467.387067pt;}
.yd2b_c00001{bottom:467.484475pt;}
.yd58_c00001{bottom:467.509051pt;}
.y1cf9_c00001{bottom:467.620603pt;}
.y1456_c00001{bottom:467.621187pt;}
.y14e6_c00001{bottom:467.704771pt;}
.y2d6_c00001{bottom:467.787067pt;}
.y16f5_c00001{bottom:467.865771pt;}
.y191d_c00001{bottom:468.024659pt;}
.yffa_c00001{bottom:468.264555pt;}
.y1b44_c00001{bottom:468.344715pt;}
.y1938_c00001{bottom:468.345299pt;}
.y6ef_c00001{bottom:468.347067pt;}
.y33a_c00001{bottom:468.507067pt;}
.y1d99_c00001{bottom:468.507291pt;}
.y226f_c00001{bottom:468.507675pt;}
.y1e4a_c00001{bottom:468.743763pt;}
.y760_c00001{bottom:468.747067pt;}
.y1800_c00001{bottom:468.984659pt;}
.y17d4_c00001{bottom:468.985243pt;}
.y218d_c00001{bottom:468.987067pt;}
.y2be_c00001{bottom:469.067067pt;}
.y1259_c00001{bottom:469.221715pt;}
.yda8_c00001{bottom:469.227067pt;}
.y1b00_c00001{bottom:469.305883pt;}
.y1af_c00001{bottom:469.307067pt;}
.y1d51_c00001{bottom:469.309307pt;}
.y2de_c00001{bottom:469.387067pt;}
.y207e_c00001{bottom:469.707923pt;}
.y1cbc_c00001{bottom:469.709355pt;}
.y1e2e_c00001{bottom:469.947067pt;}
.y233d_c00001{bottom:470.029411pt;}
.y251_c00001{bottom:470.107067pt;}
.y1485_c00001{bottom:470.182299pt;}
.y1be3_c00001{bottom:470.265883pt;}
.y426_c00001{bottom:470.427067pt;}
.y311_c00001{bottom:470.587200pt;}
.y2256_c00001{bottom:470.669355pt;}
.y57f_c00001{bottom:470.747200pt;}
.y24d0_c00001{bottom:470.827067pt;}
.y1991_c00001{bottom:470.905827pt;}
.y2324_c00001{bottom:470.907707pt;}
.y223f_c00001{bottom:470.907739pt;}
.yf68_c00001{bottom:471.062723pt;}
.y14bf_c00001{bottom:471.142883pt;}
.y21de_c00001{bottom:471.227771pt;}
.y98b_c00001{bottom:471.303467pt;}
.y1a49_c00001{bottom:471.304875pt;}
.y623_c00001{bottom:471.307875pt;}
.y1413_c00001{bottom:471.462571pt;}
.y1f53_c00001{bottom:471.468075pt;}
.y2359_c00001{bottom:471.627251pt;}
.y20e8_c00001{bottom:471.627539pt;}
.y2298_c00001{bottom:471.627843pt;}
.ye4c_c00001{bottom:471.708515pt;}
.y120e_c00001{bottom:471.862987pt;}
.y24a0_c00001{bottom:471.867067pt;}
.y24f0_c00001{bottom:471.947067pt;}
.ybba_c00001{bottom:472.102811pt;}
.y19e4_c00001{bottom:472.102883pt;}
.yfc9_c00001{bottom:472.106891pt;}
.y23db_c00001{bottom:472.107427pt;}
.yae0_c00001{bottom:472.181867pt;}
.y27c_c00001{bottom:472.187067pt;}
.y2468_c00001{bottom:472.187635pt;}
.y122_c00001{bottom:472.347067pt;}
.y2442_c00001{bottom:472.347387pt;}
.y13d1_c00001{bottom:472.423523pt;}
.y515_c00001{bottom:472.427067pt;}
.y1ab8_c00001{bottom:472.587099pt;}
.y162a_c00001{bottom:472.748171pt;}
.y1e81_c00001{bottom:472.822987pt;}
.y149c_c00001{bottom:472.823571pt;}
.y1a64_c00001{bottom:472.826995pt;}
.y1c3_c00001{bottom:472.827067pt;}
.y116a_c00001{bottom:473.060043pt;}
.y910_c00001{bottom:473.060267pt;}
.y9b4_c00001{bottom:473.061731pt;}
.y13f3_c00001{bottom:473.069395pt;}
.yf10_c00001{bottom:473.227235pt;}
.yee3_c00001{bottom:473.227435pt;}
.y2216_c00001{bottom:473.309291pt;}
.y410_c00001{bottom:473.387067pt;}
.y716_c00001{bottom:473.547067pt;}
.y1ae2_c00001{bottom:473.547099pt;}
.ycc5_c00001{bottom:473.562299pt;}
.ycf6_c00001{bottom:473.589947pt;}
.y4fb_c00001{bottom:473.627067pt;}
.y7cc_c00001{bottom:473.707067pt;}
.y1235_c00001{bottom:473.783571pt;}
.y18ce_c00001{bottom:473.784155pt;}
.y1a0a_c00001{bottom:473.788163pt;}
.y1881_c00001{bottom:473.865987pt;}
.y87b_c00001{bottom:473.867067pt;}
.ybee_c00001{bottom:473.940131pt;}
.y1dda_c00001{bottom:474.020627pt;}
.y17b4_c00001{bottom:474.025803pt;}
.y597_c00001{bottom:474.187067pt;}
.y9ec_c00001{bottom:474.342627pt;}
.y2a7_c00001{bottom:474.347067pt;}
.y1603_c00001{bottom:474.424099pt;}
.y2041_c00001{bottom:474.508184pt;}
.y3b5_c00001{bottom:474.667067pt;}
.y205b_c00001{bottom:474.667883pt;}
.ybd0_c00001{bottom:474.738011pt;}
.y1bb4_c00001{bottom:474.744739pt;}
.y606_c00001{bottom:474.747067pt;}
.y1969_c00001{bottom:474.908067pt;}
.y1652_c00001{bottom:475.225475pt;}
.y6dd_c00001{bottom:475.227067pt;}
.y68f_c00001{bottom:475.307067pt;}
.y238b_c00001{bottom:475.307827pt;}
.y16bb_c00001{bottom:475.384683pt;}
.y43f_c00001{bottom:475.467067pt;}
.y1716_c00001{bottom:475.621155pt;}
.y19c1_c00001{bottom:475.704739pt;}
.y818_c00001{bottom:475.707067pt;}
.y22db_c00001{bottom:475.867667pt;}
.y13aa_c00001{bottom:475.945803pt;}
.y2129_c00001{bottom:476.027899pt;}
.y1d77_c00001{bottom:476.029387pt;}
.y1280_c00001{bottom:476.344683pt;}
.y11b3_c00001{bottom:476.345267pt;}
.y6a9_c00001{bottom:476.347067pt;}
.y8e7_c00001{bottom:476.421080pt;}
.y37d_c00001{bottom:476.507067pt;}
.y12a0_c00001{bottom:476.581155pt;}
.y1143_c00001{bottom:476.581739pt;}
.y133d_c00001{bottom:476.664955pt;}
.y396_c00001{bottom:476.747067pt;}
.y169c_c00001{bottom:477.066483pt;}
.y5cb_c00001{bottom:477.067067pt;}
.y228b_c00001{bottom:477.309275pt;}
.y223_c00001{bottom:477.387067pt;}
.y1907_c00001{bottom:477.542323pt;}
.yc2b_c00001{bottom:477.622091pt;}
.yf39_c00001{bottom:477.705043pt;}
.y22bc_c00001{bottom:477.707891pt;}
.y16cc_c00001{bottom:477.943123pt;}
.y10cd_c00001{bottom:478.102107pt;}
.y708_c00001{bottom:478.107067pt;}
.y15ad_c00001{bottom:478.182267pt;}
.yf97_c00001{bottom:478.186275pt;}
.y82e_c00001{bottom:478.256179pt;}
.y1542_c00001{bottom:478.502907pt;}
.y2236_c00001{bottom:478.669323pt;}
.yb4c_c00001{bottom:478.827067pt;}
.y20cb_c00001{bottom:478.907707pt;}
.y118f_c00001{bottom:479.142267pt;}
.y135d_c00001{bottom:479.142851pt;}
.ya12_c00001{bottom:479.304227pt;}
.ya97_c00001{bottom:479.305691pt;}
.ye7b_c00001{bottom:479.307451pt;}
.yeb4_c00001{bottom:479.308163pt;}
.ye17_c00001{bottom:479.309267pt;}
.y147_c00001{bottom:479.387067pt;}
.y1737_c00001{bottom:479.459483pt;}
.y801_c00001{bottom:479.627067pt;}
.y4d0_c00001{bottom:479.707067pt;}
.y15e1_c00001{bottom:479.866963pt;}
.y1a32_c00001{bottom:480.029371pt;}
.y1bfa_c00001{bottom:480.102851pt;}
.y18a2_c00001{bottom:480.103435pt;}
.yacd_c00001{bottom:480.103571pt;}
.ya80_c00001{bottom:480.182627pt;}
.ya5b_c00001{bottom:480.184091pt;}
.ya32_c00001{bottom:480.185555pt;}
.y1c69_c00001{bottom:480.265427pt;}
.y5df_c00001{bottom:480.347067pt;}
.y1b25_c00001{bottom:480.505211pt;}
.y7ee_c00001{bottom:480.667067pt;}
.y1b69_c00001{bottom:480.823539pt;}
.y7e_c00001{bottom:480.827067pt;}
.y20aa_c00001{bottom:480.827419pt;}
.y219c_c00001{bottom:480.827499pt;}
.y1c57_c00001{bottom:480.827547pt;}
.yddb_c00001{bottom:480.909067pt;}
.y937_c00001{bottom:481.061027pt;}
.yb85_c00001{bottom:481.061547pt;}
.y1c26_c00001{bottom:481.063435pt;}
.y167c_c00001{bottom:481.147067pt;}
.y1cd6_c00001{bottom:481.226011pt;}
.y1fb7_c00001{bottom:481.227067pt;}
.y1fe6_c00001{bottom:481.307147pt;}
.y22a5_c00001{bottom:481.309259pt;}
.y56c_c00001{bottom:481.387067pt;}
.y3e8_c00001{bottom:481.707067pt;}
.y12c9_c00001{bottom:481.783539pt;}
.y194c_c00001{bottom:481.784123pt;}
.y775_c00001{bottom:481.867067pt;}
.y111b_c00001{bottom:481.940435pt;}
.y1374_c00001{bottom:482.020595pt;}
.y2021_c00001{bottom:482.027875pt;}
.y39_c00001{bottom:482.347067pt;}
.y214f_c00001{bottom:482.427067pt;}
.y644_c00001{bottom:482.588459pt;}
.y1087_c00001{bottom:482.664547pt;}
.y1f92_c00001{bottom:482.667307pt;}
.y1d29_c00001{bottom:482.668699pt;}
.yc00_c00001{bottom:482.738771pt;}
.y1bca_c00001{bottom:482.744123pt;}
.y1e15_c00001{bottom:482.744707pt;}
.y662_c00001{bottom:482.747067pt;}
.y1f14_c00001{bottom:482.906363pt;}
.y7d9_c00001{bottom:482.907067pt;}
.y14e5_c00001{bottom:482.984603pt;}
.y16f4_c00001{bottom:483.225763pt;}
.y84c_c00001{bottom:483.307067pt;}
.y191c_c00001{bottom:483.384651pt;}
.y487_c00001{bottom:483.387067pt;}
.y751_c00001{bottom:483.467067pt;}
.yff9_c00001{bottom:483.624547pt;}
.y1f75_c00001{bottom:483.627067pt;}
.y1b43_c00001{bottom:483.704707pt;}
.y1312_c00001{bottom:483.780859pt;}
.y24b4_c00001{bottom:483.867067pt;}
.y226e_c00001{bottom:483.867667pt;}
.y1e49_c00001{bottom:484.103755pt;}
.y3d2_c00001{bottom:484.107067pt;}
.y17ff_c00001{bottom:484.344651pt;}
.y17d3_c00001{bottom:484.345235pt;}
.y15e_c00001{bottom:484.347067pt;}
.y11ed_c00001{bottom:484.581707pt;}
.y1aff_c00001{bottom:484.665875pt;}
.y1d50_c00001{bottom:484.669299pt;}
.y157d_c00001{bottom:484.902347pt;}
.y207d_c00001{bottom:485.067915pt;}
.y1cbb_c00001{bottom:485.069347pt;}
.yd2a_c00001{bottom:485.083963pt;}
.yd57_c00001{bottom:485.108539pt;}
.y1a97_c00001{bottom:485.305235pt;}
.yaf_c00001{bottom:485.307651pt;}
.y233c_c00001{bottom:485.309243pt;}
.y5c_c00001{bottom:485.387067pt;}
.y1ed3_c00001{bottom:485.541707pt;}
.y1484_c00001{bottom:485.542291pt;}
.y17d_c00001{bottom:485.547067pt;}
.y1be2_c00001{bottom:485.625875pt;}
.y5f6_c00001{bottom:485.627651pt;}
.y178f_c00001{bottom:485.778763pt;}
.y2255_c00001{bottom:486.029347pt;}
.y2323_c00001{bottom:486.267699pt;}
.y298_c00001{bottom:486.347067pt;}
.y1c81_c00001{bottom:486.502291pt;}
.y21dd_c00001{bottom:486.507603pt;}
.y1a48_c00001{bottom:486.664867pt;}
.y1df3_c00001{bottom:486.748115pt;}
.y1412_c00001{bottom:486.822563pt;}
.y1f36_c00001{bottom:486.907067pt;}
.y2358_c00001{bottom:486.907083pt;}
.y20e7_c00001{bottom:486.907371pt;}
.y2297_c00001{bottom:486.907675pt;}
.y2f0_c00001{bottom:486.987067pt;}
.ye4b_c00001{bottom:486.988347pt;}
.y120d_c00001{bottom:487.142819pt;}
.y1027_c00001{bottom:487.146243pt;}
.y451_c00001{bottom:487.227067pt;}
.y218_c00001{bottom:487.307067pt;}
.y23ce_c00001{bottom:487.309235pt;}
.y53f_c00001{bottom:487.387067pt;}
.y143b_c00001{bottom:487.463459pt;}
.yfc8_c00001{bottom:487.466883pt;}
.y2467_c00001{bottom:487.467467pt;}
.y250c_c00001{bottom:487.547067pt;}
.y13d0_c00001{bottom:487.783515pt;}
.yb00_c00001{bottom:487.784195pt;}
.y1ab7_c00001{bottom:487.866931pt;}
.y10b0_c00001{bottom:488.023243pt;}
.y1056_c00001{bottom:488.103403pt;}
.y98a_c00001{bottom:488.183387pt;}
.y46a_c00001{bottom:488.187067pt;}
.y89c_c00001{bottom:488.347067pt;}
.y4e6_c00001{bottom:488.347200pt;}
.y1386_c00001{bottom:488.420035pt;}
.yf0f_c00001{bottom:488.507067pt;}
.yee2_c00001{bottom:488.507267pt;}
.y104_c00001{bottom:488.587067pt;}
.y2215_c00001{bottom:488.669283pt;}
.y2d5_c00001{bottom:488.747067pt;}
.y1c0e_c00001{bottom:488.825819pt;}
.y1ae1_c00001{bottom:488.826931pt;}
.ybb9_c00001{bottom:488.982731pt;}
.yab0_c00001{bottom:489.061787pt;}
.y1234_c00001{bottom:489.063403pt;}
.y10f3_c00001{bottom:489.063987pt;}
.y1e05_c00001{bottom:489.225979pt;}
.y1dd9_c00001{bottom:489.300459pt;}
.y230d_c00001{bottom:489.309227pt;}
.y17b3_c00001{bottom:489.385795pt;}
.y4a7_c00001{bottom:489.387067pt;}
.y1e9d_c00001{bottom:489.465763pt;}
.y1c3c_c00001{bottom:489.546619pt;}
.y75f_c00001{bottom:489.787067pt;}
.y3a7_c00001{bottom:489.867067pt;}
.y90f_c00001{bottom:489.940187pt;}
.yb32_c00001{bottom:489.941651pt;}
.y2098_c00001{bottom:489.947067pt;}
.y1b7b_c00001{bottom:490.023987pt;}
.y2bd_c00001{bottom:490.027067pt;}
.y205a_c00001{bottom:490.027875pt;}
.y1ae_c00001{bottom:490.267067pt;}
.y1968_c00001{bottom:490.268059pt;}
.y1f4_c00001{bottom:490.347067pt;}
.y622_c00001{bottom:490.587291pt;}
.y238a_c00001{bottom:490.667819pt;}
.y21c4_c00001{bottom:490.669275pt;}
.ybed_c00001{bottom:490.739531pt;}
.y16ba_c00001{bottom:490.744675pt;}
.y12e5_c00001{bottom:490.981147pt;}
.y1e72_c00001{bottom:490.984571pt;}
.y250_c00001{bottom:491.147067pt;}
.y9eb_c00001{bottom:491.222547pt;}
.y2109_c00001{bottom:491.227200pt;}
.y22da_c00001{bottom:491.227659pt;}
.ycc4_c00001{bottom:491.241659pt;}
.ycf5_c00001{bottom:491.269307pt;}
.y2128_c00001{bottom:491.307731pt;}
.y2371_c00001{bottom:491.309219pt;}
.y310_c00001{bottom:491.547200pt;}
.y183b_c00001{bottom:491.704675pt;}
.y11b2_c00001{bottom:491.705259pt;}
.y57e_c00001{bottom:491.787200pt;}
.y24cf_c00001{bottom:491.867067pt;}
.y129f_c00001{bottom:491.941147pt;}
.y1142_c00001{bottom:491.941731pt;}
.y133c_c00001{bottom:491.944787pt;}
.y169b_c00001{bottom:492.426475pt;}
.y1937_c00001{bottom:492.665843pt;}
.y228a_c00001{bottom:492.669267pt;}
.y1d98_c00001{bottom:492.747675pt;}
.y1906_c00001{bottom:492.902315pt;}
.y185e_c00001{bottom:492.907067pt;}
.yf38_c00001{bottom:492.984875pt;}
.y252d_c00001{bottom:492.987067pt;}
.y22bb_c00001{bottom:493.067883pt;}
.y8e6_c00001{bottom:493.301000pt;}
.y18f5_c00001{bottom:493.305787pt;}
.y121_c00001{bottom:493.387067pt;}
.y10cc_c00001{bottom:493.462099pt;}
.y1592_c00001{bottom:493.542259pt;}
.y550_c00001{bottom:493.867067pt;}
.y2235_c00001{bottom:494.029315pt;}
.y20ca_c00001{bottom:494.267699pt;}
.y40f_c00001{bottom:494.347067pt;}
.y118e_c00001{bottom:494.502259pt;}
.y135c_c00001{bottom:494.502843pt;}
.y4fa_c00001{bottom:494.587067pt;}
.y7cb_c00001{bottom:494.667067pt;}
.ye7a_c00001{bottom:494.667443pt;}
.yeb3_c00001{bottom:494.668155pt;}
.ye16_c00001{bottom:494.669259pt;}
.y175b_c00001{bottom:494.739315pt;}
.y87a_c00001{bottom:494.827067pt;}
.y1f52_c00001{bottom:494.828035pt;}
.y72e_c00001{bottom:495.147067pt;}
.y1990_c00001{bottom:495.226371pt;}
.y15e0_c00001{bottom:495.226955pt;}
.yf67_c00001{bottom:495.383267pt;}
.y32d_c00001{bottom:495.387067pt;}
.y14be_c00001{bottom:495.463427pt;}
.y23da_c00001{bottom:495.467387pt;}
.y1c68_c00001{bottom:495.625419pt;}
.y4c4_c00001{bottom:495.707067pt;}
.y2441_c00001{bottom:495.707347pt;}
.y605_c00001{bottom:495.787067pt;}
.y1825_c00001{bottom:496.103371pt;}
.y20a9_c00001{bottom:496.107251pt;}
.y219b_c00001{bottom:496.107331pt;}
.y1629_c00001{bottom:496.108131pt;}
.ya11_c00001{bottom:496.184147pt;}
.y1c56_c00001{bottom:496.187539pt;}
.ydda_c00001{bottom:496.188899pt;}
.y68e_c00001{bottom:496.347067pt;}
.y13f2_c00001{bottom:496.349195pt;}
.y19e3_c00001{bottom:496.423427pt;}
.y43e_c00001{bottom:496.427067pt;}
.yd80_c00001{bottom:496.507067pt;}
.yc9d_c00001{bottom:496.657987pt;}
.y817_c00001{bottom:496.667067pt;}
.ya7f_c00001{bottom:497.062547pt;}
.y12c8_c00001{bottom:497.063371pt;}
.y159c_c00001{bottom:497.063955pt;}
.yacc_c00001{bottom:497.064011pt;}
.y1a63_c00001{bottom:497.147539pt;}
.y1a09_c00001{bottom:497.148123pt;}
.y1169_c00001{bottom:497.300427pt;}
.y2020_c00001{bottom:497.307707pt;}
.y6a8_c00001{bottom:497.387067pt;}
.y37c_c00001{bottom:497.547067pt;}
.y6dc_c00001{bottom:497.627067pt;}
.y395_c00001{bottom:497.707067pt;}
.y2040_c00001{bottom:497.868144pt;}
.y94c_c00001{bottom:497.940947pt;}
.y9b3_c00001{bottom:497.942411pt;}
.y1815_c00001{bottom:498.023955pt;}
.y1086_c00001{bottom:498.024539pt;}
.y1d28_c00001{bottom:498.028691pt;}
.y5ca_c00001{bottom:498.107067pt;}
.y1880_c00001{bottom:498.186531pt;}
.y14e4_c00001{bottom:498.344595pt;}
.y2e7_c00001{bottom:498.347067pt;}
.y1602_c00001{bottom:498.744643pt;}
.yff8_c00001{bottom:498.984539pt;}
.y707_c00001{bottom:499.147067pt;}
.y226d_c00001{bottom:499.227659pt;}
.y13a9_c00001{bottom:499.305763pt;}
.y1d76_c00001{bottom:499.309187pt;}
.y1e48_c00001{bottom:499.383587pt;}
.y1651_c00001{bottom:499.465859pt;}
.y425_c00001{bottom:499.467067pt;}
.yb4b_c00001{bottom:499.539635pt;}
.y167b_c00001{bottom:499.547067pt;}
.ybcf_c00001{bottom:499.618691pt;}
.y1a84_c00001{bottom:499.704643pt;}
.y17d2_c00001{bottom:499.705227pt;}
.y11ec_c00001{bottom:499.941699pt;}
.y19c0_c00001{bottom:499.945123pt;}
.y1d4f_c00001{bottom:500.029291pt;}
.y514_c00001{bottom:500.267067pt;}
.y146_c00001{bottom:500.347067pt;}
.y1cba_c00001{bottom:500.349179pt;}
.y658_c00001{bottom:500.427067pt;}
.y127f_c00001{bottom:500.665227pt;}
.y233b_c00001{bottom:500.669235pt;}
.y1ed2_c00001{bottom:500.901699pt;}
.y11cf_c00001{bottom:500.902283pt;}
.y1be1_c00001{bottom:500.905707pt;}
.y24ef_c00001{bottom:500.987067pt;}
.y16cb_c00001{bottom:501.303083pt;}
.y2254_c00001{bottom:501.309179pt;}
.y5de_c00001{bottom:501.387067pt;}
.yf96_c00001{bottom:501.546235pt;}
.y7ed_c00001{bottom:501.707067pt;}
.y643_c00001{bottom:501.788819pt;}
.y7d_c00001{bottom:501.867067pt;}
.y21dc_c00001{bottom:501.867595pt;}
.y1a47_c00001{bottom:501.944699pt;}
.y2357_c00001{bottom:502.267075pt;}
.y20e6_c00001{bottom:502.267363pt;}
.y2159_c00001{bottom:502.267667pt;}
.y56b_c00001{bottom:502.347067pt;}
.ye4a_c00001{bottom:502.348339pt;}
.y678_c00001{bottom:502.427067pt;}
.yc2a_c00001{bottom:502.501307pt;}
.y176e_c00001{bottom:502.502811pt;}
.y715_c00001{bottom:502.507067pt;}
.y6ba_c00001{bottom:502.747067pt;}
.yd29_c00001{bottom:502.763323pt;}
.yd56_c00001{bottom:502.787899pt;}
.y1541_c00001{bottom:502.823451pt;}
.y774_c00001{bottom:502.827067pt;}
.y2466_c00001{bottom:502.827459pt;}
.y1ab6_c00001{bottom:503.226923pt;}
.y1a31_c00001{bottom:503.309171pt;}
.y10af_c00001{bottom:503.383235pt;}
.y38_c00001{bottom:503.387067pt;}
.y1512_c00001{bottom:503.462811pt;}
.y149b_c00001{bottom:503.463395pt;}
.y1385_c00001{bottom:503.699867pt;}
.y3b4_c00001{bottom:503.707067pt;}
.yee1_c00001{bottom:503.867259pt;}
.ya96_c00001{bottom:504.186371pt;}
.y1ae0_c00001{bottom:504.186923pt;}
.y10f2_c00001{bottom:504.343819pt;}
.y84b_c00001{bottom:504.347067pt;}
.y1561_c00001{bottom:504.423395pt;}
.y18cd_c00001{bottom:504.423979pt;}
.y486_c00001{bottom:504.427067pt;}
.y750_c00001{bottom:504.507067pt;}
.yaff_c00001{bottom:504.583595pt;}
.y1cd5_c00001{bottom:504.585971pt;}
.yae_c00001{bottom:504.587067pt;}
.y1dd8_c00001{bottom:504.660451pt;}
.y17b2_c00001{bottom:504.665627pt;}
.y1fe5_c00001{bottom:504.667107pt;}
.y22a4_c00001{bottom:504.669219pt;}
.y1b24_c00001{bottom:504.825755pt;}
.y5f5_c00001{bottom:504.907067pt;}
.y989_c00001{bottom:505.063307pt;}
.ya5a_c00001{bottom:505.064771pt;}
.ya31_c00001{bottom:505.066235pt;}
.y78b_c00001{bottom:505.067067pt;}
.y3d1_c00001{bottom:505.147067pt;}
.y2059_c00001{bottom:505.307707pt;}
.y15d_c00001{bottom:505.387067pt;}
.y1967_c00001{bottom:505.547891pt;}
.y936_c00001{bottom:505.941707pt;}
.yb84_c00001{bottom:505.942227pt;}
.y16b9_c00001{bottom:506.024507pt;}
.y1f91_c00001{bottom:506.027267pt;}
.y2389_c00001{bottom:506.027811pt;}
.y111a_c00001{bottom:506.180819pt;}
.y1373_c00001{bottom:506.260979pt;}
.y1f13_c00001{bottom:506.266323pt;}
.y1e71_c00001{bottom:506.344563pt;}
.y5b_c00001{bottom:506.347067pt;}
.y614_c00001{bottom:506.427067pt;}
.y22d9_c00001{bottom:506.507491pt;}
.y17c_c00001{bottom:506.587067pt;}
.y1e2d_c00001{bottom:506.667067pt;}
.y2127_c00001{bottom:506.667723pt;}
.y974_c00001{bottom:506.739587pt;}
.yba6_c00001{bottom:506.741051pt;}
.y183a_c00001{bottom:506.984507pt;}
.y11b1_c00001{bottom:506.985091pt;}
.y1311_c00001{bottom:507.220979pt;}
.y133b_c00001{bottom:507.304779pt;}
.y297_c00001{bottom:507.387067pt;}
.y16f3_c00001{bottom:507.466147pt;}
.ybff_c00001{bottom:507.619451pt;}
.y800_c00001{bottom:507.627067pt;}
.y2481_c00001{bottom:507.705195pt;}
.y169a_c00001{bottom:507.786467pt;}
.y1936_c00001{bottom:507.945675pt;}
.y2ef_c00001{bottom:508.027067pt;}
.y2436_c00001{bottom:508.029259pt;}
.y1d97_c00001{bottom:508.107667pt;}
.y157c_c00001{bottom:508.182147pt;}
.y262_c00001{bottom:508.267067pt;}
.y207c_c00001{bottom:508.427875pt;}
.y250b_c00001{bottom:508.587067pt;}
.y17fe_c00001{bottom:508.665195pt;}
.y18f4_c00001{bottom:508.665779pt;}
.y4cf_c00001{bottom:508.667067pt;}
.y214e_c00001{bottom:508.827067pt;}
.ycc3_c00001{bottom:508.841147pt;}
.ycf4_c00001{bottom:508.868795pt;}
.y1548_c00001{bottom:508.902251pt;}
.y469_c00001{bottom:509.227067pt;}
.y339_c00001{bottom:509.307067pt;}
.y4e5_c00001{bottom:509.307200pt;}
.y2214_c00001{bottom:509.309147pt;}
.y2322_c00001{bottom:509.627659pt;}
.y216e_c00001{bottom:509.627691pt;}
.y2d4_c00001{bottom:509.787067pt;}
.y621_c00001{bottom:509.787651pt;}
.y170c_c00001{bottom:509.862251pt;}
.y135b_c00001{bottom:509.862835pt;}
.y1f74_c00001{bottom:510.027067pt;}
.ye79_c00001{bottom:510.027435pt;}
.yeb2_c00001{bottom:510.028147pt;}
.ye15_c00001{bottom:510.029251pt;}
.y178e_c00001{bottom:510.099307pt;}
.y1df2_c00001{bottom:510.108075pt;}
.y1f35_c00001{bottom:510.267067pt;}
.y6ee_c00001{bottom:510.347067pt;}
.y15df_c00001{bottom:510.506787pt;}
.y23cd_c00001{bottom:510.669195pt;}
.y75e_c00001{bottom:510.747067pt;}
.y1c80_c00001{bottom:510.822835pt;}
.yfc7_c00001{bottom:510.826843pt;}
.y1c67_c00001{bottom:510.905251pt;}
.y1411_c00001{bottom:511.062947pt;}
.y2bc_c00001{bottom:511.067067pt;}
.y1ad_c00001{bottom:511.307067pt;}
.y3e7_c00001{bottom:511.387067pt;}
.y120c_c00001{bottom:511.463363pt;}
.y1026_c00001{bottom:511.466787pt;}
.y20a8_c00001{bottom:511.467243pt;}
.y219a_c00001{bottom:511.467323pt;}
.ydd9_c00001{bottom:511.548891pt;}
.y661_c00001{bottom:511.707067pt;}
.y143a_c00001{bottom:511.784003pt;}
.y19_c00001{bottom:511.867067pt;}
.y7d8_c00001{bottom:511.947067pt;}
.y13cf_c00001{bottom:512.023899pt;}
.y24f_c00001{bottom:512.107067pt;}
.y1055_c00001{bottom:512.343787pt;}
.yda7_c00001{bottom:512.347067pt;}
.y12c7_c00001{bottom:512.423363pt;}
.y159b_c00001{bottom:512.423947pt;}
.y30f_c00001{bottom:512.587200pt;}
.y1168_c00001{bottom:512.660419pt;}
.y201f_c00001{bottom:512.667699pt;}
.y230c_c00001{bottom:512.669187pt;}
.y57d_c00001{bottom:512.747200pt;}
.y24ce_c00001{bottom:512.907067pt;}
.yb62_c00001{bottom:513.064067pt;}
.y1c0d_c00001{bottom:513.066203pt;}
.y7b2_c00001{bottom:513.307067pt;}
.y1d27_c00001{bottom:513.308523pt;}
.y1233_c00001{bottom:513.383947pt;}
.y1bb3_c00001{bottom:513.384531pt;}
.y1e9c_c00001{bottom:513.786307pt;}
.y1c3b_c00001{bottom:513.787003pt;}
.y249f_c00001{bottom:513.867067pt;}
.yadf_c00001{bottom:513.942467pt;}
.y1db1_c00001{bottom:514.024475pt;}
.y21c3_c00001{bottom:514.029235pt;}
.yff7_c00001{bottom:514.264371pt;}
.y1b42_c00001{bottom:514.344531pt;}
.yd5_c00001{bottom:514.347067pt;}
.y226c_c00001{bottom:514.507491pt;}
.y13a8_c00001{bottom:514.585595pt;}
.y2370_c00001{bottom:514.669179pt;}
.y90e_c00001{bottom:514.740347pt;}
.y9b2_c00001{bottom:514.741811pt;}
.y1a83_c00001{bottom:514.984475pt;}
.y17d1_c00001{bottom:514.985059pt;}
.y12e4_c00001{bottom:515.221531pt;}
.y1fc9_c00001{bottom:515.307067pt;}
.y40e_c00001{bottom:515.387067pt;}
.ybec_c00001{bottom:515.620211pt;}
.y4f9_c00001{bottom:515.627067pt;}
.y7ca_c00001{bottom:515.707067pt;}
.y2097_c00001{bottom:515.707707pt;}
.y1cb9_c00001{bottom:515.709171pt;}
.y879_c00001{bottom:515.867067pt;}
.y127e_c00001{bottom:515.945059pt;}
.y2289_c00001{bottom:516.029227pt;}
.y9ea_c00001{bottom:516.103227pt;}
.y129e_c00001{bottom:516.181531pt;}
.y1141_c00001{bottom:516.182115pt;}
.y72d_c00001{bottom:516.187067pt;}
.y217_c00001{bottom:516.267067pt;}
.y32c_c00001{bottom:516.347067pt;}
.yb4a_c00001{bottom:516.419555pt;}
.y35b_c00001{bottom:516.667067pt;}
.y2253_c00001{bottom:516.669171pt;}
.y4c3_c00001{bottom:516.747067pt;}
.yf95_c00001{bottom:516.906227pt;}
.y103_c00001{bottom:517.070075pt;}
.y21db_c00001{bottom:517.227587pt;}
.yf37_c00001{bottom:517.305419pt;}
.y68d_c00001{bottom:517.307067pt;}
.y89b_c00001{bottom:517.387067pt;}
.y43d_c00001{bottom:517.467067pt;}
.y2006_c00001{bottom:517.547067pt;}
.y2356_c00001{bottom:517.627067pt;}
.y2108_c00001{bottom:517.627200pt;}
.y20c9_c00001{bottom:517.627659pt;}
.y816_c00001{bottom:517.707067pt;}
.ye49_c00001{bottom:517.708331pt;}
.y10cb_c00001{bottom:517.782643pt;}
.y4a6_c00001{bottom:517.788819pt;}
.y15ac_c00001{bottom:517.862803pt;}
.y167a_c00001{bottom:517.947067pt;}
.y1f51_c00001{bottom:518.107835pt;}
.y8e5_c00001{bottom:518.181680pt;}
.y6a7_c00001{bottom:518.347067pt;}
.y1ab5_c00001{bottom:518.506755pt;}
.y37b_c00001{bottom:518.507067pt;}
.y6db_c00001{bottom:518.587067pt;}
.yd7f_c00001{bottom:518.667067pt;}
.y394_c00001{bottom:518.747067pt;}
.y118d_c00001{bottom:518.822803pt;}
.y149a_c00001{bottom:518.823387pt;}
.y23d9_c00001{bottom:518.827347pt;}
.y3a6_c00001{bottom:518.907067pt;}
.y2440_c00001{bottom:518.987147pt;}
.y1384_c00001{bottom:519.059859pt;}
.y5c9_c00001{bottom:519.067067pt;}
.y1f3_c00001{bottom:519.227067pt;}
.yee0_c00001{bottom:519.227251pt;}
.yc29_c00001{bottom:519.300707pt;}
.y185d_c00001{bottom:519.307067pt;}
.y2dd_c00001{bottom:519.387067pt;}
.y1628_c00001{bottom:519.387931pt;}
.y198f_c00001{bottom:519.466755pt;}
.yf66_c00001{bottom:519.703811pt;}
.y13f1_c00001{bottom:519.709155pt;}
.y1560_c00001{bottom:519.783387pt;}
.y14bd_c00001{bottom:519.783971pt;}
.y1cd4_c00001{bottom:519.865803pt;}
.y1dd7_c00001{bottom:520.020443pt;}
.y17b1_c00001{bottom:520.025619pt;}
.y5ac_c00001{bottom:520.107067pt;}
.yd28_c00001{bottom:520.362811pt;}
.yd55_c00001{bottom:520.387387pt;}
.y1824_c00001{bottom:520.423915pt;}
.y424_c00001{bottom:520.427067pt;}
.y1a08_c00001{bottom:520.427923pt;}
.y2058_c00001{bottom:520.667699pt;}
.y19e2_c00001{bottom:520.743971pt;}
.y1966_c00001{bottom:520.907883pt;}
.ya10_c00001{bottom:521.064827pt;}
.ya95_c00001{bottom:521.066291pt;}
.y642_c00001{bottom:521.068235pt;}
.y82d_c00001{bottom:521.137987pt;}
.y203f_c00001{bottom:521.228104pt;}
.y2388_c00001{bottom:521.307643pt;}
.y16b8_c00001{bottom:521.384499pt;}
.y145_c00001{bottom:521.387067pt;}
.y1a62_c00001{bottom:521.387923pt;}
.y1520_c00001{bottom:521.620971pt;}
.y1e70_c00001{bottom:521.704555pt;}
.y218c_c00001{bottom:521.787067pt;}
.y22d8_c00001{bottom:521.867483pt;}
.y988_c00001{bottom:521.943227pt;}
.ya59_c00001{bottom:521.944691pt;}
.ya30_c00001{bottom:521.946155pt;}
.y2126_c00001{bottom:522.027715pt;}
.y1085_c00001{bottom:522.264923pt;}
.yf0e_c00001{bottom:522.268339pt;}
.y1814_c00001{bottom:522.344499pt;}
.y11b0_c00001{bottom:522.345083pt;}
.y5dd_c00001{bottom:522.347067pt;}
.y187f_c00001{bottom:522.507075pt;}
.y1310_c00001{bottom:522.580971pt;}
.y14e3_c00001{bottom:522.584979pt;}
.y133a_c00001{bottom:522.664771pt;}
.y1d75_c00001{bottom:522.669147pt;}
.y935_c00001{bottom:522.741107pt;}
.yc81_c00001{bottom:522.742571pt;}
.y7ec_c00001{bottom:522.747067pt;}
.y54f_c00001{bottom:522.827067pt;}
.y7c_c00001{bottom:522.907067pt;}
.y1601_c00001{bottom:522.985027pt;}
.y1699_c00001{bottom:523.066299pt;}
.y1b57_c00001{bottom:523.305083pt;}
.y1935_c00001{bottom:523.305667pt;}
.y1d4e_c00001{bottom:523.309091pt;}
.y56a_c00001{bottom:523.387067pt;}
.y1d96_c00001{bottom:523.467659pt;}
.y157b_c00001{bottom:523.542139pt;}
.y1e47_c00001{bottom:523.704131pt;}
.y6b9_c00001{bottom:523.707067pt;}
.y207b_c00001{bottom:523.707707pt;}
.y1650_c00001{bottom:523.786403pt;}
.y773_c00001{bottom:523.867067pt;}
.y17fd_c00001{bottom:523.945027pt;}
.y18f3_c00001{bottom:523.945611pt;}
.y23f3_c00001{bottom:524.029195pt;}
.y11eb_c00001{bottom:524.182083pt;}
.y19bf_c00001{bottom:524.265667pt;}
.y37_c00001{bottom:524.347067pt;}
.ybce_c00001{bottom:524.499371pt;}
.y16ca_c00001{bottom:524.663043pt;}
.y3b3_c00001{bottom:524.667067pt;}
.y2213_c00001{bottom:524.669139pt;}
.y1a96_c00001{bottom:524.905611pt;}
.y2321_c00001{bottom:524.907491pt;}
.y1e2c_c00001{bottom:525.067067pt;}
.y170b_c00001{bottom:525.142083pt;}
.y11ce_c00001{bottom:525.142667pt;}
.ye78_c00001{bottom:525.307267pt;}
.yeb1_c00001{bottom:525.307979pt;}
.ye14_c00001{bottom:525.309083pt;}
.y178d_c00001{bottom:525.379139pt;}
.y84a_c00001{bottom:525.387067pt;}
.y485_c00001{bottom:525.467067pt;}
.y8ce_c00001{bottom:525.547667pt;}
.y20e5_c00001{bottom:525.627323pt;}
.y15de_c00001{bottom:525.866779pt;}
.yfc6_c00001{bottom:526.106675pt;}
.y3d0_c00001{bottom:526.107067pt;}
.y79d_c00001{bottom:526.187067pt;}
.y2465_c00001{bottom:526.187419pt;}
.y1a46_c00001{bottom:526.265243pt;}
.y15c_c00001{bottom:526.347067pt;}
.ycc2_c00001{bottom:526.520507pt;}
.ycf3_c00001{bottom:526.548155pt;}
.y1a30_c00001{bottom:526.669131pt;}
.y10ae_c00001{bottom:526.743195pt;}
.y176d_c00001{bottom:526.823355pt;}
.y1025_c00001{bottom:526.826779pt;}
.y20a7_c00001{bottom:526.827235pt;}
.y2199_c00001{bottom:526.827315pt;}
.ydd8_c00001{bottom:526.908883pt;}
.y1540_c00001{bottom:527.063835pt;}
.y5a_c00001{bottom:527.387067pt;}
.y1adf_c00001{bottom:527.466723pt;}
.y17b_c00001{bottom:527.547067pt;}
.y1054_c00001{bottom:527.703779pt;}
.y12c6_c00001{bottom:527.783355pt;}
.y159a_c00001{bottom:527.783939pt;}
.y1167_c00001{bottom:528.020411pt;}
.y1fe4_c00001{bottom:528.027067pt;}
.y22ef_c00001{bottom:528.027691pt;}
.y22a3_c00001{bottom:528.029179pt;}
.y296_c00001{bottom:528.347067pt;}
.y1c0c_c00001{bottom:528.426195pt;}
.y10f1_c00001{bottom:528.664363pt;}
.y1d26_c00001{bottom:528.668515pt;}
.y1c98_c00001{bottom:528.743939pt;}
.y1bb2_c00001{bottom:528.744523pt;}
.y1b23_c00001{bottom:529.066139pt;}
.y620_c00001{bottom:529.067067pt;}
.y1c3a_c00001{bottom:529.146995pt;}
.y450_c00001{bottom:529.227067pt;}
.y261_c00001{bottom:529.307067pt;}
.y1db0_c00001{bottom:529.384467pt;}
.yafe_c00001{bottom:529.464275pt;}
.y1f12_c00001{bottom:529.546123pt;}
.y250a_c00001{bottom:529.627067pt;}
.y1b41_c00001{bottom:529.704523pt;}
.y226b_c00001{bottom:529.867483pt;}
.yb1b_c00001{bottom:529.943987pt;}
.y13a7_c00001{bottom:529.945587pt;}
.y2417_c00001{bottom:530.029171pt;}
.y468_c00001{bottom:530.187067pt;}
.y1a82_c00001{bottom:530.344467pt;}
.y17d0_c00001{bottom:530.345051pt;}
.y4e4_c00001{bottom:530.347200pt;}
.y714_c00001{bottom:530.427067pt;}
.y1119_c00001{bottom:530.501363pt;}
.y7ff_c00001{bottom:530.507067pt;}
.y12e3_c00001{bottom:530.581523pt;}
.yaaf_c00001{bottom:530.741867pt;}
.yb83_c00001{bottom:530.742387pt;}
.y2d3_c00001{bottom:530.747067pt;}
.y2096_c00001{bottom:531.067699pt;}
.y1cb8_c00001{bottom:531.069163pt;}
.y127d_c00001{bottom:531.305051pt;}
.y1afe_c00001{bottom:531.305635pt;}
.y2288_c00001{bottom:531.309059pt;}
.y6ed_c00001{bottom:531.387067pt;}
.y677_c00001{bottom:531.467067pt;}
.y14fb_c00001{bottom:531.541523pt;}
.y1455_c00001{bottom:531.542107pt;}
.y94b_c00001{bottom:531.620267pt;}
.yba5_c00001{bottom:531.621731pt;}
.y22ba_c00001{bottom:531.707675pt;}
.y16f2_c00001{bottom:531.786691pt;}
.y2252_c00001{bottom:532.029163pt;}
.y2bb_c00001{bottom:532.107067pt;}
.yf94_c00001{bottom:532.186059pt;}
.y1ac_c00001{bottom:532.267067pt;}
.yad_c00001{bottom:532.347067pt;}
.ybfe_c00001{bottom:532.500131pt;}
.y21da_c00001{bottom:532.507419pt;}
.y5f4_c00001{bottom:532.667067pt;}
.y20c8_c00001{bottom:532.907491pt;}
.y9e9_c00001{bottom:532.983147pt;}
.ye48_c00001{bottom:532.988163pt;}
.y10ca_c00001{bottom:533.062475pt;}
.y1591_c00001{bottom:533.142635pt;}
.y24e_c00001{bottom:533.147067pt;}
.yda6_c00001{bottom:533.387067pt;}
.y1df1_c00001{bottom:533.387875pt;}
.y74f_c00001{bottom:533.467067pt;}
.y30e_c00001{bottom:533.547200pt;}
.y1f34_c00001{bottom:533.627243pt;}
.y57c_c00001{bottom:533.787200pt;}
.y1ab4_c00001{bottom:533.866747pt;}
.y24b3_c00001{bottom:533.867067pt;}
.y1fb6_c00001{bottom:534.027067pt;}
.y23cc_c00001{bottom:534.029155pt;}
.y1511_c00001{bottom:534.102635pt;}
.y135a_c00001{bottom:534.103219pt;}
.y7b1_c00001{bottom:534.347067pt;}
.yedf_c00001{bottom:534.507083pt;}
.y198e_c00001{bottom:534.826747pt;}
.y249e_c00001{bottom:534.907067pt;}
.yf65_c00001{bottom:534.983643pt;}
.y1bf9_c00001{bottom:535.063219pt;}
.y1439_c00001{bottom:535.063803pt;}
.y1cd3_c00001{bottom:535.225795pt;}
.y214d_c00001{bottom:535.227067pt;}
.y1410_c00001{bottom:535.383491pt;}
.y17b0_c00001{bottom:535.385611pt;}
.yd4_c00001{bottom:535.387067pt;}
.y120b_c00001{bottom:535.783907pt;}
.y1a07_c00001{bottom:535.787915pt;}
.y19e1_c00001{bottom:536.023803pt;}
.y201e_c00001{bottom:536.027659pt;}
.y2057_c00001{bottom:536.027691pt;}
.y230b_c00001{bottom:536.029147pt;}
.y13ce_c00001{bottom:536.344443pt;}
.y40d_c00001{bottom:536.347067pt;}
.y102_c00001{bottom:536.349491pt;}
.y1f73_c00001{bottom:536.427067pt;}
.y4ce_c00001{bottom:536.667067pt;}
.y2387_c00001{bottom:536.667635pt;}
.y19ad_c00001{bottom:536.743907pt;}
.y16b7_c00001{bottom:536.744491pt;}
.y7c9_c00001{bottom:536.747067pt;}
.y1a61_c00001{bottom:536.747915pt;}
.y878_c00001{bottom:536.907067pt;}
.y151f_c00001{bottom:536.980963pt;}
.y1e6f_c00001{bottom:536.984387pt;}
.y2ee_c00001{bottom:536.987067pt;}
.y4a5_c00001{bottom:537.068235pt;}
.y72c_c00001{bottom:537.147067pt;}
.y22d7_c00001{bottom:537.227475pt;}
.y216_c00001{bottom:537.307067pt;}
.y2125_c00001{bottom:537.307547pt;}
.y21c2_c00001{bottom:537.309035pt;}
.y53e_c00001{bottom:537.387067pt;}
.yf0d_c00001{bottom:537.628331pt;}
.y1232_c00001{bottom:537.704491pt;}
.y11af_c00001{bottom:537.705075pt;}
.y187e_c00001{bottom:537.786907pt;}
.y4c2_c00001{bottom:537.787067pt;}
.y1339_c00001{bottom:537.944603pt;}
.ya0f_c00001{bottom:537.944747pt;}
.ya94_c00001{bottom:537.946211pt;}
.yd27_c00001{bottom:537.962299pt;}
.yd54_c00001{bottom:537.986875pt;}
.y1d74_c00001{bottom:538.029139pt;}
.y1600_c00001{bottom:538.345019pt;}
.y68c_c00001{bottom:538.347067pt;}
.y43c_c00001{bottom:538.427067pt;}
.yff6_c00001{bottom:538.584915pt;}
.y1934_c00001{bottom:538.585499pt;}
.y815_c00001{bottom:538.667067pt;}
.y1d4d_c00001{bottom:538.669083pt;}
.ya7e_c00001{bottom:538.742627pt;}
.ya58_c00001{bottom:538.744091pt;}
.y1d95_c00001{bottom:538.747491pt;}
.y164f_c00001{bottom:539.066235pt;}
.y207a_c00001{bottom:539.067699pt;}
.y1b92_c00001{bottom:539.305019pt;}
.y18f2_c00001{bottom:539.305603pt;}
.y23f2_c00001{bottom:539.309027pt;}
.y6a6_c00001{bottom:539.387067pt;}
.yc9c_c00001{bottom:539.539795pt;}
.y146e_c00001{bottom:539.542075pt;}
.y19be_c00001{bottom:539.545499pt;}
.y37a_c00001{bottom:539.547067pt;}
.y90d_c00001{bottom:539.621027pt;}
.y9b1_c00001{bottom:539.622491pt;}
.y6da_c00001{bottom:539.627067pt;}
.y393_c00001{bottom:539.707067pt;}
.y75d_c00001{bottom:539.787067pt;}
.y7d7_c00001{bottom:539.866763pt;}
.y2212_c00001{bottom:540.029131pt;}
.y5c8_c00001{bottom:540.107067pt;}
.y24de_c00001{bottom:540.187067pt;}
.y1a95_c00001{bottom:540.265603pt;}
.y2320_c00001{bottom:540.267483pt;}
.y2dc_c00001{bottom:540.347067pt;}
.y641_c00001{bottom:540.347651pt;}
.ybeb_c00001{bottom:540.500891pt;}
.y129d_c00001{bottom:540.502075pt;}
.y1140_c00001{bottom:540.502659pt;}
.ye77_c00001{bottom:540.667259pt;}
.yeb0_c00001{bottom:540.667971pt;}
.ye13_c00001{bottom:540.669075pt;}
.y18_c00001{bottom:540.907067pt;}
.y706_c00001{bottom:541.147067pt;}
.y15dd_c00001{bottom:541.226771pt;}
.yb49_c00001{bottom:541.379291pt;}
.yfc5_c00001{bottom:541.466667pt;}
.y423_c00001{bottom:541.467067pt;}
.y2464_c00001{bottom:541.467251pt;}
.y1f50_c00001{bottom:541.467795pt;}
.y2355_c00001{bottom:541.547067pt;}
.y1c66_c00001{bottom:541.625235pt;}
.yf36_c00001{bottom:541.625963pt;}
.y1b68_c00001{bottom:542.103187pt;}
.y1024_c00001{bottom:542.106611pt;}
.y20a6_c00001{bottom:542.107067pt;}
.y2198_c00001{bottom:542.107147pt;}
.ydd7_c00001{bottom:542.188715pt;}
.y8cd_c00001{bottom:542.347067pt;}
.y243f_c00001{bottom:542.347107pt;}
.y144_c00001{bottom:542.427067pt;}
.y1627_c00001{bottom:542.747891pt;}
.y1ade_c00001{bottom:542.826715pt;}
.y252c_c00001{bottom:542.987067pt;}
.y8e4_c00001{bottom:543.062360pt;}
.y118c_c00001{bottom:543.063187pt;}
.y1053_c00001{bottom:543.063771pt;}
.y13f0_c00001{bottom:543.069115pt;}
.y1166_c00001{bottom:543.300243pt;}
.y22ee_c00001{bottom:543.307523pt;}
.y5dc_c00001{bottom:543.387067pt;}
.y1e2b_c00001{bottom:543.467067pt;}
.y7eb_c00001{bottom:543.707067pt;}
.y7b_c00001{bottom:543.867067pt;}
.y2005_c00001{bottom:543.947067pt;}
.y155f_c00001{bottom:544.023771pt;}
.y14bc_c00001{bottom:544.024355pt;}
.y2107_c00001{bottom:544.027200pt;}
.y1d25_c00001{bottom:544.028507pt;}
.ycc1_c00001{bottom:544.119995pt;}
.ycf2_c00001{bottom:544.147643pt;}
.yc28_c00001{bottom:544.181387pt;}
.y1dd6_c00001{bottom:544.260827pt;}
.y1965_c00001{bottom:544.267843pt;}
.y569_c00001{bottom:544.347067pt;}
.y1b22_c00001{bottom:544.426131pt;}
.y203e_c00001{bottom:544.507904pt;}
.y1f8f_c00001{bottom:544.667603pt;}
.y1823_c00001{bottom:544.744459pt;}
.y6b8_c00001{bottom:544.747067pt;}
.y772_c00001{bottom:544.827067pt;}
.y1b40_c00001{bottom:544.984355pt;}
.y226a_c00001{bottom:545.227475pt;}
.y13a6_c00001{bottom:545.305579pt;}
.y2234_c00001{bottom:545.309003pt;}
.y32b_c00001{bottom:545.387067pt;}
.y1a81_c00001{bottom:545.704459pt;}
.y17cf_c00001{bottom:545.705043pt;}
.y35a_c00001{bottom:545.707067pt;}
.y1118_c00001{bottom:545.861355pt;}
.y12e2_c00001{bottom:545.941515pt;}
.y849_c00001{bottom:546.347067pt;}
.y1cb7_c00001{bottom:546.348995pt;}
.y1698_c00001{bottom:546.426259pt;}
.y484_c00001{bottom:546.427067pt;}
.y2095_c00001{bottom:546.427691pt;}
.y1839_c00001{bottom:546.584883pt;}
.y1084_c00001{bottom:546.585467pt;}
.y127c_c00001{bottom:546.665043pt;}
.y2287_c00001{bottom:546.669051pt;}
.y987_c00001{bottom:546.743387pt;}
.yc4c_c00001{bottom:546.744851pt;}
.ya2f_c00001{bottom:546.746315pt;}
.y130f_c00001{bottom:546.901515pt;}
.y1454_c00001{bottom:546.902099pt;}
.y14e2_c00001{bottom:546.905523pt;}
.y16f1_c00001{bottom:547.066523pt;}
.y78a_c00001{bottom:547.067067pt;}
.y22b9_c00001{bottom:547.067667pt;}
.y3cf_c00001{bottom:547.147067pt;}
.y2480_c00001{bottom:547.305571pt;}
.y2251_c00001{bottom:547.308995pt;}
.y15b_c00001{bottom:547.387067pt;}
.y1b56_c00001{bottom:547.545467pt;}
.yf93_c00001{bottom:547.546051pt;}
.y934_c00001{bottom:547.621787pt;}
.y3a5_c00001{bottom:547.867067pt;}
.y21d9_c00001{bottom:547.867411pt;}
.y16c9_c00001{bottom:547.942843pt;}
.y1e46_c00001{bottom:547.944515pt;}
.y218b_c00001{bottom:548.187067pt;}
.y17fc_c00001{bottom:548.265571pt;}
.y20c7_c00001{bottom:548.267483pt;}
.y19e_c00001{bottom:548.347067pt;}
.ye47_c00001{bottom:548.348155pt;}
.y9c8_c00001{bottom:548.500187pt;}
.yba4_c00001{bottom:548.501651pt;}
.y11ea_c00001{bottom:548.502627pt;}
.y17a_c00001{bottom:548.587067pt;}
.y1f33_c00001{bottom:548.907075pt;}
.y5ab_c00001{bottom:549.147200pt;}
.y1ab3_c00001{bottom:549.226739pt;}
.ybfd_c00001{bottom:549.380051pt;}
.y170a_c00001{bottom:549.462627pt;}
.y11cd_c00001{bottom:549.463211pt;}
.y20e4_c00001{bottom:549.547067pt;}
.y178c_c00001{bottom:549.699683pt;}
.yede_c00001{bottom:549.867075pt;}
.y1a2f_c00001{bottom:550.029091pt;}
.y198d_c00001{bottom:550.186739pt;}
.y260_c00001{bottom:550.267067pt;}
.yf64_c00001{bottom:550.343635pt;}
.y1bf8_c00001{bottom:550.423211pt;}
.y1438_c00001{bottom:550.423795pt;}
.y1a45_c00001{bottom:550.585787pt;}
.y2509_c00001{bottom:550.587067pt;}
.y140f_c00001{bottom:550.743483pt;}
.y10ad_c00001{bottom:551.063739pt;}
.y1a06_c00001{bottom:551.147907pt;}
.y467_c00001{bottom:551.227067pt;}
.y4e3_c00001{bottom:551.307200pt;}
.y201d_c00001{bottom:551.307491pt;}
.y2056_c00001{bottom:551.307523pt;}
.y22a2_c00001{bottom:551.308979pt;}
.y19e0_c00001{bottom:551.383795pt;}
.y153f_c00001{bottom:551.384379pt;}
.y13cd_c00001{bottom:551.624275pt;}
.y1c0b_c00001{bottom:551.786155pt;}
.y2d2_c00001{bottom:551.787067pt;}
.y1fe3_c00001{bottom:551.947067pt;}
.y1e80_c00001{bottom:552.023739pt;}
.y16b6_c00001{bottom:552.024323pt;}
.y2386_c00001{bottom:552.027627pt;}
.y1a60_c00001{bottom:552.107907pt;}
.y151e_c00001{bottom:552.260795pt;}
.y1e6e_c00001{bottom:552.344379pt;}
.y6ec_c00001{bottom:552.347067pt;}
.y676_c00001{bottom:552.427067pt;}
.y1c39_c00001{bottom:552.506955pt;}
.y2124_c00001{bottom:552.667539pt;}
.y1f11_c00001{bottom:552.906083pt;}
.yf0c_c00001{bottom:552.908163pt;}
.y1231_c00001{bottom:552.984323pt;}
.y10f0_c00001{bottom:552.984907pt;}
.y2ba_c00001{bottom:553.067067pt;}
.y187d_c00001{bottom:553.146899pt;}
.y1ab_c00001{bottom:553.307067pt;}
.y1d73_c00001{bottom:553.308971pt;}
.y36_c00001{bottom:553.387067pt;}
.y15ff_c00001{bottom:553.705011pt;}
.y1cea_c00001{bottom:553.944907pt;}
.y1d4c_c00001{bottom:554.029075pt;}
.y24d_c00001{bottom:554.107067pt;}
.y1d94_c00001{bottom:554.107483pt;}
.yafd_c00001{bottom:554.344955pt;}
.y164e_c00001{bottom:554.426227pt;}
.yda5_c00001{bottom:554.427067pt;}
.y2079_c00001{bottom:554.427691pt;}
.y74e_c00001{bottom:554.507067pt;}
.y30d_c00001{bottom:554.587200pt;}
.y1afd_c00001{bottom:554.665595pt;}
.y23f1_c00001{bottom:554.669019pt;}
.y1679_c00001{bottom:554.747067pt;}
.y57b_c00001{bottom:554.747200pt;}
.y2ed_c00001{bottom:554.827067pt;}
.y1372_c00001{bottom:554.902067pt;}
.y1be0_c00001{bottom:554.905491pt;}
.y24b2_c00001{bottom:554.907067pt;}
.y2211_c00001{bottom:555.308963pt;}
.y7b0_c00001{bottom:555.387067pt;}
.y1a94_c00001{bottom:555.545435pt;}
.y101_c00001{bottom:555.549851pt;}
.yaae_c00001{bottom:555.622547pt;}
.yb82_c00001{bottom:555.623067pt;}
.y231f_c00001{bottom:555.627475pt;}
.yd26_c00001{bottom:555.641659pt;}
.yd53_c00001{bottom:555.666235pt;}
.y129c_c00001{bottom:555.862067pt;}
.y249d_c00001{bottom:555.867067pt;}
.ye76_c00001{bottom:556.027251pt;}
.yeaf_c00001{bottom:556.027963pt;}
.ye12_c00001{bottom:556.029067pt;}
.y59_c00001{bottom:556.347067pt;}
.y4a4_c00001{bottom:556.347651pt;}
.y613_c00001{bottom:556.427067pt;}
.y94a_c00001{bottom:556.500947pt;}
.y9b0_c00001{bottom:556.502411pt;}
.y15dc_c00001{bottom:556.506603pt;}
.y1df0_c00001{bottom:556.747835pt;}
.yfc4_c00001{bottom:556.826659pt;}
.y2463_c00001{bottom:556.827243pt;}
.yf35_c00001{bottom:556.905795pt;}
.y61f_c00001{bottom:556.907067pt;}
.y23cb_c00001{bottom:557.308955pt;}
.y10c9_c00001{bottom:557.383019pt;}
.y295_c00001{bottom:557.387067pt;}
.y1590_c00001{bottom:557.463179pt;}
.ydd6_c00001{bottom:557.548707pt;}
.y4f8_c00001{bottom:557.627067pt;}
.y7c8_c00001{bottom:557.707067pt;}
.y9e8_c00001{bottom:557.863827pt;}
.y877_c00001{bottom:557.867067pt;}
.y1add_c00001{bottom:558.186707pt;}
.yb48_c00001{bottom:558.259211pt;}
.y215_c00001{bottom:558.347067pt;}
.y118b_c00001{bottom:558.423179pt;}
.y1359_c00001{bottom:558.423763pt;}
.y53d_c00001{bottom:558.427067pt;}
.y1165_c00001{bottom:558.660235pt;}
.y22ed_c00001{bottom:558.667515pt;}
.y4c1_c00001{bottom:558.747067pt;}
.y1d24_c00001{bottom:559.308339pt;}
.y230a_c00001{bottom:559.308947pt;}
.y155e_c00001{bottom:559.383763pt;}
.y14bb_c00001{bottom:559.384347pt;}
.y68b_c00001{bottom:559.387067pt;}
.y43b_c00001{bottom:559.467067pt;}
.y1e04_c00001{bottom:559.546339pt;}
.y1964_c00001{bottom:559.547675pt;}
.y17af_c00001{bottom:559.625995pt;}
.y4cd_c00001{bottom:559.627067pt;}
.y814_c00001{bottom:559.707067pt;}
.y1b21_c00001{bottom:559.786123pt;}
.y8e3_c00001{bottom:559.942280pt;}
.y1822_c00001{bottom:560.024291pt;}
.y1f8e_c00001{bottom:560.027595pt;}
.y6a5_c00001{bottom:560.347067pt;}
.y1fb5_c00001{bottom:560.427067pt;}
.y22d6_c00001{bottom:560.507275pt;}
.y2269_c00001{bottom:560.507307pt;}
.y13a5_c00001{bottom:560.585411pt;}
.y379_c00001{bottom:560.587067pt;}
.y6d9_c00001{bottom:560.667067pt;}
.y21c1_c00001{bottom:560.668995pt;}
.y19ac_c00001{bottom:560.984291pt;}
.y1e14_c00001{bottom:560.984875pt;}
.yc27_c00001{bottom:561.061307pt;}
.y5c7_c00001{bottom:561.067067pt;}
.y12e1_c00001{bottom:561.221347pt;}
.y236f_c00001{bottom:561.308939pt;}
.yac_c00001{bottom:561.387067pt;}
.y214c_c00001{bottom:561.627067pt;}
.y5f3_c00001{bottom:561.707067pt;}
.y2094_c00001{bottom:561.707523pt;}
.y1cb6_c00001{bottom:561.708987pt;}
.ycc0_c00001{bottom:561.719483pt;}
.ycf1_c00001{bottom:561.747131pt;}
.y1697_c00001{bottom:561.786251pt;}
.yd7e_c00001{bottom:561.787067pt;}
.y17_c00001{bottom:561.867067pt;}
.y127b_c00001{bottom:561.944875pt;}
.y1083_c00001{bottom:561.945459pt;}
.y2435_c00001{bottom:562.029043pt;}
.y705_c00001{bottom:562.107067pt;}
.y1453_c00001{bottom:562.181931pt;}
.y1338_c00001{bottom:562.265147pt;}
.y16f0_c00001{bottom:562.426515pt;}
.y422_c00001{bottom:562.427067pt;}
.y22b8_c00001{bottom:562.427659pt;}
.y660_c00001{bottom:562.667067pt;}
.y2250_c00001{bottom:562.668987pt;}
.ya0e_c00001{bottom:562.744907pt;}
.ya93_c00001{bottom:562.746371pt;}
.y1f72_c00001{bottom:562.827067pt;}
.yff5_c00001{bottom:562.905459pt;}
.yf92_c00001{bottom:562.906043pt;}
.y24cd_c00001{bottom:562.907067pt;}
.y21d8_c00001{bottom:563.227403pt;}
.y1e45_c00001{bottom:563.304507pt;}
.y143_c00001{bottom:563.387067pt;}
.y17fb_c00001{bottom:563.545403pt;}
.y18f1_c00001{bottom:563.545987pt;}
.y986_c00001{bottom:563.623307pt;}
.ya57_c00001{bottom:563.624771pt;}
.y20c6_c00001{bottom:563.627475pt;}
.ye46_c00001{bottom:563.627987pt;}
.y1258_c00001{bottom:563.862619pt;}
.y82c_c00001{bottom:564.098251pt;}
.y1f32_c00001{bottom:564.267067pt;}
.y5db_c00001{bottom:564.347067pt;}
.y90c_c00001{bottom:564.501707pt;}
.yb31_c00001{bottom:564.503171pt;}
.y1ab2_c00001{bottom:564.506571pt;}
.y113f_c00001{bottom:564.823203pt;}
.y54e_c00001{bottom:564.827067pt;}
.y1f4f_c00001{bottom:564.827755pt;}
.y7a_c00001{bottom:564.907067pt;}
.yedd_c00001{bottom:565.227067pt;}
.yc7a_c00001{bottom:565.380107pt;}
.ybea_c00001{bottom:565.381571pt;}
.y50b_c00001{bottom:565.387067pt;}
.y198c_c00001{bottom:565.466571pt;}
.y20a5_c00001{bottom:565.467107pt;}
.y3a4_c00001{bottom:565.707067pt;}
.y1c25_c00001{bottom:565.783203pt;}
.y1437_c00001{bottom:565.783787pt;}
.y604_c00001{bottom:565.786651pt;}
.y1a44_c00001{bottom:565.865619pt;}
.y771_c00001{bottom:565.867067pt;}
.y140e_c00001{bottom:566.023315pt;}
.y1626_c00001{bottom:566.107851pt;}
.y72b_c00001{bottom:566.187067pt;}
.y13ef_c00001{bottom:566.348915pt;}
.y120a_c00001{bottom:566.423731pt;}
.y8ad_c00001{bottom:566.427067pt;}
.y1023_c00001{bottom:566.427155pt;}
.y1a05_c00001{bottom:566.427739pt;}
.y359_c00001{bottom:566.667067pt;}
.y201c_c00001{bottom:566.667483pt;}
.y2055_c00001{bottom:566.667515pt;}
.y1c0a_c00001{bottom:567.065987pt;}
.y1052_c00001{bottom:567.304155pt;}
.y2385_c00001{bottom:567.307459pt;}
.y12c5_c00001{bottom:567.383731pt;}
.y1499_c00001{bottom:567.384315pt;}
.y848_c00001{bottom:567.387067pt;}
.y483_c00001{bottom:567.467067pt;}
.y151d_c00001{bottom:567.620787pt;}
.y75c_c00001{bottom:567.787067pt;}
.y203d_c00001{bottom:567.867864pt;}
.y2354_c00001{bottom:567.947067pt;}
.y2123_c00001{bottom:568.027531pt;}
.y3ce_c00001{bottom:568.107067pt;}
.y10ef_c00001{bottom:568.264739pt;}
.yf0b_c00001{bottom:568.268155pt;}
.y1230_c00001{bottom:568.344315pt;}
.y11ae_c00001{bottom:568.344899pt;}
.y15a_c00001{bottom:568.347067pt;}
.y187c_c00001{bottom:568.506891pt;}
.y1dd5_c00001{bottom:568.581371pt;}
.y1d72_c00001{bottom:568.668963pt;}
.y392_c00001{bottom:568.747067pt;}
.y15fe_c00001{bottom:568.984843pt;}
.y1b3f_c00001{bottom:569.304899pt;}
.yc1_c00001{bottom:569.387067pt;}
.y2078_c00001{bottom:569.707523pt;}
.y164d_c00001{bottom:569.786219pt;}
.y17ce_c00001{bottom:569.945427pt;}
.y2286_c00001{bottom:570.029011pt;}
.y1117_c00001{bottom:570.101739pt;}
.y5aa_c00001{bottom:570.107200pt;}
.y146d_c00001{bottom:570.181899pt;}
.y1bdf_c00001{bottom:570.265483pt;}
.y2004_c00001{bottom:570.347067pt;}
.y2106_c00001{bottom:570.427200pt;}
.y2210_c00001{bottom:570.668955pt;}
.y1838_c00001{bottom:570.905427pt;}
.y129b_c00001{bottom:571.141899pt;}
.y14e1_c00001{bottom:571.226067pt;}
.y44f_c00001{bottom:571.227067pt;}
.y16c8_c00001{bottom:571.302803pt;}
.y25f_c00001{bottom:571.307067pt;}
.ye75_c00001{bottom:571.307083pt;}
.yeae_c00001{bottom:571.307795pt;}
.ye11_c00001{bottom:571.308899pt;}
.y247f_c00001{bottom:571.545955pt;}
.ya2e_c00001{bottom:571.626995pt;}
.y2508_c00001{bottom:571.627067pt;}
.y15db_c00001{bottom:571.866595pt;}
.y252b_c00001{bottom:572.027067pt;}
.yfc3_c00001{bottom:572.106491pt;}
.y185c_c00001{bottom:572.107067pt;}
.y466_c00001{bottom:572.187067pt;}
.yf34_c00001{bottom:572.265787pt;}
.y4e2_c00001{bottom:572.347200pt;}
.y933_c00001{bottom:572.502467pt;}
.yb81_c00001{bottom:572.502987pt;}
.y2d1_c00001{bottom:572.747067pt;}
.y11e9_c00001{bottom:572.823171pt;}
.ydd5_c00001{bottom:572.828539pt;}
.y1678_c00001{bottom:573.147067pt;}
.yd25_c00001{bottom:573.241147pt;}
.yd52_c00001{bottom:573.265723pt;}
.y1a2e_c00001{bottom:573.308891pt;}
.y95f_c00001{bottom:573.380867pt;}
.yba3_c00001{bottom:573.382331pt;}
.y568_c00001{bottom:573.387067pt;}
.y1adc_c00001{bottom:573.466539pt;}
.y675_c00001{bottom:573.467067pt;}
.y118a_c00001{bottom:573.783171pt;}
.y11cc_c00001{bottom:573.783755pt;}
.y6b7_c00001{bottom:573.787067pt;}
.y1164_c00001{bottom:574.020227pt;}
.y32a_c00001{bottom:574.187067pt;}
.ybfc_c00001{bottom:574.260731pt;}
.y1aa_c00001{bottom:574.267067pt;}
.y35_c00001{bottom:574.427067pt;}
.y218a_c00001{bottom:574.587067pt;}
.yf63_c00001{bottom:574.664179pt;}
.y3b2_c00001{bottom:574.667067pt;}
.y22a1_c00001{bottom:574.668939pt;}
.y9e7_c00001{bottom:574.743747pt;}
.y155d_c00001{bottom:574.743755pt;}
.y14ba_c00001{bottom:574.744339pt;}
.y100_c00001{bottom:574.829267pt;}
.y1963_c00001{bottom:574.907667pt;}
.y1b20_c00001{bottom:575.065955pt;}
.y10ac_c00001{bottom:575.304123pt;}
.y1f8d_c00001{bottom:575.307427pt;}
.y1821_c00001{bottom:575.384283pt;}
.y1a5f_c00001{bottom:575.387707pt;}
.y74d_c00001{bottom:575.467067pt;}
.y19df_c00001{bottom:575.624179pt;}
.y153e_c00001{bottom:575.624763pt;}
.y4a3_c00001{bottom:575.627067pt;}
.y30c_c00001{bottom:575.627200pt;}
.y1e6d_c00001{bottom:575.704339pt;}
.y1c38_c00001{bottom:575.786755pt;}
.y57a_c00001{bottom:575.787200pt;}
.y24b1_c00001{bottom:575.867067pt;}
.y13cc_c00001{bottom:575.944819pt;}
.y13a4_c00001{bottom:575.945403pt;}
.y20e3_c00001{bottom:575.947067pt;}
.y2233_c00001{bottom:576.028987pt;}
.y79c_c00001{bottom:576.187067pt;}
.y1f10_c00001{bottom:576.266043pt;}
.y1a80_c00001{bottom:576.344283pt;}
.y7af_c00001{bottom:576.347067pt;}
.yda4_c00001{bottom:576.507067pt;}
.y12e0_c00001{bottom:576.581339pt;}
.y8e2_c00001{bottom:576.741680pt;}
.y249c_c00001{bottom:576.907067pt;}
.y1696_c00001{bottom:577.066083pt;}
.y2093_c00001{bottom:577.067515pt;}
.y1cb5_c00001{bottom:577.068979pt;}
.y1082_c00001{bottom:577.225291pt;}
.y127a_c00001{bottom:577.304867pt;}
.y1d4b_c00001{bottom:577.308875pt;}
.y58_c00001{bottom:577.387067pt;}
.y1d93_c00001{bottom:577.467443pt;}
.y179_c00001{bottom:577.547067pt;}
.y22b7_c00001{bottom:577.707491pt;}
.y16ef_c00001{bottom:577.786507pt;}
.y1afc_c00001{bottom:577.945395pt;}
.y224f_c00001{bottom:578.028979pt;}
.y19bd_c00001{bottom:578.265451pt;}
.y1fe2_c00001{bottom:578.347067pt;}
.y40c_c00001{bottom:578.427067pt;}
.y1e44_c00001{bottom:578.664499pt;}
.y17fa_c00001{bottom:578.905395pt;}
.y876_c00001{bottom:578.907067pt;}
.y231e_c00001{bottom:578.907275pt;}
.y20c5_c00001{bottom:578.907307pt;}
.ye45_c00001{bottom:578.987979pt;}
.y1371_c00001{bottom:579.142451pt;}
.yafc_c00001{bottom:579.225635pt;}
.y214_c00001{bottom:579.307067pt;}
.y53c_c00001{bottom:579.387067pt;}
.ycbf_c00001{bottom:579.398843pt;}
.ycf0_c00001{bottom:579.426491pt;}
.yb61_c00001{bottom:579.624827pt;}
.ya92_c00001{bottom:579.626291pt;}
.y4c0_c00001{bottom:579.787067pt;}
.y1def_c00001{bottom:580.107795pt;}
.y2462_c00001{bottom:580.187203pt;}
.y7d6_c00001{bottom:580.267067pt;}
.y68a_c00001{bottom:580.347067pt;}
.y89a_c00001{bottom:580.427067pt;}
.ya7d_c00001{bottom:580.503227pt;}
.ya56_c00001{bottom:580.504691pt;}
.y43a_c00001{bottom:580.507067pt;}
.y23ca_c00001{bottom:580.668915pt;}
.y813_c00001{bottom:580.747067pt;}
.y1ebd_c00001{bottom:581.063035pt;}
.yedc_c00001{bottom:581.147067pt;}
.y1a43_c00001{bottom:581.225611pt;}
.y90b_c00001{bottom:581.381627pt;}
.y9af_c00001{bottom:581.383091pt;}
.y140d_c00001{bottom:581.383307pt;}
.y378_c00001{bottom:581.547067pt;}
.y6d8_c00001{bottom:581.627067pt;}
.y10c8_c00001{bottom:581.703563pt;}
.y176c_c00001{bottom:581.783723pt;}
.y1a04_c00001{bottom:581.787731pt;}
.y201b_c00001{bottom:582.027475pt;}
.y2054_c00001{bottom:582.027507pt;}
.y2b9_c00001{bottom:582.107067pt;}
.yc79_c00001{bottom:582.260027pt;}
.ybe9_c00001{bottom:582.261491pt;}
.y8c0_c00001{bottom:582.267067pt;}
.y52e_c00001{bottom:582.347067pt;}
.yab_c00001{bottom:582.427067pt;}
.yc9b_c00001{bottom:582.500059pt;}
.y5f2_c00001{bottom:582.667067pt;}
.y2384_c00001{bottom:582.667451pt;}
.y1d23_c00001{bottom:582.668299pt;}
.y2309_c00001{bottom:582.668907pt;}
.y1358_c00001{bottom:582.744307pt;}
.yd7d_c00001{bottom:582.827067pt;}
.y16_c00001{bottom:582.907067pt;}
.y1383_c00001{bottom:582.980779pt;}
.yb47_c00001{bottom:583.059371pt;}
.y24c_c00001{bottom:583.147067pt;}
.y2122_c00001{bottom:583.307363pt;}
.y421_c00001{bottom:583.467067pt;}
.y1ec6_c00001{bottom:583.624147pt;}
.y10ee_c00001{bottom:583.624731pt;}
.yf0a_c00001{bottom:583.628147pt;}
.y122f_c00001{bottom:583.704307pt;}
.y11ad_c00001{bottom:583.704891pt;}
.y187b_c00001{bottom:583.786723pt;}
.y24cc_c00001{bottom:583.867067pt;}
.y22d5_c00001{bottom:583.867235pt;}
.y21d7_c00001{bottom:583.867267pt;}
.y1dd4_c00001{bottom:583.941363pt;}
.y17ae_c00001{bottom:583.946539pt;}
.y21c0_c00001{bottom:584.028955pt;}
.y191b_c00001{bottom:584.344835pt;}
.y142_c00001{bottom:584.427067pt;}
.y236e_c00001{bottom:584.668899pt;}
.y164c_c00001{bottom:585.066051pt;}
.y2077_c00001{bottom:585.067515pt;}
.y19ab_c00001{bottom:585.304835pt;}
.y1d0e_c00001{bottom:585.305419pt;}
.y2285_c00001{bottom:585.308843pt;}
.y5d8_c00001{bottom:585.387067pt;}
.y1452_c00001{bottom:585.541891pt;}
.y294_c00001{bottom:585.867059pt;}
.y1c2_c00001{bottom:585.867067pt;}
.yc26_c00001{bottom:585.941987pt;}
.y220f_c00001{bottom:586.028947pt;}
.yf91_c00001{bottom:586.185843pt;}
.y1837_c00001{bottom:586.265419pt;}
.y2353_c00001{bottom:586.347067pt;}
.y129a_c00001{bottom:586.501891pt;}
.y157a_c00001{bottom:586.502475pt;}
.y1337_c00001{bottom:586.505531pt;}
.y4f7_c00001{bottom:586.667067pt;}
.ye74_c00001{bottom:586.667075pt;}
.yead_c00001{bottom:586.667787pt;}
.ye10_c00001{bottom:586.668891pt;}
.y7c7_c00001{bottom:586.747067pt;}
.y1fb4_c00001{bottom:586.827067pt;}
.y247e_c00001{bottom:586.905947pt;}
.yff4_c00001{bottom:587.145843pt;}
.y15da_c00001{bottom:587.226587pt;}
.y640_c00001{bottom:587.387067pt;}
.yfc2_c00001{bottom:587.466483pt;}
.ya0d_c00001{bottom:587.625587pt;}
.yf33_c00001{bottom:587.625779pt;}
.y1f31_c00001{bottom:587.627067pt;}
.y358_c00001{bottom:587.707067pt;}
.y1b91_c00001{bottom:587.865947pt;}
.y18f0_c00001{bottom:587.866531pt;}
.y214b_c00001{bottom:588.027067pt;}
.y1257_c00001{bottom:588.103003pt;}
.y1f4e_c00001{bottom:588.107555pt;}
.ydd4_c00001{bottom:588.188531pt;}
.y847_c00001{bottom:588.347067pt;}
.y985_c00001{bottom:588.503987pt;}
.yc4b_c00001{bottom:588.505451pt;}
.ya2d_c00001{bottom:588.506915pt;}
.y1adb_c00001{bottom:588.826531pt;}
.y20a4_c00001{bottom:588.827067pt;}
.y1ab1_c00001{bottom:588.827115pt;}
.y1189_c00001{bottom:589.063003pt;}
.y113e_c00001{bottom:589.063587pt;}
.y789_c00001{bottom:589.067067pt;}
.y3cd_c00001{bottom:589.147067pt;}
.y1f71_c00001{bottom:589.227067pt;}
.y178b_c00001{bottom:589.300059pt;}
.y932_c00001{bottom:589.382387pt;}
.yb80_c00001{bottom:589.382907pt;}
.yc80_c00001{bottom:589.383851pt;}
.y6a4_c00001{bottom:589.387067pt;}
.y1625_c00001{bottom:589.387651pt;}
.y243e_c00001{bottom:589.627067pt;}
.y13ee_c00001{bottom:589.708875pt;}
.y198b_c00001{bottom:589.787115pt;}
.y1c24_c00001{bottom:590.023587pt;}
.y18a1_c00001{bottom:590.024171pt;}
.y5c6_c00001{bottom:590.107200pt;}
.y1c65_c00001{bottom:590.186163pt;}
.y973_c00001{bottom:590.260787pt;}
.y2a6_c00001{bottom:590.267067pt;}
.y1962_c00001{bottom:590.267659pt;}
.y1c09_c00001{bottom:590.425947pt;}
.y19d_c00001{bottom:590.427067pt;}
.y10ab_c00001{bottom:590.664115pt;}
.y75b_c00001{bottom:590.667067pt;}
.y1f8c_c00001{bottom:590.667419pt;}
.y1209_c00001{bottom:590.744275pt;}
.y1022_c00001{bottom:590.747699pt;}
.yd24_c00001{bottom:590.920507pt;}
.yd51_c00001{bottom:590.945083pt;}
.y1e6c_c00001{bottom:590.984171pt;}
.y1c37_c00001{bottom:591.146747pt;}
.y704_c00001{bottom:591.147067pt;}
.y5a9_c00001{bottom:591.147200pt;}
.y203c_c00001{bottom:591.147664pt;}
.y603_c00001{bottom:591.226763pt;}
.y2232_c00001{bottom:591.308819pt;}
.y1677_c00001{bottom:591.547067pt;}
.y1051_c00001{bottom:591.624699pt;}
.y12c4_c00001{bottom:591.704275pt;}
.y1904_c00001{bottom:591.704859pt;}
.y12df_c00001{bottom:591.941331pt;}
.y1d71_c00001{bottom:592.028923pt;}
.y44e_c00001{bottom:592.267067pt;}
.y25e_c00001{bottom:592.347067pt;}
.y2092_c00001{bottom:592.347347pt;}
.y1cb4_c00001{bottom:592.348811pt;}
.y1695_c00001{bottom:592.426075pt;}
.y1b7a_c00001{bottom:592.584699pt;}
.y1081_c00001{bottom:592.585283pt;}
.y1d4a_c00001{bottom:592.668867pt;}
.y1d92_c00001{bottom:592.747275pt;}
.y13a3_c00001{bottom:592.905923pt;}
.y252a_c00001{bottom:592.987067pt;}
.y16ee_c00001{bottom:593.066339pt;}
.y22b6_c00001{bottom:593.067483pt;}
.y15fd_c00001{bottom:593.305387pt;}
.y4e1_c00001{bottom:593.307200pt;}
.y224e_c00001{bottom:593.308811pt;}
.y19bc_c00001{bottom:593.545283pt;}
.y2d0_c00001{bottom:593.787067pt;}
.y770_c00001{bottom:593.866955pt;}
.y79_c00001{bottom:593.867067pt;}
.yff_c00001{bottom:594.108683pt;}
.y72a_c00001{bottom:594.187067pt;}
.y17f9_c00001{bottom:594.265387pt;}
.y17cd_c00001{bottom:594.265971pt;}
.ye44_c00001{bottom:594.347971pt;}
.y1116_c00001{bottom:594.422283pt;}
.y50a_c00001{bottom:594.427067pt;}
.y1370_c00001{bottom:594.502443pt;}
.y16c7_c00001{bottom:594.662763pt;}
.y6b6_c00001{bottom:594.747067pt;}
.y1a93_c00001{bottom:595.225971pt;}
.y1a9_c00001{bottom:595.307067pt;}
.y34_c00001{bottom:595.387067pt;}
.y130e_c00001{bottom:595.462443pt;}
.y14e0_c00001{bottom:595.466451pt;}
.y2461_c00001{bottom:595.467035pt;}
.y1ebc_c00001{bottom:596.423027pt;}
.y482_c00001{bottom:596.427067pt;}
.y74c_c00001{bottom:596.507067pt;}
.y30b_c00001{bottom:596.587200pt;}
.y140c_c00001{bottom:596.663139pt;}
.y1fe1_c00001{bottom:596.667067pt;}
.y1a2d_c00001{bottom:596.668851pt;}
.y391_c00001{bottom:596.747067pt;}
.y579_c00001{bottom:596.747200pt;}
.y2105_c00001{bottom:596.827200pt;}
.y24b0_c00001{bottom:596.907067pt;}
.ycbe_c00001{bottom:596.998331pt;}
.ycef_c00001{bottom:597.025979pt;}
.y11e8_c00001{bottom:597.063555pt;}
.y3b1_c00001{bottom:597.067067pt;}
.y1a03_c00001{bottom:597.147723pt;}
.y201a_c00001{bottom:597.307307pt;}
.yaad_c00001{bottom:597.383147pt;}
.yacb_c00001{bottom:597.384611pt;}
.y159_c00001{bottom:597.387067pt;}
.yda3_c00001{bottom:597.547067pt;}
.y249b_c00001{bottom:597.867067pt;}
.y12ff_c00001{bottom:598.023555pt;}
.y1483_c00001{bottom:598.024139pt;}
.y2383_c00001{bottom:598.027443pt;}
.y1d22_c00001{bottom:598.028291pt;}
.y22a0_c00001{bottom:598.028899pt;}
.y1163_c00001{bottom:598.260611pt;}
.y95e_c00001{bottom:598.261547pt;}
.y9ae_c00001{bottom:598.263011pt;}
.y57_c00001{bottom:598.427067pt;}
.y185b_c00001{bottom:598.507067pt;}
.y178_c00001{bottom:598.587067pt;}
.y1e2a_c00001{bottom:598.667067pt;}
.y2121_c00001{bottom:598.667355pt;}
.yedb_c00001{bottom:598.907435pt;}
.yf09_c00001{bottom:598.907979pt;}
.y122e_c00001{bottom:598.984139pt;}
.yf62_c00001{bottom:598.984723pt;}
.ybe8_c00001{bottom:599.060891pt;}
.y187a_c00001{bottom:599.146715pt;}
.y22d4_c00001{bottom:599.147067pt;}
.y1dd3_c00001{bottom:599.221195pt;}
.y13cb_c00001{bottom:599.304779pt;}
.y17ad_c00001{bottom:599.306531pt;}
.y2416_c00001{bottom:599.308787pt;}
.y1b1f_c00001{bottom:599.386499pt;}
.y9e6_c00001{bottom:599.543907pt;}
.y1f0f_c00001{bottom:599.545843pt;}
.y191a_c00001{bottom:599.704827pt;}
.y875_c00001{bottom:599.867067pt;}
.y19de_c00001{bottom:599.944723pt;}
.y153d_c00001{bottom:599.945307pt;}
.y213_c00001{bottom:600.347067pt;}
.y2076_c00001{bottom:600.347347pt;}
.y53b_c00001{bottom:600.427067pt;}
.y1d0d_c00001{bottom:600.585251pt;}
.y2507_c00001{bottom:600.587067pt;}
.y7ea_c00001{bottom:600.667067pt;}
.y2284_c00001{bottom:600.668835pt;}
.y4bf_c00001{bottom:600.747067pt;}
.y1451_c00001{bottom:600.901883pt;}
.y2189_c00001{bottom:600.987067pt;}
.y465_c00001{bottom:601.227067pt;}
.y23a9_c00001{bottom:601.308779pt;}
.y689_c00001{bottom:601.387067pt;}
.y439_c00001{bottom:601.467067pt;}
.y1279_c00001{bottom:601.545251pt;}
.yf90_c00001{bottom:601.545835pt;}
.y8e1_c00001{bottom:601.622360pt;}
.y1cf8_c00001{bottom:601.861883pt;}
.y1336_c00001{bottom:601.865523pt;}
.ye73_c00001{bottom:602.027235pt;}
.yeac_c00001{bottom:602.027779pt;}
.ye0f_c00001{bottom:602.028883pt;}
.y247d_c00001{bottom:602.265939pt;}
.y231d_c00001{bottom:602.267235pt;}
.y20c4_c00001{bottom:602.267267pt;}
.y20e2_c00001{bottom:602.347067pt;}
.y15d9_c00001{bottom:602.506419pt;}
.y377_c00001{bottom:602.587067pt;}
.y6d7_c00001{bottom:602.667067pt;}
.yfc1_c00001{bottom:602.826475pt;}
.y1e43_c00001{bottom:602.904883pt;}
.yf32_c00001{bottom:602.905611pt;}
.y2b8_c00001{bottom:603.067067pt;}
.y1b90_c00001{bottom:603.225939pt;}
.y18ef_c00001{bottom:603.226523pt;}
.y2db_c00001{bottom:603.387067pt;}
.y1dee_c00001{bottom:603.387595pt;}
.y15ab_c00001{bottom:603.462995pt;}
.y1f90_c00001{bottom:603.547067pt;}
.ydd3_c00001{bottom:603.548523pt;}
.y5f1_c00001{bottom:603.707067pt;}
.y15_c00001{bottom:603.867067pt;}
.y23c9_c00001{bottom:603.948715pt;}
.yafb_c00001{bottom:604.106315pt;}
.y24b_c00001{bottom:604.107067pt;}
.y1188_c00001{bottom:604.422995pt;}
.y113d_c00001{bottom:604.423579pt;}
.y420_c00001{bottom:604.427067pt;}
.ya0c_c00001{bottom:604.505507pt;}
.ya91_c00001{bottom:604.506971pt;}
.y178a_c00001{bottom:604.660051pt;}
.y24cb_c00001{bottom:604.907067pt;}
.yd7c_c00001{bottom:604.987067pt;}
.y2053_c00001{bottom:605.307307pt;}
.y1c7f_c00001{bottom:605.383579pt;}
.ya7c_c00001{bottom:605.383907pt;}
.y18a0_c00001{bottom:605.384163pt;}
.ya55_c00001{bottom:605.385371pt;}
.y141_c00001{bottom:605.387067pt;}
.y657_c00001{bottom:605.467067pt;}
.y1a42_c00001{bottom:605.546155pt;}
.y1c08_c00001{bottom:605.785939pt;}
.y10c7_c00001{bottom:605.943947pt;}
.y10aa_c00001{bottom:606.024107pt;}
.y1f8b_c00001{bottom:606.027411pt;}
.y1021_c00001{bottom:606.027531pt;}
.y2308_c00001{bottom:606.028867pt;}
.y1a5e_c00001{bottom:606.107691pt;}
.y90a_c00001{bottom:606.262307pt;}
.yb30_c00001{bottom:606.263771pt;}
.y1e6b_c00001{bottom:606.344163pt;}
.y1d2_c00001{bottom:606.427067pt;}
.y1c36_c00001{bottom:606.506739pt;}
.y203b_c00001{bottom:606.507656pt;}
.y220e_c00001{bottom:606.668811pt;}
.y54d_c00001{bottom:606.827067pt;}
.y1c1_c00001{bottom:606.907067pt;}
.y12c3_c00001{bottom:606.984107pt;}
.y1050_c00001{bottom:606.984691pt;}
.y82b_c00001{bottom:607.058515pt;}
.yc78_c00001{bottom:607.060187pt;}
.y21d6_c00001{bottom:607.147067pt;}
.y1382_c00001{bottom:607.221163pt;}
.y1d70_c00001{bottom:607.308755pt;}
.y40b_c00001{bottom:607.387067pt;}
.y7c6_c00001{bottom:607.707067pt;}
.y1cb3_c00001{bottom:607.708803pt;}
.y1694_c00001{bottom:607.786067pt;}
.yb46_c00001{bottom:607.940051pt;}
.y1ec5_c00001{bottom:607.944691pt;}
.y1f04_c00001{bottom:607.945275pt;}
.y1d49_c00001{bottom:608.028859pt;}
.y1d91_c00001{bottom:608.107267pt;}
.y22b5_c00001{bottom:608.347315pt;}
.y8ac_c00001{bottom:608.427067pt;}
.yd23_c00001{bottom:608.519995pt;}
.yd50_c00001{bottom:608.544571pt;}
.y13a2_c00001{bottom:608.585219pt;}
.y224d_c00001{bottom:608.668803pt;}
.y357_c00001{bottom:608.747067pt;}
.y19bb_c00001{bottom:608.905275pt;}
.y164b_c00001{bottom:609.386595pt;}
.y846_c00001{bottom:609.387067pt;}
.y17f8_c00001{bottom:609.545219pt;}
.y17cc_c00001{bottom:609.545803pt;}
.ye43_c00001{bottom:609.627803pt;}
.y812_c00001{bottom:609.707067pt;}
.y1115_c00001{bottom:609.782275pt;}
.y146c_c00001{bottom:609.862435pt;}
.y1676_c00001{bottom:609.947067pt;}
.y3cc_c00001{bottom:610.107067pt;}
.y6a3_c00001{bottom:610.427067pt;}
.y1836_c00001{bottom:610.505803pt;}
.y1299_c00001{bottom:610.822435pt;}
.yc25_c00001{bottom:610.822667pt;}
.y1579_c00001{bottom:610.823019pt;}
.y14df_c00001{bottom:610.826443pt;}
.y2460_c00001{bottom:610.827027pt;}
.y1f30_c00001{bottom:610.907307pt;}
.y5c5_c00001{bottom:611.147200pt;}
.y8ca_c00001{bottom:611.227067pt;}
.yaa_c00001{bottom:611.387067pt;}
.yff3_c00001{bottom:611.466387pt;}
.y1933_c00001{bottom:611.466971pt;}
.y1f4d_c00001{bottom:611.467515pt;}
.y703_c00001{bottom:612.107067pt;}
.y5a8_c00001{bottom:612.107200pt;}
.y11cb_c00001{bottom:612.423547pt;}
.y1a02_c00001{bottom:612.427555pt;}
.y20a3_c00001{bottom:612.667067pt;}
.y1fb3_c00001{bottom:612.668787pt;}
.y1624_c00001{bottom:612.747611pt;}
.y293_c00001{bottom:613.066715pt;}
.y13ed_c00001{bottom:613.068835pt;}
.y1ada_c00001{bottom:613.147075pt;}
.y1ab0_c00001{bottom:613.147659pt;}
.y44d_c00001{bottom:613.227067pt;}
.y25d_c00001{bottom:613.307067pt;}
.y2382_c00001{bottom:613.307275pt;}
.y1d21_c00001{bottom:613.308123pt;}
.yfe_c00001{bottom:613.309043pt;}
.y1709_c00001{bottom:613.383547pt;}
.y1482_c00001{bottom:613.384131pt;}
.y984_c00001{bottom:613.384667pt;}
.ya2c_c00001{bottom:613.387595pt;}
.y1961_c00001{bottom:613.547459pt;}
.y2529_c00001{bottom:614.027067pt;}
.y198a_c00001{bottom:614.107659pt;}
.y931_c00001{bottom:614.263067pt;}
.yb7f_c00001{bottom:614.263587pt;}
.yf61_c00001{bottom:614.264555pt;}
.yeda_c00001{bottom:614.267427pt;}
.yf08_c00001{bottom:614.267971pt;}
.y122d_c00001{bottom:614.344131pt;}
.y4e0_c00001{bottom:614.347200pt;}
.y214a_c00001{bottom:614.427067pt;}
.y1879_c00001{bottom:614.506707pt;}
.y17ac_c00001{bottom:614.586363pt;}
.ycbd_c00001{bottom:614.677691pt;}
.ycee_c00001{bottom:614.705339pt;}
.y1e9b_c00001{bottom:614.746491pt;}
.y2cf_c00001{bottom:614.747067pt;}
.y78_c00001{bottom:614.907067pt;}
.y1208_c00001{bottom:614.984659pt;}
.y95d_c00001{bottom:615.060947pt;}
.y4f6_c00001{bottom:615.068683pt;}
.y19dd_c00001{bottom:615.304715pt;}
.y567_c00001{bottom:615.387067pt;}
.y674_c00001{bottom:615.467067pt;}
.y1f70_c00001{bottom:615.627067pt;}
.y2091_c00001{bottom:615.707307pt;}
.y6b5_c00001{bottom:615.787067pt;}
.y1080_c00001{bottom:615.945243pt;}
.y2283_c00001{bottom:616.028827pt;}
.y12de_c00001{bottom:616.181715pt;}
.y9e5_c00001{bottom:616.423827pt;}
.y33_c00001{bottom:616.427067pt;}
.y23a8_c00001{bottom:616.668771pt;}
.y1b79_c00001{bottom:616.905243pt;}
.yf8f_c00001{bottom:616.905827pt;}
.y243d_c00001{bottom:616.987067pt;}
.y729_c00001{bottom:617.067067pt;}
.yeab_c00001{bottom:617.307611pt;}
.ye72_c00001{bottom:617.307811pt;}
.ye0e_c00001{bottom:617.308715pt;}
.y16ed_c00001{bottom:617.386883pt;}
.y481_c00001{bottom:617.467067pt;}
.y15fc_c00001{bottom:617.545771pt;}
.y231c_c00001{bottom:617.547067pt;}
.y30a_c00001{bottom:617.627200pt;}
.y578_c00001{bottom:617.787200pt;}
.y15d8_c00001{bottom:617.866411pt;}
.y16c6_c00001{bottom:617.942563pt;}
.y7ae_c00001{bottom:618.347067pt;}
.y158_c00001{bottom:618.427067pt;}
.y8e0_c00001{bottom:618.502280pt;}
.y136f_c00001{bottom:618.822987pt;}
.ydd2_c00001{bottom:618.828355pt;}
.y249a_c00001{bottom:618.907067pt;}
.y2a5_c00001{bottom:619.227067pt;}
.y76f_c00001{bottom:619.307067pt;}
.y56_c00001{bottom:619.387067pt;}
.y1a92_c00001{bottom:619.466355pt;}
.y177_c00001{bottom:619.547067pt;}
.y390_c00001{bottom:619.627067pt;}
.y18cc_c00001{bottom:619.703411pt;}
.yda2_c00001{bottom:619.707067pt;}
.y1187_c00001{bottom:619.782987pt;}
.y1436_c00001{bottom:619.783571pt;}
.y1a2c_c00001{bottom:619.948651pt;}
.y1c55_c00001{bottom:620.427523pt;}
.y1ebb_c00001{bottom:620.663411pt;}
.y20e1_c00001{bottom:620.667067pt;}
.y2019_c00001{bottom:620.667267pt;}
.y1c64_c00001{bottom:620.825987pt;}
.y874_c00001{bottom:620.907067pt;}
.y140b_c00001{bottom:620.983683pt;}
.y1c07_c00001{bottom:621.065771pt;}
.y10c6_c00001{bottom:621.303939pt;}
.y212_c00001{bottom:621.307067pt;}
.y1f8a_c00001{bottom:621.307243pt;}
.y229f_c00001{bottom:621.308699pt;}
.y1498_c00001{bottom:621.384099pt;}
.ya0b_c00001{bottom:621.385427pt;}
.y53a_c00001{bottom:621.387067pt;}
.y1020_c00001{bottom:621.387523pt;}
.y1e6a_c00001{bottom:621.623995pt;}
.y2506_c00001{bottom:621.627067pt;}
.y1c35_c00001{bottom:621.786571pt;}
.y4be_c00001{bottom:621.787067pt;}
.y203a_c00001{bottom:621.867648pt;}
.y220d_c00001{bottom:622.028803pt;}
.ya7b_c00001{bottom:622.263827pt;}
.y104f_c00001{bottom:622.264523pt;}
.yaca_c00001{bottom:622.265291pt;}
.y12c2_c00001{bottom:622.344099pt;}
.y11ac_c00001{bottom:622.344683pt;}
.y688_c00001{bottom:622.347067pt;}
.y899_c00001{bottom:622.427067pt;}
.y438_c00001{bottom:622.507067pt;}
.y1162_c00001{bottom:622.581155pt;}
.y13ca_c00001{bottom:622.584579pt;}
.y1d6f_c00001{bottom:622.668747pt;}
.y1f0e_c00001{bottom:622.905803pt;}
.y1fe0_c00001{bottom:622.987067pt;}
.y9c7_c00001{bottom:623.061707pt;}
.y9ad_c00001{bottom:623.063171pt;}
.y2003_c00001{bottom:623.067067pt;}
.y1cb2_c00001{bottom:623.068795pt;}
.y2104_c00001{bottom:623.227200pt;}
.y14b9_c00001{bottom:623.305267pt;}
.y1d48_c00001{bottom:623.308691pt;}
.y509_c00001{bottom:623.387067pt;}
.y1d90_c00001{bottom:623.467259pt;}
.y1dd2_c00001{bottom:623.541739pt;}
.y376_c00001{bottom:623.547067pt;}
.y6d6_c00001{bottom:623.627067pt;}
.y1b1e_c00001{bottom:623.707043pt;}
.y2075_c00001{bottom:623.707307pt;}
.yc77_c00001{bottom:623.940107pt;}
.ybe7_c00001{bottom:623.941571pt;}
.y13a1_c00001{bottom:623.945211pt;}
.y224c_c00001{bottom:624.028795pt;}
.y2b7_c00001{bottom:624.107067pt;}
.y1b3e_c00001{bottom:624.265267pt;}
.y153c_c00001{bottom:624.265851pt;}
.y530_c00001{bottom:624.267067pt;}
.y1a8_c00001{bottom:624.347067pt;}
.y2e6_c00001{bottom:624.427067pt;}
.y164a_c00001{bottom:624.746587pt;}
.y5f0_c00001{bottom:624.747067pt;}
.yb45_c00001{bottom:624.819971pt;}
.y17f7_c00001{bottom:624.905211pt;}
.y17cb_c00001{bottom:624.905795pt;}
.y14_c00001{bottom:624.907067pt;}
.ye42_c00001{bottom:624.987795pt;}
.y1114_c00001{bottom:625.062107pt;}
.y1742_c00001{bottom:625.142267pt;}
.y24a_c00001{bottom:625.147067pt;}
.yc9a_c00001{bottom:625.460323pt;}
.y20c3_c00001{bottom:625.547067pt;}
.y1278_c00001{bottom:625.865795pt;}
.y24af_c00001{bottom:625.867067pt;}
.yd7b_c00001{bottom:626.027067pt;}
.y1cf7_c00001{bottom:626.102267pt;}
.yfc0_c00001{bottom:626.106275pt;}
.yd22_c00001{bottom:626.119483pt;}
.yd4f_c00001{bottom:626.144059pt;}
.y1335_c00001{bottom:626.186067pt;}
.y14de_c00001{bottom:626.186435pt;}
.y245f_c00001{bottom:626.187019pt;}
.y656_c00001{bottom:626.427067pt;}
.y1f4c_c00001{bottom:626.747347pt;}
.y1ded_c00001{bottom:626.747555pt;}
.yff2_c00001{bottom:626.826379pt;}
.y1932_c00001{bottom:626.826963pt;}
.y79b_c00001{bottom:627.067067pt;}
.y1e42_c00001{bottom:627.225427pt;}
.yf31_c00001{bottom:627.226155pt;}
.y23c8_c00001{bottom:627.308675pt;}
.y1d1_c00001{bottom:627.387067pt;}
.y1b8f_c00001{bottom:627.466323pt;}
.y18ee_c00001{bottom:627.466907pt;}
.yc24_c00001{bottom:627.622067pt;}
.y15aa_c00001{bottom:627.703379pt;}
.y1256_c00001{bottom:627.783539pt;}
.y1c0_c00001{bottom:627.867067pt;}
.y1675_c00001{bottom:628.347067pt;}
.y40a_c00001{bottom:628.427067pt;}
.y113c_c00001{bottom:628.663963pt;}
.y2052_c00001{bottom:628.667267pt;}
.y1d20_c00001{bottom:628.668115pt;}
.y7c5_c00001{bottom:628.747067pt;}
.y1960_c00001{bottom:628.907451pt;}
.y1789_c00001{bottom:628.980595pt;}
.yafa_c00001{bottom:628.986995pt;}
.y2307_c00001{bottom:629.308667pt;}
.yb60_c00001{bottom:629.386187pt;}
.y8c9_c00001{bottom:629.387067pt;}
.y1989_c00001{bottom:629.387491pt;}
.ya90_c00001{bottom:629.387651pt;}
.y122c_c00001{bottom:629.623963pt;}
.yf60_c00001{bottom:629.624547pt;}
.yed9_c00001{bottom:629.627419pt;}
.yf07_c00001{bottom:629.627963pt;}
.y356_c00001{bottom:629.707067pt;}
.y1878_c00001{bottom:629.786539pt;}
.y17ab_c00001{bottom:629.946355pt;}
.y464_c00001{bottom:630.187067pt;}
.y10a9_c00001{bottom:630.264491pt;}
.yb1a_c00001{bottom:630.264587pt;}
.ya54_c00001{bottom:630.266051pt;}
.ya2b_c00001{bottom:630.267515pt;}
.y1919_c00001{bottom:630.344651pt;}
.y845_c00001{bottom:630.347067pt;}
.y19dc_c00001{bottom:630.584547pt;}
.y21bf_c00001{bottom:630.668715pt;}
.y909_c00001{bottom:631.062467pt;}
.yb7e_c00001{bottom:631.062987pt;}
.yc7f_c00001{bottom:631.063931pt;}
.y1693_c00001{bottom:631.065867pt;}
.y21d5_c00001{bottom:631.067067pt;}
.y3cb_c00001{bottom:631.147067pt;}
.y107f_c00001{bottom:631.225075pt;}
.y1a7f_c00001{bottom:631.304651pt;}
.y1357_c00001{bottom:631.305235pt;}
.y2282_c00001{bottom:631.308659pt;}
.y6a2_c00001{bottom:631.387067pt;}
.y1381_c00001{bottom:631.541707pt;}
.y602_c00001{bottom:631.707067pt;}
.yc0f_c00001{bottom:631.940867pt;}
.y23a7_c00001{bottom:632.028763pt;}
.y5c4_c00001{bottom:632.107200pt;}
.yf8e_c00001{bottom:632.185659pt;}
.y1b78_c00001{bottom:632.265235pt;}
.y1f03_c00001{bottom:632.265819pt;}
.y8a4_c00001{bottom:632.267067pt;}
.ycbc_c00001{bottom:632.277179pt;}
.yced_c00001{bottom:632.304827pt;}
.ya9_c00001{bottom:632.427067pt;}
.yfd_c00001{bottom:632.588459pt;}
.yeaa_c00001{bottom:632.667603pt;}
.ye71_c00001{bottom:632.667803pt;}
.ye0d_c00001{bottom:632.668707pt;}
.ybcd_c00001{bottom:632.820731pt;}
.y15fb_c00001{bottom:632.905763pt;}
.y702_c00001{bottom:633.147067pt;}
.y5a7_c00001{bottom:633.147200pt;}
.y19ba_c00001{bottom:633.225819pt;}
.y15d7_c00001{bottom:633.226403pt;}
.y41f_c00001{bottom:633.467067pt;}
.y146b_c00001{bottom:634.102819pt;}
.ydd1_c00001{bottom:634.188347pt;}
.y44c_c00001{bottom:634.267067pt;}
.y1f2f_c00001{bottom:634.267267pt;}
.y25c_c00001{bottom:634.347067pt;}
.y4f5_c00001{bottom:634.348099pt;}
.y140_c00001{bottom:634.427067pt;}
.y1835_c00001{bottom:634.826347pt;}
.y2528_c00001{bottom:634.987067pt;}
.y1186_c00001{bottom:635.062819pt;}
.y1435_c00001{bottom:635.063403pt;}
.y8df_c00001{bottom:635.382200pt;}
.y4df_c00001{bottom:635.387200pt;}
.y1e29_c00001{bottom:635.467067pt;}
.y1a01_c00001{bottom:635.787515pt;}
.y77_c00001{bottom:635.867067pt;}
.y1fb2_c00001{bottom:635.948587pt;}
.y1623_c00001{bottom:636.107571pt;}
.y1c63_c00001{bottom:636.185979pt;}
.y13ec_c00001{bottom:636.348635pt;}
.y566_c00001{bottom:636.427067pt;}
.y10c5_c00001{bottom:636.663931pt;}
.y1f89_c00001{bottom:636.667235pt;}
.y6b4_c00001{bottom:636.747067pt;}
.y101f_c00001{bottom:636.747515pt;}
.y1e69_c00001{bottom:636.983987pt;}
.y2039_c00001{bottom:637.147480pt;}
.y220c_c00001{bottom:637.308635pt;}
.y32_c00001{bottom:637.387067pt;}
.y1ad9_c00001{bottom:637.387459pt;}
.y1aaf_c00001{bottom:637.388043pt;}
.y12c1_c00001{bottom:637.623931pt;}
.y104e_c00001{bottom:637.624515pt;}
.y811_c00001{bottom:637.707067pt;}
.yda1_c00001{bottom:638.027067pt;}
.y2415_c00001{bottom:638.028739pt;}
.y983_c00001{bottom:638.265347pt;}
.y1cb1_c00001{bottom:638.348627pt;}
.y480_c00001{bottom:638.427067pt;}
.y74b_c00001{bottom:638.507067pt;}
.y1bc9_c00001{bottom:638.584515pt;}
.y10ed_c00001{bottom:638.585099pt;}
.y236d_c00001{bottom:638.668683pt;}
.y1d8f_c00001{bottom:638.747091pt;}
.y1b1d_c00001{bottom:638.986875pt;}
.yade_c00001{bottom:639.063227pt;}
.yac9_c00001{bottom:639.064691pt;}
.y788_c00001{bottom:639.067067pt;}
.y2090_c00001{bottom:639.067267pt;}
.y1207_c00001{bottom:639.305203pt;}
.y224b_c00001{bottom:639.308627pt;}
.y157_c00001{bottom:639.387067pt;}
.y1b55_c00001{bottom:639.545099pt;}
.y153b_c00001{bottom:639.545683pt;}
.y2499_c00001{bottom:639.867067pt;}
.y95c_c00001{bottom:639.941627pt;}
.y9ac_c00001{bottom:639.943091pt;}
.y1649_c00001{bottom:640.026419pt;}
.y19aa_c00001{bottom:640.265203pt;}
.y292_c00001{bottom:640.346891pt;}
.ye41_c00001{bottom:640.347787pt;}
.y1113_c00001{bottom:640.422099pt;}
.y55_c00001{bottom:640.427067pt;}
.y12dd_c00001{bottom:640.502259pt;}
.y176_c00001{bottom:640.587067pt;}
.y2149_c00001{bottom:640.827067pt;}
.y1277_c00001{bottom:641.225787pt;}
.y9e4_c00001{bottom:641.304507pt;}
.y16c5_c00001{bottom:641.462843pt;}
.yfbf_c00001{bottom:641.466267pt;}
.y245e_c00001{bottom:641.466851pt;}
.y231b_c00001{bottom:641.467067pt;}
.y16ec_c00001{bottom:641.707427pt;}
.y873_c00001{bottom:641.867067pt;}
.y1f6f_c00001{bottom:642.027067pt;}
.yff1_c00001{bottom:642.106211pt;}
.y1931_c00001{bottom:642.186955pt;}
.y513_c00001{bottom:642.267067pt;}
.y211_c00001{bottom:642.347067pt;}
.y2505_c00001{bottom:642.587067pt;}
.y1b8e_c00001{bottom:642.826315pt;}
.y1255_c00001{bottom:643.063371pt;}
.y1a2b_c00001{bottom:643.308611pt;}
.y898_c00001{bottom:643.387067pt;}
.y2ce_c00001{bottom:643.787067pt;}
.yd21_c00001{bottom:643.798843pt;}
.yd4e_c00001{bottom:643.823419pt;}
.y2018_c00001{bottom:643.947067pt;}
.y1d1f_c00001{bottom:643.947947pt;}
.y18bf_c00001{bottom:644.023955pt;}
.y195f_c00001{bottom:644.187283pt;}
.y6d5_c00001{bottom:644.667067pt;}
.y229e_c00001{bottom:644.668659pt;}
.y1988_c00001{bottom:644.747483pt;}
.yf5f_c00001{bottom:644.904379pt;}
.yed8_c00001{bottom:644.907251pt;}
.yf06_c00001{bottom:644.907795pt;}
.y122b_c00001{bottom:644.983955pt;}
.y2b6_c00001{bottom:645.067067pt;}
.y1877_c00001{bottom:645.146531pt;}
.y140a_c00001{bottom:645.304227pt;}
.y17aa_c00001{bottom:645.306347pt;}
.y1c06_c00001{bottom:645.386315pt;}
.y2e5_c00001{bottom:645.387067pt;}
.y1918_c00001{bottom:645.624483pt;}
.y5ef_c00001{bottom:645.707067pt;}
.y19db_c00001{bottom:645.944539pt;}
.y13_c00001{bottom:645.947067pt;}
.y1d6e_c00001{bottom:646.028707pt;}
.y249_c00001{bottom:646.187067pt;}
.y1f0d_c00001{bottom:646.265763pt;}
.ya0a_c00001{bottom:646.266107pt;}
.ya8f_c00001{bottom:646.267571pt;}
.y1692_c00001{bottom:646.425859pt;}
.y12fe_c00001{bottom:646.584483pt;}
.y107e_c00001{bottom:646.585067pt;}
.y309_c00001{bottom:646.587200pt;}
.y1d47_c00001{bottom:646.668651pt;}
.y1674_c00001{bottom:646.747067pt;}
.y577_c00001{bottom:646.827200pt;}
.y1161_c00001{bottom:646.901699pt;}
.y13c9_c00001{bottom:646.905123pt;}
.y24ca_c00001{bottom:646.907067pt;}
.ya7a_c00001{bottom:647.063987pt;}
.ya53_c00001{bottom:647.065451pt;}
.y20e0_c00001{bottom:647.067067pt;}
.y2074_c00001{bottom:647.067267pt;}
.y23a6_c00001{bottom:647.308595pt;}
.y655_c00001{bottom:647.467067pt;}
.y1b77_c00001{bottom:647.545067pt;}
.yf8d_c00001{bottom:647.545651pt;}
.y1dd1_c00001{bottom:647.862283pt;}
.y908_c00001{bottom:647.942387pt;}
.yb2f_c00001{bottom:647.943851pt;}
.yea9_c00001{bottom:648.027595pt;}
.ye70_c00001{bottom:648.027795pt;}
.ye0c_c00001{bottom:648.028699pt;}
.yd7a_c00001{bottom:648.107067pt;}
.y15fa_c00001{bottom:648.265755pt;}
.y1d0_c00001{bottom:648.427067pt;}
.y1b3d_c00001{bottom:648.505651pt;}
.y15d6_c00001{bottom:648.506235pt;}
.yc76_c00001{bottom:648.820787pt;}
.ybe6_c00001{bottom:648.822251pt;}
.y54c_c00001{bottom:648.827067pt;}
.y1bf_c00001{bottom:648.907067pt;}
.y17f6_c00001{bottom:649.225755pt;}
.y409_c00001{bottom:649.387067pt;}
.y1741_c00001{bottom:649.462811pt;}
.y14dd_c00001{bottom:649.466235pt;}
.y2002_c00001{bottom:649.467067pt;}
.ydd0_c00001{bottom:649.548339pt;}
.y2103_c00001{bottom:649.627200pt;}
.yb44_c00001{bottom:649.700651pt;}
.y7c4_c00001{bottom:649.707067pt;}
.y2491_c00001{bottom:649.867067pt;}
.ycbb_c00001{bottom:649.876667pt;}
.ycec_c00001{bottom:649.904315pt;}
.y82a_c00001{bottom:649.940323pt;}
.y1f4b_c00001{bottom:650.107307pt;}
.y1dec_c00001{bottom:650.107515pt;}
.y1834_c00001{bottom:650.186339pt;}
.y1cf6_c00001{bottom:650.422811pt;}
.y1434_c00001{bottom:650.423395pt;}
.y1334_c00001{bottom:650.426451pt;}
.y539_c00001{bottom:650.427067pt;}
.y1fc8_c00001{bottom:650.587067pt;}
.y23c7_c00001{bottom:650.668635pt;}
.y355_c00001{bottom:650.747067pt;}
.y1a00_c00001{bottom:651.147507pt;}
.y185a_c00001{bottom:651.307067pt;}
.y687_c00001{bottom:651.387067pt;}
.y437_c00001{bottom:651.467067pt;}
.y1e41_c00001{bottom:651.545971pt;}
.yf30_c00001{bottom:651.546699pt;}
.y18ed_c00001{bottom:651.787451pt;}
.yfc_c00001{bottom:651.867875pt;}
.y1f88_c00001{bottom:651.947067pt;}
.y11e7_c00001{bottom:652.023923pt;}
.y101e_c00001{bottom:652.027347pt;}
.y3ca_c00001{bottom:652.107067pt;}
.y1a5d_c00001{bottom:652.107507pt;}
.y508_c00001{bottom:652.427067pt;}
.yc23_c00001{bottom:652.502747pt;}
.y375_c00001{bottom:652.587067pt;}
.y220b_c00001{bottom:652.668627pt;}
.y104d_c00001{bottom:652.904347pt;}
.y1510_c00001{bottom:652.983923pt;}
.y113b_c00001{bottom:652.984507pt;}
.y5c3_c00001{bottom:653.147200pt;}
.y1788_c00001{bottom:653.220979pt;}
.y52f_c00001{bottom:653.227067pt;}
.y1a7_c00001{bottom:653.307067pt;}
.y2414_c00001{bottom:653.308571pt;}
.ya8_c00001{bottom:653.387067pt;}
.y4f4_c00001{bottom:653.627515pt;}
.y1cb0_c00001{bottom:653.708619pt;}
.y2188_c00001{bottom:653.787067pt;}
.yaf9_c00001{bottom:653.787155pt;}
.y1e28_c00001{bottom:653.867067pt;}
.y189f_c00001{bottom:653.945091pt;}
.y21be_c00001{bottom:654.028675pt;}
.y1d8e_c00001{bottom:654.107083pt;}
.y701_c00001{bottom:654.187067pt;}
.y5a6_c00001{bottom:654.187200pt;}
.y1b1c_c00001{bottom:654.346867pt;}
.y10a8_c00001{bottom:654.585035pt;}
.y224a_c00001{bottom:654.668619pt;}
.y1b54_c00001{bottom:654.905091pt;}
.y982_c00001{bottom:655.064747pt;}
.yc6a_c00001{bottom:655.066211pt;}
.ya2a_c00001{bottom:655.067675pt;}
.y25b_c00001{bottom:655.307067pt;}
.y1648_c00001{bottom:655.386411pt;}
.y19a9_c00001{bottom:655.545035pt;}
.y1356_c00001{bottom:655.545619pt;}
.ye40_c00001{bottom:655.627619pt;}
.y24ae_c00001{bottom:655.707067pt;}
.y12dc_c00001{bottom:655.862251pt;}
.y930_c00001{bottom:655.943147pt;}
.yb7d_c00001{bottom:655.943667pt;}
.yac8_c00001{bottom:655.944611pt;}
.y2527_c00001{bottom:656.027067pt;}
.y1ea_c00001{bottom:656.347067pt;}
.y4de_c00001{bottom:656.347200pt;}
.y1276_c00001{bottom:656.505619pt;}
.y1f02_c00001{bottom:656.506203pt;}
.y95b_c00001{bottom:656.821547pt;}
.yfbe_c00001{bottom:656.826259pt;}
.y76_c00001{bottom:656.907067pt;}
.y16eb_c00001{bottom:656.987259pt;}
.y1afb_c00001{bottom:657.226307pt;}
.y565_c00001{bottom:657.387067pt;}
.yff0_c00001{bottom:657.466203pt;}
.y1930_c00001{bottom:657.466787pt;}
.y673_c00001{bottom:657.467067pt;}
.y1f2e_c00001{bottom:657.547067pt;}
.yda0_c00001{bottom:657.627067pt;}
.ybcc_c00001{bottom:657.701411pt;}
.y2231_c00001{bottom:658.028659pt;}
.y9e3_c00001{bottom:658.184427pt;}
.y1b8d_c00001{bottom:658.186307pt;}
.y1254_c00001{bottom:658.423363pt;}
.y31_c00001{bottom:658.427067pt;}
.y463_c00001{bottom:659.227067pt;}
.y1d1e_c00001{bottom:659.307939pt;}
.y1fb1_c00001{bottom:659.308547pt;}
.y1185_c00001{bottom:659.383363pt;}
.y1578_c00001{bottom:659.383947pt;}
.y1622_c00001{bottom:659.387371pt;}
.y47f_c00001{bottom:659.467067pt;}
.y13eb_c00001{bottom:659.708595pt;}
.y1987_c00001{bottom:660.107475pt;}
.y8de_c00001{bottom:660.262880pt;}
.yed7_c00001{bottom:660.267243pt;}
.yf05_c00001{bottom:660.267787pt;}
.y122a_c00001{bottom:660.343947pt;}
.y7ad_c00001{bottom:660.347067pt;}
.y156_c00001{bottom:660.427067pt;}
.y1876_c00001{bottom:660.506523pt;}
.y2038_c00001{bottom:660.507440pt;}
.y1409_c00001{bottom:660.584059pt;}
.y17a9_c00001{bottom:660.586179pt;}
.y810_c00001{bottom:660.587067pt;}
.y1c05_c00001{bottom:660.746307pt;}
.y10c4_c00001{bottom:660.904315pt;}
.y2498_c00001{bottom:660.907067pt;}
.y11ca_c00001{bottom:660.984475pt;}
.y1e68_c00001{bottom:661.304531pt;}
.y1d6d_c00001{bottom:661.308539pt;}
.y54_c00001{bottom:661.387067pt;}
.yd20_c00001{bottom:661.398331pt;}
.yd4d_c00001{bottom:661.422907pt;}
.y175_c00001{bottom:661.627067pt;}
.y1ad8_c00001{bottom:661.708003pt;}
.y1aae_c00001{bottom:661.708587pt;}
.y1691_c00001{bottom:661.785851pt;}
.y12c0_c00001{bottom:661.944475pt;}
.y16b5_c00001{bottom:661.945059pt;}
.y1d46_c00001{bottom:662.028643pt;}
.y175a_c00001{bottom:662.181531pt;}
.y208f_c00001{bottom:662.347067pt;}
.y41e_c00001{bottom:662.507067pt;}
.y23a5_c00001{bottom:662.668587pt;}
.y1b76_c00001{bottom:662.905059pt;}
.yf8c_c00001{bottom:662.905643pt;}
.y872_c00001{bottom:662.907067pt;}
.ya09_c00001{bottom:663.065507pt;}
.y1dd0_c00001{bottom:663.142115pt;}
.y210_c00001{bottom:663.307067pt;}
.yea8_c00001{bottom:663.307427pt;}
.ye6f_c00001{bottom:663.307627pt;}
.ye0b_c00001{bottom:663.308531pt;}
.y13f_c00001{bottom:663.387067pt;}
.y15f9_c00001{bottom:663.545587pt;}
.y1b3c_c00001{bottom:663.865643pt;}
.y153a_c00001{bottom:663.866227pt;}
.ya79_c00001{bottom:663.943907pt;}
.y897_c00001{bottom:664.427067pt;}
.y17f5_c00001{bottom:664.505587pt;}
.y1112_c00001{bottom:664.742643pt;}
.y972_c00001{bottom:664.822307pt;}
.y1450_c00001{bottom:664.822803pt;}
.y9ab_c00001{bottom:664.823771pt;}
.y14dc_c00001{bottom:664.826227pt;}
.y245d_c00001{bottom:664.826811pt;}
.y2cd_c00001{bottom:664.827067pt;}
.ydcf_c00001{bottom:664.828171pt;}
.y1673_c00001{bottom:665.147067pt;}
.y2352_c00001{bottom:665.387067pt;}
.y1833_c00001{bottom:665.466171pt;}
.y243c_c00001{bottom:665.467067pt;}
.y1ed1_c00001{bottom:665.702643pt;}
.y1433_c00001{bottom:665.703227pt;}
.y1333_c00001{bottom:665.786443pt;}
.y6b3_c00001{bottom:665.787067pt;}
.y2b5_c00001{bottom:666.107067pt;}
.y8ab_c00001{bottom:666.267067pt;}
.y190_c00001{bottom:666.427067pt;}
.y19ff_c00001{bottom:666.427339pt;}
.y1a2a_c00001{bottom:666.668571pt;}
.y5ee_c00001{bottom:666.747067pt;}
.y12_c00001{bottom:666.907067pt;}
.y787_c00001{bottom:667.067067pt;}
.y248_c00001{bottom:667.147067pt;}
.y18ec_c00001{bottom:667.147443pt;}
.y2148_c00001{bottom:667.227067pt;}
.y136e_c00001{bottom:667.383915pt;}
.y101d_c00001{bottom:667.387339pt;}
.y195e_c00001{bottom:667.547243pt;}
.ycba_c00001{bottom:667.556027pt;}
.yceb_c00001{bottom:667.583675pt;}
.y291_c00001{bottom:667.627067pt;}
.y308_c00001{bottom:667.627200pt;}
.y576_c00001{bottom:667.787200pt;}
.y2017_c00001{bottom:667.867067pt;}
.y24c9_c00001{bottom:667.947067pt;}
.y229d_c00001{bottom:667.948459pt;}
.y220a_c00001{bottom:668.028619pt;}
.yf5e_c00001{bottom:668.264339pt;}
.yc99_c00001{bottom:668.342131pt;}
.y150f_c00001{bottom:668.343915pt;}
.y113a_c00001{bottom:668.344499pt;}
.y1f6e_c00001{bottom:668.427067pt;}
.y2413_c00001{bottom:668.668563pt;}
.y1caf_c00001{bottom:669.068611pt;}
.yd79_c00001{bottom:669.147067pt;}
.y155c_c00001{bottom:669.304499pt;}
.y189e_c00001{bottom:669.305083pt;}
.y436_c00001{bottom:669.307067pt;}
.y21bd_c00001{bottom:669.308507pt;}
.y1d8d_c00001{bottom:669.386915pt;}
.y1cf_c00001{bottom:669.387067pt;}
.y612_c00001{bottom:669.467067pt;}
.y1f0c_c00001{bottom:669.545563pt;}
.y1b1b_c00001{bottom:669.706859pt;}
.y54b_c00001{bottom:669.867067pt;}
.y1daf_c00001{bottom:669.945027pt;}
.y1be_c00001{bottom:669.947067pt;}
.y2249_c00001{bottom:670.028611pt;}
.y19da_c00001{bottom:670.265083pt;}
.y2073_c00001{bottom:670.347067pt;}
.y408_c00001{bottom:670.427067pt;}
.y3c9_c00001{bottom:670.507067pt;}
.y7c3_c00001{bottom:670.747067pt;}
.y12fd_c00001{bottom:670.905027pt;}
.y107d_c00001{bottom:670.905611pt;}
.y2490_c00001{bottom:670.907067pt;}
.ye3f_c00001{bottom:670.987611pt;}
.ya8e_c00001{bottom:671.067731pt;}
.y1160_c00001{bottom:671.142083pt;}
.yfb_c00001{bottom:671.147291pt;}
.y13c8_c00001{bottom:671.225667pt;}
.y538_c00001{bottom:671.387067pt;}
.y2504_c00001{bottom:671.627067pt;}
.y354_c00001{bottom:671.707067pt;}
.y4bd_c00001{bottom:671.787067pt;}
.y1275_c00001{bottom:671.865611pt;}
.y1f01_c00001{bottom:671.866195pt;}
.y981_c00001{bottom:671.944667pt;}
.ya52_c00001{bottom:671.946131pt;}
.y1e27_c00001{bottom:672.267067pt;}
.y844_c00001{bottom:672.347067pt;}
.y16ea_c00001{bottom:672.347251pt;}
.y1afa_c00001{bottom:672.506139pt;}
.y907_c00001{bottom:672.823067pt;}
.yb7c_c00001{bottom:672.823587pt;}
.yac7_c00001{bottom:672.824531pt;}
.yfef_c00001{bottom:672.826195pt;}
.y15d5_c00001{bottom:672.826779pt;}
.y4f3_c00001{bottom:672.827875pt;}
.y2230_c00001{bottom:673.308491pt;}
.y507_c00001{bottom:673.387067pt;}
.y1deb_c00001{bottom:673.387315pt;}
.y1a91_c00001{bottom:673.466139pt;}
.y20df_c00001{bottom:673.467067pt;}
.y1f4a_c00001{bottom:673.467267pt;}
.y374_c00001{bottom:673.547067pt;}
.y6d4_c00001{bottom:673.627067pt;}
.yc75_c00001{bottom:673.701467pt;}
.ybe5_c00001{bottom:673.702931pt;}
.y1253_c00001{bottom:673.703195pt;}
.y23c6_c00001{bottom:673.948435pt;}
.y5c2_c00001{bottom:674.107200pt;}
.ya7_c00001{bottom:674.427067pt;}
.yb43_c00001{bottom:674.581331pt;}
.y1cf5_c00001{bottom:674.663195pt;}
.y1577_c00001{bottom:674.663779pt;}
.y700_c00001{bottom:675.147067pt;}
.y1986_c00001{bottom:675.387307pt;}
.y1c7e_c00001{bottom:675.623779pt;}
.yed6_c00001{bottom:675.627235pt;}
.yf04_c00001{bottom:675.627779pt;}
.y1875_c00001{bottom:675.786355pt;}
.y1f87_c00001{bottom:675.787067pt;}
.yf2f_c00001{bottom:675.787083pt;}
.y2001_c00001{bottom:675.867067pt;}
.yd9f_c00001{bottom:675.947067pt;}
.y2306_c00001{bottom:675.948427pt;}
.y2102_c00001{bottom:676.027200pt;}
.y104c_c00001{bottom:676.264307pt;}
.y44b_c00001{bottom:676.267067pt;}
.y11c9_c00001{bottom:676.344467pt;}
.y25a_c00001{bottom:676.347067pt;}
.y654_c00001{bottom:676.427067pt;}
.y2526_c00001{bottom:676.987067pt;}
.y1aad_c00001{bottom:677.068579pt;}
.y16b4_c00001{bottom:677.305051pt;}
.y1d45_c00001{bottom:677.308475pt;}
.yc22_c00001{bottom:677.383427pt;}
.y1787_c00001{bottom:677.541523pt;}
.y1fc7_c00001{bottom:677.627067pt;}
.y1859_c00001{bottom:677.707067pt;}
.y75_c00001{bottom:677.947067pt;}
.y23a4_c00001{bottom:678.028579pt;}
.yf8b_c00001{bottom:678.185475pt;}
.y1b75_c00001{bottom:678.265051pt;}
.y564_c00001{bottom:678.427067pt;}
.yea7_c00001{bottom:678.667419pt;}
.ye6e_c00001{bottom:678.667619pt;}
.yaf8_c00001{bottom:678.667835pt;}
.ye0a_c00001{bottom:678.668523pt;}
.y10a7_c00001{bottom:678.905579pt;}
.yd1f_c00001{bottom:679.077691pt;}
.yd4c_c00001{bottom:679.102267pt;}
.y1b3b_c00001{bottom:679.225635pt;}
.y30_c00001{bottom:679.387067pt;}
.y1647_c00001{bottom:679.706955pt;}
.y1d0c_c00001{bottom:679.866163pt;}
.ya29_c00001{bottom:679.948355pt;}
.y12db_c00001{bottom:680.102635pt;}
.yfbd_c00001{bottom:680.106059pt;}
.y245c_c00001{bottom:680.186803pt;}
.y2187_c00001{bottom:680.187067pt;}
.ydce_c00001{bottom:680.188163pt;}
.y47e_c00001{bottom:680.427067pt;}
.y74a_c00001{bottom:680.507067pt;}
.y9c2_c00001{bottom:680.823827pt;}
.y1832_c00001{bottom:680.826163pt;}
.y1432_c00001{bottom:681.063219pt;}
.y1332_c00001{bottom:681.146435pt;}
.y1f2d_c00001{bottom:681.387067pt;}
.y95a_c00001{bottom:681.702227pt;}
.yba2_c00001{bottom:681.703691pt;}
.y192f_c00001{bottom:681.787331pt;}
.y2497_c00001{bottom:681.947067pt;}
.y1a6_c00001{bottom:682.347067pt;}
.yc0_c00001{bottom:682.427067pt;}
.y18eb_c00001{bottom:682.427275pt;}
.ybcb_c00001{bottom:682.582091pt;}
.y174_c00001{bottom:682.587067pt;}
.y146a_c00001{bottom:682.663747pt;}
.y1d1d_c00001{bottom:682.667899pt;}
.y1fb0_c00001{bottom:682.668507pt;}
.y101c_c00001{bottom:682.747331pt;}
.y195d_c00001{bottom:682.907235pt;}
.y13ea_c00001{bottom:682.988395pt;}
.y9e2_c00001{bottom:683.065107pt;}
.y5a5_c00001{bottom:683.147200pt;}
.y2209_c00001{bottom:683.308451pt;}
.y1672_c00001{bottom:683.547067pt;}
.y1184_c00001{bottom:683.623747pt;}
.yf5d_c00001{bottom:683.624331pt;}
.y2351_c00001{bottom:683.787067pt;}
.y2197_c00001{bottom:683.867067pt;}
.y2037_c00001{bottom:683.867400pt;}
.y2412_c00001{bottom:683.948395pt;}
.y512_c00001{bottom:684.347067pt;}
.y1cae_c00001{bottom:684.348443pt;}
.y189d_c00001{bottom:684.584915pt;}
.y1d6c_c00001{bottom:684.668499pt;}
.y1d8c_c00001{bottom:684.746907pt;}
.y1408_c00001{bottom:684.904603pt;}
.y17a8_c00001{bottom:684.906723pt;}
.y1b1a_c00001{bottom:684.986691pt;}
.y8dd_c00001{bottom:685.063040pt;}
.ycb9_c00001{bottom:685.155515pt;}
.ycea_c00001{bottom:685.183163pt;}
.y10c3_c00001{bottom:685.224859pt;}
.y1497_c00001{bottom:685.305019pt;}
.y2248_c00001{bottom:685.308443pt;}
.y1e9_c00001{bottom:685.387067pt;}
.y4dd_c00001{bottom:685.387200pt;}
.y1e67_c00001{bottom:685.544915pt;}
.y2cc_c00001{bottom:685.787067pt;}
.y1690_c00001{bottom:686.026235pt;}
.y1ad7_c00001{bottom:686.028547pt;}
.y12bf_c00001{bottom:686.265019pt;}
.y1355_c00001{bottom:686.265603pt;}
.y208e_c00001{bottom:686.267067pt;}
.ye3e_c00001{bottom:686.347603pt;}
.y115f_c00001{bottom:686.502075pt;}
.y2b4_c00001{bottom:687.067067pt;}
.y1274_c00001{bottom:687.225603pt;}
.y14b8_c00001{bottom:687.226187pt;}
.y18f_c00001{bottom:687.387067pt;}
.y1dcf_c00001{bottom:687.462659pt;}
.y5ed_c00001{bottom:687.707067pt;}
.y16e9_c00001{bottom:687.707243pt;}
.y1af9_c00001{bottom:687.866131pt;}
.ya08_c00001{bottom:687.946187pt;}
.y11_c00001{bottom:687.947067pt;}
.ya8d_c00001{bottom:687.947651pt;}
.y19b9_c00001{bottom:688.186187pt;}
.y1539_c00001{bottom:688.186771pt;}
.y462_c00001{bottom:688.187067pt;}
.y3c8_c00001{bottom:688.347075pt;}
.y307_c00001{bottom:688.587200pt;}
.y222f_c00001{bottom:688.668483pt;}
.y980_c00001{bottom:688.824587pt;}
.ya51_c00001{bottom:688.826051pt;}
.y17f4_c00001{bottom:688.826131pt;}
.y575_c00001{bottom:688.827200pt;}
.y24c8_c00001{bottom:688.907067pt;}
.y1111_c00001{bottom:688.983027pt;}
.y1252_c00001{bottom:689.063187pt;}
.y14db_c00001{bottom:689.146771pt;}
.y155_c00001{bottom:689.387067pt;}
.y92f_c00001{bottom:689.702987pt;}
.y9aa_c00001{bottom:689.704451pt;}
.y1c54_c00001{bottom:689.787299pt;}
.y2503_c00001{bottom:689.867067pt;}
.y1a29_c00001{bottom:689.948371pt;}
.y1ed0_c00001{bottom:690.023187pt;}
.y1576_c00001{bottom:690.023771pt;}
.y786_c00001{bottom:690.027067pt;}
.yd78_c00001{bottom:690.187067pt;}
.yfa_c00001{bottom:690.347651pt;}
.y53_c00001{bottom:690.427067pt;}
.y1e26_c00001{bottom:690.667067pt;}
.y1985_c00001{bottom:690.747299pt;}
.yed5_c00001{bottom:690.907251pt;}
.yf03_c00001{bottom:690.907611pt;}
.y1c7d_c00001{bottom:690.983771pt;}
.y1874_c00001{bottom:691.146347pt;}
.yf2e_c00001{bottom:691.147075pt;}
.y229c_c00001{bottom:691.308419pt;}
.y407_c00001{bottom:691.387067pt;}
.yb42_c00001{bottom:691.461251pt;}
.y41d_c00001{bottom:691.467067pt;}
.y104b_c00001{bottom:691.624299pt;}
.y7c2_c00001{bottom:691.707067pt;}
.y243b_c00001{bottom:691.787067pt;}
.y248f_c00001{bottom:691.867067pt;}
.y871_c00001{bottom:691.947067pt;}
.y4f2_c00001{bottom:692.107291pt;}
.y435_c00001{bottom:692.187067pt;}
.y13e_c00001{bottom:692.267067pt;}
.y20f_c00001{bottom:692.347067pt;}
.y1aac_c00001{bottom:692.348411pt;}
.y537_c00001{bottom:692.427067pt;}
.y1bf7_c00001{bottom:692.584299pt;}
.y16b3_c00001{bottom:692.584883pt;}
.y1d44_c00001{bottom:692.668467pt;}
.y353_c00001{bottom:692.747067pt;}
.y829_c00001{bottom:692.900587pt;}
.y1f0b_c00001{bottom:692.905523pt;}
.y23a3_c00001{bottom:693.308411pt;}
.y155b_c00001{bottom:693.544883pt;}
.y10ec_c00001{bottom:693.545467pt;}
.y2147_c00001{bottom:693.627067pt;}
.y6b2_c00001{bottom:693.786923pt;}
.yea6_c00001{bottom:694.027411pt;}
.ye6d_c00001{bottom:694.027611pt;}
.ye09_c00001{bottom:694.028515pt;}
.y22b4_c00001{bottom:694.107067pt;}
.y10a6_c00001{bottom:694.185411pt;}
.y1fdf_c00001{bottom:694.187067pt;}
.yc21_c00001{bottom:694.263347pt;}
.y15f8_c00001{bottom:694.265571pt;}
.y2016_c00001{bottom:694.267067pt;}
.y506_c00001{bottom:694.427067pt;}
.y19d9_c00001{bottom:694.505467pt;}
.y373_c00001{bottom:694.587067pt;}
.y6d3_c00001{bottom:694.667067pt;}
.y1f6d_c00001{bottom:694.827067pt;}
.y1646_c00001{bottom:694.986787pt;}
.y107c_c00001{bottom:695.145995pt;}
.y5c1_c00001{bottom:695.147200pt;}
.y1d0b_c00001{bottom:695.226155pt;}
.ya6_c00001{bottom:695.387067pt;}
.y1722_c00001{bottom:695.462627pt;}
.yfbc_c00001{bottom:695.466051pt;}
.y245b_c00001{bottom:695.466635pt;}
.yd9e_c00001{bottom:695.547067pt;}
.ydcd_c00001{bottom:695.548155pt;}
.yfee_c00001{bottom:696.105995pt;}
.y1831_c00001{bottom:696.186155pt;}
.y247_c00001{bottom:696.187067pt;}
.y1431_c00001{bottom:696.423211pt;}
.y1331_c00001{bottom:696.426267pt;}
.yd1e_c00001{bottom:696.677179pt;}
.yd4b_c00001{bottom:696.701755pt;}
.y1f49_c00001{bottom:696.747067pt;}
.y1dea_c00001{bottom:696.747275pt;}
.yb19_c00001{bottom:696.825347pt;}
.yc69_c00001{bottom:696.826811pt;}
.ya28_c00001{bottom:696.828275pt;}
.y15d4_c00001{bottom:697.147323pt;}
.y44a_c00001{bottom:697.307067pt;}
.y23c5_c00001{bottom:697.308395pt;}
.y653_c00001{bottom:697.467067pt;}
.y906_c00001{bottom:697.703747pt;}
.yb7b_c00001{bottom:697.704267pt;}
.yac6_c00001{bottom:697.705211pt;}
.y18ea_c00001{bottom:697.787267pt;}
.y1d1c_c00001{bottom:697.947731pt;}
.y1469_c00001{bottom:698.023739pt;}
.y1a5c_c00001{bottom:698.107323pt;}
.y195c_c00001{bottom:698.187067pt;}
.y959_c00001{bottom:698.582147pt;}
.ybe4_c00001{bottom:698.583611pt;}
.y2208_c00001{bottom:698.668443pt;}
.yf5c_c00001{bottom:698.904163pt;}
.y74_c00001{bottom:698.907067pt;}
.y1183_c00001{bottom:698.983739pt;}
.y1139_c00001{bottom:698.984323pt;}
.y2305_c00001{bottom:699.308387pt;}
.y563_c00001{bottom:699.387067pt;}
.y672_c00001{bottom:699.467067pt;}
.y1cad_c00001{bottom:699.708435pt;}
.y1f2c_c00001{bottom:699.787067pt;}
.y9e1_c00001{bottom:699.864507pt;}
.y189c_c00001{bottom:699.944907pt;}
.y1d6b_c00001{bottom:699.948331pt;}
.y1c62_c00001{bottom:700.106899pt;}
.y1c04_c00001{bottom:700.346683pt;}
.y3e6_c00001{bottom:700.427067pt;}
.y11e6_c00001{bottom:700.584851pt;}
.y492_c00001{bottom:700.667067pt;}
.y2247_c00001{bottom:700.668435pt;}
.y1e66_c00001{bottom:700.904907pt;}
.y1ad6_c00001{bottom:701.308379pt;}
.y843_c00001{bottom:701.387067pt;}
.y47d_c00001{bottom:701.467067pt;}
.y18b3_c00001{bottom:701.544851pt;}
.yf8a_c00001{bottom:701.545435pt;}
.ye3d_c00001{bottom:701.627435pt;}
.y115e_c00001{bottom:701.781907pt;}
.y1671_c00001{bottom:701.867067pt;}
.y8dc_c00001{bottom:701.942960pt;}
.y1f86_c00001{bottom:702.187067pt;}
.y2000_c00001{bottom:702.267067pt;}
.y686_c00001{bottom:702.347067pt;}
.y2101_c00001{bottom:702.427200pt;}
.y1273_c00001{bottom:702.505435pt;}
.y1f00_c00001{bottom:702.506019pt;}
.y52d_c00001{bottom:702.830659pt;}
.ycb8_c00001{bottom:702.834875pt;}
.yce9_c00001{bottom:702.862523pt;}
.y16e8_c00001{bottom:702.987075pt;}
.y4dc_c00001{bottom:703.147200pt;}
.y1206_c00001{bottom:703.226123pt;}
.ybf_c00001{bottom:703.387067pt;}
.y1858_c00001{bottom:703.466019pt;}
.yaf7_c00001{bottom:703.548515pt;}
.y173_c00001{bottom:703.627067pt;}
.y3c7_c00001{bottom:703.707067pt;}
.y222e_c00001{bottom:703.948315pt;}
.y17f3_c00001{bottom:704.186123pt;}
.y1110_c00001{bottom:704.343019pt;}
.y1251_c00001{bottom:704.423179pt;}
.y1fc6_c00001{bottom:704.667067pt;}
.ya07_c00001{bottom:704.826107pt;}
.y1c53_c00001{bottom:705.147291pt;}
.y259_c00001{bottom:705.307067pt;}
.yb96_c00001{bottom:705.623987pt;}
.y97f_c00001{bottom:705.704507pt;}
.yc4a_c00001{bottom:705.705971pt;}
.y1faf_c00001{bottom:705.948307pt;}
.y461_c00001{bottom:706.027067pt;}
.y101b_c00001{bottom:706.027131pt;}
.y1621_c00001{bottom:706.107291pt;}
.yed4_c00001{bottom:706.267243pt;}
.yf02_c00001{bottom:706.267603pt;}
.y1e8_c00001{bottom:706.347067pt;}
.y13e9_c00001{bottom:706.348355pt;}
.y1c34_c00001{bottom:706.426179pt;}
.yf2d_c00001{bottom:706.507067pt;}
.y971_c00001{bottom:706.582907pt;}
.yba1_c00001{bottom:706.584371pt;}
.y2186_c00001{bottom:706.587067pt;}
.y2cb_c00001{bottom:706.827067pt;}
.y11ab_c00001{bottom:706.984291pt;}
.y2036_c00001{bottom:707.147200pt;}
.y6eb_c00001{bottom:707.387067pt;}
.ybca_c00001{bottom:707.462771pt;}
.y1aab_c00001{bottom:707.708403pt;}
.y130d_c00001{bottom:707.944291pt;}
.y16b2_c00001{bottom:707.944875pt;}
.y21bc_c00001{bottom:707.948299pt;}
.y2b3_c00001{bottom:708.107067pt;}
.y2502_c00001{bottom:708.267067pt;}
.y2f_c00001{bottom:708.427067pt;}
.y10eb_c00001{bottom:708.825299pt;}
.y155a_c00001{bottom:708.904875pt;}
.y10_c00001{bottom:708.907067pt;}
.y1e25_c00001{bottom:709.067067pt;}
.y17a7_c00001{bottom:709.147107pt;}
.y1407_c00001{bottom:709.225147pt;}
.y1b19_c00001{bottom:709.307235pt;}
.yea5_c00001{bottom:709.307243pt;}
.ye6c_c00001{bottom:709.307443pt;}
.ye08_c00001{bottom:709.308347pt;}
.y10c2_c00001{bottom:709.545403pt;}
.y749_c00001{bottom:709.547067pt;}
.yf9_c00001{bottom:709.627067pt;}
.y306_c00001{bottom:709.627200pt;}
.y574_c00001{bottom:709.787200pt;}
.y19d8_c00001{bottom:709.865459pt;}
.y24c7_c00001{bottom:709.947067pt;}
.y1a5_c00001{bottom:710.267067pt;}
.y1645_c00001{bottom:710.346779pt;}
.y12be_c00001{bottom:710.505403pt;}
.y107b_c00001{bottom:710.505987pt;}
.y1721_c00001{bottom:710.742459pt;}
.yfbb_c00001{bottom:710.826043pt;}
.y245a_c00001{bottom:710.826627pt;}
.ydcc_c00001{bottom:710.827987pt;}
.y2496_c00001{bottom:710.907067pt;}
.y6b1_c00001{bottom:711.227067pt;}
.yc98_c00001{bottom:711.302395pt;}
.y4f1_c00001{bottom:711.386707pt;}
.y52_c00001{bottom:711.387067pt;}
.yfed_c00001{bottom:711.465987pt;}
.y14b7_c00001{bottom:711.466571pt;}
.y611_c00001{bottom:711.467067pt;}
.y5a4_c00001{bottom:711.628592pt;}
.y1dce_c00001{bottom:711.703043pt;}
.y1330_c00001{bottom:711.786259pt;}
.yd77_c00001{bottom:712.267067pt;}
.y15d3_c00001{bottom:712.427155pt;}
.y1fde_c00001{bottom:712.587067pt;}
.y2015_c00001{bottom:712.667067pt;}
.y7c1_c00001{bottom:712.747067pt;}
.ya8c_c00001{bottom:712.826867pt;}
.y870_c00001{bottom:712.907067pt;}
.y18e9_c00001{bottom:713.147259pt;}
.y20e_c00001{bottom:713.307067pt;}
.y1d1b_c00001{bottom:713.307723pt;}
.y1a28_c00001{bottom:713.308331pt;}
.y1468_c00001{bottom:713.383731pt;}
.y536_c00001{bottom:713.387067pt;}
.y14da_c00001{bottom:713.387155pt;}
.yaac_c00001{bottom:713.705267pt;}
.ya50_c00001{bottom:713.706731pt;}
.y352_c00001{bottom:713.707067pt;}
.ya27_c00001{bottom:713.708195pt;}
.y4bc_c00001{bottom:713.787067pt;}
.y2207_c00001{bottom:713.948275pt;}
.yd1d_c00001{bottom:714.276667pt;}
.yd4a_c00001{bottom:714.301243pt;}
.y1182_c00001{bottom:714.343731pt;}
.y1138_c00001{bottom:714.344315pt;}
.y896_c00001{bottom:714.427067pt;}
.y92e_c00001{bottom:714.583667pt;}
.yb7a_c00001{bottom:714.584187pt;}
.y9a9_c00001{bottom:714.585131pt;}
.y229b_c00001{bottom:714.668379pt;}
.y1cac_c00001{bottom:714.988267pt;}
.y1c7c_c00001{bottom:715.304315pt;}
.y189b_c00001{bottom:715.304899pt;}
.y236c_c00001{bottom:715.308323pt;}
.y1873_c00001{bottom:715.386731pt;}
.y505_c00001{bottom:715.387067pt;}
.yc0e_c00001{bottom:715.462067pt;}
.ybe3_c00001{bottom:715.463531pt;}
.y372_c00001{bottom:715.547067pt;}
.y6d2_c00001{bottom:715.627067pt;}
.y104a_c00001{bottom:715.864683pt;}
.y11e5_c00001{bottom:715.944843pt;}
.y1d43_c00001{bottom:715.948267pt;}
.y5c0_c00001{bottom:716.107200pt;}
.yb41_c00001{bottom:716.261411pt;}
.y1e65_c00001{bottom:716.264899pt;}
.y1f0a_c00001{bottom:716.265483pt;}
.y230_c00001{bottom:716.427067pt;}
.yd9d_c00001{bottom:716.587067pt;}
.y54a_c00001{bottom:716.667075pt;}
.y1ad5_c00001{bottom:716.668371pt;}
.y5ec_c00001{bottom:716.747067pt;}
.yf89_c00001{bottom:716.825267pt;}
.y18b2_c00001{bottom:716.904843pt;}
.y1354_c00001{bottom:716.905427pt;}
.ye3c_c00001{bottom:716.987427pt;}
.y246_c00001{bottom:717.147067pt;}
.y154_c00001{bottom:717.387067pt;}
.y1272_c00001{bottom:717.865427pt;}
.y1eff_c00001{bottom:717.866011pt;}
.y1f2b_c00001{bottom:718.187067pt;}
.y16e7_c00001{bottom:718.347067pt;}
.y652_c00001{bottom:718.427067pt;}
.y10a5_c00001{bottom:718.505955pt;}
.y13c7_c00001{bottom:718.826011pt;}
.yc20_c00001{bottom:719.144027pt;}
.y222d_c00001{bottom:719.308307pt;}
.y28f_c00001{bottom:719.387067pt;}
.y17f2_c00001{bottom:719.465955pt;}
.y110f_c00001{bottom:719.703011pt;}
.y73_c00001{bottom:719.947067pt;}
.y2146_c00001{bottom:720.027067pt;}
.y1de9_c00001{bottom:720.027075pt;}
.y1670_c00001{bottom:720.267067pt;}
.y406_c00001{bottom:720.427067pt;}
.y1c52_c00001{bottom:720.427123pt;}
.yaf6_c00001{bottom:720.428435pt;}
.ycb7_c00001{bottom:720.434363pt;}
.yce8_c00001{bottom:720.462011pt;}
.y41c_c00001{bottom:720.507067pt;}
.y2350_c00001{bottom:720.587067pt;}
.y1430_c00001{bottom:720.663595pt;}
.y1f48_c00001{bottom:720.667067pt;}
.y23c4_c00001{bottom:720.668355pt;}
.y1f6c_c00001{bottom:721.227067pt;}
.y13d_c00001{bottom:721.387067pt;}
.y101a_c00001{bottom:721.387123pt;}
.yed3_c00001{bottom:721.547075pt;}
.yf01_c00001{bottom:721.547435pt;}
.ya06_c00001{bottom:721.706027pt;}
.y52c_c00001{bottom:722.110075pt;}
.yf5b_c00001{bottom:722.264123pt;}
.y11c8_c00001{bottom:722.344283pt;}
.y47c_c00001{bottom:722.507067pt;}
.y905_c00001{bottom:722.584427pt;}
.yc7e_c00001{bottom:722.585891pt;}
.y2304_c00001{bottom:722.668347pt;}
.y1aaa_c00001{bottom:722.988235pt;}
.y258_c00001{bottom:723.067067pt;}
.y1298_c00001{bottom:723.304283pt;}
.y16b1_c00001{bottom:723.304867pt;}
.y1d6a_c00001{bottom:723.308291pt;}
.yf2c_c00001{bottom:723.387067pt;}
.y958_c00001{bottom:723.462827pt;}
.yba0_c00001{bottom:723.464291pt;}
.y10ea_c00001{bottom:724.185291pt;}
.y1559_c00001{bottom:724.264867pt;}
.ya5_c00001{bottom:724.427067pt;}
.y172_c00001{bottom:724.587067pt;}
.yea4_c00001{bottom:724.667235pt;}
.ye6b_c00001{bottom:724.667435pt;}
.ye07_c00001{bottom:724.668339pt;}
.y9e0_c00001{bottom:724.745187pt;}
.y15f7_c00001{bottom:724.905395pt;}
.y1644_c00001{bottom:725.706771pt;}
.y19a8_c00001{bottom:725.865395pt;}
.y107a_c00001{bottom:725.865979pt;}
.y115d_c00001{bottom:726.102451pt;}
.ydcb_c00001{bottom:726.187979pt;}
.y449_c00001{bottom:726.267067pt;}
.y511_c00001{bottom:726.347067pt;}
.y8db_c00001{bottom:726.823640pt;}
.yfec_c00001{bottom:726.825979pt;}
.y1538_c00001{bottom:726.826563pt;}
.y2525_c00001{bottom:726.987067pt;}
.y3c6_c00001{bottom:726.987200pt;}
.y1dcd_c00001{bottom:727.063035pt;}
.y1e7_c00001{bottom:727.387067pt;}
.y1205_c00001{bottom:727.466507pt;}
.y1e24_c00001{bottom:727.467067pt;}
.y1857_c00001{bottom:727.786563pt;}
.y2ca_c00001{bottom:727.787067pt;}
.y192e_c00001{bottom:727.787147pt;}
.y61e_c00001{bottom:727.947067pt;}
.y562_c00001{bottom:728.427067pt;}
.y18e8_c00001{bottom:728.427091pt;}
.y671_c00001{bottom:728.507067pt;}
.y1f85_c00001{bottom:728.587067pt;}
.y1250_c00001{bottom:728.663563pt;}
.y1fff_c00001{bottom:728.667067pt;}
.y14d9_c00001{bottom:728.747147pt;}
.y2100_c00001{bottom:728.827200pt;}
.y460_c00001{bottom:728.907067pt;}
.y2b2_c00001{bottom:729.147067pt;}
.y491_c00001{bottom:729.147291pt;}
.y1fae_c00001{bottom:729.308267pt;}
.y18e_c00001{bottom:729.387067pt;}
.y1620_c00001{bottom:729.387091pt;}
.y1181_c00001{bottom:729.623563pt;}
.y1137_c00001{bottom:729.624147pt;}
.ya8b_c00001{bottom:729.706787pt;}
.y13e8_c00001{bottom:729.708315pt;}
.yf_c00001{bottom:729.947067pt;}
.y1984_c00001{bottom:730.347675pt;}
.y1cab_c00001{bottom:730.348259pt;}
.y189a_c00001{bottom:730.584731pt;}
.ya78_c00001{bottom:730.585187pt;}
.ya4f_c00001{bottom:730.586651pt;}
.y4f0_c00001{bottom:730.587067pt;}
.y305_c00001{bottom:730.587200pt;}
.y248a_c00001{bottom:730.667067pt;}
.y236b_c00001{bottom:730.668315pt;}
.y1872_c00001{bottom:730.746723pt;}
.y573_c00001{bottom:730.827067pt;}
.y24c6_c00001{bottom:730.907067pt;}
.y5a3_c00001{bottom:730.908008pt;}
.y1fdd_c00001{bottom:730.987067pt;}
.y1fc5_c00001{bottom:731.067067pt;}
.y842_c00001{bottom:731.147200pt;}
.y11aa_c00001{bottom:731.304835pt;}
.y1d42_c00001{bottom:731.308259pt;}
.y92d_c00001{bottom:731.463587pt;}
.yac5_c00001{bottom:731.465051pt;}
.y1ad4_c00001{bottom:731.948203pt;}
.yd1c_c00001{bottom:731.956027pt;}
.yd49_c00001{bottom:731.980603pt;}
.y549_c00001{bottom:732.027067pt;}
.yf88_c00001{bottom:732.185259pt;}
.ybc9_c00001{bottom:732.262931pt;}
.y130c_c00001{bottom:732.264835pt;}
.y172e_c00001{bottom:732.265419pt;}
.ye3b_c00001{bottom:732.347419pt;}
.y51_c00001{bottom:732.427067pt;}
.y17a6_c00001{bottom:732.507067pt;}
.y2185_c00001{bottom:732.987067pt;}
.y1271_c00001{bottom:733.225419pt;}
.y1efe_c00001{bottom:733.226003pt;}
.yd76_c00001{bottom:733.307067pt;}
.y1406_c00001{bottom:733.465531pt;}
.y16e6_c00001{bottom:733.707059pt;}
.y10a4_c00001{bottom:733.865947pt;}
.y248e_c00001{bottom:733.867067pt;}
.y86f_c00001{bottom:733.947067pt;}
.yfba_c00001{bottom:734.105843pt;}
.y19b8_c00001{bottom:734.186003pt;}
.y2459_c00001{bottom:734.186587pt;}
.y6b0_c00001{bottom:734.187067pt;}
.y20d_c00001{bottom:734.347067pt;}
.y535_c00001{bottom:734.427067pt;}
.y222c_c00001{bottom:734.668299pt;}
.y351_c00001{bottom:734.747067pt;}
.y12bd_c00001{bottom:734.825947pt;}
.y1759_c00001{bottom:735.063003pt;}
.y828_c00001{bottom:735.782395pt;}
.y14b6_c00001{bottom:735.787115pt;}
.y132f_c00001{bottom:736.026643pt;}
.y6ea_c00001{bottom:736.267067pt;}
.y504_c00001{bottom:736.427067pt;}
.y371_c00001{bottom:736.587067pt;}
.y6d1_c00001{bottom:736.667067pt;}
.y1d1a_c00001{bottom:736.667683pt;}
.y1a27_c00001{bottom:736.668291pt;}
.y1019_c00001{bottom:736.747115pt;}
.y15d2_c00001{bottom:736.747699pt;}
.yed2_c00001{bottom:736.907067pt;}
.yf00_c00001{bottom:736.907427pt;}
.y5bf_c00001{bottom:737.147200pt;}
.y2e_c00001{bottom:737.387067pt;}
.y748_c00001{bottom:737.467067pt;}
.yf5a_c00001{bottom:737.624115pt;}
.y229a_c00001{bottom:737.948179pt;}
.ycb6_c00001{bottom:738.033851pt;}
.yce7_c00001{bottom:738.061499pt;}
.y245_c00001{bottom:738.187067pt;}
.y41b_c00001{bottom:738.267067pt;}
.y1575_c00001{bottom:738.584699pt;}
.ya26_c00001{bottom:738.587411pt;}
.y166f_c00001{bottom:738.667067pt;}
.y1d69_c00001{bottom:738.668283pt;}
.yd9c_c00001{bottom:738.747067pt;}
.y234f_c00001{bottom:738.987067pt;}
.y2014_c00001{bottom:739.067067pt;}
.y949_c00001{bottom:739.464347pt;}
.yb79_c00001{bottom:739.464867pt;}
.y9a8_c00001{bottom:739.465811pt;}
.y1b74_c00001{bottom:739.544699pt;}
.y1f09_c00001{bottom:739.545283pt;}
.ye6a_c00001{bottom:739.947267pt;}
.ye06_c00001{bottom:739.948171pt;}
.y1049_c00001{bottom:740.185227pt;}
.yc0d_c00001{bottom:740.262227pt;}
.ybe2_c00001{bottom:740.263691pt;}
.y11e4_c00001{bottom:740.265387pt;}
.y153_c00001{bottom:740.267067pt;}
.y28e_c00001{bottom:740.427067pt;}
.y1e64_c00001{bottom:740.505283pt;}
.y2495_c00001{bottom:740.667067pt;}
.y72_c00001{bottom:740.907067pt;}
.y168f_c00001{bottom:740.986603pt;}
.yb40_c00001{bottom:741.142091pt;}
.y1079_c00001{bottom:741.145811pt;}
.y1e7f_c00001{bottom:741.225387pt;}
.y1778_c00001{bottom:741.225971pt;}
.y52b_c00001{bottom:741.389491pt;}
.ydca_c00001{bottom:741.547971pt;}
.y9df_c00001{bottom:741.625107pt;}
.y7c0_c00001{bottom:741.787067pt;}
.yfeb_c00001{bottom:742.105811pt;}
.y1830_c00001{bottom:742.185971pt;}
.y1537_c00001{bottom:742.186555pt;}
.y13c_c00001{bottom:742.427067pt;}
.y13a0_c00001{bottom:742.826499pt;}
.y4bb_c00001{bottom:742.827067pt;}
.y13c6_c00001{bottom:743.146555pt;}
.y19fe_c00001{bottom:743.147139pt;}
.y895_c00001{bottom:743.227067pt;}
.y1de8_c00001{bottom:743.387035pt;}
.y17f1_c00001{bottom:743.786499pt;}
.y18e7_c00001{bottom:743.787083pt;}
.y110e_c00001{bottom:743.943395pt;}
.yc1f_c00001{bottom:743.944187pt;}
.y23c3_c00001{bottom:743.948155pt;}
.y12da_c00001{bottom:744.023555pt;}
.y1a5b_c00001{bottom:744.026979pt;}
.y448_c00001{bottom:744.107067pt;}
.y6a1_c00001{bottom:744.427067pt;}
.y2206_c00001{bottom:744.668259pt;}
.y161f_c00001{bottom:744.747083pt;}
.y5eb_c00001{bottom:744.747235pt;}
.y1229_c00001{bottom:744.983555pt;}
.y142f_c00001{bottom:744.984139pt;}
.yaf5_c00001{bottom:745.309115pt;}
.y88_c00001{bottom:745.387067pt;}
.y171_c00001{bottom:745.627067pt;}
.y1caa_c00001{bottom:745.708251pt;}
.y1e23_c00001{bottom:745.867067pt;}
.y2303_c00001{bottom:745.948147pt;}
.y6ff_c00001{bottom:746.187067pt;}
.y1aa9_c00001{bottom:746.348195pt;}
.y2145_c00001{bottom:746.427067pt;}
.y136d_c00001{bottom:746.584667pt;}
.ya05_c00001{bottom:746.586707pt;}
.y1d41_c00001{bottom:746.668251pt;}
.y1f84_c00001{bottom:746.987067pt;}
.y1f47_c00001{bottom:747.067067pt;}
.y1ad3_c00001{bottom:747.308195pt;}
.y904_c00001{bottom:747.465107pt;}
.ya4e_c00001{bottom:747.466571pt;}
.y651_c00001{bottom:747.467067pt;}
.y1297_c00001{bottom:747.544667pt;}
.yf87_c00001{bottom:747.545251pt;}
.y1f6b_c00001{bottom:747.627067pt;}
.ye3a_c00001{bottom:747.627251pt;}
.y2524_c00001{bottom:748.027067pt;}
.y957_c00001{bottom:748.262987pt;}
.yb9f_c00001{bottom:748.264451pt;}
.y1e6_c00001{bottom:748.347067pt;}
.y490_c00001{bottom:748.347651pt;}
.y1270_c00001{bottom:748.505251pt;}
.y10e9_c00001{bottom:748.505835pt;}
.y2c9_c00001{bottom:748.827067pt;}
.y61d_c00001{bottom:748.907067pt;}
.y1643_c00001{bottom:748.986571pt;}
.y16e5_c00001{bottom:748.986891pt;}
.y2489_c00001{bottom:749.067067pt;}
.y10a3_c00001{bottom:749.145779pt;}
.y1496_c00001{bottom:749.225939pt;}
.yfb9_c00001{bottom:749.465835pt;}
.y2458_c00001{bottom:749.466419pt;}
.y405_c00001{bottom:749.467067pt;}
.yd1b_c00001{bottom:749.555515pt;}
.yd48_c00001{bottom:749.580091pt;}
.y222b_c00001{bottom:749.948131pt;}
.y2b1_c00001{bottom:750.107067pt;}
.y5a2_c00001{bottom:750.108368pt;}
.y12bc_c00001{bottom:750.185939pt;}
.y115c_c00001{bottom:750.422995pt;}
.y18d_c00001{bottom:750.427067pt;}
.y1ec4_c00001{bottom:751.066363pt;}
.y192d_c00001{bottom:751.066947pt;}
.y1c51_c00001{bottom:751.147107pt;}
.y1dcc_c00001{bottom:751.383579pt;}
.y47b_c00001{bottom:751.467067pt;}
.y304_c00001{bottom:751.627200pt;}
.y8da_c00001{bottom:751.704320pt;}
.y1204_c00001{bottom:751.787051pt;}
.y572_c00001{bottom:751.787067pt;}
.y1018_c00001{bottom:752.026947pt;}
.yed1_c00001{bottom:752.267419pt;}
.y1fad_c00001{bottom:752.668227pt;}
.yf59_c00001{bottom:752.903947pt;}
.y124f_c00001{bottom:752.984107pt;}
.y14d8_c00001{bottom:752.987531pt;}
.y13e7_c00001{bottom:752.988115pt;}
.y2411_c00001{bottom:753.308171pt;}
.y50_c00001{bottom:753.387067pt;}
.y1180_c00001{bottom:753.944107pt;}
.y1136_c00001{bottom:753.944691pt;}
.y21bb_c00001{bottom:753.948115pt;}
.yc97_c00001{bottom:754.184203pt;}
.y1983_c00001{bottom:754.668219pt;}
.y1899_c00001{bottom:754.905275pt;}
.y548_c00001{bottom:754.907067pt;}
.y1f2a_c00001{bottom:754.987067pt;}
.y1ffe_c00001{bottom:755.067067pt;}
.y1871_c00001{bottom:755.067267pt;}
.y510_c00001{bottom:755.307067pt;}
.ye69_c00001{bottom:755.307259pt;}
.ye05_c00001{bottom:755.308163pt;}
.yaab_c00001{bottom:755.465867pt;}
.y534_c00001{bottom:755.467067pt;}
.ya25_c00001{bottom:755.467331pt;}
.y1048_c00001{bottom:755.545219pt;}
.ycb5_c00001{bottom:755.713211pt;}
.yce6_c00001{bottom:755.740859pt;}
.y92c_c00001{bottom:756.263747pt;}
.y9a7_c00001{bottom:756.265211pt;}
.y168e_c00001{bottom:756.346595pt;}
.y17a5_c00001{bottom:756.347067pt;}
.y670_c00001{bottom:756.427067pt;}
.y150e_c00001{bottom:756.505219pt;}
.y1078_c00001{bottom:756.505803pt;}
.ydc9_c00001{bottom:756.827803pt;}
.y166e_c00001{bottom:757.067067pt;}
.yc0c_c00001{bottom:757.142147pt;}
.ybc8_c00001{bottom:757.143611pt;}
.y1fc4_c00001{bottom:757.387067pt;}
.yfea_c00001{bottom:757.465803pt;}
.y1536_c00001{bottom:757.466387pt;}
.y503_c00001{bottom:757.467067pt;}
.y370_c00001{bottom:757.627067pt;}
.y6d0_c00001{bottom:757.707067pt;}
.y1405_c00001{bottom:757.786075pt;}
.y5be_c00001{bottom:758.107200pt;}
.y1eea_c00001{bottom:758.186491pt;}
.y8b5_c00001{bottom:758.267067pt;}
.y13c5_c00001{bottom:758.426387pt;}
.y19fd_c00001{bottom:758.426971pt;}
.y22f_c00001{bottom:758.427067pt;}
.ye_c00001{bottom:758.907067pt;}
.y244_c00001{bottom:759.147067pt;}
.y18e6_c00001{bottom:759.147075pt;}
.y1380_c00001{bottom:759.383547pt;}
.y2184_c00001{bottom:759.387067pt;}
.yd9b_c00001{bottom:759.787067pt;}
.y24c5_c00001{bottom:759.947067pt;}
.y1d19_c00001{bottom:759.947483pt;}
.y1a26_c00001{bottom:759.948091pt;}
.y161e_c00001{bottom:760.026915pt;}
.y5ea_c00001{bottom:760.027067pt;}
.y14b5_c00001{bottom:760.027499pt;}
.yf2b_c00001{bottom:760.187067pt;}
.y142e_c00001{bottom:760.344131pt;}
.y132e_c00001{bottom:760.347187pt;}
.y4ba_c00001{bottom:760.587067pt;}
.y52a_c00001{bottom:760.589851pt;}
.y15d1_c00001{bottom:760.988083pt;}
.y2299_c00001{bottom:761.308139pt;}
.y28d_c00001{bottom:761.387067pt;}
.y610_c00001{bottom:761.467067pt;}
.y1aa8_c00001{bottom:761.708187pt;}
.y11c7_c00001{bottom:761.944659pt;}
.y71_c00001{bottom:761.947067pt;}
.y1d40_c00001{bottom:761.948083pt;}
.y1ad2_c00001{bottom:762.668187pt;}
.yf86_c00001{bottom:762.825083pt;}
.y1296_c00001{bottom:762.904659pt;}
.y16b0_c00001{bottom:762.905243pt;}
.y841_c00001{bottom:762.907067pt;}
.ye39_c00001{bottom:762.987243pt;}
.y20c_c00001{bottom:763.387067pt;}
.ya04_c00001{bottom:763.466627pt;}
.y13b_c00001{bottom:763.467067pt;}
.y350_c00001{bottom:763.707067pt;}
.y19d7_c00001{bottom:763.865243pt;}
.y1efd_c00001{bottom:763.865827pt;}
.y903_c00001{bottom:764.264507pt;}
.yb78_c00001{bottom:764.265027pt;}
.yc7d_c00001{bottom:764.265971pt;}
.y1642_c00001{bottom:764.346563pt;}
.y16e4_c00001{bottom:764.346883pt;}
.y10a2_c00001{bottom:764.505771pt;}
.yfb8_c00001{bottom:764.825827pt;}
.y956_c00001{bottom:765.142907pt;}
.ybe1_c00001{bottom:765.144371pt;}
.y2205_c00001{bottom:765.308123pt;}
.y1f83_c00001{bottom:765.387067pt;}
.y12bb_c00001{bottom:765.465771pt;}
.y6e9_c00001{bottom:765.467067pt;}
.y115b_c00001{bottom:765.702827pt;}
.yb3f_c00001{bottom:766.022771pt;}
.y58b_c00001{bottom:766.267067pt;}
.y1ce9_c00001{bottom:766.426355pt;}
.y2d_c00001{bottom:766.427067pt;}
.y9de_c00001{bottom:766.505787pt;}
.y1de7_c00001{bottom:766.746995pt;}
.y139f_c00001{bottom:767.066883pt;}
.y1203_c00001{bottom:767.147043pt;}
.yd1a_c00001{bottom:767.234875pt;}
.yd47_c00001{bottom:767.259451pt;}
.y23c2_c00001{bottom:767.308115pt;}
.y1017_c00001{bottom:767.386939pt;}
.y2488_c00001{bottom:767.467067pt;}
.yed0_c00001{bottom:767.547251pt;}
.y48f_c00001{bottom:767.627067pt;}
.y17f0_c00001{bottom:768.026883pt;}
.yf58_c00001{bottom:768.263939pt;}
.y124e_c00001{bottom:768.344099pt;}
.y2410_c00001{bottom:768.668163pt;}
.yc1e_c00001{bottom:768.824867pt;}
.y2523_c00001{bottom:769.067067pt;}
.y1228_c00001{bottom:769.304099pt;}
.y18be_c00001{bottom:769.304683pt;}
.y47a_c00001{bottom:769.307067pt;}
.y21ba_c00001{bottom:769.308107pt;}
.y1e5_c00001{bottom:769.387067pt;}
.y5a1_c00001{bottom:769.387784pt;}
.y7bf_c00001{bottom:769.707067pt;}
.y2c8_c00001{bottom:769.787067pt;}
.y61c_c00001{bottom:769.947067pt;}
.y1982_c00001{bottom:769.948051pt;}
.yaf4_c00001{bottom:770.109275pt;}
.ye68_c00001{bottom:770.667251pt;}
.ye04_c00001{bottom:770.668155pt;}
.y11a9_c00001{bottom:770.905211pt;}
.y2b0_c00001{bottom:771.147067pt;}
.y3e5_c00001{bottom:771.467067pt;}
.y1077_c00001{bottom:771.865795pt;}
.ydc8_c00001{bottom:772.187795pt;}
.ya77_c00001{bottom:772.265267pt;}
.ya4d_c00001{bottom:772.266731pt;}
.y894_c00001{bottom:772.427067pt;}
.y303_c00001{bottom:772.667067pt;}
.yfe9_c00001{bottom:772.825795pt;}
.y10e8_c00001{bottom:772.826379pt;}
.y571_c00001{bottom:772.827067pt;}
.y6a0_c00001{bottom:772.907875pt;}
.y50f_c00001{bottom:773.067067pt;}
.y92b_c00001{bottom:773.143667pt;}
.y9a6_c00001{bottom:773.145131pt;}
.ycb4_c00001{bottom:773.312699pt;}
.yce5_c00001{bottom:773.340347pt;}
.y1f46_c00001{bottom:773.387067pt;}
.y15f6_c00001{bottom:773.466323pt;}
.y21d4_c00001{bottom:773.467067pt;}
.y13c4_c00001{bottom:773.786379pt;}
.y1f6a_c00001{bottom:774.027067pt;}
.y12fc_c00001{bottom:774.426323pt;}
.y18e5_c00001{bottom:774.426907pt;}
.y4f_c00001{bottom:774.427067pt;}
.y170_c00001{bottom:774.587067pt;}
.y137f_c00001{bottom:774.663379pt;}
.y6fe_c00001{bottom:774.667515pt;}
.y161d_c00001{bottom:775.386907pt;}
.y192c_c00001{bottom:775.387491pt;}
.y650_c00001{bottom:775.467067pt;}
.y142d_c00001{bottom:775.623963pt;}
.y132d_c00001{bottom:775.707179pt;}
.y195b_c00001{bottom:775.867067pt;}
.y86e_c00001{bottom:775.947067pt;}
.y1fac_c00001{bottom:775.948027pt;}
.y13e6_c00001{bottom:776.348075pt;}
.yd75_c00001{bottom:776.427067pt;}
.y8d9_c00001{bottom:776.585000pt;}
.y1aa7_c00001{bottom:776.988019pt;}
.y1467_c00001{bottom:777.304651pt;}
.y14d7_c00001{bottom:777.308075pt;}
.y1ad1_c00001{bottom:777.948019pt;}
.yf85_c00001{bottom:778.185075pt;}
.y117f_c00001{bottom:778.264651pt;}
.y1135_c00001{bottom:778.265235pt;}
.y1870_c00001{bottom:778.347067pt;}
.ye38_c00001{bottom:778.347235pt;}
.y404_c00001{bottom:778.427067pt;}
.y36f_c00001{bottom:778.587067pt;}
.y6cf_c00001{bottom:778.667067pt;}
.y827_c00001{bottom:778.742659pt;}
.y5bd_c00001{bottom:779.147067pt;}
.y1898_c00001{bottom:779.225819pt;}
.y63f_c00001{bottom:779.307067pt;}
.y329_c00001{bottom:779.387067pt;}
.y18c_c00001{bottom:779.467067pt;}
.y1641_c00001{bottom:779.626395pt;}
.y16e3_c00001{bottom:779.626715pt;}
.y1047_c00001{bottom:779.865763pt;}
.y529_c00001{bottom:779.869267pt;}
.yfb7_c00001{bottom:780.105659pt;}
.y243_c00001{bottom:780.187067pt;}
.ya03_c00001{bottom:780.266027pt;}
.ya24_c00001{bottom:780.267491pt;}
.y2204_c00001{bottom:780.668115pt;}
.y12ba_c00001{bottom:780.825763pt;}
.y1e85_c00001{bottom:780.826347pt;}
.y115a_c00001{bottom:781.062819pt;}
.y948_c00001{bottom:781.144427pt;}
.yb77_c00001{bottom:781.144947pt;}
.yb2e_c00001{bottom:781.145891pt;}
.y1f29_c00001{bottom:781.467067pt;}
.y19fc_c00001{bottom:781.786931pt;}
.yd9a_c00001{bottom:781.867067pt;}
.yc0b_c00001{bottom:782.022827pt;}
.ybc7_c00001{bottom:782.024291pt;}
.y1404_c00001{bottom:782.026459pt;}
.y1202_c00001{bottom:782.426875pt;}
.y95_c00001{bottom:782.427067pt;}
.y1016_c00001{bottom:782.746931pt;}
.y17a4_c00001{bottom:782.747067pt;}
.y1bd_c00001{bottom:782.907067pt;}
.yecf_c00001{bottom:782.907243pt;}
.y5e9_c00001{bottom:782.987200pt;}
.y1a25_c00001{bottom:783.308051pt;}
.y9dd_c00001{bottom:783.385707pt;}
.y17ef_c00001{bottom:783.386875pt;}
.y110d_c00001{bottom:783.623931pt;}
.y1d18_c00001{bottom:783.787067pt;}
.y2035_c00001{bottom:783.867067pt;}
.y240f_c00001{bottom:783.947995pt;}
.y14b4_c00001{bottom:784.348043pt;}
.y533_c00001{bottom:784.427067pt;}
.y1903_c00001{bottom:784.584515pt;}
.y21b9_c00001{bottom:784.668099pt;}
.y34f_c00001{bottom:784.747067pt;}
.yd19_c00001{bottom:784.834363pt;}
.yd46_c00001{bottom:784.858939pt;}
.y1981_c00001{bottom:785.308043pt;}
.y2487_c00001{bottom:785.707067pt;}
.y2183_c00001{bottom:785.787067pt;}
.ye67_c00001{bottom:785.947083pt;}
.ye03_c00001{bottom:785.947987pt;}
.y11a8_c00001{bottom:786.265203pt;}
.y561_c00001{bottom:786.427067pt;}
.yaf3_c00001{bottom:786.989195pt;}
.y1076_c00001{bottom:787.145627pt;}
.y14fa_c00001{bottom:787.225203pt;}
.ya4_c00001{bottom:787.467067pt;}
.ydc7_c00001{bottom:787.547787pt;}
.yd_c00001{bottom:787.947067pt;}
.yfe8_c00001{bottom:788.105627pt;}
.y182f_c00001{bottom:788.185787pt;}
.y1535_c00001{bottom:788.186371pt;}
.ya8a_c00001{bottom:788.266787pt;}
.y5a0_c00001{bottom:788.667200pt;}
.y24c4_c00001{bottom:788.747067pt;}
.y15f5_c00001{bottom:788.826315pt;}
.y13c3_c00001{bottom:789.066211pt;}
.y902_c00001{bottom:789.145187pt;}
.ya4c_c00001{bottom:789.146651pt;}
.y60f_c00001{bottom:789.467067pt;}
.y18e4_c00001{bottom:789.786899pt;}
.y137e_c00001{bottom:790.023371pt;}
.y955_c00001{bottom:790.023587pt;}
.yac4_c00001{bottom:790.025051pt;}
.y1de6_c00001{bottom:790.026795pt;}
.y2522_c00001{bottom:790.027067pt;}
.y1e4_c00001{bottom:790.427067pt;}
.y23c1_c00001{bottom:790.668075pt;}
.y161c_c00001{bottom:790.746899pt;}
.y2c7_c00001{bottom:790.827067pt;}
.yb3e_c00001{bottom:790.903451pt;}
.y70_c00001{bottom:790.907067pt;}
.y1dcb_c00001{bottom:790.983955pt;}
.y132c_c00001{bottom:790.987011pt;}
.ycb3_c00001{bottom:790.992059pt;}
.yce4_c00001{bottom:791.019707pt;}
.y20b_c00001{bottom:791.307067pt;}
.y1fab_c00001{bottom:791.308019pt;}
.y139e_c00001{bottom:791.387427pt;}
.y15d0_c00001{bottom:791.708067pt;}
.y1f45_c00001{bottom:791.787067pt;}
.y840_c00001{bottom:791.867067pt;}
.y69f_c00001{bottom:792.108235pt;}
.y479_c00001{bottom:792.187067pt;}
.y1aa6_c00001{bottom:792.348011pt;}
.y13a_c00001{bottom:792.427067pt;}
.yf57_c00001{bottom:792.584483pt;}
.y7be_c00001{bottom:792.667200pt;}
.y1d68_c00001{bottom:792.668067pt;}
.y1ad0_c00001{bottom:793.308011pt;}
.y1227_c00001{bottom:793.544483pt;}
.yf84_c00001{bottom:793.545067pt;}
.y302_c00001{bottom:793.627067pt;}
.yc1d_c00001{bottom:793.704083pt;}
.y166d_c00001{bottom:793.867067pt;}
.y6fd_c00001{bottom:793.867875pt;}
.y6e8_c00001{bottom:794.427067pt;}
.y1897_c00001{bottom:794.505651pt;}
.y1640_c00001{bottom:794.986387pt;}
.y1495_c00001{bottom:795.225755pt;}
.yfb6_c00001{bottom:795.465651pt;}
.y2c_c00001{bottom:795.467067pt;}
.y2203_c00001{bottom:795.947947pt;}
.y18b1_c00001{bottom:796.105595pt;}
.y1e84_c00001{bottom:796.106179pt;}
.y126f_c00001{bottom:796.185755pt;}
.y86d_c00001{bottom:796.907067pt;}
.yf2a_c00001{bottom:796.987067pt;}
.y1c97_c00001{bottom:797.066179pt;}
.y10e7_c00001{bottom:797.066763pt;}
.yc96_c00001{bottom:797.144467pt;}
.yaaa_c00001{bottom:797.145947pt;}
.ya23_c00001{bottom:797.147411pt;}
.yd74_c00001{bottom:797.467067pt;}
.y1201_c00001{bottom:797.786867pt;}
.y92a_c00001{bottom:798.024347pt;}
.y9a5_c00001{bottom:798.025811pt;}
.y1015_c00001{bottom:798.026763pt;}
.yece_c00001{bottom:798.267235pt;}
.y64f_c00001{bottom:798.347067pt;}
.y12fb_c00001{bottom:798.746867pt;}
.y110c_c00001{bottom:798.903763pt;}
.y124d_c00001{bottom:798.983923pt;}
.y528_c00001{bottom:799.148683pt;}
.y2144_c00001{bottom:799.227067pt;}
.y240e_c00001{bottom:799.307987pt;}
.y502_c00001{bottom:799.467067pt;}
.y6ce_c00001{bottom:799.707067pt;}
.y13e5_c00001{bottom:799.708035pt;}
.y142c_c00001{bottom:799.944507pt;}
.y21b8_c00001{bottom:799.947931pt;}
.y2af_c00001{bottom:800.107067pt;}
.y5bc_c00001{bottom:800.187067pt;}
.y22e_c00001{bottom:800.427067pt;}
.y14d6_c00001{bottom:800.668035pt;}
.y242_c00001{bottom:801.227067pt;}
.ye66_c00001{bottom:801.307075pt;}
.ye02_c00001{bottom:801.307979pt;}
.y8d8_c00001{bottom:801.465680pt;}
.y893_c00001{bottom:801.467067pt;}
.y11a7_c00001{bottom:801.545035pt;}
.y570_c00001{bottom:801.787067pt;}
.y186f_c00001{bottom:802.187067pt;}
.y22d3_c00001{bottom:802.267067pt;}
.yd18_c00001{bottom:802.433851pt;}
.yd45_c00001{bottom:802.458427pt;}
.y117e_c00001{bottom:802.505035pt;}
.y1574_c00001{bottom:802.505619pt;}
.ydc6_c00001{bottom:802.827619pt;}
.yd99_c00001{bottom:802.907067pt;}
.y182e_c00001{bottom:803.465619pt;}
.y1534_c00001{bottom:803.466203pt;}
.y94_c00001{bottom:803.467067pt;}
.y16f_c00001{bottom:803.627067pt;}
.yaf2_c00001{bottom:803.869115pt;}
.y1bc_c00001{bottom:803.947067pt;}
.y16e2_c00001{bottom:803.947259pt;}
.y1046_c00001{bottom:804.106147pt;}
.y11e3_c00001{bottom:804.186307pt;}
.y2486_c00001{bottom:804.267067pt;}
.y12b9_c00001{bottom:805.066147pt;}
.y18e3_c00001{bottom:805.066731pt;}
.ya02_c00001{bottom:805.146707pt;}
.y1159_c00001{bottom:805.383363pt;}
.y8c8_c00001{bottom:805.467067pt;}
.yea_c00001{bottom:805.707067pt;}
.y34e_c00001{bottom:805.787067pt;}
.y901_c00001{bottom:806.025107pt;}
.yb76_c00001{bottom:806.025627pt;}
.yc7c_c00001{bottom:806.026571pt;}
.y161b_c00001{bottom:806.026731pt;}
.y132b_c00001{bottom:806.347003pt;}
.y1a24_c00001{bottom:806.668011pt;}
.y1ee9_c00001{bottom:806.747419pt;}
.y954_c00001{bottom:806.903507pt;}
.ybc6_c00001{bottom:806.904971pt;}
.y1856_c00001{bottom:806.987315pt;}
.y15cf_c00001{bottom:806.987899pt;}
.y403_c00001{bottom:807.467067pt;}
.y36e_c00001{bottom:807.627067pt;}
.y1aa5_c00001{bottom:807.708003pt;}
.y1f28_c00001{bottom:807.867067pt;}
.y16c4_c00001{bottom:807.944475pt;}
.y1d67_c00001{bottom:807.947899pt;}
.y9dc_c00001{bottom:808.266387pt;}
.y5b2_c00001{bottom:808.267067pt;}
.ya3_c00001{bottom:808.427067pt;}
.ycb2_c00001{bottom:808.591547pt;}
.yce3_c00001{bottom:808.619195pt;}
.y17a3_c00001{bottom:808.667267pt;}
.y23a2_c00001{bottom:808.668003pt;}
.y1134_c00001{bottom:808.905059pt;}
.ye37_c00001{bottom:809.228347pt;}
.y1f44_c00001{bottom:810.187067pt;}
.y1fdc_c00001{bottom:810.267067pt;}
.y168d_c00001{bottom:810.346379pt;}
.y1494_c00001{bottom:810.505587pt;}
.yc1c_c00001{bottom:810.584003pt;}
.y2521_c00001{bottom:811.067067pt;}
.y2202_c00001{bottom:811.307939pt;}
.y1e3_c00001{bottom:811.387067pt;}
.y69e_c00001{bottom:811.387651pt;}
.yfe7_c00001{bottom:811.465587pt;}
.y1075_c00001{bottom:811.466171pt;}
.y6f_c00001{bottom:811.947067pt;}
.y2182_c00001{bottom:812.187067pt;}
.y166c_c00001{bottom:812.267067pt;}
.y60e_c00001{bottom:812.347067pt;}
.y19d6_c00001{bottom:812.426171pt;}
.y19fb_c00001{bottom:812.426755pt;}
.y83f_c00001{bottom:812.907067pt;}
.y1200_c00001{bottom:813.066699pt;}
.y6fc_c00001{bottom:813.147291pt;}
.y1014_c00001{bottom:813.386755pt;}
.y139_c00001{bottom:813.467067pt;}
.yecd_c00001{bottom:813.547067pt;}
.y23c0_c00001{bottom:813.947875pt;}
.y97e_c00001{bottom:814.025867pt;}
.y12fa_c00001{bottom:814.026699pt;}
.ya4b_c00001{bottom:814.027331pt;}
.y110b_c00001{bottom:814.263755pt;}
.y151c_c00001{bottom:814.343915pt;}
.y301_c00001{bottom:814.667067pt;}
.y929_c00001{bottom:814.904267pt;}
.y9a4_c00001{bottom:814.905731pt;}
.y14b3_c00001{bottom:814.987867pt;}
.y1dca_c00001{bottom:815.304499pt;}
.yf29_c00001{bottom:815.387067pt;}
.y560_c00001{bottom:815.467067pt;}
.y139d_c00001{bottom:815.707971pt;}
.yb3d_c00001{bottom:815.784131pt;}
.y1980_c00001{bottom:815.947867pt;}
.y2b_c00001{bottom:816.427067pt;}
.ye65_c00001{bottom:816.667235pt;}
.ye01_c00001{bottom:816.667971pt;}
.yc_c00001{bottom:816.747067pt;}
.yf56_c00001{bottom:816.824867pt;}
.y11a6_c00001{bottom:816.905027pt;}
.yf83_c00001{bottom:817.785451pt;}
.y1226_c00001{bottom:817.865027pt;}
.y1573_c00001{bottom:817.865611pt;}
.y86c_c00001{bottom:817.947067pt;}
.ydc5_c00001{bottom:818.187611pt;}
.y8d7_c00001{bottom:818.265080pt;}
.y527_c00001{bottom:818.428099pt;}
.yfb5_c00001{bottom:818.745451pt;}
.y182d_c00001{bottom:818.825611pt;}
.y2457_c00001{bottom:818.826195pt;}
.y163f_c00001{bottom:819.306931pt;}
.y16e1_c00001{bottom:819.307251pt;}
.y11e2_c00001{bottom:819.466139pt;}
.yd73_c00001{bottom:819.627067pt;}
.y2c6_c00001{bottom:819.867067pt;}
.yd17_c00001{bottom:820.113211pt;}
.yd44_c00001{bottom:820.137787pt;}
.y18b0_c00001{bottom:820.426139pt;}
.y18e2_c00001{bottom:820.426723pt;}
.y501_c00001{bottom:820.427067pt;}
.y6cd_c00001{bottom:820.667067pt;}
.yaf1_c00001{bottom:820.749035pt;}
.y1ec3_c00001{bottom:821.386723pt;}
.y10e6_c00001{bottom:821.387307pt;}
.y22d_c00001{bottom:821.467067pt;}
.y826_c00001{bottom:821.702923pt;}
.y1faa_c00001{bottom:821.947843pt;}
.ya01_c00001{bottom:822.026627pt;}
.y1ee8_c00001{bottom:822.027251pt;}
.y1855_c00001{bottom:822.347307pt;}
.y15ce_c00001{bottom:822.347891pt;}
.y892_c00001{bottom:822.427067pt;}
.y2485_c00001{bottom:822.667067pt;}
.y240d_c00001{bottom:822.667947pt;}
.y947_c00001{bottom:822.905027pt;}
.yb75_c00001{bottom:822.905547pt;}
.yb2d_c00001{bottom:822.906491pt;}
.y13e4_c00001{bottom:822.987835pt;}
.y124c_c00001{bottom:823.304467pt;}
.y21b7_c00001{bottom:823.307891pt;}
.ybfb_c00001{bottom:823.784891pt;}
.y14d5_c00001{bottom:823.947835pt;}
.y142b_c00001{bottom:824.265051pt;}
.y93_c00001{bottom:824.427067pt;}
.y1bb_c00001{bottom:824.907067pt;}
.y9db_c00001{bottom:825.065787pt;}
.yd98_c00001{bottom:825.067067pt;}
.y2143_c00001{bottom:825.627067pt;}
.y1481_c00001{bottom:825.865579pt;}
.y248d_c00001{bottom:825.947067pt;}
.ye36_c00001{bottom:826.027747pt;}
.ycb1_c00001{bottom:826.191035pt;}
.yce2_c00001{bottom:826.218683pt;}
.y2201_c00001{bottom:826.667931pt;}
.yfe6_c00001{bottom:826.745419pt;}
.y34d_c00001{bottom:826.747067pt;}
.y117d_c00001{bottom:826.825579pt;}
.y1533_c00001{bottom:826.826163pt;}
.y1f69_c00001{bottom:826.827067pt;}
.y1bc8_c00001{bottom:827.786163pt;}
.y19fa_c00001{bottom:827.786747pt;}
.y2ae_c00001{bottom:828.107067pt;}
.y1045_c00001{bottom:828.426691pt;}
.y402_c00001{bottom:828.427067pt;}
.y36d_c00001{bottom:828.587067pt;}
.y1fc3_c00001{bottom:828.667067pt;}
.y1013_c00001{bottom:828.746747pt;}
.y5bb_c00001{bottom:829.147067pt;}
.y12b8_c00001{bottom:829.386691pt;}
.ya2_c00001{bottom:829.467067pt;}
.y1158_c00001{bottom:829.623747pt;}
.y56f_c00001{bottom:829.787067pt;}
.y1a23_c00001{bottom:829.947811pt;}
.y241_c00001{bottom:830.187067pt;}
.y192b_c00001{bottom:830.347859pt;}
.y69d_c00001{bottom:830.667067pt;}
.y132a_c00001{bottom:830.667547pt;}
.y900_c00001{bottom:830.905787pt;}
.ya4a_c00001{bottom:830.907251pt;}
.y139c_c00001{bottom:830.987803pt;}
.y197f_c00001{bottom:831.307859pt;}
.y953_c00001{bottom:831.784187pt;}
.yac3_c00001{bottom:831.785651pt;}
.y17a2_c00001{bottom:831.947067pt;}
.ye00_c00001{bottom:831.947803pt;}
.yf55_c00001{bottom:832.184859pt;}
.y1133_c00001{bottom:832.265019pt;}
.y6fb_c00001{bottom:832.426707pt;}
.y1e2_c00001{bottom:832.427067pt;}
.y6e_c00001{bottom:832.907067pt;}
.y300_c00001{bottom:833.067067pt;}
.y1558_c00001{bottom:833.144859pt;}
.y1896_c00001{bottom:833.145443pt;}
.ydc4_c00001{bottom:833.547603pt;}
.y38f_c00001{bottom:833.707067pt;}
.yf28_c00001{bottom:833.787067pt;}
.y83e_c00001{bottom:833.947067pt;}
.yfb4_c00001{bottom:834.105443pt;}
.y2456_c00001{bottom:834.106027pt;}
.y1f27_c00001{bottom:834.267067pt;}
.y138_c00001{bottom:834.427067pt;}
.y163e_c00001{bottom:834.586763pt;}
.y16e0_c00001{bottom:834.587083pt;}
.ye9_c00001{bottom:834.667067pt;}
.y11e1_c00001{bottom:834.826131pt;}
.yc1b_c00001{bottom:835.464683pt;}
.y126e_c00001{bottom:835.786131pt;}
.y1074_c00001{bottom:835.786715pt;}
.y55f_c00001{bottom:836.427067pt;}
.y1fdb_c00001{bottom:836.667067pt;}
.y19d5_c00001{bottom:836.746715pt;}
.y10e5_c00001{bottom:836.747299pt;}
.y1fa9_c00001{bottom:837.307835pt;}
.y1ee7_c00001{bottom:837.387243pt;}
.y2a_c00001{bottom:837.467067pt;}
.y526_c00001{bottom:837.628459pt;}
.y15cd_c00001{bottom:837.707883pt;}
.yd16_c00001{bottom:837.712699pt;}
.yd43_c00001{bottom:837.737275pt;}
.y240c_c00001{bottom:837.947779pt;}
.y14b2_c00001{bottom:838.347827pt;}
.y110a_c00001{bottom:838.584299pt;}
.y2181_c00001{bottom:838.587067pt;}
.y21b6_c00001{bottom:838.667883pt;}
.ya00_c00001{bottom:838.906547pt;}
.y86b_c00001{bottom:838.907067pt;}
.yc49_c00001{bottom:838.908011pt;}
.y14d4_c00001{bottom:839.307827pt;}
.y142a_c00001{bottom:839.544883pt;}
.y928_c00001{bottom:839.784947pt;}
.y9a3_c00001{bottom:839.786411pt;}
.y2520_c00001{bottom:840.027067pt;}
.yc95_c00001{bottom:840.104731pt;}
.yb3c_c00001{bottom:840.584291pt;}
.yd72_c00001{bottom:840.667067pt;}
.y2484_c00001{bottom:840.907067pt;}
.y136c_c00001{bottom:841.145411pt;}
.y6cc_c00001{bottom:841.707067pt;}
.y2200_c00001{bottom:841.947763pt;}
.yfe5_c00001{bottom:842.105411pt;}
.yf82_c00001{bottom:842.105995pt;}
.y22c_c00001{bottom:842.427067pt;}
.ye35_c00001{bottom:842.907667pt;}
.y19b7_c00001{bottom:843.065995pt;}
.y19f9_c00001{bottom:843.066579pt;}
.y8d6_c00001{bottom:843.145760pt;}
.y891_c00001{bottom:843.467067pt;}
.y10a1_c00001{bottom:843.786683pt;}
.ycb0_c00001{bottom:843.870395pt;}
.yce1_c00001{bottom:843.898043pt;}
.y1bde_c00001{bottom:844.026579pt;}
.y12b7_c00001{bottom:844.746683pt;}
.y1786_c00001{bottom:844.983739pt;}
.y92_c00001{bottom:845.467067pt;}
.yaf0_c00001{bottom:845.629715pt;}
.y192a_c00001{bottom:845.707851pt;}
.yb_c00001{bottom:845.947067pt;}
.yd97_c00001{bottom:846.107067pt;}
.y139b_c00001{bottom:846.347795pt;}
.y1854_c00001{bottom:846.667851pt;}
.y248c_c00001{bottom:846.907067pt;}
.y5ba_c00001{bottom:846.987067pt;}
.yeff_c00001{bottom:847.307427pt;}
.ydff_c00001{bottom:847.307795pt;}
.yf54_c00001{bottom:847.544851pt;}
.y8ff_c00001{bottom:847.785707pt;}
.yb74_c00001{bottom:847.786227pt;}
.y2c5_c00001{bottom:847.787067pt;}
.yb2c_c00001{bottom:847.787171pt;}
.y17a1_c00001{bottom:847.867067pt;}
.y18bd_c00001{bottom:848.505435pt;}
.yc74_c00001{bottom:848.583587pt;}
.ybc5_c00001{bottom:848.585051pt;}
.ydc3_c00001{bottom:848.827435pt;}
.y166b_c00001{bottom:849.067067pt;}
.y2455_c00001{bottom:849.466019pt;}
.y401_c00001{bottom:849.467067pt;}
.y36c_c00001{bottom:849.627067pt;}
.y9da_c00001{bottom:849.946467pt;}
.y11e0_c00001{bottom:850.105963pt;}
.ya1_c00001{bottom:850.427067pt;}
.y2ff_c00001{bottom:850.827067pt;}
.y2ad_c00001{bottom:850.987067pt;}
.y1e7e_c00001{bottom:851.065963pt;}
.y1073_c00001{bottom:851.066547pt;}
.y6fa_c00001{bottom:851.627067pt;}
.y1b53_c00001{bottom:852.026547pt;}
.y2142_c00001{bottom:852.027067pt;}
.y10e4_c00001{bottom:852.027131pt;}
.yf27_c00001{bottom:852.187067pt;}
.y1f68_c00001{bottom:852.667827pt;}
.y56e_c00001{bottom:852.747067pt;}
.y1044_c00001{bottom:852.747235pt;}
.y1012_c00001{bottom:852.987131pt;}
.y1ca9_c00001{bottom:852.987715pt;}
.y1a22_c00001{bottom:853.307771pt;}
.y1e1_c00001{bottom:853.387067pt;}
.y12f9_c00001{bottom:853.707235pt;}
.y14b1_c00001{bottom:853.707819pt;}
.y1157_c00001{bottom:853.944291pt;}
.y6d_c00001{bottom:853.947067pt;}
.y1329_c00001{bottom:853.947347pt;}
.y21b5_c00001{bottom:853.947715pt;}
.y14d3_c00001{bottom:854.667819pt;}
.y1429_c00001{bottom:854.904875pt;}
.y83d_c00001{bottom:854.907067pt;}
.y2013_c00001{bottom:854.987067pt;}
.y186e_c00001{bottom:855.067067pt;}
.yd15_c00001{bottom:855.392059pt;}
.yd42_c00001{bottom:855.416635pt;}
.y137_c00001{bottom:855.467067pt;}
.ye8_c00001{bottom:855.707067pt;}
.y97d_c00001{bottom:855.786467pt;}
.y34c_c00001{bottom:855.787067pt;}
.ya49_c00001{bottom:855.787931pt;}
.y1353_c00001{bottom:856.505403pt;}
.y927_c00001{bottom:856.584347pt;}
.y9a2_c00001{bottom:856.585811pt;}
.y525_c00001{bottom:856.907875pt;}
.y21ff_c00001{bottom:857.307755pt;}
.yfe4_c00001{bottom:857.465403pt;}
.yf81_c00001{bottom:857.465987pt;}
.y55e_c00001{bottom:857.467067pt;}
.yfb3_c00001{bottom:858.425987pt;}
.y19f8_c00001{bottom:858.426571pt;}
.y29_c00001{bottom:858.427067pt;}
.y240_c00001{bottom:858.667515pt;}
.y163d_c00001{bottom:858.907307pt;}
.y16df_c00001{bottom:858.907627pt;}
.y10a0_c00001{bottom:859.066515pt;}
.y1bdd_c00001{bottom:859.386571pt;}
.y2483_c00001{bottom:859.467067pt;}
.ye34_c00001{bottom:859.707067pt;}
.y86a_c00001{bottom:859.947067pt;}
.y8d5_c00001{bottom:860.025680pt;}
.y126d_c00001{bottom:860.026515pt;}
.yc1a_c00001{bottom:860.345363pt;}
.y1f26_c00001{bottom:860.667067pt;}
.y23bf_c00001{bottom:860.667795pt;}
.y19d4_c00001{bottom:860.987099pt;}
.y15cc_c00001{bottom:860.987683pt;}
.y251f_c00001{bottom:861.067067pt;}
.ycaf_c00001{bottom:861.469883pt;}
.yce0_c00001{bottom:861.497531pt;}
.y139a_c00001{bottom:861.707787pt;}
.y1853_c00001{bottom:861.947683pt;}
.yaef_c00001{bottom:862.509635pt;}
.y38e_c00001{bottom:862.667067pt;}
.yefe_c00001{bottom:862.667419pt;}
.ydfe_c00001{bottom:862.667787pt;}
.yd71_c00001{bottom:862.747067pt;}
.yf53_c00001{bottom:862.824683pt;}
.y1132_c00001{bottom:862.904843pt;}
.y1fda_c00001{bottom:863.067067pt;}
.y8c7_c00001{bottom:863.307067pt;}
.y328_c00001{bottom:863.467067pt;}
.y9ff_c00001{bottom:863.787227pt;}
.y18bc_c00001{bottom:863.865427pt;}
.ydc2_c00001{bottom:864.187427pt;}
.y890_c00001{bottom:864.427067pt;}
.y825_c00001{bottom:864.584731pt;}
.y946_c00001{bottom:864.585107pt;}
.yb73_c00001{bottom:864.585627pt;}
.yb2b_c00001{bottom:864.586571pt;}
.y2180_c00001{bottom:864.987067pt;}
.yb3b_c00001{bottom:865.464971pt;}
.y11df_c00001{bottom:865.465955pt;}
.y17a0_c00001{bottom:866.267067pt;}
.y1295_c00001{bottom:866.425955pt;}
.y1072_c00001{bottom:866.426539pt;}
.y87_c00001{bottom:866.427067pt;}
.y9d9_c00001{bottom:866.826387pt;}
.y19b6_c00001{bottom:867.386539pt;}
.y10e3_c00001{bottom:867.387123pt;}
.y166a_c00001{bottom:867.467067pt;}
.y248b_c00001{bottom:867.947067pt;}
.y1043_c00001{bottom:868.027067pt;}
.yd96_c00001{bottom:868.187067pt;}
.y13c2_c00001{bottom:868.347123pt;}
.y1ca8_c00001{bottom:868.347707pt;}
.y240b_c00001{bottom:868.667763pt;}
.y12f8_c00001{bottom:868.987067pt;}
.y1929_c00001{bottom:868.987651pt;}
.y151b_c00001{bottom:869.224123pt;}
.y21b4_c00001{bottom:869.307707pt;}
.y5b9_c00001{bottom:869.867067pt;}
.y14d2_c00001{bottom:869.947651pt;}
.y1dc9_c00001{bottom:870.184707pt;}
.y400_c00001{bottom:870.427067pt;}
.y36b_c00001{bottom:870.587067pt;}
.y6cb_c00001{bottom:870.667067pt;}
.y8ba_c00001{bottom:871.307067pt;}
.y22b_c00001{bottom:871.467067pt;}
.y11c6_c00001{bottom:871.865395pt;}
.y8fe_c00001{bottom:872.585867pt;}
.ya48_c00001{bottom:872.587331pt;}
.y21fe_c00001{bottom:872.667747pt;}
.yf80_c00001{bottom:872.745819pt;}
.y1225_c00001{bottom:872.825395pt;}
.y2454_c00001{bottom:872.825979pt;}
.yd14_c00001{bottom:872.991547pt;}
.yd41_c00001{bottom:873.016123pt;}
.yc73_c00001{bottom:873.464267pt;}
.ybc4_c00001{bottom:873.465731pt;}
.y182c_c00001{bottom:873.785979pt;}
.y2fe_c00001{bottom:873.787067pt;}
.y109f_c00001{bottom:874.426507pt;}
.y1bdc_c00001{bottom:874.746563pt;}
.ya_c00001{bottom:874.987067pt;}
.y126c_c00001{bottom:875.386507pt;}
.y1c50_c00001{bottom:875.387091pt;}
.y83c_c00001{bottom:875.947067pt;}
.y1f67_c00001{bottom:875.947627pt;}
.y524_c00001{bottom:876.187291pt;}
.y19d3_c00001{bottom:876.347091pt;}
.y15cb_c00001{bottom:876.347675pt;}
.y136_c00001{bottom:876.427067pt;}
.ye33_c00001{bottom:876.427243pt;}
.ye7_c00001{bottom:876.667067pt;}
.y1a21_c00001{bottom:876.667731pt;}
.y34b_c00001{bottom:876.747067pt;}
.y8d4_c00001{bottom:876.905600pt;}
.y1399_c00001{bottom:876.987619pt;}
.yc19_c00001{bottom:877.144763pt;}
.y1328_c00001{bottom:877.307307pt;}
.y1011_c00001{bottom:877.307675pt;}
.y23f_c00001{bottom:877.867875pt;}
.yefd_c00001{bottom:877.947251pt;}
.ydfd_c00001{bottom:877.947619pt;}
.yf52_c00001{bottom:878.184675pt;}
.y55d_c00001{bottom:878.427067pt;}
.y1428_c00001{bottom:879.145259pt;}
.ycae_c00001{bottom:879.149243pt;}
.ycdf_c00001{bottom:879.176891pt;}
.yaee_c00001{bottom:879.309035pt;}
.y76e_c00001{bottom:879.387067pt;}
.y28_c00001{bottom:879.467067pt;}
.ydc1_c00001{bottom:879.467259pt;}
.y9c1_c00001{bottom:880.586627pt;}
.yc48_c00001{bottom:880.588091pt;}
.y1352_c00001{bottom:880.825947pt;}
.y2012_c00001{bottom:881.387067pt;}
.y926_c00001{bottom:881.465027pt;}
.y9a1_c00001{bottom:881.466491pt;}
.y186d_c00001{bottom:881.467067pt;}
.y1071_c00001{bottom:881.706371pt;}
.yfe3_c00001{bottom:881.785947pt;}
.y19f7_c00001{bottom:881.786531pt;}
.y251e_c00001{bottom:882.027067pt;}
.y16de_c00001{bottom:882.107267pt;}
.y163c_c00001{bottom:882.267267pt;}
.y1e0_c00001{bottom:882.427067pt;}
.yfb2_c00001{bottom:882.746531pt;}
.yc94_c00001{bottom:882.986539pt;}
.y1042_c00001{bottom:883.387059pt;}
.y9d8_c00001{bottom:883.706307pt;}
.y13c1_c00001{bottom:883.707115pt;}
.y1ca7_c00001{bottom:883.707699pt;}
.yd70_c00001{bottom:883.787067pt;}
.y23be_c00001{bottom:883.947595pt;}
.y12f7_c00001{bottom:884.347059pt;}
.y1928_c00001{bottom:884.347643pt;}
.y3f2_c00001{bottom:884.427067pt;}
.y179f_c00001{bottom:884.667067pt;}
.y21b3_c00001{bottom:884.667699pt;}
.y14d1_c00001{bottom:885.307643pt;}
.y88f_c00001{bottom:885.467067pt;}
.y1669_c00001{bottom:885.867067pt;}
.yd95_c00001{bottom:886.587067pt;}
.y1f25_c00001{bottom:887.067067pt;}
.y1109_c00001{bottom:887.145227pt;}
.y86_c00001{bottom:887.467067pt;}
.y21fd_c00001{bottom:887.947579pt;}
.y1a7e_c00001{bottom:888.105227pt;}
.yf7f_c00001{bottom:888.105811pt;}
.yf26_c00001{bottom:888.827067pt;}
.y869_c00001{bottom:888.987067pt;}
.y8fd_c00001{bottom:889.465787pt;}
.yb72_c00001{bottom:889.466307pt;}
.y1fd9_c00001{bottom:889.467067pt;}
.ya47_c00001{bottom:889.467251pt;}
.y109e_c00001{bottom:889.786499pt;}
.yb3a_c00001{bottom:890.345651pt;}
.yd13_c00001{bottom:890.591035pt;}
.yd40_c00001{bottom:890.615611pt;}
.y126b_c00001{bottom:890.746499pt;}
.y10e2_c00001{bottom:890.747083pt;}
.y38d_c00001{bottom:891.149387pt;}
.y217f_c00001{bottom:891.387067pt;}
.y36a_c00001{bottom:891.627067pt;}
.y19b5_c00001{bottom:891.707083pt;}
.y15ca_c00001{bottom:891.707667pt;}
.ye32_c00001{bottom:891.787235pt;}
.y5e8_c00001{bottom:892.267067pt;}
.y1398_c00001{bottom:892.347611pt;}
.y22a_c00001{bottom:892.427067pt;}
.y1010_c00001{bottom:892.667667pt;}
.yefc_c00001{bottom:893.307243pt;}
.ydfc_c00001{bottom:893.307611pt;}
.yf51_c00001{bottom:893.544667pt;}
.y1dc8_c00001{bottom:894.505251pt;}
.ydc0_c00001{bottom:894.827251pt;}
.y523_c00001{bottom:895.387651pt;}
.y9_c00001{bottom:895.947067pt;}
.y124b_c00001{bottom:896.105779pt;}
.ycad_c00001{bottom:896.748731pt;}
.ycde_c00001{bottom:896.776379pt;}
.y83b_c00001{bottom:896.907067pt;}
.y1224_c00001{bottom:897.065779pt;}
.y1070_c00001{bottom:897.066363pt;}
.y23e_c00001{bottom:897.147291pt;}
.yb5f_c00001{bottom:897.386027pt;}
.y970_c00001{bottom:897.466547pt;}
.ye6_c00001{bottom:897.707067pt;}
.y34a_c00001{bottom:897.787067pt;}
.yfb1_c00001{bottom:898.026363pt;}
.yc5f_c00001{bottom:898.344947pt;}
.y9a0_c00001{bottom:898.346411pt;}
.y1041_c00001{bottom:898.747051pt;}
.y1bdb_c00001{bottom:898.986947pt;}
.y6ca_c00001{bottom:899.148683pt;}
.y1f66_c00001{bottom:899.307587pt;}
.y3ff_c00001{bottom:899.467067pt;}
.y19a7_c00001{bottom:899.707051pt;}
.y1927_c00001{bottom:899.707635pt;}
.y1a20_c00001{bottom:899.947531pt;}
.y8b9_c00001{bottom:900.347067pt;}
.y27_c00001{bottom:900.427067pt;}
.y1327_c00001{bottom:900.667267pt;}
.y197e_c00001{bottom:900.667635pt;}
.y8d3_c00001{bottom:901.786280pt;}
.yc18_c00001{bottom:902.025443pt;}
.y1131_c00001{bottom:902.505219pt;}
.y179e_c00001{bottom:903.067067pt;}
.y21fc_c00001{bottom:903.307571pt;}
.y1a7d_c00001{bottom:903.465219pt;}
.yf7e_c00001{bottom:903.465803pt;}
.yaed_c00001{bottom:904.188251pt;}
.y1668_c00001{bottom:904.267067pt;}
.yd6f_c00001{bottom:904.827067pt;}
.yd94_c00001{bottom:904.987067pt;}
.y11ff_c00001{bottom:905.066331pt;}
.y135_c00001{bottom:905.307067pt;}
.y16dd_c00001{bottom:905.387067pt;}
.y3e4_c00001{bottom:905.467067pt;}
.ya89_c00001{bottom:905.467307pt;}
.yc47_c00001{bottom:905.468771pt;}
.y163b_c00001{bottom:905.547067pt;}
.yfe2_c00001{bottom:906.026331pt;}
.y10e1_c00001{bottom:906.026915pt;}
.y925_c00001{bottom:906.345707pt;}
.ya46_c00001{bottom:906.347171pt;}
.y88e_c00001{bottom:906.427067pt;}
.y19d2_c00001{bottom:906.986915pt;}
.y15c9_c00001{bottom:906.987499pt;}
.ye31_c00001{bottom:907.067067pt;}
.y23bd_c00001{bottom:907.307555pt;}
.y824_c00001{bottom:907.544995pt;}
.y1397_c00001{bottom:907.707603pt;}
.y186c_c00001{bottom:907.867067pt;}
.y100f_c00001{bottom:907.947499pt;}
.yd12_c00001{bottom:908.270395pt;}
.yd3f_c00001{bottom:908.294971pt;}
.y4e_c00001{bottom:908.427067pt;}
.y9d7_c00001{bottom:908.586987pt;}
.yefb_c00001{bottom:908.667235pt;}
.ydfb_c00001{bottom:908.667603pt;}
.y868_c00001{bottom:909.947067pt;}
.ydbf_c00001{bottom:910.187243pt;}
.y327_c00001{bottom:910.267067pt;}
.y1df_c00001{bottom:910.427067pt;}
.y38c_c00001{bottom:910.428803pt;}
.y1108_c00001{bottom:911.465771pt;}
.y1708_c00001{bottom:912.425771pt;}
.y18bb_c00001{bottom:912.426355pt;}
.y5e7_c00001{bottom:913.307067pt;}
.yfb0_c00001{bottom:913.386355pt;}
.y229_c00001{bottom:913.467067pt;}
.y1040_c00001{bottom:914.026883pt;}
.y8fc_c00001{bottom:914.346467pt;}
.y1bda_c00001{bottom:914.346939pt;}
.yb71_c00001{bottom:914.346987pt;}
.yc7b_c00001{bottom:914.347931pt;}
.ycac_c00001{bottom:914.348219pt;}
.ycdd_c00001{bottom:914.375867pt;}
.y522_c00001{bottom:914.667067pt;}
.y12b6_c00001{bottom:914.986883pt;}
.y18e1_c00001{bottom:914.987467pt;}
.yb39_c00001{bottom:915.226331pt;}
.yf25_c00001{bottom:915.707067pt;}
.y1fd8_c00001{bottom:915.867067pt;}
.y1852_c00001{bottom:915.947467pt;}
.y23d_c00001{bottom:916.426707pt;}
.y8_c00001{bottom:916.987067pt;}
.yf50_c00001{bottom:917.785051pt;}
.y217e_c00001{bottom:917.787067pt;}
.y151a_c00001{bottom:917.865211pt;}
.y83a_c00001{bottom:917.947067pt;}
.y6c9_c00001{bottom:918.428099pt;}
.y8d2_c00001{bottom:918.585680pt;}
.y21fb_c00001{bottom:918.667563pt;}
.ye5_c00001{bottom:918.747067pt;}
.y1dc7_c00001{bottom:918.825795pt;}
.y106f_c00001{bottom:920.426323pt;}
.y369_c00001{bottom:920.587067pt;}
.yaec_c00001{bottom:921.068171pt;}
.yfe1_c00001{bottom:921.386323pt;}
.y10e0_c00001{bottom:921.386907pt;}
.y26_c00001{bottom:921.467067pt;}
.y1b52_c00001{bottom:922.346907pt;}
.y9fe_c00001{bottom:922.347227pt;}
.yc46_c00001{bottom:922.348691pt;}
.ye30_c00001{bottom:922.587067pt;}
.y1667_c00001{bottom:922.667067pt;}
.y1f65_c00001{bottom:922.667547pt;}
.y1396_c00001{bottom:922.987435pt;}
.y924_c00001{bottom:923.225627pt;}
.y99f_c00001{bottom:923.227091pt;}
.y1a1f_c00001{bottom:923.307491pt;}
.yefa_c00001{bottom:923.947067pt;}
.ydfa_c00001{bottom:923.947435pt;}
.y251d_c00001{bottom:924.107067pt;}
.y9d6_c00001{bottom:925.386387pt;}
.ydbe_c00001{bottom:925.467075pt;}
.yd11_c00001{bottom:925.869883pt;}
.yd3e_c00001{bottom:925.894459pt;}
.yc93_c00001{bottom:925.946803pt;}
.y1107_c00001{bottom:926.745603pt;}
.y1130_c00001{bottom:926.825763pt;}
.yc17_c00001{bottom:926.906123pt;}
.yd6e_c00001{bottom:926.907067pt;}
.yd93_c00001{bottom:927.147067pt;}
.y88d_c00001{bottom:927.467067pt;}
.yf7d_c00001{bottom:927.706187pt;}
.y1a7c_c00001{bottom:927.785763pt;}
.y3fe_c00001{bottom:927.947875pt;}
.y55c_c00001{bottom:928.427067pt;}
.yfaf_c00001{bottom:928.746347pt;}
.y103f_c00001{bottom:929.386875pt;}
.y4d_c00001{bottom:929.467067pt;}
.y38b_c00001{bottom:929.629163pt;}
.y150d_c00001{bottom:930.346875pt;}
.y15c8_c00001{bottom:930.347459pt;}
.y2141_c00001{bottom:930.667515pt;}
.y867_c00001{bottom:930.987067pt;}
.y945_c00001{bottom:931.226387pt;}
.yb70_c00001{bottom:931.226907pt;}
.ya45_c00001{bottom:931.227851pt;}
.y100e_c00001{bottom:931.307459pt;}
.ycab_c00001{bottom:932.027579pt;}
.ycdc_c00001{bottom:932.055227pt;}
.y326_c00001{bottom:933.147067pt;}
.y1de_c00001{bottom:933.307067pt;}
.y21fa_c00001{bottom:933.947395pt;}
.y134_c00001{bottom:934.267067pt;}
.y228_c00001{bottom:934.427067pt;}
.y23c_c00001{bottom:935.627067pt;}
.y11a5_c00001{bottom:935.786315pt;}
.yfe0_c00001{bottom:936.666155pt;}
.y10df_c00001{bottom:936.666739pt;}
.yf24_c00001{bottom:936.667067pt;}
.y1223_c00001{bottom:936.746315pt;}
.y18ba_c00001{bottom:936.746899pt;}
.y6c8_c00001{bottom:937.628459pt;}
.y1b3a_c00001{bottom:937.706899pt;}
.y7_c00001{bottom:937.947067pt;}
.y109d_c00001{bottom:938.347427pt;}
.y368_c00001{bottom:938.427067pt;}
.y839_c00001{bottom:938.907067pt;}
.y8fb_c00001{bottom:939.227147pt;}
.yc45_c00001{bottom:939.228611pt;}
.ydf9_c00001{bottom:939.307427pt;}
.y1326_c00001{bottom:939.867067pt;}
.yb2a_c00001{bottom:940.107011pt;}
.ydbd_c00001{bottom:940.827067pt;}
.y349_c00001{bottom:941.067067pt;}
.yf4f_c00001{bottom:942.105595pt;}
.y1fd7_c00001{bottom:942.267067pt;}
.ya0_c00001{bottom:942.427067pt;}
.y1dc6_c00001{bottom:943.066179pt;}
.y8d1_c00001{bottom:943.466360pt;}
.yd10_c00001{bottom:943.549243pt;}
.yd3d_c00001{bottom:943.573819pt;}
.y217d_c00001{bottom:944.187067pt;}
.y103e_c00001{bottom:944.666707pt;}
.yc16_c00001{bottom:944.746427pt;}
.y106e_c00001{bottom:944.746867pt;}
.y251c_c00001{bottom:945.067067pt;}
.y117c_c00001{bottom:945.706867pt;}
.y15c7_c00001{bottom:945.707451pt;}
.y1f64_c00001{bottom:945.947347pt;}
.yaeb_c00001{bottom:945.948851pt;}
.y100d_c00001{bottom:946.667451pt;}
.y3fd_c00001{bottom:947.148235pt;}
.ye4_c00001{bottom:947.707067pt;}
.yd6d_c00001{bottom:947.947067pt;}
.y923_c00001{bottom:948.106307pt;}
.y99e_c00001{bottom:948.107771pt;}
.yd92_c00001{bottom:948.187067pt;}
.y2494_c00001{bottom:948.507067pt;}
.y38a_c00001{bottom:948.908579pt;}
.y21f9_c00001{bottom:949.307387pt;}
.ycaa_c00001{bottom:949.627067pt;}
.ycdb_c00001{bottom:949.654715pt;}
.y9d5_c00001{bottom:950.267067pt;}
.y25_c00001{bottom:950.427067pt;}
.y823_c00001{bottom:950.505259pt;}
.y112f_c00001{bottom:951.066147pt;}
.y866_c00001{bottom:951.947067pt;}
.yfdf_c00001{bottom:952.026147pt;}
.yf7c_c00001{bottom:952.026731pt;}
.yfae_c00001{bottom:952.986731pt;}
.y109c_c00001{bottom:953.707419pt;}
.y2140_c00001{bottom:953.947315pt;}
.ydf8_c00001{bottom:954.667419pt;}
.yf23_c00001{bottom:955.067067pt;}
.y227_c00001{bottom:955.467067pt;}
.y8fa_c00001{bottom:956.107067pt;}
.yb6f_c00001{bottom:956.107587pt;}
.yc44_c00001{bottom:956.108531pt;}
.y88c_c00001{bottom:956.507067pt;}
.y55b_c00001{bottom:956.907875pt;}
.ydbc_c00001{bottom:957.067067pt;}
.y1325_c00001{bottom:958.267067pt;}
.y1666_c00001{bottom:959.467067pt;}
.y838_c00001{bottom:959.947067pt;}
.y103d_c00001{bottom:960.026699pt;}
.y186b_c00001{bottom:960.667067pt;}
.y1222_c00001{bottom:960.986699pt;}
.y18b9_c00001{bottom:960.987283pt;}
.yd0f_c00001{bottom:961.148731pt;}
.yd3c_c00001{bottom:961.173307pt;}
.y367_c00001{bottom:961.307067pt;}
.y100c_c00001{bottom:961.947283pt;}
.y9f_c00001{bottom:963.467067pt;}
.y21f8_c00001{bottom:964.667379pt;}
.yac2_c00001{bottom:964.987691pt;}
.y251b_c00001{bottom:966.107067pt;}
.yf4e_c00001{bottom:966.426139pt;}
.y3fc_c00001{bottom:966.427651pt;}
.y6_c00001{bottom:966.987067pt;}
.yf7b_c00001{bottom:967.386723pt;}
.y9d4_c00001{bottom:967.867611pt;}
.y389_c00001{bottom:968.187995pt;}
.y8d0_c00001{bottom:968.347040pt;}
.y1fd6_c00001{bottom:968.507067pt;}
.yc92_c00001{bottom:968.907067pt;}
.y106d_c00001{bottom:968.987251pt;}
.y1f63_c00001{bottom:969.307307pt;}
.ydf7_c00001{bottom:969.947251pt;}
.yd91_c00001{bottom:970.347067pt;}
.yaea_c00001{bottom:970.828067pt;}
.y24_c00001{bottom:971.467067pt;}
.yc15_c00001{bottom:971.786507pt;}
.y922_c00001{bottom:972.986987pt;}
.yb6e_c00001{bottom:972.987507pt;}
.y99d_c00001{bottom:972.988451pt;}
.yf22_c00001{bottom:973.467067pt;}
.y103c_c00001{bottom:975.386691pt;}
.ye3_c00001{bottom:976.187291pt;}
.yfde_c00001{bottom:976.346691pt;}
.y18e0_c00001{bottom:976.347275pt;}
.y1324_c00001{bottom:976.667067pt;}
.yfad_c00001{bottom:977.307275pt;}
.y2493_c00001{bottom:977.467067pt;}
.ydbb_c00001{bottom:977.787067pt;}
.yd0e_c00001{bottom:978.748219pt;}
.yd3b_c00001{bottom:978.772795pt;}
.y21f7_c00001{bottom:979.947211pt;}
.y865_c00001{bottom:980.987067pt;}
.y8f9_c00001{bottom:980.987747pt;}
.y284_c00001{bottom:984.347067pt;}
.y106c_c00001{bottom:984.347243pt;}
.y2e4_c00001{bottom:984.427067pt;}
.y1c6_c00001{bottom:984.507067pt;}
.ydf6_c00001{bottom:985.307243pt;}
.y3fb_c00001{bottom:985.707067pt;}
.y88b_c00001{bottom:986.267155pt;}
.y186a_c00001{bottom:987.067067pt;}
.yae9_c00001{bottom:987.627467pt;}
.y837_c00001{bottom:988.987067pt;}
.y9d3_c00001{bottom:989.307339pt;}
.y99c_c00001{bottom:989.787851pt;}
.yf4d_c00001{bottom:990.666523pt;}
.y112e_c00001{bottom:990.746683pt;}
.yd90_c00001{bottom:991.307067pt;}
.y1dc5_c00001{bottom:991.707267pt;}
.yf21_c00001{bottom:991.867067pt;}
.y58e_c00001{bottom:992.347067pt;}
.y23_c00001{bottom:992.507067pt;}
.y1f62_c00001{bottom:992.667267pt;}
.y8cf_c00001{bottom:993.147200pt;}
.y822_c00001{bottom:993.387067pt;}
.ydba_c00001{bottom:994.507067pt;}
.y1fd5_c00001{bottom:994.907067pt;}
.y1323_c00001{bottom:995.067067pt;}
.y21f6_c00001{bottom:995.307203pt;}
.y5_c00001{bottom:995.387651pt;}
.yd0d_c00001{bottom:996.427579pt;}
.yd3a_c00001{bottom:996.452155pt;}
.y8f8_c00001{bottom:997.787147pt;}
.yb6d_c00001{bottom:997.787667pt;}
.y106b_c00001{bottom:999.627075pt;}
.y11a4_c00001{bottom:999.707235pt;}
.ydf5_c00001{bottom:1000.667235pt;}
.y2492_c00001{bottom:1008.267067pt;}
.y836_c00001{bottom:1008.347067pt;}
.y864_c00001{bottom:1010.747067pt;}
.yd8f_c00001{bottom:1012.347067pt;}
.y226_c00001{bottom:1013.307067pt;}
.y22_c00001{bottom:1013.467067pt;}
.yd0c_c00001{bottom:1014.027067pt;}
.yd39_c00001{bottom:1014.051643pt;}
.yb6c_c00001{bottom:1014.587067pt;}
.y4_c00001{bottom:1014.667067pt;}
.yf4c_c00001{bottom:1014.987067pt;}
.ydf4_c00001{bottom:1015.947067pt;}
.yca8_c00001{bottom:1042.347067pt;}
.y2_c00001{bottom:1045.387067pt;}
.yca7_c00001{bottom:1060.747067pt;}
.y1_c00001{bottom:1063.227067pt;}
.h6_c00001{height:30.324375pt;}
.h15_c00001{height:33.918750pt;}
.h1_c00001{height:46.890469pt;}
.h53_c00001{height:46.897093pt;}
.h47_c00001{height:47.016553pt;}
.h46_c00001{height:47.017961pt;}
.h45_c00001{height:47.020266pt;}
.h44_c00001{height:47.020767pt;}
.h32_c00001{height:47.020937pt;}
.h3c_c00001{height:50.769218pt;}
.h3_c00001{height:51.382969pt;}
.h34_c00001{height:51.525937pt;}
.h3a_c00001{height:51.540721pt;}
.h3d_c00001{height:51.553937pt;}
.h3e_c00001{height:51.555025pt;}
.h3b_c00001{height:51.556881pt;}
.h38_c00001{height:51.559697pt;}
.h39_c00001{height:51.563601pt;}
.h35_c00001{height:51.566417pt;}
.h36_c00001{height:51.567175pt;}
.h3f_c00001{height:51.572177pt;}
.h9_c00001{height:52.422344pt;}
.h12_c00001{height:52.448437pt;}
.h10_c00001{height:53.857500pt;}
.h41_c00001{height:53.910000pt;}
.h58_c00001{height:55.485563pt;}
.h48_c00001{height:55.736250pt;}
.h4e_c00001{height:55.756602pt;}
.h4d_c00001{height:55.758266pt;}
.h4b_c00001{height:55.763994pt;}
.h50_c00001{height:55.770234pt;}
.h52_c00001{height:55.770970pt;}
.h4f_c00001{height:55.771034pt;}
.h4c_c00001{height:55.776858pt;}
.h51_c00001{height:55.780570pt;}
.h49_c00001{height:56.153167pt;}
.h59_c00001{height:56.153818pt;}
.h57_c00001{height:56.154106pt;}
.h54_c00001{height:56.155290pt;}
.h55_c00001{height:56.155546pt;}
.h2_c00001{height:56.156250pt;}
.hd_c00001{height:56.156783pt;}
.h1c_c00001{height:56.312500pt;}
.h37_c00001{height:57.444844pt;}
.h17_c00001{height:57.473437pt;}
.h33_c00001{height:59.017500pt;}
.hf_c00001{height:59.399374pt;}
.hb_c00001{height:59.402606pt;}
.h4_c00001{height:59.409070pt;}
.h11_c00001{height:59.409614pt;}
.he_c00001{height:59.410510pt;}
.h42_c00001{height:61.920000pt;}
.h7_c00001{height:62.781250pt;}
.h24_c00001{height:62.811828pt;}
.h13_c00001{height:62.812500pt;}
.h1a_c00001{height:62.813033pt;}
.h2e_c00001{height:62.813716pt;}
.h23_c00001{height:63.290945pt;}
.h1d_c00001{height:63.296033pt;}
.h2c_c00001{height:63.297046pt;}
.h2a_c00001{height:63.297408pt;}
.h28_c00001{height:63.297953pt;}
.h20_c00001{height:63.298305pt;}
.h22_c00001{height:63.298848pt;}
.h26_c00001{height:63.299211pt;}
.h25_c00001{height:63.299745pt;}
.h21_c00001{height:63.300278pt;}
.h1e_c00001{height:63.302080pt;}
.h2b_c00001{height:63.302976pt;}
.h2d_c00001{height:63.303520pt;}
.h27_c00001{height:63.304054pt;}
.h1f_c00001{height:63.304416pt;}
.h29_c00001{height:63.304950pt;}
.h18_c00001{height:63.305345pt;}
.h5_c00001{height:64.500000pt;}
.h43_c00001{height:66.750000pt;}
.ha_c00001{height:66.783373pt;}
.h8_c00001{height:66.783906pt;}
.hc_c00001{height:66.784440pt;}
.h19_c00001{height:66.887812pt;}
.h1b_c00001{height:71.209779pt;}
.h14_c00001{height:71.210312pt;}
.h16_c00001{height:71.210846pt;}
.h4a_c00001{height:72.332500pt;}
.h31_c00001{height:75.142500pt;}
.h30_c00001{height:86.107500pt;}
.h56_c00001{height:108.009797pt;}
.h40_c00001{height:131.124844pt;}
.h2f_c00001{height:150.607500pt;}
.h0_c00001{height:1122.666667pt;}
.w1_c00001{width:793.333333pt;}
.w0_c00001{width:793.626667pt;}
.x0_c00001{left:0.000000pt;}
.x2_c00001{left:113.440000pt;}
.x6b_c00001{left:114.560000pt;}
.xb_c00001{left:117.280000pt;}
.x5e_c00001{left:118.560000pt;}
.x95_c00001{left:123.601920pt;}
.x67_c00001{left:127.120000pt;}
.x46_c00001{left:132.320000pt;}
.x73_c00001{left:137.440000pt;}
.x88_c00001{left:140.080000pt;}
.x1a_c00001{left:141.520000pt;}
.x8c_c00001{left:144.960000pt;}
.x68_c00001{left:146.000000pt;}
.x6f_c00001{left:149.438296pt;}
.x4_c00001{left:160.640000pt;}
.x55_c00001{left:162.320000pt;}
.x4d_c00001{left:163.440000pt;}
.x78_c00001{left:165.039088pt;}
.x89_c00001{left:166.320000pt;}
.x38_c00001{left:170.160000pt;}
.x75_c00001{left:173.439640pt;}
.x4a_c00001{left:179.920000pt;}
.x65_c00001{left:183.120000pt;}
.x61_c00001{left:188.000000pt;}
.x3_c00001{left:189.040000pt;}
.x69_c00001{left:191.920000pt;}
.x56_c00001{left:193.200440pt;}
.x5f_c00001{left:194.240392pt;}
.x74_c00001{left:197.439664pt;}
.x51_c00001{left:202.240000pt;}
.x11_c00001{left:204.080000pt;}
.x6d_c00001{left:205.600000pt;}
.x58_c00001{left:206.960000pt;}
.x9_c00001{left:208.559360pt;}
.x16_c00001{left:211.520328pt;}
.x23_c00001{left:217.440000pt;}
.x2a_c00001{left:222.160000pt;}
.x49_c00001{left:224.718904pt;}
.xe_c00001{left:226.880000pt;}
.x59_c00001{left:231.200000pt;}
.x7_c00001{left:236.320000pt;}
.x66_c00001{left:239.360000pt;}
.x94_c00001{left:241.440000pt;}
.x96_c00001{left:242.402984pt;}
.x63_c00001{left:244.320000pt;}
.x37_c00001{left:246.480000pt;}
.x4f_c00001{left:248.559824pt;}
.x30_c00001{left:251.600000pt;}
.x4b_c00001{left:252.959120pt;}
.x15_c00001{left:257.520144pt;}
.x13_c00001{left:260.800000pt;}
.x3c_c00001{left:262.240000pt;}
.x1_c00001{left:266.240000pt;}
.x53_c00001{left:270.880000pt;}
.x21_c00001{left:274.320000pt;}
.x19_c00001{left:276.720000pt;}
.x8a_c00001{left:278.160000pt;}
.x20_c00001{left:280.640000pt;}
.x48_c00001{left:284.720000pt;}
.x44_c00001{left:287.360000pt;}
.x2e_c00001{left:290.240000pt;}
.x18_c00001{left:293.600000pt;}
.x17_c00001{left:301.040000pt;}
.x42_c00001{left:304.640000pt;}
.x40_c00001{left:306.480000pt;}
.x27_c00001{left:309.120000pt;}
.x6c_c00001{left:310.080000pt;}
.x7c_c00001{left:312.239512pt;}
.x6_c00001{left:313.920000pt;}
.x1e_c00001{left:315.600000pt;}
.x60_c00001{left:316.640000pt;}
.x64_c00001{left:317.760000pt;}
.x79_c00001{left:320.479960pt;}
.x10_c00001{left:323.280000pt;}
.xc_c00001{left:324.560000pt;}
.x82_c00001{left:327.359464pt;}
.x43_c00001{left:329.360000pt;}
.x7b_c00001{left:331.200024pt;}
.x25_c00001{left:335.520000pt;}
.x1c_c00001{left:337.520000pt;}
.x5c_c00001{left:341.520000pt;}
.x81_c00001{left:345.999336pt;}
.x6a_c00001{left:350.160000pt;}
.x3e_c00001{left:354.160000pt;}
.x5b_c00001{left:357.440000pt;}
.x14_c00001{left:363.120000pt;}
.x47_c00001{left:364.960000pt;}
.x45_c00001{left:366.640000pt;}
.x3a_c00001{left:368.480000pt;}
.x7a_c00001{left:369.919976pt;}
.x50_c00001{left:372.960000pt;}
.x5d_c00001{left:374.640000pt;}
.x77_c00001{left:376.640000pt;}
.x24_c00001{left:377.600000pt;}
.x31_c00001{left:380.960000pt;}
.x4e_c00001{left:383.440000pt;}
.x57_c00001{left:386.320000pt;}
.x1f_c00001{left:387.840000pt;}
.x3b_c00001{left:390.640000pt;}
.xa_c00001{left:393.520000pt;}
.x70_c00001{left:394.560000pt;}
.xd_c00001{left:396.880000pt;}
.x71_c00001{left:398.160000pt;}
.x32_c00001{left:401.040000pt;}
.x52_c00001{left:402.960000pt;}
.xf_c00001{left:404.000000pt;}
.x76_c00001{left:408.880000pt;}
.x1d_c00001{left:420.480000pt;}
.x29_c00001{left:422.480000pt;}
.x2b_c00001{left:424.640000pt;}
.x72_c00001{left:430.880000pt;}
.x8b_c00001{left:442.000000pt;}
.x8_c00001{left:451.040000pt;}
.x2c_c00001{left:470.960000pt;}
.x26_c00001{left:488.320000pt;}
.x80_c00001{left:497.600000pt;}
.x8e_c00001{left:504.879984pt;}
.x4c_c00001{left:506.960000pt;}
.x22_c00001{left:515.600000pt;}
.x90_c00001{left:519.678856pt;}
.x87_c00001{left:521.919808pt;}
.x62_c00001{left:523.120000pt;}
.x7e_c00001{left:527.599784pt;}
.x3d_c00001{left:529.200000pt;}
.x39_c00001{left:530.320000pt;}
.x84_c00001{left:533.919760pt;}
.x28_c00001{left:540.160000pt;}
.x5_c00001{left:552.560000pt;}
.x5a_c00001{left:555.200000pt;}
.x12_c00001{left:556.720000pt;}
.x92_c00001{left:558.880224pt;}
.x6e_c00001{left:562.480000pt;}
.x54_c00001{left:564.880000pt;}
.x8f_c00001{left:565.919152pt;}
.x7d_c00001{left:567.120000pt;}
.x1b_c00001{left:570.320000pt;}
.x86_c00001{left:576.559536pt;}
.x85_c00001{left:578.800008pt;}
.x35_c00001{left:589.040000pt;}
.x34_c00001{left:597.120000pt;}
.x91_c00001{left:603.039912pt;}
.x2f_c00001{left:604.720000pt;}
.x7f_c00001{left:617.519264pt;}
.x33_c00001{left:619.360000pt;}
.x2d_c00001{left:625.040000pt;}
.x83_c00001{left:633.199256pt;}
.x36_c00001{left:642.720000pt;}
.x41_c00001{left:645.280000pt;}
.x93_c00001{left:648.320000pt;}
.x3f_c00001{left:679.040000pt;}
.x8d_c00001{left:680.399656pt;}
}





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

.ir_c02000:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02000;src:url('chunks/assets/font_04771124c63492c47400bf40.woff2')format("woff");}.ff1_c02000{font-family:ff1_c02000;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02000;src:url('chunks/assets/font_9ca03355ca776cddd2119678.woff2')format("woff");}.ff2_c02000{font-family:ff2_c02000;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_c02000;src:url('chunks/assets/font_3d0ff8df659b4bd2478f9ef5.woff2')format("woff");}.ff3_c02000{font-family:ff3_c02000;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_c02000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02000{vertical-align:0.000000px;}
.ls12_c02000{letter-spacing:-0.100800px;}
.ls13_c02000{letter-spacing:-0.028800px;}
.ls10_c02000{letter-spacing:-0.014400px;}
.ls11_c02000{letter-spacing:-0.007200px;}
.lsf_c02000{letter-spacing:0.000000px;}
.ls8_c02000{letter-spacing:0.007200px;}
.ls7_c02000{letter-spacing:0.014400px;}
.lsa_c02000{letter-spacing:0.021600px;}
.ls1_c02000{letter-spacing:0.028800px;}
.ls2_c02000{letter-spacing:0.036000px;}
.ls6_c02000{letter-spacing:0.043200px;}
.ls3_c02000{letter-spacing:0.050400px;}
.ls9_c02000{letter-spacing:0.057600px;}
.lse_c02000{letter-spacing:0.060120px;}
.ls5_c02000{letter-spacing:0.064800px;}
.ls4_c02000{letter-spacing:0.072000px;}
.lsc_c02000{letter-spacing:0.079200px;}
.lsb_c02000{letter-spacing:0.086400px;}
.lsd_c02000{letter-spacing:0.093600px;}
.ls0_c02000{letter-spacing:2424.960000px;}
.sc__c02000{text-shadow:none;}
.sc0_c02000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02000{-webkit-text-stroke:0px transparent;}
.sc0_c02000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws21_c02000{word-spacing:-0.151200px;}
.ws7_c02000{word-spacing:-0.136800px;}
.ws4_c02000{word-spacing:-0.093600px;}
.ws15_c02000{word-spacing:-0.057600px;}
.ws8_c02000{word-spacing:-0.036000px;}
.ws22_c02000{word-spacing:-0.021600px;}
.ws2d_c02000{word-spacing:-0.014400px;}
.ws2e_c02000{word-spacing:-0.007200px;}
.ws1_c02000{word-spacing:0.000000px;}
.ws0_c02000{word-spacing:0.030060px;}
.ws24_c02000{word-spacing:0.244800px;}
.ws23_c02000{word-spacing:0.302400px;}
.ws25_c02000{word-spacing:0.964800px;}
.ws26_c02000{word-spacing:1.044000px;}
.ws1e_c02000{word-spacing:1.296000px;}
.ws1d_c02000{word-spacing:1.360800px;}
.ws17_c02000{word-spacing:1.951200px;}
.ws16_c02000{word-spacing:1.972800px;}
.ws3e_c02000{word-spacing:2.059200px;}
.ws18_c02000{word-spacing:2.116800px;}
.ws9_c02000{word-spacing:2.397600px;}
.ws19_c02000{word-spacing:2.412000px;}
.wsa_c02000{word-spacing:2.491200px;}
.ws1a_c02000{word-spacing:2.505600px;}
.wsf_c02000{word-spacing:4.377600px;}
.wse_c02000{word-spacing:4.550400px;}
.wsd_c02000{word-spacing:4.608000px;}
.ws2b_c02000{word-spacing:5.306400px;}
.ws2c_c02000{word-spacing:5.320800px;}
.ws2a_c02000{word-spacing:5.724000px;}
.ws29_c02000{word-spacing:5.745600px;}
.wsb_c02000{word-spacing:5.997600px;}
.wsc_c02000{word-spacing:6.076800px;}
.ws2f_c02000{word-spacing:6.739200px;}
.ws30_c02000{word-spacing:6.818400px;}
.ws11_c02000{word-spacing:7.048800px;}
.ws12_c02000{word-spacing:7.178400px;}
.ws31_c02000{word-spacing:7.185600px;}
.ws10_c02000{word-spacing:7.192800px;}
.ws32_c02000{word-spacing:7.207200px;}
.ws3c_c02000{word-spacing:8.503200px;}
.ws3d_c02000{word-spacing:8.589600px;}
.ws46_c02000{word-spacing:10.036800px;}
.ws45_c02000{word-spacing:10.044000px;}
.ws34_c02000{word-spacing:10.375200px;}
.ws33_c02000{word-spacing:10.382400px;}
.ws3f_c02000{word-spacing:10.526400px;}
.ws40_c02000{word-spacing:10.807200px;}
.ws41_c02000{word-spacing:10.944000px;}
.ws13_c02000{word-spacing:11.066400px;}
.ws14_c02000{word-spacing:11.181600px;}
.ws3b_c02000{word-spacing:12.412800px;}
.ws3a_c02000{word-spacing:12.556800px;}
.ws43_c02000{word-spacing:12.895200px;}
.ws44_c02000{word-spacing:12.938400px;}
.ws35_c02000{word-spacing:13.132800px;}
.ws37_c02000{word-spacing:13.190400px;}
.ws36_c02000{word-spacing:13.240800px;}
.ws6_c02000{word-spacing:13.629600px;}
.ws5_c02000{word-spacing:13.687200px;}
.ws47_c02000{word-spacing:16.567200px;}
.ws48_c02000{word-spacing:16.588800px;}
.ws27_c02000{word-spacing:17.128800px;}
.ws28_c02000{word-spacing:17.258400px;}
.ws38_c02000{word-spacing:17.452800px;}
.ws1f_c02000{word-spacing:17.539200px;}
.ws20_c02000{word-spacing:17.575200px;}
.ws39_c02000{word-spacing:17.740800px;}
.ws2_c02000{word-spacing:17.863200px;}
.ws3_c02000{word-spacing:17.942400px;}
.ws1b_c02000{word-spacing:22.953600px;}
.ws1c_c02000{word-spacing:22.996800px;}
.ws42_c02000{word-spacing:23.299200px;}
._0_c02000{margin-left:-1.310616px;}
.fc0_c02000{color:rgb(0,0,0);}
.fs0_c02000{font-size:60.120000px;}
.fs1_c02000{font-size:72.000000px;}
.y0_c02000{bottom:0.000000px;}
.y2_c02000{bottom:57.360450px;}
.y2a_c02000{bottom:137.550450px;}
.y29_c02000{bottom:161.220450px;}
.y28_c02000{bottom:193.800450px;}
.y27_c02000{bottom:217.470450px;}
.y26_c02000{bottom:241.140450px;}
.y25_c02000{bottom:273.720450px;}
.y24_c02000{bottom:297.390450px;}
.y23_c02000{bottom:320.970450px;}
.y22_c02000{bottom:344.640450px;}
.y21_c02000{bottom:368.220450px;}
.y20_c02000{bottom:391.890450px;}
.y1f_c02000{bottom:415.470450px;}
.y1e_c02000{bottom:439.140450px;}
.y1d_c02000{bottom:462.810450px;}
.y1c_c02000{bottom:486.390450px;}
.y1b_c02000{bottom:519.060450px;}
.y1a_c02000{bottom:551.460450px;}
.y19_c02000{bottom:584.310450px;}
.y18_c02000{bottom:616.890450px;}
.y17_c02000{bottom:640.560450px;}
.y16_c02000{bottom:664.230450px;}
.y15_c02000{bottom:687.810450px;}
.y14_c02000{bottom:711.480450px;}
.y13_c02000{bottom:735.060450px;}
.y12_c02000{bottom:767.730450px;}
.y11_c02000{bottom:791.310450px;}
.y10_c02000{bottom:814.980450px;}
.yf_c02000{bottom:838.560450px;}
.ye_c02000{bottom:862.230450px;}
.yd_c02000{bottom:885.900450px;}
.yc_c02000{bottom:918.480450px;}
.yb_c02000{bottom:942.150450px;}
.ya_c02000{bottom:965.730450px;}
.y9_c02000{bottom:989.400450px;}
.y8_c02000{bottom:1012.980450px;}
.y7_c02000{bottom:1036.650450px;}
.y6_c02000{bottom:1060.230450px;}
.y5_c02000{bottom:1083.900450px;}
.y4_c02000{bottom:1116.570450px;}
.y3_c02000{bottom:1140.150450px;}
.y1_c02000{bottom:1196.130450px;}
.h1_c02000{height:60.589687px;}
.h2_c02000{height:63.175781px;}
.h3_c02000{height:72.562500px;}
.h0_c02000{height:1263.000000px;}
.w1_c02000{width:892.500000px;}
.w0_c02000{width:892.830000px;}
.x0_c02000{left:0.000000px;}
.x2_c02000{left:127.620000px;}
.x1_c02000{left:159.930000px;}
.x3_c02000{left:180.720000px;}
@media print{
.v0_c02000{vertical-align:0.000000pt;}
.ls12_c02000{letter-spacing:-0.089600pt;}
.ls13_c02000{letter-spacing:-0.025600pt;}
.ls10_c02000{letter-spacing:-0.012800pt;}
.ls11_c02000{letter-spacing:-0.006400pt;}
.lsf_c02000{letter-spacing:0.000000pt;}
.ls8_c02000{letter-spacing:0.006400pt;}
.ls7_c02000{letter-spacing:0.012800pt;}
.lsa_c02000{letter-spacing:0.019200pt;}
.ls1_c02000{letter-spacing:0.025600pt;}
.ls2_c02000{letter-spacing:0.032000pt;}
.ls6_c02000{letter-spacing:0.038400pt;}
.ls3_c02000{letter-spacing:0.044800pt;}
.ls9_c02000{letter-spacing:0.051200pt;}
.lse_c02000{letter-spacing:0.053440pt;}
.ls5_c02000{letter-spacing:0.057600pt;}
.ls4_c02000{letter-spacing:0.064000pt;}
.lsc_c02000{letter-spacing:0.070400pt;}
.lsb_c02000{letter-spacing:0.076800pt;}
.lsd_c02000{letter-spacing:0.083200pt;}
.ls0_c02000{letter-spacing:2155.520000pt;}
.ws21_c02000{word-spacing:-0.134400pt;}
.ws7_c02000{word-spacing:-0.121600pt;}
.ws4_c02000{word-spacing:-0.083200pt;}
.ws15_c02000{word-spacing:-0.051200pt;}
.ws8_c02000{word-spacing:-0.032000pt;}
.ws22_c02000{word-spacing:-0.019200pt;}
.ws2d_c02000{word-spacing:-0.012800pt;}
.ws2e_c02000{word-spacing:-0.006400pt;}
.ws1_c02000{word-spacing:0.000000pt;}
.ws0_c02000{word-spacing:0.026720pt;}
.ws24_c02000{word-spacing:0.217600pt;}
.ws23_c02000{word-spacing:0.268800pt;}
.ws25_c02000{word-spacing:0.857600pt;}
.ws26_c02000{word-spacing:0.928000pt;}
.ws1e_c02000{word-spacing:1.152000pt;}
.ws1d_c02000{word-spacing:1.209600pt;}
.ws17_c02000{word-spacing:1.734400pt;}
.ws16_c02000{word-spacing:1.753600pt;}
.ws3e_c02000{word-spacing:1.830400pt;}
.ws18_c02000{word-spacing:1.881600pt;}
.ws9_c02000{word-spacing:2.131200pt;}
.ws19_c02000{word-spacing:2.144000pt;}
.wsa_c02000{word-spacing:2.214400pt;}
.ws1a_c02000{word-spacing:2.227200pt;}
.wsf_c02000{word-spacing:3.891200pt;}
.wse_c02000{word-spacing:4.044800pt;}
.wsd_c02000{word-spacing:4.096000pt;}
.ws2b_c02000{word-spacing:4.716800pt;}
.ws2c_c02000{word-spacing:4.729600pt;}
.ws2a_c02000{word-spacing:5.088000pt;}
.ws29_c02000{word-spacing:5.107200pt;}
.wsb_c02000{word-spacing:5.331200pt;}
.wsc_c02000{word-spacing:5.401600pt;}
.ws2f_c02000{word-spacing:5.990400pt;}
.ws30_c02000{word-spacing:6.060800pt;}
.ws11_c02000{word-spacing:6.265600pt;}
.ws12_c02000{word-spacing:6.380800pt;}
.ws31_c02000{word-spacing:6.387200pt;}
.ws10_c02000{word-spacing:6.393600pt;}
.ws32_c02000{word-spacing:6.406400pt;}
.ws3c_c02000{word-spacing:7.558400pt;}
.ws3d_c02000{word-spacing:7.635200pt;}
.ws46_c02000{word-spacing:8.921600pt;}
.ws45_c02000{word-spacing:8.928000pt;}
.ws34_c02000{word-spacing:9.222400pt;}
.ws33_c02000{word-spacing:9.228800pt;}
.ws3f_c02000{word-spacing:9.356800pt;}
.ws40_c02000{word-spacing:9.606400pt;}
.ws41_c02000{word-spacing:9.728000pt;}
.ws13_c02000{word-spacing:9.836800pt;}
.ws14_c02000{word-spacing:9.939200pt;}
.ws3b_c02000{word-spacing:11.033600pt;}
.ws3a_c02000{word-spacing:11.161600pt;}
.ws43_c02000{word-spacing:11.462400pt;}
.ws44_c02000{word-spacing:11.500800pt;}
.ws35_c02000{word-spacing:11.673600pt;}
.ws37_c02000{word-spacing:11.724800pt;}
.ws36_c02000{word-spacing:11.769600pt;}
.ws6_c02000{word-spacing:12.115200pt;}
.ws5_c02000{word-spacing:12.166400pt;}
.ws47_c02000{word-spacing:14.726400pt;}
.ws48_c02000{word-spacing:14.745600pt;}
.ws27_c02000{word-spacing:15.225600pt;}
.ws28_c02000{word-spacing:15.340800pt;}
.ws38_c02000{word-spacing:15.513600pt;}
.ws1f_c02000{word-spacing:15.590400pt;}
.ws20_c02000{word-spacing:15.622400pt;}
.ws39_c02000{word-spacing:15.769600pt;}
.ws2_c02000{word-spacing:15.878400pt;}
.ws3_c02000{word-spacing:15.948800pt;}
.ws1b_c02000{word-spacing:20.403200pt;}
.ws1c_c02000{word-spacing:20.441600pt;}
.ws42_c02000{word-spacing:20.710400pt;}
._0_c02000{margin-left:-1.164992pt;}
.fs0_c02000{font-size:53.440000pt;}
.fs1_c02000{font-size:64.000000pt;}
.y0_c02000{bottom:0.000000pt;}
.y2_c02000{bottom:50.987067pt;}
.y2a_c02000{bottom:122.267067pt;}
.y29_c02000{bottom:143.307067pt;}
.y28_c02000{bottom:172.267067pt;}
.y27_c02000{bottom:193.307067pt;}
.y26_c02000{bottom:214.347067pt;}
.y25_c02000{bottom:243.307067pt;}
.y24_c02000{bottom:264.347067pt;}
.y23_c02000{bottom:285.307067pt;}
.y22_c02000{bottom:306.347067pt;}
.y21_c02000{bottom:327.307067pt;}
.y20_c02000{bottom:348.347067pt;}
.y1f_c02000{bottom:369.307067pt;}
.y1e_c02000{bottom:390.347067pt;}
.y1d_c02000{bottom:411.387067pt;}
.y1c_c02000{bottom:432.347067pt;}
.y1b_c02000{bottom:461.387067pt;}
.y1a_c02000{bottom:490.187067pt;}
.y19_c02000{bottom:519.387067pt;}
.y18_c02000{bottom:548.347067pt;}
.y17_c02000{bottom:569.387067pt;}
.y16_c02000{bottom:590.427067pt;}
.y15_c02000{bottom:611.387067pt;}
.y14_c02000{bottom:632.427067pt;}
.y13_c02000{bottom:653.387067pt;}
.y12_c02000{bottom:682.427067pt;}
.y11_c02000{bottom:703.387067pt;}
.y10_c02000{bottom:724.427067pt;}
.yf_c02000{bottom:745.387067pt;}
.ye_c02000{bottom:766.427067pt;}
.yd_c02000{bottom:787.467067pt;}
.yc_c02000{bottom:816.427067pt;}
.yb_c02000{bottom:837.467067pt;}
.ya_c02000{bottom:858.427067pt;}
.y9_c02000{bottom:879.467067pt;}
.y8_c02000{bottom:900.427067pt;}
.y7_c02000{bottom:921.467067pt;}
.y6_c02000{bottom:942.427067pt;}
.y5_c02000{bottom:963.467067pt;}
.y4_c02000{bottom:992.507067pt;}
.y3_c02000{bottom:1013.467067pt;}
.y1_c02000{bottom:1063.227067pt;}
.h1_c02000{height:53.857500pt;}
.h2_c02000{height:56.156250pt;}
.h3_c02000{height:64.500000pt;}
.h0_c02000{height:1122.666667pt;}
.w1_c02000{width:793.333333pt;}
.w0_c02000{width:793.626667pt;}
.x0_c02000{left:0.000000pt;}
.x2_c02000{left:113.440000pt;}
.x1_c02000{left:142.160000pt;}
.x3_c02000{left:160.640000pt;}
}





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

.ir_c02001:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02001;src:url('chunks/assets/font_749ac6c29938b9f22ca6acd5.woff2')format("woff");}.ff1_c02001{font-family:ff1_c02001;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02001;src:url('chunks/assets/font_9a08fe23618400a558e5714c.woff2')format("woff");}.ff2_c02001{font-family:ff2_c02001;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_c02001;src:url('chunks/assets/font_c603243770abd2df83d6bf6e.woff2')format("woff");}.ff3_c02001{font-family:ff3_c02001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02001;src:url('chunks/assets/font_a57922a1f3168dcc04108cff.woff2')format("woff");}.ff4_c02001{font-family:ff4_c02001;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02001{vertical-align:0.000000px;}
.ls14_c02001{letter-spacing:-0.036000px;}
.ls12_c02001{letter-spacing:-0.028800px;}
.ls15_c02001{letter-spacing:-0.014400px;}
.ls13_c02001{letter-spacing:-0.007200px;}
.ls11_c02001{letter-spacing:0.000000px;}
.ls8_c02001{letter-spacing:0.007200px;}
.lsb_c02001{letter-spacing:0.014400px;}
.ls6_c02001{letter-spacing:0.021600px;}
.ls7_c02001{letter-spacing:0.028800px;}
.ls3_c02001{letter-spacing:0.036000px;}
.lsa_c02001{letter-spacing:0.043200px;}
.lse_c02001{letter-spacing:0.050400px;}
.ls9_c02001{letter-spacing:0.057600px;}
.ls10_c02001{letter-spacing:0.060120px;}
.ls1_c02001{letter-spacing:0.064800px;}
.ls4_c02001{letter-spacing:0.072000px;}
.lsf_c02001{letter-spacing:0.079200px;}
.lsd_c02001{letter-spacing:0.086400px;}
.ls5_c02001{letter-spacing:0.093600px;}
.ls2_c02001{letter-spacing:0.108000px;}
.lsc_c02001{letter-spacing:0.115200px;}
.ls0_c02001{letter-spacing:2424.960000px;}
.sc__c02001{text-shadow:none;}
.sc0_c02001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02001{-webkit-text-stroke:0px transparent;}
.sc0_c02001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws31_c02001{word-spacing:-0.208800px;}
.ws30_c02001{word-spacing:-0.165600px;}
.ws2f_c02001{word-spacing:-0.158400px;}
.ws32_c02001{word-spacing:-0.122400px;}
.ws20_c02001{word-spacing:-0.115200px;}
.ws41_c02001{word-spacing:-0.093600px;}
.ws33_c02001{word-spacing:-0.086400px;}
.ws37_c02001{word-spacing:-0.079200px;}
.ws4_c02001{word-spacing:-0.036000px;}
.wsc_c02001{word-spacing:-0.028800px;}
.ws21_c02001{word-spacing:-0.007200px;}
.ws1_c02001{word-spacing:0.000000px;}
.ws0_c02001{word-spacing:0.030060px;}
.ws3_c02001{word-spacing:0.158400px;}
.ws2_c02001{word-spacing:0.201600px;}
.ws25_c02001{word-spacing:0.885600px;}
.wsd_c02001{word-spacing:1.015200px;}
.ws24_c02001{word-spacing:1.065600px;}
.ws28_c02001{word-spacing:1.202400px;}
.ws2b_c02001{word-spacing:1.663200px;}
.ws2c_c02001{word-spacing:1.699200px;}
.ws22_c02001{word-spacing:1.706400px;}
.ws23_c02001{word-spacing:1.735200px;}
.ws1f_c02001{word-spacing:2.008800px;}
.ws1e_c02001{word-spacing:2.124000px;}
.ws15_c02001{word-spacing:2.476800px;}
.ws1c_c02001{word-spacing:4.233600px;}
.ws1d_c02001{word-spacing:4.262400px;}
.ws17_c02001{word-spacing:4.550400px;}
.ws16_c02001{word-spacing:4.644000px;}
.ws36_c02001{word-spacing:4.917600px;}
.ws34_c02001{word-spacing:4.953600px;}
.ws35_c02001{word-spacing:5.004000px;}
.ws11_c02001{word-spacing:5.234400px;}
.ws10_c02001{word-spacing:5.299200px;}
.ws12_c02001{word-spacing:5.428800px;}
.ws2a_c02001{word-spacing:5.630400px;}
.ws29_c02001{word-spacing:5.731200px;}
.ws43_c02001{word-spacing:6.048000px;}
.ws42_c02001{word-spacing:6.112800px;}
.ws3a_c02001{word-spacing:6.120000px;}
.ws3b_c02001{word-spacing:6.148800px;}
.ws5_c02001{word-spacing:7.509600px;}
.ws48_c02001{word-spacing:8.546400px;}
.ws46_c02001{word-spacing:9.878400px;}
.ws45_c02001{word-spacing:10.065600px;}
.ws47_c02001{word-spacing:10.072800px;}
.ws19_c02001{word-spacing:10.310400px;}
.ws18_c02001{word-spacing:10.432800px;}
.ws2d_c02001{word-spacing:10.663200px;}
.ws2e_c02001{word-spacing:10.807200px;}
.wsf_c02001{word-spacing:11.354400px;}
.wse_c02001{word-spacing:11.419200px;}
.ws26_c02001{word-spacing:11.851200px;}
.ws27_c02001{word-spacing:11.887200px;}
.ws40_c02001{word-spacing:13.953600px;}
.ws3f_c02001{word-spacing:13.989600px;}
.ws3d_c02001{word-spacing:17.452800px;}
.ws3c_c02001{word-spacing:17.560800px;}
.ws3e_c02001{word-spacing:17.604000px;}
.ws13_c02001{word-spacing:19.324800px;}
.ws14_c02001{word-spacing:19.432800px;}
.ws1b_c02001{word-spacing:19.706400px;}
.ws1a_c02001{word-spacing:19.785600px;}
.ws8_c02001{word-spacing:21.808800px;}
.ws9_c02001{word-spacing:21.938400px;}
.wsa_c02001{word-spacing:28.368000px;}
.wsb_c02001{word-spacing:28.411200px;}
.ws6_c02001{word-spacing:31.132800px;}
.ws7_c02001{word-spacing:31.298400px;}
.ws44_c02001{word-spacing:32.731200px;}
.ws39_c02001{word-spacing:38.059200px;}
.ws38_c02001{word-spacing:38.080800px;}
._0_c02001{margin-left:-1.310616px;}
.fc0_c02001{color:rgb(0,0,0);}
.fs0_c02001{font-size:60.120000px;}
.fs1_c02001{font-size:72.000000px;}
.y0_c02001{bottom:0.000000px;}
.y2_c02001{bottom:57.360450px;}
.y2b_c02001{bottom:113.970450px;}
.y2a_c02001{bottom:137.550450px;}
.y29_c02001{bottom:161.220450px;}
.y28_c02001{bottom:184.800450px;}
.y27_c02001{bottom:217.470450px;}
.y26_c02001{bottom:241.140450px;}
.y25_c02001{bottom:264.720450px;}
.y24_c02001{bottom:288.390450px;}
.y23_c02001{bottom:311.970450px;}
.y22_c02001{bottom:344.640450px;}
.y21_c02001{bottom:368.220450px;}
.y20_c02001{bottom:391.890450px;}
.y1f_c02001{bottom:424.470450px;}
.y1e_c02001{bottom:448.140450px;}
.y1d_c02001{bottom:471.810450px;}
.y1c_c02001{bottom:495.390450px;}
.y1b_c02001{bottom:519.060450px;}
.y1a_c02001{bottom:542.640450px;}
.y19_c02001{bottom:566.310450px;}
.y18_c02001{bottom:589.890450px;}
.y17_c02001{bottom:622.560450px;}
.y16_c02001{bottom:655.050450px;}
.y15_c02001{bottom:687.810450px;}
.y14_c02001{bottom:720.480450px;}
.y13_c02001{bottom:744.060450px;}
.y12_c02001{bottom:767.730450px;}
.y11_c02001{bottom:791.310450px;}
.y10_c02001{bottom:814.980450px;}
.yf_c02001{bottom:838.560450px;}
.ye_c02001{bottom:862.230450px;}
.yd_c02001{bottom:885.900450px;}
.yc_c02001{bottom:909.480450px;}
.yb_c02001{bottom:933.150450px;}
.ya_c02001{bottom:956.730450px;}
.y9_c02001{bottom:989.400450px;}
.y8_c02001{bottom:1012.980450px;}
.y7_c02001{bottom:1036.650450px;}
.y6_c02001{bottom:1060.230450px;}
.y5_c02001{bottom:1083.900450px;}
.y4_c02001{bottom:1116.570450px;}
.y3_c02001{bottom:1140.150450px;}
.y1_c02001{bottom:1196.130450px;}
.h1_c02001{height:63.175781px;}
.h3_c02001{height:63.351562px;}
.h2_c02001{height:72.562500px;}
.h0_c02001{height:1263.000000px;}
.w1_c02001{width:892.500000px;}
.w0_c02001{width:892.830000px;}
.x0_c02001{left:0.000000px;}
.x1_c02001{left:127.620000px;}
.x2_c02001{left:180.720000px;}
@media print{
.v0_c02001{vertical-align:0.000000pt;}
.ls14_c02001{letter-spacing:-0.032000pt;}
.ls12_c02001{letter-spacing:-0.025600pt;}
.ls15_c02001{letter-spacing:-0.012800pt;}
.ls13_c02001{letter-spacing:-0.006400pt;}
.ls11_c02001{letter-spacing:0.000000pt;}
.ls8_c02001{letter-spacing:0.006400pt;}
.lsb_c02001{letter-spacing:0.012800pt;}
.ls6_c02001{letter-spacing:0.019200pt;}
.ls7_c02001{letter-spacing:0.025600pt;}
.ls3_c02001{letter-spacing:0.032000pt;}
.lsa_c02001{letter-spacing:0.038400pt;}
.lse_c02001{letter-spacing:0.044800pt;}
.ls9_c02001{letter-spacing:0.051200pt;}
.ls10_c02001{letter-spacing:0.053440pt;}
.ls1_c02001{letter-spacing:0.057600pt;}
.ls4_c02001{letter-spacing:0.064000pt;}
.lsf_c02001{letter-spacing:0.070400pt;}
.lsd_c02001{letter-spacing:0.076800pt;}
.ls5_c02001{letter-spacing:0.083200pt;}
.ls2_c02001{letter-spacing:0.096000pt;}
.lsc_c02001{letter-spacing:0.102400pt;}
.ls0_c02001{letter-spacing:2155.520000pt;}
.ws31_c02001{word-spacing:-0.185600pt;}
.ws30_c02001{word-spacing:-0.147200pt;}
.ws2f_c02001{word-spacing:-0.140800pt;}
.ws32_c02001{word-spacing:-0.108800pt;}
.ws20_c02001{word-spacing:-0.102400pt;}
.ws41_c02001{word-spacing:-0.083200pt;}
.ws33_c02001{word-spacing:-0.076800pt;}
.ws37_c02001{word-spacing:-0.070400pt;}
.ws4_c02001{word-spacing:-0.032000pt;}
.wsc_c02001{word-spacing:-0.025600pt;}
.ws21_c02001{word-spacing:-0.006400pt;}
.ws1_c02001{word-spacing:0.000000pt;}
.ws0_c02001{word-spacing:0.026720pt;}
.ws3_c02001{word-spacing:0.140800pt;}
.ws2_c02001{word-spacing:0.179200pt;}
.ws25_c02001{word-spacing:0.787200pt;}
.wsd_c02001{word-spacing:0.902400pt;}
.ws24_c02001{word-spacing:0.947200pt;}
.ws28_c02001{word-spacing:1.068800pt;}
.ws2b_c02001{word-spacing:1.478400pt;}
.ws2c_c02001{word-spacing:1.510400pt;}
.ws22_c02001{word-spacing:1.516800pt;}
.ws23_c02001{word-spacing:1.542400pt;}
.ws1f_c02001{word-spacing:1.785600pt;}
.ws1e_c02001{word-spacing:1.888000pt;}
.ws15_c02001{word-spacing:2.201600pt;}
.ws1c_c02001{word-spacing:3.763200pt;}
.ws1d_c02001{word-spacing:3.788800pt;}
.ws17_c02001{word-spacing:4.044800pt;}
.ws16_c02001{word-spacing:4.128000pt;}
.ws36_c02001{word-spacing:4.371200pt;}
.ws34_c02001{word-spacing:4.403200pt;}
.ws35_c02001{word-spacing:4.448000pt;}
.ws11_c02001{word-spacing:4.652800pt;}
.ws10_c02001{word-spacing:4.710400pt;}
.ws12_c02001{word-spacing:4.825600pt;}
.ws2a_c02001{word-spacing:5.004800pt;}
.ws29_c02001{word-spacing:5.094400pt;}
.ws43_c02001{word-spacing:5.376000pt;}
.ws42_c02001{word-spacing:5.433600pt;}
.ws3a_c02001{word-spacing:5.440000pt;}
.ws3b_c02001{word-spacing:5.465600pt;}
.ws5_c02001{word-spacing:6.675200pt;}
.ws48_c02001{word-spacing:7.596800pt;}
.ws46_c02001{word-spacing:8.780800pt;}
.ws45_c02001{word-spacing:8.947200pt;}
.ws47_c02001{word-spacing:8.953600pt;}
.ws19_c02001{word-spacing:9.164800pt;}
.ws18_c02001{word-spacing:9.273600pt;}
.ws2d_c02001{word-spacing:9.478400pt;}
.ws2e_c02001{word-spacing:9.606400pt;}
.wsf_c02001{word-spacing:10.092800pt;}
.wse_c02001{word-spacing:10.150400pt;}
.ws26_c02001{word-spacing:10.534400pt;}
.ws27_c02001{word-spacing:10.566400pt;}
.ws40_c02001{word-spacing:12.403200pt;}
.ws3f_c02001{word-spacing:12.435200pt;}
.ws3d_c02001{word-spacing:15.513600pt;}
.ws3c_c02001{word-spacing:15.609600pt;}
.ws3e_c02001{word-spacing:15.648000pt;}
.ws13_c02001{word-spacing:17.177600pt;}
.ws14_c02001{word-spacing:17.273600pt;}
.ws1b_c02001{word-spacing:17.516800pt;}
.ws1a_c02001{word-spacing:17.587200pt;}
.ws8_c02001{word-spacing:19.385600pt;}
.ws9_c02001{word-spacing:19.500800pt;}
.wsa_c02001{word-spacing:25.216000pt;}
.wsb_c02001{word-spacing:25.254400pt;}
.ws6_c02001{word-spacing:27.673600pt;}
.ws7_c02001{word-spacing:27.820800pt;}
.ws44_c02001{word-spacing:29.094400pt;}
.ws39_c02001{word-spacing:33.830400pt;}
.ws38_c02001{word-spacing:33.849600pt;}
._0_c02001{margin-left:-1.164992pt;}
.fs0_c02001{font-size:53.440000pt;}
.fs1_c02001{font-size:64.000000pt;}
.y0_c02001{bottom:0.000000pt;}
.y2_c02001{bottom:50.987067pt;}
.y2b_c02001{bottom:101.307067pt;}
.y2a_c02001{bottom:122.267067pt;}
.y29_c02001{bottom:143.307067pt;}
.y28_c02001{bottom:164.267067pt;}
.y27_c02001{bottom:193.307067pt;}
.y26_c02001{bottom:214.347067pt;}
.y25_c02001{bottom:235.307067pt;}
.y24_c02001{bottom:256.347067pt;}
.y23_c02001{bottom:277.307067pt;}
.y22_c02001{bottom:306.347067pt;}
.y21_c02001{bottom:327.307067pt;}
.y20_c02001{bottom:348.347067pt;}
.y1f_c02001{bottom:377.307067pt;}
.y1e_c02001{bottom:398.347067pt;}
.y1d_c02001{bottom:419.387067pt;}
.y1c_c02001{bottom:440.347067pt;}
.y1b_c02001{bottom:461.387067pt;}
.y1a_c02001{bottom:482.347067pt;}
.y19_c02001{bottom:503.387067pt;}
.y18_c02001{bottom:524.347067pt;}
.y17_c02001{bottom:553.387067pt;}
.y16_c02001{bottom:582.267067pt;}
.y15_c02001{bottom:611.387067pt;}
.y14_c02001{bottom:640.427067pt;}
.y13_c02001{bottom:661.387067pt;}
.y12_c02001{bottom:682.427067pt;}
.y11_c02001{bottom:703.387067pt;}
.y10_c02001{bottom:724.427067pt;}
.yf_c02001{bottom:745.387067pt;}
.ye_c02001{bottom:766.427067pt;}
.yd_c02001{bottom:787.467067pt;}
.yc_c02001{bottom:808.427067pt;}
.yb_c02001{bottom:829.467067pt;}
.ya_c02001{bottom:850.427067pt;}
.y9_c02001{bottom:879.467067pt;}
.y8_c02001{bottom:900.427067pt;}
.y7_c02001{bottom:921.467067pt;}
.y6_c02001{bottom:942.427067pt;}
.y5_c02001{bottom:963.467067pt;}
.y4_c02001{bottom:992.507067pt;}
.y3_c02001{bottom:1013.467067pt;}
.y1_c02001{bottom:1063.227067pt;}
.h1_c02001{height:56.156250pt;}
.h3_c02001{height:56.312500pt;}
.h2_c02001{height:64.500000pt;}
.h0_c02001{height:1122.666667pt;}
.w1_c02001{width:793.333333pt;}
.w0_c02001{width:793.626667pt;}
.x0_c02001{left:0.000000pt;}
.x1_c02001{left:113.440000pt;}
.x2_c02001{left:160.640000pt;}
}





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

.ir_c02002:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02002;src:url('chunks/assets/font_45fbf1dc79c0cfe6ec198866.woff2')format("woff");}.ff1_c02002{font-family:ff1_c02002;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02002;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2_c02002{font-family:ff2_c02002;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02002;src:url('chunks/assets/font_fd416cc2dabd811e47b9005a.woff2')format("woff");}.ff3_c02002{font-family:ff3_c02002;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02002{vertical-align:0.000000px;}
.ls11_c02002{letter-spacing:-0.093600px;}
.ls14_c02002{letter-spacing:-0.036000px;}
.ls10_c02002{letter-spacing:-0.028800px;}
.ls13_c02002{letter-spacing:-0.021600px;}
.ls12_c02002{letter-spacing:-0.014400px;}
.ls15_c02002{letter-spacing:-0.007200px;}
.lsf_c02002{letter-spacing:0.000000px;}
.ls6_c02002{letter-spacing:0.007200px;}
.ls3_c02002{letter-spacing:0.014400px;}
.ls2_c02002{letter-spacing:0.021600px;}
.ls8_c02002{letter-spacing:0.028800px;}
.ls4_c02002{letter-spacing:0.036000px;}
.ls1_c02002{letter-spacing:0.043200px;}
.ls5_c02002{letter-spacing:0.050400px;}
.ls9_c02002{letter-spacing:0.057600px;}
.lse_c02002{letter-spacing:0.060120px;}
.ls7_c02002{letter-spacing:0.064800px;}
.lsa_c02002{letter-spacing:0.072000px;}
.lsd_c02002{letter-spacing:0.079200px;}
.lsb_c02002{letter-spacing:0.086400px;}
.lsc_c02002{letter-spacing:0.093600px;}
.ls0_c02002{letter-spacing:2424.960000px;}
.sc__c02002{text-shadow:none;}
.sc0_c02002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02002{-webkit-text-stroke:0px transparent;}
.sc0_c02002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2a_c02002{word-spacing:-0.136800px;}
.ws9_c02002{word-spacing:-0.122400px;}
.ws34_c02002{word-spacing:-0.115200px;}
.ws20_c02002{word-spacing:-0.050400px;}
.ws55_c02002{word-spacing:-0.028800px;}
.ws43_c02002{word-spacing:-0.021600px;}
.wsb_c02002{word-spacing:-0.014400px;}
.ws54_c02002{word-spacing:-0.007200px;}
.ws1_c02002{word-spacing:0.000000px;}
.wsa_c02002{word-spacing:0.021600px;}
.ws0_c02002{word-spacing:0.030060px;}
.ws3d_c02002{word-spacing:0.748800px;}
.ws29_c02002{word-spacing:0.979200px;}
.ws3c_c02002{word-spacing:1.022400px;}
.ws28_c02002{word-spacing:1.051200px;}
.ws27_c02002{word-spacing:1.065600px;}
.ws3e_c02002{word-spacing:1.072800px;}
.ws41_c02002{word-spacing:1.281600px;}
.ws42_c02002{word-spacing:1.303200px;}
.ws40_c02002{word-spacing:1.699200px;}
.ws3f_c02002{word-spacing:1.713600px;}
.ws18_c02002{word-spacing:1.980000px;}
.ws19_c02002{word-spacing:2.253600px;}
.ws1f_c02002{word-spacing:2.966400px;}
.ws2d_c02002{word-spacing:3.117600px;}
.ws2e_c02002{word-spacing:3.153600px;}
.ws1d_c02002{word-spacing:3.189600px;}
.ws1e_c02002{word-spacing:3.254400px;}
.ws15_c02002{word-spacing:3.924000px;}
.ws39_c02002{word-spacing:3.931200px;}
.ws3a_c02002{word-spacing:3.960000px;}
.ws4e_c02002{word-spacing:4.838400px;}
.ws4d_c02002{word-spacing:4.845600px;}
.ws4c_c02002{word-spacing:4.910400px;}
.ws4f_c02002{word-spacing:4.996800px;}
.wse_c02002{word-spacing:5.004000px;}
.wsd_c02002{word-spacing:5.248800px;}
.ws31_c02002{word-spacing:5.270400px;}
.ws2f_c02002{word-spacing:5.364000px;}
.ws38_c02002{word-spacing:5.371200px;}
.wsc_c02002{word-spacing:5.385600px;}
.ws30_c02002{word-spacing:5.392800px;}
.ws1b_c02002{word-spacing:5.493600px;}
.ws1c_c02002{word-spacing:5.601600px;}
.ws1a_c02002{word-spacing:5.680800px;}
.ws35_c02002{word-spacing:7.048800px;}
.ws37_c02002{word-spacing:7.084800px;}
.ws36_c02002{word-spacing:7.236000px;}
.ws23_c02002{word-spacing:7.444800px;}
.ws2_c02002{word-spacing:7.459200px;}
.ws24_c02002{word-spacing:7.495200px;}
.ws3_c02002{word-spacing:7.567200px;}
.ws49_c02002{word-spacing:8.172000px;}
.ws48_c02002{word-spacing:8.193600px;}
.ws45_c02002{word-spacing:8.474400px;}
.ws4_c02002{word-spacing:8.568000px;}
.ws44_c02002{word-spacing:8.575200px;}
.ws5_c02002{word-spacing:8.625600px;}
.ws2c_c02002{word-spacing:9.921600px;}
.ws2b_c02002{word-spacing:10.015200px;}
.ws17_c02002{word-spacing:10.267200px;}
.ws16_c02002{word-spacing:10.440000px;}
.ws13_c02002{word-spacing:10.756800px;}
.ws14_c02002{word-spacing:10.792800px;}
.ws52_c02002{word-spacing:11.347200px;}
.ws3b_c02002{word-spacing:11.484000px;}
.ws53_c02002{word-spacing:11.491200px;}
.ws33_c02002{word-spacing:12.196800px;}
.ws32_c02002{word-spacing:12.232800px;}
.ws25_c02002{word-spacing:12.261600px;}
.ws26_c02002{word-spacing:12.276000px;}
.ws7_c02002{word-spacing:12.924000px;}
.ws6_c02002{word-spacing:12.945600px;}
.ws22_c02002{word-spacing:13.118400px;}
.ws21_c02002{word-spacing:13.305600px;}
.wsf_c02002{word-spacing:14.997600px;}
.ws10_c02002{word-spacing:15.105600px;}
.ws12_c02002{word-spacing:20.397600px;}
.ws11_c02002{word-spacing:20.520000px;}
.ws8_c02002{word-spacing:21.549600px;}
.ws47_c02002{word-spacing:22.269600px;}
.ws46_c02002{word-spacing:22.298400px;}
.ws51_c02002{word-spacing:26.791200px;}
.ws50_c02002{word-spacing:26.985600px;}
.ws4b_c02002{word-spacing:33.372000px;}
.ws4a_c02002{word-spacing:33.472800px;}
._0_c02002{margin-left:-1.310616px;}
.fc0_c02002{color:rgb(0,0,0);}
.fs0_c02002{font-size:60.120000px;}
.fs1_c02002{font-size:72.000000px;}
.y0_c02002{bottom:0.000000px;}
.y2_c02002{bottom:57.360450px;}
.y2c_c02002{bottom:126.300450px;}
.y2b_c02002{bottom:149.970450px;}
.y2a_c02002{bottom:173.550450px;}
.y29_c02002{bottom:197.220450px;}
.y28_c02002{bottom:220.800450px;}
.y27_c02002{bottom:244.470450px;}
.y26_c02002{bottom:268.140450px;}
.y25_c02002{bottom:291.720450px;}
.y24_c02002{bottom:324.390450px;}
.y23_c02002{bottom:347.970450px;}
.y22_c02002{bottom:371.640450px;}
.y21_c02002{bottom:395.220450px;}
.y20_c02002{bottom:418.890450px;}
.y1f_c02002{bottom:442.470450px;}
.y1e_c02002{bottom:466.140450px;}
.y1d_c02002{bottom:489.810450px;}
.y1c_c02002{bottom:522.390450px;}
.y1b_c02002{bottom:546.060450px;}
.y1a_c02002{bottom:569.640450px;}
.y19_c02002{bottom:593.310450px;}
.y18_c02002{bottom:616.890450px;}
.y17_c02002{bottom:649.560450px;}
.y16_c02002{bottom:673.230450px;}
.y15_c02002{bottom:696.810450px;}
.y14_c02002{bottom:720.480450px;}
.y13_c02002{bottom:744.060450px;}
.y12_c02002{bottom:767.730450px;}
.y11_c02002{bottom:800.310450px;}
.y10_c02002{bottom:823.980450px;}
.yf_c02002{bottom:847.560450px;}
.ye_c02002{bottom:871.230450px;}
.yd_c02002{bottom:894.900450px;}
.yc_c02002{bottom:918.480450px;}
.yb_c02002{bottom:942.150450px;}
.ya_c02002{bottom:965.730450px;}
.y9_c02002{bottom:989.400450px;}
.y8_c02002{bottom:1012.980450px;}
.y7_c02002{bottom:1045.650450px;}
.y6_c02002{bottom:1069.230450px;}
.y5_c02002{bottom:1092.900450px;}
.y4_c02002{bottom:1116.570450px;}
.y3_c02002{bottom:1140.150450px;}
.y1_c02002{bottom:1196.130450px;}
.h1_c02002{height:60.589687px;}
.h2_c02002{height:63.175781px;}
.h3_c02002{height:63.351562px;}
.h0_c02002{height:1263.000000px;}
.w1_c02002{width:892.500000px;}
.w0_c02002{width:892.830000px;}
.x0_c02002{left:0.000000px;}
.x2_c02002{left:127.620000px;}
.x1_c02002{left:159.930000px;}
.x3_c02002{left:180.720000px;}
@media print{
.v0_c02002{vertical-align:0.000000pt;}
.ls11_c02002{letter-spacing:-0.083200pt;}
.ls14_c02002{letter-spacing:-0.032000pt;}
.ls10_c02002{letter-spacing:-0.025600pt;}
.ls13_c02002{letter-spacing:-0.019200pt;}
.ls12_c02002{letter-spacing:-0.012800pt;}
.ls15_c02002{letter-spacing:-0.006400pt;}
.lsf_c02002{letter-spacing:0.000000pt;}
.ls6_c02002{letter-spacing:0.006400pt;}
.ls3_c02002{letter-spacing:0.012800pt;}
.ls2_c02002{letter-spacing:0.019200pt;}
.ls8_c02002{letter-spacing:0.025600pt;}
.ls4_c02002{letter-spacing:0.032000pt;}
.ls1_c02002{letter-spacing:0.038400pt;}
.ls5_c02002{letter-spacing:0.044800pt;}
.ls9_c02002{letter-spacing:0.051200pt;}
.lse_c02002{letter-spacing:0.053440pt;}
.ls7_c02002{letter-spacing:0.057600pt;}
.lsa_c02002{letter-spacing:0.064000pt;}
.lsd_c02002{letter-spacing:0.070400pt;}
.lsb_c02002{letter-spacing:0.076800pt;}
.lsc_c02002{letter-spacing:0.083200pt;}
.ls0_c02002{letter-spacing:2155.520000pt;}
.ws2a_c02002{word-spacing:-0.121600pt;}
.ws9_c02002{word-spacing:-0.108800pt;}
.ws34_c02002{word-spacing:-0.102400pt;}
.ws20_c02002{word-spacing:-0.044800pt;}
.ws55_c02002{word-spacing:-0.025600pt;}
.ws43_c02002{word-spacing:-0.019200pt;}
.wsb_c02002{word-spacing:-0.012800pt;}
.ws54_c02002{word-spacing:-0.006400pt;}
.ws1_c02002{word-spacing:0.000000pt;}
.wsa_c02002{word-spacing:0.019200pt;}
.ws0_c02002{word-spacing:0.026720pt;}
.ws3d_c02002{word-spacing:0.665600pt;}
.ws29_c02002{word-spacing:0.870400pt;}
.ws3c_c02002{word-spacing:0.908800pt;}
.ws28_c02002{word-spacing:0.934400pt;}
.ws27_c02002{word-spacing:0.947200pt;}
.ws3e_c02002{word-spacing:0.953600pt;}
.ws41_c02002{word-spacing:1.139200pt;}
.ws42_c02002{word-spacing:1.158400pt;}
.ws40_c02002{word-spacing:1.510400pt;}
.ws3f_c02002{word-spacing:1.523200pt;}
.ws18_c02002{word-spacing:1.760000pt;}
.ws19_c02002{word-spacing:2.003200pt;}
.ws1f_c02002{word-spacing:2.636800pt;}
.ws2d_c02002{word-spacing:2.771200pt;}
.ws2e_c02002{word-spacing:2.803200pt;}
.ws1d_c02002{word-spacing:2.835200pt;}
.ws1e_c02002{word-spacing:2.892800pt;}
.ws15_c02002{word-spacing:3.488000pt;}
.ws39_c02002{word-spacing:3.494400pt;}
.ws3a_c02002{word-spacing:3.520000pt;}
.ws4e_c02002{word-spacing:4.300800pt;}
.ws4d_c02002{word-spacing:4.307200pt;}
.ws4c_c02002{word-spacing:4.364800pt;}
.ws4f_c02002{word-spacing:4.441600pt;}
.wse_c02002{word-spacing:4.448000pt;}
.wsd_c02002{word-spacing:4.665600pt;}
.ws31_c02002{word-spacing:4.684800pt;}
.ws2f_c02002{word-spacing:4.768000pt;}
.ws38_c02002{word-spacing:4.774400pt;}
.wsc_c02002{word-spacing:4.787200pt;}
.ws30_c02002{word-spacing:4.793600pt;}
.ws1b_c02002{word-spacing:4.883200pt;}
.ws1c_c02002{word-spacing:4.979200pt;}
.ws1a_c02002{word-spacing:5.049600pt;}
.ws35_c02002{word-spacing:6.265600pt;}
.ws37_c02002{word-spacing:6.297600pt;}
.ws36_c02002{word-spacing:6.432000pt;}
.ws23_c02002{word-spacing:6.617600pt;}
.ws2_c02002{word-spacing:6.630400pt;}
.ws24_c02002{word-spacing:6.662400pt;}
.ws3_c02002{word-spacing:6.726400pt;}
.ws49_c02002{word-spacing:7.264000pt;}
.ws48_c02002{word-spacing:7.283200pt;}
.ws45_c02002{word-spacing:7.532800pt;}
.ws4_c02002{word-spacing:7.616000pt;}
.ws44_c02002{word-spacing:7.622400pt;}
.ws5_c02002{word-spacing:7.667200pt;}
.ws2c_c02002{word-spacing:8.819200pt;}
.ws2b_c02002{word-spacing:8.902400pt;}
.ws17_c02002{word-spacing:9.126400pt;}
.ws16_c02002{word-spacing:9.280000pt;}
.ws13_c02002{word-spacing:9.561600pt;}
.ws14_c02002{word-spacing:9.593600pt;}
.ws52_c02002{word-spacing:10.086400pt;}
.ws3b_c02002{word-spacing:10.208000pt;}
.ws53_c02002{word-spacing:10.214400pt;}
.ws33_c02002{word-spacing:10.841600pt;}
.ws32_c02002{word-spacing:10.873600pt;}
.ws25_c02002{word-spacing:10.899200pt;}
.ws26_c02002{word-spacing:10.912000pt;}
.ws7_c02002{word-spacing:11.488000pt;}
.ws6_c02002{word-spacing:11.507200pt;}
.ws22_c02002{word-spacing:11.660800pt;}
.ws21_c02002{word-spacing:11.827200pt;}
.wsf_c02002{word-spacing:13.331200pt;}
.ws10_c02002{word-spacing:13.427200pt;}
.ws12_c02002{word-spacing:18.131200pt;}
.ws11_c02002{word-spacing:18.240000pt;}
.ws8_c02002{word-spacing:19.155200pt;}
.ws47_c02002{word-spacing:19.795200pt;}
.ws46_c02002{word-spacing:19.820800pt;}
.ws51_c02002{word-spacing:23.814400pt;}
.ws50_c02002{word-spacing:23.987200pt;}
.ws4b_c02002{word-spacing:29.664000pt;}
.ws4a_c02002{word-spacing:29.753600pt;}
._0_c02002{margin-left:-1.164992pt;}
.fs0_c02002{font-size:53.440000pt;}
.fs1_c02002{font-size:64.000000pt;}
.y0_c02002{bottom:0.000000pt;}
.y2_c02002{bottom:50.987067pt;}
.y2c_c02002{bottom:112.267067pt;}
.y2b_c02002{bottom:133.307067pt;}
.y2a_c02002{bottom:154.267067pt;}
.y29_c02002{bottom:175.307067pt;}
.y28_c02002{bottom:196.267067pt;}
.y27_c02002{bottom:217.307067pt;}
.y26_c02002{bottom:238.347067pt;}
.y25_c02002{bottom:259.307067pt;}
.y24_c02002{bottom:288.347067pt;}
.y23_c02002{bottom:309.307067pt;}
.y22_c02002{bottom:330.347067pt;}
.y21_c02002{bottom:351.307067pt;}
.y20_c02002{bottom:372.347067pt;}
.y1f_c02002{bottom:393.307067pt;}
.y1e_c02002{bottom:414.347067pt;}
.y1d_c02002{bottom:435.387067pt;}
.y1c_c02002{bottom:464.347067pt;}
.y1b_c02002{bottom:485.387067pt;}
.y1a_c02002{bottom:506.347067pt;}
.y19_c02002{bottom:527.387067pt;}
.y18_c02002{bottom:548.347067pt;}
.y17_c02002{bottom:577.387067pt;}
.y16_c02002{bottom:598.427067pt;}
.y15_c02002{bottom:619.387067pt;}
.y14_c02002{bottom:640.427067pt;}
.y13_c02002{bottom:661.387067pt;}
.y12_c02002{bottom:682.427067pt;}
.y11_c02002{bottom:711.387067pt;}
.y10_c02002{bottom:732.427067pt;}
.yf_c02002{bottom:753.387067pt;}
.ye_c02002{bottom:774.427067pt;}
.yd_c02002{bottom:795.467067pt;}
.yc_c02002{bottom:816.427067pt;}
.yb_c02002{bottom:837.467067pt;}
.ya_c02002{bottom:858.427067pt;}
.y9_c02002{bottom:879.467067pt;}
.y8_c02002{bottom:900.427067pt;}
.y7_c02002{bottom:929.467067pt;}
.y6_c02002{bottom:950.427067pt;}
.y5_c02002{bottom:971.467067pt;}
.y4_c02002{bottom:992.507067pt;}
.y3_c02002{bottom:1013.467067pt;}
.y1_c02002{bottom:1063.227067pt;}
.h1_c02002{height:53.857500pt;}
.h2_c02002{height:56.156250pt;}
.h3_c02002{height:56.312500pt;}
.h0_c02002{height:1122.666667pt;}
.w1_c02002{width:793.333333pt;}
.w0_c02002{width:793.626667pt;}
.x0_c02002{left:0.000000pt;}
.x2_c02002{left:113.440000pt;}
.x1_c02002{left:142.160000pt;}
.x3_c02002{left:160.640000pt;}
}





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

.ir_c02003:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02003;src:url('chunks/assets/font_2b08da241655dbfe22696c09.woff2')format("woff");}.ff1_c02003{font-family:ff1_c02003;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02003;src:url('chunks/assets/font_1073e2e11abacb6fe1fd579f.woff2')format("woff");}.ff2_c02003{font-family:ff2_c02003;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02003;src:url('chunks/assets/font_fd48882e0412c3bb49b24f61.woff2')format("woff");}.ff3_c02003{font-family:ff3_c02003;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_c02003;src:url('chunks/assets/font_c6e749686160722daf6af730.woff2')format("woff");}.ff4_c02003{font-family:ff4_c02003;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_c02003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02003{vertical-align:0.000000px;}
.ls19_c02003{letter-spacing:-0.180000px;}
.ls18_c02003{letter-spacing:-0.064800px;}
.ls16_c02003{letter-spacing:-0.028800px;}
.ls14_c02003{letter-spacing:-0.021600px;}
.ls15_c02003{letter-spacing:-0.014400px;}
.ls17_c02003{letter-spacing:-0.007200px;}
.ls13_c02003{letter-spacing:0.000000px;}
.ls6_c02003{letter-spacing:0.007200px;}
.lsc_c02003{letter-spacing:0.014400px;}
.ls1_c02003{letter-spacing:0.021600px;}
.ls4_c02003{letter-spacing:0.028800px;}
.lsd_c02003{letter-spacing:0.036000px;}
.lsa_c02003{letter-spacing:0.043200px;}
.lsf_c02003{letter-spacing:0.050400px;}
.ls9_c02003{letter-spacing:0.057600px;}
.ls12_c02003{letter-spacing:0.060120px;}
.lsb_c02003{letter-spacing:0.064800px;}
.ls3_c02003{letter-spacing:0.072000px;}
.ls8_c02003{letter-spacing:0.079200px;}
.ls7_c02003{letter-spacing:0.086400px;}
.ls10_c02003{letter-spacing:0.093600px;}
.ls5_c02003{letter-spacing:0.100800px;}
.ls11_c02003{letter-spacing:0.108000px;}
.lse_c02003{letter-spacing:0.115200px;}
.ls2_c02003{letter-spacing:0.122400px;}
.ls0_c02003{letter-spacing:2424.960000px;}
.sc__c02003{text-shadow:none;}
.sc0_c02003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02003{-webkit-text-stroke:0px transparent;}
.sc0_c02003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c02003{word-spacing:-18.007200px;}
.ws0_c02003{word-spacing:-17.985600px;}
.ws1_c02003{word-spacing:-17.935200px;}
.ws3_c02003{word-spacing:-17.820000px;}
.wsc_c02003{word-spacing:-0.172800px;}
.ws1f_c02003{word-spacing:-0.165600px;}
.ws4b_c02003{word-spacing:-0.136800px;}
.wsb_c02003{word-spacing:-0.093600px;}
.ws36_c02003{word-spacing:-0.072000px;}
.ws3c_c02003{word-spacing:-0.050400px;}
.ws27_c02003{word-spacing:-0.021600px;}
.ws3d_c02003{word-spacing:-0.014400px;}
.ws20_c02003{word-spacing:-0.007200px;}
.ws5_c02003{word-spacing:0.000000px;}
.ws28_c02003{word-spacing:0.007200px;}
.ws4_c02003{word-spacing:0.030060px;}
.ws2f_c02003{word-spacing:0.216000px;}
.ws30_c02003{word-spacing:0.273600px;}
.ws1d_c02003{word-spacing:0.655200px;}
.ws49_c02003{word-spacing:0.684000px;}
.ws4a_c02003{word-spacing:0.705600px;}
.ws1e_c02003{word-spacing:0.720000px;}
.ws46_c02003{word-spacing:0.849600px;}
.ws45_c02003{word-spacing:0.914400px;}
.ws44_c02003{word-spacing:0.943200px;}
.ws3a_c02003{word-spacing:1.303200px;}
.ws3b_c02003{word-spacing:1.353600px;}
.ws39_c02003{word-spacing:1.432800px;}
.ws17_c02003{word-spacing:1.440000px;}
.ws19_c02003{word-spacing:1.454400px;}
.ws18_c02003{word-spacing:1.461600px;}
.ws2b_c02003{word-spacing:2.671200px;}
.ws2c_c02003{word-spacing:2.692800px;}
.ws42_c02003{word-spacing:2.844000px;}
.ws43_c02003{word-spacing:2.865600px;}
.ws3f_c02003{word-spacing:3.528000px;}
.ws3e_c02003{word-spacing:3.614400px;}
.ws2a_c02003{word-spacing:3.844800px;}
.ws29_c02003{word-spacing:3.880800px;}
.ws25_c02003{word-spacing:4.888800px;}
.ws26_c02003{word-spacing:4.953600px;}
.ws2e_c02003{word-spacing:5.637600px;}
.ws2d_c02003{word-spacing:5.724000px;}
.ws7_c02003{word-spacing:5.875200px;}
.ws6_c02003{word-spacing:6.033600px;}
.ws41_c02003{word-spacing:6.091200px;}
.ws40_c02003{word-spacing:6.141600px;}
.ws13_c02003{word-spacing:6.292800px;}
.ws14_c02003{word-spacing:6.444000px;}
.wsd_c02003{word-spacing:6.696000px;}
.wse_c02003{word-spacing:6.753600px;}
.ws48_c02003{word-spacing:8.157600px;}
.ws47_c02003{word-spacing:8.280000px;}
.ws37_c02003{word-spacing:9.338400px;}
.ws38_c02003{word-spacing:9.352800px;}
.ws8_c02003{word-spacing:10.281600px;}
.wsa_c02003{word-spacing:10.339200px;}
.ws9_c02003{word-spacing:10.411200px;}
.ws32_c02003{word-spacing:10.684800px;}
.ws31_c02003{word-spacing:10.692000px;}
.ws35_c02003{word-spacing:12.448800px;}
.ws34_c02003{word-spacing:12.477600px;}
.ws33_c02003{word-spacing:12.506400px;}
.ws1c_c02003{word-spacing:12.614400px;}
.ws1b_c02003{word-spacing:12.621600px;}
.ws1a_c02003{word-spacing:12.628800px;}
.ws12_c02003{word-spacing:12.852000px;}
.ws11_c02003{word-spacing:12.902400px;}
.ws23_c02003{word-spacing:13.874400px;}
.ws22_c02003{word-spacing:13.932000px;}
.ws21_c02003{word-spacing:13.960800px;}
.ws16_c02003{word-spacing:18.316800px;}
.ws15_c02003{word-spacing:18.345600px;}
.ws10_c02003{word-spacing:19.008000px;}
.wsf_c02003{word-spacing:19.051200px;}
.ws24_c02003{word-spacing:24.444000px;}
._0_c02003{margin-left:-1.310616px;}
._1_c02003{width:6.026400px;}
.fc0_c02003{color:rgb(0,0,0);}
.fs0_c02003{font-size:60.120000px;}
.fs1_c02003{font-size:72.000000px;}
.y0_c02003{bottom:0.000000px;}
.y2_c02003{bottom:57.360450px;}
.y29_c02003{bottom:155.100450px;}
.y28_c02003{bottom:178.770450px;}
.y27_c02003{bottom:202.440450px;}
.y26_c02003{bottom:226.020450px;}
.y25_c02003{bottom:249.690450px;}
.y24_c02003{bottom:273.270450px;}
.y23_c02003{bottom:296.940450px;}
.y22_c02003{bottom:329.520450px;}
.y21_c02003{bottom:350.040450px;}
.y20_c02003{bottom:382.890450px;}
.y1f_c02003{bottom:415.470450px;}
.y1e_c02003{bottom:439.140450px;}
.y1d_c02003{bottom:462.810450px;}
.y1c_c02003{bottom:495.390450px;}
.y1b_c02003{bottom:519.060450px;}
.y1a_c02003{bottom:542.640450px;}
.y19_c02003{bottom:566.310450px;}
.y18_c02003{bottom:589.890450px;}
.y17_c02003{bottom:613.560450px;}
.y16_c02003{bottom:637.230450px;}
.y15_c02003{bottom:669.810450px;}
.y14_c02003{bottom:693.480450px;}
.y13_c02003{bottom:717.060450px;}
.y12_c02003{bottom:740.730450px;}
.y11_c02003{bottom:773.310450px;}
.y10_c02003{bottom:805.800450px;}
.yf_c02003{bottom:838.560450px;}
.ye_c02003{bottom:871.230450px;}
.yd_c02003{bottom:894.900450px;}
.yc_c02003{bottom:918.480450px;}
.yb_c02003{bottom:942.150450px;}
.ya_c02003{bottom:965.730450px;}
.y9_c02003{bottom:989.400450px;}
.y8_c02003{bottom:1012.980450px;}
.y7_c02003{bottom:1036.650450px;}
.y6_c02003{bottom:1060.230450px;}
.y5_c02003{bottom:1092.900450px;}
.y4_c02003{bottom:1116.570450px;}
.y3_c02003{bottom:1140.150450px;}
.y1_c02003{bottom:1196.130450px;}
.h1_c02003{height:63.175781px;}
.h2_c02003{height:63.351562px;}
.h3_c02003{height:72.562500px;}
.h0_c02003{height:1263.000000px;}
.w1_c02003{width:892.500000px;}
.w0_c02003{width:892.830000px;}
.x0_c02003{left:0.000000px;}
.x1_c02003{left:127.620000px;}
.x2_c02003{left:180.720000px;}
@media print{
.v0_c02003{vertical-align:0.000000pt;}
.ls19_c02003{letter-spacing:-0.160000pt;}
.ls18_c02003{letter-spacing:-0.057600pt;}
.ls16_c02003{letter-spacing:-0.025600pt;}
.ls14_c02003{letter-spacing:-0.019200pt;}
.ls15_c02003{letter-spacing:-0.012800pt;}
.ls17_c02003{letter-spacing:-0.006400pt;}
.ls13_c02003{letter-spacing:0.000000pt;}
.ls6_c02003{letter-spacing:0.006400pt;}
.lsc_c02003{letter-spacing:0.012800pt;}
.ls1_c02003{letter-spacing:0.019200pt;}
.ls4_c02003{letter-spacing:0.025600pt;}
.lsd_c02003{letter-spacing:0.032000pt;}
.lsa_c02003{letter-spacing:0.038400pt;}
.lsf_c02003{letter-spacing:0.044800pt;}
.ls9_c02003{letter-spacing:0.051200pt;}
.ls12_c02003{letter-spacing:0.053440pt;}
.lsb_c02003{letter-spacing:0.057600pt;}
.ls3_c02003{letter-spacing:0.064000pt;}
.ls8_c02003{letter-spacing:0.070400pt;}
.ls7_c02003{letter-spacing:0.076800pt;}
.ls10_c02003{letter-spacing:0.083200pt;}
.ls5_c02003{letter-spacing:0.089600pt;}
.ls11_c02003{letter-spacing:0.096000pt;}
.lse_c02003{letter-spacing:0.102400pt;}
.ls2_c02003{letter-spacing:0.108800pt;}
.ls0_c02003{letter-spacing:2155.520000pt;}
.ws2_c02003{word-spacing:-16.006400pt;}
.ws0_c02003{word-spacing:-15.987200pt;}
.ws1_c02003{word-spacing:-15.942400pt;}
.ws3_c02003{word-spacing:-15.840000pt;}
.wsc_c02003{word-spacing:-0.153600pt;}
.ws1f_c02003{word-spacing:-0.147200pt;}
.ws4b_c02003{word-spacing:-0.121600pt;}
.wsb_c02003{word-spacing:-0.083200pt;}
.ws36_c02003{word-spacing:-0.064000pt;}
.ws3c_c02003{word-spacing:-0.044800pt;}
.ws27_c02003{word-spacing:-0.019200pt;}
.ws3d_c02003{word-spacing:-0.012800pt;}
.ws20_c02003{word-spacing:-0.006400pt;}
.ws5_c02003{word-spacing:0.000000pt;}
.ws28_c02003{word-spacing:0.006400pt;}
.ws4_c02003{word-spacing:0.026720pt;}
.ws2f_c02003{word-spacing:0.192000pt;}
.ws30_c02003{word-spacing:0.243200pt;}
.ws1d_c02003{word-spacing:0.582400pt;}
.ws49_c02003{word-spacing:0.608000pt;}
.ws4a_c02003{word-spacing:0.627200pt;}
.ws1e_c02003{word-spacing:0.640000pt;}
.ws46_c02003{word-spacing:0.755200pt;}
.ws45_c02003{word-spacing:0.812800pt;}
.ws44_c02003{word-spacing:0.838400pt;}
.ws3a_c02003{word-spacing:1.158400pt;}
.ws3b_c02003{word-spacing:1.203200pt;}
.ws39_c02003{word-spacing:1.273600pt;}
.ws17_c02003{word-spacing:1.280000pt;}
.ws19_c02003{word-spacing:1.292800pt;}
.ws18_c02003{word-spacing:1.299200pt;}
.ws2b_c02003{word-spacing:2.374400pt;}
.ws2c_c02003{word-spacing:2.393600pt;}
.ws42_c02003{word-spacing:2.528000pt;}
.ws43_c02003{word-spacing:2.547200pt;}
.ws3f_c02003{word-spacing:3.136000pt;}
.ws3e_c02003{word-spacing:3.212800pt;}
.ws2a_c02003{word-spacing:3.417600pt;}
.ws29_c02003{word-spacing:3.449600pt;}
.ws25_c02003{word-spacing:4.345600pt;}
.ws26_c02003{word-spacing:4.403200pt;}
.ws2e_c02003{word-spacing:5.011200pt;}
.ws2d_c02003{word-spacing:5.088000pt;}
.ws7_c02003{word-spacing:5.222400pt;}
.ws6_c02003{word-spacing:5.363200pt;}
.ws41_c02003{word-spacing:5.414400pt;}
.ws40_c02003{word-spacing:5.459200pt;}
.ws13_c02003{word-spacing:5.593600pt;}
.ws14_c02003{word-spacing:5.728000pt;}
.wsd_c02003{word-spacing:5.952000pt;}
.wse_c02003{word-spacing:6.003200pt;}
.ws48_c02003{word-spacing:7.251200pt;}
.ws47_c02003{word-spacing:7.360000pt;}
.ws37_c02003{word-spacing:8.300800pt;}
.ws38_c02003{word-spacing:8.313600pt;}
.ws8_c02003{word-spacing:9.139200pt;}
.wsa_c02003{word-spacing:9.190400pt;}
.ws9_c02003{word-spacing:9.254400pt;}
.ws32_c02003{word-spacing:9.497600pt;}
.ws31_c02003{word-spacing:9.504000pt;}
.ws35_c02003{word-spacing:11.065600pt;}
.ws34_c02003{word-spacing:11.091200pt;}
.ws33_c02003{word-spacing:11.116800pt;}
.ws1c_c02003{word-spacing:11.212800pt;}
.ws1b_c02003{word-spacing:11.219200pt;}
.ws1a_c02003{word-spacing:11.225600pt;}
.ws12_c02003{word-spacing:11.424000pt;}
.ws11_c02003{word-spacing:11.468800pt;}
.ws23_c02003{word-spacing:12.332800pt;}
.ws22_c02003{word-spacing:12.384000pt;}
.ws21_c02003{word-spacing:12.409600pt;}
.ws16_c02003{word-spacing:16.281600pt;}
.ws15_c02003{word-spacing:16.307200pt;}
.ws10_c02003{word-spacing:16.896000pt;}
.wsf_c02003{word-spacing:16.934400pt;}
.ws24_c02003{word-spacing:21.728000pt;}
._0_c02003{margin-left:-1.164992pt;}
._1_c02003{width:5.356800pt;}
.fs0_c02003{font-size:53.440000pt;}
.fs1_c02003{font-size:64.000000pt;}
.y0_c02003{bottom:0.000000pt;}
.y2_c02003{bottom:50.987067pt;}
.y29_c02003{bottom:137.867067pt;}
.y28_c02003{bottom:158.907067pt;}
.y27_c02003{bottom:179.947067pt;}
.y26_c02003{bottom:200.907067pt;}
.y25_c02003{bottom:221.947067pt;}
.y24_c02003{bottom:242.907067pt;}
.y23_c02003{bottom:263.947067pt;}
.y22_c02003{bottom:292.907067pt;}
.y21_c02003{bottom:311.147067pt;}
.y20_c02003{bottom:340.347067pt;}
.y1f_c02003{bottom:369.307067pt;}
.y1e_c02003{bottom:390.347067pt;}
.y1d_c02003{bottom:411.387067pt;}
.y1c_c02003{bottom:440.347067pt;}
.y1b_c02003{bottom:461.387067pt;}
.y1a_c02003{bottom:482.347067pt;}
.y19_c02003{bottom:503.387067pt;}
.y18_c02003{bottom:524.347067pt;}
.y17_c02003{bottom:545.387067pt;}
.y16_c02003{bottom:566.427067pt;}
.y15_c02003{bottom:595.387067pt;}
.y14_c02003{bottom:616.427067pt;}
.y13_c02003{bottom:637.387067pt;}
.y12_c02003{bottom:658.427067pt;}
.y11_c02003{bottom:687.387067pt;}
.y10_c02003{bottom:716.267067pt;}
.yf_c02003{bottom:745.387067pt;}
.ye_c02003{bottom:774.427067pt;}
.yd_c02003{bottom:795.467067pt;}
.yc_c02003{bottom:816.427067pt;}
.yb_c02003{bottom:837.467067pt;}
.ya_c02003{bottom:858.427067pt;}
.y9_c02003{bottom:879.467067pt;}
.y8_c02003{bottom:900.427067pt;}
.y7_c02003{bottom:921.467067pt;}
.y6_c02003{bottom:942.427067pt;}
.y5_c02003{bottom:971.467067pt;}
.y4_c02003{bottom:992.507067pt;}
.y3_c02003{bottom:1013.467067pt;}
.y1_c02003{bottom:1063.227067pt;}
.h1_c02003{height:56.156250pt;}
.h2_c02003{height:56.312500pt;}
.h3_c02003{height:64.500000pt;}
.h0_c02003{height:1122.666667pt;}
.w1_c02003{width:793.333333pt;}
.w0_c02003{width:793.626667pt;}
.x0_c02003{left:0.000000pt;}
.x1_c02003{left:113.440000pt;}
.x2_c02003{left:160.640000pt;}
}





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

.ir_c02004:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02004;src:url('chunks/assets/font_d912b0c1f9e39abb960fae74.woff2')format("woff");}.ff1_c02004{font-family:ff1_c02004;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02004;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2_c02004{font-family:ff2_c02004;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_c02004;src:url('chunks/assets/font_163388dc1a3fa1a82868d7b1.woff2')format("woff");}.ff3_c02004{font-family:ff3_c02004;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02004{vertical-align:0.000000px;}
.ls14_c02004{letter-spacing:-0.028800px;}
.ls13_c02004{letter-spacing:-0.014400px;}
.ls12_c02004{letter-spacing:-0.007200px;}
.ls11_c02004{letter-spacing:0.000000px;}
.lsb_c02004{letter-spacing:0.007200px;}
.ls2_c02004{letter-spacing:0.014400px;}
.ls4_c02004{letter-spacing:0.021600px;}
.ls1_c02004{letter-spacing:0.028800px;}
.lse_c02004{letter-spacing:0.036000px;}
.ls6_c02004{letter-spacing:0.043200px;}
.lsd_c02004{letter-spacing:0.050400px;}
.ls5_c02004{letter-spacing:0.057600px;}
.ls10_c02004{letter-spacing:0.060120px;}
.ls8_c02004{letter-spacing:0.064800px;}
.ls3_c02004{letter-spacing:0.072000px;}
.lsc_c02004{letter-spacing:0.079200px;}
.ls7_c02004{letter-spacing:0.086400px;}
.ls9_c02004{letter-spacing:0.093600px;}
.lsf_c02004{letter-spacing:0.100800px;}
.lsa_c02004{letter-spacing:0.144000px;}
.ls0_c02004{letter-spacing:2424.960000px;}
.sc__c02004{text-shadow:none;}
.sc0_c02004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02004{-webkit-text-stroke:0px transparent;}
.sc0_c02004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02004{word-spacing:-18.093600px;}
.ws4a_c02004{word-spacing:-0.388800px;}
.ws26_c02004{word-spacing:-0.201600px;}
.ws27_c02004{word-spacing:-0.165600px;}
.ws31_c02004{word-spacing:-0.100800px;}
.ws4f_c02004{word-spacing:-0.028800px;}
.ws15_c02004{word-spacing:-0.007200px;}
.ws2_c02004{word-spacing:0.000000px;}
.ws1f_c02004{word-spacing:0.007200px;}
.ws1_c02004{word-spacing:0.030060px;}
.ws14_c02004{word-spacing:0.043200px;}
.ws2e_c02004{word-spacing:0.151200px;}
.ws2f_c02004{word-spacing:0.230400px;}
.wsf_c02004{word-spacing:1.231200px;}
.wse_c02004{word-spacing:1.324800px;}
.ws10_c02004{word-spacing:1.353600px;}
.ws35_c02004{word-spacing:1.951200px;}
.ws36_c02004{word-spacing:2.001600px;}
.ws37_c02004{word-spacing:2.023200px;}
.ws38_c02004{word-spacing:2.037600px;}
.ws39_c02004{word-spacing:2.109600px;}
.ws18_c02004{word-spacing:2.620800px;}
.ws19_c02004{word-spacing:2.721600px;}
.ws47_c02004{word-spacing:2.836800px;}
.ws46_c02004{word-spacing:2.851200px;}
.ws9_c02004{word-spacing:3.398400px;}
.wsa_c02004{word-spacing:3.420000px;}
.ws5_c02004{word-spacing:4.428000px;}
.ws6_c02004{word-spacing:4.514400px;}
.ws29_c02004{word-spacing:4.579200px;}
.ws28_c02004{word-spacing:4.615200px;}
.ws4e_c02004{word-spacing:5.709600px;}
.ws8_c02004{word-spacing:5.760000px;}
.ws7_c02004{word-spacing:5.767200px;}
.ws3f_c02004{word-spacing:6.076800px;}
.ws43_c02004{word-spacing:6.544800px;}
.ws42_c02004{word-spacing:6.602400px;}
.ws40_c02004{word-spacing:6.724800px;}
.ws52_c02004{word-spacing:6.847200px;}
.ws41_c02004{word-spacing:6.868800px;}
.ws4b_c02004{word-spacing:7.394400px;}
.ws4d_c02004{word-spacing:7.516800px;}
.ws4c_c02004{word-spacing:7.531200px;}
.ws20_c02004{word-spacing:8.157600px;}
.ws33_c02004{word-spacing:8.164800px;}
.ws21_c02004{word-spacing:8.186400px;}
.ws32_c02004{word-spacing:8.244000px;}
.ws34_c02004{word-spacing:8.265600px;}
.ws51_c02004{word-spacing:8.481600px;}
.ws50_c02004{word-spacing:8.517600px;}
.ws25_c02004{word-spacing:8.920800px;}
.ws24_c02004{word-spacing:8.992800px;}
.ws3b_c02004{word-spacing:9.597600px;}
.ws22_c02004{word-spacing:9.655200px;}
.ws23_c02004{word-spacing:9.684000px;}
.ws3a_c02004{word-spacing:9.691200px;}
.ws3c_c02004{word-spacing:9.727200px;}
.ws2d_c02004{word-spacing:10.296000px;}
.ws2a_c02004{word-spacing:10.310400px;}
.ws2b_c02004{word-spacing:10.332000px;}
.ws2c_c02004{word-spacing:10.346400px;}
.ws12_c02004{word-spacing:11.008800px;}
.ws13_c02004{word-spacing:11.016000px;}
.ws11_c02004{word-spacing:11.181600px;}
.wsb_c02004{word-spacing:11.354400px;}
.wsc_c02004{word-spacing:11.383200px;}
.wsd_c02004{word-spacing:11.404800px;}
.ws3e_c02004{word-spacing:12.218400px;}
.ws3d_c02004{word-spacing:12.290400px;}
.ws1a_c02004{word-spacing:13.903200px;}
.ws30_c02004{word-spacing:14.011200px;}
.ws1b_c02004{word-spacing:14.025600px;}
.ws44_c02004{word-spacing:14.968800px;}
.ws45_c02004{word-spacing:15.019200px;}
.ws3_c02004{word-spacing:15.328800px;}
.ws4_c02004{word-spacing:15.465600px;}
.ws17_c02004{word-spacing:16.516800px;}
.ws16_c02004{word-spacing:16.552800px;}
.ws48_c02004{word-spacing:16.833600px;}
.ws49_c02004{word-spacing:16.891200px;}
.ws1d_c02004{word-spacing:22.291200px;}
.ws1e_c02004{word-spacing:22.312800px;}
.ws1c_c02004{word-spacing:30.211200px;}
._0_c02004{margin-left:-1.310616px;}
.fc0_c02004{color:rgb(0,0,0);}
.fs0_c02004{font-size:60.120000px;}
.fs1_c02004{font-size:72.000000px;}
.y0_c02004{bottom:0.000000px;}
.y2_c02004{bottom:57.360450px;}
.y2b_c02004{bottom:140.970450px;}
.y2a_c02004{bottom:164.550450px;}
.y29_c02004{bottom:188.220450px;}
.y28_c02004{bottom:220.800450px;}
.y27_c02004{bottom:244.470450px;}
.y26_c02004{bottom:268.140450px;}
.y25_c02004{bottom:300.720450px;}
.y24_c02004{bottom:324.390450px;}
.y23_c02004{bottom:347.970450px;}
.y22_c02004{bottom:371.640450px;}
.y21_c02004{bottom:395.220450px;}
.y20_c02004{bottom:418.890450px;}
.y1f_c02004{bottom:442.470450px;}
.y1e_c02004{bottom:466.140450px;}
.y1d_c02004{bottom:489.810450px;}
.y1c_c02004{bottom:513.390450px;}
.y1b_c02004{bottom:537.060450px;}
.y1a_c02004{bottom:569.640450px;}
.y19_c02004{bottom:593.310450px;}
.y18_c02004{bottom:616.890450px;}
.y17_c02004{bottom:640.560450px;}
.y16_c02004{bottom:664.230450px;}
.y15_c02004{bottom:687.810450px;}
.y14_c02004{bottom:720.480450px;}
.y13_c02004{bottom:744.060450px;}
.y12_c02004{bottom:767.730450px;}
.y11_c02004{bottom:791.310450px;}
.y10_c02004{bottom:823.980450px;}
.yf_c02004{bottom:847.560450px;}
.ye_c02004{bottom:871.230450px;}
.yd_c02004{bottom:894.900450px;}
.yc_c02004{bottom:918.480450px;}
.yb_c02004{bottom:942.150450px;}
.ya_c02004{bottom:974.730450px;}
.y9_c02004{bottom:998.400450px;}
.y8_c02004{bottom:1021.980450px;}
.y7_c02004{bottom:1045.650450px;}
.y6_c02004{bottom:1069.230450px;}
.y5_c02004{bottom:1092.900450px;}
.y4_c02004{bottom:1116.570450px;}
.y3_c02004{bottom:1140.150450px;}
.y1_c02004{bottom:1196.130450px;}
.h1_c02004{height:60.589687px;}
.h2_c02004{height:63.175781px;}
.h3_c02004{height:63.351562px;}
.h0_c02004{height:1263.000000px;}
.w1_c02004{width:892.500000px;}
.w0_c02004{width:892.830000px;}
.x0_c02004{left:0.000000px;}
.x2_c02004{left:127.620000px;}
.x1_c02004{left:159.930000px;}
.x3_c02004{left:180.720000px;}
@media print{
.v0_c02004{vertical-align:0.000000pt;}
.ls14_c02004{letter-spacing:-0.025600pt;}
.ls13_c02004{letter-spacing:-0.012800pt;}
.ls12_c02004{letter-spacing:-0.006400pt;}
.ls11_c02004{letter-spacing:0.000000pt;}
.lsb_c02004{letter-spacing:0.006400pt;}
.ls2_c02004{letter-spacing:0.012800pt;}
.ls4_c02004{letter-spacing:0.019200pt;}
.ls1_c02004{letter-spacing:0.025600pt;}
.lse_c02004{letter-spacing:0.032000pt;}
.ls6_c02004{letter-spacing:0.038400pt;}
.lsd_c02004{letter-spacing:0.044800pt;}
.ls5_c02004{letter-spacing:0.051200pt;}
.ls10_c02004{letter-spacing:0.053440pt;}
.ls8_c02004{letter-spacing:0.057600pt;}
.ls3_c02004{letter-spacing:0.064000pt;}
.lsc_c02004{letter-spacing:0.070400pt;}
.ls7_c02004{letter-spacing:0.076800pt;}
.ls9_c02004{letter-spacing:0.083200pt;}
.lsf_c02004{letter-spacing:0.089600pt;}
.lsa_c02004{letter-spacing:0.128000pt;}
.ls0_c02004{letter-spacing:2155.520000pt;}
.ws0_c02004{word-spacing:-16.083200pt;}
.ws4a_c02004{word-spacing:-0.345600pt;}
.ws26_c02004{word-spacing:-0.179200pt;}
.ws27_c02004{word-spacing:-0.147200pt;}
.ws31_c02004{word-spacing:-0.089600pt;}
.ws4f_c02004{word-spacing:-0.025600pt;}
.ws15_c02004{word-spacing:-0.006400pt;}
.ws2_c02004{word-spacing:0.000000pt;}
.ws1f_c02004{word-spacing:0.006400pt;}
.ws1_c02004{word-spacing:0.026720pt;}
.ws14_c02004{word-spacing:0.038400pt;}
.ws2e_c02004{word-spacing:0.134400pt;}
.ws2f_c02004{word-spacing:0.204800pt;}
.wsf_c02004{word-spacing:1.094400pt;}
.wse_c02004{word-spacing:1.177600pt;}
.ws10_c02004{word-spacing:1.203200pt;}
.ws35_c02004{word-spacing:1.734400pt;}
.ws36_c02004{word-spacing:1.779200pt;}
.ws37_c02004{word-spacing:1.798400pt;}
.ws38_c02004{word-spacing:1.811200pt;}
.ws39_c02004{word-spacing:1.875200pt;}
.ws18_c02004{word-spacing:2.329600pt;}
.ws19_c02004{word-spacing:2.419200pt;}
.ws47_c02004{word-spacing:2.521600pt;}
.ws46_c02004{word-spacing:2.534400pt;}
.ws9_c02004{word-spacing:3.020800pt;}
.wsa_c02004{word-spacing:3.040000pt;}
.ws5_c02004{word-spacing:3.936000pt;}
.ws6_c02004{word-spacing:4.012800pt;}
.ws29_c02004{word-spacing:4.070400pt;}
.ws28_c02004{word-spacing:4.102400pt;}
.ws4e_c02004{word-spacing:5.075200pt;}
.ws8_c02004{word-spacing:5.120000pt;}
.ws7_c02004{word-spacing:5.126400pt;}
.ws3f_c02004{word-spacing:5.401600pt;}
.ws43_c02004{word-spacing:5.817600pt;}
.ws42_c02004{word-spacing:5.868800pt;}
.ws40_c02004{word-spacing:5.977600pt;}
.ws52_c02004{word-spacing:6.086400pt;}
.ws41_c02004{word-spacing:6.105600pt;}
.ws4b_c02004{word-spacing:6.572800pt;}
.ws4d_c02004{word-spacing:6.681600pt;}
.ws4c_c02004{word-spacing:6.694400pt;}
.ws20_c02004{word-spacing:7.251200pt;}
.ws33_c02004{word-spacing:7.257600pt;}
.ws21_c02004{word-spacing:7.276800pt;}
.ws32_c02004{word-spacing:7.328000pt;}
.ws34_c02004{word-spacing:7.347200pt;}
.ws51_c02004{word-spacing:7.539200pt;}
.ws50_c02004{word-spacing:7.571200pt;}
.ws25_c02004{word-spacing:7.929600pt;}
.ws24_c02004{word-spacing:7.993600pt;}
.ws3b_c02004{word-spacing:8.531200pt;}
.ws22_c02004{word-spacing:8.582400pt;}
.ws23_c02004{word-spacing:8.608000pt;}
.ws3a_c02004{word-spacing:8.614400pt;}
.ws3c_c02004{word-spacing:8.646400pt;}
.ws2d_c02004{word-spacing:9.152000pt;}
.ws2a_c02004{word-spacing:9.164800pt;}
.ws2b_c02004{word-spacing:9.184000pt;}
.ws2c_c02004{word-spacing:9.196800pt;}
.ws12_c02004{word-spacing:9.785600pt;}
.ws13_c02004{word-spacing:9.792000pt;}
.ws11_c02004{word-spacing:9.939200pt;}
.wsb_c02004{word-spacing:10.092800pt;}
.wsc_c02004{word-spacing:10.118400pt;}
.wsd_c02004{word-spacing:10.137600pt;}
.ws3e_c02004{word-spacing:10.860800pt;}
.ws3d_c02004{word-spacing:10.924800pt;}
.ws1a_c02004{word-spacing:12.358400pt;}
.ws30_c02004{word-spacing:12.454400pt;}
.ws1b_c02004{word-spacing:12.467200pt;}
.ws44_c02004{word-spacing:13.305600pt;}
.ws45_c02004{word-spacing:13.350400pt;}
.ws3_c02004{word-spacing:13.625600pt;}
.ws4_c02004{word-spacing:13.747200pt;}
.ws17_c02004{word-spacing:14.681600pt;}
.ws16_c02004{word-spacing:14.713600pt;}
.ws48_c02004{word-spacing:14.963200pt;}
.ws49_c02004{word-spacing:15.014400pt;}
.ws1d_c02004{word-spacing:19.814400pt;}
.ws1e_c02004{word-spacing:19.833600pt;}
.ws1c_c02004{word-spacing:26.854400pt;}
._0_c02004{margin-left:-1.164992pt;}
.fs0_c02004{font-size:53.440000pt;}
.fs1_c02004{font-size:64.000000pt;}
.y0_c02004{bottom:0.000000pt;}
.y2_c02004{bottom:50.987067pt;}
.y2b_c02004{bottom:125.307067pt;}
.y2a_c02004{bottom:146.267067pt;}
.y29_c02004{bottom:167.307067pt;}
.y28_c02004{bottom:196.267067pt;}
.y27_c02004{bottom:217.307067pt;}
.y26_c02004{bottom:238.347067pt;}
.y25_c02004{bottom:267.307067pt;}
.y24_c02004{bottom:288.347067pt;}
.y23_c02004{bottom:309.307067pt;}
.y22_c02004{bottom:330.347067pt;}
.y21_c02004{bottom:351.307067pt;}
.y20_c02004{bottom:372.347067pt;}
.y1f_c02004{bottom:393.307067pt;}
.y1e_c02004{bottom:414.347067pt;}
.y1d_c02004{bottom:435.387067pt;}
.y1c_c02004{bottom:456.347067pt;}
.y1b_c02004{bottom:477.387067pt;}
.y1a_c02004{bottom:506.347067pt;}
.y19_c02004{bottom:527.387067pt;}
.y18_c02004{bottom:548.347067pt;}
.y17_c02004{bottom:569.387067pt;}
.y16_c02004{bottom:590.427067pt;}
.y15_c02004{bottom:611.387067pt;}
.y14_c02004{bottom:640.427067pt;}
.y13_c02004{bottom:661.387067pt;}
.y12_c02004{bottom:682.427067pt;}
.y11_c02004{bottom:703.387067pt;}
.y10_c02004{bottom:732.427067pt;}
.yf_c02004{bottom:753.387067pt;}
.ye_c02004{bottom:774.427067pt;}
.yd_c02004{bottom:795.467067pt;}
.yc_c02004{bottom:816.427067pt;}
.yb_c02004{bottom:837.467067pt;}
.ya_c02004{bottom:866.427067pt;}
.y9_c02004{bottom:887.467067pt;}
.y8_c02004{bottom:908.427067pt;}
.y7_c02004{bottom:929.467067pt;}
.y6_c02004{bottom:950.427067pt;}
.y5_c02004{bottom:971.467067pt;}
.y4_c02004{bottom:992.507067pt;}
.y3_c02004{bottom:1013.467067pt;}
.y1_c02004{bottom:1063.227067pt;}
.h1_c02004{height:53.857500pt;}
.h2_c02004{height:56.156250pt;}
.h3_c02004{height:56.312500pt;}
.h0_c02004{height:1122.666667pt;}
.w1_c02004{width:793.333333pt;}
.w0_c02004{width:793.626667pt;}
.x0_c02004{left:0.000000pt;}
.x2_c02004{left:113.440000pt;}
.x1_c02004{left:142.160000pt;}
.x3_c02004{left:160.640000pt;}
}





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

.ir_c02005:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02005;src:url('chunks/assets/font_c1ab4868488955a5832a9e20.woff2')format("woff");}.ff1_c02005{font-family:ff1_c02005;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02005;src:url('chunks/assets/font_ddbbd67ca67e6cffdde3a1da.woff2')format("woff");}.ff2_c02005{font-family:ff2_c02005;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02005{vertical-align:0.000000px;}
.ls13_c02005{letter-spacing:-0.360000px;}
.ls12_c02005{letter-spacing:-0.036000px;}
.ls10_c02005{letter-spacing:-0.021600px;}
.ls11_c02005{letter-spacing:-0.014400px;}
.lsf_c02005{letter-spacing:-0.007200px;}
.lse_c02005{letter-spacing:0.000000px;}
.lsc_c02005{letter-spacing:0.007200px;}
.ls6_c02005{letter-spacing:0.014400px;}
.ls2_c02005{letter-spacing:0.021600px;}
.lsb_c02005{letter-spacing:0.028800px;}
.ls8_c02005{letter-spacing:0.036000px;}
.ls5_c02005{letter-spacing:0.043200px;}
.ls1_c02005{letter-spacing:0.050400px;}
.ls3_c02005{letter-spacing:0.057600px;}
.lsd_c02005{letter-spacing:0.060120px;}
.ls9_c02005{letter-spacing:0.064800px;}
.ls4_c02005{letter-spacing:0.072000px;}
.ls7_c02005{letter-spacing:0.079200px;}
.lsa_c02005{letter-spacing:0.086400px;}
.ls0_c02005{letter-spacing:2424.960000px;}
.sc__c02005{text-shadow:none;}
.sc0_c02005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02005{-webkit-text-stroke:0px transparent;}
.sc0_c02005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02005{word-spacing:-18.007200px;}
.ws7_c02005{word-spacing:-0.144000px;}
.ws4c_c02005{word-spacing:-0.064800px;}
.wsf_c02005{word-spacing:-0.057600px;}
.wse_c02005{word-spacing:-0.043200px;}
.ws10_c02005{word-spacing:-0.036000px;}
.ws3f_c02005{word-spacing:-0.028800px;}
.ws2f_c02005{word-spacing:-0.021600px;}
.ws11_c02005{word-spacing:-0.014400px;}
.ws2_c02005{word-spacing:0.000000px;}
.ws6_c02005{word-spacing:0.007200px;}
.ws1_c02005{word-spacing:0.030060px;}
.ws36_c02005{word-spacing:0.612000px;}
.ws35_c02005{word-spacing:0.684000px;}
.ws45_c02005{word-spacing:0.892800px;}
.ws46_c02005{word-spacing:0.986400px;}
.ws1f_c02005{word-spacing:1.058400px;}
.ws3c_c02005{word-spacing:1.684800px;}
.ws3e_c02005{word-spacing:1.692000px;}
.ws3b_c02005{word-spacing:1.706400px;}
.ws1a_c02005{word-spacing:1.742400px;}
.ws19_c02005{word-spacing:1.756800px;}
.ws3d_c02005{word-spacing:1.807200px;}
.ws27_c02005{word-spacing:2.836800px;}
.ws26_c02005{word-spacing:2.851200px;}
.ws50_c02005{word-spacing:3.067200px;}
.ws4f_c02005{word-spacing:3.182400px;}
.wsa_c02005{word-spacing:3.189600px;}
.ws23_c02005{word-spacing:3.801600px;}
.ws22_c02005{word-spacing:3.823200px;}
.ws5_c02005{word-spacing:4.233600px;}
.ws4_c02005{word-spacing:4.485600px;}
.ws24_c02005{word-spacing:4.500000px;}
.ws25_c02005{word-spacing:4.622400px;}
.ws3_c02005{word-spacing:4.629600px;}
.ws42_c02005{word-spacing:4.896000px;}
.ws2a_c02005{word-spacing:4.917600px;}
.ws29_c02005{word-spacing:4.939200px;}
.ws40_c02005{word-spacing:4.953600px;}
.ws28_c02005{word-spacing:4.975200px;}
.ws13_c02005{word-spacing:4.982400px;}
.ws2b_c02005{word-spacing:5.018400px;}
.ws41_c02005{word-spacing:5.032800px;}
.ws14_c02005{word-spacing:5.040000px;}
.ws44_c02005{word-spacing:5.544000px;}
.ws43_c02005{word-spacing:5.760000px;}
.wsc_c02005{word-spacing:6.508800px;}
.wsb_c02005{word-spacing:6.537600px;}
.ws31_c02005{word-spacing:6.652800px;}
.ws30_c02005{word-spacing:6.854400px;}
.wsd_c02005{word-spacing:8.107200px;}
.ws12_c02005{word-spacing:8.935200px;}
.ws16_c02005{word-spacing:10.389600px;}
.ws15_c02005{word-spacing:10.425600px;}
.ws4d_c02005{word-spacing:13.572000px;}
.ws1d_c02005{word-spacing:13.636800px;}
.ws4e_c02005{word-spacing:13.658400px;}
.ws1e_c02005{word-spacing:13.701600px;}
.ws37_c02005{word-spacing:13.960800px;}
.ws38_c02005{word-spacing:14.011200px;}
.ws1b_c02005{word-spacing:14.313600px;}
.ws1c_c02005{word-spacing:14.400000px;}
.ws33_c02005{word-spacing:14.738400px;}
.ws32_c02005{word-spacing:14.760000px;}
.ws34_c02005{word-spacing:14.796000px;}
.ws48_c02005{word-spacing:14.990400px;}
.ws49_c02005{word-spacing:15.012000px;}
.ws2e_c02005{word-spacing:15.026400px;}
.ws47_c02005{word-spacing:15.040800px;}
.ws8_c02005{word-spacing:15.062400px;}
.ws9_c02005{word-spacing:15.134400px;}
.ws2c_c02005{word-spacing:17.150400px;}
.ws2d_c02005{word-spacing:17.179200px;}
.ws20_c02005{word-spacing:19.720800px;}
.ws21_c02005{word-spacing:19.800000px;}
.ws17_c02005{word-spacing:21.016800px;}
.ws18_c02005{word-spacing:21.218400px;}
.ws39_c02005{word-spacing:23.328000px;}
.ws3a_c02005{word-spacing:23.450400px;}
.ws4a_c02005{word-spacing:25.812000px;}
.ws4b_c02005{word-spacing:25.826400px;}
._1_c02005{margin-left:-13.629600px;}
._0_c02005{margin-left:-1.310616px;}
.fc0_c02005{color:rgb(0,0,0);}
.fs0_c02005{font-size:60.120000px;}
.fs1_c02005{font-size:72.000000px;}
.y0_c02005{bottom:0.000000px;}
.y2_c02005{bottom:57.360450px;}
.y2c_c02005{bottom:117.300450px;}
.y2b_c02005{bottom:140.970450px;}
.y2a_c02005{bottom:173.550450px;}
.y29_c02005{bottom:197.220450px;}
.y28_c02005{bottom:220.800450px;}
.y27_c02005{bottom:244.470450px;}
.y26_c02005{bottom:268.140450px;}
.y25_c02005{bottom:291.720450px;}
.y24_c02005{bottom:324.390450px;}
.y23_c02005{bottom:347.970450px;}
.y22_c02005{bottom:371.640450px;}
.y21_c02005{bottom:395.220450px;}
.y20_c02005{bottom:418.890450px;}
.y1f_c02005{bottom:442.470450px;}
.y1e_c02005{bottom:466.140450px;}
.y1d_c02005{bottom:498.810450px;}
.y1c_c02005{bottom:522.390450px;}
.y1b_c02005{bottom:546.060450px;}
.y1a_c02005{bottom:569.640450px;}
.y19_c02005{bottom:602.310450px;}
.y18_c02005{bottom:625.890450px;}
.y17_c02005{bottom:649.560450px;}
.y16_c02005{bottom:673.230450px;}
.y15_c02005{bottom:696.810450px;}
.y14_c02005{bottom:720.480450px;}
.y13_c02005{bottom:744.060450px;}
.y12_c02005{bottom:767.730450px;}
.y11_c02005{bottom:791.310450px;}
.y10_c02005{bottom:814.980450px;}
.yf_c02005{bottom:838.560450px;}
.ye_c02005{bottom:862.230450px;}
.yd_c02005{bottom:885.900450px;}
.yc_c02005{bottom:909.480450px;}
.yb_c02005{bottom:942.150450px;}
.ya_c02005{bottom:965.730450px;}
.y9_c02005{bottom:989.400450px;}
.y8_c02005{bottom:1012.980450px;}
.y7_c02005{bottom:1036.650450px;}
.y6_c02005{bottom:1060.230450px;}
.y5_c02005{bottom:1092.900450px;}
.y4_c02005{bottom:1116.570450px;}
.y3_c02005{bottom:1140.150450px;}
.y1_c02005{bottom:1196.130450px;}
.h1_c02005{height:63.175781px;}
.h2_c02005{height:63.351562px;}
.h0_c02005{height:1263.000000px;}
.w1_c02005{width:892.500000px;}
.w0_c02005{width:892.830000px;}
.x0_c02005{left:0.000000px;}
.x1_c02005{left:127.620000px;}
.x2_c02005{left:180.720000px;}
@media print{
.v0_c02005{vertical-align:0.000000pt;}
.ls13_c02005{letter-spacing:-0.320000pt;}
.ls12_c02005{letter-spacing:-0.032000pt;}
.ls10_c02005{letter-spacing:-0.019200pt;}
.ls11_c02005{letter-spacing:-0.012800pt;}
.lsf_c02005{letter-spacing:-0.006400pt;}
.lse_c02005{letter-spacing:0.000000pt;}
.lsc_c02005{letter-spacing:0.006400pt;}
.ls6_c02005{letter-spacing:0.012800pt;}
.ls2_c02005{letter-spacing:0.019200pt;}
.lsb_c02005{letter-spacing:0.025600pt;}
.ls8_c02005{letter-spacing:0.032000pt;}
.ls5_c02005{letter-spacing:0.038400pt;}
.ls1_c02005{letter-spacing:0.044800pt;}
.ls3_c02005{letter-spacing:0.051200pt;}
.lsd_c02005{letter-spacing:0.053440pt;}
.ls9_c02005{letter-spacing:0.057600pt;}
.ls4_c02005{letter-spacing:0.064000pt;}
.ls7_c02005{letter-spacing:0.070400pt;}
.lsa_c02005{letter-spacing:0.076800pt;}
.ls0_c02005{letter-spacing:2155.520000pt;}
.ws0_c02005{word-spacing:-16.006400pt;}
.ws7_c02005{word-spacing:-0.128000pt;}
.ws4c_c02005{word-spacing:-0.057600pt;}
.wsf_c02005{word-spacing:-0.051200pt;}
.wse_c02005{word-spacing:-0.038400pt;}
.ws10_c02005{word-spacing:-0.032000pt;}
.ws3f_c02005{word-spacing:-0.025600pt;}
.ws2f_c02005{word-spacing:-0.019200pt;}
.ws11_c02005{word-spacing:-0.012800pt;}
.ws2_c02005{word-spacing:0.000000pt;}
.ws6_c02005{word-spacing:0.006400pt;}
.ws1_c02005{word-spacing:0.026720pt;}
.ws36_c02005{word-spacing:0.544000pt;}
.ws35_c02005{word-spacing:0.608000pt;}
.ws45_c02005{word-spacing:0.793600pt;}
.ws46_c02005{word-spacing:0.876800pt;}
.ws1f_c02005{word-spacing:0.940800pt;}
.ws3c_c02005{word-spacing:1.497600pt;}
.ws3e_c02005{word-spacing:1.504000pt;}
.ws3b_c02005{word-spacing:1.516800pt;}
.ws1a_c02005{word-spacing:1.548800pt;}
.ws19_c02005{word-spacing:1.561600pt;}
.ws3d_c02005{word-spacing:1.606400pt;}
.ws27_c02005{word-spacing:2.521600pt;}
.ws26_c02005{word-spacing:2.534400pt;}
.ws50_c02005{word-spacing:2.726400pt;}
.ws4f_c02005{word-spacing:2.828800pt;}
.wsa_c02005{word-spacing:2.835200pt;}
.ws23_c02005{word-spacing:3.379200pt;}
.ws22_c02005{word-spacing:3.398400pt;}
.ws5_c02005{word-spacing:3.763200pt;}
.ws4_c02005{word-spacing:3.987200pt;}
.ws24_c02005{word-spacing:4.000000pt;}
.ws25_c02005{word-spacing:4.108800pt;}
.ws3_c02005{word-spacing:4.115200pt;}
.ws42_c02005{word-spacing:4.352000pt;}
.ws2a_c02005{word-spacing:4.371200pt;}
.ws29_c02005{word-spacing:4.390400pt;}
.ws40_c02005{word-spacing:4.403200pt;}
.ws28_c02005{word-spacing:4.422400pt;}
.ws13_c02005{word-spacing:4.428800pt;}
.ws2b_c02005{word-spacing:4.460800pt;}
.ws41_c02005{word-spacing:4.473600pt;}
.ws14_c02005{word-spacing:4.480000pt;}
.ws44_c02005{word-spacing:4.928000pt;}
.ws43_c02005{word-spacing:5.120000pt;}
.wsc_c02005{word-spacing:5.785600pt;}
.wsb_c02005{word-spacing:5.811200pt;}
.ws31_c02005{word-spacing:5.913600pt;}
.ws30_c02005{word-spacing:6.092800pt;}
.wsd_c02005{word-spacing:7.206400pt;}
.ws12_c02005{word-spacing:7.942400pt;}
.ws16_c02005{word-spacing:9.235200pt;}
.ws15_c02005{word-spacing:9.267200pt;}
.ws4d_c02005{word-spacing:12.064000pt;}
.ws1d_c02005{word-spacing:12.121600pt;}
.ws4e_c02005{word-spacing:12.140800pt;}
.ws1e_c02005{word-spacing:12.179200pt;}
.ws37_c02005{word-spacing:12.409600pt;}
.ws38_c02005{word-spacing:12.454400pt;}
.ws1b_c02005{word-spacing:12.723200pt;}
.ws1c_c02005{word-spacing:12.800000pt;}
.ws33_c02005{word-spacing:13.100800pt;}
.ws32_c02005{word-spacing:13.120000pt;}
.ws34_c02005{word-spacing:13.152000pt;}
.ws48_c02005{word-spacing:13.324800pt;}
.ws49_c02005{word-spacing:13.344000pt;}
.ws2e_c02005{word-spacing:13.356800pt;}
.ws47_c02005{word-spacing:13.369600pt;}
.ws8_c02005{word-spacing:13.388800pt;}
.ws9_c02005{word-spacing:13.452800pt;}
.ws2c_c02005{word-spacing:15.244800pt;}
.ws2d_c02005{word-spacing:15.270400pt;}
.ws20_c02005{word-spacing:17.529600pt;}
.ws21_c02005{word-spacing:17.600000pt;}
.ws17_c02005{word-spacing:18.681600pt;}
.ws18_c02005{word-spacing:18.860800pt;}
.ws39_c02005{word-spacing:20.736000pt;}
.ws3a_c02005{word-spacing:20.844800pt;}
.ws4a_c02005{word-spacing:22.944000pt;}
.ws4b_c02005{word-spacing:22.956800pt;}
._1_c02005{margin-left:-12.115200pt;}
._0_c02005{margin-left:-1.164992pt;}
.fs0_c02005{font-size:53.440000pt;}
.fs1_c02005{font-size:64.000000pt;}
.y0_c02005{bottom:0.000000pt;}
.y2_c02005{bottom:50.987067pt;}
.y2c_c02005{bottom:104.267067pt;}
.y2b_c02005{bottom:125.307067pt;}
.y2a_c02005{bottom:154.267067pt;}
.y29_c02005{bottom:175.307067pt;}
.y28_c02005{bottom:196.267067pt;}
.y27_c02005{bottom:217.307067pt;}
.y26_c02005{bottom:238.347067pt;}
.y25_c02005{bottom:259.307067pt;}
.y24_c02005{bottom:288.347067pt;}
.y23_c02005{bottom:309.307067pt;}
.y22_c02005{bottom:330.347067pt;}
.y21_c02005{bottom:351.307067pt;}
.y20_c02005{bottom:372.347067pt;}
.y1f_c02005{bottom:393.307067pt;}
.y1e_c02005{bottom:414.347067pt;}
.y1d_c02005{bottom:443.387067pt;}
.y1c_c02005{bottom:464.347067pt;}
.y1b_c02005{bottom:485.387067pt;}
.y1a_c02005{bottom:506.347067pt;}
.y19_c02005{bottom:535.387067pt;}
.y18_c02005{bottom:556.347067pt;}
.y17_c02005{bottom:577.387067pt;}
.y16_c02005{bottom:598.427067pt;}
.y15_c02005{bottom:619.387067pt;}
.y14_c02005{bottom:640.427067pt;}
.y13_c02005{bottom:661.387067pt;}
.y12_c02005{bottom:682.427067pt;}
.y11_c02005{bottom:703.387067pt;}
.y10_c02005{bottom:724.427067pt;}
.yf_c02005{bottom:745.387067pt;}
.ye_c02005{bottom:766.427067pt;}
.yd_c02005{bottom:787.467067pt;}
.yc_c02005{bottom:808.427067pt;}
.yb_c02005{bottom:837.467067pt;}
.ya_c02005{bottom:858.427067pt;}
.y9_c02005{bottom:879.467067pt;}
.y8_c02005{bottom:900.427067pt;}
.y7_c02005{bottom:921.467067pt;}
.y6_c02005{bottom:942.427067pt;}
.y5_c02005{bottom:971.467067pt;}
.y4_c02005{bottom:992.507067pt;}
.y3_c02005{bottom:1013.467067pt;}
.y1_c02005{bottom:1063.227067pt;}
.h1_c02005{height:56.156250pt;}
.h2_c02005{height:56.312500pt;}
.h0_c02005{height:1122.666667pt;}
.w1_c02005{width:793.333333pt;}
.w0_c02005{width:793.626667pt;}
.x0_c02005{left:0.000000pt;}
.x1_c02005{left:113.440000pt;}
.x2_c02005{left:160.640000pt;}
}





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

.ir_c02006:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02006{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02006;src:url('chunks/assets/font_eb1973a2f2af1b88888dac96.woff2')format("woff");}.ff1_c02006{font-family:ff1_c02006;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02006;src:url('chunks/assets/font_20cb85a72ee5c9a5ccb312d7.woff2')format("woff");}.ff2_c02006{font-family:ff2_c02006;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02006;src:url('chunks/assets/font_6490434facac989df07b7ce6.woff2')format("woff");}.ff3_c02006{font-family:ff3_c02006;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_c02006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02006{vertical-align:0.000000px;}
.ls14_c02006{letter-spacing:-0.072000px;}
.ls15_c02006{letter-spacing:-0.057600px;}
.ls13_c02006{letter-spacing:-0.028800px;}
.ls12_c02006{letter-spacing:-0.021600px;}
.ls10_c02006{letter-spacing:-0.014400px;}
.ls11_c02006{letter-spacing:-0.007200px;}
.lsf_c02006{letter-spacing:0.000000px;}
.ls8_c02006{letter-spacing:0.007200px;}
.lsd_c02006{letter-spacing:0.014400px;}
.ls1_c02006{letter-spacing:0.021600px;}
.ls9_c02006{letter-spacing:0.028800px;}
.ls4_c02006{letter-spacing:0.036000px;}
.ls7_c02006{letter-spacing:0.043200px;}
.ls5_c02006{letter-spacing:0.050400px;}
.ls6_c02006{letter-spacing:0.057600px;}
.lse_c02006{letter-spacing:0.060120px;}
.ls2_c02006{letter-spacing:0.064800px;}
.lsb_c02006{letter-spacing:0.072000px;}
.lsa_c02006{letter-spacing:0.079200px;}
.ls3_c02006{letter-spacing:0.093600px;}
.lsc_c02006{letter-spacing:0.136800px;}
.ls0_c02006{letter-spacing:2424.960000px;}
.sc__c02006{text-shadow:none;}
.sc0_c02006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02006{-webkit-text-stroke:0px transparent;}
.sc0_c02006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02006{word-spacing:-18.043200px;}
.ws0_c02006{word-spacing:-17.928000px;}
.ws46_c02006{word-spacing:-0.302400px;}
.ws27_c02006{word-spacing:-0.144000px;}
.ws11_c02006{word-spacing:-0.136800px;}
.ws39_c02006{word-spacing:-0.086400px;}
.ws45_c02006{word-spacing:-0.064800px;}
.ws38_c02006{word-spacing:-0.043200px;}
.ws3b_c02006{word-spacing:-0.021600px;}
.ws10_c02006{word-spacing:-0.007200px;}
.ws3_c02006{word-spacing:0.000000px;}
.ws4d_c02006{word-spacing:0.014400px;}
.ws2_c02006{word-spacing:0.030060px;}
.ws26_c02006{word-spacing:0.057600px;}
.ws4_c02006{word-spacing:1.360800px;}
.ws5_c02006{word-spacing:1.411200px;}
.ws43_c02006{word-spacing:1.843200px;}
.ws17_c02006{word-spacing:1.972800px;}
.ws16_c02006{word-spacing:2.001600px;}
.ws44_c02006{word-spacing:2.138400px;}
.ws3c_c02006{word-spacing:2.253600px;}
.ws3d_c02006{word-spacing:2.318400px;}
.ws3e_c02006{word-spacing:2.397600px;}
.ws1e_c02006{word-spacing:3.038400px;}
.ws20_c02006{word-spacing:3.117600px;}
.ws1f_c02006{word-spacing:3.160800px;}
.ws2a_c02006{word-spacing:3.182400px;}
.ws1a_c02006{word-spacing:3.398400px;}
.ws1b_c02006{word-spacing:3.556800px;}
.ws34_c02006{word-spacing:3.578400px;}
.ws35_c02006{word-spacing:3.679200px;}
.ws30_c02006{word-spacing:3.924000px;}
.ws4e_c02006{word-spacing:4.557600px;}
.ws4f_c02006{word-spacing:4.615200px;}
.ws22_c02006{word-spacing:5.299200px;}
.ws4a_c02006{word-spacing:5.320800px;}
.ws4b_c02006{word-spacing:5.335200px;}
.ws47_c02006{word-spacing:5.342400px;}
.ws21_c02006{word-spacing:5.356800px;}
.ws48_c02006{word-spacing:5.976000px;}
.ws49_c02006{word-spacing:6.026400px;}
.ws42_c02006{word-spacing:6.264000px;}
.ws3f_c02006{word-spacing:6.307200px;}
.ws41_c02006{word-spacing:6.314400px;}
.ws40_c02006{word-spacing:6.480000px;}
.ws6_c02006{word-spacing:7.783200px;}
.ws15_c02006{word-spacing:7.819200px;}
.ws7_c02006{word-spacing:7.826400px;}
.ws14_c02006{word-spacing:7.891200px;}
.ws36_c02006{word-spacing:8.085600px;}
.ws23_c02006{word-spacing:8.164800px;}
.ws37_c02006{word-spacing:8.179200px;}
.ws24_c02006{word-spacing:8.222400px;}
.ws25_c02006{word-spacing:8.272800px;}
.ws51_c02006{word-spacing:8.553600px;}
.ws50_c02006{word-spacing:8.668800px;}
.wse_c02006{word-spacing:8.856000px;}
.wsd_c02006{word-spacing:8.892000px;}
.wsf_c02006{word-spacing:8.956800px;}
.ws32_c02006{word-spacing:9.561600px;}
.ws33_c02006{word-spacing:9.655200px;}
.wsb_c02006{word-spacing:9.662400px;}
.wsc_c02006{word-spacing:9.705600px;}
.ws31_c02006{word-spacing:9.734400px;}
.ws2f_c02006{word-spacing:10.677600px;}
.ws2e_c02006{word-spacing:10.771200px;}
.ws9_c02006{word-spacing:10.929600px;}
.wsa_c02006{word-spacing:10.994400px;}
.ws8_c02006{word-spacing:11.001600px;}
.ws13_c02006{word-spacing:11.080800px;}
.ws12_c02006{word-spacing:11.167200px;}
.ws4c_c02006{word-spacing:12.924000px;}
.ws1d_c02006{word-spacing:14.306400px;}
.ws1c_c02006{word-spacing:14.421600px;}
.ws3a_c02006{word-spacing:16.128000px;}
.ws28_c02006{word-spacing:16.768800px;}
.ws29_c02006{word-spacing:16.948800px;}
.ws18_c02006{word-spacing:18.921600px;}
.ws19_c02006{word-spacing:18.986400px;}
.ws2c_c02006{word-spacing:21.916800px;}
.ws2d_c02006{word-spacing:22.168800px;}
.ws2b_c02006{word-spacing:22.248000px;}
._1_c02006{margin-left:-4.615200px;}
._0_c02006{margin-left:-1.310616px;}
.fc0_c02006{color:rgb(0,0,0);}
.fs0_c02006{font-size:60.120000px;}
.fs1_c02006{font-size:72.000000px;}
.y0_c02006{bottom:0.000000px;}
.y2_c02006{bottom:57.360450px;}
.y2b_c02006{bottom:122.970450px;}
.y2a_c02006{bottom:146.550450px;}
.y29_c02006{bottom:179.220450px;}
.y28_c02006{bottom:202.800450px;}
.y27_c02006{bottom:226.470450px;}
.y26_c02006{bottom:250.140450px;}
.y25_c02006{bottom:273.720450px;}
.y24_c02006{bottom:306.390450px;}
.y23_c02006{bottom:338.790450px;}
.y22_c02006{bottom:371.640450px;}
.y21_c02006{bottom:404.220450px;}
.y20_c02006{bottom:427.890450px;}
.y1f_c02006{bottom:451.470450px;}
.y1e_c02006{bottom:475.140450px;}
.y1d_c02006{bottom:498.810450px;}
.y1c_c02006{bottom:522.390450px;}
.y1b_c02006{bottom:555.060450px;}
.y1a_c02006{bottom:578.640450px;}
.y19_c02006{bottom:602.310450px;}
.y18_c02006{bottom:625.890450px;}
.y17_c02006{bottom:649.560450px;}
.y16_c02006{bottom:673.230450px;}
.y15_c02006{bottom:696.810450px;}
.y14_c02006{bottom:720.480450px;}
.y13_c02006{bottom:744.060450px;}
.y12_c02006{bottom:776.730450px;}
.y11_c02006{bottom:800.310450px;}
.y10_c02006{bottom:823.980450px;}
.yf_c02006{bottom:847.560450px;}
.ye_c02006{bottom:871.230450px;}
.yd_c02006{bottom:894.900450px;}
.yc_c02006{bottom:918.480450px;}
.yb_c02006{bottom:942.150450px;}
.ya_c02006{bottom:965.730450px;}
.y9_c02006{bottom:989.400450px;}
.y8_c02006{bottom:1021.980450px;}
.y7_c02006{bottom:1045.650450px;}
.y6_c02006{bottom:1069.230450px;}
.y5_c02006{bottom:1092.900450px;}
.y4_c02006{bottom:1116.570450px;}
.y3_c02006{bottom:1140.150450px;}
.y1_c02006{bottom:1196.130450px;}
.h1_c02006{height:60.589687px;}
.h2_c02006{height:63.175781px;}
.h3_c02006{height:72.562500px;}
.h0_c02006{height:1263.000000px;}
.w1_c02006{width:892.500000px;}
.w0_c02006{width:892.830000px;}
.x0_c02006{left:0.000000px;}
.x2_c02006{left:127.620000px;}
.x1_c02006{left:159.930000px;}
.x3_c02006{left:180.720000px;}
@media print{
.v0_c02006{vertical-align:0.000000pt;}
.ls14_c02006{letter-spacing:-0.064000pt;}
.ls15_c02006{letter-spacing:-0.051200pt;}
.ls13_c02006{letter-spacing:-0.025600pt;}
.ls12_c02006{letter-spacing:-0.019200pt;}
.ls10_c02006{letter-spacing:-0.012800pt;}
.ls11_c02006{letter-spacing:-0.006400pt;}
.lsf_c02006{letter-spacing:0.000000pt;}
.ls8_c02006{letter-spacing:0.006400pt;}
.lsd_c02006{letter-spacing:0.012800pt;}
.ls1_c02006{letter-spacing:0.019200pt;}
.ls9_c02006{letter-spacing:0.025600pt;}
.ls4_c02006{letter-spacing:0.032000pt;}
.ls7_c02006{letter-spacing:0.038400pt;}
.ls5_c02006{letter-spacing:0.044800pt;}
.ls6_c02006{letter-spacing:0.051200pt;}
.lse_c02006{letter-spacing:0.053440pt;}
.ls2_c02006{letter-spacing:0.057600pt;}
.lsb_c02006{letter-spacing:0.064000pt;}
.lsa_c02006{letter-spacing:0.070400pt;}
.ls3_c02006{letter-spacing:0.083200pt;}
.lsc_c02006{letter-spacing:0.121600pt;}
.ls0_c02006{letter-spacing:2155.520000pt;}
.ws1_c02006{word-spacing:-16.038400pt;}
.ws0_c02006{word-spacing:-15.936000pt;}
.ws46_c02006{word-spacing:-0.268800pt;}
.ws27_c02006{word-spacing:-0.128000pt;}
.ws11_c02006{word-spacing:-0.121600pt;}
.ws39_c02006{word-spacing:-0.076800pt;}
.ws45_c02006{word-spacing:-0.057600pt;}
.ws38_c02006{word-spacing:-0.038400pt;}
.ws3b_c02006{word-spacing:-0.019200pt;}
.ws10_c02006{word-spacing:-0.006400pt;}
.ws3_c02006{word-spacing:0.000000pt;}
.ws4d_c02006{word-spacing:0.012800pt;}
.ws2_c02006{word-spacing:0.026720pt;}
.ws26_c02006{word-spacing:0.051200pt;}
.ws4_c02006{word-spacing:1.209600pt;}
.ws5_c02006{word-spacing:1.254400pt;}
.ws43_c02006{word-spacing:1.638400pt;}
.ws17_c02006{word-spacing:1.753600pt;}
.ws16_c02006{word-spacing:1.779200pt;}
.ws44_c02006{word-spacing:1.900800pt;}
.ws3c_c02006{word-spacing:2.003200pt;}
.ws3d_c02006{word-spacing:2.060800pt;}
.ws3e_c02006{word-spacing:2.131200pt;}
.ws1e_c02006{word-spacing:2.700800pt;}
.ws20_c02006{word-spacing:2.771200pt;}
.ws1f_c02006{word-spacing:2.809600pt;}
.ws2a_c02006{word-spacing:2.828800pt;}
.ws1a_c02006{word-spacing:3.020800pt;}
.ws1b_c02006{word-spacing:3.161600pt;}
.ws34_c02006{word-spacing:3.180800pt;}
.ws35_c02006{word-spacing:3.270400pt;}
.ws30_c02006{word-spacing:3.488000pt;}
.ws4e_c02006{word-spacing:4.051200pt;}
.ws4f_c02006{word-spacing:4.102400pt;}
.ws22_c02006{word-spacing:4.710400pt;}
.ws4a_c02006{word-spacing:4.729600pt;}
.ws4b_c02006{word-spacing:4.742400pt;}
.ws47_c02006{word-spacing:4.748800pt;}
.ws21_c02006{word-spacing:4.761600pt;}
.ws48_c02006{word-spacing:5.312000pt;}
.ws49_c02006{word-spacing:5.356800pt;}
.ws42_c02006{word-spacing:5.568000pt;}
.ws3f_c02006{word-spacing:5.606400pt;}
.ws41_c02006{word-spacing:5.612800pt;}
.ws40_c02006{word-spacing:5.760000pt;}
.ws6_c02006{word-spacing:6.918400pt;}
.ws15_c02006{word-spacing:6.950400pt;}
.ws7_c02006{word-spacing:6.956800pt;}
.ws14_c02006{word-spacing:7.014400pt;}
.ws36_c02006{word-spacing:7.187200pt;}
.ws23_c02006{word-spacing:7.257600pt;}
.ws37_c02006{word-spacing:7.270400pt;}
.ws24_c02006{word-spacing:7.308800pt;}
.ws25_c02006{word-spacing:7.353600pt;}
.ws51_c02006{word-spacing:7.603200pt;}
.ws50_c02006{word-spacing:7.705600pt;}
.wse_c02006{word-spacing:7.872000pt;}
.wsd_c02006{word-spacing:7.904000pt;}
.wsf_c02006{word-spacing:7.961600pt;}
.ws32_c02006{word-spacing:8.499200pt;}
.ws33_c02006{word-spacing:8.582400pt;}
.wsb_c02006{word-spacing:8.588800pt;}
.wsc_c02006{word-spacing:8.627200pt;}
.ws31_c02006{word-spacing:8.652800pt;}
.ws2f_c02006{word-spacing:9.491200pt;}
.ws2e_c02006{word-spacing:9.574400pt;}
.ws9_c02006{word-spacing:9.715200pt;}
.wsa_c02006{word-spacing:9.772800pt;}
.ws8_c02006{word-spacing:9.779200pt;}
.ws13_c02006{word-spacing:9.849600pt;}
.ws12_c02006{word-spacing:9.926400pt;}
.ws4c_c02006{word-spacing:11.488000pt;}
.ws1d_c02006{word-spacing:12.716800pt;}
.ws1c_c02006{word-spacing:12.819200pt;}
.ws3a_c02006{word-spacing:14.336000pt;}
.ws28_c02006{word-spacing:14.905600pt;}
.ws29_c02006{word-spacing:15.065600pt;}
.ws18_c02006{word-spacing:16.819200pt;}
.ws19_c02006{word-spacing:16.876800pt;}
.ws2c_c02006{word-spacing:19.481600pt;}
.ws2d_c02006{word-spacing:19.705600pt;}
.ws2b_c02006{word-spacing:19.776000pt;}
._1_c02006{margin-left:-4.102400pt;}
._0_c02006{margin-left:-1.164992pt;}
.fs0_c02006{font-size:53.440000pt;}
.fs1_c02006{font-size:64.000000pt;}
.y0_c02006{bottom:0.000000pt;}
.y2_c02006{bottom:50.987067pt;}
.y2b_c02006{bottom:109.307067pt;}
.y2a_c02006{bottom:130.267067pt;}
.y29_c02006{bottom:159.307067pt;}
.y28_c02006{bottom:180.267067pt;}
.y27_c02006{bottom:201.307067pt;}
.y26_c02006{bottom:222.347067pt;}
.y25_c02006{bottom:243.307067pt;}
.y24_c02006{bottom:272.347067pt;}
.y23_c02006{bottom:301.147067pt;}
.y22_c02006{bottom:330.347067pt;}
.y21_c02006{bottom:359.307067pt;}
.y20_c02006{bottom:380.347067pt;}
.y1f_c02006{bottom:401.307067pt;}
.y1e_c02006{bottom:422.347067pt;}
.y1d_c02006{bottom:443.387067pt;}
.y1c_c02006{bottom:464.347067pt;}
.y1b_c02006{bottom:493.387067pt;}
.y1a_c02006{bottom:514.347067pt;}
.y19_c02006{bottom:535.387067pt;}
.y18_c02006{bottom:556.347067pt;}
.y17_c02006{bottom:577.387067pt;}
.y16_c02006{bottom:598.427067pt;}
.y15_c02006{bottom:619.387067pt;}
.y14_c02006{bottom:640.427067pt;}
.y13_c02006{bottom:661.387067pt;}
.y12_c02006{bottom:690.427067pt;}
.y11_c02006{bottom:711.387067pt;}
.y10_c02006{bottom:732.427067pt;}
.yf_c02006{bottom:753.387067pt;}
.ye_c02006{bottom:774.427067pt;}
.yd_c02006{bottom:795.467067pt;}
.yc_c02006{bottom:816.427067pt;}
.yb_c02006{bottom:837.467067pt;}
.ya_c02006{bottom:858.427067pt;}
.y9_c02006{bottom:879.467067pt;}
.y8_c02006{bottom:908.427067pt;}
.y7_c02006{bottom:929.467067pt;}
.y6_c02006{bottom:950.427067pt;}
.y5_c02006{bottom:971.467067pt;}
.y4_c02006{bottom:992.507067pt;}
.y3_c02006{bottom:1013.467067pt;}
.y1_c02006{bottom:1063.227067pt;}
.h1_c02006{height:53.857500pt;}
.h2_c02006{height:56.156250pt;}
.h3_c02006{height:64.500000pt;}
.h0_c02006{height:1122.666667pt;}
.w1_c02006{width:793.333333pt;}
.w0_c02006{width:793.626667pt;}
.x0_c02006{left:0.000000pt;}
.x2_c02006{left:113.440000pt;}
.x1_c02006{left:142.160000pt;}
.x3_c02006{left:160.640000pt;}
}





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

.ir_c02007:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02007;src:url('chunks/assets/font_4ac07897f41bceb5fcfa94d2.woff2')format("woff");}.ff1_c02007{font-family:ff1_c02007;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02007;src:url('chunks/assets/font_ddbbd67ca67e6cffdde3a1da.woff2')format("woff");}.ff2_c02007{font-family:ff2_c02007;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02007{vertical-align:0.000000px;}
.ls10_c02007{letter-spacing:-0.036000px;}
.ls12_c02007{letter-spacing:-0.028800px;}
.ls14_c02007{letter-spacing:-0.021600px;}
.lsf_c02007{letter-spacing:-0.014400px;}
.ls13_c02007{letter-spacing:-0.007200px;}
.lse_c02007{letter-spacing:0.000000px;}
.ls6_c02007{letter-spacing:0.007200px;}
.ls2_c02007{letter-spacing:0.014400px;}
.ls3_c02007{letter-spacing:0.021600px;}
.ls7_c02007{letter-spacing:0.028800px;}
.ls1_c02007{letter-spacing:0.036000px;}
.ls4_c02007{letter-spacing:0.043200px;}
.ls5_c02007{letter-spacing:0.050400px;}
.ls8_c02007{letter-spacing:0.057600px;}
.lsd_c02007{letter-spacing:0.060120px;}
.lsa_c02007{letter-spacing:0.064800px;}
.lsb_c02007{letter-spacing:0.072000px;}
.ls9_c02007{letter-spacing:0.079200px;}
.ls11_c02007{letter-spacing:0.093600px;}
.lsc_c02007{letter-spacing:0.144000px;}
.ls0_c02007{letter-spacing:2388.960000px;}
.sc__c02007{text-shadow:none;}
.sc0_c02007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02007{-webkit-text-stroke:0px transparent;}
.sc0_c02007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws24_c02007{word-spacing:-0.194400px;}
.ws32_c02007{word-spacing:-0.151200px;}
.ws3d_c02007{word-spacing:-0.144000px;}
.ws3e_c02007{word-spacing:-0.122400px;}
.ws1a_c02007{word-spacing:-0.028800px;}
.ws47_c02007{word-spacing:-0.014400px;}
.wsd_c02007{word-spacing:-0.007200px;}
.ws1_c02007{word-spacing:0.000000px;}
.ws0_c02007{word-spacing:0.030060px;}
.ws46_c02007{word-spacing:0.093600px;}
.ws4c_c02007{word-spacing:0.165600px;}
.wsb_c02007{word-spacing:0.194400px;}
.ws9_c02007{word-spacing:0.252000px;}
.ws4b_c02007{word-spacing:0.324000px;}
.wsa_c02007{word-spacing:0.396000px;}
.ws26_c02007{word-spacing:1.360800px;}
.ws25_c02007{word-spacing:1.389600px;}
.ws27_c02007{word-spacing:1.396800px;}
.ws4d_c02007{word-spacing:1.404000px;}
.ws28_c02007{word-spacing:2.433600px;}
.ws29_c02007{word-spacing:2.577600px;}
.ws2b_c02007{word-spacing:3.067200px;}
.ws48_c02007{word-spacing:3.160800px;}
.ws2c_c02007{word-spacing:3.204000px;}
.ws2a_c02007{word-spacing:3.218400px;}
.wsf_c02007{word-spacing:3.520800px;}
.wse_c02007{word-spacing:3.578400px;}
.ws3f_c02007{word-spacing:4.255200px;}
.ws4a_c02007{word-spacing:4.291200px;}
.ws40_c02007{word-spacing:4.327200px;}
.ws36_c02007{word-spacing:4.536000px;}
.ws49_c02007{word-spacing:4.636800px;}
.ws35_c02007{word-spacing:4.680000px;}
.ws3b_c02007{word-spacing:5.011200px;}
.ws3c_c02007{word-spacing:5.054400px;}
.ws11_c02007{word-spacing:5.659200px;}
.ws10_c02007{word-spacing:5.680800px;}
.ws12_c02007{word-spacing:5.788800px;}
.ws41_c02007{word-spacing:6.105600px;}
.ws42_c02007{word-spacing:6.156000px;}
.ws44_c02007{word-spacing:6.775200px;}
.ws45_c02007{word-spacing:6.832800px;}
.ws2d_c02007{word-spacing:7.041600px;}
.ws2e_c02007{word-spacing:7.149600px;}
.ws2f_c02007{word-spacing:7.171200px;}
.ws31_c02007{word-spacing:7.812000px;}
.ws30_c02007{word-spacing:7.905600px;}
.ws16_c02007{word-spacing:8.611200px;}
.ws15_c02007{word-spacing:8.661600px;}
.ws20_c02007{word-spacing:8.956800px;}
.ws21_c02007{word-spacing:9.028800px;}
.ws6_c02007{word-spacing:9.986400px;}
.ws5_c02007{word-spacing:10.065600px;}
.ws1b_c02007{word-spacing:10.339200px;}
.ws1c_c02007{word-spacing:10.440000px;}
.ws22_c02007{word-spacing:11.455200px;}
.ws23_c02007{word-spacing:11.512800px;}
.ws4_c02007{word-spacing:12.535200px;}
.ws3_c02007{word-spacing:13.111200px;}
.ws38_c02007{word-spacing:13.183200px;}
.ws2_c02007{word-spacing:13.240800px;}
.ws37_c02007{word-spacing:13.298400px;}
.ws33_c02007{word-spacing:16.099200px;}
.ws43_c02007{word-spacing:16.164000px;}
.ws34_c02007{word-spacing:16.171200px;}
.ws19_c02007{word-spacing:18.554400px;}
.ws18_c02007{word-spacing:18.583200px;}
.ws17_c02007{word-spacing:18.655200px;}
.ws13_c02007{word-spacing:18.964800px;}
.ws14_c02007{word-spacing:19.123200px;}
.ws39_c02007{word-spacing:19.267200px;}
.ws3a_c02007{word-spacing:19.411200px;}
.ws1e_c02007{word-spacing:22.262400px;}
.ws1d_c02007{word-spacing:22.312800px;}
.ws1f_c02007{word-spacing:22.341600px;}
.wsc_c02007{word-spacing:29.469600px;}
.ws7_c02007{word-spacing:30.794400px;}
.ws8_c02007{word-spacing:30.960000px;}
._0_c02007{margin-left:-1.310616px;}
.fc0_c02007{color:rgb(0,0,0);}
.fs0_c02007{font-size:60.120000px;}
.fs1_c02007{font-size:72.000000px;}
.y0_c02007{bottom:0.000000px;}
.y2_c02007{bottom:57.360450px;}
.y2b_c02007{bottom:131.970450px;}
.y2a_c02007{bottom:155.550450px;}
.y29_c02007{bottom:179.220450px;}
.y28_c02007{bottom:202.800450px;}
.y27_c02007{bottom:235.470450px;}
.y26_c02007{bottom:259.140450px;}
.y25_c02007{bottom:282.720450px;}
.y24_c02007{bottom:306.390450px;}
.y23_c02007{bottom:329.970450px;}
.y22_c02007{bottom:362.640450px;}
.y21_c02007{bottom:386.220450px;}
.y20_c02007{bottom:409.890450px;}
.y1f_c02007{bottom:433.470450px;}
.y1e_c02007{bottom:457.140450px;}
.y1d_c02007{bottom:480.810450px;}
.y1c_c02007{bottom:513.390450px;}
.y1b_c02007{bottom:537.060450px;}
.y1a_c02007{bottom:560.640450px;}
.y19_c02007{bottom:584.310450px;}
.y18_c02007{bottom:607.890450px;}
.y17_c02007{bottom:640.560450px;}
.y16_c02007{bottom:664.230450px;}
.y15_c02007{bottom:696.810450px;}
.y14_c02007{bottom:720.480450px;}
.y13_c02007{bottom:744.060450px;}
.y12_c02007{bottom:767.730450px;}
.y11_c02007{bottom:791.310450px;}
.y10_c02007{bottom:814.980450px;}
.yf_c02007{bottom:847.560450px;}
.ye_c02007{bottom:871.230450px;}
.yd_c02007{bottom:894.900450px;}
.yc_c02007{bottom:918.480450px;}
.yb_c02007{bottom:942.150450px;}
.ya_c02007{bottom:965.730450px;}
.y9_c02007{bottom:998.400450px;}
.y8_c02007{bottom:1021.980450px;}
.y7_c02007{bottom:1045.650450px;}
.y6_c02007{bottom:1069.230450px;}
.y5_c02007{bottom:1092.900450px;}
.y4_c02007{bottom:1116.570450px;}
.y3_c02007{bottom:1140.150450px;}
.y1_c02007{bottom:1196.130450px;}
.h1_c02007{height:63.175781px;}
.h2_c02007{height:63.351562px;}
.h0_c02007{height:1263.000000px;}
.w1_c02007{width:892.500000px;}
.w0_c02007{width:892.830000px;}
.x0_c02007{left:0.000000px;}
.x1_c02007{left:127.620000px;}
.x2_c02007{left:180.720000px;}
@media print{
.v0_c02007{vertical-align:0.000000pt;}
.ls10_c02007{letter-spacing:-0.032000pt;}
.ls12_c02007{letter-spacing:-0.025600pt;}
.ls14_c02007{letter-spacing:-0.019200pt;}
.lsf_c02007{letter-spacing:-0.012800pt;}
.ls13_c02007{letter-spacing:-0.006400pt;}
.lse_c02007{letter-spacing:0.000000pt;}
.ls6_c02007{letter-spacing:0.006400pt;}
.ls2_c02007{letter-spacing:0.012800pt;}
.ls3_c02007{letter-spacing:0.019200pt;}
.ls7_c02007{letter-spacing:0.025600pt;}
.ls1_c02007{letter-spacing:0.032000pt;}
.ls4_c02007{letter-spacing:0.038400pt;}
.ls5_c02007{letter-spacing:0.044800pt;}
.ls8_c02007{letter-spacing:0.051200pt;}
.lsd_c02007{letter-spacing:0.053440pt;}
.lsa_c02007{letter-spacing:0.057600pt;}
.lsb_c02007{letter-spacing:0.064000pt;}
.ls9_c02007{letter-spacing:0.070400pt;}
.ls11_c02007{letter-spacing:0.083200pt;}
.lsc_c02007{letter-spacing:0.128000pt;}
.ls0_c02007{letter-spacing:2123.520000pt;}
.ws24_c02007{word-spacing:-0.172800pt;}
.ws32_c02007{word-spacing:-0.134400pt;}
.ws3d_c02007{word-spacing:-0.128000pt;}
.ws3e_c02007{word-spacing:-0.108800pt;}
.ws1a_c02007{word-spacing:-0.025600pt;}
.ws47_c02007{word-spacing:-0.012800pt;}
.wsd_c02007{word-spacing:-0.006400pt;}
.ws1_c02007{word-spacing:0.000000pt;}
.ws0_c02007{word-spacing:0.026720pt;}
.ws46_c02007{word-spacing:0.083200pt;}
.ws4c_c02007{word-spacing:0.147200pt;}
.wsb_c02007{word-spacing:0.172800pt;}
.ws9_c02007{word-spacing:0.224000pt;}
.ws4b_c02007{word-spacing:0.288000pt;}
.wsa_c02007{word-spacing:0.352000pt;}
.ws26_c02007{word-spacing:1.209600pt;}
.ws25_c02007{word-spacing:1.235200pt;}
.ws27_c02007{word-spacing:1.241600pt;}
.ws4d_c02007{word-spacing:1.248000pt;}
.ws28_c02007{word-spacing:2.163200pt;}
.ws29_c02007{word-spacing:2.291200pt;}
.ws2b_c02007{word-spacing:2.726400pt;}
.ws48_c02007{word-spacing:2.809600pt;}
.ws2c_c02007{word-spacing:2.848000pt;}
.ws2a_c02007{word-spacing:2.860800pt;}
.wsf_c02007{word-spacing:3.129600pt;}
.wse_c02007{word-spacing:3.180800pt;}
.ws3f_c02007{word-spacing:3.782400pt;}
.ws4a_c02007{word-spacing:3.814400pt;}
.ws40_c02007{word-spacing:3.846400pt;}
.ws36_c02007{word-spacing:4.032000pt;}
.ws49_c02007{word-spacing:4.121600pt;}
.ws35_c02007{word-spacing:4.160000pt;}
.ws3b_c02007{word-spacing:4.454400pt;}
.ws3c_c02007{word-spacing:4.492800pt;}
.ws11_c02007{word-spacing:5.030400pt;}
.ws10_c02007{word-spacing:5.049600pt;}
.ws12_c02007{word-spacing:5.145600pt;}
.ws41_c02007{word-spacing:5.427200pt;}
.ws42_c02007{word-spacing:5.472000pt;}
.ws44_c02007{word-spacing:6.022400pt;}
.ws45_c02007{word-spacing:6.073600pt;}
.ws2d_c02007{word-spacing:6.259200pt;}
.ws2e_c02007{word-spacing:6.355200pt;}
.ws2f_c02007{word-spacing:6.374400pt;}
.ws31_c02007{word-spacing:6.944000pt;}
.ws30_c02007{word-spacing:7.027200pt;}
.ws16_c02007{word-spacing:7.654400pt;}
.ws15_c02007{word-spacing:7.699200pt;}
.ws20_c02007{word-spacing:7.961600pt;}
.ws21_c02007{word-spacing:8.025600pt;}
.ws6_c02007{word-spacing:8.876800pt;}
.ws5_c02007{word-spacing:8.947200pt;}
.ws1b_c02007{word-spacing:9.190400pt;}
.ws1c_c02007{word-spacing:9.280000pt;}
.ws22_c02007{word-spacing:10.182400pt;}
.ws23_c02007{word-spacing:10.233600pt;}
.ws4_c02007{word-spacing:11.142400pt;}
.ws3_c02007{word-spacing:11.654400pt;}
.ws38_c02007{word-spacing:11.718400pt;}
.ws2_c02007{word-spacing:11.769600pt;}
.ws37_c02007{word-spacing:11.820800pt;}
.ws33_c02007{word-spacing:14.310400pt;}
.ws43_c02007{word-spacing:14.368000pt;}
.ws34_c02007{word-spacing:14.374400pt;}
.ws19_c02007{word-spacing:16.492800pt;}
.ws18_c02007{word-spacing:16.518400pt;}
.ws17_c02007{word-spacing:16.582400pt;}
.ws13_c02007{word-spacing:16.857600pt;}
.ws14_c02007{word-spacing:16.998400pt;}
.ws39_c02007{word-spacing:17.126400pt;}
.ws3a_c02007{word-spacing:17.254400pt;}
.ws1e_c02007{word-spacing:19.788800pt;}
.ws1d_c02007{word-spacing:19.833600pt;}
.ws1f_c02007{word-spacing:19.859200pt;}
.wsc_c02007{word-spacing:26.195200pt;}
.ws7_c02007{word-spacing:27.372800pt;}
.ws8_c02007{word-spacing:27.520000pt;}
._0_c02007{margin-left:-1.164992pt;}
.fs0_c02007{font-size:53.440000pt;}
.fs1_c02007{font-size:64.000000pt;}
.y0_c02007{bottom:0.000000pt;}
.y2_c02007{bottom:50.987067pt;}
.y2b_c02007{bottom:117.307067pt;}
.y2a_c02007{bottom:138.267067pt;}
.y29_c02007{bottom:159.307067pt;}
.y28_c02007{bottom:180.267067pt;}
.y27_c02007{bottom:209.307067pt;}
.y26_c02007{bottom:230.347067pt;}
.y25_c02007{bottom:251.307067pt;}
.y24_c02007{bottom:272.347067pt;}
.y23_c02007{bottom:293.307067pt;}
.y22_c02007{bottom:322.347067pt;}
.y21_c02007{bottom:343.307067pt;}
.y20_c02007{bottom:364.347067pt;}
.y1f_c02007{bottom:385.307067pt;}
.y1e_c02007{bottom:406.347067pt;}
.y1d_c02007{bottom:427.387067pt;}
.y1c_c02007{bottom:456.347067pt;}
.y1b_c02007{bottom:477.387067pt;}
.y1a_c02007{bottom:498.347067pt;}
.y19_c02007{bottom:519.387067pt;}
.y18_c02007{bottom:540.347067pt;}
.y17_c02007{bottom:569.387067pt;}
.y16_c02007{bottom:590.427067pt;}
.y15_c02007{bottom:619.387067pt;}
.y14_c02007{bottom:640.427067pt;}
.y13_c02007{bottom:661.387067pt;}
.y12_c02007{bottom:682.427067pt;}
.y11_c02007{bottom:703.387067pt;}
.y10_c02007{bottom:724.427067pt;}
.yf_c02007{bottom:753.387067pt;}
.ye_c02007{bottom:774.427067pt;}
.yd_c02007{bottom:795.467067pt;}
.yc_c02007{bottom:816.427067pt;}
.yb_c02007{bottom:837.467067pt;}
.ya_c02007{bottom:858.427067pt;}
.y9_c02007{bottom:887.467067pt;}
.y8_c02007{bottom:908.427067pt;}
.y7_c02007{bottom:929.467067pt;}
.y6_c02007{bottom:950.427067pt;}
.y5_c02007{bottom:971.467067pt;}
.y4_c02007{bottom:992.507067pt;}
.y3_c02007{bottom:1013.467067pt;}
.y1_c02007{bottom:1063.227067pt;}
.h1_c02007{height:56.156250pt;}
.h2_c02007{height:56.312500pt;}
.h0_c02007{height:1122.666667pt;}
.w1_c02007{width:793.333333pt;}
.w0_c02007{width:793.626667pt;}
.x0_c02007{left:0.000000pt;}
.x1_c02007{left:113.440000pt;}
.x2_c02007{left:160.640000pt;}
}





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

.ir_c02008:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02008;src:url('chunks/assets/font_da02dfc9f2da17c6af3e0c48.woff2')format("woff");}.ff1_c02008{font-family:ff1_c02008;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02008;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2_c02008{font-family:ff2_c02008;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_c02008;src:url('chunks/assets/font_664973393d421234d307cd31.woff2')format("woff");}.ff3_c02008{font-family:ff3_c02008;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02008{vertical-align:0.000000px;}
.ls12_c02008{letter-spacing:-0.360000px;}
.ls13_c02008{letter-spacing:-0.028800px;}
.ls11_c02008{letter-spacing:-0.021600px;}
.ls14_c02008{letter-spacing:-0.014400px;}
.ls10_c02008{letter-spacing:-0.007200px;}
.lsf_c02008{letter-spacing:0.000000px;}
.lsa_c02008{letter-spacing:0.007200px;}
.ls2_c02008{letter-spacing:0.014400px;}
.ls1_c02008{letter-spacing:0.021600px;}
.ls8_c02008{letter-spacing:0.028800px;}
.ls3_c02008{letter-spacing:0.036000px;}
.ls4_c02008{letter-spacing:0.043200px;}
.lsb_c02008{letter-spacing:0.050400px;}
.ls9_c02008{letter-spacing:0.057600px;}
.lse_c02008{letter-spacing:0.060120px;}
.ls6_c02008{letter-spacing:0.064800px;}
.lsd_c02008{letter-spacing:0.079200px;}
.ls7_c02008{letter-spacing:0.086400px;}
.ls5_c02008{letter-spacing:0.100800px;}
.lsc_c02008{letter-spacing:0.108000px;}
.ls15_c02008{letter-spacing:0.360000px;}
.ls0_c02008{letter-spacing:2388.960000px;}
.sc__c02008{text-shadow:none;}
.sc0_c02008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02008{-webkit-text-stroke:0px transparent;}
.sc0_c02008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02008{word-spacing:-18.086400px;}
.wsa_c02008{word-spacing:-0.158400px;}
.ws2a_c02008{word-spacing:-0.115200px;}
.ws20_c02008{word-spacing:-0.093600px;}
.ws14_c02008{word-spacing:-0.079200px;}
.ws1a_c02008{word-spacing:-0.057600px;}
.ws1f_c02008{word-spacing:-0.050400px;}
.ws21_c02008{word-spacing:-0.028800px;}
.ws13_c02008{word-spacing:-0.014400px;}
.ws2_c02008{word-spacing:0.000000px;}
.ws19_c02008{word-spacing:0.007200px;}
.ws1_c02008{word-spacing:0.030060px;}
.ws10_c02008{word-spacing:0.230400px;}
.wsc_c02008{word-spacing:0.237600px;}
.wsf_c02008{word-spacing:0.273600px;}
.wsb_c02008{word-spacing:0.324000px;}
.ws8_c02008{word-spacing:0.619200px;}
.ws9_c02008{word-spacing:0.741600px;}
.ws3b_c02008{word-spacing:0.972000px;}
.ws3a_c02008{word-spacing:1.051200px;}
.ws35_c02008{word-spacing:1.375200px;}
.ws34_c02008{word-spacing:1.396800px;}
.ws18_c02008{word-spacing:2.491200px;}
.ws25_c02008{word-spacing:2.721600px;}
.ws6_c02008{word-spacing:2.743200px;}
.ws5_c02008{word-spacing:2.793600px;}
.ws7_c02008{word-spacing:2.844000px;}
.ws32_c02008{word-spacing:2.858400px;}
.ws31_c02008{word-spacing:2.880000px;}
.ws24_c02008{word-spacing:2.908800px;}
.ws33_c02008{word-spacing:2.916000px;}
.ws2e_c02008{word-spacing:3.153600px;}
.ws4_c02008{word-spacing:3.160800px;}
.ws3_c02008{word-spacing:3.189600px;}
.ws49_c02008{word-spacing:3.204000px;}
.ws2d_c02008{word-spacing:3.261600px;}
.ws1d_c02008{word-spacing:3.499200px;}
.ws1e_c02008{word-spacing:3.592800px;}
.ws47_c02008{word-spacing:3.744000px;}
.ws43_c02008{word-spacing:3.852000px;}
.ws44_c02008{word-spacing:3.945600px;}
.ws48_c02008{word-spacing:3.981600px;}
.wse_c02008{word-spacing:4.615200px;}
.wsd_c02008{word-spacing:4.658400px;}
.ws12_c02008{word-spacing:4.831200px;}
.ws26_c02008{word-spacing:4.939200px;}
.ws11_c02008{word-spacing:5.004000px;}
.ws27_c02008{word-spacing:5.119200px;}
.ws4a_c02008{word-spacing:5.306400px;}
.ws22_c02008{word-spacing:5.349600px;}
.ws4b_c02008{word-spacing:5.414400px;}
.ws23_c02008{word-spacing:5.421600px;}
.ws45_c02008{word-spacing:6.573600px;}
.ws46_c02008{word-spacing:6.717600px;}
.ws3c_c02008{word-spacing:6.804000px;}
.ws29_c02008{word-spacing:8.553600px;}
.ws28_c02008{word-spacing:8.618400px;}
.ws17_c02008{word-spacing:10.087200px;}
.ws15_c02008{word-spacing:10.101600px;}
.ws16_c02008{word-spacing:10.108800px;}
.ws36_c02008{word-spacing:10.713600px;}
.ws1c_c02008{word-spacing:12.225600px;}
.ws1b_c02008{word-spacing:12.355200px;}
.ws3d_c02008{word-spacing:14.277600px;}
.ws3e_c02008{word-spacing:14.299200px;}
.ws41_c02008{word-spacing:15.746400px;}
.ws42_c02008{word-spacing:15.868800px;}
.ws3f_c02008{word-spacing:21.240000px;}
.ws40_c02008{word-spacing:21.261600px;}
.ws30_c02008{word-spacing:23.032800px;}
.ws2f_c02008{word-spacing:23.076000px;}
.ws39_c02008{word-spacing:31.140000px;}
.ws38_c02008{word-spacing:31.197600px;}
.ws37_c02008{word-spacing:31.284000px;}
.ws2c_c02008{word-spacing:42.343200px;}
.ws2b_c02008{word-spacing:42.400800px;}
._0_c02008{margin-left:-1.310616px;}
.fc0_c02008{color:rgb(0,0,0);}
.fs0_c02008{font-size:60.120000px;}
.fs1_c02008{font-size:72.000000px;}
.y0_c02008{bottom:0.000000px;}
.y2_c02008{bottom:57.360450px;}
.y2a_c02008{bottom:164.550450px;}
.y29_c02008{bottom:188.220450px;}
.y28_c02008{bottom:211.800450px;}
.y27_c02008{bottom:235.470450px;}
.y26_c02008{bottom:259.140450px;}
.y25_c02008{bottom:282.720450px;}
.y24_c02008{bottom:306.390450px;}
.y23_c02008{bottom:329.970450px;}
.y22_c02008{bottom:353.640450px;}
.y21_c02008{bottom:377.220450px;}
.y20_c02008{bottom:409.890450px;}
.y1f_c02008{bottom:433.470450px;}
.y1e_c02008{bottom:457.140450px;}
.y1d_c02008{bottom:480.810450px;}
.y1c_c02008{bottom:504.390450px;}
.y1b_c02008{bottom:528.060450px;}
.y1a_c02008{bottom:551.640450px;}
.y19_c02008{bottom:575.310450px;}
.y18_c02008{bottom:598.890450px;}
.y17_c02008{bottom:631.560450px;}
.y16_c02008{bottom:655.230450px;}
.y15_c02008{bottom:678.810450px;}
.y14_c02008{bottom:702.480450px;}
.y13_c02008{bottom:726.060450px;}
.y12_c02008{bottom:749.730450px;}
.y11_c02008{bottom:782.310450px;}
.y10_c02008{bottom:805.980450px;}
.yf_c02008{bottom:829.560450px;}
.ye_c02008{bottom:862.230450px;}
.yd_c02008{bottom:885.900450px;}
.yc_c02008{bottom:909.480450px;}
.yb_c02008{bottom:942.150450px;}
.ya_c02008{bottom:965.730450px;}
.y9_c02008{bottom:989.400450px;}
.y8_c02008{bottom:1012.980450px;}
.y7_c02008{bottom:1036.650450px;}
.y6_c02008{bottom:1069.230450px;}
.y5_c02008{bottom:1092.900450px;}
.y4_c02008{bottom:1116.570450px;}
.y3_c02008{bottom:1140.150450px;}
.y1_c02008{bottom:1196.130450px;}
.h1_c02008{height:60.589687px;}
.h2_c02008{height:63.175781px;}
.h3_c02008{height:63.351562px;}
.h0_c02008{height:1263.000000px;}
.w1_c02008{width:892.500000px;}
.w0_c02008{width:892.830000px;}
.x0_c02008{left:0.000000px;}
.x2_c02008{left:127.620000px;}
.x1_c02008{left:159.930000px;}
.x3_c02008{left:180.720000px;}
@media print{
.v0_c02008{vertical-align:0.000000pt;}
.ls12_c02008{letter-spacing:-0.320000pt;}
.ls13_c02008{letter-spacing:-0.025600pt;}
.ls11_c02008{letter-spacing:-0.019200pt;}
.ls14_c02008{letter-spacing:-0.012800pt;}
.ls10_c02008{letter-spacing:-0.006400pt;}
.lsf_c02008{letter-spacing:0.000000pt;}
.lsa_c02008{letter-spacing:0.006400pt;}
.ls2_c02008{letter-spacing:0.012800pt;}
.ls1_c02008{letter-spacing:0.019200pt;}
.ls8_c02008{letter-spacing:0.025600pt;}
.ls3_c02008{letter-spacing:0.032000pt;}
.ls4_c02008{letter-spacing:0.038400pt;}
.lsb_c02008{letter-spacing:0.044800pt;}
.ls9_c02008{letter-spacing:0.051200pt;}
.lse_c02008{letter-spacing:0.053440pt;}
.ls6_c02008{letter-spacing:0.057600pt;}
.lsd_c02008{letter-spacing:0.070400pt;}
.ls7_c02008{letter-spacing:0.076800pt;}
.ls5_c02008{letter-spacing:0.089600pt;}
.lsc_c02008{letter-spacing:0.096000pt;}
.ls15_c02008{letter-spacing:0.320000pt;}
.ls0_c02008{letter-spacing:2123.520000pt;}
.ws0_c02008{word-spacing:-16.076800pt;}
.wsa_c02008{word-spacing:-0.140800pt;}
.ws2a_c02008{word-spacing:-0.102400pt;}
.ws20_c02008{word-spacing:-0.083200pt;}
.ws14_c02008{word-spacing:-0.070400pt;}
.ws1a_c02008{word-spacing:-0.051200pt;}
.ws1f_c02008{word-spacing:-0.044800pt;}
.ws21_c02008{word-spacing:-0.025600pt;}
.ws13_c02008{word-spacing:-0.012800pt;}
.ws2_c02008{word-spacing:0.000000pt;}
.ws19_c02008{word-spacing:0.006400pt;}
.ws1_c02008{word-spacing:0.026720pt;}
.ws10_c02008{word-spacing:0.204800pt;}
.wsc_c02008{word-spacing:0.211200pt;}
.wsf_c02008{word-spacing:0.243200pt;}
.wsb_c02008{word-spacing:0.288000pt;}
.ws8_c02008{word-spacing:0.550400pt;}
.ws9_c02008{word-spacing:0.659200pt;}
.ws3b_c02008{word-spacing:0.864000pt;}
.ws3a_c02008{word-spacing:0.934400pt;}
.ws35_c02008{word-spacing:1.222400pt;}
.ws34_c02008{word-spacing:1.241600pt;}
.ws18_c02008{word-spacing:2.214400pt;}
.ws25_c02008{word-spacing:2.419200pt;}
.ws6_c02008{word-spacing:2.438400pt;}
.ws5_c02008{word-spacing:2.483200pt;}
.ws7_c02008{word-spacing:2.528000pt;}
.ws32_c02008{word-spacing:2.540800pt;}
.ws31_c02008{word-spacing:2.560000pt;}
.ws24_c02008{word-spacing:2.585600pt;}
.ws33_c02008{word-spacing:2.592000pt;}
.ws2e_c02008{word-spacing:2.803200pt;}
.ws4_c02008{word-spacing:2.809600pt;}
.ws3_c02008{word-spacing:2.835200pt;}
.ws49_c02008{word-spacing:2.848000pt;}
.ws2d_c02008{word-spacing:2.899200pt;}
.ws1d_c02008{word-spacing:3.110400pt;}
.ws1e_c02008{word-spacing:3.193600pt;}
.ws47_c02008{word-spacing:3.328000pt;}
.ws43_c02008{word-spacing:3.424000pt;}
.ws44_c02008{word-spacing:3.507200pt;}
.ws48_c02008{word-spacing:3.539200pt;}
.wse_c02008{word-spacing:4.102400pt;}
.wsd_c02008{word-spacing:4.140800pt;}
.ws12_c02008{word-spacing:4.294400pt;}
.ws26_c02008{word-spacing:4.390400pt;}
.ws11_c02008{word-spacing:4.448000pt;}
.ws27_c02008{word-spacing:4.550400pt;}
.ws4a_c02008{word-spacing:4.716800pt;}
.ws22_c02008{word-spacing:4.755200pt;}
.ws4b_c02008{word-spacing:4.812800pt;}
.ws23_c02008{word-spacing:4.819200pt;}
.ws45_c02008{word-spacing:5.843200pt;}
.ws46_c02008{word-spacing:5.971200pt;}
.ws3c_c02008{word-spacing:6.048000pt;}
.ws29_c02008{word-spacing:7.603200pt;}
.ws28_c02008{word-spacing:7.660800pt;}
.ws17_c02008{word-spacing:8.966400pt;}
.ws15_c02008{word-spacing:8.979200pt;}
.ws16_c02008{word-spacing:8.985600pt;}
.ws36_c02008{word-spacing:9.523200pt;}
.ws1c_c02008{word-spacing:10.867200pt;}
.ws1b_c02008{word-spacing:10.982400pt;}
.ws3d_c02008{word-spacing:12.691200pt;}
.ws3e_c02008{word-spacing:12.710400pt;}
.ws41_c02008{word-spacing:13.996800pt;}
.ws42_c02008{word-spacing:14.105600pt;}
.ws3f_c02008{word-spacing:18.880000pt;}
.ws40_c02008{word-spacing:18.899200pt;}
.ws30_c02008{word-spacing:20.473600pt;}
.ws2f_c02008{word-spacing:20.512000pt;}
.ws39_c02008{word-spacing:27.680000pt;}
.ws38_c02008{word-spacing:27.731200pt;}
.ws37_c02008{word-spacing:27.808000pt;}
.ws2c_c02008{word-spacing:37.638400pt;}
.ws2b_c02008{word-spacing:37.689600pt;}
._0_c02008{margin-left:-1.164992pt;}
.fs0_c02008{font-size:53.440000pt;}
.fs1_c02008{font-size:64.000000pt;}
.y0_c02008{bottom:0.000000pt;}
.y2_c02008{bottom:50.987067pt;}
.y2a_c02008{bottom:146.267067pt;}
.y29_c02008{bottom:167.307067pt;}
.y28_c02008{bottom:188.267067pt;}
.y27_c02008{bottom:209.307067pt;}
.y26_c02008{bottom:230.347067pt;}
.y25_c02008{bottom:251.307067pt;}
.y24_c02008{bottom:272.347067pt;}
.y23_c02008{bottom:293.307067pt;}
.y22_c02008{bottom:314.347067pt;}
.y21_c02008{bottom:335.307067pt;}
.y20_c02008{bottom:364.347067pt;}
.y1f_c02008{bottom:385.307067pt;}
.y1e_c02008{bottom:406.347067pt;}
.y1d_c02008{bottom:427.387067pt;}
.y1c_c02008{bottom:448.347067pt;}
.y1b_c02008{bottom:469.387067pt;}
.y1a_c02008{bottom:490.347067pt;}
.y19_c02008{bottom:511.387067pt;}
.y18_c02008{bottom:532.347067pt;}
.y17_c02008{bottom:561.387067pt;}
.y16_c02008{bottom:582.427067pt;}
.y15_c02008{bottom:603.387067pt;}
.y14_c02008{bottom:624.427067pt;}
.y13_c02008{bottom:645.387067pt;}
.y12_c02008{bottom:666.427067pt;}
.y11_c02008{bottom:695.387067pt;}
.y10_c02008{bottom:716.427067pt;}
.yf_c02008{bottom:737.387067pt;}
.ye_c02008{bottom:766.427067pt;}
.yd_c02008{bottom:787.467067pt;}
.yc_c02008{bottom:808.427067pt;}
.yb_c02008{bottom:837.467067pt;}
.ya_c02008{bottom:858.427067pt;}
.y9_c02008{bottom:879.467067pt;}
.y8_c02008{bottom:900.427067pt;}
.y7_c02008{bottom:921.467067pt;}
.y6_c02008{bottom:950.427067pt;}
.y5_c02008{bottom:971.467067pt;}
.y4_c02008{bottom:992.507067pt;}
.y3_c02008{bottom:1013.467067pt;}
.y1_c02008{bottom:1063.227067pt;}
.h1_c02008{height:53.857500pt;}
.h2_c02008{height:56.156250pt;}
.h3_c02008{height:56.312500pt;}
.h0_c02008{height:1122.666667pt;}
.w1_c02008{width:793.333333pt;}
.w0_c02008{width:793.626667pt;}
.x0_c02008{left:0.000000pt;}
.x2_c02008{left:113.440000pt;}
.x1_c02008{left:142.160000pt;}
.x3_c02008{left:160.640000pt;}
}





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

.ir_c02009:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02009;src:url('chunks/assets/font_6656a00dbcbd37c6a8929c35.woff2')format("woff");}.ff1_c02009{font-family:ff1_c02009;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c02009{vertical-align:-27.000000px;}
.v0_c02009{vertical-align:0.000000px;}
.v1_c02009{vertical-align:33.120000px;}
.ls15_c02009{letter-spacing:-0.132264px;}
.ls13_c02009{letter-spacing:-0.050400px;}
.ls14_c02009{letter-spacing:-0.036000px;}
.ls11_c02009{letter-spacing:-0.028800px;}
.ls10_c02009{letter-spacing:-0.021600px;}
.lsf_c02009{letter-spacing:-0.014400px;}
.ls12_c02009{letter-spacing:-0.007200px;}
.lse_c02009{letter-spacing:0.000000px;}
.ls4_c02009{letter-spacing:0.007200px;}
.ls8_c02009{letter-spacing:0.014400px;}
.lsc_c02009{letter-spacing:0.021600px;}
.ls7_c02009{letter-spacing:0.028800px;}
.ls5_c02009{letter-spacing:0.036000px;}
.ls9_c02009{letter-spacing:0.043200px;}
.ls1_c02009{letter-spacing:0.050400px;}
.ls2_c02009{letter-spacing:0.057600px;}
.lsd_c02009{letter-spacing:0.060120px;}
.ls6_c02009{letter-spacing:0.064800px;}
.lsb_c02009{letter-spacing:0.086400px;}
.lsa_c02009{letter-spacing:0.100800px;}
.ls3_c02009{letter-spacing:0.180000px;}
.ls0_c02009{letter-spacing:2388.960000px;}
.sc__c02009{text-shadow:none;}
.sc0_c02009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02009{-webkit-text-stroke:0px transparent;}
.sc0_c02009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02009{word-spacing:-18.057600px;}
.ws1_c02009{word-spacing:-9.720000px;}
.ws42_c02009{word-spacing:-0.129600px;}
.ws32_c02009{word-spacing:-0.100800px;}
.ws16_c02009{word-spacing:-0.064800px;}
.ws25_c02009{word-spacing:-0.050400px;}
.ws44_c02009{word-spacing:-0.036000px;}
.ws4e_c02009{word-spacing:-0.021600px;}
.ws33_c02009{word-spacing:-0.014400px;}
.ws3_c02009{word-spacing:0.000000px;}
.ws43_c02009{word-spacing:0.007200px;}
.ws2_c02009{word-spacing:0.030060px;}
.ws3c_c02009{word-spacing:0.691200px;}
.ws2c_c02009{word-spacing:1.173600px;}
.ws2b_c02009{word-spacing:1.267200px;}
.ws1e_c02009{word-spacing:1.396800px;}
.ws1d_c02009{word-spacing:1.447200px;}
.ws2d_c02009{word-spacing:1.490400px;}
.ws38_c02009{word-spacing:2.073600px;}
.ws37_c02009{word-spacing:2.131200px;}
.ws36_c02009{word-spacing:2.829600px;}
.ws34_c02009{word-spacing:2.836800px;}
.ws35_c02009{word-spacing:2.887200px;}
.ws2f_c02009{word-spacing:3.088800px;}
.ws2e_c02009{word-spacing:3.146400px;}
.ws28_c02009{word-spacing:3.931200px;}
.ws4f_c02009{word-spacing:6.342660px;}
.ws15_c02009{word-spacing:6.393600px;}
.ws39_c02009{word-spacing:6.422400px;}
.ws14_c02009{word-spacing:6.429600px;}
.ws3b_c02009{word-spacing:7.473600px;}
.ws3a_c02009{word-spacing:7.509600px;}
.ws4a_c02009{word-spacing:7.754400px;}
.ws49_c02009{word-spacing:7.912800px;}
.ws4b_c02009{word-spacing:7.934400px;}
.ws48_c02009{word-spacing:8.085600px;}
.ws47_c02009{word-spacing:8.143200px;}
.ws46_c02009{word-spacing:8.150400px;}
.ws30_c02009{word-spacing:8.452800px;}
.ws31_c02009{word-spacing:8.611200px;}
.ws1c_c02009{word-spacing:8.884800px;}
.wsa_c02009{word-spacing:8.964000px;}
.wsb_c02009{word-spacing:8.971200px;}
.ws3e_c02009{word-spacing:9.237600px;}
.ws3f_c02009{word-spacing:9.331200px;}
.ws3d_c02009{word-spacing:9.338400px;}
.ws4d_c02009{word-spacing:9.612000px;}
.ws4c_c02009{word-spacing:9.705600px;}
.ws18_c02009{word-spacing:9.950400px;}
.ws17_c02009{word-spacing:10.101600px;}
.ws41_c02009{word-spacing:11.131200px;}
.ws40_c02009{word-spacing:11.188800px;}
.ws10_c02009{word-spacing:11.455200px;}
.ws11_c02009{word-spacing:11.484000px;}
.ws45_c02009{word-spacing:11.851200px;}
.ws26_c02009{word-spacing:12.117600px;}
.ws27_c02009{word-spacing:12.153600px;}
.ws1f_c02009{word-spacing:13.795200px;}
.ws20_c02009{word-spacing:14.047200px;}
.ws21_c02009{word-spacing:14.054400px;}
.ws9_c02009{word-spacing:14.565600px;}
.ws6_c02009{word-spacing:14.572800px;}
.ws8_c02009{word-spacing:14.659200px;}
.ws7_c02009{word-spacing:14.774400px;}
.ws4_c02009{word-spacing:15.652800px;}
.ws5_c02009{word-spacing:15.739200px;}
.wsc_c02009{word-spacing:15.775200px;}
.wsd_c02009{word-spacing:15.804000px;}
.ws12_c02009{word-spacing:16.531200px;}
.ws13_c02009{word-spacing:16.545600px;}
.ws29_c02009{word-spacing:17.553600px;}
.ws2a_c02009{word-spacing:17.654400px;}
.ws1a_c02009{word-spacing:18.583200px;}
.ws1b_c02009{word-spacing:18.662400px;}
.ws19_c02009{word-spacing:18.748800px;}
.wsf_c02009{word-spacing:21.909600px;}
.wse_c02009{word-spacing:21.952800px;}
.ws23_c02009{word-spacing:27.892800px;}
.ws24_c02009{word-spacing:27.964800px;}
.ws22_c02009{word-spacing:28.015200px;}
._2_c02009{margin-left:-6.120216px;}
._1_c02009{margin-left:-2.880000px;}
._0_c02009{margin-left:-1.310616px;}
._3_c02009{width:1.070136px;}
.fc0_c02009{color:rgb(0,0,0);}
.fs3_c02009{font-size:38.880000px;}
.fs2_c02009{font-size:47.880000px;}
.fs0_c02009{font-size:60.120000px;}
.fs1_c02009{font-size:72.000000px;}
.y0_c02009{bottom:0.000000px;}
.y2_c02009{bottom:57.360450px;}
.y2c_c02009{bottom:109.920639px;}
.y2b_c02009{bottom:133.860450px;}
.y2a_c02009{bottom:145.020450px;}
.y29_c02009{bottom:188.220450px;}
.y28_c02009{bottom:211.800450px;}
.y27_c02009{bottom:235.470450px;}
.y26_c02009{bottom:259.140450px;}
.y25_c02009{bottom:282.720450px;}
.y24_c02009{bottom:315.390450px;}
.y23_c02009{bottom:338.970450px;}
.y22_c02009{bottom:362.640450px;}
.y21_c02009{bottom:386.220450px;}
.y20_c02009{bottom:409.890450px;}
.y1f_c02009{bottom:433.470450px;}
.y1e_c02009{bottom:466.140450px;}
.y1d_c02009{bottom:489.810450px;}
.y1c_c02009{bottom:513.390450px;}
.y1b_c02009{bottom:537.060450px;}
.y1a_c02009{bottom:569.640450px;}
.y19_c02009{bottom:593.310450px;}
.y18_c02009{bottom:616.890450px;}
.y17_c02009{bottom:640.560450px;}
.y16_c02009{bottom:664.230450px;}
.y15_c02009{bottom:687.810450px;}
.y14_c02009{bottom:711.480450px;}
.y13_c02009{bottom:744.060450px;}
.y12_c02009{bottom:767.730450px;}
.y11_c02009{bottom:791.310450px;}
.y10_c02009{bottom:814.980450px;}
.yf_c02009{bottom:838.560450px;}
.ye_c02009{bottom:862.230450px;}
.yd_c02009{bottom:885.900450px;}
.yc_c02009{bottom:918.480450px;}
.yb_c02009{bottom:942.150450px;}
.ya_c02009{bottom:965.730450px;}
.y9_c02009{bottom:989.400450px;}
.y8_c02009{bottom:1012.980450px;}
.y7_c02009{bottom:1036.650450px;}
.y6_c02009{bottom:1060.230450px;}
.y5_c02009{bottom:1083.900450px;}
.y4_c02009{bottom:1116.570450px;}
.y3_c02009{bottom:1140.150450px;}
.y1_c02009{bottom:1196.130450px;}
.h3_c02009{height:34.114922px;}
.h4_c02009{height:52.751777px;}
.h1_c02009{height:63.175781px;}
.h2_c02009{height:75.131895px;}
.h0_c02009{height:1263.000000px;}
.w1_c02009{width:892.500000px;}
.w0_c02009{width:892.830000px;}
.x0_c02009{left:0.000000px;}
.x1_c02009{left:127.620000px;}
.x2_c02009{left:180.720000px;}
@media print{
.v2_c02009{vertical-align:-24.000000pt;}
.v0_c02009{vertical-align:0.000000pt;}
.v1_c02009{vertical-align:29.440000pt;}
.ls15_c02009{letter-spacing:-0.117568pt;}
.ls13_c02009{letter-spacing:-0.044800pt;}
.ls14_c02009{letter-spacing:-0.032000pt;}
.ls11_c02009{letter-spacing:-0.025600pt;}
.ls10_c02009{letter-spacing:-0.019200pt;}
.lsf_c02009{letter-spacing:-0.012800pt;}
.ls12_c02009{letter-spacing:-0.006400pt;}
.lse_c02009{letter-spacing:0.000000pt;}
.ls4_c02009{letter-spacing:0.006400pt;}
.ls8_c02009{letter-spacing:0.012800pt;}
.lsc_c02009{letter-spacing:0.019200pt;}
.ls7_c02009{letter-spacing:0.025600pt;}
.ls5_c02009{letter-spacing:0.032000pt;}
.ls9_c02009{letter-spacing:0.038400pt;}
.ls1_c02009{letter-spacing:0.044800pt;}
.ls2_c02009{letter-spacing:0.051200pt;}
.lsd_c02009{letter-spacing:0.053440pt;}
.ls6_c02009{letter-spacing:0.057600pt;}
.lsb_c02009{letter-spacing:0.076800pt;}
.lsa_c02009{letter-spacing:0.089600pt;}
.ls3_c02009{letter-spacing:0.160000pt;}
.ls0_c02009{letter-spacing:2123.520000pt;}
.ws0_c02009{word-spacing:-16.051200pt;}
.ws1_c02009{word-spacing:-8.640000pt;}
.ws42_c02009{word-spacing:-0.115200pt;}
.ws32_c02009{word-spacing:-0.089600pt;}
.ws16_c02009{word-spacing:-0.057600pt;}
.ws25_c02009{word-spacing:-0.044800pt;}
.ws44_c02009{word-spacing:-0.032000pt;}
.ws4e_c02009{word-spacing:-0.019200pt;}
.ws33_c02009{word-spacing:-0.012800pt;}
.ws3_c02009{word-spacing:0.000000pt;}
.ws43_c02009{word-spacing:0.006400pt;}
.ws2_c02009{word-spacing:0.026720pt;}
.ws3c_c02009{word-spacing:0.614400pt;}
.ws2c_c02009{word-spacing:1.043200pt;}
.ws2b_c02009{word-spacing:1.126400pt;}
.ws1e_c02009{word-spacing:1.241600pt;}
.ws1d_c02009{word-spacing:1.286400pt;}
.ws2d_c02009{word-spacing:1.324800pt;}
.ws38_c02009{word-spacing:1.843200pt;}
.ws37_c02009{word-spacing:1.894400pt;}
.ws36_c02009{word-spacing:2.515200pt;}
.ws34_c02009{word-spacing:2.521600pt;}
.ws35_c02009{word-spacing:2.566400pt;}
.ws2f_c02009{word-spacing:2.745600pt;}
.ws2e_c02009{word-spacing:2.796800pt;}
.ws28_c02009{word-spacing:3.494400pt;}
.ws4f_c02009{word-spacing:5.637920pt;}
.ws15_c02009{word-spacing:5.683200pt;}
.ws39_c02009{word-spacing:5.708800pt;}
.ws14_c02009{word-spacing:5.715200pt;}
.ws3b_c02009{word-spacing:6.643200pt;}
.ws3a_c02009{word-spacing:6.675200pt;}
.ws4a_c02009{word-spacing:6.892800pt;}
.ws49_c02009{word-spacing:7.033600pt;}
.ws4b_c02009{word-spacing:7.052800pt;}
.ws48_c02009{word-spacing:7.187200pt;}
.ws47_c02009{word-spacing:7.238400pt;}
.ws46_c02009{word-spacing:7.244800pt;}
.ws30_c02009{word-spacing:7.513600pt;}
.ws31_c02009{word-spacing:7.654400pt;}
.ws1c_c02009{word-spacing:7.897600pt;}
.wsa_c02009{word-spacing:7.968000pt;}
.wsb_c02009{word-spacing:7.974400pt;}
.ws3e_c02009{word-spacing:8.211200pt;}
.ws3f_c02009{word-spacing:8.294400pt;}
.ws3d_c02009{word-spacing:8.300800pt;}
.ws4d_c02009{word-spacing:8.544000pt;}
.ws4c_c02009{word-spacing:8.627200pt;}
.ws18_c02009{word-spacing:8.844800pt;}
.ws17_c02009{word-spacing:8.979200pt;}
.ws41_c02009{word-spacing:9.894400pt;}
.ws40_c02009{word-spacing:9.945600pt;}
.ws10_c02009{word-spacing:10.182400pt;}
.ws11_c02009{word-spacing:10.208000pt;}
.ws45_c02009{word-spacing:10.534400pt;}
.ws26_c02009{word-spacing:10.771200pt;}
.ws27_c02009{word-spacing:10.803200pt;}
.ws1f_c02009{word-spacing:12.262400pt;}
.ws20_c02009{word-spacing:12.486400pt;}
.ws21_c02009{word-spacing:12.492800pt;}
.ws9_c02009{word-spacing:12.947200pt;}
.ws6_c02009{word-spacing:12.953600pt;}
.ws8_c02009{word-spacing:13.030400pt;}
.ws7_c02009{word-spacing:13.132800pt;}
.ws4_c02009{word-spacing:13.913600pt;}
.ws5_c02009{word-spacing:13.990400pt;}
.wsc_c02009{word-spacing:14.022400pt;}
.wsd_c02009{word-spacing:14.048000pt;}
.ws12_c02009{word-spacing:14.694400pt;}
.ws13_c02009{word-spacing:14.707200pt;}
.ws29_c02009{word-spacing:15.603200pt;}
.ws2a_c02009{word-spacing:15.692800pt;}
.ws1a_c02009{word-spacing:16.518400pt;}
.ws1b_c02009{word-spacing:16.588800pt;}
.ws19_c02009{word-spacing:16.665600pt;}
.wsf_c02009{word-spacing:19.475200pt;}
.wse_c02009{word-spacing:19.513600pt;}
.ws23_c02009{word-spacing:24.793600pt;}
.ws24_c02009{word-spacing:24.857600pt;}
.ws22_c02009{word-spacing:24.902400pt;}
._2_c02009{margin-left:-5.440192pt;}
._1_c02009{margin-left:-2.560000pt;}
._0_c02009{margin-left:-1.164992pt;}
._3_c02009{width:0.951232pt;}
.fs3_c02009{font-size:34.560000pt;}
.fs2_c02009{font-size:42.560000pt;}
.fs0_c02009{font-size:53.440000pt;}
.fs1_c02009{font-size:64.000000pt;}
.y0_c02009{bottom:0.000000pt;}
.y2_c02009{bottom:50.987067pt;}
.y2c_c02009{bottom:97.707235pt;}
.y2b_c02009{bottom:118.987067pt;}
.y2a_c02009{bottom:128.907067pt;}
.y29_c02009{bottom:167.307067pt;}
.y28_c02009{bottom:188.267067pt;}
.y27_c02009{bottom:209.307067pt;}
.y26_c02009{bottom:230.347067pt;}
.y25_c02009{bottom:251.307067pt;}
.y24_c02009{bottom:280.347067pt;}
.y23_c02009{bottom:301.307067pt;}
.y22_c02009{bottom:322.347067pt;}
.y21_c02009{bottom:343.307067pt;}
.y20_c02009{bottom:364.347067pt;}
.y1f_c02009{bottom:385.307067pt;}
.y1e_c02009{bottom:414.347067pt;}
.y1d_c02009{bottom:435.387067pt;}
.y1c_c02009{bottom:456.347067pt;}
.y1b_c02009{bottom:477.387067pt;}
.y1a_c02009{bottom:506.347067pt;}
.y19_c02009{bottom:527.387067pt;}
.y18_c02009{bottom:548.347067pt;}
.y17_c02009{bottom:569.387067pt;}
.y16_c02009{bottom:590.427067pt;}
.y15_c02009{bottom:611.387067pt;}
.y14_c02009{bottom:632.427067pt;}
.y13_c02009{bottom:661.387067pt;}
.y12_c02009{bottom:682.427067pt;}
.y11_c02009{bottom:703.387067pt;}
.y10_c02009{bottom:724.427067pt;}
.yf_c02009{bottom:745.387067pt;}
.ye_c02009{bottom:766.427067pt;}
.yd_c02009{bottom:787.467067pt;}
.yc_c02009{bottom:816.427067pt;}
.yb_c02009{bottom:837.467067pt;}
.ya_c02009{bottom:858.427067pt;}
.y9_c02009{bottom:879.467067pt;}
.y8_c02009{bottom:900.427067pt;}
.y7_c02009{bottom:921.467067pt;}
.y6_c02009{bottom:942.427067pt;}
.y5_c02009{bottom:963.467067pt;}
.y4_c02009{bottom:992.507067pt;}
.y3_c02009{bottom:1013.467067pt;}
.y1_c02009{bottom:1063.227067pt;}
.h3_c02009{height:30.324375pt;}
.h4_c02009{height:46.890469pt;}
.h1_c02009{height:56.156250pt;}
.h2_c02009{height:66.783906pt;}
.h0_c02009{height:1122.666667pt;}
.w1_c02009{width:793.333333pt;}
.w0_c02009{width:793.626667pt;}
.x0_c02009{left:0.000000pt;}
.x1_c02009{left:113.440000pt;}
.x2_c02009{left:160.640000pt;}
}





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

.ir_c02010:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02010;src:url('chunks/assets/font_6aefbc12a64bf4d15549568e.woff2')format("woff");}.ff1_c02010{font-family:ff1_c02010;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02010;src:url('chunks/assets/font_2e5c79c9812b01938a2e3006.woff2')format("woff");}.ff2_c02010{font-family:ff2_c02010;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_c02010;src:url('chunks/assets/font_6b39c58b6d67d41ea011b382.woff2')format("woff");}.ff3_c02010{font-family:ff3_c02010;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02010;src:url('chunks/assets/font_47f99b187997ff3224968b54.woff2')format("woff");}.ff4_c02010{font-family:ff4_c02010;line-height:0.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02010{vertical-align:0.000000px;}
.ls13_c02010{letter-spacing:-0.072000px;}
.ls12_c02010{letter-spacing:-0.036000px;}
.ls11_c02010{letter-spacing:-0.028800px;}
.lse_c02010{letter-spacing:-0.021600px;}
.lsf_c02010{letter-spacing:-0.014400px;}
.ls10_c02010{letter-spacing:-0.007200px;}
.lsd_c02010{letter-spacing:0.000000px;}
.ls3_c02010{letter-spacing:0.007200px;}
.ls1_c02010{letter-spacing:0.014400px;}
.ls8_c02010{letter-spacing:0.021600px;}
.ls2_c02010{letter-spacing:0.028800px;}
.ls4_c02010{letter-spacing:0.036000px;}
.ls7_c02010{letter-spacing:0.043200px;}
.lsa_c02010{letter-spacing:0.050400px;}
.ls5_c02010{letter-spacing:0.057600px;}
.lsc_c02010{letter-spacing:0.060120px;}
.ls9_c02010{letter-spacing:0.064800px;}
.ls6_c02010{letter-spacing:0.072000px;}
.lsb_c02010{letter-spacing:0.093600px;}
.ls0_c02010{letter-spacing:2388.960000px;}
.sc__c02010{text-shadow:none;}
.sc0_c02010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02010{-webkit-text-stroke:0px transparent;}
.sc0_c02010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02010{word-spacing:-72.000000px;}
.ws0_c02010{word-spacing:-17.964000px;}
.ws45_c02010{word-spacing:-0.180000px;}
.ws3d_c02010{word-spacing:-0.072000px;}
.ws12_c02010{word-spacing:-0.057600px;}
.ws46_c02010{word-spacing:-0.021600px;}
.ws3_c02010{word-spacing:0.000000px;}
.ws1f_c02010{word-spacing:0.014400px;}
.ws2_c02010{word-spacing:0.030060px;}
.ws4_c02010{word-spacing:0.136800px;}
.ws2a_c02010{word-spacing:0.676800px;}
.ws2b_c02010{word-spacing:0.734400px;}
.ws3f_c02010{word-spacing:1.569600px;}
.ws1e_c02010{word-spacing:1.670400px;}
.ws3e_c02010{word-spacing:1.713600px;}
.ws1d_c02010{word-spacing:1.828800px;}
.ws34_c02010{word-spacing:1.929600px;}
.ws33_c02010{word-spacing:1.972800px;}
.ws31_c02010{word-spacing:2.023200px;}
.ws32_c02010{word-spacing:2.037600px;}
.ws49_c02010{word-spacing:2.412000px;}
.ws2e_c02010{word-spacing:2.476800px;}
.ws6_c02010{word-spacing:2.491200px;}
.ws5_c02010{word-spacing:2.505600px;}
.ws4a_c02010{word-spacing:2.541600px;}
.ws3b_c02010{word-spacing:2.721600px;}
.ws3c_c02010{word-spacing:2.793600px;}
.ws1c_c02010{word-spacing:3.016800px;}
.ws35_c02010{word-spacing:3.096000px;}
.ws19_c02010{word-spacing:3.139200px;}
.ws1b_c02010{word-spacing:3.168000px;}
.ws36_c02010{word-spacing:3.182400px;}
.ws1a_c02010{word-spacing:3.247200px;}
.wsc_c02010{word-spacing:3.506400px;}
.ws7_c02010{word-spacing:3.528000px;}
.ws8_c02010{word-spacing:3.549600px;}
.wsa_c02010{word-spacing:4.168800px;}
.ws9_c02010{word-spacing:4.291200px;}
.wsb_c02010{word-spacing:4.312800px;}
.ws42_c02010{word-spacing:4.586400px;}
.ws41_c02010{word-spacing:4.593600px;}
.ws55_c02010{word-spacing:4.651200px;}
.ws40_c02010{word-spacing:4.694400px;}
.ws13_c02010{word-spacing:4.968000px;}
.ws14_c02010{word-spacing:5.054400px;}
.ws47_c02010{word-spacing:5.241600px;}
.ws48_c02010{word-spacing:5.292000px;}
.ws4b_c02010{word-spacing:5.572800px;}
.ws4c_c02010{word-spacing:5.695200px;}
.ws4d_c02010{word-spacing:5.702400px;}
.ws28_c02010{word-spacing:6.076800px;}
.ws27_c02010{word-spacing:6.112800px;}
.ws29_c02010{word-spacing:6.192000px;}
.ws44_c02010{word-spacing:6.436800px;}
.ws43_c02010{word-spacing:6.444000px;}
.ws17_c02010{word-spacing:6.458400px;}
.ws18_c02010{word-spacing:6.501600px;}
.ws23_c02010{word-spacing:6.739200px;}
.ws24_c02010{word-spacing:6.760800px;}
.ws25_c02010{word-spacing:6.854400px;}
.ws2c_c02010{word-spacing:7.106400px;}
.ws2d_c02010{word-spacing:7.171200px;}
.ws51_c02010{word-spacing:7.358400px;}
.ws52_c02010{word-spacing:7.560000px;}
.ws53_c02010{word-spacing:8.114400px;}
.ws26_c02010{word-spacing:8.215200px;}
.ws54_c02010{word-spacing:8.229600px;}
.ws21_c02010{word-spacing:8.841600px;}
.ws20_c02010{word-spacing:8.956800px;}
.ws22_c02010{word-spacing:8.992800px;}
.ws39_c02010{word-spacing:11.037600px;}
.ws3a_c02010{word-spacing:11.131200px;}
.wse_c02010{word-spacing:11.865600px;}
.wsf_c02010{word-spacing:11.959200px;}
.wsd_c02010{word-spacing:12.096000px;}
.ws37_c02010{word-spacing:15.357600px;}
.ws38_c02010{word-spacing:15.494400px;}
.ws2f_c02010{word-spacing:17.287200px;}
.ws30_c02010{word-spacing:17.294400px;}
.ws15_c02010{word-spacing:17.596800px;}
.ws16_c02010{word-spacing:17.632800px;}
.ws50_c02010{word-spacing:17.733600px;}
.ws4e_c02010{word-spacing:17.928000px;}
.ws4f_c02010{word-spacing:17.985600px;}
.ws10_c02010{word-spacing:18.633600px;}
.ws11_c02010{word-spacing:18.684000px;}
._0_c02010{margin-left:-1.310616px;}
._1_c02010{width:1.361448px;}
.fc0_c02010{color:rgb(0,0,0);}
.fs0_c02010{font-size:60.120000px;}
.fs1_c02010{font-size:72.000000px;}
.y0_c02010{bottom:0.000000px;}
.y2_c02010{bottom:57.360450px;}
.y2c_c02010{bottom:117.300450px;}
.y2b_c02010{bottom:140.970450px;}
.y2a_c02010{bottom:164.550450px;}
.y29_c02010{bottom:188.220450px;}
.y28_c02010{bottom:211.800450px;}
.y27_c02010{bottom:235.470450px;}
.y26_c02010{bottom:259.140450px;}
.y25_c02010{bottom:282.720450px;}
.y24_c02010{bottom:315.390450px;}
.y23_c02010{bottom:338.970450px;}
.y22_c02010{bottom:362.640450px;}
.y21_c02010{bottom:386.220450px;}
.y20_c02010{bottom:418.890450px;}
.y1f_c02010{bottom:442.470450px;}
.y1e_c02010{bottom:466.140450px;}
.y1d_c02010{bottom:489.810450px;}
.y1c_c02010{bottom:513.390450px;}
.y1b_c02010{bottom:537.060450px;}
.y1a_c02010{bottom:560.640450px;}
.y19_c02010{bottom:584.310450px;}
.y18_c02010{bottom:607.890450px;}
.y17_c02010{bottom:631.560450px;}
.y16_c02010{bottom:655.230450px;}
.y15_c02010{bottom:678.810450px;}
.y14_c02010{bottom:702.480450px;}
.y13_c02010{bottom:726.060450px;}
.y12_c02010{bottom:749.730450px;}
.y11_c02010{bottom:782.310450px;}
.y10_c02010{bottom:805.980450px;}
.yf_c02010{bottom:829.560450px;}
.ye_c02010{bottom:853.230450px;}
.yd_c02010{bottom:876.900450px;}
.yc_c02010{bottom:900.480450px;}
.yb_c02010{bottom:933.150450px;}
.ya_c02010{bottom:956.730450px;}
.y9_c02010{bottom:980.400450px;}
.y8_c02010{bottom:1003.980450px;}
.y7_c02010{bottom:1027.650450px;}
.y6_c02010{bottom:1051.230450px;}
.y5_c02010{bottom:1074.900450px;}
.y4_c02010{bottom:1107.570450px;}
.y3_c02010{bottom:1139.970450px;}
.y1_c02010{bottom:1196.130450px;}
.h1_c02010{height:60.589687px;}
.h2_c02010{height:63.175781px;}
.h4_c02010{height:63.351562px;}
.h3_c02010{height:72.562500px;}
.h0_c02010{height:1263.000000px;}
.w1_c02010{width:892.500000px;}
.w0_c02010{width:892.830000px;}
.x0_c02010{left:0.000000px;}
.x2_c02010{left:127.620000px;}
.x1_c02010{left:159.930000px;}
.x3_c02010{left:180.720000px;}
@media print{
.v0_c02010{vertical-align:0.000000pt;}
.ls13_c02010{letter-spacing:-0.064000pt;}
.ls12_c02010{letter-spacing:-0.032000pt;}
.ls11_c02010{letter-spacing:-0.025600pt;}
.lse_c02010{letter-spacing:-0.019200pt;}
.lsf_c02010{letter-spacing:-0.012800pt;}
.ls10_c02010{letter-spacing:-0.006400pt;}
.lsd_c02010{letter-spacing:0.000000pt;}
.ls3_c02010{letter-spacing:0.006400pt;}
.ls1_c02010{letter-spacing:0.012800pt;}
.ls8_c02010{letter-spacing:0.019200pt;}
.ls2_c02010{letter-spacing:0.025600pt;}
.ls4_c02010{letter-spacing:0.032000pt;}
.ls7_c02010{letter-spacing:0.038400pt;}
.lsa_c02010{letter-spacing:0.044800pt;}
.ls5_c02010{letter-spacing:0.051200pt;}
.lsc_c02010{letter-spacing:0.053440pt;}
.ls9_c02010{letter-spacing:0.057600pt;}
.ls6_c02010{letter-spacing:0.064000pt;}
.lsb_c02010{letter-spacing:0.083200pt;}
.ls0_c02010{letter-spacing:2123.520000pt;}
.ws1_c02010{word-spacing:-64.000000pt;}
.ws0_c02010{word-spacing:-15.968000pt;}
.ws45_c02010{word-spacing:-0.160000pt;}
.ws3d_c02010{word-spacing:-0.064000pt;}
.ws12_c02010{word-spacing:-0.051200pt;}
.ws46_c02010{word-spacing:-0.019200pt;}
.ws3_c02010{word-spacing:0.000000pt;}
.ws1f_c02010{word-spacing:0.012800pt;}
.ws2_c02010{word-spacing:0.026720pt;}
.ws4_c02010{word-spacing:0.121600pt;}
.ws2a_c02010{word-spacing:0.601600pt;}
.ws2b_c02010{word-spacing:0.652800pt;}
.ws3f_c02010{word-spacing:1.395200pt;}
.ws1e_c02010{word-spacing:1.484800pt;}
.ws3e_c02010{word-spacing:1.523200pt;}
.ws1d_c02010{word-spacing:1.625600pt;}
.ws34_c02010{word-spacing:1.715200pt;}
.ws33_c02010{word-spacing:1.753600pt;}
.ws31_c02010{word-spacing:1.798400pt;}
.ws32_c02010{word-spacing:1.811200pt;}
.ws49_c02010{word-spacing:2.144000pt;}
.ws2e_c02010{word-spacing:2.201600pt;}
.ws6_c02010{word-spacing:2.214400pt;}
.ws5_c02010{word-spacing:2.227200pt;}
.ws4a_c02010{word-spacing:2.259200pt;}
.ws3b_c02010{word-spacing:2.419200pt;}
.ws3c_c02010{word-spacing:2.483200pt;}
.ws1c_c02010{word-spacing:2.681600pt;}
.ws35_c02010{word-spacing:2.752000pt;}
.ws19_c02010{word-spacing:2.790400pt;}
.ws1b_c02010{word-spacing:2.816000pt;}
.ws36_c02010{word-spacing:2.828800pt;}
.ws1a_c02010{word-spacing:2.886400pt;}
.wsc_c02010{word-spacing:3.116800pt;}
.ws7_c02010{word-spacing:3.136000pt;}
.ws8_c02010{word-spacing:3.155200pt;}
.wsa_c02010{word-spacing:3.705600pt;}
.ws9_c02010{word-spacing:3.814400pt;}
.wsb_c02010{word-spacing:3.833600pt;}
.ws42_c02010{word-spacing:4.076800pt;}
.ws41_c02010{word-spacing:4.083200pt;}
.ws55_c02010{word-spacing:4.134400pt;}
.ws40_c02010{word-spacing:4.172800pt;}
.ws13_c02010{word-spacing:4.416000pt;}
.ws14_c02010{word-spacing:4.492800pt;}
.ws47_c02010{word-spacing:4.659200pt;}
.ws48_c02010{word-spacing:4.704000pt;}
.ws4b_c02010{word-spacing:4.953600pt;}
.ws4c_c02010{word-spacing:5.062400pt;}
.ws4d_c02010{word-spacing:5.068800pt;}
.ws28_c02010{word-spacing:5.401600pt;}
.ws27_c02010{word-spacing:5.433600pt;}
.ws29_c02010{word-spacing:5.504000pt;}
.ws44_c02010{word-spacing:5.721600pt;}
.ws43_c02010{word-spacing:5.728000pt;}
.ws17_c02010{word-spacing:5.740800pt;}
.ws18_c02010{word-spacing:5.779200pt;}
.ws23_c02010{word-spacing:5.990400pt;}
.ws24_c02010{word-spacing:6.009600pt;}
.ws25_c02010{word-spacing:6.092800pt;}
.ws2c_c02010{word-spacing:6.316800pt;}
.ws2d_c02010{word-spacing:6.374400pt;}
.ws51_c02010{word-spacing:6.540800pt;}
.ws52_c02010{word-spacing:6.720000pt;}
.ws53_c02010{word-spacing:7.212800pt;}
.ws26_c02010{word-spacing:7.302400pt;}
.ws54_c02010{word-spacing:7.315200pt;}
.ws21_c02010{word-spacing:7.859200pt;}
.ws20_c02010{word-spacing:7.961600pt;}
.ws22_c02010{word-spacing:7.993600pt;}
.ws39_c02010{word-spacing:9.811200pt;}
.ws3a_c02010{word-spacing:9.894400pt;}
.wse_c02010{word-spacing:10.547200pt;}
.wsf_c02010{word-spacing:10.630400pt;}
.wsd_c02010{word-spacing:10.752000pt;}
.ws37_c02010{word-spacing:13.651200pt;}
.ws38_c02010{word-spacing:13.772800pt;}
.ws2f_c02010{word-spacing:15.366400pt;}
.ws30_c02010{word-spacing:15.372800pt;}
.ws15_c02010{word-spacing:15.641600pt;}
.ws16_c02010{word-spacing:15.673600pt;}
.ws50_c02010{word-spacing:15.763200pt;}
.ws4e_c02010{word-spacing:15.936000pt;}
.ws4f_c02010{word-spacing:15.987200pt;}
.ws10_c02010{word-spacing:16.563200pt;}
.ws11_c02010{word-spacing:16.608000pt;}
._0_c02010{margin-left:-1.164992pt;}
._1_c02010{width:1.210176pt;}
.fs0_c02010{font-size:53.440000pt;}
.fs1_c02010{font-size:64.000000pt;}
.y0_c02010{bottom:0.000000pt;}
.y2_c02010{bottom:50.987067pt;}
.y2c_c02010{bottom:104.267067pt;}
.y2b_c02010{bottom:125.307067pt;}
.y2a_c02010{bottom:146.267067pt;}
.y29_c02010{bottom:167.307067pt;}
.y28_c02010{bottom:188.267067pt;}
.y27_c02010{bottom:209.307067pt;}
.y26_c02010{bottom:230.347067pt;}
.y25_c02010{bottom:251.307067pt;}
.y24_c02010{bottom:280.347067pt;}
.y23_c02010{bottom:301.307067pt;}
.y22_c02010{bottom:322.347067pt;}
.y21_c02010{bottom:343.307067pt;}
.y20_c02010{bottom:372.347067pt;}
.y1f_c02010{bottom:393.307067pt;}
.y1e_c02010{bottom:414.347067pt;}
.y1d_c02010{bottom:435.387067pt;}
.y1c_c02010{bottom:456.347067pt;}
.y1b_c02010{bottom:477.387067pt;}
.y1a_c02010{bottom:498.347067pt;}
.y19_c02010{bottom:519.387067pt;}
.y18_c02010{bottom:540.347067pt;}
.y17_c02010{bottom:561.387067pt;}
.y16_c02010{bottom:582.427067pt;}
.y15_c02010{bottom:603.387067pt;}
.y14_c02010{bottom:624.427067pt;}
.y13_c02010{bottom:645.387067pt;}
.y12_c02010{bottom:666.427067pt;}
.y11_c02010{bottom:695.387067pt;}
.y10_c02010{bottom:716.427067pt;}
.yf_c02010{bottom:737.387067pt;}
.ye_c02010{bottom:758.427067pt;}
.yd_c02010{bottom:779.467067pt;}
.yc_c02010{bottom:800.427067pt;}
.yb_c02010{bottom:829.467067pt;}
.ya_c02010{bottom:850.427067pt;}
.y9_c02010{bottom:871.467067pt;}
.y8_c02010{bottom:892.427067pt;}
.y7_c02010{bottom:913.467067pt;}
.y6_c02010{bottom:934.427067pt;}
.y5_c02010{bottom:955.467067pt;}
.y4_c02010{bottom:984.507067pt;}
.y3_c02010{bottom:1013.307067pt;}
.y1_c02010{bottom:1063.227067pt;}
.h1_c02010{height:53.857500pt;}
.h2_c02010{height:56.156250pt;}
.h4_c02010{height:56.312500pt;}
.h3_c02010{height:64.500000pt;}
.h0_c02010{height:1122.666667pt;}
.w1_c02010{width:793.333333pt;}
.w0_c02010{width:793.626667pt;}
.x0_c02010{left:0.000000pt;}
.x2_c02010{left:113.440000pt;}
.x1_c02010{left:142.160000pt;}
.x3_c02010{left:160.640000pt;}
}





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

.ir_c02011:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02011;src:url('chunks/assets/font_731d535bbd797dcae3ce7e52.woff2')format("woff");}.ff1_c02011{font-family:ff1_c02011;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02011{vertical-align:0.000000px;}
.ls15_c02011{letter-spacing:-0.043200px;}
.ls11_c02011{letter-spacing:-0.028800px;}
.ls14_c02011{letter-spacing:-0.021600px;}
.ls13_c02011{letter-spacing:-0.014400px;}
.ls10_c02011{letter-spacing:-0.007200px;}
.lsf_c02011{letter-spacing:0.000000px;}
.ls7_c02011{letter-spacing:0.007200px;}
.ls8_c02011{letter-spacing:0.014400px;}
.ls2_c02011{letter-spacing:0.021600px;}
.ls9_c02011{letter-spacing:0.028800px;}
.ls1_c02011{letter-spacing:0.036000px;}
.ls3_c02011{letter-spacing:0.043200px;}
.ls6_c02011{letter-spacing:0.050400px;}
.ls5_c02011{letter-spacing:0.057600px;}
.lse_c02011{letter-spacing:0.060120px;}
.lsa_c02011{letter-spacing:0.064800px;}
.lsb_c02011{letter-spacing:0.072000px;}
.lsc_c02011{letter-spacing:0.079200px;}
.ls4_c02011{letter-spacing:0.086400px;}
.lsd_c02011{letter-spacing:0.093600px;}
.ls12_c02011{letter-spacing:1.756800px;}
.ls0_c02011{letter-spacing:2388.960000px;}
.sc__c02011{text-shadow:none;}
.sc0_c02011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02011{-webkit-text-stroke:0px transparent;}
.sc0_c02011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c02011{word-spacing:-0.187200px;}
.wsc_c02011{word-spacing:-0.136800px;}
.ws22_c02011{word-spacing:-0.122400px;}
.ws3a_c02011{word-spacing:-0.050400px;}
.ws2b_c02011{word-spacing:-0.036000px;}
.ws33_c02011{word-spacing:-0.028800px;}
.wsd_c02011{word-spacing:-0.007200px;}
.ws1_c02011{word-spacing:0.000000px;}
.ws0_c02011{word-spacing:0.030060px;}
.ws32_c02011{word-spacing:0.036000px;}
.ws2d_c02011{word-spacing:0.590400px;}
.ws13_c02011{word-spacing:0.676800px;}
.ws14_c02011{word-spacing:0.691200px;}
.ws2c_c02011{word-spacing:0.705600px;}
.ws45_c02011{word-spacing:1.144800px;}
.ws44_c02011{word-spacing:1.360800px;}
.ws46_c02011{word-spacing:1.447200px;}
.wse_c02011{word-spacing:1.785600px;}
.ws5_c02011{word-spacing:2.476800px;}
.wsf_c02011{word-spacing:2.505600px;}
.ws4_c02011{word-spacing:2.534400px;}
.ws4e_c02011{word-spacing:2.664000px;}
.ws1a_c02011{word-spacing:2.779200px;}
.ws4b_c02011{word-spacing:2.808000px;}
.ws1b_c02011{word-spacing:2.822400px;}
.ws4c_c02011{word-spacing:2.851200px;}
.ws4d_c02011{word-spacing:2.880000px;}
.ws12_c02011{word-spacing:3.031200px;}
.ws10_c02011{word-spacing:3.204000px;}
.ws11_c02011{word-spacing:3.225600px;}
.ws24_c02011{word-spacing:3.765600px;}
.ws23_c02011{word-spacing:3.988800px;}
.ws17_c02011{word-spacing:5.976000px;}
.ws16_c02011{word-spacing:6.120000px;}
.ws2a_c02011{word-spacing:6.278400px;}
.ws29_c02011{word-spacing:6.379200px;}
.ws38_c02011{word-spacing:6.688800px;}
.ws37_c02011{word-spacing:6.746400px;}
.ws39_c02011{word-spacing:6.948000px;}
.ws7_c02011{word-spacing:7.473600px;}
.ws25_c02011{word-spacing:10.778400px;}
.ws27_c02011{word-spacing:11.095200px;}
.ws26_c02011{word-spacing:11.131200px;}
.ws28_c02011{word-spacing:11.203200px;}
.ws40_c02011{word-spacing:11.383200px;}
.ws41_c02011{word-spacing:11.440800px;}
.ws1c_c02011{word-spacing:11.858400px;}
.ws1d_c02011{word-spacing:11.894400px;}
.ws3d_c02011{word-spacing:12.578400px;}
.ws3b_c02011{word-spacing:13.147200px;}
.ws9_c02011{word-spacing:13.154400px;}
.ws3c_c02011{word-spacing:13.240800px;}
.ws8_c02011{word-spacing:13.269600px;}
.ws30_c02011{word-spacing:13.536000px;}
.ws31_c02011{word-spacing:13.557600px;}
.ws3e_c02011{word-spacing:13.946400px;}
.ws3f_c02011{word-spacing:14.061600px;}
.ws3_c02011{word-spacing:14.335200px;}
.ws2_c02011{word-spacing:14.364000px;}
.ws47_c02011{word-spacing:14.738400px;}
.ws20_c02011{word-spacing:15.573600px;}
.ws21_c02011{word-spacing:15.703200px;}
.wsa_c02011{word-spacing:16.790400px;}
.wsb_c02011{word-spacing:16.948800px;}
.ws1e_c02011{word-spacing:17.150400px;}
.ws1f_c02011{word-spacing:17.229600px;}
.ws42_c02011{word-spacing:17.265600px;}
.ws43_c02011{word-spacing:17.344800px;}
.ws35_c02011{word-spacing:19.584000px;}
.ws34_c02011{word-spacing:19.634400px;}
.ws36_c02011{word-spacing:19.692000px;}
.ws15_c02011{word-spacing:21.211200px;}
.ws49_c02011{word-spacing:21.405600px;}
.ws48_c02011{word-spacing:21.600000px;}
.ws4a_c02011{word-spacing:21.614400px;}
.ws19_c02011{word-spacing:23.680800px;}
.ws18_c02011{word-spacing:23.817600px;}
.ws2e_c02011{word-spacing:35.179200px;}
.ws2f_c02011{word-spacing:35.280000px;}
._1_c02011{margin-left:-2.649168px;}
._0_c02011{margin-left:-1.310616px;}
.fc0_c02011{color:rgb(0,0,0);}
.fs0_c02011{font-size:60.120000px;}
.fs1_c02011{font-size:72.000000px;}
.y0_c02011{bottom:0.000000px;}
.y2_c02011{bottom:57.360450px;}
.y2c_c02011{bottom:126.300450px;}
.y2b_c02011{bottom:149.970450px;}
.y2a_c02011{bottom:173.550450px;}
.y29_c02011{bottom:197.220450px;}
.y28_c02011{bottom:220.800450px;}
.y27_c02011{bottom:244.470450px;}
.y26_c02011{bottom:268.140450px;}
.y25_c02011{bottom:291.720450px;}
.y24_c02011{bottom:315.390450px;}
.y23_c02011{bottom:338.970450px;}
.y22_c02011{bottom:371.640450px;}
.y21_c02011{bottom:395.220450px;}
.y20_c02011{bottom:418.890450px;}
.y1f_c02011{bottom:442.470450px;}
.y1e_c02011{bottom:475.140450px;}
.y1d_c02011{bottom:498.810450px;}
.y1c_c02011{bottom:522.390450px;}
.y1b_c02011{bottom:546.060450px;}
.y1a_c02011{bottom:569.640450px;}
.y19_c02011{bottom:593.310450px;}
.y18_c02011{bottom:616.890450px;}
.y17_c02011{bottom:640.560450px;}
.y16_c02011{bottom:664.230450px;}
.y15_c02011{bottom:696.810450px;}
.y14_c02011{bottom:720.480450px;}
.y13_c02011{bottom:744.060450px;}
.y12_c02011{bottom:767.730450px;}
.y11_c02011{bottom:791.310450px;}
.y10_c02011{bottom:814.980450px;}
.yf_c02011{bottom:838.560450px;}
.ye_c02011{bottom:862.230450px;}
.yd_c02011{bottom:885.900450px;}
.yc_c02011{bottom:909.480450px;}
.yb_c02011{bottom:933.150450px;}
.ya_c02011{bottom:956.730450px;}
.y9_c02011{bottom:989.400450px;}
.y8_c02011{bottom:1012.980450px;}
.y7_c02011{bottom:1036.650450px;}
.y6_c02011{bottom:1060.230450px;}
.y5_c02011{bottom:1092.900450px;}
.y4_c02011{bottom:1116.570450px;}
.y3_c02011{bottom:1140.150450px;}
.y1_c02011{bottom:1196.130450px;}
.h1_c02011{height:63.175781px;}
.h0_c02011{height:1263.000000px;}
.w1_c02011{width:892.500000px;}
.w0_c02011{width:892.830000px;}
.x0_c02011{left:0.000000px;}
.x1_c02011{left:127.620000px;}
.x2_c02011{left:180.720000px;}
@media print{
.v0_c02011{vertical-align:0.000000pt;}
.ls15_c02011{letter-spacing:-0.038400pt;}
.ls11_c02011{letter-spacing:-0.025600pt;}
.ls14_c02011{letter-spacing:-0.019200pt;}
.ls13_c02011{letter-spacing:-0.012800pt;}
.ls10_c02011{letter-spacing:-0.006400pt;}
.lsf_c02011{letter-spacing:0.000000pt;}
.ls7_c02011{letter-spacing:0.006400pt;}
.ls8_c02011{letter-spacing:0.012800pt;}
.ls2_c02011{letter-spacing:0.019200pt;}
.ls9_c02011{letter-spacing:0.025600pt;}
.ls1_c02011{letter-spacing:0.032000pt;}
.ls3_c02011{letter-spacing:0.038400pt;}
.ls6_c02011{letter-spacing:0.044800pt;}
.ls5_c02011{letter-spacing:0.051200pt;}
.lse_c02011{letter-spacing:0.053440pt;}
.lsa_c02011{letter-spacing:0.057600pt;}
.lsb_c02011{letter-spacing:0.064000pt;}
.lsc_c02011{letter-spacing:0.070400pt;}
.ls4_c02011{letter-spacing:0.076800pt;}
.lsd_c02011{letter-spacing:0.083200pt;}
.ls12_c02011{letter-spacing:1.561600pt;}
.ls0_c02011{letter-spacing:2123.520000pt;}
.ws6_c02011{word-spacing:-0.166400pt;}
.wsc_c02011{word-spacing:-0.121600pt;}
.ws22_c02011{word-spacing:-0.108800pt;}
.ws3a_c02011{word-spacing:-0.044800pt;}
.ws2b_c02011{word-spacing:-0.032000pt;}
.ws33_c02011{word-spacing:-0.025600pt;}
.wsd_c02011{word-spacing:-0.006400pt;}
.ws1_c02011{word-spacing:0.000000pt;}
.ws0_c02011{word-spacing:0.026720pt;}
.ws32_c02011{word-spacing:0.032000pt;}
.ws2d_c02011{word-spacing:0.524800pt;}
.ws13_c02011{word-spacing:0.601600pt;}
.ws14_c02011{word-spacing:0.614400pt;}
.ws2c_c02011{word-spacing:0.627200pt;}
.ws45_c02011{word-spacing:1.017600pt;}
.ws44_c02011{word-spacing:1.209600pt;}
.ws46_c02011{word-spacing:1.286400pt;}
.wse_c02011{word-spacing:1.587200pt;}
.ws5_c02011{word-spacing:2.201600pt;}
.wsf_c02011{word-spacing:2.227200pt;}
.ws4_c02011{word-spacing:2.252800pt;}
.ws4e_c02011{word-spacing:2.368000pt;}
.ws1a_c02011{word-spacing:2.470400pt;}
.ws4b_c02011{word-spacing:2.496000pt;}
.ws1b_c02011{word-spacing:2.508800pt;}
.ws4c_c02011{word-spacing:2.534400pt;}
.ws4d_c02011{word-spacing:2.560000pt;}
.ws12_c02011{word-spacing:2.694400pt;}
.ws10_c02011{word-spacing:2.848000pt;}
.ws11_c02011{word-spacing:2.867200pt;}
.ws24_c02011{word-spacing:3.347200pt;}
.ws23_c02011{word-spacing:3.545600pt;}
.ws17_c02011{word-spacing:5.312000pt;}
.ws16_c02011{word-spacing:5.440000pt;}
.ws2a_c02011{word-spacing:5.580800pt;}
.ws29_c02011{word-spacing:5.670400pt;}
.ws38_c02011{word-spacing:5.945600pt;}
.ws37_c02011{word-spacing:5.996800pt;}
.ws39_c02011{word-spacing:6.176000pt;}
.ws7_c02011{word-spacing:6.643200pt;}
.ws25_c02011{word-spacing:9.580800pt;}
.ws27_c02011{word-spacing:9.862400pt;}
.ws26_c02011{word-spacing:9.894400pt;}
.ws28_c02011{word-spacing:9.958400pt;}
.ws40_c02011{word-spacing:10.118400pt;}
.ws41_c02011{word-spacing:10.169600pt;}
.ws1c_c02011{word-spacing:10.540800pt;}
.ws1d_c02011{word-spacing:10.572800pt;}
.ws3d_c02011{word-spacing:11.180800pt;}
.ws3b_c02011{word-spacing:11.686400pt;}
.ws9_c02011{word-spacing:11.692800pt;}
.ws3c_c02011{word-spacing:11.769600pt;}
.ws8_c02011{word-spacing:11.795200pt;}
.ws30_c02011{word-spacing:12.032000pt;}
.ws31_c02011{word-spacing:12.051200pt;}
.ws3e_c02011{word-spacing:12.396800pt;}
.ws3f_c02011{word-spacing:12.499200pt;}
.ws3_c02011{word-spacing:12.742400pt;}
.ws2_c02011{word-spacing:12.768000pt;}
.ws47_c02011{word-spacing:13.100800pt;}
.ws20_c02011{word-spacing:13.843200pt;}
.ws21_c02011{word-spacing:13.958400pt;}
.wsa_c02011{word-spacing:14.924800pt;}
.wsb_c02011{word-spacing:15.065600pt;}
.ws1e_c02011{word-spacing:15.244800pt;}
.ws1f_c02011{word-spacing:15.315200pt;}
.ws42_c02011{word-spacing:15.347200pt;}
.ws43_c02011{word-spacing:15.417600pt;}
.ws35_c02011{word-spacing:17.408000pt;}
.ws34_c02011{word-spacing:17.452800pt;}
.ws36_c02011{word-spacing:17.504000pt;}
.ws15_c02011{word-spacing:18.854400pt;}
.ws49_c02011{word-spacing:19.027200pt;}
.ws48_c02011{word-spacing:19.200000pt;}
.ws4a_c02011{word-spacing:19.212800pt;}
.ws19_c02011{word-spacing:21.049600pt;}
.ws18_c02011{word-spacing:21.171200pt;}
.ws2e_c02011{word-spacing:31.270400pt;}
.ws2f_c02011{word-spacing:31.360000pt;}
._1_c02011{margin-left:-2.354816pt;}
._0_c02011{margin-left:-1.164992pt;}
.fs0_c02011{font-size:53.440000pt;}
.fs1_c02011{font-size:64.000000pt;}
.y0_c02011{bottom:0.000000pt;}
.y2_c02011{bottom:50.987067pt;}
.y2c_c02011{bottom:112.267067pt;}
.y2b_c02011{bottom:133.307067pt;}
.y2a_c02011{bottom:154.267067pt;}
.y29_c02011{bottom:175.307067pt;}
.y28_c02011{bottom:196.267067pt;}
.y27_c02011{bottom:217.307067pt;}
.y26_c02011{bottom:238.347067pt;}
.y25_c02011{bottom:259.307067pt;}
.y24_c02011{bottom:280.347067pt;}
.y23_c02011{bottom:301.307067pt;}
.y22_c02011{bottom:330.347067pt;}
.y21_c02011{bottom:351.307067pt;}
.y20_c02011{bottom:372.347067pt;}
.y1f_c02011{bottom:393.307067pt;}
.y1e_c02011{bottom:422.347067pt;}
.y1d_c02011{bottom:443.387067pt;}
.y1c_c02011{bottom:464.347067pt;}
.y1b_c02011{bottom:485.387067pt;}
.y1a_c02011{bottom:506.347067pt;}
.y19_c02011{bottom:527.387067pt;}
.y18_c02011{bottom:548.347067pt;}
.y17_c02011{bottom:569.387067pt;}
.y16_c02011{bottom:590.427067pt;}
.y15_c02011{bottom:619.387067pt;}
.y14_c02011{bottom:640.427067pt;}
.y13_c02011{bottom:661.387067pt;}
.y12_c02011{bottom:682.427067pt;}
.y11_c02011{bottom:703.387067pt;}
.y10_c02011{bottom:724.427067pt;}
.yf_c02011{bottom:745.387067pt;}
.ye_c02011{bottom:766.427067pt;}
.yd_c02011{bottom:787.467067pt;}
.yc_c02011{bottom:808.427067pt;}
.yb_c02011{bottom:829.467067pt;}
.ya_c02011{bottom:850.427067pt;}
.y9_c02011{bottom:879.467067pt;}
.y8_c02011{bottom:900.427067pt;}
.y7_c02011{bottom:921.467067pt;}
.y6_c02011{bottom:942.427067pt;}
.y5_c02011{bottom:971.467067pt;}
.y4_c02011{bottom:992.507067pt;}
.y3_c02011{bottom:1013.467067pt;}
.y1_c02011{bottom:1063.227067pt;}
.h1_c02011{height:56.156250pt;}
.h0_c02011{height:1122.666667pt;}
.w1_c02011{width:793.333333pt;}
.w0_c02011{width:793.626667pt;}
.x0_c02011{left:0.000000pt;}
.x1_c02011{left:113.440000pt;}
.x2_c02011{left:160.640000pt;}
}





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

.ir_c02012:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02012;src:url('chunks/assets/font_5096e1acac38948105099912.woff2')format("woff");}.ff1_c02012{font-family:ff1_c02012;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02012;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2_c02012{font-family:ff2_c02012;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02012;src:url('chunks/assets/font_ced9ca470707562c38abc756.woff2')format("woff");}.ff3_c02012{font-family:ff3_c02012;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02012{vertical-align:0.000000px;}
.ls12_c02012{letter-spacing:-0.036000px;}
.ls10_c02012{letter-spacing:-0.028800px;}
.ls14_c02012{letter-spacing:-0.021600px;}
.ls13_c02012{letter-spacing:-0.014400px;}
.ls11_c02012{letter-spacing:-0.007200px;}
.lsf_c02012{letter-spacing:0.000000px;}
.ls9_c02012{letter-spacing:0.007200px;}
.ls5_c02012{letter-spacing:0.014400px;}
.ls1_c02012{letter-spacing:0.021600px;}
.lsa_c02012{letter-spacing:0.028800px;}
.ls2_c02012{letter-spacing:0.036000px;}
.ls7_c02012{letter-spacing:0.043200px;}
.ls4_c02012{letter-spacing:0.050400px;}
.ls3_c02012{letter-spacing:0.057600px;}
.lse_c02012{letter-spacing:0.060120px;}
.lsb_c02012{letter-spacing:0.064800px;}
.ls6_c02012{letter-spacing:0.079200px;}
.ls8_c02012{letter-spacing:0.086400px;}
.lsd_c02012{letter-spacing:0.093600px;}
.lsc_c02012{letter-spacing:0.100800px;}
.ls0_c02012{letter-spacing:2388.960000px;}
.sc__c02012{text-shadow:none;}
.sc0_c02012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02012{-webkit-text-stroke:0px transparent;}
.sc0_c02012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3e_c02012{word-spacing:-0.216000px;}
.ws2e_c02012{word-spacing:-0.187200px;}
.ws2f_c02012{word-spacing:-0.172800px;}
.ws4_c02012{word-spacing:-0.151200px;}
.ws42_c02012{word-spacing:-0.028800px;}
.ws43_c02012{word-spacing:-0.014400px;}
.ws3d_c02012{word-spacing:-0.007200px;}
.ws1_c02012{word-spacing:0.000000px;}
.ws0_c02012{word-spacing:0.030060px;}
.ws12_c02012{word-spacing:0.280800px;}
.ws11_c02012{word-spacing:0.309600px;}
.ws17_c02012{word-spacing:0.619200px;}
.ws18_c02012{word-spacing:0.698400px;}
.ws15_c02012{word-spacing:1.044000px;}
.ws16_c02012{word-spacing:1.108800px;}
.wse_c02012{word-spacing:1.267200px;}
.ws32_c02012{word-spacing:1.296000px;}
.wsd_c02012{word-spacing:1.332000px;}
.ws30_c02012{word-spacing:1.389600px;}
.ws31_c02012{word-spacing:1.425600px;}
.ws7_c02012{word-spacing:1.670400px;}
.ws25_c02012{word-spacing:1.713600px;}
.ws6_c02012{word-spacing:1.749600px;}
.ws8_c02012{word-spacing:1.828800px;}
.ws48_c02012{word-spacing:2.016000px;}
.ws49_c02012{word-spacing:2.095200px;}
.ws4b_c02012{word-spacing:2.246400px;}
.ws1c_c02012{word-spacing:2.376000px;}
.ws1b_c02012{word-spacing:2.433600px;}
.ws4a_c02012{word-spacing:2.476800px;}
.ws4c_c02012{word-spacing:2.512800px;}
.ws26_c02012{word-spacing:2.800800px;}
.ws27_c02012{word-spacing:2.858400px;}
.ws3a_c02012{word-spacing:4.248000px;}
.ws39_c02012{word-spacing:4.305600px;}
.ws34_c02012{word-spacing:4.867200px;}
.ws33_c02012{word-spacing:5.054400px;}
.ws4f_c02012{word-spacing:5.299200px;}
.ws1f_c02012{word-spacing:5.306400px;}
.ws1d_c02012{word-spacing:5.335200px;}
.ws41_c02012{word-spacing:5.364000px;}
.ws50_c02012{word-spacing:5.385600px;}
.ws1e_c02012{word-spacing:5.436000px;}
.ws5_c02012{word-spacing:5.673600px;}
.ws20_c02012{word-spacing:6.019200px;}
.ws21_c02012{word-spacing:6.134400px;}
.ws22_c02012{word-spacing:6.199200px;}
.ws2a_c02012{word-spacing:6.660000px;}
.ws29_c02012{word-spacing:6.746400px;}
.ws28_c02012{word-spacing:6.861600px;}
.ws37_c02012{word-spacing:7.509600px;}
.ws38_c02012{word-spacing:7.682400px;}
.ws46_c02012{word-spacing:11.109600px;}
.ws47_c02012{word-spacing:11.138400px;}
.ws10_c02012{word-spacing:11.448000px;}
.wsf_c02012{word-spacing:11.505600px;}
.wsa_c02012{word-spacing:11.678400px;}
.ws1a_c02012{word-spacing:11.764800px;}
.ws9_c02012{word-spacing:11.793600px;}
.ws19_c02012{word-spacing:11.851200px;}
.ws35_c02012{word-spacing:12.031200px;}
.ws36_c02012{word-spacing:12.110400px;}
.ws44_c02012{word-spacing:12.117600px;}
.ws45_c02012{word-spacing:12.189600px;}
.ws3f_c02012{word-spacing:13.413600px;}
.ws40_c02012{word-spacing:13.629600px;}
.ws23_c02012{word-spacing:13.989600px;}
.ws24_c02012{word-spacing:14.011200px;}
.ws2b_c02012{word-spacing:15.652800px;}
.ws2d_c02012{word-spacing:15.688800px;}
.ws3b_c02012{word-spacing:15.732000px;}
.ws2c_c02012{word-spacing:15.782400px;}
.ws3c_c02012{word-spacing:15.825600px;}
.wsc_c02012{word-spacing:16.156800px;}
.wsb_c02012{word-spacing:16.236000px;}
.ws13_c02012{word-spacing:17.892000px;}
.ws14_c02012{word-spacing:18.000000px;}
.ws2_c02012{word-spacing:23.018400px;}
.ws3_c02012{word-spacing:23.104800px;}
.ws4e_c02012{word-spacing:35.532000px;}
.ws4d_c02012{word-spacing:35.560800px;}
._0_c02012{margin-left:-1.310616px;}
.fc0_c02012{color:rgb(0,0,0);}
.fs0_c02012{font-size:60.120000px;}
.fs1_c02012{font-size:72.000000px;}
.y0_c02012{bottom:0.000000px;}
.y2_c02012{bottom:57.360450px;}
.y2c_c02012{bottom:117.300450px;}
.y2b_c02012{bottom:140.970450px;}
.y2a_c02012{bottom:173.550450px;}
.y29_c02012{bottom:197.220450px;}
.y28_c02012{bottom:220.800450px;}
.y27_c02012{bottom:244.470450px;}
.y26_c02012{bottom:268.140450px;}
.y25_c02012{bottom:300.720450px;}
.y24_c02012{bottom:324.390450px;}
.y23_c02012{bottom:347.970450px;}
.y22_c02012{bottom:371.640450px;}
.y21_c02012{bottom:404.220450px;}
.y20_c02012{bottom:427.890450px;}
.y1f_c02012{bottom:451.470450px;}
.y1e_c02012{bottom:475.140450px;}
.y1d_c02012{bottom:498.810450px;}
.y1c_c02012{bottom:522.390450px;}
.y1b_c02012{bottom:546.060450px;}
.y1a_c02012{bottom:569.640450px;}
.y19_c02012{bottom:602.310450px;}
.y18_c02012{bottom:625.890450px;}
.y17_c02012{bottom:649.560450px;}
.y16_c02012{bottom:673.230450px;}
.y15_c02012{bottom:696.810450px;}
.y14_c02012{bottom:720.480450px;}
.y13_c02012{bottom:744.060450px;}
.y12_c02012{bottom:767.730450px;}
.y11_c02012{bottom:791.310450px;}
.y10_c02012{bottom:814.980450px;}
.yf_c02012{bottom:838.560450px;}
.ye_c02012{bottom:862.230450px;}
.yd_c02012{bottom:885.900450px;}
.yc_c02012{bottom:918.480450px;}
.yb_c02012{bottom:942.150450px;}
.ya_c02012{bottom:965.730450px;}
.y9_c02012{bottom:989.400450px;}
.y8_c02012{bottom:1012.980450px;}
.y7_c02012{bottom:1036.650450px;}
.y6_c02012{bottom:1060.230450px;}
.y5_c02012{bottom:1083.900450px;}
.y4_c02012{bottom:1116.570450px;}
.y3_c02012{bottom:1140.150450px;}
.y1_c02012{bottom:1196.130450px;}
.h1_c02012{height:60.589687px;}
.h2_c02012{height:63.175781px;}
.h3_c02012{height:63.351562px;}
.h0_c02012{height:1263.000000px;}
.w1_c02012{width:892.500000px;}
.w0_c02012{width:892.830000px;}
.x0_c02012{left:0.000000px;}
.x2_c02012{left:127.620000px;}
.x1_c02012{left:159.930000px;}
.x3_c02012{left:180.720000px;}
@media print{
.v0_c02012{vertical-align:0.000000pt;}
.ls12_c02012{letter-spacing:-0.032000pt;}
.ls10_c02012{letter-spacing:-0.025600pt;}
.ls14_c02012{letter-spacing:-0.019200pt;}
.ls13_c02012{letter-spacing:-0.012800pt;}
.ls11_c02012{letter-spacing:-0.006400pt;}
.lsf_c02012{letter-spacing:0.000000pt;}
.ls9_c02012{letter-spacing:0.006400pt;}
.ls5_c02012{letter-spacing:0.012800pt;}
.ls1_c02012{letter-spacing:0.019200pt;}
.lsa_c02012{letter-spacing:0.025600pt;}
.ls2_c02012{letter-spacing:0.032000pt;}
.ls7_c02012{letter-spacing:0.038400pt;}
.ls4_c02012{letter-spacing:0.044800pt;}
.ls3_c02012{letter-spacing:0.051200pt;}
.lse_c02012{letter-spacing:0.053440pt;}
.lsb_c02012{letter-spacing:0.057600pt;}
.ls6_c02012{letter-spacing:0.070400pt;}
.ls8_c02012{letter-spacing:0.076800pt;}
.lsd_c02012{letter-spacing:0.083200pt;}
.lsc_c02012{letter-spacing:0.089600pt;}
.ls0_c02012{letter-spacing:2123.520000pt;}
.ws3e_c02012{word-spacing:-0.192000pt;}
.ws2e_c02012{word-spacing:-0.166400pt;}
.ws2f_c02012{word-spacing:-0.153600pt;}
.ws4_c02012{word-spacing:-0.134400pt;}
.ws42_c02012{word-spacing:-0.025600pt;}
.ws43_c02012{word-spacing:-0.012800pt;}
.ws3d_c02012{word-spacing:-0.006400pt;}
.ws1_c02012{word-spacing:0.000000pt;}
.ws0_c02012{word-spacing:0.026720pt;}
.ws12_c02012{word-spacing:0.249600pt;}
.ws11_c02012{word-spacing:0.275200pt;}
.ws17_c02012{word-spacing:0.550400pt;}
.ws18_c02012{word-spacing:0.620800pt;}
.ws15_c02012{word-spacing:0.928000pt;}
.ws16_c02012{word-spacing:0.985600pt;}
.wse_c02012{word-spacing:1.126400pt;}
.ws32_c02012{word-spacing:1.152000pt;}
.wsd_c02012{word-spacing:1.184000pt;}
.ws30_c02012{word-spacing:1.235200pt;}
.ws31_c02012{word-spacing:1.267200pt;}
.ws7_c02012{word-spacing:1.484800pt;}
.ws25_c02012{word-spacing:1.523200pt;}
.ws6_c02012{word-spacing:1.555200pt;}
.ws8_c02012{word-spacing:1.625600pt;}
.ws48_c02012{word-spacing:1.792000pt;}
.ws49_c02012{word-spacing:1.862400pt;}
.ws4b_c02012{word-spacing:1.996800pt;}
.ws1c_c02012{word-spacing:2.112000pt;}
.ws1b_c02012{word-spacing:2.163200pt;}
.ws4a_c02012{word-spacing:2.201600pt;}
.ws4c_c02012{word-spacing:2.233600pt;}
.ws26_c02012{word-spacing:2.489600pt;}
.ws27_c02012{word-spacing:2.540800pt;}
.ws3a_c02012{word-spacing:3.776000pt;}
.ws39_c02012{word-spacing:3.827200pt;}
.ws34_c02012{word-spacing:4.326400pt;}
.ws33_c02012{word-spacing:4.492800pt;}
.ws4f_c02012{word-spacing:4.710400pt;}
.ws1f_c02012{word-spacing:4.716800pt;}
.ws1d_c02012{word-spacing:4.742400pt;}
.ws41_c02012{word-spacing:4.768000pt;}
.ws50_c02012{word-spacing:4.787200pt;}
.ws1e_c02012{word-spacing:4.832000pt;}
.ws5_c02012{word-spacing:5.043200pt;}
.ws20_c02012{word-spacing:5.350400pt;}
.ws21_c02012{word-spacing:5.452800pt;}
.ws22_c02012{word-spacing:5.510400pt;}
.ws2a_c02012{word-spacing:5.920000pt;}
.ws29_c02012{word-spacing:5.996800pt;}
.ws28_c02012{word-spacing:6.099200pt;}
.ws37_c02012{word-spacing:6.675200pt;}
.ws38_c02012{word-spacing:6.828800pt;}
.ws46_c02012{word-spacing:9.875200pt;}
.ws47_c02012{word-spacing:9.900800pt;}
.ws10_c02012{word-spacing:10.176000pt;}
.wsf_c02012{word-spacing:10.227200pt;}
.wsa_c02012{word-spacing:10.380800pt;}
.ws1a_c02012{word-spacing:10.457600pt;}
.ws9_c02012{word-spacing:10.483200pt;}
.ws19_c02012{word-spacing:10.534400pt;}
.ws35_c02012{word-spacing:10.694400pt;}
.ws36_c02012{word-spacing:10.764800pt;}
.ws44_c02012{word-spacing:10.771200pt;}
.ws45_c02012{word-spacing:10.835200pt;}
.ws3f_c02012{word-spacing:11.923200pt;}
.ws40_c02012{word-spacing:12.115200pt;}
.ws23_c02012{word-spacing:12.435200pt;}
.ws24_c02012{word-spacing:12.454400pt;}
.ws2b_c02012{word-spacing:13.913600pt;}
.ws2d_c02012{word-spacing:13.945600pt;}
.ws3b_c02012{word-spacing:13.984000pt;}
.ws2c_c02012{word-spacing:14.028800pt;}
.ws3c_c02012{word-spacing:14.067200pt;}
.wsc_c02012{word-spacing:14.361600pt;}
.wsb_c02012{word-spacing:14.432000pt;}
.ws13_c02012{word-spacing:15.904000pt;}
.ws14_c02012{word-spacing:16.000000pt;}
.ws2_c02012{word-spacing:20.460800pt;}
.ws3_c02012{word-spacing:20.537600pt;}
.ws4e_c02012{word-spacing:31.584000pt;}
.ws4d_c02012{word-spacing:31.609600pt;}
._0_c02012{margin-left:-1.164992pt;}
.fs0_c02012{font-size:53.440000pt;}
.fs1_c02012{font-size:64.000000pt;}
.y0_c02012{bottom:0.000000pt;}
.y2_c02012{bottom:50.987067pt;}
.y2c_c02012{bottom:104.267067pt;}
.y2b_c02012{bottom:125.307067pt;}
.y2a_c02012{bottom:154.267067pt;}
.y29_c02012{bottom:175.307067pt;}
.y28_c02012{bottom:196.267067pt;}
.y27_c02012{bottom:217.307067pt;}
.y26_c02012{bottom:238.347067pt;}
.y25_c02012{bottom:267.307067pt;}
.y24_c02012{bottom:288.347067pt;}
.y23_c02012{bottom:309.307067pt;}
.y22_c02012{bottom:330.347067pt;}
.y21_c02012{bottom:359.307067pt;}
.y20_c02012{bottom:380.347067pt;}
.y1f_c02012{bottom:401.307067pt;}
.y1e_c02012{bottom:422.347067pt;}
.y1d_c02012{bottom:443.387067pt;}
.y1c_c02012{bottom:464.347067pt;}
.y1b_c02012{bottom:485.387067pt;}
.y1a_c02012{bottom:506.347067pt;}
.y19_c02012{bottom:535.387067pt;}
.y18_c02012{bottom:556.347067pt;}
.y17_c02012{bottom:577.387067pt;}
.y16_c02012{bottom:598.427067pt;}
.y15_c02012{bottom:619.387067pt;}
.y14_c02012{bottom:640.427067pt;}
.y13_c02012{bottom:661.387067pt;}
.y12_c02012{bottom:682.427067pt;}
.y11_c02012{bottom:703.387067pt;}
.y10_c02012{bottom:724.427067pt;}
.yf_c02012{bottom:745.387067pt;}
.ye_c02012{bottom:766.427067pt;}
.yd_c02012{bottom:787.467067pt;}
.yc_c02012{bottom:816.427067pt;}
.yb_c02012{bottom:837.467067pt;}
.ya_c02012{bottom:858.427067pt;}
.y9_c02012{bottom:879.467067pt;}
.y8_c02012{bottom:900.427067pt;}
.y7_c02012{bottom:921.467067pt;}
.y6_c02012{bottom:942.427067pt;}
.y5_c02012{bottom:963.467067pt;}
.y4_c02012{bottom:992.507067pt;}
.y3_c02012{bottom:1013.467067pt;}
.y1_c02012{bottom:1063.227067pt;}
.h1_c02012{height:53.857500pt;}
.h2_c02012{height:56.156250pt;}
.h3_c02012{height:56.312500pt;}
.h0_c02012{height:1122.666667pt;}
.w1_c02012{width:793.333333pt;}
.w0_c02012{width:793.626667pt;}
.x0_c02012{left:0.000000pt;}
.x2_c02012{left:113.440000pt;}
.x1_c02012{left:142.160000pt;}
.x3_c02012{left:160.640000pt;}
}





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

.ir_c02013:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02013;src:url('chunks/assets/font_f75d8e1241415a6bc3a3920f.woff2')format("woff");}.ff1_c02013{font-family:ff1_c02013;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02013{vertical-align:0.000000px;}
.ls12_c02013{letter-spacing:-0.050400px;}
.ls13_c02013{letter-spacing:-0.036000px;}
.ls10_c02013{letter-spacing:-0.014400px;}
.ls11_c02013{letter-spacing:-0.007200px;}
.lsf_c02013{letter-spacing:0.000000px;}
.lsb_c02013{letter-spacing:0.007200px;}
.ls2_c02013{letter-spacing:0.014400px;}
.ls5_c02013{letter-spacing:0.021600px;}
.ls1_c02013{letter-spacing:0.028800px;}
.ls9_c02013{letter-spacing:0.036000px;}
.ls3_c02013{letter-spacing:0.043200px;}
.ls4_c02013{letter-spacing:0.050400px;}
.lsc_c02013{letter-spacing:0.057600px;}
.lse_c02013{letter-spacing:0.060120px;}
.ls8_c02013{letter-spacing:0.064800px;}
.ls6_c02013{letter-spacing:0.072000px;}
.lsd_c02013{letter-spacing:0.079200px;}
.lsa_c02013{letter-spacing:0.086400px;}
.ls7_c02013{letter-spacing:0.093600px;}
.ls0_c02013{letter-spacing:2388.960000px;}
.sc__c02013{text-shadow:none;}
.sc0_c02013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02013{-webkit-text-stroke:0px transparent;}
.sc0_c02013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4d_c02013{word-spacing:-0.374400px;}
.ws33_c02013{word-spacing:-0.223200px;}
.ws4c_c02013{word-spacing:-0.172800px;}
.ws24_c02013{word-spacing:-0.136800px;}
.wse_c02013{word-spacing:-0.122400px;}
.ws4b_c02013{word-spacing:-0.108000px;}
.ws44_c02013{word-spacing:-0.100800px;}
.ws5_c02013{word-spacing:-0.079200px;}
.ws2b_c02013{word-spacing:-0.057600px;}
.ws45_c02013{word-spacing:-0.050400px;}
.ws4_c02013{word-spacing:-0.028800px;}
.wsd_c02013{word-spacing:-0.021600px;}
.ws2a_c02013{word-spacing:-0.014400px;}
.ws1_c02013{word-spacing:0.000000px;}
.ws0_c02013{word-spacing:0.030060px;}
.ws14_c02013{word-spacing:0.144000px;}
.ws41_c02013{word-spacing:0.187200px;}
.ws40_c02013{word-spacing:0.194400px;}
.ws3_c02013{word-spacing:0.244800px;}
.ws13_c02013{word-spacing:0.252000px;}
.ws3f_c02013{word-spacing:0.288000px;}
.ws2_c02013{word-spacing:0.331200px;}
.ws37_c02013{word-spacing:1.382400px;}
.ws36_c02013{word-spacing:1.432800px;}
.ws27_c02013{word-spacing:2.311200px;}
.ws29_c02013{word-spacing:2.332800px;}
.ws28_c02013{word-spacing:2.354400px;}
.ws1d_c02013{word-spacing:2.433600px;}
.ws3d_c02013{word-spacing:2.476800px;}
.ws3e_c02013{word-spacing:2.498400px;}
.ws1e_c02013{word-spacing:2.512800px;}
.ws1c_c02013{word-spacing:2.534400px;}
.ws4a_c02013{word-spacing:3.564000px;}
.ws22_c02013{word-spacing:3.823200px;}
.ws23_c02013{word-spacing:3.852000px;}
.ws32_c02013{word-spacing:4.089600px;}
.ws31_c02013{word-spacing:4.190400px;}
.ws2d_c02013{word-spacing:4.536000px;}
.ws2c_c02013{word-spacing:4.608000px;}
.ws1a_c02013{word-spacing:5.558400px;}
.ws42_c02013{word-spacing:5.587200px;}
.ws1b_c02013{word-spacing:5.608800px;}
.ws43_c02013{word-spacing:5.644800px;}
.ws30_c02013{word-spacing:5.702400px;}
.ws21_c02013{word-spacing:5.724000px;}
.ws19_c02013{word-spacing:5.738400px;}
.ws11_c02013{word-spacing:5.745600px;}
.ws12_c02013{word-spacing:5.832000px;}
.ws4e_c02013{word-spacing:5.954400px;}
.ws4f_c02013{word-spacing:6.040800px;}
.ws50_c02013{word-spacing:6.076800px;}
.ws3a_c02013{word-spacing:6.098400px;}
.ws3b_c02013{word-spacing:6.127200px;}
.ws3c_c02013{word-spacing:6.156000px;}
.ws46_c02013{word-spacing:8.409600px;}
.ws47_c02013{word-spacing:8.560800px;}
.ws51_c02013{word-spacing:9.972000px;}
.ws52_c02013{word-spacing:9.979200px;}
.ws7_c02013{word-spacing:10.216800px;}
.ws6_c02013{word-spacing:10.360800px;}
.ws8_c02013{word-spacing:10.440000px;}
.ws2f_c02013{word-spacing:11.073600px;}
.ws2e_c02013{word-spacing:11.152800px;}
.ws15_c02013{word-spacing:11.325600px;}
.ws16_c02013{word-spacing:11.340000px;}
.ws17_c02013{word-spacing:11.433600px;}
.wsc_c02013{word-spacing:12.571200px;}
.ws20_c02013{word-spacing:14.270400px;}
.ws1f_c02013{word-spacing:14.385600px;}
.ws10_c02013{word-spacing:15.602400px;}
.wsf_c02013{word-spacing:15.739200px;}
.ws49_c02013{word-spacing:16.531200px;}
.ws48_c02013{word-spacing:16.560000px;}
.ws39_c02013{word-spacing:18.662400px;}
.ws38_c02013{word-spacing:18.720000px;}
.ws34_c02013{word-spacing:21.492000px;}
.ws35_c02013{word-spacing:21.571200px;}
.ws9_c02013{word-spacing:26.409600px;}
.wsb_c02013{word-spacing:26.589600px;}
.wsa_c02013{word-spacing:26.618400px;}
.ws18_c02013{word-spacing:28.022400px;}
.ws25_c02013{word-spacing:28.353600px;}
.ws26_c02013{word-spacing:28.490400px;}
._0_c02013{margin-left:-1.310616px;}
.fc0_c02013{color:rgb(0,0,0);}
.fs0_c02013{font-size:60.120000px;}
.fs1_c02013{font-size:72.000000px;}
.y0_c02013{bottom:0.000000px;}
.y2_c02013{bottom:57.360450px;}
.y2b_c02013{bottom:113.970450px;}
.y2a_c02013{bottom:137.550450px;}
.y29_c02013{bottom:170.220450px;}
.y28_c02013{bottom:193.800450px;}
.y27_c02013{bottom:217.470450px;}
.y26_c02013{bottom:241.140450px;}
.y25_c02013{bottom:273.720450px;}
.y24_c02013{bottom:297.390450px;}
.y23_c02013{bottom:320.970450px;}
.y22_c02013{bottom:344.640450px;}
.y21_c02013{bottom:368.220450px;}
.y20_c02013{bottom:400.890450px;}
.y1f_c02013{bottom:424.470450px;}
.y1e_c02013{bottom:448.140450px;}
.y1d_c02013{bottom:471.810450px;}
.y1c_c02013{bottom:504.390450px;}
.y1b_c02013{bottom:528.060450px;}
.y1a_c02013{bottom:551.640450px;}
.y19_c02013{bottom:575.310450px;}
.y18_c02013{bottom:598.890450px;}
.y17_c02013{bottom:631.560450px;}
.y16_c02013{bottom:655.230450px;}
.y15_c02013{bottom:678.810450px;}
.y14_c02013{bottom:711.480450px;}
.y13_c02013{bottom:735.060450px;}
.y12_c02013{bottom:758.730450px;}
.y11_c02013{bottom:782.310450px;}
.y10_c02013{bottom:805.980450px;}
.yf_c02013{bottom:829.560450px;}
.ye_c02013{bottom:853.230450px;}
.yd_c02013{bottom:876.900450px;}
.yc_c02013{bottom:909.480450px;}
.yb_c02013{bottom:933.150450px;}
.ya_c02013{bottom:956.730450px;}
.y9_c02013{bottom:989.400450px;}
.y8_c02013{bottom:1012.980450px;}
.y7_c02013{bottom:1036.650450px;}
.y6_c02013{bottom:1060.230450px;}
.y5_c02013{bottom:1083.900450px;}
.y4_c02013{bottom:1116.570450px;}
.y3_c02013{bottom:1140.150450px;}
.y1_c02013{bottom:1196.130450px;}
.h1_c02013{height:63.175781px;}
.h0_c02013{height:1263.000000px;}
.w1_c02013{width:892.500000px;}
.w0_c02013{width:892.830000px;}
.x0_c02013{left:0.000000px;}
.x1_c02013{left:127.620000px;}
.x2_c02013{left:180.720000px;}
@media print{
.v0_c02013{vertical-align:0.000000pt;}
.ls12_c02013{letter-spacing:-0.044800pt;}
.ls13_c02013{letter-spacing:-0.032000pt;}
.ls10_c02013{letter-spacing:-0.012800pt;}
.ls11_c02013{letter-spacing:-0.006400pt;}
.lsf_c02013{letter-spacing:0.000000pt;}
.lsb_c02013{letter-spacing:0.006400pt;}
.ls2_c02013{letter-spacing:0.012800pt;}
.ls5_c02013{letter-spacing:0.019200pt;}
.ls1_c02013{letter-spacing:0.025600pt;}
.ls9_c02013{letter-spacing:0.032000pt;}
.ls3_c02013{letter-spacing:0.038400pt;}
.ls4_c02013{letter-spacing:0.044800pt;}
.lsc_c02013{letter-spacing:0.051200pt;}
.lse_c02013{letter-spacing:0.053440pt;}
.ls8_c02013{letter-spacing:0.057600pt;}
.ls6_c02013{letter-spacing:0.064000pt;}
.lsd_c02013{letter-spacing:0.070400pt;}
.lsa_c02013{letter-spacing:0.076800pt;}
.ls7_c02013{letter-spacing:0.083200pt;}
.ls0_c02013{letter-spacing:2123.520000pt;}
.ws4d_c02013{word-spacing:-0.332800pt;}
.ws33_c02013{word-spacing:-0.198400pt;}
.ws4c_c02013{word-spacing:-0.153600pt;}
.ws24_c02013{word-spacing:-0.121600pt;}
.wse_c02013{word-spacing:-0.108800pt;}
.ws4b_c02013{word-spacing:-0.096000pt;}
.ws44_c02013{word-spacing:-0.089600pt;}
.ws5_c02013{word-spacing:-0.070400pt;}
.ws2b_c02013{word-spacing:-0.051200pt;}
.ws45_c02013{word-spacing:-0.044800pt;}
.ws4_c02013{word-spacing:-0.025600pt;}
.wsd_c02013{word-spacing:-0.019200pt;}
.ws2a_c02013{word-spacing:-0.012800pt;}
.ws1_c02013{word-spacing:0.000000pt;}
.ws0_c02013{word-spacing:0.026720pt;}
.ws14_c02013{word-spacing:0.128000pt;}
.ws41_c02013{word-spacing:0.166400pt;}
.ws40_c02013{word-spacing:0.172800pt;}
.ws3_c02013{word-spacing:0.217600pt;}
.ws13_c02013{word-spacing:0.224000pt;}
.ws3f_c02013{word-spacing:0.256000pt;}
.ws2_c02013{word-spacing:0.294400pt;}
.ws37_c02013{word-spacing:1.228800pt;}
.ws36_c02013{word-spacing:1.273600pt;}
.ws27_c02013{word-spacing:2.054400pt;}
.ws29_c02013{word-spacing:2.073600pt;}
.ws28_c02013{word-spacing:2.092800pt;}
.ws1d_c02013{word-spacing:2.163200pt;}
.ws3d_c02013{word-spacing:2.201600pt;}
.ws3e_c02013{word-spacing:2.220800pt;}
.ws1e_c02013{word-spacing:2.233600pt;}
.ws1c_c02013{word-spacing:2.252800pt;}
.ws4a_c02013{word-spacing:3.168000pt;}
.ws22_c02013{word-spacing:3.398400pt;}
.ws23_c02013{word-spacing:3.424000pt;}
.ws32_c02013{word-spacing:3.635200pt;}
.ws31_c02013{word-spacing:3.724800pt;}
.ws2d_c02013{word-spacing:4.032000pt;}
.ws2c_c02013{word-spacing:4.096000pt;}
.ws1a_c02013{word-spacing:4.940800pt;}
.ws42_c02013{word-spacing:4.966400pt;}
.ws1b_c02013{word-spacing:4.985600pt;}
.ws43_c02013{word-spacing:5.017600pt;}
.ws30_c02013{word-spacing:5.068800pt;}
.ws21_c02013{word-spacing:5.088000pt;}
.ws19_c02013{word-spacing:5.100800pt;}
.ws11_c02013{word-spacing:5.107200pt;}
.ws12_c02013{word-spacing:5.184000pt;}
.ws4e_c02013{word-spacing:5.292800pt;}
.ws4f_c02013{word-spacing:5.369600pt;}
.ws50_c02013{word-spacing:5.401600pt;}
.ws3a_c02013{word-spacing:5.420800pt;}
.ws3b_c02013{word-spacing:5.446400pt;}
.ws3c_c02013{word-spacing:5.472000pt;}
.ws46_c02013{word-spacing:7.475200pt;}
.ws47_c02013{word-spacing:7.609600pt;}
.ws51_c02013{word-spacing:8.864000pt;}
.ws52_c02013{word-spacing:8.870400pt;}
.ws7_c02013{word-spacing:9.081600pt;}
.ws6_c02013{word-spacing:9.209600pt;}
.ws8_c02013{word-spacing:9.280000pt;}
.ws2f_c02013{word-spacing:9.843200pt;}
.ws2e_c02013{word-spacing:9.913600pt;}
.ws15_c02013{word-spacing:10.067200pt;}
.ws16_c02013{word-spacing:10.080000pt;}
.ws17_c02013{word-spacing:10.163200pt;}
.wsc_c02013{word-spacing:11.174400pt;}
.ws20_c02013{word-spacing:12.684800pt;}
.ws1f_c02013{word-spacing:12.787200pt;}
.ws10_c02013{word-spacing:13.868800pt;}
.wsf_c02013{word-spacing:13.990400pt;}
.ws49_c02013{word-spacing:14.694400pt;}
.ws48_c02013{word-spacing:14.720000pt;}
.ws39_c02013{word-spacing:16.588800pt;}
.ws38_c02013{word-spacing:16.640000pt;}
.ws34_c02013{word-spacing:19.104000pt;}
.ws35_c02013{word-spacing:19.174400pt;}
.ws9_c02013{word-spacing:23.475200pt;}
.wsb_c02013{word-spacing:23.635200pt;}
.wsa_c02013{word-spacing:23.660800pt;}
.ws18_c02013{word-spacing:24.908800pt;}
.ws25_c02013{word-spacing:25.203200pt;}
.ws26_c02013{word-spacing:25.324800pt;}
._0_c02013{margin-left:-1.164992pt;}
.fs0_c02013{font-size:53.440000pt;}
.fs1_c02013{font-size:64.000000pt;}
.y0_c02013{bottom:0.000000pt;}
.y2_c02013{bottom:50.987067pt;}
.y2b_c02013{bottom:101.307067pt;}
.y2a_c02013{bottom:122.267067pt;}
.y29_c02013{bottom:151.307067pt;}
.y28_c02013{bottom:172.267067pt;}
.y27_c02013{bottom:193.307067pt;}
.y26_c02013{bottom:214.347067pt;}
.y25_c02013{bottom:243.307067pt;}
.y24_c02013{bottom:264.347067pt;}
.y23_c02013{bottom:285.307067pt;}
.y22_c02013{bottom:306.347067pt;}
.y21_c02013{bottom:327.307067pt;}
.y20_c02013{bottom:356.347067pt;}
.y1f_c02013{bottom:377.307067pt;}
.y1e_c02013{bottom:398.347067pt;}
.y1d_c02013{bottom:419.387067pt;}
.y1c_c02013{bottom:448.347067pt;}
.y1b_c02013{bottom:469.387067pt;}
.y1a_c02013{bottom:490.347067pt;}
.y19_c02013{bottom:511.387067pt;}
.y18_c02013{bottom:532.347067pt;}
.y17_c02013{bottom:561.387067pt;}
.y16_c02013{bottom:582.427067pt;}
.y15_c02013{bottom:603.387067pt;}
.y14_c02013{bottom:632.427067pt;}
.y13_c02013{bottom:653.387067pt;}
.y12_c02013{bottom:674.427067pt;}
.y11_c02013{bottom:695.387067pt;}
.y10_c02013{bottom:716.427067pt;}
.yf_c02013{bottom:737.387067pt;}
.ye_c02013{bottom:758.427067pt;}
.yd_c02013{bottom:779.467067pt;}
.yc_c02013{bottom:808.427067pt;}
.yb_c02013{bottom:829.467067pt;}
.ya_c02013{bottom:850.427067pt;}
.y9_c02013{bottom:879.467067pt;}
.y8_c02013{bottom:900.427067pt;}
.y7_c02013{bottom:921.467067pt;}
.y6_c02013{bottom:942.427067pt;}
.y5_c02013{bottom:963.467067pt;}
.y4_c02013{bottom:992.507067pt;}
.y3_c02013{bottom:1013.467067pt;}
.y1_c02013{bottom:1063.227067pt;}
.h1_c02013{height:56.156250pt;}
.h0_c02013{height:1122.666667pt;}
.w1_c02013{width:793.333333pt;}
.w0_c02013{width:793.626667pt;}
.x0_c02013{left:0.000000pt;}
.x1_c02013{left:113.440000pt;}
.x2_c02013{left:160.640000pt;}
}





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

.ir_c02014:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02014{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02014;src:url('chunks/assets/font_1840bb75b6ce40179bb93b0a.woff2')format("woff");}.ff1_c02014{font-family:ff1_c02014;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02014;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2_c02014{font-family:ff2_c02014;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02014;src:url('chunks/assets/font_cc757ebab53c04bf7ae414d1.woff2')format("woff");}.ff3_c02014{font-family:ff3_c02014;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c02014{vertical-align:-27.000000px;}
.v0_c02014{vertical-align:0.000000px;}
.v1_c02014{vertical-align:33.120000px;}
.ls12_c02014{letter-spacing:-0.192384px;}
.ls15_c02014{letter-spacing:-0.066132px;}
.lsf_c02014{letter-spacing:-0.064800px;}
.ls11_c02014{letter-spacing:-0.030060px;}
.lse_c02014{letter-spacing:-0.021600px;}
.ls13_c02014{letter-spacing:-0.018036px;}
.lsd_c02014{letter-spacing:-0.014400px;}
.ls14_c02014{letter-spacing:-0.012024px;}
.lsc_c02014{letter-spacing:0.000000px;}
.ls2_c02014{letter-spacing:0.007200px;}
.ls1_c02014{letter-spacing:0.014400px;}
.lsa_c02014{letter-spacing:0.021600px;}
.ls3_c02014{letter-spacing:0.028800px;}
.ls8_c02014{letter-spacing:0.036000px;}
.ls4_c02014{letter-spacing:0.050400px;}
.ls9_c02014{letter-spacing:0.057600px;}
.lsb_c02014{letter-spacing:0.060120px;}
.ls5_c02014{letter-spacing:0.079200px;}
.ls6_c02014{letter-spacing:0.086400px;}
.ls10_c02014{letter-spacing:0.102204px;}
.ls7_c02014{letter-spacing:0.180000px;}
.ls0_c02014{letter-spacing:2388.960000px;}
.sc__c02014{text-shadow:none;}
.sc0_c02014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02014{-webkit-text-stroke:0px transparent;}
.sc0_c02014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02014{word-spacing:-17.978400px;}
.ws2_c02014{word-spacing:-15.017976px;}
.ws1_c02014{word-spacing:-9.720000px;}
.ws9_c02014{word-spacing:-0.136800px;}
.ws8_c02014{word-spacing:-0.108000px;}
.ws23_c02014{word-spacing:-0.093600px;}
.ws22_c02014{word-spacing:-0.064800px;}
.ws1c_c02014{word-spacing:-0.036000px;}
.ws15_c02014{word-spacing:-0.007200px;}
.ws4_c02014{word-spacing:0.000000px;}
.ws3_c02014{word-spacing:0.030060px;}
.ws24_c02014{word-spacing:1.424844px;}
.ws12_c02014{word-spacing:1.533600px;}
.ws27_c02014{word-spacing:1.545084px;}
.ws25_c02014{word-spacing:1.557108px;}
.ws28_c02014{word-spacing:1.593180px;}
.wsf_c02014{word-spacing:1.627200px;}
.ws26_c02014{word-spacing:1.719432px;}
.ws10_c02014{word-spacing:1.814400px;}
.ws11_c02014{word-spacing:1.864800px;}
.wsc_c02014{word-spacing:2.368800px;}
.wsb_c02014{word-spacing:2.448000px;}
.wsa_c02014{word-spacing:2.462400px;}
.ws5_c02014{word-spacing:4.183200px;}
.ws7_c02014{word-spacing:4.219200px;}
.ws6_c02014{word-spacing:4.248000px;}
.ws1f_c02014{word-spacing:5.313600px;}
.ws21_c02014{word-spacing:5.349600px;}
.ws20_c02014{word-spacing:5.392800px;}
.ws1a_c02014{word-spacing:5.961600px;}
.ws1b_c02014{word-spacing:6.076800px;}
.ws1d_c02014{word-spacing:6.674400px;}
.ws1e_c02014{word-spacing:6.696000px;}
.wsd_c02014{word-spacing:12.571200px;}
.wse_c02014{word-spacing:12.578400px;}
.ws16_c02014{word-spacing:17.431200px;}
.ws18_c02014{word-spacing:17.582400px;}
.ws17_c02014{word-spacing:17.604000px;}
.ws19_c02014{word-spacing:17.668800px;}
.ws14_c02014{word-spacing:19.029600px;}
.ws13_c02014{word-spacing:19.051200px;}
._0_c02014{margin-left:-1.310616px;}
._1_c02014{width:1.070136px;}
.fc0_c02014{color:rgb(0,0,0);}
.fs3_c02014{font-size:38.880000px;}
.fs2_c02014{font-size:47.880000px;}
.fs0_c02014{font-size:60.120000px;}
.fs1_c02014{font-size:72.000000px;}
.y0_c02014{bottom:0.000000px;}
.y2_c02014{bottom:57.360450px;}
.y13_c02014{bottom:109.920639px;}
.y12_c02014{bottom:133.860450px;}
.y11_c02014{bottom:145.020450px;}
.y10_c02014{bottom:805.980450px;}
.yf_c02014{bottom:829.560450px;}
.ye_c02014{bottom:853.230450px;}
.yd_c02014{bottom:885.900450px;}
.yc_c02014{bottom:909.480450px;}
.yb_c02014{bottom:933.150450px;}
.ya_c02014{bottom:956.730450px;}
.y9_c02014{bottom:989.400450px;}
.y8_c02014{bottom:1012.980450px;}
.y7_c02014{bottom:1036.650450px;}
.y6_c02014{bottom:1060.230450px;}
.y5_c02014{bottom:1083.900450px;}
.y4_c02014{bottom:1116.570450px;}
.y3_c02014{bottom:1140.150450px;}
.y1_c02014{bottom:1196.130450px;}
.h5_c02014{height:34.114922px;}
.h6_c02014{height:52.898555px;}
.h1_c02014{height:60.589687px;}
.h2_c02014{height:63.175781px;}
.h3_c02014{height:63.351562px;}
.h4_c02014{height:75.131895px;}
.h0_c02014{height:1263.000000px;}
.w1_c02014{width:892.500000px;}
.w0_c02014{width:892.830000px;}
.x0_c02014{left:0.000000px;}
.x2_c02014{left:127.620000px;}
.x1_c02014{left:159.930000px;}
.x3_c02014{left:180.720000px;}
@media print{
.v2_c02014{vertical-align:-24.000000pt;}
.v0_c02014{vertical-align:0.000000pt;}
.v1_c02014{vertical-align:29.440000pt;}
.ls12_c02014{letter-spacing:-0.171008pt;}
.ls15_c02014{letter-spacing:-0.058784pt;}
.lsf_c02014{letter-spacing:-0.057600pt;}
.ls11_c02014{letter-spacing:-0.026720pt;}
.lse_c02014{letter-spacing:-0.019200pt;}
.ls13_c02014{letter-spacing:-0.016032pt;}
.lsd_c02014{letter-spacing:-0.012800pt;}
.ls14_c02014{letter-spacing:-0.010688pt;}
.lsc_c02014{letter-spacing:0.000000pt;}
.ls2_c02014{letter-spacing:0.006400pt;}
.ls1_c02014{letter-spacing:0.012800pt;}
.lsa_c02014{letter-spacing:0.019200pt;}
.ls3_c02014{letter-spacing:0.025600pt;}
.ls8_c02014{letter-spacing:0.032000pt;}
.ls4_c02014{letter-spacing:0.044800pt;}
.ls9_c02014{letter-spacing:0.051200pt;}
.lsb_c02014{letter-spacing:0.053440pt;}
.ls5_c02014{letter-spacing:0.070400pt;}
.ls6_c02014{letter-spacing:0.076800pt;}
.ls10_c02014{letter-spacing:0.090848pt;}
.ls7_c02014{letter-spacing:0.160000pt;}
.ls0_c02014{letter-spacing:2123.520000pt;}
.ws0_c02014{word-spacing:-15.980800pt;}
.ws2_c02014{word-spacing:-13.349312pt;}
.ws1_c02014{word-spacing:-8.640000pt;}
.ws9_c02014{word-spacing:-0.121600pt;}
.ws8_c02014{word-spacing:-0.096000pt;}
.ws23_c02014{word-spacing:-0.083200pt;}
.ws22_c02014{word-spacing:-0.057600pt;}
.ws1c_c02014{word-spacing:-0.032000pt;}
.ws15_c02014{word-spacing:-0.006400pt;}
.ws4_c02014{word-spacing:0.000000pt;}
.ws3_c02014{word-spacing:0.026720pt;}
.ws24_c02014{word-spacing:1.266528pt;}
.ws12_c02014{word-spacing:1.363200pt;}
.ws27_c02014{word-spacing:1.373408pt;}
.ws25_c02014{word-spacing:1.384096pt;}
.ws28_c02014{word-spacing:1.416160pt;}
.wsf_c02014{word-spacing:1.446400pt;}
.ws26_c02014{word-spacing:1.528384pt;}
.ws10_c02014{word-spacing:1.612800pt;}
.ws11_c02014{word-spacing:1.657600pt;}
.wsc_c02014{word-spacing:2.105600pt;}
.wsb_c02014{word-spacing:2.176000pt;}
.wsa_c02014{word-spacing:2.188800pt;}
.ws5_c02014{word-spacing:3.718400pt;}
.ws7_c02014{word-spacing:3.750400pt;}
.ws6_c02014{word-spacing:3.776000pt;}
.ws1f_c02014{word-spacing:4.723200pt;}
.ws21_c02014{word-spacing:4.755200pt;}
.ws20_c02014{word-spacing:4.793600pt;}
.ws1a_c02014{word-spacing:5.299200pt;}
.ws1b_c02014{word-spacing:5.401600pt;}
.ws1d_c02014{word-spacing:5.932800pt;}
.ws1e_c02014{word-spacing:5.952000pt;}
.wsd_c02014{word-spacing:11.174400pt;}
.wse_c02014{word-spacing:11.180800pt;}
.ws16_c02014{word-spacing:15.494400pt;}
.ws18_c02014{word-spacing:15.628800pt;}
.ws17_c02014{word-spacing:15.648000pt;}
.ws19_c02014{word-spacing:15.705600pt;}
.ws14_c02014{word-spacing:16.915200pt;}
.ws13_c02014{word-spacing:16.934400pt;}
._0_c02014{margin-left:-1.164992pt;}
._1_c02014{width:0.951232pt;}
.fs3_c02014{font-size:34.560000pt;}
.fs2_c02014{font-size:42.560000pt;}
.fs0_c02014{font-size:53.440000pt;}
.fs1_c02014{font-size:64.000000pt;}
.y0_c02014{bottom:0.000000pt;}
.y2_c02014{bottom:50.987067pt;}
.y13_c02014{bottom:97.707235pt;}
.y12_c02014{bottom:118.987067pt;}
.y11_c02014{bottom:128.907067pt;}
.y10_c02014{bottom:716.427067pt;}
.yf_c02014{bottom:737.387067pt;}
.ye_c02014{bottom:758.427067pt;}
.yd_c02014{bottom:787.467067pt;}
.yc_c02014{bottom:808.427067pt;}
.yb_c02014{bottom:829.467067pt;}
.ya_c02014{bottom:850.427067pt;}
.y9_c02014{bottom:879.467067pt;}
.y8_c02014{bottom:900.427067pt;}
.y7_c02014{bottom:921.467067pt;}
.y6_c02014{bottom:942.427067pt;}
.y5_c02014{bottom:963.467067pt;}
.y4_c02014{bottom:992.507067pt;}
.y3_c02014{bottom:1013.467067pt;}
.y1_c02014{bottom:1063.227067pt;}
.h5_c02014{height:30.324375pt;}
.h6_c02014{height:47.020937pt;}
.h1_c02014{height:53.857500pt;}
.h2_c02014{height:56.156250pt;}
.h3_c02014{height:56.312500pt;}
.h4_c02014{height:66.783906pt;}
.h0_c02014{height:1122.666667pt;}
.w1_c02014{width:793.333333pt;}
.w0_c02014{width:793.626667pt;}
.x0_c02014{left:0.000000pt;}
.x2_c02014{left:113.440000pt;}
.x1_c02014{left:142.160000pt;}
.x3_c02014{left:160.640000pt;}
}





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

.ir_c02015:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02015;src:url('chunks/assets/font_f211546ee19f3593d54fdc94.woff2')format("woff");}.ff1_c02015{font-family:ff1_c02015;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02015{vertical-align:0.000000px;}
.ls2_c02015{letter-spacing:0.000000px;}
.ls1_c02015{letter-spacing:0.060120px;}
.ls0_c02015{letter-spacing:2388.960000px;}
.sc__c02015{text-shadow:none;}
.sc0_c02015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02015{-webkit-text-stroke:0px transparent;}
.sc0_c02015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02015{word-spacing:0.000000px;}
.ws0_c02015{word-spacing:0.030060px;}
._0_c02015{margin-left:-1.310616px;}
.fc0_c02015{color:rgb(0,0,0);}
.fs0_c02015{font-size:60.120000px;}
.fs1_c02015{font-size:72.000000px;}
.y0_c02015{bottom:0.000000px;}
.y2_c02015{bottom:57.360450px;}
.y3_c02015{bottom:1140.150450px;}
.y1_c02015{bottom:1196.130450px;}
.h1_c02015{height:63.175781px;}
.h0_c02015{height:1263.000000px;}
.w1_c02015{width:892.500000px;}
.w0_c02015{width:892.830000px;}
.x0_c02015{left:0.000000px;}
.x1_c02015{left:127.620000px;}
@media print{
.v0_c02015{vertical-align:0.000000pt;}
.ls2_c02015{letter-spacing:0.000000pt;}
.ls1_c02015{letter-spacing:0.053440pt;}
.ls0_c02015{letter-spacing:2123.520000pt;}
.ws1_c02015{word-spacing:0.000000pt;}
.ws0_c02015{word-spacing:0.026720pt;}
._0_c02015{margin-left:-1.164992pt;}
.fs0_c02015{font-size:53.440000pt;}
.fs1_c02015{font-size:64.000000pt;}
.y0_c02015{bottom:0.000000pt;}
.y2_c02015{bottom:50.987067pt;}
.y3_c02015{bottom:1013.467067pt;}
.y1_c02015{bottom:1063.227067pt;}
.h1_c02015{height:56.156250pt;}
.h0_c02015{height:1122.666667pt;}
.w1_c02015{width:793.333333pt;}
.w0_c02015{width:793.626667pt;}
.x0_c02015{left:0.000000pt;}
.x1_c02015{left:113.440000pt;}
}





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

.ir_c02016:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02016{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02016;src:url('chunks/assets/font_45f4ad8ea73cbf1f564ad7be.woff2')format("woff");}.ff1_c02016{font-family:ff1_c02016;line-height:0.686346;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02016{vertical-align:0.000000px;}
.ls0_c02016{letter-spacing:-0.050346px;}
.sc__c02016{text-shadow:none;}
.sc0_c02016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02016{-webkit-text-stroke:0px transparent;}
.sc0_c02016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02016{word-spacing:0.134256px;}
.fc0_c02016{color:rgb(0,0,0);}
.fs0_c02016{font-size:167.820600px;}
.y0_c02016{bottom:0.000000px;}
.y1_c02016{bottom:682.009500px;}
.h1_c02016{height:112.665714px;}
.h0_c02016{height:1263.000000px;}
.w1_c02016{width:892.500000px;}
.w0_c02016{width:892.830000px;}
.x0_c02016{left:0.000000px;}
.x1_c02016{left:315.335700px;}
@media print{
.v0_c02016{vertical-align:0.000000pt;}
.ls0_c02016{letter-spacing:-0.044752pt;}
.ws0_c02016{word-spacing:0.119339pt;}
.fs0_c02016{font-size:149.173867pt;}
.y0_c02016{bottom:0.000000pt;}
.y1_c02016{bottom:606.230667pt;}
.h1_c02016{height:100.147302pt;}
.h0_c02016{height:1122.666667pt;}
.w1_c02016{width:793.333333pt;}
.w0_c02016{width:793.626667pt;}
.x0_c02016{left:0.000000pt;}
.x1_c02016{left:280.298400pt;}
}





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

.ir_c02017:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02017{font-family:sans-serif;visibility:hidden;}
.sc__c02017{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02017{-webkit-text-stroke:0px transparent;}
}
.y0_c02017{bottom:0.000000px;}
.h0_c02017{height:1263.000000px;}
.w1_c02017{width:892.500000px;}
.w0_c02017{width:892.830000px;}
.x0_c02017{left:0.000000px;}
@media print{
.y0_c02017{bottom:0.000000pt;}
.h0_c02017{height:1122.666667pt;}
.w1_c02017{width:793.333333pt;}
.w0_c02017{width:793.626667pt;}
.x0_c02017{left:0.000000pt;}
}





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

.ir_c02018:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02018;src:url('chunks/assets/font_c6c8c4cab1cde5ae1c5fd839.woff2')format("woff");}.ff1_c02018{font-family:ff1_c02018;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02018{vertical-align:0.000000px;}
.ls2_c02018{letter-spacing:-0.084060px;}
.ls1_c02018{letter-spacing:-0.067248px;}
.ls0_c02018{letter-spacing:0.000000px;}
.sc__c02018{text-shadow:none;}
.sc0_c02018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02018{-webkit-text-stroke:0px transparent;}
.sc0_c02018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02018{word-spacing:-0.016812px;}
.ws0_c02018{word-spacing:0.000000px;}
.ws2_c02018{word-spacing:0.168120px;}
.fc0_c02018{color:rgb(0,0,0);}
.fs0_c02018{font-size:168.120000px;}
.y0_c02018{bottom:0.000000px;}
.yb_c02018{bottom:634.610532px;}
.ya_c02018{bottom:682.940829px;}
.y9_c02018{bottom:731.182863px;}
.y8_c02018{bottom:779.513160px;}
.y7_c02018{bottom:827.755194px;}
.y6_c02018{bottom:876.085491px;}
.y5_c02018{bottom:924.415788px;}
.y4_c02018{bottom:972.657822px;}
.y3_c02018{bottom:1020.988119px;}
.y2_c02018{bottom:1069.318416px;}
.y1_c02018{bottom:1117.560450px;}
.h1_c02018{height:169.433437px;}
.h0_c02018{height:1263.000000px;}
.w1_c02018{width:892.500000px;}
.w0_c02018{width:892.830000px;}
.x0_c02018{left:0.000000px;}
.x2_c02018{left:143.731098px;}
.x3_c02018{left:282.602421px;}
.x1_c02018{left:446.490000px;}
@media print{
.v0_c02018{vertical-align:0.000000pt;}
.ls2_c02018{letter-spacing:-0.074720pt;}
.ls1_c02018{letter-spacing:-0.059776pt;}
.ls0_c02018{letter-spacing:0.000000pt;}
.ws1_c02018{word-spacing:-0.014944pt;}
.ws0_c02018{word-spacing:0.000000pt;}
.ws2_c02018{word-spacing:0.149440pt;}
.fs0_c02018{font-size:149.440000pt;}
.y0_c02018{bottom:0.000000pt;}
.yb_c02018{bottom:564.098251pt;}
.ya_c02018{bottom:607.058515pt;}
.y9_c02018{bottom:649.940323pt;}
.y8_c02018{bottom:692.900587pt;}
.y7_c02018{bottom:735.782395pt;}
.y6_c02018{bottom:778.742659pt;}
.y5_c02018{bottom:821.702923pt;}
.y4_c02018{bottom:864.584731pt;}
.y3_c02018{bottom:907.544995pt;}
.y2_c02018{bottom:950.505259pt;}
.y1_c02018{bottom:993.387067pt;}
.h1_c02018{height:150.607500pt;}
.h0_c02018{height:1122.666667pt;}
.w1_c02018{width:793.333333pt;}
.w0_c02018{width:793.626667pt;}
.x0_c02018{left:0.000000pt;}
.x2_c02018{left:127.760976pt;}
.x3_c02018{left:251.202152pt;}
.x1_c02018{left:396.880000pt;}
}





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

.ir_c02019:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02019;src:url('chunks/assets/font_2db81b9b20a4443056f98ac4.woff2')format("woff");}.ff1_c02019{font-family:ff1_c02019;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02019{vertical-align:0.000000px;}
.ls2_c02019{letter-spacing:0.000000px;}
.ls0_c02019{letter-spacing:0.084168px;}
.ls1_c02019{letter-spacing:2388.960000px;}
.sc__c02019{text-shadow:none;}
.sc0_c02019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02019{-webkit-text-stroke:0px transparent;}
.sc0_c02019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02019{word-spacing:0.000000px;}
.ws0_c02019{word-spacing:0.006012px;}
._0_c02019{margin-left:-1.196388px;}
.fc0_c02019{color:rgb(0,0,0);}
.fs0_c02019{font-size:60.120000px;}
.fs1_c02019{font-size:72.000000px;}
.y0_c02019{bottom:0.000000px;}
.y2_c02019{bottom:57.360450px;}
.y1_c02019{bottom:1196.130450px;}
.h1_c02019{height:59.004492px;}
.h2_c02019{height:70.664062px;}
.h0_c02019{height:1263.000000px;}
.w1_c02019{width:892.500000px;}
.w0_c02019{width:892.830000px;}
.x0_c02019{left:0.000000px;}
.x2_c02019{left:127.620000px;}
.x1_c02019{left:443.250000px;}
@media print{
.v0_c02019{vertical-align:0.000000pt;}
.ls2_c02019{letter-spacing:0.000000pt;}
.ls0_c02019{letter-spacing:0.074816pt;}
.ls1_c02019{letter-spacing:2123.520000pt;}
.ws1_c02019{word-spacing:0.000000pt;}
.ws0_c02019{word-spacing:0.005344pt;}
._0_c02019{margin-left:-1.063456pt;}
.fs0_c02019{font-size:53.440000pt;}
.fs1_c02019{font-size:64.000000pt;}
.y0_c02019{bottom:0.000000pt;}
.y2_c02019{bottom:50.987067pt;}
.y1_c02019{bottom:1063.227067pt;}
.h1_c02019{height:52.448437pt;}
.h2_c02019{height:62.812500pt;}
.h0_c02019{height:1122.666667pt;}
.w1_c02019{width:793.333333pt;}
.w0_c02019{width:793.626667pt;}
.x0_c02019{left:0.000000pt;}
.x2_c02019{left:113.440000pt;}
.x1_c02019{left:394.000000pt;}
}





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

.ir_c02020:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02020{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02020;src:url('chunks/assets/font_076afbd33f272329a30c1d40.woff2')format("woff");}.ff1_c02020{font-family:ff1_c02020;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02020;src:url('chunks/assets/font_14eb4affd9c6f0e88d10a8c1.woff2')format("woff");}.ff2_c02020{font-family:ff2_c02020;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_c02020;src:url('chunks/assets/font_76a40b682af9cea6c1c10540.woff2')format("woff");}.ff3_c02020{font-family:ff3_c02020;line-height:0.055000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02020;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c02020{font-family:ff4_c02020;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_c02020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02020{vertical-align:0.000000px;}
.ls12_c02020{letter-spacing:-0.028800px;}
.ls13_c02020{letter-spacing:-0.014400px;}
.ls14_c02020{letter-spacing:-0.007200px;}
.ls10_c02020{letter-spacing:0.000000px;}
.ls3_c02020{letter-spacing:0.007200px;}
.ls6_c02020{letter-spacing:0.014400px;}
.ls2_c02020{letter-spacing:0.016776px;}
.ls4_c02020{letter-spacing:0.021600px;}
.ls5_c02020{letter-spacing:0.028800px;}
.lsb_c02020{letter-spacing:0.036000px;}
.ls7_c02020{letter-spacing:0.043200px;}
.ls11_c02020{letter-spacing:0.050328px;}
.lsa_c02020{letter-spacing:0.050400px;}
.lse_c02020{letter-spacing:0.057600px;}
.lsc_c02020{letter-spacing:0.064800px;}
.ls8_c02020{letter-spacing:0.072000px;}
.ls0_c02020{letter-spacing:0.084168px;}
.lsf_c02020{letter-spacing:0.086400px;}
.lsd_c02020{letter-spacing:0.136800px;}
.ls9_c02020{letter-spacing:48.384000px;}
.ls1_c02020{letter-spacing:2388.960000px;}
.sc__c02020{text-shadow:none;}
.sc0_c02020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02020{-webkit-text-stroke:0px transparent;}
.sc0_c02020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02020{word-spacing:-18.007200px;}
.ws1a_c02020{word-spacing:-0.158400px;}
.ws3_c02020{word-spacing:-0.109044px;}
.ws15_c02020{word-spacing:-0.108000px;}
.ws19_c02020{word-spacing:-0.093600px;}
.ws13_c02020{word-spacing:-0.043200px;}
.ws20_c02020{word-spacing:-0.028800px;}
.ws36_c02020{word-spacing:-0.021600px;}
.ws16_c02020{word-spacing:-0.014400px;}
.ws14_c02020{word-spacing:-0.007200px;}
.ws2_c02020{word-spacing:0.000000px;}
.ws1_c02020{word-spacing:0.006012px;}
.ws4_c02020{word-spacing:0.033552px;}
.wsd_c02020{word-spacing:0.194400px;}
.ws30_c02020{word-spacing:0.943200px;}
.ws31_c02020{word-spacing:1.029600px;}
.ws2d_c02020{word-spacing:1.152000px;}
.ws2e_c02020{word-spacing:1.231200px;}
.ws2f_c02020{word-spacing:1.353600px;}
.ws7_c02020{word-spacing:1.418400px;}
.ws8_c02020{word-spacing:1.468800px;}
.ws12_c02020{word-spacing:1.634400px;}
.ws25_c02020{word-spacing:1.720800px;}
.ws24_c02020{word-spacing:1.742400px;}
.ws11_c02020{word-spacing:1.778400px;}
.ws10_c02020{word-spacing:1.828800px;}
.ws1e_c02020{word-spacing:2.484000px;}
.ws1f_c02020{word-spacing:2.498400px;}
.ws32_c02020{word-spacing:2.671200px;}
.ws33_c02020{word-spacing:2.743200px;}
.wsf_c02020{word-spacing:3.520800px;}
.wse_c02020{word-spacing:3.535200px;}
.ws23_c02020{word-spacing:3.873600px;}
.ws18_c02020{word-spacing:4.219200px;}
.ws28_c02020{word-spacing:4.233600px;}
.ws17_c02020{word-spacing:4.334400px;}
.ws1c_c02020{word-spacing:4.939200px;}
.ws1d_c02020{word-spacing:4.960800px;}
.ws22_c02020{word-spacing:5.983200px;}
.ws21_c02020{word-spacing:5.990400px;}
.ws2a_c02020{word-spacing:6.062400px;}
.ws1b_c02020{word-spacing:6.465600px;}
.wsa_c02020{word-spacing:7.545600px;}
.ws9_c02020{word-spacing:7.581600px;}
.ws29_c02020{word-spacing:7.884000px;}
.ws5_c02020{word-spacing:8.200800px;}
.ws6_c02020{word-spacing:8.265600px;}
.ws26_c02020{word-spacing:10.260000px;}
.ws27_c02020{word-spacing:10.389600px;}
.ws35_c02020{word-spacing:10.749600px;}
.ws34_c02020{word-spacing:10.836000px;}
.ws2c_c02020{word-spacing:12.074400px;}
.ws2b_c02020{word-spacing:12.247200px;}
.wsb_c02020{word-spacing:18.871200px;}
.wsc_c02020{word-spacing:19.080000px;}
._0_c02020{margin-left:-1.196388px;}
._1_c02020{width:1.023336px;}
._2_c02020{width:7.322400px;}
.fc0_c02020{color:rgb(0,0,0);}
.fs0_c02020{font-size:60.120000px;}
.fs1_c02020{font-size:72.000000px;}
.fs2_c02020{font-size:83.880000px;}
.y0_c02020{bottom:0.000000px;}
.y2_c02020{bottom:57.360450px;}
.y28_c02020{bottom:137.280450px;}
.y27_c02020{bottom:160.860450px;}
.y26_c02020{bottom:184.530450px;}
.y25_c02020{bottom:208.110450px;}
.y24_c02020{bottom:231.780450px;}
.y23_c02020{bottom:255.360450px;}
.y22_c02020{bottom:279.030450px;}
.y21_c02020{bottom:312.960450px;}
.y20_c02020{bottom:336.540450px;}
.y1f_c02020{bottom:360.210450px;}
.y1e_c02020{bottom:383.880450px;}
.y1d_c02020{bottom:407.460450px;}
.y1c_c02020{bottom:431.130450px;}
.y1b_c02020{bottom:464.880450px;}
.y1a_c02020{bottom:498.810450px;}
.y19_c02020{bottom:532.830450px;}
.y18_c02020{bottom:556.500450px;}
.y17_c02020{bottom:580.080450px;}
.y16_c02020{bottom:603.750450px;}
.y15_c02020{bottom:637.680450px;}
.y14_c02020{bottom:661.350450px;}
.y13_c02020{bottom:695.100450px;}
.y12_c02020{bottom:729.030450px;}
.y11_c02020{bottom:762.960450px;}
.y10_c02020{bottom:797.070450px;}
.yf_c02020{bottom:830.730450px;}
.ye_c02020{bottom:864.840450px;}
.yd_c02020{bottom:895.800450px;}
.yc_c02020{bottom:916.500450px;}
.yb_c02020{bottom:937.200450px;}
.ya_c02020{bottom:966.900450px;}
.y9_c02020{bottom:987.600450px;}
.y8_c02020{bottom:1008.300450px;}
.y7_c02020{bottom:1029.000450px;}
.y6_c02020{bottom:1049.700450px;}
.y5_c02020{bottom:1079.850738px;}
.y4_c02020{bottom:1112.970756px;}
.y3_c02020{bottom:1137.090450px;}
.y1_c02020{bottom:1196.130450px;}
.h1_c02020{height:59.004492px;}
.h2_c02020{height:70.664062px;}
.h5_c02020{height:72.562500px;}
.h4_c02020{height:75.093750px;}
.h3_c02020{height:84.535312px;}
.h0_c02020{height:1263.000000px;}
.w1_c02020{width:892.500000px;}
.w0_c02020{width:892.830000px;}
.x0_c02020{left:0.000000px;}
.x2_c02020{left:127.620000px;}
.x4_c02020{left:154.620000px;}
.x3_c02020{left:180.720000px;}
.x1_c02020{left:443.250000px;}
@media print{
.v0_c02020{vertical-align:0.000000pt;}
.ls12_c02020{letter-spacing:-0.025600pt;}
.ls13_c02020{letter-spacing:-0.012800pt;}
.ls14_c02020{letter-spacing:-0.006400pt;}
.ls10_c02020{letter-spacing:0.000000pt;}
.ls3_c02020{letter-spacing:0.006400pt;}
.ls6_c02020{letter-spacing:0.012800pt;}
.ls2_c02020{letter-spacing:0.014912pt;}
.ls4_c02020{letter-spacing:0.019200pt;}
.ls5_c02020{letter-spacing:0.025600pt;}
.lsb_c02020{letter-spacing:0.032000pt;}
.ls7_c02020{letter-spacing:0.038400pt;}
.ls11_c02020{letter-spacing:0.044736pt;}
.lsa_c02020{letter-spacing:0.044800pt;}
.lse_c02020{letter-spacing:0.051200pt;}
.lsc_c02020{letter-spacing:0.057600pt;}
.ls8_c02020{letter-spacing:0.064000pt;}
.ls0_c02020{letter-spacing:0.074816pt;}
.lsf_c02020{letter-spacing:0.076800pt;}
.lsd_c02020{letter-spacing:0.121600pt;}
.ls9_c02020{letter-spacing:43.008000pt;}
.ls1_c02020{letter-spacing:2123.520000pt;}
.ws0_c02020{word-spacing:-16.006400pt;}
.ws1a_c02020{word-spacing:-0.140800pt;}
.ws3_c02020{word-spacing:-0.096928pt;}
.ws15_c02020{word-spacing:-0.096000pt;}
.ws19_c02020{word-spacing:-0.083200pt;}
.ws13_c02020{word-spacing:-0.038400pt;}
.ws20_c02020{word-spacing:-0.025600pt;}
.ws36_c02020{word-spacing:-0.019200pt;}
.ws16_c02020{word-spacing:-0.012800pt;}
.ws14_c02020{word-spacing:-0.006400pt;}
.ws2_c02020{word-spacing:0.000000pt;}
.ws1_c02020{word-spacing:0.005344pt;}
.ws4_c02020{word-spacing:0.029824pt;}
.wsd_c02020{word-spacing:0.172800pt;}
.ws30_c02020{word-spacing:0.838400pt;}
.ws31_c02020{word-spacing:0.915200pt;}
.ws2d_c02020{word-spacing:1.024000pt;}
.ws2e_c02020{word-spacing:1.094400pt;}
.ws2f_c02020{word-spacing:1.203200pt;}
.ws7_c02020{word-spacing:1.260800pt;}
.ws8_c02020{word-spacing:1.305600pt;}
.ws12_c02020{word-spacing:1.452800pt;}
.ws25_c02020{word-spacing:1.529600pt;}
.ws24_c02020{word-spacing:1.548800pt;}
.ws11_c02020{word-spacing:1.580800pt;}
.ws10_c02020{word-spacing:1.625600pt;}
.ws1e_c02020{word-spacing:2.208000pt;}
.ws1f_c02020{word-spacing:2.220800pt;}
.ws32_c02020{word-spacing:2.374400pt;}
.ws33_c02020{word-spacing:2.438400pt;}
.wsf_c02020{word-spacing:3.129600pt;}
.wse_c02020{word-spacing:3.142400pt;}
.ws23_c02020{word-spacing:3.443200pt;}
.ws18_c02020{word-spacing:3.750400pt;}
.ws28_c02020{word-spacing:3.763200pt;}
.ws17_c02020{word-spacing:3.852800pt;}
.ws1c_c02020{word-spacing:4.390400pt;}
.ws1d_c02020{word-spacing:4.409600pt;}
.ws22_c02020{word-spacing:5.318400pt;}
.ws21_c02020{word-spacing:5.324800pt;}
.ws2a_c02020{word-spacing:5.388800pt;}
.ws1b_c02020{word-spacing:5.747200pt;}
.wsa_c02020{word-spacing:6.707200pt;}
.ws9_c02020{word-spacing:6.739200pt;}
.ws29_c02020{word-spacing:7.008000pt;}
.ws5_c02020{word-spacing:7.289600pt;}
.ws6_c02020{word-spacing:7.347200pt;}
.ws26_c02020{word-spacing:9.120000pt;}
.ws27_c02020{word-spacing:9.235200pt;}
.ws35_c02020{word-spacing:9.555200pt;}
.ws34_c02020{word-spacing:9.632000pt;}
.ws2c_c02020{word-spacing:10.732800pt;}
.ws2b_c02020{word-spacing:10.886400pt;}
.wsb_c02020{word-spacing:16.774400pt;}
.wsc_c02020{word-spacing:16.960000pt;}
._0_c02020{margin-left:-1.063456pt;}
._1_c02020{width:0.909632pt;}
._2_c02020{width:6.508800pt;}
.fs0_c02020{font-size:53.440000pt;}
.fs1_c02020{font-size:64.000000pt;}
.fs2_c02020{font-size:74.560000pt;}
.y0_c02020{bottom:0.000000pt;}
.y2_c02020{bottom:50.987067pt;}
.y28_c02020{bottom:122.027067pt;}
.y27_c02020{bottom:142.987067pt;}
.y26_c02020{bottom:164.027067pt;}
.y25_c02020{bottom:184.987067pt;}
.y24_c02020{bottom:206.027067pt;}
.y23_c02020{bottom:226.987067pt;}
.y22_c02020{bottom:248.027067pt;}
.y21_c02020{bottom:278.187067pt;}
.y20_c02020{bottom:299.147067pt;}
.y1f_c02020{bottom:320.187067pt;}
.y1e_c02020{bottom:341.227067pt;}
.y1d_c02020{bottom:362.187067pt;}
.y1c_c02020{bottom:383.227067pt;}
.y1b_c02020{bottom:413.227067pt;}
.y1a_c02020{bottom:443.387067pt;}
.y19_c02020{bottom:473.627067pt;}
.y18_c02020{bottom:494.667067pt;}
.y17_c02020{bottom:515.627067pt;}
.y16_c02020{bottom:536.667067pt;}
.y15_c02020{bottom:566.827067pt;}
.y14_c02020{bottom:587.867067pt;}
.y13_c02020{bottom:617.867067pt;}
.y12_c02020{bottom:648.027067pt;}
.y11_c02020{bottom:678.187067pt;}
.y10_c02020{bottom:708.507067pt;}
.yf_c02020{bottom:738.427067pt;}
.ye_c02020{bottom:768.747067pt;}
.yd_c02020{bottom:796.267067pt;}
.yc_c02020{bottom:814.667067pt;}
.yb_c02020{bottom:833.067067pt;}
.ya_c02020{bottom:859.467067pt;}
.y9_c02020{bottom:877.867067pt;}
.y8_c02020{bottom:896.267067pt;}
.y7_c02020{bottom:914.667067pt;}
.y6_c02020{bottom:933.067067pt;}
.y5_c02020{bottom:959.867323pt;}
.y4_c02020{bottom:989.307339pt;}
.y3_c02020{bottom:1010.747067pt;}
.y1_c02020{bottom:1063.227067pt;}
.h1_c02020{height:52.448437pt;}
.h2_c02020{height:62.812500pt;}
.h5_c02020{height:64.500000pt;}
.h4_c02020{height:66.750000pt;}
.h3_c02020{height:75.142500pt;}
.h0_c02020{height:1122.666667pt;}
.w1_c02020{width:793.333333pt;}
.w0_c02020{width:793.626667pt;}
.x0_c02020{left:0.000000pt;}
.x2_c02020{left:113.440000pt;}
.x4_c02020{left:137.440000pt;}
.x3_c02020{left:160.640000pt;}
.x1_c02020{left:394.000000pt;}
}





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

.ir_c02021:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02021{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02021;src:url('chunks/assets/font_c326ac38f1b7db1305204bec.woff2')format("woff");}.ff1_c02021{font-family:ff1_c02021;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02021;src:url('chunks/assets/font_76a40b682af9cea6c1c10540.woff2')format("woff");}.ff2_c02021{font-family:ff2_c02021;line-height:0.055000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02021;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c02021{font-family:ff3_c02021;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_c02021;src:url('chunks/assets/font_0de05b243d3df47e494b46ea.woff2')format("woff");}.ff4_c02021{font-family:ff4_c02021;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02021;src:url('chunks/assets/font_e3cbdec5f573286643e33ccc.woff2')format("woff");}.ff5_c02021{font-family:ff5_c02021;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02021{vertical-align:0.000000px;}
.ls12_c02021{letter-spacing:-0.158400px;}
.ls1b_c02021{letter-spacing:-0.151200px;}
.ls16_c02021{letter-spacing:-0.122400px;}
.ls19_c02021{letter-spacing:-0.108000px;}
.ls1c_c02021{letter-spacing:-0.093600px;}
.ls13_c02021{letter-spacing:-0.086400px;}
.ls18_c02021{letter-spacing:-0.079200px;}
.ls1a_c02021{letter-spacing:-0.072000px;}
.ls17_c02021{letter-spacing:-0.057600px;}
.ls15_c02021{letter-spacing:-0.050400px;}
.ls11_c02021{letter-spacing:-0.043200px;}
.ls1d_c02021{letter-spacing:-0.036000px;}
.ls1f_c02021{letter-spacing:-0.028800px;}
.ls14_c02021{letter-spacing:-0.021600px;}
.ls10_c02021{letter-spacing:0.000000px;}
.lsf_c02021{letter-spacing:0.007200px;}
.ls9_c02021{letter-spacing:0.014400px;}
.ls8_c02021{letter-spacing:0.021600px;}
.ls5_c02021{letter-spacing:0.028800px;}
.lsb_c02021{letter-spacing:0.036000px;}
.ls7_c02021{letter-spacing:0.043200px;}
.ls4_c02021{letter-spacing:0.050400px;}
.ls6_c02021{letter-spacing:0.057600px;}
.lsc_c02021{letter-spacing:0.064800px;}
.ls2_c02021{letter-spacing:0.072000px;}
.lsa_c02021{letter-spacing:0.079200px;}
.ls0_c02021{letter-spacing:0.084168px;}
.lsd_c02021{letter-spacing:0.086400px;}
.lse_c02021{letter-spacing:0.100800px;}
.ls1e_c02021{letter-spacing:0.158400px;}
.ls3_c02021{letter-spacing:48.384000px;}
.ls1_c02021{letter-spacing:2388.960000px;}
.sc__c02021{text-shadow:none;}
.sc0_c02021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02021{-webkit-text-stroke:0px transparent;}
.sc0_c02021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c02021{word-spacing:-18.158400px;}
.ws4_c02021{word-spacing:-18.072000px;}
.wsf_c02021{word-spacing:-18.057600px;}
.ws12_c02021{word-spacing:-18.050400px;}
.wsb_c02021{word-spacing:-18.007200px;}
.ws0_c02021{word-spacing:-18.000000px;}
.ws11_c02021{word-spacing:-17.971200px;}
.wse_c02021{word-spacing:-17.964000px;}
.ws1_c02021{word-spacing:-17.956800px;}
.ws5_c02021{word-spacing:-17.949600px;}
.ws7_c02021{word-spacing:-17.942400px;}
.ws9_c02021{word-spacing:-17.928000px;}
.wsc_c02021{word-spacing:-17.920800px;}
.ws3_c02021{word-spacing:-17.913600px;}
.wsd_c02021{word-spacing:-17.906400px;}
.ws8_c02021{word-spacing:-17.892000px;}
.ws6_c02021{word-spacing:-17.877600px;}
.wsa_c02021{word-spacing:-17.848800px;}
.ws2_c02021{word-spacing:-17.841600px;}
.ws35_c02021{word-spacing:-0.381600px;}
.ws29_c02021{word-spacing:-0.273600px;}
.ws27_c02021{word-spacing:-0.252000px;}
.ws24_c02021{word-spacing:-0.244800px;}
.ws21_c02021{word-spacing:-0.230400px;}
.ws2c_c02021{word-spacing:-0.216000px;}
.ws2e_c02021{word-spacing:-0.172800px;}
.ws2d_c02021{word-spacing:-0.158400px;}
.ws36_c02021{word-spacing:-0.151200px;}
.ws30_c02021{word-spacing:-0.115200px;}
.ws25_c02021{word-spacing:-0.086400px;}
.ws22_c02021{word-spacing:-0.079200px;}
.ws2a_c02021{word-spacing:-0.072000px;}
.ws2f_c02021{word-spacing:-0.064800px;}
.ws3c_c02021{word-spacing:-0.057600px;}
.ws33_c02021{word-spacing:-0.050400px;}
.ws26_c02021{word-spacing:-0.043200px;}
.ws23_c02021{word-spacing:-0.036000px;}
.ws1f_c02021{word-spacing:-0.028800px;}
.ws31_c02021{word-spacing:-0.021600px;}
.ws20_c02021{word-spacing:-0.014400px;}
.ws34_c02021{word-spacing:-0.007200px;}
.ws14_c02021{word-spacing:0.000000px;}
.ws13_c02021{word-spacing:0.006012px;}
.ws28_c02021{word-spacing:0.021600px;}
.ws32_c02021{word-spacing:0.057600px;}
.ws2b_c02021{word-spacing:0.079200px;}
.ws16_c02021{word-spacing:2.289600px;}
.ws17_c02021{word-spacing:2.512800px;}
.ws15_c02021{word-spacing:4.320000px;}
.ws37_c02021{word-spacing:5.623200px;}
.ws38_c02021{word-spacing:5.637600px;}
.ws39_c02021{word-spacing:5.745600px;}
.ws3a_c02021{word-spacing:7.178400px;}
.ws3b_c02021{word-spacing:7.185600px;}
.ws19_c02021{word-spacing:8.222400px;}
.ws18_c02021{word-spacing:8.251200px;}
.ws1b_c02021{word-spacing:8.884800px;}
.ws1c_c02021{word-spacing:8.956800px;}
.ws1d_c02021{word-spacing:13.996800px;}
.ws1e_c02021{word-spacing:14.018400px;}
.ws1a_c02021{word-spacing:33.379200px;}
._1_c02021{margin-left:-33.967224px;}
._0_c02021{margin-left:-1.196388px;}
._2_c02021{width:1.058400px;}
._3_c02021{width:188.704800px;}
.fc0_c02021{color:rgb(0,0,0);}
.fs0_c02021{font-size:60.120000px;}
.fs1_c02021{font-size:72.000000px;}
.y0_c02021{bottom:0.000000px;}
.y2_c02021{bottom:57.360450px;}
.y3d_c02021{bottom:141.060600px;}
.y3c_c02021{bottom:161.760600px;}
.y3b_c02021{bottom:182.460600px;}
.y3a_c02021{bottom:212.160600px;}
.y22_c02021{bottom:241.410450px;}
.y39_c02021{bottom:242.310600px;}
.y21_c02021{bottom:271.110450px;}
.y38_c02021{bottom:272.010600px;}
.y20_c02021{bottom:300.810450px;}
.y37_c02021{bottom:301.710450px;}
.y1f_c02021{bottom:330.510450px;}
.y36_c02021{bottom:331.410450px;}
.y1e_c02021{bottom:360.210450px;}
.y35_c02021{bottom:361.110450px;}
.y1d_c02021{bottom:389.910450px;}
.y34_c02021{bottom:390.810450px;}
.y1c_c02021{bottom:419.610450px;}
.y33_c02021{bottom:420.510450px;}
.y32_c02021{bottom:441.210450px;}
.y1b_c02021{bottom:449.310450px;}
.y31_c02021{bottom:470.910450px;}
.y1a_c02021{bottom:479.010450px;}
.y30_c02021{bottom:500.610450px;}
.y19_c02021{bottom:508.710450px;}
.y2f_c02021{bottom:521.310450px;}
.y18_c02021{bottom:538.410450px;}
.y2e_c02021{bottom:551.010450px;}
.y17_c02021{bottom:568.110450px;}
.y2d_c02021{bottom:571.710450px;}
.y2c_c02021{bottom:592.410450px;}
.y16_c02021{bottom:597.810450px;}
.y2b_c02021{bottom:613.110450px;}
.y15_c02021{bottom:627.510450px;}
.y2a_c02021{bottom:642.810450px;}
.y14_c02021{bottom:657.210450px;}
.y29_c02021{bottom:663.510450px;}
.y13_c02021{bottom:686.910450px;}
.y28_c02021{bottom:693.210450px;}
.y27_c02021{bottom:713.910450px;}
.y12_c02021{bottom:716.610450px;}
.y26_c02021{bottom:743.610450px;}
.y11_c02021{bottom:746.310450px;}
.y25_c02021{bottom:764.310450px;}
.y10_c02021{bottom:776.010450px;}
.y24_c02021{bottom:785.010450px;}
.yf_c02021{bottom:805.710450px;}
.y23_c02021{bottom:814.710450px;}
.ye_c02021{bottom:835.410450px;}
.yd_c02021{bottom:865.110450px;}
.yc_c02021{bottom:894.630450px;}
.yb_c02021{bottom:924.510450px;}
.ya_c02021{bottom:954.210450px;}
.y9_c02021{bottom:986.610450px;}
.y8_c02021{bottom:1020.720450px;}
.y7_c02021{bottom:1044.390450px;}
.y6_c02021{bottom:1067.970450px;}
.y5_c02021{bottom:1091.640450px;}
.y4_c02021{bottom:1115.220450px;}
.y3_c02021{bottom:1138.890450px;}
.y1_c02021{bottom:1196.130450px;}
.h1_c02021{height:59.004492px;}
.h2_c02021{height:70.664062px;}
.h4_c02021{height:72.562500px;}
.h3_c02021{height:75.093750px;}
.h0_c02021{height:1263.000000px;}
.w1_c02021{width:892.500000px;}
.w0_c02021{width:892.830000px;}
.x0_c02021{left:0.000000px;}
.x2_c02021{left:127.620000px;}
.x3_c02021{left:154.620000px;}
.x4_c02021{left:181.620000px;}
.x1_c02021{left:443.250000px;}
.x5_c02021{left:500.040000px;}
@media print{
.v0_c02021{vertical-align:0.000000pt;}
.ls12_c02021{letter-spacing:-0.140800pt;}
.ls1b_c02021{letter-spacing:-0.134400pt;}
.ls16_c02021{letter-spacing:-0.108800pt;}
.ls19_c02021{letter-spacing:-0.096000pt;}
.ls1c_c02021{letter-spacing:-0.083200pt;}
.ls13_c02021{letter-spacing:-0.076800pt;}
.ls18_c02021{letter-spacing:-0.070400pt;}
.ls1a_c02021{letter-spacing:-0.064000pt;}
.ls17_c02021{letter-spacing:-0.051200pt;}
.ls15_c02021{letter-spacing:-0.044800pt;}
.ls11_c02021{letter-spacing:-0.038400pt;}
.ls1d_c02021{letter-spacing:-0.032000pt;}
.ls1f_c02021{letter-spacing:-0.025600pt;}
.ls14_c02021{letter-spacing:-0.019200pt;}
.ls10_c02021{letter-spacing:0.000000pt;}
.lsf_c02021{letter-spacing:0.006400pt;}
.ls9_c02021{letter-spacing:0.012800pt;}
.ls8_c02021{letter-spacing:0.019200pt;}
.ls5_c02021{letter-spacing:0.025600pt;}
.lsb_c02021{letter-spacing:0.032000pt;}
.ls7_c02021{letter-spacing:0.038400pt;}
.ls4_c02021{letter-spacing:0.044800pt;}
.ls6_c02021{letter-spacing:0.051200pt;}
.lsc_c02021{letter-spacing:0.057600pt;}
.ls2_c02021{letter-spacing:0.064000pt;}
.lsa_c02021{letter-spacing:0.070400pt;}
.ls0_c02021{letter-spacing:0.074816pt;}
.lsd_c02021{letter-spacing:0.076800pt;}
.lse_c02021{letter-spacing:0.089600pt;}
.ls1e_c02021{letter-spacing:0.140800pt;}
.ls3_c02021{letter-spacing:43.008000pt;}
.ls1_c02021{letter-spacing:2123.520000pt;}
.ws10_c02021{word-spacing:-16.140800pt;}
.ws4_c02021{word-spacing:-16.064000pt;}
.wsf_c02021{word-spacing:-16.051200pt;}
.ws12_c02021{word-spacing:-16.044800pt;}
.wsb_c02021{word-spacing:-16.006400pt;}
.ws0_c02021{word-spacing:-16.000000pt;}
.ws11_c02021{word-spacing:-15.974400pt;}
.wse_c02021{word-spacing:-15.968000pt;}
.ws1_c02021{word-spacing:-15.961600pt;}
.ws5_c02021{word-spacing:-15.955200pt;}
.ws7_c02021{word-spacing:-15.948800pt;}
.ws9_c02021{word-spacing:-15.936000pt;}
.wsc_c02021{word-spacing:-15.929600pt;}
.ws3_c02021{word-spacing:-15.923200pt;}
.wsd_c02021{word-spacing:-15.916800pt;}
.ws8_c02021{word-spacing:-15.904000pt;}
.ws6_c02021{word-spacing:-15.891200pt;}
.wsa_c02021{word-spacing:-15.865600pt;}
.ws2_c02021{word-spacing:-15.859200pt;}
.ws35_c02021{word-spacing:-0.339200pt;}
.ws29_c02021{word-spacing:-0.243200pt;}
.ws27_c02021{word-spacing:-0.224000pt;}
.ws24_c02021{word-spacing:-0.217600pt;}
.ws21_c02021{word-spacing:-0.204800pt;}
.ws2c_c02021{word-spacing:-0.192000pt;}
.ws2e_c02021{word-spacing:-0.153600pt;}
.ws2d_c02021{word-spacing:-0.140800pt;}
.ws36_c02021{word-spacing:-0.134400pt;}
.ws30_c02021{word-spacing:-0.102400pt;}
.ws25_c02021{word-spacing:-0.076800pt;}
.ws22_c02021{word-spacing:-0.070400pt;}
.ws2a_c02021{word-spacing:-0.064000pt;}
.ws2f_c02021{word-spacing:-0.057600pt;}
.ws3c_c02021{word-spacing:-0.051200pt;}
.ws33_c02021{word-spacing:-0.044800pt;}
.ws26_c02021{word-spacing:-0.038400pt;}
.ws23_c02021{word-spacing:-0.032000pt;}
.ws1f_c02021{word-spacing:-0.025600pt;}
.ws31_c02021{word-spacing:-0.019200pt;}
.ws20_c02021{word-spacing:-0.012800pt;}
.ws34_c02021{word-spacing:-0.006400pt;}
.ws14_c02021{word-spacing:0.000000pt;}
.ws13_c02021{word-spacing:0.005344pt;}
.ws28_c02021{word-spacing:0.019200pt;}
.ws32_c02021{word-spacing:0.051200pt;}
.ws2b_c02021{word-spacing:0.070400pt;}
.ws16_c02021{word-spacing:2.035200pt;}
.ws17_c02021{word-spacing:2.233600pt;}
.ws15_c02021{word-spacing:3.840000pt;}
.ws37_c02021{word-spacing:4.998400pt;}
.ws38_c02021{word-spacing:5.011200pt;}
.ws39_c02021{word-spacing:5.107200pt;}
.ws3a_c02021{word-spacing:6.380800pt;}
.ws3b_c02021{word-spacing:6.387200pt;}
.ws19_c02021{word-spacing:7.308800pt;}
.ws18_c02021{word-spacing:7.334400pt;}
.ws1b_c02021{word-spacing:7.897600pt;}
.ws1c_c02021{word-spacing:7.961600pt;}
.ws1d_c02021{word-spacing:12.441600pt;}
.ws1e_c02021{word-spacing:12.460800pt;}
.ws1a_c02021{word-spacing:29.670400pt;}
._1_c02021{margin-left:-30.193088pt;}
._0_c02021{margin-left:-1.063456pt;}
._2_c02021{width:0.940800pt;}
._3_c02021{width:167.737600pt;}
.fs0_c02021{font-size:53.440000pt;}
.fs1_c02021{font-size:64.000000pt;}
.y0_c02021{bottom:0.000000pt;}
.y2_c02021{bottom:50.987067pt;}
.y3d_c02021{bottom:125.387200pt;}
.y3c_c02021{bottom:143.787200pt;}
.y3b_c02021{bottom:162.187200pt;}
.y3a_c02021{bottom:188.587200pt;}
.y22_c02021{bottom:214.587067pt;}
.y39_c02021{bottom:215.387200pt;}
.y21_c02021{bottom:240.987067pt;}
.y38_c02021{bottom:241.787200pt;}
.y20_c02021{bottom:267.387067pt;}
.y37_c02021{bottom:268.187067pt;}
.y1f_c02021{bottom:293.787067pt;}
.y36_c02021{bottom:294.587067pt;}
.y1e_c02021{bottom:320.187067pt;}
.y35_c02021{bottom:320.987067pt;}
.y1d_c02021{bottom:346.587067pt;}
.y34_c02021{bottom:347.387067pt;}
.y1c_c02021{bottom:372.987067pt;}
.y33_c02021{bottom:373.787067pt;}
.y32_c02021{bottom:392.187067pt;}
.y1b_c02021{bottom:399.387067pt;}
.y31_c02021{bottom:418.587067pt;}
.y1a_c02021{bottom:425.787067pt;}
.y30_c02021{bottom:444.987067pt;}
.y19_c02021{bottom:452.187067pt;}
.y2f_c02021{bottom:463.387067pt;}
.y18_c02021{bottom:478.587067pt;}
.y2e_c02021{bottom:489.787067pt;}
.y17_c02021{bottom:504.987067pt;}
.y2d_c02021{bottom:508.187067pt;}
.y2c_c02021{bottom:526.587067pt;}
.y16_c02021{bottom:531.387067pt;}
.y2b_c02021{bottom:544.987067pt;}
.y15_c02021{bottom:557.787067pt;}
.y2a_c02021{bottom:571.387067pt;}
.y14_c02021{bottom:584.187067pt;}
.y29_c02021{bottom:589.787067pt;}
.y13_c02021{bottom:610.587067pt;}
.y28_c02021{bottom:616.187067pt;}
.y27_c02021{bottom:634.587067pt;}
.y12_c02021{bottom:636.987067pt;}
.y26_c02021{bottom:660.987067pt;}
.y11_c02021{bottom:663.387067pt;}
.y25_c02021{bottom:679.387067pt;}
.y10_c02021{bottom:689.787067pt;}
.y24_c02021{bottom:697.787067pt;}
.yf_c02021{bottom:716.187067pt;}
.y23_c02021{bottom:724.187067pt;}
.ye_c02021{bottom:742.587067pt;}
.yd_c02021{bottom:768.987067pt;}
.yc_c02021{bottom:795.227067pt;}
.yb_c02021{bottom:821.787067pt;}
.ya_c02021{bottom:848.187067pt;}
.y9_c02021{bottom:876.987067pt;}
.y8_c02021{bottom:907.307067pt;}
.y7_c02021{bottom:928.347067pt;}
.y6_c02021{bottom:949.307067pt;}
.y5_c02021{bottom:970.347067pt;}
.y4_c02021{bottom:991.307067pt;}
.y3_c02021{bottom:1012.347067pt;}
.y1_c02021{bottom:1063.227067pt;}
.h1_c02021{height:52.448437pt;}
.h2_c02021{height:62.812500pt;}
.h4_c02021{height:64.500000pt;}
.h3_c02021{height:66.750000pt;}
.h0_c02021{height:1122.666667pt;}
.w1_c02021{width:793.333333pt;}
.w0_c02021{width:793.626667pt;}
.x0_c02021{left:0.000000pt;}
.x2_c02021{left:113.440000pt;}
.x3_c02021{left:137.440000pt;}
.x4_c02021{left:161.440000pt;}
.x1_c02021{left:394.000000pt;}
.x5_c02021{left:444.480000pt;}
}





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

.ir_c02022:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02022;src:url('chunks/assets/font_76401651801f584cfceceb19.woff2')format("woff");}.ff1_c02022{font-family:ff1_c02022;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02022;src:url('chunks/assets/font_7b997bad639c2091d58b962d.woff2')format("woff");}.ff2_c02022{font-family:ff2_c02022;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02022{vertical-align:0.000000px;}
.ls3_c02022{letter-spacing:-0.025164px;}
.ls2_c02022{letter-spacing:0.000000px;}
.ls0_c02022{letter-spacing:0.084168px;}
.ls1_c02022{letter-spacing:2388.960000px;}
.sc__c02022{text-shadow:none;}
.sc0_c02022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02022{-webkit-text-stroke:0px transparent;}
.sc0_c02022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c02022{word-spacing:-0.067104px;}
.ws1_c02022{word-spacing:0.000000px;}
.ws0_c02022{word-spacing:0.006012px;}
._0_c02022{margin-left:-1.196388px;}
.fc0_c02022{color:rgb(0,0,0);}
.fs0_c02022{font-size:60.120000px;}
.fs1_c02022{font-size:72.000000px;}
.fs2_c02022{font-size:83.880000px;}
.y0_c02022{bottom:0.000000px;}
.y2_c02022{bottom:57.360450px;}
.y3_c02022{bottom:1137.090450px;}
.y1_c02022{bottom:1196.130450px;}
.h1_c02022{height:59.004492px;}
.h2_c02022{height:70.664062px;}
.h3_c02022{height:84.535312px;}
.h0_c02022{height:1263.000000px;}
.w1_c02022{width:892.500000px;}
.w0_c02022{width:892.830000px;}
.x0_c02022{left:0.000000px;}
.x2_c02022{left:127.620000px;}
.x1_c02022{left:443.250000px;}
@media print{
.v0_c02022{vertical-align:0.000000pt;}
.ls3_c02022{letter-spacing:-0.022368pt;}
.ls2_c02022{letter-spacing:0.000000pt;}
.ls0_c02022{letter-spacing:0.074816pt;}
.ls1_c02022{letter-spacing:2123.520000pt;}
.ws2_c02022{word-spacing:-0.059648pt;}
.ws1_c02022{word-spacing:0.000000pt;}
.ws0_c02022{word-spacing:0.005344pt;}
._0_c02022{margin-left:-1.063456pt;}
.fs0_c02022{font-size:53.440000pt;}
.fs1_c02022{font-size:64.000000pt;}
.fs2_c02022{font-size:74.560000pt;}
.y0_c02022{bottom:0.000000pt;}
.y2_c02022{bottom:50.987067pt;}
.y3_c02022{bottom:1010.747067pt;}
.y1_c02022{bottom:1063.227067pt;}
.h1_c02022{height:52.448437pt;}
.h2_c02022{height:62.812500pt;}
.h3_c02022{height:75.142500pt;}
.h0_c02022{height:1122.666667pt;}
.w1_c02022{width:793.333333pt;}
.w0_c02022{width:793.626667pt;}
.x0_c02022{left:0.000000pt;}
.x2_c02022{left:113.440000pt;}
.x1_c02022{left:394.000000pt;}
}





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

.ir_c02023:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02023;src:url('chunks/assets/font_5a63b70c7fc6387c5b47d31e.woff2')format("woff");}.ff1_c02023{font-family:ff1_c02023;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02023;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2_c02023{font-family:ff2_c02023;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02023{vertical-align:0.000000px;}
.ls2_c02023{letter-spacing:0.000000px;}
.ls0_c02023{letter-spacing:0.084168px;}
.ls1_c02023{letter-spacing:2388.960000px;}
.sc__c02023{text-shadow:none;}
.sc0_c02023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02023{-webkit-text-stroke:0px transparent;}
.sc0_c02023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02023{word-spacing:0.000000px;}
.ws0_c02023{word-spacing:0.006012px;}
._0_c02023{margin-left:-1.196388px;}
.fc0_c02023{color:rgb(0,0,0);}
.fs0_c02023{font-size:60.120000px;}
.fs1_c02023{font-size:72.000000px;}
.fs2_c02023{font-size:83.880000px;}
.y0_c02023{bottom:0.000000px;}
.y2_c02023{bottom:57.360450px;}
.y3_c02023{bottom:1137.090450px;}
.y1_c02023{bottom:1196.130450px;}
.h1_c02023{height:59.004492px;}
.h2_c02023{height:70.664062px;}
.h3_c02023{height:84.535312px;}
.h0_c02023{height:1263.000000px;}
.w1_c02023{width:892.500000px;}
.w0_c02023{width:892.830000px;}
.x0_c02023{left:0.000000px;}
.x2_c02023{left:127.620000px;}
.x1_c02023{left:443.250000px;}
@media print{
.v0_c02023{vertical-align:0.000000pt;}
.ls2_c02023{letter-spacing:0.000000pt;}
.ls0_c02023{letter-spacing:0.074816pt;}
.ls1_c02023{letter-spacing:2123.520000pt;}
.ws1_c02023{word-spacing:0.000000pt;}
.ws0_c02023{word-spacing:0.005344pt;}
._0_c02023{margin-left:-1.063456pt;}
.fs0_c02023{font-size:53.440000pt;}
.fs1_c02023{font-size:64.000000pt;}
.fs2_c02023{font-size:74.560000pt;}
.y0_c02023{bottom:0.000000pt;}
.y2_c02023{bottom:50.987067pt;}
.y3_c02023{bottom:1010.747067pt;}
.y1_c02023{bottom:1063.227067pt;}
.h1_c02023{height:52.448437pt;}
.h2_c02023{height:62.812500pt;}
.h3_c02023{height:75.142500pt;}
.h0_c02023{height:1122.666667pt;}
.w1_c02023{width:793.333333pt;}
.w0_c02023{width:793.626667pt;}
.x0_c02023{left:0.000000pt;}
.x2_c02023{left:113.440000pt;}
.x1_c02023{left:394.000000pt;}
}





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

.ir_c02024:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02024;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02024{font-family:ff1_c02024;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02024;src:url('chunks/assets/font_909e3d9168211931d8c72125.woff2')format("woff");}.ff2_c02024{font-family:ff2_c02024;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02024;src:url('chunks/assets/font_b63968486e3e476aa0bbb94b.woff2')format("woff");}.ff3_c02024{font-family:ff3_c02024;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02024{vertical-align:0.000000px;}
.v1_c02024{vertical-align:1.439424px;}
.ls14_c02024{letter-spacing:-1.667952px;}
.lsa_c02024{letter-spacing:-0.807840px;}
.lsb_c02024{letter-spacing:-0.574992px;}
.ls11_c02024{letter-spacing:-0.275616px;}
.lsf_c02024{letter-spacing:-0.261360px;}
.ls8_c02024{letter-spacing:-0.242352px;}
.ls6_c02024{letter-spacing:-0.118800px;}
.ls5_c02024{letter-spacing:0.000000px;}
.ls2_c02024{letter-spacing:0.006048px;}
.ls16_c02024{letter-spacing:0.009504px;}
.ls3_c02024{letter-spacing:0.071280px;}
.ls7_c02024{letter-spacing:0.128304px;}
.lse_c02024{letter-spacing:0.242352px;}
.lsd_c02024{letter-spacing:0.508464px;}
.ls13_c02024{letter-spacing:0.514080px;}
.ls10_c02024{letter-spacing:0.536976px;}
.lsc_c02024{letter-spacing:0.579744px;}
.ls12_c02024{letter-spacing:0.594000px;}
.ls9_c02024{letter-spacing:0.598752px;}
.ls4_c02024{letter-spacing:0.613008px;}
.ls0_c02024{letter-spacing:0.651024px;}
.ls15_c02024{letter-spacing:0.665280px;}
.ls1_c02024{letter-spacing:0.717552px;}
.sc__c02024{text-shadow:none;}
.sc0_c02024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02024{-webkit-text-stroke:0px transparent;}
.sc0_c02024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02024{word-spacing:-15.126048px;}
.ws9_c02024{word-spacing:-12.474000px;}
.ws7_c02024{word-spacing:-12.459744px;}
.ws8_c02024{word-spacing:-12.416976px;}
.wsf_c02024{word-spacing:-11.951280px;}
.wsc_c02024{word-spacing:-11.761200px;}
.wsd_c02024{word-spacing:-10.212048px;}
.ws18_c02024{word-spacing:-5.037984px;}
.ws15_c02024{word-spacing:-1.078704px;}
.ws19_c02024{word-spacing:-1.026432px;}
.ws12_c02024{word-spacing:-1.012176px;}
.ws10_c02024{word-spacing:-0.974160px;}
.ws13_c02024{word-spacing:-0.118800px;}
.ws16_c02024{word-spacing:-0.099792px;}
.ws17_c02024{word-spacing:-0.085536px;}
.ws11_c02024{word-spacing:0.000000px;}
.ws14_c02024{word-spacing:0.446688px;}
.ws2_c02024{word-spacing:1.330560px;}
.wse_c02024{word-spacing:7.902576px;}
.wsa_c02024{word-spacing:33.300288px;}
.ws5_c02024{word-spacing:36.742464px;}
.ws1_c02024{word-spacing:37.759392px;}
.ws0_c02024{word-spacing:38.020752px;}
.ws3_c02024{word-spacing:39.218256px;}
.ws4_c02024{word-spacing:39.902544px;}
.ws6_c02024{word-spacing:42.026688px;}
._0_c02024{margin-left:-1.948320px;}
._2_c02024{width:1.482624px;}
._5_c02024{width:2.746656px;}
._4_c02024{width:12.888288px;}
._6_c02024{width:21.350736px;}
._7_c02024{width:23.588928px;}
._1_c02024{width:50.252400px;}
._3_c02024{width:51.530688px;}
.fc0_c02024{color:rgb(0,0,0);}
.fs0_c02024{font-size:47.520000px;}
.fs1_c02024{font-size:60.480000px;}
.y0_c02024{bottom:0.000000px;}
.y12_c02024{bottom:18.000450px;}
.y1c_c02024{bottom:146.999694px;}
.y1e_c02024{bottom:186.600234px;}
.y1d_c02024{bottom:196.320450px;}
.y1b_c02024{bottom:275.879874px;}
.y1a_c02024{bottom:356.880090px;}
.y17_c02024{bottom:406.559874px;}
.y13_c02024{bottom:424.560450px;}
.y19_c02024{bottom:443.999694px;}
.y18_c02024{bottom:458.759406px;}
.y16_c02024{bottom:491.879658px;}
.y15_c02024{bottom:509.880234px;}
.y11_c02024{bottom:525.000000px;}
.y10_c02024{bottom:543.000342px;}
.y14_c02024{bottom:559.560018px;}
.yf_c02024{bottom:577.560450px;}
.y1f_c02024{bottom:614.280450px;}
.yb_c02024{bottom:667.558326px;}
.yd_c02024{bottom:707.160234px;}
.yc_c02024{bottom:716.880450px;}
.ya_c02024{bottom:796.438506px;}
.y9_c02024{bottom:877.438722px;}
.y7_c02024{bottom:926.759730px;}
.y3_c02024{bottom:944.760306px;}
.y8_c02024{bottom:979.319226px;}
.y6_c02024{bottom:1012.439478px;}
.y5_c02024{bottom:1030.440054px;}
.y2_c02024{bottom:1063.560306px;}
.y4_c02024{bottom:1079.759874px;}
.y1_c02024{bottom:1097.760450px;}
.ye_c02024{bottom:1134.840450px;}
.h5_c02024{height:29.160000px;}
.h3_c02024{height:32.530781px;}
.h1_c02024{height:41.696016px;}
.h2_c02024{height:41.812031px;}
.h4_c02024{height:54.654737px;}
.h0_c02024{height:1263.000000px;}
.w2_c02024{width:215.280000px;}
.w1_c02024{width:892.500000px;}
.w0_c02024{width:892.830000px;}
.x0_c02024{left:0.000000px;}
.xd_c02024{left:117.000000px;}
.x8_c02024{left:440.999856px;}
.x4_c02024{left:445.680576px;}
.xb_c02024{left:451.080000px;}
.x7_c02024{left:455.399604px;}
.x5_c02024{left:461.880144px;}
.x1_c02024{left:463.320000px;}
.xa_c02024{left:483.480360px;}
.x9_c02024{left:492.119496px;}
.x6_c02024{left:493.200576px;}
.xc_c02024{left:506.880360px;}
.x3_c02024{left:511.919892px;}
.x2_c02024{left:526.679604px;}
.xe_c02024{left:569.520000px;}
@media print{
.v0_c02024{vertical-align:0.000000pt;}
.v1_c02024{vertical-align:1.279488pt;}
.ls14_c02024{letter-spacing:-1.482624pt;}
.lsa_c02024{letter-spacing:-0.718080pt;}
.lsb_c02024{letter-spacing:-0.511104pt;}
.ls11_c02024{letter-spacing:-0.244992pt;}
.lsf_c02024{letter-spacing:-0.232320pt;}
.ls8_c02024{letter-spacing:-0.215424pt;}
.ls6_c02024{letter-spacing:-0.105600pt;}
.ls5_c02024{letter-spacing:0.000000pt;}
.ls2_c02024{letter-spacing:0.005376pt;}
.ls16_c02024{letter-spacing:0.008448pt;}
.ls3_c02024{letter-spacing:0.063360pt;}
.ls7_c02024{letter-spacing:0.114048pt;}
.lse_c02024{letter-spacing:0.215424pt;}
.lsd_c02024{letter-spacing:0.451968pt;}
.ls13_c02024{letter-spacing:0.456960pt;}
.ls10_c02024{letter-spacing:0.477312pt;}
.lsc_c02024{letter-spacing:0.515328pt;}
.ls12_c02024{letter-spacing:0.528000pt;}
.ls9_c02024{letter-spacing:0.532224pt;}
.ls4_c02024{letter-spacing:0.544896pt;}
.ls0_c02024{letter-spacing:0.578688pt;}
.ls15_c02024{letter-spacing:0.591360pt;}
.ls1_c02024{letter-spacing:0.637824pt;}
.wsb_c02024{word-spacing:-13.445376pt;}
.ws9_c02024{word-spacing:-11.088000pt;}
.ws7_c02024{word-spacing:-11.075328pt;}
.ws8_c02024{word-spacing:-11.037312pt;}
.wsf_c02024{word-spacing:-10.623360pt;}
.wsc_c02024{word-spacing:-10.454400pt;}
.wsd_c02024{word-spacing:-9.077376pt;}
.ws18_c02024{word-spacing:-4.478208pt;}
.ws15_c02024{word-spacing:-0.958848pt;}
.ws19_c02024{word-spacing:-0.912384pt;}
.ws12_c02024{word-spacing:-0.899712pt;}
.ws10_c02024{word-spacing:-0.865920pt;}
.ws13_c02024{word-spacing:-0.105600pt;}
.ws16_c02024{word-spacing:-0.088704pt;}
.ws17_c02024{word-spacing:-0.076032pt;}
.ws11_c02024{word-spacing:0.000000pt;}
.ws14_c02024{word-spacing:0.397056pt;}
.ws2_c02024{word-spacing:1.182720pt;}
.wse_c02024{word-spacing:7.024512pt;}
.wsa_c02024{word-spacing:29.600256pt;}
.ws5_c02024{word-spacing:32.659968pt;}
.ws1_c02024{word-spacing:33.563904pt;}
.ws0_c02024{word-spacing:33.796224pt;}
.ws3_c02024{word-spacing:34.860672pt;}
.ws4_c02024{word-spacing:35.468928pt;}
.ws6_c02024{word-spacing:37.357056pt;}
._0_c02024{margin-left:-1.731840pt;}
._2_c02024{width:1.317888pt;}
._5_c02024{width:2.441472pt;}
._4_c02024{width:11.456256pt;}
._6_c02024{width:18.978432pt;}
._7_c02024{width:20.967936pt;}
._1_c02024{width:44.668800pt;}
._3_c02024{width:45.805056pt;}
.fs0_c02024{font-size:42.240000pt;}
.fs1_c02024{font-size:53.760000pt;}
.y0_c02024{bottom:0.000000pt;}
.y12_c02024{bottom:16.000400pt;}
.y1c_c02024{bottom:130.666395pt;}
.y1e_c02024{bottom:165.866875pt;}
.y1d_c02024{bottom:174.507067pt;}
.y1b_c02024{bottom:245.226555pt;}
.y1a_c02024{bottom:317.226747pt;}
.y17_c02024{bottom:361.386555pt;}
.y13_c02024{bottom:377.387067pt;}
.y19_c02024{bottom:394.666395pt;}
.y18_c02024{bottom:407.786139pt;}
.y16_c02024{bottom:437.226363pt;}
.y15_c02024{bottom:453.226875pt;}
.y11_c02024{bottom:466.666667pt;}
.y10_c02024{bottom:482.666971pt;}
.y14_c02024{bottom:497.386683pt;}
.yf_c02024{bottom:513.387067pt;}
.y1f_c02024{bottom:546.027067pt;}
.yb_c02024{bottom:593.385179pt;}
.yd_c02024{bottom:628.586875pt;}
.yc_c02024{bottom:637.227067pt;}
.ya_c02024{bottom:707.945339pt;}
.y9_c02024{bottom:779.945531pt;}
.y7_c02024{bottom:823.786427pt;}
.y3_c02024{bottom:839.786939pt;}
.y8_c02024{bottom:870.505979pt;}
.y6_c02024{bottom:899.946203pt;}
.y5_c02024{bottom:915.946715pt;}
.y2_c02024{bottom:945.386939pt;}
.y4_c02024{bottom:959.786555pt;}
.y1_c02024{bottom:975.787067pt;}
.ye_c02024{bottom:1008.747067pt;}
.h5_c02024{height:25.920000pt;}
.h3_c02024{height:28.916250pt;}
.h1_c02024{height:37.063125pt;}
.h2_c02024{height:37.166250pt;}
.h4_c02024{height:48.581988pt;}
.h0_c02024{height:1122.666667pt;}
.w2_c02024{width:191.360000pt;}
.w1_c02024{width:793.333333pt;}
.w0_c02024{width:793.626667pt;}
.x0_c02024{left:0.000000pt;}
.xd_c02024{left:104.000000pt;}
.x8_c02024{left:391.999872pt;}
.x4_c02024{left:396.160512pt;}
.xb_c02024{left:400.960000pt;}
.x7_c02024{left:404.799648pt;}
.x5_c02024{left:410.560128pt;}
.x1_c02024{left:411.840000pt;}
.xa_c02024{left:429.760320pt;}
.x9_c02024{left:437.439552pt;}
.x6_c02024{left:438.400512pt;}
.xc_c02024{left:450.560320pt;}
.x3_c02024{left:455.039904pt;}
.x2_c02024{left:468.159648pt;}
.xe_c02024{left:506.240000pt;}
}





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

.ir_c02025:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02025{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02025;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02025{font-family:ff1_c02025;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02025;src:url('chunks/assets/font_701b9c92831cbac81c076f0a.woff2')format("woff");}.ff2_c02025{font-family:ff2_c02025;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02025;src:url('chunks/assets/font_7f7945f3f95e44915b4c1ff2.woff2')format("woff");}.ff3_c02025{font-family:ff3_c02025;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02025{vertical-align:0.000000px;}
.v1_c02025{vertical-align:1.439424px;}
.lsb_c02025{letter-spacing:-0.574992px;}
.ls10_c02025{letter-spacing:-0.275616px;}
.ls13_c02025{letter-spacing:-0.266112px;}
.lse_c02025{letter-spacing:-0.261360px;}
.ls8_c02025{letter-spacing:-0.242352px;}
.ls6_c02025{letter-spacing:-0.118800px;}
.ls5_c02025{letter-spacing:0.000000px;}
.ls2_c02025{letter-spacing:0.006048px;}
.ls7_c02025{letter-spacing:0.128304px;}
.ls9_c02025{letter-spacing:0.242352px;}
.lsd_c02025{letter-spacing:0.508464px;}
.ls12_c02025{letter-spacing:0.514080px;}
.lsf_c02025{letter-spacing:0.536976px;}
.lsc_c02025{letter-spacing:0.579744px;}
.ls11_c02025{letter-spacing:0.594000px;}
.lsa_c02025{letter-spacing:0.598752px;}
.ls4_c02025{letter-spacing:0.613008px;}
.ls0_c02025{letter-spacing:0.651024px;}
.ls1_c02025{letter-spacing:0.717552px;}
.ls3_c02025{letter-spacing:0.722304px;}
.sc__c02025{text-shadow:none;}
.sc0_c02025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02025{-webkit-text-stroke:0px transparent;}
.sc0_c02025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02025{word-spacing:-15.126048px;}
.wsa_c02025{word-spacing:-12.474000px;}
.ws8_c02025{word-spacing:-12.459744px;}
.ws9_c02025{word-spacing:-12.416976px;}
.ws2_c02025{word-spacing:-12.122352px;}
.ws4_c02025{word-spacing:-11.637648px;}
.ws15_c02025{word-spacing:-5.037984px;}
.ws17_c02025{word-spacing:-1.083456px;}
.ws12_c02025{word-spacing:-1.078704px;}
.ws10_c02025{word-spacing:-1.012176px;}
.wse_c02025{word-spacing:-0.974160px;}
.ws11_c02025{word-spacing:-0.118800px;}
.ws13_c02025{word-spacing:-0.099792px;}
.ws16_c02025{word-spacing:-0.095040px;}
.ws14_c02025{word-spacing:-0.085536px;}
.wsf_c02025{word-spacing:0.000000px;}
.wsd_c02025{word-spacing:1.330560px;}
.wsb_c02025{word-spacing:33.300288px;}
.ws6_c02025{word-spacing:36.742464px;}
.ws1_c02025{word-spacing:37.759392px;}
.ws0_c02025{word-spacing:38.020752px;}
.ws3_c02025{word-spacing:39.218256px;}
.ws5_c02025{word-spacing:39.902544px;}
.ws7_c02025{word-spacing:42.026688px;}
._0_c02025{margin-left:-1.948320px;}
._2_c02025{width:1.482624px;}
._4_c02025{width:3.307392px;}
._6_c02025{width:4.999104px;}
._5_c02025{width:12.888288px;}
._1_c02025{width:50.252400px;}
._3_c02025{width:51.530688px;}
.fc0_c02025{color:rgb(0,0,0);}
.fs0_c02025{font-size:47.520000px;}
.fs1_c02025{font-size:60.480000px;}
.y0_c02025{bottom:0.000000px;}
.y19_c02025{bottom:146.998362px;}
.y1b_c02025{bottom:186.600234px;}
.y1a_c02025{bottom:196.320450px;}
.y18_c02025{bottom:275.878542px;}
.y17_c02025{bottom:356.878758px;}
.y15_c02025{bottom:406.559730px;}
.y11_c02025{bottom:424.560306px;}
.y16_c02025{bottom:458.759262px;}
.y14_c02025{bottom:491.879514px;}
.y13_c02025{bottom:509.880090px;}
.y10_c02025{bottom:543.000342px;}
.y12_c02025{bottom:559.559874px;}
.yf_c02025{bottom:577.560450px;}
.y1c_c02025{bottom:614.280450px;}
.yb_c02025{bottom:667.558326px;}
.yd_c02025{bottom:707.160234px;}
.yc_c02025{bottom:716.880450px;}
.ya_c02025{bottom:796.438506px;}
.y9_c02025{bottom:877.438722px;}
.y7_c02025{bottom:926.759730px;}
.y3_c02025{bottom:944.760306px;}
.y8_c02025{bottom:979.319226px;}
.y6_c02025{bottom:1012.439478px;}
.y5_c02025{bottom:1030.440054px;}
.y2_c02025{bottom:1063.560306px;}
.y4_c02025{bottom:1079.759874px;}
.y1_c02025{bottom:1097.760450px;}
.ye_c02025{bottom:1134.840450px;}
.h3_c02025{height:32.530781px;}
.h1_c02025{height:41.696016px;}
.h2_c02025{height:41.812031px;}
.h4_c02025{height:54.654737px;}
.h0_c02025{height:1263.000000px;}
.w1_c02025{width:892.500000px;}
.w0_c02025{width:892.830000px;}
.x0_c02025{left:0.000000px;}
.xd_c02025{left:117.000000px;}
.x8_c02025{left:440.999856px;}
.x4_c02025{left:445.680576px;}
.xb_c02025{left:451.080000px;}
.x7_c02025{left:455.399604px;}
.x5_c02025{left:461.880144px;}
.x1_c02025{left:463.320000px;}
.xa_c02025{left:483.480360px;}
.x9_c02025{left:492.119496px;}
.x6_c02025{left:493.200576px;}
.xc_c02025{left:506.880360px;}
.x3_c02025{left:511.919892px;}
.x2_c02025{left:526.679604px;}
@media print{
.v0_c02025{vertical-align:0.000000pt;}
.v1_c02025{vertical-align:1.279488pt;}
.lsb_c02025{letter-spacing:-0.511104pt;}
.ls10_c02025{letter-spacing:-0.244992pt;}
.ls13_c02025{letter-spacing:-0.236544pt;}
.lse_c02025{letter-spacing:-0.232320pt;}
.ls8_c02025{letter-spacing:-0.215424pt;}
.ls6_c02025{letter-spacing:-0.105600pt;}
.ls5_c02025{letter-spacing:0.000000pt;}
.ls2_c02025{letter-spacing:0.005376pt;}
.ls7_c02025{letter-spacing:0.114048pt;}
.ls9_c02025{letter-spacing:0.215424pt;}
.lsd_c02025{letter-spacing:0.451968pt;}
.ls12_c02025{letter-spacing:0.456960pt;}
.lsf_c02025{letter-spacing:0.477312pt;}
.lsc_c02025{letter-spacing:0.515328pt;}
.ls11_c02025{letter-spacing:0.528000pt;}
.lsa_c02025{letter-spacing:0.532224pt;}
.ls4_c02025{letter-spacing:0.544896pt;}
.ls0_c02025{letter-spacing:0.578688pt;}
.ls1_c02025{letter-spacing:0.637824pt;}
.ls3_c02025{letter-spacing:0.642048pt;}
.wsc_c02025{word-spacing:-13.445376pt;}
.wsa_c02025{word-spacing:-11.088000pt;}
.ws8_c02025{word-spacing:-11.075328pt;}
.ws9_c02025{word-spacing:-11.037312pt;}
.ws2_c02025{word-spacing:-10.775424pt;}
.ws4_c02025{word-spacing:-10.344576pt;}
.ws15_c02025{word-spacing:-4.478208pt;}
.ws17_c02025{word-spacing:-0.963072pt;}
.ws12_c02025{word-spacing:-0.958848pt;}
.ws10_c02025{word-spacing:-0.899712pt;}
.wse_c02025{word-spacing:-0.865920pt;}
.ws11_c02025{word-spacing:-0.105600pt;}
.ws13_c02025{word-spacing:-0.088704pt;}
.ws16_c02025{word-spacing:-0.084480pt;}
.ws14_c02025{word-spacing:-0.076032pt;}
.wsf_c02025{word-spacing:0.000000pt;}
.wsd_c02025{word-spacing:1.182720pt;}
.wsb_c02025{word-spacing:29.600256pt;}
.ws6_c02025{word-spacing:32.659968pt;}
.ws1_c02025{word-spacing:33.563904pt;}
.ws0_c02025{word-spacing:33.796224pt;}
.ws3_c02025{word-spacing:34.860672pt;}
.ws5_c02025{word-spacing:35.468928pt;}
.ws7_c02025{word-spacing:37.357056pt;}
._0_c02025{margin-left:-1.731840pt;}
._2_c02025{width:1.317888pt;}
._4_c02025{width:2.939904pt;}
._6_c02025{width:4.443648pt;}
._5_c02025{width:11.456256pt;}
._1_c02025{width:44.668800pt;}
._3_c02025{width:45.805056pt;}
.fs0_c02025{font-size:42.240000pt;}
.fs1_c02025{font-size:53.760000pt;}
.y0_c02025{bottom:0.000000pt;}
.y19_c02025{bottom:130.665211pt;}
.y1b_c02025{bottom:165.866875pt;}
.y1a_c02025{bottom:174.507067pt;}
.y18_c02025{bottom:245.225371pt;}
.y17_c02025{bottom:317.225563pt;}
.y15_c02025{bottom:361.386427pt;}
.y11_c02025{bottom:377.386939pt;}
.y16_c02025{bottom:407.786011pt;}
.y14_c02025{bottom:437.226235pt;}
.y13_c02025{bottom:453.226747pt;}
.y10_c02025{bottom:482.666971pt;}
.y12_c02025{bottom:497.386555pt;}
.yf_c02025{bottom:513.387067pt;}
.y1c_c02025{bottom:546.027067pt;}
.yb_c02025{bottom:593.385179pt;}
.yd_c02025{bottom:628.586875pt;}
.yc_c02025{bottom:637.227067pt;}
.ya_c02025{bottom:707.945339pt;}
.y9_c02025{bottom:779.945531pt;}
.y7_c02025{bottom:823.786427pt;}
.y3_c02025{bottom:839.786939pt;}
.y8_c02025{bottom:870.505979pt;}
.y6_c02025{bottom:899.946203pt;}
.y5_c02025{bottom:915.946715pt;}
.y2_c02025{bottom:945.386939pt;}
.y4_c02025{bottom:959.786555pt;}
.y1_c02025{bottom:975.787067pt;}
.ye_c02025{bottom:1008.747067pt;}
.h3_c02025{height:28.916250pt;}
.h1_c02025{height:37.063125pt;}
.h2_c02025{height:37.166250pt;}
.h4_c02025{height:48.581988pt;}
.h0_c02025{height:1122.666667pt;}
.w1_c02025{width:793.333333pt;}
.w0_c02025{width:793.626667pt;}
.x0_c02025{left:0.000000pt;}
.xd_c02025{left:104.000000pt;}
.x8_c02025{left:391.999872pt;}
.x4_c02025{left:396.160512pt;}
.xb_c02025{left:400.960000pt;}
.x7_c02025{left:404.799648pt;}
.x5_c02025{left:410.560128pt;}
.x1_c02025{left:411.840000pt;}
.xa_c02025{left:429.760320pt;}
.x9_c02025{left:437.439552pt;}
.x6_c02025{left:438.400512pt;}
.xc_c02025{left:450.560320pt;}
.x3_c02025{left:455.039904pt;}
.x2_c02025{left:468.159648pt;}
}





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

.ir_c02026:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02026;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02026{font-family:ff1_c02026;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02026;src:url('chunks/assets/font_e90cf6aa245720bba0766830.woff2')format("woff");}.ff2_c02026{font-family:ff2_c02026;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02026;src:url('chunks/assets/font_7f7945f3f95e44915b4c1ff2.woff2')format("woff");}.ff3_c02026{font-family:ff3_c02026;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02026{vertical-align:0.000000px;}
.v1_c02026{vertical-align:1.439424px;}
.lsa_c02026{letter-spacing:-0.574992px;}
.ls13_c02026{letter-spacing:-0.361152px;}
.ls10_c02026{letter-spacing:-0.275616px;}
.ls9_c02026{letter-spacing:-0.266112px;}
.lse_c02026{letter-spacing:-0.261360px;}
.ls7_c02026{letter-spacing:-0.242352px;}
.ls4_c02026{letter-spacing:-0.118800px;}
.ls3_c02026{letter-spacing:0.000000px;}
.ls1_c02026{letter-spacing:0.006048px;}
.lsd_c02026{letter-spacing:0.038016px;}
.ls6_c02026{letter-spacing:0.128304px;}
.lsc_c02026{letter-spacing:0.508464px;}
.ls12_c02026{letter-spacing:0.514080px;}
.lsf_c02026{letter-spacing:0.536976px;}
.lsb_c02026{letter-spacing:0.579744px;}
.ls11_c02026{letter-spacing:0.594000px;}
.ls8_c02026{letter-spacing:0.598752px;}
.ls2_c02026{letter-spacing:0.613008px;}
.ls5_c02026{letter-spacing:0.717552px;}
.ls0_c02026{letter-spacing:0.722304px;}
.sc__c02026{text-shadow:none;}
.sc0_c02026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02026{-webkit-text-stroke:0px transparent;}
.sc0_c02026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02026{word-spacing:-15.126048px;}
.ws9_c02026{word-spacing:-12.474000px;}
.ws7_c02026{word-spacing:-12.459744px;}
.ws8_c02026{word-spacing:-12.416976px;}
.ws14_c02026{word-spacing:-5.037984px;}
.ws10_c02026{word-spacing:-1.083456px;}
.wsc_c02026{word-spacing:-0.974160px;}
.ws11_c02026{word-spacing:-0.399168px;}
.wse_c02026{word-spacing:-0.118800px;}
.ws12_c02026{word-spacing:-0.099792px;}
.wsf_c02026{word-spacing:-0.095040px;}
.ws13_c02026{word-spacing:-0.085536px;}
.wsd_c02026{word-spacing:0.000000px;}
.ws2_c02026{word-spacing:1.330560px;}
.wsa_c02026{word-spacing:33.300288px;}
.ws5_c02026{word-spacing:36.742464px;}
.ws1_c02026{word-spacing:37.759392px;}
.ws0_c02026{word-spacing:38.020752px;}
.ws3_c02026{word-spacing:39.218256px;}
.ws4_c02026{word-spacing:39.902544px;}
.ws6_c02026{word-spacing:42.026688px;}
._0_c02026{margin-left:-1.948320px;}
._2_c02026{width:1.482624px;}
._4_c02026{width:4.999104px;}
._5_c02026{width:12.888288px;}
._1_c02026{width:50.252400px;}
._3_c02026{width:51.530688px;}
.fc0_c02026{color:rgb(0,0,0);}
.fs0_c02026{font-size:47.520000px;}
.fs1_c02026{font-size:60.480000px;}
.y0_c02026{bottom:0.000000px;}
.y19_c02026{bottom:146.998362px;}
.y1b_c02026{bottom:186.600234px;}
.y1a_c02026{bottom:196.320450px;}
.y18_c02026{bottom:275.878542px;}
.y17_c02026{bottom:356.878758px;}
.y15_c02026{bottom:406.559730px;}
.y11_c02026{bottom:424.560306px;}
.y16_c02026{bottom:458.759262px;}
.y14_c02026{bottom:491.879514px;}
.y13_c02026{bottom:509.880090px;}
.y10_c02026{bottom:543.000342px;}
.y12_c02026{bottom:559.559874px;}
.yf_c02026{bottom:577.560450px;}
.y1c_c02026{bottom:614.280450px;}
.yb_c02026{bottom:667.558326px;}
.yd_c02026{bottom:707.160234px;}
.yc_c02026{bottom:716.880450px;}
.ya_c02026{bottom:796.438506px;}
.y9_c02026{bottom:877.438722px;}
.y7_c02026{bottom:926.759730px;}
.y3_c02026{bottom:944.760306px;}
.y8_c02026{bottom:979.319226px;}
.y6_c02026{bottom:1012.439478px;}
.y5_c02026{bottom:1030.440054px;}
.y2_c02026{bottom:1063.560306px;}
.y4_c02026{bottom:1079.759874px;}
.y1_c02026{bottom:1097.760450px;}
.ye_c02026{bottom:1134.840450px;}
.h3_c02026{height:32.530781px;}
.h1_c02026{height:41.696016px;}
.h2_c02026{height:41.812031px;}
.h4_c02026{height:54.654737px;}
.h0_c02026{height:1263.000000px;}
.w1_c02026{width:892.500000px;}
.w0_c02026{width:892.830000px;}
.x0_c02026{left:0.000000px;}
.xd_c02026{left:117.000000px;}
.x8_c02026{left:440.999856px;}
.x4_c02026{left:445.680576px;}
.xb_c02026{left:451.080000px;}
.x7_c02026{left:455.399604px;}
.x5_c02026{left:461.880144px;}
.x1_c02026{left:463.320000px;}
.xa_c02026{left:483.480360px;}
.x9_c02026{left:492.119496px;}
.x6_c02026{left:493.200576px;}
.xc_c02026{left:506.880360px;}
.x3_c02026{left:511.919892px;}
.x2_c02026{left:526.679604px;}
@media print{
.v0_c02026{vertical-align:0.000000pt;}
.v1_c02026{vertical-align:1.279488pt;}
.lsa_c02026{letter-spacing:-0.511104pt;}
.ls13_c02026{letter-spacing:-0.321024pt;}
.ls10_c02026{letter-spacing:-0.244992pt;}
.ls9_c02026{letter-spacing:-0.236544pt;}
.lse_c02026{letter-spacing:-0.232320pt;}
.ls7_c02026{letter-spacing:-0.215424pt;}
.ls4_c02026{letter-spacing:-0.105600pt;}
.ls3_c02026{letter-spacing:0.000000pt;}
.ls1_c02026{letter-spacing:0.005376pt;}
.lsd_c02026{letter-spacing:0.033792pt;}
.ls6_c02026{letter-spacing:0.114048pt;}
.lsc_c02026{letter-spacing:0.451968pt;}
.ls12_c02026{letter-spacing:0.456960pt;}
.lsf_c02026{letter-spacing:0.477312pt;}
.lsb_c02026{letter-spacing:0.515328pt;}
.ls11_c02026{letter-spacing:0.528000pt;}
.ls8_c02026{letter-spacing:0.532224pt;}
.ls2_c02026{letter-spacing:0.544896pt;}
.ls5_c02026{letter-spacing:0.637824pt;}
.ls0_c02026{letter-spacing:0.642048pt;}
.wsb_c02026{word-spacing:-13.445376pt;}
.ws9_c02026{word-spacing:-11.088000pt;}
.ws7_c02026{word-spacing:-11.075328pt;}
.ws8_c02026{word-spacing:-11.037312pt;}
.ws14_c02026{word-spacing:-4.478208pt;}
.ws10_c02026{word-spacing:-0.963072pt;}
.wsc_c02026{word-spacing:-0.865920pt;}
.ws11_c02026{word-spacing:-0.354816pt;}
.wse_c02026{word-spacing:-0.105600pt;}
.ws12_c02026{word-spacing:-0.088704pt;}
.wsf_c02026{word-spacing:-0.084480pt;}
.ws13_c02026{word-spacing:-0.076032pt;}
.wsd_c02026{word-spacing:0.000000pt;}
.ws2_c02026{word-spacing:1.182720pt;}
.wsa_c02026{word-spacing:29.600256pt;}
.ws5_c02026{word-spacing:32.659968pt;}
.ws1_c02026{word-spacing:33.563904pt;}
.ws0_c02026{word-spacing:33.796224pt;}
.ws3_c02026{word-spacing:34.860672pt;}
.ws4_c02026{word-spacing:35.468928pt;}
.ws6_c02026{word-spacing:37.357056pt;}
._0_c02026{margin-left:-1.731840pt;}
._2_c02026{width:1.317888pt;}
._4_c02026{width:4.443648pt;}
._5_c02026{width:11.456256pt;}
._1_c02026{width:44.668800pt;}
._3_c02026{width:45.805056pt;}
.fs0_c02026{font-size:42.240000pt;}
.fs1_c02026{font-size:53.760000pt;}
.y0_c02026{bottom:0.000000pt;}
.y19_c02026{bottom:130.665211pt;}
.y1b_c02026{bottom:165.866875pt;}
.y1a_c02026{bottom:174.507067pt;}
.y18_c02026{bottom:245.225371pt;}
.y17_c02026{bottom:317.225563pt;}
.y15_c02026{bottom:361.386427pt;}
.y11_c02026{bottom:377.386939pt;}
.y16_c02026{bottom:407.786011pt;}
.y14_c02026{bottom:437.226235pt;}
.y13_c02026{bottom:453.226747pt;}
.y10_c02026{bottom:482.666971pt;}
.y12_c02026{bottom:497.386555pt;}
.yf_c02026{bottom:513.387067pt;}
.y1c_c02026{bottom:546.027067pt;}
.yb_c02026{bottom:593.385179pt;}
.yd_c02026{bottom:628.586875pt;}
.yc_c02026{bottom:637.227067pt;}
.ya_c02026{bottom:707.945339pt;}
.y9_c02026{bottom:779.945531pt;}
.y7_c02026{bottom:823.786427pt;}
.y3_c02026{bottom:839.786939pt;}
.y8_c02026{bottom:870.505979pt;}
.y6_c02026{bottom:899.946203pt;}
.y5_c02026{bottom:915.946715pt;}
.y2_c02026{bottom:945.386939pt;}
.y4_c02026{bottom:959.786555pt;}
.y1_c02026{bottom:975.787067pt;}
.ye_c02026{bottom:1008.747067pt;}
.h3_c02026{height:28.916250pt;}
.h1_c02026{height:37.063125pt;}
.h2_c02026{height:37.166250pt;}
.h4_c02026{height:48.581988pt;}
.h0_c02026{height:1122.666667pt;}
.w1_c02026{width:793.333333pt;}
.w0_c02026{width:793.626667pt;}
.x0_c02026{left:0.000000pt;}
.xd_c02026{left:104.000000pt;}
.x8_c02026{left:391.999872pt;}
.x4_c02026{left:396.160512pt;}
.xb_c02026{left:400.960000pt;}
.x7_c02026{left:404.799648pt;}
.x5_c02026{left:410.560128pt;}
.x1_c02026{left:411.840000pt;}
.xa_c02026{left:429.760320pt;}
.x9_c02026{left:437.439552pt;}
.x6_c02026{left:438.400512pt;}
.xc_c02026{left:450.560320pt;}
.x3_c02026{left:455.039904pt;}
.x2_c02026{left:468.159648pt;}
}





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

.ir_c02027:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02027;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02027{font-family:ff1_c02027;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02027;src:url('chunks/assets/font_6440453a8e3d74dee78d990f.woff2')format("woff");}.ff2_c02027{font-family:ff2_c02027;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02027;src:url('chunks/assets/font_75a8f792f7fa9d56cbc615aa.woff2')format("woff");}.ff3_c02027{font-family:ff3_c02027;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02027{vertical-align:0.000000px;}
.v1_c02027{vertical-align:1.439424px;}
.lsd_c02027{letter-spacing:-1.197504px;}
.ls7_c02027{letter-spacing:-0.613008px;}
.ls9_c02027{letter-spacing:-0.574992px;}
.ls14_c02027{letter-spacing:-0.427680px;}
.ls10_c02027{letter-spacing:-0.275616px;}
.lse_c02027{letter-spacing:-0.261360px;}
.lsb_c02027{letter-spacing:-0.256608px;}
.ls6_c02027{letter-spacing:-0.242352px;}
.ls4_c02027{letter-spacing:-0.118800px;}
.ls3_c02027{letter-spacing:0.000000px;}
.ls1_c02027{letter-spacing:0.006048px;}
.ls5_c02027{letter-spacing:0.128304px;}
.ls13_c02027{letter-spacing:0.242352px;}
.lsc_c02027{letter-spacing:0.508464px;}
.ls12_c02027{letter-spacing:0.514080px;}
.lsf_c02027{letter-spacing:0.536976px;}
.lsa_c02027{letter-spacing:0.579744px;}
.ls11_c02027{letter-spacing:0.594000px;}
.ls8_c02027{letter-spacing:0.598752px;}
.ls2_c02027{letter-spacing:0.613008px;}
.ls0_c02027{letter-spacing:0.717552px;}
.sc__c02027{text-shadow:none;}
.sc0_c02027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02027{-webkit-text-stroke:0px transparent;}
.sc0_c02027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02027{word-spacing:-15.126048px;}
.wsc_c02027{word-spacing:-12.474000px;}
.wsa_c02027{word-spacing:-12.459744px;}
.wsb_c02027{word-spacing:-12.416976px;}
.wsf_c02027{word-spacing:-12.122352px;}
.ws9_c02027{word-spacing:-11.880000px;}
.ws4_c02027{word-spacing:-11.637648px;}
.ws2_c02027{word-spacing:-11.266992px;}
.ws17_c02027{word-spacing:-5.037984px;}
.ws19_c02027{word-spacing:-2.159136px;}
.ws13_c02027{word-spacing:-1.078704px;}
.ws10_c02027{word-spacing:-0.974160px;}
.ws12_c02027{word-spacing:-0.118800px;}
.ws14_c02027{word-spacing:-0.104544px;}
.ws15_c02027{word-spacing:-0.099792px;}
.ws16_c02027{word-spacing:-0.085536px;}
.ws11_c02027{word-spacing:0.000000px;}
.ws18_c02027{word-spacing:0.066528px;}
.wsd_c02027{word-spacing:33.300288px;}
.ws8_c02027{word-spacing:33.957792px;}
.ws6_c02027{word-spacing:36.742464px;}
.ws1_c02027{word-spacing:37.759392px;}
.ws0_c02027{word-spacing:38.020752px;}
.ws3_c02027{word-spacing:39.218256px;}
.ws5_c02027{word-spacing:39.902544px;}
.ws7_c02027{word-spacing:42.026688px;}
._0_c02027{margin-left:-1.948320px;}
._2_c02027{width:1.482624px;}
._4_c02027{width:3.302640px;}
._6_c02027{width:12.888288px;}
._7_c02027{width:14.761440px;}
._5_c02027{width:38.092032px;}
._1_c02027{width:50.252400px;}
._3_c02027{width:51.530688px;}
.fc0_c02027{color:rgb(0,0,0);}
.fs0_c02027{font-size:47.520000px;}
.fs1_c02027{font-size:60.480000px;}
.y0_c02027{bottom:0.000000px;}
.y1a_c02027{bottom:146.998362px;}
.y1c_c02027{bottom:186.600234px;}
.y1b_c02027{bottom:196.320450px;}
.y19_c02027{bottom:275.878542px;}
.y18_c02027{bottom:356.878758px;}
.y16_c02027{bottom:406.559730px;}
.y12_c02027{bottom:424.560306px;}
.y17_c02027{bottom:458.759262px;}
.y15_c02027{bottom:491.879514px;}
.y14_c02027{bottom:509.880090px;}
.y11_c02027{bottom:543.000342px;}
.y13_c02027{bottom:559.559874px;}
.y10_c02027{bottom:577.560450px;}
.y1d_c02027{bottom:614.280450px;}
.yc_c02027{bottom:667.559514px;}
.ye_c02027{bottom:707.160234px;}
.yd_c02027{bottom:716.880450px;}
.yb_c02027{bottom:796.439694px;}
.ya_c02027{bottom:877.439910px;}
.y7_c02027{bottom:926.759730px;}
.y3_c02027{bottom:944.760306px;}
.y9_c02027{bottom:964.559514px;}
.y8_c02027{bottom:979.319226px;}
.y6_c02027{bottom:1012.439478px;}
.y5_c02027{bottom:1030.440054px;}
.y2_c02027{bottom:1063.560306px;}
.y4_c02027{bottom:1079.759874px;}
.y1_c02027{bottom:1097.760450px;}
.yf_c02027{bottom:1134.840450px;}
.h3_c02027{height:32.530781px;}
.h1_c02027{height:41.696016px;}
.h2_c02027{height:41.812031px;}
.h4_c02027{height:54.654737px;}
.h0_c02027{height:1263.000000px;}
.w1_c02027{width:892.500000px;}
.w0_c02027{width:892.830000px;}
.x0_c02027{left:0.000000px;}
.xe_c02027{left:117.000000px;}
.x8_c02027{left:440.999856px;}
.x4_c02027{left:445.680576px;}
.xc_c02027{left:451.080000px;}
.x7_c02027{left:455.399604px;}
.x5_c02027{left:461.880144px;}
.x1_c02027{left:463.320000px;}
.xb_c02027{left:483.480360px;}
.xa_c02027{left:492.119496px;}
.x6_c02027{left:493.200576px;}
.xd_c02027{left:506.880360px;}
.x3_c02027{left:511.919892px;}
.x2_c02027{left:526.679604px;}
.x9_c02027{left:569.880036px;}
@media print{
.v0_c02027{vertical-align:0.000000pt;}
.v1_c02027{vertical-align:1.279488pt;}
.lsd_c02027{letter-spacing:-1.064448pt;}
.ls7_c02027{letter-spacing:-0.544896pt;}
.ls9_c02027{letter-spacing:-0.511104pt;}
.ls14_c02027{letter-spacing:-0.380160pt;}
.ls10_c02027{letter-spacing:-0.244992pt;}
.lse_c02027{letter-spacing:-0.232320pt;}
.lsb_c02027{letter-spacing:-0.228096pt;}
.ls6_c02027{letter-spacing:-0.215424pt;}
.ls4_c02027{letter-spacing:-0.105600pt;}
.ls3_c02027{letter-spacing:0.000000pt;}
.ls1_c02027{letter-spacing:0.005376pt;}
.ls5_c02027{letter-spacing:0.114048pt;}
.ls13_c02027{letter-spacing:0.215424pt;}
.lsc_c02027{letter-spacing:0.451968pt;}
.ls12_c02027{letter-spacing:0.456960pt;}
.lsf_c02027{letter-spacing:0.477312pt;}
.lsa_c02027{letter-spacing:0.515328pt;}
.ls11_c02027{letter-spacing:0.528000pt;}
.ls8_c02027{letter-spacing:0.532224pt;}
.ls2_c02027{letter-spacing:0.544896pt;}
.ls0_c02027{letter-spacing:0.637824pt;}
.wse_c02027{word-spacing:-13.445376pt;}
.wsc_c02027{word-spacing:-11.088000pt;}
.wsa_c02027{word-spacing:-11.075328pt;}
.wsb_c02027{word-spacing:-11.037312pt;}
.wsf_c02027{word-spacing:-10.775424pt;}
.ws9_c02027{word-spacing:-10.560000pt;}
.ws4_c02027{word-spacing:-10.344576pt;}
.ws2_c02027{word-spacing:-10.015104pt;}
.ws17_c02027{word-spacing:-4.478208pt;}
.ws19_c02027{word-spacing:-1.919232pt;}
.ws13_c02027{word-spacing:-0.958848pt;}
.ws10_c02027{word-spacing:-0.865920pt;}
.ws12_c02027{word-spacing:-0.105600pt;}
.ws14_c02027{word-spacing:-0.092928pt;}
.ws15_c02027{word-spacing:-0.088704pt;}
.ws16_c02027{word-spacing:-0.076032pt;}
.ws11_c02027{word-spacing:0.000000pt;}
.ws18_c02027{word-spacing:0.059136pt;}
.wsd_c02027{word-spacing:29.600256pt;}
.ws8_c02027{word-spacing:30.184704pt;}
.ws6_c02027{word-spacing:32.659968pt;}
.ws1_c02027{word-spacing:33.563904pt;}
.ws0_c02027{word-spacing:33.796224pt;}
.ws3_c02027{word-spacing:34.860672pt;}
.ws5_c02027{word-spacing:35.468928pt;}
.ws7_c02027{word-spacing:37.357056pt;}
._0_c02027{margin-left:-1.731840pt;}
._2_c02027{width:1.317888pt;}
._4_c02027{width:2.935680pt;}
._6_c02027{width:11.456256pt;}
._7_c02027{width:13.121280pt;}
._5_c02027{width:33.859584pt;}
._1_c02027{width:44.668800pt;}
._3_c02027{width:45.805056pt;}
.fs0_c02027{font-size:42.240000pt;}
.fs1_c02027{font-size:53.760000pt;}
.y0_c02027{bottom:0.000000pt;}
.y1a_c02027{bottom:130.665211pt;}
.y1c_c02027{bottom:165.866875pt;}
.y1b_c02027{bottom:174.507067pt;}
.y19_c02027{bottom:245.225371pt;}
.y18_c02027{bottom:317.225563pt;}
.y16_c02027{bottom:361.386427pt;}
.y12_c02027{bottom:377.386939pt;}
.y17_c02027{bottom:407.786011pt;}
.y15_c02027{bottom:437.226235pt;}
.y14_c02027{bottom:453.226747pt;}
.y11_c02027{bottom:482.666971pt;}
.y13_c02027{bottom:497.386555pt;}
.y10_c02027{bottom:513.387067pt;}
.y1d_c02027{bottom:546.027067pt;}
.yc_c02027{bottom:593.386235pt;}
.ye_c02027{bottom:628.586875pt;}
.yd_c02027{bottom:637.227067pt;}
.yb_c02027{bottom:707.946395pt;}
.ya_c02027{bottom:779.946587pt;}
.y7_c02027{bottom:823.786427pt;}
.y3_c02027{bottom:839.786939pt;}
.y9_c02027{bottom:857.386235pt;}
.y8_c02027{bottom:870.505979pt;}
.y6_c02027{bottom:899.946203pt;}
.y5_c02027{bottom:915.946715pt;}
.y2_c02027{bottom:945.386939pt;}
.y4_c02027{bottom:959.786555pt;}
.y1_c02027{bottom:975.787067pt;}
.yf_c02027{bottom:1008.747067pt;}
.h3_c02027{height:28.916250pt;}
.h1_c02027{height:37.063125pt;}
.h2_c02027{height:37.166250pt;}
.h4_c02027{height:48.581988pt;}
.h0_c02027{height:1122.666667pt;}
.w1_c02027{width:793.333333pt;}
.w0_c02027{width:793.626667pt;}
.x0_c02027{left:0.000000pt;}
.xe_c02027{left:104.000000pt;}
.x8_c02027{left:391.999872pt;}
.x4_c02027{left:396.160512pt;}
.xc_c02027{left:400.960000pt;}
.x7_c02027{left:404.799648pt;}
.x5_c02027{left:410.560128pt;}
.x1_c02027{left:411.840000pt;}
.xb_c02027{left:429.760320pt;}
.xa_c02027{left:437.439552pt;}
.x6_c02027{left:438.400512pt;}
.xd_c02027{left:450.560320pt;}
.x3_c02027{left:455.039904pt;}
.x2_c02027{left:468.159648pt;}
.x9_c02027{left:506.560032pt;}
}





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

.ir_c02028:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02028;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02028{font-family:ff1_c02028;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02028;src:url('chunks/assets/font_673fa3a11e155213cc56b485.woff2')format("woff");}.ff2_c02028{font-family:ff2_c02028;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02028;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02028{font-family:ff3_c02028;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02028{vertical-align:0.000000px;}
.v1_c02028{vertical-align:1.439424px;}
.ls12_c02028{letter-spacing:-0.774576px;}
.lsb_c02028{letter-spacing:-0.574992px;}
.lsf_c02028{letter-spacing:-0.275616px;}
.lsa_c02028{letter-spacing:-0.261360px;}
.ls7_c02028{letter-spacing:-0.242352px;}
.ls5_c02028{letter-spacing:-0.118800px;}
.ls4_c02028{letter-spacing:0.000000px;}
.ls2_c02028{letter-spacing:0.006048px;}
.ls6_c02028{letter-spacing:0.128304px;}
.ls8_c02028{letter-spacing:0.242352px;}
.lsd_c02028{letter-spacing:0.508464px;}
.ls11_c02028{letter-spacing:0.514080px;}
.lse_c02028{letter-spacing:0.536976px;}
.lsc_c02028{letter-spacing:0.579744px;}
.ls10_c02028{letter-spacing:0.594000px;}
.ls9_c02028{letter-spacing:0.598752px;}
.ls3_c02028{letter-spacing:0.613008px;}
.ls0_c02028{letter-spacing:0.651024px;}
.ls1_c02028{letter-spacing:0.717552px;}
.sc__c02028{text-shadow:none;}
.sc0_c02028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02028{-webkit-text-stroke:0px transparent;}
.sc0_c02028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02028{word-spacing:-15.126048px;}
.ws9_c02028{word-spacing:-12.474000px;}
.ws7_c02028{word-spacing:-12.459744px;}
.ws8_c02028{word-spacing:-12.416976px;}
.ws2_c02028{word-spacing:-12.122352px;}
.ws13_c02028{word-spacing:-2.159136px;}
.ws11_c02028{word-spacing:-1.078704px;}
.wse_c02028{word-spacing:-1.012176px;}
.wsc_c02028{word-spacing:-0.974160px;}
.wsf_c02028{word-spacing:-0.118800px;}
.ws10_c02028{word-spacing:-0.099792px;}
.ws12_c02028{word-spacing:-0.085536px;}
.wsd_c02028{word-spacing:0.000000px;}
.ws14_c02028{word-spacing:0.413424px;}
.wsa_c02028{word-spacing:33.300288px;}
.ws5_c02028{word-spacing:36.742464px;}
.ws1_c02028{word-spacing:37.759392px;}
.ws0_c02028{word-spacing:38.020752px;}
.ws3_c02028{word-spacing:39.218256px;}
.ws4_c02028{word-spacing:39.902544px;}
.ws6_c02028{word-spacing:42.026688px;}
._0_c02028{margin-left:-1.948320px;}
._2_c02028{width:1.482624px;}
._5_c02028{width:3.445200px;}
._4_c02028{width:14.761440px;}
._1_c02028{width:50.252400px;}
._3_c02028{width:51.530688px;}
.fc0_c02028{color:rgb(0,0,0);}
.fs0_c02028{font-size:47.520000px;}
.fs1_c02028{font-size:60.480000px;}
.y0_c02028{bottom:0.000000px;}
.y19_c02028{bottom:146.998362px;}
.y1b_c02028{bottom:186.600234px;}
.y1a_c02028{bottom:196.320450px;}
.y18_c02028{bottom:275.878542px;}
.y17_c02028{bottom:356.878758px;}
.y15_c02028{bottom:406.559730px;}
.y11_c02028{bottom:424.560306px;}
.y16_c02028{bottom:458.759262px;}
.y14_c02028{bottom:491.879514px;}
.y13_c02028{bottom:509.880090px;}
.y10_c02028{bottom:543.000342px;}
.y12_c02028{bottom:559.559874px;}
.yf_c02028{bottom:577.560450px;}
.y1c_c02028{bottom:614.280450px;}
.yb_c02028{bottom:667.558326px;}
.yd_c02028{bottom:707.160234px;}
.yc_c02028{bottom:716.880450px;}
.ya_c02028{bottom:796.438506px;}
.y9_c02028{bottom:877.438722px;}
.y7_c02028{bottom:926.759730px;}
.y3_c02028{bottom:944.760306px;}
.y8_c02028{bottom:979.319226px;}
.y6_c02028{bottom:1012.439478px;}
.y5_c02028{bottom:1030.440054px;}
.y2_c02028{bottom:1063.560306px;}
.y4_c02028{bottom:1079.759874px;}
.y1_c02028{bottom:1097.760450px;}
.ye_c02028{bottom:1134.840450px;}
.h3_c02028{height:32.530781px;}
.h1_c02028{height:41.696016px;}
.h2_c02028{height:41.812031px;}
.h4_c02028{height:54.654737px;}
.h0_c02028{height:1263.000000px;}
.w1_c02028{width:892.500000px;}
.w0_c02028{width:892.830000px;}
.x0_c02028{left:0.000000px;}
.xd_c02028{left:117.000000px;}
.x8_c02028{left:440.999856px;}
.x4_c02028{left:445.680576px;}
.xb_c02028{left:451.080000px;}
.x7_c02028{left:455.399604px;}
.x5_c02028{left:461.880144px;}
.x1_c02028{left:463.320000px;}
.xa_c02028{left:483.480360px;}
.x9_c02028{left:492.119496px;}
.x6_c02028{left:493.200576px;}
.xc_c02028{left:506.880360px;}
.x3_c02028{left:511.919892px;}
.x2_c02028{left:526.679604px;}
@media print{
.v0_c02028{vertical-align:0.000000pt;}
.v1_c02028{vertical-align:1.279488pt;}
.ls12_c02028{letter-spacing:-0.688512pt;}
.lsb_c02028{letter-spacing:-0.511104pt;}
.lsf_c02028{letter-spacing:-0.244992pt;}
.lsa_c02028{letter-spacing:-0.232320pt;}
.ls7_c02028{letter-spacing:-0.215424pt;}
.ls5_c02028{letter-spacing:-0.105600pt;}
.ls4_c02028{letter-spacing:0.000000pt;}
.ls2_c02028{letter-spacing:0.005376pt;}
.ls6_c02028{letter-spacing:0.114048pt;}
.ls8_c02028{letter-spacing:0.215424pt;}
.lsd_c02028{letter-spacing:0.451968pt;}
.ls11_c02028{letter-spacing:0.456960pt;}
.lse_c02028{letter-spacing:0.477312pt;}
.lsc_c02028{letter-spacing:0.515328pt;}
.ls10_c02028{letter-spacing:0.528000pt;}
.ls9_c02028{letter-spacing:0.532224pt;}
.ls3_c02028{letter-spacing:0.544896pt;}
.ls0_c02028{letter-spacing:0.578688pt;}
.ls1_c02028{letter-spacing:0.637824pt;}
.wsb_c02028{word-spacing:-13.445376pt;}
.ws9_c02028{word-spacing:-11.088000pt;}
.ws7_c02028{word-spacing:-11.075328pt;}
.ws8_c02028{word-spacing:-11.037312pt;}
.ws2_c02028{word-spacing:-10.775424pt;}
.ws13_c02028{word-spacing:-1.919232pt;}
.ws11_c02028{word-spacing:-0.958848pt;}
.wse_c02028{word-spacing:-0.899712pt;}
.wsc_c02028{word-spacing:-0.865920pt;}
.wsf_c02028{word-spacing:-0.105600pt;}
.ws10_c02028{word-spacing:-0.088704pt;}
.ws12_c02028{word-spacing:-0.076032pt;}
.wsd_c02028{word-spacing:0.000000pt;}
.ws14_c02028{word-spacing:0.367488pt;}
.wsa_c02028{word-spacing:29.600256pt;}
.ws5_c02028{word-spacing:32.659968pt;}
.ws1_c02028{word-spacing:33.563904pt;}
.ws0_c02028{word-spacing:33.796224pt;}
.ws3_c02028{word-spacing:34.860672pt;}
.ws4_c02028{word-spacing:35.468928pt;}
.ws6_c02028{word-spacing:37.357056pt;}
._0_c02028{margin-left:-1.731840pt;}
._2_c02028{width:1.317888pt;}
._5_c02028{width:3.062400pt;}
._4_c02028{width:13.121280pt;}
._1_c02028{width:44.668800pt;}
._3_c02028{width:45.805056pt;}
.fs0_c02028{font-size:42.240000pt;}
.fs1_c02028{font-size:53.760000pt;}
.y0_c02028{bottom:0.000000pt;}
.y19_c02028{bottom:130.665211pt;}
.y1b_c02028{bottom:165.866875pt;}
.y1a_c02028{bottom:174.507067pt;}
.y18_c02028{bottom:245.225371pt;}
.y17_c02028{bottom:317.225563pt;}
.y15_c02028{bottom:361.386427pt;}
.y11_c02028{bottom:377.386939pt;}
.y16_c02028{bottom:407.786011pt;}
.y14_c02028{bottom:437.226235pt;}
.y13_c02028{bottom:453.226747pt;}
.y10_c02028{bottom:482.666971pt;}
.y12_c02028{bottom:497.386555pt;}
.yf_c02028{bottom:513.387067pt;}
.y1c_c02028{bottom:546.027067pt;}
.yb_c02028{bottom:593.385179pt;}
.yd_c02028{bottom:628.586875pt;}
.yc_c02028{bottom:637.227067pt;}
.ya_c02028{bottom:707.945339pt;}
.y9_c02028{bottom:779.945531pt;}
.y7_c02028{bottom:823.786427pt;}
.y3_c02028{bottom:839.786939pt;}
.y8_c02028{bottom:870.505979pt;}
.y6_c02028{bottom:899.946203pt;}
.y5_c02028{bottom:915.946715pt;}
.y2_c02028{bottom:945.386939pt;}
.y4_c02028{bottom:959.786555pt;}
.y1_c02028{bottom:975.787067pt;}
.ye_c02028{bottom:1008.747067pt;}
.h3_c02028{height:28.916250pt;}
.h1_c02028{height:37.063125pt;}
.h2_c02028{height:37.166250pt;}
.h4_c02028{height:48.581988pt;}
.h0_c02028{height:1122.666667pt;}
.w1_c02028{width:793.333333pt;}
.w0_c02028{width:793.626667pt;}
.x0_c02028{left:0.000000pt;}
.xd_c02028{left:104.000000pt;}
.x8_c02028{left:391.999872pt;}
.x4_c02028{left:396.160512pt;}
.xb_c02028{left:400.960000pt;}
.x7_c02028{left:404.799648pt;}
.x5_c02028{left:410.560128pt;}
.x1_c02028{left:411.840000pt;}
.xa_c02028{left:429.760320pt;}
.x9_c02028{left:437.439552pt;}
.x6_c02028{left:438.400512pt;}
.xc_c02028{left:450.560320pt;}
.x3_c02028{left:455.039904pt;}
.x2_c02028{left:468.159648pt;}
}





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

.ir_c02029:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02029;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02029{font-family:ff1_c02029;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02029;src:url('chunks/assets/font_1278b90709046badbcbd9b1a.woff2')format("woff");}.ff2_c02029{font-family:ff2_c02029;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02029;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02029{font-family:ff3_c02029;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02029{vertical-align:0.000000px;}
.v1_c02029{vertical-align:1.439424px;}
.lsb_c02029{letter-spacing:-0.574992px;}
.lsf_c02029{letter-spacing:-0.275616px;}
.lsa_c02029{letter-spacing:-0.261360px;}
.ls7_c02029{letter-spacing:-0.242352px;}
.ls5_c02029{letter-spacing:-0.118800px;}
.ls12_c02029{letter-spacing:0.000000px;}
.ls2_c02029{letter-spacing:0.006048px;}
.ls6_c02029{letter-spacing:0.128304px;}
.ls8_c02029{letter-spacing:0.242352px;}
.lsd_c02029{letter-spacing:0.508464px;}
.ls11_c02029{letter-spacing:0.514080px;}
.lse_c02029{letter-spacing:0.536976px;}
.lsc_c02029{letter-spacing:0.579744px;}
.ls10_c02029{letter-spacing:0.594000px;}
.ls9_c02029{letter-spacing:0.598752px;}
.ls4_c02029{letter-spacing:0.613008px;}
.ls0_c02029{letter-spacing:0.651024px;}
.ls1_c02029{letter-spacing:0.717552px;}
.ls3_c02029{letter-spacing:0.722304px;}
.sc__c02029{text-shadow:none;}
.sc0_c02029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02029{-webkit-text-stroke:0px transparent;}
.sc0_c02029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02029{word-spacing:-15.126048px;}
.ws9_c02029{word-spacing:-12.474000px;}
.ws7_c02029{word-spacing:-12.459744px;}
.ws8_c02029{word-spacing:-12.416976px;}
.ws2_c02029{word-spacing:-12.122352px;}
.ws13_c02029{word-spacing:-2.159136px;}
.ws14_c02029{word-spacing:-1.083456px;}
.ws11_c02029{word-spacing:-1.078704px;}
.wse_c02029{word-spacing:-1.012176px;}
.wsc_c02029{word-spacing:-0.974160px;}
.wsf_c02029{word-spacing:-0.118800px;}
.ws10_c02029{word-spacing:-0.099792px;}
.ws12_c02029{word-spacing:-0.085536px;}
.wsd_c02029{word-spacing:0.000000px;}
.wsa_c02029{word-spacing:33.300288px;}
.ws5_c02029{word-spacing:36.742464px;}
.ws1_c02029{word-spacing:37.759392px;}
.ws0_c02029{word-spacing:38.020752px;}
.ws3_c02029{word-spacing:39.218256px;}
.ws4_c02029{word-spacing:39.902544px;}
.ws6_c02029{word-spacing:42.026688px;}
._0_c02029{margin-left:-1.948320px;}
._2_c02029{width:1.482624px;}
._4_c02029{width:14.761440px;}
._1_c02029{width:50.252400px;}
._3_c02029{width:51.530688px;}
.fc0_c02029{color:rgb(0,0,0);}
.fs0_c02029{font-size:47.520000px;}
.fs1_c02029{font-size:60.480000px;}
.y0_c02029{bottom:0.000000px;}
.y19_c02029{bottom:146.998362px;}
.y1b_c02029{bottom:186.600234px;}
.y1a_c02029{bottom:196.320450px;}
.y18_c02029{bottom:275.878542px;}
.y17_c02029{bottom:356.878758px;}
.y15_c02029{bottom:406.559730px;}
.y11_c02029{bottom:424.560306px;}
.y16_c02029{bottom:458.759262px;}
.y14_c02029{bottom:491.879514px;}
.y13_c02029{bottom:509.880090px;}
.y10_c02029{bottom:543.000342px;}
.y12_c02029{bottom:559.559874px;}
.yf_c02029{bottom:577.560450px;}
.y1c_c02029{bottom:614.280450px;}
.yb_c02029{bottom:667.558326px;}
.yd_c02029{bottom:707.160234px;}
.yc_c02029{bottom:716.880450px;}
.ya_c02029{bottom:796.438506px;}
.y9_c02029{bottom:877.438722px;}
.y7_c02029{bottom:926.759730px;}
.y3_c02029{bottom:944.760306px;}
.y8_c02029{bottom:979.319226px;}
.y6_c02029{bottom:1012.439478px;}
.y5_c02029{bottom:1030.440054px;}
.y2_c02029{bottom:1063.560306px;}
.y4_c02029{bottom:1079.759874px;}
.y1_c02029{bottom:1097.760450px;}
.ye_c02029{bottom:1134.840450px;}
.h3_c02029{height:32.530781px;}
.h1_c02029{height:41.696016px;}
.h2_c02029{height:41.812031px;}
.h4_c02029{height:54.654737px;}
.h0_c02029{height:1263.000000px;}
.w1_c02029{width:892.500000px;}
.w0_c02029{width:892.830000px;}
.x0_c02029{left:0.000000px;}
.xd_c02029{left:117.000000px;}
.x8_c02029{left:440.999856px;}
.x4_c02029{left:445.680576px;}
.xb_c02029{left:451.080000px;}
.x7_c02029{left:455.399604px;}
.x5_c02029{left:461.880144px;}
.x1_c02029{left:463.320000px;}
.xa_c02029{left:483.480360px;}
.x9_c02029{left:492.119496px;}
.x6_c02029{left:493.200576px;}
.xc_c02029{left:506.880360px;}
.x3_c02029{left:511.919892px;}
.x2_c02029{left:526.679604px;}
@media print{
.v0_c02029{vertical-align:0.000000pt;}
.v1_c02029{vertical-align:1.279488pt;}
.lsb_c02029{letter-spacing:-0.511104pt;}
.lsf_c02029{letter-spacing:-0.244992pt;}
.lsa_c02029{letter-spacing:-0.232320pt;}
.ls7_c02029{letter-spacing:-0.215424pt;}
.ls5_c02029{letter-spacing:-0.105600pt;}
.ls12_c02029{letter-spacing:0.000000pt;}
.ls2_c02029{letter-spacing:0.005376pt;}
.ls6_c02029{letter-spacing:0.114048pt;}
.ls8_c02029{letter-spacing:0.215424pt;}
.lsd_c02029{letter-spacing:0.451968pt;}
.ls11_c02029{letter-spacing:0.456960pt;}
.lse_c02029{letter-spacing:0.477312pt;}
.lsc_c02029{letter-spacing:0.515328pt;}
.ls10_c02029{letter-spacing:0.528000pt;}
.ls9_c02029{letter-spacing:0.532224pt;}
.ls4_c02029{letter-spacing:0.544896pt;}
.ls0_c02029{letter-spacing:0.578688pt;}
.ls1_c02029{letter-spacing:0.637824pt;}
.ls3_c02029{letter-spacing:0.642048pt;}
.wsb_c02029{word-spacing:-13.445376pt;}
.ws9_c02029{word-spacing:-11.088000pt;}
.ws7_c02029{word-spacing:-11.075328pt;}
.ws8_c02029{word-spacing:-11.037312pt;}
.ws2_c02029{word-spacing:-10.775424pt;}
.ws13_c02029{word-spacing:-1.919232pt;}
.ws14_c02029{word-spacing:-0.963072pt;}
.ws11_c02029{word-spacing:-0.958848pt;}
.wse_c02029{word-spacing:-0.899712pt;}
.wsc_c02029{word-spacing:-0.865920pt;}
.wsf_c02029{word-spacing:-0.105600pt;}
.ws10_c02029{word-spacing:-0.088704pt;}
.ws12_c02029{word-spacing:-0.076032pt;}
.wsd_c02029{word-spacing:0.000000pt;}
.wsa_c02029{word-spacing:29.600256pt;}
.ws5_c02029{word-spacing:32.659968pt;}
.ws1_c02029{word-spacing:33.563904pt;}
.ws0_c02029{word-spacing:33.796224pt;}
.ws3_c02029{word-spacing:34.860672pt;}
.ws4_c02029{word-spacing:35.468928pt;}
.ws6_c02029{word-spacing:37.357056pt;}
._0_c02029{margin-left:-1.731840pt;}
._2_c02029{width:1.317888pt;}
._4_c02029{width:13.121280pt;}
._1_c02029{width:44.668800pt;}
._3_c02029{width:45.805056pt;}
.fs0_c02029{font-size:42.240000pt;}
.fs1_c02029{font-size:53.760000pt;}
.y0_c02029{bottom:0.000000pt;}
.y19_c02029{bottom:130.665211pt;}
.y1b_c02029{bottom:165.866875pt;}
.y1a_c02029{bottom:174.507067pt;}
.y18_c02029{bottom:245.225371pt;}
.y17_c02029{bottom:317.225563pt;}
.y15_c02029{bottom:361.386427pt;}
.y11_c02029{bottom:377.386939pt;}
.y16_c02029{bottom:407.786011pt;}
.y14_c02029{bottom:437.226235pt;}
.y13_c02029{bottom:453.226747pt;}
.y10_c02029{bottom:482.666971pt;}
.y12_c02029{bottom:497.386555pt;}
.yf_c02029{bottom:513.387067pt;}
.y1c_c02029{bottom:546.027067pt;}
.yb_c02029{bottom:593.385179pt;}
.yd_c02029{bottom:628.586875pt;}
.yc_c02029{bottom:637.227067pt;}
.ya_c02029{bottom:707.945339pt;}
.y9_c02029{bottom:779.945531pt;}
.y7_c02029{bottom:823.786427pt;}
.y3_c02029{bottom:839.786939pt;}
.y8_c02029{bottom:870.505979pt;}
.y6_c02029{bottom:899.946203pt;}
.y5_c02029{bottom:915.946715pt;}
.y2_c02029{bottom:945.386939pt;}
.y4_c02029{bottom:959.786555pt;}
.y1_c02029{bottom:975.787067pt;}
.ye_c02029{bottom:1008.747067pt;}
.h3_c02029{height:28.916250pt;}
.h1_c02029{height:37.063125pt;}
.h2_c02029{height:37.166250pt;}
.h4_c02029{height:48.581988pt;}
.h0_c02029{height:1122.666667pt;}
.w1_c02029{width:793.333333pt;}
.w0_c02029{width:793.626667pt;}
.x0_c02029{left:0.000000pt;}
.xd_c02029{left:104.000000pt;}
.x8_c02029{left:391.999872pt;}
.x4_c02029{left:396.160512pt;}
.xb_c02029{left:400.960000pt;}
.x7_c02029{left:404.799648pt;}
.x5_c02029{left:410.560128pt;}
.x1_c02029{left:411.840000pt;}
.xa_c02029{left:429.760320pt;}
.x9_c02029{left:437.439552pt;}
.x6_c02029{left:438.400512pt;}
.xc_c02029{left:450.560320pt;}
.x3_c02029{left:455.039904pt;}
.x2_c02029{left:468.159648pt;}
}





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

.ir_c02030:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02030{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02030;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02030{font-family:ff1_c02030;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02030;src:url('chunks/assets/font_0dfb69b06bac7462da1f8d40.woff2')format("woff");}.ff2_c02030{font-family:ff2_c02030;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02030;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02030{font-family:ff3_c02030;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02030{vertical-align:0.000000px;}
.v1_c02030{vertical-align:1.439424px;}
.lsa_c02030{letter-spacing:-0.574992px;}
.lsd_c02030{letter-spacing:-0.427680px;}
.ls10_c02030{letter-spacing:-0.275616px;}
.lse_c02030{letter-spacing:-0.261360px;}
.ls9_c02030{letter-spacing:-0.256608px;}
.ls6_c02030{letter-spacing:-0.242352px;}
.ls4_c02030{letter-spacing:-0.118800px;}
.ls13_c02030{letter-spacing:0.000000px;}
.ls1_c02030{letter-spacing:0.006048px;}
.ls5_c02030{letter-spacing:0.128304px;}
.ls7_c02030{letter-spacing:0.242352px;}
.lsc_c02030{letter-spacing:0.508464px;}
.ls12_c02030{letter-spacing:0.514080px;}
.lsf_c02030{letter-spacing:0.536976px;}
.lsb_c02030{letter-spacing:0.579744px;}
.ls11_c02030{letter-spacing:0.594000px;}
.ls8_c02030{letter-spacing:0.598752px;}
.ls3_c02030{letter-spacing:0.613008px;}
.ls2_c02030{letter-spacing:0.717552px;}
.ls0_c02030{letter-spacing:0.722304px;}
.sc__c02030{text-shadow:none;}
.sc0_c02030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02030{-webkit-text-stroke:0px transparent;}
.sc0_c02030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02030{word-spacing:-15.126048px;}
.ws9_c02030{word-spacing:-12.474000px;}
.ws7_c02030{word-spacing:-12.459744px;}
.ws8_c02030{word-spacing:-12.416976px;}
.ws2_c02030{word-spacing:-12.122352px;}
.ws14_c02030{word-spacing:-2.159136px;}
.ws10_c02030{word-spacing:-1.083456px;}
.ws15_c02030{word-spacing:-1.078704px;}
.wsc_c02030{word-spacing:-0.974160px;}
.wse_c02030{word-spacing:-0.118800px;}
.wsf_c02030{word-spacing:-0.104544px;}
.ws12_c02030{word-spacing:-0.099792px;}
.ws13_c02030{word-spacing:-0.085536px;}
.wsd_c02030{word-spacing:0.000000px;}
.ws11_c02030{word-spacing:0.066528px;}
.wsa_c02030{word-spacing:33.300288px;}
.ws5_c02030{word-spacing:36.742464px;}
.ws1_c02030{word-spacing:37.759392px;}
.ws0_c02030{word-spacing:38.020752px;}
.ws3_c02030{word-spacing:39.218256px;}
.ws4_c02030{word-spacing:39.902544px;}
.ws6_c02030{word-spacing:42.026688px;}
._0_c02030{margin-left:-1.948320px;}
._2_c02030{width:1.482624px;}
._4_c02030{width:3.430944px;}
._5_c02030{width:14.761440px;}
._1_c02030{width:50.252400px;}
._3_c02030{width:51.530688px;}
.fc0_c02030{color:rgb(0,0,0);}
.fs0_c02030{font-size:47.520000px;}
.fs1_c02030{font-size:60.480000px;}
.y0_c02030{bottom:0.000000px;}
.y19_c02030{bottom:146.998362px;}
.y1b_c02030{bottom:186.600234px;}
.y1a_c02030{bottom:196.320450px;}
.y18_c02030{bottom:275.878542px;}
.y17_c02030{bottom:356.878758px;}
.y15_c02030{bottom:406.559730px;}
.y11_c02030{bottom:424.560306px;}
.y16_c02030{bottom:458.759262px;}
.y14_c02030{bottom:491.879514px;}
.y13_c02030{bottom:509.880090px;}
.y10_c02030{bottom:543.000342px;}
.y12_c02030{bottom:559.559874px;}
.yf_c02030{bottom:577.560450px;}
.y1c_c02030{bottom:614.280450px;}
.yb_c02030{bottom:667.558326px;}
.yd_c02030{bottom:707.160234px;}
.yc_c02030{bottom:716.880450px;}
.ya_c02030{bottom:796.438506px;}
.y9_c02030{bottom:877.438722px;}
.y7_c02030{bottom:926.759730px;}
.y3_c02030{bottom:944.760306px;}
.y8_c02030{bottom:979.319226px;}
.y6_c02030{bottom:1012.439478px;}
.y5_c02030{bottom:1030.440054px;}
.y2_c02030{bottom:1063.560306px;}
.y4_c02030{bottom:1079.759874px;}
.y1_c02030{bottom:1097.760450px;}
.ye_c02030{bottom:1134.840450px;}
.h3_c02030{height:32.530781px;}
.h1_c02030{height:41.696016px;}
.h2_c02030{height:41.812031px;}
.h4_c02030{height:54.654737px;}
.h0_c02030{height:1263.000000px;}
.w1_c02030{width:892.500000px;}
.w0_c02030{width:892.830000px;}
.x0_c02030{left:0.000000px;}
.xd_c02030{left:117.000000px;}
.x8_c02030{left:440.999856px;}
.x4_c02030{left:445.680576px;}
.xb_c02030{left:451.080000px;}
.x7_c02030{left:455.399604px;}
.x5_c02030{left:461.880144px;}
.x1_c02030{left:463.320000px;}
.xa_c02030{left:483.480360px;}
.x9_c02030{left:492.119496px;}
.x6_c02030{left:493.200576px;}
.xc_c02030{left:506.880360px;}
.x3_c02030{left:511.919892px;}
.x2_c02030{left:526.679604px;}
@media print{
.v0_c02030{vertical-align:0.000000pt;}
.v1_c02030{vertical-align:1.279488pt;}
.lsa_c02030{letter-spacing:-0.511104pt;}
.lsd_c02030{letter-spacing:-0.380160pt;}
.ls10_c02030{letter-spacing:-0.244992pt;}
.lse_c02030{letter-spacing:-0.232320pt;}
.ls9_c02030{letter-spacing:-0.228096pt;}
.ls6_c02030{letter-spacing:-0.215424pt;}
.ls4_c02030{letter-spacing:-0.105600pt;}
.ls13_c02030{letter-spacing:0.000000pt;}
.ls1_c02030{letter-spacing:0.005376pt;}
.ls5_c02030{letter-spacing:0.114048pt;}
.ls7_c02030{letter-spacing:0.215424pt;}
.lsc_c02030{letter-spacing:0.451968pt;}
.ls12_c02030{letter-spacing:0.456960pt;}
.lsf_c02030{letter-spacing:0.477312pt;}
.lsb_c02030{letter-spacing:0.515328pt;}
.ls11_c02030{letter-spacing:0.528000pt;}
.ls8_c02030{letter-spacing:0.532224pt;}
.ls3_c02030{letter-spacing:0.544896pt;}
.ls2_c02030{letter-spacing:0.637824pt;}
.ls0_c02030{letter-spacing:0.642048pt;}
.wsb_c02030{word-spacing:-13.445376pt;}
.ws9_c02030{word-spacing:-11.088000pt;}
.ws7_c02030{word-spacing:-11.075328pt;}
.ws8_c02030{word-spacing:-11.037312pt;}
.ws2_c02030{word-spacing:-10.775424pt;}
.ws14_c02030{word-spacing:-1.919232pt;}
.ws10_c02030{word-spacing:-0.963072pt;}
.ws15_c02030{word-spacing:-0.958848pt;}
.wsc_c02030{word-spacing:-0.865920pt;}
.wse_c02030{word-spacing:-0.105600pt;}
.wsf_c02030{word-spacing:-0.092928pt;}
.ws12_c02030{word-spacing:-0.088704pt;}
.ws13_c02030{word-spacing:-0.076032pt;}
.wsd_c02030{word-spacing:0.000000pt;}
.ws11_c02030{word-spacing:0.059136pt;}
.wsa_c02030{word-spacing:29.600256pt;}
.ws5_c02030{word-spacing:32.659968pt;}
.ws1_c02030{word-spacing:33.563904pt;}
.ws0_c02030{word-spacing:33.796224pt;}
.ws3_c02030{word-spacing:34.860672pt;}
.ws4_c02030{word-spacing:35.468928pt;}
.ws6_c02030{word-spacing:37.357056pt;}
._0_c02030{margin-left:-1.731840pt;}
._2_c02030{width:1.317888pt;}
._4_c02030{width:3.049728pt;}
._5_c02030{width:13.121280pt;}
._1_c02030{width:44.668800pt;}
._3_c02030{width:45.805056pt;}
.fs0_c02030{font-size:42.240000pt;}
.fs1_c02030{font-size:53.760000pt;}
.y0_c02030{bottom:0.000000pt;}
.y19_c02030{bottom:130.665211pt;}
.y1b_c02030{bottom:165.866875pt;}
.y1a_c02030{bottom:174.507067pt;}
.y18_c02030{bottom:245.225371pt;}
.y17_c02030{bottom:317.225563pt;}
.y15_c02030{bottom:361.386427pt;}
.y11_c02030{bottom:377.386939pt;}
.y16_c02030{bottom:407.786011pt;}
.y14_c02030{bottom:437.226235pt;}
.y13_c02030{bottom:453.226747pt;}
.y10_c02030{bottom:482.666971pt;}
.y12_c02030{bottom:497.386555pt;}
.yf_c02030{bottom:513.387067pt;}
.y1c_c02030{bottom:546.027067pt;}
.yb_c02030{bottom:593.385179pt;}
.yd_c02030{bottom:628.586875pt;}
.yc_c02030{bottom:637.227067pt;}
.ya_c02030{bottom:707.945339pt;}
.y9_c02030{bottom:779.945531pt;}
.y7_c02030{bottom:823.786427pt;}
.y3_c02030{bottom:839.786939pt;}
.y8_c02030{bottom:870.505979pt;}
.y6_c02030{bottom:899.946203pt;}
.y5_c02030{bottom:915.946715pt;}
.y2_c02030{bottom:945.386939pt;}
.y4_c02030{bottom:959.786555pt;}
.y1_c02030{bottom:975.787067pt;}
.ye_c02030{bottom:1008.747067pt;}
.h3_c02030{height:28.916250pt;}
.h1_c02030{height:37.063125pt;}
.h2_c02030{height:37.166250pt;}
.h4_c02030{height:48.581988pt;}
.h0_c02030{height:1122.666667pt;}
.w1_c02030{width:793.333333pt;}
.w0_c02030{width:793.626667pt;}
.x0_c02030{left:0.000000pt;}
.xd_c02030{left:104.000000pt;}
.x8_c02030{left:391.999872pt;}
.x4_c02030{left:396.160512pt;}
.xb_c02030{left:400.960000pt;}
.x7_c02030{left:404.799648pt;}
.x5_c02030{left:410.560128pt;}
.x1_c02030{left:411.840000pt;}
.xa_c02030{left:429.760320pt;}
.x9_c02030{left:437.439552pt;}
.x6_c02030{left:438.400512pt;}
.xc_c02030{left:450.560320pt;}
.x3_c02030{left:455.039904pt;}
.x2_c02030{left:468.159648pt;}
}





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

.ir_c02031:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02031;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02031{font-family:ff1_c02031;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02031;src:url('chunks/assets/font_9dfb94103812217ea07b108d.woff2')format("woff");}.ff2_c02031{font-family:ff2_c02031;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02031;src:url('chunks/assets/font_0235929d4ac819cdfd840147.woff2')format("woff");}.ff3_c02031{font-family:ff3_c02031;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02031{vertical-align:0.000000px;}
.v1_c02031{vertical-align:1.439424px;}
.v2_c02031{vertical-align:17.279568px;}
.lse_c02031{letter-spacing:-1.197504px;}
.lsa_c02031{letter-spacing:-0.574992px;}
.ls16_c02031{letter-spacing:-0.494208px;}
.ls17_c02031{letter-spacing:-0.442800px;}
.lsb_c02031{letter-spacing:-0.361152px;}
.ls11_c02031{letter-spacing:-0.275616px;}
.ls9_c02031{letter-spacing:-0.266112px;}
.lsf_c02031{letter-spacing:-0.261360px;}
.ls7_c02031{letter-spacing:-0.242352px;}
.ls5_c02031{letter-spacing:-0.228096px;}
.ls15_c02031{letter-spacing:-0.166320px;}
.ls4_c02031{letter-spacing:-0.118800px;}
.ls14_c02031{letter-spacing:0.000000px;}
.ls1_c02031{letter-spacing:0.006048px;}
.ls0_c02031{letter-spacing:0.038016px;}
.ls6_c02031{letter-spacing:0.128304px;}
.lsd_c02031{letter-spacing:0.508464px;}
.ls13_c02031{letter-spacing:0.514080px;}
.ls10_c02031{letter-spacing:0.536976px;}
.lsc_c02031{letter-spacing:0.579744px;}
.ls12_c02031{letter-spacing:0.594000px;}
.ls8_c02031{letter-spacing:0.598752px;}
.ls3_c02031{letter-spacing:0.613008px;}
.ls2_c02031{letter-spacing:0.717552px;}
.ls18_c02031{letter-spacing:0.720000px;}
.sc__c02031{text-shadow:none;}
.sc0_c02031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02031{-webkit-text-stroke:0px transparent;}
.sc0_c02031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02031{word-spacing:-15.126048px;}
.wsa_c02031{word-spacing:-12.474000px;}
.ws8_c02031{word-spacing:-12.459744px;}
.ws9_c02031{word-spacing:-12.416976px;}
.ws0_c02031{word-spacing:-11.761200px;}
.wsd_c02031{word-spacing:-11.713680px;}
.ws1_c02031{word-spacing:-11.651904px;}
.wsf_c02031{word-spacing:-11.385792px;}
.ws1a_c02031{word-spacing:-2.159136px;}
.ws1c_c02031{word-spacing:-1.080000px;}
.ws1b_c02031{word-spacing:-1.078704px;}
.ws12_c02031{word-spacing:-0.974160px;}
.ws16_c02031{word-spacing:-0.399168px;}
.ws14_c02031{word-spacing:-0.118800px;}
.ws18_c02031{word-spacing:-0.099792px;}
.ws15_c02031{word-spacing:-0.095040px;}
.ws19_c02031{word-spacing:-0.085536px;}
.ws13_c02031{word-spacing:0.000000px;}
.ws17_c02031{word-spacing:0.836352px;}
.ws3_c02031{word-spacing:1.330560px;}
.wse_c02031{word-spacing:18.604080px;}
.ws11_c02031{word-spacing:20.606400px;}
.wsb_c02031{word-spacing:33.300288px;}
.ws6_c02031{word-spacing:36.742464px;}
.ws2_c02031{word-spacing:37.759392px;}
.ws4_c02031{word-spacing:39.218256px;}
.ws5_c02031{word-spacing:39.902544px;}
.ws10_c02031{word-spacing:42.024096px;}
.ws7_c02031{word-spacing:42.026688px;}
._a_c02031{margin-left:-3.451680px;}
._0_c02031{margin-left:-1.948320px;}
._2_c02031{width:1.406592px;}
._5_c02031{width:2.917728px;}
._4_c02031{width:5.151168px;}
._6_c02031{width:15.065568px;}
._7_c02031{width:31.505760px;}
._8_c02031{width:33.596640px;}
._9_c02031{width:36.243504px;}
._1_c02031{width:50.252400px;}
._3_c02031{width:51.834816px;}
.fc0_c02031{color:rgb(0,0,0);}
.fs2_c02031{font-size:36.000000px;}
.fs0_c02031{font-size:47.520000px;}
.fs1_c02031{font-size:60.480000px;}
.y0_c02031{bottom:0.000000px;}
.y15_c02031{bottom:18.000450px;}
.y4_c02031{bottom:18.360450px;}
.y21_c02031{bottom:147.000054px;}
.y23_c02031{bottom:186.600234px;}
.y22_c02031{bottom:196.320450px;}
.y20_c02031{bottom:275.880234px;}
.y1f_c02031{bottom:356.880450px;}
.y1c_c02031{bottom:391.440162px;}
.y1b_c02031{bottom:406.559838px;}
.y17_c02031{bottom:424.560414px;}
.y1e_c02031{bottom:454.080450px;}
.y1d_c02031{bottom:458.760558px;}
.y1a_c02031{bottom:491.879622px;}
.y19_c02031{bottom:509.880198px;}
.y14_c02031{bottom:525.000000px;}
.y13_c02031{bottom:543.000342px;}
.y16_c02031{bottom:543.000450px;}
.y18_c02031{bottom:559.559982px;}
.y12_c02031{bottom:577.560450px;}
.y24_c02031{bottom:614.280450px;}
.ye_c02031{bottom:667.559658px;}
.y10_c02031{bottom:707.160234px;}
.yf_c02031{bottom:716.880450px;}
.yd_c02031{bottom:796.439838px;}
.yc_c02031{bottom:877.440054px;}
.y9_c02031{bottom:926.759874px;}
.y5_c02031{bottom:944.760450px;}
.yb_c02031{bottom:964.559658px;}
.ya_c02031{bottom:979.319370px;}
.y8_c02031{bottom:1012.439622px;}
.y7_c02031{bottom:1030.440198px;}
.y3_c02031{bottom:1045.200000px;}
.y2_c02031{bottom:1063.560306px;}
.y6_c02031{bottom:1079.760018px;}
.y1_c02031{bottom:1097.760450px;}
.y11_c02031{bottom:1134.840450px;}
.h6_c02031{height:29.160000px;}
.h3_c02031{height:29.520000px;}
.h8_c02031{height:31.587891px;}
.h2_c02031{height:32.530781px;}
.h1_c02031{height:41.696016px;}
.h4_c02031{height:41.812031px;}
.h7_c02031{height:48.867459px;}
.h5_c02031{height:54.654737px;}
.h0_c02031{height:1263.000000px;}
.w2_c02031{width:215.280000px;}
.w1_c02031{width:892.500000px;}
.w0_c02031{width:892.830000px;}
.x0_c02031{left:0.000000px;}
.xe_c02031{left:117.000000px;}
.x9_c02031{left:440.999964px;}
.x5_c02031{left:445.680684px;}
.xc_c02031{left:451.080000px;}
.x8_c02031{left:455.399712px;}
.x6_c02031{left:461.880252px;}
.x1_c02031{left:463.320000px;}
.xb_c02031{left:483.480468px;}
.xa_c02031{left:492.119604px;}
.x7_c02031{left:493.200684px;}
.xd_c02031{left:506.880360px;}
.x4_c02031{left:511.920000px;}
.x2_c02031{left:526.679604px;}
.x3_c02031{left:569.520000px;}
.xf_c02031{left:612.000000px;}
@media print{
.v0_c02031{vertical-align:0.000000pt;}
.v1_c02031{vertical-align:1.279488pt;}
.v2_c02031{vertical-align:15.359616pt;}
.lse_c02031{letter-spacing:-1.064448pt;}
.lsa_c02031{letter-spacing:-0.511104pt;}
.ls16_c02031{letter-spacing:-0.439296pt;}
.ls17_c02031{letter-spacing:-0.393600pt;}
.lsb_c02031{letter-spacing:-0.321024pt;}
.ls11_c02031{letter-spacing:-0.244992pt;}
.ls9_c02031{letter-spacing:-0.236544pt;}
.lsf_c02031{letter-spacing:-0.232320pt;}
.ls7_c02031{letter-spacing:-0.215424pt;}
.ls5_c02031{letter-spacing:-0.202752pt;}
.ls15_c02031{letter-spacing:-0.147840pt;}
.ls4_c02031{letter-spacing:-0.105600pt;}
.ls14_c02031{letter-spacing:0.000000pt;}
.ls1_c02031{letter-spacing:0.005376pt;}
.ls0_c02031{letter-spacing:0.033792pt;}
.ls6_c02031{letter-spacing:0.114048pt;}
.lsd_c02031{letter-spacing:0.451968pt;}
.ls13_c02031{letter-spacing:0.456960pt;}
.ls10_c02031{letter-spacing:0.477312pt;}
.lsc_c02031{letter-spacing:0.515328pt;}
.ls12_c02031{letter-spacing:0.528000pt;}
.ls8_c02031{letter-spacing:0.532224pt;}
.ls3_c02031{letter-spacing:0.544896pt;}
.ls2_c02031{letter-spacing:0.637824pt;}
.ls18_c02031{letter-spacing:0.640000pt;}
.wsc_c02031{word-spacing:-13.445376pt;}
.wsa_c02031{word-spacing:-11.088000pt;}
.ws8_c02031{word-spacing:-11.075328pt;}
.ws9_c02031{word-spacing:-11.037312pt;}
.ws0_c02031{word-spacing:-10.454400pt;}
.wsd_c02031{word-spacing:-10.412160pt;}
.ws1_c02031{word-spacing:-10.357248pt;}
.wsf_c02031{word-spacing:-10.120704pt;}
.ws1a_c02031{word-spacing:-1.919232pt;}
.ws1c_c02031{word-spacing:-0.960000pt;}
.ws1b_c02031{word-spacing:-0.958848pt;}
.ws12_c02031{word-spacing:-0.865920pt;}
.ws16_c02031{word-spacing:-0.354816pt;}
.ws14_c02031{word-spacing:-0.105600pt;}
.ws18_c02031{word-spacing:-0.088704pt;}
.ws15_c02031{word-spacing:-0.084480pt;}
.ws19_c02031{word-spacing:-0.076032pt;}
.ws13_c02031{word-spacing:0.000000pt;}
.ws17_c02031{word-spacing:0.743424pt;}
.ws3_c02031{word-spacing:1.182720pt;}
.wse_c02031{word-spacing:16.536960pt;}
.ws11_c02031{word-spacing:18.316800pt;}
.wsb_c02031{word-spacing:29.600256pt;}
.ws6_c02031{word-spacing:32.659968pt;}
.ws2_c02031{word-spacing:33.563904pt;}
.ws4_c02031{word-spacing:34.860672pt;}
.ws5_c02031{word-spacing:35.468928pt;}
.ws10_c02031{word-spacing:37.354752pt;}
.ws7_c02031{word-spacing:37.357056pt;}
._a_c02031{margin-left:-3.068160pt;}
._0_c02031{margin-left:-1.731840pt;}
._2_c02031{width:1.250304pt;}
._5_c02031{width:2.593536pt;}
._4_c02031{width:4.578816pt;}
._6_c02031{width:13.391616pt;}
._7_c02031{width:28.005120pt;}
._8_c02031{width:29.863680pt;}
._9_c02031{width:32.216448pt;}
._1_c02031{width:44.668800pt;}
._3_c02031{width:46.075392pt;}
.fs2_c02031{font-size:32.000000pt;}
.fs0_c02031{font-size:42.240000pt;}
.fs1_c02031{font-size:53.760000pt;}
.y0_c02031{bottom:0.000000pt;}
.y15_c02031{bottom:16.000400pt;}
.y4_c02031{bottom:16.320400pt;}
.y21_c02031{bottom:130.666715pt;}
.y23_c02031{bottom:165.866875pt;}
.y22_c02031{bottom:174.507067pt;}
.y20_c02031{bottom:245.226875pt;}
.y1f_c02031{bottom:317.227067pt;}
.y1c_c02031{bottom:347.946811pt;}
.y1b_c02031{bottom:361.386523pt;}
.y17_c02031{bottom:377.387035pt;}
.y1e_c02031{bottom:403.627067pt;}
.y1d_c02031{bottom:407.787163pt;}
.y1a_c02031{bottom:437.226331pt;}
.y19_c02031{bottom:453.226843pt;}
.y14_c02031{bottom:466.666667pt;}
.y13_c02031{bottom:482.666971pt;}
.y16_c02031{bottom:482.667067pt;}
.y18_c02031{bottom:497.386651pt;}
.y12_c02031{bottom:513.387067pt;}
.y24_c02031{bottom:546.027067pt;}
.ye_c02031{bottom:593.386363pt;}
.y10_c02031{bottom:628.586875pt;}
.yf_c02031{bottom:637.227067pt;}
.yd_c02031{bottom:707.946523pt;}
.yc_c02031{bottom:779.946715pt;}
.y9_c02031{bottom:823.786555pt;}
.y5_c02031{bottom:839.787067pt;}
.yb_c02031{bottom:857.386363pt;}
.ya_c02031{bottom:870.506107pt;}
.y8_c02031{bottom:899.946331pt;}
.y7_c02031{bottom:915.946843pt;}
.y3_c02031{bottom:929.066667pt;}
.y2_c02031{bottom:945.386939pt;}
.y6_c02031{bottom:959.786683pt;}
.y1_c02031{bottom:975.787067pt;}
.y11_c02031{bottom:1008.747067pt;}
.h6_c02031{height:25.920000pt;}
.h3_c02031{height:26.240000pt;}
.h8_c02031{height:28.078125pt;}
.h2_c02031{height:28.916250pt;}
.h1_c02031{height:37.063125pt;}
.h4_c02031{height:37.166250pt;}
.h7_c02031{height:43.437741pt;}
.h5_c02031{height:48.581988pt;}
.h0_c02031{height:1122.666667pt;}
.w2_c02031{width:191.360000pt;}
.w1_c02031{width:793.333333pt;}
.w0_c02031{width:793.626667pt;}
.x0_c02031{left:0.000000pt;}
.xe_c02031{left:104.000000pt;}
.x9_c02031{left:391.999968pt;}
.x5_c02031{left:396.160608pt;}
.xc_c02031{left:400.960000pt;}
.x8_c02031{left:404.799744pt;}
.x6_c02031{left:410.560224pt;}
.x1_c02031{left:411.840000pt;}
.xb_c02031{left:429.760416pt;}
.xa_c02031{left:437.439648pt;}
.x7_c02031{left:438.400608pt;}
.xd_c02031{left:450.560320pt;}
.x4_c02031{left:455.040000pt;}
.x2_c02031{left:468.159648pt;}
.x3_c02031{left:506.240000pt;}
.xf_c02031{left:544.000000pt;}
}





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

.ir_c02032:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02032;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02032{font-family:ff1_c02032;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02032;src:url('chunks/assets/font_5b59e28ca8fb06eebd92f048.woff2')format("woff");}.ff2_c02032{font-family:ff2_c02032;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02032;src:url('chunks/assets/font_238902853aa642ed12541916.woff2')format("woff");}.ff3_c02032{font-family:ff3_c02032;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02032{vertical-align:0.000000px;}
.v1_c02032{vertical-align:1.439424px;}
.lse_c02032{letter-spacing:-1.197504px;}
.ls15_c02032{letter-spacing:-0.613008px;}
.lsa_c02032{letter-spacing:-0.574992px;}
.ls11_c02032{letter-spacing:-0.275616px;}
.ls9_c02032{letter-spacing:-0.266112px;}
.lsf_c02032{letter-spacing:-0.261360px;}
.ls7_c02032{letter-spacing:-0.242352px;}
.ls5_c02032{letter-spacing:-0.228096px;}
.ls4_c02032{letter-spacing:-0.118800px;}
.ls14_c02032{letter-spacing:0.000000px;}
.ls1_c02032{letter-spacing:0.006048px;}
.lsd_c02032{letter-spacing:0.009504px;}
.ls6_c02032{letter-spacing:0.128304px;}
.ls16_c02032{letter-spacing:0.242352px;}
.lsc_c02032{letter-spacing:0.508464px;}
.ls13_c02032{letter-spacing:0.514080px;}
.ls10_c02032{letter-spacing:0.536976px;}
.lsb_c02032{letter-spacing:0.579744px;}
.ls12_c02032{letter-spacing:0.594000px;}
.ls8_c02032{letter-spacing:0.598752px;}
.ls3_c02032{letter-spacing:0.613008px;}
.ls2_c02032{letter-spacing:0.717552px;}
.ls0_c02032{letter-spacing:0.722304px;}
.sc__c02032{text-shadow:none;}
.sc0_c02032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02032{-webkit-text-stroke:0px transparent;}
.sc0_c02032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02032{word-spacing:-15.126048px;}
.wsb_c02032{word-spacing:-12.474000px;}
.ws9_c02032{word-spacing:-12.459744px;}
.wsa_c02032{word-spacing:-12.416976px;}
.ws0_c02032{word-spacing:-11.761200px;}
.ws1_c02032{word-spacing:-11.651904px;}
.ws10_c02032{word-spacing:-11.637648px;}
.wsf_c02032{word-spacing:-11.266992px;}
.ws19_c02032{word-spacing:-2.159136px;}
.ws15_c02032{word-spacing:-1.083456px;}
.ws1a_c02032{word-spacing:-1.078704px;}
.ws11_c02032{word-spacing:-0.974160px;}
.ws13_c02032{word-spacing:-0.118800px;}
.ws17_c02032{word-spacing:-0.099792px;}
.ws14_c02032{word-spacing:-0.095040px;}
.ws18_c02032{word-spacing:-0.085536px;}
.ws12_c02032{word-spacing:0.000000px;}
.ws16_c02032{word-spacing:0.836352px;}
.ws3_c02032{word-spacing:1.330560px;}
.ws8_c02032{word-spacing:32.380128px;}
.wsc_c02032{word-spacing:33.300288px;}
.ws6_c02032{word-spacing:36.742464px;}
.ws2_c02032{word-spacing:37.759392px;}
.wse_c02032{word-spacing:38.020752px;}
.ws4_c02032{word-spacing:39.218256px;}
.ws5_c02032{word-spacing:39.902544px;}
.ws7_c02032{word-spacing:42.026688px;}
._0_c02032{margin-left:-1.948320px;}
._2_c02032{width:1.406592px;}
._6_c02032{width:2.713392px;}
._4_c02032{width:5.151168px;}
._7_c02032{width:15.065568px;}
._5_c02032{width:46.645632px;}
._1_c02032{width:50.252400px;}
._3_c02032{width:51.834816px;}
.fc0_c02032{color:rgb(0,0,0);}
.fs0_c02032{font-size:47.520000px;}
.fs1_c02032{font-size:60.480000px;}
.y0_c02032{bottom:0.000000px;}
.y4_c02032{bottom:18.360450px;}
.y1c_c02032{bottom:146.998362px;}
.y1e_c02032{bottom:186.600234px;}
.y1d_c02032{bottom:196.320450px;}
.y1b_c02032{bottom:275.878542px;}
.y1a_c02032{bottom:356.878758px;}
.y18_c02032{bottom:406.559730px;}
.y14_c02032{bottom:424.560306px;}
.y19_c02032{bottom:458.759262px;}
.y17_c02032{bottom:491.879514px;}
.y16_c02032{bottom:509.880090px;}
.y13_c02032{bottom:543.000342px;}
.y15_c02032{bottom:559.559874px;}
.y12_c02032{bottom:577.560450px;}
.y1f_c02032{bottom:614.280450px;}
.ye_c02032{bottom:667.559658px;}
.y10_c02032{bottom:707.160234px;}
.yf_c02032{bottom:716.880450px;}
.yd_c02032{bottom:796.439838px;}
.yc_c02032{bottom:877.440054px;}
.y9_c02032{bottom:926.759874px;}
.y5_c02032{bottom:944.760450px;}
.yb_c02032{bottom:964.559658px;}
.ya_c02032{bottom:979.319370px;}
.y8_c02032{bottom:1012.439622px;}
.y7_c02032{bottom:1030.440198px;}
.y3_c02032{bottom:1045.200000px;}
.y2_c02032{bottom:1063.560306px;}
.y6_c02032{bottom:1079.760018px;}
.y1_c02032{bottom:1097.760450px;}
.y11_c02032{bottom:1134.840450px;}
.h3_c02032{height:29.520000px;}
.h2_c02032{height:32.530781px;}
.h1_c02032{height:41.696016px;}
.h4_c02032{height:41.812031px;}
.h5_c02032{height:54.654737px;}
.h0_c02032{height:1263.000000px;}
.w2_c02032{width:215.280000px;}
.w1_c02032{width:892.500000px;}
.w0_c02032{width:892.830000px;}
.x0_c02032{left:0.000000px;}
.xe_c02032{left:117.000000px;}
.x9_c02032{left:440.999964px;}
.x5_c02032{left:445.680684px;}
.xc_c02032{left:451.080000px;}
.x8_c02032{left:455.399712px;}
.x6_c02032{left:461.880252px;}
.x1_c02032{left:463.320000px;}
.xb_c02032{left:483.480468px;}
.xa_c02032{left:492.119604px;}
.x7_c02032{left:493.200684px;}
.xd_c02032{left:506.880360px;}
.x4_c02032{left:511.920000px;}
.x2_c02032{left:526.679604px;}
.x3_c02032{left:569.520000px;}
@media print{
.v0_c02032{vertical-align:0.000000pt;}
.v1_c02032{vertical-align:1.279488pt;}
.lse_c02032{letter-spacing:-1.064448pt;}
.ls15_c02032{letter-spacing:-0.544896pt;}
.lsa_c02032{letter-spacing:-0.511104pt;}
.ls11_c02032{letter-spacing:-0.244992pt;}
.ls9_c02032{letter-spacing:-0.236544pt;}
.lsf_c02032{letter-spacing:-0.232320pt;}
.ls7_c02032{letter-spacing:-0.215424pt;}
.ls5_c02032{letter-spacing:-0.202752pt;}
.ls4_c02032{letter-spacing:-0.105600pt;}
.ls14_c02032{letter-spacing:0.000000pt;}
.ls1_c02032{letter-spacing:0.005376pt;}
.lsd_c02032{letter-spacing:0.008448pt;}
.ls6_c02032{letter-spacing:0.114048pt;}
.ls16_c02032{letter-spacing:0.215424pt;}
.lsc_c02032{letter-spacing:0.451968pt;}
.ls13_c02032{letter-spacing:0.456960pt;}
.ls10_c02032{letter-spacing:0.477312pt;}
.lsb_c02032{letter-spacing:0.515328pt;}
.ls12_c02032{letter-spacing:0.528000pt;}
.ls8_c02032{letter-spacing:0.532224pt;}
.ls3_c02032{letter-spacing:0.544896pt;}
.ls2_c02032{letter-spacing:0.637824pt;}
.ls0_c02032{letter-spacing:0.642048pt;}
.wsd_c02032{word-spacing:-13.445376pt;}
.wsb_c02032{word-spacing:-11.088000pt;}
.ws9_c02032{word-spacing:-11.075328pt;}
.wsa_c02032{word-spacing:-11.037312pt;}
.ws0_c02032{word-spacing:-10.454400pt;}
.ws1_c02032{word-spacing:-10.357248pt;}
.ws10_c02032{word-spacing:-10.344576pt;}
.wsf_c02032{word-spacing:-10.015104pt;}
.ws19_c02032{word-spacing:-1.919232pt;}
.ws15_c02032{word-spacing:-0.963072pt;}
.ws1a_c02032{word-spacing:-0.958848pt;}
.ws11_c02032{word-spacing:-0.865920pt;}
.ws13_c02032{word-spacing:-0.105600pt;}
.ws17_c02032{word-spacing:-0.088704pt;}
.ws14_c02032{word-spacing:-0.084480pt;}
.ws18_c02032{word-spacing:-0.076032pt;}
.ws12_c02032{word-spacing:0.000000pt;}
.ws16_c02032{word-spacing:0.743424pt;}
.ws3_c02032{word-spacing:1.182720pt;}
.ws8_c02032{word-spacing:28.782336pt;}
.wsc_c02032{word-spacing:29.600256pt;}
.ws6_c02032{word-spacing:32.659968pt;}
.ws2_c02032{word-spacing:33.563904pt;}
.wse_c02032{word-spacing:33.796224pt;}
.ws4_c02032{word-spacing:34.860672pt;}
.ws5_c02032{word-spacing:35.468928pt;}
.ws7_c02032{word-spacing:37.357056pt;}
._0_c02032{margin-left:-1.731840pt;}
._2_c02032{width:1.250304pt;}
._6_c02032{width:2.411904pt;}
._4_c02032{width:4.578816pt;}
._7_c02032{width:13.391616pt;}
._5_c02032{width:41.462784pt;}
._1_c02032{width:44.668800pt;}
._3_c02032{width:46.075392pt;}
.fs0_c02032{font-size:42.240000pt;}
.fs1_c02032{font-size:53.760000pt;}
.y0_c02032{bottom:0.000000pt;}
.y4_c02032{bottom:16.320400pt;}
.y1c_c02032{bottom:130.665211pt;}
.y1e_c02032{bottom:165.866875pt;}
.y1d_c02032{bottom:174.507067pt;}
.y1b_c02032{bottom:245.225371pt;}
.y1a_c02032{bottom:317.225563pt;}
.y18_c02032{bottom:361.386427pt;}
.y14_c02032{bottom:377.386939pt;}
.y19_c02032{bottom:407.786011pt;}
.y17_c02032{bottom:437.226235pt;}
.y16_c02032{bottom:453.226747pt;}
.y13_c02032{bottom:482.666971pt;}
.y15_c02032{bottom:497.386555pt;}
.y12_c02032{bottom:513.387067pt;}
.y1f_c02032{bottom:546.027067pt;}
.ye_c02032{bottom:593.386363pt;}
.y10_c02032{bottom:628.586875pt;}
.yf_c02032{bottom:637.227067pt;}
.yd_c02032{bottom:707.946523pt;}
.yc_c02032{bottom:779.946715pt;}
.y9_c02032{bottom:823.786555pt;}
.y5_c02032{bottom:839.787067pt;}
.yb_c02032{bottom:857.386363pt;}
.ya_c02032{bottom:870.506107pt;}
.y8_c02032{bottom:899.946331pt;}
.y7_c02032{bottom:915.946843pt;}
.y3_c02032{bottom:929.066667pt;}
.y2_c02032{bottom:945.386939pt;}
.y6_c02032{bottom:959.786683pt;}
.y1_c02032{bottom:975.787067pt;}
.y11_c02032{bottom:1008.747067pt;}
.h3_c02032{height:26.240000pt;}
.h2_c02032{height:28.916250pt;}
.h1_c02032{height:37.063125pt;}
.h4_c02032{height:37.166250pt;}
.h5_c02032{height:48.581988pt;}
.h0_c02032{height:1122.666667pt;}
.w2_c02032{width:191.360000pt;}
.w1_c02032{width:793.333333pt;}
.w0_c02032{width:793.626667pt;}
.x0_c02032{left:0.000000pt;}
.xe_c02032{left:104.000000pt;}
.x9_c02032{left:391.999968pt;}
.x5_c02032{left:396.160608pt;}
.xc_c02032{left:400.960000pt;}
.x8_c02032{left:404.799744pt;}
.x6_c02032{left:410.560224pt;}
.x1_c02032{left:411.840000pt;}
.xb_c02032{left:429.760416pt;}
.xa_c02032{left:437.439648pt;}
.x7_c02032{left:438.400608pt;}
.xd_c02032{left:450.560320pt;}
.x4_c02032{left:455.040000pt;}
.x2_c02032{left:468.159648pt;}
.x3_c02032{left:506.240000pt;}
}





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

.ir_c02033:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02033;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02033{font-family:ff1_c02033;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02033;src:url('chunks/assets/font_bce4c851958a59d9fc135081.woff2')format("woff");}.ff2_c02033{font-family:ff2_c02033;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02033;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02033{font-family:ff3_c02033;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02033{vertical-align:0.000000px;}
.v1_c02033{vertical-align:1.439424px;}
.ls13_c02033{letter-spacing:-1.197504px;}
.ls9_c02033{letter-spacing:-0.574992px;}
.lsf_c02033{letter-spacing:-0.275616px;}
.ls8_c02033{letter-spacing:-0.266112px;}
.lsd_c02033{letter-spacing:-0.261360px;}
.ls6_c02033{letter-spacing:-0.242352px;}
.ls4_c02033{letter-spacing:-0.118800px;}
.ls12_c02033{letter-spacing:0.000000px;}
.ls2_c02033{letter-spacing:0.006048px;}
.ls5_c02033{letter-spacing:0.128304px;}
.lsc_c02033{letter-spacing:0.242352px;}
.lsb_c02033{letter-spacing:0.508464px;}
.ls11_c02033{letter-spacing:0.514080px;}
.lse_c02033{letter-spacing:0.536976px;}
.lsa_c02033{letter-spacing:0.579744px;}
.ls10_c02033{letter-spacing:0.594000px;}
.ls7_c02033{letter-spacing:0.598752px;}
.ls3_c02033{letter-spacing:0.613008px;}
.ls0_c02033{letter-spacing:0.651024px;}
.ls1_c02033{letter-spacing:0.717552px;}
.sc__c02033{text-shadow:none;}
.sc0_c02033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02033{-webkit-text-stroke:0px transparent;}
.sc0_c02033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02033{word-spacing:-15.126048px;}
.ws9_c02033{word-spacing:-12.474000px;}
.ws7_c02033{word-spacing:-12.459744px;}
.ws8_c02033{word-spacing:-12.416976px;}
.ws14_c02033{word-spacing:-2.159136px;}
.ws11_c02033{word-spacing:-1.078704px;}
.wse_c02033{word-spacing:-1.012176px;}
.wsc_c02033{word-spacing:-0.974160px;}
.wsf_c02033{word-spacing:-0.118800px;}
.ws12_c02033{word-spacing:-0.099792px;}
.ws10_c02033{word-spacing:-0.095040px;}
.ws13_c02033{word-spacing:-0.085536px;}
.wsd_c02033{word-spacing:0.000000px;}
.ws15_c02033{word-spacing:0.836352px;}
.ws2_c02033{word-spacing:1.330560px;}
.wsa_c02033{word-spacing:33.300288px;}
.ws5_c02033{word-spacing:36.742464px;}
.ws1_c02033{word-spacing:37.759392px;}
.ws0_c02033{word-spacing:38.020752px;}
.ws3_c02033{word-spacing:39.218256px;}
.ws4_c02033{word-spacing:39.902544px;}
.ws6_c02033{word-spacing:42.026688px;}
._0_c02033{margin-left:-1.948320px;}
._2_c02033{width:1.482624px;}
._6_c02033{width:2.680128px;}
._4_c02033{width:4.999104px;}
._5_c02033{width:14.761440px;}
._1_c02033{width:50.252400px;}
._3_c02033{width:51.530688px;}
.fc0_c02033{color:rgb(0,0,0);}
.fs0_c02033{font-size:47.520000px;}
.fs1_c02033{font-size:60.480000px;}
.y0_c02033{bottom:0.000000px;}
.y19_c02033{bottom:146.998362px;}
.y1b_c02033{bottom:186.600234px;}
.y1a_c02033{bottom:196.320450px;}
.y18_c02033{bottom:275.878542px;}
.y17_c02033{bottom:356.878758px;}
.y15_c02033{bottom:406.559730px;}
.y11_c02033{bottom:424.560306px;}
.y16_c02033{bottom:458.759262px;}
.y14_c02033{bottom:491.879514px;}
.y13_c02033{bottom:509.880090px;}
.y10_c02033{bottom:543.000342px;}
.y12_c02033{bottom:559.559874px;}
.yf_c02033{bottom:577.560450px;}
.y1c_c02033{bottom:614.280450px;}
.yb_c02033{bottom:667.558326px;}
.yd_c02033{bottom:707.160234px;}
.yc_c02033{bottom:716.880450px;}
.ya_c02033{bottom:796.438506px;}
.y9_c02033{bottom:877.438722px;}
.y7_c02033{bottom:926.759730px;}
.y3_c02033{bottom:944.760306px;}
.y8_c02033{bottom:979.319226px;}
.y6_c02033{bottom:1012.439478px;}
.y5_c02033{bottom:1030.440054px;}
.y2_c02033{bottom:1063.560306px;}
.y4_c02033{bottom:1079.759874px;}
.y1_c02033{bottom:1097.760450px;}
.ye_c02033{bottom:1134.840450px;}
.h3_c02033{height:32.530781px;}
.h1_c02033{height:41.696016px;}
.h2_c02033{height:41.812031px;}
.h4_c02033{height:54.654737px;}
.h0_c02033{height:1263.000000px;}
.w1_c02033{width:892.500000px;}
.w0_c02033{width:892.830000px;}
.x0_c02033{left:0.000000px;}
.xd_c02033{left:117.000000px;}
.x8_c02033{left:440.999856px;}
.x4_c02033{left:445.680576px;}
.xb_c02033{left:451.080000px;}
.x7_c02033{left:455.399604px;}
.x5_c02033{left:461.880144px;}
.x1_c02033{left:463.320000px;}
.xa_c02033{left:483.480360px;}
.x9_c02033{left:492.119496px;}
.x6_c02033{left:493.200576px;}
.xc_c02033{left:506.880360px;}
.x3_c02033{left:511.919892px;}
.x2_c02033{left:526.679604px;}
@media print{
.v0_c02033{vertical-align:0.000000pt;}
.v1_c02033{vertical-align:1.279488pt;}
.ls13_c02033{letter-spacing:-1.064448pt;}
.ls9_c02033{letter-spacing:-0.511104pt;}
.lsf_c02033{letter-spacing:-0.244992pt;}
.ls8_c02033{letter-spacing:-0.236544pt;}
.lsd_c02033{letter-spacing:-0.232320pt;}
.ls6_c02033{letter-spacing:-0.215424pt;}
.ls4_c02033{letter-spacing:-0.105600pt;}
.ls12_c02033{letter-spacing:0.000000pt;}
.ls2_c02033{letter-spacing:0.005376pt;}
.ls5_c02033{letter-spacing:0.114048pt;}
.lsc_c02033{letter-spacing:0.215424pt;}
.lsb_c02033{letter-spacing:0.451968pt;}
.ls11_c02033{letter-spacing:0.456960pt;}
.lse_c02033{letter-spacing:0.477312pt;}
.lsa_c02033{letter-spacing:0.515328pt;}
.ls10_c02033{letter-spacing:0.528000pt;}
.ls7_c02033{letter-spacing:0.532224pt;}
.ls3_c02033{letter-spacing:0.544896pt;}
.ls0_c02033{letter-spacing:0.578688pt;}
.ls1_c02033{letter-spacing:0.637824pt;}
.wsb_c02033{word-spacing:-13.445376pt;}
.ws9_c02033{word-spacing:-11.088000pt;}
.ws7_c02033{word-spacing:-11.075328pt;}
.ws8_c02033{word-spacing:-11.037312pt;}
.ws14_c02033{word-spacing:-1.919232pt;}
.ws11_c02033{word-spacing:-0.958848pt;}
.wse_c02033{word-spacing:-0.899712pt;}
.wsc_c02033{word-spacing:-0.865920pt;}
.wsf_c02033{word-spacing:-0.105600pt;}
.ws12_c02033{word-spacing:-0.088704pt;}
.ws10_c02033{word-spacing:-0.084480pt;}
.ws13_c02033{word-spacing:-0.076032pt;}
.wsd_c02033{word-spacing:0.000000pt;}
.ws15_c02033{word-spacing:0.743424pt;}
.ws2_c02033{word-spacing:1.182720pt;}
.wsa_c02033{word-spacing:29.600256pt;}
.ws5_c02033{word-spacing:32.659968pt;}
.ws1_c02033{word-spacing:33.563904pt;}
.ws0_c02033{word-spacing:33.796224pt;}
.ws3_c02033{word-spacing:34.860672pt;}
.ws4_c02033{word-spacing:35.468928pt;}
.ws6_c02033{word-spacing:37.357056pt;}
._0_c02033{margin-left:-1.731840pt;}
._2_c02033{width:1.317888pt;}
._6_c02033{width:2.382336pt;}
._4_c02033{width:4.443648pt;}
._5_c02033{width:13.121280pt;}
._1_c02033{width:44.668800pt;}
._3_c02033{width:45.805056pt;}
.fs0_c02033{font-size:42.240000pt;}
.fs1_c02033{font-size:53.760000pt;}
.y0_c02033{bottom:0.000000pt;}
.y19_c02033{bottom:130.665211pt;}
.y1b_c02033{bottom:165.866875pt;}
.y1a_c02033{bottom:174.507067pt;}
.y18_c02033{bottom:245.225371pt;}
.y17_c02033{bottom:317.225563pt;}
.y15_c02033{bottom:361.386427pt;}
.y11_c02033{bottom:377.386939pt;}
.y16_c02033{bottom:407.786011pt;}
.y14_c02033{bottom:437.226235pt;}
.y13_c02033{bottom:453.226747pt;}
.y10_c02033{bottom:482.666971pt;}
.y12_c02033{bottom:497.386555pt;}
.yf_c02033{bottom:513.387067pt;}
.y1c_c02033{bottom:546.027067pt;}
.yb_c02033{bottom:593.385179pt;}
.yd_c02033{bottom:628.586875pt;}
.yc_c02033{bottom:637.227067pt;}
.ya_c02033{bottom:707.945339pt;}
.y9_c02033{bottom:779.945531pt;}
.y7_c02033{bottom:823.786427pt;}
.y3_c02033{bottom:839.786939pt;}
.y8_c02033{bottom:870.505979pt;}
.y6_c02033{bottom:899.946203pt;}
.y5_c02033{bottom:915.946715pt;}
.y2_c02033{bottom:945.386939pt;}
.y4_c02033{bottom:959.786555pt;}
.y1_c02033{bottom:975.787067pt;}
.ye_c02033{bottom:1008.747067pt;}
.h3_c02033{height:28.916250pt;}
.h1_c02033{height:37.063125pt;}
.h2_c02033{height:37.166250pt;}
.h4_c02033{height:48.581988pt;}
.h0_c02033{height:1122.666667pt;}
.w1_c02033{width:793.333333pt;}
.w0_c02033{width:793.626667pt;}
.x0_c02033{left:0.000000pt;}
.xd_c02033{left:104.000000pt;}
.x8_c02033{left:391.999872pt;}
.x4_c02033{left:396.160512pt;}
.xb_c02033{left:400.960000pt;}
.x7_c02033{left:404.799648pt;}
.x5_c02033{left:410.560128pt;}
.x1_c02033{left:411.840000pt;}
.xa_c02033{left:429.760320pt;}
.x9_c02033{left:437.439552pt;}
.x6_c02033{left:438.400512pt;}
.xc_c02033{left:450.560320pt;}
.x3_c02033{left:455.039904pt;}
.x2_c02033{left:468.159648pt;}
}





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

.ir_c02034:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02034{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02034;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02034{font-family:ff1_c02034;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02034;src:url('chunks/assets/font_87ad48bfa011ca7076fb4b89.woff2')format("woff");}.ff2_c02034{font-family:ff2_c02034;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02034;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02034{font-family:ff3_c02034;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02034{vertical-align:0.000000px;}
.v1_c02034{vertical-align:1.439424px;}
.ls8_c02034{letter-spacing:-0.755568px;}
.ls9_c02034{letter-spacing:-0.574992px;}
.lsd_c02034{letter-spacing:-0.427680px;}
.lsa_c02034{letter-spacing:-0.361152px;}
.ls11_c02034{letter-spacing:-0.275616px;}
.lsf_c02034{letter-spacing:-0.261360px;}
.ls5_c02034{letter-spacing:-0.242352px;}
.ls3_c02034{letter-spacing:-0.118800px;}
.ls14_c02034{letter-spacing:0.000000px;}
.ls0_c02034{letter-spacing:0.006048px;}
.ls4_c02034{letter-spacing:0.128304px;}
.ls6_c02034{letter-spacing:0.242352px;}
.lsc_c02034{letter-spacing:0.508464px;}
.ls13_c02034{letter-spacing:0.514080px;}
.ls10_c02034{letter-spacing:0.536976px;}
.lsb_c02034{letter-spacing:0.579744px;}
.ls12_c02034{letter-spacing:0.594000px;}
.ls7_c02034{letter-spacing:0.598752px;}
.ls2_c02034{letter-spacing:0.613008px;}
.lse_c02034{letter-spacing:0.651024px;}
.ls1_c02034{letter-spacing:0.717552px;}
.sc__c02034{text-shadow:none;}
.sc0_c02034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02034{-webkit-text-stroke:0px transparent;}
.sc0_c02034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02034{word-spacing:-15.126048px;}
.wsa_c02034{word-spacing:-12.474000px;}
.ws9_c02034{word-spacing:-12.416976px;}
.ws2_c02034{word-spacing:-12.122352px;}
.ws4_c02034{word-spacing:-11.124432px;}
.ws14_c02034{word-spacing:-2.159136px;}
.ws15_c02034{word-spacing:-1.078704px;}
.ws11_c02034{word-spacing:-1.012176px;}
.wsd_c02034{word-spacing:-0.974160px;}
.wsf_c02034{word-spacing:-0.118800px;}
.ws12_c02034{word-spacing:-0.099792px;}
.ws13_c02034{word-spacing:-0.085536px;}
.wse_c02034{word-spacing:0.000000px;}
.ws10_c02034{word-spacing:0.066528px;}
.wsb_c02034{word-spacing:33.300288px;}
.ws8_c02034{word-spacing:36.143712px;}
.ws6_c02034{word-spacing:36.742464px;}
.ws1_c02034{word-spacing:37.759392px;}
.ws0_c02034{word-spacing:38.020752px;}
.ws3_c02034{word-spacing:39.218256px;}
.ws5_c02034{word-spacing:39.902544px;}
.ws7_c02034{word-spacing:42.026688px;}
._0_c02034{margin-left:-1.948320px;}
._2_c02034{width:1.482624px;}
._4_c02034{width:3.369168px;}
._5_c02034{width:14.761440px;}
._1_c02034{width:50.252400px;}
._3_c02034{width:51.530688px;}
.fc0_c02034{color:rgb(0,0,0);}
.fs0_c02034{font-size:47.520000px;}
.fs1_c02034{font-size:60.480000px;}
.y0_c02034{bottom:0.000000px;}
.y19_c02034{bottom:146.998362px;}
.y1b_c02034{bottom:186.600234px;}
.y1a_c02034{bottom:196.320450px;}
.y18_c02034{bottom:275.878542px;}
.y17_c02034{bottom:356.878758px;}
.y15_c02034{bottom:406.559730px;}
.y11_c02034{bottom:424.560306px;}
.y16_c02034{bottom:458.759262px;}
.y14_c02034{bottom:491.879514px;}
.y13_c02034{bottom:509.880090px;}
.y10_c02034{bottom:543.000342px;}
.y12_c02034{bottom:559.559874px;}
.yf_c02034{bottom:577.560450px;}
.y1c_c02034{bottom:614.280450px;}
.yb_c02034{bottom:667.558326px;}
.yd_c02034{bottom:707.160234px;}
.yc_c02034{bottom:716.880450px;}
.ya_c02034{bottom:796.438506px;}
.y9_c02034{bottom:877.438722px;}
.y7_c02034{bottom:926.759730px;}
.y3_c02034{bottom:944.760306px;}
.y8_c02034{bottom:979.319226px;}
.y6_c02034{bottom:1012.439478px;}
.y5_c02034{bottom:1030.440054px;}
.y2_c02034{bottom:1063.560306px;}
.y4_c02034{bottom:1079.759874px;}
.y1_c02034{bottom:1097.760450px;}
.ye_c02034{bottom:1134.840450px;}
.h3_c02034{height:32.530781px;}
.h1_c02034{height:41.696016px;}
.h2_c02034{height:41.812031px;}
.h4_c02034{height:54.654737px;}
.h0_c02034{height:1263.000000px;}
.w1_c02034{width:892.500000px;}
.w0_c02034{width:892.830000px;}
.x0_c02034{left:0.000000px;}
.xd_c02034{left:117.000000px;}
.x8_c02034{left:440.999856px;}
.x4_c02034{left:445.680576px;}
.xb_c02034{left:451.080000px;}
.x7_c02034{left:455.399604px;}
.x5_c02034{left:461.880144px;}
.x1_c02034{left:463.320000px;}
.xa_c02034{left:483.480360px;}
.x9_c02034{left:492.119496px;}
.x6_c02034{left:493.200576px;}
.xc_c02034{left:506.880360px;}
.x3_c02034{left:511.919892px;}
.x2_c02034{left:526.679604px;}
@media print{
.v0_c02034{vertical-align:0.000000pt;}
.v1_c02034{vertical-align:1.279488pt;}
.ls8_c02034{letter-spacing:-0.671616pt;}
.ls9_c02034{letter-spacing:-0.511104pt;}
.lsd_c02034{letter-spacing:-0.380160pt;}
.lsa_c02034{letter-spacing:-0.321024pt;}
.ls11_c02034{letter-spacing:-0.244992pt;}
.lsf_c02034{letter-spacing:-0.232320pt;}
.ls5_c02034{letter-spacing:-0.215424pt;}
.ls3_c02034{letter-spacing:-0.105600pt;}
.ls14_c02034{letter-spacing:0.000000pt;}
.ls0_c02034{letter-spacing:0.005376pt;}
.ls4_c02034{letter-spacing:0.114048pt;}
.ls6_c02034{letter-spacing:0.215424pt;}
.lsc_c02034{letter-spacing:0.451968pt;}
.ls13_c02034{letter-spacing:0.456960pt;}
.ls10_c02034{letter-spacing:0.477312pt;}
.lsb_c02034{letter-spacing:0.515328pt;}
.ls12_c02034{letter-spacing:0.528000pt;}
.ls7_c02034{letter-spacing:0.532224pt;}
.ls2_c02034{letter-spacing:0.544896pt;}
.lse_c02034{letter-spacing:0.578688pt;}
.ls1_c02034{letter-spacing:0.637824pt;}
.wsc_c02034{word-spacing:-13.445376pt;}
.wsa_c02034{word-spacing:-11.088000pt;}
.ws9_c02034{word-spacing:-11.037312pt;}
.ws2_c02034{word-spacing:-10.775424pt;}
.ws4_c02034{word-spacing:-9.888384pt;}
.ws14_c02034{word-spacing:-1.919232pt;}
.ws15_c02034{word-spacing:-0.958848pt;}
.ws11_c02034{word-spacing:-0.899712pt;}
.wsd_c02034{word-spacing:-0.865920pt;}
.wsf_c02034{word-spacing:-0.105600pt;}
.ws12_c02034{word-spacing:-0.088704pt;}
.ws13_c02034{word-spacing:-0.076032pt;}
.wse_c02034{word-spacing:0.000000pt;}
.ws10_c02034{word-spacing:0.059136pt;}
.wsb_c02034{word-spacing:29.600256pt;}
.ws8_c02034{word-spacing:32.127744pt;}
.ws6_c02034{word-spacing:32.659968pt;}
.ws1_c02034{word-spacing:33.563904pt;}
.ws0_c02034{word-spacing:33.796224pt;}
.ws3_c02034{word-spacing:34.860672pt;}
.ws5_c02034{word-spacing:35.468928pt;}
.ws7_c02034{word-spacing:37.357056pt;}
._0_c02034{margin-left:-1.731840pt;}
._2_c02034{width:1.317888pt;}
._4_c02034{width:2.994816pt;}
._5_c02034{width:13.121280pt;}
._1_c02034{width:44.668800pt;}
._3_c02034{width:45.805056pt;}
.fs0_c02034{font-size:42.240000pt;}
.fs1_c02034{font-size:53.760000pt;}
.y0_c02034{bottom:0.000000pt;}
.y19_c02034{bottom:130.665211pt;}
.y1b_c02034{bottom:165.866875pt;}
.y1a_c02034{bottom:174.507067pt;}
.y18_c02034{bottom:245.225371pt;}
.y17_c02034{bottom:317.225563pt;}
.y15_c02034{bottom:361.386427pt;}
.y11_c02034{bottom:377.386939pt;}
.y16_c02034{bottom:407.786011pt;}
.y14_c02034{bottom:437.226235pt;}
.y13_c02034{bottom:453.226747pt;}
.y10_c02034{bottom:482.666971pt;}
.y12_c02034{bottom:497.386555pt;}
.yf_c02034{bottom:513.387067pt;}
.y1c_c02034{bottom:546.027067pt;}
.yb_c02034{bottom:593.385179pt;}
.yd_c02034{bottom:628.586875pt;}
.yc_c02034{bottom:637.227067pt;}
.ya_c02034{bottom:707.945339pt;}
.y9_c02034{bottom:779.945531pt;}
.y7_c02034{bottom:823.786427pt;}
.y3_c02034{bottom:839.786939pt;}
.y8_c02034{bottom:870.505979pt;}
.y6_c02034{bottom:899.946203pt;}
.y5_c02034{bottom:915.946715pt;}
.y2_c02034{bottom:945.386939pt;}
.y4_c02034{bottom:959.786555pt;}
.y1_c02034{bottom:975.787067pt;}
.ye_c02034{bottom:1008.747067pt;}
.h3_c02034{height:28.916250pt;}
.h1_c02034{height:37.063125pt;}
.h2_c02034{height:37.166250pt;}
.h4_c02034{height:48.581988pt;}
.h0_c02034{height:1122.666667pt;}
.w1_c02034{width:793.333333pt;}
.w0_c02034{width:793.626667pt;}
.x0_c02034{left:0.000000pt;}
.xd_c02034{left:104.000000pt;}
.x8_c02034{left:391.999872pt;}
.x4_c02034{left:396.160512pt;}
.xb_c02034{left:400.960000pt;}
.x7_c02034{left:404.799648pt;}
.x5_c02034{left:410.560128pt;}
.x1_c02034{left:411.840000pt;}
.xa_c02034{left:429.760320pt;}
.x9_c02034{left:437.439552pt;}
.x6_c02034{left:438.400512pt;}
.xc_c02034{left:450.560320pt;}
.x3_c02034{left:455.039904pt;}
.x2_c02034{left:468.159648pt;}
}





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

.ir_c02035:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02035;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02035{font-family:ff1_c02035;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02035;src:url('chunks/assets/font_aa9f2df694a45d675995504f.woff2')format("woff");}.ff2_c02035{font-family:ff2_c02035;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02035;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02035{font-family:ff3_c02035;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02035{vertical-align:0.000000px;}
.v1_c02035{vertical-align:1.439424px;}
.ls14_c02035{letter-spacing:-0.613008px;}
.ls9_c02035{letter-spacing:-0.574992px;}
.lsc_c02035{letter-spacing:-0.427680px;}
.ls10_c02035{letter-spacing:-0.275616px;}
.lse_c02035{letter-spacing:-0.261360px;}
.ls8_c02035{letter-spacing:-0.256608px;}
.ls5_c02035{letter-spacing:-0.242352px;}
.ls3_c02035{letter-spacing:-0.118800px;}
.ls13_c02035{letter-spacing:0.000000px;}
.ls1_c02035{letter-spacing:0.006048px;}
.ls4_c02035{letter-spacing:0.128304px;}
.ls6_c02035{letter-spacing:0.242352px;}
.lsb_c02035{letter-spacing:0.508464px;}
.ls12_c02035{letter-spacing:0.514080px;}
.lsf_c02035{letter-spacing:0.536976px;}
.lsa_c02035{letter-spacing:0.579744px;}
.ls11_c02035{letter-spacing:0.594000px;}
.ls7_c02035{letter-spacing:0.598752px;}
.ls2_c02035{letter-spacing:0.613008px;}
.lsd_c02035{letter-spacing:0.651024px;}
.ls0_c02035{letter-spacing:0.717552px;}
.sc__c02035{text-shadow:none;}
.sc0_c02035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02035{-webkit-text-stroke:0px transparent;}
.sc0_c02035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02035{word-spacing:-15.126048px;}
.ws9_c02035{word-spacing:-12.474000px;}
.wsd_c02035{word-spacing:-12.459744px;}
.ws8_c02035{word-spacing:-12.416976px;}
.ws2_c02035{word-spacing:-12.122352px;}
.wsc_c02035{word-spacing:-11.266992px;}
.ws17_c02035{word-spacing:-2.159136px;}
.ws12_c02035{word-spacing:-1.078704px;}
.ws14_c02035{word-spacing:-1.012176px;}
.wse_c02035{word-spacing:-0.974160px;}
.ws10_c02035{word-spacing:-0.118800px;}
.ws11_c02035{word-spacing:-0.104544px;}
.ws15_c02035{word-spacing:-0.099792px;}
.ws16_c02035{word-spacing:-0.085536px;}
.wsf_c02035{word-spacing:0.000000px;}
.ws13_c02035{word-spacing:0.066528px;}
.wsa_c02035{word-spacing:33.300288px;}
.ws7_c02035{word-spacing:36.143712px;}
.ws5_c02035{word-spacing:36.742464px;}
.ws1_c02035{word-spacing:37.759392px;}
.ws0_c02035{word-spacing:38.020752px;}
.ws3_c02035{word-spacing:39.218256px;}
.ws4_c02035{word-spacing:39.902544px;}
.ws6_c02035{word-spacing:42.026688px;}
._0_c02035{margin-left:-1.948320px;}
._2_c02035{width:1.482624px;}
._4_c02035{width:3.430944px;}
._5_c02035{width:14.761440px;}
._1_c02035{width:50.252400px;}
._3_c02035{width:51.530688px;}
.fc0_c02035{color:rgb(0,0,0);}
.fs0_c02035{font-size:47.520000px;}
.fs1_c02035{font-size:60.480000px;}
.y0_c02035{bottom:0.000000px;}
.y19_c02035{bottom:146.998362px;}
.y1b_c02035{bottom:186.600234px;}
.y1a_c02035{bottom:196.320450px;}
.y18_c02035{bottom:275.878542px;}
.y17_c02035{bottom:356.878758px;}
.y15_c02035{bottom:406.559730px;}
.y11_c02035{bottom:424.560306px;}
.y16_c02035{bottom:458.759262px;}
.y14_c02035{bottom:491.879514px;}
.y13_c02035{bottom:509.880090px;}
.y10_c02035{bottom:543.000342px;}
.y12_c02035{bottom:559.559874px;}
.yf_c02035{bottom:577.560450px;}
.y1c_c02035{bottom:614.280450px;}
.yb_c02035{bottom:667.558326px;}
.yd_c02035{bottom:707.160234px;}
.yc_c02035{bottom:716.880450px;}
.ya_c02035{bottom:796.438506px;}
.y9_c02035{bottom:877.438722px;}
.y7_c02035{bottom:926.759730px;}
.y3_c02035{bottom:944.760306px;}
.y8_c02035{bottom:979.319226px;}
.y6_c02035{bottom:1012.439478px;}
.y5_c02035{bottom:1030.440054px;}
.y2_c02035{bottom:1063.560306px;}
.y4_c02035{bottom:1079.759874px;}
.y1_c02035{bottom:1097.760450px;}
.ye_c02035{bottom:1134.840450px;}
.h3_c02035{height:32.530781px;}
.h1_c02035{height:41.696016px;}
.h2_c02035{height:41.812031px;}
.h4_c02035{height:54.654737px;}
.h0_c02035{height:1263.000000px;}
.w1_c02035{width:892.500000px;}
.w0_c02035{width:892.830000px;}
.x0_c02035{left:0.000000px;}
.xd_c02035{left:117.000000px;}
.x8_c02035{left:440.999856px;}
.x4_c02035{left:445.680576px;}
.xb_c02035{left:451.080000px;}
.x7_c02035{left:455.399604px;}
.x5_c02035{left:461.880144px;}
.x1_c02035{left:463.320000px;}
.xa_c02035{left:483.480360px;}
.x9_c02035{left:492.119496px;}
.x6_c02035{left:493.200576px;}
.xc_c02035{left:506.880360px;}
.x3_c02035{left:511.919892px;}
.x2_c02035{left:526.679604px;}
@media print{
.v0_c02035{vertical-align:0.000000pt;}
.v1_c02035{vertical-align:1.279488pt;}
.ls14_c02035{letter-spacing:-0.544896pt;}
.ls9_c02035{letter-spacing:-0.511104pt;}
.lsc_c02035{letter-spacing:-0.380160pt;}
.ls10_c02035{letter-spacing:-0.244992pt;}
.lse_c02035{letter-spacing:-0.232320pt;}
.ls8_c02035{letter-spacing:-0.228096pt;}
.ls5_c02035{letter-spacing:-0.215424pt;}
.ls3_c02035{letter-spacing:-0.105600pt;}
.ls13_c02035{letter-spacing:0.000000pt;}
.ls1_c02035{letter-spacing:0.005376pt;}
.ls4_c02035{letter-spacing:0.114048pt;}
.ls6_c02035{letter-spacing:0.215424pt;}
.lsb_c02035{letter-spacing:0.451968pt;}
.ls12_c02035{letter-spacing:0.456960pt;}
.lsf_c02035{letter-spacing:0.477312pt;}
.lsa_c02035{letter-spacing:0.515328pt;}
.ls11_c02035{letter-spacing:0.528000pt;}
.ls7_c02035{letter-spacing:0.532224pt;}
.ls2_c02035{letter-spacing:0.544896pt;}
.lsd_c02035{letter-spacing:0.578688pt;}
.ls0_c02035{letter-spacing:0.637824pt;}
.wsb_c02035{word-spacing:-13.445376pt;}
.ws9_c02035{word-spacing:-11.088000pt;}
.wsd_c02035{word-spacing:-11.075328pt;}
.ws8_c02035{word-spacing:-11.037312pt;}
.ws2_c02035{word-spacing:-10.775424pt;}
.wsc_c02035{word-spacing:-10.015104pt;}
.ws17_c02035{word-spacing:-1.919232pt;}
.ws12_c02035{word-spacing:-0.958848pt;}
.ws14_c02035{word-spacing:-0.899712pt;}
.wse_c02035{word-spacing:-0.865920pt;}
.ws10_c02035{word-spacing:-0.105600pt;}
.ws11_c02035{word-spacing:-0.092928pt;}
.ws15_c02035{word-spacing:-0.088704pt;}
.ws16_c02035{word-spacing:-0.076032pt;}
.wsf_c02035{word-spacing:0.000000pt;}
.ws13_c02035{word-spacing:0.059136pt;}
.wsa_c02035{word-spacing:29.600256pt;}
.ws7_c02035{word-spacing:32.127744pt;}
.ws5_c02035{word-spacing:32.659968pt;}
.ws1_c02035{word-spacing:33.563904pt;}
.ws0_c02035{word-spacing:33.796224pt;}
.ws3_c02035{word-spacing:34.860672pt;}
.ws4_c02035{word-spacing:35.468928pt;}
.ws6_c02035{word-spacing:37.357056pt;}
._0_c02035{margin-left:-1.731840pt;}
._2_c02035{width:1.317888pt;}
._4_c02035{width:3.049728pt;}
._5_c02035{width:13.121280pt;}
._1_c02035{width:44.668800pt;}
._3_c02035{width:45.805056pt;}
.fs0_c02035{font-size:42.240000pt;}
.fs1_c02035{font-size:53.760000pt;}
.y0_c02035{bottom:0.000000pt;}
.y19_c02035{bottom:130.665211pt;}
.y1b_c02035{bottom:165.866875pt;}
.y1a_c02035{bottom:174.507067pt;}
.y18_c02035{bottom:245.225371pt;}
.y17_c02035{bottom:317.225563pt;}
.y15_c02035{bottom:361.386427pt;}
.y11_c02035{bottom:377.386939pt;}
.y16_c02035{bottom:407.786011pt;}
.y14_c02035{bottom:437.226235pt;}
.y13_c02035{bottom:453.226747pt;}
.y10_c02035{bottom:482.666971pt;}
.y12_c02035{bottom:497.386555pt;}
.yf_c02035{bottom:513.387067pt;}
.y1c_c02035{bottom:546.027067pt;}
.yb_c02035{bottom:593.385179pt;}
.yd_c02035{bottom:628.586875pt;}
.yc_c02035{bottom:637.227067pt;}
.ya_c02035{bottom:707.945339pt;}
.y9_c02035{bottom:779.945531pt;}
.y7_c02035{bottom:823.786427pt;}
.y3_c02035{bottom:839.786939pt;}
.y8_c02035{bottom:870.505979pt;}
.y6_c02035{bottom:899.946203pt;}
.y5_c02035{bottom:915.946715pt;}
.y2_c02035{bottom:945.386939pt;}
.y4_c02035{bottom:959.786555pt;}
.y1_c02035{bottom:975.787067pt;}
.ye_c02035{bottom:1008.747067pt;}
.h3_c02035{height:28.916250pt;}
.h1_c02035{height:37.063125pt;}
.h2_c02035{height:37.166250pt;}
.h4_c02035{height:48.581988pt;}
.h0_c02035{height:1122.666667pt;}
.w1_c02035{width:793.333333pt;}
.w0_c02035{width:793.626667pt;}
.x0_c02035{left:0.000000pt;}
.xd_c02035{left:104.000000pt;}
.x8_c02035{left:391.999872pt;}
.x4_c02035{left:396.160512pt;}
.xb_c02035{left:400.960000pt;}
.x7_c02035{left:404.799648pt;}
.x5_c02035{left:410.560128pt;}
.x1_c02035{left:411.840000pt;}
.xa_c02035{left:429.760320pt;}
.x9_c02035{left:437.439552pt;}
.x6_c02035{left:438.400512pt;}
.xc_c02035{left:450.560320pt;}
.x3_c02035{left:455.039904pt;}
.x2_c02035{left:468.159648pt;}
}





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

.ir_c02036:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02036;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02036{font-family:ff1_c02036;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02036;src:url('chunks/assets/font_87ad48bfa011ca7076fb4b89.woff2')format("woff");}.ff2_c02036{font-family:ff2_c02036;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02036;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02036{font-family:ff3_c02036;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02036{vertical-align:0.000000px;}
.v1_c02036{vertical-align:1.439424px;}
.ls9_c02036{letter-spacing:-0.755568px;}
.lsa_c02036{letter-spacing:-0.574992px;}
.lsd_c02036{letter-spacing:-0.427680px;}
.ls11_c02036{letter-spacing:-0.275616px;}
.lsf_c02036{letter-spacing:-0.261360px;}
.ls6_c02036{letter-spacing:-0.242352px;}
.ls4_c02036{letter-spacing:-0.118800px;}
.ls14_c02036{letter-spacing:0.000000px;}
.ls1_c02036{letter-spacing:0.006048px;}
.ls5_c02036{letter-spacing:0.128304px;}
.ls7_c02036{letter-spacing:0.242352px;}
.lsc_c02036{letter-spacing:0.508464px;}
.ls13_c02036{letter-spacing:0.514080px;}
.ls10_c02036{letter-spacing:0.536976px;}
.lsb_c02036{letter-spacing:0.579744px;}
.ls12_c02036{letter-spacing:0.594000px;}
.ls8_c02036{letter-spacing:0.598752px;}
.ls2_c02036{letter-spacing:0.613008px;}
.lse_c02036{letter-spacing:0.651024px;}
.ls3_c02036{letter-spacing:0.717552px;}
.ls0_c02036{letter-spacing:0.722304px;}
.sc__c02036{text-shadow:none;}
.sc0_c02036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02036{-webkit-text-stroke:0px transparent;}
.sc0_c02036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02036{word-spacing:-15.126048px;}
.wsa_c02036{word-spacing:-12.474000px;}
.ws9_c02036{word-spacing:-12.416976px;}
.ws2_c02036{word-spacing:-12.122352px;}
.ws4_c02036{word-spacing:-11.124432px;}
.ws15_c02036{word-spacing:-2.159136px;}
.ws10_c02036{word-spacing:-1.083456px;}
.ws12_c02036{word-spacing:-1.012176px;}
.wsd_c02036{word-spacing:-0.974160px;}
.wsf_c02036{word-spacing:-0.118800px;}
.ws13_c02036{word-spacing:-0.099792px;}
.ws14_c02036{word-spacing:-0.085536px;}
.wse_c02036{word-spacing:0.000000px;}
.ws11_c02036{word-spacing:0.066528px;}
.wsb_c02036{word-spacing:33.300288px;}
.ws8_c02036{word-spacing:36.143712px;}
.ws6_c02036{word-spacing:36.742464px;}
.ws1_c02036{word-spacing:37.759392px;}
.ws0_c02036{word-spacing:38.020752px;}
.ws3_c02036{word-spacing:39.218256px;}
.ws5_c02036{word-spacing:39.902544px;}
.ws7_c02036{word-spacing:42.026688px;}
._0_c02036{margin-left:-1.948320px;}
._2_c02036{width:1.482624px;}
._4_c02036{width:3.369168px;}
._5_c02036{width:14.761440px;}
._1_c02036{width:50.252400px;}
._3_c02036{width:51.530688px;}
.fc0_c02036{color:rgb(0,0,0);}
.fs0_c02036{font-size:47.520000px;}
.fs1_c02036{font-size:60.480000px;}
.y0_c02036{bottom:0.000000px;}
.y19_c02036{bottom:146.998362px;}
.y1b_c02036{bottom:186.600234px;}
.y1a_c02036{bottom:196.320450px;}
.y18_c02036{bottom:275.878542px;}
.y17_c02036{bottom:356.878758px;}
.y15_c02036{bottom:406.559730px;}
.y11_c02036{bottom:424.560306px;}
.y16_c02036{bottom:458.759262px;}
.y14_c02036{bottom:491.879514px;}
.y13_c02036{bottom:509.880090px;}
.y10_c02036{bottom:543.000342px;}
.y12_c02036{bottom:559.559874px;}
.yf_c02036{bottom:577.560450px;}
.y1c_c02036{bottom:614.280450px;}
.yb_c02036{bottom:667.558326px;}
.yd_c02036{bottom:707.160234px;}
.yc_c02036{bottom:716.880450px;}
.ya_c02036{bottom:796.438506px;}
.y9_c02036{bottom:877.438722px;}
.y7_c02036{bottom:926.759730px;}
.y3_c02036{bottom:944.760306px;}
.y8_c02036{bottom:979.319226px;}
.y6_c02036{bottom:1012.439478px;}
.y5_c02036{bottom:1030.440054px;}
.y2_c02036{bottom:1063.560306px;}
.y4_c02036{bottom:1079.759874px;}
.y1_c02036{bottom:1097.760450px;}
.ye_c02036{bottom:1134.840450px;}
.h3_c02036{height:32.530781px;}
.h1_c02036{height:41.696016px;}
.h2_c02036{height:41.812031px;}
.h4_c02036{height:54.654737px;}
.h0_c02036{height:1263.000000px;}
.w1_c02036{width:892.500000px;}
.w0_c02036{width:892.830000px;}
.x0_c02036{left:0.000000px;}
.xd_c02036{left:117.000000px;}
.x8_c02036{left:440.999856px;}
.x4_c02036{left:445.680576px;}
.xb_c02036{left:451.080000px;}
.x7_c02036{left:455.399604px;}
.x5_c02036{left:461.880144px;}
.x1_c02036{left:463.320000px;}
.xa_c02036{left:483.480360px;}
.x9_c02036{left:492.119496px;}
.x6_c02036{left:493.200576px;}
.xc_c02036{left:506.880360px;}
.x3_c02036{left:511.919892px;}
.x2_c02036{left:526.679604px;}
@media print{
.v0_c02036{vertical-align:0.000000pt;}
.v1_c02036{vertical-align:1.279488pt;}
.ls9_c02036{letter-spacing:-0.671616pt;}
.lsa_c02036{letter-spacing:-0.511104pt;}
.lsd_c02036{letter-spacing:-0.380160pt;}
.ls11_c02036{letter-spacing:-0.244992pt;}
.lsf_c02036{letter-spacing:-0.232320pt;}
.ls6_c02036{letter-spacing:-0.215424pt;}
.ls4_c02036{letter-spacing:-0.105600pt;}
.ls14_c02036{letter-spacing:0.000000pt;}
.ls1_c02036{letter-spacing:0.005376pt;}
.ls5_c02036{letter-spacing:0.114048pt;}
.ls7_c02036{letter-spacing:0.215424pt;}
.lsc_c02036{letter-spacing:0.451968pt;}
.ls13_c02036{letter-spacing:0.456960pt;}
.ls10_c02036{letter-spacing:0.477312pt;}
.lsb_c02036{letter-spacing:0.515328pt;}
.ls12_c02036{letter-spacing:0.528000pt;}
.ls8_c02036{letter-spacing:0.532224pt;}
.ls2_c02036{letter-spacing:0.544896pt;}
.lse_c02036{letter-spacing:0.578688pt;}
.ls3_c02036{letter-spacing:0.637824pt;}
.ls0_c02036{letter-spacing:0.642048pt;}
.wsc_c02036{word-spacing:-13.445376pt;}
.wsa_c02036{word-spacing:-11.088000pt;}
.ws9_c02036{word-spacing:-11.037312pt;}
.ws2_c02036{word-spacing:-10.775424pt;}
.ws4_c02036{word-spacing:-9.888384pt;}
.ws15_c02036{word-spacing:-1.919232pt;}
.ws10_c02036{word-spacing:-0.963072pt;}
.ws12_c02036{word-spacing:-0.899712pt;}
.wsd_c02036{word-spacing:-0.865920pt;}
.wsf_c02036{word-spacing:-0.105600pt;}
.ws13_c02036{word-spacing:-0.088704pt;}
.ws14_c02036{word-spacing:-0.076032pt;}
.wse_c02036{word-spacing:0.000000pt;}
.ws11_c02036{word-spacing:0.059136pt;}
.wsb_c02036{word-spacing:29.600256pt;}
.ws8_c02036{word-spacing:32.127744pt;}
.ws6_c02036{word-spacing:32.659968pt;}
.ws1_c02036{word-spacing:33.563904pt;}
.ws0_c02036{word-spacing:33.796224pt;}
.ws3_c02036{word-spacing:34.860672pt;}
.ws5_c02036{word-spacing:35.468928pt;}
.ws7_c02036{word-spacing:37.357056pt;}
._0_c02036{margin-left:-1.731840pt;}
._2_c02036{width:1.317888pt;}
._4_c02036{width:2.994816pt;}
._5_c02036{width:13.121280pt;}
._1_c02036{width:44.668800pt;}
._3_c02036{width:45.805056pt;}
.fs0_c02036{font-size:42.240000pt;}
.fs1_c02036{font-size:53.760000pt;}
.y0_c02036{bottom:0.000000pt;}
.y19_c02036{bottom:130.665211pt;}
.y1b_c02036{bottom:165.866875pt;}
.y1a_c02036{bottom:174.507067pt;}
.y18_c02036{bottom:245.225371pt;}
.y17_c02036{bottom:317.225563pt;}
.y15_c02036{bottom:361.386427pt;}
.y11_c02036{bottom:377.386939pt;}
.y16_c02036{bottom:407.786011pt;}
.y14_c02036{bottom:437.226235pt;}
.y13_c02036{bottom:453.226747pt;}
.y10_c02036{bottom:482.666971pt;}
.y12_c02036{bottom:497.386555pt;}
.yf_c02036{bottom:513.387067pt;}
.y1c_c02036{bottom:546.027067pt;}
.yb_c02036{bottom:593.385179pt;}
.yd_c02036{bottom:628.586875pt;}
.yc_c02036{bottom:637.227067pt;}
.ya_c02036{bottom:707.945339pt;}
.y9_c02036{bottom:779.945531pt;}
.y7_c02036{bottom:823.786427pt;}
.y3_c02036{bottom:839.786939pt;}
.y8_c02036{bottom:870.505979pt;}
.y6_c02036{bottom:899.946203pt;}
.y5_c02036{bottom:915.946715pt;}
.y2_c02036{bottom:945.386939pt;}
.y4_c02036{bottom:959.786555pt;}
.y1_c02036{bottom:975.787067pt;}
.ye_c02036{bottom:1008.747067pt;}
.h3_c02036{height:28.916250pt;}
.h1_c02036{height:37.063125pt;}
.h2_c02036{height:37.166250pt;}
.h4_c02036{height:48.581988pt;}
.h0_c02036{height:1122.666667pt;}
.w1_c02036{width:793.333333pt;}
.w0_c02036{width:793.626667pt;}
.x0_c02036{left:0.000000pt;}
.xd_c02036{left:104.000000pt;}
.x8_c02036{left:391.999872pt;}
.x4_c02036{left:396.160512pt;}
.xb_c02036{left:400.960000pt;}
.x7_c02036{left:404.799648pt;}
.x5_c02036{left:410.560128pt;}
.x1_c02036{left:411.840000pt;}
.xa_c02036{left:429.760320pt;}
.x9_c02036{left:437.439552pt;}
.x6_c02036{left:438.400512pt;}
.xc_c02036{left:450.560320pt;}
.x3_c02036{left:455.039904pt;}
.x2_c02036{left:468.159648pt;}
}





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

.ir_c02037:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02037;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02037{font-family:ff1_c02037;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02037;src:url('chunks/assets/font_e83cc7048257f385ff029771.woff2')format("woff");}.ff2_c02037{font-family:ff2_c02037;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02037;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02037{font-family:ff3_c02037;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02037{vertical-align:0.000000px;}
.v1_c02037{vertical-align:1.439424px;}
.lsa_c02037{letter-spacing:-0.755568px;}
.lsb_c02037{letter-spacing:-0.574992px;}
.lse_c02037{letter-spacing:-0.427680px;}
.ls11_c02037{letter-spacing:-0.275616px;}
.lsf_c02037{letter-spacing:-0.261360px;}
.ls7_c02037{letter-spacing:-0.242352px;}
.ls5_c02037{letter-spacing:-0.118800px;}
.ls14_c02037{letter-spacing:0.000000px;}
.ls1_c02037{letter-spacing:0.006048px;}
.ls6_c02037{letter-spacing:0.128304px;}
.ls8_c02037{letter-spacing:0.242352px;}
.lsd_c02037{letter-spacing:0.508464px;}
.ls13_c02037{letter-spacing:0.514080px;}
.ls10_c02037{letter-spacing:0.536976px;}
.lsc_c02037{letter-spacing:0.579744px;}
.ls12_c02037{letter-spacing:0.594000px;}
.ls9_c02037{letter-spacing:0.598752px;}
.ls4_c02037{letter-spacing:0.613008px;}
.ls2_c02037{letter-spacing:0.651024px;}
.ls0_c02037{letter-spacing:0.717552px;}
.ls3_c02037{letter-spacing:0.722304px;}
.sc__c02037{text-shadow:none;}
.sc0_c02037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02037{-webkit-text-stroke:0px transparent;}
.sc0_c02037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02037{word-spacing:-15.126048px;}
.wsa_c02037{word-spacing:-12.474000px;}
.ws9_c02037{word-spacing:-12.416976px;}
.ws2_c02037{word-spacing:-12.122352px;}
.ws4_c02037{word-spacing:-11.124432px;}
.ws15_c02037{word-spacing:-2.159136px;}
.ws16_c02037{word-spacing:-1.083456px;}
.ws10_c02037{word-spacing:-1.078704px;}
.ws12_c02037{word-spacing:-1.012176px;}
.wsd_c02037{word-spacing:-0.974160px;}
.wsf_c02037{word-spacing:-0.118800px;}
.ws13_c02037{word-spacing:-0.099792px;}
.ws14_c02037{word-spacing:-0.085536px;}
.wse_c02037{word-spacing:0.000000px;}
.ws11_c02037{word-spacing:0.066528px;}
.wsb_c02037{word-spacing:33.300288px;}
.ws8_c02037{word-spacing:36.143712px;}
.ws6_c02037{word-spacing:36.742464px;}
.ws1_c02037{word-spacing:37.759392px;}
.ws0_c02037{word-spacing:38.020752px;}
.ws3_c02037{word-spacing:39.218256px;}
.ws5_c02037{word-spacing:39.902544px;}
.ws7_c02037{word-spacing:42.026688px;}
._0_c02037{margin-left:-1.948320px;}
._2_c02037{width:1.482624px;}
._4_c02037{width:3.369168px;}
._5_c02037{width:14.761440px;}
._1_c02037{width:50.252400px;}
._3_c02037{width:51.530688px;}
.fc0_c02037{color:rgb(0,0,0);}
.fs0_c02037{font-size:47.520000px;}
.fs1_c02037{font-size:60.480000px;}
.y0_c02037{bottom:0.000000px;}
.y19_c02037{bottom:146.998362px;}
.y1b_c02037{bottom:186.600234px;}
.y1a_c02037{bottom:196.320450px;}
.y18_c02037{bottom:275.878542px;}
.y17_c02037{bottom:356.878758px;}
.y15_c02037{bottom:406.559730px;}
.y11_c02037{bottom:424.560306px;}
.y16_c02037{bottom:458.759262px;}
.y14_c02037{bottom:491.879514px;}
.y13_c02037{bottom:509.880090px;}
.y10_c02037{bottom:543.000342px;}
.y12_c02037{bottom:559.559874px;}
.yf_c02037{bottom:577.560450px;}
.y1c_c02037{bottom:614.280450px;}
.yb_c02037{bottom:667.558326px;}
.yd_c02037{bottom:707.160234px;}
.yc_c02037{bottom:716.880450px;}
.ya_c02037{bottom:796.438506px;}
.y9_c02037{bottom:877.438722px;}
.y7_c02037{bottom:926.759730px;}
.y3_c02037{bottom:944.760306px;}
.y8_c02037{bottom:979.319226px;}
.y6_c02037{bottom:1012.439478px;}
.y5_c02037{bottom:1030.440054px;}
.y2_c02037{bottom:1063.560306px;}
.y4_c02037{bottom:1079.759874px;}
.y1_c02037{bottom:1097.760450px;}
.ye_c02037{bottom:1134.840450px;}
.h3_c02037{height:32.530781px;}
.h1_c02037{height:41.696016px;}
.h2_c02037{height:41.812031px;}
.h4_c02037{height:54.654737px;}
.h0_c02037{height:1263.000000px;}
.w1_c02037{width:892.500000px;}
.w0_c02037{width:892.830000px;}
.x0_c02037{left:0.000000px;}
.xd_c02037{left:117.000000px;}
.x8_c02037{left:440.999856px;}
.x4_c02037{left:445.680576px;}
.xb_c02037{left:451.080000px;}
.x7_c02037{left:455.399604px;}
.x5_c02037{left:461.880144px;}
.x1_c02037{left:463.320000px;}
.xa_c02037{left:483.480360px;}
.x9_c02037{left:492.119496px;}
.x6_c02037{left:493.200576px;}
.xc_c02037{left:506.880360px;}
.x3_c02037{left:511.919892px;}
.x2_c02037{left:526.679604px;}
@media print{
.v0_c02037{vertical-align:0.000000pt;}
.v1_c02037{vertical-align:1.279488pt;}
.lsa_c02037{letter-spacing:-0.671616pt;}
.lsb_c02037{letter-spacing:-0.511104pt;}
.lse_c02037{letter-spacing:-0.380160pt;}
.ls11_c02037{letter-spacing:-0.244992pt;}
.lsf_c02037{letter-spacing:-0.232320pt;}
.ls7_c02037{letter-spacing:-0.215424pt;}
.ls5_c02037{letter-spacing:-0.105600pt;}
.ls14_c02037{letter-spacing:0.000000pt;}
.ls1_c02037{letter-spacing:0.005376pt;}
.ls6_c02037{letter-spacing:0.114048pt;}
.ls8_c02037{letter-spacing:0.215424pt;}
.lsd_c02037{letter-spacing:0.451968pt;}
.ls13_c02037{letter-spacing:0.456960pt;}
.ls10_c02037{letter-spacing:0.477312pt;}
.lsc_c02037{letter-spacing:0.515328pt;}
.ls12_c02037{letter-spacing:0.528000pt;}
.ls9_c02037{letter-spacing:0.532224pt;}
.ls4_c02037{letter-spacing:0.544896pt;}
.ls2_c02037{letter-spacing:0.578688pt;}
.ls0_c02037{letter-spacing:0.637824pt;}
.ls3_c02037{letter-spacing:0.642048pt;}
.wsc_c02037{word-spacing:-13.445376pt;}
.wsa_c02037{word-spacing:-11.088000pt;}
.ws9_c02037{word-spacing:-11.037312pt;}
.ws2_c02037{word-spacing:-10.775424pt;}
.ws4_c02037{word-spacing:-9.888384pt;}
.ws15_c02037{word-spacing:-1.919232pt;}
.ws16_c02037{word-spacing:-0.963072pt;}
.ws10_c02037{word-spacing:-0.958848pt;}
.ws12_c02037{word-spacing:-0.899712pt;}
.wsd_c02037{word-spacing:-0.865920pt;}
.wsf_c02037{word-spacing:-0.105600pt;}
.ws13_c02037{word-spacing:-0.088704pt;}
.ws14_c02037{word-spacing:-0.076032pt;}
.wse_c02037{word-spacing:0.000000pt;}
.ws11_c02037{word-spacing:0.059136pt;}
.wsb_c02037{word-spacing:29.600256pt;}
.ws8_c02037{word-spacing:32.127744pt;}
.ws6_c02037{word-spacing:32.659968pt;}
.ws1_c02037{word-spacing:33.563904pt;}
.ws0_c02037{word-spacing:33.796224pt;}
.ws3_c02037{word-spacing:34.860672pt;}
.ws5_c02037{word-spacing:35.468928pt;}
.ws7_c02037{word-spacing:37.357056pt;}
._0_c02037{margin-left:-1.731840pt;}
._2_c02037{width:1.317888pt;}
._4_c02037{width:2.994816pt;}
._5_c02037{width:13.121280pt;}
._1_c02037{width:44.668800pt;}
._3_c02037{width:45.805056pt;}
.fs0_c02037{font-size:42.240000pt;}
.fs1_c02037{font-size:53.760000pt;}
.y0_c02037{bottom:0.000000pt;}
.y19_c02037{bottom:130.665211pt;}
.y1b_c02037{bottom:165.866875pt;}
.y1a_c02037{bottom:174.507067pt;}
.y18_c02037{bottom:245.225371pt;}
.y17_c02037{bottom:317.225563pt;}
.y15_c02037{bottom:361.386427pt;}
.y11_c02037{bottom:377.386939pt;}
.y16_c02037{bottom:407.786011pt;}
.y14_c02037{bottom:437.226235pt;}
.y13_c02037{bottom:453.226747pt;}
.y10_c02037{bottom:482.666971pt;}
.y12_c02037{bottom:497.386555pt;}
.yf_c02037{bottom:513.387067pt;}
.y1c_c02037{bottom:546.027067pt;}
.yb_c02037{bottom:593.385179pt;}
.yd_c02037{bottom:628.586875pt;}
.yc_c02037{bottom:637.227067pt;}
.ya_c02037{bottom:707.945339pt;}
.y9_c02037{bottom:779.945531pt;}
.y7_c02037{bottom:823.786427pt;}
.y3_c02037{bottom:839.786939pt;}
.y8_c02037{bottom:870.505979pt;}
.y6_c02037{bottom:899.946203pt;}
.y5_c02037{bottom:915.946715pt;}
.y2_c02037{bottom:945.386939pt;}
.y4_c02037{bottom:959.786555pt;}
.y1_c02037{bottom:975.787067pt;}
.ye_c02037{bottom:1008.747067pt;}
.h3_c02037{height:28.916250pt;}
.h1_c02037{height:37.063125pt;}
.h2_c02037{height:37.166250pt;}
.h4_c02037{height:48.581988pt;}
.h0_c02037{height:1122.666667pt;}
.w1_c02037{width:793.333333pt;}
.w0_c02037{width:793.626667pt;}
.x0_c02037{left:0.000000pt;}
.xd_c02037{left:104.000000pt;}
.x8_c02037{left:391.999872pt;}
.x4_c02037{left:396.160512pt;}
.xb_c02037{left:400.960000pt;}
.x7_c02037{left:404.799648pt;}
.x5_c02037{left:410.560128pt;}
.x1_c02037{left:411.840000pt;}
.xa_c02037{left:429.760320pt;}
.x9_c02037{left:437.439552pt;}
.x6_c02037{left:438.400512pt;}
.xc_c02037{left:450.560320pt;}
.x3_c02037{left:455.039904pt;}
.x2_c02037{left:468.159648pt;}
}





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

.ir_c02038:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02038{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02038;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02038{font-family:ff1_c02038;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02038;src:url('chunks/assets/font_e8e2c4f8f0096b5bfbd67897.woff2')format("woff");}.ff2_c02038{font-family:ff2_c02038;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02038;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02038{font-family:ff3_c02038;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02038{vertical-align:0.000000px;}
.v1_c02038{vertical-align:1.439424px;}
.ls8_c02038{letter-spacing:-0.755568px;}
.ls9_c02038{letter-spacing:-0.574992px;}
.lsc_c02038{letter-spacing:-0.427680px;}
.ls10_c02038{letter-spacing:-0.275616px;}
.lse_c02038{letter-spacing:-0.261360px;}
.ls5_c02038{letter-spacing:-0.242352px;}
.ls3_c02038{letter-spacing:-0.118800px;}
.ls13_c02038{letter-spacing:0.000000px;}
.ls1_c02038{letter-spacing:0.006048px;}
.ls4_c02038{letter-spacing:0.128304px;}
.ls6_c02038{letter-spacing:0.242352px;}
.lsb_c02038{letter-spacing:0.508464px;}
.ls12_c02038{letter-spacing:0.514080px;}
.lsf_c02038{letter-spacing:0.536976px;}
.lsa_c02038{letter-spacing:0.579744px;}
.ls11_c02038{letter-spacing:0.594000px;}
.ls7_c02038{letter-spacing:0.598752px;}
.ls2_c02038{letter-spacing:0.613008px;}
.lsd_c02038{letter-spacing:0.651024px;}
.ls0_c02038{letter-spacing:0.717552px;}
.sc__c02038{text-shadow:none;}
.sc0_c02038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02038{-webkit-text-stroke:0px transparent;}
.sc0_c02038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02038{word-spacing:-15.126048px;}
.wsa_c02038{word-spacing:-12.474000px;}
.ws9_c02038{word-spacing:-12.416976px;}
.ws2_c02038{word-spacing:-12.122352px;}
.ws4_c02038{word-spacing:-11.124432px;}
.ws15_c02038{word-spacing:-2.159136px;}
.ws10_c02038{word-spacing:-1.078704px;}
.ws12_c02038{word-spacing:-1.012176px;}
.wsd_c02038{word-spacing:-0.974160px;}
.wsf_c02038{word-spacing:-0.118800px;}
.ws13_c02038{word-spacing:-0.099792px;}
.ws14_c02038{word-spacing:-0.085536px;}
.wse_c02038{word-spacing:0.000000px;}
.ws11_c02038{word-spacing:0.066528px;}
.wsb_c02038{word-spacing:33.300288px;}
.ws8_c02038{word-spacing:36.143712px;}
.ws6_c02038{word-spacing:36.742464px;}
.ws1_c02038{word-spacing:37.759392px;}
.ws0_c02038{word-spacing:38.020752px;}
.ws3_c02038{word-spacing:39.218256px;}
.ws5_c02038{word-spacing:39.902544px;}
.ws7_c02038{word-spacing:42.026688px;}
._0_c02038{margin-left:-1.948320px;}
._2_c02038{width:1.482624px;}
._4_c02038{width:3.369168px;}
._5_c02038{width:14.761440px;}
._1_c02038{width:50.252400px;}
._3_c02038{width:51.530688px;}
.fc0_c02038{color:rgb(0,0,0);}
.fs0_c02038{font-size:47.520000px;}
.fs1_c02038{font-size:60.480000px;}
.y0_c02038{bottom:0.000000px;}
.y19_c02038{bottom:146.998362px;}
.y1b_c02038{bottom:186.600234px;}
.y1a_c02038{bottom:196.320450px;}
.y18_c02038{bottom:275.878542px;}
.y17_c02038{bottom:356.878758px;}
.y15_c02038{bottom:406.559730px;}
.y11_c02038{bottom:424.560306px;}
.y16_c02038{bottom:458.759262px;}
.y14_c02038{bottom:491.879514px;}
.y13_c02038{bottom:509.880090px;}
.y10_c02038{bottom:543.000342px;}
.y12_c02038{bottom:559.559874px;}
.yf_c02038{bottom:577.560450px;}
.y1c_c02038{bottom:614.280450px;}
.yb_c02038{bottom:667.558326px;}
.yd_c02038{bottom:707.160234px;}
.yc_c02038{bottom:716.880450px;}
.ya_c02038{bottom:796.438506px;}
.y9_c02038{bottom:877.438722px;}
.y7_c02038{bottom:926.759730px;}
.y3_c02038{bottom:944.760306px;}
.y8_c02038{bottom:979.319226px;}
.y6_c02038{bottom:1012.439478px;}
.y5_c02038{bottom:1030.440054px;}
.y2_c02038{bottom:1063.560306px;}
.y4_c02038{bottom:1079.759874px;}
.y1_c02038{bottom:1097.760450px;}
.ye_c02038{bottom:1134.840450px;}
.h3_c02038{height:32.530781px;}
.h1_c02038{height:41.696016px;}
.h2_c02038{height:41.812031px;}
.h4_c02038{height:54.654737px;}
.h0_c02038{height:1263.000000px;}
.w1_c02038{width:892.500000px;}
.w0_c02038{width:892.830000px;}
.x0_c02038{left:0.000000px;}
.xd_c02038{left:117.000000px;}
.x8_c02038{left:440.999856px;}
.x4_c02038{left:445.680576px;}
.xb_c02038{left:451.080000px;}
.x7_c02038{left:455.399604px;}
.x5_c02038{left:461.880144px;}
.x1_c02038{left:463.320000px;}
.xa_c02038{left:483.480360px;}
.x9_c02038{left:492.119496px;}
.x6_c02038{left:493.200576px;}
.xc_c02038{left:506.880360px;}
.x3_c02038{left:511.919892px;}
.x2_c02038{left:526.679604px;}
@media print{
.v0_c02038{vertical-align:0.000000pt;}
.v1_c02038{vertical-align:1.279488pt;}
.ls8_c02038{letter-spacing:-0.671616pt;}
.ls9_c02038{letter-spacing:-0.511104pt;}
.lsc_c02038{letter-spacing:-0.380160pt;}
.ls10_c02038{letter-spacing:-0.244992pt;}
.lse_c02038{letter-spacing:-0.232320pt;}
.ls5_c02038{letter-spacing:-0.215424pt;}
.ls3_c02038{letter-spacing:-0.105600pt;}
.ls13_c02038{letter-spacing:0.000000pt;}
.ls1_c02038{letter-spacing:0.005376pt;}
.ls4_c02038{letter-spacing:0.114048pt;}
.ls6_c02038{letter-spacing:0.215424pt;}
.lsb_c02038{letter-spacing:0.451968pt;}
.ls12_c02038{letter-spacing:0.456960pt;}
.lsf_c02038{letter-spacing:0.477312pt;}
.lsa_c02038{letter-spacing:0.515328pt;}
.ls11_c02038{letter-spacing:0.528000pt;}
.ls7_c02038{letter-spacing:0.532224pt;}
.ls2_c02038{letter-spacing:0.544896pt;}
.lsd_c02038{letter-spacing:0.578688pt;}
.ls0_c02038{letter-spacing:0.637824pt;}
.wsc_c02038{word-spacing:-13.445376pt;}
.wsa_c02038{word-spacing:-11.088000pt;}
.ws9_c02038{word-spacing:-11.037312pt;}
.ws2_c02038{word-spacing:-10.775424pt;}
.ws4_c02038{word-spacing:-9.888384pt;}
.ws15_c02038{word-spacing:-1.919232pt;}
.ws10_c02038{word-spacing:-0.958848pt;}
.ws12_c02038{word-spacing:-0.899712pt;}
.wsd_c02038{word-spacing:-0.865920pt;}
.wsf_c02038{word-spacing:-0.105600pt;}
.ws13_c02038{word-spacing:-0.088704pt;}
.ws14_c02038{word-spacing:-0.076032pt;}
.wse_c02038{word-spacing:0.000000pt;}
.ws11_c02038{word-spacing:0.059136pt;}
.wsb_c02038{word-spacing:29.600256pt;}
.ws8_c02038{word-spacing:32.127744pt;}
.ws6_c02038{word-spacing:32.659968pt;}
.ws1_c02038{word-spacing:33.563904pt;}
.ws0_c02038{word-spacing:33.796224pt;}
.ws3_c02038{word-spacing:34.860672pt;}
.ws5_c02038{word-spacing:35.468928pt;}
.ws7_c02038{word-spacing:37.357056pt;}
._0_c02038{margin-left:-1.731840pt;}
._2_c02038{width:1.317888pt;}
._4_c02038{width:2.994816pt;}
._5_c02038{width:13.121280pt;}
._1_c02038{width:44.668800pt;}
._3_c02038{width:45.805056pt;}
.fs0_c02038{font-size:42.240000pt;}
.fs1_c02038{font-size:53.760000pt;}
.y0_c02038{bottom:0.000000pt;}
.y19_c02038{bottom:130.665211pt;}
.y1b_c02038{bottom:165.866875pt;}
.y1a_c02038{bottom:174.507067pt;}
.y18_c02038{bottom:245.225371pt;}
.y17_c02038{bottom:317.225563pt;}
.y15_c02038{bottom:361.386427pt;}
.y11_c02038{bottom:377.386939pt;}
.y16_c02038{bottom:407.786011pt;}
.y14_c02038{bottom:437.226235pt;}
.y13_c02038{bottom:453.226747pt;}
.y10_c02038{bottom:482.666971pt;}
.y12_c02038{bottom:497.386555pt;}
.yf_c02038{bottom:513.387067pt;}
.y1c_c02038{bottom:546.027067pt;}
.yb_c02038{bottom:593.385179pt;}
.yd_c02038{bottom:628.586875pt;}
.yc_c02038{bottom:637.227067pt;}
.ya_c02038{bottom:707.945339pt;}
.y9_c02038{bottom:779.945531pt;}
.y7_c02038{bottom:823.786427pt;}
.y3_c02038{bottom:839.786939pt;}
.y8_c02038{bottom:870.505979pt;}
.y6_c02038{bottom:899.946203pt;}
.y5_c02038{bottom:915.946715pt;}
.y2_c02038{bottom:945.386939pt;}
.y4_c02038{bottom:959.786555pt;}
.y1_c02038{bottom:975.787067pt;}
.ye_c02038{bottom:1008.747067pt;}
.h3_c02038{height:28.916250pt;}
.h1_c02038{height:37.063125pt;}
.h2_c02038{height:37.166250pt;}
.h4_c02038{height:48.581988pt;}
.h0_c02038{height:1122.666667pt;}
.w1_c02038{width:793.333333pt;}
.w0_c02038{width:793.626667pt;}
.x0_c02038{left:0.000000pt;}
.xd_c02038{left:104.000000pt;}
.x8_c02038{left:391.999872pt;}
.x4_c02038{left:396.160512pt;}
.xb_c02038{left:400.960000pt;}
.x7_c02038{left:404.799648pt;}
.x5_c02038{left:410.560128pt;}
.x1_c02038{left:411.840000pt;}
.xa_c02038{left:429.760320pt;}
.x9_c02038{left:437.439552pt;}
.x6_c02038{left:438.400512pt;}
.xc_c02038{left:450.560320pt;}
.x3_c02038{left:455.039904pt;}
.x2_c02038{left:468.159648pt;}
}





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

.ir_c02039:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02039;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02039{font-family:ff1_c02039;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02039;src:url('chunks/assets/font_95d467c514d831574226402c.woff2')format("woff");}.ff2_c02039{font-family:ff2_c02039;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02039;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02039{font-family:ff3_c02039;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02039{vertical-align:0.000000px;}
.v1_c02039{vertical-align:1.439424px;}
.ls8_c02039{letter-spacing:-0.755568px;}
.ls9_c02039{letter-spacing:-0.574992px;}
.lsc_c02039{letter-spacing:-0.427680px;}
.ls10_c02039{letter-spacing:-0.275616px;}
.lse_c02039{letter-spacing:-0.261360px;}
.ls5_c02039{letter-spacing:-0.242352px;}
.ls3_c02039{letter-spacing:-0.118800px;}
.ls13_c02039{letter-spacing:0.000000px;}
.ls1_c02039{letter-spacing:0.006048px;}
.ls4_c02039{letter-spacing:0.128304px;}
.ls6_c02039{letter-spacing:0.242352px;}
.lsb_c02039{letter-spacing:0.508464px;}
.ls12_c02039{letter-spacing:0.514080px;}
.lsf_c02039{letter-spacing:0.536976px;}
.lsa_c02039{letter-spacing:0.579744px;}
.ls11_c02039{letter-spacing:0.594000px;}
.ls7_c02039{letter-spacing:0.598752px;}
.ls2_c02039{letter-spacing:0.613008px;}
.lsd_c02039{letter-spacing:0.651024px;}
.ls0_c02039{letter-spacing:0.717552px;}
.sc__c02039{text-shadow:none;}
.sc0_c02039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02039{-webkit-text-stroke:0px transparent;}
.sc0_c02039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02039{word-spacing:-15.126048px;}
.wsa_c02039{word-spacing:-12.474000px;}
.ws9_c02039{word-spacing:-12.416976px;}
.ws2_c02039{word-spacing:-12.122352px;}
.ws4_c02039{word-spacing:-11.124432px;}
.ws15_c02039{word-spacing:-2.159136px;}
.ws10_c02039{word-spacing:-1.078704px;}
.ws12_c02039{word-spacing:-1.012176px;}
.wsd_c02039{word-spacing:-0.974160px;}
.wsf_c02039{word-spacing:-0.118800px;}
.ws13_c02039{word-spacing:-0.099792px;}
.ws14_c02039{word-spacing:-0.085536px;}
.wse_c02039{word-spacing:0.000000px;}
.ws11_c02039{word-spacing:0.066528px;}
.wsb_c02039{word-spacing:33.300288px;}
.ws8_c02039{word-spacing:36.143712px;}
.ws6_c02039{word-spacing:36.742464px;}
.ws1_c02039{word-spacing:37.759392px;}
.ws0_c02039{word-spacing:38.020752px;}
.ws3_c02039{word-spacing:39.218256px;}
.ws5_c02039{word-spacing:39.902544px;}
.ws7_c02039{word-spacing:42.026688px;}
._0_c02039{margin-left:-1.948320px;}
._2_c02039{width:1.482624px;}
._4_c02039{width:3.369168px;}
._5_c02039{width:14.761440px;}
._1_c02039{width:50.252400px;}
._3_c02039{width:51.530688px;}
.fc0_c02039{color:rgb(0,0,0);}
.fs0_c02039{font-size:47.520000px;}
.fs1_c02039{font-size:60.480000px;}
.y0_c02039{bottom:0.000000px;}
.y19_c02039{bottom:146.998362px;}
.y1b_c02039{bottom:186.600234px;}
.y1a_c02039{bottom:196.320450px;}
.y18_c02039{bottom:275.878542px;}
.y17_c02039{bottom:356.878758px;}
.y15_c02039{bottom:406.559730px;}
.y11_c02039{bottom:424.560306px;}
.y16_c02039{bottom:458.759262px;}
.y14_c02039{bottom:491.879514px;}
.y13_c02039{bottom:509.880090px;}
.y10_c02039{bottom:543.000342px;}
.y12_c02039{bottom:559.559874px;}
.yf_c02039{bottom:577.560450px;}
.y1c_c02039{bottom:614.280450px;}
.yb_c02039{bottom:667.558326px;}
.yd_c02039{bottom:707.160234px;}
.yc_c02039{bottom:716.880450px;}
.ya_c02039{bottom:796.438506px;}
.y9_c02039{bottom:877.438722px;}
.y7_c02039{bottom:926.759730px;}
.y3_c02039{bottom:944.760306px;}
.y8_c02039{bottom:979.319226px;}
.y6_c02039{bottom:1012.439478px;}
.y5_c02039{bottom:1030.440054px;}
.y2_c02039{bottom:1063.560306px;}
.y4_c02039{bottom:1079.759874px;}
.y1_c02039{bottom:1097.760450px;}
.ye_c02039{bottom:1134.840450px;}
.h3_c02039{height:32.530781px;}
.h1_c02039{height:41.696016px;}
.h2_c02039{height:41.812031px;}
.h4_c02039{height:54.654737px;}
.h0_c02039{height:1263.000000px;}
.w1_c02039{width:892.500000px;}
.w0_c02039{width:892.830000px;}
.x0_c02039{left:0.000000px;}
.xd_c02039{left:117.000000px;}
.x8_c02039{left:440.999856px;}
.x4_c02039{left:445.680576px;}
.xb_c02039{left:451.080000px;}
.x7_c02039{left:455.399604px;}
.x5_c02039{left:461.880144px;}
.x1_c02039{left:463.320000px;}
.xa_c02039{left:483.480360px;}
.x9_c02039{left:492.119496px;}
.x6_c02039{left:493.200576px;}
.xc_c02039{left:506.880360px;}
.x3_c02039{left:511.919892px;}
.x2_c02039{left:526.679604px;}
@media print{
.v0_c02039{vertical-align:0.000000pt;}
.v1_c02039{vertical-align:1.279488pt;}
.ls8_c02039{letter-spacing:-0.671616pt;}
.ls9_c02039{letter-spacing:-0.511104pt;}
.lsc_c02039{letter-spacing:-0.380160pt;}
.ls10_c02039{letter-spacing:-0.244992pt;}
.lse_c02039{letter-spacing:-0.232320pt;}
.ls5_c02039{letter-spacing:-0.215424pt;}
.ls3_c02039{letter-spacing:-0.105600pt;}
.ls13_c02039{letter-spacing:0.000000pt;}
.ls1_c02039{letter-spacing:0.005376pt;}
.ls4_c02039{letter-spacing:0.114048pt;}
.ls6_c02039{letter-spacing:0.215424pt;}
.lsb_c02039{letter-spacing:0.451968pt;}
.ls12_c02039{letter-spacing:0.456960pt;}
.lsf_c02039{letter-spacing:0.477312pt;}
.lsa_c02039{letter-spacing:0.515328pt;}
.ls11_c02039{letter-spacing:0.528000pt;}
.ls7_c02039{letter-spacing:0.532224pt;}
.ls2_c02039{letter-spacing:0.544896pt;}
.lsd_c02039{letter-spacing:0.578688pt;}
.ls0_c02039{letter-spacing:0.637824pt;}
.wsc_c02039{word-spacing:-13.445376pt;}
.wsa_c02039{word-spacing:-11.088000pt;}
.ws9_c02039{word-spacing:-11.037312pt;}
.ws2_c02039{word-spacing:-10.775424pt;}
.ws4_c02039{word-spacing:-9.888384pt;}
.ws15_c02039{word-spacing:-1.919232pt;}
.ws10_c02039{word-spacing:-0.958848pt;}
.ws12_c02039{word-spacing:-0.899712pt;}
.wsd_c02039{word-spacing:-0.865920pt;}
.wsf_c02039{word-spacing:-0.105600pt;}
.ws13_c02039{word-spacing:-0.088704pt;}
.ws14_c02039{word-spacing:-0.076032pt;}
.wse_c02039{word-spacing:0.000000pt;}
.ws11_c02039{word-spacing:0.059136pt;}
.wsb_c02039{word-spacing:29.600256pt;}
.ws8_c02039{word-spacing:32.127744pt;}
.ws6_c02039{word-spacing:32.659968pt;}
.ws1_c02039{word-spacing:33.563904pt;}
.ws0_c02039{word-spacing:33.796224pt;}
.ws3_c02039{word-spacing:34.860672pt;}
.ws5_c02039{word-spacing:35.468928pt;}
.ws7_c02039{word-spacing:37.357056pt;}
._0_c02039{margin-left:-1.731840pt;}
._2_c02039{width:1.317888pt;}
._4_c02039{width:2.994816pt;}
._5_c02039{width:13.121280pt;}
._1_c02039{width:44.668800pt;}
._3_c02039{width:45.805056pt;}
.fs0_c02039{font-size:42.240000pt;}
.fs1_c02039{font-size:53.760000pt;}
.y0_c02039{bottom:0.000000pt;}
.y19_c02039{bottom:130.665211pt;}
.y1b_c02039{bottom:165.866875pt;}
.y1a_c02039{bottom:174.507067pt;}
.y18_c02039{bottom:245.225371pt;}
.y17_c02039{bottom:317.225563pt;}
.y15_c02039{bottom:361.386427pt;}
.y11_c02039{bottom:377.386939pt;}
.y16_c02039{bottom:407.786011pt;}
.y14_c02039{bottom:437.226235pt;}
.y13_c02039{bottom:453.226747pt;}
.y10_c02039{bottom:482.666971pt;}
.y12_c02039{bottom:497.386555pt;}
.yf_c02039{bottom:513.387067pt;}
.y1c_c02039{bottom:546.027067pt;}
.yb_c02039{bottom:593.385179pt;}
.yd_c02039{bottom:628.586875pt;}
.yc_c02039{bottom:637.227067pt;}
.ya_c02039{bottom:707.945339pt;}
.y9_c02039{bottom:779.945531pt;}
.y7_c02039{bottom:823.786427pt;}
.y3_c02039{bottom:839.786939pt;}
.y8_c02039{bottom:870.505979pt;}
.y6_c02039{bottom:899.946203pt;}
.y5_c02039{bottom:915.946715pt;}
.y2_c02039{bottom:945.386939pt;}
.y4_c02039{bottom:959.786555pt;}
.y1_c02039{bottom:975.787067pt;}
.ye_c02039{bottom:1008.747067pt;}
.h3_c02039{height:28.916250pt;}
.h1_c02039{height:37.063125pt;}
.h2_c02039{height:37.166250pt;}
.h4_c02039{height:48.581988pt;}
.h0_c02039{height:1122.666667pt;}
.w1_c02039{width:793.333333pt;}
.w0_c02039{width:793.626667pt;}
.x0_c02039{left:0.000000pt;}
.xd_c02039{left:104.000000pt;}
.x8_c02039{left:391.999872pt;}
.x4_c02039{left:396.160512pt;}
.xb_c02039{left:400.960000pt;}
.x7_c02039{left:404.799648pt;}
.x5_c02039{left:410.560128pt;}
.x1_c02039{left:411.840000pt;}
.xa_c02039{left:429.760320pt;}
.x9_c02039{left:437.439552pt;}
.x6_c02039{left:438.400512pt;}
.xc_c02039{left:450.560320pt;}
.x3_c02039{left:455.039904pt;}
.x2_c02039{left:468.159648pt;}
}





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

.ir_c02040:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02040;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02040{font-family:ff1_c02040;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02040;src:url('chunks/assets/font_52abd0ea021264071338c2cd.woff2')format("woff");}.ff2_c02040{font-family:ff2_c02040;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02040;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02040{font-family:ff3_c02040;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02040{vertical-align:0.000000px;}
.v1_c02040{vertical-align:1.439424px;}
.ls8_c02040{letter-spacing:-0.755568px;}
.ls9_c02040{letter-spacing:-0.574992px;}
.lsc_c02040{letter-spacing:-0.427680px;}
.ls10_c02040{letter-spacing:-0.275616px;}
.lse_c02040{letter-spacing:-0.261360px;}
.ls5_c02040{letter-spacing:-0.242352px;}
.ls3_c02040{letter-spacing:-0.118800px;}
.ls13_c02040{letter-spacing:0.000000px;}
.ls1_c02040{letter-spacing:0.006048px;}
.ls4_c02040{letter-spacing:0.128304px;}
.ls6_c02040{letter-spacing:0.242352px;}
.lsb_c02040{letter-spacing:0.508464px;}
.ls12_c02040{letter-spacing:0.514080px;}
.lsf_c02040{letter-spacing:0.536976px;}
.lsa_c02040{letter-spacing:0.579744px;}
.ls11_c02040{letter-spacing:0.594000px;}
.ls7_c02040{letter-spacing:0.598752px;}
.ls2_c02040{letter-spacing:0.613008px;}
.lsd_c02040{letter-spacing:0.651024px;}
.ls0_c02040{letter-spacing:0.717552px;}
.sc__c02040{text-shadow:none;}
.sc0_c02040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02040{-webkit-text-stroke:0px transparent;}
.sc0_c02040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02040{word-spacing:-15.126048px;}
.wsa_c02040{word-spacing:-12.474000px;}
.ws9_c02040{word-spacing:-12.416976px;}
.ws2_c02040{word-spacing:-12.122352px;}
.ws4_c02040{word-spacing:-11.124432px;}
.ws15_c02040{word-spacing:-2.159136px;}
.ws10_c02040{word-spacing:-1.078704px;}
.ws12_c02040{word-spacing:-1.012176px;}
.wsd_c02040{word-spacing:-0.974160px;}
.wsf_c02040{word-spacing:-0.118800px;}
.ws13_c02040{word-spacing:-0.099792px;}
.ws14_c02040{word-spacing:-0.085536px;}
.wse_c02040{word-spacing:0.000000px;}
.ws11_c02040{word-spacing:0.066528px;}
.wsb_c02040{word-spacing:33.300288px;}
.ws8_c02040{word-spacing:36.143712px;}
.ws6_c02040{word-spacing:36.742464px;}
.ws1_c02040{word-spacing:37.759392px;}
.ws0_c02040{word-spacing:38.020752px;}
.ws3_c02040{word-spacing:39.218256px;}
.ws5_c02040{word-spacing:39.902544px;}
.ws7_c02040{word-spacing:42.026688px;}
._0_c02040{margin-left:-1.948320px;}
._2_c02040{width:1.482624px;}
._4_c02040{width:3.369168px;}
._5_c02040{width:14.761440px;}
._1_c02040{width:50.252400px;}
._3_c02040{width:51.530688px;}
.fc0_c02040{color:rgb(0,0,0);}
.fs0_c02040{font-size:47.520000px;}
.fs1_c02040{font-size:60.480000px;}
.y0_c02040{bottom:0.000000px;}
.y19_c02040{bottom:146.998362px;}
.y1b_c02040{bottom:186.600234px;}
.y1a_c02040{bottom:196.320450px;}
.y18_c02040{bottom:275.878542px;}
.y17_c02040{bottom:356.878758px;}
.y15_c02040{bottom:406.559730px;}
.y11_c02040{bottom:424.560306px;}
.y16_c02040{bottom:458.759262px;}
.y14_c02040{bottom:491.879514px;}
.y13_c02040{bottom:509.880090px;}
.y10_c02040{bottom:543.000342px;}
.y12_c02040{bottom:559.559874px;}
.yf_c02040{bottom:577.560450px;}
.y1c_c02040{bottom:614.280450px;}
.yb_c02040{bottom:667.558326px;}
.yd_c02040{bottom:707.160234px;}
.yc_c02040{bottom:716.880450px;}
.ya_c02040{bottom:796.438506px;}
.y9_c02040{bottom:877.438722px;}
.y7_c02040{bottom:926.759730px;}
.y3_c02040{bottom:944.760306px;}
.y8_c02040{bottom:979.319226px;}
.y6_c02040{bottom:1012.439478px;}
.y5_c02040{bottom:1030.440054px;}
.y2_c02040{bottom:1063.560306px;}
.y4_c02040{bottom:1079.759874px;}
.y1_c02040{bottom:1097.760450px;}
.ye_c02040{bottom:1134.840450px;}
.h3_c02040{height:32.530781px;}
.h1_c02040{height:41.696016px;}
.h2_c02040{height:41.812031px;}
.h4_c02040{height:54.654737px;}
.h0_c02040{height:1263.000000px;}
.w1_c02040{width:892.500000px;}
.w0_c02040{width:892.830000px;}
.x0_c02040{left:0.000000px;}
.xd_c02040{left:117.000000px;}
.x8_c02040{left:440.999856px;}
.x4_c02040{left:445.680576px;}
.xb_c02040{left:451.080000px;}
.x7_c02040{left:455.399604px;}
.x5_c02040{left:461.880144px;}
.x1_c02040{left:463.320000px;}
.xa_c02040{left:483.480360px;}
.x9_c02040{left:492.119496px;}
.x6_c02040{left:493.200576px;}
.xc_c02040{left:506.880360px;}
.x3_c02040{left:511.919892px;}
.x2_c02040{left:526.679604px;}
@media print{
.v0_c02040{vertical-align:0.000000pt;}
.v1_c02040{vertical-align:1.279488pt;}
.ls8_c02040{letter-spacing:-0.671616pt;}
.ls9_c02040{letter-spacing:-0.511104pt;}
.lsc_c02040{letter-spacing:-0.380160pt;}
.ls10_c02040{letter-spacing:-0.244992pt;}
.lse_c02040{letter-spacing:-0.232320pt;}
.ls5_c02040{letter-spacing:-0.215424pt;}
.ls3_c02040{letter-spacing:-0.105600pt;}
.ls13_c02040{letter-spacing:0.000000pt;}
.ls1_c02040{letter-spacing:0.005376pt;}
.ls4_c02040{letter-spacing:0.114048pt;}
.ls6_c02040{letter-spacing:0.215424pt;}
.lsb_c02040{letter-spacing:0.451968pt;}
.ls12_c02040{letter-spacing:0.456960pt;}
.lsf_c02040{letter-spacing:0.477312pt;}
.lsa_c02040{letter-spacing:0.515328pt;}
.ls11_c02040{letter-spacing:0.528000pt;}
.ls7_c02040{letter-spacing:0.532224pt;}
.ls2_c02040{letter-spacing:0.544896pt;}
.lsd_c02040{letter-spacing:0.578688pt;}
.ls0_c02040{letter-spacing:0.637824pt;}
.wsc_c02040{word-spacing:-13.445376pt;}
.wsa_c02040{word-spacing:-11.088000pt;}
.ws9_c02040{word-spacing:-11.037312pt;}
.ws2_c02040{word-spacing:-10.775424pt;}
.ws4_c02040{word-spacing:-9.888384pt;}
.ws15_c02040{word-spacing:-1.919232pt;}
.ws10_c02040{word-spacing:-0.958848pt;}
.ws12_c02040{word-spacing:-0.899712pt;}
.wsd_c02040{word-spacing:-0.865920pt;}
.wsf_c02040{word-spacing:-0.105600pt;}
.ws13_c02040{word-spacing:-0.088704pt;}
.ws14_c02040{word-spacing:-0.076032pt;}
.wse_c02040{word-spacing:0.000000pt;}
.ws11_c02040{word-spacing:0.059136pt;}
.wsb_c02040{word-spacing:29.600256pt;}
.ws8_c02040{word-spacing:32.127744pt;}
.ws6_c02040{word-spacing:32.659968pt;}
.ws1_c02040{word-spacing:33.563904pt;}
.ws0_c02040{word-spacing:33.796224pt;}
.ws3_c02040{word-spacing:34.860672pt;}
.ws5_c02040{word-spacing:35.468928pt;}
.ws7_c02040{word-spacing:37.357056pt;}
._0_c02040{margin-left:-1.731840pt;}
._2_c02040{width:1.317888pt;}
._4_c02040{width:2.994816pt;}
._5_c02040{width:13.121280pt;}
._1_c02040{width:44.668800pt;}
._3_c02040{width:45.805056pt;}
.fs0_c02040{font-size:42.240000pt;}
.fs1_c02040{font-size:53.760000pt;}
.y0_c02040{bottom:0.000000pt;}
.y19_c02040{bottom:130.665211pt;}
.y1b_c02040{bottom:165.866875pt;}
.y1a_c02040{bottom:174.507067pt;}
.y18_c02040{bottom:245.225371pt;}
.y17_c02040{bottom:317.225563pt;}
.y15_c02040{bottom:361.386427pt;}
.y11_c02040{bottom:377.386939pt;}
.y16_c02040{bottom:407.786011pt;}
.y14_c02040{bottom:437.226235pt;}
.y13_c02040{bottom:453.226747pt;}
.y10_c02040{bottom:482.666971pt;}
.y12_c02040{bottom:497.386555pt;}
.yf_c02040{bottom:513.387067pt;}
.y1c_c02040{bottom:546.027067pt;}
.yb_c02040{bottom:593.385179pt;}
.yd_c02040{bottom:628.586875pt;}
.yc_c02040{bottom:637.227067pt;}
.ya_c02040{bottom:707.945339pt;}
.y9_c02040{bottom:779.945531pt;}
.y7_c02040{bottom:823.786427pt;}
.y3_c02040{bottom:839.786939pt;}
.y8_c02040{bottom:870.505979pt;}
.y6_c02040{bottom:899.946203pt;}
.y5_c02040{bottom:915.946715pt;}
.y2_c02040{bottom:945.386939pt;}
.y4_c02040{bottom:959.786555pt;}
.y1_c02040{bottom:975.787067pt;}
.ye_c02040{bottom:1008.747067pt;}
.h3_c02040{height:28.916250pt;}
.h1_c02040{height:37.063125pt;}
.h2_c02040{height:37.166250pt;}
.h4_c02040{height:48.581988pt;}
.h0_c02040{height:1122.666667pt;}
.w1_c02040{width:793.333333pt;}
.w0_c02040{width:793.626667pt;}
.x0_c02040{left:0.000000pt;}
.xd_c02040{left:104.000000pt;}
.x8_c02040{left:391.999872pt;}
.x4_c02040{left:396.160512pt;}
.xb_c02040{left:400.960000pt;}
.x7_c02040{left:404.799648pt;}
.x5_c02040{left:410.560128pt;}
.x1_c02040{left:411.840000pt;}
.xa_c02040{left:429.760320pt;}
.x9_c02040{left:437.439552pt;}
.x6_c02040{left:438.400512pt;}
.xc_c02040{left:450.560320pt;}
.x3_c02040{left:455.039904pt;}
.x2_c02040{left:468.159648pt;}
}





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

.ir_c02041:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02041{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02041;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02041{font-family:ff1_c02041;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02041;src:url('chunks/assets/font_52abd0ea021264071338c2cd.woff2')format("woff");}.ff2_c02041{font-family:ff2_c02041;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02041;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02041{font-family:ff3_c02041;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02041{vertical-align:0.000000px;}
.v1_c02041{vertical-align:1.439424px;}
.ls8_c02041{letter-spacing:-0.755568px;}
.ls9_c02041{letter-spacing:-0.574992px;}
.lsc_c02041{letter-spacing:-0.427680px;}
.ls10_c02041{letter-spacing:-0.275616px;}
.lse_c02041{letter-spacing:-0.261360px;}
.ls5_c02041{letter-spacing:-0.242352px;}
.ls3_c02041{letter-spacing:-0.118800px;}
.ls13_c02041{letter-spacing:0.000000px;}
.ls1_c02041{letter-spacing:0.006048px;}
.ls4_c02041{letter-spacing:0.128304px;}
.ls6_c02041{letter-spacing:0.242352px;}
.lsb_c02041{letter-spacing:0.508464px;}
.ls12_c02041{letter-spacing:0.514080px;}
.lsf_c02041{letter-spacing:0.536976px;}
.lsa_c02041{letter-spacing:0.579744px;}
.ls11_c02041{letter-spacing:0.594000px;}
.ls7_c02041{letter-spacing:0.598752px;}
.ls2_c02041{letter-spacing:0.613008px;}
.lsd_c02041{letter-spacing:0.651024px;}
.ls0_c02041{letter-spacing:0.717552px;}
.sc__c02041{text-shadow:none;}
.sc0_c02041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02041{-webkit-text-stroke:0px transparent;}
.sc0_c02041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02041{word-spacing:-15.126048px;}
.wsa_c02041{word-spacing:-12.474000px;}
.ws9_c02041{word-spacing:-12.416976px;}
.ws2_c02041{word-spacing:-12.122352px;}
.ws4_c02041{word-spacing:-11.124432px;}
.ws15_c02041{word-spacing:-2.159136px;}
.ws10_c02041{word-spacing:-1.078704px;}
.ws12_c02041{word-spacing:-1.012176px;}
.wsd_c02041{word-spacing:-0.974160px;}
.wsf_c02041{word-spacing:-0.118800px;}
.ws13_c02041{word-spacing:-0.099792px;}
.ws14_c02041{word-spacing:-0.085536px;}
.wse_c02041{word-spacing:0.000000px;}
.ws11_c02041{word-spacing:0.066528px;}
.wsb_c02041{word-spacing:33.300288px;}
.ws8_c02041{word-spacing:36.143712px;}
.ws6_c02041{word-spacing:36.742464px;}
.ws1_c02041{word-spacing:37.759392px;}
.ws0_c02041{word-spacing:38.020752px;}
.ws3_c02041{word-spacing:39.218256px;}
.ws5_c02041{word-spacing:39.902544px;}
.ws7_c02041{word-spacing:42.026688px;}
._0_c02041{margin-left:-1.948320px;}
._2_c02041{width:1.482624px;}
._4_c02041{width:3.369168px;}
._5_c02041{width:14.761440px;}
._1_c02041{width:50.252400px;}
._3_c02041{width:51.530688px;}
.fc0_c02041{color:rgb(0,0,0);}
.fs0_c02041{font-size:47.520000px;}
.fs1_c02041{font-size:60.480000px;}
.y0_c02041{bottom:0.000000px;}
.y19_c02041{bottom:146.998362px;}
.y1b_c02041{bottom:186.600234px;}
.y1a_c02041{bottom:196.320450px;}
.y18_c02041{bottom:275.878542px;}
.y17_c02041{bottom:356.878758px;}
.y15_c02041{bottom:406.559730px;}
.y11_c02041{bottom:424.560306px;}
.y16_c02041{bottom:458.759262px;}
.y14_c02041{bottom:491.879514px;}
.y13_c02041{bottom:509.880090px;}
.y10_c02041{bottom:543.000342px;}
.y12_c02041{bottom:559.559874px;}
.yf_c02041{bottom:577.560450px;}
.y1c_c02041{bottom:614.280450px;}
.yb_c02041{bottom:667.558326px;}
.yd_c02041{bottom:707.160234px;}
.yc_c02041{bottom:716.880450px;}
.ya_c02041{bottom:796.438506px;}
.y9_c02041{bottom:877.438722px;}
.y7_c02041{bottom:926.759730px;}
.y3_c02041{bottom:944.760306px;}
.y8_c02041{bottom:979.319226px;}
.y6_c02041{bottom:1012.439478px;}
.y5_c02041{bottom:1030.440054px;}
.y2_c02041{bottom:1063.560306px;}
.y4_c02041{bottom:1079.759874px;}
.y1_c02041{bottom:1097.760450px;}
.ye_c02041{bottom:1134.840450px;}
.h3_c02041{height:32.530781px;}
.h1_c02041{height:41.696016px;}
.h2_c02041{height:41.812031px;}
.h4_c02041{height:54.654737px;}
.h0_c02041{height:1263.000000px;}
.w1_c02041{width:892.500000px;}
.w0_c02041{width:892.830000px;}
.x0_c02041{left:0.000000px;}
.xd_c02041{left:117.000000px;}
.x8_c02041{left:440.999856px;}
.x4_c02041{left:445.680576px;}
.xb_c02041{left:451.080000px;}
.x7_c02041{left:455.399604px;}
.x5_c02041{left:461.880144px;}
.x1_c02041{left:463.320000px;}
.xa_c02041{left:483.480360px;}
.x9_c02041{left:492.119496px;}
.x6_c02041{left:493.200576px;}
.xc_c02041{left:506.880360px;}
.x3_c02041{left:511.919892px;}
.x2_c02041{left:526.679604px;}
@media print{
.v0_c02041{vertical-align:0.000000pt;}
.v1_c02041{vertical-align:1.279488pt;}
.ls8_c02041{letter-spacing:-0.671616pt;}
.ls9_c02041{letter-spacing:-0.511104pt;}
.lsc_c02041{letter-spacing:-0.380160pt;}
.ls10_c02041{letter-spacing:-0.244992pt;}
.lse_c02041{letter-spacing:-0.232320pt;}
.ls5_c02041{letter-spacing:-0.215424pt;}
.ls3_c02041{letter-spacing:-0.105600pt;}
.ls13_c02041{letter-spacing:0.000000pt;}
.ls1_c02041{letter-spacing:0.005376pt;}
.ls4_c02041{letter-spacing:0.114048pt;}
.ls6_c02041{letter-spacing:0.215424pt;}
.lsb_c02041{letter-spacing:0.451968pt;}
.ls12_c02041{letter-spacing:0.456960pt;}
.lsf_c02041{letter-spacing:0.477312pt;}
.lsa_c02041{letter-spacing:0.515328pt;}
.ls11_c02041{letter-spacing:0.528000pt;}
.ls7_c02041{letter-spacing:0.532224pt;}
.ls2_c02041{letter-spacing:0.544896pt;}
.lsd_c02041{letter-spacing:0.578688pt;}
.ls0_c02041{letter-spacing:0.637824pt;}
.wsc_c02041{word-spacing:-13.445376pt;}
.wsa_c02041{word-spacing:-11.088000pt;}
.ws9_c02041{word-spacing:-11.037312pt;}
.ws2_c02041{word-spacing:-10.775424pt;}
.ws4_c02041{word-spacing:-9.888384pt;}
.ws15_c02041{word-spacing:-1.919232pt;}
.ws10_c02041{word-spacing:-0.958848pt;}
.ws12_c02041{word-spacing:-0.899712pt;}
.wsd_c02041{word-spacing:-0.865920pt;}
.wsf_c02041{word-spacing:-0.105600pt;}
.ws13_c02041{word-spacing:-0.088704pt;}
.ws14_c02041{word-spacing:-0.076032pt;}
.wse_c02041{word-spacing:0.000000pt;}
.ws11_c02041{word-spacing:0.059136pt;}
.wsb_c02041{word-spacing:29.600256pt;}
.ws8_c02041{word-spacing:32.127744pt;}
.ws6_c02041{word-spacing:32.659968pt;}
.ws1_c02041{word-spacing:33.563904pt;}
.ws0_c02041{word-spacing:33.796224pt;}
.ws3_c02041{word-spacing:34.860672pt;}
.ws5_c02041{word-spacing:35.468928pt;}
.ws7_c02041{word-spacing:37.357056pt;}
._0_c02041{margin-left:-1.731840pt;}
._2_c02041{width:1.317888pt;}
._4_c02041{width:2.994816pt;}
._5_c02041{width:13.121280pt;}
._1_c02041{width:44.668800pt;}
._3_c02041{width:45.805056pt;}
.fs0_c02041{font-size:42.240000pt;}
.fs1_c02041{font-size:53.760000pt;}
.y0_c02041{bottom:0.000000pt;}
.y19_c02041{bottom:130.665211pt;}
.y1b_c02041{bottom:165.866875pt;}
.y1a_c02041{bottom:174.507067pt;}
.y18_c02041{bottom:245.225371pt;}
.y17_c02041{bottom:317.225563pt;}
.y15_c02041{bottom:361.386427pt;}
.y11_c02041{bottom:377.386939pt;}
.y16_c02041{bottom:407.786011pt;}
.y14_c02041{bottom:437.226235pt;}
.y13_c02041{bottom:453.226747pt;}
.y10_c02041{bottom:482.666971pt;}
.y12_c02041{bottom:497.386555pt;}
.yf_c02041{bottom:513.387067pt;}
.y1c_c02041{bottom:546.027067pt;}
.yb_c02041{bottom:593.385179pt;}
.yd_c02041{bottom:628.586875pt;}
.yc_c02041{bottom:637.227067pt;}
.ya_c02041{bottom:707.945339pt;}
.y9_c02041{bottom:779.945531pt;}
.y7_c02041{bottom:823.786427pt;}
.y3_c02041{bottom:839.786939pt;}
.y8_c02041{bottom:870.505979pt;}
.y6_c02041{bottom:899.946203pt;}
.y5_c02041{bottom:915.946715pt;}
.y2_c02041{bottom:945.386939pt;}
.y4_c02041{bottom:959.786555pt;}
.y1_c02041{bottom:975.787067pt;}
.ye_c02041{bottom:1008.747067pt;}
.h3_c02041{height:28.916250pt;}
.h1_c02041{height:37.063125pt;}
.h2_c02041{height:37.166250pt;}
.h4_c02041{height:48.581988pt;}
.h0_c02041{height:1122.666667pt;}
.w1_c02041{width:793.333333pt;}
.w0_c02041{width:793.626667pt;}
.x0_c02041{left:0.000000pt;}
.xd_c02041{left:104.000000pt;}
.x8_c02041{left:391.999872pt;}
.x4_c02041{left:396.160512pt;}
.xb_c02041{left:400.960000pt;}
.x7_c02041{left:404.799648pt;}
.x5_c02041{left:410.560128pt;}
.x1_c02041{left:411.840000pt;}
.xa_c02041{left:429.760320pt;}
.x9_c02041{left:437.439552pt;}
.x6_c02041{left:438.400512pt;}
.xc_c02041{left:450.560320pt;}
.x3_c02041{left:455.039904pt;}
.x2_c02041{left:468.159648pt;}
}





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

.ir_c02042:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02042;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02042{font-family:ff1_c02042;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02042;src:url('chunks/assets/font_aa9f2df694a45d675995504f.woff2')format("woff");}.ff2_c02042{font-family:ff2_c02042;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02042;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02042{font-family:ff3_c02042;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02042{vertical-align:0.000000px;}
.v1_c02042{vertical-align:1.439424px;}
.ls8_c02042{letter-spacing:-0.755568px;}
.ls14_c02042{letter-spacing:-0.613008px;}
.ls9_c02042{letter-spacing:-0.574992px;}
.lsc_c02042{letter-spacing:-0.427680px;}
.ls10_c02042{letter-spacing:-0.275616px;}
.lse_c02042{letter-spacing:-0.261360px;}
.ls15_c02042{letter-spacing:-0.256608px;}
.ls5_c02042{letter-spacing:-0.242352px;}
.ls3_c02042{letter-spacing:-0.118800px;}
.ls13_c02042{letter-spacing:0.000000px;}
.ls1_c02042{letter-spacing:0.006048px;}
.ls4_c02042{letter-spacing:0.128304px;}
.ls6_c02042{letter-spacing:0.242352px;}
.lsb_c02042{letter-spacing:0.508464px;}
.ls12_c02042{letter-spacing:0.514080px;}
.lsf_c02042{letter-spacing:0.536976px;}
.lsa_c02042{letter-spacing:0.579744px;}
.ls11_c02042{letter-spacing:0.594000px;}
.ls7_c02042{letter-spacing:0.598752px;}
.ls2_c02042{letter-spacing:0.613008px;}
.lsd_c02042{letter-spacing:0.651024px;}
.ls0_c02042{letter-spacing:0.717552px;}
.sc__c02042{text-shadow:none;}
.sc0_c02042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02042{-webkit-text-stroke:0px transparent;}
.sc0_c02042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02042{word-spacing:-15.126048px;}
.wsa_c02042{word-spacing:-12.474000px;}
.ws9_c02042{word-spacing:-12.416976px;}
.ws2_c02042{word-spacing:-12.122352px;}
.wsd_c02042{word-spacing:-11.266992px;}
.ws4_c02042{word-spacing:-11.124432px;}
.ws16_c02042{word-spacing:-2.159136px;}
.ws11_c02042{word-spacing:-1.078704px;}
.ws13_c02042{word-spacing:-1.012176px;}
.wse_c02042{word-spacing:-0.974160px;}
.ws10_c02042{word-spacing:-0.118800px;}
.ws17_c02042{word-spacing:-0.104544px;}
.ws14_c02042{word-spacing:-0.099792px;}
.ws15_c02042{word-spacing:-0.085536px;}
.wsf_c02042{word-spacing:0.000000px;}
.ws12_c02042{word-spacing:0.066528px;}
.wsb_c02042{word-spacing:33.300288px;}
.ws8_c02042{word-spacing:36.143712px;}
.ws6_c02042{word-spacing:36.742464px;}
.ws1_c02042{word-spacing:37.759392px;}
.ws0_c02042{word-spacing:38.020752px;}
.ws3_c02042{word-spacing:39.218256px;}
.ws5_c02042{word-spacing:39.902544px;}
.ws7_c02042{word-spacing:42.026688px;}
._0_c02042{margin-left:-1.948320px;}
._2_c02042{width:1.482624px;}
._4_c02042{width:3.369168px;}
._5_c02042{width:14.761440px;}
._1_c02042{width:50.252400px;}
._3_c02042{width:51.530688px;}
.fc0_c02042{color:rgb(0,0,0);}
.fs0_c02042{font-size:47.520000px;}
.fs1_c02042{font-size:60.480000px;}
.y0_c02042{bottom:0.000000px;}
.y19_c02042{bottom:146.998362px;}
.y1b_c02042{bottom:186.600234px;}
.y1a_c02042{bottom:196.320450px;}
.y18_c02042{bottom:275.878542px;}
.y17_c02042{bottom:356.878758px;}
.y15_c02042{bottom:406.559730px;}
.y11_c02042{bottom:424.560306px;}
.y16_c02042{bottom:458.759262px;}
.y14_c02042{bottom:491.879514px;}
.y13_c02042{bottom:509.880090px;}
.y10_c02042{bottom:543.000342px;}
.y12_c02042{bottom:559.559874px;}
.yf_c02042{bottom:577.560450px;}
.y1c_c02042{bottom:614.280450px;}
.yb_c02042{bottom:667.558326px;}
.yd_c02042{bottom:707.160234px;}
.yc_c02042{bottom:716.880450px;}
.ya_c02042{bottom:796.438506px;}
.y9_c02042{bottom:877.438722px;}
.y7_c02042{bottom:926.759730px;}
.y3_c02042{bottom:944.760306px;}
.y8_c02042{bottom:979.319226px;}
.y6_c02042{bottom:1012.439478px;}
.y5_c02042{bottom:1030.440054px;}
.y2_c02042{bottom:1063.560306px;}
.y4_c02042{bottom:1079.759874px;}
.y1_c02042{bottom:1097.760450px;}
.ye_c02042{bottom:1134.840450px;}
.h3_c02042{height:32.530781px;}
.h1_c02042{height:41.696016px;}
.h2_c02042{height:41.812031px;}
.h4_c02042{height:54.654737px;}
.h0_c02042{height:1263.000000px;}
.w1_c02042{width:892.500000px;}
.w0_c02042{width:892.830000px;}
.x0_c02042{left:0.000000px;}
.xd_c02042{left:117.000000px;}
.x8_c02042{left:440.999856px;}
.x4_c02042{left:445.680576px;}
.xb_c02042{left:451.080000px;}
.x7_c02042{left:455.399604px;}
.x5_c02042{left:461.880144px;}
.x1_c02042{left:463.320000px;}
.xa_c02042{left:483.480360px;}
.x9_c02042{left:492.119496px;}
.x6_c02042{left:493.200576px;}
.xc_c02042{left:506.880360px;}
.x3_c02042{left:511.919892px;}
.x2_c02042{left:526.679604px;}
@media print{
.v0_c02042{vertical-align:0.000000pt;}
.v1_c02042{vertical-align:1.279488pt;}
.ls8_c02042{letter-spacing:-0.671616pt;}
.ls14_c02042{letter-spacing:-0.544896pt;}
.ls9_c02042{letter-spacing:-0.511104pt;}
.lsc_c02042{letter-spacing:-0.380160pt;}
.ls10_c02042{letter-spacing:-0.244992pt;}
.lse_c02042{letter-spacing:-0.232320pt;}
.ls15_c02042{letter-spacing:-0.228096pt;}
.ls5_c02042{letter-spacing:-0.215424pt;}
.ls3_c02042{letter-spacing:-0.105600pt;}
.ls13_c02042{letter-spacing:0.000000pt;}
.ls1_c02042{letter-spacing:0.005376pt;}
.ls4_c02042{letter-spacing:0.114048pt;}
.ls6_c02042{letter-spacing:0.215424pt;}
.lsb_c02042{letter-spacing:0.451968pt;}
.ls12_c02042{letter-spacing:0.456960pt;}
.lsf_c02042{letter-spacing:0.477312pt;}
.lsa_c02042{letter-spacing:0.515328pt;}
.ls11_c02042{letter-spacing:0.528000pt;}
.ls7_c02042{letter-spacing:0.532224pt;}
.ls2_c02042{letter-spacing:0.544896pt;}
.lsd_c02042{letter-spacing:0.578688pt;}
.ls0_c02042{letter-spacing:0.637824pt;}
.wsc_c02042{word-spacing:-13.445376pt;}
.wsa_c02042{word-spacing:-11.088000pt;}
.ws9_c02042{word-spacing:-11.037312pt;}
.ws2_c02042{word-spacing:-10.775424pt;}
.wsd_c02042{word-spacing:-10.015104pt;}
.ws4_c02042{word-spacing:-9.888384pt;}
.ws16_c02042{word-spacing:-1.919232pt;}
.ws11_c02042{word-spacing:-0.958848pt;}
.ws13_c02042{word-spacing:-0.899712pt;}
.wse_c02042{word-spacing:-0.865920pt;}
.ws10_c02042{word-spacing:-0.105600pt;}
.ws17_c02042{word-spacing:-0.092928pt;}
.ws14_c02042{word-spacing:-0.088704pt;}
.ws15_c02042{word-spacing:-0.076032pt;}
.wsf_c02042{word-spacing:0.000000pt;}
.ws12_c02042{word-spacing:0.059136pt;}
.wsb_c02042{word-spacing:29.600256pt;}
.ws8_c02042{word-spacing:32.127744pt;}
.ws6_c02042{word-spacing:32.659968pt;}
.ws1_c02042{word-spacing:33.563904pt;}
.ws0_c02042{word-spacing:33.796224pt;}
.ws3_c02042{word-spacing:34.860672pt;}
.ws5_c02042{word-spacing:35.468928pt;}
.ws7_c02042{word-spacing:37.357056pt;}
._0_c02042{margin-left:-1.731840pt;}
._2_c02042{width:1.317888pt;}
._4_c02042{width:2.994816pt;}
._5_c02042{width:13.121280pt;}
._1_c02042{width:44.668800pt;}
._3_c02042{width:45.805056pt;}
.fs0_c02042{font-size:42.240000pt;}
.fs1_c02042{font-size:53.760000pt;}
.y0_c02042{bottom:0.000000pt;}
.y19_c02042{bottom:130.665211pt;}
.y1b_c02042{bottom:165.866875pt;}
.y1a_c02042{bottom:174.507067pt;}
.y18_c02042{bottom:245.225371pt;}
.y17_c02042{bottom:317.225563pt;}
.y15_c02042{bottom:361.386427pt;}
.y11_c02042{bottom:377.386939pt;}
.y16_c02042{bottom:407.786011pt;}
.y14_c02042{bottom:437.226235pt;}
.y13_c02042{bottom:453.226747pt;}
.y10_c02042{bottom:482.666971pt;}
.y12_c02042{bottom:497.386555pt;}
.yf_c02042{bottom:513.387067pt;}
.y1c_c02042{bottom:546.027067pt;}
.yb_c02042{bottom:593.385179pt;}
.yd_c02042{bottom:628.586875pt;}
.yc_c02042{bottom:637.227067pt;}
.ya_c02042{bottom:707.945339pt;}
.y9_c02042{bottom:779.945531pt;}
.y7_c02042{bottom:823.786427pt;}
.y3_c02042{bottom:839.786939pt;}
.y8_c02042{bottom:870.505979pt;}
.y6_c02042{bottom:899.946203pt;}
.y5_c02042{bottom:915.946715pt;}
.y2_c02042{bottom:945.386939pt;}
.y4_c02042{bottom:959.786555pt;}
.y1_c02042{bottom:975.787067pt;}
.ye_c02042{bottom:1008.747067pt;}
.h3_c02042{height:28.916250pt;}
.h1_c02042{height:37.063125pt;}
.h2_c02042{height:37.166250pt;}
.h4_c02042{height:48.581988pt;}
.h0_c02042{height:1122.666667pt;}
.w1_c02042{width:793.333333pt;}
.w0_c02042{width:793.626667pt;}
.x0_c02042{left:0.000000pt;}
.xd_c02042{left:104.000000pt;}
.x8_c02042{left:391.999872pt;}
.x4_c02042{left:396.160512pt;}
.xb_c02042{left:400.960000pt;}
.x7_c02042{left:404.799648pt;}
.x5_c02042{left:410.560128pt;}
.x1_c02042{left:411.840000pt;}
.xa_c02042{left:429.760320pt;}
.x9_c02042{left:437.439552pt;}
.x6_c02042{left:438.400512pt;}
.xc_c02042{left:450.560320pt;}
.x3_c02042{left:455.039904pt;}
.x2_c02042{left:468.159648pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c02043 {
      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_c02043 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c02043 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c02043 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_c02044 {
    display:none;
  }
  .loading-indicator_c02044.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02044 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02044 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02044" -> "#page-container .classname_c02044")
 */
.pf_c02044 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02044 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02044.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02044 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02044 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02044 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02044 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02044 {overflow:visible;}
  }
}
.c_c02044 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02044 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02044:after { /* webkit #35443 */
  content: '';
}
.t_c02044:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02044 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02044 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02044 { /* info for Javascript */
  display:none;
}
.l_c02044 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02044 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02044 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02044:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02044;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02044{font-family:ff1_c02044;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02044;src:url('chunks/assets/font_3299054bf79bbcb756a436bb.woff2')format("woff");}.ff2_c02044{font-family:ff2_c02044;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02044;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02044{font-family:ff3_c02044;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02044{vertical-align:0.000000px;}
.v1_c02044{vertical-align:1.439424px;}
.ls6_c02044{letter-spacing:-0.613008px;}
.ls9_c02044{letter-spacing:-0.574992px;}
.lsc_c02044{letter-spacing:-0.427680px;}
.ls10_c02044{letter-spacing:-0.275616px;}
.lse_c02044{letter-spacing:-0.261360px;}
.ls8_c02044{letter-spacing:-0.256608px;}
.ls5_c02044{letter-spacing:-0.242352px;}
.ls3_c02044{letter-spacing:-0.118800px;}
.ls13_c02044{letter-spacing:0.000000px;}
.ls1_c02044{letter-spacing:0.006048px;}
.ls4_c02044{letter-spacing:0.128304px;}
.lsb_c02044{letter-spacing:0.508464px;}
.ls12_c02044{letter-spacing:0.514080px;}
.lsf_c02044{letter-spacing:0.536976px;}
.lsa_c02044{letter-spacing:0.579744px;}
.ls11_c02044{letter-spacing:0.594000px;}
.ls7_c02044{letter-spacing:0.598752px;}
.ls2_c02044{letter-spacing:0.613008px;}
.lsd_c02044{letter-spacing:0.651024px;}
.ls0_c02044{letter-spacing:0.717552px;}
.sc__c02044{text-shadow:none;}
.sc0_c02044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02044{-webkit-text-stroke:0px transparent;}
.sc0_c02044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02044{word-spacing:-15.126048px;}
.ws9_c02044{word-spacing:-12.474000px;}
.ws8_c02044{word-spacing:-12.416976px;}
.ws2_c02044{word-spacing:-11.266992px;}
.ws15_c02044{word-spacing:-2.159136px;}
.ws10_c02044{word-spacing:-1.078704px;}
.ws12_c02044{word-spacing:-1.012176px;}
.wsc_c02044{word-spacing:-0.974160px;}
.wse_c02044{word-spacing:-0.118800px;}
.wsf_c02044{word-spacing:-0.104544px;}
.ws13_c02044{word-spacing:-0.099792px;}
.ws14_c02044{word-spacing:-0.085536px;}
.wsd_c02044{word-spacing:0.000000px;}
.ws11_c02044{word-spacing:0.066528px;}
.wsa_c02044{word-spacing:33.300288px;}
.ws7_c02044{word-spacing:36.143712px;}
.ws5_c02044{word-spacing:36.742464px;}
.ws1_c02044{word-spacing:37.759392px;}
.ws0_c02044{word-spacing:38.020752px;}
.ws3_c02044{word-spacing:39.218256px;}
.ws4_c02044{word-spacing:39.902544px;}
.ws6_c02044{word-spacing:42.026688px;}
._0_c02044{margin-left:-1.948320px;}
._2_c02044{width:1.482624px;}
._4_c02044{width:2.917728px;}
._5_c02044{width:14.761440px;}
._1_c02044{width:50.252400px;}
._3_c02044{width:51.530688px;}
.fc0_c02044{color:rgb(0,0,0);}
.fs0_c02044{font-size:47.520000px;}
.fs1_c02044{font-size:60.480000px;}
.y0_c02044{bottom:0.000000px;}
.y19_c02044{bottom:146.998362px;}
.y1b_c02044{bottom:186.600234px;}
.y1a_c02044{bottom:196.320450px;}
.y18_c02044{bottom:275.878542px;}
.y17_c02044{bottom:356.878758px;}
.y15_c02044{bottom:406.559730px;}
.y11_c02044{bottom:424.560306px;}
.y16_c02044{bottom:458.759262px;}
.y14_c02044{bottom:491.879514px;}
.y13_c02044{bottom:509.880090px;}
.y10_c02044{bottom:543.000342px;}
.y12_c02044{bottom:559.559874px;}
.yf_c02044{bottom:577.560450px;}
.y1c_c02044{bottom:614.280450px;}
.yb_c02044{bottom:667.558326px;}
.yd_c02044{bottom:707.160234px;}
.yc_c02044{bottom:716.880450px;}
.ya_c02044{bottom:796.438506px;}
.y9_c02044{bottom:877.438722px;}
.y7_c02044{bottom:926.759730px;}
.y3_c02044{bottom:944.760306px;}
.y8_c02044{bottom:979.319226px;}
.y6_c02044{bottom:1012.439478px;}
.y5_c02044{bottom:1030.440054px;}
.y2_c02044{bottom:1063.560306px;}
.y4_c02044{bottom:1079.759874px;}
.y1_c02044{bottom:1097.760450px;}
.ye_c02044{bottom:1134.840450px;}
.h3_c02044{height:32.530781px;}
.h1_c02044{height:41.696016px;}
.h2_c02044{height:41.812031px;}
.h4_c02044{height:54.654737px;}
.h0_c02044{height:1263.000000px;}
.w1_c02044{width:892.500000px;}
.w0_c02044{width:892.830000px;}
.x0_c02044{left:0.000000px;}
.xd_c02044{left:117.000000px;}
.x8_c02044{left:440.999856px;}
.x4_c02044{left:445.680576px;}
.xb_c02044{left:451.080000px;}
.x7_c02044{left:455.399604px;}
.x5_c02044{left:461.880144px;}
.x1_c02044{left:463.320000px;}
.xa_c02044{left:483.480360px;}
.x9_c02044{left:492.119496px;}
.x6_c02044{left:493.200576px;}
.xc_c02044{left:506.880360px;}
.x3_c02044{left:511.919892px;}
.x2_c02044{left:526.679604px;}
@media print{
.v0_c02044{vertical-align:0.000000pt;}
.v1_c02044{vertical-align:1.279488pt;}
.ls6_c02044{letter-spacing:-0.544896pt;}
.ls9_c02044{letter-spacing:-0.511104pt;}
.lsc_c02044{letter-spacing:-0.380160pt;}
.ls10_c02044{letter-spacing:-0.244992pt;}
.lse_c02044{letter-spacing:-0.232320pt;}
.ls8_c02044{letter-spacing:-0.228096pt;}
.ls5_c02044{letter-spacing:-0.215424pt;}
.ls3_c02044{letter-spacing:-0.105600pt;}
.ls13_c02044{letter-spacing:0.000000pt;}
.ls1_c02044{letter-spacing:0.005376pt;}
.ls4_c02044{letter-spacing:0.114048pt;}
.lsb_c02044{letter-spacing:0.451968pt;}
.ls12_c02044{letter-spacing:0.456960pt;}
.lsf_c02044{letter-spacing:0.477312pt;}
.lsa_c02044{letter-spacing:0.515328pt;}
.ls11_c02044{letter-spacing:0.528000pt;}
.ls7_c02044{letter-spacing:0.532224pt;}
.ls2_c02044{letter-spacing:0.544896pt;}
.lsd_c02044{letter-spacing:0.578688pt;}
.ls0_c02044{letter-spacing:0.637824pt;}
.wsb_c02044{word-spacing:-13.445376pt;}
.ws9_c02044{word-spacing:-11.088000pt;}
.ws8_c02044{word-spacing:-11.037312pt;}
.ws2_c02044{word-spacing:-10.015104pt;}
.ws15_c02044{word-spacing:-1.919232pt;}
.ws10_c02044{word-spacing:-0.958848pt;}
.ws12_c02044{word-spacing:-0.899712pt;}
.wsc_c02044{word-spacing:-0.865920pt;}
.wse_c02044{word-spacing:-0.105600pt;}
.wsf_c02044{word-spacing:-0.092928pt;}
.ws13_c02044{word-spacing:-0.088704pt;}
.ws14_c02044{word-spacing:-0.076032pt;}
.wsd_c02044{word-spacing:0.000000pt;}
.ws11_c02044{word-spacing:0.059136pt;}
.wsa_c02044{word-spacing:29.600256pt;}
.ws7_c02044{word-spacing:32.127744pt;}
.ws5_c02044{word-spacing:32.659968pt;}
.ws1_c02044{word-spacing:33.563904pt;}
.ws0_c02044{word-spacing:33.796224pt;}
.ws3_c02044{word-spacing:34.860672pt;}
.ws4_c02044{word-spacing:35.468928pt;}
.ws6_c02044{word-spacing:37.357056pt;}
._0_c02044{margin-left:-1.731840pt;}
._2_c02044{width:1.317888pt;}
._4_c02044{width:2.593536pt;}
._5_c02044{width:13.121280pt;}
._1_c02044{width:44.668800pt;}
._3_c02044{width:45.805056pt;}
.fs0_c02044{font-size:42.240000pt;}
.fs1_c02044{font-size:53.760000pt;}
.y0_c02044{bottom:0.000000pt;}
.y19_c02044{bottom:130.665211pt;}
.y1b_c02044{bottom:165.866875pt;}
.y1a_c02044{bottom:174.507067pt;}
.y18_c02044{bottom:245.225371pt;}
.y17_c02044{bottom:317.225563pt;}
.y15_c02044{bottom:361.386427pt;}
.y11_c02044{bottom:377.386939pt;}
.y16_c02044{bottom:407.786011pt;}
.y14_c02044{bottom:437.226235pt;}
.y13_c02044{bottom:453.226747pt;}
.y10_c02044{bottom:482.666971pt;}
.y12_c02044{bottom:497.386555pt;}
.yf_c02044{bottom:513.387067pt;}
.y1c_c02044{bottom:546.027067pt;}
.yb_c02044{bottom:593.385179pt;}
.yd_c02044{bottom:628.586875pt;}
.yc_c02044{bottom:637.227067pt;}
.ya_c02044{bottom:707.945339pt;}
.y9_c02044{bottom:779.945531pt;}
.y7_c02044{bottom:823.786427pt;}
.y3_c02044{bottom:839.786939pt;}
.y8_c02044{bottom:870.505979pt;}
.y6_c02044{bottom:899.946203pt;}
.y5_c02044{bottom:915.946715pt;}
.y2_c02044{bottom:945.386939pt;}
.y4_c02044{bottom:959.786555pt;}
.y1_c02044{bottom:975.787067pt;}
.ye_c02044{bottom:1008.747067pt;}
.h3_c02044{height:28.916250pt;}
.h1_c02044{height:37.063125pt;}
.h2_c02044{height:37.166250pt;}
.h4_c02044{height:48.581988pt;}
.h0_c02044{height:1122.666667pt;}
.w1_c02044{width:793.333333pt;}
.w0_c02044{width:793.626667pt;}
.x0_c02044{left:0.000000pt;}
.xd_c02044{left:104.000000pt;}
.x8_c02044{left:391.999872pt;}
.x4_c02044{left:396.160512pt;}
.xb_c02044{left:400.960000pt;}
.x7_c02044{left:404.799648pt;}
.x5_c02044{left:410.560128pt;}
.x1_c02044{left:411.840000pt;}
.xa_c02044{left:429.760320pt;}
.x9_c02044{left:437.439552pt;}
.x6_c02044{left:438.400512pt;}
.xc_c02044{left:450.560320pt;}
.x3_c02044{left:455.039904pt;}
.x2_c02044{left:468.159648pt;}
}





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

.ir_c02045:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02045{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02045;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02045{font-family:ff1_c02045;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02045;src:url('chunks/assets/font_a36063c932567051be7b29b2.woff2')format("woff");}.ff2_c02045{font-family:ff2_c02045;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02045;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02045{font-family:ff3_c02045;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02045{vertical-align:0.000000px;}
.v1_c02045{vertical-align:1.439424px;}
.ls8_c02045{letter-spacing:-0.793584px;}
.ls6_c02045{letter-spacing:-0.613008px;}
.ls9_c02045{letter-spacing:-0.574992px;}
.lsc_c02045{letter-spacing:-0.427680px;}
.ls10_c02045{letter-spacing:-0.275616px;}
.lse_c02045{letter-spacing:-0.261360px;}
.ls5_c02045{letter-spacing:-0.242352px;}
.ls3_c02045{letter-spacing:-0.118800px;}
.ls13_c02045{letter-spacing:0.000000px;}
.ls1_c02045{letter-spacing:0.006048px;}
.ls4_c02045{letter-spacing:0.128304px;}
.ls14_c02045{letter-spacing:0.242352px;}
.lsb_c02045{letter-spacing:0.508464px;}
.ls12_c02045{letter-spacing:0.514080px;}
.lsf_c02045{letter-spacing:0.536976px;}
.lsa_c02045{letter-spacing:0.579744px;}
.ls11_c02045{letter-spacing:0.594000px;}
.ls7_c02045{letter-spacing:0.598752px;}
.ls2_c02045{letter-spacing:0.613008px;}
.lsd_c02045{letter-spacing:0.651024px;}
.ls0_c02045{letter-spacing:0.717552px;}
.sc__c02045{text-shadow:none;}
.sc0_c02045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02045{-webkit-text-stroke:0px transparent;}
.sc0_c02045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02045{word-spacing:-15.126048px;}
.wsa_c02045{word-spacing:-12.474000px;}
.ws9_c02045{word-spacing:-12.416976px;}
.ws2_c02045{word-spacing:-11.266992px;}
.ws4_c02045{word-spacing:-11.086416px;}
.ws15_c02045{word-spacing:-2.159136px;}
.ws10_c02045{word-spacing:-1.078704px;}
.ws12_c02045{word-spacing:-1.012176px;}
.wsd_c02045{word-spacing:-0.974160px;}
.wsf_c02045{word-spacing:-0.118800px;}
.ws13_c02045{word-spacing:-0.099792px;}
.ws14_c02045{word-spacing:-0.085536px;}
.wse_c02045{word-spacing:0.000000px;}
.ws11_c02045{word-spacing:0.066528px;}
.wsb_c02045{word-spacing:33.300288px;}
.ws8_c02045{word-spacing:36.143712px;}
.ws6_c02045{word-spacing:36.742464px;}
.ws1_c02045{word-spacing:37.759392px;}
.ws0_c02045{word-spacing:38.020752px;}
.ws3_c02045{word-spacing:39.218256px;}
.ws5_c02045{word-spacing:39.902544px;}
.ws7_c02045{word-spacing:42.026688px;}
._0_c02045{margin-left:-1.948320px;}
._2_c02045{width:1.482624px;}
._4_c02045{width:4.291056px;}
._5_c02045{width:14.761440px;}
._1_c02045{width:50.252400px;}
._3_c02045{width:51.530688px;}
.fc0_c02045{color:rgb(0,0,0);}
.fs0_c02045{font-size:47.520000px;}
.fs1_c02045{font-size:60.480000px;}
.y0_c02045{bottom:0.000000px;}
.y19_c02045{bottom:146.998362px;}
.y1b_c02045{bottom:186.600234px;}
.y1a_c02045{bottom:196.320450px;}
.y18_c02045{bottom:275.878542px;}
.y17_c02045{bottom:356.878758px;}
.y15_c02045{bottom:406.559730px;}
.y11_c02045{bottom:424.560306px;}
.y16_c02045{bottom:458.759262px;}
.y14_c02045{bottom:491.879514px;}
.y13_c02045{bottom:509.880090px;}
.y10_c02045{bottom:543.000342px;}
.y12_c02045{bottom:559.559874px;}
.yf_c02045{bottom:577.560450px;}
.y1c_c02045{bottom:614.280450px;}
.yb_c02045{bottom:667.558326px;}
.yd_c02045{bottom:707.160234px;}
.yc_c02045{bottom:716.880450px;}
.ya_c02045{bottom:796.438506px;}
.y9_c02045{bottom:877.438722px;}
.y7_c02045{bottom:926.759730px;}
.y3_c02045{bottom:944.760306px;}
.y8_c02045{bottom:979.319226px;}
.y6_c02045{bottom:1012.439478px;}
.y5_c02045{bottom:1030.440054px;}
.y2_c02045{bottom:1063.560306px;}
.y4_c02045{bottom:1079.759874px;}
.y1_c02045{bottom:1097.760450px;}
.ye_c02045{bottom:1134.840450px;}
.h3_c02045{height:32.530781px;}
.h1_c02045{height:41.696016px;}
.h2_c02045{height:41.812031px;}
.h4_c02045{height:54.654737px;}
.h0_c02045{height:1263.000000px;}
.w1_c02045{width:892.500000px;}
.w0_c02045{width:892.830000px;}
.x0_c02045{left:0.000000px;}
.xd_c02045{left:117.000000px;}
.x8_c02045{left:440.999856px;}
.x4_c02045{left:445.680576px;}
.xb_c02045{left:451.080000px;}
.x7_c02045{left:455.399604px;}
.x5_c02045{left:461.880144px;}
.x1_c02045{left:463.320000px;}
.xa_c02045{left:483.480360px;}
.x9_c02045{left:492.119496px;}
.x6_c02045{left:493.200576px;}
.xc_c02045{left:506.880360px;}
.x3_c02045{left:511.919892px;}
.x2_c02045{left:526.679604px;}
@media print{
.v0_c02045{vertical-align:0.000000pt;}
.v1_c02045{vertical-align:1.279488pt;}
.ls8_c02045{letter-spacing:-0.705408pt;}
.ls6_c02045{letter-spacing:-0.544896pt;}
.ls9_c02045{letter-spacing:-0.511104pt;}
.lsc_c02045{letter-spacing:-0.380160pt;}
.ls10_c02045{letter-spacing:-0.244992pt;}
.lse_c02045{letter-spacing:-0.232320pt;}
.ls5_c02045{letter-spacing:-0.215424pt;}
.ls3_c02045{letter-spacing:-0.105600pt;}
.ls13_c02045{letter-spacing:0.000000pt;}
.ls1_c02045{letter-spacing:0.005376pt;}
.ls4_c02045{letter-spacing:0.114048pt;}
.ls14_c02045{letter-spacing:0.215424pt;}
.lsb_c02045{letter-spacing:0.451968pt;}
.ls12_c02045{letter-spacing:0.456960pt;}
.lsf_c02045{letter-spacing:0.477312pt;}
.lsa_c02045{letter-spacing:0.515328pt;}
.ls11_c02045{letter-spacing:0.528000pt;}
.ls7_c02045{letter-spacing:0.532224pt;}
.ls2_c02045{letter-spacing:0.544896pt;}
.lsd_c02045{letter-spacing:0.578688pt;}
.ls0_c02045{letter-spacing:0.637824pt;}
.wsc_c02045{word-spacing:-13.445376pt;}
.wsa_c02045{word-spacing:-11.088000pt;}
.ws9_c02045{word-spacing:-11.037312pt;}
.ws2_c02045{word-spacing:-10.015104pt;}
.ws4_c02045{word-spacing:-9.854592pt;}
.ws15_c02045{word-spacing:-1.919232pt;}
.ws10_c02045{word-spacing:-0.958848pt;}
.ws12_c02045{word-spacing:-0.899712pt;}
.wsd_c02045{word-spacing:-0.865920pt;}
.wsf_c02045{word-spacing:-0.105600pt;}
.ws13_c02045{word-spacing:-0.088704pt;}
.ws14_c02045{word-spacing:-0.076032pt;}
.wse_c02045{word-spacing:0.000000pt;}
.ws11_c02045{word-spacing:0.059136pt;}
.wsb_c02045{word-spacing:29.600256pt;}
.ws8_c02045{word-spacing:32.127744pt;}
.ws6_c02045{word-spacing:32.659968pt;}
.ws1_c02045{word-spacing:33.563904pt;}
.ws0_c02045{word-spacing:33.796224pt;}
.ws3_c02045{word-spacing:34.860672pt;}
.ws5_c02045{word-spacing:35.468928pt;}
.ws7_c02045{word-spacing:37.357056pt;}
._0_c02045{margin-left:-1.731840pt;}
._2_c02045{width:1.317888pt;}
._4_c02045{width:3.814272pt;}
._5_c02045{width:13.121280pt;}
._1_c02045{width:44.668800pt;}
._3_c02045{width:45.805056pt;}
.fs0_c02045{font-size:42.240000pt;}
.fs1_c02045{font-size:53.760000pt;}
.y0_c02045{bottom:0.000000pt;}
.y19_c02045{bottom:130.665211pt;}
.y1b_c02045{bottom:165.866875pt;}
.y1a_c02045{bottom:174.507067pt;}
.y18_c02045{bottom:245.225371pt;}
.y17_c02045{bottom:317.225563pt;}
.y15_c02045{bottom:361.386427pt;}
.y11_c02045{bottom:377.386939pt;}
.y16_c02045{bottom:407.786011pt;}
.y14_c02045{bottom:437.226235pt;}
.y13_c02045{bottom:453.226747pt;}
.y10_c02045{bottom:482.666971pt;}
.y12_c02045{bottom:497.386555pt;}
.yf_c02045{bottom:513.387067pt;}
.y1c_c02045{bottom:546.027067pt;}
.yb_c02045{bottom:593.385179pt;}
.yd_c02045{bottom:628.586875pt;}
.yc_c02045{bottom:637.227067pt;}
.ya_c02045{bottom:707.945339pt;}
.y9_c02045{bottom:779.945531pt;}
.y7_c02045{bottom:823.786427pt;}
.y3_c02045{bottom:839.786939pt;}
.y8_c02045{bottom:870.505979pt;}
.y6_c02045{bottom:899.946203pt;}
.y5_c02045{bottom:915.946715pt;}
.y2_c02045{bottom:945.386939pt;}
.y4_c02045{bottom:959.786555pt;}
.y1_c02045{bottom:975.787067pt;}
.ye_c02045{bottom:1008.747067pt;}
.h3_c02045{height:28.916250pt;}
.h1_c02045{height:37.063125pt;}
.h2_c02045{height:37.166250pt;}
.h4_c02045{height:48.581988pt;}
.h0_c02045{height:1122.666667pt;}
.w1_c02045{width:793.333333pt;}
.w0_c02045{width:793.626667pt;}
.x0_c02045{left:0.000000pt;}
.xd_c02045{left:104.000000pt;}
.x8_c02045{left:391.999872pt;}
.x4_c02045{left:396.160512pt;}
.xb_c02045{left:400.960000pt;}
.x7_c02045{left:404.799648pt;}
.x5_c02045{left:410.560128pt;}
.x1_c02045{left:411.840000pt;}
.xa_c02045{left:429.760320pt;}
.x9_c02045{left:437.439552pt;}
.x6_c02045{left:438.400512pt;}
.xc_c02045{left:450.560320pt;}
.x3_c02045{left:455.039904pt;}
.x2_c02045{left:468.159648pt;}
}





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

.ir_c02046:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02046;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02046{font-family:ff1_c02046;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02046;src:url('chunks/assets/font_aa58c976029db73e2d33e070.woff2')format("woff");}.ff2_c02046{font-family:ff2_c02046;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02046;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02046{font-family:ff3_c02046;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02046{vertical-align:0.000000px;}
.v1_c02046{vertical-align:1.439424px;}
.ls8_c02046{letter-spacing:-0.793584px;}
.ls6_c02046{letter-spacing:-0.613008px;}
.ls9_c02046{letter-spacing:-0.574992px;}
.ls10_c02046{letter-spacing:-0.275616px;}
.lse_c02046{letter-spacing:-0.261360px;}
.ls5_c02046{letter-spacing:-0.242352px;}
.ls3_c02046{letter-spacing:-0.118800px;}
.ls13_c02046{letter-spacing:0.000000px;}
.ls1_c02046{letter-spacing:0.006048px;}
.ls4_c02046{letter-spacing:0.128304px;}
.lsc_c02046{letter-spacing:0.242352px;}
.lsb_c02046{letter-spacing:0.508464px;}
.ls12_c02046{letter-spacing:0.514080px;}
.lsf_c02046{letter-spacing:0.536976px;}
.lsa_c02046{letter-spacing:0.579744px;}
.ls11_c02046{letter-spacing:0.594000px;}
.ls7_c02046{letter-spacing:0.598752px;}
.ls2_c02046{letter-spacing:0.613008px;}
.lsd_c02046{letter-spacing:0.651024px;}
.ls0_c02046{letter-spacing:0.717552px;}
.sc__c02046{text-shadow:none;}
.sc0_c02046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02046{-webkit-text-stroke:0px transparent;}
.sc0_c02046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02046{word-spacing:-15.126048px;}
.wsa_c02046{word-spacing:-12.474000px;}
.ws9_c02046{word-spacing:-12.416976px;}
.ws2_c02046{word-spacing:-11.266992px;}
.ws4_c02046{word-spacing:-11.086416px;}
.ws14_c02046{word-spacing:-2.159136px;}
.ws10_c02046{word-spacing:-1.078704px;}
.ws11_c02046{word-spacing:-1.012176px;}
.wsd_c02046{word-spacing:-0.974160px;}
.wsf_c02046{word-spacing:-0.118800px;}
.ws12_c02046{word-spacing:-0.099792px;}
.ws13_c02046{word-spacing:-0.085536px;}
.wse_c02046{word-spacing:0.000000px;}
.wsb_c02046{word-spacing:33.300288px;}
.ws8_c02046{word-spacing:36.143712px;}
.ws6_c02046{word-spacing:36.742464px;}
.ws1_c02046{word-spacing:37.759392px;}
.ws0_c02046{word-spacing:38.020752px;}
.ws3_c02046{word-spacing:39.218256px;}
.ws5_c02046{word-spacing:39.902544px;}
.ws7_c02046{word-spacing:42.026688px;}
._0_c02046{margin-left:-1.948320px;}
._2_c02046{width:1.482624px;}
._4_c02046{width:4.291056px;}
._5_c02046{width:14.761440px;}
._1_c02046{width:50.252400px;}
._3_c02046{width:51.530688px;}
.fc0_c02046{color:rgb(0,0,0);}
.fs0_c02046{font-size:47.520000px;}
.fs1_c02046{font-size:60.480000px;}
.y0_c02046{bottom:0.000000px;}
.y19_c02046{bottom:146.998362px;}
.y1b_c02046{bottom:186.600234px;}
.y1a_c02046{bottom:196.320450px;}
.y18_c02046{bottom:275.878542px;}
.y17_c02046{bottom:356.878758px;}
.y15_c02046{bottom:406.559730px;}
.y11_c02046{bottom:424.560306px;}
.y16_c02046{bottom:458.759262px;}
.y14_c02046{bottom:491.879514px;}
.y13_c02046{bottom:509.880090px;}
.y10_c02046{bottom:543.000342px;}
.y12_c02046{bottom:559.559874px;}
.yf_c02046{bottom:577.560450px;}
.y1c_c02046{bottom:614.280450px;}
.yb_c02046{bottom:667.558326px;}
.yd_c02046{bottom:707.160234px;}
.yc_c02046{bottom:716.880450px;}
.ya_c02046{bottom:796.438506px;}
.y9_c02046{bottom:877.438722px;}
.y7_c02046{bottom:926.759730px;}
.y3_c02046{bottom:944.760306px;}
.y8_c02046{bottom:979.319226px;}
.y6_c02046{bottom:1012.439478px;}
.y5_c02046{bottom:1030.440054px;}
.y2_c02046{bottom:1063.560306px;}
.y4_c02046{bottom:1079.759874px;}
.y1_c02046{bottom:1097.760450px;}
.ye_c02046{bottom:1134.840450px;}
.h3_c02046{height:32.530781px;}
.h1_c02046{height:41.696016px;}
.h2_c02046{height:41.812031px;}
.h4_c02046{height:54.654737px;}
.h0_c02046{height:1263.000000px;}
.w1_c02046{width:892.500000px;}
.w0_c02046{width:892.830000px;}
.x0_c02046{left:0.000000px;}
.xd_c02046{left:117.000000px;}
.x8_c02046{left:440.999856px;}
.x4_c02046{left:445.680576px;}
.xb_c02046{left:451.080000px;}
.x7_c02046{left:455.399604px;}
.x5_c02046{left:461.880144px;}
.x1_c02046{left:463.320000px;}
.xa_c02046{left:483.480360px;}
.x9_c02046{left:492.119496px;}
.x6_c02046{left:493.200576px;}
.xc_c02046{left:506.880360px;}
.x3_c02046{left:511.919892px;}
.x2_c02046{left:526.679604px;}
@media print{
.v0_c02046{vertical-align:0.000000pt;}
.v1_c02046{vertical-align:1.279488pt;}
.ls8_c02046{letter-spacing:-0.705408pt;}
.ls6_c02046{letter-spacing:-0.544896pt;}
.ls9_c02046{letter-spacing:-0.511104pt;}
.ls10_c02046{letter-spacing:-0.244992pt;}
.lse_c02046{letter-spacing:-0.232320pt;}
.ls5_c02046{letter-spacing:-0.215424pt;}
.ls3_c02046{letter-spacing:-0.105600pt;}
.ls13_c02046{letter-spacing:0.000000pt;}
.ls1_c02046{letter-spacing:0.005376pt;}
.ls4_c02046{letter-spacing:0.114048pt;}
.lsc_c02046{letter-spacing:0.215424pt;}
.lsb_c02046{letter-spacing:0.451968pt;}
.ls12_c02046{letter-spacing:0.456960pt;}
.lsf_c02046{letter-spacing:0.477312pt;}
.lsa_c02046{letter-spacing:0.515328pt;}
.ls11_c02046{letter-spacing:0.528000pt;}
.ls7_c02046{letter-spacing:0.532224pt;}
.ls2_c02046{letter-spacing:0.544896pt;}
.lsd_c02046{letter-spacing:0.578688pt;}
.ls0_c02046{letter-spacing:0.637824pt;}
.wsc_c02046{word-spacing:-13.445376pt;}
.wsa_c02046{word-spacing:-11.088000pt;}
.ws9_c02046{word-spacing:-11.037312pt;}
.ws2_c02046{word-spacing:-10.015104pt;}
.ws4_c02046{word-spacing:-9.854592pt;}
.ws14_c02046{word-spacing:-1.919232pt;}
.ws10_c02046{word-spacing:-0.958848pt;}
.ws11_c02046{word-spacing:-0.899712pt;}
.wsd_c02046{word-spacing:-0.865920pt;}
.wsf_c02046{word-spacing:-0.105600pt;}
.ws12_c02046{word-spacing:-0.088704pt;}
.ws13_c02046{word-spacing:-0.076032pt;}
.wse_c02046{word-spacing:0.000000pt;}
.wsb_c02046{word-spacing:29.600256pt;}
.ws8_c02046{word-spacing:32.127744pt;}
.ws6_c02046{word-spacing:32.659968pt;}
.ws1_c02046{word-spacing:33.563904pt;}
.ws0_c02046{word-spacing:33.796224pt;}
.ws3_c02046{word-spacing:34.860672pt;}
.ws5_c02046{word-spacing:35.468928pt;}
.ws7_c02046{word-spacing:37.357056pt;}
._0_c02046{margin-left:-1.731840pt;}
._2_c02046{width:1.317888pt;}
._4_c02046{width:3.814272pt;}
._5_c02046{width:13.121280pt;}
._1_c02046{width:44.668800pt;}
._3_c02046{width:45.805056pt;}
.fs0_c02046{font-size:42.240000pt;}
.fs1_c02046{font-size:53.760000pt;}
.y0_c02046{bottom:0.000000pt;}
.y19_c02046{bottom:130.665211pt;}
.y1b_c02046{bottom:165.866875pt;}
.y1a_c02046{bottom:174.507067pt;}
.y18_c02046{bottom:245.225371pt;}
.y17_c02046{bottom:317.225563pt;}
.y15_c02046{bottom:361.386427pt;}
.y11_c02046{bottom:377.386939pt;}
.y16_c02046{bottom:407.786011pt;}
.y14_c02046{bottom:437.226235pt;}
.y13_c02046{bottom:453.226747pt;}
.y10_c02046{bottom:482.666971pt;}
.y12_c02046{bottom:497.386555pt;}
.yf_c02046{bottom:513.387067pt;}
.y1c_c02046{bottom:546.027067pt;}
.yb_c02046{bottom:593.385179pt;}
.yd_c02046{bottom:628.586875pt;}
.yc_c02046{bottom:637.227067pt;}
.ya_c02046{bottom:707.945339pt;}
.y9_c02046{bottom:779.945531pt;}
.y7_c02046{bottom:823.786427pt;}
.y3_c02046{bottom:839.786939pt;}
.y8_c02046{bottom:870.505979pt;}
.y6_c02046{bottom:899.946203pt;}
.y5_c02046{bottom:915.946715pt;}
.y2_c02046{bottom:945.386939pt;}
.y4_c02046{bottom:959.786555pt;}
.y1_c02046{bottom:975.787067pt;}
.ye_c02046{bottom:1008.747067pt;}
.h3_c02046{height:28.916250pt;}
.h1_c02046{height:37.063125pt;}
.h2_c02046{height:37.166250pt;}
.h4_c02046{height:48.581988pt;}
.h0_c02046{height:1122.666667pt;}
.w1_c02046{width:793.333333pt;}
.w0_c02046{width:793.626667pt;}
.x0_c02046{left:0.000000pt;}
.xd_c02046{left:104.000000pt;}
.x8_c02046{left:391.999872pt;}
.x4_c02046{left:396.160512pt;}
.xb_c02046{left:400.960000pt;}
.x7_c02046{left:404.799648pt;}
.x5_c02046{left:410.560128pt;}
.x1_c02046{left:411.840000pt;}
.xa_c02046{left:429.760320pt;}
.x9_c02046{left:437.439552pt;}
.x6_c02046{left:438.400512pt;}
.xc_c02046{left:450.560320pt;}
.x3_c02046{left:455.039904pt;}
.x2_c02046{left:468.159648pt;}
}





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

.ir_c02047:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02047{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02047;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02047{font-family:ff1_c02047;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02047;src:url('chunks/assets/font_f301ca72380abb128c574c55.woff2')format("woff");}.ff2_c02047{font-family:ff2_c02047;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02047;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02047{font-family:ff3_c02047;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02047{vertical-align:0.000000px;}
.v1_c02047{vertical-align:1.439424px;}
.ls15_c02047{letter-spacing:-0.755568px;}
.lsa_c02047{letter-spacing:-0.574992px;}
.ls10_c02047{letter-spacing:-0.275616px;}
.ls9_c02047{letter-spacing:-0.266112px;}
.lse_c02047{letter-spacing:-0.261360px;}
.ls7_c02047{letter-spacing:-0.242352px;}
.ls5_c02047{letter-spacing:-0.118800px;}
.ls13_c02047{letter-spacing:0.000000px;}
.ls1_c02047{letter-spacing:0.006048px;}
.lsd_c02047{letter-spacing:0.038016px;}
.ls6_c02047{letter-spacing:0.128304px;}
.ls14_c02047{letter-spacing:0.242352px;}
.lsc_c02047{letter-spacing:0.508464px;}
.ls12_c02047{letter-spacing:0.514080px;}
.lsf_c02047{letter-spacing:0.536976px;}
.lsb_c02047{letter-spacing:0.579744px;}
.ls11_c02047{letter-spacing:0.594000px;}
.ls8_c02047{letter-spacing:0.598752px;}
.ls3_c02047{letter-spacing:0.613008px;}
.ls2_c02047{letter-spacing:0.651024px;}
.ls4_c02047{letter-spacing:0.717552px;}
.ls0_c02047{letter-spacing:0.722304px;}
.sc__c02047{text-shadow:none;}
.sc0_c02047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02047{-webkit-text-stroke:0px transparent;}
.sc0_c02047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02047{word-spacing:-15.126048px;}
.ws9_c02047{word-spacing:-12.474000px;}
.ws7_c02047{word-spacing:-12.459744px;}
.ws8_c02047{word-spacing:-12.416976px;}
.wsc_c02047{word-spacing:-12.122352px;}
.wsd_c02047{word-spacing:-11.124432px;}
.ws16_c02047{word-spacing:-2.159136px;}
.ws12_c02047{word-spacing:-1.083456px;}
.ws17_c02047{word-spacing:-1.012176px;}
.wse_c02047{word-spacing:-0.974160px;}
.ws13_c02047{word-spacing:-0.399168px;}
.ws10_c02047{word-spacing:-0.118800px;}
.ws14_c02047{word-spacing:-0.099792px;}
.ws11_c02047{word-spacing:-0.095040px;}
.ws15_c02047{word-spacing:-0.085536px;}
.wsf_c02047{word-spacing:0.000000px;}
.ws2_c02047{word-spacing:1.330560px;}
.wsa_c02047{word-spacing:33.300288px;}
.ws5_c02047{word-spacing:36.742464px;}
.ws1_c02047{word-spacing:37.759392px;}
.ws0_c02047{word-spacing:38.020752px;}
.ws3_c02047{word-spacing:39.218256px;}
.ws4_c02047{word-spacing:39.902544px;}
.ws6_c02047{word-spacing:42.026688px;}
._0_c02047{margin-left:-1.948320px;}
._2_c02047{width:1.482624px;}
._6_c02047{width:3.369168px;}
._4_c02047{width:4.999104px;}
._5_c02047{width:14.761440px;}
._1_c02047{width:50.252400px;}
._3_c02047{width:51.530688px;}
.fc0_c02047{color:rgb(0,0,0);}
.fs0_c02047{font-size:47.520000px;}
.fs1_c02047{font-size:60.480000px;}
.y0_c02047{bottom:0.000000px;}
.y19_c02047{bottom:146.998362px;}
.y1b_c02047{bottom:186.600234px;}
.y1a_c02047{bottom:196.320450px;}
.y18_c02047{bottom:275.878542px;}
.y17_c02047{bottom:356.878758px;}
.y15_c02047{bottom:406.559730px;}
.y11_c02047{bottom:424.560306px;}
.y16_c02047{bottom:458.759262px;}
.y14_c02047{bottom:491.879514px;}
.y13_c02047{bottom:509.880090px;}
.y10_c02047{bottom:543.000342px;}
.y12_c02047{bottom:559.559874px;}
.yf_c02047{bottom:577.560450px;}
.y1c_c02047{bottom:614.280450px;}
.yb_c02047{bottom:667.558326px;}
.yd_c02047{bottom:707.160234px;}
.yc_c02047{bottom:716.880450px;}
.ya_c02047{bottom:796.438506px;}
.y9_c02047{bottom:877.438722px;}
.y7_c02047{bottom:926.759730px;}
.y3_c02047{bottom:944.760306px;}
.y8_c02047{bottom:979.319226px;}
.y6_c02047{bottom:1012.439478px;}
.y5_c02047{bottom:1030.440054px;}
.y2_c02047{bottom:1063.560306px;}
.y4_c02047{bottom:1079.759874px;}
.y1_c02047{bottom:1097.760450px;}
.ye_c02047{bottom:1134.840450px;}
.h3_c02047{height:32.530781px;}
.h1_c02047{height:41.696016px;}
.h2_c02047{height:41.812031px;}
.h4_c02047{height:54.654737px;}
.h0_c02047{height:1263.000000px;}
.w1_c02047{width:892.500000px;}
.w0_c02047{width:892.830000px;}
.x0_c02047{left:0.000000px;}
.xd_c02047{left:117.000000px;}
.x8_c02047{left:440.999856px;}
.x4_c02047{left:445.680576px;}
.xb_c02047{left:451.080000px;}
.x7_c02047{left:455.399604px;}
.x5_c02047{left:461.880144px;}
.x1_c02047{left:463.320000px;}
.xa_c02047{left:483.480360px;}
.x9_c02047{left:492.119496px;}
.x6_c02047{left:493.200576px;}
.xc_c02047{left:506.880360px;}
.x3_c02047{left:511.919892px;}
.x2_c02047{left:526.679604px;}
@media print{
.v0_c02047{vertical-align:0.000000pt;}
.v1_c02047{vertical-align:1.279488pt;}
.ls15_c02047{letter-spacing:-0.671616pt;}
.lsa_c02047{letter-spacing:-0.511104pt;}
.ls10_c02047{letter-spacing:-0.244992pt;}
.ls9_c02047{letter-spacing:-0.236544pt;}
.lse_c02047{letter-spacing:-0.232320pt;}
.ls7_c02047{letter-spacing:-0.215424pt;}
.ls5_c02047{letter-spacing:-0.105600pt;}
.ls13_c02047{letter-spacing:0.000000pt;}
.ls1_c02047{letter-spacing:0.005376pt;}
.lsd_c02047{letter-spacing:0.033792pt;}
.ls6_c02047{letter-spacing:0.114048pt;}
.ls14_c02047{letter-spacing:0.215424pt;}
.lsc_c02047{letter-spacing:0.451968pt;}
.ls12_c02047{letter-spacing:0.456960pt;}
.lsf_c02047{letter-spacing:0.477312pt;}
.lsb_c02047{letter-spacing:0.515328pt;}
.ls11_c02047{letter-spacing:0.528000pt;}
.ls8_c02047{letter-spacing:0.532224pt;}
.ls3_c02047{letter-spacing:0.544896pt;}
.ls2_c02047{letter-spacing:0.578688pt;}
.ls4_c02047{letter-spacing:0.637824pt;}
.ls0_c02047{letter-spacing:0.642048pt;}
.wsb_c02047{word-spacing:-13.445376pt;}
.ws9_c02047{word-spacing:-11.088000pt;}
.ws7_c02047{word-spacing:-11.075328pt;}
.ws8_c02047{word-spacing:-11.037312pt;}
.wsc_c02047{word-spacing:-10.775424pt;}
.wsd_c02047{word-spacing:-9.888384pt;}
.ws16_c02047{word-spacing:-1.919232pt;}
.ws12_c02047{word-spacing:-0.963072pt;}
.ws17_c02047{word-spacing:-0.899712pt;}
.wse_c02047{word-spacing:-0.865920pt;}
.ws13_c02047{word-spacing:-0.354816pt;}
.ws10_c02047{word-spacing:-0.105600pt;}
.ws14_c02047{word-spacing:-0.088704pt;}
.ws11_c02047{word-spacing:-0.084480pt;}
.ws15_c02047{word-spacing:-0.076032pt;}
.wsf_c02047{word-spacing:0.000000pt;}
.ws2_c02047{word-spacing:1.182720pt;}
.wsa_c02047{word-spacing:29.600256pt;}
.ws5_c02047{word-spacing:32.659968pt;}
.ws1_c02047{word-spacing:33.563904pt;}
.ws0_c02047{word-spacing:33.796224pt;}
.ws3_c02047{word-spacing:34.860672pt;}
.ws4_c02047{word-spacing:35.468928pt;}
.ws6_c02047{word-spacing:37.357056pt;}
._0_c02047{margin-left:-1.731840pt;}
._2_c02047{width:1.317888pt;}
._6_c02047{width:2.994816pt;}
._4_c02047{width:4.443648pt;}
._5_c02047{width:13.121280pt;}
._1_c02047{width:44.668800pt;}
._3_c02047{width:45.805056pt;}
.fs0_c02047{font-size:42.240000pt;}
.fs1_c02047{font-size:53.760000pt;}
.y0_c02047{bottom:0.000000pt;}
.y19_c02047{bottom:130.665211pt;}
.y1b_c02047{bottom:165.866875pt;}
.y1a_c02047{bottom:174.507067pt;}
.y18_c02047{bottom:245.225371pt;}
.y17_c02047{bottom:317.225563pt;}
.y15_c02047{bottom:361.386427pt;}
.y11_c02047{bottom:377.386939pt;}
.y16_c02047{bottom:407.786011pt;}
.y14_c02047{bottom:437.226235pt;}
.y13_c02047{bottom:453.226747pt;}
.y10_c02047{bottom:482.666971pt;}
.y12_c02047{bottom:497.386555pt;}
.yf_c02047{bottom:513.387067pt;}
.y1c_c02047{bottom:546.027067pt;}
.yb_c02047{bottom:593.385179pt;}
.yd_c02047{bottom:628.586875pt;}
.yc_c02047{bottom:637.227067pt;}
.ya_c02047{bottom:707.945339pt;}
.y9_c02047{bottom:779.945531pt;}
.y7_c02047{bottom:823.786427pt;}
.y3_c02047{bottom:839.786939pt;}
.y8_c02047{bottom:870.505979pt;}
.y6_c02047{bottom:899.946203pt;}
.y5_c02047{bottom:915.946715pt;}
.y2_c02047{bottom:945.386939pt;}
.y4_c02047{bottom:959.786555pt;}
.y1_c02047{bottom:975.787067pt;}
.ye_c02047{bottom:1008.747067pt;}
.h3_c02047{height:28.916250pt;}
.h1_c02047{height:37.063125pt;}
.h2_c02047{height:37.166250pt;}
.h4_c02047{height:48.581988pt;}
.h0_c02047{height:1122.666667pt;}
.w1_c02047{width:793.333333pt;}
.w0_c02047{width:793.626667pt;}
.x0_c02047{left:0.000000pt;}
.xd_c02047{left:104.000000pt;}
.x8_c02047{left:391.999872pt;}
.x4_c02047{left:396.160512pt;}
.xb_c02047{left:400.960000pt;}
.x7_c02047{left:404.799648pt;}
.x5_c02047{left:410.560128pt;}
.x1_c02047{left:411.840000pt;}
.xa_c02047{left:429.760320pt;}
.x9_c02047{left:437.439552pt;}
.x6_c02047{left:438.400512pt;}
.xc_c02047{left:450.560320pt;}
.x3_c02047{left:455.039904pt;}
.x2_c02047{left:468.159648pt;}
}





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

.ir_c02048:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02048;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02048{font-family:ff1_c02048;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02048;src:url('chunks/assets/font_e8e2c4f8f0096b5bfbd67897.woff2')format("woff");}.ff2_c02048{font-family:ff2_c02048;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02048;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02048{font-family:ff3_c02048;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02048{vertical-align:0.000000px;}
.v1_c02048{vertical-align:1.439424px;}
.ls8_c02048{letter-spacing:-0.755568px;}
.ls9_c02048{letter-spacing:-0.574992px;}
.lsd_c02048{letter-spacing:-0.427680px;}
.lsa_c02048{letter-spacing:-0.361152px;}
.ls11_c02048{letter-spacing:-0.275616px;}
.lsf_c02048{letter-spacing:-0.261360px;}
.ls5_c02048{letter-spacing:-0.242352px;}
.ls3_c02048{letter-spacing:-0.118800px;}
.ls14_c02048{letter-spacing:0.000000px;}
.ls0_c02048{letter-spacing:0.006048px;}
.ls4_c02048{letter-spacing:0.128304px;}
.ls6_c02048{letter-spacing:0.242352px;}
.lsc_c02048{letter-spacing:0.508464px;}
.ls13_c02048{letter-spacing:0.514080px;}
.ls10_c02048{letter-spacing:0.536976px;}
.lsb_c02048{letter-spacing:0.579744px;}
.ls12_c02048{letter-spacing:0.594000px;}
.ls7_c02048{letter-spacing:0.598752px;}
.ls1_c02048{letter-spacing:0.613008px;}
.lse_c02048{letter-spacing:0.651024px;}
.ls2_c02048{letter-spacing:0.717552px;}
.sc__c02048{text-shadow:none;}
.sc0_c02048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02048{-webkit-text-stroke:0px transparent;}
.sc0_c02048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02048{word-spacing:-15.126048px;}
.wsa_c02048{word-spacing:-12.474000px;}
.ws9_c02048{word-spacing:-12.416976px;}
.ws2_c02048{word-spacing:-12.122352px;}
.ws4_c02048{word-spacing:-11.124432px;}
.ws14_c02048{word-spacing:-2.159136px;}
.ws11_c02048{word-spacing:-1.012176px;}
.wsd_c02048{word-spacing:-0.974160px;}
.wsf_c02048{word-spacing:-0.118800px;}
.ws12_c02048{word-spacing:-0.099792px;}
.ws13_c02048{word-spacing:-0.085536px;}
.wse_c02048{word-spacing:0.000000px;}
.ws10_c02048{word-spacing:0.066528px;}
.wsb_c02048{word-spacing:33.300288px;}
.ws8_c02048{word-spacing:36.143712px;}
.ws6_c02048{word-spacing:36.742464px;}
.ws1_c02048{word-spacing:37.759392px;}
.ws0_c02048{word-spacing:38.020752px;}
.ws3_c02048{word-spacing:39.218256px;}
.ws5_c02048{word-spacing:39.902544px;}
.ws7_c02048{word-spacing:42.026688px;}
._0_c02048{margin-left:-1.948320px;}
._2_c02048{width:1.482624px;}
._4_c02048{width:3.369168px;}
._5_c02048{width:14.761440px;}
._1_c02048{width:50.252400px;}
._3_c02048{width:51.530688px;}
.fc0_c02048{color:rgb(0,0,0);}
.fs0_c02048{font-size:47.520000px;}
.fs1_c02048{font-size:60.480000px;}
.y0_c02048{bottom:0.000000px;}
.y19_c02048{bottom:146.998362px;}
.y1b_c02048{bottom:186.600234px;}
.y1a_c02048{bottom:196.320450px;}
.y18_c02048{bottom:275.878542px;}
.y17_c02048{bottom:356.878758px;}
.y15_c02048{bottom:406.559730px;}
.y11_c02048{bottom:424.560306px;}
.y16_c02048{bottom:458.759262px;}
.y14_c02048{bottom:491.879514px;}
.y13_c02048{bottom:509.880090px;}
.y10_c02048{bottom:543.000342px;}
.y12_c02048{bottom:559.559874px;}
.yf_c02048{bottom:577.560450px;}
.y1c_c02048{bottom:614.280450px;}
.yb_c02048{bottom:667.558326px;}
.yd_c02048{bottom:707.160234px;}
.yc_c02048{bottom:716.880450px;}
.ya_c02048{bottom:796.438506px;}
.y9_c02048{bottom:877.438722px;}
.y7_c02048{bottom:926.759730px;}
.y3_c02048{bottom:944.760306px;}
.y8_c02048{bottom:979.319226px;}
.y6_c02048{bottom:1012.439478px;}
.y5_c02048{bottom:1030.440054px;}
.y2_c02048{bottom:1063.560306px;}
.y4_c02048{bottom:1079.759874px;}
.y1_c02048{bottom:1097.760450px;}
.ye_c02048{bottom:1134.840450px;}
.h3_c02048{height:32.530781px;}
.h1_c02048{height:41.696016px;}
.h2_c02048{height:41.812031px;}
.h4_c02048{height:54.654737px;}
.h0_c02048{height:1263.000000px;}
.w1_c02048{width:892.500000px;}
.w0_c02048{width:892.830000px;}
.x0_c02048{left:0.000000px;}
.xd_c02048{left:117.000000px;}
.x8_c02048{left:440.999856px;}
.x4_c02048{left:445.680576px;}
.xb_c02048{left:451.080000px;}
.x7_c02048{left:455.399604px;}
.x5_c02048{left:461.880144px;}
.x1_c02048{left:463.320000px;}
.xa_c02048{left:483.480360px;}
.x9_c02048{left:492.119496px;}
.x6_c02048{left:493.200576px;}
.xc_c02048{left:506.880360px;}
.x3_c02048{left:511.919892px;}
.x2_c02048{left:526.679604px;}
@media print{
.v0_c02048{vertical-align:0.000000pt;}
.v1_c02048{vertical-align:1.279488pt;}
.ls8_c02048{letter-spacing:-0.671616pt;}
.ls9_c02048{letter-spacing:-0.511104pt;}
.lsd_c02048{letter-spacing:-0.380160pt;}
.lsa_c02048{letter-spacing:-0.321024pt;}
.ls11_c02048{letter-spacing:-0.244992pt;}
.lsf_c02048{letter-spacing:-0.232320pt;}
.ls5_c02048{letter-spacing:-0.215424pt;}
.ls3_c02048{letter-spacing:-0.105600pt;}
.ls14_c02048{letter-spacing:0.000000pt;}
.ls0_c02048{letter-spacing:0.005376pt;}
.ls4_c02048{letter-spacing:0.114048pt;}
.ls6_c02048{letter-spacing:0.215424pt;}
.lsc_c02048{letter-spacing:0.451968pt;}
.ls13_c02048{letter-spacing:0.456960pt;}
.ls10_c02048{letter-spacing:0.477312pt;}
.lsb_c02048{letter-spacing:0.515328pt;}
.ls12_c02048{letter-spacing:0.528000pt;}
.ls7_c02048{letter-spacing:0.532224pt;}
.ls1_c02048{letter-spacing:0.544896pt;}
.lse_c02048{letter-spacing:0.578688pt;}
.ls2_c02048{letter-spacing:0.637824pt;}
.wsc_c02048{word-spacing:-13.445376pt;}
.wsa_c02048{word-spacing:-11.088000pt;}
.ws9_c02048{word-spacing:-11.037312pt;}
.ws2_c02048{word-spacing:-10.775424pt;}
.ws4_c02048{word-spacing:-9.888384pt;}
.ws14_c02048{word-spacing:-1.919232pt;}
.ws11_c02048{word-spacing:-0.899712pt;}
.wsd_c02048{word-spacing:-0.865920pt;}
.wsf_c02048{word-spacing:-0.105600pt;}
.ws12_c02048{word-spacing:-0.088704pt;}
.ws13_c02048{word-spacing:-0.076032pt;}
.wse_c02048{word-spacing:0.000000pt;}
.ws10_c02048{word-spacing:0.059136pt;}
.wsb_c02048{word-spacing:29.600256pt;}
.ws8_c02048{word-spacing:32.127744pt;}
.ws6_c02048{word-spacing:32.659968pt;}
.ws1_c02048{word-spacing:33.563904pt;}
.ws0_c02048{word-spacing:33.796224pt;}
.ws3_c02048{word-spacing:34.860672pt;}
.ws5_c02048{word-spacing:35.468928pt;}
.ws7_c02048{word-spacing:37.357056pt;}
._0_c02048{margin-left:-1.731840pt;}
._2_c02048{width:1.317888pt;}
._4_c02048{width:2.994816pt;}
._5_c02048{width:13.121280pt;}
._1_c02048{width:44.668800pt;}
._3_c02048{width:45.805056pt;}
.fs0_c02048{font-size:42.240000pt;}
.fs1_c02048{font-size:53.760000pt;}
.y0_c02048{bottom:0.000000pt;}
.y19_c02048{bottom:130.665211pt;}
.y1b_c02048{bottom:165.866875pt;}
.y1a_c02048{bottom:174.507067pt;}
.y18_c02048{bottom:245.225371pt;}
.y17_c02048{bottom:317.225563pt;}
.y15_c02048{bottom:361.386427pt;}
.y11_c02048{bottom:377.386939pt;}
.y16_c02048{bottom:407.786011pt;}
.y14_c02048{bottom:437.226235pt;}
.y13_c02048{bottom:453.226747pt;}
.y10_c02048{bottom:482.666971pt;}
.y12_c02048{bottom:497.386555pt;}
.yf_c02048{bottom:513.387067pt;}
.y1c_c02048{bottom:546.027067pt;}
.yb_c02048{bottom:593.385179pt;}
.yd_c02048{bottom:628.586875pt;}
.yc_c02048{bottom:637.227067pt;}
.ya_c02048{bottom:707.945339pt;}
.y9_c02048{bottom:779.945531pt;}
.y7_c02048{bottom:823.786427pt;}
.y3_c02048{bottom:839.786939pt;}
.y8_c02048{bottom:870.505979pt;}
.y6_c02048{bottom:899.946203pt;}
.y5_c02048{bottom:915.946715pt;}
.y2_c02048{bottom:945.386939pt;}
.y4_c02048{bottom:959.786555pt;}
.y1_c02048{bottom:975.787067pt;}
.ye_c02048{bottom:1008.747067pt;}
.h3_c02048{height:28.916250pt;}
.h1_c02048{height:37.063125pt;}
.h2_c02048{height:37.166250pt;}
.h4_c02048{height:48.581988pt;}
.h0_c02048{height:1122.666667pt;}
.w1_c02048{width:793.333333pt;}
.w0_c02048{width:793.626667pt;}
.x0_c02048{left:0.000000pt;}
.xd_c02048{left:104.000000pt;}
.x8_c02048{left:391.999872pt;}
.x4_c02048{left:396.160512pt;}
.xb_c02048{left:400.960000pt;}
.x7_c02048{left:404.799648pt;}
.x5_c02048{left:410.560128pt;}
.x1_c02048{left:411.840000pt;}
.xa_c02048{left:429.760320pt;}
.x9_c02048{left:437.439552pt;}
.x6_c02048{left:438.400512pt;}
.xc_c02048{left:450.560320pt;}
.x3_c02048{left:455.039904pt;}
.x2_c02048{left:468.159648pt;}
}





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

.ir_c02049:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02049{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02049;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02049{font-family:ff1_c02049;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02049;src:url('chunks/assets/font_95d467c514d831574226402c.woff2')format("woff");}.ff2_c02049{font-family:ff2_c02049;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02049;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02049{font-family:ff3_c02049;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02049{vertical-align:0.000000px;}
.v1_c02049{vertical-align:1.439424px;}
.ls8_c02049{letter-spacing:-0.755568px;}
.ls9_c02049{letter-spacing:-0.574992px;}
.lsd_c02049{letter-spacing:-0.427680px;}
.lsa_c02049{letter-spacing:-0.361152px;}
.ls11_c02049{letter-spacing:-0.275616px;}
.lsf_c02049{letter-spacing:-0.261360px;}
.ls5_c02049{letter-spacing:-0.242352px;}
.ls3_c02049{letter-spacing:-0.118800px;}
.ls14_c02049{letter-spacing:0.000000px;}
.ls0_c02049{letter-spacing:0.006048px;}
.ls4_c02049{letter-spacing:0.128304px;}
.ls6_c02049{letter-spacing:0.242352px;}
.lsc_c02049{letter-spacing:0.508464px;}
.ls13_c02049{letter-spacing:0.514080px;}
.ls10_c02049{letter-spacing:0.536976px;}
.lsb_c02049{letter-spacing:0.579744px;}
.ls12_c02049{letter-spacing:0.594000px;}
.ls7_c02049{letter-spacing:0.598752px;}
.ls1_c02049{letter-spacing:0.613008px;}
.lse_c02049{letter-spacing:0.651024px;}
.ls2_c02049{letter-spacing:0.717552px;}
.sc__c02049{text-shadow:none;}
.sc0_c02049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02049{-webkit-text-stroke:0px transparent;}
.sc0_c02049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02049{word-spacing:-15.126048px;}
.wsa_c02049{word-spacing:-12.474000px;}
.ws9_c02049{word-spacing:-12.416976px;}
.ws2_c02049{word-spacing:-12.122352px;}
.ws4_c02049{word-spacing:-11.124432px;}
.ws14_c02049{word-spacing:-2.159136px;}
.ws11_c02049{word-spacing:-1.012176px;}
.wsd_c02049{word-spacing:-0.974160px;}
.wsf_c02049{word-spacing:-0.118800px;}
.ws12_c02049{word-spacing:-0.099792px;}
.ws13_c02049{word-spacing:-0.085536px;}
.wse_c02049{word-spacing:0.000000px;}
.ws10_c02049{word-spacing:0.066528px;}
.wsb_c02049{word-spacing:33.300288px;}
.ws8_c02049{word-spacing:36.143712px;}
.ws6_c02049{word-spacing:36.742464px;}
.ws1_c02049{word-spacing:37.759392px;}
.ws0_c02049{word-spacing:38.020752px;}
.ws3_c02049{word-spacing:39.218256px;}
.ws5_c02049{word-spacing:39.902544px;}
.ws7_c02049{word-spacing:42.026688px;}
._0_c02049{margin-left:-1.948320px;}
._2_c02049{width:1.482624px;}
._4_c02049{width:3.369168px;}
._5_c02049{width:14.761440px;}
._1_c02049{width:50.252400px;}
._3_c02049{width:51.530688px;}
.fc0_c02049{color:rgb(0,0,0);}
.fs0_c02049{font-size:47.520000px;}
.fs1_c02049{font-size:60.480000px;}
.y0_c02049{bottom:0.000000px;}
.y19_c02049{bottom:146.998362px;}
.y1b_c02049{bottom:186.600234px;}
.y1a_c02049{bottom:196.320450px;}
.y18_c02049{bottom:275.878542px;}
.y17_c02049{bottom:356.878758px;}
.y15_c02049{bottom:406.559730px;}
.y11_c02049{bottom:424.560306px;}
.y16_c02049{bottom:458.759262px;}
.y14_c02049{bottom:491.879514px;}
.y13_c02049{bottom:509.880090px;}
.y10_c02049{bottom:543.000342px;}
.y12_c02049{bottom:559.559874px;}
.yf_c02049{bottom:577.560450px;}
.y1c_c02049{bottom:614.280450px;}
.yb_c02049{bottom:667.558326px;}
.yd_c02049{bottom:707.160234px;}
.yc_c02049{bottom:716.880450px;}
.ya_c02049{bottom:796.438506px;}
.y9_c02049{bottom:877.438722px;}
.y7_c02049{bottom:926.759730px;}
.y3_c02049{bottom:944.760306px;}
.y8_c02049{bottom:979.319226px;}
.y6_c02049{bottom:1012.439478px;}
.y5_c02049{bottom:1030.440054px;}
.y2_c02049{bottom:1063.560306px;}
.y4_c02049{bottom:1079.759874px;}
.y1_c02049{bottom:1097.760450px;}
.ye_c02049{bottom:1134.840450px;}
.h3_c02049{height:32.530781px;}
.h1_c02049{height:41.696016px;}
.h2_c02049{height:41.812031px;}
.h4_c02049{height:54.654737px;}
.h0_c02049{height:1263.000000px;}
.w1_c02049{width:892.500000px;}
.w0_c02049{width:892.830000px;}
.x0_c02049{left:0.000000px;}
.xd_c02049{left:117.000000px;}
.x8_c02049{left:440.999856px;}
.x4_c02049{left:445.680576px;}
.xb_c02049{left:451.080000px;}
.x7_c02049{left:455.399604px;}
.x5_c02049{left:461.880144px;}
.x1_c02049{left:463.320000px;}
.xa_c02049{left:483.480360px;}
.x9_c02049{left:492.119496px;}
.x6_c02049{left:493.200576px;}
.xc_c02049{left:506.880360px;}
.x3_c02049{left:511.919892px;}
.x2_c02049{left:526.679604px;}
@media print{
.v0_c02049{vertical-align:0.000000pt;}
.v1_c02049{vertical-align:1.279488pt;}
.ls8_c02049{letter-spacing:-0.671616pt;}
.ls9_c02049{letter-spacing:-0.511104pt;}
.lsd_c02049{letter-spacing:-0.380160pt;}
.lsa_c02049{letter-spacing:-0.321024pt;}
.ls11_c02049{letter-spacing:-0.244992pt;}
.lsf_c02049{letter-spacing:-0.232320pt;}
.ls5_c02049{letter-spacing:-0.215424pt;}
.ls3_c02049{letter-spacing:-0.105600pt;}
.ls14_c02049{letter-spacing:0.000000pt;}
.ls0_c02049{letter-spacing:0.005376pt;}
.ls4_c02049{letter-spacing:0.114048pt;}
.ls6_c02049{letter-spacing:0.215424pt;}
.lsc_c02049{letter-spacing:0.451968pt;}
.ls13_c02049{letter-spacing:0.456960pt;}
.ls10_c02049{letter-spacing:0.477312pt;}
.lsb_c02049{letter-spacing:0.515328pt;}
.ls12_c02049{letter-spacing:0.528000pt;}
.ls7_c02049{letter-spacing:0.532224pt;}
.ls1_c02049{letter-spacing:0.544896pt;}
.lse_c02049{letter-spacing:0.578688pt;}
.ls2_c02049{letter-spacing:0.637824pt;}
.wsc_c02049{word-spacing:-13.445376pt;}
.wsa_c02049{word-spacing:-11.088000pt;}
.ws9_c02049{word-spacing:-11.037312pt;}
.ws2_c02049{word-spacing:-10.775424pt;}
.ws4_c02049{word-spacing:-9.888384pt;}
.ws14_c02049{word-spacing:-1.919232pt;}
.ws11_c02049{word-spacing:-0.899712pt;}
.wsd_c02049{word-spacing:-0.865920pt;}
.wsf_c02049{word-spacing:-0.105600pt;}
.ws12_c02049{word-spacing:-0.088704pt;}
.ws13_c02049{word-spacing:-0.076032pt;}
.wse_c02049{word-spacing:0.000000pt;}
.ws10_c02049{word-spacing:0.059136pt;}
.wsb_c02049{word-spacing:29.600256pt;}
.ws8_c02049{word-spacing:32.127744pt;}
.ws6_c02049{word-spacing:32.659968pt;}
.ws1_c02049{word-spacing:33.563904pt;}
.ws0_c02049{word-spacing:33.796224pt;}
.ws3_c02049{word-spacing:34.860672pt;}
.ws5_c02049{word-spacing:35.468928pt;}
.ws7_c02049{word-spacing:37.357056pt;}
._0_c02049{margin-left:-1.731840pt;}
._2_c02049{width:1.317888pt;}
._4_c02049{width:2.994816pt;}
._5_c02049{width:13.121280pt;}
._1_c02049{width:44.668800pt;}
._3_c02049{width:45.805056pt;}
.fs0_c02049{font-size:42.240000pt;}
.fs1_c02049{font-size:53.760000pt;}
.y0_c02049{bottom:0.000000pt;}
.y19_c02049{bottom:130.665211pt;}
.y1b_c02049{bottom:165.866875pt;}
.y1a_c02049{bottom:174.507067pt;}
.y18_c02049{bottom:245.225371pt;}
.y17_c02049{bottom:317.225563pt;}
.y15_c02049{bottom:361.386427pt;}
.y11_c02049{bottom:377.386939pt;}
.y16_c02049{bottom:407.786011pt;}
.y14_c02049{bottom:437.226235pt;}
.y13_c02049{bottom:453.226747pt;}
.y10_c02049{bottom:482.666971pt;}
.y12_c02049{bottom:497.386555pt;}
.yf_c02049{bottom:513.387067pt;}
.y1c_c02049{bottom:546.027067pt;}
.yb_c02049{bottom:593.385179pt;}
.yd_c02049{bottom:628.586875pt;}
.yc_c02049{bottom:637.227067pt;}
.ya_c02049{bottom:707.945339pt;}
.y9_c02049{bottom:779.945531pt;}
.y7_c02049{bottom:823.786427pt;}
.y3_c02049{bottom:839.786939pt;}
.y8_c02049{bottom:870.505979pt;}
.y6_c02049{bottom:899.946203pt;}
.y5_c02049{bottom:915.946715pt;}
.y2_c02049{bottom:945.386939pt;}
.y4_c02049{bottom:959.786555pt;}
.y1_c02049{bottom:975.787067pt;}
.ye_c02049{bottom:1008.747067pt;}
.h3_c02049{height:28.916250pt;}
.h1_c02049{height:37.063125pt;}
.h2_c02049{height:37.166250pt;}
.h4_c02049{height:48.581988pt;}
.h0_c02049{height:1122.666667pt;}
.w1_c02049{width:793.333333pt;}
.w0_c02049{width:793.626667pt;}
.x0_c02049{left:0.000000pt;}
.xd_c02049{left:104.000000pt;}
.x8_c02049{left:391.999872pt;}
.x4_c02049{left:396.160512pt;}
.xb_c02049{left:400.960000pt;}
.x7_c02049{left:404.799648pt;}
.x5_c02049{left:410.560128pt;}
.x1_c02049{left:411.840000pt;}
.xa_c02049{left:429.760320pt;}
.x9_c02049{left:437.439552pt;}
.x6_c02049{left:438.400512pt;}
.xc_c02049{left:450.560320pt;}
.x3_c02049{left:455.039904pt;}
.x2_c02049{left:468.159648pt;}
}





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

.ir_c02050:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02050;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02050{font-family:ff1_c02050;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02050;src:url('chunks/assets/font_95d467c514d831574226402c.woff2')format("woff");}.ff2_c02050{font-family:ff2_c02050;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02050;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02050{font-family:ff3_c02050;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02050{vertical-align:0.000000px;}
.v1_c02050{vertical-align:1.439424px;}
.ls8_c02050{letter-spacing:-0.755568px;}
.ls9_c02050{letter-spacing:-0.574992px;}
.lsd_c02050{letter-spacing:-0.427680px;}
.lsa_c02050{letter-spacing:-0.361152px;}
.ls11_c02050{letter-spacing:-0.275616px;}
.lsf_c02050{letter-spacing:-0.261360px;}
.ls5_c02050{letter-spacing:-0.242352px;}
.ls3_c02050{letter-spacing:-0.118800px;}
.ls14_c02050{letter-spacing:0.000000px;}
.ls0_c02050{letter-spacing:0.006048px;}
.ls4_c02050{letter-spacing:0.128304px;}
.ls6_c02050{letter-spacing:0.242352px;}
.lsc_c02050{letter-spacing:0.508464px;}
.ls13_c02050{letter-spacing:0.514080px;}
.ls10_c02050{letter-spacing:0.536976px;}
.lsb_c02050{letter-spacing:0.579744px;}
.ls12_c02050{letter-spacing:0.594000px;}
.ls7_c02050{letter-spacing:0.598752px;}
.ls1_c02050{letter-spacing:0.613008px;}
.lse_c02050{letter-spacing:0.651024px;}
.ls2_c02050{letter-spacing:0.717552px;}
.sc__c02050{text-shadow:none;}
.sc0_c02050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02050{-webkit-text-stroke:0px transparent;}
.sc0_c02050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02050{word-spacing:-15.126048px;}
.wsa_c02050{word-spacing:-12.474000px;}
.ws9_c02050{word-spacing:-12.416976px;}
.ws2_c02050{word-spacing:-12.122352px;}
.ws4_c02050{word-spacing:-11.124432px;}
.ws14_c02050{word-spacing:-2.159136px;}
.ws11_c02050{word-spacing:-1.012176px;}
.wsd_c02050{word-spacing:-0.974160px;}
.wsf_c02050{word-spacing:-0.118800px;}
.ws12_c02050{word-spacing:-0.099792px;}
.ws13_c02050{word-spacing:-0.085536px;}
.wse_c02050{word-spacing:0.000000px;}
.ws10_c02050{word-spacing:0.066528px;}
.wsb_c02050{word-spacing:33.300288px;}
.ws8_c02050{word-spacing:36.143712px;}
.ws6_c02050{word-spacing:36.742464px;}
.ws1_c02050{word-spacing:37.759392px;}
.ws0_c02050{word-spacing:38.020752px;}
.ws3_c02050{word-spacing:39.218256px;}
.ws5_c02050{word-spacing:39.902544px;}
.ws7_c02050{word-spacing:42.026688px;}
._0_c02050{margin-left:-1.948320px;}
._2_c02050{width:1.482624px;}
._4_c02050{width:3.369168px;}
._5_c02050{width:14.761440px;}
._1_c02050{width:50.252400px;}
._3_c02050{width:51.530688px;}
.fc0_c02050{color:rgb(0,0,0);}
.fs0_c02050{font-size:47.520000px;}
.fs1_c02050{font-size:60.480000px;}
.y0_c02050{bottom:0.000000px;}
.y19_c02050{bottom:146.998362px;}
.y1b_c02050{bottom:186.600234px;}
.y1a_c02050{bottom:196.320450px;}
.y18_c02050{bottom:275.878542px;}
.y17_c02050{bottom:356.878758px;}
.y15_c02050{bottom:406.559730px;}
.y11_c02050{bottom:424.560306px;}
.y16_c02050{bottom:458.759262px;}
.y14_c02050{bottom:491.879514px;}
.y13_c02050{bottom:509.880090px;}
.y10_c02050{bottom:543.000342px;}
.y12_c02050{bottom:559.559874px;}
.yf_c02050{bottom:577.560450px;}
.y1c_c02050{bottom:614.280450px;}
.yb_c02050{bottom:667.558326px;}
.yd_c02050{bottom:707.160234px;}
.yc_c02050{bottom:716.880450px;}
.ya_c02050{bottom:796.438506px;}
.y9_c02050{bottom:877.438722px;}
.y7_c02050{bottom:926.759730px;}
.y3_c02050{bottom:944.760306px;}
.y8_c02050{bottom:979.319226px;}
.y6_c02050{bottom:1012.439478px;}
.y5_c02050{bottom:1030.440054px;}
.y2_c02050{bottom:1063.560306px;}
.y4_c02050{bottom:1079.759874px;}
.y1_c02050{bottom:1097.760450px;}
.ye_c02050{bottom:1134.840450px;}
.h3_c02050{height:32.530781px;}
.h1_c02050{height:41.696016px;}
.h2_c02050{height:41.812031px;}
.h4_c02050{height:54.654737px;}
.h0_c02050{height:1263.000000px;}
.w1_c02050{width:892.500000px;}
.w0_c02050{width:892.830000px;}
.x0_c02050{left:0.000000px;}
.xd_c02050{left:117.000000px;}
.x8_c02050{left:440.999856px;}
.x4_c02050{left:445.680576px;}
.xb_c02050{left:451.080000px;}
.x7_c02050{left:455.399604px;}
.x5_c02050{left:461.880144px;}
.x1_c02050{left:463.320000px;}
.xa_c02050{left:483.480360px;}
.x9_c02050{left:492.119496px;}
.x6_c02050{left:493.200576px;}
.xc_c02050{left:506.880360px;}
.x3_c02050{left:511.919892px;}
.x2_c02050{left:526.679604px;}
@media print{
.v0_c02050{vertical-align:0.000000pt;}
.v1_c02050{vertical-align:1.279488pt;}
.ls8_c02050{letter-spacing:-0.671616pt;}
.ls9_c02050{letter-spacing:-0.511104pt;}
.lsd_c02050{letter-spacing:-0.380160pt;}
.lsa_c02050{letter-spacing:-0.321024pt;}
.ls11_c02050{letter-spacing:-0.244992pt;}
.lsf_c02050{letter-spacing:-0.232320pt;}
.ls5_c02050{letter-spacing:-0.215424pt;}
.ls3_c02050{letter-spacing:-0.105600pt;}
.ls14_c02050{letter-spacing:0.000000pt;}
.ls0_c02050{letter-spacing:0.005376pt;}
.ls4_c02050{letter-spacing:0.114048pt;}
.ls6_c02050{letter-spacing:0.215424pt;}
.lsc_c02050{letter-spacing:0.451968pt;}
.ls13_c02050{letter-spacing:0.456960pt;}
.ls10_c02050{letter-spacing:0.477312pt;}
.lsb_c02050{letter-spacing:0.515328pt;}
.ls12_c02050{letter-spacing:0.528000pt;}
.ls7_c02050{letter-spacing:0.532224pt;}
.ls1_c02050{letter-spacing:0.544896pt;}
.lse_c02050{letter-spacing:0.578688pt;}
.ls2_c02050{letter-spacing:0.637824pt;}
.wsc_c02050{word-spacing:-13.445376pt;}
.wsa_c02050{word-spacing:-11.088000pt;}
.ws9_c02050{word-spacing:-11.037312pt;}
.ws2_c02050{word-spacing:-10.775424pt;}
.ws4_c02050{word-spacing:-9.888384pt;}
.ws14_c02050{word-spacing:-1.919232pt;}
.ws11_c02050{word-spacing:-0.899712pt;}
.wsd_c02050{word-spacing:-0.865920pt;}
.wsf_c02050{word-spacing:-0.105600pt;}
.ws12_c02050{word-spacing:-0.088704pt;}
.ws13_c02050{word-spacing:-0.076032pt;}
.wse_c02050{word-spacing:0.000000pt;}
.ws10_c02050{word-spacing:0.059136pt;}
.wsb_c02050{word-spacing:29.600256pt;}
.ws8_c02050{word-spacing:32.127744pt;}
.ws6_c02050{word-spacing:32.659968pt;}
.ws1_c02050{word-spacing:33.563904pt;}
.ws0_c02050{word-spacing:33.796224pt;}
.ws3_c02050{word-spacing:34.860672pt;}
.ws5_c02050{word-spacing:35.468928pt;}
.ws7_c02050{word-spacing:37.357056pt;}
._0_c02050{margin-left:-1.731840pt;}
._2_c02050{width:1.317888pt;}
._4_c02050{width:2.994816pt;}
._5_c02050{width:13.121280pt;}
._1_c02050{width:44.668800pt;}
._3_c02050{width:45.805056pt;}
.fs0_c02050{font-size:42.240000pt;}
.fs1_c02050{font-size:53.760000pt;}
.y0_c02050{bottom:0.000000pt;}
.y19_c02050{bottom:130.665211pt;}
.y1b_c02050{bottom:165.866875pt;}
.y1a_c02050{bottom:174.507067pt;}
.y18_c02050{bottom:245.225371pt;}
.y17_c02050{bottom:317.225563pt;}
.y15_c02050{bottom:361.386427pt;}
.y11_c02050{bottom:377.386939pt;}
.y16_c02050{bottom:407.786011pt;}
.y14_c02050{bottom:437.226235pt;}
.y13_c02050{bottom:453.226747pt;}
.y10_c02050{bottom:482.666971pt;}
.y12_c02050{bottom:497.386555pt;}
.yf_c02050{bottom:513.387067pt;}
.y1c_c02050{bottom:546.027067pt;}
.yb_c02050{bottom:593.385179pt;}
.yd_c02050{bottom:628.586875pt;}
.yc_c02050{bottom:637.227067pt;}
.ya_c02050{bottom:707.945339pt;}
.y9_c02050{bottom:779.945531pt;}
.y7_c02050{bottom:823.786427pt;}
.y3_c02050{bottom:839.786939pt;}
.y8_c02050{bottom:870.505979pt;}
.y6_c02050{bottom:899.946203pt;}
.y5_c02050{bottom:915.946715pt;}
.y2_c02050{bottom:945.386939pt;}
.y4_c02050{bottom:959.786555pt;}
.y1_c02050{bottom:975.787067pt;}
.ye_c02050{bottom:1008.747067pt;}
.h3_c02050{height:28.916250pt;}
.h1_c02050{height:37.063125pt;}
.h2_c02050{height:37.166250pt;}
.h4_c02050{height:48.581988pt;}
.h0_c02050{height:1122.666667pt;}
.w1_c02050{width:793.333333pt;}
.w0_c02050{width:793.626667pt;}
.x0_c02050{left:0.000000pt;}
.xd_c02050{left:104.000000pt;}
.x8_c02050{left:391.999872pt;}
.x4_c02050{left:396.160512pt;}
.xb_c02050{left:400.960000pt;}
.x7_c02050{left:404.799648pt;}
.x5_c02050{left:410.560128pt;}
.x1_c02050{left:411.840000pt;}
.xa_c02050{left:429.760320pt;}
.x9_c02050{left:437.439552pt;}
.x6_c02050{left:438.400512pt;}
.xc_c02050{left:450.560320pt;}
.x3_c02050{left:455.039904pt;}
.x2_c02050{left:468.159648pt;}
}





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

.ir_c02051:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02051;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02051{font-family:ff1_c02051;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02051;src:url('chunks/assets/font_95d467c514d831574226402c.woff2')format("woff");}.ff2_c02051{font-family:ff2_c02051;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02051;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02051{font-family:ff3_c02051;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02051{vertical-align:0.000000px;}
.v1_c02051{vertical-align:1.439424px;}
.ls9_c02051{letter-spacing:-0.755568px;}
.lsa_c02051{letter-spacing:-0.574992px;}
.lsd_c02051{letter-spacing:-0.427680px;}
.ls11_c02051{letter-spacing:-0.275616px;}
.lsf_c02051{letter-spacing:-0.261360px;}
.ls6_c02051{letter-spacing:-0.242352px;}
.ls4_c02051{letter-spacing:-0.118800px;}
.ls14_c02051{letter-spacing:0.000000px;}
.ls1_c02051{letter-spacing:0.006048px;}
.ls5_c02051{letter-spacing:0.128304px;}
.ls7_c02051{letter-spacing:0.242352px;}
.lsc_c02051{letter-spacing:0.508464px;}
.ls13_c02051{letter-spacing:0.514080px;}
.ls10_c02051{letter-spacing:0.536976px;}
.lsb_c02051{letter-spacing:0.579744px;}
.ls12_c02051{letter-spacing:0.594000px;}
.ls8_c02051{letter-spacing:0.598752px;}
.ls3_c02051{letter-spacing:0.613008px;}
.lse_c02051{letter-spacing:0.651024px;}
.ls2_c02051{letter-spacing:0.717552px;}
.ls0_c02051{letter-spacing:0.722304px;}
.sc__c02051{text-shadow:none;}
.sc0_c02051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02051{-webkit-text-stroke:0px transparent;}
.sc0_c02051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02051{word-spacing:-15.126048px;}
.wsa_c02051{word-spacing:-12.474000px;}
.ws9_c02051{word-spacing:-12.416976px;}
.ws2_c02051{word-spacing:-12.122352px;}
.ws4_c02051{word-spacing:-11.124432px;}
.ws15_c02051{word-spacing:-2.159136px;}
.ws10_c02051{word-spacing:-1.083456px;}
.ws16_c02051{word-spacing:-1.078704px;}
.ws12_c02051{word-spacing:-1.012176px;}
.wsd_c02051{word-spacing:-0.974160px;}
.wsf_c02051{word-spacing:-0.118800px;}
.ws13_c02051{word-spacing:-0.099792px;}
.ws14_c02051{word-spacing:-0.085536px;}
.wse_c02051{word-spacing:0.000000px;}
.ws11_c02051{word-spacing:0.066528px;}
.wsb_c02051{word-spacing:33.300288px;}
.ws8_c02051{word-spacing:36.143712px;}
.ws6_c02051{word-spacing:36.742464px;}
.ws1_c02051{word-spacing:37.759392px;}
.ws0_c02051{word-spacing:38.020752px;}
.ws3_c02051{word-spacing:39.218256px;}
.ws5_c02051{word-spacing:39.902544px;}
.ws7_c02051{word-spacing:42.026688px;}
._0_c02051{margin-left:-1.948320px;}
._2_c02051{width:1.482624px;}
._4_c02051{width:3.369168px;}
._5_c02051{width:14.761440px;}
._1_c02051{width:50.252400px;}
._3_c02051{width:51.530688px;}
.fc0_c02051{color:rgb(0,0,0);}
.fs0_c02051{font-size:47.520000px;}
.fs1_c02051{font-size:60.480000px;}
.y0_c02051{bottom:0.000000px;}
.y19_c02051{bottom:146.998362px;}
.y1b_c02051{bottom:186.600234px;}
.y1a_c02051{bottom:196.320450px;}
.y18_c02051{bottom:275.878542px;}
.y17_c02051{bottom:356.878758px;}
.y15_c02051{bottom:406.559730px;}
.y11_c02051{bottom:424.560306px;}
.y16_c02051{bottom:458.759262px;}
.y14_c02051{bottom:491.879514px;}
.y13_c02051{bottom:509.880090px;}
.y10_c02051{bottom:543.000342px;}
.y12_c02051{bottom:559.559874px;}
.yf_c02051{bottom:577.560450px;}
.y1c_c02051{bottom:614.280450px;}
.yb_c02051{bottom:667.558326px;}
.yd_c02051{bottom:707.160234px;}
.yc_c02051{bottom:716.880450px;}
.ya_c02051{bottom:796.438506px;}
.y9_c02051{bottom:877.438722px;}
.y7_c02051{bottom:926.759730px;}
.y3_c02051{bottom:944.760306px;}
.y8_c02051{bottom:979.319226px;}
.y6_c02051{bottom:1012.439478px;}
.y5_c02051{bottom:1030.440054px;}
.y2_c02051{bottom:1063.560306px;}
.y4_c02051{bottom:1079.759874px;}
.y1_c02051{bottom:1097.760450px;}
.ye_c02051{bottom:1134.840450px;}
.h3_c02051{height:32.530781px;}
.h1_c02051{height:41.696016px;}
.h2_c02051{height:41.812031px;}
.h4_c02051{height:54.654737px;}
.h0_c02051{height:1263.000000px;}
.w1_c02051{width:892.500000px;}
.w0_c02051{width:892.830000px;}
.x0_c02051{left:0.000000px;}
.xd_c02051{left:117.000000px;}
.x8_c02051{left:440.999856px;}
.x4_c02051{left:445.680576px;}
.xb_c02051{left:451.080000px;}
.x7_c02051{left:455.399604px;}
.x5_c02051{left:461.880144px;}
.x1_c02051{left:463.320000px;}
.xa_c02051{left:483.480360px;}
.x9_c02051{left:492.119496px;}
.x6_c02051{left:493.200576px;}
.xc_c02051{left:506.880360px;}
.x3_c02051{left:511.919892px;}
.x2_c02051{left:526.679604px;}
@media print{
.v0_c02051{vertical-align:0.000000pt;}
.v1_c02051{vertical-align:1.279488pt;}
.ls9_c02051{letter-spacing:-0.671616pt;}
.lsa_c02051{letter-spacing:-0.511104pt;}
.lsd_c02051{letter-spacing:-0.380160pt;}
.ls11_c02051{letter-spacing:-0.244992pt;}
.lsf_c02051{letter-spacing:-0.232320pt;}
.ls6_c02051{letter-spacing:-0.215424pt;}
.ls4_c02051{letter-spacing:-0.105600pt;}
.ls14_c02051{letter-spacing:0.000000pt;}
.ls1_c02051{letter-spacing:0.005376pt;}
.ls5_c02051{letter-spacing:0.114048pt;}
.ls7_c02051{letter-spacing:0.215424pt;}
.lsc_c02051{letter-spacing:0.451968pt;}
.ls13_c02051{letter-spacing:0.456960pt;}
.ls10_c02051{letter-spacing:0.477312pt;}
.lsb_c02051{letter-spacing:0.515328pt;}
.ls12_c02051{letter-spacing:0.528000pt;}
.ls8_c02051{letter-spacing:0.532224pt;}
.ls3_c02051{letter-spacing:0.544896pt;}
.lse_c02051{letter-spacing:0.578688pt;}
.ls2_c02051{letter-spacing:0.637824pt;}
.ls0_c02051{letter-spacing:0.642048pt;}
.wsc_c02051{word-spacing:-13.445376pt;}
.wsa_c02051{word-spacing:-11.088000pt;}
.ws9_c02051{word-spacing:-11.037312pt;}
.ws2_c02051{word-spacing:-10.775424pt;}
.ws4_c02051{word-spacing:-9.888384pt;}
.ws15_c02051{word-spacing:-1.919232pt;}
.ws10_c02051{word-spacing:-0.963072pt;}
.ws16_c02051{word-spacing:-0.958848pt;}
.ws12_c02051{word-spacing:-0.899712pt;}
.wsd_c02051{word-spacing:-0.865920pt;}
.wsf_c02051{word-spacing:-0.105600pt;}
.ws13_c02051{word-spacing:-0.088704pt;}
.ws14_c02051{word-spacing:-0.076032pt;}
.wse_c02051{word-spacing:0.000000pt;}
.ws11_c02051{word-spacing:0.059136pt;}
.wsb_c02051{word-spacing:29.600256pt;}
.ws8_c02051{word-spacing:32.127744pt;}
.ws6_c02051{word-spacing:32.659968pt;}
.ws1_c02051{word-spacing:33.563904pt;}
.ws0_c02051{word-spacing:33.796224pt;}
.ws3_c02051{word-spacing:34.860672pt;}
.ws5_c02051{word-spacing:35.468928pt;}
.ws7_c02051{word-spacing:37.357056pt;}
._0_c02051{margin-left:-1.731840pt;}
._2_c02051{width:1.317888pt;}
._4_c02051{width:2.994816pt;}
._5_c02051{width:13.121280pt;}
._1_c02051{width:44.668800pt;}
._3_c02051{width:45.805056pt;}
.fs0_c02051{font-size:42.240000pt;}
.fs1_c02051{font-size:53.760000pt;}
.y0_c02051{bottom:0.000000pt;}
.y19_c02051{bottom:130.665211pt;}
.y1b_c02051{bottom:165.866875pt;}
.y1a_c02051{bottom:174.507067pt;}
.y18_c02051{bottom:245.225371pt;}
.y17_c02051{bottom:317.225563pt;}
.y15_c02051{bottom:361.386427pt;}
.y11_c02051{bottom:377.386939pt;}
.y16_c02051{bottom:407.786011pt;}
.y14_c02051{bottom:437.226235pt;}
.y13_c02051{bottom:453.226747pt;}
.y10_c02051{bottom:482.666971pt;}
.y12_c02051{bottom:497.386555pt;}
.yf_c02051{bottom:513.387067pt;}
.y1c_c02051{bottom:546.027067pt;}
.yb_c02051{bottom:593.385179pt;}
.yd_c02051{bottom:628.586875pt;}
.yc_c02051{bottom:637.227067pt;}
.ya_c02051{bottom:707.945339pt;}
.y9_c02051{bottom:779.945531pt;}
.y7_c02051{bottom:823.786427pt;}
.y3_c02051{bottom:839.786939pt;}
.y8_c02051{bottom:870.505979pt;}
.y6_c02051{bottom:899.946203pt;}
.y5_c02051{bottom:915.946715pt;}
.y2_c02051{bottom:945.386939pt;}
.y4_c02051{bottom:959.786555pt;}
.y1_c02051{bottom:975.787067pt;}
.ye_c02051{bottom:1008.747067pt;}
.h3_c02051{height:28.916250pt;}
.h1_c02051{height:37.063125pt;}
.h2_c02051{height:37.166250pt;}
.h4_c02051{height:48.581988pt;}
.h0_c02051{height:1122.666667pt;}
.w1_c02051{width:793.333333pt;}
.w0_c02051{width:793.626667pt;}
.x0_c02051{left:0.000000pt;}
.xd_c02051{left:104.000000pt;}
.x8_c02051{left:391.999872pt;}
.x4_c02051{left:396.160512pt;}
.xb_c02051{left:400.960000pt;}
.x7_c02051{left:404.799648pt;}
.x5_c02051{left:410.560128pt;}
.x1_c02051{left:411.840000pt;}
.xa_c02051{left:429.760320pt;}
.x9_c02051{left:437.439552pt;}
.x6_c02051{left:438.400512pt;}
.xc_c02051{left:450.560320pt;}
.x3_c02051{left:455.039904pt;}
.x2_c02051{left:468.159648pt;}
}





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

.ir_c02052:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02052{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02052;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02052{font-family:ff1_c02052;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02052;src:url('chunks/assets/font_52abd0ea021264071338c2cd.woff2')format("woff");}.ff2_c02052{font-family:ff2_c02052;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02052;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02052{font-family:ff3_c02052;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02052{vertical-align:0.000000px;}
.v1_c02052{vertical-align:1.439424px;}
.ls8_c02052{letter-spacing:-0.755568px;}
.ls9_c02052{letter-spacing:-0.574992px;}
.lsc_c02052{letter-spacing:-0.427680px;}
.ls10_c02052{letter-spacing:-0.275616px;}
.lse_c02052{letter-spacing:-0.261360px;}
.ls5_c02052{letter-spacing:-0.242352px;}
.ls3_c02052{letter-spacing:-0.118800px;}
.ls13_c02052{letter-spacing:0.000000px;}
.ls1_c02052{letter-spacing:0.006048px;}
.ls4_c02052{letter-spacing:0.128304px;}
.ls6_c02052{letter-spacing:0.242352px;}
.lsb_c02052{letter-spacing:0.508464px;}
.ls12_c02052{letter-spacing:0.514080px;}
.lsf_c02052{letter-spacing:0.536976px;}
.lsa_c02052{letter-spacing:0.579744px;}
.ls11_c02052{letter-spacing:0.594000px;}
.ls7_c02052{letter-spacing:0.598752px;}
.ls2_c02052{letter-spacing:0.613008px;}
.lsd_c02052{letter-spacing:0.651024px;}
.ls0_c02052{letter-spacing:0.717552px;}
.sc__c02052{text-shadow:none;}
.sc0_c02052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02052{-webkit-text-stroke:0px transparent;}
.sc0_c02052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02052{word-spacing:-15.126048px;}
.wsa_c02052{word-spacing:-12.474000px;}
.ws9_c02052{word-spacing:-12.416976px;}
.ws2_c02052{word-spacing:-12.122352px;}
.ws4_c02052{word-spacing:-11.124432px;}
.ws15_c02052{word-spacing:-2.159136px;}
.ws10_c02052{word-spacing:-1.078704px;}
.ws12_c02052{word-spacing:-1.012176px;}
.wsd_c02052{word-spacing:-0.974160px;}
.wsf_c02052{word-spacing:-0.118800px;}
.ws13_c02052{word-spacing:-0.099792px;}
.ws14_c02052{word-spacing:-0.085536px;}
.wse_c02052{word-spacing:0.000000px;}
.ws11_c02052{word-spacing:0.066528px;}
.wsb_c02052{word-spacing:33.300288px;}
.ws8_c02052{word-spacing:36.143712px;}
.ws6_c02052{word-spacing:36.742464px;}
.ws1_c02052{word-spacing:37.759392px;}
.ws0_c02052{word-spacing:38.020752px;}
.ws3_c02052{word-spacing:39.218256px;}
.ws5_c02052{word-spacing:39.902544px;}
.ws7_c02052{word-spacing:42.026688px;}
._0_c02052{margin-left:-1.948320px;}
._2_c02052{width:1.482624px;}
._4_c02052{width:3.369168px;}
._5_c02052{width:14.761440px;}
._1_c02052{width:50.252400px;}
._3_c02052{width:51.530688px;}
.fc0_c02052{color:rgb(0,0,0);}
.fs0_c02052{font-size:47.520000px;}
.fs1_c02052{font-size:60.480000px;}
.y0_c02052{bottom:0.000000px;}
.y19_c02052{bottom:146.998362px;}
.y1b_c02052{bottom:186.600234px;}
.y1a_c02052{bottom:196.320450px;}
.y18_c02052{bottom:275.878542px;}
.y17_c02052{bottom:356.878758px;}
.y15_c02052{bottom:406.559730px;}
.y11_c02052{bottom:424.560306px;}
.y16_c02052{bottom:458.759262px;}
.y14_c02052{bottom:491.879514px;}
.y13_c02052{bottom:509.880090px;}
.y10_c02052{bottom:543.000342px;}
.y12_c02052{bottom:559.559874px;}
.yf_c02052{bottom:577.560450px;}
.y1c_c02052{bottom:614.280450px;}
.yb_c02052{bottom:667.558326px;}
.yd_c02052{bottom:707.160234px;}
.yc_c02052{bottom:716.880450px;}
.ya_c02052{bottom:796.438506px;}
.y9_c02052{bottom:877.438722px;}
.y7_c02052{bottom:926.759730px;}
.y3_c02052{bottom:944.760306px;}
.y8_c02052{bottom:979.319226px;}
.y6_c02052{bottom:1012.439478px;}
.y5_c02052{bottom:1030.440054px;}
.y2_c02052{bottom:1063.560306px;}
.y4_c02052{bottom:1079.759874px;}
.y1_c02052{bottom:1097.760450px;}
.ye_c02052{bottom:1134.840450px;}
.h3_c02052{height:32.530781px;}
.h1_c02052{height:41.696016px;}
.h2_c02052{height:41.812031px;}
.h4_c02052{height:54.654737px;}
.h0_c02052{height:1263.000000px;}
.w1_c02052{width:892.500000px;}
.w0_c02052{width:892.830000px;}
.x0_c02052{left:0.000000px;}
.xd_c02052{left:117.000000px;}
.x8_c02052{left:440.999856px;}
.x4_c02052{left:445.680576px;}
.xb_c02052{left:451.080000px;}
.x7_c02052{left:455.399604px;}
.x5_c02052{left:461.880144px;}
.x1_c02052{left:463.320000px;}
.xa_c02052{left:483.480360px;}
.x9_c02052{left:492.119496px;}
.x6_c02052{left:493.200576px;}
.xc_c02052{left:506.880360px;}
.x3_c02052{left:511.919892px;}
.x2_c02052{left:526.679604px;}
@media print{
.v0_c02052{vertical-align:0.000000pt;}
.v1_c02052{vertical-align:1.279488pt;}
.ls8_c02052{letter-spacing:-0.671616pt;}
.ls9_c02052{letter-spacing:-0.511104pt;}
.lsc_c02052{letter-spacing:-0.380160pt;}
.ls10_c02052{letter-spacing:-0.244992pt;}
.lse_c02052{letter-spacing:-0.232320pt;}
.ls5_c02052{letter-spacing:-0.215424pt;}
.ls3_c02052{letter-spacing:-0.105600pt;}
.ls13_c02052{letter-spacing:0.000000pt;}
.ls1_c02052{letter-spacing:0.005376pt;}
.ls4_c02052{letter-spacing:0.114048pt;}
.ls6_c02052{letter-spacing:0.215424pt;}
.lsb_c02052{letter-spacing:0.451968pt;}
.ls12_c02052{letter-spacing:0.456960pt;}
.lsf_c02052{letter-spacing:0.477312pt;}
.lsa_c02052{letter-spacing:0.515328pt;}
.ls11_c02052{letter-spacing:0.528000pt;}
.ls7_c02052{letter-spacing:0.532224pt;}
.ls2_c02052{letter-spacing:0.544896pt;}
.lsd_c02052{letter-spacing:0.578688pt;}
.ls0_c02052{letter-spacing:0.637824pt;}
.wsc_c02052{word-spacing:-13.445376pt;}
.wsa_c02052{word-spacing:-11.088000pt;}
.ws9_c02052{word-spacing:-11.037312pt;}
.ws2_c02052{word-spacing:-10.775424pt;}
.ws4_c02052{word-spacing:-9.888384pt;}
.ws15_c02052{word-spacing:-1.919232pt;}
.ws10_c02052{word-spacing:-0.958848pt;}
.ws12_c02052{word-spacing:-0.899712pt;}
.wsd_c02052{word-spacing:-0.865920pt;}
.wsf_c02052{word-spacing:-0.105600pt;}
.ws13_c02052{word-spacing:-0.088704pt;}
.ws14_c02052{word-spacing:-0.076032pt;}
.wse_c02052{word-spacing:0.000000pt;}
.ws11_c02052{word-spacing:0.059136pt;}
.wsb_c02052{word-spacing:29.600256pt;}
.ws8_c02052{word-spacing:32.127744pt;}
.ws6_c02052{word-spacing:32.659968pt;}
.ws1_c02052{word-spacing:33.563904pt;}
.ws0_c02052{word-spacing:33.796224pt;}
.ws3_c02052{word-spacing:34.860672pt;}
.ws5_c02052{word-spacing:35.468928pt;}
.ws7_c02052{word-spacing:37.357056pt;}
._0_c02052{margin-left:-1.731840pt;}
._2_c02052{width:1.317888pt;}
._4_c02052{width:2.994816pt;}
._5_c02052{width:13.121280pt;}
._1_c02052{width:44.668800pt;}
._3_c02052{width:45.805056pt;}
.fs0_c02052{font-size:42.240000pt;}
.fs1_c02052{font-size:53.760000pt;}
.y0_c02052{bottom:0.000000pt;}
.y19_c02052{bottom:130.665211pt;}
.y1b_c02052{bottom:165.866875pt;}
.y1a_c02052{bottom:174.507067pt;}
.y18_c02052{bottom:245.225371pt;}
.y17_c02052{bottom:317.225563pt;}
.y15_c02052{bottom:361.386427pt;}
.y11_c02052{bottom:377.386939pt;}
.y16_c02052{bottom:407.786011pt;}
.y14_c02052{bottom:437.226235pt;}
.y13_c02052{bottom:453.226747pt;}
.y10_c02052{bottom:482.666971pt;}
.y12_c02052{bottom:497.386555pt;}
.yf_c02052{bottom:513.387067pt;}
.y1c_c02052{bottom:546.027067pt;}
.yb_c02052{bottom:593.385179pt;}
.yd_c02052{bottom:628.586875pt;}
.yc_c02052{bottom:637.227067pt;}
.ya_c02052{bottom:707.945339pt;}
.y9_c02052{bottom:779.945531pt;}
.y7_c02052{bottom:823.786427pt;}
.y3_c02052{bottom:839.786939pt;}
.y8_c02052{bottom:870.505979pt;}
.y6_c02052{bottom:899.946203pt;}
.y5_c02052{bottom:915.946715pt;}
.y2_c02052{bottom:945.386939pt;}
.y4_c02052{bottom:959.786555pt;}
.y1_c02052{bottom:975.787067pt;}
.ye_c02052{bottom:1008.747067pt;}
.h3_c02052{height:28.916250pt;}
.h1_c02052{height:37.063125pt;}
.h2_c02052{height:37.166250pt;}
.h4_c02052{height:48.581988pt;}
.h0_c02052{height:1122.666667pt;}
.w1_c02052{width:793.333333pt;}
.w0_c02052{width:793.626667pt;}
.x0_c02052{left:0.000000pt;}
.xd_c02052{left:104.000000pt;}
.x8_c02052{left:391.999872pt;}
.x4_c02052{left:396.160512pt;}
.xb_c02052{left:400.960000pt;}
.x7_c02052{left:404.799648pt;}
.x5_c02052{left:410.560128pt;}
.x1_c02052{left:411.840000pt;}
.xa_c02052{left:429.760320pt;}
.x9_c02052{left:437.439552pt;}
.x6_c02052{left:438.400512pt;}
.xc_c02052{left:450.560320pt;}
.x3_c02052{left:455.039904pt;}
.x2_c02052{left:468.159648pt;}
}





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

.ir_c02053:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02053{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02053;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02053{font-family:ff1_c02053;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02053;src:url('chunks/assets/font_c30057345022cb6f1946035c.woff2')format("woff");}.ff2_c02053{font-family:ff2_c02053;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02053;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02053{font-family:ff3_c02053;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02053{vertical-align:0.000000px;}
.v1_c02053{vertical-align:1.439424px;}
.lsa_c02053{letter-spacing:-0.755568px;}
.lsb_c02053{letter-spacing:-0.574992px;}
.lse_c02053{letter-spacing:-0.427680px;}
.ls11_c02053{letter-spacing:-0.275616px;}
.lsf_c02053{letter-spacing:-0.261360px;}
.ls7_c02053{letter-spacing:-0.242352px;}
.ls5_c02053{letter-spacing:-0.118800px;}
.ls14_c02053{letter-spacing:0.000000px;}
.ls1_c02053{letter-spacing:0.006048px;}
.ls6_c02053{letter-spacing:0.128304px;}
.ls8_c02053{letter-spacing:0.242352px;}
.lsd_c02053{letter-spacing:0.508464px;}
.ls13_c02053{letter-spacing:0.514080px;}
.ls10_c02053{letter-spacing:0.536976px;}
.lsc_c02053{letter-spacing:0.579744px;}
.ls12_c02053{letter-spacing:0.594000px;}
.ls9_c02053{letter-spacing:0.598752px;}
.ls3_c02053{letter-spacing:0.613008px;}
.ls2_c02053{letter-spacing:0.651024px;}
.ls4_c02053{letter-spacing:0.717552px;}
.ls0_c02053{letter-spacing:0.722304px;}
.sc__c02053{text-shadow:none;}
.sc0_c02053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02053{-webkit-text-stroke:0px transparent;}
.sc0_c02053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02053{word-spacing:-15.126048px;}
.wsa_c02053{word-spacing:-12.474000px;}
.ws9_c02053{word-spacing:-12.416976px;}
.ws2_c02053{word-spacing:-12.122352px;}
.ws4_c02053{word-spacing:-11.124432px;}
.ws15_c02053{word-spacing:-2.159136px;}
.ws10_c02053{word-spacing:-1.083456px;}
.ws12_c02053{word-spacing:-1.012176px;}
.wsd_c02053{word-spacing:-0.974160px;}
.wsf_c02053{word-spacing:-0.118800px;}
.ws13_c02053{word-spacing:-0.099792px;}
.ws14_c02053{word-spacing:-0.085536px;}
.wse_c02053{word-spacing:0.000000px;}
.ws11_c02053{word-spacing:0.066528px;}
.wsb_c02053{word-spacing:33.300288px;}
.ws8_c02053{word-spacing:36.143712px;}
.ws6_c02053{word-spacing:36.742464px;}
.ws1_c02053{word-spacing:37.759392px;}
.ws0_c02053{word-spacing:38.020752px;}
.ws3_c02053{word-spacing:39.218256px;}
.ws5_c02053{word-spacing:39.902544px;}
.ws7_c02053{word-spacing:42.026688px;}
._0_c02053{margin-left:-1.948320px;}
._2_c02053{width:1.482624px;}
._4_c02053{width:3.369168px;}
._5_c02053{width:14.761440px;}
._1_c02053{width:50.252400px;}
._3_c02053{width:51.530688px;}
.fc0_c02053{color:rgb(0,0,0);}
.fs0_c02053{font-size:47.520000px;}
.fs1_c02053{font-size:60.480000px;}
.y0_c02053{bottom:0.000000px;}
.y19_c02053{bottom:146.998362px;}
.y1b_c02053{bottom:186.600234px;}
.y1a_c02053{bottom:196.320450px;}
.y18_c02053{bottom:275.878542px;}
.y17_c02053{bottom:356.878758px;}
.y15_c02053{bottom:406.559730px;}
.y11_c02053{bottom:424.560306px;}
.y16_c02053{bottom:458.759262px;}
.y14_c02053{bottom:491.879514px;}
.y13_c02053{bottom:509.880090px;}
.y10_c02053{bottom:543.000342px;}
.y12_c02053{bottom:559.559874px;}
.yf_c02053{bottom:577.560450px;}
.y1c_c02053{bottom:614.280450px;}
.yb_c02053{bottom:667.558326px;}
.yd_c02053{bottom:707.160234px;}
.yc_c02053{bottom:716.880450px;}
.ya_c02053{bottom:796.438506px;}
.y9_c02053{bottom:877.438722px;}
.y7_c02053{bottom:926.759730px;}
.y3_c02053{bottom:944.760306px;}
.y8_c02053{bottom:979.319226px;}
.y6_c02053{bottom:1012.439478px;}
.y5_c02053{bottom:1030.440054px;}
.y2_c02053{bottom:1063.560306px;}
.y4_c02053{bottom:1079.759874px;}
.y1_c02053{bottom:1097.760450px;}
.ye_c02053{bottom:1134.840450px;}
.h3_c02053{height:32.530781px;}
.h1_c02053{height:41.696016px;}
.h2_c02053{height:41.812031px;}
.h4_c02053{height:54.654737px;}
.h0_c02053{height:1263.000000px;}
.w1_c02053{width:892.500000px;}
.w0_c02053{width:892.830000px;}
.x0_c02053{left:0.000000px;}
.xd_c02053{left:117.000000px;}
.x8_c02053{left:440.999856px;}
.x4_c02053{left:445.680576px;}
.xb_c02053{left:451.080000px;}
.x7_c02053{left:455.399604px;}
.x5_c02053{left:461.880144px;}
.x1_c02053{left:463.320000px;}
.xa_c02053{left:483.480360px;}
.x9_c02053{left:492.119496px;}
.x6_c02053{left:493.200576px;}
.xc_c02053{left:506.880360px;}
.x3_c02053{left:511.919892px;}
.x2_c02053{left:526.679604px;}
@media print{
.v0_c02053{vertical-align:0.000000pt;}
.v1_c02053{vertical-align:1.279488pt;}
.lsa_c02053{letter-spacing:-0.671616pt;}
.lsb_c02053{letter-spacing:-0.511104pt;}
.lse_c02053{letter-spacing:-0.380160pt;}
.ls11_c02053{letter-spacing:-0.244992pt;}
.lsf_c02053{letter-spacing:-0.232320pt;}
.ls7_c02053{letter-spacing:-0.215424pt;}
.ls5_c02053{letter-spacing:-0.105600pt;}
.ls14_c02053{letter-spacing:0.000000pt;}
.ls1_c02053{letter-spacing:0.005376pt;}
.ls6_c02053{letter-spacing:0.114048pt;}
.ls8_c02053{letter-spacing:0.215424pt;}
.lsd_c02053{letter-spacing:0.451968pt;}
.ls13_c02053{letter-spacing:0.456960pt;}
.ls10_c02053{letter-spacing:0.477312pt;}
.lsc_c02053{letter-spacing:0.515328pt;}
.ls12_c02053{letter-spacing:0.528000pt;}
.ls9_c02053{letter-spacing:0.532224pt;}
.ls3_c02053{letter-spacing:0.544896pt;}
.ls2_c02053{letter-spacing:0.578688pt;}
.ls4_c02053{letter-spacing:0.637824pt;}
.ls0_c02053{letter-spacing:0.642048pt;}
.wsc_c02053{word-spacing:-13.445376pt;}
.wsa_c02053{word-spacing:-11.088000pt;}
.ws9_c02053{word-spacing:-11.037312pt;}
.ws2_c02053{word-spacing:-10.775424pt;}
.ws4_c02053{word-spacing:-9.888384pt;}
.ws15_c02053{word-spacing:-1.919232pt;}
.ws10_c02053{word-spacing:-0.963072pt;}
.ws12_c02053{word-spacing:-0.899712pt;}
.wsd_c02053{word-spacing:-0.865920pt;}
.wsf_c02053{word-spacing:-0.105600pt;}
.ws13_c02053{word-spacing:-0.088704pt;}
.ws14_c02053{word-spacing:-0.076032pt;}
.wse_c02053{word-spacing:0.000000pt;}
.ws11_c02053{word-spacing:0.059136pt;}
.wsb_c02053{word-spacing:29.600256pt;}
.ws8_c02053{word-spacing:32.127744pt;}
.ws6_c02053{word-spacing:32.659968pt;}
.ws1_c02053{word-spacing:33.563904pt;}
.ws0_c02053{word-spacing:33.796224pt;}
.ws3_c02053{word-spacing:34.860672pt;}
.ws5_c02053{word-spacing:35.468928pt;}
.ws7_c02053{word-spacing:37.357056pt;}
._0_c02053{margin-left:-1.731840pt;}
._2_c02053{width:1.317888pt;}
._4_c02053{width:2.994816pt;}
._5_c02053{width:13.121280pt;}
._1_c02053{width:44.668800pt;}
._3_c02053{width:45.805056pt;}
.fs0_c02053{font-size:42.240000pt;}
.fs1_c02053{font-size:53.760000pt;}
.y0_c02053{bottom:0.000000pt;}
.y19_c02053{bottom:130.665211pt;}
.y1b_c02053{bottom:165.866875pt;}
.y1a_c02053{bottom:174.507067pt;}
.y18_c02053{bottom:245.225371pt;}
.y17_c02053{bottom:317.225563pt;}
.y15_c02053{bottom:361.386427pt;}
.y11_c02053{bottom:377.386939pt;}
.y16_c02053{bottom:407.786011pt;}
.y14_c02053{bottom:437.226235pt;}
.y13_c02053{bottom:453.226747pt;}
.y10_c02053{bottom:482.666971pt;}
.y12_c02053{bottom:497.386555pt;}
.yf_c02053{bottom:513.387067pt;}
.y1c_c02053{bottom:546.027067pt;}
.yb_c02053{bottom:593.385179pt;}
.yd_c02053{bottom:628.586875pt;}
.yc_c02053{bottom:637.227067pt;}
.ya_c02053{bottom:707.945339pt;}
.y9_c02053{bottom:779.945531pt;}
.y7_c02053{bottom:823.786427pt;}
.y3_c02053{bottom:839.786939pt;}
.y8_c02053{bottom:870.505979pt;}
.y6_c02053{bottom:899.946203pt;}
.y5_c02053{bottom:915.946715pt;}
.y2_c02053{bottom:945.386939pt;}
.y4_c02053{bottom:959.786555pt;}
.y1_c02053{bottom:975.787067pt;}
.ye_c02053{bottom:1008.747067pt;}
.h3_c02053{height:28.916250pt;}
.h1_c02053{height:37.063125pt;}
.h2_c02053{height:37.166250pt;}
.h4_c02053{height:48.581988pt;}
.h0_c02053{height:1122.666667pt;}
.w1_c02053{width:793.333333pt;}
.w0_c02053{width:793.626667pt;}
.x0_c02053{left:0.000000pt;}
.xd_c02053{left:104.000000pt;}
.x8_c02053{left:391.999872pt;}
.x4_c02053{left:396.160512pt;}
.xb_c02053{left:400.960000pt;}
.x7_c02053{left:404.799648pt;}
.x5_c02053{left:410.560128pt;}
.x1_c02053{left:411.840000pt;}
.xa_c02053{left:429.760320pt;}
.x9_c02053{left:437.439552pt;}
.x6_c02053{left:438.400512pt;}
.xc_c02053{left:450.560320pt;}
.x3_c02053{left:455.039904pt;}
.x2_c02053{left:468.159648pt;}
}





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

.ir_c02054:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02054;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02054{font-family:ff1_c02054;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02054;src:url('chunks/assets/font_95d467c514d831574226402c.woff2')format("woff");}.ff2_c02054{font-family:ff2_c02054;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02054;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02054{font-family:ff3_c02054;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02054{vertical-align:0.000000px;}
.v1_c02054{vertical-align:1.439424px;}
.ls9_c02054{letter-spacing:-0.755568px;}
.lsa_c02054{letter-spacing:-0.574992px;}
.lsd_c02054{letter-spacing:-0.427680px;}
.ls15_c02054{letter-spacing:-0.361152px;}
.ls11_c02054{letter-spacing:-0.275616px;}
.lsf_c02054{letter-spacing:-0.261360px;}
.ls6_c02054{letter-spacing:-0.242352px;}
.ls4_c02054{letter-spacing:-0.118800px;}
.ls14_c02054{letter-spacing:0.000000px;}
.ls1_c02054{letter-spacing:0.006048px;}
.ls5_c02054{letter-spacing:0.128304px;}
.ls7_c02054{letter-spacing:0.242352px;}
.lsc_c02054{letter-spacing:0.508464px;}
.ls13_c02054{letter-spacing:0.514080px;}
.ls10_c02054{letter-spacing:0.536976px;}
.lsb_c02054{letter-spacing:0.579744px;}
.ls12_c02054{letter-spacing:0.594000px;}
.ls8_c02054{letter-spacing:0.598752px;}
.ls2_c02054{letter-spacing:0.613008px;}
.lse_c02054{letter-spacing:0.651024px;}
.ls3_c02054{letter-spacing:0.717552px;}
.ls0_c02054{letter-spacing:0.722304px;}
.sc__c02054{text-shadow:none;}
.sc0_c02054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02054{-webkit-text-stroke:0px transparent;}
.sc0_c02054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02054{word-spacing:-15.126048px;}
.wsa_c02054{word-spacing:-12.474000px;}
.ws9_c02054{word-spacing:-12.416976px;}
.ws2_c02054{word-spacing:-12.122352px;}
.ws4_c02054{word-spacing:-11.124432px;}
.ws15_c02054{word-spacing:-2.159136px;}
.ws10_c02054{word-spacing:-1.083456px;}
.ws12_c02054{word-spacing:-1.012176px;}
.wsd_c02054{word-spacing:-0.974160px;}
.wsf_c02054{word-spacing:-0.118800px;}
.ws13_c02054{word-spacing:-0.099792px;}
.ws14_c02054{word-spacing:-0.085536px;}
.wse_c02054{word-spacing:0.000000px;}
.ws11_c02054{word-spacing:0.066528px;}
.wsb_c02054{word-spacing:33.300288px;}
.ws8_c02054{word-spacing:36.143712px;}
.ws6_c02054{word-spacing:36.742464px;}
.ws1_c02054{word-spacing:37.759392px;}
.ws0_c02054{word-spacing:38.020752px;}
.ws3_c02054{word-spacing:39.218256px;}
.ws5_c02054{word-spacing:39.902544px;}
.ws7_c02054{word-spacing:42.026688px;}
._0_c02054{margin-left:-1.948320px;}
._2_c02054{width:1.482624px;}
._4_c02054{width:3.369168px;}
._5_c02054{width:14.761440px;}
._1_c02054{width:50.252400px;}
._3_c02054{width:51.530688px;}
.fc0_c02054{color:rgb(0,0,0);}
.fs0_c02054{font-size:47.520000px;}
.fs1_c02054{font-size:60.480000px;}
.y0_c02054{bottom:0.000000px;}
.y19_c02054{bottom:146.998362px;}
.y1b_c02054{bottom:186.600234px;}
.y1a_c02054{bottom:196.320450px;}
.y18_c02054{bottom:275.878542px;}
.y17_c02054{bottom:356.878758px;}
.y15_c02054{bottom:406.559730px;}
.y11_c02054{bottom:424.560306px;}
.y16_c02054{bottom:458.759262px;}
.y14_c02054{bottom:491.879514px;}
.y13_c02054{bottom:509.880090px;}
.y10_c02054{bottom:543.000342px;}
.y12_c02054{bottom:559.559874px;}
.yf_c02054{bottom:577.560450px;}
.y1c_c02054{bottom:614.280450px;}
.yb_c02054{bottom:667.558326px;}
.yd_c02054{bottom:707.160234px;}
.yc_c02054{bottom:716.880450px;}
.ya_c02054{bottom:796.438506px;}
.y9_c02054{bottom:877.438722px;}
.y7_c02054{bottom:926.759730px;}
.y3_c02054{bottom:944.760306px;}
.y8_c02054{bottom:979.319226px;}
.y6_c02054{bottom:1012.439478px;}
.y5_c02054{bottom:1030.440054px;}
.y2_c02054{bottom:1063.560306px;}
.y4_c02054{bottom:1079.759874px;}
.y1_c02054{bottom:1097.760450px;}
.ye_c02054{bottom:1134.840450px;}
.h3_c02054{height:32.530781px;}
.h1_c02054{height:41.696016px;}
.h2_c02054{height:41.812031px;}
.h4_c02054{height:54.654737px;}
.h0_c02054{height:1263.000000px;}
.w1_c02054{width:892.500000px;}
.w0_c02054{width:892.830000px;}
.x0_c02054{left:0.000000px;}
.xd_c02054{left:117.000000px;}
.x8_c02054{left:440.999856px;}
.x4_c02054{left:445.680576px;}
.xb_c02054{left:451.080000px;}
.x7_c02054{left:455.399604px;}
.x5_c02054{left:461.880144px;}
.x1_c02054{left:463.320000px;}
.xa_c02054{left:483.480360px;}
.x9_c02054{left:492.119496px;}
.x6_c02054{left:493.200576px;}
.xc_c02054{left:506.880360px;}
.x3_c02054{left:511.919892px;}
.x2_c02054{left:526.679604px;}
@media print{
.v0_c02054{vertical-align:0.000000pt;}
.v1_c02054{vertical-align:1.279488pt;}
.ls9_c02054{letter-spacing:-0.671616pt;}
.lsa_c02054{letter-spacing:-0.511104pt;}
.lsd_c02054{letter-spacing:-0.380160pt;}
.ls15_c02054{letter-spacing:-0.321024pt;}
.ls11_c02054{letter-spacing:-0.244992pt;}
.lsf_c02054{letter-spacing:-0.232320pt;}
.ls6_c02054{letter-spacing:-0.215424pt;}
.ls4_c02054{letter-spacing:-0.105600pt;}
.ls14_c02054{letter-spacing:0.000000pt;}
.ls1_c02054{letter-spacing:0.005376pt;}
.ls5_c02054{letter-spacing:0.114048pt;}
.ls7_c02054{letter-spacing:0.215424pt;}
.lsc_c02054{letter-spacing:0.451968pt;}
.ls13_c02054{letter-spacing:0.456960pt;}
.ls10_c02054{letter-spacing:0.477312pt;}
.lsb_c02054{letter-spacing:0.515328pt;}
.ls12_c02054{letter-spacing:0.528000pt;}
.ls8_c02054{letter-spacing:0.532224pt;}
.ls2_c02054{letter-spacing:0.544896pt;}
.lse_c02054{letter-spacing:0.578688pt;}
.ls3_c02054{letter-spacing:0.637824pt;}
.ls0_c02054{letter-spacing:0.642048pt;}
.wsc_c02054{word-spacing:-13.445376pt;}
.wsa_c02054{word-spacing:-11.088000pt;}
.ws9_c02054{word-spacing:-11.037312pt;}
.ws2_c02054{word-spacing:-10.775424pt;}
.ws4_c02054{word-spacing:-9.888384pt;}
.ws15_c02054{word-spacing:-1.919232pt;}
.ws10_c02054{word-spacing:-0.963072pt;}
.ws12_c02054{word-spacing:-0.899712pt;}
.wsd_c02054{word-spacing:-0.865920pt;}
.wsf_c02054{word-spacing:-0.105600pt;}
.ws13_c02054{word-spacing:-0.088704pt;}
.ws14_c02054{word-spacing:-0.076032pt;}
.wse_c02054{word-spacing:0.000000pt;}
.ws11_c02054{word-spacing:0.059136pt;}
.wsb_c02054{word-spacing:29.600256pt;}
.ws8_c02054{word-spacing:32.127744pt;}
.ws6_c02054{word-spacing:32.659968pt;}
.ws1_c02054{word-spacing:33.563904pt;}
.ws0_c02054{word-spacing:33.796224pt;}
.ws3_c02054{word-spacing:34.860672pt;}
.ws5_c02054{word-spacing:35.468928pt;}
.ws7_c02054{word-spacing:37.357056pt;}
._0_c02054{margin-left:-1.731840pt;}
._2_c02054{width:1.317888pt;}
._4_c02054{width:2.994816pt;}
._5_c02054{width:13.121280pt;}
._1_c02054{width:44.668800pt;}
._3_c02054{width:45.805056pt;}
.fs0_c02054{font-size:42.240000pt;}
.fs1_c02054{font-size:53.760000pt;}
.y0_c02054{bottom:0.000000pt;}
.y19_c02054{bottom:130.665211pt;}
.y1b_c02054{bottom:165.866875pt;}
.y1a_c02054{bottom:174.507067pt;}
.y18_c02054{bottom:245.225371pt;}
.y17_c02054{bottom:317.225563pt;}
.y15_c02054{bottom:361.386427pt;}
.y11_c02054{bottom:377.386939pt;}
.y16_c02054{bottom:407.786011pt;}
.y14_c02054{bottom:437.226235pt;}
.y13_c02054{bottom:453.226747pt;}
.y10_c02054{bottom:482.666971pt;}
.y12_c02054{bottom:497.386555pt;}
.yf_c02054{bottom:513.387067pt;}
.y1c_c02054{bottom:546.027067pt;}
.yb_c02054{bottom:593.385179pt;}
.yd_c02054{bottom:628.586875pt;}
.yc_c02054{bottom:637.227067pt;}
.ya_c02054{bottom:707.945339pt;}
.y9_c02054{bottom:779.945531pt;}
.y7_c02054{bottom:823.786427pt;}
.y3_c02054{bottom:839.786939pt;}
.y8_c02054{bottom:870.505979pt;}
.y6_c02054{bottom:899.946203pt;}
.y5_c02054{bottom:915.946715pt;}
.y2_c02054{bottom:945.386939pt;}
.y4_c02054{bottom:959.786555pt;}
.y1_c02054{bottom:975.787067pt;}
.ye_c02054{bottom:1008.747067pt;}
.h3_c02054{height:28.916250pt;}
.h1_c02054{height:37.063125pt;}
.h2_c02054{height:37.166250pt;}
.h4_c02054{height:48.581988pt;}
.h0_c02054{height:1122.666667pt;}
.w1_c02054{width:793.333333pt;}
.w0_c02054{width:793.626667pt;}
.x0_c02054{left:0.000000pt;}
.xd_c02054{left:104.000000pt;}
.x8_c02054{left:391.999872pt;}
.x4_c02054{left:396.160512pt;}
.xb_c02054{left:400.960000pt;}
.x7_c02054{left:404.799648pt;}
.x5_c02054{left:410.560128pt;}
.x1_c02054{left:411.840000pt;}
.xa_c02054{left:429.760320pt;}
.x9_c02054{left:437.439552pt;}
.x6_c02054{left:438.400512pt;}
.xc_c02054{left:450.560320pt;}
.x3_c02054{left:455.039904pt;}
.x2_c02054{left:468.159648pt;}
}





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

.ir_c02055:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02055{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02055;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02055{font-family:ff1_c02055;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02055;src:url('chunks/assets/font_95d467c514d831574226402c.woff2')format("woff");}.ff2_c02055{font-family:ff2_c02055;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02055;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02055{font-family:ff3_c02055;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02055{vertical-align:0.000000px;}
.v1_c02055{vertical-align:1.439424px;}
.ls8_c02055{letter-spacing:-0.755568px;}
.ls9_c02055{letter-spacing:-0.574992px;}
.lsd_c02055{letter-spacing:-0.427680px;}
.lsa_c02055{letter-spacing:-0.361152px;}
.ls11_c02055{letter-spacing:-0.275616px;}
.lsf_c02055{letter-spacing:-0.261360px;}
.ls5_c02055{letter-spacing:-0.242352px;}
.ls3_c02055{letter-spacing:-0.118800px;}
.ls14_c02055{letter-spacing:0.000000px;}
.ls0_c02055{letter-spacing:0.006048px;}
.ls4_c02055{letter-spacing:0.128304px;}
.ls6_c02055{letter-spacing:0.242352px;}
.lsc_c02055{letter-spacing:0.508464px;}
.ls13_c02055{letter-spacing:0.514080px;}
.ls10_c02055{letter-spacing:0.536976px;}
.lsb_c02055{letter-spacing:0.579744px;}
.ls12_c02055{letter-spacing:0.594000px;}
.ls7_c02055{letter-spacing:0.598752px;}
.ls1_c02055{letter-spacing:0.613008px;}
.lse_c02055{letter-spacing:0.651024px;}
.ls2_c02055{letter-spacing:0.717552px;}
.sc__c02055{text-shadow:none;}
.sc0_c02055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02055{-webkit-text-stroke:0px transparent;}
.sc0_c02055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02055{word-spacing:-15.126048px;}
.wsa_c02055{word-spacing:-12.474000px;}
.ws9_c02055{word-spacing:-12.416976px;}
.ws2_c02055{word-spacing:-12.122352px;}
.ws4_c02055{word-spacing:-11.124432px;}
.ws15_c02055{word-spacing:-2.159136px;}
.ws12_c02055{word-spacing:-1.012176px;}
.wse_c02055{word-spacing:-0.974160px;}
.ws10_c02055{word-spacing:-0.118800px;}
.ws13_c02055{word-spacing:-0.099792px;}
.ws14_c02055{word-spacing:-0.085536px;}
.wsf_c02055{word-spacing:0.000000px;}
.ws11_c02055{word-spacing:0.066528px;}
.wsb_c02055{word-spacing:33.300288px;}
.ws8_c02055{word-spacing:36.143712px;}
.ws6_c02055{word-spacing:36.742464px;}
.ws1_c02055{word-spacing:37.759392px;}
.ws0_c02055{word-spacing:38.020752px;}
.ws3_c02055{word-spacing:39.218256px;}
.ws5_c02055{word-spacing:39.902544px;}
.ws7_c02055{word-spacing:42.026688px;}
.wsd_c02055{word-spacing:51.426144px;}
._0_c02055{margin-left:-1.948320px;}
._2_c02055{width:1.482624px;}
._4_c02055{width:3.369168px;}
._5_c02055{width:14.761440px;}
._1_c02055{width:50.252400px;}
._3_c02055{width:51.530688px;}
.fc0_c02055{color:rgb(0,0,0);}
.fs0_c02055{font-size:47.520000px;}
.fs1_c02055{font-size:60.480000px;}
.y0_c02055{bottom:0.000000px;}
.y19_c02055{bottom:146.998362px;}
.y1b_c02055{bottom:186.600234px;}
.y1a_c02055{bottom:196.320450px;}
.y18_c02055{bottom:275.878542px;}
.y17_c02055{bottom:356.878758px;}
.y15_c02055{bottom:406.559730px;}
.y11_c02055{bottom:424.560306px;}
.y16_c02055{bottom:458.759262px;}
.y14_c02055{bottom:491.879514px;}
.y13_c02055{bottom:509.880090px;}
.y10_c02055{bottom:543.000342px;}
.y12_c02055{bottom:559.559874px;}
.yf_c02055{bottom:577.560450px;}
.y1c_c02055{bottom:614.280450px;}
.yb_c02055{bottom:667.558326px;}
.yd_c02055{bottom:707.160234px;}
.yc_c02055{bottom:716.880450px;}
.ya_c02055{bottom:796.438506px;}
.y9_c02055{bottom:877.438722px;}
.y7_c02055{bottom:926.759730px;}
.y3_c02055{bottom:944.760306px;}
.y8_c02055{bottom:979.319226px;}
.y6_c02055{bottom:1012.439478px;}
.y5_c02055{bottom:1030.440054px;}
.y2_c02055{bottom:1063.560306px;}
.y4_c02055{bottom:1079.759874px;}
.y1_c02055{bottom:1097.760450px;}
.ye_c02055{bottom:1134.840450px;}
.h3_c02055{height:32.530781px;}
.h1_c02055{height:41.696016px;}
.h2_c02055{height:41.812031px;}
.h4_c02055{height:54.654737px;}
.h0_c02055{height:1263.000000px;}
.w1_c02055{width:892.500000px;}
.w0_c02055{width:892.830000px;}
.x0_c02055{left:0.000000px;}
.xd_c02055{left:117.000000px;}
.x8_c02055{left:440.999856px;}
.x4_c02055{left:445.680576px;}
.xb_c02055{left:451.080000px;}
.x7_c02055{left:455.399604px;}
.x5_c02055{left:461.880144px;}
.x1_c02055{left:463.320000px;}
.xa_c02055{left:483.480360px;}
.x9_c02055{left:492.119496px;}
.x6_c02055{left:493.200576px;}
.xc_c02055{left:506.880360px;}
.x3_c02055{left:511.919892px;}
.x2_c02055{left:526.679604px;}
@media print{
.v0_c02055{vertical-align:0.000000pt;}
.v1_c02055{vertical-align:1.279488pt;}
.ls8_c02055{letter-spacing:-0.671616pt;}
.ls9_c02055{letter-spacing:-0.511104pt;}
.lsd_c02055{letter-spacing:-0.380160pt;}
.lsa_c02055{letter-spacing:-0.321024pt;}
.ls11_c02055{letter-spacing:-0.244992pt;}
.lsf_c02055{letter-spacing:-0.232320pt;}
.ls5_c02055{letter-spacing:-0.215424pt;}
.ls3_c02055{letter-spacing:-0.105600pt;}
.ls14_c02055{letter-spacing:0.000000pt;}
.ls0_c02055{letter-spacing:0.005376pt;}
.ls4_c02055{letter-spacing:0.114048pt;}
.ls6_c02055{letter-spacing:0.215424pt;}
.lsc_c02055{letter-spacing:0.451968pt;}
.ls13_c02055{letter-spacing:0.456960pt;}
.ls10_c02055{letter-spacing:0.477312pt;}
.lsb_c02055{letter-spacing:0.515328pt;}
.ls12_c02055{letter-spacing:0.528000pt;}
.ls7_c02055{letter-spacing:0.532224pt;}
.ls1_c02055{letter-spacing:0.544896pt;}
.lse_c02055{letter-spacing:0.578688pt;}
.ls2_c02055{letter-spacing:0.637824pt;}
.wsc_c02055{word-spacing:-13.445376pt;}
.wsa_c02055{word-spacing:-11.088000pt;}
.ws9_c02055{word-spacing:-11.037312pt;}
.ws2_c02055{word-spacing:-10.775424pt;}
.ws4_c02055{word-spacing:-9.888384pt;}
.ws15_c02055{word-spacing:-1.919232pt;}
.ws12_c02055{word-spacing:-0.899712pt;}
.wse_c02055{word-spacing:-0.865920pt;}
.ws10_c02055{word-spacing:-0.105600pt;}
.ws13_c02055{word-spacing:-0.088704pt;}
.ws14_c02055{word-spacing:-0.076032pt;}
.wsf_c02055{word-spacing:0.000000pt;}
.ws11_c02055{word-spacing:0.059136pt;}
.wsb_c02055{word-spacing:29.600256pt;}
.ws8_c02055{word-spacing:32.127744pt;}
.ws6_c02055{word-spacing:32.659968pt;}
.ws1_c02055{word-spacing:33.563904pt;}
.ws0_c02055{word-spacing:33.796224pt;}
.ws3_c02055{word-spacing:34.860672pt;}
.ws5_c02055{word-spacing:35.468928pt;}
.ws7_c02055{word-spacing:37.357056pt;}
.wsd_c02055{word-spacing:45.712128pt;}
._0_c02055{margin-left:-1.731840pt;}
._2_c02055{width:1.317888pt;}
._4_c02055{width:2.994816pt;}
._5_c02055{width:13.121280pt;}
._1_c02055{width:44.668800pt;}
._3_c02055{width:45.805056pt;}
.fs0_c02055{font-size:42.240000pt;}
.fs1_c02055{font-size:53.760000pt;}
.y0_c02055{bottom:0.000000pt;}
.y19_c02055{bottom:130.665211pt;}
.y1b_c02055{bottom:165.866875pt;}
.y1a_c02055{bottom:174.507067pt;}
.y18_c02055{bottom:245.225371pt;}
.y17_c02055{bottom:317.225563pt;}
.y15_c02055{bottom:361.386427pt;}
.y11_c02055{bottom:377.386939pt;}
.y16_c02055{bottom:407.786011pt;}
.y14_c02055{bottom:437.226235pt;}
.y13_c02055{bottom:453.226747pt;}
.y10_c02055{bottom:482.666971pt;}
.y12_c02055{bottom:497.386555pt;}
.yf_c02055{bottom:513.387067pt;}
.y1c_c02055{bottom:546.027067pt;}
.yb_c02055{bottom:593.385179pt;}
.yd_c02055{bottom:628.586875pt;}
.yc_c02055{bottom:637.227067pt;}
.ya_c02055{bottom:707.945339pt;}
.y9_c02055{bottom:779.945531pt;}
.y7_c02055{bottom:823.786427pt;}
.y3_c02055{bottom:839.786939pt;}
.y8_c02055{bottom:870.505979pt;}
.y6_c02055{bottom:899.946203pt;}
.y5_c02055{bottom:915.946715pt;}
.y2_c02055{bottom:945.386939pt;}
.y4_c02055{bottom:959.786555pt;}
.y1_c02055{bottom:975.787067pt;}
.ye_c02055{bottom:1008.747067pt;}
.h3_c02055{height:28.916250pt;}
.h1_c02055{height:37.063125pt;}
.h2_c02055{height:37.166250pt;}
.h4_c02055{height:48.581988pt;}
.h0_c02055{height:1122.666667pt;}
.w1_c02055{width:793.333333pt;}
.w0_c02055{width:793.626667pt;}
.x0_c02055{left:0.000000pt;}
.xd_c02055{left:104.000000pt;}
.x8_c02055{left:391.999872pt;}
.x4_c02055{left:396.160512pt;}
.xb_c02055{left:400.960000pt;}
.x7_c02055{left:404.799648pt;}
.x5_c02055{left:410.560128pt;}
.x1_c02055{left:411.840000pt;}
.xa_c02055{left:429.760320pt;}
.x9_c02055{left:437.439552pt;}
.x6_c02055{left:438.400512pt;}
.xc_c02055{left:450.560320pt;}
.x3_c02055{left:455.039904pt;}
.x2_c02055{left:468.159648pt;}
}





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

.ir_c02056:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02056;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02056{font-family:ff1_c02056;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02056;src:url('chunks/assets/font_4be3875d663a7f8f367a1bd5.woff2')format("woff");}.ff2_c02056{font-family:ff2_c02056;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02056;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02056{font-family:ff3_c02056;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02056{vertical-align:0.000000px;}
.v1_c02056{vertical-align:1.439424px;}
.ls8_c02056{letter-spacing:-0.793584px;}
.ls6_c02056{letter-spacing:-0.613008px;}
.ls9_c02056{letter-spacing:-0.574992px;}
.lsc_c02056{letter-spacing:-0.427680px;}
.ls10_c02056{letter-spacing:-0.275616px;}
.lse_c02056{letter-spacing:-0.261360px;}
.ls5_c02056{letter-spacing:-0.242352px;}
.ls3_c02056{letter-spacing:-0.118800px;}
.ls13_c02056{letter-spacing:0.000000px;}
.ls1_c02056{letter-spacing:0.006048px;}
.ls4_c02056{letter-spacing:0.128304px;}
.ls14_c02056{letter-spacing:0.242352px;}
.lsb_c02056{letter-spacing:0.508464px;}
.ls12_c02056{letter-spacing:0.514080px;}
.lsf_c02056{letter-spacing:0.536976px;}
.lsa_c02056{letter-spacing:0.579744px;}
.ls11_c02056{letter-spacing:0.594000px;}
.ls7_c02056{letter-spacing:0.598752px;}
.ls2_c02056{letter-spacing:0.613008px;}
.lsd_c02056{letter-spacing:0.651024px;}
.ls0_c02056{letter-spacing:0.717552px;}
.sc__c02056{text-shadow:none;}
.sc0_c02056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02056{-webkit-text-stroke:0px transparent;}
.sc0_c02056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02056{word-spacing:-15.126048px;}
.wsa_c02056{word-spacing:-12.474000px;}
.ws9_c02056{word-spacing:-12.416976px;}
.ws2_c02056{word-spacing:-11.266992px;}
.ws4_c02056{word-spacing:-11.086416px;}
.ws15_c02056{word-spacing:-2.159136px;}
.ws10_c02056{word-spacing:-1.078704px;}
.ws12_c02056{word-spacing:-1.012176px;}
.wsd_c02056{word-spacing:-0.974160px;}
.wsf_c02056{word-spacing:-0.118800px;}
.ws13_c02056{word-spacing:-0.099792px;}
.ws14_c02056{word-spacing:-0.085536px;}
.wse_c02056{word-spacing:0.000000px;}
.ws11_c02056{word-spacing:0.066528px;}
.wsb_c02056{word-spacing:33.300288px;}
.ws8_c02056{word-spacing:36.143712px;}
.ws6_c02056{word-spacing:36.742464px;}
.ws1_c02056{word-spacing:37.759392px;}
.ws0_c02056{word-spacing:38.020752px;}
.ws3_c02056{word-spacing:39.218256px;}
.ws5_c02056{word-spacing:39.902544px;}
.ws7_c02056{word-spacing:42.026688px;}
._0_c02056{margin-left:-1.948320px;}
._2_c02056{width:1.482624px;}
._4_c02056{width:4.291056px;}
._5_c02056{width:14.761440px;}
._1_c02056{width:50.252400px;}
._3_c02056{width:51.530688px;}
.fc0_c02056{color:rgb(0,0,0);}
.fs0_c02056{font-size:47.520000px;}
.fs1_c02056{font-size:60.480000px;}
.y0_c02056{bottom:0.000000px;}
.y19_c02056{bottom:146.998362px;}
.y1b_c02056{bottom:186.600234px;}
.y1a_c02056{bottom:196.320450px;}
.y18_c02056{bottom:275.878542px;}
.y17_c02056{bottom:356.878758px;}
.y15_c02056{bottom:406.559730px;}
.y11_c02056{bottom:424.560306px;}
.y16_c02056{bottom:458.759262px;}
.y14_c02056{bottom:491.879514px;}
.y13_c02056{bottom:509.880090px;}
.y10_c02056{bottom:543.000342px;}
.y12_c02056{bottom:559.559874px;}
.yf_c02056{bottom:577.560450px;}
.y1c_c02056{bottom:614.280450px;}
.yb_c02056{bottom:667.558326px;}
.yd_c02056{bottom:707.160234px;}
.yc_c02056{bottom:716.880450px;}
.ya_c02056{bottom:796.438506px;}
.y9_c02056{bottom:877.438722px;}
.y7_c02056{bottom:926.759730px;}
.y3_c02056{bottom:944.760306px;}
.y8_c02056{bottom:979.319226px;}
.y6_c02056{bottom:1012.439478px;}
.y5_c02056{bottom:1030.440054px;}
.y2_c02056{bottom:1063.560306px;}
.y4_c02056{bottom:1079.759874px;}
.y1_c02056{bottom:1097.760450px;}
.ye_c02056{bottom:1134.840450px;}
.h3_c02056{height:32.530781px;}
.h1_c02056{height:41.696016px;}
.h2_c02056{height:41.812031px;}
.h4_c02056{height:54.654737px;}
.h0_c02056{height:1263.000000px;}
.w1_c02056{width:892.500000px;}
.w0_c02056{width:892.830000px;}
.x0_c02056{left:0.000000px;}
.xd_c02056{left:117.000000px;}
.x8_c02056{left:440.999856px;}
.x4_c02056{left:445.680576px;}
.xb_c02056{left:451.080000px;}
.x7_c02056{left:455.399604px;}
.x5_c02056{left:461.880144px;}
.x1_c02056{left:463.320000px;}
.xa_c02056{left:483.480360px;}
.x9_c02056{left:492.119496px;}
.x6_c02056{left:493.200576px;}
.xc_c02056{left:506.880360px;}
.x3_c02056{left:511.919892px;}
.x2_c02056{left:526.679604px;}
@media print{
.v0_c02056{vertical-align:0.000000pt;}
.v1_c02056{vertical-align:1.279488pt;}
.ls8_c02056{letter-spacing:-0.705408pt;}
.ls6_c02056{letter-spacing:-0.544896pt;}
.ls9_c02056{letter-spacing:-0.511104pt;}
.lsc_c02056{letter-spacing:-0.380160pt;}
.ls10_c02056{letter-spacing:-0.244992pt;}
.lse_c02056{letter-spacing:-0.232320pt;}
.ls5_c02056{letter-spacing:-0.215424pt;}
.ls3_c02056{letter-spacing:-0.105600pt;}
.ls13_c02056{letter-spacing:0.000000pt;}
.ls1_c02056{letter-spacing:0.005376pt;}
.ls4_c02056{letter-spacing:0.114048pt;}
.ls14_c02056{letter-spacing:0.215424pt;}
.lsb_c02056{letter-spacing:0.451968pt;}
.ls12_c02056{letter-spacing:0.456960pt;}
.lsf_c02056{letter-spacing:0.477312pt;}
.lsa_c02056{letter-spacing:0.515328pt;}
.ls11_c02056{letter-spacing:0.528000pt;}
.ls7_c02056{letter-spacing:0.532224pt;}
.ls2_c02056{letter-spacing:0.544896pt;}
.lsd_c02056{letter-spacing:0.578688pt;}
.ls0_c02056{letter-spacing:0.637824pt;}
.wsc_c02056{word-spacing:-13.445376pt;}
.wsa_c02056{word-spacing:-11.088000pt;}
.ws9_c02056{word-spacing:-11.037312pt;}
.ws2_c02056{word-spacing:-10.015104pt;}
.ws4_c02056{word-spacing:-9.854592pt;}
.ws15_c02056{word-spacing:-1.919232pt;}
.ws10_c02056{word-spacing:-0.958848pt;}
.ws12_c02056{word-spacing:-0.899712pt;}
.wsd_c02056{word-spacing:-0.865920pt;}
.wsf_c02056{word-spacing:-0.105600pt;}
.ws13_c02056{word-spacing:-0.088704pt;}
.ws14_c02056{word-spacing:-0.076032pt;}
.wse_c02056{word-spacing:0.000000pt;}
.ws11_c02056{word-spacing:0.059136pt;}
.wsb_c02056{word-spacing:29.600256pt;}
.ws8_c02056{word-spacing:32.127744pt;}
.ws6_c02056{word-spacing:32.659968pt;}
.ws1_c02056{word-spacing:33.563904pt;}
.ws0_c02056{word-spacing:33.796224pt;}
.ws3_c02056{word-spacing:34.860672pt;}
.ws5_c02056{word-spacing:35.468928pt;}
.ws7_c02056{word-spacing:37.357056pt;}
._0_c02056{margin-left:-1.731840pt;}
._2_c02056{width:1.317888pt;}
._4_c02056{width:3.814272pt;}
._5_c02056{width:13.121280pt;}
._1_c02056{width:44.668800pt;}
._3_c02056{width:45.805056pt;}
.fs0_c02056{font-size:42.240000pt;}
.fs1_c02056{font-size:53.760000pt;}
.y0_c02056{bottom:0.000000pt;}
.y19_c02056{bottom:130.665211pt;}
.y1b_c02056{bottom:165.866875pt;}
.y1a_c02056{bottom:174.507067pt;}
.y18_c02056{bottom:245.225371pt;}
.y17_c02056{bottom:317.225563pt;}
.y15_c02056{bottom:361.386427pt;}
.y11_c02056{bottom:377.386939pt;}
.y16_c02056{bottom:407.786011pt;}
.y14_c02056{bottom:437.226235pt;}
.y13_c02056{bottom:453.226747pt;}
.y10_c02056{bottom:482.666971pt;}
.y12_c02056{bottom:497.386555pt;}
.yf_c02056{bottom:513.387067pt;}
.y1c_c02056{bottom:546.027067pt;}
.yb_c02056{bottom:593.385179pt;}
.yd_c02056{bottom:628.586875pt;}
.yc_c02056{bottom:637.227067pt;}
.ya_c02056{bottom:707.945339pt;}
.y9_c02056{bottom:779.945531pt;}
.y7_c02056{bottom:823.786427pt;}
.y3_c02056{bottom:839.786939pt;}
.y8_c02056{bottom:870.505979pt;}
.y6_c02056{bottom:899.946203pt;}
.y5_c02056{bottom:915.946715pt;}
.y2_c02056{bottom:945.386939pt;}
.y4_c02056{bottom:959.786555pt;}
.y1_c02056{bottom:975.787067pt;}
.ye_c02056{bottom:1008.747067pt;}
.h3_c02056{height:28.916250pt;}
.h1_c02056{height:37.063125pt;}
.h2_c02056{height:37.166250pt;}
.h4_c02056{height:48.581988pt;}
.h0_c02056{height:1122.666667pt;}
.w1_c02056{width:793.333333pt;}
.w0_c02056{width:793.626667pt;}
.x0_c02056{left:0.000000pt;}
.xd_c02056{left:104.000000pt;}
.x8_c02056{left:391.999872pt;}
.x4_c02056{left:396.160512pt;}
.xb_c02056{left:400.960000pt;}
.x7_c02056{left:404.799648pt;}
.x5_c02056{left:410.560128pt;}
.x1_c02056{left:411.840000pt;}
.xa_c02056{left:429.760320pt;}
.x9_c02056{left:437.439552pt;}
.x6_c02056{left:438.400512pt;}
.xc_c02056{left:450.560320pt;}
.x3_c02056{left:455.039904pt;}
.x2_c02056{left:468.159648pt;}
}





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

.ir_c02057:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02057;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02057{font-family:ff1_c02057;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02057;src:url('chunks/assets/font_fc437c85927acac64b0c55c9.woff2')format("woff");}.ff2_c02057{font-family:ff2_c02057;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02057;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02057{font-family:ff3_c02057;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02057{vertical-align:0.000000px;}
.v1_c02057{vertical-align:1.439424px;}
.ls8_c02057{letter-spacing:-0.793584px;}
.ls6_c02057{letter-spacing:-0.613008px;}
.ls9_c02057{letter-spacing:-0.574992px;}
.ls10_c02057{letter-spacing:-0.275616px;}
.lse_c02057{letter-spacing:-0.261360px;}
.ls5_c02057{letter-spacing:-0.242352px;}
.ls3_c02057{letter-spacing:-0.118800px;}
.ls13_c02057{letter-spacing:0.000000px;}
.ls1_c02057{letter-spacing:0.006048px;}
.ls4_c02057{letter-spacing:0.128304px;}
.lsc_c02057{letter-spacing:0.242352px;}
.lsb_c02057{letter-spacing:0.508464px;}
.ls12_c02057{letter-spacing:0.514080px;}
.lsf_c02057{letter-spacing:0.536976px;}
.lsa_c02057{letter-spacing:0.579744px;}
.ls11_c02057{letter-spacing:0.594000px;}
.ls7_c02057{letter-spacing:0.598752px;}
.ls2_c02057{letter-spacing:0.613008px;}
.lsd_c02057{letter-spacing:0.651024px;}
.ls0_c02057{letter-spacing:0.717552px;}
.sc__c02057{text-shadow:none;}
.sc0_c02057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02057{-webkit-text-stroke:0px transparent;}
.sc0_c02057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02057{word-spacing:-15.126048px;}
.wsa_c02057{word-spacing:-12.474000px;}
.ws9_c02057{word-spacing:-12.416976px;}
.ws2_c02057{word-spacing:-11.266992px;}
.ws4_c02057{word-spacing:-11.086416px;}
.ws14_c02057{word-spacing:-2.159136px;}
.ws10_c02057{word-spacing:-1.078704px;}
.ws11_c02057{word-spacing:-1.012176px;}
.wsd_c02057{word-spacing:-0.974160px;}
.wsf_c02057{word-spacing:-0.118800px;}
.ws12_c02057{word-spacing:-0.099792px;}
.ws13_c02057{word-spacing:-0.085536px;}
.wse_c02057{word-spacing:0.000000px;}
.wsb_c02057{word-spacing:33.300288px;}
.ws8_c02057{word-spacing:36.143712px;}
.ws6_c02057{word-spacing:36.742464px;}
.ws1_c02057{word-spacing:37.759392px;}
.ws0_c02057{word-spacing:38.020752px;}
.ws3_c02057{word-spacing:39.218256px;}
.ws5_c02057{word-spacing:39.902544px;}
.ws7_c02057{word-spacing:42.026688px;}
._0_c02057{margin-left:-1.948320px;}
._2_c02057{width:1.482624px;}
._4_c02057{width:4.291056px;}
._5_c02057{width:14.761440px;}
._1_c02057{width:50.252400px;}
._3_c02057{width:51.530688px;}
.fc0_c02057{color:rgb(0,0,0);}
.fs0_c02057{font-size:47.520000px;}
.fs1_c02057{font-size:60.480000px;}
.y0_c02057{bottom:0.000000px;}
.y19_c02057{bottom:146.998362px;}
.y1b_c02057{bottom:186.600234px;}
.y1a_c02057{bottom:196.320450px;}
.y18_c02057{bottom:275.878542px;}
.y17_c02057{bottom:356.878758px;}
.y15_c02057{bottom:406.559730px;}
.y11_c02057{bottom:424.560306px;}
.y16_c02057{bottom:458.759262px;}
.y14_c02057{bottom:491.879514px;}
.y13_c02057{bottom:509.880090px;}
.y10_c02057{bottom:543.000342px;}
.y12_c02057{bottom:559.559874px;}
.yf_c02057{bottom:577.560450px;}
.y1c_c02057{bottom:614.280450px;}
.yb_c02057{bottom:667.558326px;}
.yd_c02057{bottom:707.160234px;}
.yc_c02057{bottom:716.880450px;}
.ya_c02057{bottom:796.438506px;}
.y9_c02057{bottom:877.438722px;}
.y7_c02057{bottom:926.759730px;}
.y3_c02057{bottom:944.760306px;}
.y8_c02057{bottom:979.319226px;}
.y6_c02057{bottom:1012.439478px;}
.y5_c02057{bottom:1030.440054px;}
.y2_c02057{bottom:1063.560306px;}
.y4_c02057{bottom:1079.759874px;}
.y1_c02057{bottom:1097.760450px;}
.ye_c02057{bottom:1134.840450px;}
.h3_c02057{height:32.530781px;}
.h1_c02057{height:41.696016px;}
.h2_c02057{height:41.812031px;}
.h4_c02057{height:54.654737px;}
.h0_c02057{height:1263.000000px;}
.w1_c02057{width:892.500000px;}
.w0_c02057{width:892.830000px;}
.x0_c02057{left:0.000000px;}
.xd_c02057{left:117.000000px;}
.x8_c02057{left:440.999856px;}
.x4_c02057{left:445.680576px;}
.xb_c02057{left:451.080000px;}
.x7_c02057{left:455.399604px;}
.x5_c02057{left:461.880144px;}
.x1_c02057{left:463.320000px;}
.xa_c02057{left:483.480360px;}
.x9_c02057{left:492.119496px;}
.x6_c02057{left:493.200576px;}
.xc_c02057{left:506.880360px;}
.x3_c02057{left:511.919892px;}
.x2_c02057{left:526.679604px;}
@media print{
.v0_c02057{vertical-align:0.000000pt;}
.v1_c02057{vertical-align:1.279488pt;}
.ls8_c02057{letter-spacing:-0.705408pt;}
.ls6_c02057{letter-spacing:-0.544896pt;}
.ls9_c02057{letter-spacing:-0.511104pt;}
.ls10_c02057{letter-spacing:-0.244992pt;}
.lse_c02057{letter-spacing:-0.232320pt;}
.ls5_c02057{letter-spacing:-0.215424pt;}
.ls3_c02057{letter-spacing:-0.105600pt;}
.ls13_c02057{letter-spacing:0.000000pt;}
.ls1_c02057{letter-spacing:0.005376pt;}
.ls4_c02057{letter-spacing:0.114048pt;}
.lsc_c02057{letter-spacing:0.215424pt;}
.lsb_c02057{letter-spacing:0.451968pt;}
.ls12_c02057{letter-spacing:0.456960pt;}
.lsf_c02057{letter-spacing:0.477312pt;}
.lsa_c02057{letter-spacing:0.515328pt;}
.ls11_c02057{letter-spacing:0.528000pt;}
.ls7_c02057{letter-spacing:0.532224pt;}
.ls2_c02057{letter-spacing:0.544896pt;}
.lsd_c02057{letter-spacing:0.578688pt;}
.ls0_c02057{letter-spacing:0.637824pt;}
.wsc_c02057{word-spacing:-13.445376pt;}
.wsa_c02057{word-spacing:-11.088000pt;}
.ws9_c02057{word-spacing:-11.037312pt;}
.ws2_c02057{word-spacing:-10.015104pt;}
.ws4_c02057{word-spacing:-9.854592pt;}
.ws14_c02057{word-spacing:-1.919232pt;}
.ws10_c02057{word-spacing:-0.958848pt;}
.ws11_c02057{word-spacing:-0.899712pt;}
.wsd_c02057{word-spacing:-0.865920pt;}
.wsf_c02057{word-spacing:-0.105600pt;}
.ws12_c02057{word-spacing:-0.088704pt;}
.ws13_c02057{word-spacing:-0.076032pt;}
.wse_c02057{word-spacing:0.000000pt;}
.wsb_c02057{word-spacing:29.600256pt;}
.ws8_c02057{word-spacing:32.127744pt;}
.ws6_c02057{word-spacing:32.659968pt;}
.ws1_c02057{word-spacing:33.563904pt;}
.ws0_c02057{word-spacing:33.796224pt;}
.ws3_c02057{word-spacing:34.860672pt;}
.ws5_c02057{word-spacing:35.468928pt;}
.ws7_c02057{word-spacing:37.357056pt;}
._0_c02057{margin-left:-1.731840pt;}
._2_c02057{width:1.317888pt;}
._4_c02057{width:3.814272pt;}
._5_c02057{width:13.121280pt;}
._1_c02057{width:44.668800pt;}
._3_c02057{width:45.805056pt;}
.fs0_c02057{font-size:42.240000pt;}
.fs1_c02057{font-size:53.760000pt;}
.y0_c02057{bottom:0.000000pt;}
.y19_c02057{bottom:130.665211pt;}
.y1b_c02057{bottom:165.866875pt;}
.y1a_c02057{bottom:174.507067pt;}
.y18_c02057{bottom:245.225371pt;}
.y17_c02057{bottom:317.225563pt;}
.y15_c02057{bottom:361.386427pt;}
.y11_c02057{bottom:377.386939pt;}
.y16_c02057{bottom:407.786011pt;}
.y14_c02057{bottom:437.226235pt;}
.y13_c02057{bottom:453.226747pt;}
.y10_c02057{bottom:482.666971pt;}
.y12_c02057{bottom:497.386555pt;}
.yf_c02057{bottom:513.387067pt;}
.y1c_c02057{bottom:546.027067pt;}
.yb_c02057{bottom:593.385179pt;}
.yd_c02057{bottom:628.586875pt;}
.yc_c02057{bottom:637.227067pt;}
.ya_c02057{bottom:707.945339pt;}
.y9_c02057{bottom:779.945531pt;}
.y7_c02057{bottom:823.786427pt;}
.y3_c02057{bottom:839.786939pt;}
.y8_c02057{bottom:870.505979pt;}
.y6_c02057{bottom:899.946203pt;}
.y5_c02057{bottom:915.946715pt;}
.y2_c02057{bottom:945.386939pt;}
.y4_c02057{bottom:959.786555pt;}
.y1_c02057{bottom:975.787067pt;}
.ye_c02057{bottom:1008.747067pt;}
.h3_c02057{height:28.916250pt;}
.h1_c02057{height:37.063125pt;}
.h2_c02057{height:37.166250pt;}
.h4_c02057{height:48.581988pt;}
.h0_c02057{height:1122.666667pt;}
.w1_c02057{width:793.333333pt;}
.w0_c02057{width:793.626667pt;}
.x0_c02057{left:0.000000pt;}
.xd_c02057{left:104.000000pt;}
.x8_c02057{left:391.999872pt;}
.x4_c02057{left:396.160512pt;}
.xb_c02057{left:400.960000pt;}
.x7_c02057{left:404.799648pt;}
.x5_c02057{left:410.560128pt;}
.x1_c02057{left:411.840000pt;}
.xa_c02057{left:429.760320pt;}
.x9_c02057{left:437.439552pt;}
.x6_c02057{left:438.400512pt;}
.xc_c02057{left:450.560320pt;}
.x3_c02057{left:455.039904pt;}
.x2_c02057{left:468.159648pt;}
}





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

.ir_c02058:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02058;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02058{font-family:ff1_c02058;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02058;src:url('chunks/assets/font_23da50c1773ff80d2f23fcf4.woff2')format("woff");}.ff2_c02058{font-family:ff2_c02058;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02058;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02058{font-family:ff3_c02058;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02058{vertical-align:0.000000px;}
.v1_c02058{vertical-align:1.439424px;}
.ls8_c02058{letter-spacing:-0.793584px;}
.ls6_c02058{letter-spacing:-0.613008px;}
.ls9_c02058{letter-spacing:-0.574992px;}
.ls10_c02058{letter-spacing:-0.275616px;}
.lse_c02058{letter-spacing:-0.261360px;}
.ls5_c02058{letter-spacing:-0.242352px;}
.ls3_c02058{letter-spacing:-0.118800px;}
.ls13_c02058{letter-spacing:0.000000px;}
.ls1_c02058{letter-spacing:0.006048px;}
.ls4_c02058{letter-spacing:0.128304px;}
.lsc_c02058{letter-spacing:0.242352px;}
.lsb_c02058{letter-spacing:0.508464px;}
.ls12_c02058{letter-spacing:0.514080px;}
.lsf_c02058{letter-spacing:0.536976px;}
.lsa_c02058{letter-spacing:0.579744px;}
.ls11_c02058{letter-spacing:0.594000px;}
.ls7_c02058{letter-spacing:0.598752px;}
.ls2_c02058{letter-spacing:0.613008px;}
.lsd_c02058{letter-spacing:0.651024px;}
.ls0_c02058{letter-spacing:0.717552px;}
.sc__c02058{text-shadow:none;}
.sc0_c02058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02058{-webkit-text-stroke:0px transparent;}
.sc0_c02058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02058{word-spacing:-15.126048px;}
.wsa_c02058{word-spacing:-12.474000px;}
.ws9_c02058{word-spacing:-12.416976px;}
.ws2_c02058{word-spacing:-11.266992px;}
.ws4_c02058{word-spacing:-11.086416px;}
.ws14_c02058{word-spacing:-2.159136px;}
.ws10_c02058{word-spacing:-1.078704px;}
.ws11_c02058{word-spacing:-1.012176px;}
.wsd_c02058{word-spacing:-0.974160px;}
.wsf_c02058{word-spacing:-0.118800px;}
.ws12_c02058{word-spacing:-0.099792px;}
.ws13_c02058{word-spacing:-0.085536px;}
.wse_c02058{word-spacing:0.000000px;}
.wsb_c02058{word-spacing:33.300288px;}
.ws8_c02058{word-spacing:36.143712px;}
.ws6_c02058{word-spacing:36.742464px;}
.ws1_c02058{word-spacing:37.759392px;}
.ws0_c02058{word-spacing:38.020752px;}
.ws3_c02058{word-spacing:39.218256px;}
.ws5_c02058{word-spacing:39.902544px;}
.ws7_c02058{word-spacing:42.026688px;}
._0_c02058{margin-left:-1.948320px;}
._2_c02058{width:1.482624px;}
._4_c02058{width:4.291056px;}
._5_c02058{width:14.761440px;}
._1_c02058{width:50.252400px;}
._3_c02058{width:51.530688px;}
.fc0_c02058{color:rgb(0,0,0);}
.fs0_c02058{font-size:47.520000px;}
.fs1_c02058{font-size:60.480000px;}
.y0_c02058{bottom:0.000000px;}
.y19_c02058{bottom:146.998362px;}
.y1b_c02058{bottom:186.600234px;}
.y1a_c02058{bottom:196.320450px;}
.y18_c02058{bottom:275.878542px;}
.y17_c02058{bottom:356.878758px;}
.y15_c02058{bottom:406.559730px;}
.y11_c02058{bottom:424.560306px;}
.y16_c02058{bottom:458.759262px;}
.y14_c02058{bottom:491.879514px;}
.y13_c02058{bottom:509.880090px;}
.y10_c02058{bottom:543.000342px;}
.y12_c02058{bottom:559.559874px;}
.yf_c02058{bottom:577.560450px;}
.y1c_c02058{bottom:614.280450px;}
.yb_c02058{bottom:667.558326px;}
.yd_c02058{bottom:707.160234px;}
.yc_c02058{bottom:716.880450px;}
.ya_c02058{bottom:796.438506px;}
.y9_c02058{bottom:877.438722px;}
.y7_c02058{bottom:926.759730px;}
.y3_c02058{bottom:944.760306px;}
.y8_c02058{bottom:979.319226px;}
.y6_c02058{bottom:1012.439478px;}
.y5_c02058{bottom:1030.440054px;}
.y2_c02058{bottom:1063.560306px;}
.y4_c02058{bottom:1079.759874px;}
.y1_c02058{bottom:1097.760450px;}
.ye_c02058{bottom:1134.840450px;}
.h3_c02058{height:32.530781px;}
.h1_c02058{height:41.696016px;}
.h2_c02058{height:41.812031px;}
.h4_c02058{height:54.654737px;}
.h0_c02058{height:1263.000000px;}
.w1_c02058{width:892.500000px;}
.w0_c02058{width:892.830000px;}
.x0_c02058{left:0.000000px;}
.xd_c02058{left:117.000000px;}
.x8_c02058{left:440.999856px;}
.x4_c02058{left:445.680576px;}
.xb_c02058{left:451.080000px;}
.x7_c02058{left:455.399604px;}
.x5_c02058{left:461.880144px;}
.x1_c02058{left:463.320000px;}
.xa_c02058{left:483.480360px;}
.x9_c02058{left:492.119496px;}
.x6_c02058{left:493.200576px;}
.xc_c02058{left:506.880360px;}
.x3_c02058{left:511.919892px;}
.x2_c02058{left:526.679604px;}
@media print{
.v0_c02058{vertical-align:0.000000pt;}
.v1_c02058{vertical-align:1.279488pt;}
.ls8_c02058{letter-spacing:-0.705408pt;}
.ls6_c02058{letter-spacing:-0.544896pt;}
.ls9_c02058{letter-spacing:-0.511104pt;}
.ls10_c02058{letter-spacing:-0.244992pt;}
.lse_c02058{letter-spacing:-0.232320pt;}
.ls5_c02058{letter-spacing:-0.215424pt;}
.ls3_c02058{letter-spacing:-0.105600pt;}
.ls13_c02058{letter-spacing:0.000000pt;}
.ls1_c02058{letter-spacing:0.005376pt;}
.ls4_c02058{letter-spacing:0.114048pt;}
.lsc_c02058{letter-spacing:0.215424pt;}
.lsb_c02058{letter-spacing:0.451968pt;}
.ls12_c02058{letter-spacing:0.456960pt;}
.lsf_c02058{letter-spacing:0.477312pt;}
.lsa_c02058{letter-spacing:0.515328pt;}
.ls11_c02058{letter-spacing:0.528000pt;}
.ls7_c02058{letter-spacing:0.532224pt;}
.ls2_c02058{letter-spacing:0.544896pt;}
.lsd_c02058{letter-spacing:0.578688pt;}
.ls0_c02058{letter-spacing:0.637824pt;}
.wsc_c02058{word-spacing:-13.445376pt;}
.wsa_c02058{word-spacing:-11.088000pt;}
.ws9_c02058{word-spacing:-11.037312pt;}
.ws2_c02058{word-spacing:-10.015104pt;}
.ws4_c02058{word-spacing:-9.854592pt;}
.ws14_c02058{word-spacing:-1.919232pt;}
.ws10_c02058{word-spacing:-0.958848pt;}
.ws11_c02058{word-spacing:-0.899712pt;}
.wsd_c02058{word-spacing:-0.865920pt;}
.wsf_c02058{word-spacing:-0.105600pt;}
.ws12_c02058{word-spacing:-0.088704pt;}
.ws13_c02058{word-spacing:-0.076032pt;}
.wse_c02058{word-spacing:0.000000pt;}
.wsb_c02058{word-spacing:29.600256pt;}
.ws8_c02058{word-spacing:32.127744pt;}
.ws6_c02058{word-spacing:32.659968pt;}
.ws1_c02058{word-spacing:33.563904pt;}
.ws0_c02058{word-spacing:33.796224pt;}
.ws3_c02058{word-spacing:34.860672pt;}
.ws5_c02058{word-spacing:35.468928pt;}
.ws7_c02058{word-spacing:37.357056pt;}
._0_c02058{margin-left:-1.731840pt;}
._2_c02058{width:1.317888pt;}
._4_c02058{width:3.814272pt;}
._5_c02058{width:13.121280pt;}
._1_c02058{width:44.668800pt;}
._3_c02058{width:45.805056pt;}
.fs0_c02058{font-size:42.240000pt;}
.fs1_c02058{font-size:53.760000pt;}
.y0_c02058{bottom:0.000000pt;}
.y19_c02058{bottom:130.665211pt;}
.y1b_c02058{bottom:165.866875pt;}
.y1a_c02058{bottom:174.507067pt;}
.y18_c02058{bottom:245.225371pt;}
.y17_c02058{bottom:317.225563pt;}
.y15_c02058{bottom:361.386427pt;}
.y11_c02058{bottom:377.386939pt;}
.y16_c02058{bottom:407.786011pt;}
.y14_c02058{bottom:437.226235pt;}
.y13_c02058{bottom:453.226747pt;}
.y10_c02058{bottom:482.666971pt;}
.y12_c02058{bottom:497.386555pt;}
.yf_c02058{bottom:513.387067pt;}
.y1c_c02058{bottom:546.027067pt;}
.yb_c02058{bottom:593.385179pt;}
.yd_c02058{bottom:628.586875pt;}
.yc_c02058{bottom:637.227067pt;}
.ya_c02058{bottom:707.945339pt;}
.y9_c02058{bottom:779.945531pt;}
.y7_c02058{bottom:823.786427pt;}
.y3_c02058{bottom:839.786939pt;}
.y8_c02058{bottom:870.505979pt;}
.y6_c02058{bottom:899.946203pt;}
.y5_c02058{bottom:915.946715pt;}
.y2_c02058{bottom:945.386939pt;}
.y4_c02058{bottom:959.786555pt;}
.y1_c02058{bottom:975.787067pt;}
.ye_c02058{bottom:1008.747067pt;}
.h3_c02058{height:28.916250pt;}
.h1_c02058{height:37.063125pt;}
.h2_c02058{height:37.166250pt;}
.h4_c02058{height:48.581988pt;}
.h0_c02058{height:1122.666667pt;}
.w1_c02058{width:793.333333pt;}
.w0_c02058{width:793.626667pt;}
.x0_c02058{left:0.000000pt;}
.xd_c02058{left:104.000000pt;}
.x8_c02058{left:391.999872pt;}
.x4_c02058{left:396.160512pt;}
.xb_c02058{left:400.960000pt;}
.x7_c02058{left:404.799648pt;}
.x5_c02058{left:410.560128pt;}
.x1_c02058{left:411.840000pt;}
.xa_c02058{left:429.760320pt;}
.x9_c02058{left:437.439552pt;}
.x6_c02058{left:438.400512pt;}
.xc_c02058{left:450.560320pt;}
.x3_c02058{left:455.039904pt;}
.x2_c02058{left:468.159648pt;}
}





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

.ir_c02059:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02059;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02059{font-family:ff1_c02059;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02059;src:url('chunks/assets/font_fc437c85927acac64b0c55c9.woff2')format("woff");}.ff2_c02059{font-family:ff2_c02059;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02059;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02059{font-family:ff3_c02059;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02059{vertical-align:0.000000px;}
.v1_c02059{vertical-align:1.439424px;}
.ls8_c02059{letter-spacing:-0.793584px;}
.ls6_c02059{letter-spacing:-0.613008px;}
.ls9_c02059{letter-spacing:-0.574992px;}
.ls10_c02059{letter-spacing:-0.275616px;}
.lse_c02059{letter-spacing:-0.261360px;}
.ls5_c02059{letter-spacing:-0.242352px;}
.ls3_c02059{letter-spacing:-0.118800px;}
.ls13_c02059{letter-spacing:0.000000px;}
.ls1_c02059{letter-spacing:0.006048px;}
.ls4_c02059{letter-spacing:0.128304px;}
.lsc_c02059{letter-spacing:0.242352px;}
.lsb_c02059{letter-spacing:0.508464px;}
.ls12_c02059{letter-spacing:0.514080px;}
.lsf_c02059{letter-spacing:0.536976px;}
.lsa_c02059{letter-spacing:0.579744px;}
.ls11_c02059{letter-spacing:0.594000px;}
.ls7_c02059{letter-spacing:0.598752px;}
.ls2_c02059{letter-spacing:0.613008px;}
.lsd_c02059{letter-spacing:0.651024px;}
.ls0_c02059{letter-spacing:0.717552px;}
.sc__c02059{text-shadow:none;}
.sc0_c02059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02059{-webkit-text-stroke:0px transparent;}
.sc0_c02059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02059{word-spacing:-15.126048px;}
.wsa_c02059{word-spacing:-12.474000px;}
.ws9_c02059{word-spacing:-12.416976px;}
.ws2_c02059{word-spacing:-11.266992px;}
.ws4_c02059{word-spacing:-11.086416px;}
.ws14_c02059{word-spacing:-2.159136px;}
.ws10_c02059{word-spacing:-1.078704px;}
.ws11_c02059{word-spacing:-1.012176px;}
.wsd_c02059{word-spacing:-0.974160px;}
.wsf_c02059{word-spacing:-0.118800px;}
.ws12_c02059{word-spacing:-0.099792px;}
.ws13_c02059{word-spacing:-0.085536px;}
.wse_c02059{word-spacing:0.000000px;}
.wsb_c02059{word-spacing:33.300288px;}
.ws8_c02059{word-spacing:36.143712px;}
.ws6_c02059{word-spacing:36.742464px;}
.ws1_c02059{word-spacing:37.759392px;}
.ws0_c02059{word-spacing:38.020752px;}
.ws3_c02059{word-spacing:39.218256px;}
.ws5_c02059{word-spacing:39.902544px;}
.ws7_c02059{word-spacing:42.026688px;}
._0_c02059{margin-left:-1.948320px;}
._2_c02059{width:1.482624px;}
._4_c02059{width:4.291056px;}
._5_c02059{width:14.761440px;}
._1_c02059{width:50.252400px;}
._3_c02059{width:51.530688px;}
.fc0_c02059{color:rgb(0,0,0);}
.fs0_c02059{font-size:47.520000px;}
.fs1_c02059{font-size:60.480000px;}
.y0_c02059{bottom:0.000000px;}
.y19_c02059{bottom:146.998362px;}
.y1b_c02059{bottom:186.600234px;}
.y1a_c02059{bottom:196.320450px;}
.y18_c02059{bottom:275.878542px;}
.y17_c02059{bottom:356.878758px;}
.y15_c02059{bottom:406.559730px;}
.y11_c02059{bottom:424.560306px;}
.y16_c02059{bottom:458.759262px;}
.y14_c02059{bottom:491.879514px;}
.y13_c02059{bottom:509.880090px;}
.y10_c02059{bottom:543.000342px;}
.y12_c02059{bottom:559.559874px;}
.yf_c02059{bottom:577.560450px;}
.y1c_c02059{bottom:614.280450px;}
.yb_c02059{bottom:667.558326px;}
.yd_c02059{bottom:707.160234px;}
.yc_c02059{bottom:716.880450px;}
.ya_c02059{bottom:796.438506px;}
.y9_c02059{bottom:877.438722px;}
.y7_c02059{bottom:926.759730px;}
.y3_c02059{bottom:944.760306px;}
.y8_c02059{bottom:979.319226px;}
.y6_c02059{bottom:1012.439478px;}
.y5_c02059{bottom:1030.440054px;}
.y2_c02059{bottom:1063.560306px;}
.y4_c02059{bottom:1079.759874px;}
.y1_c02059{bottom:1097.760450px;}
.ye_c02059{bottom:1134.840450px;}
.h3_c02059{height:32.530781px;}
.h1_c02059{height:41.696016px;}
.h2_c02059{height:41.812031px;}
.h4_c02059{height:54.654737px;}
.h0_c02059{height:1263.000000px;}
.w1_c02059{width:892.500000px;}
.w0_c02059{width:892.830000px;}
.x0_c02059{left:0.000000px;}
.xd_c02059{left:117.000000px;}
.x8_c02059{left:440.999856px;}
.x4_c02059{left:445.680576px;}
.xb_c02059{left:451.080000px;}
.x7_c02059{left:455.399604px;}
.x5_c02059{left:461.880144px;}
.x1_c02059{left:463.320000px;}
.xa_c02059{left:483.480360px;}
.x9_c02059{left:492.119496px;}
.x6_c02059{left:493.200576px;}
.xc_c02059{left:506.880360px;}
.x3_c02059{left:511.919892px;}
.x2_c02059{left:526.679604px;}
@media print{
.v0_c02059{vertical-align:0.000000pt;}
.v1_c02059{vertical-align:1.279488pt;}
.ls8_c02059{letter-spacing:-0.705408pt;}
.ls6_c02059{letter-spacing:-0.544896pt;}
.ls9_c02059{letter-spacing:-0.511104pt;}
.ls10_c02059{letter-spacing:-0.244992pt;}
.lse_c02059{letter-spacing:-0.232320pt;}
.ls5_c02059{letter-spacing:-0.215424pt;}
.ls3_c02059{letter-spacing:-0.105600pt;}
.ls13_c02059{letter-spacing:0.000000pt;}
.ls1_c02059{letter-spacing:0.005376pt;}
.ls4_c02059{letter-spacing:0.114048pt;}
.lsc_c02059{letter-spacing:0.215424pt;}
.lsb_c02059{letter-spacing:0.451968pt;}
.ls12_c02059{letter-spacing:0.456960pt;}
.lsf_c02059{letter-spacing:0.477312pt;}
.lsa_c02059{letter-spacing:0.515328pt;}
.ls11_c02059{letter-spacing:0.528000pt;}
.ls7_c02059{letter-spacing:0.532224pt;}
.ls2_c02059{letter-spacing:0.544896pt;}
.lsd_c02059{letter-spacing:0.578688pt;}
.ls0_c02059{letter-spacing:0.637824pt;}
.wsc_c02059{word-spacing:-13.445376pt;}
.wsa_c02059{word-spacing:-11.088000pt;}
.ws9_c02059{word-spacing:-11.037312pt;}
.ws2_c02059{word-spacing:-10.015104pt;}
.ws4_c02059{word-spacing:-9.854592pt;}
.ws14_c02059{word-spacing:-1.919232pt;}
.ws10_c02059{word-spacing:-0.958848pt;}
.ws11_c02059{word-spacing:-0.899712pt;}
.wsd_c02059{word-spacing:-0.865920pt;}
.wsf_c02059{word-spacing:-0.105600pt;}
.ws12_c02059{word-spacing:-0.088704pt;}
.ws13_c02059{word-spacing:-0.076032pt;}
.wse_c02059{word-spacing:0.000000pt;}
.wsb_c02059{word-spacing:29.600256pt;}
.ws8_c02059{word-spacing:32.127744pt;}
.ws6_c02059{word-spacing:32.659968pt;}
.ws1_c02059{word-spacing:33.563904pt;}
.ws0_c02059{word-spacing:33.796224pt;}
.ws3_c02059{word-spacing:34.860672pt;}
.ws5_c02059{word-spacing:35.468928pt;}
.ws7_c02059{word-spacing:37.357056pt;}
._0_c02059{margin-left:-1.731840pt;}
._2_c02059{width:1.317888pt;}
._4_c02059{width:3.814272pt;}
._5_c02059{width:13.121280pt;}
._1_c02059{width:44.668800pt;}
._3_c02059{width:45.805056pt;}
.fs0_c02059{font-size:42.240000pt;}
.fs1_c02059{font-size:53.760000pt;}
.y0_c02059{bottom:0.000000pt;}
.y19_c02059{bottom:130.665211pt;}
.y1b_c02059{bottom:165.866875pt;}
.y1a_c02059{bottom:174.507067pt;}
.y18_c02059{bottom:245.225371pt;}
.y17_c02059{bottom:317.225563pt;}
.y15_c02059{bottom:361.386427pt;}
.y11_c02059{bottom:377.386939pt;}
.y16_c02059{bottom:407.786011pt;}
.y14_c02059{bottom:437.226235pt;}
.y13_c02059{bottom:453.226747pt;}
.y10_c02059{bottom:482.666971pt;}
.y12_c02059{bottom:497.386555pt;}
.yf_c02059{bottom:513.387067pt;}
.y1c_c02059{bottom:546.027067pt;}
.yb_c02059{bottom:593.385179pt;}
.yd_c02059{bottom:628.586875pt;}
.yc_c02059{bottom:637.227067pt;}
.ya_c02059{bottom:707.945339pt;}
.y9_c02059{bottom:779.945531pt;}
.y7_c02059{bottom:823.786427pt;}
.y3_c02059{bottom:839.786939pt;}
.y8_c02059{bottom:870.505979pt;}
.y6_c02059{bottom:899.946203pt;}
.y5_c02059{bottom:915.946715pt;}
.y2_c02059{bottom:945.386939pt;}
.y4_c02059{bottom:959.786555pt;}
.y1_c02059{bottom:975.787067pt;}
.ye_c02059{bottom:1008.747067pt;}
.h3_c02059{height:28.916250pt;}
.h1_c02059{height:37.063125pt;}
.h2_c02059{height:37.166250pt;}
.h4_c02059{height:48.581988pt;}
.h0_c02059{height:1122.666667pt;}
.w1_c02059{width:793.333333pt;}
.w0_c02059{width:793.626667pt;}
.x0_c02059{left:0.000000pt;}
.xd_c02059{left:104.000000pt;}
.x8_c02059{left:391.999872pt;}
.x4_c02059{left:396.160512pt;}
.xb_c02059{left:400.960000pt;}
.x7_c02059{left:404.799648pt;}
.x5_c02059{left:410.560128pt;}
.x1_c02059{left:411.840000pt;}
.xa_c02059{left:429.760320pt;}
.x9_c02059{left:437.439552pt;}
.x6_c02059{left:438.400512pt;}
.xc_c02059{left:450.560320pt;}
.x3_c02059{left:455.039904pt;}
.x2_c02059{left:468.159648pt;}
}





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

.ir_c02060:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02060{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02060;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02060{font-family:ff1_c02060;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02060;src:url('chunks/assets/font_98e89a47b97773aad59cfc6e.woff2')format("woff");}.ff2_c02060{font-family:ff2_c02060;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02060;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02060{font-family:ff3_c02060;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02060{vertical-align:0.000000px;}
.v1_c02060{vertical-align:1.439424px;}
.ls8_c02060{letter-spacing:-0.793584px;}
.ls6_c02060{letter-spacing:-0.613008px;}
.ls9_c02060{letter-spacing:-0.574992px;}
.ls10_c02060{letter-spacing:-0.275616px;}
.lse_c02060{letter-spacing:-0.261360px;}
.ls5_c02060{letter-spacing:-0.242352px;}
.ls3_c02060{letter-spacing:-0.118800px;}
.ls13_c02060{letter-spacing:0.000000px;}
.ls1_c02060{letter-spacing:0.006048px;}
.ls4_c02060{letter-spacing:0.128304px;}
.lsc_c02060{letter-spacing:0.242352px;}
.lsb_c02060{letter-spacing:0.508464px;}
.ls12_c02060{letter-spacing:0.514080px;}
.lsf_c02060{letter-spacing:0.536976px;}
.lsa_c02060{letter-spacing:0.579744px;}
.ls11_c02060{letter-spacing:0.594000px;}
.ls7_c02060{letter-spacing:0.598752px;}
.ls2_c02060{letter-spacing:0.613008px;}
.lsd_c02060{letter-spacing:0.651024px;}
.ls0_c02060{letter-spacing:0.717552px;}
.sc__c02060{text-shadow:none;}
.sc0_c02060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02060{-webkit-text-stroke:0px transparent;}
.sc0_c02060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02060{word-spacing:-15.126048px;}
.wsa_c02060{word-spacing:-12.474000px;}
.ws9_c02060{word-spacing:-12.416976px;}
.ws2_c02060{word-spacing:-11.266992px;}
.ws4_c02060{word-spacing:-11.086416px;}
.ws14_c02060{word-spacing:-2.159136px;}
.ws10_c02060{word-spacing:-1.078704px;}
.ws11_c02060{word-spacing:-1.012176px;}
.wsd_c02060{word-spacing:-0.974160px;}
.wsf_c02060{word-spacing:-0.118800px;}
.ws12_c02060{word-spacing:-0.099792px;}
.ws13_c02060{word-spacing:-0.085536px;}
.wse_c02060{word-spacing:0.000000px;}
.wsb_c02060{word-spacing:33.300288px;}
.ws8_c02060{word-spacing:36.143712px;}
.ws6_c02060{word-spacing:36.742464px;}
.ws1_c02060{word-spacing:37.759392px;}
.ws0_c02060{word-spacing:38.020752px;}
.ws3_c02060{word-spacing:39.218256px;}
.ws5_c02060{word-spacing:39.902544px;}
.ws7_c02060{word-spacing:42.026688px;}
._0_c02060{margin-left:-1.948320px;}
._2_c02060{width:1.482624px;}
._4_c02060{width:4.291056px;}
._5_c02060{width:14.761440px;}
._1_c02060{width:50.252400px;}
._3_c02060{width:51.530688px;}
.fc0_c02060{color:rgb(0,0,0);}
.fs0_c02060{font-size:47.520000px;}
.fs1_c02060{font-size:60.480000px;}
.y0_c02060{bottom:0.000000px;}
.y19_c02060{bottom:146.998362px;}
.y1b_c02060{bottom:186.600234px;}
.y1a_c02060{bottom:196.320450px;}
.y18_c02060{bottom:275.878542px;}
.y17_c02060{bottom:356.878758px;}
.y15_c02060{bottom:406.559730px;}
.y11_c02060{bottom:424.560306px;}
.y16_c02060{bottom:458.759262px;}
.y14_c02060{bottom:491.879514px;}
.y13_c02060{bottom:509.880090px;}
.y10_c02060{bottom:543.000342px;}
.y12_c02060{bottom:559.559874px;}
.yf_c02060{bottom:577.560450px;}
.y1c_c02060{bottom:614.280450px;}
.yb_c02060{bottom:667.558326px;}
.yd_c02060{bottom:707.160234px;}
.yc_c02060{bottom:716.880450px;}
.ya_c02060{bottom:796.438506px;}
.y9_c02060{bottom:877.438722px;}
.y7_c02060{bottom:926.759730px;}
.y3_c02060{bottom:944.760306px;}
.y8_c02060{bottom:979.319226px;}
.y6_c02060{bottom:1012.439478px;}
.y5_c02060{bottom:1030.440054px;}
.y2_c02060{bottom:1063.560306px;}
.y4_c02060{bottom:1079.759874px;}
.y1_c02060{bottom:1097.760450px;}
.ye_c02060{bottom:1134.840450px;}
.h3_c02060{height:32.530781px;}
.h1_c02060{height:41.696016px;}
.h2_c02060{height:41.812031px;}
.h4_c02060{height:54.654737px;}
.h0_c02060{height:1263.000000px;}
.w1_c02060{width:892.500000px;}
.w0_c02060{width:892.830000px;}
.x0_c02060{left:0.000000px;}
.xd_c02060{left:117.000000px;}
.x8_c02060{left:440.999856px;}
.x4_c02060{left:445.680576px;}
.xb_c02060{left:451.080000px;}
.x7_c02060{left:455.399604px;}
.x5_c02060{left:461.880144px;}
.x1_c02060{left:463.320000px;}
.xa_c02060{left:483.480360px;}
.x9_c02060{left:492.119496px;}
.x6_c02060{left:493.200576px;}
.xc_c02060{left:506.880360px;}
.x3_c02060{left:511.919892px;}
.x2_c02060{left:526.679604px;}
@media print{
.v0_c02060{vertical-align:0.000000pt;}
.v1_c02060{vertical-align:1.279488pt;}
.ls8_c02060{letter-spacing:-0.705408pt;}
.ls6_c02060{letter-spacing:-0.544896pt;}
.ls9_c02060{letter-spacing:-0.511104pt;}
.ls10_c02060{letter-spacing:-0.244992pt;}
.lse_c02060{letter-spacing:-0.232320pt;}
.ls5_c02060{letter-spacing:-0.215424pt;}
.ls3_c02060{letter-spacing:-0.105600pt;}
.ls13_c02060{letter-spacing:0.000000pt;}
.ls1_c02060{letter-spacing:0.005376pt;}
.ls4_c02060{letter-spacing:0.114048pt;}
.lsc_c02060{letter-spacing:0.215424pt;}
.lsb_c02060{letter-spacing:0.451968pt;}
.ls12_c02060{letter-spacing:0.456960pt;}
.lsf_c02060{letter-spacing:0.477312pt;}
.lsa_c02060{letter-spacing:0.515328pt;}
.ls11_c02060{letter-spacing:0.528000pt;}
.ls7_c02060{letter-spacing:0.532224pt;}
.ls2_c02060{letter-spacing:0.544896pt;}
.lsd_c02060{letter-spacing:0.578688pt;}
.ls0_c02060{letter-spacing:0.637824pt;}
.wsc_c02060{word-spacing:-13.445376pt;}
.wsa_c02060{word-spacing:-11.088000pt;}
.ws9_c02060{word-spacing:-11.037312pt;}
.ws2_c02060{word-spacing:-10.015104pt;}
.ws4_c02060{word-spacing:-9.854592pt;}
.ws14_c02060{word-spacing:-1.919232pt;}
.ws10_c02060{word-spacing:-0.958848pt;}
.ws11_c02060{word-spacing:-0.899712pt;}
.wsd_c02060{word-spacing:-0.865920pt;}
.wsf_c02060{word-spacing:-0.105600pt;}
.ws12_c02060{word-spacing:-0.088704pt;}
.ws13_c02060{word-spacing:-0.076032pt;}
.wse_c02060{word-spacing:0.000000pt;}
.wsb_c02060{word-spacing:29.600256pt;}
.ws8_c02060{word-spacing:32.127744pt;}
.ws6_c02060{word-spacing:32.659968pt;}
.ws1_c02060{word-spacing:33.563904pt;}
.ws0_c02060{word-spacing:33.796224pt;}
.ws3_c02060{word-spacing:34.860672pt;}
.ws5_c02060{word-spacing:35.468928pt;}
.ws7_c02060{word-spacing:37.357056pt;}
._0_c02060{margin-left:-1.731840pt;}
._2_c02060{width:1.317888pt;}
._4_c02060{width:3.814272pt;}
._5_c02060{width:13.121280pt;}
._1_c02060{width:44.668800pt;}
._3_c02060{width:45.805056pt;}
.fs0_c02060{font-size:42.240000pt;}
.fs1_c02060{font-size:53.760000pt;}
.y0_c02060{bottom:0.000000pt;}
.y19_c02060{bottom:130.665211pt;}
.y1b_c02060{bottom:165.866875pt;}
.y1a_c02060{bottom:174.507067pt;}
.y18_c02060{bottom:245.225371pt;}
.y17_c02060{bottom:317.225563pt;}
.y15_c02060{bottom:361.386427pt;}
.y11_c02060{bottom:377.386939pt;}
.y16_c02060{bottom:407.786011pt;}
.y14_c02060{bottom:437.226235pt;}
.y13_c02060{bottom:453.226747pt;}
.y10_c02060{bottom:482.666971pt;}
.y12_c02060{bottom:497.386555pt;}
.yf_c02060{bottom:513.387067pt;}
.y1c_c02060{bottom:546.027067pt;}
.yb_c02060{bottom:593.385179pt;}
.yd_c02060{bottom:628.586875pt;}
.yc_c02060{bottom:637.227067pt;}
.ya_c02060{bottom:707.945339pt;}
.y9_c02060{bottom:779.945531pt;}
.y7_c02060{bottom:823.786427pt;}
.y3_c02060{bottom:839.786939pt;}
.y8_c02060{bottom:870.505979pt;}
.y6_c02060{bottom:899.946203pt;}
.y5_c02060{bottom:915.946715pt;}
.y2_c02060{bottom:945.386939pt;}
.y4_c02060{bottom:959.786555pt;}
.y1_c02060{bottom:975.787067pt;}
.ye_c02060{bottom:1008.747067pt;}
.h3_c02060{height:28.916250pt;}
.h1_c02060{height:37.063125pt;}
.h2_c02060{height:37.166250pt;}
.h4_c02060{height:48.581988pt;}
.h0_c02060{height:1122.666667pt;}
.w1_c02060{width:793.333333pt;}
.w0_c02060{width:793.626667pt;}
.x0_c02060{left:0.000000pt;}
.xd_c02060{left:104.000000pt;}
.x8_c02060{left:391.999872pt;}
.x4_c02060{left:396.160512pt;}
.xb_c02060{left:400.960000pt;}
.x7_c02060{left:404.799648pt;}
.x5_c02060{left:410.560128pt;}
.x1_c02060{left:411.840000pt;}
.xa_c02060{left:429.760320pt;}
.x9_c02060{left:437.439552pt;}
.x6_c02060{left:438.400512pt;}
.xc_c02060{left:450.560320pt;}
.x3_c02060{left:455.039904pt;}
.x2_c02060{left:468.159648pt;}
}





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

.ir_c02061:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02061{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02061;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02061{font-family:ff1_c02061;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02061;src:url('chunks/assets/font_fc437c85927acac64b0c55c9.woff2')format("woff");}.ff2_c02061{font-family:ff2_c02061;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02061;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02061{font-family:ff3_c02061;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02061{vertical-align:0.000000px;}
.v1_c02061{vertical-align:1.439424px;}
.ls8_c02061{letter-spacing:-0.793584px;}
.ls6_c02061{letter-spacing:-0.613008px;}
.ls9_c02061{letter-spacing:-0.574992px;}
.ls10_c02061{letter-spacing:-0.275616px;}
.lse_c02061{letter-spacing:-0.261360px;}
.ls5_c02061{letter-spacing:-0.242352px;}
.ls3_c02061{letter-spacing:-0.118800px;}
.ls13_c02061{letter-spacing:0.000000px;}
.ls1_c02061{letter-spacing:0.006048px;}
.ls4_c02061{letter-spacing:0.128304px;}
.lsc_c02061{letter-spacing:0.242352px;}
.lsb_c02061{letter-spacing:0.508464px;}
.ls12_c02061{letter-spacing:0.514080px;}
.lsf_c02061{letter-spacing:0.536976px;}
.lsa_c02061{letter-spacing:0.579744px;}
.ls11_c02061{letter-spacing:0.594000px;}
.ls7_c02061{letter-spacing:0.598752px;}
.ls2_c02061{letter-spacing:0.613008px;}
.lsd_c02061{letter-spacing:0.651024px;}
.ls0_c02061{letter-spacing:0.717552px;}
.sc__c02061{text-shadow:none;}
.sc0_c02061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02061{-webkit-text-stroke:0px transparent;}
.sc0_c02061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02061{word-spacing:-15.126048px;}
.wsa_c02061{word-spacing:-12.474000px;}
.ws9_c02061{word-spacing:-12.416976px;}
.ws2_c02061{word-spacing:-11.266992px;}
.ws4_c02061{word-spacing:-11.086416px;}
.ws14_c02061{word-spacing:-2.159136px;}
.ws10_c02061{word-spacing:-1.078704px;}
.ws11_c02061{word-spacing:-1.012176px;}
.wsd_c02061{word-spacing:-0.974160px;}
.wsf_c02061{word-spacing:-0.118800px;}
.ws12_c02061{word-spacing:-0.099792px;}
.ws13_c02061{word-spacing:-0.085536px;}
.wse_c02061{word-spacing:0.000000px;}
.wsb_c02061{word-spacing:33.300288px;}
.ws8_c02061{word-spacing:36.143712px;}
.ws6_c02061{word-spacing:36.742464px;}
.ws1_c02061{word-spacing:37.759392px;}
.ws0_c02061{word-spacing:38.020752px;}
.ws3_c02061{word-spacing:39.218256px;}
.ws5_c02061{word-spacing:39.902544px;}
.ws7_c02061{word-spacing:42.026688px;}
._0_c02061{margin-left:-1.948320px;}
._2_c02061{width:1.482624px;}
._4_c02061{width:4.291056px;}
._5_c02061{width:14.761440px;}
._1_c02061{width:50.252400px;}
._3_c02061{width:51.530688px;}
.fc0_c02061{color:rgb(0,0,0);}
.fs0_c02061{font-size:47.520000px;}
.fs1_c02061{font-size:60.480000px;}
.y0_c02061{bottom:0.000000px;}
.y19_c02061{bottom:146.998362px;}
.y1b_c02061{bottom:186.600234px;}
.y1a_c02061{bottom:196.320450px;}
.y18_c02061{bottom:275.878542px;}
.y17_c02061{bottom:356.878758px;}
.y15_c02061{bottom:406.559730px;}
.y11_c02061{bottom:424.560306px;}
.y16_c02061{bottom:458.759262px;}
.y14_c02061{bottom:491.879514px;}
.y13_c02061{bottom:509.880090px;}
.y10_c02061{bottom:543.000342px;}
.y12_c02061{bottom:559.559874px;}
.yf_c02061{bottom:577.560450px;}
.y1c_c02061{bottom:614.280450px;}
.yb_c02061{bottom:667.558326px;}
.yd_c02061{bottom:707.160234px;}
.yc_c02061{bottom:716.880450px;}
.ya_c02061{bottom:796.438506px;}
.y9_c02061{bottom:877.438722px;}
.y7_c02061{bottom:926.759730px;}
.y3_c02061{bottom:944.760306px;}
.y8_c02061{bottom:979.319226px;}
.y6_c02061{bottom:1012.439478px;}
.y5_c02061{bottom:1030.440054px;}
.y2_c02061{bottom:1063.560306px;}
.y4_c02061{bottom:1079.759874px;}
.y1_c02061{bottom:1097.760450px;}
.ye_c02061{bottom:1134.840450px;}
.h3_c02061{height:32.530781px;}
.h1_c02061{height:41.696016px;}
.h2_c02061{height:41.812031px;}
.h4_c02061{height:54.654737px;}
.h0_c02061{height:1263.000000px;}
.w1_c02061{width:892.500000px;}
.w0_c02061{width:892.830000px;}
.x0_c02061{left:0.000000px;}
.xd_c02061{left:117.000000px;}
.x8_c02061{left:440.999856px;}
.x4_c02061{left:445.680576px;}
.xb_c02061{left:451.080000px;}
.x7_c02061{left:455.399604px;}
.x5_c02061{left:461.880144px;}
.x1_c02061{left:463.320000px;}
.xa_c02061{left:483.480360px;}
.x9_c02061{left:492.119496px;}
.x6_c02061{left:493.200576px;}
.xc_c02061{left:506.880360px;}
.x3_c02061{left:511.919892px;}
.x2_c02061{left:526.679604px;}
@media print{
.v0_c02061{vertical-align:0.000000pt;}
.v1_c02061{vertical-align:1.279488pt;}
.ls8_c02061{letter-spacing:-0.705408pt;}
.ls6_c02061{letter-spacing:-0.544896pt;}
.ls9_c02061{letter-spacing:-0.511104pt;}
.ls10_c02061{letter-spacing:-0.244992pt;}
.lse_c02061{letter-spacing:-0.232320pt;}
.ls5_c02061{letter-spacing:-0.215424pt;}
.ls3_c02061{letter-spacing:-0.105600pt;}
.ls13_c02061{letter-spacing:0.000000pt;}
.ls1_c02061{letter-spacing:0.005376pt;}
.ls4_c02061{letter-spacing:0.114048pt;}
.lsc_c02061{letter-spacing:0.215424pt;}
.lsb_c02061{letter-spacing:0.451968pt;}
.ls12_c02061{letter-spacing:0.456960pt;}
.lsf_c02061{letter-spacing:0.477312pt;}
.lsa_c02061{letter-spacing:0.515328pt;}
.ls11_c02061{letter-spacing:0.528000pt;}
.ls7_c02061{letter-spacing:0.532224pt;}
.ls2_c02061{letter-spacing:0.544896pt;}
.lsd_c02061{letter-spacing:0.578688pt;}
.ls0_c02061{letter-spacing:0.637824pt;}
.wsc_c02061{word-spacing:-13.445376pt;}
.wsa_c02061{word-spacing:-11.088000pt;}
.ws9_c02061{word-spacing:-11.037312pt;}
.ws2_c02061{word-spacing:-10.015104pt;}
.ws4_c02061{word-spacing:-9.854592pt;}
.ws14_c02061{word-spacing:-1.919232pt;}
.ws10_c02061{word-spacing:-0.958848pt;}
.ws11_c02061{word-spacing:-0.899712pt;}
.wsd_c02061{word-spacing:-0.865920pt;}
.wsf_c02061{word-spacing:-0.105600pt;}
.ws12_c02061{word-spacing:-0.088704pt;}
.ws13_c02061{word-spacing:-0.076032pt;}
.wse_c02061{word-spacing:0.000000pt;}
.wsb_c02061{word-spacing:29.600256pt;}
.ws8_c02061{word-spacing:32.127744pt;}
.ws6_c02061{word-spacing:32.659968pt;}
.ws1_c02061{word-spacing:33.563904pt;}
.ws0_c02061{word-spacing:33.796224pt;}
.ws3_c02061{word-spacing:34.860672pt;}
.ws5_c02061{word-spacing:35.468928pt;}
.ws7_c02061{word-spacing:37.357056pt;}
._0_c02061{margin-left:-1.731840pt;}
._2_c02061{width:1.317888pt;}
._4_c02061{width:3.814272pt;}
._5_c02061{width:13.121280pt;}
._1_c02061{width:44.668800pt;}
._3_c02061{width:45.805056pt;}
.fs0_c02061{font-size:42.240000pt;}
.fs1_c02061{font-size:53.760000pt;}
.y0_c02061{bottom:0.000000pt;}
.y19_c02061{bottom:130.665211pt;}
.y1b_c02061{bottom:165.866875pt;}
.y1a_c02061{bottom:174.507067pt;}
.y18_c02061{bottom:245.225371pt;}
.y17_c02061{bottom:317.225563pt;}
.y15_c02061{bottom:361.386427pt;}
.y11_c02061{bottom:377.386939pt;}
.y16_c02061{bottom:407.786011pt;}
.y14_c02061{bottom:437.226235pt;}
.y13_c02061{bottom:453.226747pt;}
.y10_c02061{bottom:482.666971pt;}
.y12_c02061{bottom:497.386555pt;}
.yf_c02061{bottom:513.387067pt;}
.y1c_c02061{bottom:546.027067pt;}
.yb_c02061{bottom:593.385179pt;}
.yd_c02061{bottom:628.586875pt;}
.yc_c02061{bottom:637.227067pt;}
.ya_c02061{bottom:707.945339pt;}
.y9_c02061{bottom:779.945531pt;}
.y7_c02061{bottom:823.786427pt;}
.y3_c02061{bottom:839.786939pt;}
.y8_c02061{bottom:870.505979pt;}
.y6_c02061{bottom:899.946203pt;}
.y5_c02061{bottom:915.946715pt;}
.y2_c02061{bottom:945.386939pt;}
.y4_c02061{bottom:959.786555pt;}
.y1_c02061{bottom:975.787067pt;}
.ye_c02061{bottom:1008.747067pt;}
.h3_c02061{height:28.916250pt;}
.h1_c02061{height:37.063125pt;}
.h2_c02061{height:37.166250pt;}
.h4_c02061{height:48.581988pt;}
.h0_c02061{height:1122.666667pt;}
.w1_c02061{width:793.333333pt;}
.w0_c02061{width:793.626667pt;}
.x0_c02061{left:0.000000pt;}
.xd_c02061{left:104.000000pt;}
.x8_c02061{left:391.999872pt;}
.x4_c02061{left:396.160512pt;}
.xb_c02061{left:400.960000pt;}
.x7_c02061{left:404.799648pt;}
.x5_c02061{left:410.560128pt;}
.x1_c02061{left:411.840000pt;}
.xa_c02061{left:429.760320pt;}
.x9_c02061{left:437.439552pt;}
.x6_c02061{left:438.400512pt;}
.xc_c02061{left:450.560320pt;}
.x3_c02061{left:455.039904pt;}
.x2_c02061{left:468.159648pt;}
}





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

.ir_c02062:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02062;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02062{font-family:ff1_c02062;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02062;src:url('chunks/assets/font_fc437c85927acac64b0c55c9.woff2')format("woff");}.ff2_c02062{font-family:ff2_c02062;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02062;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02062{font-family:ff3_c02062;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02062{vertical-align:0.000000px;}
.v1_c02062{vertical-align:1.439424px;}
.ls8_c02062{letter-spacing:-0.793584px;}
.ls6_c02062{letter-spacing:-0.613008px;}
.ls9_c02062{letter-spacing:-0.574992px;}
.ls10_c02062{letter-spacing:-0.275616px;}
.lse_c02062{letter-spacing:-0.261360px;}
.ls5_c02062{letter-spacing:-0.242352px;}
.ls3_c02062{letter-spacing:-0.118800px;}
.ls13_c02062{letter-spacing:0.000000px;}
.ls1_c02062{letter-spacing:0.006048px;}
.ls4_c02062{letter-spacing:0.128304px;}
.lsc_c02062{letter-spacing:0.242352px;}
.lsb_c02062{letter-spacing:0.508464px;}
.ls12_c02062{letter-spacing:0.514080px;}
.lsf_c02062{letter-spacing:0.536976px;}
.lsa_c02062{letter-spacing:0.579744px;}
.ls11_c02062{letter-spacing:0.594000px;}
.ls7_c02062{letter-spacing:0.598752px;}
.ls2_c02062{letter-spacing:0.613008px;}
.lsd_c02062{letter-spacing:0.651024px;}
.ls0_c02062{letter-spacing:0.717552px;}
.sc__c02062{text-shadow:none;}
.sc0_c02062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02062{-webkit-text-stroke:0px transparent;}
.sc0_c02062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02062{word-spacing:-15.126048px;}
.wsa_c02062{word-spacing:-12.474000px;}
.ws9_c02062{word-spacing:-12.416976px;}
.ws2_c02062{word-spacing:-11.266992px;}
.ws4_c02062{word-spacing:-11.086416px;}
.ws14_c02062{word-spacing:-2.159136px;}
.ws10_c02062{word-spacing:-1.078704px;}
.ws11_c02062{word-spacing:-1.012176px;}
.wsd_c02062{word-spacing:-0.974160px;}
.wsf_c02062{word-spacing:-0.118800px;}
.ws12_c02062{word-spacing:-0.099792px;}
.ws13_c02062{word-spacing:-0.085536px;}
.wse_c02062{word-spacing:0.000000px;}
.wsb_c02062{word-spacing:33.300288px;}
.ws8_c02062{word-spacing:36.143712px;}
.ws6_c02062{word-spacing:36.742464px;}
.ws1_c02062{word-spacing:37.759392px;}
.ws0_c02062{word-spacing:38.020752px;}
.ws3_c02062{word-spacing:39.218256px;}
.ws5_c02062{word-spacing:39.902544px;}
.ws7_c02062{word-spacing:42.026688px;}
._0_c02062{margin-left:-1.948320px;}
._2_c02062{width:1.482624px;}
._4_c02062{width:4.291056px;}
._5_c02062{width:14.761440px;}
._1_c02062{width:50.252400px;}
._3_c02062{width:51.530688px;}
.fc0_c02062{color:rgb(0,0,0);}
.fs0_c02062{font-size:47.520000px;}
.fs1_c02062{font-size:60.480000px;}
.y0_c02062{bottom:0.000000px;}
.y19_c02062{bottom:146.998362px;}
.y1b_c02062{bottom:186.600234px;}
.y1a_c02062{bottom:196.320450px;}
.y18_c02062{bottom:275.878542px;}
.y17_c02062{bottom:356.878758px;}
.y15_c02062{bottom:406.559730px;}
.y11_c02062{bottom:424.560306px;}
.y16_c02062{bottom:458.759262px;}
.y14_c02062{bottom:491.879514px;}
.y13_c02062{bottom:509.880090px;}
.y10_c02062{bottom:543.000342px;}
.y12_c02062{bottom:559.559874px;}
.yf_c02062{bottom:577.560450px;}
.y1c_c02062{bottom:614.280450px;}
.yb_c02062{bottom:667.558326px;}
.yd_c02062{bottom:707.160234px;}
.yc_c02062{bottom:716.880450px;}
.ya_c02062{bottom:796.438506px;}
.y9_c02062{bottom:877.438722px;}
.y7_c02062{bottom:926.759730px;}
.y3_c02062{bottom:944.760306px;}
.y8_c02062{bottom:979.319226px;}
.y6_c02062{bottom:1012.439478px;}
.y5_c02062{bottom:1030.440054px;}
.y2_c02062{bottom:1063.560306px;}
.y4_c02062{bottom:1079.759874px;}
.y1_c02062{bottom:1097.760450px;}
.ye_c02062{bottom:1134.840450px;}
.h3_c02062{height:32.530781px;}
.h1_c02062{height:41.696016px;}
.h2_c02062{height:41.812031px;}
.h4_c02062{height:54.654737px;}
.h0_c02062{height:1263.000000px;}
.w1_c02062{width:892.500000px;}
.w0_c02062{width:892.830000px;}
.x0_c02062{left:0.000000px;}
.xd_c02062{left:117.000000px;}
.x8_c02062{left:440.999856px;}
.x4_c02062{left:445.680576px;}
.xb_c02062{left:451.080000px;}
.x7_c02062{left:455.399604px;}
.x5_c02062{left:461.880144px;}
.x1_c02062{left:463.320000px;}
.xa_c02062{left:483.480360px;}
.x9_c02062{left:492.119496px;}
.x6_c02062{left:493.200576px;}
.xc_c02062{left:506.880360px;}
.x3_c02062{left:511.919892px;}
.x2_c02062{left:526.679604px;}
@media print{
.v0_c02062{vertical-align:0.000000pt;}
.v1_c02062{vertical-align:1.279488pt;}
.ls8_c02062{letter-spacing:-0.705408pt;}
.ls6_c02062{letter-spacing:-0.544896pt;}
.ls9_c02062{letter-spacing:-0.511104pt;}
.ls10_c02062{letter-spacing:-0.244992pt;}
.lse_c02062{letter-spacing:-0.232320pt;}
.ls5_c02062{letter-spacing:-0.215424pt;}
.ls3_c02062{letter-spacing:-0.105600pt;}
.ls13_c02062{letter-spacing:0.000000pt;}
.ls1_c02062{letter-spacing:0.005376pt;}
.ls4_c02062{letter-spacing:0.114048pt;}
.lsc_c02062{letter-spacing:0.215424pt;}
.lsb_c02062{letter-spacing:0.451968pt;}
.ls12_c02062{letter-spacing:0.456960pt;}
.lsf_c02062{letter-spacing:0.477312pt;}
.lsa_c02062{letter-spacing:0.515328pt;}
.ls11_c02062{letter-spacing:0.528000pt;}
.ls7_c02062{letter-spacing:0.532224pt;}
.ls2_c02062{letter-spacing:0.544896pt;}
.lsd_c02062{letter-spacing:0.578688pt;}
.ls0_c02062{letter-spacing:0.637824pt;}
.wsc_c02062{word-spacing:-13.445376pt;}
.wsa_c02062{word-spacing:-11.088000pt;}
.ws9_c02062{word-spacing:-11.037312pt;}
.ws2_c02062{word-spacing:-10.015104pt;}
.ws4_c02062{word-spacing:-9.854592pt;}
.ws14_c02062{word-spacing:-1.919232pt;}
.ws10_c02062{word-spacing:-0.958848pt;}
.ws11_c02062{word-spacing:-0.899712pt;}
.wsd_c02062{word-spacing:-0.865920pt;}
.wsf_c02062{word-spacing:-0.105600pt;}
.ws12_c02062{word-spacing:-0.088704pt;}
.ws13_c02062{word-spacing:-0.076032pt;}
.wse_c02062{word-spacing:0.000000pt;}
.wsb_c02062{word-spacing:29.600256pt;}
.ws8_c02062{word-spacing:32.127744pt;}
.ws6_c02062{word-spacing:32.659968pt;}
.ws1_c02062{word-spacing:33.563904pt;}
.ws0_c02062{word-spacing:33.796224pt;}
.ws3_c02062{word-spacing:34.860672pt;}
.ws5_c02062{word-spacing:35.468928pt;}
.ws7_c02062{word-spacing:37.357056pt;}
._0_c02062{margin-left:-1.731840pt;}
._2_c02062{width:1.317888pt;}
._4_c02062{width:3.814272pt;}
._5_c02062{width:13.121280pt;}
._1_c02062{width:44.668800pt;}
._3_c02062{width:45.805056pt;}
.fs0_c02062{font-size:42.240000pt;}
.fs1_c02062{font-size:53.760000pt;}
.y0_c02062{bottom:0.000000pt;}
.y19_c02062{bottom:130.665211pt;}
.y1b_c02062{bottom:165.866875pt;}
.y1a_c02062{bottom:174.507067pt;}
.y18_c02062{bottom:245.225371pt;}
.y17_c02062{bottom:317.225563pt;}
.y15_c02062{bottom:361.386427pt;}
.y11_c02062{bottom:377.386939pt;}
.y16_c02062{bottom:407.786011pt;}
.y14_c02062{bottom:437.226235pt;}
.y13_c02062{bottom:453.226747pt;}
.y10_c02062{bottom:482.666971pt;}
.y12_c02062{bottom:497.386555pt;}
.yf_c02062{bottom:513.387067pt;}
.y1c_c02062{bottom:546.027067pt;}
.yb_c02062{bottom:593.385179pt;}
.yd_c02062{bottom:628.586875pt;}
.yc_c02062{bottom:637.227067pt;}
.ya_c02062{bottom:707.945339pt;}
.y9_c02062{bottom:779.945531pt;}
.y7_c02062{bottom:823.786427pt;}
.y3_c02062{bottom:839.786939pt;}
.y8_c02062{bottom:870.505979pt;}
.y6_c02062{bottom:899.946203pt;}
.y5_c02062{bottom:915.946715pt;}
.y2_c02062{bottom:945.386939pt;}
.y4_c02062{bottom:959.786555pt;}
.y1_c02062{bottom:975.787067pt;}
.ye_c02062{bottom:1008.747067pt;}
.h3_c02062{height:28.916250pt;}
.h1_c02062{height:37.063125pt;}
.h2_c02062{height:37.166250pt;}
.h4_c02062{height:48.581988pt;}
.h0_c02062{height:1122.666667pt;}
.w1_c02062{width:793.333333pt;}
.w0_c02062{width:793.626667pt;}
.x0_c02062{left:0.000000pt;}
.xd_c02062{left:104.000000pt;}
.x8_c02062{left:391.999872pt;}
.x4_c02062{left:396.160512pt;}
.xb_c02062{left:400.960000pt;}
.x7_c02062{left:404.799648pt;}
.x5_c02062{left:410.560128pt;}
.x1_c02062{left:411.840000pt;}
.xa_c02062{left:429.760320pt;}
.x9_c02062{left:437.439552pt;}
.x6_c02062{left:438.400512pt;}
.xc_c02062{left:450.560320pt;}
.x3_c02062{left:455.039904pt;}
.x2_c02062{left:468.159648pt;}
}





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

.ir_c02063:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02063{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02063;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02063{font-family:ff1_c02063;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02063;src:url('chunks/assets/font_63d82e2090aaf08057c8d54b.woff2')format("woff");}.ff2_c02063{font-family:ff2_c02063;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02063;src:url('chunks/assets/font_d4485c35d5fc90aeb026e509.woff2')format("woff");}.ff3_c02063{font-family:ff3_c02063;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02063{vertical-align:0.000000px;}
.v1_c02063{vertical-align:1.439424px;}
.ls8_c02063{letter-spacing:-0.574992px;}
.lse_c02063{letter-spacing:-0.275616px;}
.lsc_c02063{letter-spacing:-0.261360px;}
.ls6_c02063{letter-spacing:-0.242352px;}
.lsb_c02063{letter-spacing:-0.232848px;}
.ls12_c02063{letter-spacing:-0.166320px;}
.ls4_c02063{letter-spacing:-0.118800px;}
.ls11_c02063{letter-spacing:0.000000px;}
.ls2_c02063{letter-spacing:0.006048px;}
.ls14_c02063{letter-spacing:0.028512px;}
.ls5_c02063{letter-spacing:0.128304px;}
.ls13_c02063{letter-spacing:0.242352px;}
.lsa_c02063{letter-spacing:0.508464px;}
.ls10_c02063{letter-spacing:0.514080px;}
.lsd_c02063{letter-spacing:0.536976px;}
.ls9_c02063{letter-spacing:0.579744px;}
.lsf_c02063{letter-spacing:0.594000px;}
.ls7_c02063{letter-spacing:0.598752px;}
.ls3_c02063{letter-spacing:0.613008px;}
.ls0_c02063{letter-spacing:0.651024px;}
.ls1_c02063{letter-spacing:0.717552px;}
.sc__c02063{text-shadow:none;}
.sc0_c02063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02063{-webkit-text-stroke:0px transparent;}
.sc0_c02063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02063{word-spacing:-15.126048px;}
.wsa_c02063{word-spacing:-12.474000px;}
.ws8_c02063{word-spacing:-12.459744px;}
.ws9_c02063{word-spacing:-12.416976px;}
.wse_c02063{word-spacing:-12.122352px;}
.wsd_c02063{word-spacing:-11.713680px;}
.ws4_c02063{word-spacing:-11.637648px;}
.ws17_c02063{word-spacing:-2.159136px;}
.ws13_c02063{word-spacing:-1.078704px;}
.ws11_c02063{word-spacing:-1.012176px;}
.wsf_c02063{word-spacing:-0.974160px;}
.ws18_c02063{word-spacing:-0.389664px;}
.ws14_c02063{word-spacing:-0.128304px;}
.ws12_c02063{word-spacing:-0.118800px;}
.ws15_c02063{word-spacing:-0.099792px;}
.ws16_c02063{word-spacing:-0.085536px;}
.ws10_c02063{word-spacing:0.000000px;}
.ws2_c02063{word-spacing:1.330560px;}
.wsb_c02063{word-spacing:33.300288px;}
.ws6_c02063{word-spacing:36.742464px;}
.ws1_c02063{word-spacing:37.759392px;}
.ws0_c02063{word-spacing:38.020752px;}
.ws3_c02063{word-spacing:39.218256px;}
.ws5_c02063{word-spacing:39.902544px;}
.ws7_c02063{word-spacing:42.026688px;}
._0_c02063{margin-left:-1.948320px;}
._2_c02063{width:1.482624px;}
._6_c02063{width:3.307392px;}
._4_c02063{width:4.785264px;}
._5_c02063{width:14.761440px;}
._1_c02063{width:50.252400px;}
._3_c02063{width:51.530688px;}
.fc0_c02063{color:rgb(0,0,0);}
.fs0_c02063{font-size:47.520000px;}
.fs1_c02063{font-size:60.480000px;}
.y0_c02063{bottom:0.000000px;}
.y19_c02063{bottom:146.998362px;}
.y1b_c02063{bottom:186.600234px;}
.y1a_c02063{bottom:196.320450px;}
.y18_c02063{bottom:275.878542px;}
.y17_c02063{bottom:356.878758px;}
.y15_c02063{bottom:406.559730px;}
.y11_c02063{bottom:424.560306px;}
.y16_c02063{bottom:458.759262px;}
.y14_c02063{bottom:491.879514px;}
.y13_c02063{bottom:509.880090px;}
.y10_c02063{bottom:543.000342px;}
.y12_c02063{bottom:559.559874px;}
.yf_c02063{bottom:577.560450px;}
.y1c_c02063{bottom:614.280450px;}
.yb_c02063{bottom:667.558326px;}
.yd_c02063{bottom:707.160234px;}
.yc_c02063{bottom:716.880450px;}
.ya_c02063{bottom:796.438506px;}
.y9_c02063{bottom:877.438722px;}
.y7_c02063{bottom:926.759730px;}
.y3_c02063{bottom:944.760306px;}
.y8_c02063{bottom:979.319226px;}
.y6_c02063{bottom:1012.439478px;}
.y5_c02063{bottom:1030.440054px;}
.y2_c02063{bottom:1063.560306px;}
.y4_c02063{bottom:1079.759874px;}
.y1_c02063{bottom:1097.760450px;}
.ye_c02063{bottom:1134.840450px;}
.h3_c02063{height:32.530781px;}
.h1_c02063{height:41.696016px;}
.h2_c02063{height:41.812031px;}
.h4_c02063{height:54.654737px;}
.h0_c02063{height:1263.000000px;}
.w1_c02063{width:892.500000px;}
.w0_c02063{width:892.830000px;}
.x0_c02063{left:0.000000px;}
.xd_c02063{left:117.000000px;}
.x8_c02063{left:440.999856px;}
.x4_c02063{left:445.680576px;}
.xb_c02063{left:451.080000px;}
.x7_c02063{left:455.399604px;}
.x5_c02063{left:461.880144px;}
.x1_c02063{left:463.320000px;}
.xa_c02063{left:483.480360px;}
.x9_c02063{left:492.119496px;}
.x6_c02063{left:493.200576px;}
.xc_c02063{left:506.880360px;}
.x3_c02063{left:511.919892px;}
.x2_c02063{left:526.679604px;}
@media print{
.v0_c02063{vertical-align:0.000000pt;}
.v1_c02063{vertical-align:1.279488pt;}
.ls8_c02063{letter-spacing:-0.511104pt;}
.lse_c02063{letter-spacing:-0.244992pt;}
.lsc_c02063{letter-spacing:-0.232320pt;}
.ls6_c02063{letter-spacing:-0.215424pt;}
.lsb_c02063{letter-spacing:-0.206976pt;}
.ls12_c02063{letter-spacing:-0.147840pt;}
.ls4_c02063{letter-spacing:-0.105600pt;}
.ls11_c02063{letter-spacing:0.000000pt;}
.ls2_c02063{letter-spacing:0.005376pt;}
.ls14_c02063{letter-spacing:0.025344pt;}
.ls5_c02063{letter-spacing:0.114048pt;}
.ls13_c02063{letter-spacing:0.215424pt;}
.lsa_c02063{letter-spacing:0.451968pt;}
.ls10_c02063{letter-spacing:0.456960pt;}
.lsd_c02063{letter-spacing:0.477312pt;}
.ls9_c02063{letter-spacing:0.515328pt;}
.lsf_c02063{letter-spacing:0.528000pt;}
.ls7_c02063{letter-spacing:0.532224pt;}
.ls3_c02063{letter-spacing:0.544896pt;}
.ls0_c02063{letter-spacing:0.578688pt;}
.ls1_c02063{letter-spacing:0.637824pt;}
.wsc_c02063{word-spacing:-13.445376pt;}
.wsa_c02063{word-spacing:-11.088000pt;}
.ws8_c02063{word-spacing:-11.075328pt;}
.ws9_c02063{word-spacing:-11.037312pt;}
.wse_c02063{word-spacing:-10.775424pt;}
.wsd_c02063{word-spacing:-10.412160pt;}
.ws4_c02063{word-spacing:-10.344576pt;}
.ws17_c02063{word-spacing:-1.919232pt;}
.ws13_c02063{word-spacing:-0.958848pt;}
.ws11_c02063{word-spacing:-0.899712pt;}
.wsf_c02063{word-spacing:-0.865920pt;}
.ws18_c02063{word-spacing:-0.346368pt;}
.ws14_c02063{word-spacing:-0.114048pt;}
.ws12_c02063{word-spacing:-0.105600pt;}
.ws15_c02063{word-spacing:-0.088704pt;}
.ws16_c02063{word-spacing:-0.076032pt;}
.ws10_c02063{word-spacing:0.000000pt;}
.ws2_c02063{word-spacing:1.182720pt;}
.wsb_c02063{word-spacing:29.600256pt;}
.ws6_c02063{word-spacing:32.659968pt;}
.ws1_c02063{word-spacing:33.563904pt;}
.ws0_c02063{word-spacing:33.796224pt;}
.ws3_c02063{word-spacing:34.860672pt;}
.ws5_c02063{word-spacing:35.468928pt;}
.ws7_c02063{word-spacing:37.357056pt;}
._0_c02063{margin-left:-1.731840pt;}
._2_c02063{width:1.317888pt;}
._6_c02063{width:2.939904pt;}
._4_c02063{width:4.253568pt;}
._5_c02063{width:13.121280pt;}
._1_c02063{width:44.668800pt;}
._3_c02063{width:45.805056pt;}
.fs0_c02063{font-size:42.240000pt;}
.fs1_c02063{font-size:53.760000pt;}
.y0_c02063{bottom:0.000000pt;}
.y19_c02063{bottom:130.665211pt;}
.y1b_c02063{bottom:165.866875pt;}
.y1a_c02063{bottom:174.507067pt;}
.y18_c02063{bottom:245.225371pt;}
.y17_c02063{bottom:317.225563pt;}
.y15_c02063{bottom:361.386427pt;}
.y11_c02063{bottom:377.386939pt;}
.y16_c02063{bottom:407.786011pt;}
.y14_c02063{bottom:437.226235pt;}
.y13_c02063{bottom:453.226747pt;}
.y10_c02063{bottom:482.666971pt;}
.y12_c02063{bottom:497.386555pt;}
.yf_c02063{bottom:513.387067pt;}
.y1c_c02063{bottom:546.027067pt;}
.yb_c02063{bottom:593.385179pt;}
.yd_c02063{bottom:628.586875pt;}
.yc_c02063{bottom:637.227067pt;}
.ya_c02063{bottom:707.945339pt;}
.y9_c02063{bottom:779.945531pt;}
.y7_c02063{bottom:823.786427pt;}
.y3_c02063{bottom:839.786939pt;}
.y8_c02063{bottom:870.505979pt;}
.y6_c02063{bottom:899.946203pt;}
.y5_c02063{bottom:915.946715pt;}
.y2_c02063{bottom:945.386939pt;}
.y4_c02063{bottom:959.786555pt;}
.y1_c02063{bottom:975.787067pt;}
.ye_c02063{bottom:1008.747067pt;}
.h3_c02063{height:28.916250pt;}
.h1_c02063{height:37.063125pt;}
.h2_c02063{height:37.166250pt;}
.h4_c02063{height:48.581988pt;}
.h0_c02063{height:1122.666667pt;}
.w1_c02063{width:793.333333pt;}
.w0_c02063{width:793.626667pt;}
.x0_c02063{left:0.000000pt;}
.xd_c02063{left:104.000000pt;}
.x8_c02063{left:391.999872pt;}
.x4_c02063{left:396.160512pt;}
.xb_c02063{left:400.960000pt;}
.x7_c02063{left:404.799648pt;}
.x5_c02063{left:410.560128pt;}
.x1_c02063{left:411.840000pt;}
.xa_c02063{left:429.760320pt;}
.x9_c02063{left:437.439552pt;}
.x6_c02063{left:438.400512pt;}
.xc_c02063{left:450.560320pt;}
.x3_c02063{left:455.039904pt;}
.x2_c02063{left:468.159648pt;}
}





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

.ir_c02064:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02064{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02064;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02064{font-family:ff1_c02064;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02064;src:url('chunks/assets/font_d98cc0478bcd4863753bfe17.woff2')format("woff");}.ff2_c02064{font-family:ff2_c02064;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02064;src:url('chunks/assets/font_d4485c35d5fc90aeb026e509.woff2')format("woff");}.ff3_c02064{font-family:ff3_c02064;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02064{vertical-align:0.000000px;}
.v1_c02064{vertical-align:1.439424px;}
.lsa_c02064{letter-spacing:-0.574992px;}
.ls13_c02064{letter-spacing:-0.285120px;}
.lsf_c02064{letter-spacing:-0.275616px;}
.lsd_c02064{letter-spacing:-0.261360px;}
.ls7_c02064{letter-spacing:-0.242352px;}
.ls5_c02064{letter-spacing:-0.166320px;}
.ls4_c02064{letter-spacing:-0.118800px;}
.ls12_c02064{letter-spacing:0.000000px;}
.ls2_c02064{letter-spacing:0.006048px;}
.ls14_c02064{letter-spacing:0.038016px;}
.ls1_c02064{letter-spacing:0.123552px;}
.ls6_c02064{letter-spacing:0.128304px;}
.ls8_c02064{letter-spacing:0.242352px;}
.lsc_c02064{letter-spacing:0.508464px;}
.ls11_c02064{letter-spacing:0.514080px;}
.lse_c02064{letter-spacing:0.536976px;}
.lsb_c02064{letter-spacing:0.579744px;}
.ls10_c02064{letter-spacing:0.594000px;}
.ls9_c02064{letter-spacing:0.598752px;}
.ls3_c02064{letter-spacing:0.613008px;}
.ls0_c02064{letter-spacing:0.717552px;}
.sc__c02064{text-shadow:none;}
.sc0_c02064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02064{-webkit-text-stroke:0px transparent;}
.sc0_c02064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02064{word-spacing:-15.126048px;}
.wsb_c02064{word-spacing:-12.474000px;}
.ws9_c02064{word-spacing:-12.459744px;}
.wsa_c02064{word-spacing:-12.416976px;}
.ws3_c02064{word-spacing:-12.122352px;}
.ws1_c02064{word-spacing:-11.713680px;}
.ws5_c02064{word-spacing:-11.637648px;}
.ws16_c02064{word-spacing:-2.159136px;}
.ws12_c02064{word-spacing:-1.078704px;}
.wsf_c02064{word-spacing:-0.974160px;}
.ws13_c02064{word-spacing:-0.484704px;}
.ws18_c02064{word-spacing:-0.399168px;}
.ws11_c02064{word-spacing:-0.118800px;}
.ws14_c02064{word-spacing:-0.099792px;}
.ws15_c02064{word-spacing:-0.085536px;}
.ws17_c02064{word-spacing:-0.076032px;}
.ws10_c02064{word-spacing:0.000000px;}
.wse_c02064{word-spacing:1.330560px;}
.wsc_c02064{word-spacing:33.300288px;}
.ws7_c02064{word-spacing:36.742464px;}
.ws2_c02064{word-spacing:37.759392px;}
.ws0_c02064{word-spacing:38.020752px;}
.ws4_c02064{word-spacing:39.218256px;}
.ws6_c02064{word-spacing:39.902544px;}
.ws8_c02064{word-spacing:42.026688px;}
._0_c02064{margin-left:-1.948320px;}
._2_c02064{width:1.791504px;}
._4_c02064{width:3.307392px;}
._5_c02064{width:6.263136px;}
._1_c02064{width:50.252400px;}
._3_c02064{width:52.086672px;}
.fc0_c02064{color:rgb(0,0,0);}
.fs0_c02064{font-size:47.520000px;}
.fs1_c02064{font-size:60.480000px;}
.y0_c02064{bottom:0.000000px;}
.y19_c02064{bottom:146.998362px;}
.y1b_c02064{bottom:186.600234px;}
.y1a_c02064{bottom:196.320450px;}
.y18_c02064{bottom:275.878542px;}
.y17_c02064{bottom:356.878758px;}
.y15_c02064{bottom:406.559730px;}
.y11_c02064{bottom:424.560306px;}
.y16_c02064{bottom:458.759262px;}
.y14_c02064{bottom:491.879514px;}
.y13_c02064{bottom:509.880090px;}
.y10_c02064{bottom:543.000342px;}
.y12_c02064{bottom:559.559874px;}
.yf_c02064{bottom:577.560450px;}
.y1c_c02064{bottom:614.280450px;}
.yb_c02064{bottom:667.558326px;}
.yd_c02064{bottom:707.160234px;}
.yc_c02064{bottom:716.880450px;}
.ya_c02064{bottom:796.438506px;}
.y9_c02064{bottom:877.438722px;}
.y7_c02064{bottom:926.759730px;}
.y3_c02064{bottom:944.760306px;}
.y8_c02064{bottom:979.319226px;}
.y6_c02064{bottom:1012.439478px;}
.y5_c02064{bottom:1030.440054px;}
.y2_c02064{bottom:1063.560306px;}
.y4_c02064{bottom:1079.759874px;}
.y1_c02064{bottom:1097.760450px;}
.ye_c02064{bottom:1134.840450px;}
.h3_c02064{height:32.530781px;}
.h1_c02064{height:41.696016px;}
.h2_c02064{height:41.812031px;}
.h4_c02064{height:54.654737px;}
.h0_c02064{height:1263.000000px;}
.w1_c02064{width:892.500000px;}
.w0_c02064{width:892.830000px;}
.x0_c02064{left:0.000000px;}
.xd_c02064{left:117.000000px;}
.x8_c02064{left:440.999856px;}
.x4_c02064{left:445.680576px;}
.xb_c02064{left:451.080000px;}
.x7_c02064{left:455.399604px;}
.x5_c02064{left:461.880144px;}
.x1_c02064{left:463.320000px;}
.xa_c02064{left:483.480360px;}
.x9_c02064{left:492.119496px;}
.x6_c02064{left:493.200576px;}
.xc_c02064{left:506.880360px;}
.x3_c02064{left:511.919892px;}
.x2_c02064{left:526.679604px;}
@media print{
.v0_c02064{vertical-align:0.000000pt;}
.v1_c02064{vertical-align:1.279488pt;}
.lsa_c02064{letter-spacing:-0.511104pt;}
.ls13_c02064{letter-spacing:-0.253440pt;}
.lsf_c02064{letter-spacing:-0.244992pt;}
.lsd_c02064{letter-spacing:-0.232320pt;}
.ls7_c02064{letter-spacing:-0.215424pt;}
.ls5_c02064{letter-spacing:-0.147840pt;}
.ls4_c02064{letter-spacing:-0.105600pt;}
.ls12_c02064{letter-spacing:0.000000pt;}
.ls2_c02064{letter-spacing:0.005376pt;}
.ls14_c02064{letter-spacing:0.033792pt;}
.ls1_c02064{letter-spacing:0.109824pt;}
.ls6_c02064{letter-spacing:0.114048pt;}
.ls8_c02064{letter-spacing:0.215424pt;}
.lsc_c02064{letter-spacing:0.451968pt;}
.ls11_c02064{letter-spacing:0.456960pt;}
.lse_c02064{letter-spacing:0.477312pt;}
.lsb_c02064{letter-spacing:0.515328pt;}
.ls10_c02064{letter-spacing:0.528000pt;}
.ls9_c02064{letter-spacing:0.532224pt;}
.ls3_c02064{letter-spacing:0.544896pt;}
.ls0_c02064{letter-spacing:0.637824pt;}
.wsd_c02064{word-spacing:-13.445376pt;}
.wsb_c02064{word-spacing:-11.088000pt;}
.ws9_c02064{word-spacing:-11.075328pt;}
.wsa_c02064{word-spacing:-11.037312pt;}
.ws3_c02064{word-spacing:-10.775424pt;}
.ws1_c02064{word-spacing:-10.412160pt;}
.ws5_c02064{word-spacing:-10.344576pt;}
.ws16_c02064{word-spacing:-1.919232pt;}
.ws12_c02064{word-spacing:-0.958848pt;}
.wsf_c02064{word-spacing:-0.865920pt;}
.ws13_c02064{word-spacing:-0.430848pt;}
.ws18_c02064{word-spacing:-0.354816pt;}
.ws11_c02064{word-spacing:-0.105600pt;}
.ws14_c02064{word-spacing:-0.088704pt;}
.ws15_c02064{word-spacing:-0.076032pt;}
.ws17_c02064{word-spacing:-0.067584pt;}
.ws10_c02064{word-spacing:0.000000pt;}
.wse_c02064{word-spacing:1.182720pt;}
.wsc_c02064{word-spacing:29.600256pt;}
.ws7_c02064{word-spacing:32.659968pt;}
.ws2_c02064{word-spacing:33.563904pt;}
.ws0_c02064{word-spacing:33.796224pt;}
.ws4_c02064{word-spacing:34.860672pt;}
.ws6_c02064{word-spacing:35.468928pt;}
.ws8_c02064{word-spacing:37.357056pt;}
._0_c02064{margin-left:-1.731840pt;}
._2_c02064{width:1.592448pt;}
._4_c02064{width:2.939904pt;}
._5_c02064{width:5.567232pt;}
._1_c02064{width:44.668800pt;}
._3_c02064{width:46.299264pt;}
.fs0_c02064{font-size:42.240000pt;}
.fs1_c02064{font-size:53.760000pt;}
.y0_c02064{bottom:0.000000pt;}
.y19_c02064{bottom:130.665211pt;}
.y1b_c02064{bottom:165.866875pt;}
.y1a_c02064{bottom:174.507067pt;}
.y18_c02064{bottom:245.225371pt;}
.y17_c02064{bottom:317.225563pt;}
.y15_c02064{bottom:361.386427pt;}
.y11_c02064{bottom:377.386939pt;}
.y16_c02064{bottom:407.786011pt;}
.y14_c02064{bottom:437.226235pt;}
.y13_c02064{bottom:453.226747pt;}
.y10_c02064{bottom:482.666971pt;}
.y12_c02064{bottom:497.386555pt;}
.yf_c02064{bottom:513.387067pt;}
.y1c_c02064{bottom:546.027067pt;}
.yb_c02064{bottom:593.385179pt;}
.yd_c02064{bottom:628.586875pt;}
.yc_c02064{bottom:637.227067pt;}
.ya_c02064{bottom:707.945339pt;}
.y9_c02064{bottom:779.945531pt;}
.y7_c02064{bottom:823.786427pt;}
.y3_c02064{bottom:839.786939pt;}
.y8_c02064{bottom:870.505979pt;}
.y6_c02064{bottom:899.946203pt;}
.y5_c02064{bottom:915.946715pt;}
.y2_c02064{bottom:945.386939pt;}
.y4_c02064{bottom:959.786555pt;}
.y1_c02064{bottom:975.787067pt;}
.ye_c02064{bottom:1008.747067pt;}
.h3_c02064{height:28.916250pt;}
.h1_c02064{height:37.063125pt;}
.h2_c02064{height:37.166250pt;}
.h4_c02064{height:48.581988pt;}
.h0_c02064{height:1122.666667pt;}
.w1_c02064{width:793.333333pt;}
.w0_c02064{width:793.626667pt;}
.x0_c02064{left:0.000000pt;}
.xd_c02064{left:104.000000pt;}
.x8_c02064{left:391.999872pt;}
.x4_c02064{left:396.160512pt;}
.xb_c02064{left:400.960000pt;}
.x7_c02064{left:404.799648pt;}
.x5_c02064{left:410.560128pt;}
.x1_c02064{left:411.840000pt;}
.xa_c02064{left:429.760320pt;}
.x9_c02064{left:437.439552pt;}
.x6_c02064{left:438.400512pt;}
.xc_c02064{left:450.560320pt;}
.x3_c02064{left:455.039904pt;}
.x2_c02064{left:468.159648pt;}
}





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

.ir_c02065:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02065{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02065;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02065{font-family:ff1_c02065;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02065;src:url('chunks/assets/font_056ac54efc93277d86ebccb1.woff2')format("woff");}.ff2_c02065{font-family:ff2_c02065;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02065;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02065{font-family:ff3_c02065;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02065{vertical-align:0.000000px;}
.v1_c02065{vertical-align:1.439424px;}
.ls16_c02065{letter-spacing:-0.869616px;}
.lsd_c02065{letter-spacing:-0.779328px;}
.lse_c02065{letter-spacing:-0.693792px;}
.ls7_c02065{letter-spacing:-0.574992px;}
.ls13_c02065{letter-spacing:-0.299376px;}
.ls9_c02065{letter-spacing:-0.280368px;}
.lsf_c02065{letter-spacing:-0.275616px;}
.ls17_c02065{letter-spacing:-0.270864px;}
.lsb_c02065{letter-spacing:-0.261360px;}
.ls5_c02065{letter-spacing:-0.242352px;}
.ls3_c02065{letter-spacing:-0.118800px;}
.ls12_c02065{letter-spacing:0.000000px;}
.ls0_c02065{letter-spacing:0.006048px;}
.ls14_c02065{letter-spacing:0.014256px;}
.ls15_c02065{letter-spacing:0.038016px;}
.ls4_c02065{letter-spacing:0.128304px;}
.lsa_c02065{letter-spacing:0.508464px;}
.ls11_c02065{letter-spacing:0.514080px;}
.lsc_c02065{letter-spacing:0.536976px;}
.ls8_c02065{letter-spacing:0.579744px;}
.ls10_c02065{letter-spacing:0.594000px;}
.ls6_c02065{letter-spacing:0.598752px;}
.ls1_c02065{letter-spacing:0.613008px;}
.ls2_c02065{letter-spacing:0.717552px;}
.sc__c02065{text-shadow:none;}
.sc0_c02065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02065{-webkit-text-stroke:0px transparent;}
.sc0_c02065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02065{word-spacing:-15.126048px;}
.wsb_c02065{word-spacing:-12.474000px;}
.ws8_c02065{word-spacing:-12.459744px;}
.ws7_c02065{word-spacing:-12.388464px;}
.ws11_c02065{word-spacing:-11.894256px;}
.ws4_c02065{word-spacing:-11.637648px;}
.ws5_c02065{word-spacing:-11.305008px;}
.ws1b_c02065{word-spacing:-2.159136px;}
.ws14_c02065{word-spacing:-0.974160px;}
.ws1d_c02065{word-spacing:-0.399168px;}
.ws16_c02065{word-spacing:-0.118800px;}
.ws18_c02065{word-spacing:-0.099792px;}
.ws1e_c02065{word-spacing:-0.090288px;}
.ws1a_c02065{word-spacing:-0.085536px;}
.ws17_c02065{word-spacing:-0.080784px;}
.ws1c_c02065{word-spacing:-0.061776px;}
.ws15_c02065{word-spacing:0.000000px;}
.ws19_c02065{word-spacing:0.332640px;}
.ws2_c02065{word-spacing:1.330560px;}
.wsa_c02065{word-spacing:6.025536px;}
.ws10_c02065{word-spacing:23.674464px;}
.wsf_c02065{word-spacing:30.379536px;}
.wsc_c02065{word-spacing:33.300288px;}
.ws9_c02065{word-spacing:34.836912px;}
.ws6_c02065{word-spacing:36.742464px;}
.ws1_c02065{word-spacing:37.759392px;}
.ws0_c02065{word-spacing:38.020752px;}
.ws3_c02065{word-spacing:39.218256px;}
.wse_c02065{word-spacing:39.902544px;}
.ws13_c02065{word-spacing:40.981248px;}
.ws12_c02065{word-spacing:42.026688px;}
._0_c02065{margin-left:-1.948320px;}
._2_c02065{width:1.482624px;}
._4_c02065{width:6.263136px;}
._8_c02065{width:14.761440px;}
._5_c02065{width:19.264608px;}
._7_c02065{width:20.770992px;}
._6_c02065{width:25.584768px;}
._a_c02065{width:34.005312px;}
._b_c02065{width:38.220336px;}
._9_c02065{width:43.832448px;}
._1_c02065{width:50.252400px;}
._3_c02065{width:51.530688px;}
._d_c02065{width:54.443664px;}
._c_c02065{width:57.684528px;}
.fc0_c02065{color:rgb(0,0,0);}
.fs0_c02065{font-size:47.520000px;}
.fs1_c02065{font-size:60.480000px;}
.y0_c02065{bottom:0.000000px;}
.y1d_c02065{bottom:131.879874px;}
.y1c_c02065{bottom:146.999550px;}
.y1f_c02065{bottom:186.600234px;}
.y1e_c02065{bottom:196.320450px;}
.y1b_c02065{bottom:275.879730px;}
.y1a_c02065{bottom:356.879946px;}
.y18_c02065{bottom:376.320378px;}
.y17_c02065{bottom:391.440054px;}
.y16_c02065{bottom:406.559730px;}
.y12_c02065{bottom:424.560306px;}
.y19_c02065{bottom:458.760450px;}
.y15_c02065{bottom:491.879514px;}
.y14_c02065{bottom:509.880090px;}
.y11_c02065{bottom:543.000342px;}
.y13_c02065{bottom:559.559874px;}
.y10_c02065{bottom:577.560450px;}
.y20_c02065{bottom:614.280450px;}
.yc_c02065{bottom:652.438650px;}
.yb_c02065{bottom:667.558326px;}
.ye_c02065{bottom:707.160234px;}
.yd_c02065{bottom:716.880450px;}
.ya_c02065{bottom:796.438506px;}
.y9_c02065{bottom:877.438722px;}
.y7_c02065{bottom:926.759730px;}
.y3_c02065{bottom:944.760306px;}
.y8_c02065{bottom:979.319226px;}
.y6_c02065{bottom:1012.439478px;}
.y5_c02065{bottom:1030.440054px;}
.y2_c02065{bottom:1063.560306px;}
.y4_c02065{bottom:1079.759874px;}
.y1_c02065{bottom:1097.760450px;}
.yf_c02065{bottom:1134.840450px;}
.h3_c02065{height:32.530781px;}
.h1_c02065{height:41.696016px;}
.h2_c02065{height:41.812031px;}
.h4_c02065{height:54.654737px;}
.h0_c02065{height:1263.000000px;}
.w1_c02065{width:892.500000px;}
.w0_c02065{width:892.830000px;}
.x0_c02065{left:0.000000px;}
.xe_c02065{left:117.000000px;}
.x8_c02065{left:441.001044px;}
.x4_c02065{left:445.680576px;}
.xc_c02065{left:451.080000px;}
.x7_c02065{left:455.400792px;}
.x5_c02065{left:461.880144px;}
.x1_c02065{left:463.320000px;}
.xa_c02065{left:483.481548px;}
.x9_c02065{left:492.120684px;}
.x6_c02065{left:493.200576px;}
.xd_c02065{left:506.880360px;}
.x3_c02065{left:511.919892px;}
.x2_c02065{left:526.679604px;}
.xb_c02065{left:569.881224px;}
@media print{
.v0_c02065{vertical-align:0.000000pt;}
.v1_c02065{vertical-align:1.279488pt;}
.ls16_c02065{letter-spacing:-0.772992pt;}
.lsd_c02065{letter-spacing:-0.692736pt;}
.lse_c02065{letter-spacing:-0.616704pt;}
.ls7_c02065{letter-spacing:-0.511104pt;}
.ls13_c02065{letter-spacing:-0.266112pt;}
.ls9_c02065{letter-spacing:-0.249216pt;}
.lsf_c02065{letter-spacing:-0.244992pt;}
.ls17_c02065{letter-spacing:-0.240768pt;}
.lsb_c02065{letter-spacing:-0.232320pt;}
.ls5_c02065{letter-spacing:-0.215424pt;}
.ls3_c02065{letter-spacing:-0.105600pt;}
.ls12_c02065{letter-spacing:0.000000pt;}
.ls0_c02065{letter-spacing:0.005376pt;}
.ls14_c02065{letter-spacing:0.012672pt;}
.ls15_c02065{letter-spacing:0.033792pt;}
.ls4_c02065{letter-spacing:0.114048pt;}
.lsa_c02065{letter-spacing:0.451968pt;}
.ls11_c02065{letter-spacing:0.456960pt;}
.lsc_c02065{letter-spacing:0.477312pt;}
.ls8_c02065{letter-spacing:0.515328pt;}
.ls10_c02065{letter-spacing:0.528000pt;}
.ls6_c02065{letter-spacing:0.532224pt;}
.ls1_c02065{letter-spacing:0.544896pt;}
.ls2_c02065{letter-spacing:0.637824pt;}
.wsd_c02065{word-spacing:-13.445376pt;}
.wsb_c02065{word-spacing:-11.088000pt;}
.ws8_c02065{word-spacing:-11.075328pt;}
.ws7_c02065{word-spacing:-11.011968pt;}
.ws11_c02065{word-spacing:-10.572672pt;}
.ws4_c02065{word-spacing:-10.344576pt;}
.ws5_c02065{word-spacing:-10.048896pt;}
.ws1b_c02065{word-spacing:-1.919232pt;}
.ws14_c02065{word-spacing:-0.865920pt;}
.ws1d_c02065{word-spacing:-0.354816pt;}
.ws16_c02065{word-spacing:-0.105600pt;}
.ws18_c02065{word-spacing:-0.088704pt;}
.ws1e_c02065{word-spacing:-0.080256pt;}
.ws1a_c02065{word-spacing:-0.076032pt;}
.ws17_c02065{word-spacing:-0.071808pt;}
.ws1c_c02065{word-spacing:-0.054912pt;}
.ws15_c02065{word-spacing:0.000000pt;}
.ws19_c02065{word-spacing:0.295680pt;}
.ws2_c02065{word-spacing:1.182720pt;}
.wsa_c02065{word-spacing:5.356032pt;}
.ws10_c02065{word-spacing:21.043968pt;}
.wsf_c02065{word-spacing:27.004032pt;}
.wsc_c02065{word-spacing:29.600256pt;}
.ws9_c02065{word-spacing:30.966144pt;}
.ws6_c02065{word-spacing:32.659968pt;}
.ws1_c02065{word-spacing:33.563904pt;}
.ws0_c02065{word-spacing:33.796224pt;}
.ws3_c02065{word-spacing:34.860672pt;}
.wse_c02065{word-spacing:35.468928pt;}
.ws13_c02065{word-spacing:36.427776pt;}
.ws12_c02065{word-spacing:37.357056pt;}
._0_c02065{margin-left:-1.731840pt;}
._2_c02065{width:1.317888pt;}
._4_c02065{width:5.567232pt;}
._8_c02065{width:13.121280pt;}
._5_c02065{width:17.124096pt;}
._7_c02065{width:18.463104pt;}
._6_c02065{width:22.742016pt;}
._a_c02065{width:30.226944pt;}
._b_c02065{width:33.973632pt;}
._9_c02065{width:38.962176pt;}
._1_c02065{width:44.668800pt;}
._3_c02065{width:45.805056pt;}
._d_c02065{width:48.394368pt;}
._c_c02065{width:51.275136pt;}
.fs0_c02065{font-size:42.240000pt;}
.fs1_c02065{font-size:53.760000pt;}
.y0_c02065{bottom:0.000000pt;}
.y1d_c02065{bottom:117.226555pt;}
.y1c_c02065{bottom:130.666267pt;}
.y1f_c02065{bottom:165.866875pt;}
.y1e_c02065{bottom:174.507067pt;}
.y1b_c02065{bottom:245.226427pt;}
.y1a_c02065{bottom:317.226619pt;}
.y18_c02065{bottom:334.507003pt;}
.y17_c02065{bottom:347.946715pt;}
.y16_c02065{bottom:361.386427pt;}
.y12_c02065{bottom:377.386939pt;}
.y19_c02065{bottom:407.787067pt;}
.y15_c02065{bottom:437.226235pt;}
.y14_c02065{bottom:453.226747pt;}
.y11_c02065{bottom:482.666971pt;}
.y13_c02065{bottom:497.386555pt;}
.y10_c02065{bottom:513.387067pt;}
.y20_c02065{bottom:546.027067pt;}
.yc_c02065{bottom:579.945467pt;}
.yb_c02065{bottom:593.385179pt;}
.ye_c02065{bottom:628.586875pt;}
.yd_c02065{bottom:637.227067pt;}
.ya_c02065{bottom:707.945339pt;}
.y9_c02065{bottom:779.945531pt;}
.y7_c02065{bottom:823.786427pt;}
.y3_c02065{bottom:839.786939pt;}
.y8_c02065{bottom:870.505979pt;}
.y6_c02065{bottom:899.946203pt;}
.y5_c02065{bottom:915.946715pt;}
.y2_c02065{bottom:945.386939pt;}
.y4_c02065{bottom:959.786555pt;}
.y1_c02065{bottom:975.787067pt;}
.yf_c02065{bottom:1008.747067pt;}
.h3_c02065{height:28.916250pt;}
.h1_c02065{height:37.063125pt;}
.h2_c02065{height:37.166250pt;}
.h4_c02065{height:48.581988pt;}
.h0_c02065{height:1122.666667pt;}
.w1_c02065{width:793.333333pt;}
.w0_c02065{width:793.626667pt;}
.x0_c02065{left:0.000000pt;}
.xe_c02065{left:104.000000pt;}
.x8_c02065{left:392.000928pt;}
.x4_c02065{left:396.160512pt;}
.xc_c02065{left:400.960000pt;}
.x7_c02065{left:404.800704pt;}
.x5_c02065{left:410.560128pt;}
.x1_c02065{left:411.840000pt;}
.xa_c02065{left:429.761376pt;}
.x9_c02065{left:437.440608pt;}
.x6_c02065{left:438.400512pt;}
.xd_c02065{left:450.560320pt;}
.x3_c02065{left:455.039904pt;}
.x2_c02065{left:468.159648pt;}
.xb_c02065{left:506.561088pt;}
}





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

.ir_c02066:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02066{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02066;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02066{font-family:ff1_c02066;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02066;src:url('chunks/assets/font_f08a1d3cdc6ba7f2746ffbb1.woff2')format("woff");}.ff2_c02066{font-family:ff2_c02066;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02066;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02066{font-family:ff3_c02066;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02066{vertical-align:0.000000px;}
.v1_c02066{vertical-align:1.439424px;}
.ls8_c02066{letter-spacing:-0.574992px;}
.lse_c02066{letter-spacing:-0.275616px;}
.lsc_c02066{letter-spacing:-0.261360px;}
.ls6_c02066{letter-spacing:-0.242352px;}
.ls4_c02066{letter-spacing:-0.118800px;}
.ls11_c02066{letter-spacing:0.000000px;}
.ls1_c02066{letter-spacing:0.006048px;}
.ls12_c02066{letter-spacing:0.038016px;}
.lsb_c02066{letter-spacing:0.071280px;}
.ls5_c02066{letter-spacing:0.128304px;}
.lsa_c02066{letter-spacing:0.508464px;}
.ls10_c02066{letter-spacing:0.514080px;}
.lsd_c02066{letter-spacing:0.536976px;}
.ls9_c02066{letter-spacing:0.579744px;}
.lsf_c02066{letter-spacing:0.594000px;}
.ls7_c02066{letter-spacing:0.598752px;}
.ls3_c02066{letter-spacing:0.613008px;}
.ls2_c02066{letter-spacing:0.717552px;}
.ls0_c02066{letter-spacing:0.722304px;}
.sc__c02066{text-shadow:none;}
.sc0_c02066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02066{-webkit-text-stroke:0px transparent;}
.sc0_c02066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02066{word-spacing:-15.126048px;}
.wsa_c02066{word-spacing:-12.474000px;}
.ws8_c02066{word-spacing:-12.459744px;}
.ws9_c02066{word-spacing:-12.416976px;}
.ws4_c02066{word-spacing:-11.637648px;}
.ws14_c02066{word-spacing:-2.159136px;}
.ws10_c02066{word-spacing:-1.083456px;}
.ws15_c02066{word-spacing:-1.078704px;}
.wsd_c02066{word-spacing:-0.974160px;}
.ws11_c02066{word-spacing:-0.432432px;}
.ws16_c02066{word-spacing:-0.399168px;}
.wsf_c02066{word-spacing:-0.118800px;}
.ws12_c02066{word-spacing:-0.099792px;}
.ws13_c02066{word-spacing:-0.085536px;}
.wse_c02066{word-spacing:0.000000px;}
.ws2_c02066{word-spacing:1.330560px;}
.wsb_c02066{word-spacing:33.300288px;}
.ws6_c02066{word-spacing:36.742464px;}
.ws1_c02066{word-spacing:37.759392px;}
.ws0_c02066{word-spacing:38.020752px;}
.ws3_c02066{word-spacing:39.218256px;}
.ws5_c02066{word-spacing:39.902544px;}
.ws7_c02066{word-spacing:42.026688px;}
._0_c02066{margin-left:-1.948320px;}
._2_c02066{width:1.482624px;}
._4_c02066{width:6.263136px;}
._5_c02066{width:14.761440px;}
._1_c02066{width:50.252400px;}
._3_c02066{width:51.530688px;}
.fc0_c02066{color:rgb(0,0,0);}
.fs0_c02066{font-size:47.520000px;}
.fs1_c02066{font-size:60.480000px;}
.y0_c02066{bottom:0.000000px;}
.y19_c02066{bottom:146.998362px;}
.y1b_c02066{bottom:186.600234px;}
.y1a_c02066{bottom:196.320450px;}
.y18_c02066{bottom:275.878542px;}
.y17_c02066{bottom:356.878758px;}
.y15_c02066{bottom:406.559730px;}
.y11_c02066{bottom:424.560306px;}
.y16_c02066{bottom:458.759262px;}
.y14_c02066{bottom:491.879514px;}
.y13_c02066{bottom:509.880090px;}
.y10_c02066{bottom:543.000342px;}
.y12_c02066{bottom:559.559874px;}
.yf_c02066{bottom:577.560450px;}
.y1c_c02066{bottom:614.280450px;}
.yb_c02066{bottom:667.558326px;}
.yd_c02066{bottom:707.160234px;}
.yc_c02066{bottom:716.880450px;}
.ya_c02066{bottom:796.438506px;}
.y9_c02066{bottom:877.438722px;}
.y7_c02066{bottom:926.759730px;}
.y3_c02066{bottom:944.760306px;}
.y8_c02066{bottom:979.319226px;}
.y6_c02066{bottom:1012.439478px;}
.y5_c02066{bottom:1030.440054px;}
.y2_c02066{bottom:1063.560306px;}
.y4_c02066{bottom:1079.759874px;}
.y1_c02066{bottom:1097.760450px;}
.ye_c02066{bottom:1134.840450px;}
.h3_c02066{height:32.530781px;}
.h1_c02066{height:41.696016px;}
.h2_c02066{height:41.812031px;}
.h4_c02066{height:54.654737px;}
.h0_c02066{height:1263.000000px;}
.w1_c02066{width:892.500000px;}
.w0_c02066{width:892.830000px;}
.x0_c02066{left:0.000000px;}
.xd_c02066{left:117.000000px;}
.x8_c02066{left:440.999856px;}
.x4_c02066{left:445.680576px;}
.xb_c02066{left:451.080000px;}
.x7_c02066{left:455.399604px;}
.x5_c02066{left:461.880144px;}
.x1_c02066{left:463.320000px;}
.xa_c02066{left:483.480360px;}
.x9_c02066{left:492.119496px;}
.x6_c02066{left:493.200576px;}
.xc_c02066{left:506.880360px;}
.x3_c02066{left:511.919892px;}
.x2_c02066{left:526.679604px;}
@media print{
.v0_c02066{vertical-align:0.000000pt;}
.v1_c02066{vertical-align:1.279488pt;}
.ls8_c02066{letter-spacing:-0.511104pt;}
.lse_c02066{letter-spacing:-0.244992pt;}
.lsc_c02066{letter-spacing:-0.232320pt;}
.ls6_c02066{letter-spacing:-0.215424pt;}
.ls4_c02066{letter-spacing:-0.105600pt;}
.ls11_c02066{letter-spacing:0.000000pt;}
.ls1_c02066{letter-spacing:0.005376pt;}
.ls12_c02066{letter-spacing:0.033792pt;}
.lsb_c02066{letter-spacing:0.063360pt;}
.ls5_c02066{letter-spacing:0.114048pt;}
.lsa_c02066{letter-spacing:0.451968pt;}
.ls10_c02066{letter-spacing:0.456960pt;}
.lsd_c02066{letter-spacing:0.477312pt;}
.ls9_c02066{letter-spacing:0.515328pt;}
.lsf_c02066{letter-spacing:0.528000pt;}
.ls7_c02066{letter-spacing:0.532224pt;}
.ls3_c02066{letter-spacing:0.544896pt;}
.ls2_c02066{letter-spacing:0.637824pt;}
.ls0_c02066{letter-spacing:0.642048pt;}
.wsc_c02066{word-spacing:-13.445376pt;}
.wsa_c02066{word-spacing:-11.088000pt;}
.ws8_c02066{word-spacing:-11.075328pt;}
.ws9_c02066{word-spacing:-11.037312pt;}
.ws4_c02066{word-spacing:-10.344576pt;}
.ws14_c02066{word-spacing:-1.919232pt;}
.ws10_c02066{word-spacing:-0.963072pt;}
.ws15_c02066{word-spacing:-0.958848pt;}
.wsd_c02066{word-spacing:-0.865920pt;}
.ws11_c02066{word-spacing:-0.384384pt;}
.ws16_c02066{word-spacing:-0.354816pt;}
.wsf_c02066{word-spacing:-0.105600pt;}
.ws12_c02066{word-spacing:-0.088704pt;}
.ws13_c02066{word-spacing:-0.076032pt;}
.wse_c02066{word-spacing:0.000000pt;}
.ws2_c02066{word-spacing:1.182720pt;}
.wsb_c02066{word-spacing:29.600256pt;}
.ws6_c02066{word-spacing:32.659968pt;}
.ws1_c02066{word-spacing:33.563904pt;}
.ws0_c02066{word-spacing:33.796224pt;}
.ws3_c02066{word-spacing:34.860672pt;}
.ws5_c02066{word-spacing:35.468928pt;}
.ws7_c02066{word-spacing:37.357056pt;}
._0_c02066{margin-left:-1.731840pt;}
._2_c02066{width:1.317888pt;}
._4_c02066{width:5.567232pt;}
._5_c02066{width:13.121280pt;}
._1_c02066{width:44.668800pt;}
._3_c02066{width:45.805056pt;}
.fs0_c02066{font-size:42.240000pt;}
.fs1_c02066{font-size:53.760000pt;}
.y0_c02066{bottom:0.000000pt;}
.y19_c02066{bottom:130.665211pt;}
.y1b_c02066{bottom:165.866875pt;}
.y1a_c02066{bottom:174.507067pt;}
.y18_c02066{bottom:245.225371pt;}
.y17_c02066{bottom:317.225563pt;}
.y15_c02066{bottom:361.386427pt;}
.y11_c02066{bottom:377.386939pt;}
.y16_c02066{bottom:407.786011pt;}
.y14_c02066{bottom:437.226235pt;}
.y13_c02066{bottom:453.226747pt;}
.y10_c02066{bottom:482.666971pt;}
.y12_c02066{bottom:497.386555pt;}
.yf_c02066{bottom:513.387067pt;}
.y1c_c02066{bottom:546.027067pt;}
.yb_c02066{bottom:593.385179pt;}
.yd_c02066{bottom:628.586875pt;}
.yc_c02066{bottom:637.227067pt;}
.ya_c02066{bottom:707.945339pt;}
.y9_c02066{bottom:779.945531pt;}
.y7_c02066{bottom:823.786427pt;}
.y3_c02066{bottom:839.786939pt;}
.y8_c02066{bottom:870.505979pt;}
.y6_c02066{bottom:899.946203pt;}
.y5_c02066{bottom:915.946715pt;}
.y2_c02066{bottom:945.386939pt;}
.y4_c02066{bottom:959.786555pt;}
.y1_c02066{bottom:975.787067pt;}
.ye_c02066{bottom:1008.747067pt;}
.h3_c02066{height:28.916250pt;}
.h1_c02066{height:37.063125pt;}
.h2_c02066{height:37.166250pt;}
.h4_c02066{height:48.581988pt;}
.h0_c02066{height:1122.666667pt;}
.w1_c02066{width:793.333333pt;}
.w0_c02066{width:793.626667pt;}
.x0_c02066{left:0.000000pt;}
.xd_c02066{left:104.000000pt;}
.x8_c02066{left:391.999872pt;}
.x4_c02066{left:396.160512pt;}
.xb_c02066{left:400.960000pt;}
.x7_c02066{left:404.799648pt;}
.x5_c02066{left:410.560128pt;}
.x1_c02066{left:411.840000pt;}
.xa_c02066{left:429.760320pt;}
.x9_c02066{left:437.439552pt;}
.x6_c02066{left:438.400512pt;}
.xc_c02066{left:450.560320pt;}
.x3_c02066{left:455.039904pt;}
.x2_c02066{left:468.159648pt;}
}





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

.ir_c02067:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02067{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02067;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02067{font-family:ff1_c02067;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02067;src:url('chunks/assets/font_ac100625cb24cb6570abefb1.woff2')format("woff");}.ff2_c02067{font-family:ff2_c02067;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02067;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02067{font-family:ff3_c02067;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02067{vertical-align:0.000000px;}
.v1_c02067{vertical-align:1.439424px;}
.ls13_c02067{letter-spacing:-0.774576px;}
.ls15_c02067{letter-spacing:-0.736560px;}
.ls8_c02067{letter-spacing:-0.574992px;}
.ls9_c02067{letter-spacing:-0.285120px;}
.lsf_c02067{letter-spacing:-0.275616px;}
.ls16_c02067{letter-spacing:-0.270864px;}
.lsd_c02067{letter-spacing:-0.261360px;}
.ls6_c02067{letter-spacing:-0.242352px;}
.ls4_c02067{letter-spacing:-0.118800px;}
.ls12_c02067{letter-spacing:0.000000px;}
.ls0_c02067{letter-spacing:0.006048px;}
.lsc_c02067{letter-spacing:0.038016px;}
.ls5_c02067{letter-spacing:0.128304px;}
.ls14_c02067{letter-spacing:0.242352px;}
.lsb_c02067{letter-spacing:0.508464px;}
.ls11_c02067{letter-spacing:0.514080px;}
.lse_c02067{letter-spacing:0.536976px;}
.lsa_c02067{letter-spacing:0.579744px;}
.ls10_c02067{letter-spacing:0.594000px;}
.ls7_c02067{letter-spacing:0.598752px;}
.ls2_c02067{letter-spacing:0.613008px;}
.ls1_c02067{letter-spacing:0.651024px;}
.ls3_c02067{letter-spacing:0.717552px;}
.sc__c02067{text-shadow:none;}
.sc0_c02067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02067{-webkit-text-stroke:0px transparent;}
.sc0_c02067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02067{word-spacing:-15.126048px;}
.wsa_c02067{word-spacing:-12.474000px;}
.ws8_c02067{word-spacing:-12.459744px;}
.ws9_c02067{word-spacing:-12.416976px;}
.ws4_c02067{word-spacing:-11.637648px;}
.wsd_c02067{word-spacing:-11.105424px;}
.ws17_c02067{word-spacing:-2.159136px;}
.ws18_c02067{word-spacing:-1.012176px;}
.ws10_c02067{word-spacing:-0.974160px;}
.ws14_c02067{word-spacing:-0.399168px;}
.ws12_c02067{word-spacing:-0.118800px;}
.ws15_c02067{word-spacing:-0.099792px;}
.ws19_c02067{word-spacing:-0.090288px;}
.ws16_c02067{word-spacing:-0.085536px;}
.ws13_c02067{word-spacing:-0.076032px;}
.ws11_c02067{word-spacing:0.000000px;}
.ws2_c02067{word-spacing:1.330560px;}
.wsf_c02067{word-spacing:6.629040px;}
.wsb_c02067{word-spacing:33.300288px;}
.wse_c02067{word-spacing:34.836912px;}
.ws6_c02067{word-spacing:36.742464px;}
.ws1_c02067{word-spacing:37.759392px;}
.ws0_c02067{word-spacing:38.020752px;}
.ws3_c02067{word-spacing:39.218256px;}
.ws5_c02067{word-spacing:39.902544px;}
.ws7_c02067{word-spacing:42.026688px;}
._0_c02067{margin-left:-1.948320px;}
._2_c02067{width:1.482624px;}
._4_c02067{width:6.263136px;}
._5_c02067{width:14.761440px;}
._7_c02067{width:19.982160px;}
._8_c02067{width:23.451120px;}
._6_c02067{width:24.691392px;}
._1_c02067{width:50.252400px;}
._3_c02067{width:51.530688px;}
.fc0_c02067{color:rgb(0,0,0);}
.fs0_c02067{font-size:47.520000px;}
.fs1_c02067{font-size:60.480000px;}
.y0_c02067{bottom:0.000000px;}
.y1a_c02067{bottom:131.878686px;}
.y19_c02067{bottom:146.998362px;}
.y1c_c02067{bottom:186.600234px;}
.y1b_c02067{bottom:196.320450px;}
.y18_c02067{bottom:275.878542px;}
.y17_c02067{bottom:356.878758px;}
.y15_c02067{bottom:406.559730px;}
.y11_c02067{bottom:424.560306px;}
.y16_c02067{bottom:458.759262px;}
.y14_c02067{bottom:491.879514px;}
.y13_c02067{bottom:509.880090px;}
.y10_c02067{bottom:543.000342px;}
.y12_c02067{bottom:559.559874px;}
.yf_c02067{bottom:577.560450px;}
.y1d_c02067{bottom:614.280450px;}
.yb_c02067{bottom:667.558326px;}
.yd_c02067{bottom:707.160234px;}
.yc_c02067{bottom:716.880450px;}
.ya_c02067{bottom:796.438506px;}
.y9_c02067{bottom:877.438722px;}
.y7_c02067{bottom:926.759730px;}
.y3_c02067{bottom:944.760306px;}
.y8_c02067{bottom:979.319226px;}
.y6_c02067{bottom:1012.439478px;}
.y5_c02067{bottom:1030.440054px;}
.y2_c02067{bottom:1063.560306px;}
.y4_c02067{bottom:1079.759874px;}
.y1_c02067{bottom:1097.760450px;}
.ye_c02067{bottom:1134.840450px;}
.h3_c02067{height:32.530781px;}
.h1_c02067{height:41.696016px;}
.h2_c02067{height:41.812031px;}
.h4_c02067{height:54.654737px;}
.h0_c02067{height:1263.000000px;}
.w1_c02067{width:892.500000px;}
.w0_c02067{width:892.830000px;}
.x0_c02067{left:0.000000px;}
.xd_c02067{left:117.000000px;}
.x8_c02067{left:440.999856px;}
.x4_c02067{left:445.680576px;}
.xb_c02067{left:451.080000px;}
.x7_c02067{left:455.399604px;}
.x5_c02067{left:461.880144px;}
.x1_c02067{left:463.320000px;}
.xa_c02067{left:483.480360px;}
.x9_c02067{left:492.119496px;}
.x6_c02067{left:493.200576px;}
.xc_c02067{left:506.880360px;}
.x3_c02067{left:511.919892px;}
.x2_c02067{left:526.679604px;}
.xe_c02067{left:569.880036px;}
@media print{
.v0_c02067{vertical-align:0.000000pt;}
.v1_c02067{vertical-align:1.279488pt;}
.ls13_c02067{letter-spacing:-0.688512pt;}
.ls15_c02067{letter-spacing:-0.654720pt;}
.ls8_c02067{letter-spacing:-0.511104pt;}
.ls9_c02067{letter-spacing:-0.253440pt;}
.lsf_c02067{letter-spacing:-0.244992pt;}
.ls16_c02067{letter-spacing:-0.240768pt;}
.lsd_c02067{letter-spacing:-0.232320pt;}
.ls6_c02067{letter-spacing:-0.215424pt;}
.ls4_c02067{letter-spacing:-0.105600pt;}
.ls12_c02067{letter-spacing:0.000000pt;}
.ls0_c02067{letter-spacing:0.005376pt;}
.lsc_c02067{letter-spacing:0.033792pt;}
.ls5_c02067{letter-spacing:0.114048pt;}
.ls14_c02067{letter-spacing:0.215424pt;}
.lsb_c02067{letter-spacing:0.451968pt;}
.ls11_c02067{letter-spacing:0.456960pt;}
.lse_c02067{letter-spacing:0.477312pt;}
.lsa_c02067{letter-spacing:0.515328pt;}
.ls10_c02067{letter-spacing:0.528000pt;}
.ls7_c02067{letter-spacing:0.532224pt;}
.ls2_c02067{letter-spacing:0.544896pt;}
.ls1_c02067{letter-spacing:0.578688pt;}
.ls3_c02067{letter-spacing:0.637824pt;}
.wsc_c02067{word-spacing:-13.445376pt;}
.wsa_c02067{word-spacing:-11.088000pt;}
.ws8_c02067{word-spacing:-11.075328pt;}
.ws9_c02067{word-spacing:-11.037312pt;}
.ws4_c02067{word-spacing:-10.344576pt;}
.wsd_c02067{word-spacing:-9.871488pt;}
.ws17_c02067{word-spacing:-1.919232pt;}
.ws18_c02067{word-spacing:-0.899712pt;}
.ws10_c02067{word-spacing:-0.865920pt;}
.ws14_c02067{word-spacing:-0.354816pt;}
.ws12_c02067{word-spacing:-0.105600pt;}
.ws15_c02067{word-spacing:-0.088704pt;}
.ws19_c02067{word-spacing:-0.080256pt;}
.ws16_c02067{word-spacing:-0.076032pt;}
.ws13_c02067{word-spacing:-0.067584pt;}
.ws11_c02067{word-spacing:0.000000pt;}
.ws2_c02067{word-spacing:1.182720pt;}
.wsf_c02067{word-spacing:5.892480pt;}
.wsb_c02067{word-spacing:29.600256pt;}
.wse_c02067{word-spacing:30.966144pt;}
.ws6_c02067{word-spacing:32.659968pt;}
.ws1_c02067{word-spacing:33.563904pt;}
.ws0_c02067{word-spacing:33.796224pt;}
.ws3_c02067{word-spacing:34.860672pt;}
.ws5_c02067{word-spacing:35.468928pt;}
.ws7_c02067{word-spacing:37.357056pt;}
._0_c02067{margin-left:-1.731840pt;}
._2_c02067{width:1.317888pt;}
._4_c02067{width:5.567232pt;}
._5_c02067{width:13.121280pt;}
._7_c02067{width:17.761920pt;}
._8_c02067{width:20.845440pt;}
._6_c02067{width:21.947904pt;}
._1_c02067{width:44.668800pt;}
._3_c02067{width:45.805056pt;}
.fs0_c02067{font-size:42.240000pt;}
.fs1_c02067{font-size:53.760000pt;}
.y0_c02067{bottom:0.000000pt;}
.y1a_c02067{bottom:117.225499pt;}
.y19_c02067{bottom:130.665211pt;}
.y1c_c02067{bottom:165.866875pt;}
.y1b_c02067{bottom:174.507067pt;}
.y18_c02067{bottom:245.225371pt;}
.y17_c02067{bottom:317.225563pt;}
.y15_c02067{bottom:361.386427pt;}
.y11_c02067{bottom:377.386939pt;}
.y16_c02067{bottom:407.786011pt;}
.y14_c02067{bottom:437.226235pt;}
.y13_c02067{bottom:453.226747pt;}
.y10_c02067{bottom:482.666971pt;}
.y12_c02067{bottom:497.386555pt;}
.yf_c02067{bottom:513.387067pt;}
.y1d_c02067{bottom:546.027067pt;}
.yb_c02067{bottom:593.385179pt;}
.yd_c02067{bottom:628.586875pt;}
.yc_c02067{bottom:637.227067pt;}
.ya_c02067{bottom:707.945339pt;}
.y9_c02067{bottom:779.945531pt;}
.y7_c02067{bottom:823.786427pt;}
.y3_c02067{bottom:839.786939pt;}
.y8_c02067{bottom:870.505979pt;}
.y6_c02067{bottom:899.946203pt;}
.y5_c02067{bottom:915.946715pt;}
.y2_c02067{bottom:945.386939pt;}
.y4_c02067{bottom:959.786555pt;}
.y1_c02067{bottom:975.787067pt;}
.ye_c02067{bottom:1008.747067pt;}
.h3_c02067{height:28.916250pt;}
.h1_c02067{height:37.063125pt;}
.h2_c02067{height:37.166250pt;}
.h4_c02067{height:48.581988pt;}
.h0_c02067{height:1122.666667pt;}
.w1_c02067{width:793.333333pt;}
.w0_c02067{width:793.626667pt;}
.x0_c02067{left:0.000000pt;}
.xd_c02067{left:104.000000pt;}
.x8_c02067{left:391.999872pt;}
.x4_c02067{left:396.160512pt;}
.xb_c02067{left:400.960000pt;}
.x7_c02067{left:404.799648pt;}
.x5_c02067{left:410.560128pt;}
.x1_c02067{left:411.840000pt;}
.xa_c02067{left:429.760320pt;}
.x9_c02067{left:437.439552pt;}
.x6_c02067{left:438.400512pt;}
.xc_c02067{left:450.560320pt;}
.x3_c02067{left:455.039904pt;}
.x2_c02067{left:468.159648pt;}
.xe_c02067{left:506.560032pt;}
}





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

.ir_c02068:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02068;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02068{font-family:ff1_c02068;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02068;src:url('chunks/assets/font_ab26731e8c4d671232d16bc9.woff2')format("woff");}.ff2_c02068{font-family:ff2_c02068;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02068;src:url('chunks/assets/font_7a0e6502e85d57f631b88d47.woff2')format("woff");}.ff3_c02068{font-family:ff3_c02068;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02068{vertical-align:0.000000px;}
.v1_c02068{vertical-align:1.439424px;}
.ls9_c02068{letter-spacing:-0.774576px;}
.lsf_c02068{letter-spacing:-0.736560px;}
.ls8_c02068{letter-spacing:-0.574992px;}
.ls14_c02068{letter-spacing:-0.308880px;}
.ls16_c02068{letter-spacing:-0.275616px;}
.ls10_c02068{letter-spacing:-0.270864px;}
.lsd_c02068{letter-spacing:-0.261360px;}
.ls6_c02068{letter-spacing:-0.242352px;}
.ls4_c02068{letter-spacing:-0.118800px;}
.ls13_c02068{letter-spacing:0.000000px;}
.ls1_c02068{letter-spacing:0.006048px;}
.ls15_c02068{letter-spacing:0.038016px;}
.ls5_c02068{letter-spacing:0.128304px;}
.lsc_c02068{letter-spacing:0.242352px;}
.lsb_c02068{letter-spacing:0.508464px;}
.ls12_c02068{letter-spacing:0.514080px;}
.lse_c02068{letter-spacing:0.536976px;}
.lsa_c02068{letter-spacing:0.579744px;}
.ls11_c02068{letter-spacing:0.594000px;}
.ls7_c02068{letter-spacing:0.598752px;}
.ls2_c02068{letter-spacing:0.613008px;}
.ls0_c02068{letter-spacing:0.651024px;}
.ls3_c02068{letter-spacing:0.717552px;}
.sc__c02068{text-shadow:none;}
.sc0_c02068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02068{-webkit-text-stroke:0px transparent;}
.sc0_c02068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02068{word-spacing:-15.126048px;}
.wsb_c02068{word-spacing:-12.474000px;}
.ws7_c02068{word-spacing:-12.459744px;}
.wsf_c02068{word-spacing:-12.416976px;}
.ws4_c02068{word-spacing:-11.637648px;}
.ws6_c02068{word-spacing:-11.105424px;}
.ws17_c02068{word-spacing:-2.159136px;}
.ws12_c02068{word-spacing:-1.012176px;}
.ws10_c02068{word-spacing:-0.974160px;}
.ws19_c02068{word-spacing:-0.399168px;}
.ws13_c02068{word-spacing:-0.118800px;}
.ws14_c02068{word-spacing:-0.099792px;}
.ws15_c02068{word-spacing:-0.090288px;}
.ws16_c02068{word-spacing:-0.085536px;}
.ws18_c02068{word-spacing:-0.052272px;}
.ws11_c02068{word-spacing:0.000000px;}
.ws2_c02068{word-spacing:1.330560px;}
.wsa_c02068{word-spacing:6.629040px;}
.wsc_c02068{word-spacing:33.300288px;}
.ws9_c02068{word-spacing:34.836912px;}
.wse_c02068{word-spacing:36.742464px;}
.ws1_c02068{word-spacing:37.759392px;}
.ws0_c02068{word-spacing:38.020752px;}
.ws3_c02068{word-spacing:39.218256px;}
.ws5_c02068{word-spacing:39.902544px;}
.ws8_c02068{word-spacing:42.026688px;}
._0_c02068{margin-left:-1.948320px;}
._2_c02068{width:1.482624px;}
._4_c02068{width:6.263136px;}
._8_c02068{width:14.761440px;}
._6_c02068{width:19.982160px;}
._7_c02068{width:23.451120px;}
._5_c02068{width:24.691392px;}
._1_c02068{width:50.252400px;}
._3_c02068{width:51.530688px;}
.fc0_c02068{color:rgb(0,0,0);}
.fs0_c02068{font-size:47.520000px;}
.fs1_c02068{font-size:60.480000px;}
.y0_c02068{bottom:0.000000px;}
.y1a_c02068{bottom:146.998362px;}
.y1c_c02068{bottom:186.600234px;}
.y1b_c02068{bottom:196.320450px;}
.y19_c02068{bottom:275.878542px;}
.y18_c02068{bottom:356.878758px;}
.y16_c02068{bottom:406.559730px;}
.y12_c02068{bottom:424.560306px;}
.y17_c02068{bottom:458.759262px;}
.y15_c02068{bottom:491.879514px;}
.y14_c02068{bottom:509.880090px;}
.y11_c02068{bottom:543.000342px;}
.y13_c02068{bottom:559.559874px;}
.y10_c02068{bottom:577.560450px;}
.y1d_c02068{bottom:614.280450px;}
.yc_c02068{bottom:652.438650px;}
.yb_c02068{bottom:667.558326px;}
.ye_c02068{bottom:707.160234px;}
.yd_c02068{bottom:716.880450px;}
.ya_c02068{bottom:796.438506px;}
.y9_c02068{bottom:877.438722px;}
.y7_c02068{bottom:926.759730px;}
.y3_c02068{bottom:944.760306px;}
.y8_c02068{bottom:979.319226px;}
.y6_c02068{bottom:1012.439478px;}
.y5_c02068{bottom:1030.440054px;}
.y2_c02068{bottom:1063.560306px;}
.y4_c02068{bottom:1079.759874px;}
.y1_c02068{bottom:1097.760450px;}
.yf_c02068{bottom:1134.840450px;}
.h3_c02068{height:32.530781px;}
.h1_c02068{height:41.696016px;}
.h2_c02068{height:41.812031px;}
.h4_c02068{height:54.654737px;}
.h0_c02068{height:1263.000000px;}
.w1_c02068{width:892.500000px;}
.w0_c02068{width:892.830000px;}
.x0_c02068{left:0.000000px;}
.xe_c02068{left:117.000000px;}
.x8_c02068{left:440.999856px;}
.x4_c02068{left:445.680576px;}
.xc_c02068{left:451.080000px;}
.x7_c02068{left:455.399604px;}
.x5_c02068{left:461.880144px;}
.x1_c02068{left:463.320000px;}
.xa_c02068{left:483.480360px;}
.x9_c02068{left:492.119496px;}
.x6_c02068{left:493.200576px;}
.xd_c02068{left:506.880360px;}
.x3_c02068{left:511.919892px;}
.x2_c02068{left:526.679604px;}
.xb_c02068{left:569.880036px;}
@media print{
.v0_c02068{vertical-align:0.000000pt;}
.v1_c02068{vertical-align:1.279488pt;}
.ls9_c02068{letter-spacing:-0.688512pt;}
.lsf_c02068{letter-spacing:-0.654720pt;}
.ls8_c02068{letter-spacing:-0.511104pt;}
.ls14_c02068{letter-spacing:-0.274560pt;}
.ls16_c02068{letter-spacing:-0.244992pt;}
.ls10_c02068{letter-spacing:-0.240768pt;}
.lsd_c02068{letter-spacing:-0.232320pt;}
.ls6_c02068{letter-spacing:-0.215424pt;}
.ls4_c02068{letter-spacing:-0.105600pt;}
.ls13_c02068{letter-spacing:0.000000pt;}
.ls1_c02068{letter-spacing:0.005376pt;}
.ls15_c02068{letter-spacing:0.033792pt;}
.ls5_c02068{letter-spacing:0.114048pt;}
.lsc_c02068{letter-spacing:0.215424pt;}
.lsb_c02068{letter-spacing:0.451968pt;}
.ls12_c02068{letter-spacing:0.456960pt;}
.lse_c02068{letter-spacing:0.477312pt;}
.lsa_c02068{letter-spacing:0.515328pt;}
.ls11_c02068{letter-spacing:0.528000pt;}
.ls7_c02068{letter-spacing:0.532224pt;}
.ls2_c02068{letter-spacing:0.544896pt;}
.ls0_c02068{letter-spacing:0.578688pt;}
.ls3_c02068{letter-spacing:0.637824pt;}
.wsd_c02068{word-spacing:-13.445376pt;}
.wsb_c02068{word-spacing:-11.088000pt;}
.ws7_c02068{word-spacing:-11.075328pt;}
.wsf_c02068{word-spacing:-11.037312pt;}
.ws4_c02068{word-spacing:-10.344576pt;}
.ws6_c02068{word-spacing:-9.871488pt;}
.ws17_c02068{word-spacing:-1.919232pt;}
.ws12_c02068{word-spacing:-0.899712pt;}
.ws10_c02068{word-spacing:-0.865920pt;}
.ws19_c02068{word-spacing:-0.354816pt;}
.ws13_c02068{word-spacing:-0.105600pt;}
.ws14_c02068{word-spacing:-0.088704pt;}
.ws15_c02068{word-spacing:-0.080256pt;}
.ws16_c02068{word-spacing:-0.076032pt;}
.ws18_c02068{word-spacing:-0.046464pt;}
.ws11_c02068{word-spacing:0.000000pt;}
.ws2_c02068{word-spacing:1.182720pt;}
.wsa_c02068{word-spacing:5.892480pt;}
.wsc_c02068{word-spacing:29.600256pt;}
.ws9_c02068{word-spacing:30.966144pt;}
.wse_c02068{word-spacing:32.659968pt;}
.ws1_c02068{word-spacing:33.563904pt;}
.ws0_c02068{word-spacing:33.796224pt;}
.ws3_c02068{word-spacing:34.860672pt;}
.ws5_c02068{word-spacing:35.468928pt;}
.ws8_c02068{word-spacing:37.357056pt;}
._0_c02068{margin-left:-1.731840pt;}
._2_c02068{width:1.317888pt;}
._4_c02068{width:5.567232pt;}
._8_c02068{width:13.121280pt;}
._6_c02068{width:17.761920pt;}
._7_c02068{width:20.845440pt;}
._5_c02068{width:21.947904pt;}
._1_c02068{width:44.668800pt;}
._3_c02068{width:45.805056pt;}
.fs0_c02068{font-size:42.240000pt;}
.fs1_c02068{font-size:53.760000pt;}
.y0_c02068{bottom:0.000000pt;}
.y1a_c02068{bottom:130.665211pt;}
.y1c_c02068{bottom:165.866875pt;}
.y1b_c02068{bottom:174.507067pt;}
.y19_c02068{bottom:245.225371pt;}
.y18_c02068{bottom:317.225563pt;}
.y16_c02068{bottom:361.386427pt;}
.y12_c02068{bottom:377.386939pt;}
.y17_c02068{bottom:407.786011pt;}
.y15_c02068{bottom:437.226235pt;}
.y14_c02068{bottom:453.226747pt;}
.y11_c02068{bottom:482.666971pt;}
.y13_c02068{bottom:497.386555pt;}
.y10_c02068{bottom:513.387067pt;}
.y1d_c02068{bottom:546.027067pt;}
.yc_c02068{bottom:579.945467pt;}
.yb_c02068{bottom:593.385179pt;}
.ye_c02068{bottom:628.586875pt;}
.yd_c02068{bottom:637.227067pt;}
.ya_c02068{bottom:707.945339pt;}
.y9_c02068{bottom:779.945531pt;}
.y7_c02068{bottom:823.786427pt;}
.y3_c02068{bottom:839.786939pt;}
.y8_c02068{bottom:870.505979pt;}
.y6_c02068{bottom:899.946203pt;}
.y5_c02068{bottom:915.946715pt;}
.y2_c02068{bottom:945.386939pt;}
.y4_c02068{bottom:959.786555pt;}
.y1_c02068{bottom:975.787067pt;}
.yf_c02068{bottom:1008.747067pt;}
.h3_c02068{height:28.916250pt;}
.h1_c02068{height:37.063125pt;}
.h2_c02068{height:37.166250pt;}
.h4_c02068{height:48.581988pt;}
.h0_c02068{height:1122.666667pt;}
.w1_c02068{width:793.333333pt;}
.w0_c02068{width:793.626667pt;}
.x0_c02068{left:0.000000pt;}
.xe_c02068{left:104.000000pt;}
.x8_c02068{left:391.999872pt;}
.x4_c02068{left:396.160512pt;}
.xc_c02068{left:400.960000pt;}
.x7_c02068{left:404.799648pt;}
.x5_c02068{left:410.560128pt;}
.x1_c02068{left:411.840000pt;}
.xa_c02068{left:429.760320pt;}
.x9_c02068{left:437.439552pt;}
.x6_c02068{left:438.400512pt;}
.xd_c02068{left:450.560320pt;}
.x3_c02068{left:455.039904pt;}
.x2_c02068{left:468.159648pt;}
.xb_c02068{left:506.560032pt;}
}





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

.ir_c02069:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02069;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02069{font-family:ff1_c02069;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02069;src:url('chunks/assets/font_4d4c8ffc27317ddffac8fb85.woff2')format("woff");}.ff2_c02069{font-family:ff2_c02069;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02069;src:url('chunks/assets/font_d4485c35d5fc90aeb026e509.woff2')format("woff");}.ff3_c02069{font-family:ff3_c02069;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02069{vertical-align:0.000000px;}
.v1_c02069{vertical-align:1.439424px;}
.v2_c02069{vertical-align:5.759424px;}
.lsf_c02069{letter-spacing:-0.736560px;}
.ls8_c02069{letter-spacing:-0.574992px;}
.ls9_c02069{letter-spacing:-0.299376px;}
.ls17_c02069{letter-spacing:-0.275616px;}
.ls10_c02069{letter-spacing:-0.270864px;}
.lsd_c02069{letter-spacing:-0.261360px;}
.ls6_c02069{letter-spacing:-0.242352px;}
.ls14_c02069{letter-spacing:-0.166320px;}
.ls4_c02069{letter-spacing:-0.118800px;}
.ls13_c02069{letter-spacing:0.000000px;}
.ls0_c02069{letter-spacing:0.006048px;}
.lsc_c02069{letter-spacing:0.038016px;}
.ls16_c02069{letter-spacing:0.066528px;}
.ls2_c02069{letter-spacing:0.071280px;}
.ls5_c02069{letter-spacing:0.128304px;}
.lsb_c02069{letter-spacing:0.508464px;}
.ls12_c02069{letter-spacing:0.514080px;}
.lse_c02069{letter-spacing:0.536976px;}
.lsa_c02069{letter-spacing:0.579744px;}
.ls11_c02069{letter-spacing:0.594000px;}
.ls7_c02069{letter-spacing:0.598752px;}
.ls3_c02069{letter-spacing:0.613008px;}
.ls1_c02069{letter-spacing:0.717552px;}
.ls15_c02069{letter-spacing:0.722304px;}
.sc__c02069{text-shadow:none;}
.sc0_c02069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02069{-webkit-text-stroke:0px transparent;}
.sc0_c02069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02069{word-spacing:-15.126048px;}
.wsf_c02069{word-spacing:-12.602304px;}
.wsb_c02069{word-spacing:-12.474000px;}
.ws8_c02069{word-spacing:-12.459744px;}
.ws12_c02069{word-spacing:-12.416976px;}
.ws11_c02069{word-spacing:-11.951280px;}
.wse_c02069{word-spacing:-11.713680px;}
.ws4_c02069{word-spacing:-11.637648px;}
.ws1b_c02069{word-spacing:-2.159136px;}
.ws1c_c02069{word-spacing:-1.078704px;}
.ws13_c02069{word-spacing:-0.974160px;}
.ws1d_c02069{word-spacing:-0.427680px;}
.ws17_c02069{word-spacing:-0.399168px;}
.ws15_c02069{word-spacing:-0.118800px;}
.ws18_c02069{word-spacing:-0.099792px;}
.ws19_c02069{word-spacing:-0.090288px;}
.ws1a_c02069{word-spacing:-0.085536px;}
.ws16_c02069{word-spacing:-0.061776px;}
.ws14_c02069{word-spacing:0.000000px;}
.ws2_c02069{word-spacing:1.330560px;}
.wsa_c02069{word-spacing:6.629040px;}
.ws10_c02069{word-spacing:28.540512px;}
.wsc_c02069{word-spacing:33.300288px;}
.ws9_c02069{word-spacing:34.836912px;}
.ws6_c02069{word-spacing:36.742464px;}
.ws1_c02069{word-spacing:37.759392px;}
.ws0_c02069{word-spacing:38.020752px;}
.ws3_c02069{word-spacing:39.218256px;}
.ws5_c02069{word-spacing:39.902544px;}
.ws7_c02069{word-spacing:42.026688px;}
._0_c02069{margin-left:-1.948320px;}
._2_c02069{width:1.482624px;}
._4_c02069{width:6.263136px;}
._8_c02069{width:14.761440px;}
._6_c02069{width:19.982160px;}
._7_c02069{width:23.451120px;}
._5_c02069{width:24.691392px;}
._a_c02069{width:36.443088px;}
._9_c02069{width:38.263104px;}
._1_c02069{width:50.252400px;}
._3_c02069{width:51.530688px;}
.fc0_c02069{color:rgb(0,0,0);}
.fs0_c02069{font-size:47.520000px;}
.fs1_c02069{font-size:60.480000px;}
.y0_c02069{bottom:0.000000px;}
.y1b_c02069{bottom:146.999550px;}
.y1d_c02069{bottom:186.600234px;}
.y1c_c02069{bottom:196.320450px;}
.y1a_c02069{bottom:275.879730px;}
.y19_c02069{bottom:356.879946px;}
.y16_c02069{bottom:406.559730px;}
.y12_c02069{bottom:424.560306px;}
.y18_c02069{bottom:443.999550px;}
.y17_c02069{bottom:458.759262px;}
.y15_c02069{bottom:491.879514px;}
.y14_c02069{bottom:509.880090px;}
.y11_c02069{bottom:543.000342px;}
.y13_c02069{bottom:559.559874px;}
.y10_c02069{bottom:577.560450px;}
.y1e_c02069{bottom:614.280450px;}
.yc_c02069{bottom:652.438650px;}
.yb_c02069{bottom:667.558326px;}
.ye_c02069{bottom:707.160234px;}
.yd_c02069{bottom:716.880450px;}
.ya_c02069{bottom:796.438506px;}
.y9_c02069{bottom:877.438722px;}
.y7_c02069{bottom:926.759730px;}
.y3_c02069{bottom:944.760306px;}
.y8_c02069{bottom:979.319226px;}
.y6_c02069{bottom:1012.439478px;}
.y5_c02069{bottom:1030.440054px;}
.y2_c02069{bottom:1063.560306px;}
.y4_c02069{bottom:1079.759874px;}
.y1_c02069{bottom:1097.760450px;}
.yf_c02069{bottom:1134.840450px;}
.h3_c02069{height:32.530781px;}
.h1_c02069{height:41.696016px;}
.h2_c02069{height:41.812031px;}
.h5_c02069{height:47.571455px;}
.h4_c02069{height:54.654737px;}
.h0_c02069{height:1263.000000px;}
.w1_c02069{width:892.500000px;}
.w0_c02069{width:892.830000px;}
.x0_c02069{left:0.000000px;}
.xe_c02069{left:117.000000px;}
.x8_c02069{left:440.999856px;}
.x4_c02069{left:445.680576px;}
.xc_c02069{left:451.080000px;}
.x7_c02069{left:455.399604px;}
.x5_c02069{left:461.880144px;}
.x1_c02069{left:463.320000px;}
.xa_c02069{left:483.480360px;}
.x9_c02069{left:492.119496px;}
.x6_c02069{left:493.200576px;}
.xd_c02069{left:506.880360px;}
.x3_c02069{left:511.919892px;}
.x2_c02069{left:526.679604px;}
.xb_c02069{left:569.880036px;}
@media print{
.v0_c02069{vertical-align:0.000000pt;}
.v1_c02069{vertical-align:1.279488pt;}
.v2_c02069{vertical-align:5.119488pt;}
.lsf_c02069{letter-spacing:-0.654720pt;}
.ls8_c02069{letter-spacing:-0.511104pt;}
.ls9_c02069{letter-spacing:-0.266112pt;}
.ls17_c02069{letter-spacing:-0.244992pt;}
.ls10_c02069{letter-spacing:-0.240768pt;}
.lsd_c02069{letter-spacing:-0.232320pt;}
.ls6_c02069{letter-spacing:-0.215424pt;}
.ls14_c02069{letter-spacing:-0.147840pt;}
.ls4_c02069{letter-spacing:-0.105600pt;}
.ls13_c02069{letter-spacing:0.000000pt;}
.ls0_c02069{letter-spacing:0.005376pt;}
.lsc_c02069{letter-spacing:0.033792pt;}
.ls16_c02069{letter-spacing:0.059136pt;}
.ls2_c02069{letter-spacing:0.063360pt;}
.ls5_c02069{letter-spacing:0.114048pt;}
.lsb_c02069{letter-spacing:0.451968pt;}
.ls12_c02069{letter-spacing:0.456960pt;}
.lse_c02069{letter-spacing:0.477312pt;}
.lsa_c02069{letter-spacing:0.515328pt;}
.ls11_c02069{letter-spacing:0.528000pt;}
.ls7_c02069{letter-spacing:0.532224pt;}
.ls3_c02069{letter-spacing:0.544896pt;}
.ls1_c02069{letter-spacing:0.637824pt;}
.ls15_c02069{letter-spacing:0.642048pt;}
.wsd_c02069{word-spacing:-13.445376pt;}
.wsf_c02069{word-spacing:-11.202048pt;}
.wsb_c02069{word-spacing:-11.088000pt;}
.ws8_c02069{word-spacing:-11.075328pt;}
.ws12_c02069{word-spacing:-11.037312pt;}
.ws11_c02069{word-spacing:-10.623360pt;}
.wse_c02069{word-spacing:-10.412160pt;}
.ws4_c02069{word-spacing:-10.344576pt;}
.ws1b_c02069{word-spacing:-1.919232pt;}
.ws1c_c02069{word-spacing:-0.958848pt;}
.ws13_c02069{word-spacing:-0.865920pt;}
.ws1d_c02069{word-spacing:-0.380160pt;}
.ws17_c02069{word-spacing:-0.354816pt;}
.ws15_c02069{word-spacing:-0.105600pt;}
.ws18_c02069{word-spacing:-0.088704pt;}
.ws19_c02069{word-spacing:-0.080256pt;}
.ws1a_c02069{word-spacing:-0.076032pt;}
.ws16_c02069{word-spacing:-0.054912pt;}
.ws14_c02069{word-spacing:0.000000pt;}
.ws2_c02069{word-spacing:1.182720pt;}
.wsa_c02069{word-spacing:5.892480pt;}
.ws10_c02069{word-spacing:25.369344pt;}
.wsc_c02069{word-spacing:29.600256pt;}
.ws9_c02069{word-spacing:30.966144pt;}
.ws6_c02069{word-spacing:32.659968pt;}
.ws1_c02069{word-spacing:33.563904pt;}
.ws0_c02069{word-spacing:33.796224pt;}
.ws3_c02069{word-spacing:34.860672pt;}
.ws5_c02069{word-spacing:35.468928pt;}
.ws7_c02069{word-spacing:37.357056pt;}
._0_c02069{margin-left:-1.731840pt;}
._2_c02069{width:1.317888pt;}
._4_c02069{width:5.567232pt;}
._8_c02069{width:13.121280pt;}
._6_c02069{width:17.761920pt;}
._7_c02069{width:20.845440pt;}
._5_c02069{width:21.947904pt;}
._a_c02069{width:32.393856pt;}
._9_c02069{width:34.011648pt;}
._1_c02069{width:44.668800pt;}
._3_c02069{width:45.805056pt;}
.fs0_c02069{font-size:42.240000pt;}
.fs1_c02069{font-size:53.760000pt;}
.y0_c02069{bottom:0.000000pt;}
.y1b_c02069{bottom:130.666267pt;}
.y1d_c02069{bottom:165.866875pt;}
.y1c_c02069{bottom:174.507067pt;}
.y1a_c02069{bottom:245.226427pt;}
.y19_c02069{bottom:317.226619pt;}
.y16_c02069{bottom:361.386427pt;}
.y12_c02069{bottom:377.386939pt;}
.y18_c02069{bottom:394.666267pt;}
.y17_c02069{bottom:407.786011pt;}
.y15_c02069{bottom:437.226235pt;}
.y14_c02069{bottom:453.226747pt;}
.y11_c02069{bottom:482.666971pt;}
.y13_c02069{bottom:497.386555pt;}
.y10_c02069{bottom:513.387067pt;}
.y1e_c02069{bottom:546.027067pt;}
.yc_c02069{bottom:579.945467pt;}
.yb_c02069{bottom:593.385179pt;}
.ye_c02069{bottom:628.586875pt;}
.yd_c02069{bottom:637.227067pt;}
.ya_c02069{bottom:707.945339pt;}
.y9_c02069{bottom:779.945531pt;}
.y7_c02069{bottom:823.786427pt;}
.y3_c02069{bottom:839.786939pt;}
.y8_c02069{bottom:870.505979pt;}
.y6_c02069{bottom:899.946203pt;}
.y5_c02069{bottom:915.946715pt;}
.y2_c02069{bottom:945.386939pt;}
.y4_c02069{bottom:959.786555pt;}
.y1_c02069{bottom:975.787067pt;}
.yf_c02069{bottom:1008.747067pt;}
.h3_c02069{height:28.916250pt;}
.h1_c02069{height:37.063125pt;}
.h2_c02069{height:37.166250pt;}
.h5_c02069{height:42.285738pt;}
.h4_c02069{height:48.581988pt;}
.h0_c02069{height:1122.666667pt;}
.w1_c02069{width:793.333333pt;}
.w0_c02069{width:793.626667pt;}
.x0_c02069{left:0.000000pt;}
.xe_c02069{left:104.000000pt;}
.x8_c02069{left:391.999872pt;}
.x4_c02069{left:396.160512pt;}
.xc_c02069{left:400.960000pt;}
.x7_c02069{left:404.799648pt;}
.x5_c02069{left:410.560128pt;}
.x1_c02069{left:411.840000pt;}
.xa_c02069{left:429.760320pt;}
.x9_c02069{left:437.439552pt;}
.x6_c02069{left:438.400512pt;}
.xd_c02069{left:450.560320pt;}
.x3_c02069{left:455.039904pt;}
.x2_c02069{left:468.159648pt;}
.xb_c02069{left:506.560032pt;}
}





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

.ir_c02070:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02070;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02070{font-family:ff1_c02070;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02070;src:url('chunks/assets/font_6c83d882e0da861592dff208.woff2')format("woff");}.ff2_c02070{font-family:ff2_c02070;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02070;src:url('chunks/assets/font_6d37b7d059c2c522bd0bf388.woff2')format("woff");}.ff3_c02070{font-family:ff3_c02070;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02070{vertical-align:0.000000px;}
.v2_c02070{vertical-align:1.439424px;}
.v3_c02070{vertical-align:5.759424px;}
.v1_c02070{vertical-align:7.199280px;}
.ls8_c02070{letter-spacing:-0.574992px;}
.lsb_c02070{letter-spacing:-0.427680px;}
.lse_c02070{letter-spacing:-0.275616px;}
.lsc_c02070{letter-spacing:-0.261360px;}
.ls5_c02070{letter-spacing:-0.242352px;}
.ls3_c02070{letter-spacing:-0.118800px;}
.ls11_c02070{letter-spacing:0.000000px;}
.ls1_c02070{letter-spacing:0.006048px;}
.ls4_c02070{letter-spacing:0.128304px;}
.lsa_c02070{letter-spacing:0.508464px;}
.ls10_c02070{letter-spacing:0.514080px;}
.lsd_c02070{letter-spacing:0.536976px;}
.ls9_c02070{letter-spacing:0.579744px;}
.lsf_c02070{letter-spacing:0.594000px;}
.ls7_c02070{letter-spacing:0.598752px;}
.ls2_c02070{letter-spacing:0.613008px;}
.ls0_c02070{letter-spacing:0.717552px;}
.ls6_c02070{letter-spacing:0.722304px;}
.sc__c02070{text-shadow:none;}
.sc0_c02070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02070{-webkit-text-stroke:0px transparent;}
.sc0_c02070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02070{word-spacing:-15.126048px;}
.ws2_c02070{word-spacing:-12.602304px;}
.wsa_c02070{word-spacing:-12.474000px;}
.ws8_c02070{word-spacing:-12.459744px;}
.ws9_c02070{word-spacing:-12.416976px;}
.ws14_c02070{word-spacing:-2.159136px;}
.ws10_c02070{word-spacing:-1.078704px;}
.wsd_c02070{word-spacing:-0.974160px;}
.wsf_c02070{word-spacing:-0.118800px;}
.ws12_c02070{word-spacing:-0.099792px;}
.ws13_c02070{word-spacing:-0.085536px;}
.wse_c02070{word-spacing:0.000000px;}
.ws11_c02070{word-spacing:0.066528px;}
.ws4_c02070{word-spacing:4.951584px;}
.wsb_c02070{word-spacing:33.300288px;}
.ws6_c02070{word-spacing:36.742464px;}
.ws1_c02070{word-spacing:37.759392px;}
.ws0_c02070{word-spacing:38.020752px;}
.ws3_c02070{word-spacing:39.218256px;}
.ws5_c02070{word-spacing:39.902544px;}
.ws7_c02070{word-spacing:42.026688px;}
._0_c02070{margin-left:-1.948320px;}
._2_c02070{width:1.482624px;}
._4_c02070{width:14.761440px;}
._1_c02070{width:50.252400px;}
._3_c02070{width:51.530688px;}
.fc0_c02070{color:rgb(0,0,0);}
.fs0_c02070{font-size:47.520000px;}
.fs1_c02070{font-size:60.480000px;}
.y0_c02070{bottom:0.000000px;}
.y19_c02070{bottom:146.998362px;}
.y1b_c02070{bottom:186.600234px;}
.y1a_c02070{bottom:196.320450px;}
.y18_c02070{bottom:275.878542px;}
.y17_c02070{bottom:356.878758px;}
.y15_c02070{bottom:406.559730px;}
.y11_c02070{bottom:424.560306px;}
.y16_c02070{bottom:458.759262px;}
.y14_c02070{bottom:491.879514px;}
.y13_c02070{bottom:509.880090px;}
.y10_c02070{bottom:543.000342px;}
.y12_c02070{bottom:559.559874px;}
.yf_c02070{bottom:577.560450px;}
.y1c_c02070{bottom:614.280450px;}
.yb_c02070{bottom:667.558326px;}
.yd_c02070{bottom:707.160234px;}
.yc_c02070{bottom:716.880450px;}
.ya_c02070{bottom:796.438506px;}
.y9_c02070{bottom:877.438722px;}
.y7_c02070{bottom:926.759730px;}
.y3_c02070{bottom:944.760306px;}
.y8_c02070{bottom:979.319226px;}
.y6_c02070{bottom:1012.439478px;}
.y5_c02070{bottom:1030.440054px;}
.y2_c02070{bottom:1063.560306px;}
.y4_c02070{bottom:1079.759874px;}
.y1_c02070{bottom:1097.760450px;}
.ye_c02070{bottom:1134.840450px;}
.h4_c02070{height:32.530781px;}
.h1_c02070{height:41.696016px;}
.h2_c02070{height:41.812031px;}
.h6_c02070{height:47.571455px;}
.h3_c02070{height:49.011311px;}
.h5_c02070{height:54.654737px;}
.h0_c02070{height:1263.000000px;}
.w1_c02070{width:892.500000px;}
.w0_c02070{width:892.830000px;}
.x0_c02070{left:0.000000px;}
.xd_c02070{left:117.000000px;}
.x8_c02070{left:440.999856px;}
.x4_c02070{left:445.680576px;}
.xb_c02070{left:451.080000px;}
.x7_c02070{left:455.399604px;}
.x5_c02070{left:461.880144px;}
.x1_c02070{left:463.320000px;}
.xa_c02070{left:483.480360px;}
.x9_c02070{left:492.119496px;}
.x6_c02070{left:493.200576px;}
.xc_c02070{left:506.880360px;}
.x3_c02070{left:511.919892px;}
.x2_c02070{left:526.679604px;}
@media print{
.v0_c02070{vertical-align:0.000000pt;}
.v2_c02070{vertical-align:1.279488pt;}
.v3_c02070{vertical-align:5.119488pt;}
.v1_c02070{vertical-align:6.399360pt;}
.ls8_c02070{letter-spacing:-0.511104pt;}
.lsb_c02070{letter-spacing:-0.380160pt;}
.lse_c02070{letter-spacing:-0.244992pt;}
.lsc_c02070{letter-spacing:-0.232320pt;}
.ls5_c02070{letter-spacing:-0.215424pt;}
.ls3_c02070{letter-spacing:-0.105600pt;}
.ls11_c02070{letter-spacing:0.000000pt;}
.ls1_c02070{letter-spacing:0.005376pt;}
.ls4_c02070{letter-spacing:0.114048pt;}
.lsa_c02070{letter-spacing:0.451968pt;}
.ls10_c02070{letter-spacing:0.456960pt;}
.lsd_c02070{letter-spacing:0.477312pt;}
.ls9_c02070{letter-spacing:0.515328pt;}
.lsf_c02070{letter-spacing:0.528000pt;}
.ls7_c02070{letter-spacing:0.532224pt;}
.ls2_c02070{letter-spacing:0.544896pt;}
.ls0_c02070{letter-spacing:0.637824pt;}
.ls6_c02070{letter-spacing:0.642048pt;}
.wsc_c02070{word-spacing:-13.445376pt;}
.ws2_c02070{word-spacing:-11.202048pt;}
.wsa_c02070{word-spacing:-11.088000pt;}
.ws8_c02070{word-spacing:-11.075328pt;}
.ws9_c02070{word-spacing:-11.037312pt;}
.ws14_c02070{word-spacing:-1.919232pt;}
.ws10_c02070{word-spacing:-0.958848pt;}
.wsd_c02070{word-spacing:-0.865920pt;}
.wsf_c02070{word-spacing:-0.105600pt;}
.ws12_c02070{word-spacing:-0.088704pt;}
.ws13_c02070{word-spacing:-0.076032pt;}
.wse_c02070{word-spacing:0.000000pt;}
.ws11_c02070{word-spacing:0.059136pt;}
.ws4_c02070{word-spacing:4.401408pt;}
.wsb_c02070{word-spacing:29.600256pt;}
.ws6_c02070{word-spacing:32.659968pt;}
.ws1_c02070{word-spacing:33.563904pt;}
.ws0_c02070{word-spacing:33.796224pt;}
.ws3_c02070{word-spacing:34.860672pt;}
.ws5_c02070{word-spacing:35.468928pt;}
.ws7_c02070{word-spacing:37.357056pt;}
._0_c02070{margin-left:-1.731840pt;}
._2_c02070{width:1.317888pt;}
._4_c02070{width:13.121280pt;}
._1_c02070{width:44.668800pt;}
._3_c02070{width:45.805056pt;}
.fs0_c02070{font-size:42.240000pt;}
.fs1_c02070{font-size:53.760000pt;}
.y0_c02070{bottom:0.000000pt;}
.y19_c02070{bottom:130.665211pt;}
.y1b_c02070{bottom:165.866875pt;}
.y1a_c02070{bottom:174.507067pt;}
.y18_c02070{bottom:245.225371pt;}
.y17_c02070{bottom:317.225563pt;}
.y15_c02070{bottom:361.386427pt;}
.y11_c02070{bottom:377.386939pt;}
.y16_c02070{bottom:407.786011pt;}
.y14_c02070{bottom:437.226235pt;}
.y13_c02070{bottom:453.226747pt;}
.y10_c02070{bottom:482.666971pt;}
.y12_c02070{bottom:497.386555pt;}
.yf_c02070{bottom:513.387067pt;}
.y1c_c02070{bottom:546.027067pt;}
.yb_c02070{bottom:593.385179pt;}
.yd_c02070{bottom:628.586875pt;}
.yc_c02070{bottom:637.227067pt;}
.ya_c02070{bottom:707.945339pt;}
.y9_c02070{bottom:779.945531pt;}
.y7_c02070{bottom:823.786427pt;}
.y3_c02070{bottom:839.786939pt;}
.y8_c02070{bottom:870.505979pt;}
.y6_c02070{bottom:899.946203pt;}
.y5_c02070{bottom:915.946715pt;}
.y2_c02070{bottom:945.386939pt;}
.y4_c02070{bottom:959.786555pt;}
.y1_c02070{bottom:975.787067pt;}
.ye_c02070{bottom:1008.747067pt;}
.h4_c02070{height:28.916250pt;}
.h1_c02070{height:37.063125pt;}
.h2_c02070{height:37.166250pt;}
.h6_c02070{height:42.285738pt;}
.h3_c02070{height:43.565610pt;}
.h5_c02070{height:48.581988pt;}
.h0_c02070{height:1122.666667pt;}
.w1_c02070{width:793.333333pt;}
.w0_c02070{width:793.626667pt;}
.x0_c02070{left:0.000000pt;}
.xd_c02070{left:104.000000pt;}
.x8_c02070{left:391.999872pt;}
.x4_c02070{left:396.160512pt;}
.xb_c02070{left:400.960000pt;}
.x7_c02070{left:404.799648pt;}
.x5_c02070{left:410.560128pt;}
.x1_c02070{left:411.840000pt;}
.xa_c02070{left:429.760320pt;}
.x9_c02070{left:437.439552pt;}
.x6_c02070{left:438.400512pt;}
.xc_c02070{left:450.560320pt;}
.x3_c02070{left:455.039904pt;}
.x2_c02070{left:468.159648pt;}
}





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

.ir_c02071:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02071{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02071;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02071{font-family:ff1_c02071;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02071;src:url('chunks/assets/font_f4db78fe2886d58d50c369dc.woff2')format("woff");}.ff2_c02071{font-family:ff2_c02071;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02071;src:url('chunks/assets/font_6d37b7d059c2c522bd0bf388.woff2')format("woff");}.ff3_c02071{font-family:ff3_c02071;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02071{vertical-align:0.000000px;}
.v2_c02071{vertical-align:1.439424px;}
.v3_c02071{vertical-align:5.759424px;}
.v1_c02071{vertical-align:7.199280px;}
.lsc_c02071{letter-spacing:-1.197504px;}
.ls15_c02071{letter-spacing:-0.769824px;}
.ls13_c02071{letter-spacing:-0.594000px;}
.ls9_c02071{letter-spacing:-0.574992px;}
.ls14_c02071{letter-spacing:-0.427680px;}
.lsf_c02071{letter-spacing:-0.275616px;}
.lsd_c02071{letter-spacing:-0.261360px;}
.ls6_c02071{letter-spacing:-0.242352px;}
.ls4_c02071{letter-spacing:-0.118800px;}
.ls12_c02071{letter-spacing:0.000000px;}
.ls1_c02071{letter-spacing:0.006048px;}
.ls5_c02071{letter-spacing:0.128304px;}
.lsb_c02071{letter-spacing:0.508464px;}
.ls11_c02071{letter-spacing:0.514080px;}
.lse_c02071{letter-spacing:0.536976px;}
.lsa_c02071{letter-spacing:0.579744px;}
.ls10_c02071{letter-spacing:0.594000px;}
.ls8_c02071{letter-spacing:0.598752px;}
.ls3_c02071{letter-spacing:0.613008px;}
.ls2_c02071{letter-spacing:0.689040px;}
.ls0_c02071{letter-spacing:0.717552px;}
.ls7_c02071{letter-spacing:0.722304px;}
.sc__c02071{text-shadow:none;}
.sc0_c02071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02071{-webkit-text-stroke:0px transparent;}
.sc0_c02071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02071{word-spacing:-15.126048px;}
.ws2_c02071{word-spacing:-12.602304px;}
.wsa_c02071{word-spacing:-12.474000px;}
.ws8_c02071{word-spacing:-12.459744px;}
.ws9_c02071{word-spacing:-12.416976px;}
.ws15_c02071{word-spacing:-2.159136px;}
.ws11_c02071{word-spacing:-1.078704px;}
.ws16_c02071{word-spacing:-1.050192px;}
.wse_c02071{word-spacing:-0.974160px;}
.ws10_c02071{word-spacing:-0.118800px;}
.ws13_c02071{word-spacing:-0.099792px;}
.ws14_c02071{word-spacing:-0.085536px;}
.wsf_c02071{word-spacing:0.000000px;}
.ws18_c02071{word-spacing:0.066528px;}
.ws17_c02071{word-spacing:0.232848px;}
.ws19_c02071{word-spacing:0.408672px;}
.ws12_c02071{word-spacing:0.836352px;}
.ws4_c02071{word-spacing:4.951584px;}
.wsb_c02071{word-spacing:33.300288px;}
.wsd_c02071{word-spacing:34.836912px;}
.ws6_c02071{word-spacing:36.742464px;}
.ws1_c02071{word-spacing:37.759392px;}
.ws0_c02071{word-spacing:38.020752px;}
.ws3_c02071{word-spacing:39.218256px;}
.ws5_c02071{word-spacing:39.902544px;}
.ws7_c02071{word-spacing:42.026688px;}
._0_c02071{margin-left:-1.948320px;}
._2_c02071{width:1.482624px;}
._4_c02071{width:2.770416px;}
._5_c02071{width:14.761440px;}
._1_c02071{width:50.252400px;}
._3_c02071{width:51.530688px;}
.fc0_c02071{color:rgb(0,0,0);}
.fs0_c02071{font-size:47.520000px;}
.fs1_c02071{font-size:60.480000px;}
.y0_c02071{bottom:0.000000px;}
.y19_c02071{bottom:146.998362px;}
.y1b_c02071{bottom:186.600234px;}
.y1a_c02071{bottom:196.320450px;}
.y18_c02071{bottom:275.878542px;}
.y17_c02071{bottom:356.878758px;}
.y15_c02071{bottom:406.559730px;}
.y11_c02071{bottom:424.560306px;}
.y16_c02071{bottom:458.759262px;}
.y14_c02071{bottom:491.879514px;}
.y13_c02071{bottom:509.880090px;}
.y10_c02071{bottom:543.000342px;}
.y12_c02071{bottom:559.559874px;}
.yf_c02071{bottom:577.560450px;}
.y1c_c02071{bottom:614.280450px;}
.yb_c02071{bottom:667.558326px;}
.yd_c02071{bottom:707.160234px;}
.yc_c02071{bottom:716.880450px;}
.ya_c02071{bottom:796.438506px;}
.y9_c02071{bottom:877.438722px;}
.y7_c02071{bottom:926.759730px;}
.y3_c02071{bottom:944.760306px;}
.y8_c02071{bottom:979.319226px;}
.y6_c02071{bottom:1012.439478px;}
.y5_c02071{bottom:1030.440054px;}
.y2_c02071{bottom:1063.560306px;}
.y4_c02071{bottom:1079.759874px;}
.y1_c02071{bottom:1097.760450px;}
.ye_c02071{bottom:1134.840450px;}
.h4_c02071{height:32.530781px;}
.h1_c02071{height:41.696016px;}
.h2_c02071{height:41.812031px;}
.h6_c02071{height:47.571455px;}
.h3_c02071{height:49.011311px;}
.h5_c02071{height:54.654737px;}
.h0_c02071{height:1263.000000px;}
.w1_c02071{width:892.500000px;}
.w0_c02071{width:892.830000px;}
.x0_c02071{left:0.000000px;}
.xd_c02071{left:117.000000px;}
.x8_c02071{left:440.999856px;}
.x4_c02071{left:445.680576px;}
.xb_c02071{left:451.080000px;}
.x7_c02071{left:455.399604px;}
.x5_c02071{left:461.880144px;}
.x1_c02071{left:463.320000px;}
.xa_c02071{left:483.480360px;}
.x9_c02071{left:492.119496px;}
.x6_c02071{left:493.200576px;}
.xc_c02071{left:506.880360px;}
.x3_c02071{left:511.919892px;}
.x2_c02071{left:526.679604px;}
@media print{
.v0_c02071{vertical-align:0.000000pt;}
.v2_c02071{vertical-align:1.279488pt;}
.v3_c02071{vertical-align:5.119488pt;}
.v1_c02071{vertical-align:6.399360pt;}
.lsc_c02071{letter-spacing:-1.064448pt;}
.ls15_c02071{letter-spacing:-0.684288pt;}
.ls13_c02071{letter-spacing:-0.528000pt;}
.ls9_c02071{letter-spacing:-0.511104pt;}
.ls14_c02071{letter-spacing:-0.380160pt;}
.lsf_c02071{letter-spacing:-0.244992pt;}
.lsd_c02071{letter-spacing:-0.232320pt;}
.ls6_c02071{letter-spacing:-0.215424pt;}
.ls4_c02071{letter-spacing:-0.105600pt;}
.ls12_c02071{letter-spacing:0.000000pt;}
.ls1_c02071{letter-spacing:0.005376pt;}
.ls5_c02071{letter-spacing:0.114048pt;}
.lsb_c02071{letter-spacing:0.451968pt;}
.ls11_c02071{letter-spacing:0.456960pt;}
.lse_c02071{letter-spacing:0.477312pt;}
.lsa_c02071{letter-spacing:0.515328pt;}
.ls10_c02071{letter-spacing:0.528000pt;}
.ls8_c02071{letter-spacing:0.532224pt;}
.ls3_c02071{letter-spacing:0.544896pt;}
.ls2_c02071{letter-spacing:0.612480pt;}
.ls0_c02071{letter-spacing:0.637824pt;}
.ls7_c02071{letter-spacing:0.642048pt;}
.wsc_c02071{word-spacing:-13.445376pt;}
.ws2_c02071{word-spacing:-11.202048pt;}
.wsa_c02071{word-spacing:-11.088000pt;}
.ws8_c02071{word-spacing:-11.075328pt;}
.ws9_c02071{word-spacing:-11.037312pt;}
.ws15_c02071{word-spacing:-1.919232pt;}
.ws11_c02071{word-spacing:-0.958848pt;}
.ws16_c02071{word-spacing:-0.933504pt;}
.wse_c02071{word-spacing:-0.865920pt;}
.ws10_c02071{word-spacing:-0.105600pt;}
.ws13_c02071{word-spacing:-0.088704pt;}
.ws14_c02071{word-spacing:-0.076032pt;}
.wsf_c02071{word-spacing:0.000000pt;}
.ws18_c02071{word-spacing:0.059136pt;}
.ws17_c02071{word-spacing:0.206976pt;}
.ws19_c02071{word-spacing:0.363264pt;}
.ws12_c02071{word-spacing:0.743424pt;}
.ws4_c02071{word-spacing:4.401408pt;}
.wsb_c02071{word-spacing:29.600256pt;}
.wsd_c02071{word-spacing:30.966144pt;}
.ws6_c02071{word-spacing:32.659968pt;}
.ws1_c02071{word-spacing:33.563904pt;}
.ws0_c02071{word-spacing:33.796224pt;}
.ws3_c02071{word-spacing:34.860672pt;}
.ws5_c02071{word-spacing:35.468928pt;}
.ws7_c02071{word-spacing:37.357056pt;}
._0_c02071{margin-left:-1.731840pt;}
._2_c02071{width:1.317888pt;}
._4_c02071{width:2.462592pt;}
._5_c02071{width:13.121280pt;}
._1_c02071{width:44.668800pt;}
._3_c02071{width:45.805056pt;}
.fs0_c02071{font-size:42.240000pt;}
.fs1_c02071{font-size:53.760000pt;}
.y0_c02071{bottom:0.000000pt;}
.y19_c02071{bottom:130.665211pt;}
.y1b_c02071{bottom:165.866875pt;}
.y1a_c02071{bottom:174.507067pt;}
.y18_c02071{bottom:245.225371pt;}
.y17_c02071{bottom:317.225563pt;}
.y15_c02071{bottom:361.386427pt;}
.y11_c02071{bottom:377.386939pt;}
.y16_c02071{bottom:407.786011pt;}
.y14_c02071{bottom:437.226235pt;}
.y13_c02071{bottom:453.226747pt;}
.y10_c02071{bottom:482.666971pt;}
.y12_c02071{bottom:497.386555pt;}
.yf_c02071{bottom:513.387067pt;}
.y1c_c02071{bottom:546.027067pt;}
.yb_c02071{bottom:593.385179pt;}
.yd_c02071{bottom:628.586875pt;}
.yc_c02071{bottom:637.227067pt;}
.ya_c02071{bottom:707.945339pt;}
.y9_c02071{bottom:779.945531pt;}
.y7_c02071{bottom:823.786427pt;}
.y3_c02071{bottom:839.786939pt;}
.y8_c02071{bottom:870.505979pt;}
.y6_c02071{bottom:899.946203pt;}
.y5_c02071{bottom:915.946715pt;}
.y2_c02071{bottom:945.386939pt;}
.y4_c02071{bottom:959.786555pt;}
.y1_c02071{bottom:975.787067pt;}
.ye_c02071{bottom:1008.747067pt;}
.h4_c02071{height:28.916250pt;}
.h1_c02071{height:37.063125pt;}
.h2_c02071{height:37.166250pt;}
.h6_c02071{height:42.285738pt;}
.h3_c02071{height:43.565610pt;}
.h5_c02071{height:48.581988pt;}
.h0_c02071{height:1122.666667pt;}
.w1_c02071{width:793.333333pt;}
.w0_c02071{width:793.626667pt;}
.x0_c02071{left:0.000000pt;}
.xd_c02071{left:104.000000pt;}
.x8_c02071{left:391.999872pt;}
.x4_c02071{left:396.160512pt;}
.xb_c02071{left:400.960000pt;}
.x7_c02071{left:404.799648pt;}
.x5_c02071{left:410.560128pt;}
.x1_c02071{left:411.840000pt;}
.xa_c02071{left:429.760320pt;}
.x9_c02071{left:437.439552pt;}
.x6_c02071{left:438.400512pt;}
.xc_c02071{left:450.560320pt;}
.x3_c02071{left:455.039904pt;}
.x2_c02071{left:468.159648pt;}
}





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

.ir_c02072:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02072{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02072;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02072{font-family:ff1_c02072;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02072;src:url('chunks/assets/font_d01495c1cfa95a5987571c51.woff2')format("woff");}.ff2_c02072{font-family:ff2_c02072;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02072;src:url('chunks/assets/font_d4485c35d5fc90aeb026e509.woff2')format("woff");}.ff3_c02072{font-family:ff3_c02072;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02072{vertical-align:0.000000px;}
.v2_c02072{vertical-align:1.439424px;}
.v3_c02072{vertical-align:5.759424px;}
.v1_c02072{vertical-align:7.199280px;}
.ls10_c02072{letter-spacing:-0.807840px;}
.lsd_c02072{letter-spacing:-0.793584px;}
.lsa_c02072{letter-spacing:-0.574992px;}
.ls16_c02072{letter-spacing:-0.427680px;}
.ls11_c02072{letter-spacing:-0.275616px;}
.ls15_c02072{letter-spacing:-0.270864px;}
.lse_c02072{letter-spacing:-0.261360px;}
.ls7_c02072{letter-spacing:-0.242352px;}
.ls5_c02072{letter-spacing:-0.166320px;}
.ls4_c02072{letter-spacing:-0.118800px;}
.ls14_c02072{letter-spacing:0.000000px;}
.ls2_c02072{letter-spacing:0.006048px;}
.ls6_c02072{letter-spacing:0.128304px;}
.lsc_c02072{letter-spacing:0.508464px;}
.ls13_c02072{letter-spacing:0.514080px;}
.lsf_c02072{letter-spacing:0.536976px;}
.lsb_c02072{letter-spacing:0.579744px;}
.ls12_c02072{letter-spacing:0.594000px;}
.ls9_c02072{letter-spacing:0.598752px;}
.ls3_c02072{letter-spacing:0.613008px;}
.ls0_c02072{letter-spacing:0.651024px;}
.ls1_c02072{letter-spacing:0.717552px;}
.ls8_c02072{letter-spacing:0.722304px;}
.sc__c02072{text-shadow:none;}
.sc0_c02072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02072{-webkit-text-stroke:0px transparent;}
.sc0_c02072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02072{word-spacing:-15.126048px;}
.ws3_c02072{word-spacing:-12.602304px;}
.wsc_c02072{word-spacing:-12.474000px;}
.ws7_c02072{word-spacing:-12.459744px;}
.ws11_c02072{word-spacing:-12.416976px;}
.ws1_c02072{word-spacing:-11.713680px;}
.ws5_c02072{word-spacing:-11.637648px;}
.ws1c_c02072{word-spacing:-2.159136px;}
.ws18_c02072{word-spacing:-1.083456px;}
.ws16_c02072{word-spacing:-1.078704px;}
.ws14_c02072{word-spacing:-1.012176px;}
.ws12_c02072{word-spacing:-0.974160px;}
.ws15_c02072{word-spacing:-0.118800px;}
.ws19_c02072{word-spacing:-0.099792px;}
.ws1d_c02072{word-spacing:-0.090288px;}
.ws1b_c02072{word-spacing:-0.085536px;}
.ws13_c02072{word-spacing:0.000000px;}
.ws1e_c02072{word-spacing:0.066528px;}
.ws17_c02072{word-spacing:0.432432px;}
.ws1a_c02072{word-spacing:0.446688px;}
.wsf_c02072{word-spacing:4.951584px;}
.wsb_c02072{word-spacing:6.391440px;}
.wsd_c02072{word-spacing:33.300288px;}
.wsa_c02072{word-spacing:34.836912px;}
.ws9_c02072{word-spacing:36.143712px;}
.ws10_c02072{word-spacing:36.742464px;}
.ws2_c02072{word-spacing:37.759392px;}
.ws0_c02072{word-spacing:38.020752px;}
.ws4_c02072{word-spacing:39.218256px;}
.ws6_c02072{word-spacing:39.902544px;}
.ws8_c02072{word-spacing:42.026688px;}
._0_c02072{margin-left:-1.948320px;}
._2_c02072{width:1.791504px;}
._5_c02072{width:16.114032px;}
._4_c02072{width:22.239360px;}
._6_c02072{width:23.641200px;}
._1_c02072{width:50.252400px;}
._3_c02072{width:52.086672px;}
.fc0_c02072{color:rgb(0,0,0);}
.fs0_c02072{font-size:47.520000px;}
.fs1_c02072{font-size:60.480000px;}
.y0_c02072{bottom:0.000000px;}
.y1a_c02072{bottom:146.998362px;}
.y1c_c02072{bottom:186.600234px;}
.y1b_c02072{bottom:196.320450px;}
.y19_c02072{bottom:275.878542px;}
.y18_c02072{bottom:356.878758px;}
.y16_c02072{bottom:406.559730px;}
.y12_c02072{bottom:424.560306px;}
.y17_c02072{bottom:458.759262px;}
.y15_c02072{bottom:491.879514px;}
.y14_c02072{bottom:509.880090px;}
.y11_c02072{bottom:543.000342px;}
.y13_c02072{bottom:559.559874px;}
.y10_c02072{bottom:577.560450px;}
.y1d_c02072{bottom:614.280450px;}
.yc_c02072{bottom:652.438650px;}
.yb_c02072{bottom:667.558326px;}
.ye_c02072{bottom:707.160234px;}
.yd_c02072{bottom:716.880450px;}
.ya_c02072{bottom:796.438506px;}
.y9_c02072{bottom:877.438722px;}
.y7_c02072{bottom:926.759730px;}
.y3_c02072{bottom:944.760306px;}
.y8_c02072{bottom:979.319226px;}
.y6_c02072{bottom:1012.439478px;}
.y5_c02072{bottom:1030.440054px;}
.y2_c02072{bottom:1063.560306px;}
.y4_c02072{bottom:1079.759874px;}
.y1_c02072{bottom:1097.760450px;}
.yf_c02072{bottom:1134.840450px;}
.h4_c02072{height:32.530781px;}
.h1_c02072{height:41.696016px;}
.h2_c02072{height:41.812031px;}
.h6_c02072{height:47.571455px;}
.h3_c02072{height:49.011311px;}
.h5_c02072{height:54.654737px;}
.h0_c02072{height:1263.000000px;}
.w1_c02072{width:892.500000px;}
.w0_c02072{width:892.830000px;}
.x0_c02072{left:0.000000px;}
.xe_c02072{left:117.000000px;}
.x8_c02072{left:440.998668px;}
.x4_c02072{left:445.680576px;}
.xc_c02072{left:451.080000px;}
.x7_c02072{left:455.398416px;}
.x5_c02072{left:461.880144px;}
.x1_c02072{left:463.320000px;}
.xa_c02072{left:483.479172px;}
.x9_c02072{left:492.118308px;}
.x6_c02072{left:493.199388px;}
.xd_c02072{left:506.880360px;}
.x3_c02072{left:511.919892px;}
.x2_c02072{left:526.679604px;}
.xb_c02072{left:569.878848px;}
@media print{
.v0_c02072{vertical-align:0.000000pt;}
.v2_c02072{vertical-align:1.279488pt;}
.v3_c02072{vertical-align:5.119488pt;}
.v1_c02072{vertical-align:6.399360pt;}
.ls10_c02072{letter-spacing:-0.718080pt;}
.lsd_c02072{letter-spacing:-0.705408pt;}
.lsa_c02072{letter-spacing:-0.511104pt;}
.ls16_c02072{letter-spacing:-0.380160pt;}
.ls11_c02072{letter-spacing:-0.244992pt;}
.ls15_c02072{letter-spacing:-0.240768pt;}
.lse_c02072{letter-spacing:-0.232320pt;}
.ls7_c02072{letter-spacing:-0.215424pt;}
.ls5_c02072{letter-spacing:-0.147840pt;}
.ls4_c02072{letter-spacing:-0.105600pt;}
.ls14_c02072{letter-spacing:0.000000pt;}
.ls2_c02072{letter-spacing:0.005376pt;}
.ls6_c02072{letter-spacing:0.114048pt;}
.lsc_c02072{letter-spacing:0.451968pt;}
.ls13_c02072{letter-spacing:0.456960pt;}
.lsf_c02072{letter-spacing:0.477312pt;}
.lsb_c02072{letter-spacing:0.515328pt;}
.ls12_c02072{letter-spacing:0.528000pt;}
.ls9_c02072{letter-spacing:0.532224pt;}
.ls3_c02072{letter-spacing:0.544896pt;}
.ls0_c02072{letter-spacing:0.578688pt;}
.ls1_c02072{letter-spacing:0.637824pt;}
.ls8_c02072{letter-spacing:0.642048pt;}
.wse_c02072{word-spacing:-13.445376pt;}
.ws3_c02072{word-spacing:-11.202048pt;}
.wsc_c02072{word-spacing:-11.088000pt;}
.ws7_c02072{word-spacing:-11.075328pt;}
.ws11_c02072{word-spacing:-11.037312pt;}
.ws1_c02072{word-spacing:-10.412160pt;}
.ws5_c02072{word-spacing:-10.344576pt;}
.ws1c_c02072{word-spacing:-1.919232pt;}
.ws18_c02072{word-spacing:-0.963072pt;}
.ws16_c02072{word-spacing:-0.958848pt;}
.ws14_c02072{word-spacing:-0.899712pt;}
.ws12_c02072{word-spacing:-0.865920pt;}
.ws15_c02072{word-spacing:-0.105600pt;}
.ws19_c02072{word-spacing:-0.088704pt;}
.ws1d_c02072{word-spacing:-0.080256pt;}
.ws1b_c02072{word-spacing:-0.076032pt;}
.ws13_c02072{word-spacing:0.000000pt;}
.ws1e_c02072{word-spacing:0.059136pt;}
.ws17_c02072{word-spacing:0.384384pt;}
.ws1a_c02072{word-spacing:0.397056pt;}
.wsf_c02072{word-spacing:4.401408pt;}
.wsb_c02072{word-spacing:5.681280pt;}
.wsd_c02072{word-spacing:29.600256pt;}
.wsa_c02072{word-spacing:30.966144pt;}
.ws9_c02072{word-spacing:32.127744pt;}
.ws10_c02072{word-spacing:32.659968pt;}
.ws2_c02072{word-spacing:33.563904pt;}
.ws0_c02072{word-spacing:33.796224pt;}
.ws4_c02072{word-spacing:34.860672pt;}
.ws6_c02072{word-spacing:35.468928pt;}
.ws8_c02072{word-spacing:37.357056pt;}
._0_c02072{margin-left:-1.731840pt;}
._2_c02072{width:1.592448pt;}
._5_c02072{width:14.323584pt;}
._4_c02072{width:19.768320pt;}
._6_c02072{width:21.014400pt;}
._1_c02072{width:44.668800pt;}
._3_c02072{width:46.299264pt;}
.fs0_c02072{font-size:42.240000pt;}
.fs1_c02072{font-size:53.760000pt;}
.y0_c02072{bottom:0.000000pt;}
.y1a_c02072{bottom:130.665211pt;}
.y1c_c02072{bottom:165.866875pt;}
.y1b_c02072{bottom:174.507067pt;}
.y19_c02072{bottom:245.225371pt;}
.y18_c02072{bottom:317.225563pt;}
.y16_c02072{bottom:361.386427pt;}
.y12_c02072{bottom:377.386939pt;}
.y17_c02072{bottom:407.786011pt;}
.y15_c02072{bottom:437.226235pt;}
.y14_c02072{bottom:453.226747pt;}
.y11_c02072{bottom:482.666971pt;}
.y13_c02072{bottom:497.386555pt;}
.y10_c02072{bottom:513.387067pt;}
.y1d_c02072{bottom:546.027067pt;}
.yc_c02072{bottom:579.945467pt;}
.yb_c02072{bottom:593.385179pt;}
.ye_c02072{bottom:628.586875pt;}
.yd_c02072{bottom:637.227067pt;}
.ya_c02072{bottom:707.945339pt;}
.y9_c02072{bottom:779.945531pt;}
.y7_c02072{bottom:823.786427pt;}
.y3_c02072{bottom:839.786939pt;}
.y8_c02072{bottom:870.505979pt;}
.y6_c02072{bottom:899.946203pt;}
.y5_c02072{bottom:915.946715pt;}
.y2_c02072{bottom:945.386939pt;}
.y4_c02072{bottom:959.786555pt;}
.y1_c02072{bottom:975.787067pt;}
.yf_c02072{bottom:1008.747067pt;}
.h4_c02072{height:28.916250pt;}
.h1_c02072{height:37.063125pt;}
.h2_c02072{height:37.166250pt;}
.h6_c02072{height:42.285738pt;}
.h3_c02072{height:43.565610pt;}
.h5_c02072{height:48.581988pt;}
.h0_c02072{height:1122.666667pt;}
.w1_c02072{width:793.333333pt;}
.w0_c02072{width:793.626667pt;}
.x0_c02072{left:0.000000pt;}
.xe_c02072{left:104.000000pt;}
.x8_c02072{left:391.998816pt;}
.x4_c02072{left:396.160512pt;}
.xc_c02072{left:400.960000pt;}
.x7_c02072{left:404.798592pt;}
.x5_c02072{left:410.560128pt;}
.x1_c02072{left:411.840000pt;}
.xa_c02072{left:429.759264pt;}
.x9_c02072{left:437.438496pt;}
.x6_c02072{left:438.399456pt;}
.xd_c02072{left:450.560320pt;}
.x3_c02072{left:455.039904pt;}
.x2_c02072{left:468.159648pt;}
.xb_c02072{left:506.558976pt;}
}





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

.ir_c02073:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02073{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02073;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02073{font-family:ff1_c02073;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02073;src:url('chunks/assets/font_2eb5c2587008006c5192715d.woff2')format("woff");}.ff2_c02073{font-family:ff2_c02073;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02073;src:url('chunks/assets/font_6d37b7d059c2c522bd0bf388.woff2')format("woff");}.ff3_c02073{font-family:ff3_c02073;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02073{vertical-align:0.000000px;}
.v2_c02073{vertical-align:1.439424px;}
.v3_c02073{vertical-align:5.759424px;}
.v1_c02073{vertical-align:7.199280px;}
.ls9_c02073{letter-spacing:-0.574992px;}
.lsc_c02073{letter-spacing:-0.427680px;}
.lsf_c02073{letter-spacing:-0.275616px;}
.lsd_c02073{letter-spacing:-0.261360px;}
.ls6_c02073{letter-spacing:-0.242352px;}
.ls4_c02073{letter-spacing:-0.118800px;}
.ls12_c02073{letter-spacing:0.000000px;}
.ls1_c02073{letter-spacing:0.006048px;}
.ls5_c02073{letter-spacing:0.128304px;}
.lsb_c02073{letter-spacing:0.508464px;}
.ls11_c02073{letter-spacing:0.514080px;}
.lse_c02073{letter-spacing:0.536976px;}
.lsa_c02073{letter-spacing:0.579744px;}
.ls10_c02073{letter-spacing:0.594000px;}
.ls8_c02073{letter-spacing:0.598752px;}
.ls3_c02073{letter-spacing:0.613008px;}
.ls2_c02073{letter-spacing:0.684288px;}
.ls0_c02073{letter-spacing:0.717552px;}
.ls7_c02073{letter-spacing:0.722304px;}
.sc__c02073{text-shadow:none;}
.sc0_c02073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02073{-webkit-text-stroke:0px transparent;}
.sc0_c02073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02073{word-spacing:-15.126048px;}
.ws2_c02073{word-spacing:-12.602304px;}
.wsa_c02073{word-spacing:-12.474000px;}
.ws8_c02073{word-spacing:-12.459744px;}
.ws9_c02073{word-spacing:-12.416976px;}
.ws14_c02073{word-spacing:-2.159136px;}
.ws10_c02073{word-spacing:-1.078704px;}
.ws15_c02073{word-spacing:-1.045440px;}
.wsd_c02073{word-spacing:-0.974160px;}
.wsf_c02073{word-spacing:-0.118800px;}
.ws12_c02073{word-spacing:-0.099792px;}
.ws13_c02073{word-spacing:-0.085536px;}
.wse_c02073{word-spacing:0.000000px;}
.ws11_c02073{word-spacing:0.066528px;}
.ws4_c02073{word-spacing:4.951584px;}
.wsb_c02073{word-spacing:33.300288px;}
.ws6_c02073{word-spacing:36.742464px;}
.ws1_c02073{word-spacing:37.759392px;}
.ws0_c02073{word-spacing:38.020752px;}
.ws3_c02073{word-spacing:39.218256px;}
.ws5_c02073{word-spacing:39.902544px;}
.ws7_c02073{word-spacing:42.026688px;}
._0_c02073{margin-left:-1.948320px;}
._2_c02073{width:1.482624px;}
._4_c02073{width:14.761440px;}
._1_c02073{width:50.252400px;}
._3_c02073{width:51.530688px;}
.fc0_c02073{color:rgb(0,0,0);}
.fs0_c02073{font-size:47.520000px;}
.fs1_c02073{font-size:60.480000px;}
.y0_c02073{bottom:0.000000px;}
.y19_c02073{bottom:146.998362px;}
.y1b_c02073{bottom:186.600234px;}
.y1a_c02073{bottom:196.320450px;}
.y18_c02073{bottom:275.878542px;}
.y17_c02073{bottom:356.878758px;}
.y15_c02073{bottom:406.559730px;}
.y11_c02073{bottom:424.560306px;}
.y16_c02073{bottom:458.759262px;}
.y14_c02073{bottom:491.879514px;}
.y13_c02073{bottom:509.880090px;}
.y10_c02073{bottom:543.000342px;}
.y12_c02073{bottom:559.559874px;}
.yf_c02073{bottom:577.560450px;}
.y1c_c02073{bottom:614.280450px;}
.yb_c02073{bottom:667.558326px;}
.yd_c02073{bottom:707.160234px;}
.yc_c02073{bottom:716.880450px;}
.ya_c02073{bottom:796.438506px;}
.y9_c02073{bottom:877.438722px;}
.y7_c02073{bottom:926.759730px;}
.y3_c02073{bottom:944.760306px;}
.y8_c02073{bottom:979.319226px;}
.y6_c02073{bottom:1012.439478px;}
.y5_c02073{bottom:1030.440054px;}
.y2_c02073{bottom:1063.560306px;}
.y4_c02073{bottom:1079.759874px;}
.y1_c02073{bottom:1097.760450px;}
.ye_c02073{bottom:1134.840450px;}
.h4_c02073{height:32.530781px;}
.h1_c02073{height:41.696016px;}
.h2_c02073{height:41.812031px;}
.h6_c02073{height:47.571455px;}
.h3_c02073{height:49.011311px;}
.h5_c02073{height:54.654737px;}
.h0_c02073{height:1263.000000px;}
.w1_c02073{width:892.500000px;}
.w0_c02073{width:892.830000px;}
.x0_c02073{left:0.000000px;}
.xd_c02073{left:117.000000px;}
.x8_c02073{left:440.999856px;}
.x4_c02073{left:445.680576px;}
.xb_c02073{left:451.080000px;}
.x7_c02073{left:455.399604px;}
.x5_c02073{left:461.880144px;}
.x1_c02073{left:463.320000px;}
.xa_c02073{left:483.480360px;}
.x9_c02073{left:492.119496px;}
.x6_c02073{left:493.200576px;}
.xc_c02073{left:506.880360px;}
.x3_c02073{left:511.919892px;}
.x2_c02073{left:526.679604px;}
@media print{
.v0_c02073{vertical-align:0.000000pt;}
.v2_c02073{vertical-align:1.279488pt;}
.v3_c02073{vertical-align:5.119488pt;}
.v1_c02073{vertical-align:6.399360pt;}
.ls9_c02073{letter-spacing:-0.511104pt;}
.lsc_c02073{letter-spacing:-0.380160pt;}
.lsf_c02073{letter-spacing:-0.244992pt;}
.lsd_c02073{letter-spacing:-0.232320pt;}
.ls6_c02073{letter-spacing:-0.215424pt;}
.ls4_c02073{letter-spacing:-0.105600pt;}
.ls12_c02073{letter-spacing:0.000000pt;}
.ls1_c02073{letter-spacing:0.005376pt;}
.ls5_c02073{letter-spacing:0.114048pt;}
.lsb_c02073{letter-spacing:0.451968pt;}
.ls11_c02073{letter-spacing:0.456960pt;}
.lse_c02073{letter-spacing:0.477312pt;}
.lsa_c02073{letter-spacing:0.515328pt;}
.ls10_c02073{letter-spacing:0.528000pt;}
.ls8_c02073{letter-spacing:0.532224pt;}
.ls3_c02073{letter-spacing:0.544896pt;}
.ls2_c02073{letter-spacing:0.608256pt;}
.ls0_c02073{letter-spacing:0.637824pt;}
.ls7_c02073{letter-spacing:0.642048pt;}
.wsc_c02073{word-spacing:-13.445376pt;}
.ws2_c02073{word-spacing:-11.202048pt;}
.wsa_c02073{word-spacing:-11.088000pt;}
.ws8_c02073{word-spacing:-11.075328pt;}
.ws9_c02073{word-spacing:-11.037312pt;}
.ws14_c02073{word-spacing:-1.919232pt;}
.ws10_c02073{word-spacing:-0.958848pt;}
.ws15_c02073{word-spacing:-0.929280pt;}
.wsd_c02073{word-spacing:-0.865920pt;}
.wsf_c02073{word-spacing:-0.105600pt;}
.ws12_c02073{word-spacing:-0.088704pt;}
.ws13_c02073{word-spacing:-0.076032pt;}
.wse_c02073{word-spacing:0.000000pt;}
.ws11_c02073{word-spacing:0.059136pt;}
.ws4_c02073{word-spacing:4.401408pt;}
.wsb_c02073{word-spacing:29.600256pt;}
.ws6_c02073{word-spacing:32.659968pt;}
.ws1_c02073{word-spacing:33.563904pt;}
.ws0_c02073{word-spacing:33.796224pt;}
.ws3_c02073{word-spacing:34.860672pt;}
.ws5_c02073{word-spacing:35.468928pt;}
.ws7_c02073{word-spacing:37.357056pt;}
._0_c02073{margin-left:-1.731840pt;}
._2_c02073{width:1.317888pt;}
._4_c02073{width:13.121280pt;}
._1_c02073{width:44.668800pt;}
._3_c02073{width:45.805056pt;}
.fs0_c02073{font-size:42.240000pt;}
.fs1_c02073{font-size:53.760000pt;}
.y0_c02073{bottom:0.000000pt;}
.y19_c02073{bottom:130.665211pt;}
.y1b_c02073{bottom:165.866875pt;}
.y1a_c02073{bottom:174.507067pt;}
.y18_c02073{bottom:245.225371pt;}
.y17_c02073{bottom:317.225563pt;}
.y15_c02073{bottom:361.386427pt;}
.y11_c02073{bottom:377.386939pt;}
.y16_c02073{bottom:407.786011pt;}
.y14_c02073{bottom:437.226235pt;}
.y13_c02073{bottom:453.226747pt;}
.y10_c02073{bottom:482.666971pt;}
.y12_c02073{bottom:497.386555pt;}
.yf_c02073{bottom:513.387067pt;}
.y1c_c02073{bottom:546.027067pt;}
.yb_c02073{bottom:593.385179pt;}
.yd_c02073{bottom:628.586875pt;}
.yc_c02073{bottom:637.227067pt;}
.ya_c02073{bottom:707.945339pt;}
.y9_c02073{bottom:779.945531pt;}
.y7_c02073{bottom:823.786427pt;}
.y3_c02073{bottom:839.786939pt;}
.y8_c02073{bottom:870.505979pt;}
.y6_c02073{bottom:899.946203pt;}
.y5_c02073{bottom:915.946715pt;}
.y2_c02073{bottom:945.386939pt;}
.y4_c02073{bottom:959.786555pt;}
.y1_c02073{bottom:975.787067pt;}
.ye_c02073{bottom:1008.747067pt;}
.h4_c02073{height:28.916250pt;}
.h1_c02073{height:37.063125pt;}
.h2_c02073{height:37.166250pt;}
.h6_c02073{height:42.285738pt;}
.h3_c02073{height:43.565610pt;}
.h5_c02073{height:48.581988pt;}
.h0_c02073{height:1122.666667pt;}
.w1_c02073{width:793.333333pt;}
.w0_c02073{width:793.626667pt;}
.x0_c02073{left:0.000000pt;}
.xd_c02073{left:104.000000pt;}
.x8_c02073{left:391.999872pt;}
.x4_c02073{left:396.160512pt;}
.xb_c02073{left:400.960000pt;}
.x7_c02073{left:404.799648pt;}
.x5_c02073{left:410.560128pt;}
.x1_c02073{left:411.840000pt;}
.xa_c02073{left:429.760320pt;}
.x9_c02073{left:437.439552pt;}
.x6_c02073{left:438.400512pt;}
.xc_c02073{left:450.560320pt;}
.x3_c02073{left:455.039904pt;}
.x2_c02073{left:468.159648pt;}
}





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

.ir_c02074:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02074{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02074;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02074{font-family:ff1_c02074;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02074;src:url('chunks/assets/font_db36ae382cb410538be65f08.woff2')format("woff");}.ff2_c02074{font-family:ff2_c02074;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02074;src:url('chunks/assets/font_f2c2f8e9858b7f43ef234516.woff2')format("woff");}.ff3_c02074{font-family:ff3_c02074;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02074{vertical-align:0.000000px;}
.v1_c02074{vertical-align:1.439424px;}
.v2_c02074{vertical-align:33.121440px;}
.ls17_c02074{letter-spacing:-0.722304px;}
.ls9_c02074{letter-spacing:-0.574992px;}
.ls13_c02074{letter-spacing:-0.323136px;}
.ls18_c02074{letter-spacing:-0.285120px;}
.lsf_c02074{letter-spacing:-0.275616px;}
.ls19_c02074{letter-spacing:-0.270864px;}
.ls8_c02074{letter-spacing:-0.266112px;}
.lsd_c02074{letter-spacing:-0.261360px;}
.ls6_c02074{letter-spacing:-0.242352px;}
.ls4_c02074{letter-spacing:-0.118800px;}
.ls12_c02074{letter-spacing:0.000000px;}
.ls1_c02074{letter-spacing:0.006048px;}
.ls15_c02074{letter-spacing:0.014256px;}
.lsc_c02074{letter-spacing:0.038016px;}
.ls5_c02074{letter-spacing:0.128304px;}
.lsb_c02074{letter-spacing:0.508464px;}
.ls11_c02074{letter-spacing:0.514080px;}
.lse_c02074{letter-spacing:0.536976px;}
.lsa_c02074{letter-spacing:0.579744px;}
.ls10_c02074{letter-spacing:0.594000px;}
.ls7_c02074{letter-spacing:0.598752px;}
.ls3_c02074{letter-spacing:0.613008px;}
.ls14_c02074{letter-spacing:0.670032px;}
.ls16_c02074{letter-spacing:0.679536px;}
.ls0_c02074{letter-spacing:0.717552px;}
.ls2_c02074{letter-spacing:0.722304px;}
.sc__c02074{text-shadow:none;}
.sc0_c02074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02074{-webkit-text-stroke:0px transparent;}
.sc0_c02074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02074{word-spacing:-15.126048px;}
.ws9_c02074{word-spacing:-12.474000px;}
.ws7_c02074{word-spacing:-12.459744px;}
.ws8_c02074{word-spacing:-12.416976px;}
.ws1a_c02074{word-spacing:-2.159136px;}
.wsc_c02074{word-spacing:-1.943568px;}
.ws1e_c02074{word-spacing:-1.083456px;}
.ws16_c02074{word-spacing:-1.078704px;}
.ws12_c02074{word-spacing:-0.974160px;}
.ws17_c02074{word-spacing:-0.399168px;}
.ws1c_c02074{word-spacing:-0.375408px;}
.ws14_c02074{word-spacing:-0.118800px;}
.ws18_c02074{word-spacing:-0.099792px;}
.ws15_c02074{word-spacing:-0.095040px;}
.ws1f_c02074{word-spacing:-0.090288px;}
.ws19_c02074{word-spacing:-0.085536px;}
.ws1d_c02074{word-spacing:-0.076032px;}
.ws1b_c02074{word-spacing:-0.038016px;}
.ws13_c02074{word-spacing:0.000000px;}
.ws10_c02074{word-spacing:0.717552px;}
.ws2_c02074{word-spacing:1.330560px;}
.wse_c02074{word-spacing:23.479632px;}
.wsf_c02074{word-spacing:26.283312px;}
.ws11_c02074{word-spacing:30.298752px;}
.wsa_c02074{word-spacing:33.300288px;}
.wsd_c02074{word-spacing:36.143712px;}
.ws5_c02074{word-spacing:36.742464px;}
.ws1_c02074{word-spacing:37.759392px;}
.ws0_c02074{word-spacing:38.020752px;}
.ws3_c02074{word-spacing:39.218256px;}
.ws4_c02074{word-spacing:39.902544px;}
.ws6_c02074{word-spacing:42.026688px;}
._0_c02074{margin-left:-1.948320px;}
._2_c02074{width:1.482624px;}
._4_c02074{width:4.999104px;}
._a_c02074{width:8.268480px;}
._8_c02074{width:11.759472px;}
._6_c02074{width:13.232592px;}
._5_c02074{width:14.761440px;}
._7_c02074{width:16.874352px;}
._9_c02074{width:38.348640px;}
._1_c02074{width:50.252400px;}
._3_c02074{width:51.530688px;}
.fc0_c02074{color:rgb(0,0,0);}
.fs0_c02074{font-size:47.520000px;}
.fs1_c02074{font-size:60.480000px;}
.y0_c02074{bottom:0.000000px;}
.y1a_c02074{bottom:50.760450px;}
.y1e_c02074{bottom:146.999730px;}
.y20_c02074{bottom:186.600234px;}
.y1f_c02074{bottom:196.320450px;}
.y1d_c02074{bottom:260.760234px;}
.y1c_c02074{bottom:275.879910px;}
.y19_c02074{bottom:291.000000px;}
.y1b_c02074{bottom:341.760450px;}
.y18_c02074{bottom:356.879946px;}
.y16_c02074{bottom:391.440054px;}
.y15_c02074{bottom:406.559730px;}
.y11_c02074{bottom:424.560306px;}
.y17_c02074{bottom:458.760450px;}
.y14_c02074{bottom:491.879514px;}
.y13_c02074{bottom:509.880090px;}
.y10_c02074{bottom:543.000342px;}
.y12_c02074{bottom:559.559874px;}
.yf_c02074{bottom:577.560450px;}
.y21_c02074{bottom:614.280450px;}
.yb_c02074{bottom:667.558326px;}
.yd_c02074{bottom:707.160234px;}
.yc_c02074{bottom:716.880450px;}
.ya_c02074{bottom:796.438506px;}
.y9_c02074{bottom:877.438722px;}
.y7_c02074{bottom:926.759730px;}
.y3_c02074{bottom:944.760306px;}
.y8_c02074{bottom:979.319226px;}
.y6_c02074{bottom:1012.439478px;}
.y5_c02074{bottom:1030.440054px;}
.y2_c02074{bottom:1063.560306px;}
.y4_c02074{bottom:1079.759874px;}
.y1_c02074{bottom:1097.760450px;}
.ye_c02074{bottom:1134.840450px;}
.h3_c02074{height:32.530781px;}
.h1_c02074{height:41.696016px;}
.h2_c02074{height:41.812031px;}
.h4_c02074{height:54.654737px;}
.h6_c02074{height:74.817456px;}
.h5_c02074{height:78.480000px;}
.h0_c02074{height:1263.000000px;}
.w2_c02074{width:215.280000px;}
.w1_c02074{width:892.500000px;}
.w0_c02074{width:892.830000px;}
.x0_c02074{left:0.000000px;}
.xd_c02074{left:117.000000px;}
.x8_c02074{left:440.999856px;}
.x4_c02074{left:445.680576px;}
.xb_c02074{left:451.080000px;}
.x7_c02074{left:455.399604px;}
.x5_c02074{left:461.880144px;}
.x1_c02074{left:463.320000px;}
.xa_c02074{left:483.480360px;}
.x9_c02074{left:492.119496px;}
.x6_c02074{left:493.200576px;}
.xc_c02074{left:506.880360px;}
.x3_c02074{left:511.919892px;}
.x2_c02074{left:526.679604px;}
.xe_c02074{left:569.880036px;}
.xf_c02074{left:723.600000px;}
@media print{
.v0_c02074{vertical-align:0.000000pt;}
.v1_c02074{vertical-align:1.279488pt;}
.v2_c02074{vertical-align:29.441280pt;}
.ls17_c02074{letter-spacing:-0.642048pt;}
.ls9_c02074{letter-spacing:-0.511104pt;}
.ls13_c02074{letter-spacing:-0.287232pt;}
.ls18_c02074{letter-spacing:-0.253440pt;}
.lsf_c02074{letter-spacing:-0.244992pt;}
.ls19_c02074{letter-spacing:-0.240768pt;}
.ls8_c02074{letter-spacing:-0.236544pt;}
.lsd_c02074{letter-spacing:-0.232320pt;}
.ls6_c02074{letter-spacing:-0.215424pt;}
.ls4_c02074{letter-spacing:-0.105600pt;}
.ls12_c02074{letter-spacing:0.000000pt;}
.ls1_c02074{letter-spacing:0.005376pt;}
.ls15_c02074{letter-spacing:0.012672pt;}
.lsc_c02074{letter-spacing:0.033792pt;}
.ls5_c02074{letter-spacing:0.114048pt;}
.lsb_c02074{letter-spacing:0.451968pt;}
.ls11_c02074{letter-spacing:0.456960pt;}
.lse_c02074{letter-spacing:0.477312pt;}
.lsa_c02074{letter-spacing:0.515328pt;}
.ls10_c02074{letter-spacing:0.528000pt;}
.ls7_c02074{letter-spacing:0.532224pt;}
.ls3_c02074{letter-spacing:0.544896pt;}
.ls14_c02074{letter-spacing:0.595584pt;}
.ls16_c02074{letter-spacing:0.604032pt;}
.ls0_c02074{letter-spacing:0.637824pt;}
.ls2_c02074{letter-spacing:0.642048pt;}
.wsb_c02074{word-spacing:-13.445376pt;}
.ws9_c02074{word-spacing:-11.088000pt;}
.ws7_c02074{word-spacing:-11.075328pt;}
.ws8_c02074{word-spacing:-11.037312pt;}
.ws1a_c02074{word-spacing:-1.919232pt;}
.wsc_c02074{word-spacing:-1.727616pt;}
.ws1e_c02074{word-spacing:-0.963072pt;}
.ws16_c02074{word-spacing:-0.958848pt;}
.ws12_c02074{word-spacing:-0.865920pt;}
.ws17_c02074{word-spacing:-0.354816pt;}
.ws1c_c02074{word-spacing:-0.333696pt;}
.ws14_c02074{word-spacing:-0.105600pt;}
.ws18_c02074{word-spacing:-0.088704pt;}
.ws15_c02074{word-spacing:-0.084480pt;}
.ws1f_c02074{word-spacing:-0.080256pt;}
.ws19_c02074{word-spacing:-0.076032pt;}
.ws1d_c02074{word-spacing:-0.067584pt;}
.ws1b_c02074{word-spacing:-0.033792pt;}
.ws13_c02074{word-spacing:0.000000pt;}
.ws10_c02074{word-spacing:0.637824pt;}
.ws2_c02074{word-spacing:1.182720pt;}
.wse_c02074{word-spacing:20.870784pt;}
.wsf_c02074{word-spacing:23.362944pt;}
.ws11_c02074{word-spacing:26.932224pt;}
.wsa_c02074{word-spacing:29.600256pt;}
.wsd_c02074{word-spacing:32.127744pt;}
.ws5_c02074{word-spacing:32.659968pt;}
.ws1_c02074{word-spacing:33.563904pt;}
.ws0_c02074{word-spacing:33.796224pt;}
.ws3_c02074{word-spacing:34.860672pt;}
.ws4_c02074{word-spacing:35.468928pt;}
.ws6_c02074{word-spacing:37.357056pt;}
._0_c02074{margin-left:-1.731840pt;}
._2_c02074{width:1.317888pt;}
._4_c02074{width:4.443648pt;}
._a_c02074{width:7.349760pt;}
._8_c02074{width:10.452864pt;}
._6_c02074{width:11.762304pt;}
._5_c02074{width:13.121280pt;}
._7_c02074{width:14.999424pt;}
._9_c02074{width:34.087680pt;}
._1_c02074{width:44.668800pt;}
._3_c02074{width:45.805056pt;}
.fs0_c02074{font-size:42.240000pt;}
.fs1_c02074{font-size:53.760000pt;}
.y0_c02074{bottom:0.000000pt;}
.y1a_c02074{bottom:45.120400pt;}
.y1e_c02074{bottom:130.666427pt;}
.y20_c02074{bottom:165.866875pt;}
.y1f_c02074{bottom:174.507067pt;}
.y1d_c02074{bottom:231.786875pt;}
.y1c_c02074{bottom:245.226587pt;}
.y19_c02074{bottom:258.666667pt;}
.y1b_c02074{bottom:303.787067pt;}
.y18_c02074{bottom:317.226619pt;}
.y16_c02074{bottom:347.946715pt;}
.y15_c02074{bottom:361.386427pt;}
.y11_c02074{bottom:377.386939pt;}
.y17_c02074{bottom:407.787067pt;}
.y14_c02074{bottom:437.226235pt;}
.y13_c02074{bottom:453.226747pt;}
.y10_c02074{bottom:482.666971pt;}
.y12_c02074{bottom:497.386555pt;}
.yf_c02074{bottom:513.387067pt;}
.y21_c02074{bottom:546.027067pt;}
.yb_c02074{bottom:593.385179pt;}
.yd_c02074{bottom:628.586875pt;}
.yc_c02074{bottom:637.227067pt;}
.ya_c02074{bottom:707.945339pt;}
.y9_c02074{bottom:779.945531pt;}
.y7_c02074{bottom:823.786427pt;}
.y3_c02074{bottom:839.786939pt;}
.y8_c02074{bottom:870.505979pt;}
.y6_c02074{bottom:899.946203pt;}
.y5_c02074{bottom:915.946715pt;}
.y2_c02074{bottom:945.386939pt;}
.y4_c02074{bottom:959.786555pt;}
.y1_c02074{bottom:975.787067pt;}
.ye_c02074{bottom:1008.747067pt;}
.h3_c02074{height:28.916250pt;}
.h1_c02074{height:37.063125pt;}
.h2_c02074{height:37.166250pt;}
.h4_c02074{height:48.581988pt;}
.h6_c02074{height:66.504405pt;}
.h5_c02074{height:69.760000pt;}
.h0_c02074{height:1122.666667pt;}
.w2_c02074{width:191.360000pt;}
.w1_c02074{width:793.333333pt;}
.w0_c02074{width:793.626667pt;}
.x0_c02074{left:0.000000pt;}
.xd_c02074{left:104.000000pt;}
.x8_c02074{left:391.999872pt;}
.x4_c02074{left:396.160512pt;}
.xb_c02074{left:400.960000pt;}
.x7_c02074{left:404.799648pt;}
.x5_c02074{left:410.560128pt;}
.x1_c02074{left:411.840000pt;}
.xa_c02074{left:429.760320pt;}
.x9_c02074{left:437.439552pt;}
.x6_c02074{left:438.400512pt;}
.xc_c02074{left:450.560320pt;}
.x3_c02074{left:455.039904pt;}
.x2_c02074{left:468.159648pt;}
.xe_c02074{left:506.560032pt;}
.xf_c02074{left:643.200000pt;}
}





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

.ir_c02075:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02075{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02075;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02075{font-family:ff1_c02075;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02075;src:url('chunks/assets/font_9c3e8be81fadf6e36d61716a.woff2')format("woff");}.ff2_c02075{font-family:ff2_c02075;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02075;src:url('chunks/assets/font_495d363452c6989347099e92.woff2')format("woff");}.ff3_c02075{font-family:ff3_c02075;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02075{vertical-align:0.000000px;}
.v2_c02075{vertical-align:1.439424px;}
.v1_c02075{vertical-align:33.121440px;}
.lsc_c02075{letter-spacing:-1.197504px;}
.ls14_c02075{letter-spacing:-0.722304px;}
.ls7_c02075{letter-spacing:-0.613008px;}
.ls9_c02075{letter-spacing:-0.574992px;}
.lsd_c02075{letter-spacing:-0.304128px;}
.ls10_c02075{letter-spacing:-0.275616px;}
.lse_c02075{letter-spacing:-0.261360px;}
.ls6_c02075{letter-spacing:-0.242352px;}
.ls3_c02075{letter-spacing:-0.118800px;}
.ls13_c02075{letter-spacing:0.000000px;}
.ls1_c02075{letter-spacing:0.006048px;}
.ls5_c02075{letter-spacing:0.128304px;}
.lsb_c02075{letter-spacing:0.508464px;}
.ls12_c02075{letter-spacing:0.514080px;}
.lsf_c02075{letter-spacing:0.536976px;}
.lsa_c02075{letter-spacing:0.579744px;}
.ls11_c02075{letter-spacing:0.594000px;}
.ls8_c02075{letter-spacing:0.598752px;}
.ls2_c02075{letter-spacing:0.613008px;}
.ls4_c02075{letter-spacing:0.717552px;}
.ls0_c02075{letter-spacing:0.722304px;}
.sc__c02075{text-shadow:none;}
.sc0_c02075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02075{-webkit-text-stroke:0px transparent;}
.sc0_c02075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02075{word-spacing:-15.126048px;}
.wsd_c02075{word-spacing:-12.474000px;}
.ws6_c02075{word-spacing:-12.459744px;}
.ws9_c02075{word-spacing:-12.416976px;}
.ws4_c02075{word-spacing:-11.637648px;}
.ws2_c02075{word-spacing:-11.266992px;}
.ws11_c02075{word-spacing:-1.083456px;}
.wse_c02075{word-spacing:-0.974160px;}
.ws16_c02075{word-spacing:-0.719712px;}
.ws10_c02075{word-spacing:-0.118800px;}
.ws14_c02075{word-spacing:-0.099792px;}
.ws15_c02075{word-spacing:-0.085536px;}
.ws13_c02075{word-spacing:-0.057024px;}
.wsf_c02075{word-spacing:0.000000px;}
.ws17_c02075{word-spacing:0.361152px;}
.ws12_c02075{word-spacing:0.836352px;}
.wsa_c02075{word-spacing:30.298752px;}
.wsb_c02075{word-spacing:33.300288px;}
.ws8_c02075{word-spacing:36.143712px;}
.ws1_c02075{word-spacing:37.759392px;}
.ws0_c02075{word-spacing:38.020752px;}
.ws3_c02075{word-spacing:39.218256px;}
.ws5_c02075{word-spacing:39.902544px;}
.ws7_c02075{word-spacing:42.026688px;}
._0_c02075{margin-left:-1.948320px;}
._2_c02075{width:1.482624px;}
._4_c02075{width:3.302640px;}
._5_c02075{width:13.068000px;}
._1_c02075{width:50.252400px;}
._3_c02075{width:51.530688px;}
.fc0_c02075{color:rgb(0,0,0);}
.fs0_c02075{font-size:47.520000px;}
.fs1_c02075{font-size:60.480000px;}
.y0_c02075{bottom:0.000000px;}
.y1a_c02075{bottom:146.998362px;}
.y1c_c02075{bottom:186.600234px;}
.y1b_c02075{bottom:196.320450px;}
.y19_c02075{bottom:275.878542px;}
.y18_c02075{bottom:356.878758px;}
.y16_c02075{bottom:406.559730px;}
.y12_c02075{bottom:424.560306px;}
.y17_c02075{bottom:458.759262px;}
.y15_c02075{bottom:491.879514px;}
.y14_c02075{bottom:509.880090px;}
.y11_c02075{bottom:543.000342px;}
.y13_c02075{bottom:559.559874px;}
.y10_c02075{bottom:577.560450px;}
.y1e_c02075{bottom:596.639946px;}
.y1d_c02075{bottom:614.280450px;}
.yb_c02075{bottom:667.558326px;}
.yd_c02075{bottom:707.160234px;}
.yc_c02075{bottom:716.880450px;}
.ya_c02075{bottom:796.438506px;}
.y9_c02075{bottom:877.438722px;}
.y7_c02075{bottom:926.759730px;}
.y3_c02075{bottom:944.760306px;}
.y8_c02075{bottom:979.319226px;}
.y6_c02075{bottom:1012.439478px;}
.y5_c02075{bottom:1030.440054px;}
.y2_c02075{bottom:1063.560306px;}
.y4_c02075{bottom:1079.759874px;}
.y1_c02075{bottom:1097.760450px;}
.yf_c02075{bottom:1117.199946px;}
.ye_c02075{bottom:1134.840450px;}
.h3_c02075{height:32.530781px;}
.h1_c02075{height:41.696016px;}
.h2_c02075{height:41.812031px;}
.h6_c02075{height:53.067656px;}
.h5_c02075{height:54.654737px;}
.h4_c02075{height:74.817456px;}
.h0_c02075{height:1263.000000px;}
.w1_c02075{width:892.500000px;}
.w0_c02075{width:892.830000px;}
.x0_c02075{left:0.000000px;}
.xd_c02075{left:117.000000px;}
.xe_c02075{left:162.000144px;}
.x8_c02075{left:440.999856px;}
.x4_c02075{left:445.680576px;}
.xb_c02075{left:451.080000px;}
.x7_c02075{left:455.399604px;}
.x5_c02075{left:461.880144px;}
.x1_c02075{left:463.320000px;}
.xa_c02075{left:483.481548px;}
.x9_c02075{left:492.119496px;}
.x6_c02075{left:493.200576px;}
.xc_c02075{left:506.880360px;}
.x3_c02075{left:511.919892px;}
.x2_c02075{left:526.679604px;}
@media print{
.v0_c02075{vertical-align:0.000000pt;}
.v2_c02075{vertical-align:1.279488pt;}
.v1_c02075{vertical-align:29.441280pt;}
.lsc_c02075{letter-spacing:-1.064448pt;}
.ls14_c02075{letter-spacing:-0.642048pt;}
.ls7_c02075{letter-spacing:-0.544896pt;}
.ls9_c02075{letter-spacing:-0.511104pt;}
.lsd_c02075{letter-spacing:-0.270336pt;}
.ls10_c02075{letter-spacing:-0.244992pt;}
.lse_c02075{letter-spacing:-0.232320pt;}
.ls6_c02075{letter-spacing:-0.215424pt;}
.ls3_c02075{letter-spacing:-0.105600pt;}
.ls13_c02075{letter-spacing:0.000000pt;}
.ls1_c02075{letter-spacing:0.005376pt;}
.ls5_c02075{letter-spacing:0.114048pt;}
.lsb_c02075{letter-spacing:0.451968pt;}
.ls12_c02075{letter-spacing:0.456960pt;}
.lsf_c02075{letter-spacing:0.477312pt;}
.lsa_c02075{letter-spacing:0.515328pt;}
.ls11_c02075{letter-spacing:0.528000pt;}
.ls8_c02075{letter-spacing:0.532224pt;}
.ls2_c02075{letter-spacing:0.544896pt;}
.ls4_c02075{letter-spacing:0.637824pt;}
.ls0_c02075{letter-spacing:0.642048pt;}
.wsc_c02075{word-spacing:-13.445376pt;}
.wsd_c02075{word-spacing:-11.088000pt;}
.ws6_c02075{word-spacing:-11.075328pt;}
.ws9_c02075{word-spacing:-11.037312pt;}
.ws4_c02075{word-spacing:-10.344576pt;}
.ws2_c02075{word-spacing:-10.015104pt;}
.ws11_c02075{word-spacing:-0.963072pt;}
.wse_c02075{word-spacing:-0.865920pt;}
.ws16_c02075{word-spacing:-0.639744pt;}
.ws10_c02075{word-spacing:-0.105600pt;}
.ws14_c02075{word-spacing:-0.088704pt;}
.ws15_c02075{word-spacing:-0.076032pt;}
.ws13_c02075{word-spacing:-0.050688pt;}
.wsf_c02075{word-spacing:0.000000pt;}
.ws17_c02075{word-spacing:0.321024pt;}
.ws12_c02075{word-spacing:0.743424pt;}
.wsa_c02075{word-spacing:26.932224pt;}
.wsb_c02075{word-spacing:29.600256pt;}
.ws8_c02075{word-spacing:32.127744pt;}
.ws1_c02075{word-spacing:33.563904pt;}
.ws0_c02075{word-spacing:33.796224pt;}
.ws3_c02075{word-spacing:34.860672pt;}
.ws5_c02075{word-spacing:35.468928pt;}
.ws7_c02075{word-spacing:37.357056pt;}
._0_c02075{margin-left:-1.731840pt;}
._2_c02075{width:1.317888pt;}
._4_c02075{width:2.935680pt;}
._5_c02075{width:11.616000pt;}
._1_c02075{width:44.668800pt;}
._3_c02075{width:45.805056pt;}
.fs0_c02075{font-size:42.240000pt;}
.fs1_c02075{font-size:53.760000pt;}
.y0_c02075{bottom:0.000000pt;}
.y1a_c02075{bottom:130.665211pt;}
.y1c_c02075{bottom:165.866875pt;}
.y1b_c02075{bottom:174.507067pt;}
.y19_c02075{bottom:245.225371pt;}
.y18_c02075{bottom:317.225563pt;}
.y16_c02075{bottom:361.386427pt;}
.y12_c02075{bottom:377.386939pt;}
.y17_c02075{bottom:407.786011pt;}
.y15_c02075{bottom:437.226235pt;}
.y14_c02075{bottom:453.226747pt;}
.y11_c02075{bottom:482.666971pt;}
.y13_c02075{bottom:497.386555pt;}
.y10_c02075{bottom:513.387067pt;}
.y1e_c02075{bottom:530.346619pt;}
.y1d_c02075{bottom:546.027067pt;}
.yb_c02075{bottom:593.385179pt;}
.yd_c02075{bottom:628.586875pt;}
.yc_c02075{bottom:637.227067pt;}
.ya_c02075{bottom:707.945339pt;}
.y9_c02075{bottom:779.945531pt;}
.y7_c02075{bottom:823.786427pt;}
.y3_c02075{bottom:839.786939pt;}
.y8_c02075{bottom:870.505979pt;}
.y6_c02075{bottom:899.946203pt;}
.y5_c02075{bottom:915.946715pt;}
.y2_c02075{bottom:945.386939pt;}
.y4_c02075{bottom:959.786555pt;}
.y1_c02075{bottom:975.787067pt;}
.yf_c02075{bottom:993.066619pt;}
.ye_c02075{bottom:1008.747067pt;}
.h3_c02075{height:28.916250pt;}
.h1_c02075{height:37.063125pt;}
.h2_c02075{height:37.166250pt;}
.h6_c02075{height:47.171250pt;}
.h5_c02075{height:48.581988pt;}
.h4_c02075{height:66.504405pt;}
.h0_c02075{height:1122.666667pt;}
.w1_c02075{width:793.333333pt;}
.w0_c02075{width:793.626667pt;}
.x0_c02075{left:0.000000pt;}
.xd_c02075{left:104.000000pt;}
.xe_c02075{left:144.000128pt;}
.x8_c02075{left:391.999872pt;}
.x4_c02075{left:396.160512pt;}
.xb_c02075{left:400.960000pt;}
.x7_c02075{left:404.799648pt;}
.x5_c02075{left:410.560128pt;}
.x1_c02075{left:411.840000pt;}
.xa_c02075{left:429.761376pt;}
.x9_c02075{left:437.439552pt;}
.x6_c02075{left:438.400512pt;}
.xc_c02075{left:450.560320pt;}
.x3_c02075{left:455.039904pt;}
.x2_c02075{left:468.159648pt;}
}





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

.ir_c02076:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02076{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02076;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02076{font-family:ff1_c02076;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02076;src:url('chunks/assets/font_77ae43a70945d2d2ed1a060a.woff2')format("woff");}.ff2_c02076{font-family:ff2_c02076;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02076;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02076{font-family:ff3_c02076;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02076{vertical-align:0.000000px;}
.v1_c02076{vertical-align:1.439424px;}
.ls13_c02076{letter-spacing:-0.774576px;}
.ls14_c02076{letter-spacing:-0.736560px;}
.ls8_c02076{letter-spacing:-0.613008px;}
.lsa_c02076{letter-spacing:-0.574992px;}
.lsf_c02076{letter-spacing:-0.275616px;}
.ls15_c02076{letter-spacing:-0.270864px;}
.lsd_c02076{letter-spacing:-0.261360px;}
.ls7_c02076{letter-spacing:-0.242352px;}
.ls5_c02076{letter-spacing:-0.118800px;}
.ls12_c02076{letter-spacing:0.000000px;}
.ls1_c02076{letter-spacing:0.006048px;}
.ls6_c02076{letter-spacing:0.128304px;}
.lsc_c02076{letter-spacing:0.508464px;}
.ls11_c02076{letter-spacing:0.514080px;}
.lse_c02076{letter-spacing:0.536976px;}
.lsb_c02076{letter-spacing:0.579744px;}
.ls10_c02076{letter-spacing:0.594000px;}
.ls9_c02076{letter-spacing:0.598752px;}
.ls3_c02076{letter-spacing:0.613008px;}
.ls2_c02076{letter-spacing:0.651024px;}
.ls0_c02076{letter-spacing:0.717552px;}
.ls4_c02076{letter-spacing:0.722304px;}
.sc__c02076{text-shadow:none;}
.sc0_c02076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02076{-webkit-text-stroke:0px transparent;}
.sc0_c02076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02076{word-spacing:-15.126048px;}
.wsa_c02076{word-spacing:-12.474000px;}
.ws8_c02076{word-spacing:-12.459744px;}
.ws9_c02076{word-spacing:-12.416976px;}
.wse_c02076{word-spacing:-12.388464px;}
.ws4_c02076{word-spacing:-11.637648px;}
.ws2_c02076{word-spacing:-11.266992px;}
.wsd_c02076{word-spacing:-11.105424px;}
.ws15_c02076{word-spacing:-1.083456px;}
.ws14_c02076{word-spacing:-1.078704px;}
.ws19_c02076{word-spacing:-1.012176px;}
.ws11_c02076{word-spacing:-0.974160px;}
.ws18_c02076{word-spacing:-0.719712px;}
.ws13_c02076{word-spacing:-0.118800px;}
.ws16_c02076{word-spacing:-0.099792px;}
.ws1a_c02076{word-spacing:-0.090288px;}
.ws17_c02076{word-spacing:-0.085536px;}
.ws12_c02076{word-spacing:0.000000px;}
.ws10_c02076{word-spacing:13.353120px;}
.wsb_c02076{word-spacing:33.300288px;}
.wsf_c02076{word-spacing:34.836912px;}
.ws6_c02076{word-spacing:36.742464px;}
.ws1_c02076{word-spacing:37.759392px;}
.ws0_c02076{word-spacing:38.020752px;}
.ws3_c02076{word-spacing:39.218256px;}
.ws5_c02076{word-spacing:39.902544px;}
.ws7_c02076{word-spacing:42.026688px;}
._0_c02076{margin-left:-1.948320px;}
._2_c02076{width:1.482624px;}
._4_c02076{width:3.302640px;}
._6_c02076{width:17.577648px;}
._5_c02076{width:18.950976px;}
._1_c02076{width:50.252400px;}
._3_c02076{width:51.530688px;}
.fc0_c02076{color:rgb(0,0,0);}
.fs0_c02076{font-size:47.520000px;}
.fs1_c02076{font-size:60.480000px;}
.y0_c02076{bottom:0.000000px;}
.y1b_c02076{bottom:131.878686px;}
.y1a_c02076{bottom:146.998362px;}
.y1d_c02076{bottom:186.600234px;}
.y1c_c02076{bottom:196.320450px;}
.y19_c02076{bottom:275.878542px;}
.y18_c02076{bottom:356.878758px;}
.y16_c02076{bottom:406.559730px;}
.y12_c02076{bottom:424.560306px;}
.y17_c02076{bottom:458.759262px;}
.y15_c02076{bottom:491.879514px;}
.y14_c02076{bottom:509.880090px;}
.y11_c02076{bottom:543.000342px;}
.y13_c02076{bottom:559.559874px;}
.y10_c02076{bottom:577.560450px;}
.y1f_c02076{bottom:596.639946px;}
.y1e_c02076{bottom:614.280450px;}
.yb_c02076{bottom:667.558326px;}
.yd_c02076{bottom:707.160234px;}
.yc_c02076{bottom:716.880450px;}
.ya_c02076{bottom:796.438506px;}
.y9_c02076{bottom:877.438722px;}
.y7_c02076{bottom:926.759730px;}
.y3_c02076{bottom:944.760306px;}
.y8_c02076{bottom:979.319226px;}
.y6_c02076{bottom:1012.439478px;}
.y5_c02076{bottom:1030.440054px;}
.y2_c02076{bottom:1063.560306px;}
.y4_c02076{bottom:1079.759874px;}
.y1_c02076{bottom:1097.760450px;}
.yf_c02076{bottom:1117.199946px;}
.ye_c02076{bottom:1134.840450px;}
.h3_c02076{height:32.530781px;}
.h1_c02076{height:41.696016px;}
.h2_c02076{height:41.812031px;}
.h5_c02076{height:53.067656px;}
.h4_c02076{height:54.654737px;}
.h0_c02076{height:1263.000000px;}
.w1_c02076{width:892.500000px;}
.w0_c02076{width:892.830000px;}
.x0_c02076{left:0.000000px;}
.xd_c02076{left:117.000000px;}
.xe_c02076{left:162.000144px;}
.x8_c02076{left:440.999856px;}
.x4_c02076{left:445.680576px;}
.xb_c02076{left:451.080000px;}
.x7_c02076{left:455.399604px;}
.x5_c02076{left:461.880144px;}
.x1_c02076{left:463.320000px;}
.xa_c02076{left:483.480360px;}
.x9_c02076{left:492.119496px;}
.x6_c02076{left:493.200576px;}
.xc_c02076{left:506.880360px;}
.x3_c02076{left:511.919892px;}
.x2_c02076{left:526.679604px;}
.xf_c02076{left:569.880036px;}
@media print{
.v0_c02076{vertical-align:0.000000pt;}
.v1_c02076{vertical-align:1.279488pt;}
.ls13_c02076{letter-spacing:-0.688512pt;}
.ls14_c02076{letter-spacing:-0.654720pt;}
.ls8_c02076{letter-spacing:-0.544896pt;}
.lsa_c02076{letter-spacing:-0.511104pt;}
.lsf_c02076{letter-spacing:-0.244992pt;}
.ls15_c02076{letter-spacing:-0.240768pt;}
.lsd_c02076{letter-spacing:-0.232320pt;}
.ls7_c02076{letter-spacing:-0.215424pt;}
.ls5_c02076{letter-spacing:-0.105600pt;}
.ls12_c02076{letter-spacing:0.000000pt;}
.ls1_c02076{letter-spacing:0.005376pt;}
.ls6_c02076{letter-spacing:0.114048pt;}
.lsc_c02076{letter-spacing:0.451968pt;}
.ls11_c02076{letter-spacing:0.456960pt;}
.lse_c02076{letter-spacing:0.477312pt;}
.lsb_c02076{letter-spacing:0.515328pt;}
.ls10_c02076{letter-spacing:0.528000pt;}
.ls9_c02076{letter-spacing:0.532224pt;}
.ls3_c02076{letter-spacing:0.544896pt;}
.ls2_c02076{letter-spacing:0.578688pt;}
.ls0_c02076{letter-spacing:0.637824pt;}
.ls4_c02076{letter-spacing:0.642048pt;}
.wsc_c02076{word-spacing:-13.445376pt;}
.wsa_c02076{word-spacing:-11.088000pt;}
.ws8_c02076{word-spacing:-11.075328pt;}
.ws9_c02076{word-spacing:-11.037312pt;}
.wse_c02076{word-spacing:-11.011968pt;}
.ws4_c02076{word-spacing:-10.344576pt;}
.ws2_c02076{word-spacing:-10.015104pt;}
.wsd_c02076{word-spacing:-9.871488pt;}
.ws15_c02076{word-spacing:-0.963072pt;}
.ws14_c02076{word-spacing:-0.958848pt;}
.ws19_c02076{word-spacing:-0.899712pt;}
.ws11_c02076{word-spacing:-0.865920pt;}
.ws18_c02076{word-spacing:-0.639744pt;}
.ws13_c02076{word-spacing:-0.105600pt;}
.ws16_c02076{word-spacing:-0.088704pt;}
.ws1a_c02076{word-spacing:-0.080256pt;}
.ws17_c02076{word-spacing:-0.076032pt;}
.ws12_c02076{word-spacing:0.000000pt;}
.ws10_c02076{word-spacing:11.869440pt;}
.wsb_c02076{word-spacing:29.600256pt;}
.wsf_c02076{word-spacing:30.966144pt;}
.ws6_c02076{word-spacing:32.659968pt;}
.ws1_c02076{word-spacing:33.563904pt;}
.ws0_c02076{word-spacing:33.796224pt;}
.ws3_c02076{word-spacing:34.860672pt;}
.ws5_c02076{word-spacing:35.468928pt;}
.ws7_c02076{word-spacing:37.357056pt;}
._0_c02076{margin-left:-1.731840pt;}
._2_c02076{width:1.317888pt;}
._4_c02076{width:2.935680pt;}
._6_c02076{width:15.624576pt;}
._5_c02076{width:16.845312pt;}
._1_c02076{width:44.668800pt;}
._3_c02076{width:45.805056pt;}
.fs0_c02076{font-size:42.240000pt;}
.fs1_c02076{font-size:53.760000pt;}
.y0_c02076{bottom:0.000000pt;}
.y1b_c02076{bottom:117.225499pt;}
.y1a_c02076{bottom:130.665211pt;}
.y1d_c02076{bottom:165.866875pt;}
.y1c_c02076{bottom:174.507067pt;}
.y19_c02076{bottom:245.225371pt;}
.y18_c02076{bottom:317.225563pt;}
.y16_c02076{bottom:361.386427pt;}
.y12_c02076{bottom:377.386939pt;}
.y17_c02076{bottom:407.786011pt;}
.y15_c02076{bottom:437.226235pt;}
.y14_c02076{bottom:453.226747pt;}
.y11_c02076{bottom:482.666971pt;}
.y13_c02076{bottom:497.386555pt;}
.y10_c02076{bottom:513.387067pt;}
.y1f_c02076{bottom:530.346619pt;}
.y1e_c02076{bottom:546.027067pt;}
.yb_c02076{bottom:593.385179pt;}
.yd_c02076{bottom:628.586875pt;}
.yc_c02076{bottom:637.227067pt;}
.ya_c02076{bottom:707.945339pt;}
.y9_c02076{bottom:779.945531pt;}
.y7_c02076{bottom:823.786427pt;}
.y3_c02076{bottom:839.786939pt;}
.y8_c02076{bottom:870.505979pt;}
.y6_c02076{bottom:899.946203pt;}
.y5_c02076{bottom:915.946715pt;}
.y2_c02076{bottom:945.386939pt;}
.y4_c02076{bottom:959.786555pt;}
.y1_c02076{bottom:975.787067pt;}
.yf_c02076{bottom:993.066619pt;}
.ye_c02076{bottom:1008.747067pt;}
.h3_c02076{height:28.916250pt;}
.h1_c02076{height:37.063125pt;}
.h2_c02076{height:37.166250pt;}
.h5_c02076{height:47.171250pt;}
.h4_c02076{height:48.581988pt;}
.h0_c02076{height:1122.666667pt;}
.w1_c02076{width:793.333333pt;}
.w0_c02076{width:793.626667pt;}
.x0_c02076{left:0.000000pt;}
.xd_c02076{left:104.000000pt;}
.xe_c02076{left:144.000128pt;}
.x8_c02076{left:391.999872pt;}
.x4_c02076{left:396.160512pt;}
.xb_c02076{left:400.960000pt;}
.x7_c02076{left:404.799648pt;}
.x5_c02076{left:410.560128pt;}
.x1_c02076{left:411.840000pt;}
.xa_c02076{left:429.760320pt;}
.x9_c02076{left:437.439552pt;}
.x6_c02076{left:438.400512pt;}
.xc_c02076{left:450.560320pt;}
.x3_c02076{left:455.039904pt;}
.x2_c02076{left:468.159648pt;}
.xf_c02076{left:506.560032pt;}
}





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

.ir_c02077:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02077{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02077;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02077{font-family:ff1_c02077;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02077;src:url('chunks/assets/font_8068ce99ec704356764a06c0.woff2')format("woff");}.ff2_c02077{font-family:ff2_c02077;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02077;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02077{font-family:ff3_c02077;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02077{vertical-align:0.000000px;}
.v1_c02077{vertical-align:1.439424px;}
.ls8_c02077{letter-spacing:-0.613008px;}
.lsa_c02077{letter-spacing:-0.574992px;}
.ls10_c02077{letter-spacing:-0.275616px;}
.lse_c02077{letter-spacing:-0.261360px;}
.ls7_c02077{letter-spacing:-0.242352px;}
.ls5_c02077{letter-spacing:-0.118800px;}
.ls13_c02077{letter-spacing:0.000000px;}
.ls2_c02077{letter-spacing:0.006048px;}
.ls6_c02077{letter-spacing:0.128304px;}
.lsd_c02077{letter-spacing:0.242352px;}
.lsc_c02077{letter-spacing:0.508464px;}
.ls12_c02077{letter-spacing:0.514080px;}
.lsf_c02077{letter-spacing:0.536976px;}
.lsb_c02077{letter-spacing:0.579744px;}
.ls11_c02077{letter-spacing:0.594000px;}
.ls9_c02077{letter-spacing:0.598752px;}
.ls3_c02077{letter-spacing:0.613008px;}
.ls0_c02077{letter-spacing:0.651024px;}
.ls1_c02077{letter-spacing:0.717552px;}
.ls4_c02077{letter-spacing:0.722304px;}
.sc__c02077{text-shadow:none;}
.sc0_c02077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02077{-webkit-text-stroke:0px transparent;}
.sc0_c02077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02077{word-spacing:-15.126048px;}
.wsa_c02077{word-spacing:-12.474000px;}
.ws8_c02077{word-spacing:-12.459744px;}
.ws9_c02077{word-spacing:-12.416976px;}
.ws4_c02077{word-spacing:-11.637648px;}
.ws2_c02077{word-spacing:-11.266992px;}
.ws11_c02077{word-spacing:-1.078704px;}
.wsf_c02077{word-spacing:-1.012176px;}
.wsd_c02077{word-spacing:-0.974160px;}
.ws14_c02077{word-spacing:-0.719712px;}
.ws10_c02077{word-spacing:-0.118800px;}
.ws12_c02077{word-spacing:-0.099792px;}
.ws13_c02077{word-spacing:-0.085536px;}
.wse_c02077{word-spacing:0.000000px;}
.wsb_c02077{word-spacing:33.300288px;}
.ws6_c02077{word-spacing:36.742464px;}
.ws1_c02077{word-spacing:37.759392px;}
.ws0_c02077{word-spacing:38.020752px;}
.ws3_c02077{word-spacing:39.218256px;}
.ws5_c02077{word-spacing:39.902544px;}
.ws7_c02077{word-spacing:42.026688px;}
._0_c02077{margin-left:-1.948320px;}
._2_c02077{width:1.482624px;}
._4_c02077{width:3.302640px;}
._1_c02077{width:50.252400px;}
._3_c02077{width:51.530688px;}
.fc0_c02077{color:rgb(0,0,0);}
.fs0_c02077{font-size:47.520000px;}
.fs1_c02077{font-size:60.480000px;}
.y0_c02077{bottom:0.000000px;}
.y1a_c02077{bottom:146.998362px;}
.y1c_c02077{bottom:186.600234px;}
.y1b_c02077{bottom:196.320450px;}
.y19_c02077{bottom:275.878542px;}
.y18_c02077{bottom:356.878758px;}
.y16_c02077{bottom:406.559730px;}
.y12_c02077{bottom:424.560306px;}
.y17_c02077{bottom:458.759262px;}
.y15_c02077{bottom:491.879514px;}
.y14_c02077{bottom:509.880090px;}
.y11_c02077{bottom:543.000342px;}
.y13_c02077{bottom:559.559874px;}
.y10_c02077{bottom:577.560450px;}
.y1e_c02077{bottom:596.639946px;}
.y1d_c02077{bottom:614.280450px;}
.yb_c02077{bottom:667.558326px;}
.yd_c02077{bottom:707.160234px;}
.yc_c02077{bottom:716.880450px;}
.ya_c02077{bottom:796.438506px;}
.y9_c02077{bottom:877.438722px;}
.y7_c02077{bottom:926.759730px;}
.y3_c02077{bottom:944.760306px;}
.y8_c02077{bottom:979.319226px;}
.y6_c02077{bottom:1012.439478px;}
.y5_c02077{bottom:1030.440054px;}
.y2_c02077{bottom:1063.560306px;}
.y4_c02077{bottom:1079.759874px;}
.y1_c02077{bottom:1097.760450px;}
.yf_c02077{bottom:1117.199946px;}
.ye_c02077{bottom:1134.840450px;}
.h3_c02077{height:32.530781px;}
.h1_c02077{height:41.696016px;}
.h2_c02077{height:41.812031px;}
.h5_c02077{height:53.067656px;}
.h4_c02077{height:54.654737px;}
.h0_c02077{height:1263.000000px;}
.w1_c02077{width:892.500000px;}
.w0_c02077{width:892.830000px;}
.x0_c02077{left:0.000000px;}
.xd_c02077{left:117.000000px;}
.xe_c02077{left:162.000144px;}
.x8_c02077{left:440.999856px;}
.x4_c02077{left:445.680576px;}
.xb_c02077{left:451.080000px;}
.x7_c02077{left:455.399604px;}
.x5_c02077{left:461.880144px;}
.x1_c02077{left:463.320000px;}
.xa_c02077{left:483.480360px;}
.x9_c02077{left:492.119496px;}
.x6_c02077{left:493.200576px;}
.xc_c02077{left:506.880360px;}
.x3_c02077{left:511.919892px;}
.x2_c02077{left:526.679604px;}
@media print{
.v0_c02077{vertical-align:0.000000pt;}
.v1_c02077{vertical-align:1.279488pt;}
.ls8_c02077{letter-spacing:-0.544896pt;}
.lsa_c02077{letter-spacing:-0.511104pt;}
.ls10_c02077{letter-spacing:-0.244992pt;}
.lse_c02077{letter-spacing:-0.232320pt;}
.ls7_c02077{letter-spacing:-0.215424pt;}
.ls5_c02077{letter-spacing:-0.105600pt;}
.ls13_c02077{letter-spacing:0.000000pt;}
.ls2_c02077{letter-spacing:0.005376pt;}
.ls6_c02077{letter-spacing:0.114048pt;}
.lsd_c02077{letter-spacing:0.215424pt;}
.lsc_c02077{letter-spacing:0.451968pt;}
.ls12_c02077{letter-spacing:0.456960pt;}
.lsf_c02077{letter-spacing:0.477312pt;}
.lsb_c02077{letter-spacing:0.515328pt;}
.ls11_c02077{letter-spacing:0.528000pt;}
.ls9_c02077{letter-spacing:0.532224pt;}
.ls3_c02077{letter-spacing:0.544896pt;}
.ls0_c02077{letter-spacing:0.578688pt;}
.ls1_c02077{letter-spacing:0.637824pt;}
.ls4_c02077{letter-spacing:0.642048pt;}
.wsc_c02077{word-spacing:-13.445376pt;}
.wsa_c02077{word-spacing:-11.088000pt;}
.ws8_c02077{word-spacing:-11.075328pt;}
.ws9_c02077{word-spacing:-11.037312pt;}
.ws4_c02077{word-spacing:-10.344576pt;}
.ws2_c02077{word-spacing:-10.015104pt;}
.ws11_c02077{word-spacing:-0.958848pt;}
.wsf_c02077{word-spacing:-0.899712pt;}
.wsd_c02077{word-spacing:-0.865920pt;}
.ws14_c02077{word-spacing:-0.639744pt;}
.ws10_c02077{word-spacing:-0.105600pt;}
.ws12_c02077{word-spacing:-0.088704pt;}
.ws13_c02077{word-spacing:-0.076032pt;}
.wse_c02077{word-spacing:0.000000pt;}
.wsb_c02077{word-spacing:29.600256pt;}
.ws6_c02077{word-spacing:32.659968pt;}
.ws1_c02077{word-spacing:33.563904pt;}
.ws0_c02077{word-spacing:33.796224pt;}
.ws3_c02077{word-spacing:34.860672pt;}
.ws5_c02077{word-spacing:35.468928pt;}
.ws7_c02077{word-spacing:37.357056pt;}
._0_c02077{margin-left:-1.731840pt;}
._2_c02077{width:1.317888pt;}
._4_c02077{width:2.935680pt;}
._1_c02077{width:44.668800pt;}
._3_c02077{width:45.805056pt;}
.fs0_c02077{font-size:42.240000pt;}
.fs1_c02077{font-size:53.760000pt;}
.y0_c02077{bottom:0.000000pt;}
.y1a_c02077{bottom:130.665211pt;}
.y1c_c02077{bottom:165.866875pt;}
.y1b_c02077{bottom:174.507067pt;}
.y19_c02077{bottom:245.225371pt;}
.y18_c02077{bottom:317.225563pt;}
.y16_c02077{bottom:361.386427pt;}
.y12_c02077{bottom:377.386939pt;}
.y17_c02077{bottom:407.786011pt;}
.y15_c02077{bottom:437.226235pt;}
.y14_c02077{bottom:453.226747pt;}
.y11_c02077{bottom:482.666971pt;}
.y13_c02077{bottom:497.386555pt;}
.y10_c02077{bottom:513.387067pt;}
.y1e_c02077{bottom:530.346619pt;}
.y1d_c02077{bottom:546.027067pt;}
.yb_c02077{bottom:593.385179pt;}
.yd_c02077{bottom:628.586875pt;}
.yc_c02077{bottom:637.227067pt;}
.ya_c02077{bottom:707.945339pt;}
.y9_c02077{bottom:779.945531pt;}
.y7_c02077{bottom:823.786427pt;}
.y3_c02077{bottom:839.786939pt;}
.y8_c02077{bottom:870.505979pt;}
.y6_c02077{bottom:899.946203pt;}
.y5_c02077{bottom:915.946715pt;}
.y2_c02077{bottom:945.386939pt;}
.y4_c02077{bottom:959.786555pt;}
.y1_c02077{bottom:975.787067pt;}
.yf_c02077{bottom:993.066619pt;}
.ye_c02077{bottom:1008.747067pt;}
.h3_c02077{height:28.916250pt;}
.h1_c02077{height:37.063125pt;}
.h2_c02077{height:37.166250pt;}
.h5_c02077{height:47.171250pt;}
.h4_c02077{height:48.581988pt;}
.h0_c02077{height:1122.666667pt;}
.w1_c02077{width:793.333333pt;}
.w0_c02077{width:793.626667pt;}
.x0_c02077{left:0.000000pt;}
.xd_c02077{left:104.000000pt;}
.xe_c02077{left:144.000128pt;}
.x8_c02077{left:391.999872pt;}
.x4_c02077{left:396.160512pt;}
.xb_c02077{left:400.960000pt;}
.x7_c02077{left:404.799648pt;}
.x5_c02077{left:410.560128pt;}
.x1_c02077{left:411.840000pt;}
.xa_c02077{left:429.760320pt;}
.x9_c02077{left:437.439552pt;}
.x6_c02077{left:438.400512pt;}
.xc_c02077{left:450.560320pt;}
.x3_c02077{left:455.039904pt;}
.x2_c02077{left:468.159648pt;}
}





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

.ir_c02078:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02078;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02078{font-family:ff1_c02078;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02078;src:url('chunks/assets/font_a261467e2c8c2db5ac801092.woff2')format("woff");}.ff2_c02078{font-family:ff2_c02078;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02078;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02078{font-family:ff3_c02078;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02078{vertical-align:0.000000px;}
.v1_c02078{vertical-align:1.439424px;}
.ls8_c02078{letter-spacing:-0.613008px;}
.lsa_c02078{letter-spacing:-0.574992px;}
.ls14_c02078{letter-spacing:-0.427680px;}
.ls10_c02078{letter-spacing:-0.275616px;}
.lse_c02078{letter-spacing:-0.261360px;}
.ls7_c02078{letter-spacing:-0.242352px;}
.ls5_c02078{letter-spacing:-0.118800px;}
.ls13_c02078{letter-spacing:0.000000px;}
.ls2_c02078{letter-spacing:0.006048px;}
.ls6_c02078{letter-spacing:0.128304px;}
.lsd_c02078{letter-spacing:0.242352px;}
.lsc_c02078{letter-spacing:0.508464px;}
.ls12_c02078{letter-spacing:0.514080px;}
.lsf_c02078{letter-spacing:0.536976px;}
.lsb_c02078{letter-spacing:0.579744px;}
.ls11_c02078{letter-spacing:0.594000px;}
.ls9_c02078{letter-spacing:0.598752px;}
.ls3_c02078{letter-spacing:0.613008px;}
.ls0_c02078{letter-spacing:0.651024px;}
.ls1_c02078{letter-spacing:0.717552px;}
.ls4_c02078{letter-spacing:0.722304px;}
.sc__c02078{text-shadow:none;}
.sc0_c02078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02078{-webkit-text-stroke:0px transparent;}
.sc0_c02078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02078{word-spacing:-15.126048px;}
.wsa_c02078{word-spacing:-12.474000px;}
.ws8_c02078{word-spacing:-12.459744px;}
.ws9_c02078{word-spacing:-12.416976px;}
.wsd_c02078{word-spacing:-12.122352px;}
.ws4_c02078{word-spacing:-11.637648px;}
.ws2_c02078{word-spacing:-11.266992px;}
.ws12_c02078{word-spacing:-1.078704px;}
.ws10_c02078{word-spacing:-1.012176px;}
.wse_c02078{word-spacing:-0.974160px;}
.ws15_c02078{word-spacing:-0.719712px;}
.ws11_c02078{word-spacing:-0.118800px;}
.ws13_c02078{word-spacing:-0.099792px;}
.ws14_c02078{word-spacing:-0.085536px;}
.wsf_c02078{word-spacing:0.000000px;}
.ws16_c02078{word-spacing:0.066528px;}
.wsb_c02078{word-spacing:33.300288px;}
.ws6_c02078{word-spacing:36.742464px;}
.ws1_c02078{word-spacing:37.759392px;}
.ws0_c02078{word-spacing:38.020752px;}
.ws3_c02078{word-spacing:39.218256px;}
.ws5_c02078{word-spacing:39.902544px;}
.ws7_c02078{word-spacing:42.026688px;}
._0_c02078{margin-left:-1.948320px;}
._2_c02078{width:1.482624px;}
._4_c02078{width:3.302640px;}
._1_c02078{width:50.252400px;}
._3_c02078{width:51.530688px;}
.fc0_c02078{color:rgb(0,0,0);}
.fs0_c02078{font-size:47.520000px;}
.fs1_c02078{font-size:60.480000px;}
.y0_c02078{bottom:0.000000px;}
.y1a_c02078{bottom:146.998362px;}
.y1c_c02078{bottom:186.600234px;}
.y1b_c02078{bottom:196.320450px;}
.y19_c02078{bottom:275.878542px;}
.y18_c02078{bottom:356.878758px;}
.y16_c02078{bottom:406.559730px;}
.y12_c02078{bottom:424.560306px;}
.y17_c02078{bottom:458.759262px;}
.y15_c02078{bottom:491.879514px;}
.y14_c02078{bottom:509.880090px;}
.y11_c02078{bottom:543.000342px;}
.y13_c02078{bottom:559.559874px;}
.y10_c02078{bottom:577.560450px;}
.y1e_c02078{bottom:596.639946px;}
.y1d_c02078{bottom:614.280450px;}
.yb_c02078{bottom:667.558326px;}
.yd_c02078{bottom:707.160234px;}
.yc_c02078{bottom:716.880450px;}
.ya_c02078{bottom:796.438506px;}
.y9_c02078{bottom:877.438722px;}
.y7_c02078{bottom:926.759730px;}
.y3_c02078{bottom:944.760306px;}
.y8_c02078{bottom:979.319226px;}
.y6_c02078{bottom:1012.439478px;}
.y5_c02078{bottom:1030.440054px;}
.y2_c02078{bottom:1063.560306px;}
.y4_c02078{bottom:1079.759874px;}
.y1_c02078{bottom:1097.760450px;}
.yf_c02078{bottom:1117.199946px;}
.ye_c02078{bottom:1134.840450px;}
.h3_c02078{height:32.530781px;}
.h1_c02078{height:41.696016px;}
.h2_c02078{height:41.812031px;}
.h5_c02078{height:53.067656px;}
.h4_c02078{height:54.654737px;}
.h0_c02078{height:1263.000000px;}
.w1_c02078{width:892.500000px;}
.w0_c02078{width:892.830000px;}
.x0_c02078{left:0.000000px;}
.xd_c02078{left:117.000000px;}
.xe_c02078{left:162.000144px;}
.x8_c02078{left:440.999856px;}
.x4_c02078{left:445.680576px;}
.xb_c02078{left:451.080000px;}
.x7_c02078{left:455.399604px;}
.x5_c02078{left:461.880144px;}
.x1_c02078{left:463.320000px;}
.xa_c02078{left:483.480360px;}
.x9_c02078{left:492.119496px;}
.x6_c02078{left:493.200576px;}
.xc_c02078{left:506.880360px;}
.x3_c02078{left:511.919892px;}
.x2_c02078{left:526.679604px;}
@media print{
.v0_c02078{vertical-align:0.000000pt;}
.v1_c02078{vertical-align:1.279488pt;}
.ls8_c02078{letter-spacing:-0.544896pt;}
.lsa_c02078{letter-spacing:-0.511104pt;}
.ls14_c02078{letter-spacing:-0.380160pt;}
.ls10_c02078{letter-spacing:-0.244992pt;}
.lse_c02078{letter-spacing:-0.232320pt;}
.ls7_c02078{letter-spacing:-0.215424pt;}
.ls5_c02078{letter-spacing:-0.105600pt;}
.ls13_c02078{letter-spacing:0.000000pt;}
.ls2_c02078{letter-spacing:0.005376pt;}
.ls6_c02078{letter-spacing:0.114048pt;}
.lsd_c02078{letter-spacing:0.215424pt;}
.lsc_c02078{letter-spacing:0.451968pt;}
.ls12_c02078{letter-spacing:0.456960pt;}
.lsf_c02078{letter-spacing:0.477312pt;}
.lsb_c02078{letter-spacing:0.515328pt;}
.ls11_c02078{letter-spacing:0.528000pt;}
.ls9_c02078{letter-spacing:0.532224pt;}
.ls3_c02078{letter-spacing:0.544896pt;}
.ls0_c02078{letter-spacing:0.578688pt;}
.ls1_c02078{letter-spacing:0.637824pt;}
.ls4_c02078{letter-spacing:0.642048pt;}
.wsc_c02078{word-spacing:-13.445376pt;}
.wsa_c02078{word-spacing:-11.088000pt;}
.ws8_c02078{word-spacing:-11.075328pt;}
.ws9_c02078{word-spacing:-11.037312pt;}
.wsd_c02078{word-spacing:-10.775424pt;}
.ws4_c02078{word-spacing:-10.344576pt;}
.ws2_c02078{word-spacing:-10.015104pt;}
.ws12_c02078{word-spacing:-0.958848pt;}
.ws10_c02078{word-spacing:-0.899712pt;}
.wse_c02078{word-spacing:-0.865920pt;}
.ws15_c02078{word-spacing:-0.639744pt;}
.ws11_c02078{word-spacing:-0.105600pt;}
.ws13_c02078{word-spacing:-0.088704pt;}
.ws14_c02078{word-spacing:-0.076032pt;}
.wsf_c02078{word-spacing:0.000000pt;}
.ws16_c02078{word-spacing:0.059136pt;}
.wsb_c02078{word-spacing:29.600256pt;}
.ws6_c02078{word-spacing:32.659968pt;}
.ws1_c02078{word-spacing:33.563904pt;}
.ws0_c02078{word-spacing:33.796224pt;}
.ws3_c02078{word-spacing:34.860672pt;}
.ws5_c02078{word-spacing:35.468928pt;}
.ws7_c02078{word-spacing:37.357056pt;}
._0_c02078{margin-left:-1.731840pt;}
._2_c02078{width:1.317888pt;}
._4_c02078{width:2.935680pt;}
._1_c02078{width:44.668800pt;}
._3_c02078{width:45.805056pt;}
.fs0_c02078{font-size:42.240000pt;}
.fs1_c02078{font-size:53.760000pt;}
.y0_c02078{bottom:0.000000pt;}
.y1a_c02078{bottom:130.665211pt;}
.y1c_c02078{bottom:165.866875pt;}
.y1b_c02078{bottom:174.507067pt;}
.y19_c02078{bottom:245.225371pt;}
.y18_c02078{bottom:317.225563pt;}
.y16_c02078{bottom:361.386427pt;}
.y12_c02078{bottom:377.386939pt;}
.y17_c02078{bottom:407.786011pt;}
.y15_c02078{bottom:437.226235pt;}
.y14_c02078{bottom:453.226747pt;}
.y11_c02078{bottom:482.666971pt;}
.y13_c02078{bottom:497.386555pt;}
.y10_c02078{bottom:513.387067pt;}
.y1e_c02078{bottom:530.346619pt;}
.y1d_c02078{bottom:546.027067pt;}
.yb_c02078{bottom:593.385179pt;}
.yd_c02078{bottom:628.586875pt;}
.yc_c02078{bottom:637.227067pt;}
.ya_c02078{bottom:707.945339pt;}
.y9_c02078{bottom:779.945531pt;}
.y7_c02078{bottom:823.786427pt;}
.y3_c02078{bottom:839.786939pt;}
.y8_c02078{bottom:870.505979pt;}
.y6_c02078{bottom:899.946203pt;}
.y5_c02078{bottom:915.946715pt;}
.y2_c02078{bottom:945.386939pt;}
.y4_c02078{bottom:959.786555pt;}
.y1_c02078{bottom:975.787067pt;}
.yf_c02078{bottom:993.066619pt;}
.ye_c02078{bottom:1008.747067pt;}
.h3_c02078{height:28.916250pt;}
.h1_c02078{height:37.063125pt;}
.h2_c02078{height:37.166250pt;}
.h5_c02078{height:47.171250pt;}
.h4_c02078{height:48.581988pt;}
.h0_c02078{height:1122.666667pt;}
.w1_c02078{width:793.333333pt;}
.w0_c02078{width:793.626667pt;}
.x0_c02078{left:0.000000pt;}
.xd_c02078{left:104.000000pt;}
.xe_c02078{left:144.000128pt;}
.x8_c02078{left:391.999872pt;}
.x4_c02078{left:396.160512pt;}
.xb_c02078{left:400.960000pt;}
.x7_c02078{left:404.799648pt;}
.x5_c02078{left:410.560128pt;}
.x1_c02078{left:411.840000pt;}
.xa_c02078{left:429.760320pt;}
.x9_c02078{left:437.439552pt;}
.x6_c02078{left:438.400512pt;}
.xc_c02078{left:450.560320pt;}
.x3_c02078{left:455.039904pt;}
.x2_c02078{left:468.159648pt;}
}





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

.ir_c02079:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02079{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02079;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02079{font-family:ff1_c02079;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02079;src:url('chunks/assets/font_6090c48e6798b70061d52110.woff2')format("woff");}.ff2_c02079{font-family:ff2_c02079;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02079;src:url('chunks/assets/font_44c6fb7224a96e17ba4e15dd.woff2')format("woff");}.ff3_c02079{font-family:ff3_c02079;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02079{vertical-align:0.000000px;}
.v1_c02079{vertical-align:1.439424px;}
.lsd_c02079{letter-spacing:-0.655776px;}
.lsa_c02079{letter-spacing:-0.574992px;}
.ls10_c02079{letter-spacing:-0.275616px;}
.lse_c02079{letter-spacing:-0.261360px;}
.ls7_c02079{letter-spacing:-0.242352px;}
.ls5_c02079{letter-spacing:-0.166320px;}
.ls4_c02079{letter-spacing:-0.118800px;}
.ls13_c02079{letter-spacing:0.000000px;}
.ls1_c02079{letter-spacing:0.006048px;}
.ls14_c02079{letter-spacing:0.028512px;}
.ls6_c02079{letter-spacing:0.128304px;}
.ls8_c02079{letter-spacing:0.242352px;}
.lsc_c02079{letter-spacing:0.508464px;}
.ls12_c02079{letter-spacing:0.514080px;}
.lsf_c02079{letter-spacing:0.536976px;}
.lsb_c02079{letter-spacing:0.579744px;}
.ls11_c02079{letter-spacing:0.594000px;}
.ls9_c02079{letter-spacing:0.598752px;}
.ls2_c02079{letter-spacing:0.613008px;}
.ls0_c02079{letter-spacing:0.717552px;}
.ls3_c02079{letter-spacing:0.722304px;}
.sc__c02079{text-shadow:none;}
.sc0_c02079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02079{-webkit-text-stroke:0px transparent;}
.sc0_c02079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02079{word-spacing:-15.126048px;}
.wsb_c02079{word-spacing:-12.474000px;}
.ws9_c02079{word-spacing:-12.459744px;}
.wsa_c02079{word-spacing:-12.416976px;}
.ws3_c02079{word-spacing:-12.122352px;}
.ws1_c02079{word-spacing:-11.713680px;}
.ws5_c02079{word-spacing:-11.637648px;}
.ws12_c02079{word-spacing:-1.078704px;}
.wsf_c02079{word-spacing:-0.974160px;}
.ws16_c02079{word-spacing:-0.719712px;}
.ws17_c02079{word-spacing:-0.389664px;}
.ws11_c02079{word-spacing:-0.118800px;}
.ws14_c02079{word-spacing:-0.099792px;}
.ws15_c02079{word-spacing:-0.085536px;}
.ws10_c02079{word-spacing:0.000000px;}
.ws13_c02079{word-spacing:0.294624px;}
.wse_c02079{word-spacing:4.951584px;}
.wsc_c02079{word-spacing:33.300288px;}
.ws7_c02079{word-spacing:36.742464px;}
.ws2_c02079{word-spacing:37.759392px;}
.ws0_c02079{word-spacing:38.020752px;}
.ws4_c02079{word-spacing:39.218256px;}
.ws6_c02079{word-spacing:39.902544px;}
.ws8_c02079{word-spacing:42.026688px;}
._0_c02079{margin-left:-1.948320px;}
._2_c02079{width:1.791504px;}
._4_c02079{width:3.307392px;}
._1_c02079{width:50.252400px;}
._3_c02079{width:52.086672px;}
.fc0_c02079{color:rgb(0,0,0);}
.fs0_c02079{font-size:47.520000px;}
.fs1_c02079{font-size:60.480000px;}
.y0_c02079{bottom:0.000000px;}
.y1a_c02079{bottom:146.998362px;}
.y1c_c02079{bottom:186.600234px;}
.y1b_c02079{bottom:196.320450px;}
.y19_c02079{bottom:275.878542px;}
.y18_c02079{bottom:356.878758px;}
.y16_c02079{bottom:406.559730px;}
.y12_c02079{bottom:424.560306px;}
.y17_c02079{bottom:458.759262px;}
.y15_c02079{bottom:491.879514px;}
.y14_c02079{bottom:509.880090px;}
.y11_c02079{bottom:543.000342px;}
.y13_c02079{bottom:559.559874px;}
.y10_c02079{bottom:577.560450px;}
.y1e_c02079{bottom:596.639946px;}
.y1d_c02079{bottom:614.280450px;}
.yb_c02079{bottom:667.558326px;}
.yd_c02079{bottom:707.160234px;}
.yc_c02079{bottom:716.880450px;}
.ya_c02079{bottom:796.438506px;}
.y9_c02079{bottom:877.438722px;}
.y7_c02079{bottom:926.759730px;}
.y3_c02079{bottom:944.760306px;}
.y8_c02079{bottom:979.319226px;}
.y6_c02079{bottom:1012.439478px;}
.y5_c02079{bottom:1030.440054px;}
.y2_c02079{bottom:1063.560306px;}
.y4_c02079{bottom:1079.759874px;}
.y1_c02079{bottom:1097.760450px;}
.yf_c02079{bottom:1117.199946px;}
.ye_c02079{bottom:1134.840450px;}
.h3_c02079{height:32.530781px;}
.h1_c02079{height:41.696016px;}
.h2_c02079{height:41.812031px;}
.h5_c02079{height:53.067656px;}
.h4_c02079{height:54.654737px;}
.h0_c02079{height:1263.000000px;}
.w1_c02079{width:892.500000px;}
.w0_c02079{width:892.830000px;}
.x0_c02079{left:0.000000px;}
.xd_c02079{left:117.000000px;}
.xe_c02079{left:162.000144px;}
.x8_c02079{left:440.999856px;}
.x4_c02079{left:445.680576px;}
.xb_c02079{left:451.080000px;}
.x7_c02079{left:455.399604px;}
.x5_c02079{left:461.880144px;}
.x1_c02079{left:463.320000px;}
.xa_c02079{left:483.480360px;}
.x9_c02079{left:492.119496px;}
.x6_c02079{left:493.200576px;}
.xc_c02079{left:506.880360px;}
.x3_c02079{left:511.919892px;}
.x2_c02079{left:526.679604px;}
@media print{
.v0_c02079{vertical-align:0.000000pt;}
.v1_c02079{vertical-align:1.279488pt;}
.lsd_c02079{letter-spacing:-0.582912pt;}
.lsa_c02079{letter-spacing:-0.511104pt;}
.ls10_c02079{letter-spacing:-0.244992pt;}
.lse_c02079{letter-spacing:-0.232320pt;}
.ls7_c02079{letter-spacing:-0.215424pt;}
.ls5_c02079{letter-spacing:-0.147840pt;}
.ls4_c02079{letter-spacing:-0.105600pt;}
.ls13_c02079{letter-spacing:0.000000pt;}
.ls1_c02079{letter-spacing:0.005376pt;}
.ls14_c02079{letter-spacing:0.025344pt;}
.ls6_c02079{letter-spacing:0.114048pt;}
.ls8_c02079{letter-spacing:0.215424pt;}
.lsc_c02079{letter-spacing:0.451968pt;}
.ls12_c02079{letter-spacing:0.456960pt;}
.lsf_c02079{letter-spacing:0.477312pt;}
.lsb_c02079{letter-spacing:0.515328pt;}
.ls11_c02079{letter-spacing:0.528000pt;}
.ls9_c02079{letter-spacing:0.532224pt;}
.ls2_c02079{letter-spacing:0.544896pt;}
.ls0_c02079{letter-spacing:0.637824pt;}
.ls3_c02079{letter-spacing:0.642048pt;}
.wsd_c02079{word-spacing:-13.445376pt;}
.wsb_c02079{word-spacing:-11.088000pt;}
.ws9_c02079{word-spacing:-11.075328pt;}
.wsa_c02079{word-spacing:-11.037312pt;}
.ws3_c02079{word-spacing:-10.775424pt;}
.ws1_c02079{word-spacing:-10.412160pt;}
.ws5_c02079{word-spacing:-10.344576pt;}
.ws12_c02079{word-spacing:-0.958848pt;}
.wsf_c02079{word-spacing:-0.865920pt;}
.ws16_c02079{word-spacing:-0.639744pt;}
.ws17_c02079{word-spacing:-0.346368pt;}
.ws11_c02079{word-spacing:-0.105600pt;}
.ws14_c02079{word-spacing:-0.088704pt;}
.ws15_c02079{word-spacing:-0.076032pt;}
.ws10_c02079{word-spacing:0.000000pt;}
.ws13_c02079{word-spacing:0.261888pt;}
.wse_c02079{word-spacing:4.401408pt;}
.wsc_c02079{word-spacing:29.600256pt;}
.ws7_c02079{word-spacing:32.659968pt;}
.ws2_c02079{word-spacing:33.563904pt;}
.ws0_c02079{word-spacing:33.796224pt;}
.ws4_c02079{word-spacing:34.860672pt;}
.ws6_c02079{word-spacing:35.468928pt;}
.ws8_c02079{word-spacing:37.357056pt;}
._0_c02079{margin-left:-1.731840pt;}
._2_c02079{width:1.592448pt;}
._4_c02079{width:2.939904pt;}
._1_c02079{width:44.668800pt;}
._3_c02079{width:46.299264pt;}
.fs0_c02079{font-size:42.240000pt;}
.fs1_c02079{font-size:53.760000pt;}
.y0_c02079{bottom:0.000000pt;}
.y1a_c02079{bottom:130.665211pt;}
.y1c_c02079{bottom:165.866875pt;}
.y1b_c02079{bottom:174.507067pt;}
.y19_c02079{bottom:245.225371pt;}
.y18_c02079{bottom:317.225563pt;}
.y16_c02079{bottom:361.386427pt;}
.y12_c02079{bottom:377.386939pt;}
.y17_c02079{bottom:407.786011pt;}
.y15_c02079{bottom:437.226235pt;}
.y14_c02079{bottom:453.226747pt;}
.y11_c02079{bottom:482.666971pt;}
.y13_c02079{bottom:497.386555pt;}
.y10_c02079{bottom:513.387067pt;}
.y1e_c02079{bottom:530.346619pt;}
.y1d_c02079{bottom:546.027067pt;}
.yb_c02079{bottom:593.385179pt;}
.yd_c02079{bottom:628.586875pt;}
.yc_c02079{bottom:637.227067pt;}
.ya_c02079{bottom:707.945339pt;}
.y9_c02079{bottom:779.945531pt;}
.y7_c02079{bottom:823.786427pt;}
.y3_c02079{bottom:839.786939pt;}
.y8_c02079{bottom:870.505979pt;}
.y6_c02079{bottom:899.946203pt;}
.y5_c02079{bottom:915.946715pt;}
.y2_c02079{bottom:945.386939pt;}
.y4_c02079{bottom:959.786555pt;}
.y1_c02079{bottom:975.787067pt;}
.yf_c02079{bottom:993.066619pt;}
.ye_c02079{bottom:1008.747067pt;}
.h3_c02079{height:28.916250pt;}
.h1_c02079{height:37.063125pt;}
.h2_c02079{height:37.166250pt;}
.h5_c02079{height:47.171250pt;}
.h4_c02079{height:48.581988pt;}
.h0_c02079{height:1122.666667pt;}
.w1_c02079{width:793.333333pt;}
.w0_c02079{width:793.626667pt;}
.x0_c02079{left:0.000000pt;}
.xd_c02079{left:104.000000pt;}
.xe_c02079{left:144.000128pt;}
.x8_c02079{left:391.999872pt;}
.x4_c02079{left:396.160512pt;}
.xb_c02079{left:400.960000pt;}
.x7_c02079{left:404.799648pt;}
.x5_c02079{left:410.560128pt;}
.x1_c02079{left:411.840000pt;}
.xa_c02079{left:429.760320pt;}
.x9_c02079{left:437.439552pt;}
.x6_c02079{left:438.400512pt;}
.xc_c02079{left:450.560320pt;}
.x3_c02079{left:455.039904pt;}
.x2_c02079{left:468.159648pt;}
}





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

.ir_c02080:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02080{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02080;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02080{font-family:ff1_c02080;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02080;src:url('chunks/assets/font_31c858664e41b1ff1b31938e.woff2')format("woff");}.ff2_c02080{font-family:ff2_c02080;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02080;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02080{font-family:ff3_c02080;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02080{vertical-align:0.000000px;}
.v1_c02080{vertical-align:1.439424px;}
.lsc_c02080{letter-spacing:-1.197504px;}
.ls9_c02080{letter-spacing:-0.574992px;}
.lsf_c02080{letter-spacing:-0.275616px;}
.lsd_c02080{letter-spacing:-0.261360px;}
.ls6_c02080{letter-spacing:-0.242352px;}
.ls4_c02080{letter-spacing:-0.118800px;}
.ls12_c02080{letter-spacing:0.000000px;}
.ls1_c02080{letter-spacing:0.006048px;}
.ls5_c02080{letter-spacing:0.128304px;}
.ls7_c02080{letter-spacing:0.242352px;}
.lsb_c02080{letter-spacing:0.508464px;}
.ls11_c02080{letter-spacing:0.514080px;}
.lse_c02080{letter-spacing:0.536976px;}
.lsa_c02080{letter-spacing:0.579744px;}
.ls10_c02080{letter-spacing:0.594000px;}
.ls8_c02080{letter-spacing:0.598752px;}
.ls2_c02080{letter-spacing:0.613008px;}
.ls0_c02080{letter-spacing:0.717552px;}
.ls3_c02080{letter-spacing:0.722304px;}
.sc__c02080{text-shadow:none;}
.sc0_c02080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02080{-webkit-text-stroke:0px transparent;}
.sc0_c02080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02080{word-spacing:-15.126048px;}
.wsa_c02080{word-spacing:-12.474000px;}
.ws8_c02080{word-spacing:-12.459744px;}
.ws9_c02080{word-spacing:-12.416976px;}
.ws2_c02080{word-spacing:-12.122352px;}
.ws10_c02080{word-spacing:-1.078704px;}
.wsd_c02080{word-spacing:-0.974160px;}
.ws14_c02080{word-spacing:-0.719712px;}
.wsf_c02080{word-spacing:-0.118800px;}
.ws12_c02080{word-spacing:-0.099792px;}
.ws13_c02080{word-spacing:-0.085536px;}
.wse_c02080{word-spacing:0.000000px;}
.ws11_c02080{word-spacing:0.836352px;}
.ws4_c02080{word-spacing:4.951584px;}
.wsb_c02080{word-spacing:33.300288px;}
.ws6_c02080{word-spacing:36.742464px;}
.ws1_c02080{word-spacing:37.759392px;}
.ws0_c02080{word-spacing:38.020752px;}
.ws3_c02080{word-spacing:39.218256px;}
.ws5_c02080{word-spacing:39.902544px;}
.ws7_c02080{word-spacing:42.026688px;}
._0_c02080{margin-left:-1.948320px;}
._2_c02080{width:1.482624px;}
._4_c02080{width:2.770416px;}
._1_c02080{width:50.252400px;}
._3_c02080{width:51.530688px;}
.fc0_c02080{color:rgb(0,0,0);}
.fs0_c02080{font-size:47.520000px;}
.fs1_c02080{font-size:60.480000px;}
.y0_c02080{bottom:0.000000px;}
.y1a_c02080{bottom:146.998362px;}
.y1c_c02080{bottom:186.600234px;}
.y1b_c02080{bottom:196.320450px;}
.y19_c02080{bottom:275.878542px;}
.y18_c02080{bottom:356.878758px;}
.y16_c02080{bottom:406.559730px;}
.y12_c02080{bottom:424.560306px;}
.y17_c02080{bottom:458.759262px;}
.y15_c02080{bottom:491.879514px;}
.y14_c02080{bottom:509.880090px;}
.y11_c02080{bottom:543.000342px;}
.y13_c02080{bottom:559.559874px;}
.y10_c02080{bottom:577.560450px;}
.y1e_c02080{bottom:596.639946px;}
.y1d_c02080{bottom:614.280450px;}
.yb_c02080{bottom:667.558326px;}
.yd_c02080{bottom:707.160234px;}
.yc_c02080{bottom:716.880450px;}
.ya_c02080{bottom:796.438506px;}
.y9_c02080{bottom:877.438722px;}
.y7_c02080{bottom:926.759730px;}
.y3_c02080{bottom:944.760306px;}
.y8_c02080{bottom:979.319226px;}
.y6_c02080{bottom:1012.439478px;}
.y5_c02080{bottom:1030.440054px;}
.y2_c02080{bottom:1063.560306px;}
.y4_c02080{bottom:1079.759874px;}
.y1_c02080{bottom:1097.760450px;}
.yf_c02080{bottom:1117.199946px;}
.ye_c02080{bottom:1134.840450px;}
.h3_c02080{height:32.530781px;}
.h1_c02080{height:41.696016px;}
.h2_c02080{height:41.812031px;}
.h5_c02080{height:53.067656px;}
.h4_c02080{height:54.654737px;}
.h0_c02080{height:1263.000000px;}
.w1_c02080{width:892.500000px;}
.w0_c02080{width:892.830000px;}
.x0_c02080{left:0.000000px;}
.xd_c02080{left:117.000000px;}
.xe_c02080{left:162.000144px;}
.x8_c02080{left:440.999856px;}
.x4_c02080{left:445.680576px;}
.xb_c02080{left:451.080000px;}
.x7_c02080{left:455.399604px;}
.x5_c02080{left:461.880144px;}
.x1_c02080{left:463.320000px;}
.xa_c02080{left:483.480360px;}
.x9_c02080{left:492.119496px;}
.x6_c02080{left:493.200576px;}
.xc_c02080{left:506.880360px;}
.x3_c02080{left:511.919892px;}
.x2_c02080{left:526.679604px;}
@media print{
.v0_c02080{vertical-align:0.000000pt;}
.v1_c02080{vertical-align:1.279488pt;}
.lsc_c02080{letter-spacing:-1.064448pt;}
.ls9_c02080{letter-spacing:-0.511104pt;}
.lsf_c02080{letter-spacing:-0.244992pt;}
.lsd_c02080{letter-spacing:-0.232320pt;}
.ls6_c02080{letter-spacing:-0.215424pt;}
.ls4_c02080{letter-spacing:-0.105600pt;}
.ls12_c02080{letter-spacing:0.000000pt;}
.ls1_c02080{letter-spacing:0.005376pt;}
.ls5_c02080{letter-spacing:0.114048pt;}
.ls7_c02080{letter-spacing:0.215424pt;}
.lsb_c02080{letter-spacing:0.451968pt;}
.ls11_c02080{letter-spacing:0.456960pt;}
.lse_c02080{letter-spacing:0.477312pt;}
.lsa_c02080{letter-spacing:0.515328pt;}
.ls10_c02080{letter-spacing:0.528000pt;}
.ls8_c02080{letter-spacing:0.532224pt;}
.ls2_c02080{letter-spacing:0.544896pt;}
.ls0_c02080{letter-spacing:0.637824pt;}
.ls3_c02080{letter-spacing:0.642048pt;}
.wsc_c02080{word-spacing:-13.445376pt;}
.wsa_c02080{word-spacing:-11.088000pt;}
.ws8_c02080{word-spacing:-11.075328pt;}
.ws9_c02080{word-spacing:-11.037312pt;}
.ws2_c02080{word-spacing:-10.775424pt;}
.ws10_c02080{word-spacing:-0.958848pt;}
.wsd_c02080{word-spacing:-0.865920pt;}
.ws14_c02080{word-spacing:-0.639744pt;}
.wsf_c02080{word-spacing:-0.105600pt;}
.ws12_c02080{word-spacing:-0.088704pt;}
.ws13_c02080{word-spacing:-0.076032pt;}
.wse_c02080{word-spacing:0.000000pt;}
.ws11_c02080{word-spacing:0.743424pt;}
.ws4_c02080{word-spacing:4.401408pt;}
.wsb_c02080{word-spacing:29.600256pt;}
.ws6_c02080{word-spacing:32.659968pt;}
.ws1_c02080{word-spacing:33.563904pt;}
.ws0_c02080{word-spacing:33.796224pt;}
.ws3_c02080{word-spacing:34.860672pt;}
.ws5_c02080{word-spacing:35.468928pt;}
.ws7_c02080{word-spacing:37.357056pt;}
._0_c02080{margin-left:-1.731840pt;}
._2_c02080{width:1.317888pt;}
._4_c02080{width:2.462592pt;}
._1_c02080{width:44.668800pt;}
._3_c02080{width:45.805056pt;}
.fs0_c02080{font-size:42.240000pt;}
.fs1_c02080{font-size:53.760000pt;}
.y0_c02080{bottom:0.000000pt;}
.y1a_c02080{bottom:130.665211pt;}
.y1c_c02080{bottom:165.866875pt;}
.y1b_c02080{bottom:174.507067pt;}
.y19_c02080{bottom:245.225371pt;}
.y18_c02080{bottom:317.225563pt;}
.y16_c02080{bottom:361.386427pt;}
.y12_c02080{bottom:377.386939pt;}
.y17_c02080{bottom:407.786011pt;}
.y15_c02080{bottom:437.226235pt;}
.y14_c02080{bottom:453.226747pt;}
.y11_c02080{bottom:482.666971pt;}
.y13_c02080{bottom:497.386555pt;}
.y10_c02080{bottom:513.387067pt;}
.y1e_c02080{bottom:530.346619pt;}
.y1d_c02080{bottom:546.027067pt;}
.yb_c02080{bottom:593.385179pt;}
.yd_c02080{bottom:628.586875pt;}
.yc_c02080{bottom:637.227067pt;}
.ya_c02080{bottom:707.945339pt;}
.y9_c02080{bottom:779.945531pt;}
.y7_c02080{bottom:823.786427pt;}
.y3_c02080{bottom:839.786939pt;}
.y8_c02080{bottom:870.505979pt;}
.y6_c02080{bottom:899.946203pt;}
.y5_c02080{bottom:915.946715pt;}
.y2_c02080{bottom:945.386939pt;}
.y4_c02080{bottom:959.786555pt;}
.y1_c02080{bottom:975.787067pt;}
.yf_c02080{bottom:993.066619pt;}
.ye_c02080{bottom:1008.747067pt;}
.h3_c02080{height:28.916250pt;}
.h1_c02080{height:37.063125pt;}
.h2_c02080{height:37.166250pt;}
.h5_c02080{height:47.171250pt;}
.h4_c02080{height:48.581988pt;}
.h0_c02080{height:1122.666667pt;}
.w1_c02080{width:793.333333pt;}
.w0_c02080{width:793.626667pt;}
.x0_c02080{left:0.000000pt;}
.xd_c02080{left:104.000000pt;}
.xe_c02080{left:144.000128pt;}
.x8_c02080{left:391.999872pt;}
.x4_c02080{left:396.160512pt;}
.xb_c02080{left:400.960000pt;}
.x7_c02080{left:404.799648pt;}
.x5_c02080{left:410.560128pt;}
.x1_c02080{left:411.840000pt;}
.xa_c02080{left:429.760320pt;}
.x9_c02080{left:437.439552pt;}
.x6_c02080{left:438.400512pt;}
.xc_c02080{left:450.560320pt;}
.x3_c02080{left:455.039904pt;}
.x2_c02080{left:468.159648pt;}
}





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

.ir_c02081:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02081{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02081;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02081{font-family:ff1_c02081;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02081;src:url('chunks/assets/font_ff17d41afdce6f5ee0cf4187.woff2')format("woff");}.ff2_c02081{font-family:ff2_c02081;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02081;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02081{font-family:ff3_c02081;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02081{vertical-align:0.000000px;}
.v1_c02081{vertical-align:1.439424px;}
.lsc_c02081{letter-spacing:-1.197504px;}
.ls9_c02081{letter-spacing:-0.574992px;}
.lsf_c02081{letter-spacing:-0.275616px;}
.lsd_c02081{letter-spacing:-0.261360px;}
.ls6_c02081{letter-spacing:-0.242352px;}
.ls4_c02081{letter-spacing:-0.118800px;}
.ls12_c02081{letter-spacing:0.000000px;}
.ls1_c02081{letter-spacing:0.006048px;}
.ls5_c02081{letter-spacing:0.128304px;}
.ls7_c02081{letter-spacing:0.242352px;}
.lsb_c02081{letter-spacing:0.508464px;}
.ls11_c02081{letter-spacing:0.514080px;}
.lse_c02081{letter-spacing:0.536976px;}
.lsa_c02081{letter-spacing:0.579744px;}
.ls10_c02081{letter-spacing:0.594000px;}
.ls8_c02081{letter-spacing:0.598752px;}
.ls2_c02081{letter-spacing:0.613008px;}
.ls0_c02081{letter-spacing:0.717552px;}
.ls3_c02081{letter-spacing:0.722304px;}
.sc__c02081{text-shadow:none;}
.sc0_c02081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02081{-webkit-text-stroke:0px transparent;}
.sc0_c02081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02081{word-spacing:-15.126048px;}
.wsa_c02081{word-spacing:-12.474000px;}
.ws8_c02081{word-spacing:-12.459744px;}
.ws9_c02081{word-spacing:-12.416976px;}
.ws2_c02081{word-spacing:-12.122352px;}
.ws10_c02081{word-spacing:-1.078704px;}
.wsd_c02081{word-spacing:-0.974160px;}
.ws14_c02081{word-spacing:-0.719712px;}
.wsf_c02081{word-spacing:-0.118800px;}
.ws12_c02081{word-spacing:-0.099792px;}
.ws13_c02081{word-spacing:-0.085536px;}
.wse_c02081{word-spacing:0.000000px;}
.ws11_c02081{word-spacing:0.836352px;}
.ws4_c02081{word-spacing:4.951584px;}
.wsb_c02081{word-spacing:33.300288px;}
.ws6_c02081{word-spacing:36.742464px;}
.ws1_c02081{word-spacing:37.759392px;}
.ws0_c02081{word-spacing:38.020752px;}
.ws3_c02081{word-spacing:39.218256px;}
.ws5_c02081{word-spacing:39.902544px;}
.ws7_c02081{word-spacing:42.026688px;}
._0_c02081{margin-left:-1.948320px;}
._2_c02081{width:1.482624px;}
._4_c02081{width:2.770416px;}
._1_c02081{width:50.252400px;}
._3_c02081{width:51.530688px;}
.fc0_c02081{color:rgb(0,0,0);}
.fs0_c02081{font-size:47.520000px;}
.fs1_c02081{font-size:60.480000px;}
.y0_c02081{bottom:0.000000px;}
.y1a_c02081{bottom:146.998362px;}
.y1c_c02081{bottom:186.600234px;}
.y1b_c02081{bottom:196.320450px;}
.y19_c02081{bottom:275.878542px;}
.y18_c02081{bottom:356.878758px;}
.y16_c02081{bottom:406.559730px;}
.y12_c02081{bottom:424.560306px;}
.y17_c02081{bottom:458.759262px;}
.y15_c02081{bottom:491.879514px;}
.y14_c02081{bottom:509.880090px;}
.y11_c02081{bottom:543.000342px;}
.y13_c02081{bottom:559.559874px;}
.y10_c02081{bottom:577.560450px;}
.y1e_c02081{bottom:596.639946px;}
.y1d_c02081{bottom:614.280450px;}
.yb_c02081{bottom:667.558326px;}
.yd_c02081{bottom:707.160234px;}
.yc_c02081{bottom:716.880450px;}
.ya_c02081{bottom:796.438506px;}
.y9_c02081{bottom:877.438722px;}
.y7_c02081{bottom:926.759730px;}
.y3_c02081{bottom:944.760306px;}
.y8_c02081{bottom:979.319226px;}
.y6_c02081{bottom:1012.439478px;}
.y5_c02081{bottom:1030.440054px;}
.y2_c02081{bottom:1063.560306px;}
.y4_c02081{bottom:1079.759874px;}
.y1_c02081{bottom:1097.760450px;}
.yf_c02081{bottom:1117.199946px;}
.ye_c02081{bottom:1134.840450px;}
.h3_c02081{height:32.530781px;}
.h1_c02081{height:41.696016px;}
.h2_c02081{height:41.812031px;}
.h5_c02081{height:53.067656px;}
.h4_c02081{height:54.654737px;}
.h0_c02081{height:1263.000000px;}
.w1_c02081{width:892.500000px;}
.w0_c02081{width:892.830000px;}
.x0_c02081{left:0.000000px;}
.xd_c02081{left:117.000000px;}
.xe_c02081{left:162.000144px;}
.x8_c02081{left:440.999856px;}
.x4_c02081{left:445.680576px;}
.xb_c02081{left:451.080000px;}
.x7_c02081{left:455.399604px;}
.x5_c02081{left:461.880144px;}
.x1_c02081{left:463.320000px;}
.xa_c02081{left:483.480360px;}
.x9_c02081{left:492.119496px;}
.x6_c02081{left:493.200576px;}
.xc_c02081{left:506.880360px;}
.x3_c02081{left:511.919892px;}
.x2_c02081{left:526.679604px;}
@media print{
.v0_c02081{vertical-align:0.000000pt;}
.v1_c02081{vertical-align:1.279488pt;}
.lsc_c02081{letter-spacing:-1.064448pt;}
.ls9_c02081{letter-spacing:-0.511104pt;}
.lsf_c02081{letter-spacing:-0.244992pt;}
.lsd_c02081{letter-spacing:-0.232320pt;}
.ls6_c02081{letter-spacing:-0.215424pt;}
.ls4_c02081{letter-spacing:-0.105600pt;}
.ls12_c02081{letter-spacing:0.000000pt;}
.ls1_c02081{letter-spacing:0.005376pt;}
.ls5_c02081{letter-spacing:0.114048pt;}
.ls7_c02081{letter-spacing:0.215424pt;}
.lsb_c02081{letter-spacing:0.451968pt;}
.ls11_c02081{letter-spacing:0.456960pt;}
.lse_c02081{letter-spacing:0.477312pt;}
.lsa_c02081{letter-spacing:0.515328pt;}
.ls10_c02081{letter-spacing:0.528000pt;}
.ls8_c02081{letter-spacing:0.532224pt;}
.ls2_c02081{letter-spacing:0.544896pt;}
.ls0_c02081{letter-spacing:0.637824pt;}
.ls3_c02081{letter-spacing:0.642048pt;}
.wsc_c02081{word-spacing:-13.445376pt;}
.wsa_c02081{word-spacing:-11.088000pt;}
.ws8_c02081{word-spacing:-11.075328pt;}
.ws9_c02081{word-spacing:-11.037312pt;}
.ws2_c02081{word-spacing:-10.775424pt;}
.ws10_c02081{word-spacing:-0.958848pt;}
.wsd_c02081{word-spacing:-0.865920pt;}
.ws14_c02081{word-spacing:-0.639744pt;}
.wsf_c02081{word-spacing:-0.105600pt;}
.ws12_c02081{word-spacing:-0.088704pt;}
.ws13_c02081{word-spacing:-0.076032pt;}
.wse_c02081{word-spacing:0.000000pt;}
.ws11_c02081{word-spacing:0.743424pt;}
.ws4_c02081{word-spacing:4.401408pt;}
.wsb_c02081{word-spacing:29.600256pt;}
.ws6_c02081{word-spacing:32.659968pt;}
.ws1_c02081{word-spacing:33.563904pt;}
.ws0_c02081{word-spacing:33.796224pt;}
.ws3_c02081{word-spacing:34.860672pt;}
.ws5_c02081{word-spacing:35.468928pt;}
.ws7_c02081{word-spacing:37.357056pt;}
._0_c02081{margin-left:-1.731840pt;}
._2_c02081{width:1.317888pt;}
._4_c02081{width:2.462592pt;}
._1_c02081{width:44.668800pt;}
._3_c02081{width:45.805056pt;}
.fs0_c02081{font-size:42.240000pt;}
.fs1_c02081{font-size:53.760000pt;}
.y0_c02081{bottom:0.000000pt;}
.y1a_c02081{bottom:130.665211pt;}
.y1c_c02081{bottom:165.866875pt;}
.y1b_c02081{bottom:174.507067pt;}
.y19_c02081{bottom:245.225371pt;}
.y18_c02081{bottom:317.225563pt;}
.y16_c02081{bottom:361.386427pt;}
.y12_c02081{bottom:377.386939pt;}
.y17_c02081{bottom:407.786011pt;}
.y15_c02081{bottom:437.226235pt;}
.y14_c02081{bottom:453.226747pt;}
.y11_c02081{bottom:482.666971pt;}
.y13_c02081{bottom:497.386555pt;}
.y10_c02081{bottom:513.387067pt;}
.y1e_c02081{bottom:530.346619pt;}
.y1d_c02081{bottom:546.027067pt;}
.yb_c02081{bottom:593.385179pt;}
.yd_c02081{bottom:628.586875pt;}
.yc_c02081{bottom:637.227067pt;}
.ya_c02081{bottom:707.945339pt;}
.y9_c02081{bottom:779.945531pt;}
.y7_c02081{bottom:823.786427pt;}
.y3_c02081{bottom:839.786939pt;}
.y8_c02081{bottom:870.505979pt;}
.y6_c02081{bottom:899.946203pt;}
.y5_c02081{bottom:915.946715pt;}
.y2_c02081{bottom:945.386939pt;}
.y4_c02081{bottom:959.786555pt;}
.y1_c02081{bottom:975.787067pt;}
.yf_c02081{bottom:993.066619pt;}
.ye_c02081{bottom:1008.747067pt;}
.h3_c02081{height:28.916250pt;}
.h1_c02081{height:37.063125pt;}
.h2_c02081{height:37.166250pt;}
.h5_c02081{height:47.171250pt;}
.h4_c02081{height:48.581988pt;}
.h0_c02081{height:1122.666667pt;}
.w1_c02081{width:793.333333pt;}
.w0_c02081{width:793.626667pt;}
.x0_c02081{left:0.000000pt;}
.xd_c02081{left:104.000000pt;}
.xe_c02081{left:144.000128pt;}
.x8_c02081{left:391.999872pt;}
.x4_c02081{left:396.160512pt;}
.xb_c02081{left:400.960000pt;}
.x7_c02081{left:404.799648pt;}
.x5_c02081{left:410.560128pt;}
.x1_c02081{left:411.840000pt;}
.xa_c02081{left:429.760320pt;}
.x9_c02081{left:437.439552pt;}
.x6_c02081{left:438.400512pt;}
.xc_c02081{left:450.560320pt;}
.x3_c02081{left:455.039904pt;}
.x2_c02081{left:468.159648pt;}
}





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

.ir_c02082:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02082;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02082{font-family:ff1_c02082;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02082;src:url('chunks/assets/font_f1604f4c38bdeab3ffa7f8d0.woff2')format("woff");}.ff2_c02082{font-family:ff2_c02082;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02082;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02082{font-family:ff3_c02082;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02082{vertical-align:0.000000px;}
.v1_c02082{vertical-align:1.439424px;}
.ls8_c02082{letter-spacing:-0.613008px;}
.lsa_c02082{letter-spacing:-0.574992px;}
.ls10_c02082{letter-spacing:-0.275616px;}
.lse_c02082{letter-spacing:-0.261360px;}
.ls7_c02082{letter-spacing:-0.242352px;}
.ls5_c02082{letter-spacing:-0.118800px;}
.ls13_c02082{letter-spacing:0.000000px;}
.ls2_c02082{letter-spacing:0.006048px;}
.ls6_c02082{letter-spacing:0.128304px;}
.lsd_c02082{letter-spacing:0.242352px;}
.lsc_c02082{letter-spacing:0.508464px;}
.ls12_c02082{letter-spacing:0.514080px;}
.lsf_c02082{letter-spacing:0.536976px;}
.lsb_c02082{letter-spacing:0.579744px;}
.ls11_c02082{letter-spacing:0.594000px;}
.ls9_c02082{letter-spacing:0.598752px;}
.ls3_c02082{letter-spacing:0.613008px;}
.ls0_c02082{letter-spacing:0.651024px;}
.ls1_c02082{letter-spacing:0.717552px;}
.ls4_c02082{letter-spacing:0.722304px;}
.sc__c02082{text-shadow:none;}
.sc0_c02082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02082{-webkit-text-stroke:0px transparent;}
.sc0_c02082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02082{word-spacing:-15.126048px;}
.wsa_c02082{word-spacing:-12.474000px;}
.ws8_c02082{word-spacing:-12.459744px;}
.ws9_c02082{word-spacing:-12.416976px;}
.ws4_c02082{word-spacing:-11.637648px;}
.ws2_c02082{word-spacing:-11.266992px;}
.ws11_c02082{word-spacing:-1.078704px;}
.wsf_c02082{word-spacing:-1.012176px;}
.wsd_c02082{word-spacing:-0.974160px;}
.ws14_c02082{word-spacing:-0.719712px;}
.ws10_c02082{word-spacing:-0.118800px;}
.ws12_c02082{word-spacing:-0.099792px;}
.ws13_c02082{word-spacing:-0.085536px;}
.wse_c02082{word-spacing:0.000000px;}
.wsb_c02082{word-spacing:33.300288px;}
.ws6_c02082{word-spacing:36.742464px;}
.ws1_c02082{word-spacing:37.759392px;}
.ws0_c02082{word-spacing:38.020752px;}
.ws3_c02082{word-spacing:39.218256px;}
.ws5_c02082{word-spacing:39.902544px;}
.ws7_c02082{word-spacing:42.026688px;}
._0_c02082{margin-left:-1.948320px;}
._2_c02082{width:1.482624px;}
._4_c02082{width:3.302640px;}
._1_c02082{width:50.252400px;}
._3_c02082{width:51.530688px;}
.fc0_c02082{color:rgb(0,0,0);}
.fs0_c02082{font-size:47.520000px;}
.fs1_c02082{font-size:60.480000px;}
.y0_c02082{bottom:0.000000px;}
.y1a_c02082{bottom:146.998362px;}
.y1c_c02082{bottom:186.600234px;}
.y1b_c02082{bottom:196.320450px;}
.y19_c02082{bottom:275.878542px;}
.y18_c02082{bottom:356.878758px;}
.y16_c02082{bottom:406.559730px;}
.y12_c02082{bottom:424.560306px;}
.y17_c02082{bottom:458.759262px;}
.y15_c02082{bottom:491.879514px;}
.y14_c02082{bottom:509.880090px;}
.y11_c02082{bottom:543.000342px;}
.y13_c02082{bottom:559.559874px;}
.y10_c02082{bottom:577.560450px;}
.y1e_c02082{bottom:596.639946px;}
.y1d_c02082{bottom:614.280450px;}
.yb_c02082{bottom:667.558326px;}
.yd_c02082{bottom:707.160234px;}
.yc_c02082{bottom:716.880450px;}
.ya_c02082{bottom:796.438506px;}
.y9_c02082{bottom:877.438722px;}
.y7_c02082{bottom:926.759730px;}
.y3_c02082{bottom:944.760306px;}
.y8_c02082{bottom:979.319226px;}
.y6_c02082{bottom:1012.439478px;}
.y5_c02082{bottom:1030.440054px;}
.y2_c02082{bottom:1063.560306px;}
.y4_c02082{bottom:1079.759874px;}
.y1_c02082{bottom:1097.760450px;}
.yf_c02082{bottom:1117.199946px;}
.ye_c02082{bottom:1134.840450px;}
.h3_c02082{height:32.530781px;}
.h1_c02082{height:41.696016px;}
.h2_c02082{height:41.812031px;}
.h5_c02082{height:53.067656px;}
.h4_c02082{height:54.654737px;}
.h0_c02082{height:1263.000000px;}
.w1_c02082{width:892.500000px;}
.w0_c02082{width:892.830000px;}
.x0_c02082{left:0.000000px;}
.xd_c02082{left:117.000000px;}
.xe_c02082{left:162.000144px;}
.x8_c02082{left:440.999856px;}
.x4_c02082{left:445.680576px;}
.xb_c02082{left:451.080000px;}
.x7_c02082{left:455.399604px;}
.x5_c02082{left:461.880144px;}
.x1_c02082{left:463.320000px;}
.xa_c02082{left:483.480360px;}
.x9_c02082{left:492.119496px;}
.x6_c02082{left:493.200576px;}
.xc_c02082{left:506.880360px;}
.x3_c02082{left:511.919892px;}
.x2_c02082{left:526.679604px;}
@media print{
.v0_c02082{vertical-align:0.000000pt;}
.v1_c02082{vertical-align:1.279488pt;}
.ls8_c02082{letter-spacing:-0.544896pt;}
.lsa_c02082{letter-spacing:-0.511104pt;}
.ls10_c02082{letter-spacing:-0.244992pt;}
.lse_c02082{letter-spacing:-0.232320pt;}
.ls7_c02082{letter-spacing:-0.215424pt;}
.ls5_c02082{letter-spacing:-0.105600pt;}
.ls13_c02082{letter-spacing:0.000000pt;}
.ls2_c02082{letter-spacing:0.005376pt;}
.ls6_c02082{letter-spacing:0.114048pt;}
.lsd_c02082{letter-spacing:0.215424pt;}
.lsc_c02082{letter-spacing:0.451968pt;}
.ls12_c02082{letter-spacing:0.456960pt;}
.lsf_c02082{letter-spacing:0.477312pt;}
.lsb_c02082{letter-spacing:0.515328pt;}
.ls11_c02082{letter-spacing:0.528000pt;}
.ls9_c02082{letter-spacing:0.532224pt;}
.ls3_c02082{letter-spacing:0.544896pt;}
.ls0_c02082{letter-spacing:0.578688pt;}
.ls1_c02082{letter-spacing:0.637824pt;}
.ls4_c02082{letter-spacing:0.642048pt;}
.wsc_c02082{word-spacing:-13.445376pt;}
.wsa_c02082{word-spacing:-11.088000pt;}
.ws8_c02082{word-spacing:-11.075328pt;}
.ws9_c02082{word-spacing:-11.037312pt;}
.ws4_c02082{word-spacing:-10.344576pt;}
.ws2_c02082{word-spacing:-10.015104pt;}
.ws11_c02082{word-spacing:-0.958848pt;}
.wsf_c02082{word-spacing:-0.899712pt;}
.wsd_c02082{word-spacing:-0.865920pt;}
.ws14_c02082{word-spacing:-0.639744pt;}
.ws10_c02082{word-spacing:-0.105600pt;}
.ws12_c02082{word-spacing:-0.088704pt;}
.ws13_c02082{word-spacing:-0.076032pt;}
.wse_c02082{word-spacing:0.000000pt;}
.wsb_c02082{word-spacing:29.600256pt;}
.ws6_c02082{word-spacing:32.659968pt;}
.ws1_c02082{word-spacing:33.563904pt;}
.ws0_c02082{word-spacing:33.796224pt;}
.ws3_c02082{word-spacing:34.860672pt;}
.ws5_c02082{word-spacing:35.468928pt;}
.ws7_c02082{word-spacing:37.357056pt;}
._0_c02082{margin-left:-1.731840pt;}
._2_c02082{width:1.317888pt;}
._4_c02082{width:2.935680pt;}
._1_c02082{width:44.668800pt;}
._3_c02082{width:45.805056pt;}
.fs0_c02082{font-size:42.240000pt;}
.fs1_c02082{font-size:53.760000pt;}
.y0_c02082{bottom:0.000000pt;}
.y1a_c02082{bottom:130.665211pt;}
.y1c_c02082{bottom:165.866875pt;}
.y1b_c02082{bottom:174.507067pt;}
.y19_c02082{bottom:245.225371pt;}
.y18_c02082{bottom:317.225563pt;}
.y16_c02082{bottom:361.386427pt;}
.y12_c02082{bottom:377.386939pt;}
.y17_c02082{bottom:407.786011pt;}
.y15_c02082{bottom:437.226235pt;}
.y14_c02082{bottom:453.226747pt;}
.y11_c02082{bottom:482.666971pt;}
.y13_c02082{bottom:497.386555pt;}
.y10_c02082{bottom:513.387067pt;}
.y1e_c02082{bottom:530.346619pt;}
.y1d_c02082{bottom:546.027067pt;}
.yb_c02082{bottom:593.385179pt;}
.yd_c02082{bottom:628.586875pt;}
.yc_c02082{bottom:637.227067pt;}
.ya_c02082{bottom:707.945339pt;}
.y9_c02082{bottom:779.945531pt;}
.y7_c02082{bottom:823.786427pt;}
.y3_c02082{bottom:839.786939pt;}
.y8_c02082{bottom:870.505979pt;}
.y6_c02082{bottom:899.946203pt;}
.y5_c02082{bottom:915.946715pt;}
.y2_c02082{bottom:945.386939pt;}
.y4_c02082{bottom:959.786555pt;}
.y1_c02082{bottom:975.787067pt;}
.yf_c02082{bottom:993.066619pt;}
.ye_c02082{bottom:1008.747067pt;}
.h3_c02082{height:28.916250pt;}
.h1_c02082{height:37.063125pt;}
.h2_c02082{height:37.166250pt;}
.h5_c02082{height:47.171250pt;}
.h4_c02082{height:48.581988pt;}
.h0_c02082{height:1122.666667pt;}
.w1_c02082{width:793.333333pt;}
.w0_c02082{width:793.626667pt;}
.x0_c02082{left:0.000000pt;}
.xd_c02082{left:104.000000pt;}
.xe_c02082{left:144.000128pt;}
.x8_c02082{left:391.999872pt;}
.x4_c02082{left:396.160512pt;}
.xb_c02082{left:400.960000pt;}
.x7_c02082{left:404.799648pt;}
.x5_c02082{left:410.560128pt;}
.x1_c02082{left:411.840000pt;}
.xa_c02082{left:429.760320pt;}
.x9_c02082{left:437.439552pt;}
.x6_c02082{left:438.400512pt;}
.xc_c02082{left:450.560320pt;}
.x3_c02082{left:455.039904pt;}
.x2_c02082{left:468.159648pt;}
}





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

.ir_c02083:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02083{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02083;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02083{font-family:ff1_c02083;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02083;src:url('chunks/assets/font_c68a70a22c9291361e6f0698.woff2')format("woff");}.ff2_c02083{font-family:ff2_c02083;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02083;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02083{font-family:ff3_c02083;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02083{vertical-align:0.000000px;}
.v1_c02083{vertical-align:1.439424px;}
.lsd_c02083{letter-spacing:-1.197504px;}
.ls7_c02083{letter-spacing:-0.613008px;}
.ls9_c02083{letter-spacing:-0.574992px;}
.ls15_c02083{letter-spacing:-0.427680px;}
.ls10_c02083{letter-spacing:-0.275616px;}
.lse_c02083{letter-spacing:-0.261360px;}
.ls6_c02083{letter-spacing:-0.242352px;}
.ls4_c02083{letter-spacing:-0.118800px;}
.ls13_c02083{letter-spacing:0.000000px;}
.ls1_c02083{letter-spacing:0.006048px;}
.lsb_c02083{letter-spacing:0.014256px;}
.ls5_c02083{letter-spacing:0.128304px;}
.ls14_c02083{letter-spacing:0.242352px;}
.lsc_c02083{letter-spacing:0.508464px;}
.ls12_c02083{letter-spacing:0.514080px;}
.lsf_c02083{letter-spacing:0.536976px;}
.lsa_c02083{letter-spacing:0.579744px;}
.ls11_c02083{letter-spacing:0.594000px;}
.ls8_c02083{letter-spacing:0.598752px;}
.ls3_c02083{letter-spacing:0.613008px;}
.ls2_c02083{letter-spacing:0.717552px;}
.ls0_c02083{letter-spacing:0.722304px;}
.sc__c02083{text-shadow:none;}
.sc0_c02083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02083{-webkit-text-stroke:0px transparent;}
.sc0_c02083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02083{word-spacing:-15.126048px;}
.wsa_c02083{word-spacing:-12.474000px;}
.ws8_c02083{word-spacing:-12.459744px;}
.ws9_c02083{word-spacing:-12.416976px;}
.wsd_c02083{word-spacing:-12.122352px;}
.ws4_c02083{word-spacing:-11.637648px;}
.ws2_c02083{word-spacing:-11.266992px;}
.ws12_c02083{word-spacing:-1.083456px;}
.ws18_c02083{word-spacing:-1.078704px;}
.wsf_c02083{word-spacing:-0.974160px;}
.ws17_c02083{word-spacing:-0.719712px;}
.ws13_c02083{word-spacing:-0.375408px;}
.ws11_c02083{word-spacing:-0.118800px;}
.ws15_c02083{word-spacing:-0.099792px;}
.ws16_c02083{word-spacing:-0.085536px;}
.ws10_c02083{word-spacing:0.000000px;}
.ws19_c02083{word-spacing:0.066528px;}
.ws14_c02083{word-spacing:0.836352px;}
.wse_c02083{word-spacing:4.951584px;}
.wsb_c02083{word-spacing:33.300288px;}
.ws6_c02083{word-spacing:36.742464px;}
.ws1_c02083{word-spacing:37.759392px;}
.ws0_c02083{word-spacing:38.020752px;}
.ws3_c02083{word-spacing:39.218256px;}
.ws5_c02083{word-spacing:39.902544px;}
.ws7_c02083{word-spacing:42.026688px;}
._0_c02083{margin-left:-1.948320px;}
._2_c02083{width:1.482624px;}
._4_c02083{width:3.302640px;}
._1_c02083{width:50.252400px;}
._3_c02083{width:51.530688px;}
.fc0_c02083{color:rgb(0,0,0);}
.fs0_c02083{font-size:47.520000px;}
.fs1_c02083{font-size:60.480000px;}
.y0_c02083{bottom:0.000000px;}
.y1a_c02083{bottom:146.998362px;}
.y1c_c02083{bottom:186.600234px;}
.y1b_c02083{bottom:196.320450px;}
.y19_c02083{bottom:275.878542px;}
.y18_c02083{bottom:356.878758px;}
.y16_c02083{bottom:406.559730px;}
.y12_c02083{bottom:424.560306px;}
.y17_c02083{bottom:458.759262px;}
.y15_c02083{bottom:491.879514px;}
.y14_c02083{bottom:509.880090px;}
.y11_c02083{bottom:543.000342px;}
.y13_c02083{bottom:559.559874px;}
.y10_c02083{bottom:577.560450px;}
.y1e_c02083{bottom:596.639946px;}
.y1d_c02083{bottom:614.280450px;}
.yb_c02083{bottom:667.558326px;}
.yd_c02083{bottom:707.160234px;}
.yc_c02083{bottom:716.880450px;}
.ya_c02083{bottom:796.438506px;}
.y9_c02083{bottom:877.438722px;}
.y7_c02083{bottom:926.759730px;}
.y3_c02083{bottom:944.760306px;}
.y8_c02083{bottom:979.319226px;}
.y6_c02083{bottom:1012.439478px;}
.y5_c02083{bottom:1030.440054px;}
.y2_c02083{bottom:1063.560306px;}
.y4_c02083{bottom:1079.759874px;}
.y1_c02083{bottom:1097.760450px;}
.yf_c02083{bottom:1117.199946px;}
.ye_c02083{bottom:1134.840450px;}
.h3_c02083{height:32.530781px;}
.h1_c02083{height:41.696016px;}
.h2_c02083{height:41.812031px;}
.h5_c02083{height:53.067656px;}
.h4_c02083{height:54.654737px;}
.h0_c02083{height:1263.000000px;}
.w1_c02083{width:892.500000px;}
.w0_c02083{width:892.830000px;}
.x0_c02083{left:0.000000px;}
.xd_c02083{left:117.000000px;}
.xe_c02083{left:162.000144px;}
.x8_c02083{left:440.999856px;}
.x4_c02083{left:445.680576px;}
.xb_c02083{left:451.080000px;}
.x7_c02083{left:455.399604px;}
.x5_c02083{left:461.880144px;}
.x1_c02083{left:463.320000px;}
.xa_c02083{left:483.480360px;}
.x9_c02083{left:492.119496px;}
.x6_c02083{left:493.200576px;}
.xc_c02083{left:506.880360px;}
.x3_c02083{left:511.919892px;}
.x2_c02083{left:526.679604px;}
@media print{
.v0_c02083{vertical-align:0.000000pt;}
.v1_c02083{vertical-align:1.279488pt;}
.lsd_c02083{letter-spacing:-1.064448pt;}
.ls7_c02083{letter-spacing:-0.544896pt;}
.ls9_c02083{letter-spacing:-0.511104pt;}
.ls15_c02083{letter-spacing:-0.380160pt;}
.ls10_c02083{letter-spacing:-0.244992pt;}
.lse_c02083{letter-spacing:-0.232320pt;}
.ls6_c02083{letter-spacing:-0.215424pt;}
.ls4_c02083{letter-spacing:-0.105600pt;}
.ls13_c02083{letter-spacing:0.000000pt;}
.ls1_c02083{letter-spacing:0.005376pt;}
.lsb_c02083{letter-spacing:0.012672pt;}
.ls5_c02083{letter-spacing:0.114048pt;}
.ls14_c02083{letter-spacing:0.215424pt;}
.lsc_c02083{letter-spacing:0.451968pt;}
.ls12_c02083{letter-spacing:0.456960pt;}
.lsf_c02083{letter-spacing:0.477312pt;}
.lsa_c02083{letter-spacing:0.515328pt;}
.ls11_c02083{letter-spacing:0.528000pt;}
.ls8_c02083{letter-spacing:0.532224pt;}
.ls3_c02083{letter-spacing:0.544896pt;}
.ls2_c02083{letter-spacing:0.637824pt;}
.ls0_c02083{letter-spacing:0.642048pt;}
.wsc_c02083{word-spacing:-13.445376pt;}
.wsa_c02083{word-spacing:-11.088000pt;}
.ws8_c02083{word-spacing:-11.075328pt;}
.ws9_c02083{word-spacing:-11.037312pt;}
.wsd_c02083{word-spacing:-10.775424pt;}
.ws4_c02083{word-spacing:-10.344576pt;}
.ws2_c02083{word-spacing:-10.015104pt;}
.ws12_c02083{word-spacing:-0.963072pt;}
.ws18_c02083{word-spacing:-0.958848pt;}
.wsf_c02083{word-spacing:-0.865920pt;}
.ws17_c02083{word-spacing:-0.639744pt;}
.ws13_c02083{word-spacing:-0.333696pt;}
.ws11_c02083{word-spacing:-0.105600pt;}
.ws15_c02083{word-spacing:-0.088704pt;}
.ws16_c02083{word-spacing:-0.076032pt;}
.ws10_c02083{word-spacing:0.000000pt;}
.ws19_c02083{word-spacing:0.059136pt;}
.ws14_c02083{word-spacing:0.743424pt;}
.wse_c02083{word-spacing:4.401408pt;}
.wsb_c02083{word-spacing:29.600256pt;}
.ws6_c02083{word-spacing:32.659968pt;}
.ws1_c02083{word-spacing:33.563904pt;}
.ws0_c02083{word-spacing:33.796224pt;}
.ws3_c02083{word-spacing:34.860672pt;}
.ws5_c02083{word-spacing:35.468928pt;}
.ws7_c02083{word-spacing:37.357056pt;}
._0_c02083{margin-left:-1.731840pt;}
._2_c02083{width:1.317888pt;}
._4_c02083{width:2.935680pt;}
._1_c02083{width:44.668800pt;}
._3_c02083{width:45.805056pt;}
.fs0_c02083{font-size:42.240000pt;}
.fs1_c02083{font-size:53.760000pt;}
.y0_c02083{bottom:0.000000pt;}
.y1a_c02083{bottom:130.665211pt;}
.y1c_c02083{bottom:165.866875pt;}
.y1b_c02083{bottom:174.507067pt;}
.y19_c02083{bottom:245.225371pt;}
.y18_c02083{bottom:317.225563pt;}
.y16_c02083{bottom:361.386427pt;}
.y12_c02083{bottom:377.386939pt;}
.y17_c02083{bottom:407.786011pt;}
.y15_c02083{bottom:437.226235pt;}
.y14_c02083{bottom:453.226747pt;}
.y11_c02083{bottom:482.666971pt;}
.y13_c02083{bottom:497.386555pt;}
.y10_c02083{bottom:513.387067pt;}
.y1e_c02083{bottom:530.346619pt;}
.y1d_c02083{bottom:546.027067pt;}
.yb_c02083{bottom:593.385179pt;}
.yd_c02083{bottom:628.586875pt;}
.yc_c02083{bottom:637.227067pt;}
.ya_c02083{bottom:707.945339pt;}
.y9_c02083{bottom:779.945531pt;}
.y7_c02083{bottom:823.786427pt;}
.y3_c02083{bottom:839.786939pt;}
.y8_c02083{bottom:870.505979pt;}
.y6_c02083{bottom:899.946203pt;}
.y5_c02083{bottom:915.946715pt;}
.y2_c02083{bottom:945.386939pt;}
.y4_c02083{bottom:959.786555pt;}
.y1_c02083{bottom:975.787067pt;}
.yf_c02083{bottom:993.066619pt;}
.ye_c02083{bottom:1008.747067pt;}
.h3_c02083{height:28.916250pt;}
.h1_c02083{height:37.063125pt;}
.h2_c02083{height:37.166250pt;}
.h5_c02083{height:47.171250pt;}
.h4_c02083{height:48.581988pt;}
.h0_c02083{height:1122.666667pt;}
.w1_c02083{width:793.333333pt;}
.w0_c02083{width:793.626667pt;}
.x0_c02083{left:0.000000pt;}
.xd_c02083{left:104.000000pt;}
.xe_c02083{left:144.000128pt;}
.x8_c02083{left:391.999872pt;}
.x4_c02083{left:396.160512pt;}
.xb_c02083{left:400.960000pt;}
.x7_c02083{left:404.799648pt;}
.x5_c02083{left:410.560128pt;}
.x1_c02083{left:411.840000pt;}
.xa_c02083{left:429.760320pt;}
.x9_c02083{left:437.439552pt;}
.x6_c02083{left:438.400512pt;}
.xc_c02083{left:450.560320pt;}
.x3_c02083{left:455.039904pt;}
.x2_c02083{left:468.159648pt;}
}





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

.ir_c02084:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02084{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02084;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02084{font-family:ff1_c02084;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02084;src:url('chunks/assets/font_6a6238376965f06764c851f9.woff2')format("woff");}.ff2_c02084{font-family:ff2_c02084;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02084;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02084{font-family:ff3_c02084;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02084{vertical-align:0.000000px;}
.v1_c02084{vertical-align:1.439424px;}
.ls9_c02084{letter-spacing:-0.574992px;}
.lsc_c02084{letter-spacing:-0.427680px;}
.lsf_c02084{letter-spacing:-0.275616px;}
.lsd_c02084{letter-spacing:-0.261360px;}
.ls6_c02084{letter-spacing:-0.242352px;}
.ls4_c02084{letter-spacing:-0.118800px;}
.ls12_c02084{letter-spacing:0.000000px;}
.ls1_c02084{letter-spacing:0.006048px;}
.ls5_c02084{letter-spacing:0.128304px;}
.ls7_c02084{letter-spacing:0.242352px;}
.lsb_c02084{letter-spacing:0.508464px;}
.ls11_c02084{letter-spacing:0.514080px;}
.lse_c02084{letter-spacing:0.536976px;}
.lsa_c02084{letter-spacing:0.579744px;}
.ls10_c02084{letter-spacing:0.594000px;}
.ls8_c02084{letter-spacing:0.598752px;}
.ls2_c02084{letter-spacing:0.613008px;}
.ls0_c02084{letter-spacing:0.717552px;}
.ls3_c02084{letter-spacing:0.722304px;}
.sc__c02084{text-shadow:none;}
.sc0_c02084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02084{-webkit-text-stroke:0px transparent;}
.sc0_c02084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02084{word-spacing:-15.126048px;}
.wsa_c02084{word-spacing:-12.474000px;}
.ws8_c02084{word-spacing:-12.459744px;}
.ws9_c02084{word-spacing:-12.416976px;}
.ws2_c02084{word-spacing:-12.122352px;}
.ws10_c02084{word-spacing:-1.078704px;}
.wsd_c02084{word-spacing:-0.974160px;}
.ws14_c02084{word-spacing:-0.719712px;}
.wsf_c02084{word-spacing:-0.118800px;}
.ws12_c02084{word-spacing:-0.099792px;}
.ws13_c02084{word-spacing:-0.085536px;}
.wse_c02084{word-spacing:0.000000px;}
.ws11_c02084{word-spacing:0.066528px;}
.ws4_c02084{word-spacing:4.951584px;}
.wsb_c02084{word-spacing:33.300288px;}
.ws6_c02084{word-spacing:36.742464px;}
.ws1_c02084{word-spacing:37.759392px;}
.ws0_c02084{word-spacing:38.020752px;}
.ws3_c02084{word-spacing:39.218256px;}
.ws5_c02084{word-spacing:39.902544px;}
.ws7_c02084{word-spacing:42.026688px;}
._0_c02084{margin-left:-1.948320px;}
._2_c02084{width:1.482624px;}
._1_c02084{width:50.252400px;}
._3_c02084{width:51.530688px;}
.fc0_c02084{color:rgb(0,0,0);}
.fs0_c02084{font-size:47.520000px;}
.fs1_c02084{font-size:60.480000px;}
.y0_c02084{bottom:0.000000px;}
.y1a_c02084{bottom:146.998362px;}
.y1c_c02084{bottom:186.600234px;}
.y1b_c02084{bottom:196.320450px;}
.y19_c02084{bottom:275.878542px;}
.y18_c02084{bottom:356.878758px;}
.y16_c02084{bottom:406.559730px;}
.y12_c02084{bottom:424.560306px;}
.y17_c02084{bottom:458.759262px;}
.y15_c02084{bottom:491.879514px;}
.y14_c02084{bottom:509.880090px;}
.y11_c02084{bottom:543.000342px;}
.y13_c02084{bottom:559.559874px;}
.y10_c02084{bottom:577.560450px;}
.y1e_c02084{bottom:596.639946px;}
.y1d_c02084{bottom:614.280450px;}
.yb_c02084{bottom:667.558326px;}
.yd_c02084{bottom:707.160234px;}
.yc_c02084{bottom:716.880450px;}
.ya_c02084{bottom:796.438506px;}
.y9_c02084{bottom:877.438722px;}
.y7_c02084{bottom:926.759730px;}
.y3_c02084{bottom:944.760306px;}
.y8_c02084{bottom:979.319226px;}
.y6_c02084{bottom:1012.439478px;}
.y5_c02084{bottom:1030.440054px;}
.y2_c02084{bottom:1063.560306px;}
.y4_c02084{bottom:1079.759874px;}
.y1_c02084{bottom:1097.760450px;}
.yf_c02084{bottom:1117.199946px;}
.ye_c02084{bottom:1134.840450px;}
.h3_c02084{height:32.530781px;}
.h1_c02084{height:41.696016px;}
.h2_c02084{height:41.812031px;}
.h5_c02084{height:53.067656px;}
.h4_c02084{height:54.654737px;}
.h0_c02084{height:1263.000000px;}
.w1_c02084{width:892.500000px;}
.w0_c02084{width:892.830000px;}
.x0_c02084{left:0.000000px;}
.xd_c02084{left:117.000000px;}
.xe_c02084{left:162.000144px;}
.x8_c02084{left:440.999856px;}
.x4_c02084{left:445.680576px;}
.xb_c02084{left:451.080000px;}
.x7_c02084{left:455.399604px;}
.x5_c02084{left:461.880144px;}
.x1_c02084{left:463.320000px;}
.xa_c02084{left:483.480360px;}
.x9_c02084{left:492.119496px;}
.x6_c02084{left:493.200576px;}
.xc_c02084{left:506.880360px;}
.x3_c02084{left:511.919892px;}
.x2_c02084{left:526.679604px;}
@media print{
.v0_c02084{vertical-align:0.000000pt;}
.v1_c02084{vertical-align:1.279488pt;}
.ls9_c02084{letter-spacing:-0.511104pt;}
.lsc_c02084{letter-spacing:-0.380160pt;}
.lsf_c02084{letter-spacing:-0.244992pt;}
.lsd_c02084{letter-spacing:-0.232320pt;}
.ls6_c02084{letter-spacing:-0.215424pt;}
.ls4_c02084{letter-spacing:-0.105600pt;}
.ls12_c02084{letter-spacing:0.000000pt;}
.ls1_c02084{letter-spacing:0.005376pt;}
.ls5_c02084{letter-spacing:0.114048pt;}
.ls7_c02084{letter-spacing:0.215424pt;}
.lsb_c02084{letter-spacing:0.451968pt;}
.ls11_c02084{letter-spacing:0.456960pt;}
.lse_c02084{letter-spacing:0.477312pt;}
.lsa_c02084{letter-spacing:0.515328pt;}
.ls10_c02084{letter-spacing:0.528000pt;}
.ls8_c02084{letter-spacing:0.532224pt;}
.ls2_c02084{letter-spacing:0.544896pt;}
.ls0_c02084{letter-spacing:0.637824pt;}
.ls3_c02084{letter-spacing:0.642048pt;}
.wsc_c02084{word-spacing:-13.445376pt;}
.wsa_c02084{word-spacing:-11.088000pt;}
.ws8_c02084{word-spacing:-11.075328pt;}
.ws9_c02084{word-spacing:-11.037312pt;}
.ws2_c02084{word-spacing:-10.775424pt;}
.ws10_c02084{word-spacing:-0.958848pt;}
.wsd_c02084{word-spacing:-0.865920pt;}
.ws14_c02084{word-spacing:-0.639744pt;}
.wsf_c02084{word-spacing:-0.105600pt;}
.ws12_c02084{word-spacing:-0.088704pt;}
.ws13_c02084{word-spacing:-0.076032pt;}
.wse_c02084{word-spacing:0.000000pt;}
.ws11_c02084{word-spacing:0.059136pt;}
.ws4_c02084{word-spacing:4.401408pt;}
.wsb_c02084{word-spacing:29.600256pt;}
.ws6_c02084{word-spacing:32.659968pt;}
.ws1_c02084{word-spacing:33.563904pt;}
.ws0_c02084{word-spacing:33.796224pt;}
.ws3_c02084{word-spacing:34.860672pt;}
.ws5_c02084{word-spacing:35.468928pt;}
.ws7_c02084{word-spacing:37.357056pt;}
._0_c02084{margin-left:-1.731840pt;}
._2_c02084{width:1.317888pt;}
._1_c02084{width:44.668800pt;}
._3_c02084{width:45.805056pt;}
.fs0_c02084{font-size:42.240000pt;}
.fs1_c02084{font-size:53.760000pt;}
.y0_c02084{bottom:0.000000pt;}
.y1a_c02084{bottom:130.665211pt;}
.y1c_c02084{bottom:165.866875pt;}
.y1b_c02084{bottom:174.507067pt;}
.y19_c02084{bottom:245.225371pt;}
.y18_c02084{bottom:317.225563pt;}
.y16_c02084{bottom:361.386427pt;}
.y12_c02084{bottom:377.386939pt;}
.y17_c02084{bottom:407.786011pt;}
.y15_c02084{bottom:437.226235pt;}
.y14_c02084{bottom:453.226747pt;}
.y11_c02084{bottom:482.666971pt;}
.y13_c02084{bottom:497.386555pt;}
.y10_c02084{bottom:513.387067pt;}
.y1e_c02084{bottom:530.346619pt;}
.y1d_c02084{bottom:546.027067pt;}
.yb_c02084{bottom:593.385179pt;}
.yd_c02084{bottom:628.586875pt;}
.yc_c02084{bottom:637.227067pt;}
.ya_c02084{bottom:707.945339pt;}
.y9_c02084{bottom:779.945531pt;}
.y7_c02084{bottom:823.786427pt;}
.y3_c02084{bottom:839.786939pt;}
.y8_c02084{bottom:870.505979pt;}
.y6_c02084{bottom:899.946203pt;}
.y5_c02084{bottom:915.946715pt;}
.y2_c02084{bottom:945.386939pt;}
.y4_c02084{bottom:959.786555pt;}
.y1_c02084{bottom:975.787067pt;}
.yf_c02084{bottom:993.066619pt;}
.ye_c02084{bottom:1008.747067pt;}
.h3_c02084{height:28.916250pt;}
.h1_c02084{height:37.063125pt;}
.h2_c02084{height:37.166250pt;}
.h5_c02084{height:47.171250pt;}
.h4_c02084{height:48.581988pt;}
.h0_c02084{height:1122.666667pt;}
.w1_c02084{width:793.333333pt;}
.w0_c02084{width:793.626667pt;}
.x0_c02084{left:0.000000pt;}
.xd_c02084{left:104.000000pt;}
.xe_c02084{left:144.000128pt;}
.x8_c02084{left:391.999872pt;}
.x4_c02084{left:396.160512pt;}
.xb_c02084{left:400.960000pt;}
.x7_c02084{left:404.799648pt;}
.x5_c02084{left:410.560128pt;}
.x1_c02084{left:411.840000pt;}
.xa_c02084{left:429.760320pt;}
.x9_c02084{left:437.439552pt;}
.x6_c02084{left:438.400512pt;}
.xc_c02084{left:450.560320pt;}
.x3_c02084{left:455.039904pt;}
.x2_c02084{left:468.159648pt;}
}





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

.ir_c02085:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02085;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02085{font-family:ff1_c02085;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02085;src:url('chunks/assets/font_7af92987e1984dcd3c544271.woff2')format("woff");}.ff2_c02085{font-family:ff2_c02085;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02085;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02085{font-family:ff3_c02085;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02085{vertical-align:0.000000px;}
.v1_c02085{vertical-align:1.439424px;}
.ls13_c02085{letter-spacing:-0.613008px;}
.ls9_c02085{letter-spacing:-0.574992px;}
.lsc_c02085{letter-spacing:-0.427680px;}
.lsf_c02085{letter-spacing:-0.275616px;}
.lsd_c02085{letter-spacing:-0.261360px;}
.ls6_c02085{letter-spacing:-0.242352px;}
.ls4_c02085{letter-spacing:-0.118800px;}
.ls12_c02085{letter-spacing:0.000000px;}
.ls1_c02085{letter-spacing:0.006048px;}
.ls5_c02085{letter-spacing:0.128304px;}
.ls7_c02085{letter-spacing:0.242352px;}
.lsb_c02085{letter-spacing:0.508464px;}
.ls11_c02085{letter-spacing:0.514080px;}
.lse_c02085{letter-spacing:0.536976px;}
.lsa_c02085{letter-spacing:0.579744px;}
.ls10_c02085{letter-spacing:0.594000px;}
.ls8_c02085{letter-spacing:0.598752px;}
.ls2_c02085{letter-spacing:0.613008px;}
.ls0_c02085{letter-spacing:0.717552px;}
.ls3_c02085{letter-spacing:0.722304px;}
.sc__c02085{text-shadow:none;}
.sc0_c02085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02085{-webkit-text-stroke:0px transparent;}
.sc0_c02085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02085{word-spacing:-15.126048px;}
.wsa_c02085{word-spacing:-12.474000px;}
.ws8_c02085{word-spacing:-12.459744px;}
.ws9_c02085{word-spacing:-12.416976px;}
.ws2_c02085{word-spacing:-12.122352px;}
.wsd_c02085{word-spacing:-11.266992px;}
.ws11_c02085{word-spacing:-1.078704px;}
.wse_c02085{word-spacing:-0.974160px;}
.ws15_c02085{word-spacing:-0.719712px;}
.ws10_c02085{word-spacing:-0.118800px;}
.ws13_c02085{word-spacing:-0.099792px;}
.ws14_c02085{word-spacing:-0.085536px;}
.wsf_c02085{word-spacing:0.000000px;}
.ws12_c02085{word-spacing:0.066528px;}
.ws4_c02085{word-spacing:4.951584px;}
.wsb_c02085{word-spacing:33.300288px;}
.ws6_c02085{word-spacing:36.742464px;}
.ws1_c02085{word-spacing:37.759392px;}
.ws0_c02085{word-spacing:38.020752px;}
.ws3_c02085{word-spacing:39.218256px;}
.ws5_c02085{word-spacing:39.902544px;}
.ws7_c02085{word-spacing:42.026688px;}
._0_c02085{margin-left:-1.948320px;}
._2_c02085{width:1.482624px;}
._1_c02085{width:50.252400px;}
._3_c02085{width:51.530688px;}
.fc0_c02085{color:rgb(0,0,0);}
.fs0_c02085{font-size:47.520000px;}
.fs1_c02085{font-size:60.480000px;}
.y0_c02085{bottom:0.000000px;}
.y1a_c02085{bottom:146.998362px;}
.y1c_c02085{bottom:186.600234px;}
.y1b_c02085{bottom:196.320450px;}
.y19_c02085{bottom:275.878542px;}
.y18_c02085{bottom:356.878758px;}
.y16_c02085{bottom:406.559730px;}
.y12_c02085{bottom:424.560306px;}
.y17_c02085{bottom:458.759262px;}
.y15_c02085{bottom:491.879514px;}
.y14_c02085{bottom:509.880090px;}
.y11_c02085{bottom:543.000342px;}
.y13_c02085{bottom:559.559874px;}
.y10_c02085{bottom:577.560450px;}
.y1e_c02085{bottom:596.639946px;}
.y1d_c02085{bottom:614.280450px;}
.yb_c02085{bottom:667.558326px;}
.yd_c02085{bottom:707.160234px;}
.yc_c02085{bottom:716.880450px;}
.ya_c02085{bottom:796.438506px;}
.y9_c02085{bottom:877.438722px;}
.y7_c02085{bottom:926.759730px;}
.y3_c02085{bottom:944.760306px;}
.y8_c02085{bottom:979.319226px;}
.y6_c02085{bottom:1012.439478px;}
.y5_c02085{bottom:1030.440054px;}
.y2_c02085{bottom:1063.560306px;}
.y4_c02085{bottom:1079.759874px;}
.y1_c02085{bottom:1097.760450px;}
.yf_c02085{bottom:1117.199946px;}
.ye_c02085{bottom:1134.840450px;}
.h3_c02085{height:32.530781px;}
.h1_c02085{height:41.696016px;}
.h2_c02085{height:41.812031px;}
.h5_c02085{height:53.067656px;}
.h4_c02085{height:54.654737px;}
.h0_c02085{height:1263.000000px;}
.w1_c02085{width:892.500000px;}
.w0_c02085{width:892.830000px;}
.x0_c02085{left:0.000000px;}
.xd_c02085{left:117.000000px;}
.xe_c02085{left:162.000144px;}
.x8_c02085{left:440.999856px;}
.x4_c02085{left:445.680576px;}
.xb_c02085{left:451.080000px;}
.x7_c02085{left:455.399604px;}
.x5_c02085{left:461.880144px;}
.x1_c02085{left:463.320000px;}
.xa_c02085{left:483.480360px;}
.x9_c02085{left:492.119496px;}
.x6_c02085{left:493.200576px;}
.xc_c02085{left:506.880360px;}
.x3_c02085{left:511.919892px;}
.x2_c02085{left:526.679604px;}
@media print{
.v0_c02085{vertical-align:0.000000pt;}
.v1_c02085{vertical-align:1.279488pt;}
.ls13_c02085{letter-spacing:-0.544896pt;}
.ls9_c02085{letter-spacing:-0.511104pt;}
.lsc_c02085{letter-spacing:-0.380160pt;}
.lsf_c02085{letter-spacing:-0.244992pt;}
.lsd_c02085{letter-spacing:-0.232320pt;}
.ls6_c02085{letter-spacing:-0.215424pt;}
.ls4_c02085{letter-spacing:-0.105600pt;}
.ls12_c02085{letter-spacing:0.000000pt;}
.ls1_c02085{letter-spacing:0.005376pt;}
.ls5_c02085{letter-spacing:0.114048pt;}
.ls7_c02085{letter-spacing:0.215424pt;}
.lsb_c02085{letter-spacing:0.451968pt;}
.ls11_c02085{letter-spacing:0.456960pt;}
.lse_c02085{letter-spacing:0.477312pt;}
.lsa_c02085{letter-spacing:0.515328pt;}
.ls10_c02085{letter-spacing:0.528000pt;}
.ls8_c02085{letter-spacing:0.532224pt;}
.ls2_c02085{letter-spacing:0.544896pt;}
.ls0_c02085{letter-spacing:0.637824pt;}
.ls3_c02085{letter-spacing:0.642048pt;}
.wsc_c02085{word-spacing:-13.445376pt;}
.wsa_c02085{word-spacing:-11.088000pt;}
.ws8_c02085{word-spacing:-11.075328pt;}
.ws9_c02085{word-spacing:-11.037312pt;}
.ws2_c02085{word-spacing:-10.775424pt;}
.wsd_c02085{word-spacing:-10.015104pt;}
.ws11_c02085{word-spacing:-0.958848pt;}
.wse_c02085{word-spacing:-0.865920pt;}
.ws15_c02085{word-spacing:-0.639744pt;}
.ws10_c02085{word-spacing:-0.105600pt;}
.ws13_c02085{word-spacing:-0.088704pt;}
.ws14_c02085{word-spacing:-0.076032pt;}
.wsf_c02085{word-spacing:0.000000pt;}
.ws12_c02085{word-spacing:0.059136pt;}
.ws4_c02085{word-spacing:4.401408pt;}
.wsb_c02085{word-spacing:29.600256pt;}
.ws6_c02085{word-spacing:32.659968pt;}
.ws1_c02085{word-spacing:33.563904pt;}
.ws0_c02085{word-spacing:33.796224pt;}
.ws3_c02085{word-spacing:34.860672pt;}
.ws5_c02085{word-spacing:35.468928pt;}
.ws7_c02085{word-spacing:37.357056pt;}
._0_c02085{margin-left:-1.731840pt;}
._2_c02085{width:1.317888pt;}
._1_c02085{width:44.668800pt;}
._3_c02085{width:45.805056pt;}
.fs0_c02085{font-size:42.240000pt;}
.fs1_c02085{font-size:53.760000pt;}
.y0_c02085{bottom:0.000000pt;}
.y1a_c02085{bottom:130.665211pt;}
.y1c_c02085{bottom:165.866875pt;}
.y1b_c02085{bottom:174.507067pt;}
.y19_c02085{bottom:245.225371pt;}
.y18_c02085{bottom:317.225563pt;}
.y16_c02085{bottom:361.386427pt;}
.y12_c02085{bottom:377.386939pt;}
.y17_c02085{bottom:407.786011pt;}
.y15_c02085{bottom:437.226235pt;}
.y14_c02085{bottom:453.226747pt;}
.y11_c02085{bottom:482.666971pt;}
.y13_c02085{bottom:497.386555pt;}
.y10_c02085{bottom:513.387067pt;}
.y1e_c02085{bottom:530.346619pt;}
.y1d_c02085{bottom:546.027067pt;}
.yb_c02085{bottom:593.385179pt;}
.yd_c02085{bottom:628.586875pt;}
.yc_c02085{bottom:637.227067pt;}
.ya_c02085{bottom:707.945339pt;}
.y9_c02085{bottom:779.945531pt;}
.y7_c02085{bottom:823.786427pt;}
.y3_c02085{bottom:839.786939pt;}
.y8_c02085{bottom:870.505979pt;}
.y6_c02085{bottom:899.946203pt;}
.y5_c02085{bottom:915.946715pt;}
.y2_c02085{bottom:945.386939pt;}
.y4_c02085{bottom:959.786555pt;}
.y1_c02085{bottom:975.787067pt;}
.yf_c02085{bottom:993.066619pt;}
.ye_c02085{bottom:1008.747067pt;}
.h3_c02085{height:28.916250pt;}
.h1_c02085{height:37.063125pt;}
.h2_c02085{height:37.166250pt;}
.h5_c02085{height:47.171250pt;}
.h4_c02085{height:48.581988pt;}
.h0_c02085{height:1122.666667pt;}
.w1_c02085{width:793.333333pt;}
.w0_c02085{width:793.626667pt;}
.x0_c02085{left:0.000000pt;}
.xd_c02085{left:104.000000pt;}
.xe_c02085{left:144.000128pt;}
.x8_c02085{left:391.999872pt;}
.x4_c02085{left:396.160512pt;}
.xb_c02085{left:400.960000pt;}
.x7_c02085{left:404.799648pt;}
.x5_c02085{left:410.560128pt;}
.x1_c02085{left:411.840000pt;}
.xa_c02085{left:429.760320pt;}
.x9_c02085{left:437.439552pt;}
.x6_c02085{left:438.400512pt;}
.xc_c02085{left:450.560320pt;}
.x3_c02085{left:455.039904pt;}
.x2_c02085{left:468.159648pt;}
}





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

.ir_c02086:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02086{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02086;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02086{font-family:ff1_c02086;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02086;src:url('chunks/assets/font_6679eaf20633481422f9d7b8.woff2')format("woff");}.ff2_c02086{font-family:ff2_c02086;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02086;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02086{font-family:ff3_c02086;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02086{vertical-align:0.000000px;}
.v1_c02086{vertical-align:1.439424px;}
.ls9_c02086{letter-spacing:-0.574992px;}
.lsc_c02086{letter-spacing:-0.427680px;}
.lsf_c02086{letter-spacing:-0.275616px;}
.lsd_c02086{letter-spacing:-0.261360px;}
.ls6_c02086{letter-spacing:-0.242352px;}
.ls4_c02086{letter-spacing:-0.118800px;}
.ls12_c02086{letter-spacing:0.000000px;}
.ls1_c02086{letter-spacing:0.006048px;}
.ls5_c02086{letter-spacing:0.128304px;}
.ls7_c02086{letter-spacing:0.242352px;}
.lsb_c02086{letter-spacing:0.508464px;}
.ls11_c02086{letter-spacing:0.514080px;}
.lse_c02086{letter-spacing:0.536976px;}
.lsa_c02086{letter-spacing:0.579744px;}
.ls10_c02086{letter-spacing:0.594000px;}
.ls8_c02086{letter-spacing:0.598752px;}
.ls2_c02086{letter-spacing:0.613008px;}
.ls0_c02086{letter-spacing:0.717552px;}
.ls3_c02086{letter-spacing:0.722304px;}
.sc__c02086{text-shadow:none;}
.sc0_c02086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02086{-webkit-text-stroke:0px transparent;}
.sc0_c02086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02086{word-spacing:-15.126048px;}
.wsa_c02086{word-spacing:-12.474000px;}
.ws8_c02086{word-spacing:-12.459744px;}
.ws9_c02086{word-spacing:-12.416976px;}
.ws2_c02086{word-spacing:-12.122352px;}
.ws10_c02086{word-spacing:-1.078704px;}
.wsd_c02086{word-spacing:-0.974160px;}
.ws14_c02086{word-spacing:-0.719712px;}
.wsf_c02086{word-spacing:-0.118800px;}
.ws12_c02086{word-spacing:-0.099792px;}
.ws13_c02086{word-spacing:-0.085536px;}
.wse_c02086{word-spacing:0.000000px;}
.ws11_c02086{word-spacing:0.066528px;}
.ws4_c02086{word-spacing:4.951584px;}
.wsb_c02086{word-spacing:33.300288px;}
.ws6_c02086{word-spacing:36.742464px;}
.ws1_c02086{word-spacing:37.759392px;}
.ws0_c02086{word-spacing:38.020752px;}
.ws3_c02086{word-spacing:39.218256px;}
.ws5_c02086{word-spacing:39.902544px;}
.ws7_c02086{word-spacing:42.026688px;}
._0_c02086{margin-left:-1.948320px;}
._2_c02086{width:1.482624px;}
._1_c02086{width:50.252400px;}
._3_c02086{width:51.530688px;}
.fc0_c02086{color:rgb(0,0,0);}
.fs0_c02086{font-size:47.520000px;}
.fs1_c02086{font-size:60.480000px;}
.y0_c02086{bottom:0.000000px;}
.y1a_c02086{bottom:146.998362px;}
.y1c_c02086{bottom:186.600234px;}
.y1b_c02086{bottom:196.320450px;}
.y19_c02086{bottom:275.878542px;}
.y18_c02086{bottom:356.878758px;}
.y16_c02086{bottom:406.559730px;}
.y12_c02086{bottom:424.560306px;}
.y17_c02086{bottom:458.759262px;}
.y15_c02086{bottom:491.879514px;}
.y14_c02086{bottom:509.880090px;}
.y11_c02086{bottom:543.000342px;}
.y13_c02086{bottom:559.559874px;}
.y10_c02086{bottom:577.560450px;}
.y1e_c02086{bottom:596.639946px;}
.y1d_c02086{bottom:614.280450px;}
.yb_c02086{bottom:667.558326px;}
.yd_c02086{bottom:707.160234px;}
.yc_c02086{bottom:716.880450px;}
.ya_c02086{bottom:796.438506px;}
.y9_c02086{bottom:877.438722px;}
.y7_c02086{bottom:926.759730px;}
.y3_c02086{bottom:944.760306px;}
.y8_c02086{bottom:979.319226px;}
.y6_c02086{bottom:1012.439478px;}
.y5_c02086{bottom:1030.440054px;}
.y2_c02086{bottom:1063.560306px;}
.y4_c02086{bottom:1079.759874px;}
.y1_c02086{bottom:1097.760450px;}
.yf_c02086{bottom:1117.199946px;}
.ye_c02086{bottom:1134.840450px;}
.h3_c02086{height:32.530781px;}
.h1_c02086{height:41.696016px;}
.h2_c02086{height:41.812031px;}
.h5_c02086{height:53.067656px;}
.h4_c02086{height:54.654737px;}
.h0_c02086{height:1263.000000px;}
.w1_c02086{width:892.500000px;}
.w0_c02086{width:892.830000px;}
.x0_c02086{left:0.000000px;}
.xd_c02086{left:117.000000px;}
.xe_c02086{left:162.000144px;}
.x8_c02086{left:440.999856px;}
.x4_c02086{left:445.680576px;}
.xb_c02086{left:451.080000px;}
.x7_c02086{left:455.399604px;}
.x5_c02086{left:461.880144px;}
.x1_c02086{left:463.320000px;}
.xa_c02086{left:483.480360px;}
.x9_c02086{left:492.119496px;}
.x6_c02086{left:493.200576px;}
.xc_c02086{left:506.880360px;}
.x3_c02086{left:511.919892px;}
.x2_c02086{left:526.679604px;}
@media print{
.v0_c02086{vertical-align:0.000000pt;}
.v1_c02086{vertical-align:1.279488pt;}
.ls9_c02086{letter-spacing:-0.511104pt;}
.lsc_c02086{letter-spacing:-0.380160pt;}
.lsf_c02086{letter-spacing:-0.244992pt;}
.lsd_c02086{letter-spacing:-0.232320pt;}
.ls6_c02086{letter-spacing:-0.215424pt;}
.ls4_c02086{letter-spacing:-0.105600pt;}
.ls12_c02086{letter-spacing:0.000000pt;}
.ls1_c02086{letter-spacing:0.005376pt;}
.ls5_c02086{letter-spacing:0.114048pt;}
.ls7_c02086{letter-spacing:0.215424pt;}
.lsb_c02086{letter-spacing:0.451968pt;}
.ls11_c02086{letter-spacing:0.456960pt;}
.lse_c02086{letter-spacing:0.477312pt;}
.lsa_c02086{letter-spacing:0.515328pt;}
.ls10_c02086{letter-spacing:0.528000pt;}
.ls8_c02086{letter-spacing:0.532224pt;}
.ls2_c02086{letter-spacing:0.544896pt;}
.ls0_c02086{letter-spacing:0.637824pt;}
.ls3_c02086{letter-spacing:0.642048pt;}
.wsc_c02086{word-spacing:-13.445376pt;}
.wsa_c02086{word-spacing:-11.088000pt;}
.ws8_c02086{word-spacing:-11.075328pt;}
.ws9_c02086{word-spacing:-11.037312pt;}
.ws2_c02086{word-spacing:-10.775424pt;}
.ws10_c02086{word-spacing:-0.958848pt;}
.wsd_c02086{word-spacing:-0.865920pt;}
.ws14_c02086{word-spacing:-0.639744pt;}
.wsf_c02086{word-spacing:-0.105600pt;}
.ws12_c02086{word-spacing:-0.088704pt;}
.ws13_c02086{word-spacing:-0.076032pt;}
.wse_c02086{word-spacing:0.000000pt;}
.ws11_c02086{word-spacing:0.059136pt;}
.ws4_c02086{word-spacing:4.401408pt;}
.wsb_c02086{word-spacing:29.600256pt;}
.ws6_c02086{word-spacing:32.659968pt;}
.ws1_c02086{word-spacing:33.563904pt;}
.ws0_c02086{word-spacing:33.796224pt;}
.ws3_c02086{word-spacing:34.860672pt;}
.ws5_c02086{word-spacing:35.468928pt;}
.ws7_c02086{word-spacing:37.357056pt;}
._0_c02086{margin-left:-1.731840pt;}
._2_c02086{width:1.317888pt;}
._1_c02086{width:44.668800pt;}
._3_c02086{width:45.805056pt;}
.fs0_c02086{font-size:42.240000pt;}
.fs1_c02086{font-size:53.760000pt;}
.y0_c02086{bottom:0.000000pt;}
.y1a_c02086{bottom:130.665211pt;}
.y1c_c02086{bottom:165.866875pt;}
.y1b_c02086{bottom:174.507067pt;}
.y19_c02086{bottom:245.225371pt;}
.y18_c02086{bottom:317.225563pt;}
.y16_c02086{bottom:361.386427pt;}
.y12_c02086{bottom:377.386939pt;}
.y17_c02086{bottom:407.786011pt;}
.y15_c02086{bottom:437.226235pt;}
.y14_c02086{bottom:453.226747pt;}
.y11_c02086{bottom:482.666971pt;}
.y13_c02086{bottom:497.386555pt;}
.y10_c02086{bottom:513.387067pt;}
.y1e_c02086{bottom:530.346619pt;}
.y1d_c02086{bottom:546.027067pt;}
.yb_c02086{bottom:593.385179pt;}
.yd_c02086{bottom:628.586875pt;}
.yc_c02086{bottom:637.227067pt;}
.ya_c02086{bottom:707.945339pt;}
.y9_c02086{bottom:779.945531pt;}
.y7_c02086{bottom:823.786427pt;}
.y3_c02086{bottom:839.786939pt;}
.y8_c02086{bottom:870.505979pt;}
.y6_c02086{bottom:899.946203pt;}
.y5_c02086{bottom:915.946715pt;}
.y2_c02086{bottom:945.386939pt;}
.y4_c02086{bottom:959.786555pt;}
.y1_c02086{bottom:975.787067pt;}
.yf_c02086{bottom:993.066619pt;}
.ye_c02086{bottom:1008.747067pt;}
.h3_c02086{height:28.916250pt;}
.h1_c02086{height:37.063125pt;}
.h2_c02086{height:37.166250pt;}
.h5_c02086{height:47.171250pt;}
.h4_c02086{height:48.581988pt;}
.h0_c02086{height:1122.666667pt;}
.w1_c02086{width:793.333333pt;}
.w0_c02086{width:793.626667pt;}
.x0_c02086{left:0.000000pt;}
.xd_c02086{left:104.000000pt;}
.xe_c02086{left:144.000128pt;}
.x8_c02086{left:391.999872pt;}
.x4_c02086{left:396.160512pt;}
.xb_c02086{left:400.960000pt;}
.x7_c02086{left:404.799648pt;}
.x5_c02086{left:410.560128pt;}
.x1_c02086{left:411.840000pt;}
.xa_c02086{left:429.760320pt;}
.x9_c02086{left:437.439552pt;}
.x6_c02086{left:438.400512pt;}
.xc_c02086{left:450.560320pt;}
.x3_c02086{left:455.039904pt;}
.x2_c02086{left:468.159648pt;}
}





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

.ir_c02087:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02087{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02087;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02087{font-family:ff1_c02087;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02087;src:url('chunks/assets/font_75a6d734941e0f5d668f208a.woff2')format("woff");}.ff2_c02087{font-family:ff2_c02087;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02087;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02087{font-family:ff3_c02087;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02087{vertical-align:0.000000px;}
.v1_c02087{vertical-align:1.439424px;}
.ls7_c02087{letter-spacing:-0.613008px;}
.ls9_c02087{letter-spacing:-0.574992px;}
.lsc_c02087{letter-spacing:-0.427680px;}
.lsf_c02087{letter-spacing:-0.275616px;}
.lsd_c02087{letter-spacing:-0.261360px;}
.ls6_c02087{letter-spacing:-0.242352px;}
.ls4_c02087{letter-spacing:-0.118800px;}
.ls12_c02087{letter-spacing:0.000000px;}
.ls1_c02087{letter-spacing:0.006048px;}
.ls5_c02087{letter-spacing:0.128304px;}
.lsb_c02087{letter-spacing:0.508464px;}
.ls11_c02087{letter-spacing:0.514080px;}
.lse_c02087{letter-spacing:0.536976px;}
.lsa_c02087{letter-spacing:0.579744px;}
.ls10_c02087{letter-spacing:0.594000px;}
.ls8_c02087{letter-spacing:0.598752px;}
.ls2_c02087{letter-spacing:0.613008px;}
.ls0_c02087{letter-spacing:0.717552px;}
.ls3_c02087{letter-spacing:0.722304px;}
.sc__c02087{text-shadow:none;}
.sc0_c02087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02087{-webkit-text-stroke:0px transparent;}
.sc0_c02087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02087{word-spacing:-15.126048px;}
.wsa_c02087{word-spacing:-12.474000px;}
.ws8_c02087{word-spacing:-12.459744px;}
.ws9_c02087{word-spacing:-12.416976px;}
.ws2_c02087{word-spacing:-11.266992px;}
.ws10_c02087{word-spacing:-1.078704px;}
.wsd_c02087{word-spacing:-0.974160px;}
.ws14_c02087{word-spacing:-0.719712px;}
.wsf_c02087{word-spacing:-0.118800px;}
.ws12_c02087{word-spacing:-0.099792px;}
.ws13_c02087{word-spacing:-0.085536px;}
.wse_c02087{word-spacing:0.000000px;}
.ws11_c02087{word-spacing:0.066528px;}
.ws4_c02087{word-spacing:4.951584px;}
.wsb_c02087{word-spacing:33.300288px;}
.ws6_c02087{word-spacing:36.742464px;}
.ws1_c02087{word-spacing:37.759392px;}
.ws0_c02087{word-spacing:38.020752px;}
.ws3_c02087{word-spacing:39.218256px;}
.ws5_c02087{word-spacing:39.902544px;}
.ws7_c02087{word-spacing:42.026688px;}
._0_c02087{margin-left:-1.948320px;}
._2_c02087{width:1.482624px;}
._1_c02087{width:50.252400px;}
._3_c02087{width:51.530688px;}
.fc0_c02087{color:rgb(0,0,0);}
.fs0_c02087{font-size:47.520000px;}
.fs1_c02087{font-size:60.480000px;}
.y0_c02087{bottom:0.000000px;}
.y1a_c02087{bottom:146.998362px;}
.y1c_c02087{bottom:186.600234px;}
.y1b_c02087{bottom:196.320450px;}
.y19_c02087{bottom:275.878542px;}
.y18_c02087{bottom:356.878758px;}
.y16_c02087{bottom:406.559730px;}
.y12_c02087{bottom:424.560306px;}
.y17_c02087{bottom:458.759262px;}
.y15_c02087{bottom:491.879514px;}
.y14_c02087{bottom:509.880090px;}
.y11_c02087{bottom:543.000342px;}
.y13_c02087{bottom:559.559874px;}
.y10_c02087{bottom:577.560450px;}
.y1e_c02087{bottom:596.639946px;}
.y1d_c02087{bottom:614.280450px;}
.yb_c02087{bottom:667.558326px;}
.yd_c02087{bottom:707.160234px;}
.yc_c02087{bottom:716.880450px;}
.ya_c02087{bottom:796.438506px;}
.y9_c02087{bottom:877.438722px;}
.y7_c02087{bottom:926.759730px;}
.y3_c02087{bottom:944.760306px;}
.y8_c02087{bottom:979.319226px;}
.y6_c02087{bottom:1012.439478px;}
.y5_c02087{bottom:1030.440054px;}
.y2_c02087{bottom:1063.560306px;}
.y4_c02087{bottom:1079.759874px;}
.y1_c02087{bottom:1097.760450px;}
.yf_c02087{bottom:1117.199946px;}
.ye_c02087{bottom:1134.840450px;}
.h3_c02087{height:32.530781px;}
.h1_c02087{height:41.696016px;}
.h2_c02087{height:41.812031px;}
.h5_c02087{height:53.067656px;}
.h4_c02087{height:54.654737px;}
.h0_c02087{height:1263.000000px;}
.w1_c02087{width:892.500000px;}
.w0_c02087{width:892.830000px;}
.x0_c02087{left:0.000000px;}
.xd_c02087{left:117.000000px;}
.xe_c02087{left:162.000144px;}
.x8_c02087{left:440.999856px;}
.x4_c02087{left:445.680576px;}
.xb_c02087{left:451.080000px;}
.x7_c02087{left:455.399604px;}
.x5_c02087{left:461.880144px;}
.x1_c02087{left:463.320000px;}
.xa_c02087{left:483.480360px;}
.x9_c02087{left:492.119496px;}
.x6_c02087{left:493.200576px;}
.xc_c02087{left:506.880360px;}
.x3_c02087{left:511.919892px;}
.x2_c02087{left:526.679604px;}
@media print{
.v0_c02087{vertical-align:0.000000pt;}
.v1_c02087{vertical-align:1.279488pt;}
.ls7_c02087{letter-spacing:-0.544896pt;}
.ls9_c02087{letter-spacing:-0.511104pt;}
.lsc_c02087{letter-spacing:-0.380160pt;}
.lsf_c02087{letter-spacing:-0.244992pt;}
.lsd_c02087{letter-spacing:-0.232320pt;}
.ls6_c02087{letter-spacing:-0.215424pt;}
.ls4_c02087{letter-spacing:-0.105600pt;}
.ls12_c02087{letter-spacing:0.000000pt;}
.ls1_c02087{letter-spacing:0.005376pt;}
.ls5_c02087{letter-spacing:0.114048pt;}
.lsb_c02087{letter-spacing:0.451968pt;}
.ls11_c02087{letter-spacing:0.456960pt;}
.lse_c02087{letter-spacing:0.477312pt;}
.lsa_c02087{letter-spacing:0.515328pt;}
.ls10_c02087{letter-spacing:0.528000pt;}
.ls8_c02087{letter-spacing:0.532224pt;}
.ls2_c02087{letter-spacing:0.544896pt;}
.ls0_c02087{letter-spacing:0.637824pt;}
.ls3_c02087{letter-spacing:0.642048pt;}
.wsc_c02087{word-spacing:-13.445376pt;}
.wsa_c02087{word-spacing:-11.088000pt;}
.ws8_c02087{word-spacing:-11.075328pt;}
.ws9_c02087{word-spacing:-11.037312pt;}
.ws2_c02087{word-spacing:-10.015104pt;}
.ws10_c02087{word-spacing:-0.958848pt;}
.wsd_c02087{word-spacing:-0.865920pt;}
.ws14_c02087{word-spacing:-0.639744pt;}
.wsf_c02087{word-spacing:-0.105600pt;}
.ws12_c02087{word-spacing:-0.088704pt;}
.ws13_c02087{word-spacing:-0.076032pt;}
.wse_c02087{word-spacing:0.000000pt;}
.ws11_c02087{word-spacing:0.059136pt;}
.ws4_c02087{word-spacing:4.401408pt;}
.wsb_c02087{word-spacing:29.600256pt;}
.ws6_c02087{word-spacing:32.659968pt;}
.ws1_c02087{word-spacing:33.563904pt;}
.ws0_c02087{word-spacing:33.796224pt;}
.ws3_c02087{word-spacing:34.860672pt;}
.ws5_c02087{word-spacing:35.468928pt;}
.ws7_c02087{word-spacing:37.357056pt;}
._0_c02087{margin-left:-1.731840pt;}
._2_c02087{width:1.317888pt;}
._1_c02087{width:44.668800pt;}
._3_c02087{width:45.805056pt;}
.fs0_c02087{font-size:42.240000pt;}
.fs1_c02087{font-size:53.760000pt;}
.y0_c02087{bottom:0.000000pt;}
.y1a_c02087{bottom:130.665211pt;}
.y1c_c02087{bottom:165.866875pt;}
.y1b_c02087{bottom:174.507067pt;}
.y19_c02087{bottom:245.225371pt;}
.y18_c02087{bottom:317.225563pt;}
.y16_c02087{bottom:361.386427pt;}
.y12_c02087{bottom:377.386939pt;}
.y17_c02087{bottom:407.786011pt;}
.y15_c02087{bottom:437.226235pt;}
.y14_c02087{bottom:453.226747pt;}
.y11_c02087{bottom:482.666971pt;}
.y13_c02087{bottom:497.386555pt;}
.y10_c02087{bottom:513.387067pt;}
.y1e_c02087{bottom:530.346619pt;}
.y1d_c02087{bottom:546.027067pt;}
.yb_c02087{bottom:593.385179pt;}
.yd_c02087{bottom:628.586875pt;}
.yc_c02087{bottom:637.227067pt;}
.ya_c02087{bottom:707.945339pt;}
.y9_c02087{bottom:779.945531pt;}
.y7_c02087{bottom:823.786427pt;}
.y3_c02087{bottom:839.786939pt;}
.y8_c02087{bottom:870.505979pt;}
.y6_c02087{bottom:899.946203pt;}
.y5_c02087{bottom:915.946715pt;}
.y2_c02087{bottom:945.386939pt;}
.y4_c02087{bottom:959.786555pt;}
.y1_c02087{bottom:975.787067pt;}
.yf_c02087{bottom:993.066619pt;}
.ye_c02087{bottom:1008.747067pt;}
.h3_c02087{height:28.916250pt;}
.h1_c02087{height:37.063125pt;}
.h2_c02087{height:37.166250pt;}
.h5_c02087{height:47.171250pt;}
.h4_c02087{height:48.581988pt;}
.h0_c02087{height:1122.666667pt;}
.w1_c02087{width:793.333333pt;}
.w0_c02087{width:793.626667pt;}
.x0_c02087{left:0.000000pt;}
.xd_c02087{left:104.000000pt;}
.xe_c02087{left:144.000128pt;}
.x8_c02087{left:391.999872pt;}
.x4_c02087{left:396.160512pt;}
.xb_c02087{left:400.960000pt;}
.x7_c02087{left:404.799648pt;}
.x5_c02087{left:410.560128pt;}
.x1_c02087{left:411.840000pt;}
.xa_c02087{left:429.760320pt;}
.x9_c02087{left:437.439552pt;}
.x6_c02087{left:438.400512pt;}
.xc_c02087{left:450.560320pt;}
.x3_c02087{left:455.039904pt;}
.x2_c02087{left:468.159648pt;}
}





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

.ir_c02088:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02088{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02088;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02088{font-family:ff1_c02088;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02088;src:url('chunks/assets/font_615a77f5c944e3e51650eec1.woff2')format("woff");}.ff2_c02088{font-family:ff2_c02088;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02088;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02088{font-family:ff3_c02088;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02088{vertical-align:0.000000px;}
.v1_c02088{vertical-align:1.439424px;}
.ls8_c02088{letter-spacing:-0.613008px;}
.lsa_c02088{letter-spacing:-0.574992px;}
.ls10_c02088{letter-spacing:-0.275616px;}
.lse_c02088{letter-spacing:-0.261360px;}
.ls7_c02088{letter-spacing:-0.242352px;}
.ls5_c02088{letter-spacing:-0.118800px;}
.ls13_c02088{letter-spacing:0.000000px;}
.ls2_c02088{letter-spacing:0.006048px;}
.ls6_c02088{letter-spacing:0.128304px;}
.lsd_c02088{letter-spacing:0.242352px;}
.lsc_c02088{letter-spacing:0.508464px;}
.ls12_c02088{letter-spacing:0.514080px;}
.lsf_c02088{letter-spacing:0.536976px;}
.lsb_c02088{letter-spacing:0.579744px;}
.ls11_c02088{letter-spacing:0.594000px;}
.ls9_c02088{letter-spacing:0.598752px;}
.ls3_c02088{letter-spacing:0.613008px;}
.ls0_c02088{letter-spacing:0.651024px;}
.ls1_c02088{letter-spacing:0.717552px;}
.ls4_c02088{letter-spacing:0.722304px;}
.sc__c02088{text-shadow:none;}
.sc0_c02088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02088{-webkit-text-stroke:0px transparent;}
.sc0_c02088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02088{word-spacing:-15.126048px;}
.wsa_c02088{word-spacing:-12.474000px;}
.ws8_c02088{word-spacing:-12.459744px;}
.ws9_c02088{word-spacing:-12.416976px;}
.ws2_c02088{word-spacing:-11.266992px;}
.ws11_c02088{word-spacing:-1.078704px;}
.wsf_c02088{word-spacing:-1.012176px;}
.wsd_c02088{word-spacing:-0.974160px;}
.ws14_c02088{word-spacing:-0.719712px;}
.ws10_c02088{word-spacing:-0.118800px;}
.ws12_c02088{word-spacing:-0.099792px;}
.ws13_c02088{word-spacing:-0.085536px;}
.wse_c02088{word-spacing:0.000000px;}
.ws4_c02088{word-spacing:4.951584px;}
.wsb_c02088{word-spacing:33.300288px;}
.ws6_c02088{word-spacing:36.742464px;}
.ws1_c02088{word-spacing:37.759392px;}
.ws0_c02088{word-spacing:38.020752px;}
.ws3_c02088{word-spacing:39.218256px;}
.ws5_c02088{word-spacing:39.902544px;}
.ws7_c02088{word-spacing:42.026688px;}
._0_c02088{margin-left:-1.948320px;}
._2_c02088{width:1.482624px;}
._1_c02088{width:50.252400px;}
._3_c02088{width:51.530688px;}
.fc0_c02088{color:rgb(0,0,0);}
.fs0_c02088{font-size:47.520000px;}
.fs1_c02088{font-size:60.480000px;}
.y0_c02088{bottom:0.000000px;}
.y1a_c02088{bottom:146.998362px;}
.y1c_c02088{bottom:186.600234px;}
.y1b_c02088{bottom:196.320450px;}
.y19_c02088{bottom:275.878542px;}
.y18_c02088{bottom:356.878758px;}
.y16_c02088{bottom:406.559730px;}
.y12_c02088{bottom:424.560306px;}
.y17_c02088{bottom:458.759262px;}
.y15_c02088{bottom:491.879514px;}
.y14_c02088{bottom:509.880090px;}
.y11_c02088{bottom:543.000342px;}
.y13_c02088{bottom:559.559874px;}
.y10_c02088{bottom:577.560450px;}
.y1e_c02088{bottom:596.639946px;}
.y1d_c02088{bottom:614.280450px;}
.yb_c02088{bottom:667.558326px;}
.yd_c02088{bottom:707.160234px;}
.yc_c02088{bottom:716.880450px;}
.ya_c02088{bottom:796.438506px;}
.y9_c02088{bottom:877.438722px;}
.y7_c02088{bottom:926.759730px;}
.y3_c02088{bottom:944.760306px;}
.y8_c02088{bottom:979.319226px;}
.y6_c02088{bottom:1012.439478px;}
.y5_c02088{bottom:1030.440054px;}
.y2_c02088{bottom:1063.560306px;}
.y4_c02088{bottom:1079.759874px;}
.y1_c02088{bottom:1097.760450px;}
.yf_c02088{bottom:1117.199946px;}
.ye_c02088{bottom:1134.840450px;}
.h3_c02088{height:32.530781px;}
.h1_c02088{height:41.696016px;}
.h2_c02088{height:41.812031px;}
.h5_c02088{height:53.067656px;}
.h4_c02088{height:54.654737px;}
.h0_c02088{height:1263.000000px;}
.w1_c02088{width:892.500000px;}
.w0_c02088{width:892.830000px;}
.x0_c02088{left:0.000000px;}
.xd_c02088{left:117.000000px;}
.xe_c02088{left:162.000144px;}
.x8_c02088{left:440.999856px;}
.x4_c02088{left:445.680576px;}
.xb_c02088{left:451.080000px;}
.x7_c02088{left:455.399604px;}
.x5_c02088{left:461.880144px;}
.x1_c02088{left:463.320000px;}
.xa_c02088{left:483.480360px;}
.x9_c02088{left:492.119496px;}
.x6_c02088{left:493.200576px;}
.xc_c02088{left:506.880360px;}
.x3_c02088{left:511.919892px;}
.x2_c02088{left:526.679604px;}
@media print{
.v0_c02088{vertical-align:0.000000pt;}
.v1_c02088{vertical-align:1.279488pt;}
.ls8_c02088{letter-spacing:-0.544896pt;}
.lsa_c02088{letter-spacing:-0.511104pt;}
.ls10_c02088{letter-spacing:-0.244992pt;}
.lse_c02088{letter-spacing:-0.232320pt;}
.ls7_c02088{letter-spacing:-0.215424pt;}
.ls5_c02088{letter-spacing:-0.105600pt;}
.ls13_c02088{letter-spacing:0.000000pt;}
.ls2_c02088{letter-spacing:0.005376pt;}
.ls6_c02088{letter-spacing:0.114048pt;}
.lsd_c02088{letter-spacing:0.215424pt;}
.lsc_c02088{letter-spacing:0.451968pt;}
.ls12_c02088{letter-spacing:0.456960pt;}
.lsf_c02088{letter-spacing:0.477312pt;}
.lsb_c02088{letter-spacing:0.515328pt;}
.ls11_c02088{letter-spacing:0.528000pt;}
.ls9_c02088{letter-spacing:0.532224pt;}
.ls3_c02088{letter-spacing:0.544896pt;}
.ls0_c02088{letter-spacing:0.578688pt;}
.ls1_c02088{letter-spacing:0.637824pt;}
.ls4_c02088{letter-spacing:0.642048pt;}
.wsc_c02088{word-spacing:-13.445376pt;}
.wsa_c02088{word-spacing:-11.088000pt;}
.ws8_c02088{word-spacing:-11.075328pt;}
.ws9_c02088{word-spacing:-11.037312pt;}
.ws2_c02088{word-spacing:-10.015104pt;}
.ws11_c02088{word-spacing:-0.958848pt;}
.wsf_c02088{word-spacing:-0.899712pt;}
.wsd_c02088{word-spacing:-0.865920pt;}
.ws14_c02088{word-spacing:-0.639744pt;}
.ws10_c02088{word-spacing:-0.105600pt;}
.ws12_c02088{word-spacing:-0.088704pt;}
.ws13_c02088{word-spacing:-0.076032pt;}
.wse_c02088{word-spacing:0.000000pt;}
.ws4_c02088{word-spacing:4.401408pt;}
.wsb_c02088{word-spacing:29.600256pt;}
.ws6_c02088{word-spacing:32.659968pt;}
.ws1_c02088{word-spacing:33.563904pt;}
.ws0_c02088{word-spacing:33.796224pt;}
.ws3_c02088{word-spacing:34.860672pt;}
.ws5_c02088{word-spacing:35.468928pt;}
.ws7_c02088{word-spacing:37.357056pt;}
._0_c02088{margin-left:-1.731840pt;}
._2_c02088{width:1.317888pt;}
._1_c02088{width:44.668800pt;}
._3_c02088{width:45.805056pt;}
.fs0_c02088{font-size:42.240000pt;}
.fs1_c02088{font-size:53.760000pt;}
.y0_c02088{bottom:0.000000pt;}
.y1a_c02088{bottom:130.665211pt;}
.y1c_c02088{bottom:165.866875pt;}
.y1b_c02088{bottom:174.507067pt;}
.y19_c02088{bottom:245.225371pt;}
.y18_c02088{bottom:317.225563pt;}
.y16_c02088{bottom:361.386427pt;}
.y12_c02088{bottom:377.386939pt;}
.y17_c02088{bottom:407.786011pt;}
.y15_c02088{bottom:437.226235pt;}
.y14_c02088{bottom:453.226747pt;}
.y11_c02088{bottom:482.666971pt;}
.y13_c02088{bottom:497.386555pt;}
.y10_c02088{bottom:513.387067pt;}
.y1e_c02088{bottom:530.346619pt;}
.y1d_c02088{bottom:546.027067pt;}
.yb_c02088{bottom:593.385179pt;}
.yd_c02088{bottom:628.586875pt;}
.yc_c02088{bottom:637.227067pt;}
.ya_c02088{bottom:707.945339pt;}
.y9_c02088{bottom:779.945531pt;}
.y7_c02088{bottom:823.786427pt;}
.y3_c02088{bottom:839.786939pt;}
.y8_c02088{bottom:870.505979pt;}
.y6_c02088{bottom:899.946203pt;}
.y5_c02088{bottom:915.946715pt;}
.y2_c02088{bottom:945.386939pt;}
.y4_c02088{bottom:959.786555pt;}
.y1_c02088{bottom:975.787067pt;}
.yf_c02088{bottom:993.066619pt;}
.ye_c02088{bottom:1008.747067pt;}
.h3_c02088{height:28.916250pt;}
.h1_c02088{height:37.063125pt;}
.h2_c02088{height:37.166250pt;}
.h5_c02088{height:47.171250pt;}
.h4_c02088{height:48.581988pt;}
.h0_c02088{height:1122.666667pt;}
.w1_c02088{width:793.333333pt;}
.w0_c02088{width:793.626667pt;}
.x0_c02088{left:0.000000pt;}
.xd_c02088{left:104.000000pt;}
.xe_c02088{left:144.000128pt;}
.x8_c02088{left:391.999872pt;}
.x4_c02088{left:396.160512pt;}
.xb_c02088{left:400.960000pt;}
.x7_c02088{left:404.799648pt;}
.x5_c02088{left:410.560128pt;}
.x1_c02088{left:411.840000pt;}
.xa_c02088{left:429.760320pt;}
.x9_c02088{left:437.439552pt;}
.x6_c02088{left:438.400512pt;}
.xc_c02088{left:450.560320pt;}
.x3_c02088{left:455.039904pt;}
.x2_c02088{left:468.159648pt;}
}





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

.ir_c02089:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02089{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02089;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02089{font-family:ff1_c02089;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02089;src:url('chunks/assets/font_acfc9edbe4f35011a4656732.woff2')format("woff");}.ff2_c02089{font-family:ff2_c02089;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02089;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02089{font-family:ff3_c02089;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02089{vertical-align:0.000000px;}
.v1_c02089{vertical-align:1.439424px;}
.ls8_c02089{letter-spacing:-0.613008px;}
.lsa_c02089{letter-spacing:-0.574992px;}
.ls14_c02089{letter-spacing:-0.427680px;}
.ls10_c02089{letter-spacing:-0.275616px;}
.lse_c02089{letter-spacing:-0.261360px;}
.ls7_c02089{letter-spacing:-0.242352px;}
.ls5_c02089{letter-spacing:-0.118800px;}
.ls13_c02089{letter-spacing:0.000000px;}
.ls2_c02089{letter-spacing:0.006048px;}
.ls6_c02089{letter-spacing:0.128304px;}
.lsd_c02089{letter-spacing:0.242352px;}
.lsc_c02089{letter-spacing:0.508464px;}
.ls12_c02089{letter-spacing:0.514080px;}
.lsf_c02089{letter-spacing:0.536976px;}
.lsb_c02089{letter-spacing:0.579744px;}
.ls11_c02089{letter-spacing:0.594000px;}
.ls9_c02089{letter-spacing:0.598752px;}
.ls3_c02089{letter-spacing:0.613008px;}
.ls0_c02089{letter-spacing:0.651024px;}
.ls1_c02089{letter-spacing:0.717552px;}
.ls4_c02089{letter-spacing:0.722304px;}
.sc__c02089{text-shadow:none;}
.sc0_c02089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02089{-webkit-text-stroke:0px transparent;}
.sc0_c02089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02089{word-spacing:-15.126048px;}
.wsa_c02089{word-spacing:-12.474000px;}
.ws8_c02089{word-spacing:-12.459744px;}
.ws9_c02089{word-spacing:-12.416976px;}
.ws2_c02089{word-spacing:-11.266992px;}
.ws11_c02089{word-spacing:-1.078704px;}
.wsf_c02089{word-spacing:-1.012176px;}
.wsd_c02089{word-spacing:-0.974160px;}
.ws14_c02089{word-spacing:-0.719712px;}
.ws10_c02089{word-spacing:-0.118800px;}
.ws12_c02089{word-spacing:-0.099792px;}
.ws13_c02089{word-spacing:-0.085536px;}
.wse_c02089{word-spacing:0.000000px;}
.ws15_c02089{word-spacing:0.066528px;}
.ws4_c02089{word-spacing:4.951584px;}
.wsb_c02089{word-spacing:33.300288px;}
.ws6_c02089{word-spacing:36.742464px;}
.ws1_c02089{word-spacing:37.759392px;}
.ws0_c02089{word-spacing:38.020752px;}
.ws3_c02089{word-spacing:39.218256px;}
.ws5_c02089{word-spacing:39.902544px;}
.ws7_c02089{word-spacing:42.026688px;}
._0_c02089{margin-left:-1.948320px;}
._2_c02089{width:1.482624px;}
._1_c02089{width:50.252400px;}
._3_c02089{width:51.530688px;}
.fc0_c02089{color:rgb(0,0,0);}
.fs0_c02089{font-size:47.520000px;}
.fs1_c02089{font-size:60.480000px;}
.y0_c02089{bottom:0.000000px;}
.y1a_c02089{bottom:146.998362px;}
.y1c_c02089{bottom:186.600234px;}
.y1b_c02089{bottom:196.320450px;}
.y19_c02089{bottom:275.878542px;}
.y18_c02089{bottom:356.878758px;}
.y16_c02089{bottom:406.559730px;}
.y12_c02089{bottom:424.560306px;}
.y17_c02089{bottom:458.759262px;}
.y15_c02089{bottom:491.879514px;}
.y14_c02089{bottom:509.880090px;}
.y11_c02089{bottom:543.000342px;}
.y13_c02089{bottom:559.559874px;}
.y10_c02089{bottom:577.560450px;}
.y1e_c02089{bottom:596.639946px;}
.y1d_c02089{bottom:614.280450px;}
.yb_c02089{bottom:667.558326px;}
.yd_c02089{bottom:707.160234px;}
.yc_c02089{bottom:716.880450px;}
.ya_c02089{bottom:796.438506px;}
.y9_c02089{bottom:877.438722px;}
.y7_c02089{bottom:926.759730px;}
.y3_c02089{bottom:944.760306px;}
.y8_c02089{bottom:979.319226px;}
.y6_c02089{bottom:1012.439478px;}
.y5_c02089{bottom:1030.440054px;}
.y2_c02089{bottom:1063.560306px;}
.y4_c02089{bottom:1079.759874px;}
.y1_c02089{bottom:1097.760450px;}
.yf_c02089{bottom:1117.199946px;}
.ye_c02089{bottom:1134.840450px;}
.h3_c02089{height:32.530781px;}
.h1_c02089{height:41.696016px;}
.h2_c02089{height:41.812031px;}
.h5_c02089{height:53.067656px;}
.h4_c02089{height:54.654737px;}
.h0_c02089{height:1263.000000px;}
.w1_c02089{width:892.500000px;}
.w0_c02089{width:892.830000px;}
.x0_c02089{left:0.000000px;}
.xd_c02089{left:117.000000px;}
.xe_c02089{left:162.000144px;}
.x8_c02089{left:440.999856px;}
.x4_c02089{left:445.680576px;}
.xb_c02089{left:451.080000px;}
.x7_c02089{left:455.399604px;}
.x5_c02089{left:461.880144px;}
.x1_c02089{left:463.320000px;}
.xa_c02089{left:483.480360px;}
.x9_c02089{left:492.119496px;}
.x6_c02089{left:493.200576px;}
.xc_c02089{left:506.880360px;}
.x3_c02089{left:511.919892px;}
.x2_c02089{left:526.679604px;}
@media print{
.v0_c02089{vertical-align:0.000000pt;}
.v1_c02089{vertical-align:1.279488pt;}
.ls8_c02089{letter-spacing:-0.544896pt;}
.lsa_c02089{letter-spacing:-0.511104pt;}
.ls14_c02089{letter-spacing:-0.380160pt;}
.ls10_c02089{letter-spacing:-0.244992pt;}
.lse_c02089{letter-spacing:-0.232320pt;}
.ls7_c02089{letter-spacing:-0.215424pt;}
.ls5_c02089{letter-spacing:-0.105600pt;}
.ls13_c02089{letter-spacing:0.000000pt;}
.ls2_c02089{letter-spacing:0.005376pt;}
.ls6_c02089{letter-spacing:0.114048pt;}
.lsd_c02089{letter-spacing:0.215424pt;}
.lsc_c02089{letter-spacing:0.451968pt;}
.ls12_c02089{letter-spacing:0.456960pt;}
.lsf_c02089{letter-spacing:0.477312pt;}
.lsb_c02089{letter-spacing:0.515328pt;}
.ls11_c02089{letter-spacing:0.528000pt;}
.ls9_c02089{letter-spacing:0.532224pt;}
.ls3_c02089{letter-spacing:0.544896pt;}
.ls0_c02089{letter-spacing:0.578688pt;}
.ls1_c02089{letter-spacing:0.637824pt;}
.ls4_c02089{letter-spacing:0.642048pt;}
.wsc_c02089{word-spacing:-13.445376pt;}
.wsa_c02089{word-spacing:-11.088000pt;}
.ws8_c02089{word-spacing:-11.075328pt;}
.ws9_c02089{word-spacing:-11.037312pt;}
.ws2_c02089{word-spacing:-10.015104pt;}
.ws11_c02089{word-spacing:-0.958848pt;}
.wsf_c02089{word-spacing:-0.899712pt;}
.wsd_c02089{word-spacing:-0.865920pt;}
.ws14_c02089{word-spacing:-0.639744pt;}
.ws10_c02089{word-spacing:-0.105600pt;}
.ws12_c02089{word-spacing:-0.088704pt;}
.ws13_c02089{word-spacing:-0.076032pt;}
.wse_c02089{word-spacing:0.000000pt;}
.ws15_c02089{word-spacing:0.059136pt;}
.ws4_c02089{word-spacing:4.401408pt;}
.wsb_c02089{word-spacing:29.600256pt;}
.ws6_c02089{word-spacing:32.659968pt;}
.ws1_c02089{word-spacing:33.563904pt;}
.ws0_c02089{word-spacing:33.796224pt;}
.ws3_c02089{word-spacing:34.860672pt;}
.ws5_c02089{word-spacing:35.468928pt;}
.ws7_c02089{word-spacing:37.357056pt;}
._0_c02089{margin-left:-1.731840pt;}
._2_c02089{width:1.317888pt;}
._1_c02089{width:44.668800pt;}
._3_c02089{width:45.805056pt;}
.fs0_c02089{font-size:42.240000pt;}
.fs1_c02089{font-size:53.760000pt;}
.y0_c02089{bottom:0.000000pt;}
.y1a_c02089{bottom:130.665211pt;}
.y1c_c02089{bottom:165.866875pt;}
.y1b_c02089{bottom:174.507067pt;}
.y19_c02089{bottom:245.225371pt;}
.y18_c02089{bottom:317.225563pt;}
.y16_c02089{bottom:361.386427pt;}
.y12_c02089{bottom:377.386939pt;}
.y17_c02089{bottom:407.786011pt;}
.y15_c02089{bottom:437.226235pt;}
.y14_c02089{bottom:453.226747pt;}
.y11_c02089{bottom:482.666971pt;}
.y13_c02089{bottom:497.386555pt;}
.y10_c02089{bottom:513.387067pt;}
.y1e_c02089{bottom:530.346619pt;}
.y1d_c02089{bottom:546.027067pt;}
.yb_c02089{bottom:593.385179pt;}
.yd_c02089{bottom:628.586875pt;}
.yc_c02089{bottom:637.227067pt;}
.ya_c02089{bottom:707.945339pt;}
.y9_c02089{bottom:779.945531pt;}
.y7_c02089{bottom:823.786427pt;}
.y3_c02089{bottom:839.786939pt;}
.y8_c02089{bottom:870.505979pt;}
.y6_c02089{bottom:899.946203pt;}
.y5_c02089{bottom:915.946715pt;}
.y2_c02089{bottom:945.386939pt;}
.y4_c02089{bottom:959.786555pt;}
.y1_c02089{bottom:975.787067pt;}
.yf_c02089{bottom:993.066619pt;}
.ye_c02089{bottom:1008.747067pt;}
.h3_c02089{height:28.916250pt;}
.h1_c02089{height:37.063125pt;}
.h2_c02089{height:37.166250pt;}
.h5_c02089{height:47.171250pt;}
.h4_c02089{height:48.581988pt;}
.h0_c02089{height:1122.666667pt;}
.w1_c02089{width:793.333333pt;}
.w0_c02089{width:793.626667pt;}
.x0_c02089{left:0.000000pt;}
.xd_c02089{left:104.000000pt;}
.xe_c02089{left:144.000128pt;}
.x8_c02089{left:391.999872pt;}
.x4_c02089{left:396.160512pt;}
.xb_c02089{left:400.960000pt;}
.x7_c02089{left:404.799648pt;}
.x5_c02089{left:410.560128pt;}
.x1_c02089{left:411.840000pt;}
.xa_c02089{left:429.760320pt;}
.x9_c02089{left:437.439552pt;}
.x6_c02089{left:438.400512pt;}
.xc_c02089{left:450.560320pt;}
.x3_c02089{left:455.039904pt;}
.x2_c02089{left:468.159648pt;}
}





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

.ir_c02090:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02090;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02090{font-family:ff1_c02090;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02090;src:url('chunks/assets/font_f035b2fcebc87c2ae47ff59e.woff2')format("woff");}.ff2_c02090{font-family:ff2_c02090;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02090;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02090{font-family:ff3_c02090;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02090{vertical-align:0.000000px;}
.v1_c02090{vertical-align:1.439424px;}
.ls7_c02090{letter-spacing:-0.613008px;}
.ls9_c02090{letter-spacing:-0.574992px;}
.lsc_c02090{letter-spacing:-0.427680px;}
.lsf_c02090{letter-spacing:-0.275616px;}
.lsd_c02090{letter-spacing:-0.261360px;}
.ls6_c02090{letter-spacing:-0.242352px;}
.ls4_c02090{letter-spacing:-0.118800px;}
.ls12_c02090{letter-spacing:0.000000px;}
.ls1_c02090{letter-spacing:0.006048px;}
.ls5_c02090{letter-spacing:0.128304px;}
.lsb_c02090{letter-spacing:0.508464px;}
.ls11_c02090{letter-spacing:0.514080px;}
.lse_c02090{letter-spacing:0.536976px;}
.lsa_c02090{letter-spacing:0.579744px;}
.ls10_c02090{letter-spacing:0.594000px;}
.ls8_c02090{letter-spacing:0.598752px;}
.ls2_c02090{letter-spacing:0.613008px;}
.ls0_c02090{letter-spacing:0.717552px;}
.ls3_c02090{letter-spacing:0.722304px;}
.sc__c02090{text-shadow:none;}
.sc0_c02090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02090{-webkit-text-stroke:0px transparent;}
.sc0_c02090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02090{word-spacing:-15.126048px;}
.wsa_c02090{word-spacing:-12.474000px;}
.ws8_c02090{word-spacing:-12.459744px;}
.ws9_c02090{word-spacing:-12.416976px;}
.ws2_c02090{word-spacing:-11.266992px;}
.ws10_c02090{word-spacing:-1.078704px;}
.wsd_c02090{word-spacing:-0.974160px;}
.ws14_c02090{word-spacing:-0.719712px;}
.wsf_c02090{word-spacing:-0.118800px;}
.ws12_c02090{word-spacing:-0.099792px;}
.ws13_c02090{word-spacing:-0.085536px;}
.wse_c02090{word-spacing:0.000000px;}
.ws11_c02090{word-spacing:0.066528px;}
.ws4_c02090{word-spacing:4.951584px;}
.wsb_c02090{word-spacing:33.300288px;}
.ws6_c02090{word-spacing:36.742464px;}
.ws1_c02090{word-spacing:37.759392px;}
.ws0_c02090{word-spacing:38.020752px;}
.ws3_c02090{word-spacing:39.218256px;}
.ws5_c02090{word-spacing:39.902544px;}
.ws7_c02090{word-spacing:42.026688px;}
._0_c02090{margin-left:-1.948320px;}
._2_c02090{width:1.482624px;}
._1_c02090{width:50.252400px;}
._3_c02090{width:51.530688px;}
.fc0_c02090{color:rgb(0,0,0);}
.fs0_c02090{font-size:47.520000px;}
.fs1_c02090{font-size:60.480000px;}
.y0_c02090{bottom:0.000000px;}
.y1a_c02090{bottom:146.998362px;}
.y1c_c02090{bottom:186.600234px;}
.y1b_c02090{bottom:196.320450px;}
.y19_c02090{bottom:275.878542px;}
.y18_c02090{bottom:356.878758px;}
.y16_c02090{bottom:406.559730px;}
.y12_c02090{bottom:424.560306px;}
.y17_c02090{bottom:458.759262px;}
.y15_c02090{bottom:491.879514px;}
.y14_c02090{bottom:509.880090px;}
.y11_c02090{bottom:543.000342px;}
.y13_c02090{bottom:559.559874px;}
.y10_c02090{bottom:577.560450px;}
.y1e_c02090{bottom:596.639946px;}
.y1d_c02090{bottom:614.280450px;}
.yb_c02090{bottom:667.558326px;}
.yd_c02090{bottom:707.160234px;}
.yc_c02090{bottom:716.880450px;}
.ya_c02090{bottom:796.438506px;}
.y9_c02090{bottom:877.438722px;}
.y7_c02090{bottom:926.759730px;}
.y3_c02090{bottom:944.760306px;}
.y8_c02090{bottom:979.319226px;}
.y6_c02090{bottom:1012.439478px;}
.y5_c02090{bottom:1030.440054px;}
.y2_c02090{bottom:1063.560306px;}
.y4_c02090{bottom:1079.759874px;}
.y1_c02090{bottom:1097.760450px;}
.yf_c02090{bottom:1117.199946px;}
.ye_c02090{bottom:1134.840450px;}
.h3_c02090{height:32.530781px;}
.h1_c02090{height:41.696016px;}
.h2_c02090{height:41.812031px;}
.h5_c02090{height:53.067656px;}
.h4_c02090{height:54.654737px;}
.h0_c02090{height:1263.000000px;}
.w1_c02090{width:892.500000px;}
.w0_c02090{width:892.830000px;}
.x0_c02090{left:0.000000px;}
.xd_c02090{left:117.000000px;}
.xe_c02090{left:162.000144px;}
.x8_c02090{left:440.999856px;}
.x4_c02090{left:445.680576px;}
.xb_c02090{left:451.080000px;}
.x7_c02090{left:455.399604px;}
.x5_c02090{left:461.880144px;}
.x1_c02090{left:463.320000px;}
.xa_c02090{left:483.480360px;}
.x9_c02090{left:492.119496px;}
.x6_c02090{left:493.200576px;}
.xc_c02090{left:506.880360px;}
.x3_c02090{left:511.919892px;}
.x2_c02090{left:526.679604px;}
@media print{
.v0_c02090{vertical-align:0.000000pt;}
.v1_c02090{vertical-align:1.279488pt;}
.ls7_c02090{letter-spacing:-0.544896pt;}
.ls9_c02090{letter-spacing:-0.511104pt;}
.lsc_c02090{letter-spacing:-0.380160pt;}
.lsf_c02090{letter-spacing:-0.244992pt;}
.lsd_c02090{letter-spacing:-0.232320pt;}
.ls6_c02090{letter-spacing:-0.215424pt;}
.ls4_c02090{letter-spacing:-0.105600pt;}
.ls12_c02090{letter-spacing:0.000000pt;}
.ls1_c02090{letter-spacing:0.005376pt;}
.ls5_c02090{letter-spacing:0.114048pt;}
.lsb_c02090{letter-spacing:0.451968pt;}
.ls11_c02090{letter-spacing:0.456960pt;}
.lse_c02090{letter-spacing:0.477312pt;}
.lsa_c02090{letter-spacing:0.515328pt;}
.ls10_c02090{letter-spacing:0.528000pt;}
.ls8_c02090{letter-spacing:0.532224pt;}
.ls2_c02090{letter-spacing:0.544896pt;}
.ls0_c02090{letter-spacing:0.637824pt;}
.ls3_c02090{letter-spacing:0.642048pt;}
.wsc_c02090{word-spacing:-13.445376pt;}
.wsa_c02090{word-spacing:-11.088000pt;}
.ws8_c02090{word-spacing:-11.075328pt;}
.ws9_c02090{word-spacing:-11.037312pt;}
.ws2_c02090{word-spacing:-10.015104pt;}
.ws10_c02090{word-spacing:-0.958848pt;}
.wsd_c02090{word-spacing:-0.865920pt;}
.ws14_c02090{word-spacing:-0.639744pt;}
.wsf_c02090{word-spacing:-0.105600pt;}
.ws12_c02090{word-spacing:-0.088704pt;}
.ws13_c02090{word-spacing:-0.076032pt;}
.wse_c02090{word-spacing:0.000000pt;}
.ws11_c02090{word-spacing:0.059136pt;}
.ws4_c02090{word-spacing:4.401408pt;}
.wsb_c02090{word-spacing:29.600256pt;}
.ws6_c02090{word-spacing:32.659968pt;}
.ws1_c02090{word-spacing:33.563904pt;}
.ws0_c02090{word-spacing:33.796224pt;}
.ws3_c02090{word-spacing:34.860672pt;}
.ws5_c02090{word-spacing:35.468928pt;}
.ws7_c02090{word-spacing:37.357056pt;}
._0_c02090{margin-left:-1.731840pt;}
._2_c02090{width:1.317888pt;}
._1_c02090{width:44.668800pt;}
._3_c02090{width:45.805056pt;}
.fs0_c02090{font-size:42.240000pt;}
.fs1_c02090{font-size:53.760000pt;}
.y0_c02090{bottom:0.000000pt;}
.y1a_c02090{bottom:130.665211pt;}
.y1c_c02090{bottom:165.866875pt;}
.y1b_c02090{bottom:174.507067pt;}
.y19_c02090{bottom:245.225371pt;}
.y18_c02090{bottom:317.225563pt;}
.y16_c02090{bottom:361.386427pt;}
.y12_c02090{bottom:377.386939pt;}
.y17_c02090{bottom:407.786011pt;}
.y15_c02090{bottom:437.226235pt;}
.y14_c02090{bottom:453.226747pt;}
.y11_c02090{bottom:482.666971pt;}
.y13_c02090{bottom:497.386555pt;}
.y10_c02090{bottom:513.387067pt;}
.y1e_c02090{bottom:530.346619pt;}
.y1d_c02090{bottom:546.027067pt;}
.yb_c02090{bottom:593.385179pt;}
.yd_c02090{bottom:628.586875pt;}
.yc_c02090{bottom:637.227067pt;}
.ya_c02090{bottom:707.945339pt;}
.y9_c02090{bottom:779.945531pt;}
.y7_c02090{bottom:823.786427pt;}
.y3_c02090{bottom:839.786939pt;}
.y8_c02090{bottom:870.505979pt;}
.y6_c02090{bottom:899.946203pt;}
.y5_c02090{bottom:915.946715pt;}
.y2_c02090{bottom:945.386939pt;}
.y4_c02090{bottom:959.786555pt;}
.y1_c02090{bottom:975.787067pt;}
.yf_c02090{bottom:993.066619pt;}
.ye_c02090{bottom:1008.747067pt;}
.h3_c02090{height:28.916250pt;}
.h1_c02090{height:37.063125pt;}
.h2_c02090{height:37.166250pt;}
.h5_c02090{height:47.171250pt;}
.h4_c02090{height:48.581988pt;}
.h0_c02090{height:1122.666667pt;}
.w1_c02090{width:793.333333pt;}
.w0_c02090{width:793.626667pt;}
.x0_c02090{left:0.000000pt;}
.xd_c02090{left:104.000000pt;}
.xe_c02090{left:144.000128pt;}
.x8_c02090{left:391.999872pt;}
.x4_c02090{left:396.160512pt;}
.xb_c02090{left:400.960000pt;}
.x7_c02090{left:404.799648pt;}
.x5_c02090{left:410.560128pt;}
.x1_c02090{left:411.840000pt;}
.xa_c02090{left:429.760320pt;}
.x9_c02090{left:437.439552pt;}
.x6_c02090{left:438.400512pt;}
.xc_c02090{left:450.560320pt;}
.x3_c02090{left:455.039904pt;}
.x2_c02090{left:468.159648pt;}
}





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

.ir_c02091:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02091{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02091;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02091{font-family:ff1_c02091;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02091;src:url('chunks/assets/font_a9fdb07d32d2e97f5010876d.woff2')format("woff");}.ff2_c02091{font-family:ff2_c02091;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02091;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02091{font-family:ff3_c02091;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02091{vertical-align:0.000000px;}
.v1_c02091{vertical-align:1.439424px;}
.ls9_c02091{letter-spacing:-0.574992px;}
.lsc_c02091{letter-spacing:-0.427680px;}
.lsf_c02091{letter-spacing:-0.275616px;}
.lsd_c02091{letter-spacing:-0.261360px;}
.ls6_c02091{letter-spacing:-0.242352px;}
.ls4_c02091{letter-spacing:-0.118800px;}
.ls12_c02091{letter-spacing:0.000000px;}
.ls1_c02091{letter-spacing:0.006048px;}
.ls5_c02091{letter-spacing:0.128304px;}
.ls7_c02091{letter-spacing:0.242352px;}
.lsb_c02091{letter-spacing:0.508464px;}
.ls11_c02091{letter-spacing:0.514080px;}
.lse_c02091{letter-spacing:0.536976px;}
.lsa_c02091{letter-spacing:0.579744px;}
.ls10_c02091{letter-spacing:0.594000px;}
.ls8_c02091{letter-spacing:0.598752px;}
.ls2_c02091{letter-spacing:0.613008px;}
.ls0_c02091{letter-spacing:0.717552px;}
.ls3_c02091{letter-spacing:0.722304px;}
.sc__c02091{text-shadow:none;}
.sc0_c02091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02091{-webkit-text-stroke:0px transparent;}
.sc0_c02091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02091{word-spacing:-15.126048px;}
.wsa_c02091{word-spacing:-12.474000px;}
.ws8_c02091{word-spacing:-12.459744px;}
.ws9_c02091{word-spacing:-12.416976px;}
.ws2_c02091{word-spacing:-12.122352px;}
.ws10_c02091{word-spacing:-1.078704px;}
.wsd_c02091{word-spacing:-0.974160px;}
.ws14_c02091{word-spacing:-0.719712px;}
.wsf_c02091{word-spacing:-0.118800px;}
.ws12_c02091{word-spacing:-0.099792px;}
.ws13_c02091{word-spacing:-0.085536px;}
.wse_c02091{word-spacing:0.000000px;}
.ws11_c02091{word-spacing:0.066528px;}
.ws4_c02091{word-spacing:4.951584px;}
.wsb_c02091{word-spacing:33.300288px;}
.ws6_c02091{word-spacing:36.742464px;}
.ws1_c02091{word-spacing:37.759392px;}
.ws0_c02091{word-spacing:38.020752px;}
.ws3_c02091{word-spacing:39.218256px;}
.ws5_c02091{word-spacing:39.902544px;}
.ws7_c02091{word-spacing:42.026688px;}
._0_c02091{margin-left:-1.948320px;}
._2_c02091{width:1.482624px;}
._1_c02091{width:50.252400px;}
._3_c02091{width:51.530688px;}
.fc0_c02091{color:rgb(0,0,0);}
.fs0_c02091{font-size:47.520000px;}
.fs1_c02091{font-size:60.480000px;}
.y0_c02091{bottom:0.000000px;}
.y1a_c02091{bottom:146.998362px;}
.y1c_c02091{bottom:186.600234px;}
.y1b_c02091{bottom:196.320450px;}
.y19_c02091{bottom:275.878542px;}
.y18_c02091{bottom:356.878758px;}
.y16_c02091{bottom:406.559730px;}
.y12_c02091{bottom:424.560306px;}
.y17_c02091{bottom:458.759262px;}
.y15_c02091{bottom:491.879514px;}
.y14_c02091{bottom:509.880090px;}
.y11_c02091{bottom:543.000342px;}
.y13_c02091{bottom:559.559874px;}
.y10_c02091{bottom:577.560450px;}
.y1e_c02091{bottom:596.639946px;}
.y1d_c02091{bottom:614.280450px;}
.yb_c02091{bottom:667.558326px;}
.yd_c02091{bottom:707.160234px;}
.yc_c02091{bottom:716.880450px;}
.ya_c02091{bottom:796.438506px;}
.y9_c02091{bottom:877.438722px;}
.y7_c02091{bottom:926.759730px;}
.y3_c02091{bottom:944.760306px;}
.y8_c02091{bottom:979.319226px;}
.y6_c02091{bottom:1012.439478px;}
.y5_c02091{bottom:1030.440054px;}
.y2_c02091{bottom:1063.560306px;}
.y4_c02091{bottom:1079.759874px;}
.y1_c02091{bottom:1097.760450px;}
.yf_c02091{bottom:1117.199946px;}
.ye_c02091{bottom:1134.840450px;}
.h3_c02091{height:32.530781px;}
.h1_c02091{height:41.696016px;}
.h2_c02091{height:41.812031px;}
.h5_c02091{height:53.067656px;}
.h4_c02091{height:54.654737px;}
.h0_c02091{height:1263.000000px;}
.w1_c02091{width:892.500000px;}
.w0_c02091{width:892.830000px;}
.x0_c02091{left:0.000000px;}
.xd_c02091{left:117.000000px;}
.xe_c02091{left:162.000144px;}
.x8_c02091{left:440.999856px;}
.x4_c02091{left:445.680576px;}
.xb_c02091{left:451.080000px;}
.x7_c02091{left:455.399604px;}
.x5_c02091{left:461.880144px;}
.x1_c02091{left:463.320000px;}
.xa_c02091{left:483.480360px;}
.x9_c02091{left:492.119496px;}
.x6_c02091{left:493.200576px;}
.xc_c02091{left:506.880360px;}
.x3_c02091{left:511.919892px;}
.x2_c02091{left:526.679604px;}
@media print{
.v0_c02091{vertical-align:0.000000pt;}
.v1_c02091{vertical-align:1.279488pt;}
.ls9_c02091{letter-spacing:-0.511104pt;}
.lsc_c02091{letter-spacing:-0.380160pt;}
.lsf_c02091{letter-spacing:-0.244992pt;}
.lsd_c02091{letter-spacing:-0.232320pt;}
.ls6_c02091{letter-spacing:-0.215424pt;}
.ls4_c02091{letter-spacing:-0.105600pt;}
.ls12_c02091{letter-spacing:0.000000pt;}
.ls1_c02091{letter-spacing:0.005376pt;}
.ls5_c02091{letter-spacing:0.114048pt;}
.ls7_c02091{letter-spacing:0.215424pt;}
.lsb_c02091{letter-spacing:0.451968pt;}
.ls11_c02091{letter-spacing:0.456960pt;}
.lse_c02091{letter-spacing:0.477312pt;}
.lsa_c02091{letter-spacing:0.515328pt;}
.ls10_c02091{letter-spacing:0.528000pt;}
.ls8_c02091{letter-spacing:0.532224pt;}
.ls2_c02091{letter-spacing:0.544896pt;}
.ls0_c02091{letter-spacing:0.637824pt;}
.ls3_c02091{letter-spacing:0.642048pt;}
.wsc_c02091{word-spacing:-13.445376pt;}
.wsa_c02091{word-spacing:-11.088000pt;}
.ws8_c02091{word-spacing:-11.075328pt;}
.ws9_c02091{word-spacing:-11.037312pt;}
.ws2_c02091{word-spacing:-10.775424pt;}
.ws10_c02091{word-spacing:-0.958848pt;}
.wsd_c02091{word-spacing:-0.865920pt;}
.ws14_c02091{word-spacing:-0.639744pt;}
.wsf_c02091{word-spacing:-0.105600pt;}
.ws12_c02091{word-spacing:-0.088704pt;}
.ws13_c02091{word-spacing:-0.076032pt;}
.wse_c02091{word-spacing:0.000000pt;}
.ws11_c02091{word-spacing:0.059136pt;}
.ws4_c02091{word-spacing:4.401408pt;}
.wsb_c02091{word-spacing:29.600256pt;}
.ws6_c02091{word-spacing:32.659968pt;}
.ws1_c02091{word-spacing:33.563904pt;}
.ws0_c02091{word-spacing:33.796224pt;}
.ws3_c02091{word-spacing:34.860672pt;}
.ws5_c02091{word-spacing:35.468928pt;}
.ws7_c02091{word-spacing:37.357056pt;}
._0_c02091{margin-left:-1.731840pt;}
._2_c02091{width:1.317888pt;}
._1_c02091{width:44.668800pt;}
._3_c02091{width:45.805056pt;}
.fs0_c02091{font-size:42.240000pt;}
.fs1_c02091{font-size:53.760000pt;}
.y0_c02091{bottom:0.000000pt;}
.y1a_c02091{bottom:130.665211pt;}
.y1c_c02091{bottom:165.866875pt;}
.y1b_c02091{bottom:174.507067pt;}
.y19_c02091{bottom:245.225371pt;}
.y18_c02091{bottom:317.225563pt;}
.y16_c02091{bottom:361.386427pt;}
.y12_c02091{bottom:377.386939pt;}
.y17_c02091{bottom:407.786011pt;}
.y15_c02091{bottom:437.226235pt;}
.y14_c02091{bottom:453.226747pt;}
.y11_c02091{bottom:482.666971pt;}
.y13_c02091{bottom:497.386555pt;}
.y10_c02091{bottom:513.387067pt;}
.y1e_c02091{bottom:530.346619pt;}
.y1d_c02091{bottom:546.027067pt;}
.yb_c02091{bottom:593.385179pt;}
.yd_c02091{bottom:628.586875pt;}
.yc_c02091{bottom:637.227067pt;}
.ya_c02091{bottom:707.945339pt;}
.y9_c02091{bottom:779.945531pt;}
.y7_c02091{bottom:823.786427pt;}
.y3_c02091{bottom:839.786939pt;}
.y8_c02091{bottom:870.505979pt;}
.y6_c02091{bottom:899.946203pt;}
.y5_c02091{bottom:915.946715pt;}
.y2_c02091{bottom:945.386939pt;}
.y4_c02091{bottom:959.786555pt;}
.y1_c02091{bottom:975.787067pt;}
.yf_c02091{bottom:993.066619pt;}
.ye_c02091{bottom:1008.747067pt;}
.h3_c02091{height:28.916250pt;}
.h1_c02091{height:37.063125pt;}
.h2_c02091{height:37.166250pt;}
.h5_c02091{height:47.171250pt;}
.h4_c02091{height:48.581988pt;}
.h0_c02091{height:1122.666667pt;}
.w1_c02091{width:793.333333pt;}
.w0_c02091{width:793.626667pt;}
.x0_c02091{left:0.000000pt;}
.xd_c02091{left:104.000000pt;}
.xe_c02091{left:144.000128pt;}
.x8_c02091{left:391.999872pt;}
.x4_c02091{left:396.160512pt;}
.xb_c02091{left:400.960000pt;}
.x7_c02091{left:404.799648pt;}
.x5_c02091{left:410.560128pt;}
.x1_c02091{left:411.840000pt;}
.xa_c02091{left:429.760320pt;}
.x9_c02091{left:437.439552pt;}
.x6_c02091{left:438.400512pt;}
.xc_c02091{left:450.560320pt;}
.x3_c02091{left:455.039904pt;}
.x2_c02091{left:468.159648pt;}
}





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

.ir_c02092:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02092{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02092;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02092{font-family:ff1_c02092;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02092;src:url('chunks/assets/font_c13edbd9469256738fd55d6f.woff2')format("woff");}.ff2_c02092{font-family:ff2_c02092;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02092;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02092{font-family:ff3_c02092;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02092{vertical-align:0.000000px;}
.v1_c02092{vertical-align:1.439424px;}
.ls16_c02092{letter-spacing:-1.197504px;}
.ls7_c02092{letter-spacing:-0.613008px;}
.lsa_c02092{letter-spacing:-0.574992px;}
.lsf_c02092{letter-spacing:-0.427680px;}
.lsb_c02092{letter-spacing:-0.361152px;}
.ls12_c02092{letter-spacing:-0.275616px;}
.ls10_c02092{letter-spacing:-0.261360px;}
.ls9_c02092{letter-spacing:-0.256608px;}
.ls6_c02092{letter-spacing:-0.242352px;}
.ls4_c02092{letter-spacing:-0.118800px;}
.ls15_c02092{letter-spacing:0.000000px;}
.ls0_c02092{letter-spacing:0.006048px;}
.lsd_c02092{letter-spacing:0.014256px;}
.ls5_c02092{letter-spacing:0.128304px;}
.lse_c02092{letter-spacing:0.508464px;}
.ls14_c02092{letter-spacing:0.514080px;}
.ls11_c02092{letter-spacing:0.536976px;}
.lsc_c02092{letter-spacing:0.579744px;}
.ls13_c02092{letter-spacing:0.594000px;}
.ls8_c02092{letter-spacing:0.598752px;}
.ls2_c02092{letter-spacing:0.613008px;}
.ls1_c02092{letter-spacing:0.717552px;}
.ls3_c02092{letter-spacing:0.722304px;}
.sc__c02092{text-shadow:none;}
.sc0_c02092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02092{-webkit-text-stroke:0px transparent;}
.sc0_c02092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02092{word-spacing:-15.126048px;}
.ws9_c02092{word-spacing:-12.474000px;}
.ws7_c02092{word-spacing:-12.459744px;}
.ws8_c02092{word-spacing:-12.416976px;}
.wsc_c02092{word-spacing:-11.637648px;}
.ws2_c02092{word-spacing:-11.266992px;}
.ws16_c02092{word-spacing:-1.078704px;}
.wsd_c02092{word-spacing:-0.974160px;}
.ws15_c02092{word-spacing:-0.719712px;}
.ws11_c02092{word-spacing:-0.375408px;}
.wsf_c02092{word-spacing:-0.118800px;}
.ws10_c02092{word-spacing:-0.104544px;}
.ws13_c02092{word-spacing:-0.099792px;}
.ws14_c02092{word-spacing:-0.085536px;}
.wse_c02092{word-spacing:0.000000px;}
.ws12_c02092{word-spacing:0.066528px;}
.ws17_c02092{word-spacing:0.836352px;}
.wsa_c02092{word-spacing:33.300288px;}
.ws5_c02092{word-spacing:36.742464px;}
.ws1_c02092{word-spacing:37.759392px;}
.ws0_c02092{word-spacing:38.020752px;}
.ws3_c02092{word-spacing:39.218256px;}
.ws4_c02092{word-spacing:39.902544px;}
.ws6_c02092{word-spacing:42.026688px;}
._0_c02092{margin-left:-1.948320px;}
._2_c02092{width:1.482624px;}
._4_c02092{width:2.917728px;}
._1_c02092{width:50.252400px;}
._3_c02092{width:51.530688px;}
.fc0_c02092{color:rgb(0,0,0);}
.fs0_c02092{font-size:47.520000px;}
.fs1_c02092{font-size:60.480000px;}
.y0_c02092{bottom:0.000000px;}
.y1a_c02092{bottom:146.998362px;}
.y1c_c02092{bottom:186.600234px;}
.y1b_c02092{bottom:196.320450px;}
.y19_c02092{bottom:275.878542px;}
.y18_c02092{bottom:356.878758px;}
.y16_c02092{bottom:406.559730px;}
.y12_c02092{bottom:424.560306px;}
.y17_c02092{bottom:458.759262px;}
.y15_c02092{bottom:491.879514px;}
.y14_c02092{bottom:509.880090px;}
.y11_c02092{bottom:543.000342px;}
.y13_c02092{bottom:559.559874px;}
.y10_c02092{bottom:577.560450px;}
.y1e_c02092{bottom:596.639946px;}
.y1d_c02092{bottom:614.280450px;}
.yb_c02092{bottom:667.558326px;}
.yd_c02092{bottom:707.160234px;}
.yc_c02092{bottom:716.880450px;}
.ya_c02092{bottom:796.438506px;}
.y9_c02092{bottom:877.438722px;}
.y7_c02092{bottom:926.759730px;}
.y3_c02092{bottom:944.760306px;}
.y8_c02092{bottom:979.319226px;}
.y6_c02092{bottom:1012.439478px;}
.y5_c02092{bottom:1030.440054px;}
.y2_c02092{bottom:1063.560306px;}
.y4_c02092{bottom:1079.759874px;}
.y1_c02092{bottom:1097.760450px;}
.yf_c02092{bottom:1117.199946px;}
.ye_c02092{bottom:1134.840450px;}
.h3_c02092{height:32.530781px;}
.h1_c02092{height:41.696016px;}
.h2_c02092{height:41.812031px;}
.h5_c02092{height:53.067656px;}
.h4_c02092{height:54.654737px;}
.h0_c02092{height:1263.000000px;}
.w1_c02092{width:892.500000px;}
.w0_c02092{width:892.830000px;}
.x0_c02092{left:0.000000px;}
.xd_c02092{left:117.000000px;}
.xe_c02092{left:162.000144px;}
.x8_c02092{left:440.999856px;}
.x4_c02092{left:445.680576px;}
.xb_c02092{left:451.080000px;}
.x7_c02092{left:455.399604px;}
.x5_c02092{left:461.880144px;}
.x1_c02092{left:463.320000px;}
.xa_c02092{left:483.480360px;}
.x9_c02092{left:492.119496px;}
.x6_c02092{left:493.200576px;}
.xc_c02092{left:506.880360px;}
.x3_c02092{left:511.919892px;}
.x2_c02092{left:526.679604px;}
@media print{
.v0_c02092{vertical-align:0.000000pt;}
.v1_c02092{vertical-align:1.279488pt;}
.ls16_c02092{letter-spacing:-1.064448pt;}
.ls7_c02092{letter-spacing:-0.544896pt;}
.lsa_c02092{letter-spacing:-0.511104pt;}
.lsf_c02092{letter-spacing:-0.380160pt;}
.lsb_c02092{letter-spacing:-0.321024pt;}
.ls12_c02092{letter-spacing:-0.244992pt;}
.ls10_c02092{letter-spacing:-0.232320pt;}
.ls9_c02092{letter-spacing:-0.228096pt;}
.ls6_c02092{letter-spacing:-0.215424pt;}
.ls4_c02092{letter-spacing:-0.105600pt;}
.ls15_c02092{letter-spacing:0.000000pt;}
.ls0_c02092{letter-spacing:0.005376pt;}
.lsd_c02092{letter-spacing:0.012672pt;}
.ls5_c02092{letter-spacing:0.114048pt;}
.lse_c02092{letter-spacing:0.451968pt;}
.ls14_c02092{letter-spacing:0.456960pt;}
.ls11_c02092{letter-spacing:0.477312pt;}
.lsc_c02092{letter-spacing:0.515328pt;}
.ls13_c02092{letter-spacing:0.528000pt;}
.ls8_c02092{letter-spacing:0.532224pt;}
.ls2_c02092{letter-spacing:0.544896pt;}
.ls1_c02092{letter-spacing:0.637824pt;}
.ls3_c02092{letter-spacing:0.642048pt;}
.wsb_c02092{word-spacing:-13.445376pt;}
.ws9_c02092{word-spacing:-11.088000pt;}
.ws7_c02092{word-spacing:-11.075328pt;}
.ws8_c02092{word-spacing:-11.037312pt;}
.wsc_c02092{word-spacing:-10.344576pt;}
.ws2_c02092{word-spacing:-10.015104pt;}
.ws16_c02092{word-spacing:-0.958848pt;}
.wsd_c02092{word-spacing:-0.865920pt;}
.ws15_c02092{word-spacing:-0.639744pt;}
.ws11_c02092{word-spacing:-0.333696pt;}
.wsf_c02092{word-spacing:-0.105600pt;}
.ws10_c02092{word-spacing:-0.092928pt;}
.ws13_c02092{word-spacing:-0.088704pt;}
.ws14_c02092{word-spacing:-0.076032pt;}
.wse_c02092{word-spacing:0.000000pt;}
.ws12_c02092{word-spacing:0.059136pt;}
.ws17_c02092{word-spacing:0.743424pt;}
.wsa_c02092{word-spacing:29.600256pt;}
.ws5_c02092{word-spacing:32.659968pt;}
.ws1_c02092{word-spacing:33.563904pt;}
.ws0_c02092{word-spacing:33.796224pt;}
.ws3_c02092{word-spacing:34.860672pt;}
.ws4_c02092{word-spacing:35.468928pt;}
.ws6_c02092{word-spacing:37.357056pt;}
._0_c02092{margin-left:-1.731840pt;}
._2_c02092{width:1.317888pt;}
._4_c02092{width:2.593536pt;}
._1_c02092{width:44.668800pt;}
._3_c02092{width:45.805056pt;}
.fs0_c02092{font-size:42.240000pt;}
.fs1_c02092{font-size:53.760000pt;}
.y0_c02092{bottom:0.000000pt;}
.y1a_c02092{bottom:130.665211pt;}
.y1c_c02092{bottom:165.866875pt;}
.y1b_c02092{bottom:174.507067pt;}
.y19_c02092{bottom:245.225371pt;}
.y18_c02092{bottom:317.225563pt;}
.y16_c02092{bottom:361.386427pt;}
.y12_c02092{bottom:377.386939pt;}
.y17_c02092{bottom:407.786011pt;}
.y15_c02092{bottom:437.226235pt;}
.y14_c02092{bottom:453.226747pt;}
.y11_c02092{bottom:482.666971pt;}
.y13_c02092{bottom:497.386555pt;}
.y10_c02092{bottom:513.387067pt;}
.y1e_c02092{bottom:530.346619pt;}
.y1d_c02092{bottom:546.027067pt;}
.yb_c02092{bottom:593.385179pt;}
.yd_c02092{bottom:628.586875pt;}
.yc_c02092{bottom:637.227067pt;}
.ya_c02092{bottom:707.945339pt;}
.y9_c02092{bottom:779.945531pt;}
.y7_c02092{bottom:823.786427pt;}
.y3_c02092{bottom:839.786939pt;}
.y8_c02092{bottom:870.505979pt;}
.y6_c02092{bottom:899.946203pt;}
.y5_c02092{bottom:915.946715pt;}
.y2_c02092{bottom:945.386939pt;}
.y4_c02092{bottom:959.786555pt;}
.y1_c02092{bottom:975.787067pt;}
.yf_c02092{bottom:993.066619pt;}
.ye_c02092{bottom:1008.747067pt;}
.h3_c02092{height:28.916250pt;}
.h1_c02092{height:37.063125pt;}
.h2_c02092{height:37.166250pt;}
.h5_c02092{height:47.171250pt;}
.h4_c02092{height:48.581988pt;}
.h0_c02092{height:1122.666667pt;}
.w1_c02092{width:793.333333pt;}
.w0_c02092{width:793.626667pt;}
.x0_c02092{left:0.000000pt;}
.xd_c02092{left:104.000000pt;}
.xe_c02092{left:144.000128pt;}
.x8_c02092{left:391.999872pt;}
.x4_c02092{left:396.160512pt;}
.xb_c02092{left:400.960000pt;}
.x7_c02092{left:404.799648pt;}
.x5_c02092{left:410.560128pt;}
.x1_c02092{left:411.840000pt;}
.xa_c02092{left:429.760320pt;}
.x9_c02092{left:437.439552pt;}
.x6_c02092{left:438.400512pt;}
.xc_c02092{left:450.560320pt;}
.x3_c02092{left:455.039904pt;}
.x2_c02092{left:468.159648pt;}
}





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

.ir_c02093:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02093{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02093;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02093{font-family:ff1_c02093;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02093;src:url('chunks/assets/font_7a3fc0ecc7720ff5f02ed51a.woff2')format("woff");}.ff2_c02093{font-family:ff2_c02093;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02093;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02093{font-family:ff3_c02093;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02093{vertical-align:0.000000px;}
.v1_c02093{vertical-align:1.439424px;}
.lsb_c02093{letter-spacing:-0.774576px;}
.ls11_c02093{letter-spacing:-0.736560px;}
.lse_c02093{letter-spacing:-0.722304px;}
.ls8_c02093{letter-spacing:-0.613008px;}
.lsa_c02093{letter-spacing:-0.574992px;}
.ls12_c02093{letter-spacing:-0.270864px;}
.lsf_c02093{letter-spacing:-0.261360px;}
.ls7_c02093{letter-spacing:-0.242352px;}
.ls4_c02093{letter-spacing:-0.118800px;}
.ls15_c02093{letter-spacing:0.000000px;}
.ls1_c02093{letter-spacing:0.006048px;}
.ls6_c02093{letter-spacing:0.128304px;}
.lsd_c02093{letter-spacing:0.508464px;}
.ls14_c02093{letter-spacing:0.514080px;}
.ls10_c02093{letter-spacing:0.536976px;}
.lsc_c02093{letter-spacing:0.579744px;}
.ls13_c02093{letter-spacing:0.594000px;}
.ls9_c02093{letter-spacing:0.598752px;}
.ls2_c02093{letter-spacing:0.613008px;}
.ls0_c02093{letter-spacing:0.651024px;}
.ls5_c02093{letter-spacing:0.717552px;}
.ls3_c02093{letter-spacing:0.722304px;}
.sc__c02093{text-shadow:none;}
.sc0_c02093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02093{-webkit-text-stroke:0px transparent;}
.sc0_c02093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02093{word-spacing:-15.126048px;}
.wsb_c02093{word-spacing:-12.474000px;}
.ws7_c02093{word-spacing:-12.459744px;}
.ws4_c02093{word-spacing:-11.637648px;}
.ws2_c02093{word-spacing:-11.266992px;}
.ws6_c02093{word-spacing:-11.105424px;}
.ws10_c02093{word-spacing:-1.012176px;}
.wse_c02093{word-spacing:-0.974160px;}
.ws16_c02093{word-spacing:-0.719712px;}
.ws11_c02093{word-spacing:-0.118800px;}
.ws13_c02093{word-spacing:-0.099792px;}
.ws14_c02093{word-spacing:-0.090288px;}
.ws15_c02093{word-spacing:-0.085536px;}
.wsf_c02093{word-spacing:0.000000px;}
.ws12_c02093{word-spacing:0.361152px;}
.wsa_c02093{word-spacing:6.629040px;}
.wsc_c02093{word-spacing:33.300288px;}
.ws9_c02093{word-spacing:34.836912px;}
.ws1_c02093{word-spacing:37.759392px;}
.ws0_c02093{word-spacing:38.020752px;}
.ws3_c02093{word-spacing:39.218256px;}
.ws5_c02093{word-spacing:39.902544px;}
.ws8_c02093{word-spacing:42.026688px;}
._0_c02093{margin-left:-1.948320px;}
._2_c02093{width:1.482624px;}
._4_c02093{width:3.302640px;}
._6_c02093{width:19.982160px;}
._7_c02093{width:23.451120px;}
._5_c02093{width:24.691392px;}
._1_c02093{width:50.252400px;}
._3_c02093{width:51.530688px;}
.fc0_c02093{color:rgb(0,0,0);}
.fs0_c02093{font-size:47.520000px;}
.fs1_c02093{font-size:60.480000px;}
.y0_c02093{bottom:0.000000px;}
.y1c_c02093{bottom:131.878686px;}
.y1b_c02093{bottom:146.998362px;}
.y1e_c02093{bottom:186.600234px;}
.y1d_c02093{bottom:196.320450px;}
.y1a_c02093{bottom:275.878542px;}
.y19_c02093{bottom:356.878758px;}
.y17_c02093{bottom:406.559730px;}
.y13_c02093{bottom:424.560306px;}
.y18_c02093{bottom:458.759262px;}
.y16_c02093{bottom:491.879514px;}
.y15_c02093{bottom:509.880090px;}
.y12_c02093{bottom:543.000342px;}
.y14_c02093{bottom:559.559874px;}
.y11_c02093{bottom:577.560450px;}
.y20_c02093{bottom:596.639946px;}
.y1f_c02093{bottom:614.280450px;}
.yc_c02093{bottom:652.438650px;}
.yb_c02093{bottom:667.558326px;}
.ye_c02093{bottom:707.160234px;}
.yd_c02093{bottom:716.880450px;}
.ya_c02093{bottom:796.438506px;}
.y9_c02093{bottom:877.438722px;}
.y7_c02093{bottom:926.759730px;}
.y3_c02093{bottom:944.760306px;}
.y8_c02093{bottom:979.319226px;}
.y6_c02093{bottom:1012.439478px;}
.y5_c02093{bottom:1030.440054px;}
.y2_c02093{bottom:1063.560306px;}
.y4_c02093{bottom:1079.759874px;}
.y1_c02093{bottom:1097.760450px;}
.y10_c02093{bottom:1117.199946px;}
.yf_c02093{bottom:1134.840450px;}
.h3_c02093{height:32.530781px;}
.h1_c02093{height:41.696016px;}
.h2_c02093{height:41.812031px;}
.h5_c02093{height:53.067656px;}
.h4_c02093{height:54.654737px;}
.h0_c02093{height:1263.000000px;}
.w1_c02093{width:892.500000px;}
.w0_c02093{width:892.830000px;}
.x0_c02093{left:0.000000px;}
.xe_c02093{left:117.000000px;}
.xf_c02093{left:162.000144px;}
.x8_c02093{left:440.999856px;}
.x4_c02093{left:445.680576px;}
.xc_c02093{left:451.080000px;}
.x7_c02093{left:455.399604px;}
.x5_c02093{left:461.880144px;}
.x1_c02093{left:463.320000px;}
.xa_c02093{left:483.480360px;}
.x9_c02093{left:492.119496px;}
.x6_c02093{left:493.200576px;}
.xd_c02093{left:506.880360px;}
.x3_c02093{left:511.919892px;}
.x2_c02093{left:526.679604px;}
.xb_c02093{left:569.880036px;}
@media print{
.v0_c02093{vertical-align:0.000000pt;}
.v1_c02093{vertical-align:1.279488pt;}
.lsb_c02093{letter-spacing:-0.688512pt;}
.ls11_c02093{letter-spacing:-0.654720pt;}
.lse_c02093{letter-spacing:-0.642048pt;}
.ls8_c02093{letter-spacing:-0.544896pt;}
.lsa_c02093{letter-spacing:-0.511104pt;}
.ls12_c02093{letter-spacing:-0.240768pt;}
.lsf_c02093{letter-spacing:-0.232320pt;}
.ls7_c02093{letter-spacing:-0.215424pt;}
.ls4_c02093{letter-spacing:-0.105600pt;}
.ls15_c02093{letter-spacing:0.000000pt;}
.ls1_c02093{letter-spacing:0.005376pt;}
.ls6_c02093{letter-spacing:0.114048pt;}
.lsd_c02093{letter-spacing:0.451968pt;}
.ls14_c02093{letter-spacing:0.456960pt;}
.ls10_c02093{letter-spacing:0.477312pt;}
.lsc_c02093{letter-spacing:0.515328pt;}
.ls13_c02093{letter-spacing:0.528000pt;}
.ls9_c02093{letter-spacing:0.532224pt;}
.ls2_c02093{letter-spacing:0.544896pt;}
.ls0_c02093{letter-spacing:0.578688pt;}
.ls5_c02093{letter-spacing:0.637824pt;}
.ls3_c02093{letter-spacing:0.642048pt;}
.wsd_c02093{word-spacing:-13.445376pt;}
.wsb_c02093{word-spacing:-11.088000pt;}
.ws7_c02093{word-spacing:-11.075328pt;}
.ws4_c02093{word-spacing:-10.344576pt;}
.ws2_c02093{word-spacing:-10.015104pt;}
.ws6_c02093{word-spacing:-9.871488pt;}
.ws10_c02093{word-spacing:-0.899712pt;}
.wse_c02093{word-spacing:-0.865920pt;}
.ws16_c02093{word-spacing:-0.639744pt;}
.ws11_c02093{word-spacing:-0.105600pt;}
.ws13_c02093{word-spacing:-0.088704pt;}
.ws14_c02093{word-spacing:-0.080256pt;}
.ws15_c02093{word-spacing:-0.076032pt;}
.wsf_c02093{word-spacing:0.000000pt;}
.ws12_c02093{word-spacing:0.321024pt;}
.wsa_c02093{word-spacing:5.892480pt;}
.wsc_c02093{word-spacing:29.600256pt;}
.ws9_c02093{word-spacing:30.966144pt;}
.ws1_c02093{word-spacing:33.563904pt;}
.ws0_c02093{word-spacing:33.796224pt;}
.ws3_c02093{word-spacing:34.860672pt;}
.ws5_c02093{word-spacing:35.468928pt;}
.ws8_c02093{word-spacing:37.357056pt;}
._0_c02093{margin-left:-1.731840pt;}
._2_c02093{width:1.317888pt;}
._4_c02093{width:2.935680pt;}
._6_c02093{width:17.761920pt;}
._7_c02093{width:20.845440pt;}
._5_c02093{width:21.947904pt;}
._1_c02093{width:44.668800pt;}
._3_c02093{width:45.805056pt;}
.fs0_c02093{font-size:42.240000pt;}
.fs1_c02093{font-size:53.760000pt;}
.y0_c02093{bottom:0.000000pt;}
.y1c_c02093{bottom:117.225499pt;}
.y1b_c02093{bottom:130.665211pt;}
.y1e_c02093{bottom:165.866875pt;}
.y1d_c02093{bottom:174.507067pt;}
.y1a_c02093{bottom:245.225371pt;}
.y19_c02093{bottom:317.225563pt;}
.y17_c02093{bottom:361.386427pt;}
.y13_c02093{bottom:377.386939pt;}
.y18_c02093{bottom:407.786011pt;}
.y16_c02093{bottom:437.226235pt;}
.y15_c02093{bottom:453.226747pt;}
.y12_c02093{bottom:482.666971pt;}
.y14_c02093{bottom:497.386555pt;}
.y11_c02093{bottom:513.387067pt;}
.y20_c02093{bottom:530.346619pt;}
.y1f_c02093{bottom:546.027067pt;}
.yc_c02093{bottom:579.945467pt;}
.yb_c02093{bottom:593.385179pt;}
.ye_c02093{bottom:628.586875pt;}
.yd_c02093{bottom:637.227067pt;}
.ya_c02093{bottom:707.945339pt;}
.y9_c02093{bottom:779.945531pt;}
.y7_c02093{bottom:823.786427pt;}
.y3_c02093{bottom:839.786939pt;}
.y8_c02093{bottom:870.505979pt;}
.y6_c02093{bottom:899.946203pt;}
.y5_c02093{bottom:915.946715pt;}
.y2_c02093{bottom:945.386939pt;}
.y4_c02093{bottom:959.786555pt;}
.y1_c02093{bottom:975.787067pt;}
.y10_c02093{bottom:993.066619pt;}
.yf_c02093{bottom:1008.747067pt;}
.h3_c02093{height:28.916250pt;}
.h1_c02093{height:37.063125pt;}
.h2_c02093{height:37.166250pt;}
.h5_c02093{height:47.171250pt;}
.h4_c02093{height:48.581988pt;}
.h0_c02093{height:1122.666667pt;}
.w1_c02093{width:793.333333pt;}
.w0_c02093{width:793.626667pt;}
.x0_c02093{left:0.000000pt;}
.xe_c02093{left:104.000000pt;}
.xf_c02093{left:144.000128pt;}
.x8_c02093{left:391.999872pt;}
.x4_c02093{left:396.160512pt;}
.xc_c02093{left:400.960000pt;}
.x7_c02093{left:404.799648pt;}
.x5_c02093{left:410.560128pt;}
.x1_c02093{left:411.840000pt;}
.xa_c02093{left:429.760320pt;}
.x9_c02093{left:437.439552pt;}
.x6_c02093{left:438.400512pt;}
.xd_c02093{left:450.560320pt;}
.x3_c02093{left:455.039904pt;}
.x2_c02093{left:468.159648pt;}
.xb_c02093{left:506.560032pt;}
}





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

.ir_c02094:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02094;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02094{font-family:ff1_c02094;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02094;src:url('chunks/assets/font_052e069a25c579a279ece331.woff2')format("woff");}.ff2_c02094{font-family:ff2_c02094;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02094;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02094{font-family:ff3_c02094;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02094{vertical-align:0.000000px;}
.v1_c02094{vertical-align:1.439424px;}
.ls7_c02094{letter-spacing:-0.613008px;}
.ls9_c02094{letter-spacing:-0.574992px;}
.lse_c02094{letter-spacing:-0.275616px;}
.lsc_c02094{letter-spacing:-0.261360px;}
.ls6_c02094{letter-spacing:-0.242352px;}
.ls4_c02094{letter-spacing:-0.118800px;}
.ls11_c02094{letter-spacing:0.000000px;}
.ls1_c02094{letter-spacing:0.006048px;}
.ls5_c02094{letter-spacing:0.128304px;}
.lsb_c02094{letter-spacing:0.508464px;}
.ls10_c02094{letter-spacing:0.514080px;}
.lsd_c02094{letter-spacing:0.536976px;}
.lsa_c02094{letter-spacing:0.579744px;}
.lsf_c02094{letter-spacing:0.594000px;}
.ls8_c02094{letter-spacing:0.598752px;}
.ls2_c02094{letter-spacing:0.613008px;}
.ls0_c02094{letter-spacing:0.717552px;}
.ls3_c02094{letter-spacing:0.722304px;}
.sc__c02094{text-shadow:none;}
.sc0_c02094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02094{-webkit-text-stroke:0px transparent;}
.sc0_c02094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02094{word-spacing:-15.126048px;}
.wsa_c02094{word-spacing:-12.474000px;}
.ws8_c02094{word-spacing:-12.459744px;}
.ws9_c02094{word-spacing:-12.416976px;}
.ws4_c02094{word-spacing:-11.637648px;}
.ws2_c02094{word-spacing:-11.266992px;}
.ws11_c02094{word-spacing:-1.083456px;}
.ws10_c02094{word-spacing:-1.078704px;}
.wsd_c02094{word-spacing:-0.974160px;}
.ws14_c02094{word-spacing:-0.719712px;}
.wsf_c02094{word-spacing:-0.118800px;}
.ws12_c02094{word-spacing:-0.099792px;}
.ws13_c02094{word-spacing:-0.085536px;}
.wse_c02094{word-spacing:0.000000px;}
.wsb_c02094{word-spacing:33.300288px;}
.ws6_c02094{word-spacing:36.742464px;}
.ws1_c02094{word-spacing:37.759392px;}
.ws0_c02094{word-spacing:38.020752px;}
.ws3_c02094{word-spacing:39.218256px;}
.ws5_c02094{word-spacing:39.902544px;}
.ws7_c02094{word-spacing:42.026688px;}
._0_c02094{margin-left:-1.948320px;}
._2_c02094{width:1.482624px;}
._4_c02094{width:3.302640px;}
._1_c02094{width:50.252400px;}
._3_c02094{width:51.530688px;}
.fc0_c02094{color:rgb(0,0,0);}
.fs0_c02094{font-size:47.520000px;}
.fs1_c02094{font-size:60.480000px;}
.y0_c02094{bottom:0.000000px;}
.y1a_c02094{bottom:146.998362px;}
.y1c_c02094{bottom:186.600234px;}
.y1b_c02094{bottom:196.320450px;}
.y19_c02094{bottom:275.878542px;}
.y18_c02094{bottom:356.878758px;}
.y16_c02094{bottom:406.559730px;}
.y12_c02094{bottom:424.560306px;}
.y17_c02094{bottom:458.759262px;}
.y15_c02094{bottom:491.879514px;}
.y14_c02094{bottom:509.880090px;}
.y11_c02094{bottom:543.000342px;}
.y13_c02094{bottom:559.559874px;}
.y10_c02094{bottom:577.560450px;}
.y1e_c02094{bottom:596.639946px;}
.y1d_c02094{bottom:614.280450px;}
.yb_c02094{bottom:667.558326px;}
.yd_c02094{bottom:707.160234px;}
.yc_c02094{bottom:716.880450px;}
.ya_c02094{bottom:796.438506px;}
.y9_c02094{bottom:877.438722px;}
.y7_c02094{bottom:926.759730px;}
.y3_c02094{bottom:944.760306px;}
.y8_c02094{bottom:979.319226px;}
.y6_c02094{bottom:1012.439478px;}
.y5_c02094{bottom:1030.440054px;}
.y2_c02094{bottom:1063.560306px;}
.y4_c02094{bottom:1079.759874px;}
.y1_c02094{bottom:1097.760450px;}
.yf_c02094{bottom:1117.199946px;}
.ye_c02094{bottom:1134.840450px;}
.h3_c02094{height:32.530781px;}
.h1_c02094{height:41.696016px;}
.h2_c02094{height:41.812031px;}
.h5_c02094{height:53.067656px;}
.h4_c02094{height:54.654737px;}
.h0_c02094{height:1263.000000px;}
.w1_c02094{width:892.500000px;}
.w0_c02094{width:892.830000px;}
.x0_c02094{left:0.000000px;}
.xd_c02094{left:117.000000px;}
.xe_c02094{left:162.000144px;}
.x8_c02094{left:440.999856px;}
.x4_c02094{left:445.680576px;}
.xb_c02094{left:451.080000px;}
.x7_c02094{left:455.399604px;}
.x5_c02094{left:461.880144px;}
.x1_c02094{left:463.320000px;}
.xa_c02094{left:483.480360px;}
.x9_c02094{left:492.119496px;}
.x6_c02094{left:493.200576px;}
.xc_c02094{left:506.880360px;}
.x3_c02094{left:511.919892px;}
.x2_c02094{left:526.679604px;}
@media print{
.v0_c02094{vertical-align:0.000000pt;}
.v1_c02094{vertical-align:1.279488pt;}
.ls7_c02094{letter-spacing:-0.544896pt;}
.ls9_c02094{letter-spacing:-0.511104pt;}
.lse_c02094{letter-spacing:-0.244992pt;}
.lsc_c02094{letter-spacing:-0.232320pt;}
.ls6_c02094{letter-spacing:-0.215424pt;}
.ls4_c02094{letter-spacing:-0.105600pt;}
.ls11_c02094{letter-spacing:0.000000pt;}
.ls1_c02094{letter-spacing:0.005376pt;}
.ls5_c02094{letter-spacing:0.114048pt;}
.lsb_c02094{letter-spacing:0.451968pt;}
.ls10_c02094{letter-spacing:0.456960pt;}
.lsd_c02094{letter-spacing:0.477312pt;}
.lsa_c02094{letter-spacing:0.515328pt;}
.lsf_c02094{letter-spacing:0.528000pt;}
.ls8_c02094{letter-spacing:0.532224pt;}
.ls2_c02094{letter-spacing:0.544896pt;}
.ls0_c02094{letter-spacing:0.637824pt;}
.ls3_c02094{letter-spacing:0.642048pt;}
.wsc_c02094{word-spacing:-13.445376pt;}
.wsa_c02094{word-spacing:-11.088000pt;}
.ws8_c02094{word-spacing:-11.075328pt;}
.ws9_c02094{word-spacing:-11.037312pt;}
.ws4_c02094{word-spacing:-10.344576pt;}
.ws2_c02094{word-spacing:-10.015104pt;}
.ws11_c02094{word-spacing:-0.963072pt;}
.ws10_c02094{word-spacing:-0.958848pt;}
.wsd_c02094{word-spacing:-0.865920pt;}
.ws14_c02094{word-spacing:-0.639744pt;}
.wsf_c02094{word-spacing:-0.105600pt;}
.ws12_c02094{word-spacing:-0.088704pt;}
.ws13_c02094{word-spacing:-0.076032pt;}
.wse_c02094{word-spacing:0.000000pt;}
.wsb_c02094{word-spacing:29.600256pt;}
.ws6_c02094{word-spacing:32.659968pt;}
.ws1_c02094{word-spacing:33.563904pt;}
.ws0_c02094{word-spacing:33.796224pt;}
.ws3_c02094{word-spacing:34.860672pt;}
.ws5_c02094{word-spacing:35.468928pt;}
.ws7_c02094{word-spacing:37.357056pt;}
._0_c02094{margin-left:-1.731840pt;}
._2_c02094{width:1.317888pt;}
._4_c02094{width:2.935680pt;}
._1_c02094{width:44.668800pt;}
._3_c02094{width:45.805056pt;}
.fs0_c02094{font-size:42.240000pt;}
.fs1_c02094{font-size:53.760000pt;}
.y0_c02094{bottom:0.000000pt;}
.y1a_c02094{bottom:130.665211pt;}
.y1c_c02094{bottom:165.866875pt;}
.y1b_c02094{bottom:174.507067pt;}
.y19_c02094{bottom:245.225371pt;}
.y18_c02094{bottom:317.225563pt;}
.y16_c02094{bottom:361.386427pt;}
.y12_c02094{bottom:377.386939pt;}
.y17_c02094{bottom:407.786011pt;}
.y15_c02094{bottom:437.226235pt;}
.y14_c02094{bottom:453.226747pt;}
.y11_c02094{bottom:482.666971pt;}
.y13_c02094{bottom:497.386555pt;}
.y10_c02094{bottom:513.387067pt;}
.y1e_c02094{bottom:530.346619pt;}
.y1d_c02094{bottom:546.027067pt;}
.yb_c02094{bottom:593.385179pt;}
.yd_c02094{bottom:628.586875pt;}
.yc_c02094{bottom:637.227067pt;}
.ya_c02094{bottom:707.945339pt;}
.y9_c02094{bottom:779.945531pt;}
.y7_c02094{bottom:823.786427pt;}
.y3_c02094{bottom:839.786939pt;}
.y8_c02094{bottom:870.505979pt;}
.y6_c02094{bottom:899.946203pt;}
.y5_c02094{bottom:915.946715pt;}
.y2_c02094{bottom:945.386939pt;}
.y4_c02094{bottom:959.786555pt;}
.y1_c02094{bottom:975.787067pt;}
.yf_c02094{bottom:993.066619pt;}
.ye_c02094{bottom:1008.747067pt;}
.h3_c02094{height:28.916250pt;}
.h1_c02094{height:37.063125pt;}
.h2_c02094{height:37.166250pt;}
.h5_c02094{height:47.171250pt;}
.h4_c02094{height:48.581988pt;}
.h0_c02094{height:1122.666667pt;}
.w1_c02094{width:793.333333pt;}
.w0_c02094{width:793.626667pt;}
.x0_c02094{left:0.000000pt;}
.xd_c02094{left:104.000000pt;}
.xe_c02094{left:144.000128pt;}
.x8_c02094{left:391.999872pt;}
.x4_c02094{left:396.160512pt;}
.xb_c02094{left:400.960000pt;}
.x7_c02094{left:404.799648pt;}
.x5_c02094{left:410.560128pt;}
.x1_c02094{left:411.840000pt;}
.xa_c02094{left:429.760320pt;}
.x9_c02094{left:437.439552pt;}
.x6_c02094{left:438.400512pt;}
.xc_c02094{left:450.560320pt;}
.x3_c02094{left:455.039904pt;}
.x2_c02094{left:468.159648pt;}
}





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

.ir_c02095:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02095{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02095;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02095{font-family:ff1_c02095;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02095;src:url('chunks/assets/font_f1230fa2d299ba475919ee16.woff2')format("woff");}.ff2_c02095{font-family:ff2_c02095;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02095;src:url('chunks/assets/font_f6cc1e3305f275b0663ce466.woff2')format("woff");}.ff3_c02095{font-family:ff3_c02095;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02095{vertical-align:0.000000px;}
.v1_c02095{vertical-align:1.439424px;}
.lsb_c02095{letter-spacing:-0.774576px;}
.ls11_c02095{letter-spacing:-0.736560px;}
.lse_c02095{letter-spacing:-0.722304px;}
.ls8_c02095{letter-spacing:-0.613008px;}
.lsa_c02095{letter-spacing:-0.574992px;}
.ls16_c02095{letter-spacing:-0.361152px;}
.ls18_c02095{letter-spacing:-0.275616px;}
.ls12_c02095{letter-spacing:-0.270864px;}
.lsf_c02095{letter-spacing:-0.261360px;}
.ls7_c02095{letter-spacing:-0.242352px;}
.ls4_c02095{letter-spacing:-0.118800px;}
.ls15_c02095{letter-spacing:0.000000px;}
.ls1_c02095{letter-spacing:0.006048px;}
.ls6_c02095{letter-spacing:0.128304px;}
.ls17_c02095{letter-spacing:0.242352px;}
.lsd_c02095{letter-spacing:0.508464px;}
.ls14_c02095{letter-spacing:0.514080px;}
.ls10_c02095{letter-spacing:0.536976px;}
.lsc_c02095{letter-spacing:0.579744px;}
.ls13_c02095{letter-spacing:0.594000px;}
.ls9_c02095{letter-spacing:0.598752px;}
.ls2_c02095{letter-spacing:0.613008px;}
.ls0_c02095{letter-spacing:0.651024px;}
.ls5_c02095{letter-spacing:0.717552px;}
.ls3_c02095{letter-spacing:0.722304px;}
.sc__c02095{text-shadow:none;}
.sc0_c02095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02095{-webkit-text-stroke:0px transparent;}
.sc0_c02095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02095{word-spacing:-15.126048px;}
.wsc_c02095{word-spacing:-12.474000px;}
.ws7_c02095{word-spacing:-12.459744px;}
.ws10_c02095{word-spacing:-12.416976px;}
.ws4_c02095{word-spacing:-11.637648px;}
.ws2_c02095{word-spacing:-11.266992px;}
.ws6_c02095{word-spacing:-11.105424px;}
.ws16_c02095{word-spacing:-1.083456px;}
.ws13_c02095{word-spacing:-1.012176px;}
.ws11_c02095{word-spacing:-0.974160px;}
.ws1a_c02095{word-spacing:-0.719712px;}
.ws14_c02095{word-spacing:-0.118800px;}
.ws17_c02095{word-spacing:-0.099792px;}
.ws18_c02095{word-spacing:-0.090288px;}
.ws19_c02095{word-spacing:-0.085536px;}
.ws12_c02095{word-spacing:0.000000px;}
.ws15_c02095{word-spacing:0.361152px;}
.wsb_c02095{word-spacing:6.629040px;}
.wsd_c02095{word-spacing:33.300288px;}
.wsa_c02095{word-spacing:34.836912px;}
.ws9_c02095{word-spacing:36.143712px;}
.wsf_c02095{word-spacing:36.742464px;}
.ws1_c02095{word-spacing:37.759392px;}
.ws0_c02095{word-spacing:38.020752px;}
.ws3_c02095{word-spacing:39.218256px;}
.ws5_c02095{word-spacing:39.902544px;}
.ws8_c02095{word-spacing:42.026688px;}
._0_c02095{margin-left:-1.948320px;}
._2_c02095{width:1.482624px;}
._4_c02095{width:3.302640px;}
._6_c02095{width:19.982160px;}
._7_c02095{width:23.451120px;}
._5_c02095{width:24.691392px;}
._1_c02095{width:50.252400px;}
._3_c02095{width:51.530688px;}
.fc0_c02095{color:rgb(0,0,0);}
.fs0_c02095{font-size:47.520000px;}
.fs1_c02095{font-size:60.480000px;}
.y0_c02095{bottom:0.000000px;}
.y1b_c02095{bottom:146.998362px;}
.y1d_c02095{bottom:186.600234px;}
.y1c_c02095{bottom:196.320450px;}
.y1a_c02095{bottom:275.878542px;}
.y19_c02095{bottom:356.878758px;}
.y17_c02095{bottom:406.559730px;}
.y13_c02095{bottom:424.560306px;}
.y18_c02095{bottom:458.759262px;}
.y16_c02095{bottom:491.879514px;}
.y15_c02095{bottom:509.880090px;}
.y12_c02095{bottom:543.000342px;}
.y14_c02095{bottom:559.559874px;}
.y11_c02095{bottom:577.560450px;}
.y1f_c02095{bottom:596.639946px;}
.y1e_c02095{bottom:614.280450px;}
.yc_c02095{bottom:652.438650px;}
.yb_c02095{bottom:667.558326px;}
.ye_c02095{bottom:707.160234px;}
.yd_c02095{bottom:716.880450px;}
.ya_c02095{bottom:796.438506px;}
.y9_c02095{bottom:877.438722px;}
.y7_c02095{bottom:926.759730px;}
.y3_c02095{bottom:944.760306px;}
.y8_c02095{bottom:979.319226px;}
.y6_c02095{bottom:1012.439478px;}
.y5_c02095{bottom:1030.440054px;}
.y2_c02095{bottom:1063.560306px;}
.y4_c02095{bottom:1079.759874px;}
.y1_c02095{bottom:1097.760450px;}
.y10_c02095{bottom:1117.199946px;}
.yf_c02095{bottom:1134.840450px;}
.h3_c02095{height:32.530781px;}
.h1_c02095{height:41.696016px;}
.h2_c02095{height:41.812031px;}
.h5_c02095{height:53.067656px;}
.h4_c02095{height:54.654737px;}
.h0_c02095{height:1263.000000px;}
.w1_c02095{width:892.500000px;}
.w0_c02095{width:892.830000px;}
.x0_c02095{left:0.000000px;}
.xe_c02095{left:117.000000px;}
.xf_c02095{left:162.000144px;}
.x8_c02095{left:440.999856px;}
.x4_c02095{left:445.680576px;}
.xc_c02095{left:451.080000px;}
.x7_c02095{left:455.399604px;}
.x5_c02095{left:461.880144px;}
.x1_c02095{left:463.320000px;}
.xa_c02095{left:483.480360px;}
.x9_c02095{left:492.119496px;}
.x6_c02095{left:493.200576px;}
.xd_c02095{left:506.880360px;}
.x3_c02095{left:511.919892px;}
.x2_c02095{left:526.679604px;}
.xb_c02095{left:569.880036px;}
@media print{
.v0_c02095{vertical-align:0.000000pt;}
.v1_c02095{vertical-align:1.279488pt;}
.lsb_c02095{letter-spacing:-0.688512pt;}
.ls11_c02095{letter-spacing:-0.654720pt;}
.lse_c02095{letter-spacing:-0.642048pt;}
.ls8_c02095{letter-spacing:-0.544896pt;}
.lsa_c02095{letter-spacing:-0.511104pt;}
.ls16_c02095{letter-spacing:-0.321024pt;}
.ls18_c02095{letter-spacing:-0.244992pt;}
.ls12_c02095{letter-spacing:-0.240768pt;}
.lsf_c02095{letter-spacing:-0.232320pt;}
.ls7_c02095{letter-spacing:-0.215424pt;}
.ls4_c02095{letter-spacing:-0.105600pt;}
.ls15_c02095{letter-spacing:0.000000pt;}
.ls1_c02095{letter-spacing:0.005376pt;}
.ls6_c02095{letter-spacing:0.114048pt;}
.ls17_c02095{letter-spacing:0.215424pt;}
.lsd_c02095{letter-spacing:0.451968pt;}
.ls14_c02095{letter-spacing:0.456960pt;}
.ls10_c02095{letter-spacing:0.477312pt;}
.lsc_c02095{letter-spacing:0.515328pt;}
.ls13_c02095{letter-spacing:0.528000pt;}
.ls9_c02095{letter-spacing:0.532224pt;}
.ls2_c02095{letter-spacing:0.544896pt;}
.ls0_c02095{letter-spacing:0.578688pt;}
.ls5_c02095{letter-spacing:0.637824pt;}
.ls3_c02095{letter-spacing:0.642048pt;}
.wse_c02095{word-spacing:-13.445376pt;}
.wsc_c02095{word-spacing:-11.088000pt;}
.ws7_c02095{word-spacing:-11.075328pt;}
.ws10_c02095{word-spacing:-11.037312pt;}
.ws4_c02095{word-spacing:-10.344576pt;}
.ws2_c02095{word-spacing:-10.015104pt;}
.ws6_c02095{word-spacing:-9.871488pt;}
.ws16_c02095{word-spacing:-0.963072pt;}
.ws13_c02095{word-spacing:-0.899712pt;}
.ws11_c02095{word-spacing:-0.865920pt;}
.ws1a_c02095{word-spacing:-0.639744pt;}
.ws14_c02095{word-spacing:-0.105600pt;}
.ws17_c02095{word-spacing:-0.088704pt;}
.ws18_c02095{word-spacing:-0.080256pt;}
.ws19_c02095{word-spacing:-0.076032pt;}
.ws12_c02095{word-spacing:0.000000pt;}
.ws15_c02095{word-spacing:0.321024pt;}
.wsb_c02095{word-spacing:5.892480pt;}
.wsd_c02095{word-spacing:29.600256pt;}
.wsa_c02095{word-spacing:30.966144pt;}
.ws9_c02095{word-spacing:32.127744pt;}
.wsf_c02095{word-spacing:32.659968pt;}
.ws1_c02095{word-spacing:33.563904pt;}
.ws0_c02095{word-spacing:33.796224pt;}
.ws3_c02095{word-spacing:34.860672pt;}
.ws5_c02095{word-spacing:35.468928pt;}
.ws8_c02095{word-spacing:37.357056pt;}
._0_c02095{margin-left:-1.731840pt;}
._2_c02095{width:1.317888pt;}
._4_c02095{width:2.935680pt;}
._6_c02095{width:17.761920pt;}
._7_c02095{width:20.845440pt;}
._5_c02095{width:21.947904pt;}
._1_c02095{width:44.668800pt;}
._3_c02095{width:45.805056pt;}
.fs0_c02095{font-size:42.240000pt;}
.fs1_c02095{font-size:53.760000pt;}
.y0_c02095{bottom:0.000000pt;}
.y1b_c02095{bottom:130.665211pt;}
.y1d_c02095{bottom:165.866875pt;}
.y1c_c02095{bottom:174.507067pt;}
.y1a_c02095{bottom:245.225371pt;}
.y19_c02095{bottom:317.225563pt;}
.y17_c02095{bottom:361.386427pt;}
.y13_c02095{bottom:377.386939pt;}
.y18_c02095{bottom:407.786011pt;}
.y16_c02095{bottom:437.226235pt;}
.y15_c02095{bottom:453.226747pt;}
.y12_c02095{bottom:482.666971pt;}
.y14_c02095{bottom:497.386555pt;}
.y11_c02095{bottom:513.387067pt;}
.y1f_c02095{bottom:530.346619pt;}
.y1e_c02095{bottom:546.027067pt;}
.yc_c02095{bottom:579.945467pt;}
.yb_c02095{bottom:593.385179pt;}
.ye_c02095{bottom:628.586875pt;}
.yd_c02095{bottom:637.227067pt;}
.ya_c02095{bottom:707.945339pt;}
.y9_c02095{bottom:779.945531pt;}
.y7_c02095{bottom:823.786427pt;}
.y3_c02095{bottom:839.786939pt;}
.y8_c02095{bottom:870.505979pt;}
.y6_c02095{bottom:899.946203pt;}
.y5_c02095{bottom:915.946715pt;}
.y2_c02095{bottom:945.386939pt;}
.y4_c02095{bottom:959.786555pt;}
.y1_c02095{bottom:975.787067pt;}
.y10_c02095{bottom:993.066619pt;}
.yf_c02095{bottom:1008.747067pt;}
.h3_c02095{height:28.916250pt;}
.h1_c02095{height:37.063125pt;}
.h2_c02095{height:37.166250pt;}
.h5_c02095{height:47.171250pt;}
.h4_c02095{height:48.581988pt;}
.h0_c02095{height:1122.666667pt;}
.w1_c02095{width:793.333333pt;}
.w0_c02095{width:793.626667pt;}
.x0_c02095{left:0.000000pt;}
.xe_c02095{left:104.000000pt;}
.xf_c02095{left:144.000128pt;}
.x8_c02095{left:391.999872pt;}
.x4_c02095{left:396.160512pt;}
.xc_c02095{left:400.960000pt;}
.x7_c02095{left:404.799648pt;}
.x5_c02095{left:410.560128pt;}
.x1_c02095{left:411.840000pt;}
.xa_c02095{left:429.760320pt;}
.x9_c02095{left:437.439552pt;}
.x6_c02095{left:438.400512pt;}
.xd_c02095{left:450.560320pt;}
.x3_c02095{left:455.039904pt;}
.x2_c02095{left:468.159648pt;}
.xb_c02095{left:506.560032pt;}
}





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

.ir_c02096:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02096;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02096{font-family:ff1_c02096;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02096;src:url('chunks/assets/font_2197bcd01a2add07670902b8.woff2')format("woff");}.ff2_c02096{font-family:ff2_c02096;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02096;src:url('chunks/assets/font_40c2a0544e458f379d2c5215.woff2')format("woff");}.ff3_c02096{font-family:ff3_c02096;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02096{vertical-align:0.000000px;}
.v1_c02096{vertical-align:1.439424px;}
.ls14_c02096{letter-spacing:-0.679536px;}
.ls9_c02096{letter-spacing:-0.613008px;}
.lsb_c02096{letter-spacing:-0.574992px;}
.ls15_c02096{letter-spacing:-0.361152px;}
.ls11_c02096{letter-spacing:-0.275616px;}
.lsf_c02096{letter-spacing:-0.261360px;}
.ls8_c02096{letter-spacing:-0.242352px;}
.ls6_c02096{letter-spacing:-0.118800px;}
.ls13_c02096{letter-spacing:0.000000px;}
.ls2_c02096{letter-spacing:0.006048px;}
.ls7_c02096{letter-spacing:0.128304px;}
.lse_c02096{letter-spacing:0.242352px;}
.lsd_c02096{letter-spacing:0.508464px;}
.ls3_c02096{letter-spacing:0.514080px;}
.ls10_c02096{letter-spacing:0.536976px;}
.lsc_c02096{letter-spacing:0.579744px;}
.ls12_c02096{letter-spacing:0.594000px;}
.lsa_c02096{letter-spacing:0.598752px;}
.ls4_c02096{letter-spacing:0.613008px;}
.ls0_c02096{letter-spacing:0.651024px;}
.ls1_c02096{letter-spacing:0.717552px;}
.ls5_c02096{letter-spacing:0.722304px;}
.sc__c02096{text-shadow:none;}
.sc0_c02096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02096{-webkit-text-stroke:0px transparent;}
.sc0_c02096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c02096{word-spacing:-15.634080px;}
.wsc_c02096{word-spacing:-15.126048px;}
.wsa_c02096{word-spacing:-12.474000px;}
.ws8_c02096{word-spacing:-12.459744px;}
.ws9_c02096{word-spacing:-12.416976px;}
.wsf_c02096{word-spacing:-12.388464px;}
.ws4_c02096{word-spacing:-11.637648px;}
.wse_c02096{word-spacing:-11.305008px;}
.ws2_c02096{word-spacing:-11.266992px;}
.wsd_c02096{word-spacing:-11.200464px;}
.ws19_c02096{word-spacing:-3.598560px;}
.ws15_c02096{word-spacing:-1.078704px;}
.ws13_c02096{word-spacing:-1.012176px;}
.ws11_c02096{word-spacing:-0.974160px;}
.ws18_c02096{word-spacing:-0.719712px;}
.ws14_c02096{word-spacing:-0.118800px;}
.ws16_c02096{word-spacing:-0.099792px;}
.ws17_c02096{word-spacing:-0.085536px;}
.ws12_c02096{word-spacing:0.000000px;}
.wsb_c02096{word-spacing:33.300288px;}
.ws6_c02096{word-spacing:36.742464px;}
.ws1_c02096{word-spacing:37.759392px;}
.ws0_c02096{word-spacing:38.020752px;}
.ws3_c02096{word-spacing:39.218256px;}
.ws5_c02096{word-spacing:39.902544px;}
.ws7_c02096{word-spacing:42.026688px;}
._0_c02096{margin-left:-1.948320px;}
._2_c02096{width:1.482624px;}
._4_c02096{width:3.302640px;}
._5_c02096{width:5.730912px;}
._1_c02096{width:50.252400px;}
._3_c02096{width:51.530688px;}
.fc0_c02096{color:rgb(0,0,0);}
.fs0_c02096{font-size:47.520000px;}
.fs1_c02096{font-size:60.480000px;}
.y0_c02096{bottom:0.000000px;}
.y1f_c02096{bottom:20.880450px;}
.y1a_c02096{bottom:146.998362px;}
.y1c_c02096{bottom:186.600234px;}
.y1b_c02096{bottom:196.320450px;}
.y19_c02096{bottom:275.878542px;}
.y18_c02096{bottom:356.878758px;}
.y16_c02096{bottom:406.559730px;}
.y12_c02096{bottom:424.560306px;}
.y17_c02096{bottom:458.759262px;}
.y15_c02096{bottom:491.879514px;}
.y14_c02096{bottom:509.880090px;}
.y11_c02096{bottom:543.000342px;}
.y13_c02096{bottom:559.559874px;}
.y10_c02096{bottom:577.560450px;}
.y1e_c02096{bottom:593.760000px;}
.y20_c02096{bottom:596.640450px;}
.y1d_c02096{bottom:614.280450px;}
.yb_c02096{bottom:667.558326px;}
.yd_c02096{bottom:707.160234px;}
.yc_c02096{bottom:716.880450px;}
.ya_c02096{bottom:796.438506px;}
.y9_c02096{bottom:877.438722px;}
.y7_c02096{bottom:926.759730px;}
.y3_c02096{bottom:944.760306px;}
.y8_c02096{bottom:979.319226px;}
.y6_c02096{bottom:1012.439478px;}
.y5_c02096{bottom:1030.440054px;}
.y2_c02096{bottom:1063.560306px;}
.y4_c02096{bottom:1079.759874px;}
.y1_c02096{bottom:1097.760450px;}
.yf_c02096{bottom:1117.199946px;}
.ye_c02096{bottom:1134.840450px;}
.h3_c02096{height:32.530781px;}
.h7_c02096{height:36.720000px;}
.h6_c02096{height:41.402813px;}
.h1_c02096{height:41.696016px;}
.h2_c02096{height:41.812031px;}
.h5_c02096{height:53.067656px;}
.h8_c02096{height:53.215313px;}
.h4_c02096{height:54.654737px;}
.h0_c02096{height:1263.000000px;}
.w2_c02096{width:395.280000px;}
.w1_c02096{width:892.500000px;}
.w0_c02096{width:892.830000px;}
.x0_c02096{left:0.000000px;}
.xd_c02096{left:117.000000px;}
.xe_c02096{left:162.000144px;}
.x8_c02096{left:440.999856px;}
.x4_c02096{left:445.680576px;}
.xb_c02096{left:451.080000px;}
.x7_c02096{left:455.399604px;}
.x5_c02096{left:461.880144px;}
.x1_c02096{left:463.320000px;}
.xa_c02096{left:483.480360px;}
.x9_c02096{left:492.119496px;}
.x6_c02096{left:493.200576px;}
.xc_c02096{left:506.880360px;}
.x3_c02096{left:511.919892px;}
.x2_c02096{left:526.679604px;}
@media print{
.v0_c02096{vertical-align:0.000000pt;}
.v1_c02096{vertical-align:1.279488pt;}
.ls14_c02096{letter-spacing:-0.604032pt;}
.ls9_c02096{letter-spacing:-0.544896pt;}
.lsb_c02096{letter-spacing:-0.511104pt;}
.ls15_c02096{letter-spacing:-0.321024pt;}
.ls11_c02096{letter-spacing:-0.244992pt;}
.lsf_c02096{letter-spacing:-0.232320pt;}
.ls8_c02096{letter-spacing:-0.215424pt;}
.ls6_c02096{letter-spacing:-0.105600pt;}
.ls13_c02096{letter-spacing:0.000000pt;}
.ls2_c02096{letter-spacing:0.005376pt;}
.ls7_c02096{letter-spacing:0.114048pt;}
.lse_c02096{letter-spacing:0.215424pt;}
.lsd_c02096{letter-spacing:0.451968pt;}
.ls3_c02096{letter-spacing:0.456960pt;}
.ls10_c02096{letter-spacing:0.477312pt;}
.lsc_c02096{letter-spacing:0.515328pt;}
.ls12_c02096{letter-spacing:0.528000pt;}
.lsa_c02096{letter-spacing:0.532224pt;}
.ls4_c02096{letter-spacing:0.544896pt;}
.ls0_c02096{letter-spacing:0.578688pt;}
.ls1_c02096{letter-spacing:0.637824pt;}
.ls5_c02096{letter-spacing:0.642048pt;}
.ws10_c02096{word-spacing:-13.896960pt;}
.wsc_c02096{word-spacing:-13.445376pt;}
.wsa_c02096{word-spacing:-11.088000pt;}
.ws8_c02096{word-spacing:-11.075328pt;}
.ws9_c02096{word-spacing:-11.037312pt;}
.wsf_c02096{word-spacing:-11.011968pt;}
.ws4_c02096{word-spacing:-10.344576pt;}
.wse_c02096{word-spacing:-10.048896pt;}
.ws2_c02096{word-spacing:-10.015104pt;}
.wsd_c02096{word-spacing:-9.955968pt;}
.ws19_c02096{word-spacing:-3.198720pt;}
.ws15_c02096{word-spacing:-0.958848pt;}
.ws13_c02096{word-spacing:-0.899712pt;}
.ws11_c02096{word-spacing:-0.865920pt;}
.ws18_c02096{word-spacing:-0.639744pt;}
.ws14_c02096{word-spacing:-0.105600pt;}
.ws16_c02096{word-spacing:-0.088704pt;}
.ws17_c02096{word-spacing:-0.076032pt;}
.ws12_c02096{word-spacing:0.000000pt;}
.wsb_c02096{word-spacing:29.600256pt;}
.ws6_c02096{word-spacing:32.659968pt;}
.ws1_c02096{word-spacing:33.563904pt;}
.ws0_c02096{word-spacing:33.796224pt;}
.ws3_c02096{word-spacing:34.860672pt;}
.ws5_c02096{word-spacing:35.468928pt;}
.ws7_c02096{word-spacing:37.357056pt;}
._0_c02096{margin-left:-1.731840pt;}
._2_c02096{width:1.317888pt;}
._4_c02096{width:2.935680pt;}
._5_c02096{width:5.094144pt;}
._1_c02096{width:44.668800pt;}
._3_c02096{width:45.805056pt;}
.fs0_c02096{font-size:42.240000pt;}
.fs1_c02096{font-size:53.760000pt;}
.y0_c02096{bottom:0.000000pt;}
.y1f_c02096{bottom:18.560400pt;}
.y1a_c02096{bottom:130.665211pt;}
.y1c_c02096{bottom:165.866875pt;}
.y1b_c02096{bottom:174.507067pt;}
.y19_c02096{bottom:245.225371pt;}
.y18_c02096{bottom:317.225563pt;}
.y16_c02096{bottom:361.386427pt;}
.y12_c02096{bottom:377.386939pt;}
.y17_c02096{bottom:407.786011pt;}
.y15_c02096{bottom:437.226235pt;}
.y14_c02096{bottom:453.226747pt;}
.y11_c02096{bottom:482.666971pt;}
.y13_c02096{bottom:497.386555pt;}
.y10_c02096{bottom:513.387067pt;}
.y1e_c02096{bottom:527.786667pt;}
.y20_c02096{bottom:530.347067pt;}
.y1d_c02096{bottom:546.027067pt;}
.yb_c02096{bottom:593.385179pt;}
.yd_c02096{bottom:628.586875pt;}
.yc_c02096{bottom:637.227067pt;}
.ya_c02096{bottom:707.945339pt;}
.y9_c02096{bottom:779.945531pt;}
.y7_c02096{bottom:823.786427pt;}
.y3_c02096{bottom:839.786939pt;}
.y8_c02096{bottom:870.505979pt;}
.y6_c02096{bottom:899.946203pt;}
.y5_c02096{bottom:915.946715pt;}
.y2_c02096{bottom:945.386939pt;}
.y4_c02096{bottom:959.786555pt;}
.y1_c02096{bottom:975.787067pt;}
.yf_c02096{bottom:993.066619pt;}
.ye_c02096{bottom:1008.747067pt;}
.h3_c02096{height:28.916250pt;}
.h7_c02096{height:32.640000pt;}
.h6_c02096{height:36.802500pt;}
.h1_c02096{height:37.063125pt;}
.h2_c02096{height:37.166250pt;}
.h5_c02096{height:47.171250pt;}
.h8_c02096{height:47.302500pt;}
.h4_c02096{height:48.581988pt;}
.h0_c02096{height:1122.666667pt;}
.w2_c02096{width:351.360000pt;}
.w1_c02096{width:793.333333pt;}
.w0_c02096{width:793.626667pt;}
.x0_c02096{left:0.000000pt;}
.xd_c02096{left:104.000000pt;}
.xe_c02096{left:144.000128pt;}
.x8_c02096{left:391.999872pt;}
.x4_c02096{left:396.160512pt;}
.xb_c02096{left:400.960000pt;}
.x7_c02096{left:404.799648pt;}
.x5_c02096{left:410.560128pt;}
.x1_c02096{left:411.840000pt;}
.xa_c02096{left:429.760320pt;}
.x9_c02096{left:437.439552pt;}
.x6_c02096{left:438.400512pt;}
.xc_c02096{left:450.560320pt;}
.x3_c02096{left:455.039904pt;}
.x2_c02096{left:468.159648pt;}
}





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

.ir_c02097:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02097{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02097;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02097{font-family:ff1_c02097;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02097;src:url('chunks/assets/font_362132ade50d4ba74952f99f.woff2')format("woff");}.ff2_c02097{font-family:ff2_c02097;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02097;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02097{font-family:ff3_c02097;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02097{vertical-align:0.000000px;}
.ls9_c02097{letter-spacing:-0.679536px;}
.lsb_c02097{letter-spacing:-0.574992px;}
.lsf_c02097{letter-spacing:-0.361152px;}
.ls11_c02097{letter-spacing:-0.275616px;}
.lse_c02097{letter-spacing:-0.261360px;}
.ls8_c02097{letter-spacing:-0.242352px;}
.ls6_c02097{letter-spacing:-0.118800px;}
.ls13_c02097{letter-spacing:0.000000px;}
.ls1_c02097{letter-spacing:0.006048px;}
.ls7_c02097{letter-spacing:0.128304px;}
.ls14_c02097{letter-spacing:0.242352px;}
.lsd_c02097{letter-spacing:0.508464px;}
.ls0_c02097{letter-spacing:0.514080px;}
.ls10_c02097{letter-spacing:0.536976px;}
.lsc_c02097{letter-spacing:0.579744px;}
.ls12_c02097{letter-spacing:0.594000px;}
.lsa_c02097{letter-spacing:0.598752px;}
.ls4_c02097{letter-spacing:0.613008px;}
.ls2_c02097{letter-spacing:0.651024px;}
.ls15_c02097{letter-spacing:0.660528px;}
.ls3_c02097{letter-spacing:0.717552px;}
.ls5_c02097{letter-spacing:0.722304px;}
.sc__c02097{text-shadow:none;}
.sc0_c02097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02097{-webkit-text-stroke:0px transparent;}
.sc0_c02097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02097{word-spacing:-15.634080px;}
.wsb_c02097{word-spacing:-15.126048px;}
.ws9_c02097{word-spacing:-12.474000px;}
.ws6_c02097{word-spacing:-12.459744px;}
.ws8_c02097{word-spacing:-12.416976px;}
.ws7_c02097{word-spacing:-12.388464px;}
.ws4_c02097{word-spacing:-11.637648px;}
.ws5_c02097{word-spacing:-11.305008px;}
.ws2_c02097{word-spacing:-11.200464px;}
.ws15_c02097{word-spacing:-3.598560px;}
.ws17_c02097{word-spacing:-1.078704px;}
.ws18_c02097{word-spacing:-1.021680px;}
.ws16_c02097{word-spacing:-1.012176px;}
.ws10_c02097{word-spacing:-0.974160px;}
.ws12_c02097{word-spacing:-0.118800px;}
.ws13_c02097{word-spacing:-0.099792px;}
.ws14_c02097{word-spacing:-0.085536px;}
.ws11_c02097{word-spacing:0.000000px;}
.wsf_c02097{word-spacing:36.143712px;}
.wsd_c02097{word-spacing:36.742464px;}
.ws1_c02097{word-spacing:37.759392px;}
.ws0_c02097{word-spacing:38.020752px;}
.ws3_c02097{word-spacing:39.218256px;}
.wsc_c02097{word-spacing:39.902544px;}
.wse_c02097{word-spacing:42.026688px;}
._0_c02097{margin-left:-1.948320px;}
._2_c02097{width:1.482624px;}
._4_c02097{width:5.730912px;}
._1_c02097{width:50.252400px;}
._3_c02097{width:51.530688px;}
.fc0_c02097{color:rgb(0,0,0);}
.fs0_c02097{font-size:47.520000px;}
.fs1_c02097{font-size:60.480000px;}
.y0_c02097{bottom:0.000000px;}
.y10_c02097{bottom:20.880450px;}
.y1c_c02097{bottom:146.998362px;}
.y1e_c02097{bottom:186.600234px;}
.y1d_c02097{bottom:196.320450px;}
.y1b_c02097{bottom:275.878542px;}
.y1a_c02097{bottom:356.878758px;}
.y18_c02097{bottom:406.559730px;}
.y14_c02097{bottom:424.560306px;}
.y19_c02097{bottom:458.759262px;}
.y17_c02097{bottom:491.879514px;}
.y16_c02097{bottom:509.880090px;}
.y13_c02097{bottom:543.000342px;}
.y15_c02097{bottom:559.559874px;}
.y12_c02097{bottom:577.560450px;}
.y20_c02097{bottom:593.760000px;}
.y21_c02097{bottom:596.640450px;}
.y1f_c02097{bottom:614.280450px;}
.yb_c02097{bottom:667.558326px;}
.yd_c02097{bottom:707.160234px;}
.yc_c02097{bottom:716.880450px;}
.ya_c02097{bottom:796.438506px;}
.y9_c02097{bottom:877.438722px;}
.y7_c02097{bottom:926.759730px;}
.y3_c02097{bottom:944.760306px;}
.y8_c02097{bottom:979.319226px;}
.y6_c02097{bottom:1012.439478px;}
.y5_c02097{bottom:1030.440054px;}
.y2_c02097{bottom:1063.560306px;}
.y4_c02097{bottom:1079.759874px;}
.y1_c02097{bottom:1097.760450px;}
.yf_c02097{bottom:1114.320000px;}
.y11_c02097{bottom:1117.200450px;}
.ye_c02097{bottom:1134.840450px;}
.h3_c02097{height:32.530781px;}
.h5_c02097{height:36.720000px;}
.h4_c02097{height:41.402813px;}
.h1_c02097{height:41.696016px;}
.h2_c02097{height:41.812031px;}
.h7_c02097{height:53.067656px;}
.h6_c02097{height:53.215313px;}
.h0_c02097{height:1263.000000px;}
.w2_c02097{width:395.280000px;}
.w1_c02097{width:892.500000px;}
.w0_c02097{width:892.830000px;}
.x0_c02097{left:0.000000px;}
.xd_c02097{left:117.000000px;}
.xe_c02097{left:161.280000px;}
.x8_c02097{left:441.001044px;}
.x4_c02097{left:445.680576px;}
.xb_c02097{left:451.080000px;}
.x7_c02097{left:455.400792px;}
.x5_c02097{left:461.880144px;}
.x1_c02097{left:463.320000px;}
.xa_c02097{left:483.481548px;}
.x9_c02097{left:492.120684px;}
.x6_c02097{left:493.200576px;}
.xc_c02097{left:506.880360px;}
.x3_c02097{left:511.919892px;}
.x2_c02097{left:526.679604px;}
@media print{
.v0_c02097{vertical-align:0.000000pt;}
.ls9_c02097{letter-spacing:-0.604032pt;}
.lsb_c02097{letter-spacing:-0.511104pt;}
.lsf_c02097{letter-spacing:-0.321024pt;}
.ls11_c02097{letter-spacing:-0.244992pt;}
.lse_c02097{letter-spacing:-0.232320pt;}
.ls8_c02097{letter-spacing:-0.215424pt;}
.ls6_c02097{letter-spacing:-0.105600pt;}
.ls13_c02097{letter-spacing:0.000000pt;}
.ls1_c02097{letter-spacing:0.005376pt;}
.ls7_c02097{letter-spacing:0.114048pt;}
.ls14_c02097{letter-spacing:0.215424pt;}
.lsd_c02097{letter-spacing:0.451968pt;}
.ls0_c02097{letter-spacing:0.456960pt;}
.ls10_c02097{letter-spacing:0.477312pt;}
.lsc_c02097{letter-spacing:0.515328pt;}
.ls12_c02097{letter-spacing:0.528000pt;}
.lsa_c02097{letter-spacing:0.532224pt;}
.ls4_c02097{letter-spacing:0.544896pt;}
.ls2_c02097{letter-spacing:0.578688pt;}
.ls15_c02097{letter-spacing:0.587136pt;}
.ls3_c02097{letter-spacing:0.637824pt;}
.ls5_c02097{letter-spacing:0.642048pt;}
.wsa_c02097{word-spacing:-13.896960pt;}
.wsb_c02097{word-spacing:-13.445376pt;}
.ws9_c02097{word-spacing:-11.088000pt;}
.ws6_c02097{word-spacing:-11.075328pt;}
.ws8_c02097{word-spacing:-11.037312pt;}
.ws7_c02097{word-spacing:-11.011968pt;}
.ws4_c02097{word-spacing:-10.344576pt;}
.ws5_c02097{word-spacing:-10.048896pt;}
.ws2_c02097{word-spacing:-9.955968pt;}
.ws15_c02097{word-spacing:-3.198720pt;}
.ws17_c02097{word-spacing:-0.958848pt;}
.ws18_c02097{word-spacing:-0.908160pt;}
.ws16_c02097{word-spacing:-0.899712pt;}
.ws10_c02097{word-spacing:-0.865920pt;}
.ws12_c02097{word-spacing:-0.105600pt;}
.ws13_c02097{word-spacing:-0.088704pt;}
.ws14_c02097{word-spacing:-0.076032pt;}
.ws11_c02097{word-spacing:0.000000pt;}
.wsf_c02097{word-spacing:32.127744pt;}
.wsd_c02097{word-spacing:32.659968pt;}
.ws1_c02097{word-spacing:33.563904pt;}
.ws0_c02097{word-spacing:33.796224pt;}
.ws3_c02097{word-spacing:34.860672pt;}
.wsc_c02097{word-spacing:35.468928pt;}
.wse_c02097{word-spacing:37.357056pt;}
._0_c02097{margin-left:-1.731840pt;}
._2_c02097{width:1.317888pt;}
._4_c02097{width:5.094144pt;}
._1_c02097{width:44.668800pt;}
._3_c02097{width:45.805056pt;}
.fs0_c02097{font-size:42.240000pt;}
.fs1_c02097{font-size:53.760000pt;}
.y0_c02097{bottom:0.000000pt;}
.y10_c02097{bottom:18.560400pt;}
.y1c_c02097{bottom:130.665211pt;}
.y1e_c02097{bottom:165.866875pt;}
.y1d_c02097{bottom:174.507067pt;}
.y1b_c02097{bottom:245.225371pt;}
.y1a_c02097{bottom:317.225563pt;}
.y18_c02097{bottom:361.386427pt;}
.y14_c02097{bottom:377.386939pt;}
.y19_c02097{bottom:407.786011pt;}
.y17_c02097{bottom:437.226235pt;}
.y16_c02097{bottom:453.226747pt;}
.y13_c02097{bottom:482.666971pt;}
.y15_c02097{bottom:497.386555pt;}
.y12_c02097{bottom:513.387067pt;}
.y20_c02097{bottom:527.786667pt;}
.y21_c02097{bottom:530.347067pt;}
.y1f_c02097{bottom:546.027067pt;}
.yb_c02097{bottom:593.385179pt;}
.yd_c02097{bottom:628.586875pt;}
.yc_c02097{bottom:637.227067pt;}
.ya_c02097{bottom:707.945339pt;}
.y9_c02097{bottom:779.945531pt;}
.y7_c02097{bottom:823.786427pt;}
.y3_c02097{bottom:839.786939pt;}
.y8_c02097{bottom:870.505979pt;}
.y6_c02097{bottom:899.946203pt;}
.y5_c02097{bottom:915.946715pt;}
.y2_c02097{bottom:945.386939pt;}
.y4_c02097{bottom:959.786555pt;}
.y1_c02097{bottom:975.787067pt;}
.yf_c02097{bottom:990.506667pt;}
.y11_c02097{bottom:993.067067pt;}
.ye_c02097{bottom:1008.747067pt;}
.h3_c02097{height:28.916250pt;}
.h5_c02097{height:32.640000pt;}
.h4_c02097{height:36.802500pt;}
.h1_c02097{height:37.063125pt;}
.h2_c02097{height:37.166250pt;}
.h7_c02097{height:47.171250pt;}
.h6_c02097{height:47.302500pt;}
.h0_c02097{height:1122.666667pt;}
.w2_c02097{width:351.360000pt;}
.w1_c02097{width:793.333333pt;}
.w0_c02097{width:793.626667pt;}
.x0_c02097{left:0.000000pt;}
.xd_c02097{left:104.000000pt;}
.xe_c02097{left:143.360000pt;}
.x8_c02097{left:392.000928pt;}
.x4_c02097{left:396.160512pt;}
.xb_c02097{left:400.960000pt;}
.x7_c02097{left:404.800704pt;}
.x5_c02097{left:410.560128pt;}
.x1_c02097{left:411.840000pt;}
.xa_c02097{left:429.761376pt;}
.x9_c02097{left:437.440608pt;}
.x6_c02097{left:438.400512pt;}
.xc_c02097{left:450.560320pt;}
.x3_c02097{left:455.039904pt;}
.x2_c02097{left:468.159648pt;}
}





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

.ir_c02098:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02098{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02098;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02098{font-family:ff1_c02098;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02098;src:url('chunks/assets/font_aaf181e49e1cb1bf8e3a2134.woff2')format("woff");}.ff2_c02098{font-family:ff2_c02098;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02098;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02098{font-family:ff3_c02098;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02098{vertical-align:0.000000px;}
.ls9_c02098{letter-spacing:-0.679536px;}
.lsb_c02098{letter-spacing:-0.574992px;}
.ls12_c02098{letter-spacing:-0.275616px;}
.ls10_c02098{letter-spacing:-0.261360px;}
.ls8_c02098{letter-spacing:-0.242352px;}
.ls6_c02098{letter-spacing:-0.118800px;}
.ls14_c02098{letter-spacing:0.000000px;}
.ls3_c02098{letter-spacing:0.006048px;}
.ls7_c02098{letter-spacing:0.128304px;}
.lse_c02098{letter-spacing:0.242352px;}
.lsd_c02098{letter-spacing:0.508464px;}
.ls2_c02098{letter-spacing:0.514080px;}
.ls11_c02098{letter-spacing:0.536976px;}
.lsc_c02098{letter-spacing:0.579744px;}
.ls13_c02098{letter-spacing:0.594000px;}
.lsa_c02098{letter-spacing:0.598752px;}
.ls4_c02098{letter-spacing:0.613008px;}
.ls0_c02098{letter-spacing:0.651024px;}
.lsf_c02098{letter-spacing:0.660528px;}
.ls1_c02098{letter-spacing:0.717552px;}
.ls5_c02098{letter-spacing:0.722304px;}
.sc__c02098{text-shadow:none;}
.sc0_c02098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02098{-webkit-text-stroke:0px transparent;}
.sc0_c02098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02098{word-spacing:-15.634080px;}
.wsc_c02098{word-spacing:-15.126048px;}
.wsa_c02098{word-spacing:-12.474000px;}
.ws9_c02098{word-spacing:-12.416976px;}
.ws4_c02098{word-spacing:-11.637648px;}
.ws2_c02098{word-spacing:-11.200464px;}
.ws15_c02098{word-spacing:-3.598560px;}
.ws11_c02098{word-spacing:-1.078704px;}
.ws12_c02098{word-spacing:-1.021680px;}
.wsf_c02098{word-spacing:-1.012176px;}
.wsd_c02098{word-spacing:-0.974160px;}
.ws10_c02098{word-spacing:-0.118800px;}
.ws13_c02098{word-spacing:-0.099792px;}
.ws14_c02098{word-spacing:-0.085536px;}
.wse_c02098{word-spacing:0.000000px;}
.ws8_c02098{word-spacing:36.143712px;}
.ws6_c02098{word-spacing:36.742464px;}
.ws1_c02098{word-spacing:37.759392px;}
.ws0_c02098{word-spacing:38.020752px;}
.ws3_c02098{word-spacing:39.218256px;}
.ws5_c02098{word-spacing:39.902544px;}
.ws7_c02098{word-spacing:42.026688px;}
._0_c02098{margin-left:-1.948320px;}
._2_c02098{width:1.482624px;}
._4_c02098{width:5.730912px;}
._1_c02098{width:50.252400px;}
._3_c02098{width:51.530688px;}
.fc0_c02098{color:rgb(0,0,0);}
.fs0_c02098{font-size:47.520000px;}
.fs1_c02098{font-size:60.480000px;}
.y0_c02098{bottom:0.000000px;}
.y10_c02098{bottom:20.880450px;}
.y1c_c02098{bottom:146.998362px;}
.y1e_c02098{bottom:186.600234px;}
.y1d_c02098{bottom:196.320450px;}
.y1b_c02098{bottom:275.878542px;}
.y1a_c02098{bottom:356.878758px;}
.y18_c02098{bottom:406.559730px;}
.y14_c02098{bottom:424.560306px;}
.y19_c02098{bottom:458.759262px;}
.y17_c02098{bottom:491.879514px;}
.y16_c02098{bottom:509.880090px;}
.y13_c02098{bottom:543.000342px;}
.y15_c02098{bottom:559.559874px;}
.y12_c02098{bottom:577.560450px;}
.y20_c02098{bottom:593.760000px;}
.y21_c02098{bottom:596.640450px;}
.y1f_c02098{bottom:614.280450px;}
.yb_c02098{bottom:667.558326px;}
.yd_c02098{bottom:707.160234px;}
.yc_c02098{bottom:716.880450px;}
.ya_c02098{bottom:796.438506px;}
.y9_c02098{bottom:877.438722px;}
.y7_c02098{bottom:926.759730px;}
.y3_c02098{bottom:944.760306px;}
.y8_c02098{bottom:979.319226px;}
.y6_c02098{bottom:1012.439478px;}
.y5_c02098{bottom:1030.440054px;}
.y2_c02098{bottom:1063.560306px;}
.y4_c02098{bottom:1079.759874px;}
.y1_c02098{bottom:1097.760450px;}
.yf_c02098{bottom:1114.320000px;}
.y11_c02098{bottom:1117.200450px;}
.ye_c02098{bottom:1134.840450px;}
.h3_c02098{height:32.530781px;}
.h5_c02098{height:36.720000px;}
.h4_c02098{height:41.402813px;}
.h1_c02098{height:41.696016px;}
.h2_c02098{height:41.812031px;}
.h7_c02098{height:53.067656px;}
.h6_c02098{height:53.215313px;}
.h0_c02098{height:1263.000000px;}
.w2_c02098{width:395.280000px;}
.w1_c02098{width:892.500000px;}
.w0_c02098{width:892.830000px;}
.x0_c02098{left:0.000000px;}
.xd_c02098{left:117.000000px;}
.xe_c02098{left:161.280000px;}
.x8_c02098{left:440.999856px;}
.x4_c02098{left:445.680576px;}
.xb_c02098{left:451.080000px;}
.x7_c02098{left:455.399604px;}
.x5_c02098{left:461.880144px;}
.x1_c02098{left:463.320000px;}
.xa_c02098{left:483.480360px;}
.x9_c02098{left:492.119496px;}
.x6_c02098{left:493.200576px;}
.xc_c02098{left:506.880360px;}
.x3_c02098{left:511.919892px;}
.x2_c02098{left:526.679604px;}
@media print{
.v0_c02098{vertical-align:0.000000pt;}
.ls9_c02098{letter-spacing:-0.604032pt;}
.lsb_c02098{letter-spacing:-0.511104pt;}
.ls12_c02098{letter-spacing:-0.244992pt;}
.ls10_c02098{letter-spacing:-0.232320pt;}
.ls8_c02098{letter-spacing:-0.215424pt;}
.ls6_c02098{letter-spacing:-0.105600pt;}
.ls14_c02098{letter-spacing:0.000000pt;}
.ls3_c02098{letter-spacing:0.005376pt;}
.ls7_c02098{letter-spacing:0.114048pt;}
.lse_c02098{letter-spacing:0.215424pt;}
.lsd_c02098{letter-spacing:0.451968pt;}
.ls2_c02098{letter-spacing:0.456960pt;}
.ls11_c02098{letter-spacing:0.477312pt;}
.lsc_c02098{letter-spacing:0.515328pt;}
.ls13_c02098{letter-spacing:0.528000pt;}
.lsa_c02098{letter-spacing:0.532224pt;}
.ls4_c02098{letter-spacing:0.544896pt;}
.ls0_c02098{letter-spacing:0.578688pt;}
.lsf_c02098{letter-spacing:0.587136pt;}
.ls1_c02098{letter-spacing:0.637824pt;}
.ls5_c02098{letter-spacing:0.642048pt;}
.wsb_c02098{word-spacing:-13.896960pt;}
.wsc_c02098{word-spacing:-13.445376pt;}
.wsa_c02098{word-spacing:-11.088000pt;}
.ws9_c02098{word-spacing:-11.037312pt;}
.ws4_c02098{word-spacing:-10.344576pt;}
.ws2_c02098{word-spacing:-9.955968pt;}
.ws15_c02098{word-spacing:-3.198720pt;}
.ws11_c02098{word-spacing:-0.958848pt;}
.ws12_c02098{word-spacing:-0.908160pt;}
.wsf_c02098{word-spacing:-0.899712pt;}
.wsd_c02098{word-spacing:-0.865920pt;}
.ws10_c02098{word-spacing:-0.105600pt;}
.ws13_c02098{word-spacing:-0.088704pt;}
.ws14_c02098{word-spacing:-0.076032pt;}
.wse_c02098{word-spacing:0.000000pt;}
.ws8_c02098{word-spacing:32.127744pt;}
.ws6_c02098{word-spacing:32.659968pt;}
.ws1_c02098{word-spacing:33.563904pt;}
.ws0_c02098{word-spacing:33.796224pt;}
.ws3_c02098{word-spacing:34.860672pt;}
.ws5_c02098{word-spacing:35.468928pt;}
.ws7_c02098{word-spacing:37.357056pt;}
._0_c02098{margin-left:-1.731840pt;}
._2_c02098{width:1.317888pt;}
._4_c02098{width:5.094144pt;}
._1_c02098{width:44.668800pt;}
._3_c02098{width:45.805056pt;}
.fs0_c02098{font-size:42.240000pt;}
.fs1_c02098{font-size:53.760000pt;}
.y0_c02098{bottom:0.000000pt;}
.y10_c02098{bottom:18.560400pt;}
.y1c_c02098{bottom:130.665211pt;}
.y1e_c02098{bottom:165.866875pt;}
.y1d_c02098{bottom:174.507067pt;}
.y1b_c02098{bottom:245.225371pt;}
.y1a_c02098{bottom:317.225563pt;}
.y18_c02098{bottom:361.386427pt;}
.y14_c02098{bottom:377.386939pt;}
.y19_c02098{bottom:407.786011pt;}
.y17_c02098{bottom:437.226235pt;}
.y16_c02098{bottom:453.226747pt;}
.y13_c02098{bottom:482.666971pt;}
.y15_c02098{bottom:497.386555pt;}
.y12_c02098{bottom:513.387067pt;}
.y20_c02098{bottom:527.786667pt;}
.y21_c02098{bottom:530.347067pt;}
.y1f_c02098{bottom:546.027067pt;}
.yb_c02098{bottom:593.385179pt;}
.yd_c02098{bottom:628.586875pt;}
.yc_c02098{bottom:637.227067pt;}
.ya_c02098{bottom:707.945339pt;}
.y9_c02098{bottom:779.945531pt;}
.y7_c02098{bottom:823.786427pt;}
.y3_c02098{bottom:839.786939pt;}
.y8_c02098{bottom:870.505979pt;}
.y6_c02098{bottom:899.946203pt;}
.y5_c02098{bottom:915.946715pt;}
.y2_c02098{bottom:945.386939pt;}
.y4_c02098{bottom:959.786555pt;}
.y1_c02098{bottom:975.787067pt;}
.yf_c02098{bottom:990.506667pt;}
.y11_c02098{bottom:993.067067pt;}
.ye_c02098{bottom:1008.747067pt;}
.h3_c02098{height:28.916250pt;}
.h5_c02098{height:32.640000pt;}
.h4_c02098{height:36.802500pt;}
.h1_c02098{height:37.063125pt;}
.h2_c02098{height:37.166250pt;}
.h7_c02098{height:47.171250pt;}
.h6_c02098{height:47.302500pt;}
.h0_c02098{height:1122.666667pt;}
.w2_c02098{width:351.360000pt;}
.w1_c02098{width:793.333333pt;}
.w0_c02098{width:793.626667pt;}
.x0_c02098{left:0.000000pt;}
.xd_c02098{left:104.000000pt;}
.xe_c02098{left:143.360000pt;}
.x8_c02098{left:391.999872pt;}
.x4_c02098{left:396.160512pt;}
.xb_c02098{left:400.960000pt;}
.x7_c02098{left:404.799648pt;}
.x5_c02098{left:410.560128pt;}
.x1_c02098{left:411.840000pt;}
.xa_c02098{left:429.760320pt;}
.x9_c02098{left:437.439552pt;}
.x6_c02098{left:438.400512pt;}
.xc_c02098{left:450.560320pt;}
.x3_c02098{left:455.039904pt;}
.x2_c02098{left:468.159648pt;}
}





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

.ir_c02099:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02099{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02099;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02099{font-family:ff1_c02099;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02099;src:url('chunks/assets/font_156db581f0e9763244d2212f.woff2')format("woff");}.ff2_c02099{font-family:ff2_c02099;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02099;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02099{font-family:ff3_c02099;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02099{vertical-align:0.000000px;}
.ls9_c02099{letter-spacing:-0.679536px;}
.lsb_c02099{letter-spacing:-0.574992px;}
.ls12_c02099{letter-spacing:-0.275616px;}
.ls10_c02099{letter-spacing:-0.261360px;}
.ls8_c02099{letter-spacing:-0.242352px;}
.ls6_c02099{letter-spacing:-0.118800px;}
.ls14_c02099{letter-spacing:0.000000px;}
.ls3_c02099{letter-spacing:0.006048px;}
.ls7_c02099{letter-spacing:0.128304px;}
.lse_c02099{letter-spacing:0.242352px;}
.lsd_c02099{letter-spacing:0.508464px;}
.ls2_c02099{letter-spacing:0.514080px;}
.ls11_c02099{letter-spacing:0.536976px;}
.lsc_c02099{letter-spacing:0.579744px;}
.ls13_c02099{letter-spacing:0.594000px;}
.lsa_c02099{letter-spacing:0.598752px;}
.ls4_c02099{letter-spacing:0.613008px;}
.ls0_c02099{letter-spacing:0.651024px;}
.lsf_c02099{letter-spacing:0.660528px;}
.ls1_c02099{letter-spacing:0.717552px;}
.ls5_c02099{letter-spacing:0.722304px;}
.sc__c02099{text-shadow:none;}
.sc0_c02099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02099{-webkit-text-stroke:0px transparent;}
.sc0_c02099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02099{word-spacing:-15.634080px;}
.wsc_c02099{word-spacing:-15.126048px;}
.wsa_c02099{word-spacing:-12.474000px;}
.ws9_c02099{word-spacing:-12.416976px;}
.ws4_c02099{word-spacing:-11.637648px;}
.ws2_c02099{word-spacing:-11.200464px;}
.ws15_c02099{word-spacing:-3.598560px;}
.ws11_c02099{word-spacing:-1.078704px;}
.ws12_c02099{word-spacing:-1.021680px;}
.wsf_c02099{word-spacing:-1.012176px;}
.wsd_c02099{word-spacing:-0.974160px;}
.ws10_c02099{word-spacing:-0.118800px;}
.ws13_c02099{word-spacing:-0.099792px;}
.ws14_c02099{word-spacing:-0.085536px;}
.wse_c02099{word-spacing:0.000000px;}
.ws8_c02099{word-spacing:36.143712px;}
.ws6_c02099{word-spacing:36.742464px;}
.ws1_c02099{word-spacing:37.759392px;}
.ws0_c02099{word-spacing:38.020752px;}
.ws3_c02099{word-spacing:39.218256px;}
.ws5_c02099{word-spacing:39.902544px;}
.ws7_c02099{word-spacing:42.026688px;}
._0_c02099{margin-left:-1.948320px;}
._2_c02099{width:1.482624px;}
._4_c02099{width:5.730912px;}
._1_c02099{width:50.252400px;}
._3_c02099{width:51.530688px;}
.fc0_c02099{color:rgb(0,0,0);}
.fs0_c02099{font-size:47.520000px;}
.fs1_c02099{font-size:60.480000px;}
.y0_c02099{bottom:0.000000px;}
.y10_c02099{bottom:20.880450px;}
.y1c_c02099{bottom:146.998362px;}
.y1e_c02099{bottom:186.600234px;}
.y1d_c02099{bottom:196.320450px;}
.y1b_c02099{bottom:275.878542px;}
.y1a_c02099{bottom:356.878758px;}
.y18_c02099{bottom:406.559730px;}
.y14_c02099{bottom:424.560306px;}
.y19_c02099{bottom:458.759262px;}
.y17_c02099{bottom:491.879514px;}
.y16_c02099{bottom:509.880090px;}
.y13_c02099{bottom:543.000342px;}
.y15_c02099{bottom:559.559874px;}
.y12_c02099{bottom:577.560450px;}
.y20_c02099{bottom:593.760000px;}
.y21_c02099{bottom:596.640450px;}
.y1f_c02099{bottom:614.280450px;}
.yb_c02099{bottom:667.558326px;}
.yd_c02099{bottom:707.160234px;}
.yc_c02099{bottom:716.880450px;}
.ya_c02099{bottom:796.438506px;}
.y9_c02099{bottom:877.438722px;}
.y7_c02099{bottom:926.759730px;}
.y3_c02099{bottom:944.760306px;}
.y8_c02099{bottom:979.319226px;}
.y6_c02099{bottom:1012.439478px;}
.y5_c02099{bottom:1030.440054px;}
.y2_c02099{bottom:1063.560306px;}
.y4_c02099{bottom:1079.759874px;}
.y1_c02099{bottom:1097.760450px;}
.yf_c02099{bottom:1114.320000px;}
.y11_c02099{bottom:1117.200450px;}
.ye_c02099{bottom:1134.840450px;}
.h3_c02099{height:32.530781px;}
.h5_c02099{height:36.720000px;}
.h4_c02099{height:41.402813px;}
.h1_c02099{height:41.696016px;}
.h2_c02099{height:41.812031px;}
.h7_c02099{height:53.067656px;}
.h6_c02099{height:53.215313px;}
.h0_c02099{height:1263.000000px;}
.w2_c02099{width:395.280000px;}
.w1_c02099{width:892.500000px;}
.w0_c02099{width:892.830000px;}
.x0_c02099{left:0.000000px;}
.xd_c02099{left:117.000000px;}
.xe_c02099{left:161.280000px;}
.x8_c02099{left:440.999856px;}
.x4_c02099{left:445.680576px;}
.xb_c02099{left:451.080000px;}
.x7_c02099{left:455.399604px;}
.x5_c02099{left:461.880144px;}
.x1_c02099{left:463.320000px;}
.xa_c02099{left:483.480360px;}
.x9_c02099{left:492.119496px;}
.x6_c02099{left:493.200576px;}
.xc_c02099{left:506.880360px;}
.x3_c02099{left:511.919892px;}
.x2_c02099{left:526.679604px;}
@media print{
.v0_c02099{vertical-align:0.000000pt;}
.ls9_c02099{letter-spacing:-0.604032pt;}
.lsb_c02099{letter-spacing:-0.511104pt;}
.ls12_c02099{letter-spacing:-0.244992pt;}
.ls10_c02099{letter-spacing:-0.232320pt;}
.ls8_c02099{letter-spacing:-0.215424pt;}
.ls6_c02099{letter-spacing:-0.105600pt;}
.ls14_c02099{letter-spacing:0.000000pt;}
.ls3_c02099{letter-spacing:0.005376pt;}
.ls7_c02099{letter-spacing:0.114048pt;}
.lse_c02099{letter-spacing:0.215424pt;}
.lsd_c02099{letter-spacing:0.451968pt;}
.ls2_c02099{letter-spacing:0.456960pt;}
.ls11_c02099{letter-spacing:0.477312pt;}
.lsc_c02099{letter-spacing:0.515328pt;}
.ls13_c02099{letter-spacing:0.528000pt;}
.lsa_c02099{letter-spacing:0.532224pt;}
.ls4_c02099{letter-spacing:0.544896pt;}
.ls0_c02099{letter-spacing:0.578688pt;}
.lsf_c02099{letter-spacing:0.587136pt;}
.ls1_c02099{letter-spacing:0.637824pt;}
.ls5_c02099{letter-spacing:0.642048pt;}
.wsb_c02099{word-spacing:-13.896960pt;}
.wsc_c02099{word-spacing:-13.445376pt;}
.wsa_c02099{word-spacing:-11.088000pt;}
.ws9_c02099{word-spacing:-11.037312pt;}
.ws4_c02099{word-spacing:-10.344576pt;}
.ws2_c02099{word-spacing:-9.955968pt;}
.ws15_c02099{word-spacing:-3.198720pt;}
.ws11_c02099{word-spacing:-0.958848pt;}
.ws12_c02099{word-spacing:-0.908160pt;}
.wsf_c02099{word-spacing:-0.899712pt;}
.wsd_c02099{word-spacing:-0.865920pt;}
.ws10_c02099{word-spacing:-0.105600pt;}
.ws13_c02099{word-spacing:-0.088704pt;}
.ws14_c02099{word-spacing:-0.076032pt;}
.wse_c02099{word-spacing:0.000000pt;}
.ws8_c02099{word-spacing:32.127744pt;}
.ws6_c02099{word-spacing:32.659968pt;}
.ws1_c02099{word-spacing:33.563904pt;}
.ws0_c02099{word-spacing:33.796224pt;}
.ws3_c02099{word-spacing:34.860672pt;}
.ws5_c02099{word-spacing:35.468928pt;}
.ws7_c02099{word-spacing:37.357056pt;}
._0_c02099{margin-left:-1.731840pt;}
._2_c02099{width:1.317888pt;}
._4_c02099{width:5.094144pt;}
._1_c02099{width:44.668800pt;}
._3_c02099{width:45.805056pt;}
.fs0_c02099{font-size:42.240000pt;}
.fs1_c02099{font-size:53.760000pt;}
.y0_c02099{bottom:0.000000pt;}
.y10_c02099{bottom:18.560400pt;}
.y1c_c02099{bottom:130.665211pt;}
.y1e_c02099{bottom:165.866875pt;}
.y1d_c02099{bottom:174.507067pt;}
.y1b_c02099{bottom:245.225371pt;}
.y1a_c02099{bottom:317.225563pt;}
.y18_c02099{bottom:361.386427pt;}
.y14_c02099{bottom:377.386939pt;}
.y19_c02099{bottom:407.786011pt;}
.y17_c02099{bottom:437.226235pt;}
.y16_c02099{bottom:453.226747pt;}
.y13_c02099{bottom:482.666971pt;}
.y15_c02099{bottom:497.386555pt;}
.y12_c02099{bottom:513.387067pt;}
.y20_c02099{bottom:527.786667pt;}
.y21_c02099{bottom:530.347067pt;}
.y1f_c02099{bottom:546.027067pt;}
.yb_c02099{bottom:593.385179pt;}
.yd_c02099{bottom:628.586875pt;}
.yc_c02099{bottom:637.227067pt;}
.ya_c02099{bottom:707.945339pt;}
.y9_c02099{bottom:779.945531pt;}
.y7_c02099{bottom:823.786427pt;}
.y3_c02099{bottom:839.786939pt;}
.y8_c02099{bottom:870.505979pt;}
.y6_c02099{bottom:899.946203pt;}
.y5_c02099{bottom:915.946715pt;}
.y2_c02099{bottom:945.386939pt;}
.y4_c02099{bottom:959.786555pt;}
.y1_c02099{bottom:975.787067pt;}
.yf_c02099{bottom:990.506667pt;}
.y11_c02099{bottom:993.067067pt;}
.ye_c02099{bottom:1008.747067pt;}
.h3_c02099{height:28.916250pt;}
.h5_c02099{height:32.640000pt;}
.h4_c02099{height:36.802500pt;}
.h1_c02099{height:37.063125pt;}
.h2_c02099{height:37.166250pt;}
.h7_c02099{height:47.171250pt;}
.h6_c02099{height:47.302500pt;}
.h0_c02099{height:1122.666667pt;}
.w2_c02099{width:351.360000pt;}
.w1_c02099{width:793.333333pt;}
.w0_c02099{width:793.626667pt;}
.x0_c02099{left:0.000000pt;}
.xd_c02099{left:104.000000pt;}
.xe_c02099{left:143.360000pt;}
.x8_c02099{left:391.999872pt;}
.x4_c02099{left:396.160512pt;}
.xb_c02099{left:400.960000pt;}
.x7_c02099{left:404.799648pt;}
.x5_c02099{left:410.560128pt;}
.x1_c02099{left:411.840000pt;}
.xa_c02099{left:429.760320pt;}
.x9_c02099{left:437.439552pt;}
.x6_c02099{left:438.400512pt;}
.xc_c02099{left:450.560320pt;}
.x3_c02099{left:455.039904pt;}
.x2_c02099{left:468.159648pt;}
}





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

.ir_c02100:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02100{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02100;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02100{font-family:ff1_c02100;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02100;src:url('chunks/assets/font_019fc0555e50411f71349cc6.woff2')format("woff");}.ff2_c02100{font-family:ff2_c02100;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02100;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02100{font-family:ff3_c02100;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02100{vertical-align:0.000000px;}
.ls9_c02100{letter-spacing:-0.679536px;}
.lsb_c02100{letter-spacing:-0.574992px;}
.ls12_c02100{letter-spacing:-0.275616px;}
.ls10_c02100{letter-spacing:-0.261360px;}
.ls8_c02100{letter-spacing:-0.242352px;}
.ls6_c02100{letter-spacing:-0.118800px;}
.ls14_c02100{letter-spacing:0.000000px;}
.ls3_c02100{letter-spacing:0.006048px;}
.ls7_c02100{letter-spacing:0.128304px;}
.lse_c02100{letter-spacing:0.242352px;}
.lsd_c02100{letter-spacing:0.508464px;}
.ls2_c02100{letter-spacing:0.514080px;}
.ls11_c02100{letter-spacing:0.536976px;}
.lsc_c02100{letter-spacing:0.579744px;}
.ls13_c02100{letter-spacing:0.594000px;}
.lsa_c02100{letter-spacing:0.598752px;}
.ls4_c02100{letter-spacing:0.613008px;}
.ls0_c02100{letter-spacing:0.651024px;}
.lsf_c02100{letter-spacing:0.660528px;}
.ls1_c02100{letter-spacing:0.717552px;}
.ls5_c02100{letter-spacing:0.722304px;}
.sc__c02100{text-shadow:none;}
.sc0_c02100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02100{-webkit-text-stroke:0px transparent;}
.sc0_c02100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02100{word-spacing:-15.634080px;}
.wsc_c02100{word-spacing:-15.126048px;}
.wsa_c02100{word-spacing:-12.474000px;}
.ws9_c02100{word-spacing:-12.416976px;}
.ws4_c02100{word-spacing:-11.637648px;}
.ws2_c02100{word-spacing:-11.200464px;}
.ws15_c02100{word-spacing:-3.598560px;}
.ws11_c02100{word-spacing:-1.078704px;}
.ws12_c02100{word-spacing:-1.021680px;}
.wsf_c02100{word-spacing:-1.012176px;}
.wsd_c02100{word-spacing:-0.974160px;}
.ws10_c02100{word-spacing:-0.118800px;}
.ws13_c02100{word-spacing:-0.099792px;}
.ws14_c02100{word-spacing:-0.085536px;}
.wse_c02100{word-spacing:0.000000px;}
.ws8_c02100{word-spacing:36.143712px;}
.ws6_c02100{word-spacing:36.742464px;}
.ws1_c02100{word-spacing:37.759392px;}
.ws0_c02100{word-spacing:38.020752px;}
.ws3_c02100{word-spacing:39.218256px;}
.ws5_c02100{word-spacing:39.902544px;}
.ws7_c02100{word-spacing:42.026688px;}
._0_c02100{margin-left:-1.948320px;}
._2_c02100{width:1.482624px;}
._4_c02100{width:5.730912px;}
._1_c02100{width:50.252400px;}
._3_c02100{width:51.530688px;}
.fc0_c02100{color:rgb(0,0,0);}
.fs0_c02100{font-size:47.520000px;}
.fs1_c02100{font-size:60.480000px;}
.y0_c02100{bottom:0.000000px;}
.y10_c02100{bottom:20.880450px;}
.y1c_c02100{bottom:146.998362px;}
.y1e_c02100{bottom:186.600234px;}
.y1d_c02100{bottom:196.320450px;}
.y1b_c02100{bottom:275.878542px;}
.y1a_c02100{bottom:356.878758px;}
.y18_c02100{bottom:406.559730px;}
.y14_c02100{bottom:424.560306px;}
.y19_c02100{bottom:458.759262px;}
.y17_c02100{bottom:491.879514px;}
.y16_c02100{bottom:509.880090px;}
.y13_c02100{bottom:543.000342px;}
.y15_c02100{bottom:559.559874px;}
.y12_c02100{bottom:577.560450px;}
.y20_c02100{bottom:593.760000px;}
.y21_c02100{bottom:596.640450px;}
.y1f_c02100{bottom:614.280450px;}
.yb_c02100{bottom:667.558326px;}
.yd_c02100{bottom:707.160234px;}
.yc_c02100{bottom:716.880450px;}
.ya_c02100{bottom:796.438506px;}
.y9_c02100{bottom:877.438722px;}
.y7_c02100{bottom:926.759730px;}
.y3_c02100{bottom:944.760306px;}
.y8_c02100{bottom:979.319226px;}
.y6_c02100{bottom:1012.439478px;}
.y5_c02100{bottom:1030.440054px;}
.y2_c02100{bottom:1063.560306px;}
.y4_c02100{bottom:1079.759874px;}
.y1_c02100{bottom:1097.760450px;}
.yf_c02100{bottom:1114.320000px;}
.y11_c02100{bottom:1117.200450px;}
.ye_c02100{bottom:1134.840450px;}
.h3_c02100{height:32.530781px;}
.h5_c02100{height:36.720000px;}
.h4_c02100{height:41.402813px;}
.h1_c02100{height:41.696016px;}
.h2_c02100{height:41.812031px;}
.h7_c02100{height:53.067656px;}
.h6_c02100{height:53.215313px;}
.h0_c02100{height:1263.000000px;}
.w2_c02100{width:395.280000px;}
.w1_c02100{width:892.500000px;}
.w0_c02100{width:892.830000px;}
.x0_c02100{left:0.000000px;}
.xd_c02100{left:117.000000px;}
.xe_c02100{left:161.280000px;}
.x8_c02100{left:440.999856px;}
.x4_c02100{left:445.680576px;}
.xb_c02100{left:451.080000px;}
.x7_c02100{left:455.399604px;}
.x5_c02100{left:461.880144px;}
.x1_c02100{left:463.320000px;}
.xa_c02100{left:483.480360px;}
.x9_c02100{left:492.119496px;}
.x6_c02100{left:493.200576px;}
.xc_c02100{left:506.880360px;}
.x3_c02100{left:511.919892px;}
.x2_c02100{left:526.679604px;}
@media print{
.v0_c02100{vertical-align:0.000000pt;}
.ls9_c02100{letter-spacing:-0.604032pt;}
.lsb_c02100{letter-spacing:-0.511104pt;}
.ls12_c02100{letter-spacing:-0.244992pt;}
.ls10_c02100{letter-spacing:-0.232320pt;}
.ls8_c02100{letter-spacing:-0.215424pt;}
.ls6_c02100{letter-spacing:-0.105600pt;}
.ls14_c02100{letter-spacing:0.000000pt;}
.ls3_c02100{letter-spacing:0.005376pt;}
.ls7_c02100{letter-spacing:0.114048pt;}
.lse_c02100{letter-spacing:0.215424pt;}
.lsd_c02100{letter-spacing:0.451968pt;}
.ls2_c02100{letter-spacing:0.456960pt;}
.ls11_c02100{letter-spacing:0.477312pt;}
.lsc_c02100{letter-spacing:0.515328pt;}
.ls13_c02100{letter-spacing:0.528000pt;}
.lsa_c02100{letter-spacing:0.532224pt;}
.ls4_c02100{letter-spacing:0.544896pt;}
.ls0_c02100{letter-spacing:0.578688pt;}
.lsf_c02100{letter-spacing:0.587136pt;}
.ls1_c02100{letter-spacing:0.637824pt;}
.ls5_c02100{letter-spacing:0.642048pt;}
.wsb_c02100{word-spacing:-13.896960pt;}
.wsc_c02100{word-spacing:-13.445376pt;}
.wsa_c02100{word-spacing:-11.088000pt;}
.ws9_c02100{word-spacing:-11.037312pt;}
.ws4_c02100{word-spacing:-10.344576pt;}
.ws2_c02100{word-spacing:-9.955968pt;}
.ws15_c02100{word-spacing:-3.198720pt;}
.ws11_c02100{word-spacing:-0.958848pt;}
.ws12_c02100{word-spacing:-0.908160pt;}
.wsf_c02100{word-spacing:-0.899712pt;}
.wsd_c02100{word-spacing:-0.865920pt;}
.ws10_c02100{word-spacing:-0.105600pt;}
.ws13_c02100{word-spacing:-0.088704pt;}
.ws14_c02100{word-spacing:-0.076032pt;}
.wse_c02100{word-spacing:0.000000pt;}
.ws8_c02100{word-spacing:32.127744pt;}
.ws6_c02100{word-spacing:32.659968pt;}
.ws1_c02100{word-spacing:33.563904pt;}
.ws0_c02100{word-spacing:33.796224pt;}
.ws3_c02100{word-spacing:34.860672pt;}
.ws5_c02100{word-spacing:35.468928pt;}
.ws7_c02100{word-spacing:37.357056pt;}
._0_c02100{margin-left:-1.731840pt;}
._2_c02100{width:1.317888pt;}
._4_c02100{width:5.094144pt;}
._1_c02100{width:44.668800pt;}
._3_c02100{width:45.805056pt;}
.fs0_c02100{font-size:42.240000pt;}
.fs1_c02100{font-size:53.760000pt;}
.y0_c02100{bottom:0.000000pt;}
.y10_c02100{bottom:18.560400pt;}
.y1c_c02100{bottom:130.665211pt;}
.y1e_c02100{bottom:165.866875pt;}
.y1d_c02100{bottom:174.507067pt;}
.y1b_c02100{bottom:245.225371pt;}
.y1a_c02100{bottom:317.225563pt;}
.y18_c02100{bottom:361.386427pt;}
.y14_c02100{bottom:377.386939pt;}
.y19_c02100{bottom:407.786011pt;}
.y17_c02100{bottom:437.226235pt;}
.y16_c02100{bottom:453.226747pt;}
.y13_c02100{bottom:482.666971pt;}
.y15_c02100{bottom:497.386555pt;}
.y12_c02100{bottom:513.387067pt;}
.y20_c02100{bottom:527.786667pt;}
.y21_c02100{bottom:530.347067pt;}
.y1f_c02100{bottom:546.027067pt;}
.yb_c02100{bottom:593.385179pt;}
.yd_c02100{bottom:628.586875pt;}
.yc_c02100{bottom:637.227067pt;}
.ya_c02100{bottom:707.945339pt;}
.y9_c02100{bottom:779.945531pt;}
.y7_c02100{bottom:823.786427pt;}
.y3_c02100{bottom:839.786939pt;}
.y8_c02100{bottom:870.505979pt;}
.y6_c02100{bottom:899.946203pt;}
.y5_c02100{bottom:915.946715pt;}
.y2_c02100{bottom:945.386939pt;}
.y4_c02100{bottom:959.786555pt;}
.y1_c02100{bottom:975.787067pt;}
.yf_c02100{bottom:990.506667pt;}
.y11_c02100{bottom:993.067067pt;}
.ye_c02100{bottom:1008.747067pt;}
.h3_c02100{height:28.916250pt;}
.h5_c02100{height:32.640000pt;}
.h4_c02100{height:36.802500pt;}
.h1_c02100{height:37.063125pt;}
.h2_c02100{height:37.166250pt;}
.h7_c02100{height:47.171250pt;}
.h6_c02100{height:47.302500pt;}
.h0_c02100{height:1122.666667pt;}
.w2_c02100{width:351.360000pt;}
.w1_c02100{width:793.333333pt;}
.w0_c02100{width:793.626667pt;}
.x0_c02100{left:0.000000pt;}
.xd_c02100{left:104.000000pt;}
.xe_c02100{left:143.360000pt;}
.x8_c02100{left:391.999872pt;}
.x4_c02100{left:396.160512pt;}
.xb_c02100{left:400.960000pt;}
.x7_c02100{left:404.799648pt;}
.x5_c02100{left:410.560128pt;}
.x1_c02100{left:411.840000pt;}
.xa_c02100{left:429.760320pt;}
.x9_c02100{left:437.439552pt;}
.x6_c02100{left:438.400512pt;}
.xc_c02100{left:450.560320pt;}
.x3_c02100{left:455.039904pt;}
.x2_c02100{left:468.159648pt;}
}





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

.ir_c02101:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02101{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02101;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02101{font-family:ff1_c02101;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02101;src:url('chunks/assets/font_316f6bd74b4e1baf2ff9de9c.woff2')format("woff");}.ff2_c02101{font-family:ff2_c02101;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02101;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02101{font-family:ff3_c02101;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02101{vertical-align:0.000000px;}
.ls9_c02101{letter-spacing:-0.679536px;}
.lsb_c02101{letter-spacing:-0.574992px;}
.ls12_c02101{letter-spacing:-0.275616px;}
.ls10_c02101{letter-spacing:-0.261360px;}
.ls8_c02101{letter-spacing:-0.242352px;}
.ls6_c02101{letter-spacing:-0.118800px;}
.ls14_c02101{letter-spacing:0.000000px;}
.ls3_c02101{letter-spacing:0.006048px;}
.ls7_c02101{letter-spacing:0.128304px;}
.lse_c02101{letter-spacing:0.242352px;}
.lsd_c02101{letter-spacing:0.508464px;}
.ls2_c02101{letter-spacing:0.514080px;}
.ls11_c02101{letter-spacing:0.536976px;}
.lsc_c02101{letter-spacing:0.579744px;}
.ls13_c02101{letter-spacing:0.594000px;}
.lsa_c02101{letter-spacing:0.598752px;}
.ls4_c02101{letter-spacing:0.613008px;}
.ls0_c02101{letter-spacing:0.651024px;}
.lsf_c02101{letter-spacing:0.660528px;}
.ls1_c02101{letter-spacing:0.717552px;}
.ls5_c02101{letter-spacing:0.722304px;}
.sc__c02101{text-shadow:none;}
.sc0_c02101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02101{-webkit-text-stroke:0px transparent;}
.sc0_c02101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02101{word-spacing:-15.634080px;}
.wsc_c02101{word-spacing:-15.126048px;}
.wsa_c02101{word-spacing:-12.474000px;}
.ws9_c02101{word-spacing:-12.416976px;}
.ws4_c02101{word-spacing:-11.637648px;}
.ws2_c02101{word-spacing:-11.200464px;}
.ws15_c02101{word-spacing:-3.598560px;}
.ws11_c02101{word-spacing:-1.078704px;}
.ws12_c02101{word-spacing:-1.021680px;}
.wsf_c02101{word-spacing:-1.012176px;}
.wsd_c02101{word-spacing:-0.974160px;}
.ws10_c02101{word-spacing:-0.118800px;}
.ws13_c02101{word-spacing:-0.099792px;}
.ws14_c02101{word-spacing:-0.085536px;}
.wse_c02101{word-spacing:0.000000px;}
.ws8_c02101{word-spacing:36.143712px;}
.ws6_c02101{word-spacing:36.742464px;}
.ws1_c02101{word-spacing:37.759392px;}
.ws0_c02101{word-spacing:38.020752px;}
.ws3_c02101{word-spacing:39.218256px;}
.ws5_c02101{word-spacing:39.902544px;}
.ws7_c02101{word-spacing:42.026688px;}
._0_c02101{margin-left:-1.948320px;}
._2_c02101{width:1.482624px;}
._4_c02101{width:5.730912px;}
._1_c02101{width:50.252400px;}
._3_c02101{width:51.530688px;}
.fc0_c02101{color:rgb(0,0,0);}
.fs0_c02101{font-size:47.520000px;}
.fs1_c02101{font-size:60.480000px;}
.y0_c02101{bottom:0.000000px;}
.y10_c02101{bottom:20.880450px;}
.y1c_c02101{bottom:146.998362px;}
.y1e_c02101{bottom:186.600234px;}
.y1d_c02101{bottom:196.320450px;}
.y1b_c02101{bottom:275.878542px;}
.y1a_c02101{bottom:356.878758px;}
.y18_c02101{bottom:406.559730px;}
.y14_c02101{bottom:424.560306px;}
.y19_c02101{bottom:458.759262px;}
.y17_c02101{bottom:491.879514px;}
.y16_c02101{bottom:509.880090px;}
.y13_c02101{bottom:543.000342px;}
.y15_c02101{bottom:559.559874px;}
.y12_c02101{bottom:577.560450px;}
.y20_c02101{bottom:593.760000px;}
.y21_c02101{bottom:596.640450px;}
.y1f_c02101{bottom:614.280450px;}
.yb_c02101{bottom:667.558326px;}
.yd_c02101{bottom:707.160234px;}
.yc_c02101{bottom:716.880450px;}
.ya_c02101{bottom:796.438506px;}
.y9_c02101{bottom:877.438722px;}
.y7_c02101{bottom:926.759730px;}
.y3_c02101{bottom:944.760306px;}
.y8_c02101{bottom:979.319226px;}
.y6_c02101{bottom:1012.439478px;}
.y5_c02101{bottom:1030.440054px;}
.y2_c02101{bottom:1063.560306px;}
.y4_c02101{bottom:1079.759874px;}
.y1_c02101{bottom:1097.760450px;}
.yf_c02101{bottom:1114.320000px;}
.y11_c02101{bottom:1117.200450px;}
.ye_c02101{bottom:1134.840450px;}
.h3_c02101{height:32.530781px;}
.h5_c02101{height:36.720000px;}
.h4_c02101{height:41.402813px;}
.h1_c02101{height:41.696016px;}
.h2_c02101{height:41.812031px;}
.h7_c02101{height:53.067656px;}
.h6_c02101{height:53.215313px;}
.h0_c02101{height:1263.000000px;}
.w2_c02101{width:395.280000px;}
.w1_c02101{width:892.500000px;}
.w0_c02101{width:892.830000px;}
.x0_c02101{left:0.000000px;}
.xd_c02101{left:117.000000px;}
.xe_c02101{left:161.280000px;}
.x8_c02101{left:440.999856px;}
.x4_c02101{left:445.680576px;}
.xb_c02101{left:451.080000px;}
.x7_c02101{left:455.399604px;}
.x5_c02101{left:461.880144px;}
.x1_c02101{left:463.320000px;}
.xa_c02101{left:483.480360px;}
.x9_c02101{left:492.119496px;}
.x6_c02101{left:493.200576px;}
.xc_c02101{left:506.880360px;}
.x3_c02101{left:511.919892px;}
.x2_c02101{left:526.679604px;}
@media print{
.v0_c02101{vertical-align:0.000000pt;}
.ls9_c02101{letter-spacing:-0.604032pt;}
.lsb_c02101{letter-spacing:-0.511104pt;}
.ls12_c02101{letter-spacing:-0.244992pt;}
.ls10_c02101{letter-spacing:-0.232320pt;}
.ls8_c02101{letter-spacing:-0.215424pt;}
.ls6_c02101{letter-spacing:-0.105600pt;}
.ls14_c02101{letter-spacing:0.000000pt;}
.ls3_c02101{letter-spacing:0.005376pt;}
.ls7_c02101{letter-spacing:0.114048pt;}
.lse_c02101{letter-spacing:0.215424pt;}
.lsd_c02101{letter-spacing:0.451968pt;}
.ls2_c02101{letter-spacing:0.456960pt;}
.ls11_c02101{letter-spacing:0.477312pt;}
.lsc_c02101{letter-spacing:0.515328pt;}
.ls13_c02101{letter-spacing:0.528000pt;}
.lsa_c02101{letter-spacing:0.532224pt;}
.ls4_c02101{letter-spacing:0.544896pt;}
.ls0_c02101{letter-spacing:0.578688pt;}
.lsf_c02101{letter-spacing:0.587136pt;}
.ls1_c02101{letter-spacing:0.637824pt;}
.ls5_c02101{letter-spacing:0.642048pt;}
.wsb_c02101{word-spacing:-13.896960pt;}
.wsc_c02101{word-spacing:-13.445376pt;}
.wsa_c02101{word-spacing:-11.088000pt;}
.ws9_c02101{word-spacing:-11.037312pt;}
.ws4_c02101{word-spacing:-10.344576pt;}
.ws2_c02101{word-spacing:-9.955968pt;}
.ws15_c02101{word-spacing:-3.198720pt;}
.ws11_c02101{word-spacing:-0.958848pt;}
.ws12_c02101{word-spacing:-0.908160pt;}
.wsf_c02101{word-spacing:-0.899712pt;}
.wsd_c02101{word-spacing:-0.865920pt;}
.ws10_c02101{word-spacing:-0.105600pt;}
.ws13_c02101{word-spacing:-0.088704pt;}
.ws14_c02101{word-spacing:-0.076032pt;}
.wse_c02101{word-spacing:0.000000pt;}
.ws8_c02101{word-spacing:32.127744pt;}
.ws6_c02101{word-spacing:32.659968pt;}
.ws1_c02101{word-spacing:33.563904pt;}
.ws0_c02101{word-spacing:33.796224pt;}
.ws3_c02101{word-spacing:34.860672pt;}
.ws5_c02101{word-spacing:35.468928pt;}
.ws7_c02101{word-spacing:37.357056pt;}
._0_c02101{margin-left:-1.731840pt;}
._2_c02101{width:1.317888pt;}
._4_c02101{width:5.094144pt;}
._1_c02101{width:44.668800pt;}
._3_c02101{width:45.805056pt;}
.fs0_c02101{font-size:42.240000pt;}
.fs1_c02101{font-size:53.760000pt;}
.y0_c02101{bottom:0.000000pt;}
.y10_c02101{bottom:18.560400pt;}
.y1c_c02101{bottom:130.665211pt;}
.y1e_c02101{bottom:165.866875pt;}
.y1d_c02101{bottom:174.507067pt;}
.y1b_c02101{bottom:245.225371pt;}
.y1a_c02101{bottom:317.225563pt;}
.y18_c02101{bottom:361.386427pt;}
.y14_c02101{bottom:377.386939pt;}
.y19_c02101{bottom:407.786011pt;}
.y17_c02101{bottom:437.226235pt;}
.y16_c02101{bottom:453.226747pt;}
.y13_c02101{bottom:482.666971pt;}
.y15_c02101{bottom:497.386555pt;}
.y12_c02101{bottom:513.387067pt;}
.y20_c02101{bottom:527.786667pt;}
.y21_c02101{bottom:530.347067pt;}
.y1f_c02101{bottom:546.027067pt;}
.yb_c02101{bottom:593.385179pt;}
.yd_c02101{bottom:628.586875pt;}
.yc_c02101{bottom:637.227067pt;}
.ya_c02101{bottom:707.945339pt;}
.y9_c02101{bottom:779.945531pt;}
.y7_c02101{bottom:823.786427pt;}
.y3_c02101{bottom:839.786939pt;}
.y8_c02101{bottom:870.505979pt;}
.y6_c02101{bottom:899.946203pt;}
.y5_c02101{bottom:915.946715pt;}
.y2_c02101{bottom:945.386939pt;}
.y4_c02101{bottom:959.786555pt;}
.y1_c02101{bottom:975.787067pt;}
.yf_c02101{bottom:990.506667pt;}
.y11_c02101{bottom:993.067067pt;}
.ye_c02101{bottom:1008.747067pt;}
.h3_c02101{height:28.916250pt;}
.h5_c02101{height:32.640000pt;}
.h4_c02101{height:36.802500pt;}
.h1_c02101{height:37.063125pt;}
.h2_c02101{height:37.166250pt;}
.h7_c02101{height:47.171250pt;}
.h6_c02101{height:47.302500pt;}
.h0_c02101{height:1122.666667pt;}
.w2_c02101{width:351.360000pt;}
.w1_c02101{width:793.333333pt;}
.w0_c02101{width:793.626667pt;}
.x0_c02101{left:0.000000pt;}
.xd_c02101{left:104.000000pt;}
.xe_c02101{left:143.360000pt;}
.x8_c02101{left:391.999872pt;}
.x4_c02101{left:396.160512pt;}
.xb_c02101{left:400.960000pt;}
.x7_c02101{left:404.799648pt;}
.x5_c02101{left:410.560128pt;}
.x1_c02101{left:411.840000pt;}
.xa_c02101{left:429.760320pt;}
.x9_c02101{left:437.439552pt;}
.x6_c02101{left:438.400512pt;}
.xc_c02101{left:450.560320pt;}
.x3_c02101{left:455.039904pt;}
.x2_c02101{left:468.159648pt;}
}





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

.ir_c02102:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02102{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02102;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02102{font-family:ff1_c02102;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02102;src:url('chunks/assets/font_156db581f0e9763244d2212f.woff2')format("woff");}.ff2_c02102{font-family:ff2_c02102;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02102;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02102{font-family:ff3_c02102;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02102{vertical-align:0.000000px;}
.ls9_c02102{letter-spacing:-0.679536px;}
.lsb_c02102{letter-spacing:-0.574992px;}
.ls12_c02102{letter-spacing:-0.275616px;}
.ls10_c02102{letter-spacing:-0.261360px;}
.ls8_c02102{letter-spacing:-0.242352px;}
.ls6_c02102{letter-spacing:-0.118800px;}
.ls14_c02102{letter-spacing:0.000000px;}
.ls3_c02102{letter-spacing:0.006048px;}
.ls7_c02102{letter-spacing:0.128304px;}
.lse_c02102{letter-spacing:0.242352px;}
.lsd_c02102{letter-spacing:0.508464px;}
.ls2_c02102{letter-spacing:0.514080px;}
.ls11_c02102{letter-spacing:0.536976px;}
.lsc_c02102{letter-spacing:0.579744px;}
.ls13_c02102{letter-spacing:0.594000px;}
.lsa_c02102{letter-spacing:0.598752px;}
.ls4_c02102{letter-spacing:0.613008px;}
.ls0_c02102{letter-spacing:0.651024px;}
.lsf_c02102{letter-spacing:0.660528px;}
.ls1_c02102{letter-spacing:0.717552px;}
.ls5_c02102{letter-spacing:0.722304px;}
.sc__c02102{text-shadow:none;}
.sc0_c02102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02102{-webkit-text-stroke:0px transparent;}
.sc0_c02102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02102{word-spacing:-15.634080px;}
.wsc_c02102{word-spacing:-15.126048px;}
.wsa_c02102{word-spacing:-12.474000px;}
.ws9_c02102{word-spacing:-12.416976px;}
.ws4_c02102{word-spacing:-11.637648px;}
.ws2_c02102{word-spacing:-11.200464px;}
.ws15_c02102{word-spacing:-3.598560px;}
.ws11_c02102{word-spacing:-1.078704px;}
.ws12_c02102{word-spacing:-1.021680px;}
.wsf_c02102{word-spacing:-1.012176px;}
.wsd_c02102{word-spacing:-0.974160px;}
.ws10_c02102{word-spacing:-0.118800px;}
.ws13_c02102{word-spacing:-0.099792px;}
.ws14_c02102{word-spacing:-0.085536px;}
.wse_c02102{word-spacing:0.000000px;}
.ws8_c02102{word-spacing:36.143712px;}
.ws6_c02102{word-spacing:36.742464px;}
.ws1_c02102{word-spacing:37.759392px;}
.ws0_c02102{word-spacing:38.020752px;}
.ws3_c02102{word-spacing:39.218256px;}
.ws5_c02102{word-spacing:39.902544px;}
.ws7_c02102{word-spacing:42.026688px;}
._0_c02102{margin-left:-1.948320px;}
._2_c02102{width:1.482624px;}
._4_c02102{width:5.730912px;}
._1_c02102{width:50.252400px;}
._3_c02102{width:51.530688px;}
.fc0_c02102{color:rgb(0,0,0);}
.fs0_c02102{font-size:47.520000px;}
.fs1_c02102{font-size:60.480000px;}
.y0_c02102{bottom:0.000000px;}
.y10_c02102{bottom:20.880450px;}
.y1c_c02102{bottom:146.998362px;}
.y1e_c02102{bottom:186.600234px;}
.y1d_c02102{bottom:196.320450px;}
.y1b_c02102{bottom:275.878542px;}
.y1a_c02102{bottom:356.878758px;}
.y18_c02102{bottom:406.559730px;}
.y14_c02102{bottom:424.560306px;}
.y19_c02102{bottom:458.759262px;}
.y17_c02102{bottom:491.879514px;}
.y16_c02102{bottom:509.880090px;}
.y13_c02102{bottom:543.000342px;}
.y15_c02102{bottom:559.559874px;}
.y12_c02102{bottom:577.560450px;}
.y20_c02102{bottom:593.760000px;}
.y21_c02102{bottom:596.640450px;}
.y1f_c02102{bottom:614.280450px;}
.yb_c02102{bottom:667.558326px;}
.yd_c02102{bottom:707.160234px;}
.yc_c02102{bottom:716.880450px;}
.ya_c02102{bottom:796.438506px;}
.y9_c02102{bottom:877.438722px;}
.y7_c02102{bottom:926.759730px;}
.y3_c02102{bottom:944.760306px;}
.y8_c02102{bottom:979.319226px;}
.y6_c02102{bottom:1012.439478px;}
.y5_c02102{bottom:1030.440054px;}
.y2_c02102{bottom:1063.560306px;}
.y4_c02102{bottom:1079.759874px;}
.y1_c02102{bottom:1097.760450px;}
.yf_c02102{bottom:1114.320000px;}
.y11_c02102{bottom:1117.200450px;}
.ye_c02102{bottom:1134.840450px;}
.h3_c02102{height:32.530781px;}
.h5_c02102{height:36.720000px;}
.h4_c02102{height:41.402813px;}
.h1_c02102{height:41.696016px;}
.h2_c02102{height:41.812031px;}
.h7_c02102{height:53.067656px;}
.h6_c02102{height:53.215313px;}
.h0_c02102{height:1263.000000px;}
.w2_c02102{width:395.280000px;}
.w1_c02102{width:892.500000px;}
.w0_c02102{width:892.830000px;}
.x0_c02102{left:0.000000px;}
.xd_c02102{left:117.000000px;}
.xe_c02102{left:161.280000px;}
.x8_c02102{left:440.999856px;}
.x4_c02102{left:445.680576px;}
.xb_c02102{left:451.080000px;}
.x7_c02102{left:455.399604px;}
.x5_c02102{left:461.880144px;}
.x1_c02102{left:463.320000px;}
.xa_c02102{left:483.480360px;}
.x9_c02102{left:492.119496px;}
.x6_c02102{left:493.200576px;}
.xc_c02102{left:506.880360px;}
.x3_c02102{left:511.919892px;}
.x2_c02102{left:526.679604px;}
@media print{
.v0_c02102{vertical-align:0.000000pt;}
.ls9_c02102{letter-spacing:-0.604032pt;}
.lsb_c02102{letter-spacing:-0.511104pt;}
.ls12_c02102{letter-spacing:-0.244992pt;}
.ls10_c02102{letter-spacing:-0.232320pt;}
.ls8_c02102{letter-spacing:-0.215424pt;}
.ls6_c02102{letter-spacing:-0.105600pt;}
.ls14_c02102{letter-spacing:0.000000pt;}
.ls3_c02102{letter-spacing:0.005376pt;}
.ls7_c02102{letter-spacing:0.114048pt;}
.lse_c02102{letter-spacing:0.215424pt;}
.lsd_c02102{letter-spacing:0.451968pt;}
.ls2_c02102{letter-spacing:0.456960pt;}
.ls11_c02102{letter-spacing:0.477312pt;}
.lsc_c02102{letter-spacing:0.515328pt;}
.ls13_c02102{letter-spacing:0.528000pt;}
.lsa_c02102{letter-spacing:0.532224pt;}
.ls4_c02102{letter-spacing:0.544896pt;}
.ls0_c02102{letter-spacing:0.578688pt;}
.lsf_c02102{letter-spacing:0.587136pt;}
.ls1_c02102{letter-spacing:0.637824pt;}
.ls5_c02102{letter-spacing:0.642048pt;}
.wsb_c02102{word-spacing:-13.896960pt;}
.wsc_c02102{word-spacing:-13.445376pt;}
.wsa_c02102{word-spacing:-11.088000pt;}
.ws9_c02102{word-spacing:-11.037312pt;}
.ws4_c02102{word-spacing:-10.344576pt;}
.ws2_c02102{word-spacing:-9.955968pt;}
.ws15_c02102{word-spacing:-3.198720pt;}
.ws11_c02102{word-spacing:-0.958848pt;}
.ws12_c02102{word-spacing:-0.908160pt;}
.wsf_c02102{word-spacing:-0.899712pt;}
.wsd_c02102{word-spacing:-0.865920pt;}
.ws10_c02102{word-spacing:-0.105600pt;}
.ws13_c02102{word-spacing:-0.088704pt;}
.ws14_c02102{word-spacing:-0.076032pt;}
.wse_c02102{word-spacing:0.000000pt;}
.ws8_c02102{word-spacing:32.127744pt;}
.ws6_c02102{word-spacing:32.659968pt;}
.ws1_c02102{word-spacing:33.563904pt;}
.ws0_c02102{word-spacing:33.796224pt;}
.ws3_c02102{word-spacing:34.860672pt;}
.ws5_c02102{word-spacing:35.468928pt;}
.ws7_c02102{word-spacing:37.357056pt;}
._0_c02102{margin-left:-1.731840pt;}
._2_c02102{width:1.317888pt;}
._4_c02102{width:5.094144pt;}
._1_c02102{width:44.668800pt;}
._3_c02102{width:45.805056pt;}
.fs0_c02102{font-size:42.240000pt;}
.fs1_c02102{font-size:53.760000pt;}
.y0_c02102{bottom:0.000000pt;}
.y10_c02102{bottom:18.560400pt;}
.y1c_c02102{bottom:130.665211pt;}
.y1e_c02102{bottom:165.866875pt;}
.y1d_c02102{bottom:174.507067pt;}
.y1b_c02102{bottom:245.225371pt;}
.y1a_c02102{bottom:317.225563pt;}
.y18_c02102{bottom:361.386427pt;}
.y14_c02102{bottom:377.386939pt;}
.y19_c02102{bottom:407.786011pt;}
.y17_c02102{bottom:437.226235pt;}
.y16_c02102{bottom:453.226747pt;}
.y13_c02102{bottom:482.666971pt;}
.y15_c02102{bottom:497.386555pt;}
.y12_c02102{bottom:513.387067pt;}
.y20_c02102{bottom:527.786667pt;}
.y21_c02102{bottom:530.347067pt;}
.y1f_c02102{bottom:546.027067pt;}
.yb_c02102{bottom:593.385179pt;}
.yd_c02102{bottom:628.586875pt;}
.yc_c02102{bottom:637.227067pt;}
.ya_c02102{bottom:707.945339pt;}
.y9_c02102{bottom:779.945531pt;}
.y7_c02102{bottom:823.786427pt;}
.y3_c02102{bottom:839.786939pt;}
.y8_c02102{bottom:870.505979pt;}
.y6_c02102{bottom:899.946203pt;}
.y5_c02102{bottom:915.946715pt;}
.y2_c02102{bottom:945.386939pt;}
.y4_c02102{bottom:959.786555pt;}
.y1_c02102{bottom:975.787067pt;}
.yf_c02102{bottom:990.506667pt;}
.y11_c02102{bottom:993.067067pt;}
.ye_c02102{bottom:1008.747067pt;}
.h3_c02102{height:28.916250pt;}
.h5_c02102{height:32.640000pt;}
.h4_c02102{height:36.802500pt;}
.h1_c02102{height:37.063125pt;}
.h2_c02102{height:37.166250pt;}
.h7_c02102{height:47.171250pt;}
.h6_c02102{height:47.302500pt;}
.h0_c02102{height:1122.666667pt;}
.w2_c02102{width:351.360000pt;}
.w1_c02102{width:793.333333pt;}
.w0_c02102{width:793.626667pt;}
.x0_c02102{left:0.000000pt;}
.xd_c02102{left:104.000000pt;}
.xe_c02102{left:143.360000pt;}
.x8_c02102{left:391.999872pt;}
.x4_c02102{left:396.160512pt;}
.xb_c02102{left:400.960000pt;}
.x7_c02102{left:404.799648pt;}
.x5_c02102{left:410.560128pt;}
.x1_c02102{left:411.840000pt;}
.xa_c02102{left:429.760320pt;}
.x9_c02102{left:437.439552pt;}
.x6_c02102{left:438.400512pt;}
.xc_c02102{left:450.560320pt;}
.x3_c02102{left:455.039904pt;}
.x2_c02102{left:468.159648pt;}
}





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

.ir_c02103:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02103{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02103;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02103{font-family:ff1_c02103;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02103;src:url('chunks/assets/font_983db3794a9f810b3064c26b.woff2')format("woff");}.ff2_c02103{font-family:ff2_c02103;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02103;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02103{font-family:ff3_c02103;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02103{vertical-align:0.000000px;}
.ls9_c02103{letter-spacing:-0.679536px;}
.lsb_c02103{letter-spacing:-0.574992px;}
.ls12_c02103{letter-spacing:-0.275616px;}
.ls10_c02103{letter-spacing:-0.261360px;}
.ls8_c02103{letter-spacing:-0.242352px;}
.ls6_c02103{letter-spacing:-0.118800px;}
.ls14_c02103{letter-spacing:0.000000px;}
.ls3_c02103{letter-spacing:0.006048px;}
.ls7_c02103{letter-spacing:0.128304px;}
.lse_c02103{letter-spacing:0.242352px;}
.lsd_c02103{letter-spacing:0.508464px;}
.ls2_c02103{letter-spacing:0.514080px;}
.ls11_c02103{letter-spacing:0.536976px;}
.lsc_c02103{letter-spacing:0.579744px;}
.ls13_c02103{letter-spacing:0.594000px;}
.lsa_c02103{letter-spacing:0.598752px;}
.ls4_c02103{letter-spacing:0.613008px;}
.ls0_c02103{letter-spacing:0.651024px;}
.lsf_c02103{letter-spacing:0.660528px;}
.ls1_c02103{letter-spacing:0.717552px;}
.ls5_c02103{letter-spacing:0.722304px;}
.sc__c02103{text-shadow:none;}
.sc0_c02103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02103{-webkit-text-stroke:0px transparent;}
.sc0_c02103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02103{word-spacing:-15.634080px;}
.wsc_c02103{word-spacing:-15.126048px;}
.wsa_c02103{word-spacing:-12.474000px;}
.ws9_c02103{word-spacing:-12.416976px;}
.ws4_c02103{word-spacing:-11.637648px;}
.ws2_c02103{word-spacing:-11.200464px;}
.ws15_c02103{word-spacing:-3.598560px;}
.ws11_c02103{word-spacing:-1.078704px;}
.ws12_c02103{word-spacing:-1.021680px;}
.wsf_c02103{word-spacing:-1.012176px;}
.wsd_c02103{word-spacing:-0.974160px;}
.ws10_c02103{word-spacing:-0.118800px;}
.ws13_c02103{word-spacing:-0.099792px;}
.ws14_c02103{word-spacing:-0.085536px;}
.wse_c02103{word-spacing:0.000000px;}
.ws8_c02103{word-spacing:36.143712px;}
.ws6_c02103{word-spacing:36.742464px;}
.ws1_c02103{word-spacing:37.759392px;}
.ws0_c02103{word-spacing:38.020752px;}
.ws3_c02103{word-spacing:39.218256px;}
.ws5_c02103{word-spacing:39.902544px;}
.ws7_c02103{word-spacing:42.026688px;}
._0_c02103{margin-left:-1.948320px;}
._2_c02103{width:1.482624px;}
._4_c02103{width:5.730912px;}
._1_c02103{width:50.252400px;}
._3_c02103{width:51.530688px;}
.fc0_c02103{color:rgb(0,0,0);}
.fs0_c02103{font-size:47.520000px;}
.fs1_c02103{font-size:60.480000px;}
.y0_c02103{bottom:0.000000px;}
.y10_c02103{bottom:20.880450px;}
.y1c_c02103{bottom:146.998362px;}
.y1e_c02103{bottom:186.600234px;}
.y1d_c02103{bottom:196.320450px;}
.y1b_c02103{bottom:275.878542px;}
.y1a_c02103{bottom:356.878758px;}
.y18_c02103{bottom:406.559730px;}
.y14_c02103{bottom:424.560306px;}
.y19_c02103{bottom:458.759262px;}
.y17_c02103{bottom:491.879514px;}
.y16_c02103{bottom:509.880090px;}
.y13_c02103{bottom:543.000342px;}
.y15_c02103{bottom:559.559874px;}
.y12_c02103{bottom:577.560450px;}
.y20_c02103{bottom:593.760000px;}
.y21_c02103{bottom:596.640450px;}
.y1f_c02103{bottom:614.280450px;}
.yb_c02103{bottom:667.558326px;}
.yd_c02103{bottom:707.160234px;}
.yc_c02103{bottom:716.880450px;}
.ya_c02103{bottom:796.438506px;}
.y9_c02103{bottom:877.438722px;}
.y7_c02103{bottom:926.759730px;}
.y3_c02103{bottom:944.760306px;}
.y8_c02103{bottom:979.319226px;}
.y6_c02103{bottom:1012.439478px;}
.y5_c02103{bottom:1030.440054px;}
.y2_c02103{bottom:1063.560306px;}
.y4_c02103{bottom:1079.759874px;}
.y1_c02103{bottom:1097.760450px;}
.yf_c02103{bottom:1114.320000px;}
.y11_c02103{bottom:1117.200450px;}
.ye_c02103{bottom:1134.840450px;}
.h3_c02103{height:32.530781px;}
.h5_c02103{height:36.720000px;}
.h4_c02103{height:41.402813px;}
.h1_c02103{height:41.696016px;}
.h2_c02103{height:41.812031px;}
.h7_c02103{height:53.067656px;}
.h6_c02103{height:53.215313px;}
.h0_c02103{height:1263.000000px;}
.w2_c02103{width:395.280000px;}
.w1_c02103{width:892.500000px;}
.w0_c02103{width:892.830000px;}
.x0_c02103{left:0.000000px;}
.xd_c02103{left:117.000000px;}
.xe_c02103{left:161.280000px;}
.x8_c02103{left:440.999856px;}
.x4_c02103{left:445.680576px;}
.xb_c02103{left:451.080000px;}
.x7_c02103{left:455.399604px;}
.x5_c02103{left:461.880144px;}
.x1_c02103{left:463.320000px;}
.xa_c02103{left:483.480360px;}
.x9_c02103{left:492.119496px;}
.x6_c02103{left:493.200576px;}
.xc_c02103{left:506.880360px;}
.x3_c02103{left:511.919892px;}
.x2_c02103{left:526.679604px;}
@media print{
.v0_c02103{vertical-align:0.000000pt;}
.ls9_c02103{letter-spacing:-0.604032pt;}
.lsb_c02103{letter-spacing:-0.511104pt;}
.ls12_c02103{letter-spacing:-0.244992pt;}
.ls10_c02103{letter-spacing:-0.232320pt;}
.ls8_c02103{letter-spacing:-0.215424pt;}
.ls6_c02103{letter-spacing:-0.105600pt;}
.ls14_c02103{letter-spacing:0.000000pt;}
.ls3_c02103{letter-spacing:0.005376pt;}
.ls7_c02103{letter-spacing:0.114048pt;}
.lse_c02103{letter-spacing:0.215424pt;}
.lsd_c02103{letter-spacing:0.451968pt;}
.ls2_c02103{letter-spacing:0.456960pt;}
.ls11_c02103{letter-spacing:0.477312pt;}
.lsc_c02103{letter-spacing:0.515328pt;}
.ls13_c02103{letter-spacing:0.528000pt;}
.lsa_c02103{letter-spacing:0.532224pt;}
.ls4_c02103{letter-spacing:0.544896pt;}
.ls0_c02103{letter-spacing:0.578688pt;}
.lsf_c02103{letter-spacing:0.587136pt;}
.ls1_c02103{letter-spacing:0.637824pt;}
.ls5_c02103{letter-spacing:0.642048pt;}
.wsb_c02103{word-spacing:-13.896960pt;}
.wsc_c02103{word-spacing:-13.445376pt;}
.wsa_c02103{word-spacing:-11.088000pt;}
.ws9_c02103{word-spacing:-11.037312pt;}
.ws4_c02103{word-spacing:-10.344576pt;}
.ws2_c02103{word-spacing:-9.955968pt;}
.ws15_c02103{word-spacing:-3.198720pt;}
.ws11_c02103{word-spacing:-0.958848pt;}
.ws12_c02103{word-spacing:-0.908160pt;}
.wsf_c02103{word-spacing:-0.899712pt;}
.wsd_c02103{word-spacing:-0.865920pt;}
.ws10_c02103{word-spacing:-0.105600pt;}
.ws13_c02103{word-spacing:-0.088704pt;}
.ws14_c02103{word-spacing:-0.076032pt;}
.wse_c02103{word-spacing:0.000000pt;}
.ws8_c02103{word-spacing:32.127744pt;}
.ws6_c02103{word-spacing:32.659968pt;}
.ws1_c02103{word-spacing:33.563904pt;}
.ws0_c02103{word-spacing:33.796224pt;}
.ws3_c02103{word-spacing:34.860672pt;}
.ws5_c02103{word-spacing:35.468928pt;}
.ws7_c02103{word-spacing:37.357056pt;}
._0_c02103{margin-left:-1.731840pt;}
._2_c02103{width:1.317888pt;}
._4_c02103{width:5.094144pt;}
._1_c02103{width:44.668800pt;}
._3_c02103{width:45.805056pt;}
.fs0_c02103{font-size:42.240000pt;}
.fs1_c02103{font-size:53.760000pt;}
.y0_c02103{bottom:0.000000pt;}
.y10_c02103{bottom:18.560400pt;}
.y1c_c02103{bottom:130.665211pt;}
.y1e_c02103{bottom:165.866875pt;}
.y1d_c02103{bottom:174.507067pt;}
.y1b_c02103{bottom:245.225371pt;}
.y1a_c02103{bottom:317.225563pt;}
.y18_c02103{bottom:361.386427pt;}
.y14_c02103{bottom:377.386939pt;}
.y19_c02103{bottom:407.786011pt;}
.y17_c02103{bottom:437.226235pt;}
.y16_c02103{bottom:453.226747pt;}
.y13_c02103{bottom:482.666971pt;}
.y15_c02103{bottom:497.386555pt;}
.y12_c02103{bottom:513.387067pt;}
.y20_c02103{bottom:527.786667pt;}
.y21_c02103{bottom:530.347067pt;}
.y1f_c02103{bottom:546.027067pt;}
.yb_c02103{bottom:593.385179pt;}
.yd_c02103{bottom:628.586875pt;}
.yc_c02103{bottom:637.227067pt;}
.ya_c02103{bottom:707.945339pt;}
.y9_c02103{bottom:779.945531pt;}
.y7_c02103{bottom:823.786427pt;}
.y3_c02103{bottom:839.786939pt;}
.y8_c02103{bottom:870.505979pt;}
.y6_c02103{bottom:899.946203pt;}
.y5_c02103{bottom:915.946715pt;}
.y2_c02103{bottom:945.386939pt;}
.y4_c02103{bottom:959.786555pt;}
.y1_c02103{bottom:975.787067pt;}
.yf_c02103{bottom:990.506667pt;}
.y11_c02103{bottom:993.067067pt;}
.ye_c02103{bottom:1008.747067pt;}
.h3_c02103{height:28.916250pt;}
.h5_c02103{height:32.640000pt;}
.h4_c02103{height:36.802500pt;}
.h1_c02103{height:37.063125pt;}
.h2_c02103{height:37.166250pt;}
.h7_c02103{height:47.171250pt;}
.h6_c02103{height:47.302500pt;}
.h0_c02103{height:1122.666667pt;}
.w2_c02103{width:351.360000pt;}
.w1_c02103{width:793.333333pt;}
.w0_c02103{width:793.626667pt;}
.x0_c02103{left:0.000000pt;}
.xd_c02103{left:104.000000pt;}
.xe_c02103{left:143.360000pt;}
.x8_c02103{left:391.999872pt;}
.x4_c02103{left:396.160512pt;}
.xb_c02103{left:400.960000pt;}
.x7_c02103{left:404.799648pt;}
.x5_c02103{left:410.560128pt;}
.x1_c02103{left:411.840000pt;}
.xa_c02103{left:429.760320pt;}
.x9_c02103{left:437.439552pt;}
.x6_c02103{left:438.400512pt;}
.xc_c02103{left:450.560320pt;}
.x3_c02103{left:455.039904pt;}
.x2_c02103{left:468.159648pt;}
}





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

.ir_c02104:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02104{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02104;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02104{font-family:ff1_c02104;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02104;src:url('chunks/assets/font_ba13d07ec5a15f9d58d7b2b7.woff2')format("woff");}.ff2_c02104{font-family:ff2_c02104;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02104;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02104{font-family:ff3_c02104;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02104{vertical-align:0.000000px;}
.ls9_c02104{letter-spacing:-0.679536px;}
.lsb_c02104{letter-spacing:-0.574992px;}
.ls12_c02104{letter-spacing:-0.275616px;}
.ls10_c02104{letter-spacing:-0.261360px;}
.ls8_c02104{letter-spacing:-0.242352px;}
.ls6_c02104{letter-spacing:-0.118800px;}
.ls14_c02104{letter-spacing:0.000000px;}
.ls3_c02104{letter-spacing:0.006048px;}
.ls7_c02104{letter-spacing:0.128304px;}
.lse_c02104{letter-spacing:0.242352px;}
.lsd_c02104{letter-spacing:0.508464px;}
.ls2_c02104{letter-spacing:0.514080px;}
.ls11_c02104{letter-spacing:0.536976px;}
.lsc_c02104{letter-spacing:0.579744px;}
.ls13_c02104{letter-spacing:0.594000px;}
.lsa_c02104{letter-spacing:0.598752px;}
.ls4_c02104{letter-spacing:0.613008px;}
.ls0_c02104{letter-spacing:0.651024px;}
.lsf_c02104{letter-spacing:0.660528px;}
.ls1_c02104{letter-spacing:0.717552px;}
.ls5_c02104{letter-spacing:0.722304px;}
.sc__c02104{text-shadow:none;}
.sc0_c02104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02104{-webkit-text-stroke:0px transparent;}
.sc0_c02104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02104{word-spacing:-15.634080px;}
.wsc_c02104{word-spacing:-15.126048px;}
.wsa_c02104{word-spacing:-12.474000px;}
.ws9_c02104{word-spacing:-12.416976px;}
.ws4_c02104{word-spacing:-11.637648px;}
.ws2_c02104{word-spacing:-11.200464px;}
.ws15_c02104{word-spacing:-3.598560px;}
.ws11_c02104{word-spacing:-1.078704px;}
.ws12_c02104{word-spacing:-1.021680px;}
.wsf_c02104{word-spacing:-1.012176px;}
.wsd_c02104{word-spacing:-0.974160px;}
.ws10_c02104{word-spacing:-0.118800px;}
.ws13_c02104{word-spacing:-0.099792px;}
.ws14_c02104{word-spacing:-0.085536px;}
.wse_c02104{word-spacing:0.000000px;}
.ws8_c02104{word-spacing:36.143712px;}
.ws6_c02104{word-spacing:36.742464px;}
.ws1_c02104{word-spacing:37.759392px;}
.ws0_c02104{word-spacing:38.020752px;}
.ws3_c02104{word-spacing:39.218256px;}
.ws5_c02104{word-spacing:39.902544px;}
.ws7_c02104{word-spacing:42.026688px;}
._0_c02104{margin-left:-1.948320px;}
._2_c02104{width:1.482624px;}
._4_c02104{width:5.730912px;}
._1_c02104{width:50.252400px;}
._3_c02104{width:51.530688px;}
.fc0_c02104{color:rgb(0,0,0);}
.fs0_c02104{font-size:47.520000px;}
.fs1_c02104{font-size:60.480000px;}
.y0_c02104{bottom:0.000000px;}
.y10_c02104{bottom:20.880450px;}
.y1c_c02104{bottom:146.998362px;}
.y1e_c02104{bottom:186.600234px;}
.y1d_c02104{bottom:196.320450px;}
.y1b_c02104{bottom:275.878542px;}
.y1a_c02104{bottom:356.878758px;}
.y18_c02104{bottom:406.559730px;}
.y14_c02104{bottom:424.560306px;}
.y19_c02104{bottom:458.759262px;}
.y17_c02104{bottom:491.879514px;}
.y16_c02104{bottom:509.880090px;}
.y13_c02104{bottom:543.000342px;}
.y15_c02104{bottom:559.559874px;}
.y12_c02104{bottom:577.560450px;}
.y20_c02104{bottom:593.760000px;}
.y21_c02104{bottom:596.640450px;}
.y1f_c02104{bottom:614.280450px;}
.yb_c02104{bottom:667.558326px;}
.yd_c02104{bottom:707.160234px;}
.yc_c02104{bottom:716.880450px;}
.ya_c02104{bottom:796.438506px;}
.y9_c02104{bottom:877.438722px;}
.y7_c02104{bottom:926.759730px;}
.y3_c02104{bottom:944.760306px;}
.y8_c02104{bottom:979.319226px;}
.y6_c02104{bottom:1012.439478px;}
.y5_c02104{bottom:1030.440054px;}
.y2_c02104{bottom:1063.560306px;}
.y4_c02104{bottom:1079.759874px;}
.y1_c02104{bottom:1097.760450px;}
.yf_c02104{bottom:1114.320000px;}
.y11_c02104{bottom:1117.200450px;}
.ye_c02104{bottom:1134.840450px;}
.h3_c02104{height:32.530781px;}
.h5_c02104{height:36.720000px;}
.h4_c02104{height:41.402813px;}
.h1_c02104{height:41.696016px;}
.h2_c02104{height:41.812031px;}
.h7_c02104{height:53.067656px;}
.h6_c02104{height:53.215313px;}
.h0_c02104{height:1263.000000px;}
.w2_c02104{width:395.280000px;}
.w1_c02104{width:892.500000px;}
.w0_c02104{width:892.830000px;}
.x0_c02104{left:0.000000px;}
.xd_c02104{left:117.000000px;}
.xe_c02104{left:161.280000px;}
.x8_c02104{left:440.999856px;}
.x4_c02104{left:445.680576px;}
.xb_c02104{left:451.080000px;}
.x7_c02104{left:455.399604px;}
.x5_c02104{left:461.880144px;}
.x1_c02104{left:463.320000px;}
.xa_c02104{left:483.480360px;}
.x9_c02104{left:492.119496px;}
.x6_c02104{left:493.200576px;}
.xc_c02104{left:506.880360px;}
.x3_c02104{left:511.919892px;}
.x2_c02104{left:526.679604px;}
@media print{
.v0_c02104{vertical-align:0.000000pt;}
.ls9_c02104{letter-spacing:-0.604032pt;}
.lsb_c02104{letter-spacing:-0.511104pt;}
.ls12_c02104{letter-spacing:-0.244992pt;}
.ls10_c02104{letter-spacing:-0.232320pt;}
.ls8_c02104{letter-spacing:-0.215424pt;}
.ls6_c02104{letter-spacing:-0.105600pt;}
.ls14_c02104{letter-spacing:0.000000pt;}
.ls3_c02104{letter-spacing:0.005376pt;}
.ls7_c02104{letter-spacing:0.114048pt;}
.lse_c02104{letter-spacing:0.215424pt;}
.lsd_c02104{letter-spacing:0.451968pt;}
.ls2_c02104{letter-spacing:0.456960pt;}
.ls11_c02104{letter-spacing:0.477312pt;}
.lsc_c02104{letter-spacing:0.515328pt;}
.ls13_c02104{letter-spacing:0.528000pt;}
.lsa_c02104{letter-spacing:0.532224pt;}
.ls4_c02104{letter-spacing:0.544896pt;}
.ls0_c02104{letter-spacing:0.578688pt;}
.lsf_c02104{letter-spacing:0.587136pt;}
.ls1_c02104{letter-spacing:0.637824pt;}
.ls5_c02104{letter-spacing:0.642048pt;}
.wsb_c02104{word-spacing:-13.896960pt;}
.wsc_c02104{word-spacing:-13.445376pt;}
.wsa_c02104{word-spacing:-11.088000pt;}
.ws9_c02104{word-spacing:-11.037312pt;}
.ws4_c02104{word-spacing:-10.344576pt;}
.ws2_c02104{word-spacing:-9.955968pt;}
.ws15_c02104{word-spacing:-3.198720pt;}
.ws11_c02104{word-spacing:-0.958848pt;}
.ws12_c02104{word-spacing:-0.908160pt;}
.wsf_c02104{word-spacing:-0.899712pt;}
.wsd_c02104{word-spacing:-0.865920pt;}
.ws10_c02104{word-spacing:-0.105600pt;}
.ws13_c02104{word-spacing:-0.088704pt;}
.ws14_c02104{word-spacing:-0.076032pt;}
.wse_c02104{word-spacing:0.000000pt;}
.ws8_c02104{word-spacing:32.127744pt;}
.ws6_c02104{word-spacing:32.659968pt;}
.ws1_c02104{word-spacing:33.563904pt;}
.ws0_c02104{word-spacing:33.796224pt;}
.ws3_c02104{word-spacing:34.860672pt;}
.ws5_c02104{word-spacing:35.468928pt;}
.ws7_c02104{word-spacing:37.357056pt;}
._0_c02104{margin-left:-1.731840pt;}
._2_c02104{width:1.317888pt;}
._4_c02104{width:5.094144pt;}
._1_c02104{width:44.668800pt;}
._3_c02104{width:45.805056pt;}
.fs0_c02104{font-size:42.240000pt;}
.fs1_c02104{font-size:53.760000pt;}
.y0_c02104{bottom:0.000000pt;}
.y10_c02104{bottom:18.560400pt;}
.y1c_c02104{bottom:130.665211pt;}
.y1e_c02104{bottom:165.866875pt;}
.y1d_c02104{bottom:174.507067pt;}
.y1b_c02104{bottom:245.225371pt;}
.y1a_c02104{bottom:317.225563pt;}
.y18_c02104{bottom:361.386427pt;}
.y14_c02104{bottom:377.386939pt;}
.y19_c02104{bottom:407.786011pt;}
.y17_c02104{bottom:437.226235pt;}
.y16_c02104{bottom:453.226747pt;}
.y13_c02104{bottom:482.666971pt;}
.y15_c02104{bottom:497.386555pt;}
.y12_c02104{bottom:513.387067pt;}
.y20_c02104{bottom:527.786667pt;}
.y21_c02104{bottom:530.347067pt;}
.y1f_c02104{bottom:546.027067pt;}
.yb_c02104{bottom:593.385179pt;}
.yd_c02104{bottom:628.586875pt;}
.yc_c02104{bottom:637.227067pt;}
.ya_c02104{bottom:707.945339pt;}
.y9_c02104{bottom:779.945531pt;}
.y7_c02104{bottom:823.786427pt;}
.y3_c02104{bottom:839.786939pt;}
.y8_c02104{bottom:870.505979pt;}
.y6_c02104{bottom:899.946203pt;}
.y5_c02104{bottom:915.946715pt;}
.y2_c02104{bottom:945.386939pt;}
.y4_c02104{bottom:959.786555pt;}
.y1_c02104{bottom:975.787067pt;}
.yf_c02104{bottom:990.506667pt;}
.y11_c02104{bottom:993.067067pt;}
.ye_c02104{bottom:1008.747067pt;}
.h3_c02104{height:28.916250pt;}
.h5_c02104{height:32.640000pt;}
.h4_c02104{height:36.802500pt;}
.h1_c02104{height:37.063125pt;}
.h2_c02104{height:37.166250pt;}
.h7_c02104{height:47.171250pt;}
.h6_c02104{height:47.302500pt;}
.h0_c02104{height:1122.666667pt;}
.w2_c02104{width:351.360000pt;}
.w1_c02104{width:793.333333pt;}
.w0_c02104{width:793.626667pt;}
.x0_c02104{left:0.000000pt;}
.xd_c02104{left:104.000000pt;}
.xe_c02104{left:143.360000pt;}
.x8_c02104{left:391.999872pt;}
.x4_c02104{left:396.160512pt;}
.xb_c02104{left:400.960000pt;}
.x7_c02104{left:404.799648pt;}
.x5_c02104{left:410.560128pt;}
.x1_c02104{left:411.840000pt;}
.xa_c02104{left:429.760320pt;}
.x9_c02104{left:437.439552pt;}
.x6_c02104{left:438.400512pt;}
.xc_c02104{left:450.560320pt;}
.x3_c02104{left:455.039904pt;}
.x2_c02104{left:468.159648pt;}
}





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

.ir_c02105:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02105{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02105;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02105{font-family:ff1_c02105;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02105;src:url('chunks/assets/font_7252d24e5b2ecb805415c766.woff2')format("woff");}.ff2_c02105{font-family:ff2_c02105;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02105;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02105{font-family:ff3_c02105;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02105{vertical-align:0.000000px;}
.ls9_c02105{letter-spacing:-0.679536px;}
.lsb_c02105{letter-spacing:-0.574992px;}
.ls12_c02105{letter-spacing:-0.275616px;}
.ls10_c02105{letter-spacing:-0.261360px;}
.ls8_c02105{letter-spacing:-0.242352px;}
.ls6_c02105{letter-spacing:-0.118800px;}
.ls14_c02105{letter-spacing:0.000000px;}
.ls3_c02105{letter-spacing:0.006048px;}
.ls7_c02105{letter-spacing:0.128304px;}
.lse_c02105{letter-spacing:0.242352px;}
.lsd_c02105{letter-spacing:0.508464px;}
.ls2_c02105{letter-spacing:0.514080px;}
.ls11_c02105{letter-spacing:0.536976px;}
.lsc_c02105{letter-spacing:0.579744px;}
.ls13_c02105{letter-spacing:0.594000px;}
.lsa_c02105{letter-spacing:0.598752px;}
.ls4_c02105{letter-spacing:0.613008px;}
.ls0_c02105{letter-spacing:0.651024px;}
.lsf_c02105{letter-spacing:0.660528px;}
.ls1_c02105{letter-spacing:0.717552px;}
.ls5_c02105{letter-spacing:0.722304px;}
.sc__c02105{text-shadow:none;}
.sc0_c02105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02105{-webkit-text-stroke:0px transparent;}
.sc0_c02105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02105{word-spacing:-15.634080px;}
.wsc_c02105{word-spacing:-15.126048px;}
.wsa_c02105{word-spacing:-12.474000px;}
.ws9_c02105{word-spacing:-12.416976px;}
.ws4_c02105{word-spacing:-11.637648px;}
.ws2_c02105{word-spacing:-11.200464px;}
.ws15_c02105{word-spacing:-3.598560px;}
.ws11_c02105{word-spacing:-1.078704px;}
.ws12_c02105{word-spacing:-1.021680px;}
.wsf_c02105{word-spacing:-1.012176px;}
.wsd_c02105{word-spacing:-0.974160px;}
.ws10_c02105{word-spacing:-0.118800px;}
.ws13_c02105{word-spacing:-0.099792px;}
.ws14_c02105{word-spacing:-0.085536px;}
.wse_c02105{word-spacing:0.000000px;}
.ws8_c02105{word-spacing:36.143712px;}
.ws6_c02105{word-spacing:36.742464px;}
.ws1_c02105{word-spacing:37.759392px;}
.ws0_c02105{word-spacing:38.020752px;}
.ws3_c02105{word-spacing:39.218256px;}
.ws5_c02105{word-spacing:39.902544px;}
.ws7_c02105{word-spacing:42.026688px;}
._0_c02105{margin-left:-1.948320px;}
._2_c02105{width:1.482624px;}
._4_c02105{width:5.730912px;}
._1_c02105{width:50.252400px;}
._3_c02105{width:51.530688px;}
.fc0_c02105{color:rgb(0,0,0);}
.fs0_c02105{font-size:47.520000px;}
.fs1_c02105{font-size:60.480000px;}
.y0_c02105{bottom:0.000000px;}
.y10_c02105{bottom:20.880450px;}
.y1c_c02105{bottom:146.998362px;}
.y1e_c02105{bottom:186.600234px;}
.y1d_c02105{bottom:196.320450px;}
.y1b_c02105{bottom:275.878542px;}
.y1a_c02105{bottom:356.878758px;}
.y18_c02105{bottom:406.559730px;}
.y14_c02105{bottom:424.560306px;}
.y19_c02105{bottom:458.759262px;}
.y17_c02105{bottom:491.879514px;}
.y16_c02105{bottom:509.880090px;}
.y13_c02105{bottom:543.000342px;}
.y15_c02105{bottom:559.559874px;}
.y12_c02105{bottom:577.560450px;}
.y20_c02105{bottom:593.760000px;}
.y21_c02105{bottom:596.640450px;}
.y1f_c02105{bottom:614.280450px;}
.yb_c02105{bottom:667.558326px;}
.yd_c02105{bottom:707.160234px;}
.yc_c02105{bottom:716.880450px;}
.ya_c02105{bottom:796.438506px;}
.y9_c02105{bottom:877.438722px;}
.y7_c02105{bottom:926.759730px;}
.y3_c02105{bottom:944.760306px;}
.y8_c02105{bottom:979.319226px;}
.y6_c02105{bottom:1012.439478px;}
.y5_c02105{bottom:1030.440054px;}
.y2_c02105{bottom:1063.560306px;}
.y4_c02105{bottom:1079.759874px;}
.y1_c02105{bottom:1097.760450px;}
.yf_c02105{bottom:1114.320000px;}
.y11_c02105{bottom:1117.200450px;}
.ye_c02105{bottom:1134.840450px;}
.h3_c02105{height:32.530781px;}
.h5_c02105{height:36.720000px;}
.h4_c02105{height:41.402813px;}
.h1_c02105{height:41.696016px;}
.h2_c02105{height:41.812031px;}
.h7_c02105{height:53.067656px;}
.h6_c02105{height:53.215313px;}
.h0_c02105{height:1263.000000px;}
.w2_c02105{width:395.280000px;}
.w1_c02105{width:892.500000px;}
.w0_c02105{width:892.830000px;}
.x0_c02105{left:0.000000px;}
.xd_c02105{left:117.000000px;}
.xe_c02105{left:161.280000px;}
.x8_c02105{left:440.999856px;}
.x4_c02105{left:445.680576px;}
.xb_c02105{left:451.080000px;}
.x7_c02105{left:455.399604px;}
.x5_c02105{left:461.880144px;}
.x1_c02105{left:463.320000px;}
.xa_c02105{left:483.480360px;}
.x9_c02105{left:492.119496px;}
.x6_c02105{left:493.200576px;}
.xc_c02105{left:506.880360px;}
.x3_c02105{left:511.919892px;}
.x2_c02105{left:526.679604px;}
@media print{
.v0_c02105{vertical-align:0.000000pt;}
.ls9_c02105{letter-spacing:-0.604032pt;}
.lsb_c02105{letter-spacing:-0.511104pt;}
.ls12_c02105{letter-spacing:-0.244992pt;}
.ls10_c02105{letter-spacing:-0.232320pt;}
.ls8_c02105{letter-spacing:-0.215424pt;}
.ls6_c02105{letter-spacing:-0.105600pt;}
.ls14_c02105{letter-spacing:0.000000pt;}
.ls3_c02105{letter-spacing:0.005376pt;}
.ls7_c02105{letter-spacing:0.114048pt;}
.lse_c02105{letter-spacing:0.215424pt;}
.lsd_c02105{letter-spacing:0.451968pt;}
.ls2_c02105{letter-spacing:0.456960pt;}
.ls11_c02105{letter-spacing:0.477312pt;}
.lsc_c02105{letter-spacing:0.515328pt;}
.ls13_c02105{letter-spacing:0.528000pt;}
.lsa_c02105{letter-spacing:0.532224pt;}
.ls4_c02105{letter-spacing:0.544896pt;}
.ls0_c02105{letter-spacing:0.578688pt;}
.lsf_c02105{letter-spacing:0.587136pt;}
.ls1_c02105{letter-spacing:0.637824pt;}
.ls5_c02105{letter-spacing:0.642048pt;}
.wsb_c02105{word-spacing:-13.896960pt;}
.wsc_c02105{word-spacing:-13.445376pt;}
.wsa_c02105{word-spacing:-11.088000pt;}
.ws9_c02105{word-spacing:-11.037312pt;}
.ws4_c02105{word-spacing:-10.344576pt;}
.ws2_c02105{word-spacing:-9.955968pt;}
.ws15_c02105{word-spacing:-3.198720pt;}
.ws11_c02105{word-spacing:-0.958848pt;}
.ws12_c02105{word-spacing:-0.908160pt;}
.wsf_c02105{word-spacing:-0.899712pt;}
.wsd_c02105{word-spacing:-0.865920pt;}
.ws10_c02105{word-spacing:-0.105600pt;}
.ws13_c02105{word-spacing:-0.088704pt;}
.ws14_c02105{word-spacing:-0.076032pt;}
.wse_c02105{word-spacing:0.000000pt;}
.ws8_c02105{word-spacing:32.127744pt;}
.ws6_c02105{word-spacing:32.659968pt;}
.ws1_c02105{word-spacing:33.563904pt;}
.ws0_c02105{word-spacing:33.796224pt;}
.ws3_c02105{word-spacing:34.860672pt;}
.ws5_c02105{word-spacing:35.468928pt;}
.ws7_c02105{word-spacing:37.357056pt;}
._0_c02105{margin-left:-1.731840pt;}
._2_c02105{width:1.317888pt;}
._4_c02105{width:5.094144pt;}
._1_c02105{width:44.668800pt;}
._3_c02105{width:45.805056pt;}
.fs0_c02105{font-size:42.240000pt;}
.fs1_c02105{font-size:53.760000pt;}
.y0_c02105{bottom:0.000000pt;}
.y10_c02105{bottom:18.560400pt;}
.y1c_c02105{bottom:130.665211pt;}
.y1e_c02105{bottom:165.866875pt;}
.y1d_c02105{bottom:174.507067pt;}
.y1b_c02105{bottom:245.225371pt;}
.y1a_c02105{bottom:317.225563pt;}
.y18_c02105{bottom:361.386427pt;}
.y14_c02105{bottom:377.386939pt;}
.y19_c02105{bottom:407.786011pt;}
.y17_c02105{bottom:437.226235pt;}
.y16_c02105{bottom:453.226747pt;}
.y13_c02105{bottom:482.666971pt;}
.y15_c02105{bottom:497.386555pt;}
.y12_c02105{bottom:513.387067pt;}
.y20_c02105{bottom:527.786667pt;}
.y21_c02105{bottom:530.347067pt;}
.y1f_c02105{bottom:546.027067pt;}
.yb_c02105{bottom:593.385179pt;}
.yd_c02105{bottom:628.586875pt;}
.yc_c02105{bottom:637.227067pt;}
.ya_c02105{bottom:707.945339pt;}
.y9_c02105{bottom:779.945531pt;}
.y7_c02105{bottom:823.786427pt;}
.y3_c02105{bottom:839.786939pt;}
.y8_c02105{bottom:870.505979pt;}
.y6_c02105{bottom:899.946203pt;}
.y5_c02105{bottom:915.946715pt;}
.y2_c02105{bottom:945.386939pt;}
.y4_c02105{bottom:959.786555pt;}
.y1_c02105{bottom:975.787067pt;}
.yf_c02105{bottom:990.506667pt;}
.y11_c02105{bottom:993.067067pt;}
.ye_c02105{bottom:1008.747067pt;}
.h3_c02105{height:28.916250pt;}
.h5_c02105{height:32.640000pt;}
.h4_c02105{height:36.802500pt;}
.h1_c02105{height:37.063125pt;}
.h2_c02105{height:37.166250pt;}
.h7_c02105{height:47.171250pt;}
.h6_c02105{height:47.302500pt;}
.h0_c02105{height:1122.666667pt;}
.w2_c02105{width:351.360000pt;}
.w1_c02105{width:793.333333pt;}
.w0_c02105{width:793.626667pt;}
.x0_c02105{left:0.000000pt;}
.xd_c02105{left:104.000000pt;}
.xe_c02105{left:143.360000pt;}
.x8_c02105{left:391.999872pt;}
.x4_c02105{left:396.160512pt;}
.xb_c02105{left:400.960000pt;}
.x7_c02105{left:404.799648pt;}
.x5_c02105{left:410.560128pt;}
.x1_c02105{left:411.840000pt;}
.xa_c02105{left:429.760320pt;}
.x9_c02105{left:437.439552pt;}
.x6_c02105{left:438.400512pt;}
.xc_c02105{left:450.560320pt;}
.x3_c02105{left:455.039904pt;}
.x2_c02105{left:468.159648pt;}
}





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

.ir_c02106:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02106{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02106;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02106{font-family:ff1_c02106;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02106;src:url('chunks/assets/font_316f6bd74b4e1baf2ff9de9c.woff2')format("woff");}.ff2_c02106{font-family:ff2_c02106;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02106;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02106{font-family:ff3_c02106;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02106{vertical-align:0.000000px;}
.ls9_c02106{letter-spacing:-0.679536px;}
.lsb_c02106{letter-spacing:-0.574992px;}
.ls12_c02106{letter-spacing:-0.275616px;}
.ls10_c02106{letter-spacing:-0.261360px;}
.ls8_c02106{letter-spacing:-0.242352px;}
.ls6_c02106{letter-spacing:-0.118800px;}
.ls14_c02106{letter-spacing:0.000000px;}
.ls3_c02106{letter-spacing:0.006048px;}
.ls7_c02106{letter-spacing:0.128304px;}
.lse_c02106{letter-spacing:0.242352px;}
.lsd_c02106{letter-spacing:0.508464px;}
.ls2_c02106{letter-spacing:0.514080px;}
.ls11_c02106{letter-spacing:0.536976px;}
.lsc_c02106{letter-spacing:0.579744px;}
.ls13_c02106{letter-spacing:0.594000px;}
.lsa_c02106{letter-spacing:0.598752px;}
.ls4_c02106{letter-spacing:0.613008px;}
.ls0_c02106{letter-spacing:0.651024px;}
.lsf_c02106{letter-spacing:0.660528px;}
.ls1_c02106{letter-spacing:0.717552px;}
.ls5_c02106{letter-spacing:0.722304px;}
.sc__c02106{text-shadow:none;}
.sc0_c02106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02106{-webkit-text-stroke:0px transparent;}
.sc0_c02106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02106{word-spacing:-15.634080px;}
.wsc_c02106{word-spacing:-15.126048px;}
.wsa_c02106{word-spacing:-12.474000px;}
.ws9_c02106{word-spacing:-12.416976px;}
.ws4_c02106{word-spacing:-11.637648px;}
.ws2_c02106{word-spacing:-11.200464px;}
.ws15_c02106{word-spacing:-3.598560px;}
.ws11_c02106{word-spacing:-1.078704px;}
.ws12_c02106{word-spacing:-1.021680px;}
.wsf_c02106{word-spacing:-1.012176px;}
.wsd_c02106{word-spacing:-0.974160px;}
.ws10_c02106{word-spacing:-0.118800px;}
.ws13_c02106{word-spacing:-0.099792px;}
.ws14_c02106{word-spacing:-0.085536px;}
.wse_c02106{word-spacing:0.000000px;}
.ws8_c02106{word-spacing:36.143712px;}
.ws6_c02106{word-spacing:36.742464px;}
.ws1_c02106{word-spacing:37.759392px;}
.ws0_c02106{word-spacing:38.020752px;}
.ws3_c02106{word-spacing:39.218256px;}
.ws5_c02106{word-spacing:39.902544px;}
.ws7_c02106{word-spacing:42.026688px;}
._0_c02106{margin-left:-1.948320px;}
._2_c02106{width:1.482624px;}
._4_c02106{width:5.730912px;}
._1_c02106{width:50.252400px;}
._3_c02106{width:51.530688px;}
.fc0_c02106{color:rgb(0,0,0);}
.fs0_c02106{font-size:47.520000px;}
.fs1_c02106{font-size:60.480000px;}
.y0_c02106{bottom:0.000000px;}
.y10_c02106{bottom:20.880450px;}
.y1c_c02106{bottom:146.998362px;}
.y1e_c02106{bottom:186.600234px;}
.y1d_c02106{bottom:196.320450px;}
.y1b_c02106{bottom:275.878542px;}
.y1a_c02106{bottom:356.878758px;}
.y18_c02106{bottom:406.559730px;}
.y14_c02106{bottom:424.560306px;}
.y19_c02106{bottom:458.759262px;}
.y17_c02106{bottom:491.879514px;}
.y16_c02106{bottom:509.880090px;}
.y13_c02106{bottom:543.000342px;}
.y15_c02106{bottom:559.559874px;}
.y12_c02106{bottom:577.560450px;}
.y20_c02106{bottom:593.760000px;}
.y21_c02106{bottom:596.640450px;}
.y1f_c02106{bottom:614.280450px;}
.yb_c02106{bottom:667.558326px;}
.yd_c02106{bottom:707.160234px;}
.yc_c02106{bottom:716.880450px;}
.ya_c02106{bottom:796.438506px;}
.y9_c02106{bottom:877.438722px;}
.y7_c02106{bottom:926.759730px;}
.y3_c02106{bottom:944.760306px;}
.y8_c02106{bottom:979.319226px;}
.y6_c02106{bottom:1012.439478px;}
.y5_c02106{bottom:1030.440054px;}
.y2_c02106{bottom:1063.560306px;}
.y4_c02106{bottom:1079.759874px;}
.y1_c02106{bottom:1097.760450px;}
.yf_c02106{bottom:1114.320000px;}
.y11_c02106{bottom:1117.200450px;}
.ye_c02106{bottom:1134.840450px;}
.h3_c02106{height:32.530781px;}
.h5_c02106{height:36.720000px;}
.h4_c02106{height:41.402813px;}
.h1_c02106{height:41.696016px;}
.h2_c02106{height:41.812031px;}
.h7_c02106{height:53.067656px;}
.h6_c02106{height:53.215313px;}
.h0_c02106{height:1263.000000px;}
.w2_c02106{width:395.280000px;}
.w1_c02106{width:892.500000px;}
.w0_c02106{width:892.830000px;}
.x0_c02106{left:0.000000px;}
.xd_c02106{left:117.000000px;}
.xe_c02106{left:161.280000px;}
.x8_c02106{left:440.999856px;}
.x4_c02106{left:445.680576px;}
.xb_c02106{left:451.080000px;}
.x7_c02106{left:455.399604px;}
.x5_c02106{left:461.880144px;}
.x1_c02106{left:463.320000px;}
.xa_c02106{left:483.480360px;}
.x9_c02106{left:492.119496px;}
.x6_c02106{left:493.200576px;}
.xc_c02106{left:506.880360px;}
.x3_c02106{left:511.919892px;}
.x2_c02106{left:526.679604px;}
@media print{
.v0_c02106{vertical-align:0.000000pt;}
.ls9_c02106{letter-spacing:-0.604032pt;}
.lsb_c02106{letter-spacing:-0.511104pt;}
.ls12_c02106{letter-spacing:-0.244992pt;}
.ls10_c02106{letter-spacing:-0.232320pt;}
.ls8_c02106{letter-spacing:-0.215424pt;}
.ls6_c02106{letter-spacing:-0.105600pt;}
.ls14_c02106{letter-spacing:0.000000pt;}
.ls3_c02106{letter-spacing:0.005376pt;}
.ls7_c02106{letter-spacing:0.114048pt;}
.lse_c02106{letter-spacing:0.215424pt;}
.lsd_c02106{letter-spacing:0.451968pt;}
.ls2_c02106{letter-spacing:0.456960pt;}
.ls11_c02106{letter-spacing:0.477312pt;}
.lsc_c02106{letter-spacing:0.515328pt;}
.ls13_c02106{letter-spacing:0.528000pt;}
.lsa_c02106{letter-spacing:0.532224pt;}
.ls4_c02106{letter-spacing:0.544896pt;}
.ls0_c02106{letter-spacing:0.578688pt;}
.lsf_c02106{letter-spacing:0.587136pt;}
.ls1_c02106{letter-spacing:0.637824pt;}
.ls5_c02106{letter-spacing:0.642048pt;}
.wsb_c02106{word-spacing:-13.896960pt;}
.wsc_c02106{word-spacing:-13.445376pt;}
.wsa_c02106{word-spacing:-11.088000pt;}
.ws9_c02106{word-spacing:-11.037312pt;}
.ws4_c02106{word-spacing:-10.344576pt;}
.ws2_c02106{word-spacing:-9.955968pt;}
.ws15_c02106{word-spacing:-3.198720pt;}
.ws11_c02106{word-spacing:-0.958848pt;}
.ws12_c02106{word-spacing:-0.908160pt;}
.wsf_c02106{word-spacing:-0.899712pt;}
.wsd_c02106{word-spacing:-0.865920pt;}
.ws10_c02106{word-spacing:-0.105600pt;}
.ws13_c02106{word-spacing:-0.088704pt;}
.ws14_c02106{word-spacing:-0.076032pt;}
.wse_c02106{word-spacing:0.000000pt;}
.ws8_c02106{word-spacing:32.127744pt;}
.ws6_c02106{word-spacing:32.659968pt;}
.ws1_c02106{word-spacing:33.563904pt;}
.ws0_c02106{word-spacing:33.796224pt;}
.ws3_c02106{word-spacing:34.860672pt;}
.ws5_c02106{word-spacing:35.468928pt;}
.ws7_c02106{word-spacing:37.357056pt;}
._0_c02106{margin-left:-1.731840pt;}
._2_c02106{width:1.317888pt;}
._4_c02106{width:5.094144pt;}
._1_c02106{width:44.668800pt;}
._3_c02106{width:45.805056pt;}
.fs0_c02106{font-size:42.240000pt;}
.fs1_c02106{font-size:53.760000pt;}
.y0_c02106{bottom:0.000000pt;}
.y10_c02106{bottom:18.560400pt;}
.y1c_c02106{bottom:130.665211pt;}
.y1e_c02106{bottom:165.866875pt;}
.y1d_c02106{bottom:174.507067pt;}
.y1b_c02106{bottom:245.225371pt;}
.y1a_c02106{bottom:317.225563pt;}
.y18_c02106{bottom:361.386427pt;}
.y14_c02106{bottom:377.386939pt;}
.y19_c02106{bottom:407.786011pt;}
.y17_c02106{bottom:437.226235pt;}
.y16_c02106{bottom:453.226747pt;}
.y13_c02106{bottom:482.666971pt;}
.y15_c02106{bottom:497.386555pt;}
.y12_c02106{bottom:513.387067pt;}
.y20_c02106{bottom:527.786667pt;}
.y21_c02106{bottom:530.347067pt;}
.y1f_c02106{bottom:546.027067pt;}
.yb_c02106{bottom:593.385179pt;}
.yd_c02106{bottom:628.586875pt;}
.yc_c02106{bottom:637.227067pt;}
.ya_c02106{bottom:707.945339pt;}
.y9_c02106{bottom:779.945531pt;}
.y7_c02106{bottom:823.786427pt;}
.y3_c02106{bottom:839.786939pt;}
.y8_c02106{bottom:870.505979pt;}
.y6_c02106{bottom:899.946203pt;}
.y5_c02106{bottom:915.946715pt;}
.y2_c02106{bottom:945.386939pt;}
.y4_c02106{bottom:959.786555pt;}
.y1_c02106{bottom:975.787067pt;}
.yf_c02106{bottom:990.506667pt;}
.y11_c02106{bottom:993.067067pt;}
.ye_c02106{bottom:1008.747067pt;}
.h3_c02106{height:28.916250pt;}
.h5_c02106{height:32.640000pt;}
.h4_c02106{height:36.802500pt;}
.h1_c02106{height:37.063125pt;}
.h2_c02106{height:37.166250pt;}
.h7_c02106{height:47.171250pt;}
.h6_c02106{height:47.302500pt;}
.h0_c02106{height:1122.666667pt;}
.w2_c02106{width:351.360000pt;}
.w1_c02106{width:793.333333pt;}
.w0_c02106{width:793.626667pt;}
.x0_c02106{left:0.000000pt;}
.xd_c02106{left:104.000000pt;}
.xe_c02106{left:143.360000pt;}
.x8_c02106{left:391.999872pt;}
.x4_c02106{left:396.160512pt;}
.xb_c02106{left:400.960000pt;}
.x7_c02106{left:404.799648pt;}
.x5_c02106{left:410.560128pt;}
.x1_c02106{left:411.840000pt;}
.xa_c02106{left:429.760320pt;}
.x9_c02106{left:437.439552pt;}
.x6_c02106{left:438.400512pt;}
.xc_c02106{left:450.560320pt;}
.x3_c02106{left:455.039904pt;}
.x2_c02106{left:468.159648pt;}
}





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

.ir_c02107:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02107{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02107;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02107{font-family:ff1_c02107;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02107;src:url('chunks/assets/font_ff7b66d68c771faf6a5a1065.woff2')format("woff");}.ff2_c02107{font-family:ff2_c02107;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02107;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02107{font-family:ff3_c02107;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02107{vertical-align:0.000000px;}
.ls16_c02107{letter-spacing:-0.736560px;}
.ls8_c02107{letter-spacing:-0.679536px;}
.lsa_c02107{letter-spacing:-0.574992px;}
.lse_c02107{letter-spacing:-0.361152px;}
.ls10_c02107{letter-spacing:-0.275616px;}
.ls17_c02107{letter-spacing:-0.270864px;}
.lsd_c02107{letter-spacing:-0.261360px;}
.ls7_c02107{letter-spacing:-0.242352px;}
.ls5_c02107{letter-spacing:-0.118800px;}
.ls12_c02107{letter-spacing:0.000000px;}
.ls1_c02107{letter-spacing:0.006048px;}
.ls6_c02107{letter-spacing:0.128304px;}
.ls14_c02107{letter-spacing:0.242352px;}
.lsc_c02107{letter-spacing:0.508464px;}
.ls0_c02107{letter-spacing:0.514080px;}
.lsf_c02107{letter-spacing:0.536976px;}
.lsb_c02107{letter-spacing:0.579744px;}
.ls11_c02107{letter-spacing:0.594000px;}
.ls9_c02107{letter-spacing:0.598752px;}
.ls3_c02107{letter-spacing:0.613008px;}
.ls15_c02107{letter-spacing:0.660528px;}
.ls13_c02107{letter-spacing:0.689040px;}
.ls2_c02107{letter-spacing:0.717552px;}
.ls4_c02107{letter-spacing:0.722304px;}
.sc__c02107{text-shadow:none;}
.sc0_c02107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02107{-webkit-text-stroke:0px transparent;}
.sc0_c02107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02107{word-spacing:-15.634080px;}
.wsb_c02107{word-spacing:-15.126048px;}
.wsd_c02107{word-spacing:-12.569040px;}
.ws9_c02107{word-spacing:-12.474000px;}
.ws6_c02107{word-spacing:-12.459744px;}
.ws8_c02107{word-spacing:-12.416976px;}
.ws7_c02107{word-spacing:-12.388464px;}
.wsc_c02107{word-spacing:-11.761200px;}
.ws4_c02107{word-spacing:-11.637648px;}
.ws5_c02107{word-spacing:-11.305008px;}
.ws2_c02107{word-spacing:-11.200464px;}
.ws18_c02107{word-spacing:-3.598560px;}
.ws19_c02107{word-spacing:-1.078704px;}
.ws1a_c02107{word-spacing:-1.021680px;}
.ws13_c02107{word-spacing:-0.974160px;}
.ws15_c02107{word-spacing:-0.118800px;}
.ws16_c02107{word-spacing:-0.099792px;}
.ws1b_c02107{word-spacing:-0.090288px;}
.ws17_c02107{word-spacing:-0.085536px;}
.ws14_c02107{word-spacing:0.000000px;}
.ws12_c02107{word-spacing:6.629040px;}
.ws11_c02107{word-spacing:34.836912px;}
.ws10_c02107{word-spacing:36.143712px;}
.ws1_c02107{word-spacing:37.759392px;}
.ws0_c02107{word-spacing:38.020752px;}
.ws3_c02107{word-spacing:39.218256px;}
.wse_c02107{word-spacing:39.902544px;}
.wsf_c02107{word-spacing:42.026688px;}
._0_c02107{margin-left:-1.948320px;}
._2_c02107{width:1.482624px;}
._4_c02107{width:5.730912px;}
._6_c02107{width:19.982160px;}
._7_c02107{width:23.451120px;}
._5_c02107{width:24.691392px;}
._1_c02107{width:50.252400px;}
._3_c02107{width:51.530688px;}
.fc0_c02107{color:rgb(0,0,0);}
.fs0_c02107{font-size:47.520000px;}
.fs1_c02107{font-size:60.480000px;}
.y0_c02107{bottom:0.000000px;}
.y15_c02107{bottom:18.000450px;}
.y10_c02107{bottom:20.880450px;}
.y1f_c02107{bottom:131.878830px;}
.y1e_c02107{bottom:146.998506px;}
.y21_c02107{bottom:186.600234px;}
.y20_c02107{bottom:196.320450px;}
.y1d_c02107{bottom:275.878686px;}
.y1c_c02107{bottom:356.878902px;}
.y1a_c02107{bottom:406.559874px;}
.y16_c02107{bottom:424.560450px;}
.y1b_c02107{bottom:458.759406px;}
.y19_c02107{bottom:491.879658px;}
.y18_c02107{bottom:509.880234px;}
.y14_c02107{bottom:525.000000px;}
.y13_c02107{bottom:543.000342px;}
.y17_c02107{bottom:559.560018px;}
.y12_c02107{bottom:577.560450px;}
.y23_c02107{bottom:593.760000px;}
.y24_c02107{bottom:596.640450px;}
.y22_c02107{bottom:614.280450px;}
.yb_c02107{bottom:667.558326px;}
.yd_c02107{bottom:707.160234px;}
.yc_c02107{bottom:716.880450px;}
.ya_c02107{bottom:796.438506px;}
.y9_c02107{bottom:877.438722px;}
.y7_c02107{bottom:926.759730px;}
.y3_c02107{bottom:944.760306px;}
.y8_c02107{bottom:979.319226px;}
.y6_c02107{bottom:1012.439478px;}
.y5_c02107{bottom:1030.440054px;}
.y2_c02107{bottom:1063.560306px;}
.y4_c02107{bottom:1079.759874px;}
.y1_c02107{bottom:1097.760450px;}
.yf_c02107{bottom:1114.320000px;}
.y11_c02107{bottom:1117.200450px;}
.ye_c02107{bottom:1134.840450px;}
.h8_c02107{height:29.160000px;}
.h3_c02107{height:32.530781px;}
.h5_c02107{height:36.720000px;}
.h4_c02107{height:41.402813px;}
.h1_c02107{height:41.696016px;}
.h2_c02107{height:41.812031px;}
.h7_c02107{height:53.067656px;}
.h6_c02107{height:53.215313px;}
.h0_c02107{height:1263.000000px;}
.w3_c02107{width:215.280000px;}
.w2_c02107{width:395.280000px;}
.w1_c02107{width:892.500000px;}
.w0_c02107{width:892.830000px;}
.x0_c02107{left:0.000000px;}
.xd_c02107{left:117.000000px;}
.xe_c02107{left:161.280000px;}
.x8_c02107{left:441.001044px;}
.x4_c02107{left:445.680576px;}
.xb_c02107{left:451.080000px;}
.x7_c02107{left:455.400792px;}
.x5_c02107{left:461.880144px;}
.x1_c02107{left:463.320000px;}
.xa_c02107{left:483.481548px;}
.x9_c02107{left:492.120684px;}
.x6_c02107{left:493.200576px;}
.xc_c02107{left:506.880360px;}
.x3_c02107{left:511.919892px;}
.x2_c02107{left:526.679604px;}
.xf_c02107{left:569.520000px;}
@media print{
.v0_c02107{vertical-align:0.000000pt;}
.ls16_c02107{letter-spacing:-0.654720pt;}
.ls8_c02107{letter-spacing:-0.604032pt;}
.lsa_c02107{letter-spacing:-0.511104pt;}
.lse_c02107{letter-spacing:-0.321024pt;}
.ls10_c02107{letter-spacing:-0.244992pt;}
.ls17_c02107{letter-spacing:-0.240768pt;}
.lsd_c02107{letter-spacing:-0.232320pt;}
.ls7_c02107{letter-spacing:-0.215424pt;}
.ls5_c02107{letter-spacing:-0.105600pt;}
.ls12_c02107{letter-spacing:0.000000pt;}
.ls1_c02107{letter-spacing:0.005376pt;}
.ls6_c02107{letter-spacing:0.114048pt;}
.ls14_c02107{letter-spacing:0.215424pt;}
.lsc_c02107{letter-spacing:0.451968pt;}
.ls0_c02107{letter-spacing:0.456960pt;}
.lsf_c02107{letter-spacing:0.477312pt;}
.lsb_c02107{letter-spacing:0.515328pt;}
.ls11_c02107{letter-spacing:0.528000pt;}
.ls9_c02107{letter-spacing:0.532224pt;}
.ls3_c02107{letter-spacing:0.544896pt;}
.ls15_c02107{letter-spacing:0.587136pt;}
.ls13_c02107{letter-spacing:0.612480pt;}
.ls2_c02107{letter-spacing:0.637824pt;}
.ls4_c02107{letter-spacing:0.642048pt;}
.wsa_c02107{word-spacing:-13.896960pt;}
.wsb_c02107{word-spacing:-13.445376pt;}
.wsd_c02107{word-spacing:-11.172480pt;}
.ws9_c02107{word-spacing:-11.088000pt;}
.ws6_c02107{word-spacing:-11.075328pt;}
.ws8_c02107{word-spacing:-11.037312pt;}
.ws7_c02107{word-spacing:-11.011968pt;}
.wsc_c02107{word-spacing:-10.454400pt;}
.ws4_c02107{word-spacing:-10.344576pt;}
.ws5_c02107{word-spacing:-10.048896pt;}
.ws2_c02107{word-spacing:-9.955968pt;}
.ws18_c02107{word-spacing:-3.198720pt;}
.ws19_c02107{word-spacing:-0.958848pt;}
.ws1a_c02107{word-spacing:-0.908160pt;}
.ws13_c02107{word-spacing:-0.865920pt;}
.ws15_c02107{word-spacing:-0.105600pt;}
.ws16_c02107{word-spacing:-0.088704pt;}
.ws1b_c02107{word-spacing:-0.080256pt;}
.ws17_c02107{word-spacing:-0.076032pt;}
.ws14_c02107{word-spacing:0.000000pt;}
.ws12_c02107{word-spacing:5.892480pt;}
.ws11_c02107{word-spacing:30.966144pt;}
.ws10_c02107{word-spacing:32.127744pt;}
.ws1_c02107{word-spacing:33.563904pt;}
.ws0_c02107{word-spacing:33.796224pt;}
.ws3_c02107{word-spacing:34.860672pt;}
.wse_c02107{word-spacing:35.468928pt;}
.wsf_c02107{word-spacing:37.357056pt;}
._0_c02107{margin-left:-1.731840pt;}
._2_c02107{width:1.317888pt;}
._4_c02107{width:5.094144pt;}
._6_c02107{width:17.761920pt;}
._7_c02107{width:20.845440pt;}
._5_c02107{width:21.947904pt;}
._1_c02107{width:44.668800pt;}
._3_c02107{width:45.805056pt;}
.fs0_c02107{font-size:42.240000pt;}
.fs1_c02107{font-size:53.760000pt;}
.y0_c02107{bottom:0.000000pt;}
.y15_c02107{bottom:16.000400pt;}
.y10_c02107{bottom:18.560400pt;}
.y1f_c02107{bottom:117.225627pt;}
.y1e_c02107{bottom:130.665339pt;}
.y21_c02107{bottom:165.866875pt;}
.y20_c02107{bottom:174.507067pt;}
.y1d_c02107{bottom:245.225499pt;}
.y1c_c02107{bottom:317.225691pt;}
.y1a_c02107{bottom:361.386555pt;}
.y16_c02107{bottom:377.387067pt;}
.y1b_c02107{bottom:407.786139pt;}
.y19_c02107{bottom:437.226363pt;}
.y18_c02107{bottom:453.226875pt;}
.y14_c02107{bottom:466.666667pt;}
.y13_c02107{bottom:482.666971pt;}
.y17_c02107{bottom:497.386683pt;}
.y12_c02107{bottom:513.387067pt;}
.y23_c02107{bottom:527.786667pt;}
.y24_c02107{bottom:530.347067pt;}
.y22_c02107{bottom:546.027067pt;}
.yb_c02107{bottom:593.385179pt;}
.yd_c02107{bottom:628.586875pt;}
.yc_c02107{bottom:637.227067pt;}
.ya_c02107{bottom:707.945339pt;}
.y9_c02107{bottom:779.945531pt;}
.y7_c02107{bottom:823.786427pt;}
.y3_c02107{bottom:839.786939pt;}
.y8_c02107{bottom:870.505979pt;}
.y6_c02107{bottom:899.946203pt;}
.y5_c02107{bottom:915.946715pt;}
.y2_c02107{bottom:945.386939pt;}
.y4_c02107{bottom:959.786555pt;}
.y1_c02107{bottom:975.787067pt;}
.yf_c02107{bottom:990.506667pt;}
.y11_c02107{bottom:993.067067pt;}
.ye_c02107{bottom:1008.747067pt;}
.h8_c02107{height:25.920000pt;}
.h3_c02107{height:28.916250pt;}
.h5_c02107{height:32.640000pt;}
.h4_c02107{height:36.802500pt;}
.h1_c02107{height:37.063125pt;}
.h2_c02107{height:37.166250pt;}
.h7_c02107{height:47.171250pt;}
.h6_c02107{height:47.302500pt;}
.h0_c02107{height:1122.666667pt;}
.w3_c02107{width:191.360000pt;}
.w2_c02107{width:351.360000pt;}
.w1_c02107{width:793.333333pt;}
.w0_c02107{width:793.626667pt;}
.x0_c02107{left:0.000000pt;}
.xd_c02107{left:104.000000pt;}
.xe_c02107{left:143.360000pt;}
.x8_c02107{left:392.000928pt;}
.x4_c02107{left:396.160512pt;}
.xb_c02107{left:400.960000pt;}
.x7_c02107{left:404.800704pt;}
.x5_c02107{left:410.560128pt;}
.x1_c02107{left:411.840000pt;}
.xa_c02107{left:429.761376pt;}
.x9_c02107{left:437.440608pt;}
.x6_c02107{left:438.400512pt;}
.xc_c02107{left:450.560320pt;}
.x3_c02107{left:455.039904pt;}
.x2_c02107{left:468.159648pt;}
.xf_c02107{left:506.240000pt;}
}





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

.ir_c02108:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02108{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02108;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02108{font-family:ff1_c02108;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02108;src:url('chunks/assets/font_3f01237be8282efd2e90ef83.woff2')format("woff");}.ff2_c02108{font-family:ff2_c02108;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02108;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02108{font-family:ff3_c02108;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02108{vertical-align:0.000000px;}
.ls9_c02108{letter-spacing:-0.679536px;}
.lsb_c02108{letter-spacing:-0.574992px;}
.ls12_c02108{letter-spacing:-0.275616px;}
.ls10_c02108{letter-spacing:-0.261360px;}
.ls8_c02108{letter-spacing:-0.242352px;}
.ls6_c02108{letter-spacing:-0.118800px;}
.ls14_c02108{letter-spacing:0.000000px;}
.ls3_c02108{letter-spacing:0.006048px;}
.ls7_c02108{letter-spacing:0.128304px;}
.lse_c02108{letter-spacing:0.242352px;}
.lsd_c02108{letter-spacing:0.508464px;}
.ls2_c02108{letter-spacing:0.514080px;}
.ls11_c02108{letter-spacing:0.536976px;}
.lsc_c02108{letter-spacing:0.579744px;}
.ls13_c02108{letter-spacing:0.594000px;}
.lsa_c02108{letter-spacing:0.598752px;}
.ls4_c02108{letter-spacing:0.613008px;}
.ls0_c02108{letter-spacing:0.651024px;}
.lsf_c02108{letter-spacing:0.660528px;}
.ls1_c02108{letter-spacing:0.717552px;}
.ls5_c02108{letter-spacing:0.722304px;}
.sc__c02108{text-shadow:none;}
.sc0_c02108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02108{-webkit-text-stroke:0px transparent;}
.sc0_c02108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02108{word-spacing:-15.634080px;}
.wsc_c02108{word-spacing:-15.126048px;}
.wsa_c02108{word-spacing:-12.474000px;}
.ws9_c02108{word-spacing:-12.416976px;}
.ws4_c02108{word-spacing:-11.637648px;}
.ws2_c02108{word-spacing:-11.200464px;}
.ws15_c02108{word-spacing:-3.598560px;}
.ws11_c02108{word-spacing:-1.078704px;}
.ws12_c02108{word-spacing:-1.021680px;}
.wsf_c02108{word-spacing:-1.012176px;}
.wsd_c02108{word-spacing:-0.974160px;}
.ws10_c02108{word-spacing:-0.118800px;}
.ws13_c02108{word-spacing:-0.099792px;}
.ws14_c02108{word-spacing:-0.085536px;}
.wse_c02108{word-spacing:0.000000px;}
.ws8_c02108{word-spacing:36.143712px;}
.ws6_c02108{word-spacing:36.742464px;}
.ws1_c02108{word-spacing:37.759392px;}
.ws0_c02108{word-spacing:38.020752px;}
.ws3_c02108{word-spacing:39.218256px;}
.ws5_c02108{word-spacing:39.902544px;}
.ws7_c02108{word-spacing:42.026688px;}
._0_c02108{margin-left:-1.948320px;}
._2_c02108{width:1.482624px;}
._4_c02108{width:5.730912px;}
._1_c02108{width:50.252400px;}
._3_c02108{width:51.530688px;}
.fc0_c02108{color:rgb(0,0,0);}
.fs0_c02108{font-size:47.520000px;}
.fs1_c02108{font-size:60.480000px;}
.y0_c02108{bottom:0.000000px;}
.y10_c02108{bottom:20.880450px;}
.y1c_c02108{bottom:146.998362px;}
.y1e_c02108{bottom:186.600234px;}
.y1d_c02108{bottom:196.320450px;}
.y1b_c02108{bottom:275.878542px;}
.y1a_c02108{bottom:356.878758px;}
.y18_c02108{bottom:406.559730px;}
.y14_c02108{bottom:424.560306px;}
.y19_c02108{bottom:458.759262px;}
.y17_c02108{bottom:491.879514px;}
.y16_c02108{bottom:509.880090px;}
.y13_c02108{bottom:543.000342px;}
.y15_c02108{bottom:559.559874px;}
.y12_c02108{bottom:577.560450px;}
.y20_c02108{bottom:593.760000px;}
.y21_c02108{bottom:596.640450px;}
.y1f_c02108{bottom:614.280450px;}
.yb_c02108{bottom:667.558326px;}
.yd_c02108{bottom:707.160234px;}
.yc_c02108{bottom:716.880450px;}
.ya_c02108{bottom:796.438506px;}
.y9_c02108{bottom:877.438722px;}
.y7_c02108{bottom:926.759730px;}
.y3_c02108{bottom:944.760306px;}
.y8_c02108{bottom:979.319226px;}
.y6_c02108{bottom:1012.439478px;}
.y5_c02108{bottom:1030.440054px;}
.y2_c02108{bottom:1063.560306px;}
.y4_c02108{bottom:1079.759874px;}
.y1_c02108{bottom:1097.760450px;}
.yf_c02108{bottom:1114.320000px;}
.y11_c02108{bottom:1117.200450px;}
.ye_c02108{bottom:1134.840450px;}
.h3_c02108{height:32.530781px;}
.h5_c02108{height:36.720000px;}
.h4_c02108{height:41.402813px;}
.h1_c02108{height:41.696016px;}
.h2_c02108{height:41.812031px;}
.h7_c02108{height:53.067656px;}
.h6_c02108{height:53.215313px;}
.h0_c02108{height:1263.000000px;}
.w2_c02108{width:395.280000px;}
.w1_c02108{width:892.500000px;}
.w0_c02108{width:892.830000px;}
.x0_c02108{left:0.000000px;}
.xd_c02108{left:117.000000px;}
.xe_c02108{left:161.280000px;}
.x8_c02108{left:440.999856px;}
.x4_c02108{left:445.680576px;}
.xb_c02108{left:451.080000px;}
.x7_c02108{left:455.399604px;}
.x5_c02108{left:461.880144px;}
.x1_c02108{left:463.320000px;}
.xa_c02108{left:483.480360px;}
.x9_c02108{left:492.119496px;}
.x6_c02108{left:493.200576px;}
.xc_c02108{left:506.880360px;}
.x3_c02108{left:511.919892px;}
.x2_c02108{left:526.679604px;}
@media print{
.v0_c02108{vertical-align:0.000000pt;}
.ls9_c02108{letter-spacing:-0.604032pt;}
.lsb_c02108{letter-spacing:-0.511104pt;}
.ls12_c02108{letter-spacing:-0.244992pt;}
.ls10_c02108{letter-spacing:-0.232320pt;}
.ls8_c02108{letter-spacing:-0.215424pt;}
.ls6_c02108{letter-spacing:-0.105600pt;}
.ls14_c02108{letter-spacing:0.000000pt;}
.ls3_c02108{letter-spacing:0.005376pt;}
.ls7_c02108{letter-spacing:0.114048pt;}
.lse_c02108{letter-spacing:0.215424pt;}
.lsd_c02108{letter-spacing:0.451968pt;}
.ls2_c02108{letter-spacing:0.456960pt;}
.ls11_c02108{letter-spacing:0.477312pt;}
.lsc_c02108{letter-spacing:0.515328pt;}
.ls13_c02108{letter-spacing:0.528000pt;}
.lsa_c02108{letter-spacing:0.532224pt;}
.ls4_c02108{letter-spacing:0.544896pt;}
.ls0_c02108{letter-spacing:0.578688pt;}
.lsf_c02108{letter-spacing:0.587136pt;}
.ls1_c02108{letter-spacing:0.637824pt;}
.ls5_c02108{letter-spacing:0.642048pt;}
.wsb_c02108{word-spacing:-13.896960pt;}
.wsc_c02108{word-spacing:-13.445376pt;}
.wsa_c02108{word-spacing:-11.088000pt;}
.ws9_c02108{word-spacing:-11.037312pt;}
.ws4_c02108{word-spacing:-10.344576pt;}
.ws2_c02108{word-spacing:-9.955968pt;}
.ws15_c02108{word-spacing:-3.198720pt;}
.ws11_c02108{word-spacing:-0.958848pt;}
.ws12_c02108{word-spacing:-0.908160pt;}
.wsf_c02108{word-spacing:-0.899712pt;}
.wsd_c02108{word-spacing:-0.865920pt;}
.ws10_c02108{word-spacing:-0.105600pt;}
.ws13_c02108{word-spacing:-0.088704pt;}
.ws14_c02108{word-spacing:-0.076032pt;}
.wse_c02108{word-spacing:0.000000pt;}
.ws8_c02108{word-spacing:32.127744pt;}
.ws6_c02108{word-spacing:32.659968pt;}
.ws1_c02108{word-spacing:33.563904pt;}
.ws0_c02108{word-spacing:33.796224pt;}
.ws3_c02108{word-spacing:34.860672pt;}
.ws5_c02108{word-spacing:35.468928pt;}
.ws7_c02108{word-spacing:37.357056pt;}
._0_c02108{margin-left:-1.731840pt;}
._2_c02108{width:1.317888pt;}
._4_c02108{width:5.094144pt;}
._1_c02108{width:44.668800pt;}
._3_c02108{width:45.805056pt;}
.fs0_c02108{font-size:42.240000pt;}
.fs1_c02108{font-size:53.760000pt;}
.y0_c02108{bottom:0.000000pt;}
.y10_c02108{bottom:18.560400pt;}
.y1c_c02108{bottom:130.665211pt;}
.y1e_c02108{bottom:165.866875pt;}
.y1d_c02108{bottom:174.507067pt;}
.y1b_c02108{bottom:245.225371pt;}
.y1a_c02108{bottom:317.225563pt;}
.y18_c02108{bottom:361.386427pt;}
.y14_c02108{bottom:377.386939pt;}
.y19_c02108{bottom:407.786011pt;}
.y17_c02108{bottom:437.226235pt;}
.y16_c02108{bottom:453.226747pt;}
.y13_c02108{bottom:482.666971pt;}
.y15_c02108{bottom:497.386555pt;}
.y12_c02108{bottom:513.387067pt;}
.y20_c02108{bottom:527.786667pt;}
.y21_c02108{bottom:530.347067pt;}
.y1f_c02108{bottom:546.027067pt;}
.yb_c02108{bottom:593.385179pt;}
.yd_c02108{bottom:628.586875pt;}
.yc_c02108{bottom:637.227067pt;}
.ya_c02108{bottom:707.945339pt;}
.y9_c02108{bottom:779.945531pt;}
.y7_c02108{bottom:823.786427pt;}
.y3_c02108{bottom:839.786939pt;}
.y8_c02108{bottom:870.505979pt;}
.y6_c02108{bottom:899.946203pt;}
.y5_c02108{bottom:915.946715pt;}
.y2_c02108{bottom:945.386939pt;}
.y4_c02108{bottom:959.786555pt;}
.y1_c02108{bottom:975.787067pt;}
.yf_c02108{bottom:990.506667pt;}
.y11_c02108{bottom:993.067067pt;}
.ye_c02108{bottom:1008.747067pt;}
.h3_c02108{height:28.916250pt;}
.h5_c02108{height:32.640000pt;}
.h4_c02108{height:36.802500pt;}
.h1_c02108{height:37.063125pt;}
.h2_c02108{height:37.166250pt;}
.h7_c02108{height:47.171250pt;}
.h6_c02108{height:47.302500pt;}
.h0_c02108{height:1122.666667pt;}
.w2_c02108{width:351.360000pt;}
.w1_c02108{width:793.333333pt;}
.w0_c02108{width:793.626667pt;}
.x0_c02108{left:0.000000pt;}
.xd_c02108{left:104.000000pt;}
.xe_c02108{left:143.360000pt;}
.x8_c02108{left:391.999872pt;}
.x4_c02108{left:396.160512pt;}
.xb_c02108{left:400.960000pt;}
.x7_c02108{left:404.799648pt;}
.x5_c02108{left:410.560128pt;}
.x1_c02108{left:411.840000pt;}
.xa_c02108{left:429.760320pt;}
.x9_c02108{left:437.439552pt;}
.x6_c02108{left:438.400512pt;}
.xc_c02108{left:450.560320pt;}
.x3_c02108{left:455.039904pt;}
.x2_c02108{left:468.159648pt;}
}





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

.ir_c02109:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02109{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02109;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02109{font-family:ff1_c02109;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02109;src:url('chunks/assets/font_91901860b73e486b76103eb1.woff2')format("woff");}.ff2_c02109{font-family:ff2_c02109;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02109;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02109{font-family:ff3_c02109;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02109{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02109{vertical-align:0.000000px;}
.ls9_c02109{letter-spacing:-0.679536px;}
.lsb_c02109{letter-spacing:-0.574992px;}
.ls12_c02109{letter-spacing:-0.275616px;}
.ls10_c02109{letter-spacing:-0.261360px;}
.ls8_c02109{letter-spacing:-0.242352px;}
.ls6_c02109{letter-spacing:-0.118800px;}
.ls14_c02109{letter-spacing:0.000000px;}
.ls3_c02109{letter-spacing:0.006048px;}
.ls7_c02109{letter-spacing:0.128304px;}
.lse_c02109{letter-spacing:0.242352px;}
.lsd_c02109{letter-spacing:0.508464px;}
.ls2_c02109{letter-spacing:0.514080px;}
.ls11_c02109{letter-spacing:0.536976px;}
.lsc_c02109{letter-spacing:0.579744px;}
.ls13_c02109{letter-spacing:0.594000px;}
.lsa_c02109{letter-spacing:0.598752px;}
.ls4_c02109{letter-spacing:0.613008px;}
.ls0_c02109{letter-spacing:0.651024px;}
.lsf_c02109{letter-spacing:0.660528px;}
.ls1_c02109{letter-spacing:0.717552px;}
.ls5_c02109{letter-spacing:0.722304px;}
.sc__c02109{text-shadow:none;}
.sc0_c02109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02109{-webkit-text-stroke:0px transparent;}
.sc0_c02109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02109{word-spacing:-15.634080px;}
.wsc_c02109{word-spacing:-15.126048px;}
.wsa_c02109{word-spacing:-12.474000px;}
.ws9_c02109{word-spacing:-12.416976px;}
.ws4_c02109{word-spacing:-11.637648px;}
.ws2_c02109{word-spacing:-11.200464px;}
.ws15_c02109{word-spacing:-3.598560px;}
.ws11_c02109{word-spacing:-1.078704px;}
.ws12_c02109{word-spacing:-1.021680px;}
.wsf_c02109{word-spacing:-1.012176px;}
.wsd_c02109{word-spacing:-0.974160px;}
.ws10_c02109{word-spacing:-0.118800px;}
.ws13_c02109{word-spacing:-0.099792px;}
.ws14_c02109{word-spacing:-0.085536px;}
.wse_c02109{word-spacing:0.000000px;}
.ws8_c02109{word-spacing:36.143712px;}
.ws6_c02109{word-spacing:36.742464px;}
.ws1_c02109{word-spacing:37.759392px;}
.ws0_c02109{word-spacing:38.020752px;}
.ws3_c02109{word-spacing:39.218256px;}
.ws5_c02109{word-spacing:39.902544px;}
.ws7_c02109{word-spacing:42.026688px;}
._0_c02109{margin-left:-1.948320px;}
._2_c02109{width:1.482624px;}
._4_c02109{width:5.730912px;}
._1_c02109{width:50.252400px;}
._3_c02109{width:51.530688px;}
.fc0_c02109{color:rgb(0,0,0);}
.fs0_c02109{font-size:47.520000px;}
.fs1_c02109{font-size:60.480000px;}
.y0_c02109{bottom:0.000000px;}
.y10_c02109{bottom:20.880450px;}
.y1c_c02109{bottom:146.998362px;}
.y1e_c02109{bottom:186.600234px;}
.y1d_c02109{bottom:196.320450px;}
.y1b_c02109{bottom:275.878542px;}
.y1a_c02109{bottom:356.878758px;}
.y18_c02109{bottom:406.559730px;}
.y14_c02109{bottom:424.560306px;}
.y19_c02109{bottom:458.759262px;}
.y17_c02109{bottom:491.879514px;}
.y16_c02109{bottom:509.880090px;}
.y13_c02109{bottom:543.000342px;}
.y15_c02109{bottom:559.559874px;}
.y12_c02109{bottom:577.560450px;}
.y20_c02109{bottom:593.760000px;}
.y21_c02109{bottom:596.640450px;}
.y1f_c02109{bottom:614.280450px;}
.yb_c02109{bottom:667.558326px;}
.yd_c02109{bottom:707.160234px;}
.yc_c02109{bottom:716.880450px;}
.ya_c02109{bottom:796.438506px;}
.y9_c02109{bottom:877.438722px;}
.y7_c02109{bottom:926.759730px;}
.y3_c02109{bottom:944.760306px;}
.y8_c02109{bottom:979.319226px;}
.y6_c02109{bottom:1012.439478px;}
.y5_c02109{bottom:1030.440054px;}
.y2_c02109{bottom:1063.560306px;}
.y4_c02109{bottom:1079.759874px;}
.y1_c02109{bottom:1097.760450px;}
.yf_c02109{bottom:1114.320000px;}
.y11_c02109{bottom:1117.200450px;}
.ye_c02109{bottom:1134.840450px;}
.h3_c02109{height:32.530781px;}
.h5_c02109{height:36.720000px;}
.h4_c02109{height:41.402813px;}
.h1_c02109{height:41.696016px;}
.h2_c02109{height:41.812031px;}
.h7_c02109{height:53.067656px;}
.h6_c02109{height:53.215313px;}
.h0_c02109{height:1263.000000px;}
.w2_c02109{width:395.280000px;}
.w1_c02109{width:892.500000px;}
.w0_c02109{width:892.830000px;}
.x0_c02109{left:0.000000px;}
.xd_c02109{left:117.000000px;}
.xe_c02109{left:161.280000px;}
.x8_c02109{left:440.999856px;}
.x4_c02109{left:445.680576px;}
.xb_c02109{left:451.080000px;}
.x7_c02109{left:455.399604px;}
.x5_c02109{left:461.880144px;}
.x1_c02109{left:463.320000px;}
.xa_c02109{left:483.480360px;}
.x9_c02109{left:492.119496px;}
.x6_c02109{left:493.200576px;}
.xc_c02109{left:506.880360px;}
.x3_c02109{left:511.919892px;}
.x2_c02109{left:526.679604px;}
@media print{
.v0_c02109{vertical-align:0.000000pt;}
.ls9_c02109{letter-spacing:-0.604032pt;}
.lsb_c02109{letter-spacing:-0.511104pt;}
.ls12_c02109{letter-spacing:-0.244992pt;}
.ls10_c02109{letter-spacing:-0.232320pt;}
.ls8_c02109{letter-spacing:-0.215424pt;}
.ls6_c02109{letter-spacing:-0.105600pt;}
.ls14_c02109{letter-spacing:0.000000pt;}
.ls3_c02109{letter-spacing:0.005376pt;}
.ls7_c02109{letter-spacing:0.114048pt;}
.lse_c02109{letter-spacing:0.215424pt;}
.lsd_c02109{letter-spacing:0.451968pt;}
.ls2_c02109{letter-spacing:0.456960pt;}
.ls11_c02109{letter-spacing:0.477312pt;}
.lsc_c02109{letter-spacing:0.515328pt;}
.ls13_c02109{letter-spacing:0.528000pt;}
.lsa_c02109{letter-spacing:0.532224pt;}
.ls4_c02109{letter-spacing:0.544896pt;}
.ls0_c02109{letter-spacing:0.578688pt;}
.lsf_c02109{letter-spacing:0.587136pt;}
.ls1_c02109{letter-spacing:0.637824pt;}
.ls5_c02109{letter-spacing:0.642048pt;}
.wsb_c02109{word-spacing:-13.896960pt;}
.wsc_c02109{word-spacing:-13.445376pt;}
.wsa_c02109{word-spacing:-11.088000pt;}
.ws9_c02109{word-spacing:-11.037312pt;}
.ws4_c02109{word-spacing:-10.344576pt;}
.ws2_c02109{word-spacing:-9.955968pt;}
.ws15_c02109{word-spacing:-3.198720pt;}
.ws11_c02109{word-spacing:-0.958848pt;}
.ws12_c02109{word-spacing:-0.908160pt;}
.wsf_c02109{word-spacing:-0.899712pt;}
.wsd_c02109{word-spacing:-0.865920pt;}
.ws10_c02109{word-spacing:-0.105600pt;}
.ws13_c02109{word-spacing:-0.088704pt;}
.ws14_c02109{word-spacing:-0.076032pt;}
.wse_c02109{word-spacing:0.000000pt;}
.ws8_c02109{word-spacing:32.127744pt;}
.ws6_c02109{word-spacing:32.659968pt;}
.ws1_c02109{word-spacing:33.563904pt;}
.ws0_c02109{word-spacing:33.796224pt;}
.ws3_c02109{word-spacing:34.860672pt;}
.ws5_c02109{word-spacing:35.468928pt;}
.ws7_c02109{word-spacing:37.357056pt;}
._0_c02109{margin-left:-1.731840pt;}
._2_c02109{width:1.317888pt;}
._4_c02109{width:5.094144pt;}
._1_c02109{width:44.668800pt;}
._3_c02109{width:45.805056pt;}
.fs0_c02109{font-size:42.240000pt;}
.fs1_c02109{font-size:53.760000pt;}
.y0_c02109{bottom:0.000000pt;}
.y10_c02109{bottom:18.560400pt;}
.y1c_c02109{bottom:130.665211pt;}
.y1e_c02109{bottom:165.866875pt;}
.y1d_c02109{bottom:174.507067pt;}
.y1b_c02109{bottom:245.225371pt;}
.y1a_c02109{bottom:317.225563pt;}
.y18_c02109{bottom:361.386427pt;}
.y14_c02109{bottom:377.386939pt;}
.y19_c02109{bottom:407.786011pt;}
.y17_c02109{bottom:437.226235pt;}
.y16_c02109{bottom:453.226747pt;}
.y13_c02109{bottom:482.666971pt;}
.y15_c02109{bottom:497.386555pt;}
.y12_c02109{bottom:513.387067pt;}
.y20_c02109{bottom:527.786667pt;}
.y21_c02109{bottom:530.347067pt;}
.y1f_c02109{bottom:546.027067pt;}
.yb_c02109{bottom:593.385179pt;}
.yd_c02109{bottom:628.586875pt;}
.yc_c02109{bottom:637.227067pt;}
.ya_c02109{bottom:707.945339pt;}
.y9_c02109{bottom:779.945531pt;}
.y7_c02109{bottom:823.786427pt;}
.y3_c02109{bottom:839.786939pt;}
.y8_c02109{bottom:870.505979pt;}
.y6_c02109{bottom:899.946203pt;}
.y5_c02109{bottom:915.946715pt;}
.y2_c02109{bottom:945.386939pt;}
.y4_c02109{bottom:959.786555pt;}
.y1_c02109{bottom:975.787067pt;}
.yf_c02109{bottom:990.506667pt;}
.y11_c02109{bottom:993.067067pt;}
.ye_c02109{bottom:1008.747067pt;}
.h3_c02109{height:28.916250pt;}
.h5_c02109{height:32.640000pt;}
.h4_c02109{height:36.802500pt;}
.h1_c02109{height:37.063125pt;}
.h2_c02109{height:37.166250pt;}
.h7_c02109{height:47.171250pt;}
.h6_c02109{height:47.302500pt;}
.h0_c02109{height:1122.666667pt;}
.w2_c02109{width:351.360000pt;}
.w1_c02109{width:793.333333pt;}
.w0_c02109{width:793.626667pt;}
.x0_c02109{left:0.000000pt;}
.xd_c02109{left:104.000000pt;}
.xe_c02109{left:143.360000pt;}
.x8_c02109{left:391.999872pt;}
.x4_c02109{left:396.160512pt;}
.xb_c02109{left:400.960000pt;}
.x7_c02109{left:404.799648pt;}
.x5_c02109{left:410.560128pt;}
.x1_c02109{left:411.840000pt;}
.xa_c02109{left:429.760320pt;}
.x9_c02109{left:437.439552pt;}
.x6_c02109{left:438.400512pt;}
.xc_c02109{left:450.560320pt;}
.x3_c02109{left:455.039904pt;}
.x2_c02109{left:468.159648pt;}
}





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

.ir_c02110:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02110{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02110;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02110{font-family:ff1_c02110;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02110;src:url('chunks/assets/font_2dfd77de80caaa40491f4595.woff2')format("woff");}.ff2_c02110{font-family:ff2_c02110;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02110;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02110{font-family:ff3_c02110;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02110{vertical-align:0.000000px;}
.ls9_c02110{letter-spacing:-0.679536px;}
.lsb_c02110{letter-spacing:-0.574992px;}
.ls12_c02110{letter-spacing:-0.275616px;}
.ls10_c02110{letter-spacing:-0.261360px;}
.ls8_c02110{letter-spacing:-0.242352px;}
.ls6_c02110{letter-spacing:-0.118800px;}
.ls14_c02110{letter-spacing:0.000000px;}
.ls3_c02110{letter-spacing:0.006048px;}
.ls7_c02110{letter-spacing:0.128304px;}
.lse_c02110{letter-spacing:0.242352px;}
.lsd_c02110{letter-spacing:0.508464px;}
.ls2_c02110{letter-spacing:0.514080px;}
.ls11_c02110{letter-spacing:0.536976px;}
.lsc_c02110{letter-spacing:0.579744px;}
.ls13_c02110{letter-spacing:0.594000px;}
.lsa_c02110{letter-spacing:0.598752px;}
.ls4_c02110{letter-spacing:0.613008px;}
.ls0_c02110{letter-spacing:0.651024px;}
.lsf_c02110{letter-spacing:0.660528px;}
.ls1_c02110{letter-spacing:0.717552px;}
.ls5_c02110{letter-spacing:0.722304px;}
.sc__c02110{text-shadow:none;}
.sc0_c02110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02110{-webkit-text-stroke:0px transparent;}
.sc0_c02110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02110{word-spacing:-15.634080px;}
.wsc_c02110{word-spacing:-15.126048px;}
.wsa_c02110{word-spacing:-12.474000px;}
.ws9_c02110{word-spacing:-12.416976px;}
.ws4_c02110{word-spacing:-11.637648px;}
.ws2_c02110{word-spacing:-11.200464px;}
.ws15_c02110{word-spacing:-3.598560px;}
.ws11_c02110{word-spacing:-1.078704px;}
.ws12_c02110{word-spacing:-1.021680px;}
.wsf_c02110{word-spacing:-1.012176px;}
.wsd_c02110{word-spacing:-0.974160px;}
.ws10_c02110{word-spacing:-0.118800px;}
.ws13_c02110{word-spacing:-0.099792px;}
.ws14_c02110{word-spacing:-0.085536px;}
.wse_c02110{word-spacing:0.000000px;}
.ws8_c02110{word-spacing:36.143712px;}
.ws6_c02110{word-spacing:36.742464px;}
.ws1_c02110{word-spacing:37.759392px;}
.ws0_c02110{word-spacing:38.020752px;}
.ws3_c02110{word-spacing:39.218256px;}
.ws5_c02110{word-spacing:39.902544px;}
.ws7_c02110{word-spacing:42.026688px;}
._0_c02110{margin-left:-1.948320px;}
._2_c02110{width:1.482624px;}
._4_c02110{width:5.730912px;}
._1_c02110{width:50.252400px;}
._3_c02110{width:51.530688px;}
.fc0_c02110{color:rgb(0,0,0);}
.fs0_c02110{font-size:47.520000px;}
.fs1_c02110{font-size:60.480000px;}
.y0_c02110{bottom:0.000000px;}
.y10_c02110{bottom:20.880450px;}
.y1c_c02110{bottom:146.998362px;}
.y1e_c02110{bottom:186.600234px;}
.y1d_c02110{bottom:196.320450px;}
.y1b_c02110{bottom:275.878542px;}
.y1a_c02110{bottom:356.878758px;}
.y18_c02110{bottom:406.559730px;}
.y14_c02110{bottom:424.560306px;}
.y19_c02110{bottom:458.759262px;}
.y17_c02110{bottom:491.879514px;}
.y16_c02110{bottom:509.880090px;}
.y13_c02110{bottom:543.000342px;}
.y15_c02110{bottom:559.559874px;}
.y12_c02110{bottom:577.560450px;}
.y20_c02110{bottom:593.760000px;}
.y21_c02110{bottom:596.640450px;}
.y1f_c02110{bottom:614.280450px;}
.yb_c02110{bottom:667.558326px;}
.yd_c02110{bottom:707.160234px;}
.yc_c02110{bottom:716.880450px;}
.ya_c02110{bottom:796.438506px;}
.y9_c02110{bottom:877.438722px;}
.y7_c02110{bottom:926.759730px;}
.y3_c02110{bottom:944.760306px;}
.y8_c02110{bottom:979.319226px;}
.y6_c02110{bottom:1012.439478px;}
.y5_c02110{bottom:1030.440054px;}
.y2_c02110{bottom:1063.560306px;}
.y4_c02110{bottom:1079.759874px;}
.y1_c02110{bottom:1097.760450px;}
.yf_c02110{bottom:1114.320000px;}
.y11_c02110{bottom:1117.200450px;}
.ye_c02110{bottom:1134.840450px;}
.h3_c02110{height:32.530781px;}
.h5_c02110{height:36.720000px;}
.h4_c02110{height:41.402813px;}
.h1_c02110{height:41.696016px;}
.h2_c02110{height:41.812031px;}
.h7_c02110{height:53.067656px;}
.h6_c02110{height:53.215313px;}
.h0_c02110{height:1263.000000px;}
.w2_c02110{width:395.280000px;}
.w1_c02110{width:892.500000px;}
.w0_c02110{width:892.830000px;}
.x0_c02110{left:0.000000px;}
.xd_c02110{left:117.000000px;}
.xe_c02110{left:161.280000px;}
.x8_c02110{left:440.999856px;}
.x4_c02110{left:445.680576px;}
.xb_c02110{left:451.080000px;}
.x7_c02110{left:455.399604px;}
.x5_c02110{left:461.880144px;}
.x1_c02110{left:463.320000px;}
.xa_c02110{left:483.480360px;}
.x9_c02110{left:492.119496px;}
.x6_c02110{left:493.200576px;}
.xc_c02110{left:506.880360px;}
.x3_c02110{left:511.919892px;}
.x2_c02110{left:526.679604px;}
@media print{
.v0_c02110{vertical-align:0.000000pt;}
.ls9_c02110{letter-spacing:-0.604032pt;}
.lsb_c02110{letter-spacing:-0.511104pt;}
.ls12_c02110{letter-spacing:-0.244992pt;}
.ls10_c02110{letter-spacing:-0.232320pt;}
.ls8_c02110{letter-spacing:-0.215424pt;}
.ls6_c02110{letter-spacing:-0.105600pt;}
.ls14_c02110{letter-spacing:0.000000pt;}
.ls3_c02110{letter-spacing:0.005376pt;}
.ls7_c02110{letter-spacing:0.114048pt;}
.lse_c02110{letter-spacing:0.215424pt;}
.lsd_c02110{letter-spacing:0.451968pt;}
.ls2_c02110{letter-spacing:0.456960pt;}
.ls11_c02110{letter-spacing:0.477312pt;}
.lsc_c02110{letter-spacing:0.515328pt;}
.ls13_c02110{letter-spacing:0.528000pt;}
.lsa_c02110{letter-spacing:0.532224pt;}
.ls4_c02110{letter-spacing:0.544896pt;}
.ls0_c02110{letter-spacing:0.578688pt;}
.lsf_c02110{letter-spacing:0.587136pt;}
.ls1_c02110{letter-spacing:0.637824pt;}
.ls5_c02110{letter-spacing:0.642048pt;}
.wsb_c02110{word-spacing:-13.896960pt;}
.wsc_c02110{word-spacing:-13.445376pt;}
.wsa_c02110{word-spacing:-11.088000pt;}
.ws9_c02110{word-spacing:-11.037312pt;}
.ws4_c02110{word-spacing:-10.344576pt;}
.ws2_c02110{word-spacing:-9.955968pt;}
.ws15_c02110{word-spacing:-3.198720pt;}
.ws11_c02110{word-spacing:-0.958848pt;}
.ws12_c02110{word-spacing:-0.908160pt;}
.wsf_c02110{word-spacing:-0.899712pt;}
.wsd_c02110{word-spacing:-0.865920pt;}
.ws10_c02110{word-spacing:-0.105600pt;}
.ws13_c02110{word-spacing:-0.088704pt;}
.ws14_c02110{word-spacing:-0.076032pt;}
.wse_c02110{word-spacing:0.000000pt;}
.ws8_c02110{word-spacing:32.127744pt;}
.ws6_c02110{word-spacing:32.659968pt;}
.ws1_c02110{word-spacing:33.563904pt;}
.ws0_c02110{word-spacing:33.796224pt;}
.ws3_c02110{word-spacing:34.860672pt;}
.ws5_c02110{word-spacing:35.468928pt;}
.ws7_c02110{word-spacing:37.357056pt;}
._0_c02110{margin-left:-1.731840pt;}
._2_c02110{width:1.317888pt;}
._4_c02110{width:5.094144pt;}
._1_c02110{width:44.668800pt;}
._3_c02110{width:45.805056pt;}
.fs0_c02110{font-size:42.240000pt;}
.fs1_c02110{font-size:53.760000pt;}
.y0_c02110{bottom:0.000000pt;}
.y10_c02110{bottom:18.560400pt;}
.y1c_c02110{bottom:130.665211pt;}
.y1e_c02110{bottom:165.866875pt;}
.y1d_c02110{bottom:174.507067pt;}
.y1b_c02110{bottom:245.225371pt;}
.y1a_c02110{bottom:317.225563pt;}
.y18_c02110{bottom:361.386427pt;}
.y14_c02110{bottom:377.386939pt;}
.y19_c02110{bottom:407.786011pt;}
.y17_c02110{bottom:437.226235pt;}
.y16_c02110{bottom:453.226747pt;}
.y13_c02110{bottom:482.666971pt;}
.y15_c02110{bottom:497.386555pt;}
.y12_c02110{bottom:513.387067pt;}
.y20_c02110{bottom:527.786667pt;}
.y21_c02110{bottom:530.347067pt;}
.y1f_c02110{bottom:546.027067pt;}
.yb_c02110{bottom:593.385179pt;}
.yd_c02110{bottom:628.586875pt;}
.yc_c02110{bottom:637.227067pt;}
.ya_c02110{bottom:707.945339pt;}
.y9_c02110{bottom:779.945531pt;}
.y7_c02110{bottom:823.786427pt;}
.y3_c02110{bottom:839.786939pt;}
.y8_c02110{bottom:870.505979pt;}
.y6_c02110{bottom:899.946203pt;}
.y5_c02110{bottom:915.946715pt;}
.y2_c02110{bottom:945.386939pt;}
.y4_c02110{bottom:959.786555pt;}
.y1_c02110{bottom:975.787067pt;}
.yf_c02110{bottom:990.506667pt;}
.y11_c02110{bottom:993.067067pt;}
.ye_c02110{bottom:1008.747067pt;}
.h3_c02110{height:28.916250pt;}
.h5_c02110{height:32.640000pt;}
.h4_c02110{height:36.802500pt;}
.h1_c02110{height:37.063125pt;}
.h2_c02110{height:37.166250pt;}
.h7_c02110{height:47.171250pt;}
.h6_c02110{height:47.302500pt;}
.h0_c02110{height:1122.666667pt;}
.w2_c02110{width:351.360000pt;}
.w1_c02110{width:793.333333pt;}
.w0_c02110{width:793.626667pt;}
.x0_c02110{left:0.000000pt;}
.xd_c02110{left:104.000000pt;}
.xe_c02110{left:143.360000pt;}
.x8_c02110{left:391.999872pt;}
.x4_c02110{left:396.160512pt;}
.xb_c02110{left:400.960000pt;}
.x7_c02110{left:404.799648pt;}
.x5_c02110{left:410.560128pt;}
.x1_c02110{left:411.840000pt;}
.xa_c02110{left:429.760320pt;}
.x9_c02110{left:437.439552pt;}
.x6_c02110{left:438.400512pt;}
.xc_c02110{left:450.560320pt;}
.x3_c02110{left:455.039904pt;}
.x2_c02110{left:468.159648pt;}
}





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

.ir_c02111:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02111{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02111;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02111{font-family:ff1_c02111;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02111;src:url('chunks/assets/font_60ef98c4259fc24a1fd17ecf.woff2')format("woff");}.ff2_c02111{font-family:ff2_c02111;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02111;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02111{font-family:ff3_c02111;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02111{vertical-align:0.000000px;}
.ls13_c02111{letter-spacing:-0.736560px;}
.lsa_c02111{letter-spacing:-0.679536px;}
.lsc_c02111{letter-spacing:-0.574992px;}
.ls17_c02111{letter-spacing:-0.275616px;}
.ls14_c02111{letter-spacing:-0.270864px;}
.ls11_c02111{letter-spacing:-0.261360px;}
.ls9_c02111{letter-spacing:-0.242352px;}
.ls6_c02111{letter-spacing:-0.118800px;}
.ls16_c02111{letter-spacing:0.000000px;}
.ls2_c02111{letter-spacing:0.006048px;}
.ls8_c02111{letter-spacing:0.128304px;}
.lsf_c02111{letter-spacing:0.242352px;}
.lse_c02111{letter-spacing:0.508464px;}
.ls1_c02111{letter-spacing:0.514080px;}
.ls12_c02111{letter-spacing:0.536976px;}
.lsd_c02111{letter-spacing:0.579744px;}
.ls15_c02111{letter-spacing:0.594000px;}
.lsb_c02111{letter-spacing:0.598752px;}
.ls4_c02111{letter-spacing:0.613008px;}
.ls3_c02111{letter-spacing:0.651024px;}
.ls10_c02111{letter-spacing:0.660528px;}
.ls7_c02111{letter-spacing:0.689040px;}
.ls0_c02111{letter-spacing:0.717552px;}
.ls5_c02111{letter-spacing:0.722304px;}
.sc__c02111{text-shadow:none;}
.sc0_c02111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02111{-webkit-text-stroke:0px transparent;}
.sc0_c02111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02111{word-spacing:-15.634080px;}
.wse_c02111{word-spacing:-15.126048px;}
.ws1_c02111{word-spacing:-12.569040px;}
.wsc_c02111{word-spacing:-12.474000px;}
.ws7_c02111{word-spacing:-12.459744px;}
.ws11_c02111{word-spacing:-12.416976px;}
.ws0_c02111{word-spacing:-11.761200px;}
.ws5_c02111{word-spacing:-11.637648px;}
.ws3_c02111{word-spacing:-11.200464px;}
.ws1a_c02111{word-spacing:-3.598560px;}
.ws15_c02111{word-spacing:-1.078704px;}
.ws16_c02111{word-spacing:-1.021680px;}
.ws1b_c02111{word-spacing:-1.012176px;}
.ws12_c02111{word-spacing:-0.974160px;}
.ws14_c02111{word-spacing:-0.118800px;}
.ws17_c02111{word-spacing:-0.099792px;}
.ws18_c02111{word-spacing:-0.090288px;}
.ws19_c02111{word-spacing:-0.085536px;}
.ws13_c02111{word-spacing:0.000000px;}
.wsb_c02111{word-spacing:6.629040px;}
.wsa_c02111{word-spacing:34.836912px;}
.ws9_c02111{word-spacing:36.143712px;}
.ws10_c02111{word-spacing:36.742464px;}
.ws2_c02111{word-spacing:37.759392px;}
.wsf_c02111{word-spacing:38.020752px;}
.ws4_c02111{word-spacing:39.218256px;}
.ws6_c02111{word-spacing:39.902544px;}
.ws8_c02111{word-spacing:42.026688px;}
._0_c02111{margin-left:-1.948320px;}
._2_c02111{width:1.482624px;}
._4_c02111{width:5.730912px;}
._6_c02111{width:19.982160px;}
._7_c02111{width:23.451120px;}
._5_c02111{width:24.691392px;}
._1_c02111{width:50.252400px;}
._3_c02111{width:51.530688px;}
.fc0_c02111{color:rgb(0,0,0);}
.fs0_c02111{font-size:47.520000px;}
.fs1_c02111{font-size:60.480000px;}
.y0_c02111{bottom:0.000000px;}
.y4_c02111{bottom:18.360450px;}
.y13_c02111{bottom:20.880450px;}
.y1f_c02111{bottom:146.998362px;}
.y21_c02111{bottom:186.600234px;}
.y20_c02111{bottom:196.320450px;}
.y1e_c02111{bottom:275.878542px;}
.y1d_c02111{bottom:356.878758px;}
.y1b_c02111{bottom:406.559730px;}
.y17_c02111{bottom:424.560306px;}
.y1c_c02111{bottom:458.759262px;}
.y1a_c02111{bottom:491.879514px;}
.y19_c02111{bottom:509.880090px;}
.y16_c02111{bottom:543.000342px;}
.y18_c02111{bottom:559.559874px;}
.y15_c02111{bottom:577.560450px;}
.y23_c02111{bottom:593.760000px;}
.y24_c02111{bottom:596.640450px;}
.y22_c02111{bottom:614.280450px;}
.ye_c02111{bottom:652.438794px;}
.yd_c02111{bottom:667.558470px;}
.y10_c02111{bottom:707.160234px;}
.yf_c02111{bottom:716.880450px;}
.yc_c02111{bottom:796.438650px;}
.yb_c02111{bottom:877.438866px;}
.y9_c02111{bottom:926.759874px;}
.y5_c02111{bottom:944.760450px;}
.ya_c02111{bottom:979.319370px;}
.y8_c02111{bottom:1012.439622px;}
.y7_c02111{bottom:1030.440198px;}
.y3_c02111{bottom:1045.200000px;}
.y2_c02111{bottom:1063.560306px;}
.y6_c02111{bottom:1079.760018px;}
.y1_c02111{bottom:1097.760450px;}
.y12_c02111{bottom:1114.320000px;}
.y14_c02111{bottom:1117.200450px;}
.y11_c02111{bottom:1134.840450px;}
.h3_c02111{height:29.520000px;}
.h2_c02111{height:32.530781px;}
.h6_c02111{height:36.720000px;}
.h5_c02111{height:41.402813px;}
.h1_c02111{height:41.696016px;}
.h4_c02111{height:41.812031px;}
.h8_c02111{height:53.067656px;}
.h7_c02111{height:53.215313px;}
.h0_c02111{height:1263.000000px;}
.w2_c02111{width:215.280000px;}
.w3_c02111{width:395.280000px;}
.w1_c02111{width:892.500000px;}
.w0_c02111{width:892.830000px;}
.x0_c02111{left:0.000000px;}
.xe_c02111{left:117.000000px;}
.xf_c02111{left:161.280000px;}
.x9_c02111{left:440.999964px;}
.x5_c02111{left:445.680684px;}
.xc_c02111{left:451.080000px;}
.x8_c02111{left:455.399712px;}
.x6_c02111{left:461.880252px;}
.x1_c02111{left:463.320000px;}
.xb_c02111{left:483.480468px;}
.xa_c02111{left:492.119604px;}
.x7_c02111{left:493.200684px;}
.xd_c02111{left:506.880360px;}
.x4_c02111{left:511.920000px;}
.x2_c02111{left:526.679604px;}
.x3_c02111{left:569.520000px;}
@media print{
.v0_c02111{vertical-align:0.000000pt;}
.ls13_c02111{letter-spacing:-0.654720pt;}
.lsa_c02111{letter-spacing:-0.604032pt;}
.lsc_c02111{letter-spacing:-0.511104pt;}
.ls17_c02111{letter-spacing:-0.244992pt;}
.ls14_c02111{letter-spacing:-0.240768pt;}
.ls11_c02111{letter-spacing:-0.232320pt;}
.ls9_c02111{letter-spacing:-0.215424pt;}
.ls6_c02111{letter-spacing:-0.105600pt;}
.ls16_c02111{letter-spacing:0.000000pt;}
.ls2_c02111{letter-spacing:0.005376pt;}
.ls8_c02111{letter-spacing:0.114048pt;}
.lsf_c02111{letter-spacing:0.215424pt;}
.lse_c02111{letter-spacing:0.451968pt;}
.ls1_c02111{letter-spacing:0.456960pt;}
.ls12_c02111{letter-spacing:0.477312pt;}
.lsd_c02111{letter-spacing:0.515328pt;}
.ls15_c02111{letter-spacing:0.528000pt;}
.lsb_c02111{letter-spacing:0.532224pt;}
.ls4_c02111{letter-spacing:0.544896pt;}
.ls3_c02111{letter-spacing:0.578688pt;}
.ls10_c02111{letter-spacing:0.587136pt;}
.ls7_c02111{letter-spacing:0.612480pt;}
.ls0_c02111{letter-spacing:0.637824pt;}
.ls5_c02111{letter-spacing:0.642048pt;}
.wsd_c02111{word-spacing:-13.896960pt;}
.wse_c02111{word-spacing:-13.445376pt;}
.ws1_c02111{word-spacing:-11.172480pt;}
.wsc_c02111{word-spacing:-11.088000pt;}
.ws7_c02111{word-spacing:-11.075328pt;}
.ws11_c02111{word-spacing:-11.037312pt;}
.ws0_c02111{word-spacing:-10.454400pt;}
.ws5_c02111{word-spacing:-10.344576pt;}
.ws3_c02111{word-spacing:-9.955968pt;}
.ws1a_c02111{word-spacing:-3.198720pt;}
.ws15_c02111{word-spacing:-0.958848pt;}
.ws16_c02111{word-spacing:-0.908160pt;}
.ws1b_c02111{word-spacing:-0.899712pt;}
.ws12_c02111{word-spacing:-0.865920pt;}
.ws14_c02111{word-spacing:-0.105600pt;}
.ws17_c02111{word-spacing:-0.088704pt;}
.ws18_c02111{word-spacing:-0.080256pt;}
.ws19_c02111{word-spacing:-0.076032pt;}
.ws13_c02111{word-spacing:0.000000pt;}
.wsb_c02111{word-spacing:5.892480pt;}
.wsa_c02111{word-spacing:30.966144pt;}
.ws9_c02111{word-spacing:32.127744pt;}
.ws10_c02111{word-spacing:32.659968pt;}
.ws2_c02111{word-spacing:33.563904pt;}
.wsf_c02111{word-spacing:33.796224pt;}
.ws4_c02111{word-spacing:34.860672pt;}
.ws6_c02111{word-spacing:35.468928pt;}
.ws8_c02111{word-spacing:37.357056pt;}
._0_c02111{margin-left:-1.731840pt;}
._2_c02111{width:1.317888pt;}
._4_c02111{width:5.094144pt;}
._6_c02111{width:17.761920pt;}
._7_c02111{width:20.845440pt;}
._5_c02111{width:21.947904pt;}
._1_c02111{width:44.668800pt;}
._3_c02111{width:45.805056pt;}
.fs0_c02111{font-size:42.240000pt;}
.fs1_c02111{font-size:53.760000pt;}
.y0_c02111{bottom:0.000000pt;}
.y4_c02111{bottom:16.320400pt;}
.y13_c02111{bottom:18.560400pt;}
.y1f_c02111{bottom:130.665211pt;}
.y21_c02111{bottom:165.866875pt;}
.y20_c02111{bottom:174.507067pt;}
.y1e_c02111{bottom:245.225371pt;}
.y1d_c02111{bottom:317.225563pt;}
.y1b_c02111{bottom:361.386427pt;}
.y17_c02111{bottom:377.386939pt;}
.y1c_c02111{bottom:407.786011pt;}
.y1a_c02111{bottom:437.226235pt;}
.y19_c02111{bottom:453.226747pt;}
.y16_c02111{bottom:482.666971pt;}
.y18_c02111{bottom:497.386555pt;}
.y15_c02111{bottom:513.387067pt;}
.y23_c02111{bottom:527.786667pt;}
.y24_c02111{bottom:530.347067pt;}
.y22_c02111{bottom:546.027067pt;}
.ye_c02111{bottom:579.945595pt;}
.yd_c02111{bottom:593.385307pt;}
.y10_c02111{bottom:628.586875pt;}
.yf_c02111{bottom:637.227067pt;}
.yc_c02111{bottom:707.945467pt;}
.yb_c02111{bottom:779.945659pt;}
.y9_c02111{bottom:823.786555pt;}
.y5_c02111{bottom:839.787067pt;}
.ya_c02111{bottom:870.506107pt;}
.y8_c02111{bottom:899.946331pt;}
.y7_c02111{bottom:915.946843pt;}
.y3_c02111{bottom:929.066667pt;}
.y2_c02111{bottom:945.386939pt;}
.y6_c02111{bottom:959.786683pt;}
.y1_c02111{bottom:975.787067pt;}
.y12_c02111{bottom:990.506667pt;}
.y14_c02111{bottom:993.067067pt;}
.y11_c02111{bottom:1008.747067pt;}
.h3_c02111{height:26.240000pt;}
.h2_c02111{height:28.916250pt;}
.h6_c02111{height:32.640000pt;}
.h5_c02111{height:36.802500pt;}
.h1_c02111{height:37.063125pt;}
.h4_c02111{height:37.166250pt;}
.h8_c02111{height:47.171250pt;}
.h7_c02111{height:47.302500pt;}
.h0_c02111{height:1122.666667pt;}
.w2_c02111{width:191.360000pt;}
.w3_c02111{width:351.360000pt;}
.w1_c02111{width:793.333333pt;}
.w0_c02111{width:793.626667pt;}
.x0_c02111{left:0.000000pt;}
.xe_c02111{left:104.000000pt;}
.xf_c02111{left:143.360000pt;}
.x9_c02111{left:391.999968pt;}
.x5_c02111{left:396.160608pt;}
.xc_c02111{left:400.960000pt;}
.x8_c02111{left:404.799744pt;}
.x6_c02111{left:410.560224pt;}
.x1_c02111{left:411.840000pt;}
.xb_c02111{left:429.760416pt;}
.xa_c02111{left:437.439648pt;}
.x7_c02111{left:438.400608pt;}
.xd_c02111{left:450.560320pt;}
.x4_c02111{left:455.040000pt;}
.x2_c02111{left:468.159648pt;}
.x3_c02111{left:506.240000pt;}
}





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

.ir_c02112:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02112{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02112;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02112{font-family:ff1_c02112;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02112;src:url('chunks/assets/font_91901860b73e486b76103eb1.woff2')format("woff");}.ff2_c02112{font-family:ff2_c02112;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02112;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02112{font-family:ff3_c02112;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02112{vertical-align:0.000000px;}
.ls9_c02112{letter-spacing:-0.679536px;}
.lsb_c02112{letter-spacing:-0.574992px;}
.ls12_c02112{letter-spacing:-0.275616px;}
.ls10_c02112{letter-spacing:-0.261360px;}
.ls8_c02112{letter-spacing:-0.242352px;}
.ls6_c02112{letter-spacing:-0.118800px;}
.ls14_c02112{letter-spacing:0.000000px;}
.ls3_c02112{letter-spacing:0.006048px;}
.ls7_c02112{letter-spacing:0.128304px;}
.lse_c02112{letter-spacing:0.242352px;}
.lsd_c02112{letter-spacing:0.508464px;}
.ls2_c02112{letter-spacing:0.514080px;}
.ls11_c02112{letter-spacing:0.536976px;}
.lsc_c02112{letter-spacing:0.579744px;}
.ls13_c02112{letter-spacing:0.594000px;}
.lsa_c02112{letter-spacing:0.598752px;}
.ls4_c02112{letter-spacing:0.613008px;}
.ls0_c02112{letter-spacing:0.651024px;}
.lsf_c02112{letter-spacing:0.660528px;}
.ls1_c02112{letter-spacing:0.717552px;}
.ls5_c02112{letter-spacing:0.722304px;}
.sc__c02112{text-shadow:none;}
.sc0_c02112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02112{-webkit-text-stroke:0px transparent;}
.sc0_c02112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02112{word-spacing:-15.634080px;}
.wsc_c02112{word-spacing:-15.126048px;}
.wsa_c02112{word-spacing:-12.474000px;}
.ws9_c02112{word-spacing:-12.416976px;}
.ws4_c02112{word-spacing:-11.637648px;}
.ws2_c02112{word-spacing:-11.200464px;}
.ws15_c02112{word-spacing:-3.598560px;}
.ws11_c02112{word-spacing:-1.078704px;}
.ws12_c02112{word-spacing:-1.021680px;}
.wsf_c02112{word-spacing:-1.012176px;}
.wsd_c02112{word-spacing:-0.974160px;}
.ws10_c02112{word-spacing:-0.118800px;}
.ws13_c02112{word-spacing:-0.099792px;}
.ws14_c02112{word-spacing:-0.085536px;}
.wse_c02112{word-spacing:0.000000px;}
.ws8_c02112{word-spacing:36.143712px;}
.ws6_c02112{word-spacing:36.742464px;}
.ws1_c02112{word-spacing:37.759392px;}
.ws0_c02112{word-spacing:38.020752px;}
.ws3_c02112{word-spacing:39.218256px;}
.ws5_c02112{word-spacing:39.902544px;}
.ws7_c02112{word-spacing:42.026688px;}
._0_c02112{margin-left:-1.948320px;}
._2_c02112{width:1.482624px;}
._4_c02112{width:5.730912px;}
._1_c02112{width:50.252400px;}
._3_c02112{width:51.530688px;}
.fc0_c02112{color:rgb(0,0,0);}
.fs0_c02112{font-size:47.520000px;}
.fs1_c02112{font-size:60.480000px;}
.y0_c02112{bottom:0.000000px;}
.y10_c02112{bottom:20.880450px;}
.y1c_c02112{bottom:146.998362px;}
.y1e_c02112{bottom:186.600234px;}
.y1d_c02112{bottom:196.320450px;}
.y1b_c02112{bottom:275.878542px;}
.y1a_c02112{bottom:356.878758px;}
.y18_c02112{bottom:406.559730px;}
.y14_c02112{bottom:424.560306px;}
.y19_c02112{bottom:458.759262px;}
.y17_c02112{bottom:491.879514px;}
.y16_c02112{bottom:509.880090px;}
.y13_c02112{bottom:543.000342px;}
.y15_c02112{bottom:559.559874px;}
.y12_c02112{bottom:577.560450px;}
.y20_c02112{bottom:593.760000px;}
.y21_c02112{bottom:596.640450px;}
.y1f_c02112{bottom:614.280450px;}
.yb_c02112{bottom:667.558326px;}
.yd_c02112{bottom:707.160234px;}
.yc_c02112{bottom:716.880450px;}
.ya_c02112{bottom:796.438506px;}
.y9_c02112{bottom:877.438722px;}
.y7_c02112{bottom:926.759730px;}
.y3_c02112{bottom:944.760306px;}
.y8_c02112{bottom:979.319226px;}
.y6_c02112{bottom:1012.439478px;}
.y5_c02112{bottom:1030.440054px;}
.y2_c02112{bottom:1063.560306px;}
.y4_c02112{bottom:1079.759874px;}
.y1_c02112{bottom:1097.760450px;}
.yf_c02112{bottom:1114.320000px;}
.y11_c02112{bottom:1117.200450px;}
.ye_c02112{bottom:1134.840450px;}
.h3_c02112{height:32.530781px;}
.h5_c02112{height:36.720000px;}
.h4_c02112{height:41.402813px;}
.h1_c02112{height:41.696016px;}
.h2_c02112{height:41.812031px;}
.h7_c02112{height:53.067656px;}
.h6_c02112{height:53.215313px;}
.h0_c02112{height:1263.000000px;}
.w2_c02112{width:395.280000px;}
.w1_c02112{width:892.500000px;}
.w0_c02112{width:892.830000px;}
.x0_c02112{left:0.000000px;}
.xd_c02112{left:117.000000px;}
.xe_c02112{left:161.280000px;}
.x8_c02112{left:440.999856px;}
.x4_c02112{left:445.680576px;}
.xb_c02112{left:451.080000px;}
.x7_c02112{left:455.399604px;}
.x5_c02112{left:461.880144px;}
.x1_c02112{left:463.320000px;}
.xa_c02112{left:483.480360px;}
.x9_c02112{left:492.119496px;}
.x6_c02112{left:493.200576px;}
.xc_c02112{left:506.880360px;}
.x3_c02112{left:511.919892px;}
.x2_c02112{left:526.679604px;}
@media print{
.v0_c02112{vertical-align:0.000000pt;}
.ls9_c02112{letter-spacing:-0.604032pt;}
.lsb_c02112{letter-spacing:-0.511104pt;}
.ls12_c02112{letter-spacing:-0.244992pt;}
.ls10_c02112{letter-spacing:-0.232320pt;}
.ls8_c02112{letter-spacing:-0.215424pt;}
.ls6_c02112{letter-spacing:-0.105600pt;}
.ls14_c02112{letter-spacing:0.000000pt;}
.ls3_c02112{letter-spacing:0.005376pt;}
.ls7_c02112{letter-spacing:0.114048pt;}
.lse_c02112{letter-spacing:0.215424pt;}
.lsd_c02112{letter-spacing:0.451968pt;}
.ls2_c02112{letter-spacing:0.456960pt;}
.ls11_c02112{letter-spacing:0.477312pt;}
.lsc_c02112{letter-spacing:0.515328pt;}
.ls13_c02112{letter-spacing:0.528000pt;}
.lsa_c02112{letter-spacing:0.532224pt;}
.ls4_c02112{letter-spacing:0.544896pt;}
.ls0_c02112{letter-spacing:0.578688pt;}
.lsf_c02112{letter-spacing:0.587136pt;}
.ls1_c02112{letter-spacing:0.637824pt;}
.ls5_c02112{letter-spacing:0.642048pt;}
.wsb_c02112{word-spacing:-13.896960pt;}
.wsc_c02112{word-spacing:-13.445376pt;}
.wsa_c02112{word-spacing:-11.088000pt;}
.ws9_c02112{word-spacing:-11.037312pt;}
.ws4_c02112{word-spacing:-10.344576pt;}
.ws2_c02112{word-spacing:-9.955968pt;}
.ws15_c02112{word-spacing:-3.198720pt;}
.ws11_c02112{word-spacing:-0.958848pt;}
.ws12_c02112{word-spacing:-0.908160pt;}
.wsf_c02112{word-spacing:-0.899712pt;}
.wsd_c02112{word-spacing:-0.865920pt;}
.ws10_c02112{word-spacing:-0.105600pt;}
.ws13_c02112{word-spacing:-0.088704pt;}
.ws14_c02112{word-spacing:-0.076032pt;}
.wse_c02112{word-spacing:0.000000pt;}
.ws8_c02112{word-spacing:32.127744pt;}
.ws6_c02112{word-spacing:32.659968pt;}
.ws1_c02112{word-spacing:33.563904pt;}
.ws0_c02112{word-spacing:33.796224pt;}
.ws3_c02112{word-spacing:34.860672pt;}
.ws5_c02112{word-spacing:35.468928pt;}
.ws7_c02112{word-spacing:37.357056pt;}
._0_c02112{margin-left:-1.731840pt;}
._2_c02112{width:1.317888pt;}
._4_c02112{width:5.094144pt;}
._1_c02112{width:44.668800pt;}
._3_c02112{width:45.805056pt;}
.fs0_c02112{font-size:42.240000pt;}
.fs1_c02112{font-size:53.760000pt;}
.y0_c02112{bottom:0.000000pt;}
.y10_c02112{bottom:18.560400pt;}
.y1c_c02112{bottom:130.665211pt;}
.y1e_c02112{bottom:165.866875pt;}
.y1d_c02112{bottom:174.507067pt;}
.y1b_c02112{bottom:245.225371pt;}
.y1a_c02112{bottom:317.225563pt;}
.y18_c02112{bottom:361.386427pt;}
.y14_c02112{bottom:377.386939pt;}
.y19_c02112{bottom:407.786011pt;}
.y17_c02112{bottom:437.226235pt;}
.y16_c02112{bottom:453.226747pt;}
.y13_c02112{bottom:482.666971pt;}
.y15_c02112{bottom:497.386555pt;}
.y12_c02112{bottom:513.387067pt;}
.y20_c02112{bottom:527.786667pt;}
.y21_c02112{bottom:530.347067pt;}
.y1f_c02112{bottom:546.027067pt;}
.yb_c02112{bottom:593.385179pt;}
.yd_c02112{bottom:628.586875pt;}
.yc_c02112{bottom:637.227067pt;}
.ya_c02112{bottom:707.945339pt;}
.y9_c02112{bottom:779.945531pt;}
.y7_c02112{bottom:823.786427pt;}
.y3_c02112{bottom:839.786939pt;}
.y8_c02112{bottom:870.505979pt;}
.y6_c02112{bottom:899.946203pt;}
.y5_c02112{bottom:915.946715pt;}
.y2_c02112{bottom:945.386939pt;}
.y4_c02112{bottom:959.786555pt;}
.y1_c02112{bottom:975.787067pt;}
.yf_c02112{bottom:990.506667pt;}
.y11_c02112{bottom:993.067067pt;}
.ye_c02112{bottom:1008.747067pt;}
.h3_c02112{height:28.916250pt;}
.h5_c02112{height:32.640000pt;}
.h4_c02112{height:36.802500pt;}
.h1_c02112{height:37.063125pt;}
.h2_c02112{height:37.166250pt;}
.h7_c02112{height:47.171250pt;}
.h6_c02112{height:47.302500pt;}
.h0_c02112{height:1122.666667pt;}
.w2_c02112{width:351.360000pt;}
.w1_c02112{width:793.333333pt;}
.w0_c02112{width:793.626667pt;}
.x0_c02112{left:0.000000pt;}
.xd_c02112{left:104.000000pt;}
.xe_c02112{left:143.360000pt;}
.x8_c02112{left:391.999872pt;}
.x4_c02112{left:396.160512pt;}
.xb_c02112{left:400.960000pt;}
.x7_c02112{left:404.799648pt;}
.x5_c02112{left:410.560128pt;}
.x1_c02112{left:411.840000pt;}
.xa_c02112{left:429.760320pt;}
.x9_c02112{left:437.439552pt;}
.x6_c02112{left:438.400512pt;}
.xc_c02112{left:450.560320pt;}
.x3_c02112{left:455.039904pt;}
.x2_c02112{left:468.159648pt;}
}





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

.ir_c02113:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02113{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02113;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02113{font-family:ff1_c02113;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02113;src:url('chunks/assets/font_08cd48912cd080aae38be687.woff2')format("woff");}.ff2_c02113{font-family:ff2_c02113;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02113;src:url('chunks/assets/font_c789045f650be0b19bb23526.woff2')format("woff");}.ff3_c02113{font-family:ff3_c02113;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02113{vertical-align:0.000000px;}
.ls12_c02113{letter-spacing:-0.736560px;}
.ls9_c02113{letter-spacing:-0.679536px;}
.lsb_c02113{letter-spacing:-0.574992px;}
.ls17_c02113{letter-spacing:-0.361152px;}
.ls16_c02113{letter-spacing:-0.308880px;}
.ls18_c02113{letter-spacing:-0.275616px;}
.ls13_c02113{letter-spacing:-0.270864px;}
.ls10_c02113{letter-spacing:-0.261360px;}
.ls8_c02113{letter-spacing:-0.242352px;}
.ls5_c02113{letter-spacing:-0.118800px;}
.ls15_c02113{letter-spacing:0.000000px;}
.ls2_c02113{letter-spacing:0.006048px;}
.ls7_c02113{letter-spacing:0.128304px;}
.lse_c02113{letter-spacing:0.242352px;}
.lsd_c02113{letter-spacing:0.508464px;}
.ls1_c02113{letter-spacing:0.514080px;}
.ls11_c02113{letter-spacing:0.536976px;}
.lsc_c02113{letter-spacing:0.579744px;}
.ls14_c02113{letter-spacing:0.594000px;}
.lsa_c02113{letter-spacing:0.598752px;}
.ls3_c02113{letter-spacing:0.613008px;}
.lsf_c02113{letter-spacing:0.660528px;}
.ls6_c02113{letter-spacing:0.689040px;}
.ls0_c02113{letter-spacing:0.717552px;}
.ls4_c02113{letter-spacing:0.722304px;}
.sc__c02113{text-shadow:none;}
.sc0_c02113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02113{-webkit-text-stroke:0px transparent;}
.sc0_c02113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02113{word-spacing:-15.634080px;}
.wse_c02113{word-spacing:-15.126048px;}
.ws1_c02113{word-spacing:-12.569040px;}
.wsc_c02113{word-spacing:-12.474000px;}
.ws7_c02113{word-spacing:-12.459744px;}
.ws12_c02113{word-spacing:-12.416976px;}
.ws11_c02113{word-spacing:-12.388464px;}
.ws0_c02113{word-spacing:-11.761200px;}
.ws5_c02113{word-spacing:-11.637648px;}
.ws10_c02113{word-spacing:-11.305008px;}
.ws3_c02113{word-spacing:-11.200464px;}
.ws1b_c02113{word-spacing:-3.598560px;}
.ws1c_c02113{word-spacing:-1.083456px;}
.ws16_c02113{word-spacing:-1.078704px;}
.ws17_c02113{word-spacing:-1.021680px;}
.ws13_c02113{word-spacing:-0.974160px;}
.ws15_c02113{word-spacing:-0.118800px;}
.ws18_c02113{word-spacing:-0.099792px;}
.ws19_c02113{word-spacing:-0.090288px;}
.ws1a_c02113{word-spacing:-0.085536px;}
.ws1d_c02113{word-spacing:-0.052272px;}
.ws14_c02113{word-spacing:0.000000px;}
.wsb_c02113{word-spacing:6.629040px;}
.wsa_c02113{word-spacing:34.836912px;}
.ws9_c02113{word-spacing:36.143712px;}
.ws2_c02113{word-spacing:37.759392px;}
.wsf_c02113{word-spacing:38.020752px;}
.ws4_c02113{word-spacing:39.218256px;}
.ws6_c02113{word-spacing:39.902544px;}
.ws8_c02113{word-spacing:42.026688px;}
._0_c02113{margin-left:-1.948320px;}
._2_c02113{width:1.482624px;}
._4_c02113{width:5.730912px;}
._6_c02113{width:19.982160px;}
._7_c02113{width:23.451120px;}
._5_c02113{width:24.691392px;}
._1_c02113{width:50.252400px;}
._3_c02113{width:51.530688px;}
.fc0_c02113{color:rgb(0,0,0);}
.fs0_c02113{font-size:47.520000px;}
.fs1_c02113{font-size:60.480000px;}
.y0_c02113{bottom:0.000000px;}
.y4_c02113{bottom:18.360450px;}
.y13_c02113{bottom:20.880450px;}
.y1f_c02113{bottom:146.998362px;}
.y21_c02113{bottom:186.600234px;}
.y20_c02113{bottom:196.320450px;}
.y1e_c02113{bottom:275.878542px;}
.y1d_c02113{bottom:356.878758px;}
.y1b_c02113{bottom:406.559730px;}
.y17_c02113{bottom:424.560306px;}
.y1c_c02113{bottom:458.759262px;}
.y1a_c02113{bottom:491.879514px;}
.y19_c02113{bottom:509.880090px;}
.y16_c02113{bottom:543.000342px;}
.y18_c02113{bottom:559.559874px;}
.y15_c02113{bottom:577.560450px;}
.y23_c02113{bottom:593.760000px;}
.y24_c02113{bottom:596.640450px;}
.y22_c02113{bottom:614.280450px;}
.ye_c02113{bottom:652.438794px;}
.yd_c02113{bottom:667.558470px;}
.y10_c02113{bottom:707.160234px;}
.yf_c02113{bottom:716.880450px;}
.yc_c02113{bottom:796.438650px;}
.yb_c02113{bottom:877.438866px;}
.y9_c02113{bottom:926.759874px;}
.y5_c02113{bottom:944.760450px;}
.ya_c02113{bottom:979.319370px;}
.y8_c02113{bottom:1012.439622px;}
.y7_c02113{bottom:1030.440198px;}
.y3_c02113{bottom:1045.200000px;}
.y2_c02113{bottom:1063.560306px;}
.y6_c02113{bottom:1079.760018px;}
.y1_c02113{bottom:1097.760450px;}
.y12_c02113{bottom:1114.320000px;}
.y14_c02113{bottom:1117.200450px;}
.y11_c02113{bottom:1134.840450px;}
.h3_c02113{height:29.520000px;}
.h2_c02113{height:32.530781px;}
.h6_c02113{height:36.720000px;}
.h5_c02113{height:41.402813px;}
.h1_c02113{height:41.696016px;}
.h4_c02113{height:41.812031px;}
.h8_c02113{height:53.067656px;}
.h7_c02113{height:53.215313px;}
.h0_c02113{height:1263.000000px;}
.w2_c02113{width:215.280000px;}
.w3_c02113{width:395.280000px;}
.w1_c02113{width:892.500000px;}
.w0_c02113{width:892.830000px;}
.x0_c02113{left:0.000000px;}
.xe_c02113{left:117.000000px;}
.xf_c02113{left:161.280000px;}
.x9_c02113{left:440.999964px;}
.x5_c02113{left:445.680684px;}
.xc_c02113{left:451.080000px;}
.x8_c02113{left:455.399712px;}
.x6_c02113{left:461.880252px;}
.x1_c02113{left:463.320000px;}
.xb_c02113{left:483.480468px;}
.xa_c02113{left:492.119604px;}
.x7_c02113{left:493.200684px;}
.xd_c02113{left:506.880360px;}
.x4_c02113{left:511.920000px;}
.x2_c02113{left:526.679604px;}
.x3_c02113{left:569.520000px;}
@media print{
.v0_c02113{vertical-align:0.000000pt;}
.ls12_c02113{letter-spacing:-0.654720pt;}
.ls9_c02113{letter-spacing:-0.604032pt;}
.lsb_c02113{letter-spacing:-0.511104pt;}
.ls17_c02113{letter-spacing:-0.321024pt;}
.ls16_c02113{letter-spacing:-0.274560pt;}
.ls18_c02113{letter-spacing:-0.244992pt;}
.ls13_c02113{letter-spacing:-0.240768pt;}
.ls10_c02113{letter-spacing:-0.232320pt;}
.ls8_c02113{letter-spacing:-0.215424pt;}
.ls5_c02113{letter-spacing:-0.105600pt;}
.ls15_c02113{letter-spacing:0.000000pt;}
.ls2_c02113{letter-spacing:0.005376pt;}
.ls7_c02113{letter-spacing:0.114048pt;}
.lse_c02113{letter-spacing:0.215424pt;}
.lsd_c02113{letter-spacing:0.451968pt;}
.ls1_c02113{letter-spacing:0.456960pt;}
.ls11_c02113{letter-spacing:0.477312pt;}
.lsc_c02113{letter-spacing:0.515328pt;}
.ls14_c02113{letter-spacing:0.528000pt;}
.lsa_c02113{letter-spacing:0.532224pt;}
.ls3_c02113{letter-spacing:0.544896pt;}
.lsf_c02113{letter-spacing:0.587136pt;}
.ls6_c02113{letter-spacing:0.612480pt;}
.ls0_c02113{letter-spacing:0.637824pt;}
.ls4_c02113{letter-spacing:0.642048pt;}
.wsd_c02113{word-spacing:-13.896960pt;}
.wse_c02113{word-spacing:-13.445376pt;}
.ws1_c02113{word-spacing:-11.172480pt;}
.wsc_c02113{word-spacing:-11.088000pt;}
.ws7_c02113{word-spacing:-11.075328pt;}
.ws12_c02113{word-spacing:-11.037312pt;}
.ws11_c02113{word-spacing:-11.011968pt;}
.ws0_c02113{word-spacing:-10.454400pt;}
.ws5_c02113{word-spacing:-10.344576pt;}
.ws10_c02113{word-spacing:-10.048896pt;}
.ws3_c02113{word-spacing:-9.955968pt;}
.ws1b_c02113{word-spacing:-3.198720pt;}
.ws1c_c02113{word-spacing:-0.963072pt;}
.ws16_c02113{word-spacing:-0.958848pt;}
.ws17_c02113{word-spacing:-0.908160pt;}
.ws13_c02113{word-spacing:-0.865920pt;}
.ws15_c02113{word-spacing:-0.105600pt;}
.ws18_c02113{word-spacing:-0.088704pt;}
.ws19_c02113{word-spacing:-0.080256pt;}
.ws1a_c02113{word-spacing:-0.076032pt;}
.ws1d_c02113{word-spacing:-0.046464pt;}
.ws14_c02113{word-spacing:0.000000pt;}
.wsb_c02113{word-spacing:5.892480pt;}
.wsa_c02113{word-spacing:30.966144pt;}
.ws9_c02113{word-spacing:32.127744pt;}
.ws2_c02113{word-spacing:33.563904pt;}
.wsf_c02113{word-spacing:33.796224pt;}
.ws4_c02113{word-spacing:34.860672pt;}
.ws6_c02113{word-spacing:35.468928pt;}
.ws8_c02113{word-spacing:37.357056pt;}
._0_c02113{margin-left:-1.731840pt;}
._2_c02113{width:1.317888pt;}
._4_c02113{width:5.094144pt;}
._6_c02113{width:17.761920pt;}
._7_c02113{width:20.845440pt;}
._5_c02113{width:21.947904pt;}
._1_c02113{width:44.668800pt;}
._3_c02113{width:45.805056pt;}
.fs0_c02113{font-size:42.240000pt;}
.fs1_c02113{font-size:53.760000pt;}
.y0_c02113{bottom:0.000000pt;}
.y4_c02113{bottom:16.320400pt;}
.y13_c02113{bottom:18.560400pt;}
.y1f_c02113{bottom:130.665211pt;}
.y21_c02113{bottom:165.866875pt;}
.y20_c02113{bottom:174.507067pt;}
.y1e_c02113{bottom:245.225371pt;}
.y1d_c02113{bottom:317.225563pt;}
.y1b_c02113{bottom:361.386427pt;}
.y17_c02113{bottom:377.386939pt;}
.y1c_c02113{bottom:407.786011pt;}
.y1a_c02113{bottom:437.226235pt;}
.y19_c02113{bottom:453.226747pt;}
.y16_c02113{bottom:482.666971pt;}
.y18_c02113{bottom:497.386555pt;}
.y15_c02113{bottom:513.387067pt;}
.y23_c02113{bottom:527.786667pt;}
.y24_c02113{bottom:530.347067pt;}
.y22_c02113{bottom:546.027067pt;}
.ye_c02113{bottom:579.945595pt;}
.yd_c02113{bottom:593.385307pt;}
.y10_c02113{bottom:628.586875pt;}
.yf_c02113{bottom:637.227067pt;}
.yc_c02113{bottom:707.945467pt;}
.yb_c02113{bottom:779.945659pt;}
.y9_c02113{bottom:823.786555pt;}
.y5_c02113{bottom:839.787067pt;}
.ya_c02113{bottom:870.506107pt;}
.y8_c02113{bottom:899.946331pt;}
.y7_c02113{bottom:915.946843pt;}
.y3_c02113{bottom:929.066667pt;}
.y2_c02113{bottom:945.386939pt;}
.y6_c02113{bottom:959.786683pt;}
.y1_c02113{bottom:975.787067pt;}
.y12_c02113{bottom:990.506667pt;}
.y14_c02113{bottom:993.067067pt;}
.y11_c02113{bottom:1008.747067pt;}
.h3_c02113{height:26.240000pt;}
.h2_c02113{height:28.916250pt;}
.h6_c02113{height:32.640000pt;}
.h5_c02113{height:36.802500pt;}
.h1_c02113{height:37.063125pt;}
.h4_c02113{height:37.166250pt;}
.h8_c02113{height:47.171250pt;}
.h7_c02113{height:47.302500pt;}
.h0_c02113{height:1122.666667pt;}
.w2_c02113{width:191.360000pt;}
.w3_c02113{width:351.360000pt;}
.w1_c02113{width:793.333333pt;}
.w0_c02113{width:793.626667pt;}
.x0_c02113{left:0.000000pt;}
.xe_c02113{left:104.000000pt;}
.xf_c02113{left:143.360000pt;}
.x9_c02113{left:391.999968pt;}
.x5_c02113{left:396.160608pt;}
.xc_c02113{left:400.960000pt;}
.x8_c02113{left:404.799744pt;}
.x6_c02113{left:410.560224pt;}
.x1_c02113{left:411.840000pt;}
.xb_c02113{left:429.760416pt;}
.xa_c02113{left:437.439648pt;}
.x7_c02113{left:438.400608pt;}
.xd_c02113{left:450.560320pt;}
.x4_c02113{left:455.040000pt;}
.x2_c02113{left:468.159648pt;}
.x3_c02113{left:506.240000pt;}
}





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

.ir_c02114:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02114{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02114;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02114{font-family:ff1_c02114;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02114;src:url('chunks/assets/font_35b84c775d6b8d93e1406701.woff2')format("woff");}.ff2_c02114{font-family:ff2_c02114;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02114;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02114{font-family:ff3_c02114;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02114{vertical-align:0.000000px;}
.ls12_c02114{letter-spacing:-0.736560px;}
.ls9_c02114{letter-spacing:-0.679536px;}
.lsb_c02114{letter-spacing:-0.574992px;}
.ls16_c02114{letter-spacing:-0.361152px;}
.ls17_c02114{letter-spacing:-0.275616px;}
.ls13_c02114{letter-spacing:-0.270864px;}
.ls10_c02114{letter-spacing:-0.261360px;}
.ls8_c02114{letter-spacing:-0.242352px;}
.ls5_c02114{letter-spacing:-0.118800px;}
.ls15_c02114{letter-spacing:0.000000px;}
.ls2_c02114{letter-spacing:0.006048px;}
.ls7_c02114{letter-spacing:0.128304px;}
.lse_c02114{letter-spacing:0.242352px;}
.lsd_c02114{letter-spacing:0.508464px;}
.ls1_c02114{letter-spacing:0.514080px;}
.ls11_c02114{letter-spacing:0.536976px;}
.lsc_c02114{letter-spacing:0.579744px;}
.ls14_c02114{letter-spacing:0.594000px;}
.lsa_c02114{letter-spacing:0.598752px;}
.ls3_c02114{letter-spacing:0.613008px;}
.lsf_c02114{letter-spacing:0.660528px;}
.ls6_c02114{letter-spacing:0.689040px;}
.ls0_c02114{letter-spacing:0.717552px;}
.ls4_c02114{letter-spacing:0.722304px;}
.sc__c02114{text-shadow:none;}
.sc0_c02114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02114{-webkit-text-stroke:0px transparent;}
.sc0_c02114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02114{word-spacing:-15.634080px;}
.wse_c02114{word-spacing:-15.126048px;}
.ws1_c02114{word-spacing:-12.569040px;}
.wsc_c02114{word-spacing:-12.474000px;}
.ws7_c02114{word-spacing:-12.459744px;}
.ws12_c02114{word-spacing:-12.416976px;}
.ws11_c02114{word-spacing:-12.388464px;}
.ws0_c02114{word-spacing:-11.761200px;}
.ws5_c02114{word-spacing:-11.637648px;}
.ws10_c02114{word-spacing:-11.305008px;}
.ws3_c02114{word-spacing:-11.200464px;}
.ws1b_c02114{word-spacing:-3.598560px;}
.ws16_c02114{word-spacing:-1.078704px;}
.ws17_c02114{word-spacing:-1.021680px;}
.ws13_c02114{word-spacing:-0.974160px;}
.ws15_c02114{word-spacing:-0.118800px;}
.ws18_c02114{word-spacing:-0.099792px;}
.ws19_c02114{word-spacing:-0.090288px;}
.ws1a_c02114{word-spacing:-0.085536px;}
.ws14_c02114{word-spacing:0.000000px;}
.wsb_c02114{word-spacing:6.629040px;}
.wsa_c02114{word-spacing:34.836912px;}
.ws9_c02114{word-spacing:36.143712px;}
.ws2_c02114{word-spacing:37.759392px;}
.wsf_c02114{word-spacing:38.020752px;}
.ws4_c02114{word-spacing:39.218256px;}
.ws6_c02114{word-spacing:39.902544px;}
.ws8_c02114{word-spacing:42.026688px;}
._0_c02114{margin-left:-1.948320px;}
._2_c02114{width:1.482624px;}
._4_c02114{width:5.730912px;}
._6_c02114{width:19.982160px;}
._7_c02114{width:23.451120px;}
._5_c02114{width:24.691392px;}
._1_c02114{width:50.252400px;}
._3_c02114{width:51.530688px;}
.fc0_c02114{color:rgb(0,0,0);}
.fs0_c02114{font-size:47.520000px;}
.fs1_c02114{font-size:60.480000px;}
.y0_c02114{bottom:0.000000px;}
.y4_c02114{bottom:18.360450px;}
.y13_c02114{bottom:20.880450px;}
.y1f_c02114{bottom:146.998362px;}
.y21_c02114{bottom:186.600234px;}
.y20_c02114{bottom:196.320450px;}
.y1e_c02114{bottom:275.878542px;}
.y1d_c02114{bottom:356.878758px;}
.y1b_c02114{bottom:406.559730px;}
.y17_c02114{bottom:424.560306px;}
.y1c_c02114{bottom:458.759262px;}
.y1a_c02114{bottom:491.879514px;}
.y19_c02114{bottom:509.880090px;}
.y16_c02114{bottom:543.000342px;}
.y18_c02114{bottom:559.559874px;}
.y15_c02114{bottom:577.560450px;}
.y23_c02114{bottom:593.760000px;}
.y24_c02114{bottom:596.640450px;}
.y22_c02114{bottom:614.280450px;}
.ye_c02114{bottom:652.438794px;}
.yd_c02114{bottom:667.558470px;}
.y10_c02114{bottom:707.160234px;}
.yf_c02114{bottom:716.880450px;}
.yc_c02114{bottom:796.438650px;}
.yb_c02114{bottom:877.438866px;}
.y9_c02114{bottom:926.759874px;}
.y5_c02114{bottom:944.760450px;}
.ya_c02114{bottom:979.319370px;}
.y8_c02114{bottom:1012.439622px;}
.y7_c02114{bottom:1030.440198px;}
.y3_c02114{bottom:1045.200000px;}
.y2_c02114{bottom:1063.560306px;}
.y6_c02114{bottom:1079.760018px;}
.y1_c02114{bottom:1097.760450px;}
.y12_c02114{bottom:1114.320000px;}
.y14_c02114{bottom:1117.200450px;}
.y11_c02114{bottom:1134.840450px;}
.h3_c02114{height:29.520000px;}
.h2_c02114{height:32.530781px;}
.h6_c02114{height:36.720000px;}
.h5_c02114{height:41.402813px;}
.h1_c02114{height:41.696016px;}
.h4_c02114{height:41.812031px;}
.h8_c02114{height:53.067656px;}
.h7_c02114{height:53.215313px;}
.h0_c02114{height:1263.000000px;}
.w2_c02114{width:215.280000px;}
.w3_c02114{width:395.280000px;}
.w1_c02114{width:892.500000px;}
.w0_c02114{width:892.830000px;}
.x0_c02114{left:0.000000px;}
.xe_c02114{left:117.000000px;}
.xf_c02114{left:161.280000px;}
.x9_c02114{left:440.999964px;}
.x5_c02114{left:445.680684px;}
.xc_c02114{left:451.080000px;}
.x8_c02114{left:455.399712px;}
.x6_c02114{left:461.880252px;}
.x1_c02114{left:463.320000px;}
.xb_c02114{left:483.480468px;}
.xa_c02114{left:492.119604px;}
.x7_c02114{left:493.200684px;}
.xd_c02114{left:506.880360px;}
.x4_c02114{left:511.920000px;}
.x2_c02114{left:526.679604px;}
.x3_c02114{left:569.520000px;}
@media print{
.v0_c02114{vertical-align:0.000000pt;}
.ls12_c02114{letter-spacing:-0.654720pt;}
.ls9_c02114{letter-spacing:-0.604032pt;}
.lsb_c02114{letter-spacing:-0.511104pt;}
.ls16_c02114{letter-spacing:-0.321024pt;}
.ls17_c02114{letter-spacing:-0.244992pt;}
.ls13_c02114{letter-spacing:-0.240768pt;}
.ls10_c02114{letter-spacing:-0.232320pt;}
.ls8_c02114{letter-spacing:-0.215424pt;}
.ls5_c02114{letter-spacing:-0.105600pt;}
.ls15_c02114{letter-spacing:0.000000pt;}
.ls2_c02114{letter-spacing:0.005376pt;}
.ls7_c02114{letter-spacing:0.114048pt;}
.lse_c02114{letter-spacing:0.215424pt;}
.lsd_c02114{letter-spacing:0.451968pt;}
.ls1_c02114{letter-spacing:0.456960pt;}
.ls11_c02114{letter-spacing:0.477312pt;}
.lsc_c02114{letter-spacing:0.515328pt;}
.ls14_c02114{letter-spacing:0.528000pt;}
.lsa_c02114{letter-spacing:0.532224pt;}
.ls3_c02114{letter-spacing:0.544896pt;}
.lsf_c02114{letter-spacing:0.587136pt;}
.ls6_c02114{letter-spacing:0.612480pt;}
.ls0_c02114{letter-spacing:0.637824pt;}
.ls4_c02114{letter-spacing:0.642048pt;}
.wsd_c02114{word-spacing:-13.896960pt;}
.wse_c02114{word-spacing:-13.445376pt;}
.ws1_c02114{word-spacing:-11.172480pt;}
.wsc_c02114{word-spacing:-11.088000pt;}
.ws7_c02114{word-spacing:-11.075328pt;}
.ws12_c02114{word-spacing:-11.037312pt;}
.ws11_c02114{word-spacing:-11.011968pt;}
.ws0_c02114{word-spacing:-10.454400pt;}
.ws5_c02114{word-spacing:-10.344576pt;}
.ws10_c02114{word-spacing:-10.048896pt;}
.ws3_c02114{word-spacing:-9.955968pt;}
.ws1b_c02114{word-spacing:-3.198720pt;}
.ws16_c02114{word-spacing:-0.958848pt;}
.ws17_c02114{word-spacing:-0.908160pt;}
.ws13_c02114{word-spacing:-0.865920pt;}
.ws15_c02114{word-spacing:-0.105600pt;}
.ws18_c02114{word-spacing:-0.088704pt;}
.ws19_c02114{word-spacing:-0.080256pt;}
.ws1a_c02114{word-spacing:-0.076032pt;}
.ws14_c02114{word-spacing:0.000000pt;}
.wsb_c02114{word-spacing:5.892480pt;}
.wsa_c02114{word-spacing:30.966144pt;}
.ws9_c02114{word-spacing:32.127744pt;}
.ws2_c02114{word-spacing:33.563904pt;}
.wsf_c02114{word-spacing:33.796224pt;}
.ws4_c02114{word-spacing:34.860672pt;}
.ws6_c02114{word-spacing:35.468928pt;}
.ws8_c02114{word-spacing:37.357056pt;}
._0_c02114{margin-left:-1.731840pt;}
._2_c02114{width:1.317888pt;}
._4_c02114{width:5.094144pt;}
._6_c02114{width:17.761920pt;}
._7_c02114{width:20.845440pt;}
._5_c02114{width:21.947904pt;}
._1_c02114{width:44.668800pt;}
._3_c02114{width:45.805056pt;}
.fs0_c02114{font-size:42.240000pt;}
.fs1_c02114{font-size:53.760000pt;}
.y0_c02114{bottom:0.000000pt;}
.y4_c02114{bottom:16.320400pt;}
.y13_c02114{bottom:18.560400pt;}
.y1f_c02114{bottom:130.665211pt;}
.y21_c02114{bottom:165.866875pt;}
.y20_c02114{bottom:174.507067pt;}
.y1e_c02114{bottom:245.225371pt;}
.y1d_c02114{bottom:317.225563pt;}
.y1b_c02114{bottom:361.386427pt;}
.y17_c02114{bottom:377.386939pt;}
.y1c_c02114{bottom:407.786011pt;}
.y1a_c02114{bottom:437.226235pt;}
.y19_c02114{bottom:453.226747pt;}
.y16_c02114{bottom:482.666971pt;}
.y18_c02114{bottom:497.386555pt;}
.y15_c02114{bottom:513.387067pt;}
.y23_c02114{bottom:527.786667pt;}
.y24_c02114{bottom:530.347067pt;}
.y22_c02114{bottom:546.027067pt;}
.ye_c02114{bottom:579.945595pt;}
.yd_c02114{bottom:593.385307pt;}
.y10_c02114{bottom:628.586875pt;}
.yf_c02114{bottom:637.227067pt;}
.yc_c02114{bottom:707.945467pt;}
.yb_c02114{bottom:779.945659pt;}
.y9_c02114{bottom:823.786555pt;}
.y5_c02114{bottom:839.787067pt;}
.ya_c02114{bottom:870.506107pt;}
.y8_c02114{bottom:899.946331pt;}
.y7_c02114{bottom:915.946843pt;}
.y3_c02114{bottom:929.066667pt;}
.y2_c02114{bottom:945.386939pt;}
.y6_c02114{bottom:959.786683pt;}
.y1_c02114{bottom:975.787067pt;}
.y12_c02114{bottom:990.506667pt;}
.y14_c02114{bottom:993.067067pt;}
.y11_c02114{bottom:1008.747067pt;}
.h3_c02114{height:26.240000pt;}
.h2_c02114{height:28.916250pt;}
.h6_c02114{height:32.640000pt;}
.h5_c02114{height:36.802500pt;}
.h1_c02114{height:37.063125pt;}
.h4_c02114{height:37.166250pt;}
.h8_c02114{height:47.171250pt;}
.h7_c02114{height:47.302500pt;}
.h0_c02114{height:1122.666667pt;}
.w2_c02114{width:191.360000pt;}
.w3_c02114{width:351.360000pt;}
.w1_c02114{width:793.333333pt;}
.w0_c02114{width:793.626667pt;}
.x0_c02114{left:0.000000pt;}
.xe_c02114{left:104.000000pt;}
.xf_c02114{left:143.360000pt;}
.x9_c02114{left:391.999968pt;}
.x5_c02114{left:396.160608pt;}
.xc_c02114{left:400.960000pt;}
.x8_c02114{left:404.799744pt;}
.x6_c02114{left:410.560224pt;}
.x1_c02114{left:411.840000pt;}
.xb_c02114{left:429.760416pt;}
.xa_c02114{left:437.439648pt;}
.x7_c02114{left:438.400608pt;}
.xd_c02114{left:450.560320pt;}
.x4_c02114{left:455.040000pt;}
.x2_c02114{left:468.159648pt;}
.x3_c02114{left:506.240000pt;}
}





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

.ir_c02115:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02115{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02115;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02115{font-family:ff1_c02115;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02115;src:url('chunks/assets/font_2dfd77de80caaa40491f4595.woff2')format("woff");}.ff2_c02115{font-family:ff2_c02115;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02115;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02115{font-family:ff3_c02115;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02115{vertical-align:0.000000px;}
.ls9_c02115{letter-spacing:-0.679536px;}
.lsb_c02115{letter-spacing:-0.574992px;}
.ls12_c02115{letter-spacing:-0.275616px;}
.ls10_c02115{letter-spacing:-0.261360px;}
.ls8_c02115{letter-spacing:-0.242352px;}
.ls6_c02115{letter-spacing:-0.118800px;}
.ls14_c02115{letter-spacing:0.000000px;}
.ls3_c02115{letter-spacing:0.006048px;}
.ls7_c02115{letter-spacing:0.128304px;}
.lse_c02115{letter-spacing:0.242352px;}
.lsd_c02115{letter-spacing:0.508464px;}
.ls2_c02115{letter-spacing:0.514080px;}
.ls11_c02115{letter-spacing:0.536976px;}
.lsc_c02115{letter-spacing:0.579744px;}
.ls13_c02115{letter-spacing:0.594000px;}
.lsa_c02115{letter-spacing:0.598752px;}
.ls4_c02115{letter-spacing:0.613008px;}
.ls0_c02115{letter-spacing:0.651024px;}
.lsf_c02115{letter-spacing:0.660528px;}
.ls1_c02115{letter-spacing:0.717552px;}
.ls5_c02115{letter-spacing:0.722304px;}
.sc__c02115{text-shadow:none;}
.sc0_c02115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02115{-webkit-text-stroke:0px transparent;}
.sc0_c02115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02115{word-spacing:-15.634080px;}
.wsc_c02115{word-spacing:-15.126048px;}
.wsa_c02115{word-spacing:-12.474000px;}
.ws9_c02115{word-spacing:-12.416976px;}
.ws4_c02115{word-spacing:-11.637648px;}
.ws2_c02115{word-spacing:-11.200464px;}
.ws15_c02115{word-spacing:-3.598560px;}
.ws11_c02115{word-spacing:-1.078704px;}
.ws12_c02115{word-spacing:-1.021680px;}
.wsf_c02115{word-spacing:-1.012176px;}
.wsd_c02115{word-spacing:-0.974160px;}
.ws10_c02115{word-spacing:-0.118800px;}
.ws13_c02115{word-spacing:-0.099792px;}
.ws14_c02115{word-spacing:-0.085536px;}
.wse_c02115{word-spacing:0.000000px;}
.ws8_c02115{word-spacing:36.143712px;}
.ws6_c02115{word-spacing:36.742464px;}
.ws1_c02115{word-spacing:37.759392px;}
.ws0_c02115{word-spacing:38.020752px;}
.ws3_c02115{word-spacing:39.218256px;}
.ws5_c02115{word-spacing:39.902544px;}
.ws7_c02115{word-spacing:42.026688px;}
._0_c02115{margin-left:-1.948320px;}
._2_c02115{width:1.482624px;}
._4_c02115{width:5.730912px;}
._1_c02115{width:50.252400px;}
._3_c02115{width:51.530688px;}
.fc0_c02115{color:rgb(0,0,0);}
.fs0_c02115{font-size:47.520000px;}
.fs1_c02115{font-size:60.480000px;}
.y0_c02115{bottom:0.000000px;}
.y10_c02115{bottom:20.880450px;}
.y1c_c02115{bottom:146.998362px;}
.y1e_c02115{bottom:186.600234px;}
.y1d_c02115{bottom:196.320450px;}
.y1b_c02115{bottom:275.878542px;}
.y1a_c02115{bottom:356.878758px;}
.y18_c02115{bottom:406.559730px;}
.y14_c02115{bottom:424.560306px;}
.y19_c02115{bottom:458.759262px;}
.y17_c02115{bottom:491.879514px;}
.y16_c02115{bottom:509.880090px;}
.y13_c02115{bottom:543.000342px;}
.y15_c02115{bottom:559.559874px;}
.y12_c02115{bottom:577.560450px;}
.y20_c02115{bottom:593.760000px;}
.y21_c02115{bottom:596.640450px;}
.y1f_c02115{bottom:614.280450px;}
.yb_c02115{bottom:667.558326px;}
.yd_c02115{bottom:707.160234px;}
.yc_c02115{bottom:716.880450px;}
.ya_c02115{bottom:796.438506px;}
.y9_c02115{bottom:877.438722px;}
.y7_c02115{bottom:926.759730px;}
.y3_c02115{bottom:944.760306px;}
.y8_c02115{bottom:979.319226px;}
.y6_c02115{bottom:1012.439478px;}
.y5_c02115{bottom:1030.440054px;}
.y2_c02115{bottom:1063.560306px;}
.y4_c02115{bottom:1079.759874px;}
.y1_c02115{bottom:1097.760450px;}
.yf_c02115{bottom:1114.320000px;}
.y11_c02115{bottom:1117.200450px;}
.ye_c02115{bottom:1134.840450px;}
.h3_c02115{height:32.530781px;}
.h5_c02115{height:36.720000px;}
.h4_c02115{height:41.402813px;}
.h1_c02115{height:41.696016px;}
.h2_c02115{height:41.812031px;}
.h7_c02115{height:53.067656px;}
.h6_c02115{height:53.215313px;}
.h0_c02115{height:1263.000000px;}
.w2_c02115{width:395.280000px;}
.w1_c02115{width:892.500000px;}
.w0_c02115{width:892.830000px;}
.x0_c02115{left:0.000000px;}
.xd_c02115{left:117.000000px;}
.xe_c02115{left:161.280000px;}
.x8_c02115{left:440.999856px;}
.x4_c02115{left:445.680576px;}
.xb_c02115{left:451.080000px;}
.x7_c02115{left:455.399604px;}
.x5_c02115{left:461.880144px;}
.x1_c02115{left:463.320000px;}
.xa_c02115{left:483.480360px;}
.x9_c02115{left:492.119496px;}
.x6_c02115{left:493.200576px;}
.xc_c02115{left:506.880360px;}
.x3_c02115{left:511.919892px;}
.x2_c02115{left:526.679604px;}
@media print{
.v0_c02115{vertical-align:0.000000pt;}
.ls9_c02115{letter-spacing:-0.604032pt;}
.lsb_c02115{letter-spacing:-0.511104pt;}
.ls12_c02115{letter-spacing:-0.244992pt;}
.ls10_c02115{letter-spacing:-0.232320pt;}
.ls8_c02115{letter-spacing:-0.215424pt;}
.ls6_c02115{letter-spacing:-0.105600pt;}
.ls14_c02115{letter-spacing:0.000000pt;}
.ls3_c02115{letter-spacing:0.005376pt;}
.ls7_c02115{letter-spacing:0.114048pt;}
.lse_c02115{letter-spacing:0.215424pt;}
.lsd_c02115{letter-spacing:0.451968pt;}
.ls2_c02115{letter-spacing:0.456960pt;}
.ls11_c02115{letter-spacing:0.477312pt;}
.lsc_c02115{letter-spacing:0.515328pt;}
.ls13_c02115{letter-spacing:0.528000pt;}
.lsa_c02115{letter-spacing:0.532224pt;}
.ls4_c02115{letter-spacing:0.544896pt;}
.ls0_c02115{letter-spacing:0.578688pt;}
.lsf_c02115{letter-spacing:0.587136pt;}
.ls1_c02115{letter-spacing:0.637824pt;}
.ls5_c02115{letter-spacing:0.642048pt;}
.wsb_c02115{word-spacing:-13.896960pt;}
.wsc_c02115{word-spacing:-13.445376pt;}
.wsa_c02115{word-spacing:-11.088000pt;}
.ws9_c02115{word-spacing:-11.037312pt;}
.ws4_c02115{word-spacing:-10.344576pt;}
.ws2_c02115{word-spacing:-9.955968pt;}
.ws15_c02115{word-spacing:-3.198720pt;}
.ws11_c02115{word-spacing:-0.958848pt;}
.ws12_c02115{word-spacing:-0.908160pt;}
.wsf_c02115{word-spacing:-0.899712pt;}
.wsd_c02115{word-spacing:-0.865920pt;}
.ws10_c02115{word-spacing:-0.105600pt;}
.ws13_c02115{word-spacing:-0.088704pt;}
.ws14_c02115{word-spacing:-0.076032pt;}
.wse_c02115{word-spacing:0.000000pt;}
.ws8_c02115{word-spacing:32.127744pt;}
.ws6_c02115{word-spacing:32.659968pt;}
.ws1_c02115{word-spacing:33.563904pt;}
.ws0_c02115{word-spacing:33.796224pt;}
.ws3_c02115{word-spacing:34.860672pt;}
.ws5_c02115{word-spacing:35.468928pt;}
.ws7_c02115{word-spacing:37.357056pt;}
._0_c02115{margin-left:-1.731840pt;}
._2_c02115{width:1.317888pt;}
._4_c02115{width:5.094144pt;}
._1_c02115{width:44.668800pt;}
._3_c02115{width:45.805056pt;}
.fs0_c02115{font-size:42.240000pt;}
.fs1_c02115{font-size:53.760000pt;}
.y0_c02115{bottom:0.000000pt;}
.y10_c02115{bottom:18.560400pt;}
.y1c_c02115{bottom:130.665211pt;}
.y1e_c02115{bottom:165.866875pt;}
.y1d_c02115{bottom:174.507067pt;}
.y1b_c02115{bottom:245.225371pt;}
.y1a_c02115{bottom:317.225563pt;}
.y18_c02115{bottom:361.386427pt;}
.y14_c02115{bottom:377.386939pt;}
.y19_c02115{bottom:407.786011pt;}
.y17_c02115{bottom:437.226235pt;}
.y16_c02115{bottom:453.226747pt;}
.y13_c02115{bottom:482.666971pt;}
.y15_c02115{bottom:497.386555pt;}
.y12_c02115{bottom:513.387067pt;}
.y20_c02115{bottom:527.786667pt;}
.y21_c02115{bottom:530.347067pt;}
.y1f_c02115{bottom:546.027067pt;}
.yb_c02115{bottom:593.385179pt;}
.yd_c02115{bottom:628.586875pt;}
.yc_c02115{bottom:637.227067pt;}
.ya_c02115{bottom:707.945339pt;}
.y9_c02115{bottom:779.945531pt;}
.y7_c02115{bottom:823.786427pt;}
.y3_c02115{bottom:839.786939pt;}
.y8_c02115{bottom:870.505979pt;}
.y6_c02115{bottom:899.946203pt;}
.y5_c02115{bottom:915.946715pt;}
.y2_c02115{bottom:945.386939pt;}
.y4_c02115{bottom:959.786555pt;}
.y1_c02115{bottom:975.787067pt;}
.yf_c02115{bottom:990.506667pt;}
.y11_c02115{bottom:993.067067pt;}
.ye_c02115{bottom:1008.747067pt;}
.h3_c02115{height:28.916250pt;}
.h5_c02115{height:32.640000pt;}
.h4_c02115{height:36.802500pt;}
.h1_c02115{height:37.063125pt;}
.h2_c02115{height:37.166250pt;}
.h7_c02115{height:47.171250pt;}
.h6_c02115{height:47.302500pt;}
.h0_c02115{height:1122.666667pt;}
.w2_c02115{width:351.360000pt;}
.w1_c02115{width:793.333333pt;}
.w0_c02115{width:793.626667pt;}
.x0_c02115{left:0.000000pt;}
.xd_c02115{left:104.000000pt;}
.xe_c02115{left:143.360000pt;}
.x8_c02115{left:391.999872pt;}
.x4_c02115{left:396.160512pt;}
.xb_c02115{left:400.960000pt;}
.x7_c02115{left:404.799648pt;}
.x5_c02115{left:410.560128pt;}
.x1_c02115{left:411.840000pt;}
.xa_c02115{left:429.760320pt;}
.x9_c02115{left:437.439552pt;}
.x6_c02115{left:438.400512pt;}
.xc_c02115{left:450.560320pt;}
.x3_c02115{left:455.039904pt;}
.x2_c02115{left:468.159648pt;}
}





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

.ir_c02116:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02116{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02116;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02116{font-family:ff1_c02116;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02116;src:url('chunks/assets/font_316f6bd74b4e1baf2ff9de9c.woff2')format("woff");}.ff2_c02116{font-family:ff2_c02116;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02116;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02116{font-family:ff3_c02116;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02116{vertical-align:0.000000px;}
.ls9_c02116{letter-spacing:-0.679536px;}
.lsb_c02116{letter-spacing:-0.574992px;}
.ls12_c02116{letter-spacing:-0.275616px;}
.ls10_c02116{letter-spacing:-0.261360px;}
.ls8_c02116{letter-spacing:-0.242352px;}
.ls6_c02116{letter-spacing:-0.118800px;}
.ls14_c02116{letter-spacing:0.000000px;}
.ls3_c02116{letter-spacing:0.006048px;}
.ls7_c02116{letter-spacing:0.128304px;}
.lse_c02116{letter-spacing:0.242352px;}
.lsd_c02116{letter-spacing:0.508464px;}
.ls2_c02116{letter-spacing:0.514080px;}
.ls11_c02116{letter-spacing:0.536976px;}
.lsc_c02116{letter-spacing:0.579744px;}
.ls13_c02116{letter-spacing:0.594000px;}
.lsa_c02116{letter-spacing:0.598752px;}
.ls4_c02116{letter-spacing:0.613008px;}
.ls0_c02116{letter-spacing:0.651024px;}
.lsf_c02116{letter-spacing:0.660528px;}
.ls1_c02116{letter-spacing:0.717552px;}
.ls5_c02116{letter-spacing:0.722304px;}
.sc__c02116{text-shadow:none;}
.sc0_c02116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02116{-webkit-text-stroke:0px transparent;}
.sc0_c02116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02116{word-spacing:-15.634080px;}
.wsc_c02116{word-spacing:-15.126048px;}
.wsa_c02116{word-spacing:-12.474000px;}
.ws9_c02116{word-spacing:-12.416976px;}
.ws4_c02116{word-spacing:-11.637648px;}
.ws2_c02116{word-spacing:-11.200464px;}
.ws15_c02116{word-spacing:-3.598560px;}
.ws11_c02116{word-spacing:-1.078704px;}
.ws12_c02116{word-spacing:-1.021680px;}
.wsf_c02116{word-spacing:-1.012176px;}
.wsd_c02116{word-spacing:-0.974160px;}
.ws10_c02116{word-spacing:-0.118800px;}
.ws13_c02116{word-spacing:-0.099792px;}
.ws14_c02116{word-spacing:-0.085536px;}
.wse_c02116{word-spacing:0.000000px;}
.ws8_c02116{word-spacing:36.143712px;}
.ws6_c02116{word-spacing:36.742464px;}
.ws1_c02116{word-spacing:37.759392px;}
.ws0_c02116{word-spacing:38.020752px;}
.ws3_c02116{word-spacing:39.218256px;}
.ws5_c02116{word-spacing:39.902544px;}
.ws7_c02116{word-spacing:42.026688px;}
._0_c02116{margin-left:-1.948320px;}
._2_c02116{width:1.482624px;}
._4_c02116{width:5.730912px;}
._1_c02116{width:50.252400px;}
._3_c02116{width:51.530688px;}
.fc0_c02116{color:rgb(0,0,0);}
.fs0_c02116{font-size:47.520000px;}
.fs1_c02116{font-size:60.480000px;}
.y0_c02116{bottom:0.000000px;}
.y10_c02116{bottom:20.880450px;}
.y1c_c02116{bottom:146.998362px;}
.y1e_c02116{bottom:186.600234px;}
.y1d_c02116{bottom:196.320450px;}
.y1b_c02116{bottom:275.878542px;}
.y1a_c02116{bottom:356.878758px;}
.y18_c02116{bottom:406.559730px;}
.y14_c02116{bottom:424.560306px;}
.y19_c02116{bottom:458.759262px;}
.y17_c02116{bottom:491.879514px;}
.y16_c02116{bottom:509.880090px;}
.y13_c02116{bottom:543.000342px;}
.y15_c02116{bottom:559.559874px;}
.y12_c02116{bottom:577.560450px;}
.y20_c02116{bottom:593.760000px;}
.y21_c02116{bottom:596.640450px;}
.y1f_c02116{bottom:614.280450px;}
.yb_c02116{bottom:667.558326px;}
.yd_c02116{bottom:707.160234px;}
.yc_c02116{bottom:716.880450px;}
.ya_c02116{bottom:796.438506px;}
.y9_c02116{bottom:877.438722px;}
.y7_c02116{bottom:926.759730px;}
.y3_c02116{bottom:944.760306px;}
.y8_c02116{bottom:979.319226px;}
.y6_c02116{bottom:1012.439478px;}
.y5_c02116{bottom:1030.440054px;}
.y2_c02116{bottom:1063.560306px;}
.y4_c02116{bottom:1079.759874px;}
.y1_c02116{bottom:1097.760450px;}
.yf_c02116{bottom:1114.320000px;}
.y11_c02116{bottom:1117.200450px;}
.ye_c02116{bottom:1134.840450px;}
.h3_c02116{height:32.530781px;}
.h5_c02116{height:36.720000px;}
.h4_c02116{height:41.402813px;}
.h1_c02116{height:41.696016px;}
.h2_c02116{height:41.812031px;}
.h7_c02116{height:53.067656px;}
.h6_c02116{height:53.215313px;}
.h0_c02116{height:1263.000000px;}
.w2_c02116{width:395.280000px;}
.w1_c02116{width:892.500000px;}
.w0_c02116{width:892.830000px;}
.x0_c02116{left:0.000000px;}
.xd_c02116{left:117.000000px;}
.xe_c02116{left:161.280000px;}
.x8_c02116{left:440.999856px;}
.x4_c02116{left:445.680576px;}
.xb_c02116{left:451.080000px;}
.x7_c02116{left:455.399604px;}
.x5_c02116{left:461.880144px;}
.x1_c02116{left:463.320000px;}
.xa_c02116{left:483.480360px;}
.x9_c02116{left:492.119496px;}
.x6_c02116{left:493.200576px;}
.xc_c02116{left:506.880360px;}
.x3_c02116{left:511.919892px;}
.x2_c02116{left:526.679604px;}
@media print{
.v0_c02116{vertical-align:0.000000pt;}
.ls9_c02116{letter-spacing:-0.604032pt;}
.lsb_c02116{letter-spacing:-0.511104pt;}
.ls12_c02116{letter-spacing:-0.244992pt;}
.ls10_c02116{letter-spacing:-0.232320pt;}
.ls8_c02116{letter-spacing:-0.215424pt;}
.ls6_c02116{letter-spacing:-0.105600pt;}
.ls14_c02116{letter-spacing:0.000000pt;}
.ls3_c02116{letter-spacing:0.005376pt;}
.ls7_c02116{letter-spacing:0.114048pt;}
.lse_c02116{letter-spacing:0.215424pt;}
.lsd_c02116{letter-spacing:0.451968pt;}
.ls2_c02116{letter-spacing:0.456960pt;}
.ls11_c02116{letter-spacing:0.477312pt;}
.lsc_c02116{letter-spacing:0.515328pt;}
.ls13_c02116{letter-spacing:0.528000pt;}
.lsa_c02116{letter-spacing:0.532224pt;}
.ls4_c02116{letter-spacing:0.544896pt;}
.ls0_c02116{letter-spacing:0.578688pt;}
.lsf_c02116{letter-spacing:0.587136pt;}
.ls1_c02116{letter-spacing:0.637824pt;}
.ls5_c02116{letter-spacing:0.642048pt;}
.wsb_c02116{word-spacing:-13.896960pt;}
.wsc_c02116{word-spacing:-13.445376pt;}
.wsa_c02116{word-spacing:-11.088000pt;}
.ws9_c02116{word-spacing:-11.037312pt;}
.ws4_c02116{word-spacing:-10.344576pt;}
.ws2_c02116{word-spacing:-9.955968pt;}
.ws15_c02116{word-spacing:-3.198720pt;}
.ws11_c02116{word-spacing:-0.958848pt;}
.ws12_c02116{word-spacing:-0.908160pt;}
.wsf_c02116{word-spacing:-0.899712pt;}
.wsd_c02116{word-spacing:-0.865920pt;}
.ws10_c02116{word-spacing:-0.105600pt;}
.ws13_c02116{word-spacing:-0.088704pt;}
.ws14_c02116{word-spacing:-0.076032pt;}
.wse_c02116{word-spacing:0.000000pt;}
.ws8_c02116{word-spacing:32.127744pt;}
.ws6_c02116{word-spacing:32.659968pt;}
.ws1_c02116{word-spacing:33.563904pt;}
.ws0_c02116{word-spacing:33.796224pt;}
.ws3_c02116{word-spacing:34.860672pt;}
.ws5_c02116{word-spacing:35.468928pt;}
.ws7_c02116{word-spacing:37.357056pt;}
._0_c02116{margin-left:-1.731840pt;}
._2_c02116{width:1.317888pt;}
._4_c02116{width:5.094144pt;}
._1_c02116{width:44.668800pt;}
._3_c02116{width:45.805056pt;}
.fs0_c02116{font-size:42.240000pt;}
.fs1_c02116{font-size:53.760000pt;}
.y0_c02116{bottom:0.000000pt;}
.y10_c02116{bottom:18.560400pt;}
.y1c_c02116{bottom:130.665211pt;}
.y1e_c02116{bottom:165.866875pt;}
.y1d_c02116{bottom:174.507067pt;}
.y1b_c02116{bottom:245.225371pt;}
.y1a_c02116{bottom:317.225563pt;}
.y18_c02116{bottom:361.386427pt;}
.y14_c02116{bottom:377.386939pt;}
.y19_c02116{bottom:407.786011pt;}
.y17_c02116{bottom:437.226235pt;}
.y16_c02116{bottom:453.226747pt;}
.y13_c02116{bottom:482.666971pt;}
.y15_c02116{bottom:497.386555pt;}
.y12_c02116{bottom:513.387067pt;}
.y20_c02116{bottom:527.786667pt;}
.y21_c02116{bottom:530.347067pt;}
.y1f_c02116{bottom:546.027067pt;}
.yb_c02116{bottom:593.385179pt;}
.yd_c02116{bottom:628.586875pt;}
.yc_c02116{bottom:637.227067pt;}
.ya_c02116{bottom:707.945339pt;}
.y9_c02116{bottom:779.945531pt;}
.y7_c02116{bottom:823.786427pt;}
.y3_c02116{bottom:839.786939pt;}
.y8_c02116{bottom:870.505979pt;}
.y6_c02116{bottom:899.946203pt;}
.y5_c02116{bottom:915.946715pt;}
.y2_c02116{bottom:945.386939pt;}
.y4_c02116{bottom:959.786555pt;}
.y1_c02116{bottom:975.787067pt;}
.yf_c02116{bottom:990.506667pt;}
.y11_c02116{bottom:993.067067pt;}
.ye_c02116{bottom:1008.747067pt;}
.h3_c02116{height:28.916250pt;}
.h5_c02116{height:32.640000pt;}
.h4_c02116{height:36.802500pt;}
.h1_c02116{height:37.063125pt;}
.h2_c02116{height:37.166250pt;}
.h7_c02116{height:47.171250pt;}
.h6_c02116{height:47.302500pt;}
.h0_c02116{height:1122.666667pt;}
.w2_c02116{width:351.360000pt;}
.w1_c02116{width:793.333333pt;}
.w0_c02116{width:793.626667pt;}
.x0_c02116{left:0.000000pt;}
.xd_c02116{left:104.000000pt;}
.xe_c02116{left:143.360000pt;}
.x8_c02116{left:391.999872pt;}
.x4_c02116{left:396.160512pt;}
.xb_c02116{left:400.960000pt;}
.x7_c02116{left:404.799648pt;}
.x5_c02116{left:410.560128pt;}
.x1_c02116{left:411.840000pt;}
.xa_c02116{left:429.760320pt;}
.x9_c02116{left:437.439552pt;}
.x6_c02116{left:438.400512pt;}
.xc_c02116{left:450.560320pt;}
.x3_c02116{left:455.039904pt;}
.x2_c02116{left:468.159648pt;}
}





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

.ir_c02117:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02117{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02117;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02117{font-family:ff1_c02117;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02117;src:url('chunks/assets/font_91901860b73e486b76103eb1.woff2')format("woff");}.ff2_c02117{font-family:ff2_c02117;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02117;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02117{font-family:ff3_c02117;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02117{vertical-align:0.000000px;}
.ls9_c02117{letter-spacing:-0.679536px;}
.lsb_c02117{letter-spacing:-0.574992px;}
.ls12_c02117{letter-spacing:-0.275616px;}
.ls10_c02117{letter-spacing:-0.261360px;}
.ls8_c02117{letter-spacing:-0.242352px;}
.ls6_c02117{letter-spacing:-0.118800px;}
.ls14_c02117{letter-spacing:0.000000px;}
.ls3_c02117{letter-spacing:0.006048px;}
.ls7_c02117{letter-spacing:0.128304px;}
.lse_c02117{letter-spacing:0.242352px;}
.lsd_c02117{letter-spacing:0.508464px;}
.ls2_c02117{letter-spacing:0.514080px;}
.ls11_c02117{letter-spacing:0.536976px;}
.lsc_c02117{letter-spacing:0.579744px;}
.ls13_c02117{letter-spacing:0.594000px;}
.lsa_c02117{letter-spacing:0.598752px;}
.ls4_c02117{letter-spacing:0.613008px;}
.ls0_c02117{letter-spacing:0.651024px;}
.lsf_c02117{letter-spacing:0.660528px;}
.ls1_c02117{letter-spacing:0.717552px;}
.ls5_c02117{letter-spacing:0.722304px;}
.sc__c02117{text-shadow:none;}
.sc0_c02117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02117{-webkit-text-stroke:0px transparent;}
.sc0_c02117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02117{word-spacing:-15.634080px;}
.wsc_c02117{word-spacing:-15.126048px;}
.wsa_c02117{word-spacing:-12.474000px;}
.ws9_c02117{word-spacing:-12.416976px;}
.ws4_c02117{word-spacing:-11.637648px;}
.ws2_c02117{word-spacing:-11.200464px;}
.ws15_c02117{word-spacing:-3.598560px;}
.ws11_c02117{word-spacing:-1.078704px;}
.ws12_c02117{word-spacing:-1.021680px;}
.wsf_c02117{word-spacing:-1.012176px;}
.wsd_c02117{word-spacing:-0.974160px;}
.ws10_c02117{word-spacing:-0.118800px;}
.ws13_c02117{word-spacing:-0.099792px;}
.ws14_c02117{word-spacing:-0.085536px;}
.wse_c02117{word-spacing:0.000000px;}
.ws8_c02117{word-spacing:36.143712px;}
.ws6_c02117{word-spacing:36.742464px;}
.ws1_c02117{word-spacing:37.759392px;}
.ws0_c02117{word-spacing:38.020752px;}
.ws3_c02117{word-spacing:39.218256px;}
.ws5_c02117{word-spacing:39.902544px;}
.ws7_c02117{word-spacing:42.026688px;}
._0_c02117{margin-left:-1.948320px;}
._2_c02117{width:1.482624px;}
._4_c02117{width:5.730912px;}
._1_c02117{width:50.252400px;}
._3_c02117{width:51.530688px;}
.fc0_c02117{color:rgb(0,0,0);}
.fs0_c02117{font-size:47.520000px;}
.fs1_c02117{font-size:60.480000px;}
.y0_c02117{bottom:0.000000px;}
.y10_c02117{bottom:20.880450px;}
.y1c_c02117{bottom:146.998362px;}
.y1e_c02117{bottom:186.600234px;}
.y1d_c02117{bottom:196.320450px;}
.y1b_c02117{bottom:275.878542px;}
.y1a_c02117{bottom:356.878758px;}
.y18_c02117{bottom:406.559730px;}
.y14_c02117{bottom:424.560306px;}
.y19_c02117{bottom:458.759262px;}
.y17_c02117{bottom:491.879514px;}
.y16_c02117{bottom:509.880090px;}
.y13_c02117{bottom:543.000342px;}
.y15_c02117{bottom:559.559874px;}
.y12_c02117{bottom:577.560450px;}
.y20_c02117{bottom:593.760000px;}
.y21_c02117{bottom:596.640450px;}
.y1f_c02117{bottom:614.280450px;}
.yb_c02117{bottom:667.558326px;}
.yd_c02117{bottom:707.160234px;}
.yc_c02117{bottom:716.880450px;}
.ya_c02117{bottom:796.438506px;}
.y9_c02117{bottom:877.438722px;}
.y7_c02117{bottom:926.759730px;}
.y3_c02117{bottom:944.760306px;}
.y8_c02117{bottom:979.319226px;}
.y6_c02117{bottom:1012.439478px;}
.y5_c02117{bottom:1030.440054px;}
.y2_c02117{bottom:1063.560306px;}
.y4_c02117{bottom:1079.759874px;}
.y1_c02117{bottom:1097.760450px;}
.yf_c02117{bottom:1114.320000px;}
.y11_c02117{bottom:1117.200450px;}
.ye_c02117{bottom:1134.840450px;}
.h3_c02117{height:32.530781px;}
.h5_c02117{height:36.720000px;}
.h4_c02117{height:41.402813px;}
.h1_c02117{height:41.696016px;}
.h2_c02117{height:41.812031px;}
.h7_c02117{height:53.067656px;}
.h6_c02117{height:53.215313px;}
.h0_c02117{height:1263.000000px;}
.w2_c02117{width:395.280000px;}
.w1_c02117{width:892.500000px;}
.w0_c02117{width:892.830000px;}
.x0_c02117{left:0.000000px;}
.xd_c02117{left:117.000000px;}
.xe_c02117{left:161.280000px;}
.x8_c02117{left:440.999856px;}
.x4_c02117{left:445.680576px;}
.xb_c02117{left:451.080000px;}
.x7_c02117{left:455.399604px;}
.x5_c02117{left:461.880144px;}
.x1_c02117{left:463.320000px;}
.xa_c02117{left:483.480360px;}
.x9_c02117{left:492.119496px;}
.x6_c02117{left:493.200576px;}
.xc_c02117{left:506.880360px;}
.x3_c02117{left:511.919892px;}
.x2_c02117{left:526.679604px;}
@media print{
.v0_c02117{vertical-align:0.000000pt;}
.ls9_c02117{letter-spacing:-0.604032pt;}
.lsb_c02117{letter-spacing:-0.511104pt;}
.ls12_c02117{letter-spacing:-0.244992pt;}
.ls10_c02117{letter-spacing:-0.232320pt;}
.ls8_c02117{letter-spacing:-0.215424pt;}
.ls6_c02117{letter-spacing:-0.105600pt;}
.ls14_c02117{letter-spacing:0.000000pt;}
.ls3_c02117{letter-spacing:0.005376pt;}
.ls7_c02117{letter-spacing:0.114048pt;}
.lse_c02117{letter-spacing:0.215424pt;}
.lsd_c02117{letter-spacing:0.451968pt;}
.ls2_c02117{letter-spacing:0.456960pt;}
.ls11_c02117{letter-spacing:0.477312pt;}
.lsc_c02117{letter-spacing:0.515328pt;}
.ls13_c02117{letter-spacing:0.528000pt;}
.lsa_c02117{letter-spacing:0.532224pt;}
.ls4_c02117{letter-spacing:0.544896pt;}
.ls0_c02117{letter-spacing:0.578688pt;}
.lsf_c02117{letter-spacing:0.587136pt;}
.ls1_c02117{letter-spacing:0.637824pt;}
.ls5_c02117{letter-spacing:0.642048pt;}
.wsb_c02117{word-spacing:-13.896960pt;}
.wsc_c02117{word-spacing:-13.445376pt;}
.wsa_c02117{word-spacing:-11.088000pt;}
.ws9_c02117{word-spacing:-11.037312pt;}
.ws4_c02117{word-spacing:-10.344576pt;}
.ws2_c02117{word-spacing:-9.955968pt;}
.ws15_c02117{word-spacing:-3.198720pt;}
.ws11_c02117{word-spacing:-0.958848pt;}
.ws12_c02117{word-spacing:-0.908160pt;}
.wsf_c02117{word-spacing:-0.899712pt;}
.wsd_c02117{word-spacing:-0.865920pt;}
.ws10_c02117{word-spacing:-0.105600pt;}
.ws13_c02117{word-spacing:-0.088704pt;}
.ws14_c02117{word-spacing:-0.076032pt;}
.wse_c02117{word-spacing:0.000000pt;}
.ws8_c02117{word-spacing:32.127744pt;}
.ws6_c02117{word-spacing:32.659968pt;}
.ws1_c02117{word-spacing:33.563904pt;}
.ws0_c02117{word-spacing:33.796224pt;}
.ws3_c02117{word-spacing:34.860672pt;}
.ws5_c02117{word-spacing:35.468928pt;}
.ws7_c02117{word-spacing:37.357056pt;}
._0_c02117{margin-left:-1.731840pt;}
._2_c02117{width:1.317888pt;}
._4_c02117{width:5.094144pt;}
._1_c02117{width:44.668800pt;}
._3_c02117{width:45.805056pt;}
.fs0_c02117{font-size:42.240000pt;}
.fs1_c02117{font-size:53.760000pt;}
.y0_c02117{bottom:0.000000pt;}
.y10_c02117{bottom:18.560400pt;}
.y1c_c02117{bottom:130.665211pt;}
.y1e_c02117{bottom:165.866875pt;}
.y1d_c02117{bottom:174.507067pt;}
.y1b_c02117{bottom:245.225371pt;}
.y1a_c02117{bottom:317.225563pt;}
.y18_c02117{bottom:361.386427pt;}
.y14_c02117{bottom:377.386939pt;}
.y19_c02117{bottom:407.786011pt;}
.y17_c02117{bottom:437.226235pt;}
.y16_c02117{bottom:453.226747pt;}
.y13_c02117{bottom:482.666971pt;}
.y15_c02117{bottom:497.386555pt;}
.y12_c02117{bottom:513.387067pt;}
.y20_c02117{bottom:527.786667pt;}
.y21_c02117{bottom:530.347067pt;}
.y1f_c02117{bottom:546.027067pt;}
.yb_c02117{bottom:593.385179pt;}
.yd_c02117{bottom:628.586875pt;}
.yc_c02117{bottom:637.227067pt;}
.ya_c02117{bottom:707.945339pt;}
.y9_c02117{bottom:779.945531pt;}
.y7_c02117{bottom:823.786427pt;}
.y3_c02117{bottom:839.786939pt;}
.y8_c02117{bottom:870.505979pt;}
.y6_c02117{bottom:899.946203pt;}
.y5_c02117{bottom:915.946715pt;}
.y2_c02117{bottom:945.386939pt;}
.y4_c02117{bottom:959.786555pt;}
.y1_c02117{bottom:975.787067pt;}
.yf_c02117{bottom:990.506667pt;}
.y11_c02117{bottom:993.067067pt;}
.ye_c02117{bottom:1008.747067pt;}
.h3_c02117{height:28.916250pt;}
.h5_c02117{height:32.640000pt;}
.h4_c02117{height:36.802500pt;}
.h1_c02117{height:37.063125pt;}
.h2_c02117{height:37.166250pt;}
.h7_c02117{height:47.171250pt;}
.h6_c02117{height:47.302500pt;}
.h0_c02117{height:1122.666667pt;}
.w2_c02117{width:351.360000pt;}
.w1_c02117{width:793.333333pt;}
.w0_c02117{width:793.626667pt;}
.x0_c02117{left:0.000000pt;}
.xd_c02117{left:104.000000pt;}
.xe_c02117{left:143.360000pt;}
.x8_c02117{left:391.999872pt;}
.x4_c02117{left:396.160512pt;}
.xb_c02117{left:400.960000pt;}
.x7_c02117{left:404.799648pt;}
.x5_c02117{left:410.560128pt;}
.x1_c02117{left:411.840000pt;}
.xa_c02117{left:429.760320pt;}
.x9_c02117{left:437.439552pt;}
.x6_c02117{left:438.400512pt;}
.xc_c02117{left:450.560320pt;}
.x3_c02117{left:455.039904pt;}
.x2_c02117{left:468.159648pt;}
}





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

.ir_c02118:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02118{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02118;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02118{font-family:ff1_c02118;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02118;src:url('chunks/assets/font_b5ec6c7ba41361608cb2ba15.woff2')format("woff");}.ff2_c02118{font-family:ff2_c02118;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02118;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02118{font-family:ff3_c02118;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02118{vertical-align:0.000000px;}
.ls9_c02118{letter-spacing:-0.679536px;}
.lsb_c02118{letter-spacing:-0.574992px;}
.ls12_c02118{letter-spacing:-0.275616px;}
.ls10_c02118{letter-spacing:-0.261360px;}
.ls8_c02118{letter-spacing:-0.242352px;}
.ls6_c02118{letter-spacing:-0.118800px;}
.ls14_c02118{letter-spacing:0.000000px;}
.ls3_c02118{letter-spacing:0.006048px;}
.ls7_c02118{letter-spacing:0.128304px;}
.lse_c02118{letter-spacing:0.242352px;}
.lsd_c02118{letter-spacing:0.508464px;}
.ls2_c02118{letter-spacing:0.514080px;}
.ls11_c02118{letter-spacing:0.536976px;}
.lsc_c02118{letter-spacing:0.579744px;}
.ls13_c02118{letter-spacing:0.594000px;}
.lsa_c02118{letter-spacing:0.598752px;}
.ls4_c02118{letter-spacing:0.613008px;}
.ls0_c02118{letter-spacing:0.651024px;}
.lsf_c02118{letter-spacing:0.660528px;}
.ls1_c02118{letter-spacing:0.717552px;}
.ls5_c02118{letter-spacing:0.722304px;}
.sc__c02118{text-shadow:none;}
.sc0_c02118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02118{-webkit-text-stroke:0px transparent;}
.sc0_c02118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02118{word-spacing:-15.634080px;}
.wsc_c02118{word-spacing:-15.126048px;}
.wsa_c02118{word-spacing:-12.474000px;}
.ws9_c02118{word-spacing:-12.416976px;}
.ws4_c02118{word-spacing:-11.637648px;}
.ws2_c02118{word-spacing:-11.200464px;}
.ws15_c02118{word-spacing:-3.598560px;}
.ws11_c02118{word-spacing:-1.078704px;}
.ws12_c02118{word-spacing:-1.021680px;}
.wsf_c02118{word-spacing:-1.012176px;}
.wsd_c02118{word-spacing:-0.974160px;}
.ws10_c02118{word-spacing:-0.118800px;}
.ws13_c02118{word-spacing:-0.099792px;}
.ws14_c02118{word-spacing:-0.085536px;}
.wse_c02118{word-spacing:0.000000px;}
.ws8_c02118{word-spacing:36.143712px;}
.ws6_c02118{word-spacing:36.742464px;}
.ws1_c02118{word-spacing:37.759392px;}
.ws0_c02118{word-spacing:38.020752px;}
.ws3_c02118{word-spacing:39.218256px;}
.ws5_c02118{word-spacing:39.902544px;}
.ws7_c02118{word-spacing:42.026688px;}
._0_c02118{margin-left:-1.948320px;}
._2_c02118{width:1.482624px;}
._4_c02118{width:5.730912px;}
._1_c02118{width:50.252400px;}
._3_c02118{width:51.530688px;}
.fc0_c02118{color:rgb(0,0,0);}
.fs0_c02118{font-size:47.520000px;}
.fs1_c02118{font-size:60.480000px;}
.y0_c02118{bottom:0.000000px;}
.y10_c02118{bottom:20.880450px;}
.y1c_c02118{bottom:146.998362px;}
.y1e_c02118{bottom:186.600234px;}
.y1d_c02118{bottom:196.320450px;}
.y1b_c02118{bottom:275.878542px;}
.y1a_c02118{bottom:356.878758px;}
.y18_c02118{bottom:406.559730px;}
.y14_c02118{bottom:424.560306px;}
.y19_c02118{bottom:458.759262px;}
.y17_c02118{bottom:491.879514px;}
.y16_c02118{bottom:509.880090px;}
.y13_c02118{bottom:543.000342px;}
.y15_c02118{bottom:559.559874px;}
.y12_c02118{bottom:577.560450px;}
.y20_c02118{bottom:593.760000px;}
.y21_c02118{bottom:596.640450px;}
.y1f_c02118{bottom:614.280450px;}
.yb_c02118{bottom:667.558326px;}
.yd_c02118{bottom:707.160234px;}
.yc_c02118{bottom:716.880450px;}
.ya_c02118{bottom:796.438506px;}
.y9_c02118{bottom:877.438722px;}
.y7_c02118{bottom:926.759730px;}
.y3_c02118{bottom:944.760306px;}
.y8_c02118{bottom:979.319226px;}
.y6_c02118{bottom:1012.439478px;}
.y5_c02118{bottom:1030.440054px;}
.y2_c02118{bottom:1063.560306px;}
.y4_c02118{bottom:1079.759874px;}
.y1_c02118{bottom:1097.760450px;}
.yf_c02118{bottom:1114.320000px;}
.y11_c02118{bottom:1117.200450px;}
.ye_c02118{bottom:1134.840450px;}
.h3_c02118{height:32.530781px;}
.h5_c02118{height:36.720000px;}
.h4_c02118{height:41.402813px;}
.h1_c02118{height:41.696016px;}
.h2_c02118{height:41.812031px;}
.h7_c02118{height:53.067656px;}
.h6_c02118{height:53.215313px;}
.h0_c02118{height:1263.000000px;}
.w2_c02118{width:395.280000px;}
.w1_c02118{width:892.500000px;}
.w0_c02118{width:892.830000px;}
.x0_c02118{left:0.000000px;}
.xd_c02118{left:117.000000px;}
.xe_c02118{left:161.280000px;}
.x8_c02118{left:440.999856px;}
.x4_c02118{left:445.680576px;}
.xb_c02118{left:451.080000px;}
.x7_c02118{left:455.399604px;}
.x5_c02118{left:461.880144px;}
.x1_c02118{left:463.320000px;}
.xa_c02118{left:483.480360px;}
.x9_c02118{left:492.119496px;}
.x6_c02118{left:493.200576px;}
.xc_c02118{left:506.880360px;}
.x3_c02118{left:511.919892px;}
.x2_c02118{left:526.679604px;}
@media print{
.v0_c02118{vertical-align:0.000000pt;}
.ls9_c02118{letter-spacing:-0.604032pt;}
.lsb_c02118{letter-spacing:-0.511104pt;}
.ls12_c02118{letter-spacing:-0.244992pt;}
.ls10_c02118{letter-spacing:-0.232320pt;}
.ls8_c02118{letter-spacing:-0.215424pt;}
.ls6_c02118{letter-spacing:-0.105600pt;}
.ls14_c02118{letter-spacing:0.000000pt;}
.ls3_c02118{letter-spacing:0.005376pt;}
.ls7_c02118{letter-spacing:0.114048pt;}
.lse_c02118{letter-spacing:0.215424pt;}
.lsd_c02118{letter-spacing:0.451968pt;}
.ls2_c02118{letter-spacing:0.456960pt;}
.ls11_c02118{letter-spacing:0.477312pt;}
.lsc_c02118{letter-spacing:0.515328pt;}
.ls13_c02118{letter-spacing:0.528000pt;}
.lsa_c02118{letter-spacing:0.532224pt;}
.ls4_c02118{letter-spacing:0.544896pt;}
.ls0_c02118{letter-spacing:0.578688pt;}
.lsf_c02118{letter-spacing:0.587136pt;}
.ls1_c02118{letter-spacing:0.637824pt;}
.ls5_c02118{letter-spacing:0.642048pt;}
.wsb_c02118{word-spacing:-13.896960pt;}
.wsc_c02118{word-spacing:-13.445376pt;}
.wsa_c02118{word-spacing:-11.088000pt;}
.ws9_c02118{word-spacing:-11.037312pt;}
.ws4_c02118{word-spacing:-10.344576pt;}
.ws2_c02118{word-spacing:-9.955968pt;}
.ws15_c02118{word-spacing:-3.198720pt;}
.ws11_c02118{word-spacing:-0.958848pt;}
.ws12_c02118{word-spacing:-0.908160pt;}
.wsf_c02118{word-spacing:-0.899712pt;}
.wsd_c02118{word-spacing:-0.865920pt;}
.ws10_c02118{word-spacing:-0.105600pt;}
.ws13_c02118{word-spacing:-0.088704pt;}
.ws14_c02118{word-spacing:-0.076032pt;}
.wse_c02118{word-spacing:0.000000pt;}
.ws8_c02118{word-spacing:32.127744pt;}
.ws6_c02118{word-spacing:32.659968pt;}
.ws1_c02118{word-spacing:33.563904pt;}
.ws0_c02118{word-spacing:33.796224pt;}
.ws3_c02118{word-spacing:34.860672pt;}
.ws5_c02118{word-spacing:35.468928pt;}
.ws7_c02118{word-spacing:37.357056pt;}
._0_c02118{margin-left:-1.731840pt;}
._2_c02118{width:1.317888pt;}
._4_c02118{width:5.094144pt;}
._1_c02118{width:44.668800pt;}
._3_c02118{width:45.805056pt;}
.fs0_c02118{font-size:42.240000pt;}
.fs1_c02118{font-size:53.760000pt;}
.y0_c02118{bottom:0.000000pt;}
.y10_c02118{bottom:18.560400pt;}
.y1c_c02118{bottom:130.665211pt;}
.y1e_c02118{bottom:165.866875pt;}
.y1d_c02118{bottom:174.507067pt;}
.y1b_c02118{bottom:245.225371pt;}
.y1a_c02118{bottom:317.225563pt;}
.y18_c02118{bottom:361.386427pt;}
.y14_c02118{bottom:377.386939pt;}
.y19_c02118{bottom:407.786011pt;}
.y17_c02118{bottom:437.226235pt;}
.y16_c02118{bottom:453.226747pt;}
.y13_c02118{bottom:482.666971pt;}
.y15_c02118{bottom:497.386555pt;}
.y12_c02118{bottom:513.387067pt;}
.y20_c02118{bottom:527.786667pt;}
.y21_c02118{bottom:530.347067pt;}
.y1f_c02118{bottom:546.027067pt;}
.yb_c02118{bottom:593.385179pt;}
.yd_c02118{bottom:628.586875pt;}
.yc_c02118{bottom:637.227067pt;}
.ya_c02118{bottom:707.945339pt;}
.y9_c02118{bottom:779.945531pt;}
.y7_c02118{bottom:823.786427pt;}
.y3_c02118{bottom:839.786939pt;}
.y8_c02118{bottom:870.505979pt;}
.y6_c02118{bottom:899.946203pt;}
.y5_c02118{bottom:915.946715pt;}
.y2_c02118{bottom:945.386939pt;}
.y4_c02118{bottom:959.786555pt;}
.y1_c02118{bottom:975.787067pt;}
.yf_c02118{bottom:990.506667pt;}
.y11_c02118{bottom:993.067067pt;}
.ye_c02118{bottom:1008.747067pt;}
.h3_c02118{height:28.916250pt;}
.h5_c02118{height:32.640000pt;}
.h4_c02118{height:36.802500pt;}
.h1_c02118{height:37.063125pt;}
.h2_c02118{height:37.166250pt;}
.h7_c02118{height:47.171250pt;}
.h6_c02118{height:47.302500pt;}
.h0_c02118{height:1122.666667pt;}
.w2_c02118{width:351.360000pt;}
.w1_c02118{width:793.333333pt;}
.w0_c02118{width:793.626667pt;}
.x0_c02118{left:0.000000pt;}
.xd_c02118{left:104.000000pt;}
.xe_c02118{left:143.360000pt;}
.x8_c02118{left:391.999872pt;}
.x4_c02118{left:396.160512pt;}
.xb_c02118{left:400.960000pt;}
.x7_c02118{left:404.799648pt;}
.x5_c02118{left:410.560128pt;}
.x1_c02118{left:411.840000pt;}
.xa_c02118{left:429.760320pt;}
.x9_c02118{left:437.439552pt;}
.x6_c02118{left:438.400512pt;}
.xc_c02118{left:450.560320pt;}
.x3_c02118{left:455.039904pt;}
.x2_c02118{left:468.159648pt;}
}





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

.ir_c02119:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02119{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02119;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02119{font-family:ff1_c02119;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02119;src:url('chunks/assets/font_91901860b73e486b76103eb1.woff2')format("woff");}.ff2_c02119{font-family:ff2_c02119;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02119;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02119{font-family:ff3_c02119;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02119{vertical-align:0.000000px;}
.ls9_c02119{letter-spacing:-0.679536px;}
.lsb_c02119{letter-spacing:-0.574992px;}
.ls12_c02119{letter-spacing:-0.275616px;}
.ls10_c02119{letter-spacing:-0.261360px;}
.ls8_c02119{letter-spacing:-0.242352px;}
.ls6_c02119{letter-spacing:-0.118800px;}
.ls14_c02119{letter-spacing:0.000000px;}
.ls3_c02119{letter-spacing:0.006048px;}
.ls7_c02119{letter-spacing:0.128304px;}
.lse_c02119{letter-spacing:0.242352px;}
.lsd_c02119{letter-spacing:0.508464px;}
.ls2_c02119{letter-spacing:0.514080px;}
.ls11_c02119{letter-spacing:0.536976px;}
.lsc_c02119{letter-spacing:0.579744px;}
.ls13_c02119{letter-spacing:0.594000px;}
.lsa_c02119{letter-spacing:0.598752px;}
.ls4_c02119{letter-spacing:0.613008px;}
.ls0_c02119{letter-spacing:0.651024px;}
.lsf_c02119{letter-spacing:0.660528px;}
.ls1_c02119{letter-spacing:0.717552px;}
.ls5_c02119{letter-spacing:0.722304px;}
.sc__c02119{text-shadow:none;}
.sc0_c02119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02119{-webkit-text-stroke:0px transparent;}
.sc0_c02119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02119{word-spacing:-15.634080px;}
.wsc_c02119{word-spacing:-15.126048px;}
.wsa_c02119{word-spacing:-12.474000px;}
.ws9_c02119{word-spacing:-12.416976px;}
.ws4_c02119{word-spacing:-11.637648px;}
.ws2_c02119{word-spacing:-11.200464px;}
.ws15_c02119{word-spacing:-3.598560px;}
.ws11_c02119{word-spacing:-1.078704px;}
.ws12_c02119{word-spacing:-1.021680px;}
.wsf_c02119{word-spacing:-1.012176px;}
.wsd_c02119{word-spacing:-0.974160px;}
.ws10_c02119{word-spacing:-0.118800px;}
.ws13_c02119{word-spacing:-0.099792px;}
.ws14_c02119{word-spacing:-0.085536px;}
.wse_c02119{word-spacing:0.000000px;}
.ws8_c02119{word-spacing:36.143712px;}
.ws6_c02119{word-spacing:36.742464px;}
.ws1_c02119{word-spacing:37.759392px;}
.ws0_c02119{word-spacing:38.020752px;}
.ws3_c02119{word-spacing:39.218256px;}
.ws5_c02119{word-spacing:39.902544px;}
.ws7_c02119{word-spacing:42.026688px;}
._0_c02119{margin-left:-1.948320px;}
._2_c02119{width:1.482624px;}
._4_c02119{width:5.730912px;}
._1_c02119{width:50.252400px;}
._3_c02119{width:51.530688px;}
.fc0_c02119{color:rgb(0,0,0);}
.fs0_c02119{font-size:47.520000px;}
.fs1_c02119{font-size:60.480000px;}
.y0_c02119{bottom:0.000000px;}
.y10_c02119{bottom:20.880450px;}
.y1c_c02119{bottom:146.998362px;}
.y1e_c02119{bottom:186.600234px;}
.y1d_c02119{bottom:196.320450px;}
.y1b_c02119{bottom:275.878542px;}
.y1a_c02119{bottom:356.878758px;}
.y18_c02119{bottom:406.559730px;}
.y14_c02119{bottom:424.560306px;}
.y19_c02119{bottom:458.759262px;}
.y17_c02119{bottom:491.879514px;}
.y16_c02119{bottom:509.880090px;}
.y13_c02119{bottom:543.000342px;}
.y15_c02119{bottom:559.559874px;}
.y12_c02119{bottom:577.560450px;}
.y20_c02119{bottom:593.760000px;}
.y21_c02119{bottom:596.640450px;}
.y1f_c02119{bottom:614.280450px;}
.yb_c02119{bottom:667.558326px;}
.yd_c02119{bottom:707.160234px;}
.yc_c02119{bottom:716.880450px;}
.ya_c02119{bottom:796.438506px;}
.y9_c02119{bottom:877.438722px;}
.y7_c02119{bottom:926.759730px;}
.y3_c02119{bottom:944.760306px;}
.y8_c02119{bottom:979.319226px;}
.y6_c02119{bottom:1012.439478px;}
.y5_c02119{bottom:1030.440054px;}
.y2_c02119{bottom:1063.560306px;}
.y4_c02119{bottom:1079.759874px;}
.y1_c02119{bottom:1097.760450px;}
.yf_c02119{bottom:1114.320000px;}
.y11_c02119{bottom:1117.200450px;}
.ye_c02119{bottom:1134.840450px;}
.h3_c02119{height:32.530781px;}
.h5_c02119{height:36.720000px;}
.h4_c02119{height:41.402813px;}
.h1_c02119{height:41.696016px;}
.h2_c02119{height:41.812031px;}
.h7_c02119{height:53.067656px;}
.h6_c02119{height:53.215313px;}
.h0_c02119{height:1263.000000px;}
.w2_c02119{width:395.280000px;}
.w1_c02119{width:892.500000px;}
.w0_c02119{width:892.830000px;}
.x0_c02119{left:0.000000px;}
.xd_c02119{left:117.000000px;}
.xe_c02119{left:161.280000px;}
.x8_c02119{left:440.999856px;}
.x4_c02119{left:445.680576px;}
.xb_c02119{left:451.080000px;}
.x7_c02119{left:455.399604px;}
.x5_c02119{left:461.880144px;}
.x1_c02119{left:463.320000px;}
.xa_c02119{left:483.480360px;}
.x9_c02119{left:492.119496px;}
.x6_c02119{left:493.200576px;}
.xc_c02119{left:506.880360px;}
.x3_c02119{left:511.919892px;}
.x2_c02119{left:526.679604px;}
@media print{
.v0_c02119{vertical-align:0.000000pt;}
.ls9_c02119{letter-spacing:-0.604032pt;}
.lsb_c02119{letter-spacing:-0.511104pt;}
.ls12_c02119{letter-spacing:-0.244992pt;}
.ls10_c02119{letter-spacing:-0.232320pt;}
.ls8_c02119{letter-spacing:-0.215424pt;}
.ls6_c02119{letter-spacing:-0.105600pt;}
.ls14_c02119{letter-spacing:0.000000pt;}
.ls3_c02119{letter-spacing:0.005376pt;}
.ls7_c02119{letter-spacing:0.114048pt;}
.lse_c02119{letter-spacing:0.215424pt;}
.lsd_c02119{letter-spacing:0.451968pt;}
.ls2_c02119{letter-spacing:0.456960pt;}
.ls11_c02119{letter-spacing:0.477312pt;}
.lsc_c02119{letter-spacing:0.515328pt;}
.ls13_c02119{letter-spacing:0.528000pt;}
.lsa_c02119{letter-spacing:0.532224pt;}
.ls4_c02119{letter-spacing:0.544896pt;}
.ls0_c02119{letter-spacing:0.578688pt;}
.lsf_c02119{letter-spacing:0.587136pt;}
.ls1_c02119{letter-spacing:0.637824pt;}
.ls5_c02119{letter-spacing:0.642048pt;}
.wsb_c02119{word-spacing:-13.896960pt;}
.wsc_c02119{word-spacing:-13.445376pt;}
.wsa_c02119{word-spacing:-11.088000pt;}
.ws9_c02119{word-spacing:-11.037312pt;}
.ws4_c02119{word-spacing:-10.344576pt;}
.ws2_c02119{word-spacing:-9.955968pt;}
.ws15_c02119{word-spacing:-3.198720pt;}
.ws11_c02119{word-spacing:-0.958848pt;}
.ws12_c02119{word-spacing:-0.908160pt;}
.wsf_c02119{word-spacing:-0.899712pt;}
.wsd_c02119{word-spacing:-0.865920pt;}
.ws10_c02119{word-spacing:-0.105600pt;}
.ws13_c02119{word-spacing:-0.088704pt;}
.ws14_c02119{word-spacing:-0.076032pt;}
.wse_c02119{word-spacing:0.000000pt;}
.ws8_c02119{word-spacing:32.127744pt;}
.ws6_c02119{word-spacing:32.659968pt;}
.ws1_c02119{word-spacing:33.563904pt;}
.ws0_c02119{word-spacing:33.796224pt;}
.ws3_c02119{word-spacing:34.860672pt;}
.ws5_c02119{word-spacing:35.468928pt;}
.ws7_c02119{word-spacing:37.357056pt;}
._0_c02119{margin-left:-1.731840pt;}
._2_c02119{width:1.317888pt;}
._4_c02119{width:5.094144pt;}
._1_c02119{width:44.668800pt;}
._3_c02119{width:45.805056pt;}
.fs0_c02119{font-size:42.240000pt;}
.fs1_c02119{font-size:53.760000pt;}
.y0_c02119{bottom:0.000000pt;}
.y10_c02119{bottom:18.560400pt;}
.y1c_c02119{bottom:130.665211pt;}
.y1e_c02119{bottom:165.866875pt;}
.y1d_c02119{bottom:174.507067pt;}
.y1b_c02119{bottom:245.225371pt;}
.y1a_c02119{bottom:317.225563pt;}
.y18_c02119{bottom:361.386427pt;}
.y14_c02119{bottom:377.386939pt;}
.y19_c02119{bottom:407.786011pt;}
.y17_c02119{bottom:437.226235pt;}
.y16_c02119{bottom:453.226747pt;}
.y13_c02119{bottom:482.666971pt;}
.y15_c02119{bottom:497.386555pt;}
.y12_c02119{bottom:513.387067pt;}
.y20_c02119{bottom:527.786667pt;}
.y21_c02119{bottom:530.347067pt;}
.y1f_c02119{bottom:546.027067pt;}
.yb_c02119{bottom:593.385179pt;}
.yd_c02119{bottom:628.586875pt;}
.yc_c02119{bottom:637.227067pt;}
.ya_c02119{bottom:707.945339pt;}
.y9_c02119{bottom:779.945531pt;}
.y7_c02119{bottom:823.786427pt;}
.y3_c02119{bottom:839.786939pt;}
.y8_c02119{bottom:870.505979pt;}
.y6_c02119{bottom:899.946203pt;}
.y5_c02119{bottom:915.946715pt;}
.y2_c02119{bottom:945.386939pt;}
.y4_c02119{bottom:959.786555pt;}
.y1_c02119{bottom:975.787067pt;}
.yf_c02119{bottom:990.506667pt;}
.y11_c02119{bottom:993.067067pt;}
.ye_c02119{bottom:1008.747067pt;}
.h3_c02119{height:28.916250pt;}
.h5_c02119{height:32.640000pt;}
.h4_c02119{height:36.802500pt;}
.h1_c02119{height:37.063125pt;}
.h2_c02119{height:37.166250pt;}
.h7_c02119{height:47.171250pt;}
.h6_c02119{height:47.302500pt;}
.h0_c02119{height:1122.666667pt;}
.w2_c02119{width:351.360000pt;}
.w1_c02119{width:793.333333pt;}
.w0_c02119{width:793.626667pt;}
.x0_c02119{left:0.000000pt;}
.xd_c02119{left:104.000000pt;}
.xe_c02119{left:143.360000pt;}
.x8_c02119{left:391.999872pt;}
.x4_c02119{left:396.160512pt;}
.xb_c02119{left:400.960000pt;}
.x7_c02119{left:404.799648pt;}
.x5_c02119{left:410.560128pt;}
.x1_c02119{left:411.840000pt;}
.xa_c02119{left:429.760320pt;}
.x9_c02119{left:437.439552pt;}
.x6_c02119{left:438.400512pt;}
.xc_c02119{left:450.560320pt;}
.x3_c02119{left:455.039904pt;}
.x2_c02119{left:468.159648pt;}
}





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

.ir_c02120:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02120{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02120;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02120{font-family:ff1_c02120;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02120;src:url('chunks/assets/font_2dfd77de80caaa40491f4595.woff2')format("woff");}.ff2_c02120{font-family:ff2_c02120;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02120;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02120{font-family:ff3_c02120;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02120{vertical-align:0.000000px;}
.ls9_c02120{letter-spacing:-0.679536px;}
.lsb_c02120{letter-spacing:-0.574992px;}
.ls12_c02120{letter-spacing:-0.275616px;}
.ls10_c02120{letter-spacing:-0.261360px;}
.ls8_c02120{letter-spacing:-0.242352px;}
.ls6_c02120{letter-spacing:-0.118800px;}
.ls14_c02120{letter-spacing:0.000000px;}
.ls3_c02120{letter-spacing:0.006048px;}
.ls7_c02120{letter-spacing:0.128304px;}
.lse_c02120{letter-spacing:0.242352px;}
.lsd_c02120{letter-spacing:0.508464px;}
.ls2_c02120{letter-spacing:0.514080px;}
.ls11_c02120{letter-spacing:0.536976px;}
.lsc_c02120{letter-spacing:0.579744px;}
.ls13_c02120{letter-spacing:0.594000px;}
.lsa_c02120{letter-spacing:0.598752px;}
.ls4_c02120{letter-spacing:0.613008px;}
.ls0_c02120{letter-spacing:0.651024px;}
.lsf_c02120{letter-spacing:0.660528px;}
.ls1_c02120{letter-spacing:0.717552px;}
.ls5_c02120{letter-spacing:0.722304px;}
.sc__c02120{text-shadow:none;}
.sc0_c02120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02120{-webkit-text-stroke:0px transparent;}
.sc0_c02120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02120{word-spacing:-15.634080px;}
.wsc_c02120{word-spacing:-15.126048px;}
.wsa_c02120{word-spacing:-12.474000px;}
.ws9_c02120{word-spacing:-12.416976px;}
.ws4_c02120{word-spacing:-11.637648px;}
.ws2_c02120{word-spacing:-11.200464px;}
.ws15_c02120{word-spacing:-3.598560px;}
.ws11_c02120{word-spacing:-1.078704px;}
.ws12_c02120{word-spacing:-1.021680px;}
.wsf_c02120{word-spacing:-1.012176px;}
.wsd_c02120{word-spacing:-0.974160px;}
.ws10_c02120{word-spacing:-0.118800px;}
.ws13_c02120{word-spacing:-0.099792px;}
.ws14_c02120{word-spacing:-0.085536px;}
.wse_c02120{word-spacing:0.000000px;}
.ws8_c02120{word-spacing:36.143712px;}
.ws6_c02120{word-spacing:36.742464px;}
.ws1_c02120{word-spacing:37.759392px;}
.ws0_c02120{word-spacing:38.020752px;}
.ws3_c02120{word-spacing:39.218256px;}
.ws5_c02120{word-spacing:39.902544px;}
.ws7_c02120{word-spacing:42.026688px;}
._0_c02120{margin-left:-1.948320px;}
._2_c02120{width:1.482624px;}
._4_c02120{width:5.730912px;}
._1_c02120{width:50.252400px;}
._3_c02120{width:51.530688px;}
.fc0_c02120{color:rgb(0,0,0);}
.fs0_c02120{font-size:47.520000px;}
.fs1_c02120{font-size:60.480000px;}
.y0_c02120{bottom:0.000000px;}
.y10_c02120{bottom:20.880450px;}
.y1c_c02120{bottom:146.998362px;}
.y1e_c02120{bottom:186.600234px;}
.y1d_c02120{bottom:196.320450px;}
.y1b_c02120{bottom:275.878542px;}
.y1a_c02120{bottom:356.878758px;}
.y18_c02120{bottom:406.559730px;}
.y14_c02120{bottom:424.560306px;}
.y19_c02120{bottom:458.759262px;}
.y17_c02120{bottom:491.879514px;}
.y16_c02120{bottom:509.880090px;}
.y13_c02120{bottom:543.000342px;}
.y15_c02120{bottom:559.559874px;}
.y12_c02120{bottom:577.560450px;}
.y20_c02120{bottom:593.760000px;}
.y21_c02120{bottom:596.640450px;}
.y1f_c02120{bottom:614.280450px;}
.yb_c02120{bottom:667.558326px;}
.yd_c02120{bottom:707.160234px;}
.yc_c02120{bottom:716.880450px;}
.ya_c02120{bottom:796.438506px;}
.y9_c02120{bottom:877.438722px;}
.y7_c02120{bottom:926.759730px;}
.y3_c02120{bottom:944.760306px;}
.y8_c02120{bottom:979.319226px;}
.y6_c02120{bottom:1012.439478px;}
.y5_c02120{bottom:1030.440054px;}
.y2_c02120{bottom:1063.560306px;}
.y4_c02120{bottom:1079.759874px;}
.y1_c02120{bottom:1097.760450px;}
.yf_c02120{bottom:1114.320000px;}
.y11_c02120{bottom:1117.200450px;}
.ye_c02120{bottom:1134.840450px;}
.h3_c02120{height:32.530781px;}
.h5_c02120{height:36.720000px;}
.h4_c02120{height:41.402813px;}
.h1_c02120{height:41.696016px;}
.h2_c02120{height:41.812031px;}
.h7_c02120{height:53.067656px;}
.h6_c02120{height:53.215313px;}
.h0_c02120{height:1263.000000px;}
.w2_c02120{width:395.280000px;}
.w1_c02120{width:892.500000px;}
.w0_c02120{width:892.830000px;}
.x0_c02120{left:0.000000px;}
.xd_c02120{left:117.000000px;}
.xe_c02120{left:161.280000px;}
.x8_c02120{left:440.999856px;}
.x4_c02120{left:445.680576px;}
.xb_c02120{left:451.080000px;}
.x7_c02120{left:455.399604px;}
.x5_c02120{left:461.880144px;}
.x1_c02120{left:463.320000px;}
.xa_c02120{left:483.480360px;}
.x9_c02120{left:492.119496px;}
.x6_c02120{left:493.200576px;}
.xc_c02120{left:506.880360px;}
.x3_c02120{left:511.919892px;}
.x2_c02120{left:526.679604px;}
@media print{
.v0_c02120{vertical-align:0.000000pt;}
.ls9_c02120{letter-spacing:-0.604032pt;}
.lsb_c02120{letter-spacing:-0.511104pt;}
.ls12_c02120{letter-spacing:-0.244992pt;}
.ls10_c02120{letter-spacing:-0.232320pt;}
.ls8_c02120{letter-spacing:-0.215424pt;}
.ls6_c02120{letter-spacing:-0.105600pt;}
.ls14_c02120{letter-spacing:0.000000pt;}
.ls3_c02120{letter-spacing:0.005376pt;}
.ls7_c02120{letter-spacing:0.114048pt;}
.lse_c02120{letter-spacing:0.215424pt;}
.lsd_c02120{letter-spacing:0.451968pt;}
.ls2_c02120{letter-spacing:0.456960pt;}
.ls11_c02120{letter-spacing:0.477312pt;}
.lsc_c02120{letter-spacing:0.515328pt;}
.ls13_c02120{letter-spacing:0.528000pt;}
.lsa_c02120{letter-spacing:0.532224pt;}
.ls4_c02120{letter-spacing:0.544896pt;}
.ls0_c02120{letter-spacing:0.578688pt;}
.lsf_c02120{letter-spacing:0.587136pt;}
.ls1_c02120{letter-spacing:0.637824pt;}
.ls5_c02120{letter-spacing:0.642048pt;}
.wsb_c02120{word-spacing:-13.896960pt;}
.wsc_c02120{word-spacing:-13.445376pt;}
.wsa_c02120{word-spacing:-11.088000pt;}
.ws9_c02120{word-spacing:-11.037312pt;}
.ws4_c02120{word-spacing:-10.344576pt;}
.ws2_c02120{word-spacing:-9.955968pt;}
.ws15_c02120{word-spacing:-3.198720pt;}
.ws11_c02120{word-spacing:-0.958848pt;}
.ws12_c02120{word-spacing:-0.908160pt;}
.wsf_c02120{word-spacing:-0.899712pt;}
.wsd_c02120{word-spacing:-0.865920pt;}
.ws10_c02120{word-spacing:-0.105600pt;}
.ws13_c02120{word-spacing:-0.088704pt;}
.ws14_c02120{word-spacing:-0.076032pt;}
.wse_c02120{word-spacing:0.000000pt;}
.ws8_c02120{word-spacing:32.127744pt;}
.ws6_c02120{word-spacing:32.659968pt;}
.ws1_c02120{word-spacing:33.563904pt;}
.ws0_c02120{word-spacing:33.796224pt;}
.ws3_c02120{word-spacing:34.860672pt;}
.ws5_c02120{word-spacing:35.468928pt;}
.ws7_c02120{word-spacing:37.357056pt;}
._0_c02120{margin-left:-1.731840pt;}
._2_c02120{width:1.317888pt;}
._4_c02120{width:5.094144pt;}
._1_c02120{width:44.668800pt;}
._3_c02120{width:45.805056pt;}
.fs0_c02120{font-size:42.240000pt;}
.fs1_c02120{font-size:53.760000pt;}
.y0_c02120{bottom:0.000000pt;}
.y10_c02120{bottom:18.560400pt;}
.y1c_c02120{bottom:130.665211pt;}
.y1e_c02120{bottom:165.866875pt;}
.y1d_c02120{bottom:174.507067pt;}
.y1b_c02120{bottom:245.225371pt;}
.y1a_c02120{bottom:317.225563pt;}
.y18_c02120{bottom:361.386427pt;}
.y14_c02120{bottom:377.386939pt;}
.y19_c02120{bottom:407.786011pt;}
.y17_c02120{bottom:437.226235pt;}
.y16_c02120{bottom:453.226747pt;}
.y13_c02120{bottom:482.666971pt;}
.y15_c02120{bottom:497.386555pt;}
.y12_c02120{bottom:513.387067pt;}
.y20_c02120{bottom:527.786667pt;}
.y21_c02120{bottom:530.347067pt;}
.y1f_c02120{bottom:546.027067pt;}
.yb_c02120{bottom:593.385179pt;}
.yd_c02120{bottom:628.586875pt;}
.yc_c02120{bottom:637.227067pt;}
.ya_c02120{bottom:707.945339pt;}
.y9_c02120{bottom:779.945531pt;}
.y7_c02120{bottom:823.786427pt;}
.y3_c02120{bottom:839.786939pt;}
.y8_c02120{bottom:870.505979pt;}
.y6_c02120{bottom:899.946203pt;}
.y5_c02120{bottom:915.946715pt;}
.y2_c02120{bottom:945.386939pt;}
.y4_c02120{bottom:959.786555pt;}
.y1_c02120{bottom:975.787067pt;}
.yf_c02120{bottom:990.506667pt;}
.y11_c02120{bottom:993.067067pt;}
.ye_c02120{bottom:1008.747067pt;}
.h3_c02120{height:28.916250pt;}
.h5_c02120{height:32.640000pt;}
.h4_c02120{height:36.802500pt;}
.h1_c02120{height:37.063125pt;}
.h2_c02120{height:37.166250pt;}
.h7_c02120{height:47.171250pt;}
.h6_c02120{height:47.302500pt;}
.h0_c02120{height:1122.666667pt;}
.w2_c02120{width:351.360000pt;}
.w1_c02120{width:793.333333pt;}
.w0_c02120{width:793.626667pt;}
.x0_c02120{left:0.000000pt;}
.xd_c02120{left:104.000000pt;}
.xe_c02120{left:143.360000pt;}
.x8_c02120{left:391.999872pt;}
.x4_c02120{left:396.160512pt;}
.xb_c02120{left:400.960000pt;}
.x7_c02120{left:404.799648pt;}
.x5_c02120{left:410.560128pt;}
.x1_c02120{left:411.840000pt;}
.xa_c02120{left:429.760320pt;}
.x9_c02120{left:437.439552pt;}
.x6_c02120{left:438.400512pt;}
.xc_c02120{left:450.560320pt;}
.x3_c02120{left:455.039904pt;}
.x2_c02120{left:468.159648pt;}
}





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

.ir_c02121:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02121{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02121;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02121{font-family:ff1_c02121;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02121;src:url('chunks/assets/font_316f6bd74b4e1baf2ff9de9c.woff2')format("woff");}.ff2_c02121{font-family:ff2_c02121;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02121;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02121{font-family:ff3_c02121;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02121{vertical-align:0.000000px;}
.ls9_c02121{letter-spacing:-0.679536px;}
.lsb_c02121{letter-spacing:-0.574992px;}
.ls12_c02121{letter-spacing:-0.275616px;}
.ls10_c02121{letter-spacing:-0.261360px;}
.ls8_c02121{letter-spacing:-0.242352px;}
.ls6_c02121{letter-spacing:-0.118800px;}
.ls14_c02121{letter-spacing:0.000000px;}
.ls3_c02121{letter-spacing:0.006048px;}
.ls7_c02121{letter-spacing:0.128304px;}
.lse_c02121{letter-spacing:0.242352px;}
.lsd_c02121{letter-spacing:0.508464px;}
.ls2_c02121{letter-spacing:0.514080px;}
.ls11_c02121{letter-spacing:0.536976px;}
.lsc_c02121{letter-spacing:0.579744px;}
.ls13_c02121{letter-spacing:0.594000px;}
.lsa_c02121{letter-spacing:0.598752px;}
.ls4_c02121{letter-spacing:0.613008px;}
.ls0_c02121{letter-spacing:0.651024px;}
.lsf_c02121{letter-spacing:0.660528px;}
.ls1_c02121{letter-spacing:0.717552px;}
.ls5_c02121{letter-spacing:0.722304px;}
.sc__c02121{text-shadow:none;}
.sc0_c02121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02121{-webkit-text-stroke:0px transparent;}
.sc0_c02121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02121{word-spacing:-15.634080px;}
.wsc_c02121{word-spacing:-15.126048px;}
.wsa_c02121{word-spacing:-12.474000px;}
.ws9_c02121{word-spacing:-12.416976px;}
.ws4_c02121{word-spacing:-11.637648px;}
.ws2_c02121{word-spacing:-11.200464px;}
.ws15_c02121{word-spacing:-3.598560px;}
.ws11_c02121{word-spacing:-1.078704px;}
.ws12_c02121{word-spacing:-1.021680px;}
.wsf_c02121{word-spacing:-1.012176px;}
.wsd_c02121{word-spacing:-0.974160px;}
.ws10_c02121{word-spacing:-0.118800px;}
.ws13_c02121{word-spacing:-0.099792px;}
.ws14_c02121{word-spacing:-0.085536px;}
.wse_c02121{word-spacing:0.000000px;}
.ws8_c02121{word-spacing:36.143712px;}
.ws6_c02121{word-spacing:36.742464px;}
.ws1_c02121{word-spacing:37.759392px;}
.ws0_c02121{word-spacing:38.020752px;}
.ws3_c02121{word-spacing:39.218256px;}
.ws5_c02121{word-spacing:39.902544px;}
.ws7_c02121{word-spacing:42.026688px;}
._0_c02121{margin-left:-1.948320px;}
._2_c02121{width:1.482624px;}
._4_c02121{width:5.730912px;}
._1_c02121{width:50.252400px;}
._3_c02121{width:51.530688px;}
.fc0_c02121{color:rgb(0,0,0);}
.fs0_c02121{font-size:47.520000px;}
.fs1_c02121{font-size:60.480000px;}
.y0_c02121{bottom:0.000000px;}
.y10_c02121{bottom:20.880450px;}
.y1c_c02121{bottom:146.998362px;}
.y1e_c02121{bottom:186.600234px;}
.y1d_c02121{bottom:196.320450px;}
.y1b_c02121{bottom:275.878542px;}
.y1a_c02121{bottom:356.878758px;}
.y18_c02121{bottom:406.559730px;}
.y14_c02121{bottom:424.560306px;}
.y19_c02121{bottom:458.759262px;}
.y17_c02121{bottom:491.879514px;}
.y16_c02121{bottom:509.880090px;}
.y13_c02121{bottom:543.000342px;}
.y15_c02121{bottom:559.559874px;}
.y12_c02121{bottom:577.560450px;}
.y20_c02121{bottom:593.760000px;}
.y21_c02121{bottom:596.640450px;}
.y1f_c02121{bottom:614.280450px;}
.yb_c02121{bottom:667.558326px;}
.yd_c02121{bottom:707.160234px;}
.yc_c02121{bottom:716.880450px;}
.ya_c02121{bottom:796.438506px;}
.y9_c02121{bottom:877.438722px;}
.y7_c02121{bottom:926.759730px;}
.y3_c02121{bottom:944.760306px;}
.y8_c02121{bottom:979.319226px;}
.y6_c02121{bottom:1012.439478px;}
.y5_c02121{bottom:1030.440054px;}
.y2_c02121{bottom:1063.560306px;}
.y4_c02121{bottom:1079.759874px;}
.y1_c02121{bottom:1097.760450px;}
.yf_c02121{bottom:1114.320000px;}
.y11_c02121{bottom:1117.200450px;}
.ye_c02121{bottom:1134.840450px;}
.h3_c02121{height:32.530781px;}
.h5_c02121{height:36.720000px;}
.h4_c02121{height:41.402813px;}
.h1_c02121{height:41.696016px;}
.h2_c02121{height:41.812031px;}
.h7_c02121{height:53.067656px;}
.h6_c02121{height:53.215313px;}
.h0_c02121{height:1263.000000px;}
.w2_c02121{width:395.280000px;}
.w1_c02121{width:892.500000px;}
.w0_c02121{width:892.830000px;}
.x0_c02121{left:0.000000px;}
.xd_c02121{left:117.000000px;}
.xe_c02121{left:161.280000px;}
.x8_c02121{left:440.999856px;}
.x4_c02121{left:445.680576px;}
.xb_c02121{left:451.080000px;}
.x7_c02121{left:455.399604px;}
.x5_c02121{left:461.880144px;}
.x1_c02121{left:463.320000px;}
.xa_c02121{left:483.480360px;}
.x9_c02121{left:492.119496px;}
.x6_c02121{left:493.200576px;}
.xc_c02121{left:506.880360px;}
.x3_c02121{left:511.919892px;}
.x2_c02121{left:526.679604px;}
@media print{
.v0_c02121{vertical-align:0.000000pt;}
.ls9_c02121{letter-spacing:-0.604032pt;}
.lsb_c02121{letter-spacing:-0.511104pt;}
.ls12_c02121{letter-spacing:-0.244992pt;}
.ls10_c02121{letter-spacing:-0.232320pt;}
.ls8_c02121{letter-spacing:-0.215424pt;}
.ls6_c02121{letter-spacing:-0.105600pt;}
.ls14_c02121{letter-spacing:0.000000pt;}
.ls3_c02121{letter-spacing:0.005376pt;}
.ls7_c02121{letter-spacing:0.114048pt;}
.lse_c02121{letter-spacing:0.215424pt;}
.lsd_c02121{letter-spacing:0.451968pt;}
.ls2_c02121{letter-spacing:0.456960pt;}
.ls11_c02121{letter-spacing:0.477312pt;}
.lsc_c02121{letter-spacing:0.515328pt;}
.ls13_c02121{letter-spacing:0.528000pt;}
.lsa_c02121{letter-spacing:0.532224pt;}
.ls4_c02121{letter-spacing:0.544896pt;}
.ls0_c02121{letter-spacing:0.578688pt;}
.lsf_c02121{letter-spacing:0.587136pt;}
.ls1_c02121{letter-spacing:0.637824pt;}
.ls5_c02121{letter-spacing:0.642048pt;}
.wsb_c02121{word-spacing:-13.896960pt;}
.wsc_c02121{word-spacing:-13.445376pt;}
.wsa_c02121{word-spacing:-11.088000pt;}
.ws9_c02121{word-spacing:-11.037312pt;}
.ws4_c02121{word-spacing:-10.344576pt;}
.ws2_c02121{word-spacing:-9.955968pt;}
.ws15_c02121{word-spacing:-3.198720pt;}
.ws11_c02121{word-spacing:-0.958848pt;}
.ws12_c02121{word-spacing:-0.908160pt;}
.wsf_c02121{word-spacing:-0.899712pt;}
.wsd_c02121{word-spacing:-0.865920pt;}
.ws10_c02121{word-spacing:-0.105600pt;}
.ws13_c02121{word-spacing:-0.088704pt;}
.ws14_c02121{word-spacing:-0.076032pt;}
.wse_c02121{word-spacing:0.000000pt;}
.ws8_c02121{word-spacing:32.127744pt;}
.ws6_c02121{word-spacing:32.659968pt;}
.ws1_c02121{word-spacing:33.563904pt;}
.ws0_c02121{word-spacing:33.796224pt;}
.ws3_c02121{word-spacing:34.860672pt;}
.ws5_c02121{word-spacing:35.468928pt;}
.ws7_c02121{word-spacing:37.357056pt;}
._0_c02121{margin-left:-1.731840pt;}
._2_c02121{width:1.317888pt;}
._4_c02121{width:5.094144pt;}
._1_c02121{width:44.668800pt;}
._3_c02121{width:45.805056pt;}
.fs0_c02121{font-size:42.240000pt;}
.fs1_c02121{font-size:53.760000pt;}
.y0_c02121{bottom:0.000000pt;}
.y10_c02121{bottom:18.560400pt;}
.y1c_c02121{bottom:130.665211pt;}
.y1e_c02121{bottom:165.866875pt;}
.y1d_c02121{bottom:174.507067pt;}
.y1b_c02121{bottom:245.225371pt;}
.y1a_c02121{bottom:317.225563pt;}
.y18_c02121{bottom:361.386427pt;}
.y14_c02121{bottom:377.386939pt;}
.y19_c02121{bottom:407.786011pt;}
.y17_c02121{bottom:437.226235pt;}
.y16_c02121{bottom:453.226747pt;}
.y13_c02121{bottom:482.666971pt;}
.y15_c02121{bottom:497.386555pt;}
.y12_c02121{bottom:513.387067pt;}
.y20_c02121{bottom:527.786667pt;}
.y21_c02121{bottom:530.347067pt;}
.y1f_c02121{bottom:546.027067pt;}
.yb_c02121{bottom:593.385179pt;}
.yd_c02121{bottom:628.586875pt;}
.yc_c02121{bottom:637.227067pt;}
.ya_c02121{bottom:707.945339pt;}
.y9_c02121{bottom:779.945531pt;}
.y7_c02121{bottom:823.786427pt;}
.y3_c02121{bottom:839.786939pt;}
.y8_c02121{bottom:870.505979pt;}
.y6_c02121{bottom:899.946203pt;}
.y5_c02121{bottom:915.946715pt;}
.y2_c02121{bottom:945.386939pt;}
.y4_c02121{bottom:959.786555pt;}
.y1_c02121{bottom:975.787067pt;}
.yf_c02121{bottom:990.506667pt;}
.y11_c02121{bottom:993.067067pt;}
.ye_c02121{bottom:1008.747067pt;}
.h3_c02121{height:28.916250pt;}
.h5_c02121{height:32.640000pt;}
.h4_c02121{height:36.802500pt;}
.h1_c02121{height:37.063125pt;}
.h2_c02121{height:37.166250pt;}
.h7_c02121{height:47.171250pt;}
.h6_c02121{height:47.302500pt;}
.h0_c02121{height:1122.666667pt;}
.w2_c02121{width:351.360000pt;}
.w1_c02121{width:793.333333pt;}
.w0_c02121{width:793.626667pt;}
.x0_c02121{left:0.000000pt;}
.xd_c02121{left:104.000000pt;}
.xe_c02121{left:143.360000pt;}
.x8_c02121{left:391.999872pt;}
.x4_c02121{left:396.160512pt;}
.xb_c02121{left:400.960000pt;}
.x7_c02121{left:404.799648pt;}
.x5_c02121{left:410.560128pt;}
.x1_c02121{left:411.840000pt;}
.xa_c02121{left:429.760320pt;}
.x9_c02121{left:437.439552pt;}
.x6_c02121{left:438.400512pt;}
.xc_c02121{left:450.560320pt;}
.x3_c02121{left:455.039904pt;}
.x2_c02121{left:468.159648pt;}
}





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

.ir_c02122:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02122{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02122;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02122{font-family:ff1_c02122;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02122;src:url('chunks/assets/font_73aae7c20394f25567076659.woff2')format("woff");}.ff2_c02122{font-family:ff2_c02122;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02122;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02122{font-family:ff3_c02122;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02122{vertical-align:0.000000px;}
.lsa_c02122{letter-spacing:-0.679536px;}
.lsc_c02122{letter-spacing:-0.574992px;}
.ls12_c02122{letter-spacing:-0.275616px;}
.ls10_c02122{letter-spacing:-0.261360px;}
.ls9_c02122{letter-spacing:-0.242352px;}
.ls7_c02122{letter-spacing:-0.118800px;}
.ls14_c02122{letter-spacing:0.000000px;}
.ls3_c02122{letter-spacing:0.006048px;}
.ls8_c02122{letter-spacing:0.128304px;}
.lsf_c02122{letter-spacing:0.242352px;}
.lse_c02122{letter-spacing:0.508464px;}
.ls2_c02122{letter-spacing:0.514080px;}
.ls11_c02122{letter-spacing:0.536976px;}
.lsd_c02122{letter-spacing:0.579744px;}
.ls13_c02122{letter-spacing:0.594000px;}
.lsb_c02122{letter-spacing:0.598752px;}
.ls5_c02122{letter-spacing:0.613008px;}
.ls0_c02122{letter-spacing:0.651024px;}
.ls15_c02122{letter-spacing:0.660528px;}
.ls1_c02122{letter-spacing:0.684288px;}
.ls4_c02122{letter-spacing:0.717552px;}
.ls6_c02122{letter-spacing:0.722304px;}
.sc__c02122{text-shadow:none;}
.sc0_c02122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02122{-webkit-text-stroke:0px transparent;}
.sc0_c02122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02122{word-spacing:-15.634080px;}
.wsc_c02122{word-spacing:-15.126048px;}
.wsa_c02122{word-spacing:-12.474000px;}
.ws8_c02122{word-spacing:-12.459744px;}
.ws9_c02122{word-spacing:-12.416976px;}
.ws4_c02122{word-spacing:-11.637648px;}
.ws2_c02122{word-spacing:-11.200464px;}
.ws15_c02122{word-spacing:-3.598560px;}
.ws16_c02122{word-spacing:-1.078704px;}
.ws12_c02122{word-spacing:-1.045440px;}
.ws17_c02122{word-spacing:-1.021680px;}
.ws10_c02122{word-spacing:-1.012176px;}
.wse_c02122{word-spacing:-0.974160px;}
.ws11_c02122{word-spacing:-0.118800px;}
.ws13_c02122{word-spacing:-0.099792px;}
.ws14_c02122{word-spacing:-0.085536px;}
.wsf_c02122{word-spacing:0.000000px;}
.wsd_c02122{word-spacing:36.143712px;}
.ws6_c02122{word-spacing:36.742464px;}
.ws1_c02122{word-spacing:37.759392px;}
.ws0_c02122{word-spacing:38.020752px;}
.ws3_c02122{word-spacing:39.218256px;}
.ws5_c02122{word-spacing:39.902544px;}
.ws7_c02122{word-spacing:42.026688px;}
._0_c02122{margin-left:-1.948320px;}
._2_c02122{width:1.482624px;}
._4_c02122{width:5.730912px;}
._1_c02122{width:50.252400px;}
._3_c02122{width:51.530688px;}
.fc0_c02122{color:rgb(0,0,0);}
.fs0_c02122{font-size:47.520000px;}
.fs1_c02122{font-size:60.480000px;}
.y0_c02122{bottom:0.000000px;}
.y10_c02122{bottom:20.880450px;}
.y1c_c02122{bottom:146.998362px;}
.y1e_c02122{bottom:186.600234px;}
.y1d_c02122{bottom:196.320450px;}
.y1b_c02122{bottom:275.878542px;}
.y1a_c02122{bottom:356.878758px;}
.y18_c02122{bottom:406.559730px;}
.y14_c02122{bottom:424.560306px;}
.y19_c02122{bottom:458.759262px;}
.y17_c02122{bottom:491.879514px;}
.y16_c02122{bottom:509.880090px;}
.y13_c02122{bottom:543.000342px;}
.y15_c02122{bottom:559.559874px;}
.y12_c02122{bottom:577.560450px;}
.y20_c02122{bottom:593.760000px;}
.y21_c02122{bottom:596.640450px;}
.y1f_c02122{bottom:614.280450px;}
.yb_c02122{bottom:667.558326px;}
.yd_c02122{bottom:707.160234px;}
.yc_c02122{bottom:716.880450px;}
.ya_c02122{bottom:796.438506px;}
.y9_c02122{bottom:877.438722px;}
.y7_c02122{bottom:926.759730px;}
.y3_c02122{bottom:944.760306px;}
.y8_c02122{bottom:979.319226px;}
.y6_c02122{bottom:1012.439478px;}
.y5_c02122{bottom:1030.440054px;}
.y2_c02122{bottom:1063.560306px;}
.y4_c02122{bottom:1079.759874px;}
.y1_c02122{bottom:1097.760450px;}
.yf_c02122{bottom:1114.320000px;}
.y11_c02122{bottom:1117.200450px;}
.ye_c02122{bottom:1134.840450px;}
.h3_c02122{height:32.530781px;}
.h5_c02122{height:36.720000px;}
.h4_c02122{height:41.402813px;}
.h1_c02122{height:41.696016px;}
.h2_c02122{height:41.812031px;}
.h7_c02122{height:53.067656px;}
.h6_c02122{height:53.215313px;}
.h0_c02122{height:1263.000000px;}
.w2_c02122{width:395.280000px;}
.w1_c02122{width:892.500000px;}
.w0_c02122{width:892.830000px;}
.x0_c02122{left:0.000000px;}
.xd_c02122{left:117.000000px;}
.xe_c02122{left:161.280000px;}
.x8_c02122{left:440.999856px;}
.x4_c02122{left:445.680576px;}
.xb_c02122{left:451.080000px;}
.x7_c02122{left:455.399604px;}
.x5_c02122{left:461.880144px;}
.x1_c02122{left:463.320000px;}
.xa_c02122{left:483.480360px;}
.x9_c02122{left:492.119496px;}
.x6_c02122{left:493.200576px;}
.xc_c02122{left:506.880360px;}
.x3_c02122{left:511.919892px;}
.x2_c02122{left:526.679604px;}
@media print{
.v0_c02122{vertical-align:0.000000pt;}
.lsa_c02122{letter-spacing:-0.604032pt;}
.lsc_c02122{letter-spacing:-0.511104pt;}
.ls12_c02122{letter-spacing:-0.244992pt;}
.ls10_c02122{letter-spacing:-0.232320pt;}
.ls9_c02122{letter-spacing:-0.215424pt;}
.ls7_c02122{letter-spacing:-0.105600pt;}
.ls14_c02122{letter-spacing:0.000000pt;}
.ls3_c02122{letter-spacing:0.005376pt;}
.ls8_c02122{letter-spacing:0.114048pt;}
.lsf_c02122{letter-spacing:0.215424pt;}
.lse_c02122{letter-spacing:0.451968pt;}
.ls2_c02122{letter-spacing:0.456960pt;}
.ls11_c02122{letter-spacing:0.477312pt;}
.lsd_c02122{letter-spacing:0.515328pt;}
.ls13_c02122{letter-spacing:0.528000pt;}
.lsb_c02122{letter-spacing:0.532224pt;}
.ls5_c02122{letter-spacing:0.544896pt;}
.ls0_c02122{letter-spacing:0.578688pt;}
.ls15_c02122{letter-spacing:0.587136pt;}
.ls1_c02122{letter-spacing:0.608256pt;}
.ls4_c02122{letter-spacing:0.637824pt;}
.ls6_c02122{letter-spacing:0.642048pt;}
.wsb_c02122{word-spacing:-13.896960pt;}
.wsc_c02122{word-spacing:-13.445376pt;}
.wsa_c02122{word-spacing:-11.088000pt;}
.ws8_c02122{word-spacing:-11.075328pt;}
.ws9_c02122{word-spacing:-11.037312pt;}
.ws4_c02122{word-spacing:-10.344576pt;}
.ws2_c02122{word-spacing:-9.955968pt;}
.ws15_c02122{word-spacing:-3.198720pt;}
.ws16_c02122{word-spacing:-0.958848pt;}
.ws12_c02122{word-spacing:-0.929280pt;}
.ws17_c02122{word-spacing:-0.908160pt;}
.ws10_c02122{word-spacing:-0.899712pt;}
.wse_c02122{word-spacing:-0.865920pt;}
.ws11_c02122{word-spacing:-0.105600pt;}
.ws13_c02122{word-spacing:-0.088704pt;}
.ws14_c02122{word-spacing:-0.076032pt;}
.wsf_c02122{word-spacing:0.000000pt;}
.wsd_c02122{word-spacing:32.127744pt;}
.ws6_c02122{word-spacing:32.659968pt;}
.ws1_c02122{word-spacing:33.563904pt;}
.ws0_c02122{word-spacing:33.796224pt;}
.ws3_c02122{word-spacing:34.860672pt;}
.ws5_c02122{word-spacing:35.468928pt;}
.ws7_c02122{word-spacing:37.357056pt;}
._0_c02122{margin-left:-1.731840pt;}
._2_c02122{width:1.317888pt;}
._4_c02122{width:5.094144pt;}
._1_c02122{width:44.668800pt;}
._3_c02122{width:45.805056pt;}
.fs0_c02122{font-size:42.240000pt;}
.fs1_c02122{font-size:53.760000pt;}
.y0_c02122{bottom:0.000000pt;}
.y10_c02122{bottom:18.560400pt;}
.y1c_c02122{bottom:130.665211pt;}
.y1e_c02122{bottom:165.866875pt;}
.y1d_c02122{bottom:174.507067pt;}
.y1b_c02122{bottom:245.225371pt;}
.y1a_c02122{bottom:317.225563pt;}
.y18_c02122{bottom:361.386427pt;}
.y14_c02122{bottom:377.386939pt;}
.y19_c02122{bottom:407.786011pt;}
.y17_c02122{bottom:437.226235pt;}
.y16_c02122{bottom:453.226747pt;}
.y13_c02122{bottom:482.666971pt;}
.y15_c02122{bottom:497.386555pt;}
.y12_c02122{bottom:513.387067pt;}
.y20_c02122{bottom:527.786667pt;}
.y21_c02122{bottom:530.347067pt;}
.y1f_c02122{bottom:546.027067pt;}
.yb_c02122{bottom:593.385179pt;}
.yd_c02122{bottom:628.586875pt;}
.yc_c02122{bottom:637.227067pt;}
.ya_c02122{bottom:707.945339pt;}
.y9_c02122{bottom:779.945531pt;}
.y7_c02122{bottom:823.786427pt;}
.y3_c02122{bottom:839.786939pt;}
.y8_c02122{bottom:870.505979pt;}
.y6_c02122{bottom:899.946203pt;}
.y5_c02122{bottom:915.946715pt;}
.y2_c02122{bottom:945.386939pt;}
.y4_c02122{bottom:959.786555pt;}
.y1_c02122{bottom:975.787067pt;}
.yf_c02122{bottom:990.506667pt;}
.y11_c02122{bottom:993.067067pt;}
.ye_c02122{bottom:1008.747067pt;}
.h3_c02122{height:28.916250pt;}
.h5_c02122{height:32.640000pt;}
.h4_c02122{height:36.802500pt;}
.h1_c02122{height:37.063125pt;}
.h2_c02122{height:37.166250pt;}
.h7_c02122{height:47.171250pt;}
.h6_c02122{height:47.302500pt;}
.h0_c02122{height:1122.666667pt;}
.w2_c02122{width:351.360000pt;}
.w1_c02122{width:793.333333pt;}
.w0_c02122{width:793.626667pt;}
.x0_c02122{left:0.000000pt;}
.xd_c02122{left:104.000000pt;}
.xe_c02122{left:143.360000pt;}
.x8_c02122{left:391.999872pt;}
.x4_c02122{left:396.160512pt;}
.xb_c02122{left:400.960000pt;}
.x7_c02122{left:404.799648pt;}
.x5_c02122{left:410.560128pt;}
.x1_c02122{left:411.840000pt;}
.xa_c02122{left:429.760320pt;}
.x9_c02122{left:437.439552pt;}
.x6_c02122{left:438.400512pt;}
.xc_c02122{left:450.560320pt;}
.x3_c02122{left:455.039904pt;}
.x2_c02122{left:468.159648pt;}
}





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

.ir_c02123:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02123{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02123;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02123{font-family:ff1_c02123;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02123;src:url('chunks/assets/font_b5ec6c7ba41361608cb2ba15.woff2')format("woff");}.ff2_c02123{font-family:ff2_c02123;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02123;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02123{font-family:ff3_c02123;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02123{vertical-align:0.000000px;}
.ls9_c02123{letter-spacing:-0.679536px;}
.lsb_c02123{letter-spacing:-0.574992px;}
.ls12_c02123{letter-spacing:-0.275616px;}
.ls10_c02123{letter-spacing:-0.261360px;}
.ls8_c02123{letter-spacing:-0.242352px;}
.ls6_c02123{letter-spacing:-0.118800px;}
.ls14_c02123{letter-spacing:0.000000px;}
.ls2_c02123{letter-spacing:0.006048px;}
.ls7_c02123{letter-spacing:0.128304px;}
.lse_c02123{letter-spacing:0.242352px;}
.lsd_c02123{letter-spacing:0.508464px;}
.ls1_c02123{letter-spacing:0.514080px;}
.ls11_c02123{letter-spacing:0.536976px;}
.lsc_c02123{letter-spacing:0.579744px;}
.ls13_c02123{letter-spacing:0.594000px;}
.lsa_c02123{letter-spacing:0.598752px;}
.ls4_c02123{letter-spacing:0.613008px;}
.ls3_c02123{letter-spacing:0.651024px;}
.lsf_c02123{letter-spacing:0.660528px;}
.ls0_c02123{letter-spacing:0.717552px;}
.ls5_c02123{letter-spacing:0.722304px;}
.sc__c02123{text-shadow:none;}
.sc0_c02123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02123{-webkit-text-stroke:0px transparent;}
.sc0_c02123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02123{word-spacing:-15.634080px;}
.wsc_c02123{word-spacing:-15.126048px;}
.wsa_c02123{word-spacing:-12.474000px;}
.ws9_c02123{word-spacing:-12.416976px;}
.ws4_c02123{word-spacing:-11.637648px;}
.ws2_c02123{word-spacing:-11.200464px;}
.ws14_c02123{word-spacing:-3.598560px;}
.ws10_c02123{word-spacing:-1.078704px;}
.ws11_c02123{word-spacing:-1.021680px;}
.ws15_c02123{word-spacing:-1.012176px;}
.wsd_c02123{word-spacing:-0.974160px;}
.wsf_c02123{word-spacing:-0.118800px;}
.ws12_c02123{word-spacing:-0.099792px;}
.ws13_c02123{word-spacing:-0.085536px;}
.wse_c02123{word-spacing:0.000000px;}
.ws8_c02123{word-spacing:36.143712px;}
.ws6_c02123{word-spacing:36.742464px;}
.ws1_c02123{word-spacing:37.759392px;}
.ws0_c02123{word-spacing:38.020752px;}
.ws3_c02123{word-spacing:39.218256px;}
.ws5_c02123{word-spacing:39.902544px;}
.ws7_c02123{word-spacing:42.026688px;}
._0_c02123{margin-left:-1.948320px;}
._2_c02123{width:1.482624px;}
._4_c02123{width:5.730912px;}
._1_c02123{width:50.252400px;}
._3_c02123{width:51.530688px;}
.fc0_c02123{color:rgb(0,0,0);}
.fs0_c02123{font-size:47.520000px;}
.fs1_c02123{font-size:60.480000px;}
.y0_c02123{bottom:0.000000px;}
.y10_c02123{bottom:20.880450px;}
.y1c_c02123{bottom:146.998362px;}
.y1e_c02123{bottom:186.600234px;}
.y1d_c02123{bottom:196.320450px;}
.y1b_c02123{bottom:275.878542px;}
.y1a_c02123{bottom:356.878758px;}
.y18_c02123{bottom:406.559730px;}
.y14_c02123{bottom:424.560306px;}
.y19_c02123{bottom:458.759262px;}
.y17_c02123{bottom:491.879514px;}
.y16_c02123{bottom:509.880090px;}
.y13_c02123{bottom:543.000342px;}
.y15_c02123{bottom:559.559874px;}
.y12_c02123{bottom:577.560450px;}
.y20_c02123{bottom:593.760000px;}
.y21_c02123{bottom:596.640450px;}
.y1f_c02123{bottom:614.280450px;}
.yb_c02123{bottom:667.558326px;}
.yd_c02123{bottom:707.160234px;}
.yc_c02123{bottom:716.880450px;}
.ya_c02123{bottom:796.438506px;}
.y9_c02123{bottom:877.438722px;}
.y7_c02123{bottom:926.759730px;}
.y3_c02123{bottom:944.760306px;}
.y8_c02123{bottom:979.319226px;}
.y6_c02123{bottom:1012.439478px;}
.y5_c02123{bottom:1030.440054px;}
.y2_c02123{bottom:1063.560306px;}
.y4_c02123{bottom:1079.759874px;}
.y1_c02123{bottom:1097.760450px;}
.yf_c02123{bottom:1114.320000px;}
.y11_c02123{bottom:1117.200450px;}
.ye_c02123{bottom:1134.840450px;}
.h3_c02123{height:32.530781px;}
.h5_c02123{height:36.720000px;}
.h4_c02123{height:41.402813px;}
.h1_c02123{height:41.696016px;}
.h2_c02123{height:41.812031px;}
.h7_c02123{height:53.067656px;}
.h6_c02123{height:53.215313px;}
.h0_c02123{height:1263.000000px;}
.w2_c02123{width:395.280000px;}
.w1_c02123{width:892.500000px;}
.w0_c02123{width:892.830000px;}
.x0_c02123{left:0.000000px;}
.xd_c02123{left:117.000000px;}
.xe_c02123{left:161.280000px;}
.x8_c02123{left:440.999856px;}
.x4_c02123{left:445.680576px;}
.xb_c02123{left:451.080000px;}
.x7_c02123{left:455.399604px;}
.x5_c02123{left:461.880144px;}
.x1_c02123{left:463.320000px;}
.xa_c02123{left:483.480360px;}
.x9_c02123{left:492.119496px;}
.x6_c02123{left:493.200576px;}
.xc_c02123{left:506.880360px;}
.x3_c02123{left:511.919892px;}
.x2_c02123{left:526.679604px;}
@media print{
.v0_c02123{vertical-align:0.000000pt;}
.ls9_c02123{letter-spacing:-0.604032pt;}
.lsb_c02123{letter-spacing:-0.511104pt;}
.ls12_c02123{letter-spacing:-0.244992pt;}
.ls10_c02123{letter-spacing:-0.232320pt;}
.ls8_c02123{letter-spacing:-0.215424pt;}
.ls6_c02123{letter-spacing:-0.105600pt;}
.ls14_c02123{letter-spacing:0.000000pt;}
.ls2_c02123{letter-spacing:0.005376pt;}
.ls7_c02123{letter-spacing:0.114048pt;}
.lse_c02123{letter-spacing:0.215424pt;}
.lsd_c02123{letter-spacing:0.451968pt;}
.ls1_c02123{letter-spacing:0.456960pt;}
.ls11_c02123{letter-spacing:0.477312pt;}
.lsc_c02123{letter-spacing:0.515328pt;}
.ls13_c02123{letter-spacing:0.528000pt;}
.lsa_c02123{letter-spacing:0.532224pt;}
.ls4_c02123{letter-spacing:0.544896pt;}
.ls3_c02123{letter-spacing:0.578688pt;}
.lsf_c02123{letter-spacing:0.587136pt;}
.ls0_c02123{letter-spacing:0.637824pt;}
.ls5_c02123{letter-spacing:0.642048pt;}
.wsb_c02123{word-spacing:-13.896960pt;}
.wsc_c02123{word-spacing:-13.445376pt;}
.wsa_c02123{word-spacing:-11.088000pt;}
.ws9_c02123{word-spacing:-11.037312pt;}
.ws4_c02123{word-spacing:-10.344576pt;}
.ws2_c02123{word-spacing:-9.955968pt;}
.ws14_c02123{word-spacing:-3.198720pt;}
.ws10_c02123{word-spacing:-0.958848pt;}
.ws11_c02123{word-spacing:-0.908160pt;}
.ws15_c02123{word-spacing:-0.899712pt;}
.wsd_c02123{word-spacing:-0.865920pt;}
.wsf_c02123{word-spacing:-0.105600pt;}
.ws12_c02123{word-spacing:-0.088704pt;}
.ws13_c02123{word-spacing:-0.076032pt;}
.wse_c02123{word-spacing:0.000000pt;}
.ws8_c02123{word-spacing:32.127744pt;}
.ws6_c02123{word-spacing:32.659968pt;}
.ws1_c02123{word-spacing:33.563904pt;}
.ws0_c02123{word-spacing:33.796224pt;}
.ws3_c02123{word-spacing:34.860672pt;}
.ws5_c02123{word-spacing:35.468928pt;}
.ws7_c02123{word-spacing:37.357056pt;}
._0_c02123{margin-left:-1.731840pt;}
._2_c02123{width:1.317888pt;}
._4_c02123{width:5.094144pt;}
._1_c02123{width:44.668800pt;}
._3_c02123{width:45.805056pt;}
.fs0_c02123{font-size:42.240000pt;}
.fs1_c02123{font-size:53.760000pt;}
.y0_c02123{bottom:0.000000pt;}
.y10_c02123{bottom:18.560400pt;}
.y1c_c02123{bottom:130.665211pt;}
.y1e_c02123{bottom:165.866875pt;}
.y1d_c02123{bottom:174.507067pt;}
.y1b_c02123{bottom:245.225371pt;}
.y1a_c02123{bottom:317.225563pt;}
.y18_c02123{bottom:361.386427pt;}
.y14_c02123{bottom:377.386939pt;}
.y19_c02123{bottom:407.786011pt;}
.y17_c02123{bottom:437.226235pt;}
.y16_c02123{bottom:453.226747pt;}
.y13_c02123{bottom:482.666971pt;}
.y15_c02123{bottom:497.386555pt;}
.y12_c02123{bottom:513.387067pt;}
.y20_c02123{bottom:527.786667pt;}
.y21_c02123{bottom:530.347067pt;}
.y1f_c02123{bottom:546.027067pt;}
.yb_c02123{bottom:593.385179pt;}
.yd_c02123{bottom:628.586875pt;}
.yc_c02123{bottom:637.227067pt;}
.ya_c02123{bottom:707.945339pt;}
.y9_c02123{bottom:779.945531pt;}
.y7_c02123{bottom:823.786427pt;}
.y3_c02123{bottom:839.786939pt;}
.y8_c02123{bottom:870.505979pt;}
.y6_c02123{bottom:899.946203pt;}
.y5_c02123{bottom:915.946715pt;}
.y2_c02123{bottom:945.386939pt;}
.y4_c02123{bottom:959.786555pt;}
.y1_c02123{bottom:975.787067pt;}
.yf_c02123{bottom:990.506667pt;}
.y11_c02123{bottom:993.067067pt;}
.ye_c02123{bottom:1008.747067pt;}
.h3_c02123{height:28.916250pt;}
.h5_c02123{height:32.640000pt;}
.h4_c02123{height:36.802500pt;}
.h1_c02123{height:37.063125pt;}
.h2_c02123{height:37.166250pt;}
.h7_c02123{height:47.171250pt;}
.h6_c02123{height:47.302500pt;}
.h0_c02123{height:1122.666667pt;}
.w2_c02123{width:351.360000pt;}
.w1_c02123{width:793.333333pt;}
.w0_c02123{width:793.626667pt;}
.x0_c02123{left:0.000000pt;}
.xd_c02123{left:104.000000pt;}
.xe_c02123{left:143.360000pt;}
.x8_c02123{left:391.999872pt;}
.x4_c02123{left:396.160512pt;}
.xb_c02123{left:400.960000pt;}
.x7_c02123{left:404.799648pt;}
.x5_c02123{left:410.560128pt;}
.x1_c02123{left:411.840000pt;}
.xa_c02123{left:429.760320pt;}
.x9_c02123{left:437.439552pt;}
.x6_c02123{left:438.400512pt;}
.xc_c02123{left:450.560320pt;}
.x3_c02123{left:455.039904pt;}
.x2_c02123{left:468.159648pt;}
}





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

.ir_c02124:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02124{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02124;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02124{font-family:ff1_c02124;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02124;src:url('chunks/assets/font_edca2065a796318b02cf178c.woff2')format("woff");}.ff2_c02124{font-family:ff2_c02124;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02124;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02124{font-family:ff3_c02124;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02124{vertical-align:0.000000px;}
.lse_c02124{letter-spacing:-1.197504px;}
.ls14_c02124{letter-spacing:-0.736560px;}
.lsc_c02124{letter-spacing:-0.722304px;}
.ls18_c02124{letter-spacing:-0.613008px;}
.lsd_c02124{letter-spacing:-0.574992px;}
.ls19_c02124{letter-spacing:-0.361152px;}
.ls1a_c02124{letter-spacing:-0.275616px;}
.ls15_c02124{letter-spacing:-0.270864px;}
.ls12_c02124{letter-spacing:-0.261360px;}
.ls9_c02124{letter-spacing:-0.242352px;}
.lsa_c02124{letter-spacing:-0.237600px;}
.ls5_c02124{letter-spacing:-0.118800px;}
.ls17_c02124{letter-spacing:0.000000px;}
.ls1_c02124{letter-spacing:0.006048px;}
.ls7_c02124{letter-spacing:0.128304px;}
.ls11_c02124{letter-spacing:0.242352px;}
.ls10_c02124{letter-spacing:0.508464px;}
.ls0_c02124{letter-spacing:0.514080px;}
.ls13_c02124{letter-spacing:0.536976px;}
.lsf_c02124{letter-spacing:0.579744px;}
.ls16_c02124{letter-spacing:0.594000px;}
.lsb_c02124{letter-spacing:0.598752px;}
.ls3_c02124{letter-spacing:0.613008px;}
.ls2_c02124{letter-spacing:0.651024px;}
.ls6_c02124{letter-spacing:0.689040px;}
.ls8_c02124{letter-spacing:0.717552px;}
.ls4_c02124{letter-spacing:0.722304px;}
.sc__c02124{text-shadow:none;}
.sc0_c02124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02124{-webkit-text-stroke:0px transparent;}
.sc0_c02124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02124{word-spacing:-15.634080px;}
.wse_c02124{word-spacing:-15.126048px;}
.ws1_c02124{word-spacing:-12.569040px;}
.wsc_c02124{word-spacing:-12.474000px;}
.ws8_c02124{word-spacing:-12.459744px;}
.ws14_c02124{word-spacing:-12.416976px;}
.ws13_c02124{word-spacing:-12.388464px;}
.ws0_c02124{word-spacing:-11.761200px;}
.ws3_c02124{word-spacing:-11.642400px;}
.ws10_c02124{word-spacing:-11.266992px;}
.ws11_c02124{word-spacing:-11.157696px;}
.ws7_c02124{word-spacing:-10.682496px;}
.ws1b_c02124{word-spacing:-3.598560px;}
.ws1c_c02124{word-spacing:-1.012176px;}
.ws15_c02124{word-spacing:-0.974160px;}
.ws17_c02124{word-spacing:-0.118800px;}
.ws18_c02124{word-spacing:-0.099792px;}
.ws19_c02124{word-spacing:-0.090288px;}
.ws1a_c02124{word-spacing:-0.085536px;}
.ws16_c02124{word-spacing:0.000000px;}
.ws5_c02124{word-spacing:3.031776px;}
.wsb_c02124{word-spacing:6.629040px;}
.wsa_c02124{word-spacing:34.836912px;}
.ws12_c02124{word-spacing:36.742464px;}
.ws2_c02124{word-spacing:37.759392px;}
.wsf_c02124{word-spacing:38.020752px;}
.ws4_c02124{word-spacing:39.218256px;}
.ws6_c02124{word-spacing:39.902544px;}
.ws9_c02124{word-spacing:42.026688px;}
._0_c02124{margin-left:-1.948320px;}
._2_c02124{width:1.482624px;}
._7_c02124{width:2.523312px;}
._5_c02124{width:19.982160px;}
._6_c02124{width:23.451120px;}
._4_c02124{width:24.691392px;}
._1_c02124{width:50.252400px;}
._3_c02124{width:51.530688px;}
.fc0_c02124{color:rgb(0,0,0);}
.fs0_c02124{font-size:47.520000px;}
.fs1_c02124{font-size:60.480000px;}
.y0_c02124{bottom:0.000000px;}
.y4_c02124{bottom:18.360450px;}
.y13_c02124{bottom:20.880450px;}
.y1f_c02124{bottom:146.998362px;}
.y21_c02124{bottom:186.600234px;}
.y20_c02124{bottom:196.320450px;}
.y1e_c02124{bottom:275.878542px;}
.y1d_c02124{bottom:356.878758px;}
.y1b_c02124{bottom:406.559730px;}
.y17_c02124{bottom:424.560306px;}
.y1c_c02124{bottom:458.759262px;}
.y1a_c02124{bottom:491.879514px;}
.y19_c02124{bottom:509.880090px;}
.y16_c02124{bottom:543.000342px;}
.y18_c02124{bottom:559.559874px;}
.y15_c02124{bottom:577.560450px;}
.y23_c02124{bottom:593.760000px;}
.y24_c02124{bottom:596.640450px;}
.y22_c02124{bottom:614.280450px;}
.ye_c02124{bottom:652.438794px;}
.yd_c02124{bottom:667.558470px;}
.y10_c02124{bottom:707.160234px;}
.yf_c02124{bottom:716.880450px;}
.yc_c02124{bottom:796.438650px;}
.yb_c02124{bottom:877.438866px;}
.y9_c02124{bottom:926.759874px;}
.y5_c02124{bottom:944.760450px;}
.ya_c02124{bottom:979.319370px;}
.y8_c02124{bottom:1012.439622px;}
.y7_c02124{bottom:1030.440198px;}
.y3_c02124{bottom:1045.200000px;}
.y2_c02124{bottom:1063.560306px;}
.y6_c02124{bottom:1079.760018px;}
.y1_c02124{bottom:1097.760450px;}
.y12_c02124{bottom:1114.320000px;}
.y14_c02124{bottom:1117.200450px;}
.y11_c02124{bottom:1134.840450px;}
.h3_c02124{height:29.520000px;}
.h2_c02124{height:32.530781px;}
.h6_c02124{height:36.720000px;}
.h5_c02124{height:41.402813px;}
.h1_c02124{height:41.696016px;}
.h4_c02124{height:41.812031px;}
.h8_c02124{height:53.067656px;}
.h7_c02124{height:53.215313px;}
.h0_c02124{height:1263.000000px;}
.w2_c02124{width:215.280000px;}
.w3_c02124{width:395.280000px;}
.w1_c02124{width:892.500000px;}
.w0_c02124{width:892.830000px;}
.x0_c02124{left:0.000000px;}
.xe_c02124{left:117.000000px;}
.xf_c02124{left:161.280000px;}
.x9_c02124{left:440.999964px;}
.x5_c02124{left:445.680684px;}
.xc_c02124{left:451.080000px;}
.x8_c02124{left:455.399712px;}
.x6_c02124{left:461.880252px;}
.x1_c02124{left:463.320000px;}
.xb_c02124{left:483.480468px;}
.xa_c02124{left:492.119604px;}
.x7_c02124{left:493.200684px;}
.xd_c02124{left:506.880360px;}
.x4_c02124{left:511.920000px;}
.x2_c02124{left:526.679604px;}
.x3_c02124{left:569.520000px;}
@media print{
.v0_c02124{vertical-align:0.000000pt;}
.lse_c02124{letter-spacing:-1.064448pt;}
.ls14_c02124{letter-spacing:-0.654720pt;}
.lsc_c02124{letter-spacing:-0.642048pt;}
.ls18_c02124{letter-spacing:-0.544896pt;}
.lsd_c02124{letter-spacing:-0.511104pt;}
.ls19_c02124{letter-spacing:-0.321024pt;}
.ls1a_c02124{letter-spacing:-0.244992pt;}
.ls15_c02124{letter-spacing:-0.240768pt;}
.ls12_c02124{letter-spacing:-0.232320pt;}
.ls9_c02124{letter-spacing:-0.215424pt;}
.lsa_c02124{letter-spacing:-0.211200pt;}
.ls5_c02124{letter-spacing:-0.105600pt;}
.ls17_c02124{letter-spacing:0.000000pt;}
.ls1_c02124{letter-spacing:0.005376pt;}
.ls7_c02124{letter-spacing:0.114048pt;}
.ls11_c02124{letter-spacing:0.215424pt;}
.ls10_c02124{letter-spacing:0.451968pt;}
.ls0_c02124{letter-spacing:0.456960pt;}
.ls13_c02124{letter-spacing:0.477312pt;}
.lsf_c02124{letter-spacing:0.515328pt;}
.ls16_c02124{letter-spacing:0.528000pt;}
.lsb_c02124{letter-spacing:0.532224pt;}
.ls3_c02124{letter-spacing:0.544896pt;}
.ls2_c02124{letter-spacing:0.578688pt;}
.ls6_c02124{letter-spacing:0.612480pt;}
.ls8_c02124{letter-spacing:0.637824pt;}
.ls4_c02124{letter-spacing:0.642048pt;}
.wsd_c02124{word-spacing:-13.896960pt;}
.wse_c02124{word-spacing:-13.445376pt;}
.ws1_c02124{word-spacing:-11.172480pt;}
.wsc_c02124{word-spacing:-11.088000pt;}
.ws8_c02124{word-spacing:-11.075328pt;}
.ws14_c02124{word-spacing:-11.037312pt;}
.ws13_c02124{word-spacing:-11.011968pt;}
.ws0_c02124{word-spacing:-10.454400pt;}
.ws3_c02124{word-spacing:-10.348800pt;}
.ws10_c02124{word-spacing:-10.015104pt;}
.ws11_c02124{word-spacing:-9.917952pt;}
.ws7_c02124{word-spacing:-9.495552pt;}
.ws1b_c02124{word-spacing:-3.198720pt;}
.ws1c_c02124{word-spacing:-0.899712pt;}
.ws15_c02124{word-spacing:-0.865920pt;}
.ws17_c02124{word-spacing:-0.105600pt;}
.ws18_c02124{word-spacing:-0.088704pt;}
.ws19_c02124{word-spacing:-0.080256pt;}
.ws1a_c02124{word-spacing:-0.076032pt;}
.ws16_c02124{word-spacing:0.000000pt;}
.ws5_c02124{word-spacing:2.694912pt;}
.wsb_c02124{word-spacing:5.892480pt;}
.wsa_c02124{word-spacing:30.966144pt;}
.ws12_c02124{word-spacing:32.659968pt;}
.ws2_c02124{word-spacing:33.563904pt;}
.wsf_c02124{word-spacing:33.796224pt;}
.ws4_c02124{word-spacing:34.860672pt;}
.ws6_c02124{word-spacing:35.468928pt;}
.ws9_c02124{word-spacing:37.357056pt;}
._0_c02124{margin-left:-1.731840pt;}
._2_c02124{width:1.317888pt;}
._7_c02124{width:2.242944pt;}
._5_c02124{width:17.761920pt;}
._6_c02124{width:20.845440pt;}
._4_c02124{width:21.947904pt;}
._1_c02124{width:44.668800pt;}
._3_c02124{width:45.805056pt;}
.fs0_c02124{font-size:42.240000pt;}
.fs1_c02124{font-size:53.760000pt;}
.y0_c02124{bottom:0.000000pt;}
.y4_c02124{bottom:16.320400pt;}
.y13_c02124{bottom:18.560400pt;}
.y1f_c02124{bottom:130.665211pt;}
.y21_c02124{bottom:165.866875pt;}
.y20_c02124{bottom:174.507067pt;}
.y1e_c02124{bottom:245.225371pt;}
.y1d_c02124{bottom:317.225563pt;}
.y1b_c02124{bottom:361.386427pt;}
.y17_c02124{bottom:377.386939pt;}
.y1c_c02124{bottom:407.786011pt;}
.y1a_c02124{bottom:437.226235pt;}
.y19_c02124{bottom:453.226747pt;}
.y16_c02124{bottom:482.666971pt;}
.y18_c02124{bottom:497.386555pt;}
.y15_c02124{bottom:513.387067pt;}
.y23_c02124{bottom:527.786667pt;}
.y24_c02124{bottom:530.347067pt;}
.y22_c02124{bottom:546.027067pt;}
.ye_c02124{bottom:579.945595pt;}
.yd_c02124{bottom:593.385307pt;}
.y10_c02124{bottom:628.586875pt;}
.yf_c02124{bottom:637.227067pt;}
.yc_c02124{bottom:707.945467pt;}
.yb_c02124{bottom:779.945659pt;}
.y9_c02124{bottom:823.786555pt;}
.y5_c02124{bottom:839.787067pt;}
.ya_c02124{bottom:870.506107pt;}
.y8_c02124{bottom:899.946331pt;}
.y7_c02124{bottom:915.946843pt;}
.y3_c02124{bottom:929.066667pt;}
.y2_c02124{bottom:945.386939pt;}
.y6_c02124{bottom:959.786683pt;}
.y1_c02124{bottom:975.787067pt;}
.y12_c02124{bottom:990.506667pt;}
.y14_c02124{bottom:993.067067pt;}
.y11_c02124{bottom:1008.747067pt;}
.h3_c02124{height:26.240000pt;}
.h2_c02124{height:28.916250pt;}
.h6_c02124{height:32.640000pt;}
.h5_c02124{height:36.802500pt;}
.h1_c02124{height:37.063125pt;}
.h4_c02124{height:37.166250pt;}
.h8_c02124{height:47.171250pt;}
.h7_c02124{height:47.302500pt;}
.h0_c02124{height:1122.666667pt;}
.w2_c02124{width:191.360000pt;}
.w3_c02124{width:351.360000pt;}
.w1_c02124{width:793.333333pt;}
.w0_c02124{width:793.626667pt;}
.x0_c02124{left:0.000000pt;}
.xe_c02124{left:104.000000pt;}
.xf_c02124{left:143.360000pt;}
.x9_c02124{left:391.999968pt;}
.x5_c02124{left:396.160608pt;}
.xc_c02124{left:400.960000pt;}
.x8_c02124{left:404.799744pt;}
.x6_c02124{left:410.560224pt;}
.x1_c02124{left:411.840000pt;}
.xb_c02124{left:429.760416pt;}
.xa_c02124{left:437.439648pt;}
.x7_c02124{left:438.400608pt;}
.xd_c02124{left:450.560320pt;}
.x4_c02124{left:455.040000pt;}
.x2_c02124{left:468.159648pt;}
.x3_c02124{left:506.240000pt;}
}





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

.ir_c02125:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02125{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02125;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02125{font-family:ff1_c02125;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02125;src:url('chunks/assets/font_f9b5d25344ab8523b2d87324.woff2')format("woff");}.ff2_c02125{font-family:ff2_c02125;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02125;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02125{font-family:ff3_c02125;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02125{vertical-align:0.000000px;}
.lsb_c02125{letter-spacing:-0.722304px;}
.ls9_c02125{letter-spacing:-0.613008px;}
.lsc_c02125{letter-spacing:-0.574992px;}
.ls12_c02125{letter-spacing:-0.275616px;}
.ls10_c02125{letter-spacing:-0.261360px;}
.ls8_c02125{letter-spacing:-0.242352px;}
.ls6_c02125{letter-spacing:-0.118800px;}
.ls14_c02125{letter-spacing:0.000000px;}
.ls3_c02125{letter-spacing:0.006048px;}
.ls7_c02125{letter-spacing:0.128304px;}
.lsf_c02125{letter-spacing:0.242352px;}
.lse_c02125{letter-spacing:0.508464px;}
.ls2_c02125{letter-spacing:0.514080px;}
.ls11_c02125{letter-spacing:0.536976px;}
.lsd_c02125{letter-spacing:0.579744px;}
.ls13_c02125{letter-spacing:0.594000px;}
.lsa_c02125{letter-spacing:0.598752px;}
.ls4_c02125{letter-spacing:0.613008px;}
.ls0_c02125{letter-spacing:0.651024px;}
.ls1_c02125{letter-spacing:0.717552px;}
.ls5_c02125{letter-spacing:0.722304px;}
.sc__c02125{text-shadow:none;}
.sc0_c02125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02125{-webkit-text-stroke:0px transparent;}
.sc0_c02125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02125{word-spacing:-15.634080px;}
.wsc_c02125{word-spacing:-15.126048px;}
.wsa_c02125{word-spacing:-12.474000px;}
.ws8_c02125{word-spacing:-12.459744px;}
.ws9_c02125{word-spacing:-12.416976px;}
.wse_c02125{word-spacing:-11.637648px;}
.ws2_c02125{word-spacing:-11.266992px;}
.ws4_c02125{word-spacing:-11.157696px;}
.ws16_c02125{word-spacing:-3.598560px;}
.ws13_c02125{word-spacing:-1.078704px;}
.ws11_c02125{word-spacing:-1.012176px;}
.wsf_c02125{word-spacing:-0.974160px;}
.ws12_c02125{word-spacing:-0.118800px;}
.ws14_c02125{word-spacing:-0.099792px;}
.ws15_c02125{word-spacing:-0.085536px;}
.ws10_c02125{word-spacing:0.000000px;}
.wsd_c02125{word-spacing:1.330560px;}
.ws6_c02125{word-spacing:36.742464px;}
.ws1_c02125{word-spacing:37.759392px;}
.ws0_c02125{word-spacing:38.020752px;}
.ws3_c02125{word-spacing:39.218256px;}
.ws5_c02125{word-spacing:39.902544px;}
.ws7_c02125{word-spacing:42.026688px;}
._0_c02125{margin-left:-1.948320px;}
._2_c02125{width:1.482624px;}
._4_c02125{width:2.523312px;}
._5_c02125{width:6.263136px;}
._1_c02125{width:50.252400px;}
._3_c02125{width:51.530688px;}
.fc0_c02125{color:rgb(0,0,0);}
.fs0_c02125{font-size:47.520000px;}
.fs1_c02125{font-size:60.480000px;}
.y0_c02125{bottom:0.000000px;}
.y10_c02125{bottom:20.880450px;}
.y1c_c02125{bottom:146.998362px;}
.y1e_c02125{bottom:186.600234px;}
.y1d_c02125{bottom:196.320450px;}
.y1b_c02125{bottom:275.878542px;}
.y1a_c02125{bottom:356.878758px;}
.y18_c02125{bottom:406.559730px;}
.y14_c02125{bottom:424.560306px;}
.y19_c02125{bottom:458.759262px;}
.y17_c02125{bottom:491.879514px;}
.y16_c02125{bottom:509.880090px;}
.y13_c02125{bottom:543.000342px;}
.y15_c02125{bottom:559.559874px;}
.y12_c02125{bottom:577.560450px;}
.y20_c02125{bottom:593.760000px;}
.y21_c02125{bottom:596.640450px;}
.y1f_c02125{bottom:614.280450px;}
.yb_c02125{bottom:667.558326px;}
.yd_c02125{bottom:707.160234px;}
.yc_c02125{bottom:716.880450px;}
.ya_c02125{bottom:796.438506px;}
.y9_c02125{bottom:877.438722px;}
.y7_c02125{bottom:926.759730px;}
.y3_c02125{bottom:944.760306px;}
.y8_c02125{bottom:979.319226px;}
.y6_c02125{bottom:1012.439478px;}
.y5_c02125{bottom:1030.440054px;}
.y2_c02125{bottom:1063.560306px;}
.y4_c02125{bottom:1079.759874px;}
.y1_c02125{bottom:1097.760450px;}
.yf_c02125{bottom:1114.320000px;}
.y11_c02125{bottom:1117.200450px;}
.ye_c02125{bottom:1134.840450px;}
.h3_c02125{height:32.530781px;}
.h5_c02125{height:36.720000px;}
.h4_c02125{height:41.402813px;}
.h1_c02125{height:41.696016px;}
.h2_c02125{height:41.812031px;}
.h7_c02125{height:53.067656px;}
.h6_c02125{height:53.215313px;}
.h0_c02125{height:1263.000000px;}
.w2_c02125{width:395.280000px;}
.w1_c02125{width:892.500000px;}
.w0_c02125{width:892.830000px;}
.x0_c02125{left:0.000000px;}
.xd_c02125{left:117.000000px;}
.xe_c02125{left:161.280000px;}
.x8_c02125{left:440.999856px;}
.x4_c02125{left:445.680576px;}
.xb_c02125{left:451.080000px;}
.x7_c02125{left:455.399604px;}
.x5_c02125{left:461.880144px;}
.x1_c02125{left:463.320000px;}
.xa_c02125{left:483.480360px;}
.x9_c02125{left:492.119496px;}
.x6_c02125{left:493.200576px;}
.xc_c02125{left:506.880360px;}
.x3_c02125{left:511.919892px;}
.x2_c02125{left:526.679604px;}
@media print{
.v0_c02125{vertical-align:0.000000pt;}
.lsb_c02125{letter-spacing:-0.642048pt;}
.ls9_c02125{letter-spacing:-0.544896pt;}
.lsc_c02125{letter-spacing:-0.511104pt;}
.ls12_c02125{letter-spacing:-0.244992pt;}
.ls10_c02125{letter-spacing:-0.232320pt;}
.ls8_c02125{letter-spacing:-0.215424pt;}
.ls6_c02125{letter-spacing:-0.105600pt;}
.ls14_c02125{letter-spacing:0.000000pt;}
.ls3_c02125{letter-spacing:0.005376pt;}
.ls7_c02125{letter-spacing:0.114048pt;}
.lsf_c02125{letter-spacing:0.215424pt;}
.lse_c02125{letter-spacing:0.451968pt;}
.ls2_c02125{letter-spacing:0.456960pt;}
.ls11_c02125{letter-spacing:0.477312pt;}
.lsd_c02125{letter-spacing:0.515328pt;}
.ls13_c02125{letter-spacing:0.528000pt;}
.lsa_c02125{letter-spacing:0.532224pt;}
.ls4_c02125{letter-spacing:0.544896pt;}
.ls0_c02125{letter-spacing:0.578688pt;}
.ls1_c02125{letter-spacing:0.637824pt;}
.ls5_c02125{letter-spacing:0.642048pt;}
.wsb_c02125{word-spacing:-13.896960pt;}
.wsc_c02125{word-spacing:-13.445376pt;}
.wsa_c02125{word-spacing:-11.088000pt;}
.ws8_c02125{word-spacing:-11.075328pt;}
.ws9_c02125{word-spacing:-11.037312pt;}
.wse_c02125{word-spacing:-10.344576pt;}
.ws2_c02125{word-spacing:-10.015104pt;}
.ws4_c02125{word-spacing:-9.917952pt;}
.ws16_c02125{word-spacing:-3.198720pt;}
.ws13_c02125{word-spacing:-0.958848pt;}
.ws11_c02125{word-spacing:-0.899712pt;}
.wsf_c02125{word-spacing:-0.865920pt;}
.ws12_c02125{word-spacing:-0.105600pt;}
.ws14_c02125{word-spacing:-0.088704pt;}
.ws15_c02125{word-spacing:-0.076032pt;}
.ws10_c02125{word-spacing:0.000000pt;}
.wsd_c02125{word-spacing:1.182720pt;}
.ws6_c02125{word-spacing:32.659968pt;}
.ws1_c02125{word-spacing:33.563904pt;}
.ws0_c02125{word-spacing:33.796224pt;}
.ws3_c02125{word-spacing:34.860672pt;}
.ws5_c02125{word-spacing:35.468928pt;}
.ws7_c02125{word-spacing:37.357056pt;}
._0_c02125{margin-left:-1.731840pt;}
._2_c02125{width:1.317888pt;}
._4_c02125{width:2.242944pt;}
._5_c02125{width:5.567232pt;}
._1_c02125{width:44.668800pt;}
._3_c02125{width:45.805056pt;}
.fs0_c02125{font-size:42.240000pt;}
.fs1_c02125{font-size:53.760000pt;}
.y0_c02125{bottom:0.000000pt;}
.y10_c02125{bottom:18.560400pt;}
.y1c_c02125{bottom:130.665211pt;}
.y1e_c02125{bottom:165.866875pt;}
.y1d_c02125{bottom:174.507067pt;}
.y1b_c02125{bottom:245.225371pt;}
.y1a_c02125{bottom:317.225563pt;}
.y18_c02125{bottom:361.386427pt;}
.y14_c02125{bottom:377.386939pt;}
.y19_c02125{bottom:407.786011pt;}
.y17_c02125{bottom:437.226235pt;}
.y16_c02125{bottom:453.226747pt;}
.y13_c02125{bottom:482.666971pt;}
.y15_c02125{bottom:497.386555pt;}
.y12_c02125{bottom:513.387067pt;}
.y20_c02125{bottom:527.786667pt;}
.y21_c02125{bottom:530.347067pt;}
.y1f_c02125{bottom:546.027067pt;}
.yb_c02125{bottom:593.385179pt;}
.yd_c02125{bottom:628.586875pt;}
.yc_c02125{bottom:637.227067pt;}
.ya_c02125{bottom:707.945339pt;}
.y9_c02125{bottom:779.945531pt;}
.y7_c02125{bottom:823.786427pt;}
.y3_c02125{bottom:839.786939pt;}
.y8_c02125{bottom:870.505979pt;}
.y6_c02125{bottom:899.946203pt;}
.y5_c02125{bottom:915.946715pt;}
.y2_c02125{bottom:945.386939pt;}
.y4_c02125{bottom:959.786555pt;}
.y1_c02125{bottom:975.787067pt;}
.yf_c02125{bottom:990.506667pt;}
.y11_c02125{bottom:993.067067pt;}
.ye_c02125{bottom:1008.747067pt;}
.h3_c02125{height:28.916250pt;}
.h5_c02125{height:32.640000pt;}
.h4_c02125{height:36.802500pt;}
.h1_c02125{height:37.063125pt;}
.h2_c02125{height:37.166250pt;}
.h7_c02125{height:47.171250pt;}
.h6_c02125{height:47.302500pt;}
.h0_c02125{height:1122.666667pt;}
.w2_c02125{width:351.360000pt;}
.w1_c02125{width:793.333333pt;}
.w0_c02125{width:793.626667pt;}
.x0_c02125{left:0.000000pt;}
.xd_c02125{left:104.000000pt;}
.xe_c02125{left:143.360000pt;}
.x8_c02125{left:391.999872pt;}
.x4_c02125{left:396.160512pt;}
.xb_c02125{left:400.960000pt;}
.x7_c02125{left:404.799648pt;}
.x5_c02125{left:410.560128pt;}
.x1_c02125{left:411.840000pt;}
.xa_c02125{left:429.760320pt;}
.x9_c02125{left:437.439552pt;}
.x6_c02125{left:438.400512pt;}
.xc_c02125{left:450.560320pt;}
.x3_c02125{left:455.039904pt;}
.x2_c02125{left:468.159648pt;}
}





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

.ir_c02126:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02126{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02126;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02126{font-family:ff1_c02126;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02126;src:url('chunks/assets/font_8a476091d432733f99630b49.woff2')format("woff");}.ff2_c02126{font-family:ff2_c02126;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02126;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02126{font-family:ff3_c02126;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02126{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02126{vertical-align:0.000000px;}
.ls11_c02126{letter-spacing:-0.803088px;}
.lsa_c02126{letter-spacing:-0.755568px;}
.lsb_c02126{letter-spacing:-0.574992px;}
.ls12_c02126{letter-spacing:-0.275616px;}
.lsf_c02126{letter-spacing:-0.261360px;}
.ls15_c02126{letter-spacing:-0.256608px;}
.ls8_c02126{letter-spacing:-0.242352px;}
.ls6_c02126{letter-spacing:-0.118800px;}
.ls14_c02126{letter-spacing:0.000000px;}
.ls3_c02126{letter-spacing:0.006048px;}
.ls7_c02126{letter-spacing:0.128304px;}
.lse_c02126{letter-spacing:0.242352px;}
.lsd_c02126{letter-spacing:0.508464px;}
.ls2_c02126{letter-spacing:0.514080px;}
.ls10_c02126{letter-spacing:0.536976px;}
.lsc_c02126{letter-spacing:0.579744px;}
.ls13_c02126{letter-spacing:0.594000px;}
.ls9_c02126{letter-spacing:0.598752px;}
.ls4_c02126{letter-spacing:0.613008px;}
.ls0_c02126{letter-spacing:0.651024px;}
.ls1_c02126{letter-spacing:0.717552px;}
.ls5_c02126{letter-spacing:0.722304px;}
.sc__c02126{text-shadow:none;}
.sc0_c02126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02126{-webkit-text-stroke:0px transparent;}
.sc0_c02126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02126{word-spacing:-15.634080px;}
.wsb_c02126{word-spacing:-15.126048px;}
.ws9_c02126{word-spacing:-12.474000px;}
.ws7_c02126{word-spacing:-12.459744px;}
.ws15_c02126{word-spacing:-3.598560px;}
.ws11_c02126{word-spacing:-1.078704px;}
.wse_c02126{word-spacing:-1.012176px;}
.wsc_c02126{word-spacing:-0.974160px;}
.wsf_c02126{word-spacing:-0.118800px;}
.ws16_c02126{word-spacing:-0.104544px;}
.ws12_c02126{word-spacing:-0.099792px;}
.ws14_c02126{word-spacing:-0.085536px;}
.wsd_c02126{word-spacing:0.000000px;}
.ws10_c02126{word-spacing:0.394416px;}
.ws13_c02126{word-spacing:0.441936px;}
.ws2_c02126{word-spacing:1.330560px;}
.ws8_c02126{word-spacing:34.836912px;}
.ws5_c02126{word-spacing:36.742464px;}
.ws1_c02126{word-spacing:37.759392px;}
.ws0_c02126{word-spacing:38.020752px;}
.ws3_c02126{word-spacing:39.218256px;}
.ws4_c02126{word-spacing:39.902544px;}
.ws6_c02126{word-spacing:42.026688px;}
._0_c02126{margin-left:-1.948320px;}
._2_c02126{width:1.482624px;}
._5_c02126{width:2.917728px;}
._4_c02126{width:4.462128px;}
._1_c02126{width:50.252400px;}
._3_c02126{width:51.530688px;}
.fc0_c02126{color:rgb(0,0,0);}
.fs0_c02126{font-size:47.520000px;}
.fs1_c02126{font-size:60.480000px;}
.y0_c02126{bottom:0.000000px;}
.y10_c02126{bottom:20.880450px;}
.y1c_c02126{bottom:146.998362px;}
.y1e_c02126{bottom:186.600234px;}
.y1d_c02126{bottom:196.320450px;}
.y1b_c02126{bottom:275.878542px;}
.y1a_c02126{bottom:356.878758px;}
.y18_c02126{bottom:406.559730px;}
.y14_c02126{bottom:424.560306px;}
.y19_c02126{bottom:458.759262px;}
.y17_c02126{bottom:491.879514px;}
.y16_c02126{bottom:509.880090px;}
.y13_c02126{bottom:543.000342px;}
.y15_c02126{bottom:559.559874px;}
.y12_c02126{bottom:577.560450px;}
.y20_c02126{bottom:593.760000px;}
.y21_c02126{bottom:596.640450px;}
.y1f_c02126{bottom:614.280450px;}
.yb_c02126{bottom:667.558326px;}
.yd_c02126{bottom:707.160234px;}
.yc_c02126{bottom:716.880450px;}
.ya_c02126{bottom:796.438506px;}
.y9_c02126{bottom:877.438722px;}
.y7_c02126{bottom:926.759730px;}
.y3_c02126{bottom:944.760306px;}
.y8_c02126{bottom:979.319226px;}
.y6_c02126{bottom:1012.439478px;}
.y5_c02126{bottom:1030.440054px;}
.y2_c02126{bottom:1063.560306px;}
.y4_c02126{bottom:1079.759874px;}
.y1_c02126{bottom:1097.760450px;}
.yf_c02126{bottom:1114.320000px;}
.y11_c02126{bottom:1117.200450px;}
.ye_c02126{bottom:1134.840450px;}
.h3_c02126{height:32.530781px;}
.h5_c02126{height:36.720000px;}
.h4_c02126{height:41.402813px;}
.h1_c02126{height:41.696016px;}
.h2_c02126{height:41.812031px;}
.h7_c02126{height:53.067656px;}
.h6_c02126{height:53.215313px;}
.h0_c02126{height:1263.000000px;}
.w2_c02126{width:395.280000px;}
.w1_c02126{width:892.500000px;}
.w0_c02126{width:892.830000px;}
.x0_c02126{left:0.000000px;}
.xd_c02126{left:117.000000px;}
.xe_c02126{left:161.280000px;}
.x8_c02126{left:440.999856px;}
.x4_c02126{left:445.680576px;}
.xb_c02126{left:451.080000px;}
.x7_c02126{left:455.399604px;}
.x5_c02126{left:461.880144px;}
.x1_c02126{left:463.320000px;}
.xa_c02126{left:483.480360px;}
.x9_c02126{left:492.119496px;}
.x6_c02126{left:493.200576px;}
.xc_c02126{left:506.880360px;}
.x3_c02126{left:511.919892px;}
.x2_c02126{left:526.679604px;}
@media print{
.v0_c02126{vertical-align:0.000000pt;}
.ls11_c02126{letter-spacing:-0.713856pt;}
.lsa_c02126{letter-spacing:-0.671616pt;}
.lsb_c02126{letter-spacing:-0.511104pt;}
.ls12_c02126{letter-spacing:-0.244992pt;}
.lsf_c02126{letter-spacing:-0.232320pt;}
.ls15_c02126{letter-spacing:-0.228096pt;}
.ls8_c02126{letter-spacing:-0.215424pt;}
.ls6_c02126{letter-spacing:-0.105600pt;}
.ls14_c02126{letter-spacing:0.000000pt;}
.ls3_c02126{letter-spacing:0.005376pt;}
.ls7_c02126{letter-spacing:0.114048pt;}
.lse_c02126{letter-spacing:0.215424pt;}
.lsd_c02126{letter-spacing:0.451968pt;}
.ls2_c02126{letter-spacing:0.456960pt;}
.ls10_c02126{letter-spacing:0.477312pt;}
.lsc_c02126{letter-spacing:0.515328pt;}
.ls13_c02126{letter-spacing:0.528000pt;}
.ls9_c02126{letter-spacing:0.532224pt;}
.ls4_c02126{letter-spacing:0.544896pt;}
.ls0_c02126{letter-spacing:0.578688pt;}
.ls1_c02126{letter-spacing:0.637824pt;}
.ls5_c02126{letter-spacing:0.642048pt;}
.wsa_c02126{word-spacing:-13.896960pt;}
.wsb_c02126{word-spacing:-13.445376pt;}
.ws9_c02126{word-spacing:-11.088000pt;}
.ws7_c02126{word-spacing:-11.075328pt;}
.ws15_c02126{word-spacing:-3.198720pt;}
.ws11_c02126{word-spacing:-0.958848pt;}
.wse_c02126{word-spacing:-0.899712pt;}
.wsc_c02126{word-spacing:-0.865920pt;}
.wsf_c02126{word-spacing:-0.105600pt;}
.ws16_c02126{word-spacing:-0.092928pt;}
.ws12_c02126{word-spacing:-0.088704pt;}
.ws14_c02126{word-spacing:-0.076032pt;}
.wsd_c02126{word-spacing:0.000000pt;}
.ws10_c02126{word-spacing:0.350592pt;}
.ws13_c02126{word-spacing:0.392832pt;}
.ws2_c02126{word-spacing:1.182720pt;}
.ws8_c02126{word-spacing:30.966144pt;}
.ws5_c02126{word-spacing:32.659968pt;}
.ws1_c02126{word-spacing:33.563904pt;}
.ws0_c02126{word-spacing:33.796224pt;}
.ws3_c02126{word-spacing:34.860672pt;}
.ws4_c02126{word-spacing:35.468928pt;}
.ws6_c02126{word-spacing:37.357056pt;}
._0_c02126{margin-left:-1.731840pt;}
._2_c02126{width:1.317888pt;}
._5_c02126{width:2.593536pt;}
._4_c02126{width:3.966336pt;}
._1_c02126{width:44.668800pt;}
._3_c02126{width:45.805056pt;}
.fs0_c02126{font-size:42.240000pt;}
.fs1_c02126{font-size:53.760000pt;}
.y0_c02126{bottom:0.000000pt;}
.y10_c02126{bottom:18.560400pt;}
.y1c_c02126{bottom:130.665211pt;}
.y1e_c02126{bottom:165.866875pt;}
.y1d_c02126{bottom:174.507067pt;}
.y1b_c02126{bottom:245.225371pt;}
.y1a_c02126{bottom:317.225563pt;}
.y18_c02126{bottom:361.386427pt;}
.y14_c02126{bottom:377.386939pt;}
.y19_c02126{bottom:407.786011pt;}
.y17_c02126{bottom:437.226235pt;}
.y16_c02126{bottom:453.226747pt;}
.y13_c02126{bottom:482.666971pt;}
.y15_c02126{bottom:497.386555pt;}
.y12_c02126{bottom:513.387067pt;}
.y20_c02126{bottom:527.786667pt;}
.y21_c02126{bottom:530.347067pt;}
.y1f_c02126{bottom:546.027067pt;}
.yb_c02126{bottom:593.385179pt;}
.yd_c02126{bottom:628.586875pt;}
.yc_c02126{bottom:637.227067pt;}
.ya_c02126{bottom:707.945339pt;}
.y9_c02126{bottom:779.945531pt;}
.y7_c02126{bottom:823.786427pt;}
.y3_c02126{bottom:839.786939pt;}
.y8_c02126{bottom:870.505979pt;}
.y6_c02126{bottom:899.946203pt;}
.y5_c02126{bottom:915.946715pt;}
.y2_c02126{bottom:945.386939pt;}
.y4_c02126{bottom:959.786555pt;}
.y1_c02126{bottom:975.787067pt;}
.yf_c02126{bottom:990.506667pt;}
.y11_c02126{bottom:993.067067pt;}
.ye_c02126{bottom:1008.747067pt;}
.h3_c02126{height:28.916250pt;}
.h5_c02126{height:32.640000pt;}
.h4_c02126{height:36.802500pt;}
.h1_c02126{height:37.063125pt;}
.h2_c02126{height:37.166250pt;}
.h7_c02126{height:47.171250pt;}
.h6_c02126{height:47.302500pt;}
.h0_c02126{height:1122.666667pt;}
.w2_c02126{width:351.360000pt;}
.w1_c02126{width:793.333333pt;}
.w0_c02126{width:793.626667pt;}
.x0_c02126{left:0.000000pt;}
.xd_c02126{left:104.000000pt;}
.xe_c02126{left:143.360000pt;}
.x8_c02126{left:391.999872pt;}
.x4_c02126{left:396.160512pt;}
.xb_c02126{left:400.960000pt;}
.x7_c02126{left:404.799648pt;}
.x5_c02126{left:410.560128pt;}
.x1_c02126{left:411.840000pt;}
.xa_c02126{left:429.760320pt;}
.x9_c02126{left:437.439552pt;}
.x6_c02126{left:438.400512pt;}
.xc_c02126{left:450.560320pt;}
.x3_c02126{left:455.039904pt;}
.x2_c02126{left:468.159648pt;}
}





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

.ir_c02127:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02127{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02127;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02127{font-family:ff1_c02127;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02127;src:url('chunks/assets/font_abb9c13f032450e670a9feee.woff2')format("woff");}.ff2_c02127{font-family:ff2_c02127;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02127;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02127{font-family:ff3_c02127;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02127{vertical-align:0.000000px;}
.ls11_c02127{letter-spacing:-0.803088px;}
.lsb_c02127{letter-spacing:-0.574992px;}
.ls12_c02127{letter-spacing:-0.275616px;}
.lsf_c02127{letter-spacing:-0.261360px;}
.lsa_c02127{letter-spacing:-0.256608px;}
.ls8_c02127{letter-spacing:-0.242352px;}
.ls6_c02127{letter-spacing:-0.118800px;}
.ls14_c02127{letter-spacing:0.000000px;}
.ls3_c02127{letter-spacing:0.006048px;}
.ls7_c02127{letter-spacing:0.128304px;}
.lse_c02127{letter-spacing:0.242352px;}
.lsd_c02127{letter-spacing:0.508464px;}
.ls2_c02127{letter-spacing:0.514080px;}
.ls10_c02127{letter-spacing:0.536976px;}
.lsc_c02127{letter-spacing:0.579744px;}
.ls13_c02127{letter-spacing:0.594000px;}
.ls9_c02127{letter-spacing:0.598752px;}
.ls4_c02127{letter-spacing:0.613008px;}
.ls0_c02127{letter-spacing:0.651024px;}
.ls1_c02127{letter-spacing:0.717552px;}
.ls5_c02127{letter-spacing:0.722304px;}
.sc__c02127{text-shadow:none;}
.sc0_c02127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02127{-webkit-text-stroke:0px transparent;}
.sc0_c02127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02127{word-spacing:-15.634080px;}
.wsb_c02127{word-spacing:-15.126048px;}
.ws9_c02127{word-spacing:-12.474000px;}
.ws7_c02127{word-spacing:-12.459744px;}
.wsc_c02127{word-spacing:-12.416976px;}
.ws16_c02127{word-spacing:-3.598560px;}
.ws12_c02127{word-spacing:-1.078704px;}
.wsf_c02127{word-spacing:-1.012176px;}
.wsd_c02127{word-spacing:-0.974160px;}
.ws10_c02127{word-spacing:-0.118800px;}
.ws11_c02127{word-spacing:-0.104544px;}
.ws13_c02127{word-spacing:-0.099792px;}
.ws15_c02127{word-spacing:-0.085536px;}
.wse_c02127{word-spacing:0.000000px;}
.ws14_c02127{word-spacing:0.441936px;}
.ws2_c02127{word-spacing:1.330560px;}
.ws8_c02127{word-spacing:34.836912px;}
.ws5_c02127{word-spacing:36.742464px;}
.ws1_c02127{word-spacing:37.759392px;}
.ws0_c02127{word-spacing:38.020752px;}
.ws3_c02127{word-spacing:39.218256px;}
.ws4_c02127{word-spacing:39.902544px;}
.ws6_c02127{word-spacing:42.026688px;}
._0_c02127{margin-left:-1.948320px;}
._2_c02127{width:1.482624px;}
._4_c02127{width:2.917728px;}
._1_c02127{width:50.252400px;}
._3_c02127{width:51.530688px;}
.fc0_c02127{color:rgb(0,0,0);}
.fs0_c02127{font-size:47.520000px;}
.fs1_c02127{font-size:60.480000px;}
.y0_c02127{bottom:0.000000px;}
.y10_c02127{bottom:20.880450px;}
.y1c_c02127{bottom:146.998362px;}
.y1e_c02127{bottom:186.600234px;}
.y1d_c02127{bottom:196.320450px;}
.y1b_c02127{bottom:275.878542px;}
.y1a_c02127{bottom:356.878758px;}
.y18_c02127{bottom:406.559730px;}
.y14_c02127{bottom:424.560306px;}
.y19_c02127{bottom:458.759262px;}
.y17_c02127{bottom:491.879514px;}
.y16_c02127{bottom:509.880090px;}
.y13_c02127{bottom:543.000342px;}
.y15_c02127{bottom:559.559874px;}
.y12_c02127{bottom:577.560450px;}
.y20_c02127{bottom:593.760000px;}
.y21_c02127{bottom:596.640450px;}
.y1f_c02127{bottom:614.280450px;}
.yb_c02127{bottom:667.558326px;}
.yd_c02127{bottom:707.160234px;}
.yc_c02127{bottom:716.880450px;}
.ya_c02127{bottom:796.438506px;}
.y9_c02127{bottom:877.438722px;}
.y7_c02127{bottom:926.759730px;}
.y3_c02127{bottom:944.760306px;}
.y8_c02127{bottom:979.319226px;}
.y6_c02127{bottom:1012.439478px;}
.y5_c02127{bottom:1030.440054px;}
.y2_c02127{bottom:1063.560306px;}
.y4_c02127{bottom:1079.759874px;}
.y1_c02127{bottom:1097.760450px;}
.yf_c02127{bottom:1114.320000px;}
.y11_c02127{bottom:1117.200450px;}
.ye_c02127{bottom:1134.840450px;}
.h3_c02127{height:32.530781px;}
.h5_c02127{height:36.720000px;}
.h4_c02127{height:41.402813px;}
.h1_c02127{height:41.696016px;}
.h2_c02127{height:41.812031px;}
.h7_c02127{height:53.067656px;}
.h6_c02127{height:53.215313px;}
.h0_c02127{height:1263.000000px;}
.w2_c02127{width:395.280000px;}
.w1_c02127{width:892.500000px;}
.w0_c02127{width:892.830000px;}
.x0_c02127{left:0.000000px;}
.xd_c02127{left:117.000000px;}
.xe_c02127{left:161.280000px;}
.x8_c02127{left:440.999856px;}
.x4_c02127{left:445.680576px;}
.xb_c02127{left:451.080000px;}
.x7_c02127{left:455.399604px;}
.x5_c02127{left:461.880144px;}
.x1_c02127{left:463.320000px;}
.xa_c02127{left:483.480360px;}
.x9_c02127{left:492.119496px;}
.x6_c02127{left:493.200576px;}
.xc_c02127{left:506.880360px;}
.x3_c02127{left:511.919892px;}
.x2_c02127{left:526.679604px;}
@media print{
.v0_c02127{vertical-align:0.000000pt;}
.ls11_c02127{letter-spacing:-0.713856pt;}
.lsb_c02127{letter-spacing:-0.511104pt;}
.ls12_c02127{letter-spacing:-0.244992pt;}
.lsf_c02127{letter-spacing:-0.232320pt;}
.lsa_c02127{letter-spacing:-0.228096pt;}
.ls8_c02127{letter-spacing:-0.215424pt;}
.ls6_c02127{letter-spacing:-0.105600pt;}
.ls14_c02127{letter-spacing:0.000000pt;}
.ls3_c02127{letter-spacing:0.005376pt;}
.ls7_c02127{letter-spacing:0.114048pt;}
.lse_c02127{letter-spacing:0.215424pt;}
.lsd_c02127{letter-spacing:0.451968pt;}
.ls2_c02127{letter-spacing:0.456960pt;}
.ls10_c02127{letter-spacing:0.477312pt;}
.lsc_c02127{letter-spacing:0.515328pt;}
.ls13_c02127{letter-spacing:0.528000pt;}
.ls9_c02127{letter-spacing:0.532224pt;}
.ls4_c02127{letter-spacing:0.544896pt;}
.ls0_c02127{letter-spacing:0.578688pt;}
.ls1_c02127{letter-spacing:0.637824pt;}
.ls5_c02127{letter-spacing:0.642048pt;}
.wsa_c02127{word-spacing:-13.896960pt;}
.wsb_c02127{word-spacing:-13.445376pt;}
.ws9_c02127{word-spacing:-11.088000pt;}
.ws7_c02127{word-spacing:-11.075328pt;}
.wsc_c02127{word-spacing:-11.037312pt;}
.ws16_c02127{word-spacing:-3.198720pt;}
.ws12_c02127{word-spacing:-0.958848pt;}
.wsf_c02127{word-spacing:-0.899712pt;}
.wsd_c02127{word-spacing:-0.865920pt;}
.ws10_c02127{word-spacing:-0.105600pt;}
.ws11_c02127{word-spacing:-0.092928pt;}
.ws13_c02127{word-spacing:-0.088704pt;}
.ws15_c02127{word-spacing:-0.076032pt;}
.wse_c02127{word-spacing:0.000000pt;}
.ws14_c02127{word-spacing:0.392832pt;}
.ws2_c02127{word-spacing:1.182720pt;}
.ws8_c02127{word-spacing:30.966144pt;}
.ws5_c02127{word-spacing:32.659968pt;}
.ws1_c02127{word-spacing:33.563904pt;}
.ws0_c02127{word-spacing:33.796224pt;}
.ws3_c02127{word-spacing:34.860672pt;}
.ws4_c02127{word-spacing:35.468928pt;}
.ws6_c02127{word-spacing:37.357056pt;}
._0_c02127{margin-left:-1.731840pt;}
._2_c02127{width:1.317888pt;}
._4_c02127{width:2.593536pt;}
._1_c02127{width:44.668800pt;}
._3_c02127{width:45.805056pt;}
.fs0_c02127{font-size:42.240000pt;}
.fs1_c02127{font-size:53.760000pt;}
.y0_c02127{bottom:0.000000pt;}
.y10_c02127{bottom:18.560400pt;}
.y1c_c02127{bottom:130.665211pt;}
.y1e_c02127{bottom:165.866875pt;}
.y1d_c02127{bottom:174.507067pt;}
.y1b_c02127{bottom:245.225371pt;}
.y1a_c02127{bottom:317.225563pt;}
.y18_c02127{bottom:361.386427pt;}
.y14_c02127{bottom:377.386939pt;}
.y19_c02127{bottom:407.786011pt;}
.y17_c02127{bottom:437.226235pt;}
.y16_c02127{bottom:453.226747pt;}
.y13_c02127{bottom:482.666971pt;}
.y15_c02127{bottom:497.386555pt;}
.y12_c02127{bottom:513.387067pt;}
.y20_c02127{bottom:527.786667pt;}
.y21_c02127{bottom:530.347067pt;}
.y1f_c02127{bottom:546.027067pt;}
.yb_c02127{bottom:593.385179pt;}
.yd_c02127{bottom:628.586875pt;}
.yc_c02127{bottom:637.227067pt;}
.ya_c02127{bottom:707.945339pt;}
.y9_c02127{bottom:779.945531pt;}
.y7_c02127{bottom:823.786427pt;}
.y3_c02127{bottom:839.786939pt;}
.y8_c02127{bottom:870.505979pt;}
.y6_c02127{bottom:899.946203pt;}
.y5_c02127{bottom:915.946715pt;}
.y2_c02127{bottom:945.386939pt;}
.y4_c02127{bottom:959.786555pt;}
.y1_c02127{bottom:975.787067pt;}
.yf_c02127{bottom:990.506667pt;}
.y11_c02127{bottom:993.067067pt;}
.ye_c02127{bottom:1008.747067pt;}
.h3_c02127{height:28.916250pt;}
.h5_c02127{height:32.640000pt;}
.h4_c02127{height:36.802500pt;}
.h1_c02127{height:37.063125pt;}
.h2_c02127{height:37.166250pt;}
.h7_c02127{height:47.171250pt;}
.h6_c02127{height:47.302500pt;}
.h0_c02127{height:1122.666667pt;}
.w2_c02127{width:351.360000pt;}
.w1_c02127{width:793.333333pt;}
.w0_c02127{width:793.626667pt;}
.x0_c02127{left:0.000000pt;}
.xd_c02127{left:104.000000pt;}
.xe_c02127{left:143.360000pt;}
.x8_c02127{left:391.999872pt;}
.x4_c02127{left:396.160512pt;}
.xb_c02127{left:400.960000pt;}
.x7_c02127{left:404.799648pt;}
.x5_c02127{left:410.560128pt;}
.x1_c02127{left:411.840000pt;}
.xa_c02127{left:429.760320pt;}
.x9_c02127{left:437.439552pt;}
.x6_c02127{left:438.400512pt;}
.xc_c02127{left:450.560320pt;}
.x3_c02127{left:455.039904pt;}
.x2_c02127{left:468.159648pt;}
}





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

.ir_c02128:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02128{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02128;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02128{font-family:ff1_c02128;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02128;src:url('chunks/assets/font_dc65d97a11aca6c230ebf0ca.woff2')format("woff");}.ff2_c02128{font-family:ff2_c02128;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02128;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02128{font-family:ff3_c02128;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02128{vertical-align:0.000000px;}
.lsb_c02128{letter-spacing:-0.793584px;}
.lsc_c02128{letter-spacing:-0.574992px;}
.ls11_c02128{letter-spacing:-0.275616px;}
.lsf_c02128{letter-spacing:-0.261360px;}
.ls8_c02128{letter-spacing:-0.242352px;}
.ls6_c02128{letter-spacing:-0.118800px;}
.ls13_c02128{letter-spacing:0.000000px;}
.ls3_c02128{letter-spacing:0.006048px;}
.ls15_c02128{letter-spacing:0.038016px;}
.ls7_c02128{letter-spacing:0.128304px;}
.ls9_c02128{letter-spacing:0.242352px;}
.lse_c02128{letter-spacing:0.508464px;}
.ls2_c02128{letter-spacing:0.514080px;}
.ls10_c02128{letter-spacing:0.536976px;}
.lsd_c02128{letter-spacing:0.579744px;}
.ls12_c02128{letter-spacing:0.594000px;}
.lsa_c02128{letter-spacing:0.598752px;}
.ls4_c02128{letter-spacing:0.613008px;}
.ls0_c02128{letter-spacing:0.651024px;}
.ls14_c02128{letter-spacing:0.689040px;}
.ls1_c02128{letter-spacing:0.717552px;}
.ls5_c02128{letter-spacing:0.722304px;}
.sc__c02128{text-shadow:none;}
.sc0_c02128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02128{-webkit-text-stroke:0px transparent;}
.sc0_c02128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02128{word-spacing:-15.634080px;}
.wsb_c02128{word-spacing:-15.126048px;}
.wsd_c02128{word-spacing:-12.569040px;}
.ws9_c02128{word-spacing:-12.474000px;}
.ws7_c02128{word-spacing:-12.459744px;}
.ws8_c02128{word-spacing:-12.416976px;}
.ws2_c02128{word-spacing:-12.122352px;}
.wsc_c02128{word-spacing:-11.761200px;}
.wsf_c02128{word-spacing:-11.637648px;}
.ws18_c02128{word-spacing:-3.598560px;}
.ws15_c02128{word-spacing:-1.078704px;}
.ws12_c02128{word-spacing:-1.012176px;}
.ws10_c02128{word-spacing:-0.974160px;}
.ws19_c02128{word-spacing:-0.399168px;}
.ws13_c02128{word-spacing:-0.118800px;}
.ws16_c02128{word-spacing:-0.099792px;}
.ws17_c02128{word-spacing:-0.085536px;}
.ws11_c02128{word-spacing:0.000000px;}
.ws14_c02128{word-spacing:0.432432px;}
.wse_c02128{word-spacing:1.330560px;}
.ws5_c02128{word-spacing:36.742464px;}
.ws1_c02128{word-spacing:37.759392px;}
.ws0_c02128{word-spacing:38.020752px;}
.ws3_c02128{word-spacing:39.218256px;}
.ws4_c02128{word-spacing:39.902544px;}
.ws6_c02128{word-spacing:42.026688px;}
._0_c02128{margin-left:-1.948320px;}
._2_c02128{width:1.482624px;}
._4_c02128{width:2.832192px;}
._5_c02128{width:6.263136px;}
._1_c02128{width:50.252400px;}
._3_c02128{width:51.530688px;}
.fc0_c02128{color:rgb(0,0,0);}
.fs0_c02128{font-size:47.520000px;}
.fs1_c02128{font-size:60.480000px;}
.y0_c02128{bottom:0.000000px;}
.y15_c02128{bottom:18.000450px;}
.y10_c02128{bottom:20.880450px;}
.y1e_c02128{bottom:146.998506px;}
.y20_c02128{bottom:186.600234px;}
.y1f_c02128{bottom:196.320450px;}
.y1d_c02128{bottom:275.878686px;}
.y1c_c02128{bottom:356.878902px;}
.y1a_c02128{bottom:406.559874px;}
.y16_c02128{bottom:424.560450px;}
.y1b_c02128{bottom:458.759406px;}
.y19_c02128{bottom:491.879658px;}
.y18_c02128{bottom:509.880234px;}
.y14_c02128{bottom:525.000000px;}
.y13_c02128{bottom:543.000342px;}
.y17_c02128{bottom:559.560018px;}
.y12_c02128{bottom:577.560450px;}
.y22_c02128{bottom:593.760000px;}
.y23_c02128{bottom:596.640450px;}
.y21_c02128{bottom:614.280450px;}
.yb_c02128{bottom:667.558326px;}
.yd_c02128{bottom:707.160234px;}
.yc_c02128{bottom:716.880450px;}
.ya_c02128{bottom:796.438506px;}
.y9_c02128{bottom:877.438722px;}
.y7_c02128{bottom:926.759730px;}
.y3_c02128{bottom:944.760306px;}
.y8_c02128{bottom:979.319226px;}
.y6_c02128{bottom:1012.439478px;}
.y5_c02128{bottom:1030.440054px;}
.y2_c02128{bottom:1063.560306px;}
.y4_c02128{bottom:1079.759874px;}
.y1_c02128{bottom:1097.760450px;}
.yf_c02128{bottom:1114.320000px;}
.y11_c02128{bottom:1117.200450px;}
.ye_c02128{bottom:1134.840450px;}
.h8_c02128{height:29.160000px;}
.h3_c02128{height:32.530781px;}
.h5_c02128{height:36.720000px;}
.h4_c02128{height:41.402813px;}
.h1_c02128{height:41.696016px;}
.h2_c02128{height:41.812031px;}
.h7_c02128{height:53.067656px;}
.h6_c02128{height:53.215313px;}
.h0_c02128{height:1263.000000px;}
.w3_c02128{width:215.280000px;}
.w2_c02128{width:395.280000px;}
.w1_c02128{width:892.500000px;}
.w0_c02128{width:892.830000px;}
.x0_c02128{left:0.000000px;}
.xd_c02128{left:117.000000px;}
.xe_c02128{left:161.280000px;}
.x8_c02128{left:440.999856px;}
.x4_c02128{left:445.680576px;}
.xb_c02128{left:451.080000px;}
.x7_c02128{left:455.399604px;}
.x5_c02128{left:461.880144px;}
.x1_c02128{left:463.320000px;}
.xa_c02128{left:483.480360px;}
.x9_c02128{left:492.119496px;}
.x6_c02128{left:493.200576px;}
.xc_c02128{left:506.880360px;}
.x3_c02128{left:511.919892px;}
.x2_c02128{left:526.679604px;}
.xf_c02128{left:569.520000px;}
@media print{
.v0_c02128{vertical-align:0.000000pt;}
.lsb_c02128{letter-spacing:-0.705408pt;}
.lsc_c02128{letter-spacing:-0.511104pt;}
.ls11_c02128{letter-spacing:-0.244992pt;}
.lsf_c02128{letter-spacing:-0.232320pt;}
.ls8_c02128{letter-spacing:-0.215424pt;}
.ls6_c02128{letter-spacing:-0.105600pt;}
.ls13_c02128{letter-spacing:0.000000pt;}
.ls3_c02128{letter-spacing:0.005376pt;}
.ls15_c02128{letter-spacing:0.033792pt;}
.ls7_c02128{letter-spacing:0.114048pt;}
.ls9_c02128{letter-spacing:0.215424pt;}
.lse_c02128{letter-spacing:0.451968pt;}
.ls2_c02128{letter-spacing:0.456960pt;}
.ls10_c02128{letter-spacing:0.477312pt;}
.lsd_c02128{letter-spacing:0.515328pt;}
.ls12_c02128{letter-spacing:0.528000pt;}
.lsa_c02128{letter-spacing:0.532224pt;}
.ls4_c02128{letter-spacing:0.544896pt;}
.ls0_c02128{letter-spacing:0.578688pt;}
.ls14_c02128{letter-spacing:0.612480pt;}
.ls1_c02128{letter-spacing:0.637824pt;}
.ls5_c02128{letter-spacing:0.642048pt;}
.wsa_c02128{word-spacing:-13.896960pt;}
.wsb_c02128{word-spacing:-13.445376pt;}
.wsd_c02128{word-spacing:-11.172480pt;}
.ws9_c02128{word-spacing:-11.088000pt;}
.ws7_c02128{word-spacing:-11.075328pt;}
.ws8_c02128{word-spacing:-11.037312pt;}
.ws2_c02128{word-spacing:-10.775424pt;}
.wsc_c02128{word-spacing:-10.454400pt;}
.wsf_c02128{word-spacing:-10.344576pt;}
.ws18_c02128{word-spacing:-3.198720pt;}
.ws15_c02128{word-spacing:-0.958848pt;}
.ws12_c02128{word-spacing:-0.899712pt;}
.ws10_c02128{word-spacing:-0.865920pt;}
.ws19_c02128{word-spacing:-0.354816pt;}
.ws13_c02128{word-spacing:-0.105600pt;}
.ws16_c02128{word-spacing:-0.088704pt;}
.ws17_c02128{word-spacing:-0.076032pt;}
.ws11_c02128{word-spacing:0.000000pt;}
.ws14_c02128{word-spacing:0.384384pt;}
.wse_c02128{word-spacing:1.182720pt;}
.ws5_c02128{word-spacing:32.659968pt;}
.ws1_c02128{word-spacing:33.563904pt;}
.ws0_c02128{word-spacing:33.796224pt;}
.ws3_c02128{word-spacing:34.860672pt;}
.ws4_c02128{word-spacing:35.468928pt;}
.ws6_c02128{word-spacing:37.357056pt;}
._0_c02128{margin-left:-1.731840pt;}
._2_c02128{width:1.317888pt;}
._4_c02128{width:2.517504pt;}
._5_c02128{width:5.567232pt;}
._1_c02128{width:44.668800pt;}
._3_c02128{width:45.805056pt;}
.fs0_c02128{font-size:42.240000pt;}
.fs1_c02128{font-size:53.760000pt;}
.y0_c02128{bottom:0.000000pt;}
.y15_c02128{bottom:16.000400pt;}
.y10_c02128{bottom:18.560400pt;}
.y1e_c02128{bottom:130.665339pt;}
.y20_c02128{bottom:165.866875pt;}
.y1f_c02128{bottom:174.507067pt;}
.y1d_c02128{bottom:245.225499pt;}
.y1c_c02128{bottom:317.225691pt;}
.y1a_c02128{bottom:361.386555pt;}
.y16_c02128{bottom:377.387067pt;}
.y1b_c02128{bottom:407.786139pt;}
.y19_c02128{bottom:437.226363pt;}
.y18_c02128{bottom:453.226875pt;}
.y14_c02128{bottom:466.666667pt;}
.y13_c02128{bottom:482.666971pt;}
.y17_c02128{bottom:497.386683pt;}
.y12_c02128{bottom:513.387067pt;}
.y22_c02128{bottom:527.786667pt;}
.y23_c02128{bottom:530.347067pt;}
.y21_c02128{bottom:546.027067pt;}
.yb_c02128{bottom:593.385179pt;}
.yd_c02128{bottom:628.586875pt;}
.yc_c02128{bottom:637.227067pt;}
.ya_c02128{bottom:707.945339pt;}
.y9_c02128{bottom:779.945531pt;}
.y7_c02128{bottom:823.786427pt;}
.y3_c02128{bottom:839.786939pt;}
.y8_c02128{bottom:870.505979pt;}
.y6_c02128{bottom:899.946203pt;}
.y5_c02128{bottom:915.946715pt;}
.y2_c02128{bottom:945.386939pt;}
.y4_c02128{bottom:959.786555pt;}
.y1_c02128{bottom:975.787067pt;}
.yf_c02128{bottom:990.506667pt;}
.y11_c02128{bottom:993.067067pt;}
.ye_c02128{bottom:1008.747067pt;}
.h8_c02128{height:25.920000pt;}
.h3_c02128{height:28.916250pt;}
.h5_c02128{height:32.640000pt;}
.h4_c02128{height:36.802500pt;}
.h1_c02128{height:37.063125pt;}
.h2_c02128{height:37.166250pt;}
.h7_c02128{height:47.171250pt;}
.h6_c02128{height:47.302500pt;}
.h0_c02128{height:1122.666667pt;}
.w3_c02128{width:191.360000pt;}
.w2_c02128{width:351.360000pt;}
.w1_c02128{width:793.333333pt;}
.w0_c02128{width:793.626667pt;}
.x0_c02128{left:0.000000pt;}
.xd_c02128{left:104.000000pt;}
.xe_c02128{left:143.360000pt;}
.x8_c02128{left:391.999872pt;}
.x4_c02128{left:396.160512pt;}
.xb_c02128{left:400.960000pt;}
.x7_c02128{left:404.799648pt;}
.x5_c02128{left:410.560128pt;}
.x1_c02128{left:411.840000pt;}
.xa_c02128{left:429.760320pt;}
.x9_c02128{left:437.439552pt;}
.x6_c02128{left:438.400512pt;}
.xc_c02128{left:450.560320pt;}
.x3_c02128{left:455.039904pt;}
.x2_c02128{left:468.159648pt;}
.xf_c02128{left:506.240000pt;}
}





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

.ir_c02129:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02129{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02129;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02129{font-family:ff1_c02129;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02129;src:url('chunks/assets/font_ef3b1b7935f9e64a7d4b291f.woff2')format("woff");}.ff2_c02129{font-family:ff2_c02129;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02129;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02129{font-family:ff3_c02129;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02129{vertical-align:0.000000px;}
.ls9_c02129{letter-spacing:-0.574992px;}
.ls10_c02129{letter-spacing:-0.275616px;}
.lse_c02129{letter-spacing:-0.261360px;}
.ls7_c02129{letter-spacing:-0.242352px;}
.lsb_c02129{letter-spacing:-0.223344px;}
.ls5_c02129{letter-spacing:-0.118800px;}
.ls12_c02129{letter-spacing:0.000000px;}
.ls2_c02129{letter-spacing:0.006048px;}
.lsd_c02129{letter-spacing:0.038016px;}
.ls6_c02129{letter-spacing:0.128304px;}
.lsc_c02129{letter-spacing:0.508464px;}
.ls1_c02129{letter-spacing:0.514080px;}
.lsf_c02129{letter-spacing:0.536976px;}
.lsa_c02129{letter-spacing:0.579744px;}
.ls11_c02129{letter-spacing:0.594000px;}
.ls8_c02129{letter-spacing:0.598752px;}
.ls3_c02129{letter-spacing:0.613008px;}
.ls0_c02129{letter-spacing:0.717552px;}
.ls4_c02129{letter-spacing:0.722304px;}
.sc__c02129{text-shadow:none;}
.sc0_c02129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02129{-webkit-text-stroke:0px transparent;}
.sc0_c02129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02129{word-spacing:-15.634080px;}
.wsd_c02129{word-spacing:-15.126048px;}
.wsb_c02129{word-spacing:-12.474000px;}
.ws9_c02129{word-spacing:-12.459744px;}
.wsa_c02129{word-spacing:-12.416976px;}
.ws4_c02129{word-spacing:-11.637648px;}
.ws16_c02129{word-spacing:-3.598560px;}
.ws11_c02129{word-spacing:-1.078704px;}
.wse_c02129{word-spacing:-0.974160px;}
.ws13_c02129{word-spacing:-0.399168px;}
.ws12_c02129{word-spacing:-0.137808px;}
.ws10_c02129{word-spacing:-0.118800px;}
.ws14_c02129{word-spacing:-0.099792px;}
.ws15_c02129{word-spacing:-0.085536px;}
.wsf_c02129{word-spacing:0.000000px;}
.ws2_c02129{word-spacing:1.330560px;}
.ws7_c02129{word-spacing:20.043936px;}
.ws6_c02129{word-spacing:36.742464px;}
.ws1_c02129{word-spacing:37.759392px;}
.ws0_c02129{word-spacing:38.020752px;}
.ws3_c02129{word-spacing:39.218256px;}
.ws5_c02129{word-spacing:39.902544px;}
.ws8_c02129{word-spacing:42.026688px;}
._0_c02129{margin-left:-1.948320px;}
._2_c02129{width:1.482624px;}
._4_c02129{width:6.263136px;}
._5_c02129{width:32.793552px;}
._6_c02129{width:34.841664px;}
._1_c02129{width:50.252400px;}
._3_c02129{width:51.530688px;}
.fc0_c02129{color:rgb(0,0,0);}
.fs0_c02129{font-size:47.520000px;}
.fs1_c02129{font-size:60.480000px;}
.y0_c02129{bottom:0.000000px;}
.y11_c02129{bottom:20.880450px;}
.y1d_c02129{bottom:146.998362px;}
.y1f_c02129{bottom:186.600234px;}
.y1e_c02129{bottom:196.320450px;}
.y1c_c02129{bottom:275.878542px;}
.y1b_c02129{bottom:356.878758px;}
.y19_c02129{bottom:406.559730px;}
.y15_c02129{bottom:424.560306px;}
.y1a_c02129{bottom:458.759262px;}
.y18_c02129{bottom:491.879514px;}
.y17_c02129{bottom:509.880090px;}
.y14_c02129{bottom:543.000342px;}
.y16_c02129{bottom:559.559874px;}
.y13_c02129{bottom:577.560450px;}
.y21_c02129{bottom:593.760000px;}
.y22_c02129{bottom:596.640450px;}
.y20_c02129{bottom:614.280450px;}
.yc_c02129{bottom:667.559514px;}
.ye_c02129{bottom:707.160234px;}
.yd_c02129{bottom:716.880450px;}
.yb_c02129{bottom:796.439694px;}
.ya_c02129{bottom:877.439910px;}
.y8_c02129{bottom:912.000018px;}
.y7_c02129{bottom:926.759730px;}
.y3_c02129{bottom:944.760306px;}
.y9_c02129{bottom:979.320414px;}
.y6_c02129{bottom:1012.439478px;}
.y5_c02129{bottom:1030.440054px;}
.y2_c02129{bottom:1063.560306px;}
.y4_c02129{bottom:1079.759874px;}
.y1_c02129{bottom:1097.760450px;}
.y10_c02129{bottom:1114.320000px;}
.y12_c02129{bottom:1117.200450px;}
.yf_c02129{bottom:1134.840450px;}
.h3_c02129{height:32.530781px;}
.h5_c02129{height:36.720000px;}
.h4_c02129{height:41.402813px;}
.h1_c02129{height:41.696016px;}
.h2_c02129{height:41.812031px;}
.h7_c02129{height:53.067656px;}
.h6_c02129{height:53.215313px;}
.h0_c02129{height:1263.000000px;}
.w2_c02129{width:395.280000px;}
.w1_c02129{width:892.500000px;}
.w0_c02129{width:892.830000px;}
.x0_c02129{left:0.000000px;}
.xe_c02129{left:117.000000px;}
.xf_c02129{left:161.280000px;}
.x9_c02129{left:440.999856px;}
.x4_c02129{left:445.680576px;}
.xc_c02129{left:451.080000px;}
.x7_c02129{left:455.399604px;}
.x5_c02129{left:461.880144px;}
.x1_c02129{left:463.320000px;}
.xb_c02129{left:483.480360px;}
.xa_c02129{left:492.119496px;}
.x6_c02129{left:493.200576px;}
.xd_c02129{left:506.880360px;}
.x3_c02129{left:511.919892px;}
.x2_c02129{left:526.679604px;}
.x8_c02129{left:569.880036px;}
@media print{
.v0_c02129{vertical-align:0.000000pt;}
.ls9_c02129{letter-spacing:-0.511104pt;}
.ls10_c02129{letter-spacing:-0.244992pt;}
.lse_c02129{letter-spacing:-0.232320pt;}
.ls7_c02129{letter-spacing:-0.215424pt;}
.lsb_c02129{letter-spacing:-0.198528pt;}
.ls5_c02129{letter-spacing:-0.105600pt;}
.ls12_c02129{letter-spacing:0.000000pt;}
.ls2_c02129{letter-spacing:0.005376pt;}
.lsd_c02129{letter-spacing:0.033792pt;}
.ls6_c02129{letter-spacing:0.114048pt;}
.lsc_c02129{letter-spacing:0.451968pt;}
.ls1_c02129{letter-spacing:0.456960pt;}
.lsf_c02129{letter-spacing:0.477312pt;}
.lsa_c02129{letter-spacing:0.515328pt;}
.ls11_c02129{letter-spacing:0.528000pt;}
.ls8_c02129{letter-spacing:0.532224pt;}
.ls3_c02129{letter-spacing:0.544896pt;}
.ls0_c02129{letter-spacing:0.637824pt;}
.ls4_c02129{letter-spacing:0.642048pt;}
.wsc_c02129{word-spacing:-13.896960pt;}
.wsd_c02129{word-spacing:-13.445376pt;}
.wsb_c02129{word-spacing:-11.088000pt;}
.ws9_c02129{word-spacing:-11.075328pt;}
.wsa_c02129{word-spacing:-11.037312pt;}
.ws4_c02129{word-spacing:-10.344576pt;}
.ws16_c02129{word-spacing:-3.198720pt;}
.ws11_c02129{word-spacing:-0.958848pt;}
.wse_c02129{word-spacing:-0.865920pt;}
.ws13_c02129{word-spacing:-0.354816pt;}
.ws12_c02129{word-spacing:-0.122496pt;}
.ws10_c02129{word-spacing:-0.105600pt;}
.ws14_c02129{word-spacing:-0.088704pt;}
.ws15_c02129{word-spacing:-0.076032pt;}
.wsf_c02129{word-spacing:0.000000pt;}
.ws2_c02129{word-spacing:1.182720pt;}
.ws7_c02129{word-spacing:17.816832pt;}
.ws6_c02129{word-spacing:32.659968pt;}
.ws1_c02129{word-spacing:33.563904pt;}
.ws0_c02129{word-spacing:33.796224pt;}
.ws3_c02129{word-spacing:34.860672pt;}
.ws5_c02129{word-spacing:35.468928pt;}
.ws8_c02129{word-spacing:37.357056pt;}
._0_c02129{margin-left:-1.731840pt;}
._2_c02129{width:1.317888pt;}
._4_c02129{width:5.567232pt;}
._5_c02129{width:29.149824pt;}
._6_c02129{width:30.970368pt;}
._1_c02129{width:44.668800pt;}
._3_c02129{width:45.805056pt;}
.fs0_c02129{font-size:42.240000pt;}
.fs1_c02129{font-size:53.760000pt;}
.y0_c02129{bottom:0.000000pt;}
.y11_c02129{bottom:18.560400pt;}
.y1d_c02129{bottom:130.665211pt;}
.y1f_c02129{bottom:165.866875pt;}
.y1e_c02129{bottom:174.507067pt;}
.y1c_c02129{bottom:245.225371pt;}
.y1b_c02129{bottom:317.225563pt;}
.y19_c02129{bottom:361.386427pt;}
.y15_c02129{bottom:377.386939pt;}
.y1a_c02129{bottom:407.786011pt;}
.y18_c02129{bottom:437.226235pt;}
.y17_c02129{bottom:453.226747pt;}
.y14_c02129{bottom:482.666971pt;}
.y16_c02129{bottom:497.386555pt;}
.y13_c02129{bottom:513.387067pt;}
.y21_c02129{bottom:527.786667pt;}
.y22_c02129{bottom:530.347067pt;}
.y20_c02129{bottom:546.027067pt;}
.yc_c02129{bottom:593.386235pt;}
.ye_c02129{bottom:628.586875pt;}
.yd_c02129{bottom:637.227067pt;}
.yb_c02129{bottom:707.946395pt;}
.ya_c02129{bottom:779.946587pt;}
.y8_c02129{bottom:810.666683pt;}
.y7_c02129{bottom:823.786427pt;}
.y3_c02129{bottom:839.786939pt;}
.y9_c02129{bottom:870.507035pt;}
.y6_c02129{bottom:899.946203pt;}
.y5_c02129{bottom:915.946715pt;}
.y2_c02129{bottom:945.386939pt;}
.y4_c02129{bottom:959.786555pt;}
.y1_c02129{bottom:975.787067pt;}
.y10_c02129{bottom:990.506667pt;}
.y12_c02129{bottom:993.067067pt;}
.yf_c02129{bottom:1008.747067pt;}
.h3_c02129{height:28.916250pt;}
.h5_c02129{height:32.640000pt;}
.h4_c02129{height:36.802500pt;}
.h1_c02129{height:37.063125pt;}
.h2_c02129{height:37.166250pt;}
.h7_c02129{height:47.171250pt;}
.h6_c02129{height:47.302500pt;}
.h0_c02129{height:1122.666667pt;}
.w2_c02129{width:351.360000pt;}
.w1_c02129{width:793.333333pt;}
.w0_c02129{width:793.626667pt;}
.x0_c02129{left:0.000000pt;}
.xe_c02129{left:104.000000pt;}
.xf_c02129{left:143.360000pt;}
.x9_c02129{left:391.999872pt;}
.x4_c02129{left:396.160512pt;}
.xc_c02129{left:400.960000pt;}
.x7_c02129{left:404.799648pt;}
.x5_c02129{left:410.560128pt;}
.x1_c02129{left:411.840000pt;}
.xb_c02129{left:429.760320pt;}
.xa_c02129{left:437.439552pt;}
.x6_c02129{left:438.400512pt;}
.xd_c02129{left:450.560320pt;}
.x3_c02129{left:455.039904pt;}
.x2_c02129{left:468.159648pt;}
.x8_c02129{left:506.560032pt;}
}





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

.ir_c02130:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02130{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02130;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02130{font-family:ff1_c02130;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02130;src:url('chunks/assets/font_a4365198efc8a80989eed5cd.woff2')format("woff");}.ff2_c02130{font-family:ff2_c02130;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02130;src:url('chunks/assets/font_ae207bd58ac7d233251d87a2.woff2')format("woff");}.ff3_c02130{font-family:ff3_c02130;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02130{vertical-align:0.000000px;}
.lsa_c02130{letter-spacing:-0.574992px;}
.ls10_c02130{letter-spacing:-0.289872px;}
.ls11_c02130{letter-spacing:-0.275616px;}
.lse_c02130{letter-spacing:-0.261360px;}
.ls8_c02130{letter-spacing:-0.242352px;}
.ls14_c02130{letter-spacing:-0.213840px;}
.ls6_c02130{letter-spacing:-0.118800px;}
.ls13_c02130{letter-spacing:0.000000px;}
.ls2_c02130{letter-spacing:0.006048px;}
.lsd_c02130{letter-spacing:0.038016px;}
.ls7_c02130{letter-spacing:0.128304px;}
.lsc_c02130{letter-spacing:0.508464px;}
.ls1_c02130{letter-spacing:0.514080px;}
.lsf_c02130{letter-spacing:0.536976px;}
.lsb_c02130{letter-spacing:0.579744px;}
.ls12_c02130{letter-spacing:0.594000px;}
.ls9_c02130{letter-spacing:0.598752px;}
.ls5_c02130{letter-spacing:0.613008px;}
.ls3_c02130{letter-spacing:0.670032px;}
.ls0_c02130{letter-spacing:0.717552px;}
.ls4_c02130{letter-spacing:0.722304px;}
.sc__c02130{text-shadow:none;}
.sc0_c02130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02130{-webkit-text-stroke:0px transparent;}
.sc0_c02130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02130{word-spacing:-15.634080px;}
.wse_c02130{word-spacing:-15.126048px;}
.wsc_c02130{word-spacing:-12.474000px;}
.ws8_c02130{word-spacing:-12.459744px;}
.ws10_c02130{word-spacing:-12.416976px;}
.ws4_c02130{word-spacing:-11.637648px;}
.ws19_c02130{word-spacing:-3.598560px;}
.ws1c_c02130{word-spacing:-1.083456px;}
.ws14_c02130{word-spacing:-1.078704px;}
.ws1b_c02130{word-spacing:-1.031184px;}
.ws11_c02130{word-spacing:-0.974160px;}
.wsf_c02130{word-spacing:-0.722304px;}
.ws15_c02130{word-spacing:-0.399168px;}
.ws1a_c02130{word-spacing:-0.147312px;}
.ws13_c02130{word-spacing:-0.118800px;}
.ws16_c02130{word-spacing:-0.099792px;}
.ws18_c02130{word-spacing:-0.085536px;}
.ws17_c02130{word-spacing:-0.071280px;}
.ws12_c02130{word-spacing:0.000000px;}
.ws2_c02130{word-spacing:1.330560px;}
.wsb_c02130{word-spacing:9.271152px;}
.wsa_c02130{word-spacing:17.915040px;}
.ws9_c02130{word-spacing:34.836912px;}
.ws6_c02130{word-spacing:36.742464px;}
.ws1_c02130{word-spacing:37.759392px;}
.ws0_c02130{word-spacing:38.020752px;}
.ws3_c02130{word-spacing:39.218256px;}
.ws5_c02130{word-spacing:39.902544px;}
.ws7_c02130{word-spacing:42.026688px;}
._0_c02130{margin-left:-1.948320px;}
._2_c02130{width:1.482624px;}
._4_c02130{width:6.263136px;}
._c_c02130{width:14.051664px;}
._b_c02130{width:15.215904px;}
._a_c02130{width:17.363808px;}
._9_c02130{width:21.944736px;}
._8_c02130{width:23.308560px;}
._7_c02130{width:27.956016px;}
._6_c02130{width:31.025808px;}
._5_c02130{width:32.536944px;}
._1_c02130{width:50.252400px;}
._3_c02130{width:51.530688px;}
.fc0_c02130{color:rgb(0,0,0);}
.fs0_c02130{font-size:47.520000px;}
.fs1_c02130{font-size:60.480000px;}
.y0_c02130{bottom:0.000000px;}
.y12_c02130{bottom:20.880450px;}
.y1e_c02130{bottom:65.880450px;}
.y22_c02130{bottom:147.000054px;}
.y24_c02130{bottom:186.600234px;}
.y23_c02130{bottom:196.320450px;}
.y21_c02130{bottom:260.760558px;}
.y20_c02130{bottom:275.880234px;}
.y1d_c02130{bottom:291.000000px;}
.y1c_c02130{bottom:356.878758px;}
.y1f_c02130{bottom:356.880450px;}
.y1a_c02130{bottom:406.559730px;}
.y16_c02130{bottom:424.560306px;}
.y1b_c02130{bottom:458.759262px;}
.y19_c02130{bottom:491.879514px;}
.y18_c02130{bottom:509.880090px;}
.y15_c02130{bottom:543.000342px;}
.y17_c02130{bottom:559.559874px;}
.y14_c02130{bottom:577.560450px;}
.y26_c02130{bottom:593.760000px;}
.y27_c02130{bottom:596.640450px;}
.y25_c02130{bottom:614.280450px;}
.yd_c02130{bottom:637.318974px;}
.yc_c02130{bottom:652.438650px;}
.yb_c02130{bottom:667.558326px;}
.yf_c02130{bottom:707.160234px;}
.ye_c02130{bottom:716.880450px;}
.ya_c02130{bottom:796.438506px;}
.y9_c02130{bottom:877.438722px;}
.y7_c02130{bottom:926.759730px;}
.y3_c02130{bottom:944.760306px;}
.y8_c02130{bottom:979.319226px;}
.y6_c02130{bottom:1012.439478px;}
.y5_c02130{bottom:1030.440054px;}
.y2_c02130{bottom:1063.560306px;}
.y4_c02130{bottom:1079.759874px;}
.y1_c02130{bottom:1097.760450px;}
.y11_c02130{bottom:1114.320000px;}
.y13_c02130{bottom:1117.200450px;}
.y10_c02130{bottom:1134.840450px;}
.h3_c02130{height:32.530781px;}
.h5_c02130{height:36.720000px;}
.h4_c02130{height:41.402813px;}
.h1_c02130{height:41.696016px;}
.h2_c02130{height:41.812031px;}
.h7_c02130{height:53.067656px;}
.h6_c02130{height:53.215313px;}
.h8_c02130{height:78.480000px;}
.h0_c02130{height:1263.000000px;}
.w3_c02130{width:215.280000px;}
.w2_c02130{width:395.280000px;}
.w1_c02130{width:892.500000px;}
.w0_c02130{width:892.830000px;}
.x0_c02130{left:0.000000px;}
.xe_c02130{left:117.000000px;}
.xf_c02130{left:161.280000px;}
.x8_c02130{left:440.999856px;}
.x4_c02130{left:445.680576px;}
.xc_c02130{left:451.080000px;}
.x7_c02130{left:455.399604px;}
.x5_c02130{left:461.880144px;}
.x1_c02130{left:463.320000px;}
.xa_c02130{left:483.480360px;}
.x9_c02130{left:492.119496px;}
.x6_c02130{left:493.200576px;}
.xd_c02130{left:506.880360px;}
.x3_c02130{left:511.919892px;}
.x2_c02130{left:526.679604px;}
.xb_c02130{left:569.880036px;}
.x10_c02130{left:699.840000px;}
@media print{
.v0_c02130{vertical-align:0.000000pt;}
.lsa_c02130{letter-spacing:-0.511104pt;}
.ls10_c02130{letter-spacing:-0.257664pt;}
.ls11_c02130{letter-spacing:-0.244992pt;}
.lse_c02130{letter-spacing:-0.232320pt;}
.ls8_c02130{letter-spacing:-0.215424pt;}
.ls14_c02130{letter-spacing:-0.190080pt;}
.ls6_c02130{letter-spacing:-0.105600pt;}
.ls13_c02130{letter-spacing:0.000000pt;}
.ls2_c02130{letter-spacing:0.005376pt;}
.lsd_c02130{letter-spacing:0.033792pt;}
.ls7_c02130{letter-spacing:0.114048pt;}
.lsc_c02130{letter-spacing:0.451968pt;}
.ls1_c02130{letter-spacing:0.456960pt;}
.lsf_c02130{letter-spacing:0.477312pt;}
.lsb_c02130{letter-spacing:0.515328pt;}
.ls12_c02130{letter-spacing:0.528000pt;}
.ls9_c02130{letter-spacing:0.532224pt;}
.ls5_c02130{letter-spacing:0.544896pt;}
.ls3_c02130{letter-spacing:0.595584pt;}
.ls0_c02130{letter-spacing:0.637824pt;}
.ls4_c02130{letter-spacing:0.642048pt;}
.wsd_c02130{word-spacing:-13.896960pt;}
.wse_c02130{word-spacing:-13.445376pt;}
.wsc_c02130{word-spacing:-11.088000pt;}
.ws8_c02130{word-spacing:-11.075328pt;}
.ws10_c02130{word-spacing:-11.037312pt;}
.ws4_c02130{word-spacing:-10.344576pt;}
.ws19_c02130{word-spacing:-3.198720pt;}
.ws1c_c02130{word-spacing:-0.963072pt;}
.ws14_c02130{word-spacing:-0.958848pt;}
.ws1b_c02130{word-spacing:-0.916608pt;}
.ws11_c02130{word-spacing:-0.865920pt;}
.wsf_c02130{word-spacing:-0.642048pt;}
.ws15_c02130{word-spacing:-0.354816pt;}
.ws1a_c02130{word-spacing:-0.130944pt;}
.ws13_c02130{word-spacing:-0.105600pt;}
.ws16_c02130{word-spacing:-0.088704pt;}
.ws18_c02130{word-spacing:-0.076032pt;}
.ws17_c02130{word-spacing:-0.063360pt;}
.ws12_c02130{word-spacing:0.000000pt;}
.ws2_c02130{word-spacing:1.182720pt;}
.wsb_c02130{word-spacing:8.241024pt;}
.wsa_c02130{word-spacing:15.924480pt;}
.ws9_c02130{word-spacing:30.966144pt;}
.ws6_c02130{word-spacing:32.659968pt;}
.ws1_c02130{word-spacing:33.563904pt;}
.ws0_c02130{word-spacing:33.796224pt;}
.ws3_c02130{word-spacing:34.860672pt;}
.ws5_c02130{word-spacing:35.468928pt;}
.ws7_c02130{word-spacing:37.357056pt;}
._0_c02130{margin-left:-1.731840pt;}
._2_c02130{width:1.317888pt;}
._4_c02130{width:5.567232pt;}
._c_c02130{width:12.490368pt;}
._b_c02130{width:13.525248pt;}
._a_c02130{width:15.434496pt;}
._9_c02130{width:19.506432pt;}
._8_c02130{width:20.718720pt;}
._7_c02130{width:24.849792pt;}
._6_c02130{width:27.578496pt;}
._5_c02130{width:28.921728pt;}
._1_c02130{width:44.668800pt;}
._3_c02130{width:45.805056pt;}
.fs0_c02130{font-size:42.240000pt;}
.fs1_c02130{font-size:53.760000pt;}
.y0_c02130{bottom:0.000000pt;}
.y12_c02130{bottom:18.560400pt;}
.y1e_c02130{bottom:58.560400pt;}
.y22_c02130{bottom:130.666715pt;}
.y24_c02130{bottom:165.866875pt;}
.y23_c02130{bottom:174.507067pt;}
.y21_c02130{bottom:231.787163pt;}
.y20_c02130{bottom:245.226875pt;}
.y1d_c02130{bottom:258.666667pt;}
.y1c_c02130{bottom:317.225563pt;}
.y1f_c02130{bottom:317.227067pt;}
.y1a_c02130{bottom:361.386427pt;}
.y16_c02130{bottom:377.386939pt;}
.y1b_c02130{bottom:407.786011pt;}
.y19_c02130{bottom:437.226235pt;}
.y18_c02130{bottom:453.226747pt;}
.y15_c02130{bottom:482.666971pt;}
.y17_c02130{bottom:497.386555pt;}
.y14_c02130{bottom:513.387067pt;}
.y26_c02130{bottom:527.786667pt;}
.y27_c02130{bottom:530.347067pt;}
.y25_c02130{bottom:546.027067pt;}
.yd_c02130{bottom:566.505755pt;}
.yc_c02130{bottom:579.945467pt;}
.yb_c02130{bottom:593.385179pt;}
.yf_c02130{bottom:628.586875pt;}
.ye_c02130{bottom:637.227067pt;}
.ya_c02130{bottom:707.945339pt;}
.y9_c02130{bottom:779.945531pt;}
.y7_c02130{bottom:823.786427pt;}
.y3_c02130{bottom:839.786939pt;}
.y8_c02130{bottom:870.505979pt;}
.y6_c02130{bottom:899.946203pt;}
.y5_c02130{bottom:915.946715pt;}
.y2_c02130{bottom:945.386939pt;}
.y4_c02130{bottom:959.786555pt;}
.y1_c02130{bottom:975.787067pt;}
.y11_c02130{bottom:990.506667pt;}
.y13_c02130{bottom:993.067067pt;}
.y10_c02130{bottom:1008.747067pt;}
.h3_c02130{height:28.916250pt;}
.h5_c02130{height:32.640000pt;}
.h4_c02130{height:36.802500pt;}
.h1_c02130{height:37.063125pt;}
.h2_c02130{height:37.166250pt;}
.h7_c02130{height:47.171250pt;}
.h6_c02130{height:47.302500pt;}
.h8_c02130{height:69.760000pt;}
.h0_c02130{height:1122.666667pt;}
.w3_c02130{width:191.360000pt;}
.w2_c02130{width:351.360000pt;}
.w1_c02130{width:793.333333pt;}
.w0_c02130{width:793.626667pt;}
.x0_c02130{left:0.000000pt;}
.xe_c02130{left:104.000000pt;}
.xf_c02130{left:143.360000pt;}
.x8_c02130{left:391.999872pt;}
.x4_c02130{left:396.160512pt;}
.xc_c02130{left:400.960000pt;}
.x7_c02130{left:404.799648pt;}
.x5_c02130{left:410.560128pt;}
.x1_c02130{left:411.840000pt;}
.xa_c02130{left:429.760320pt;}
.x9_c02130{left:437.439552pt;}
.x6_c02130{left:438.400512pt;}
.xd_c02130{left:450.560320pt;}
.x3_c02130{left:455.039904pt;}
.x2_c02130{left:468.159648pt;}
.xb_c02130{left:506.560032pt;}
.x10_c02130{left:622.080000pt;}
}





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

.ir_c02131:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02131{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02131;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02131{font-family:ff1_c02131;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02131;src:url('chunks/assets/font_e095796dd909a188f537d273.woff2')format("woff");}.ff2_c02131{font-family:ff2_c02131;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02131;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02131{font-family:ff3_c02131;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02131{vertical-align:0.000000px;}
.lsa_c02131{letter-spacing:-0.574992px;}
.ls10_c02131{letter-spacing:-0.275616px;}
.lse_c02131{letter-spacing:-0.261360px;}
.ls8_c02131{letter-spacing:-0.242352px;}
.ls6_c02131{letter-spacing:-0.118800px;}
.ls12_c02131{letter-spacing:0.000000px;}
.ls2_c02131{letter-spacing:0.006048px;}
.lsd_c02131{letter-spacing:0.038016px;}
.ls4_c02131{letter-spacing:0.042768px;}
.ls7_c02131{letter-spacing:0.128304px;}
.lsc_c02131{letter-spacing:0.508464px;}
.ls1_c02131{letter-spacing:0.514080px;}
.lsf_c02131{letter-spacing:0.536976px;}
.lsb_c02131{letter-spacing:0.579744px;}
.ls11_c02131{letter-spacing:0.594000px;}
.ls9_c02131{letter-spacing:0.598752px;}
.ls5_c02131{letter-spacing:0.613008px;}
.ls0_c02131{letter-spacing:0.717552px;}
.ls3_c02131{letter-spacing:0.722304px;}
.sc__c02131{text-shadow:none;}
.sc0_c02131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02131{-webkit-text-stroke:0px transparent;}
.sc0_c02131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02131{word-spacing:-15.634080px;}
.wsc_c02131{word-spacing:-15.126048px;}
.wsa_c02131{word-spacing:-12.474000px;}
.ws8_c02131{word-spacing:-12.459744px;}
.ws9_c02131{word-spacing:-12.416976px;}
.ws4_c02131{word-spacing:-11.637648px;}
.ws14_c02131{word-spacing:-3.598560px;}
.ws15_c02131{word-spacing:-1.083456px;}
.ws10_c02131{word-spacing:-1.078704px;}
.wsd_c02131{word-spacing:-0.974160px;}
.ws16_c02131{word-spacing:-0.403920px;}
.ws11_c02131{word-spacing:-0.399168px;}
.wsf_c02131{word-spacing:-0.118800px;}
.ws12_c02131{word-spacing:-0.099792px;}
.ws13_c02131{word-spacing:-0.085536px;}
.wse_c02131{word-spacing:0.000000px;}
.ws2_c02131{word-spacing:1.330560px;}
.ws6_c02131{word-spacing:36.742464px;}
.ws1_c02131{word-spacing:37.759392px;}
.ws0_c02131{word-spacing:38.020752px;}
.ws3_c02131{word-spacing:39.218256px;}
.ws5_c02131{word-spacing:39.902544px;}
.ws7_c02131{word-spacing:42.026688px;}
._0_c02131{margin-left:-1.948320px;}
._2_c02131{width:1.482624px;}
._4_c02131{width:6.263136px;}
._1_c02131{width:50.252400px;}
._3_c02131{width:51.530688px;}
.fc0_c02131{color:rgb(0,0,0);}
.fs0_c02131{font-size:47.520000px;}
.fs1_c02131{font-size:60.480000px;}
.y0_c02131{bottom:0.000000px;}
.y10_c02131{bottom:20.880450px;}
.y1c_c02131{bottom:146.998362px;}
.y1e_c02131{bottom:186.600234px;}
.y1d_c02131{bottom:196.320450px;}
.y1b_c02131{bottom:275.878542px;}
.y1a_c02131{bottom:356.878758px;}
.y18_c02131{bottom:406.559730px;}
.y14_c02131{bottom:424.560306px;}
.y19_c02131{bottom:458.759262px;}
.y17_c02131{bottom:491.879514px;}
.y16_c02131{bottom:509.880090px;}
.y13_c02131{bottom:543.000342px;}
.y15_c02131{bottom:559.559874px;}
.y12_c02131{bottom:577.560450px;}
.y20_c02131{bottom:593.760000px;}
.y21_c02131{bottom:596.640450px;}
.y1f_c02131{bottom:614.280450px;}
.yb_c02131{bottom:667.558326px;}
.yd_c02131{bottom:707.160234px;}
.yc_c02131{bottom:716.880450px;}
.ya_c02131{bottom:796.438506px;}
.y9_c02131{bottom:877.438722px;}
.y7_c02131{bottom:926.759730px;}
.y3_c02131{bottom:944.760306px;}
.y8_c02131{bottom:979.319226px;}
.y6_c02131{bottom:1012.439478px;}
.y5_c02131{bottom:1030.440054px;}
.y2_c02131{bottom:1063.560306px;}
.y4_c02131{bottom:1079.759874px;}
.y1_c02131{bottom:1097.760450px;}
.yf_c02131{bottom:1114.320000px;}
.y11_c02131{bottom:1117.200450px;}
.ye_c02131{bottom:1134.840450px;}
.h3_c02131{height:32.530781px;}
.h5_c02131{height:36.720000px;}
.h4_c02131{height:41.402813px;}
.h1_c02131{height:41.696016px;}
.h2_c02131{height:41.812031px;}
.h7_c02131{height:53.067656px;}
.h6_c02131{height:53.215313px;}
.h0_c02131{height:1263.000000px;}
.w2_c02131{width:395.280000px;}
.w1_c02131{width:892.500000px;}
.w0_c02131{width:892.830000px;}
.x0_c02131{left:0.000000px;}
.xd_c02131{left:117.000000px;}
.xe_c02131{left:161.280000px;}
.x8_c02131{left:440.999856px;}
.x4_c02131{left:445.680576px;}
.xb_c02131{left:451.080000px;}
.x7_c02131{left:455.399604px;}
.x5_c02131{left:461.880144px;}
.x1_c02131{left:463.320000px;}
.xa_c02131{left:483.480360px;}
.x9_c02131{left:492.119496px;}
.x6_c02131{left:493.200576px;}
.xc_c02131{left:506.880360px;}
.x3_c02131{left:511.919892px;}
.x2_c02131{left:526.679604px;}
@media print{
.v0_c02131{vertical-align:0.000000pt;}
.lsa_c02131{letter-spacing:-0.511104pt;}
.ls10_c02131{letter-spacing:-0.244992pt;}
.lse_c02131{letter-spacing:-0.232320pt;}
.ls8_c02131{letter-spacing:-0.215424pt;}
.ls6_c02131{letter-spacing:-0.105600pt;}
.ls12_c02131{letter-spacing:0.000000pt;}
.ls2_c02131{letter-spacing:0.005376pt;}
.lsd_c02131{letter-spacing:0.033792pt;}
.ls4_c02131{letter-spacing:0.038016pt;}
.ls7_c02131{letter-spacing:0.114048pt;}
.lsc_c02131{letter-spacing:0.451968pt;}
.ls1_c02131{letter-spacing:0.456960pt;}
.lsf_c02131{letter-spacing:0.477312pt;}
.lsb_c02131{letter-spacing:0.515328pt;}
.ls11_c02131{letter-spacing:0.528000pt;}
.ls9_c02131{letter-spacing:0.532224pt;}
.ls5_c02131{letter-spacing:0.544896pt;}
.ls0_c02131{letter-spacing:0.637824pt;}
.ls3_c02131{letter-spacing:0.642048pt;}
.wsb_c02131{word-spacing:-13.896960pt;}
.wsc_c02131{word-spacing:-13.445376pt;}
.wsa_c02131{word-spacing:-11.088000pt;}
.ws8_c02131{word-spacing:-11.075328pt;}
.ws9_c02131{word-spacing:-11.037312pt;}
.ws4_c02131{word-spacing:-10.344576pt;}
.ws14_c02131{word-spacing:-3.198720pt;}
.ws15_c02131{word-spacing:-0.963072pt;}
.ws10_c02131{word-spacing:-0.958848pt;}
.wsd_c02131{word-spacing:-0.865920pt;}
.ws16_c02131{word-spacing:-0.359040pt;}
.ws11_c02131{word-spacing:-0.354816pt;}
.wsf_c02131{word-spacing:-0.105600pt;}
.ws12_c02131{word-spacing:-0.088704pt;}
.ws13_c02131{word-spacing:-0.076032pt;}
.wse_c02131{word-spacing:0.000000pt;}
.ws2_c02131{word-spacing:1.182720pt;}
.ws6_c02131{word-spacing:32.659968pt;}
.ws1_c02131{word-spacing:33.563904pt;}
.ws0_c02131{word-spacing:33.796224pt;}
.ws3_c02131{word-spacing:34.860672pt;}
.ws5_c02131{word-spacing:35.468928pt;}
.ws7_c02131{word-spacing:37.357056pt;}
._0_c02131{margin-left:-1.731840pt;}
._2_c02131{width:1.317888pt;}
._4_c02131{width:5.567232pt;}
._1_c02131{width:44.668800pt;}
._3_c02131{width:45.805056pt;}
.fs0_c02131{font-size:42.240000pt;}
.fs1_c02131{font-size:53.760000pt;}
.y0_c02131{bottom:0.000000pt;}
.y10_c02131{bottom:18.560400pt;}
.y1c_c02131{bottom:130.665211pt;}
.y1e_c02131{bottom:165.866875pt;}
.y1d_c02131{bottom:174.507067pt;}
.y1b_c02131{bottom:245.225371pt;}
.y1a_c02131{bottom:317.225563pt;}
.y18_c02131{bottom:361.386427pt;}
.y14_c02131{bottom:377.386939pt;}
.y19_c02131{bottom:407.786011pt;}
.y17_c02131{bottom:437.226235pt;}
.y16_c02131{bottom:453.226747pt;}
.y13_c02131{bottom:482.666971pt;}
.y15_c02131{bottom:497.386555pt;}
.y12_c02131{bottom:513.387067pt;}
.y20_c02131{bottom:527.786667pt;}
.y21_c02131{bottom:530.347067pt;}
.y1f_c02131{bottom:546.027067pt;}
.yb_c02131{bottom:593.385179pt;}
.yd_c02131{bottom:628.586875pt;}
.yc_c02131{bottom:637.227067pt;}
.ya_c02131{bottom:707.945339pt;}
.y9_c02131{bottom:779.945531pt;}
.y7_c02131{bottom:823.786427pt;}
.y3_c02131{bottom:839.786939pt;}
.y8_c02131{bottom:870.505979pt;}
.y6_c02131{bottom:899.946203pt;}
.y5_c02131{bottom:915.946715pt;}
.y2_c02131{bottom:945.386939pt;}
.y4_c02131{bottom:959.786555pt;}
.y1_c02131{bottom:975.787067pt;}
.yf_c02131{bottom:990.506667pt;}
.y11_c02131{bottom:993.067067pt;}
.ye_c02131{bottom:1008.747067pt;}
.h3_c02131{height:28.916250pt;}
.h5_c02131{height:32.640000pt;}
.h4_c02131{height:36.802500pt;}
.h1_c02131{height:37.063125pt;}
.h2_c02131{height:37.166250pt;}
.h7_c02131{height:47.171250pt;}
.h6_c02131{height:47.302500pt;}
.h0_c02131{height:1122.666667pt;}
.w2_c02131{width:351.360000pt;}
.w1_c02131{width:793.333333pt;}
.w0_c02131{width:793.626667pt;}
.x0_c02131{left:0.000000pt;}
.xd_c02131{left:104.000000pt;}
.xe_c02131{left:143.360000pt;}
.x8_c02131{left:391.999872pt;}
.x4_c02131{left:396.160512pt;}
.xb_c02131{left:400.960000pt;}
.x7_c02131{left:404.799648pt;}
.x5_c02131{left:410.560128pt;}
.x1_c02131{left:411.840000pt;}
.xa_c02131{left:429.760320pt;}
.x9_c02131{left:437.439552pt;}
.x6_c02131{left:438.400512pt;}
.xc_c02131{left:450.560320pt;}
.x3_c02131{left:455.039904pt;}
.x2_c02131{left:468.159648pt;}
}





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

.ir_c02132:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02132{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02132;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02132{font-family:ff1_c02132;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02132;src:url('chunks/assets/font_ea2b274f01cdd3a38e84f1f7.woff2')format("woff");}.ff2_c02132{font-family:ff2_c02132;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02132;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02132{font-family:ff3_c02132;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02132{vertical-align:0.000000px;}
.ls16_c02132{letter-spacing:-0.793584px;}
.ls15_c02132{letter-spacing:-0.774576px;}
.lsb_c02132{letter-spacing:-0.574992px;}
.ls12_c02132{letter-spacing:-0.275616px;}
.lsa_c02132{letter-spacing:-0.266112px;}
.ls10_c02132{letter-spacing:-0.261360px;}
.ls8_c02132{letter-spacing:-0.242352px;}
.ls5_c02132{letter-spacing:-0.118800px;}
.ls14_c02132{letter-spacing:0.000000px;}
.ls2_c02132{letter-spacing:0.006048px;}
.lsd_c02132{letter-spacing:0.014256px;}
.lsf_c02132{letter-spacing:0.038016px;}
.ls7_c02132{letter-spacing:0.128304px;}
.lse_c02132{letter-spacing:0.508464px;}
.ls1_c02132{letter-spacing:0.514080px;}
.ls11_c02132{letter-spacing:0.536976px;}
.lsc_c02132{letter-spacing:0.579744px;}
.ls13_c02132{letter-spacing:0.594000px;}
.ls9_c02132{letter-spacing:0.598752px;}
.ls4_c02132{letter-spacing:0.613008px;}
.ls3_c02132{letter-spacing:0.651024px;}
.ls6_c02132{letter-spacing:0.717552px;}
.ls0_c02132{letter-spacing:0.722304px;}
.sc__c02132{text-shadow:none;}
.sc0_c02132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02132{-webkit-text-stroke:0px transparent;}
.sc0_c02132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02132{word-spacing:-15.634080px;}
.wsd_c02132{word-spacing:-15.126048px;}
.wsb_c02132{word-spacing:-12.474000px;}
.ws9_c02132{word-spacing:-12.459744px;}
.wsa_c02132{word-spacing:-12.416976px;}
.ws7_c02132{word-spacing:-11.894256px;}
.wse_c02132{word-spacing:-11.105424px;}
.ws18_c02132{word-spacing:-3.598560px;}
.ws14_c02132{word-spacing:-1.083456px;}
.ws19_c02132{word-spacing:-1.012176px;}
.ws10_c02132{word-spacing:-0.974160px;}
.ws15_c02132{word-spacing:-0.399168px;}
.ws12_c02132{word-spacing:-0.118800px;}
.ws16_c02132{word-spacing:-0.099792px;}
.ws13_c02132{word-spacing:-0.095040px;}
.ws17_c02132{word-spacing:-0.085536px;}
.ws11_c02132{word-spacing:0.000000px;}
.ws1a_c02132{word-spacing:0.432432px;}
.ws2_c02132{word-spacing:1.330560px;}
.ws6_c02132{word-spacing:34.442496px;}
.wsf_c02132{word-spacing:36.143712px;}
.ws5_c02132{word-spacing:36.742464px;}
.ws1_c02132{word-spacing:37.759392px;}
.ws0_c02132{word-spacing:38.020752px;}
.ws3_c02132{word-spacing:39.218256px;}
.ws4_c02132{word-spacing:39.902544px;}
.ws8_c02132{word-spacing:42.026688px;}
._0_c02132{margin-left:-1.948320px;}
._2_c02132{width:1.482624px;}
._4_c02132{width:4.999104px;}
._5_c02132{width:47.192112px;}
._6_c02132{width:49.240224px;}
._1_c02132{width:50.252400px;}
._3_c02132{width:51.530688px;}
.fc0_c02132{color:rgb(0,0,0);}
.fs0_c02132{font-size:47.520000px;}
.fs1_c02132{font-size:60.480000px;}
.y0_c02132{bottom:0.000000px;}
.y11_c02132{bottom:20.880450px;}
.y1d_c02132{bottom:146.998362px;}
.y1f_c02132{bottom:186.600234px;}
.y1e_c02132{bottom:196.320450px;}
.y1c_c02132{bottom:275.878542px;}
.y1b_c02132{bottom:356.878758px;}
.y19_c02132{bottom:406.559730px;}
.y15_c02132{bottom:424.560306px;}
.y1a_c02132{bottom:458.759262px;}
.y18_c02132{bottom:491.879514px;}
.y17_c02132{bottom:509.880090px;}
.y14_c02132{bottom:543.000342px;}
.y16_c02132{bottom:559.559874px;}
.y13_c02132{bottom:577.560450px;}
.y21_c02132{bottom:593.760000px;}
.y22_c02132{bottom:596.640450px;}
.y20_c02132{bottom:614.280450px;}
.yc_c02132{bottom:667.559514px;}
.ye_c02132{bottom:707.160234px;}
.yd_c02132{bottom:716.880450px;}
.yb_c02132{bottom:796.439694px;}
.ya_c02132{bottom:877.439910px;}
.y8_c02132{bottom:912.000018px;}
.y7_c02132{bottom:926.759730px;}
.y3_c02132{bottom:944.760306px;}
.y9_c02132{bottom:979.320414px;}
.y6_c02132{bottom:1012.439478px;}
.y5_c02132{bottom:1030.440054px;}
.y2_c02132{bottom:1063.560306px;}
.y4_c02132{bottom:1079.759874px;}
.y1_c02132{bottom:1097.760450px;}
.y10_c02132{bottom:1114.320000px;}
.y12_c02132{bottom:1117.200450px;}
.yf_c02132{bottom:1134.840450px;}
.h3_c02132{height:32.530781px;}
.h5_c02132{height:36.720000px;}
.h4_c02132{height:41.402813px;}
.h1_c02132{height:41.696016px;}
.h2_c02132{height:41.812031px;}
.h7_c02132{height:53.067656px;}
.h6_c02132{height:53.215313px;}
.h0_c02132{height:1263.000000px;}
.w2_c02132{width:395.280000px;}
.w1_c02132{width:892.500000px;}
.w0_c02132{width:892.830000px;}
.x0_c02132{left:0.000000px;}
.xe_c02132{left:117.000000px;}
.xf_c02132{left:161.280000px;}
.x9_c02132{left:440.999856px;}
.x4_c02132{left:445.680576px;}
.xc_c02132{left:451.080000px;}
.x7_c02132{left:455.399604px;}
.x5_c02132{left:461.880144px;}
.x1_c02132{left:463.320000px;}
.xb_c02132{left:483.480360px;}
.xa_c02132{left:492.119496px;}
.x6_c02132{left:493.200576px;}
.xd_c02132{left:506.880360px;}
.x3_c02132{left:511.919892px;}
.x2_c02132{left:526.679604px;}
.x8_c02132{left:569.880036px;}
@media print{
.v0_c02132{vertical-align:0.000000pt;}
.ls16_c02132{letter-spacing:-0.705408pt;}
.ls15_c02132{letter-spacing:-0.688512pt;}
.lsb_c02132{letter-spacing:-0.511104pt;}
.ls12_c02132{letter-spacing:-0.244992pt;}
.lsa_c02132{letter-spacing:-0.236544pt;}
.ls10_c02132{letter-spacing:-0.232320pt;}
.ls8_c02132{letter-spacing:-0.215424pt;}
.ls5_c02132{letter-spacing:-0.105600pt;}
.ls14_c02132{letter-spacing:0.000000pt;}
.ls2_c02132{letter-spacing:0.005376pt;}
.lsd_c02132{letter-spacing:0.012672pt;}
.lsf_c02132{letter-spacing:0.033792pt;}
.ls7_c02132{letter-spacing:0.114048pt;}
.lse_c02132{letter-spacing:0.451968pt;}
.ls1_c02132{letter-spacing:0.456960pt;}
.ls11_c02132{letter-spacing:0.477312pt;}
.lsc_c02132{letter-spacing:0.515328pt;}
.ls13_c02132{letter-spacing:0.528000pt;}
.ls9_c02132{letter-spacing:0.532224pt;}
.ls4_c02132{letter-spacing:0.544896pt;}
.ls3_c02132{letter-spacing:0.578688pt;}
.ls6_c02132{letter-spacing:0.637824pt;}
.ls0_c02132{letter-spacing:0.642048pt;}
.wsc_c02132{word-spacing:-13.896960pt;}
.wsd_c02132{word-spacing:-13.445376pt;}
.wsb_c02132{word-spacing:-11.088000pt;}
.ws9_c02132{word-spacing:-11.075328pt;}
.wsa_c02132{word-spacing:-11.037312pt;}
.ws7_c02132{word-spacing:-10.572672pt;}
.wse_c02132{word-spacing:-9.871488pt;}
.ws18_c02132{word-spacing:-3.198720pt;}
.ws14_c02132{word-spacing:-0.963072pt;}
.ws19_c02132{word-spacing:-0.899712pt;}
.ws10_c02132{word-spacing:-0.865920pt;}
.ws15_c02132{word-spacing:-0.354816pt;}
.ws12_c02132{word-spacing:-0.105600pt;}
.ws16_c02132{word-spacing:-0.088704pt;}
.ws13_c02132{word-spacing:-0.084480pt;}
.ws17_c02132{word-spacing:-0.076032pt;}
.ws11_c02132{word-spacing:0.000000pt;}
.ws1a_c02132{word-spacing:0.384384pt;}
.ws2_c02132{word-spacing:1.182720pt;}
.ws6_c02132{word-spacing:30.615552pt;}
.wsf_c02132{word-spacing:32.127744pt;}
.ws5_c02132{word-spacing:32.659968pt;}
.ws1_c02132{word-spacing:33.563904pt;}
.ws0_c02132{word-spacing:33.796224pt;}
.ws3_c02132{word-spacing:34.860672pt;}
.ws4_c02132{word-spacing:35.468928pt;}
.ws8_c02132{word-spacing:37.357056pt;}
._0_c02132{margin-left:-1.731840pt;}
._2_c02132{width:1.317888pt;}
._4_c02132{width:4.443648pt;}
._5_c02132{width:41.948544pt;}
._6_c02132{width:43.769088pt;}
._1_c02132{width:44.668800pt;}
._3_c02132{width:45.805056pt;}
.fs0_c02132{font-size:42.240000pt;}
.fs1_c02132{font-size:53.760000pt;}
.y0_c02132{bottom:0.000000pt;}
.y11_c02132{bottom:18.560400pt;}
.y1d_c02132{bottom:130.665211pt;}
.y1f_c02132{bottom:165.866875pt;}
.y1e_c02132{bottom:174.507067pt;}
.y1c_c02132{bottom:245.225371pt;}
.y1b_c02132{bottom:317.225563pt;}
.y19_c02132{bottom:361.386427pt;}
.y15_c02132{bottom:377.386939pt;}
.y1a_c02132{bottom:407.786011pt;}
.y18_c02132{bottom:437.226235pt;}
.y17_c02132{bottom:453.226747pt;}
.y14_c02132{bottom:482.666971pt;}
.y16_c02132{bottom:497.386555pt;}
.y13_c02132{bottom:513.387067pt;}
.y21_c02132{bottom:527.786667pt;}
.y22_c02132{bottom:530.347067pt;}
.y20_c02132{bottom:546.027067pt;}
.yc_c02132{bottom:593.386235pt;}
.ye_c02132{bottom:628.586875pt;}
.yd_c02132{bottom:637.227067pt;}
.yb_c02132{bottom:707.946395pt;}
.ya_c02132{bottom:779.946587pt;}
.y8_c02132{bottom:810.666683pt;}
.y7_c02132{bottom:823.786427pt;}
.y3_c02132{bottom:839.786939pt;}
.y9_c02132{bottom:870.507035pt;}
.y6_c02132{bottom:899.946203pt;}
.y5_c02132{bottom:915.946715pt;}
.y2_c02132{bottom:945.386939pt;}
.y4_c02132{bottom:959.786555pt;}
.y1_c02132{bottom:975.787067pt;}
.y10_c02132{bottom:990.506667pt;}
.y12_c02132{bottom:993.067067pt;}
.yf_c02132{bottom:1008.747067pt;}
.h3_c02132{height:28.916250pt;}
.h5_c02132{height:32.640000pt;}
.h4_c02132{height:36.802500pt;}
.h1_c02132{height:37.063125pt;}
.h2_c02132{height:37.166250pt;}
.h7_c02132{height:47.171250pt;}
.h6_c02132{height:47.302500pt;}
.h0_c02132{height:1122.666667pt;}
.w2_c02132{width:351.360000pt;}
.w1_c02132{width:793.333333pt;}
.w0_c02132{width:793.626667pt;}
.x0_c02132{left:0.000000pt;}
.xe_c02132{left:104.000000pt;}
.xf_c02132{left:143.360000pt;}
.x9_c02132{left:391.999872pt;}
.x4_c02132{left:396.160512pt;}
.xc_c02132{left:400.960000pt;}
.x7_c02132{left:404.799648pt;}
.x5_c02132{left:410.560128pt;}
.x1_c02132{left:411.840000pt;}
.xb_c02132{left:429.760320pt;}
.xa_c02132{left:437.439552pt;}
.x6_c02132{left:438.400512pt;}
.xd_c02132{left:450.560320pt;}
.x3_c02132{left:455.039904pt;}
.x2_c02132{left:468.159648pt;}
.x8_c02132{left:506.560032pt;}
}





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

.ir_c02133:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02133{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02133;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02133{font-family:ff1_c02133;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02133;src:url('chunks/assets/font_7618bb522f80ed68c100386d.woff2')format("woff");}.ff2_c02133{font-family:ff2_c02133;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02133;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02133{font-family:ff3_c02133;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02133{vertical-align:0.000000px;}
.ls14_c02133{letter-spacing:-0.774576px;}
.lsa_c02133{letter-spacing:-0.755568px;}
.ls16_c02133{letter-spacing:-0.736560px;}
.ls8_c02133{letter-spacing:-0.613008px;}
.lsb_c02133{letter-spacing:-0.574992px;}
.lse_c02133{letter-spacing:-0.427680px;}
.ls11_c02133{letter-spacing:-0.275616px;}
.ls17_c02133{letter-spacing:-0.270864px;}
.lsf_c02133{letter-spacing:-0.261360px;}
.ls7_c02133{letter-spacing:-0.242352px;}
.ls5_c02133{letter-spacing:-0.118800px;}
.ls13_c02133{letter-spacing:0.000000px;}
.ls2_c02133{letter-spacing:0.006048px;}
.ls15_c02133{letter-spacing:0.038016px;}
.ls6_c02133{letter-spacing:0.128304px;}
.lsd_c02133{letter-spacing:0.508464px;}
.ls1_c02133{letter-spacing:0.514080px;}
.ls10_c02133{letter-spacing:0.536976px;}
.lsc_c02133{letter-spacing:0.579744px;}
.ls12_c02133{letter-spacing:0.594000px;}
.ls9_c02133{letter-spacing:0.598752px;}
.ls3_c02133{letter-spacing:0.613008px;}
.ls0_c02133{letter-spacing:0.717552px;}
.ls4_c02133{letter-spacing:0.722304px;}
.sc__c02133{text-shadow:none;}
.sc0_c02133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02133{-webkit-text-stroke:0px transparent;}
.sc0_c02133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02133{word-spacing:-15.634080px;}
.wsc_c02133{word-spacing:-15.126048px;}
.wsa_c02133{word-spacing:-12.474000px;}
.ws8_c02133{word-spacing:-12.459744px;}
.ws9_c02133{word-spacing:-12.416976px;}
.wse_c02133{word-spacing:-11.637648px;}
.ws2_c02133{word-spacing:-11.266992px;}
.ws4_c02133{word-spacing:-11.124432px;}
.wsf_c02133{word-spacing:-11.105424px;}
.ws19_c02133{word-spacing:-3.598560px;}
.ws15_c02133{word-spacing:-1.078704px;}
.ws12_c02133{word-spacing:-0.974160px;}
.ws1a_c02133{word-spacing:-0.399168px;}
.ws14_c02133{word-spacing:-0.118800px;}
.ws17_c02133{word-spacing:-0.099792px;}
.ws1b_c02133{word-spacing:-0.090288px;}
.ws18_c02133{word-spacing:-0.085536px;}
.ws13_c02133{word-spacing:0.000000px;}
.ws16_c02133{word-spacing:0.066528px;}
.wsd_c02133{word-spacing:1.330560px;}
.ws11_c02133{word-spacing:6.629040px;}
.ws10_c02133{word-spacing:34.836912px;}
.ws6_c02133{word-spacing:36.742464px;}
.ws1_c02133{word-spacing:37.759392px;}
.ws0_c02133{word-spacing:38.020752px;}
.ws3_c02133{word-spacing:39.218256px;}
.ws5_c02133{word-spacing:39.902544px;}
.ws7_c02133{word-spacing:42.026688px;}
._0_c02133{margin-left:-1.948320px;}
._2_c02133{width:1.482624px;}
._4_c02133{width:3.369168px;}
._5_c02133{width:4.785264px;}
._7_c02133{width:19.982160px;}
._8_c02133{width:23.451120px;}
._6_c02133{width:24.691392px;}
._1_c02133{width:50.252400px;}
._3_c02133{width:51.530688px;}
.fc0_c02133{color:rgb(0,0,0);}
.fs0_c02133{font-size:47.520000px;}
.fs1_c02133{font-size:60.480000px;}
.y0_c02133{bottom:0.000000px;}
.y10_c02133{bottom:20.880450px;}
.y1d_c02133{bottom:131.878686px;}
.y1c_c02133{bottom:146.998362px;}
.y1f_c02133{bottom:186.600234px;}
.y1e_c02133{bottom:196.320450px;}
.y1b_c02133{bottom:275.878542px;}
.y1a_c02133{bottom:356.878758px;}
.y18_c02133{bottom:406.559730px;}
.y14_c02133{bottom:424.560306px;}
.y19_c02133{bottom:458.759262px;}
.y17_c02133{bottom:491.879514px;}
.y16_c02133{bottom:509.880090px;}
.y13_c02133{bottom:543.000342px;}
.y15_c02133{bottom:559.559874px;}
.y12_c02133{bottom:577.560450px;}
.y21_c02133{bottom:593.760000px;}
.y22_c02133{bottom:596.640450px;}
.y20_c02133{bottom:614.280450px;}
.yb_c02133{bottom:667.558326px;}
.yd_c02133{bottom:707.160234px;}
.yc_c02133{bottom:716.880450px;}
.ya_c02133{bottom:796.438506px;}
.y9_c02133{bottom:877.438722px;}
.y7_c02133{bottom:926.759730px;}
.y3_c02133{bottom:944.760306px;}
.y8_c02133{bottom:979.319226px;}
.y6_c02133{bottom:1012.439478px;}
.y5_c02133{bottom:1030.440054px;}
.y2_c02133{bottom:1063.560306px;}
.y4_c02133{bottom:1079.759874px;}
.y1_c02133{bottom:1097.760450px;}
.yf_c02133{bottom:1114.320000px;}
.y11_c02133{bottom:1117.200450px;}
.ye_c02133{bottom:1134.840450px;}
.h3_c02133{height:32.530781px;}
.h5_c02133{height:36.720000px;}
.h4_c02133{height:41.402813px;}
.h1_c02133{height:41.696016px;}
.h2_c02133{height:41.812031px;}
.h7_c02133{height:53.067656px;}
.h6_c02133{height:53.215313px;}
.h0_c02133{height:1263.000000px;}
.w2_c02133{width:395.280000px;}
.w1_c02133{width:892.500000px;}
.w0_c02133{width:892.830000px;}
.x0_c02133{left:0.000000px;}
.xd_c02133{left:117.000000px;}
.xe_c02133{left:161.280000px;}
.x8_c02133{left:440.999856px;}
.x4_c02133{left:445.680576px;}
.xb_c02133{left:451.080000px;}
.x7_c02133{left:455.399604px;}
.x5_c02133{left:461.880144px;}
.x1_c02133{left:463.320000px;}
.xa_c02133{left:483.480360px;}
.x9_c02133{left:492.119496px;}
.x6_c02133{left:493.200576px;}
.xc_c02133{left:506.880360px;}
.x3_c02133{left:511.919892px;}
.x2_c02133{left:526.679604px;}
.xf_c02133{left:569.880036px;}
@media print{
.v0_c02133{vertical-align:0.000000pt;}
.ls14_c02133{letter-spacing:-0.688512pt;}
.lsa_c02133{letter-spacing:-0.671616pt;}
.ls16_c02133{letter-spacing:-0.654720pt;}
.ls8_c02133{letter-spacing:-0.544896pt;}
.lsb_c02133{letter-spacing:-0.511104pt;}
.lse_c02133{letter-spacing:-0.380160pt;}
.ls11_c02133{letter-spacing:-0.244992pt;}
.ls17_c02133{letter-spacing:-0.240768pt;}
.lsf_c02133{letter-spacing:-0.232320pt;}
.ls7_c02133{letter-spacing:-0.215424pt;}
.ls5_c02133{letter-spacing:-0.105600pt;}
.ls13_c02133{letter-spacing:0.000000pt;}
.ls2_c02133{letter-spacing:0.005376pt;}
.ls15_c02133{letter-spacing:0.033792pt;}
.ls6_c02133{letter-spacing:0.114048pt;}
.lsd_c02133{letter-spacing:0.451968pt;}
.ls1_c02133{letter-spacing:0.456960pt;}
.ls10_c02133{letter-spacing:0.477312pt;}
.lsc_c02133{letter-spacing:0.515328pt;}
.ls12_c02133{letter-spacing:0.528000pt;}
.ls9_c02133{letter-spacing:0.532224pt;}
.ls3_c02133{letter-spacing:0.544896pt;}
.ls0_c02133{letter-spacing:0.637824pt;}
.ls4_c02133{letter-spacing:0.642048pt;}
.wsb_c02133{word-spacing:-13.896960pt;}
.wsc_c02133{word-spacing:-13.445376pt;}
.wsa_c02133{word-spacing:-11.088000pt;}
.ws8_c02133{word-spacing:-11.075328pt;}
.ws9_c02133{word-spacing:-11.037312pt;}
.wse_c02133{word-spacing:-10.344576pt;}
.ws2_c02133{word-spacing:-10.015104pt;}
.ws4_c02133{word-spacing:-9.888384pt;}
.wsf_c02133{word-spacing:-9.871488pt;}
.ws19_c02133{word-spacing:-3.198720pt;}
.ws15_c02133{word-spacing:-0.958848pt;}
.ws12_c02133{word-spacing:-0.865920pt;}
.ws1a_c02133{word-spacing:-0.354816pt;}
.ws14_c02133{word-spacing:-0.105600pt;}
.ws17_c02133{word-spacing:-0.088704pt;}
.ws1b_c02133{word-spacing:-0.080256pt;}
.ws18_c02133{word-spacing:-0.076032pt;}
.ws13_c02133{word-spacing:0.000000pt;}
.ws16_c02133{word-spacing:0.059136pt;}
.wsd_c02133{word-spacing:1.182720pt;}
.ws11_c02133{word-spacing:5.892480pt;}
.ws10_c02133{word-spacing:30.966144pt;}
.ws6_c02133{word-spacing:32.659968pt;}
.ws1_c02133{word-spacing:33.563904pt;}
.ws0_c02133{word-spacing:33.796224pt;}
.ws3_c02133{word-spacing:34.860672pt;}
.ws5_c02133{word-spacing:35.468928pt;}
.ws7_c02133{word-spacing:37.357056pt;}
._0_c02133{margin-left:-1.731840pt;}
._2_c02133{width:1.317888pt;}
._4_c02133{width:2.994816pt;}
._5_c02133{width:4.253568pt;}
._7_c02133{width:17.761920pt;}
._8_c02133{width:20.845440pt;}
._6_c02133{width:21.947904pt;}
._1_c02133{width:44.668800pt;}
._3_c02133{width:45.805056pt;}
.fs0_c02133{font-size:42.240000pt;}
.fs1_c02133{font-size:53.760000pt;}
.y0_c02133{bottom:0.000000pt;}
.y10_c02133{bottom:18.560400pt;}
.y1d_c02133{bottom:117.225499pt;}
.y1c_c02133{bottom:130.665211pt;}
.y1f_c02133{bottom:165.866875pt;}
.y1e_c02133{bottom:174.507067pt;}
.y1b_c02133{bottom:245.225371pt;}
.y1a_c02133{bottom:317.225563pt;}
.y18_c02133{bottom:361.386427pt;}
.y14_c02133{bottom:377.386939pt;}
.y19_c02133{bottom:407.786011pt;}
.y17_c02133{bottom:437.226235pt;}
.y16_c02133{bottom:453.226747pt;}
.y13_c02133{bottom:482.666971pt;}
.y15_c02133{bottom:497.386555pt;}
.y12_c02133{bottom:513.387067pt;}
.y21_c02133{bottom:527.786667pt;}
.y22_c02133{bottom:530.347067pt;}
.y20_c02133{bottom:546.027067pt;}
.yb_c02133{bottom:593.385179pt;}
.yd_c02133{bottom:628.586875pt;}
.yc_c02133{bottom:637.227067pt;}
.ya_c02133{bottom:707.945339pt;}
.y9_c02133{bottom:779.945531pt;}
.y7_c02133{bottom:823.786427pt;}
.y3_c02133{bottom:839.786939pt;}
.y8_c02133{bottom:870.505979pt;}
.y6_c02133{bottom:899.946203pt;}
.y5_c02133{bottom:915.946715pt;}
.y2_c02133{bottom:945.386939pt;}
.y4_c02133{bottom:959.786555pt;}
.y1_c02133{bottom:975.787067pt;}
.yf_c02133{bottom:990.506667pt;}
.y11_c02133{bottom:993.067067pt;}
.ye_c02133{bottom:1008.747067pt;}
.h3_c02133{height:28.916250pt;}
.h5_c02133{height:32.640000pt;}
.h4_c02133{height:36.802500pt;}
.h1_c02133{height:37.063125pt;}
.h2_c02133{height:37.166250pt;}
.h7_c02133{height:47.171250pt;}
.h6_c02133{height:47.302500pt;}
.h0_c02133{height:1122.666667pt;}
.w2_c02133{width:351.360000pt;}
.w1_c02133{width:793.333333pt;}
.w0_c02133{width:793.626667pt;}
.x0_c02133{left:0.000000pt;}
.xd_c02133{left:104.000000pt;}
.xe_c02133{left:143.360000pt;}
.x8_c02133{left:391.999872pt;}
.x4_c02133{left:396.160512pt;}
.xb_c02133{left:400.960000pt;}
.x7_c02133{left:404.799648pt;}
.x5_c02133{left:410.560128pt;}
.x1_c02133{left:411.840000pt;}
.xa_c02133{left:429.760320pt;}
.x9_c02133{left:437.439552pt;}
.x6_c02133{left:438.400512pt;}
.xc_c02133{left:450.560320pt;}
.x3_c02133{left:455.039904pt;}
.x2_c02133{left:468.159648pt;}
.xf_c02133{left:506.560032pt;}
}





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

.ir_c02134:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02134{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02134;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02134{font-family:ff1_c02134;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02134;src:url('chunks/assets/font_94d857e409be466b86799504.woff2')format("woff");}.ff2_c02134{font-family:ff2_c02134;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02134;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02134{font-family:ff3_c02134;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02134{vertical-align:0.000000px;}
.ls15_c02134{letter-spacing:-1.197504px;}
.lsa_c02134{letter-spacing:-0.755568px;}
.lsb_c02134{letter-spacing:-0.574992px;}
.ls10_c02134{letter-spacing:-0.361152px;}
.ls12_c02134{letter-spacing:-0.275616px;}
.lsf_c02134{letter-spacing:-0.261360px;}
.ls7_c02134{letter-spacing:-0.242352px;}
.ls5_c02134{letter-spacing:-0.118800px;}
.ls14_c02134{letter-spacing:0.000000px;}
.ls1_c02134{letter-spacing:0.006048px;}
.ls6_c02134{letter-spacing:0.128304px;}
.ls8_c02134{letter-spacing:0.242352px;}
.lsd_c02134{letter-spacing:0.508464px;}
.ls0_c02134{letter-spacing:0.514080px;}
.ls11_c02134{letter-spacing:0.536976px;}
.lsc_c02134{letter-spacing:0.579744px;}
.ls13_c02134{letter-spacing:0.594000px;}
.ls9_c02134{letter-spacing:0.598752px;}
.ls3_c02134{letter-spacing:0.613008px;}
.lse_c02134{letter-spacing:0.651024px;}
.ls2_c02134{letter-spacing:0.717552px;}
.ls4_c02134{letter-spacing:0.722304px;}
.sc__c02134{text-shadow:none;}
.sc0_c02134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02134{-webkit-text-stroke:0px transparent;}
.sc0_c02134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02134{word-spacing:-15.634080px;}
.wsc_c02134{word-spacing:-15.126048px;}
.wsa_c02134{word-spacing:-12.474000px;}
.ws6_c02134{word-spacing:-12.459744px;}
.ws9_c02134{word-spacing:-12.416976px;}
.ws7_c02134{word-spacing:-12.388464px;}
.ws2_c02134{word-spacing:-12.122352px;}
.ws5_c02134{word-spacing:-11.305008px;}
.ws4_c02134{word-spacing:-11.124432px;}
.ws15_c02134{word-spacing:-3.598560px;}
.ws16_c02134{word-spacing:-1.078704px;}
.ws12_c02134{word-spacing:-1.012176px;}
.wsf_c02134{word-spacing:-0.974160px;}
.ws11_c02134{word-spacing:-0.118800px;}
.ws13_c02134{word-spacing:-0.099792px;}
.ws14_c02134{word-spacing:-0.085536px;}
.ws10_c02134{word-spacing:0.000000px;}
.ws17_c02134{word-spacing:0.836352px;}
.ws8_c02134{word-spacing:36.143712px;}
.ws1_c02134{word-spacing:37.759392px;}
.ws0_c02134{word-spacing:38.020752px;}
.ws3_c02134{word-spacing:39.218256px;}
.wsd_c02134{word-spacing:39.902544px;}
.wse_c02134{word-spacing:42.026688px;}
._0_c02134{margin-left:-1.948320px;}
._2_c02134{width:1.482624px;}
._4_c02134{width:3.369168px;}
._1_c02134{width:50.252400px;}
._3_c02134{width:51.530688px;}
.fc0_c02134{color:rgb(0,0,0);}
.fs0_c02134{font-size:47.520000px;}
.fs1_c02134{font-size:60.480000px;}
.y0_c02134{bottom:0.000000px;}
.y10_c02134{bottom:20.880450px;}
.y1c_c02134{bottom:146.998362px;}
.y1e_c02134{bottom:186.600234px;}
.y1d_c02134{bottom:196.320450px;}
.y1b_c02134{bottom:275.878542px;}
.y1a_c02134{bottom:356.878758px;}
.y18_c02134{bottom:406.559730px;}
.y14_c02134{bottom:424.560306px;}
.y19_c02134{bottom:458.759262px;}
.y17_c02134{bottom:491.879514px;}
.y16_c02134{bottom:509.880090px;}
.y13_c02134{bottom:543.000342px;}
.y15_c02134{bottom:559.559874px;}
.y12_c02134{bottom:577.560450px;}
.y20_c02134{bottom:593.760000px;}
.y21_c02134{bottom:596.640450px;}
.y1f_c02134{bottom:614.280450px;}
.yb_c02134{bottom:667.558326px;}
.yd_c02134{bottom:707.160234px;}
.yc_c02134{bottom:716.880450px;}
.ya_c02134{bottom:796.438506px;}
.y9_c02134{bottom:877.438722px;}
.y7_c02134{bottom:926.759730px;}
.y3_c02134{bottom:944.760306px;}
.y8_c02134{bottom:979.319226px;}
.y6_c02134{bottom:1012.439478px;}
.y5_c02134{bottom:1030.440054px;}
.y2_c02134{bottom:1063.560306px;}
.y4_c02134{bottom:1079.759874px;}
.y1_c02134{bottom:1097.760450px;}
.yf_c02134{bottom:1114.320000px;}
.y11_c02134{bottom:1117.200450px;}
.ye_c02134{bottom:1134.840450px;}
.h3_c02134{height:32.530781px;}
.h5_c02134{height:36.720000px;}
.h4_c02134{height:41.402813px;}
.h1_c02134{height:41.696016px;}
.h2_c02134{height:41.812031px;}
.h7_c02134{height:53.067656px;}
.h6_c02134{height:53.215313px;}
.h0_c02134{height:1263.000000px;}
.w2_c02134{width:395.280000px;}
.w1_c02134{width:892.500000px;}
.w0_c02134{width:892.830000px;}
.x0_c02134{left:0.000000px;}
.xd_c02134{left:117.000000px;}
.xe_c02134{left:161.280000px;}
.x8_c02134{left:441.001044px;}
.x4_c02134{left:445.680576px;}
.xb_c02134{left:451.080000px;}
.x7_c02134{left:455.400792px;}
.x5_c02134{left:461.880144px;}
.x1_c02134{left:463.320000px;}
.xa_c02134{left:483.481548px;}
.x9_c02134{left:492.120684px;}
.x6_c02134{left:493.200576px;}
.xc_c02134{left:506.880360px;}
.x3_c02134{left:511.919892px;}
.x2_c02134{left:526.679604px;}
@media print{
.v0_c02134{vertical-align:0.000000pt;}
.ls15_c02134{letter-spacing:-1.064448pt;}
.lsa_c02134{letter-spacing:-0.671616pt;}
.lsb_c02134{letter-spacing:-0.511104pt;}
.ls10_c02134{letter-spacing:-0.321024pt;}
.ls12_c02134{letter-spacing:-0.244992pt;}
.lsf_c02134{letter-spacing:-0.232320pt;}
.ls7_c02134{letter-spacing:-0.215424pt;}
.ls5_c02134{letter-spacing:-0.105600pt;}
.ls14_c02134{letter-spacing:0.000000pt;}
.ls1_c02134{letter-spacing:0.005376pt;}
.ls6_c02134{letter-spacing:0.114048pt;}
.ls8_c02134{letter-spacing:0.215424pt;}
.lsd_c02134{letter-spacing:0.451968pt;}
.ls0_c02134{letter-spacing:0.456960pt;}
.ls11_c02134{letter-spacing:0.477312pt;}
.lsc_c02134{letter-spacing:0.515328pt;}
.ls13_c02134{letter-spacing:0.528000pt;}
.ls9_c02134{letter-spacing:0.532224pt;}
.ls3_c02134{letter-spacing:0.544896pt;}
.lse_c02134{letter-spacing:0.578688pt;}
.ls2_c02134{letter-spacing:0.637824pt;}
.ls4_c02134{letter-spacing:0.642048pt;}
.wsb_c02134{word-spacing:-13.896960pt;}
.wsc_c02134{word-spacing:-13.445376pt;}
.wsa_c02134{word-spacing:-11.088000pt;}
.ws6_c02134{word-spacing:-11.075328pt;}
.ws9_c02134{word-spacing:-11.037312pt;}
.ws7_c02134{word-spacing:-11.011968pt;}
.ws2_c02134{word-spacing:-10.775424pt;}
.ws5_c02134{word-spacing:-10.048896pt;}
.ws4_c02134{word-spacing:-9.888384pt;}
.ws15_c02134{word-spacing:-3.198720pt;}
.ws16_c02134{word-spacing:-0.958848pt;}
.ws12_c02134{word-spacing:-0.899712pt;}
.wsf_c02134{word-spacing:-0.865920pt;}
.ws11_c02134{word-spacing:-0.105600pt;}
.ws13_c02134{word-spacing:-0.088704pt;}
.ws14_c02134{word-spacing:-0.076032pt;}
.ws10_c02134{word-spacing:0.000000pt;}
.ws17_c02134{word-spacing:0.743424pt;}
.ws8_c02134{word-spacing:32.127744pt;}
.ws1_c02134{word-spacing:33.563904pt;}
.ws0_c02134{word-spacing:33.796224pt;}
.ws3_c02134{word-spacing:34.860672pt;}
.wsd_c02134{word-spacing:35.468928pt;}
.wse_c02134{word-spacing:37.357056pt;}
._0_c02134{margin-left:-1.731840pt;}
._2_c02134{width:1.317888pt;}
._4_c02134{width:2.994816pt;}
._1_c02134{width:44.668800pt;}
._3_c02134{width:45.805056pt;}
.fs0_c02134{font-size:42.240000pt;}
.fs1_c02134{font-size:53.760000pt;}
.y0_c02134{bottom:0.000000pt;}
.y10_c02134{bottom:18.560400pt;}
.y1c_c02134{bottom:130.665211pt;}
.y1e_c02134{bottom:165.866875pt;}
.y1d_c02134{bottom:174.507067pt;}
.y1b_c02134{bottom:245.225371pt;}
.y1a_c02134{bottom:317.225563pt;}
.y18_c02134{bottom:361.386427pt;}
.y14_c02134{bottom:377.386939pt;}
.y19_c02134{bottom:407.786011pt;}
.y17_c02134{bottom:437.226235pt;}
.y16_c02134{bottom:453.226747pt;}
.y13_c02134{bottom:482.666971pt;}
.y15_c02134{bottom:497.386555pt;}
.y12_c02134{bottom:513.387067pt;}
.y20_c02134{bottom:527.786667pt;}
.y21_c02134{bottom:530.347067pt;}
.y1f_c02134{bottom:546.027067pt;}
.yb_c02134{bottom:593.385179pt;}
.yd_c02134{bottom:628.586875pt;}
.yc_c02134{bottom:637.227067pt;}
.ya_c02134{bottom:707.945339pt;}
.y9_c02134{bottom:779.945531pt;}
.y7_c02134{bottom:823.786427pt;}
.y3_c02134{bottom:839.786939pt;}
.y8_c02134{bottom:870.505979pt;}
.y6_c02134{bottom:899.946203pt;}
.y5_c02134{bottom:915.946715pt;}
.y2_c02134{bottom:945.386939pt;}
.y4_c02134{bottom:959.786555pt;}
.y1_c02134{bottom:975.787067pt;}
.yf_c02134{bottom:990.506667pt;}
.y11_c02134{bottom:993.067067pt;}
.ye_c02134{bottom:1008.747067pt;}
.h3_c02134{height:28.916250pt;}
.h5_c02134{height:32.640000pt;}
.h4_c02134{height:36.802500pt;}
.h1_c02134{height:37.063125pt;}
.h2_c02134{height:37.166250pt;}
.h7_c02134{height:47.171250pt;}
.h6_c02134{height:47.302500pt;}
.h0_c02134{height:1122.666667pt;}
.w2_c02134{width:351.360000pt;}
.w1_c02134{width:793.333333pt;}
.w0_c02134{width:793.626667pt;}
.x0_c02134{left:0.000000pt;}
.xd_c02134{left:104.000000pt;}
.xe_c02134{left:143.360000pt;}
.x8_c02134{left:392.000928pt;}
.x4_c02134{left:396.160512pt;}
.xb_c02134{left:400.960000pt;}
.x7_c02134{left:404.800704pt;}
.x5_c02134{left:410.560128pt;}
.x1_c02134{left:411.840000pt;}
.xa_c02134{left:429.761376pt;}
.x9_c02134{left:437.440608pt;}
.x6_c02134{left:438.400512pt;}
.xc_c02134{left:450.560320pt;}
.x3_c02134{left:455.039904pt;}
.x2_c02134{left:468.159648pt;}
}





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

.ir_c02135:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02135{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02135;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02135{font-family:ff1_c02135;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02135;src:url('chunks/assets/font_354da65f7ef6161e7196d4f4.woff2')format("woff");}.ff2_c02135{font-family:ff2_c02135;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02135;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02135{font-family:ff3_c02135;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02135{vertical-align:0.000000px;}
.ls15_c02135{letter-spacing:-0.755568px;}
.ls14_c02135{letter-spacing:-0.613008px;}
.lsc_c02135{letter-spacing:-0.574992px;}
.ls11_c02135{letter-spacing:-0.275616px;}
.lsf_c02135{letter-spacing:-0.261360px;}
.ls8_c02135{letter-spacing:-0.242352px;}
.ls6_c02135{letter-spacing:-0.118800px;}
.lsb_c02135{letter-spacing:-0.080784px;}
.ls13_c02135{letter-spacing:0.000000px;}
.ls3_c02135{letter-spacing:0.006048px;}
.ls7_c02135{letter-spacing:0.128304px;}
.ls9_c02135{letter-spacing:0.242352px;}
.lse_c02135{letter-spacing:0.508464px;}
.ls2_c02135{letter-spacing:0.514080px;}
.ls10_c02135{letter-spacing:0.536976px;}
.lsd_c02135{letter-spacing:0.579744px;}
.ls12_c02135{letter-spacing:0.594000px;}
.lsa_c02135{letter-spacing:0.598752px;}
.ls4_c02135{letter-spacing:0.613008px;}
.ls0_c02135{letter-spacing:0.651024px;}
.ls1_c02135{letter-spacing:0.717552px;}
.ls5_c02135{letter-spacing:0.722304px;}
.sc__c02135{text-shadow:none;}
.sc0_c02135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02135{-webkit-text-stroke:0px transparent;}
.sc0_c02135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02135{word-spacing:-15.634080px;}
.wsc_c02135{word-spacing:-15.126048px;}
.wsa_c02135{word-spacing:-12.474000px;}
.ws8_c02135{word-spacing:-12.459744px;}
.ws9_c02135{word-spacing:-12.416976px;}
.ws2_c02135{word-spacing:-12.122352px;}
.ws4_c02135{word-spacing:-11.799216px;}
.wsd_c02135{word-spacing:-11.266992px;}
.wse_c02135{word-spacing:-11.124432px;}
.ws16_c02135{word-spacing:-3.598560px;}
.ws13_c02135{word-spacing:-1.078704px;}
.ws11_c02135{word-spacing:-1.012176px;}
.wsf_c02135{word-spacing:-0.974160px;}
.ws12_c02135{word-spacing:-0.118800px;}
.ws14_c02135{word-spacing:-0.099792px;}
.ws15_c02135{word-spacing:-0.085536px;}
.ws10_c02135{word-spacing:0.000000px;}
.ws6_c02135{word-spacing:36.742464px;}
.ws1_c02135{word-spacing:37.759392px;}
.ws0_c02135{word-spacing:38.020752px;}
.ws3_c02135{word-spacing:39.218256px;}
.ws5_c02135{word-spacing:39.902544px;}
.ws7_c02135{word-spacing:42.026688px;}
._0_c02135{margin-left:-1.948320px;}
._2_c02135{width:1.482624px;}
._4_c02135{width:3.369168px;}
._1_c02135{width:50.252400px;}
._3_c02135{width:51.530688px;}
.fc0_c02135{color:rgb(0,0,0);}
.fs0_c02135{font-size:47.520000px;}
.fs1_c02135{font-size:60.480000px;}
.y0_c02135{bottom:0.000000px;}
.y10_c02135{bottom:20.880450px;}
.y1c_c02135{bottom:146.998362px;}
.y1e_c02135{bottom:186.600234px;}
.y1d_c02135{bottom:196.320450px;}
.y1b_c02135{bottom:275.878542px;}
.y1a_c02135{bottom:356.878758px;}
.y18_c02135{bottom:406.559730px;}
.y14_c02135{bottom:424.560306px;}
.y19_c02135{bottom:458.759262px;}
.y17_c02135{bottom:491.879514px;}
.y16_c02135{bottom:509.880090px;}
.y13_c02135{bottom:543.000342px;}
.y15_c02135{bottom:559.559874px;}
.y12_c02135{bottom:577.560450px;}
.y20_c02135{bottom:593.760000px;}
.y21_c02135{bottom:596.640450px;}
.y1f_c02135{bottom:614.280450px;}
.yb_c02135{bottom:667.558326px;}
.yd_c02135{bottom:707.160234px;}
.yc_c02135{bottom:716.880450px;}
.ya_c02135{bottom:796.438506px;}
.y9_c02135{bottom:877.438722px;}
.y7_c02135{bottom:926.759730px;}
.y3_c02135{bottom:944.760306px;}
.y8_c02135{bottom:979.319226px;}
.y6_c02135{bottom:1012.439478px;}
.y5_c02135{bottom:1030.440054px;}
.y2_c02135{bottom:1063.560306px;}
.y4_c02135{bottom:1079.759874px;}
.y1_c02135{bottom:1097.760450px;}
.yf_c02135{bottom:1114.320000px;}
.y11_c02135{bottom:1117.200450px;}
.ye_c02135{bottom:1134.840450px;}
.h3_c02135{height:32.530781px;}
.h5_c02135{height:36.720000px;}
.h4_c02135{height:41.402813px;}
.h1_c02135{height:41.696016px;}
.h2_c02135{height:41.812031px;}
.h7_c02135{height:53.067656px;}
.h6_c02135{height:53.215313px;}
.h0_c02135{height:1263.000000px;}
.w2_c02135{width:395.280000px;}
.w1_c02135{width:892.500000px;}
.w0_c02135{width:892.830000px;}
.x0_c02135{left:0.000000px;}
.xd_c02135{left:117.000000px;}
.xe_c02135{left:161.280000px;}
.x8_c02135{left:440.999856px;}
.x4_c02135{left:445.680576px;}
.xb_c02135{left:451.080000px;}
.x7_c02135{left:455.399604px;}
.x5_c02135{left:461.880144px;}
.x1_c02135{left:463.320000px;}
.xa_c02135{left:483.480360px;}
.x9_c02135{left:492.119496px;}
.x6_c02135{left:493.200576px;}
.xc_c02135{left:506.880360px;}
.x3_c02135{left:511.919892px;}
.x2_c02135{left:526.679604px;}
@media print{
.v0_c02135{vertical-align:0.000000pt;}
.ls15_c02135{letter-spacing:-0.671616pt;}
.ls14_c02135{letter-spacing:-0.544896pt;}
.lsc_c02135{letter-spacing:-0.511104pt;}
.ls11_c02135{letter-spacing:-0.244992pt;}
.lsf_c02135{letter-spacing:-0.232320pt;}
.ls8_c02135{letter-spacing:-0.215424pt;}
.ls6_c02135{letter-spacing:-0.105600pt;}
.lsb_c02135{letter-spacing:-0.071808pt;}
.ls13_c02135{letter-spacing:0.000000pt;}
.ls3_c02135{letter-spacing:0.005376pt;}
.ls7_c02135{letter-spacing:0.114048pt;}
.ls9_c02135{letter-spacing:0.215424pt;}
.lse_c02135{letter-spacing:0.451968pt;}
.ls2_c02135{letter-spacing:0.456960pt;}
.ls10_c02135{letter-spacing:0.477312pt;}
.lsd_c02135{letter-spacing:0.515328pt;}
.ls12_c02135{letter-spacing:0.528000pt;}
.lsa_c02135{letter-spacing:0.532224pt;}
.ls4_c02135{letter-spacing:0.544896pt;}
.ls0_c02135{letter-spacing:0.578688pt;}
.ls1_c02135{letter-spacing:0.637824pt;}
.ls5_c02135{letter-spacing:0.642048pt;}
.wsb_c02135{word-spacing:-13.896960pt;}
.wsc_c02135{word-spacing:-13.445376pt;}
.wsa_c02135{word-spacing:-11.088000pt;}
.ws8_c02135{word-spacing:-11.075328pt;}
.ws9_c02135{word-spacing:-11.037312pt;}
.ws2_c02135{word-spacing:-10.775424pt;}
.ws4_c02135{word-spacing:-10.488192pt;}
.wsd_c02135{word-spacing:-10.015104pt;}
.wse_c02135{word-spacing:-9.888384pt;}
.ws16_c02135{word-spacing:-3.198720pt;}
.ws13_c02135{word-spacing:-0.958848pt;}
.ws11_c02135{word-spacing:-0.899712pt;}
.wsf_c02135{word-spacing:-0.865920pt;}
.ws12_c02135{word-spacing:-0.105600pt;}
.ws14_c02135{word-spacing:-0.088704pt;}
.ws15_c02135{word-spacing:-0.076032pt;}
.ws10_c02135{word-spacing:0.000000pt;}
.ws6_c02135{word-spacing:32.659968pt;}
.ws1_c02135{word-spacing:33.563904pt;}
.ws0_c02135{word-spacing:33.796224pt;}
.ws3_c02135{word-spacing:34.860672pt;}
.ws5_c02135{word-spacing:35.468928pt;}
.ws7_c02135{word-spacing:37.357056pt;}
._0_c02135{margin-left:-1.731840pt;}
._2_c02135{width:1.317888pt;}
._4_c02135{width:2.994816pt;}
._1_c02135{width:44.668800pt;}
._3_c02135{width:45.805056pt;}
.fs0_c02135{font-size:42.240000pt;}
.fs1_c02135{font-size:53.760000pt;}
.y0_c02135{bottom:0.000000pt;}
.y10_c02135{bottom:18.560400pt;}
.y1c_c02135{bottom:130.665211pt;}
.y1e_c02135{bottom:165.866875pt;}
.y1d_c02135{bottom:174.507067pt;}
.y1b_c02135{bottom:245.225371pt;}
.y1a_c02135{bottom:317.225563pt;}
.y18_c02135{bottom:361.386427pt;}
.y14_c02135{bottom:377.386939pt;}
.y19_c02135{bottom:407.786011pt;}
.y17_c02135{bottom:437.226235pt;}
.y16_c02135{bottom:453.226747pt;}
.y13_c02135{bottom:482.666971pt;}
.y15_c02135{bottom:497.386555pt;}
.y12_c02135{bottom:513.387067pt;}
.y20_c02135{bottom:527.786667pt;}
.y21_c02135{bottom:530.347067pt;}
.y1f_c02135{bottom:546.027067pt;}
.yb_c02135{bottom:593.385179pt;}
.yd_c02135{bottom:628.586875pt;}
.yc_c02135{bottom:637.227067pt;}
.ya_c02135{bottom:707.945339pt;}
.y9_c02135{bottom:779.945531pt;}
.y7_c02135{bottom:823.786427pt;}
.y3_c02135{bottom:839.786939pt;}
.y8_c02135{bottom:870.505979pt;}
.y6_c02135{bottom:899.946203pt;}
.y5_c02135{bottom:915.946715pt;}
.y2_c02135{bottom:945.386939pt;}
.y4_c02135{bottom:959.786555pt;}
.y1_c02135{bottom:975.787067pt;}
.yf_c02135{bottom:990.506667pt;}
.y11_c02135{bottom:993.067067pt;}
.ye_c02135{bottom:1008.747067pt;}
.h3_c02135{height:28.916250pt;}
.h5_c02135{height:32.640000pt;}
.h4_c02135{height:36.802500pt;}
.h1_c02135{height:37.063125pt;}
.h2_c02135{height:37.166250pt;}
.h7_c02135{height:47.171250pt;}
.h6_c02135{height:47.302500pt;}
.h0_c02135{height:1122.666667pt;}
.w2_c02135{width:351.360000pt;}
.w1_c02135{width:793.333333pt;}
.w0_c02135{width:793.626667pt;}
.x0_c02135{left:0.000000pt;}
.xd_c02135{left:104.000000pt;}
.xe_c02135{left:143.360000pt;}
.x8_c02135{left:391.999872pt;}
.x4_c02135{left:396.160512pt;}
.xb_c02135{left:400.960000pt;}
.x7_c02135{left:404.799648pt;}
.x5_c02135{left:410.560128pt;}
.x1_c02135{left:411.840000pt;}
.xa_c02135{left:429.760320pt;}
.x9_c02135{left:437.439552pt;}
.x6_c02135{left:438.400512pt;}
.xc_c02135{left:450.560320pt;}
.x3_c02135{left:455.039904pt;}
.x2_c02135{left:468.159648pt;}
}





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

.ir_c02136:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02136{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02136;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02136{font-family:ff1_c02136;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02136;src:url('chunks/assets/font_bd5c2e39b66106029f2f675e.woff2')format("woff");}.ff2_c02136{font-family:ff2_c02136;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02136;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02136{font-family:ff3_c02136;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02136{vertical-align:0.000000px;}
.ls14_c02136{letter-spacing:-1.197504px;}
.lsa_c02136{letter-spacing:-0.755568px;}
.ls8_c02136{letter-spacing:-0.613008px;}
.lsb_c02136{letter-spacing:-0.574992px;}
.ls11_c02136{letter-spacing:-0.275616px;}
.lsf_c02136{letter-spacing:-0.261360px;}
.ls7_c02136{letter-spacing:-0.242352px;}
.ls5_c02136{letter-spacing:-0.118800px;}
.ls13_c02136{letter-spacing:0.000000px;}
.ls2_c02136{letter-spacing:0.006048px;}
.ls6_c02136{letter-spacing:0.128304px;}
.lse_c02136{letter-spacing:0.242352px;}
.lsd_c02136{letter-spacing:0.508464px;}
.ls1_c02136{letter-spacing:0.514080px;}
.ls10_c02136{letter-spacing:0.536976px;}
.lsc_c02136{letter-spacing:0.579744px;}
.ls12_c02136{letter-spacing:0.594000px;}
.ls9_c02136{letter-spacing:0.598752px;}
.ls3_c02136{letter-spacing:0.613008px;}
.ls0_c02136{letter-spacing:0.717552px;}
.ls4_c02136{letter-spacing:0.722304px;}
.sc__c02136{text-shadow:none;}
.sc0_c02136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02136{-webkit-text-stroke:0px transparent;}
.sc0_c02136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02136{word-spacing:-15.634080px;}
.wsc_c02136{word-spacing:-15.126048px;}
.wsa_c02136{word-spacing:-12.474000px;}
.ws8_c02136{word-spacing:-12.459744px;}
.ws9_c02136{word-spacing:-12.416976px;}
.ws2_c02136{word-spacing:-11.266992px;}
.ws4_c02136{word-spacing:-11.124432px;}
.ws13_c02136{word-spacing:-3.598560px;}
.ws10_c02136{word-spacing:-1.078704px;}
.wsd_c02136{word-spacing:-0.974160px;}
.wsf_c02136{word-spacing:-0.118800px;}
.ws11_c02136{word-spacing:-0.099792px;}
.ws12_c02136{word-spacing:-0.085536px;}
.wse_c02136{word-spacing:0.000000px;}
.ws14_c02136{word-spacing:0.836352px;}
.ws6_c02136{word-spacing:36.742464px;}
.ws1_c02136{word-spacing:37.759392px;}
.ws0_c02136{word-spacing:38.020752px;}
.ws3_c02136{word-spacing:39.218256px;}
.ws5_c02136{word-spacing:39.902544px;}
.ws7_c02136{word-spacing:42.026688px;}
._0_c02136{margin-left:-1.948320px;}
._2_c02136{width:1.482624px;}
._4_c02136{width:3.369168px;}
._1_c02136{width:50.252400px;}
._3_c02136{width:51.530688px;}
.fc0_c02136{color:rgb(0,0,0);}
.fs0_c02136{font-size:47.520000px;}
.fs1_c02136{font-size:60.480000px;}
.y0_c02136{bottom:0.000000px;}
.y10_c02136{bottom:20.880450px;}
.y1c_c02136{bottom:146.998362px;}
.y1e_c02136{bottom:186.600234px;}
.y1d_c02136{bottom:196.320450px;}
.y1b_c02136{bottom:275.878542px;}
.y1a_c02136{bottom:356.878758px;}
.y18_c02136{bottom:406.559730px;}
.y14_c02136{bottom:424.560306px;}
.y19_c02136{bottom:458.759262px;}
.y17_c02136{bottom:491.879514px;}
.y16_c02136{bottom:509.880090px;}
.y13_c02136{bottom:543.000342px;}
.y15_c02136{bottom:559.559874px;}
.y12_c02136{bottom:577.560450px;}
.y20_c02136{bottom:593.760000px;}
.y21_c02136{bottom:596.640450px;}
.y1f_c02136{bottom:614.280450px;}
.yb_c02136{bottom:667.558326px;}
.yd_c02136{bottom:707.160234px;}
.yc_c02136{bottom:716.880450px;}
.ya_c02136{bottom:796.438506px;}
.y9_c02136{bottom:877.438722px;}
.y7_c02136{bottom:926.759730px;}
.y3_c02136{bottom:944.760306px;}
.y8_c02136{bottom:979.319226px;}
.y6_c02136{bottom:1012.439478px;}
.y5_c02136{bottom:1030.440054px;}
.y2_c02136{bottom:1063.560306px;}
.y4_c02136{bottom:1079.759874px;}
.y1_c02136{bottom:1097.760450px;}
.yf_c02136{bottom:1114.320000px;}
.y11_c02136{bottom:1117.200450px;}
.ye_c02136{bottom:1134.840450px;}
.h3_c02136{height:32.530781px;}
.h5_c02136{height:36.720000px;}
.h4_c02136{height:41.402813px;}
.h1_c02136{height:41.696016px;}
.h2_c02136{height:41.812031px;}
.h7_c02136{height:53.067656px;}
.h6_c02136{height:53.215313px;}
.h0_c02136{height:1263.000000px;}
.w2_c02136{width:395.280000px;}
.w1_c02136{width:892.500000px;}
.w0_c02136{width:892.830000px;}
.x0_c02136{left:0.000000px;}
.xd_c02136{left:117.000000px;}
.xe_c02136{left:161.280000px;}
.x8_c02136{left:440.999856px;}
.x4_c02136{left:445.680576px;}
.xb_c02136{left:451.080000px;}
.x7_c02136{left:455.399604px;}
.x5_c02136{left:461.880144px;}
.x1_c02136{left:463.320000px;}
.xa_c02136{left:483.480360px;}
.x9_c02136{left:492.119496px;}
.x6_c02136{left:493.200576px;}
.xc_c02136{left:506.880360px;}
.x3_c02136{left:511.919892px;}
.x2_c02136{left:526.679604px;}
@media print{
.v0_c02136{vertical-align:0.000000pt;}
.ls14_c02136{letter-spacing:-1.064448pt;}
.lsa_c02136{letter-spacing:-0.671616pt;}
.ls8_c02136{letter-spacing:-0.544896pt;}
.lsb_c02136{letter-spacing:-0.511104pt;}
.ls11_c02136{letter-spacing:-0.244992pt;}
.lsf_c02136{letter-spacing:-0.232320pt;}
.ls7_c02136{letter-spacing:-0.215424pt;}
.ls5_c02136{letter-spacing:-0.105600pt;}
.ls13_c02136{letter-spacing:0.000000pt;}
.ls2_c02136{letter-spacing:0.005376pt;}
.ls6_c02136{letter-spacing:0.114048pt;}
.lse_c02136{letter-spacing:0.215424pt;}
.lsd_c02136{letter-spacing:0.451968pt;}
.ls1_c02136{letter-spacing:0.456960pt;}
.ls10_c02136{letter-spacing:0.477312pt;}
.lsc_c02136{letter-spacing:0.515328pt;}
.ls12_c02136{letter-spacing:0.528000pt;}
.ls9_c02136{letter-spacing:0.532224pt;}
.ls3_c02136{letter-spacing:0.544896pt;}
.ls0_c02136{letter-spacing:0.637824pt;}
.ls4_c02136{letter-spacing:0.642048pt;}
.wsb_c02136{word-spacing:-13.896960pt;}
.wsc_c02136{word-spacing:-13.445376pt;}
.wsa_c02136{word-spacing:-11.088000pt;}
.ws8_c02136{word-spacing:-11.075328pt;}
.ws9_c02136{word-spacing:-11.037312pt;}
.ws2_c02136{word-spacing:-10.015104pt;}
.ws4_c02136{word-spacing:-9.888384pt;}
.ws13_c02136{word-spacing:-3.198720pt;}
.ws10_c02136{word-spacing:-0.958848pt;}
.wsd_c02136{word-spacing:-0.865920pt;}
.wsf_c02136{word-spacing:-0.105600pt;}
.ws11_c02136{word-spacing:-0.088704pt;}
.ws12_c02136{word-spacing:-0.076032pt;}
.wse_c02136{word-spacing:0.000000pt;}
.ws14_c02136{word-spacing:0.743424pt;}
.ws6_c02136{word-spacing:32.659968pt;}
.ws1_c02136{word-spacing:33.563904pt;}
.ws0_c02136{word-spacing:33.796224pt;}
.ws3_c02136{word-spacing:34.860672pt;}
.ws5_c02136{word-spacing:35.468928pt;}
.ws7_c02136{word-spacing:37.357056pt;}
._0_c02136{margin-left:-1.731840pt;}
._2_c02136{width:1.317888pt;}
._4_c02136{width:2.994816pt;}
._1_c02136{width:44.668800pt;}
._3_c02136{width:45.805056pt;}
.fs0_c02136{font-size:42.240000pt;}
.fs1_c02136{font-size:53.760000pt;}
.y0_c02136{bottom:0.000000pt;}
.y10_c02136{bottom:18.560400pt;}
.y1c_c02136{bottom:130.665211pt;}
.y1e_c02136{bottom:165.866875pt;}
.y1d_c02136{bottom:174.507067pt;}
.y1b_c02136{bottom:245.225371pt;}
.y1a_c02136{bottom:317.225563pt;}
.y18_c02136{bottom:361.386427pt;}
.y14_c02136{bottom:377.386939pt;}
.y19_c02136{bottom:407.786011pt;}
.y17_c02136{bottom:437.226235pt;}
.y16_c02136{bottom:453.226747pt;}
.y13_c02136{bottom:482.666971pt;}
.y15_c02136{bottom:497.386555pt;}
.y12_c02136{bottom:513.387067pt;}
.y20_c02136{bottom:527.786667pt;}
.y21_c02136{bottom:530.347067pt;}
.y1f_c02136{bottom:546.027067pt;}
.yb_c02136{bottom:593.385179pt;}
.yd_c02136{bottom:628.586875pt;}
.yc_c02136{bottom:637.227067pt;}
.ya_c02136{bottom:707.945339pt;}
.y9_c02136{bottom:779.945531pt;}
.y7_c02136{bottom:823.786427pt;}
.y3_c02136{bottom:839.786939pt;}
.y8_c02136{bottom:870.505979pt;}
.y6_c02136{bottom:899.946203pt;}
.y5_c02136{bottom:915.946715pt;}
.y2_c02136{bottom:945.386939pt;}
.y4_c02136{bottom:959.786555pt;}
.y1_c02136{bottom:975.787067pt;}
.yf_c02136{bottom:990.506667pt;}
.y11_c02136{bottom:993.067067pt;}
.ye_c02136{bottom:1008.747067pt;}
.h3_c02136{height:28.916250pt;}
.h5_c02136{height:32.640000pt;}
.h4_c02136{height:36.802500pt;}
.h1_c02136{height:37.063125pt;}
.h2_c02136{height:37.166250pt;}
.h7_c02136{height:47.171250pt;}
.h6_c02136{height:47.302500pt;}
.h0_c02136{height:1122.666667pt;}
.w2_c02136{width:351.360000pt;}
.w1_c02136{width:793.333333pt;}
.w0_c02136{width:793.626667pt;}
.x0_c02136{left:0.000000pt;}
.xd_c02136{left:104.000000pt;}
.xe_c02136{left:143.360000pt;}
.x8_c02136{left:391.999872pt;}
.x4_c02136{left:396.160512pt;}
.xb_c02136{left:400.960000pt;}
.x7_c02136{left:404.799648pt;}
.x5_c02136{left:410.560128pt;}
.x1_c02136{left:411.840000pt;}
.xa_c02136{left:429.760320pt;}
.x9_c02136{left:437.439552pt;}
.x6_c02136{left:438.400512pt;}
.xc_c02136{left:450.560320pt;}
.x3_c02136{left:455.039904pt;}
.x2_c02136{left:468.159648pt;}
}





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

.ir_c02137:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02137{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02137;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02137{font-family:ff1_c02137;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02137;src:url('chunks/assets/font_37448062f1b8163660181a8d.woff2')format("woff");}.ff2_c02137{font-family:ff2_c02137;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02137;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02137{font-family:ff3_c02137;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02137{vertical-align:0.000000px;}
.ls16_c02137{letter-spacing:-1.197504px;}
.ls15_c02137{letter-spacing:-0.755568px;}
.lsa_c02137{letter-spacing:-0.613008px;}
.lsd_c02137{letter-spacing:-0.574992px;}
.ls12_c02137{letter-spacing:-0.275616px;}
.lsc_c02137{letter-spacing:-0.261360px;}
.ls9_c02137{letter-spacing:-0.242352px;}
.ls7_c02137{letter-spacing:-0.118800px;}
.ls14_c02137{letter-spacing:0.000000px;}
.ls3_c02137{letter-spacing:0.006048px;}
.ls8_c02137{letter-spacing:0.128304px;}
.ls10_c02137{letter-spacing:0.242352px;}
.lsf_c02137{letter-spacing:0.508464px;}
.ls2_c02137{letter-spacing:0.514080px;}
.ls11_c02137{letter-spacing:0.536976px;}
.lse_c02137{letter-spacing:0.579744px;}
.ls13_c02137{letter-spacing:0.594000px;}
.lsb_c02137{letter-spacing:0.598752px;}
.ls5_c02137{letter-spacing:0.613008px;}
.ls0_c02137{letter-spacing:0.651024px;}
.ls4_c02137{letter-spacing:0.684288px;}
.ls1_c02137{letter-spacing:0.717552px;}
.ls6_c02137{letter-spacing:0.722304px;}
.sc__c02137{text-shadow:none;}
.sc0_c02137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02137{-webkit-text-stroke:0px transparent;}
.sc0_c02137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02137{word-spacing:-15.634080px;}
.wsb_c02137{word-spacing:-15.126048px;}
.ws9_c02137{word-spacing:-12.474000px;}
.ws7_c02137{word-spacing:-12.459744px;}
.ws8_c02137{word-spacing:-12.416976px;}
.wsc_c02137{word-spacing:-12.122352px;}
.ws2_c02137{word-spacing:-11.266992px;}
.wsd_c02137{word-spacing:-11.124432px;}
.ws15_c02137{word-spacing:-3.598560px;}
.ws13_c02137{word-spacing:-1.078704px;}
.ws16_c02137{word-spacing:-1.045440px;}
.ws10_c02137{word-spacing:-1.012176px;}
.wse_c02137{word-spacing:-0.974160px;}
.ws11_c02137{word-spacing:-0.118800px;}
.ws12_c02137{word-spacing:-0.099792px;}
.ws14_c02137{word-spacing:-0.085536px;}
.wsf_c02137{word-spacing:0.000000px;}
.ws17_c02137{word-spacing:0.836352px;}
.ws5_c02137{word-spacing:36.742464px;}
.ws1_c02137{word-spacing:37.759392px;}
.ws0_c02137{word-spacing:38.020752px;}
.ws3_c02137{word-spacing:39.218256px;}
.ws4_c02137{word-spacing:39.902544px;}
.ws6_c02137{word-spacing:42.026688px;}
._0_c02137{margin-left:-1.948320px;}
._2_c02137{width:1.482624px;}
._4_c02137{width:3.369168px;}
._1_c02137{width:50.252400px;}
._3_c02137{width:51.530688px;}
.fc0_c02137{color:rgb(0,0,0);}
.fs0_c02137{font-size:47.520000px;}
.fs1_c02137{font-size:60.480000px;}
.y0_c02137{bottom:0.000000px;}
.y10_c02137{bottom:20.880450px;}
.y1c_c02137{bottom:146.998362px;}
.y1e_c02137{bottom:186.600234px;}
.y1d_c02137{bottom:196.320450px;}
.y1b_c02137{bottom:275.878542px;}
.y1a_c02137{bottom:356.878758px;}
.y18_c02137{bottom:406.559730px;}
.y14_c02137{bottom:424.560306px;}
.y19_c02137{bottom:458.759262px;}
.y17_c02137{bottom:491.879514px;}
.y16_c02137{bottom:509.880090px;}
.y13_c02137{bottom:543.000342px;}
.y15_c02137{bottom:559.559874px;}
.y12_c02137{bottom:577.560450px;}
.y20_c02137{bottom:593.760000px;}
.y21_c02137{bottom:596.640450px;}
.y1f_c02137{bottom:614.280450px;}
.yb_c02137{bottom:667.558326px;}
.yd_c02137{bottom:707.160234px;}
.yc_c02137{bottom:716.880450px;}
.ya_c02137{bottom:796.438506px;}
.y9_c02137{bottom:877.438722px;}
.y7_c02137{bottom:926.759730px;}
.y3_c02137{bottom:944.760306px;}
.y8_c02137{bottom:979.319226px;}
.y6_c02137{bottom:1012.439478px;}
.y5_c02137{bottom:1030.440054px;}
.y2_c02137{bottom:1063.560306px;}
.y4_c02137{bottom:1079.759874px;}
.y1_c02137{bottom:1097.760450px;}
.yf_c02137{bottom:1114.320000px;}
.y11_c02137{bottom:1117.200450px;}
.ye_c02137{bottom:1134.840450px;}
.h3_c02137{height:32.530781px;}
.h5_c02137{height:36.720000px;}
.h4_c02137{height:41.402813px;}
.h1_c02137{height:41.696016px;}
.h2_c02137{height:41.812031px;}
.h7_c02137{height:53.067656px;}
.h6_c02137{height:53.215313px;}
.h0_c02137{height:1263.000000px;}
.w2_c02137{width:395.280000px;}
.w1_c02137{width:892.500000px;}
.w0_c02137{width:892.830000px;}
.x0_c02137{left:0.000000px;}
.xd_c02137{left:117.000000px;}
.xe_c02137{left:161.280000px;}
.x8_c02137{left:440.999856px;}
.x4_c02137{left:445.680576px;}
.xb_c02137{left:451.080000px;}
.x7_c02137{left:455.399604px;}
.x5_c02137{left:461.880144px;}
.x1_c02137{left:463.320000px;}
.xa_c02137{left:483.480360px;}
.x9_c02137{left:492.119496px;}
.x6_c02137{left:493.200576px;}
.xc_c02137{left:506.880360px;}
.x3_c02137{left:511.919892px;}
.x2_c02137{left:526.679604px;}
@media print{
.v0_c02137{vertical-align:0.000000pt;}
.ls16_c02137{letter-spacing:-1.064448pt;}
.ls15_c02137{letter-spacing:-0.671616pt;}
.lsa_c02137{letter-spacing:-0.544896pt;}
.lsd_c02137{letter-spacing:-0.511104pt;}
.ls12_c02137{letter-spacing:-0.244992pt;}
.lsc_c02137{letter-spacing:-0.232320pt;}
.ls9_c02137{letter-spacing:-0.215424pt;}
.ls7_c02137{letter-spacing:-0.105600pt;}
.ls14_c02137{letter-spacing:0.000000pt;}
.ls3_c02137{letter-spacing:0.005376pt;}
.ls8_c02137{letter-spacing:0.114048pt;}
.ls10_c02137{letter-spacing:0.215424pt;}
.lsf_c02137{letter-spacing:0.451968pt;}
.ls2_c02137{letter-spacing:0.456960pt;}
.ls11_c02137{letter-spacing:0.477312pt;}
.lse_c02137{letter-spacing:0.515328pt;}
.ls13_c02137{letter-spacing:0.528000pt;}
.lsb_c02137{letter-spacing:0.532224pt;}
.ls5_c02137{letter-spacing:0.544896pt;}
.ls0_c02137{letter-spacing:0.578688pt;}
.ls4_c02137{letter-spacing:0.608256pt;}
.ls1_c02137{letter-spacing:0.637824pt;}
.ls6_c02137{letter-spacing:0.642048pt;}
.wsa_c02137{word-spacing:-13.896960pt;}
.wsb_c02137{word-spacing:-13.445376pt;}
.ws9_c02137{word-spacing:-11.088000pt;}
.ws7_c02137{word-spacing:-11.075328pt;}
.ws8_c02137{word-spacing:-11.037312pt;}
.wsc_c02137{word-spacing:-10.775424pt;}
.ws2_c02137{word-spacing:-10.015104pt;}
.wsd_c02137{word-spacing:-9.888384pt;}
.ws15_c02137{word-spacing:-3.198720pt;}
.ws13_c02137{word-spacing:-0.958848pt;}
.ws16_c02137{word-spacing:-0.929280pt;}
.ws10_c02137{word-spacing:-0.899712pt;}
.wse_c02137{word-spacing:-0.865920pt;}
.ws11_c02137{word-spacing:-0.105600pt;}
.ws12_c02137{word-spacing:-0.088704pt;}
.ws14_c02137{word-spacing:-0.076032pt;}
.wsf_c02137{word-spacing:0.000000pt;}
.ws17_c02137{word-spacing:0.743424pt;}
.ws5_c02137{word-spacing:32.659968pt;}
.ws1_c02137{word-spacing:33.563904pt;}
.ws0_c02137{word-spacing:33.796224pt;}
.ws3_c02137{word-spacing:34.860672pt;}
.ws4_c02137{word-spacing:35.468928pt;}
.ws6_c02137{word-spacing:37.357056pt;}
._0_c02137{margin-left:-1.731840pt;}
._2_c02137{width:1.317888pt;}
._4_c02137{width:2.994816pt;}
._1_c02137{width:44.668800pt;}
._3_c02137{width:45.805056pt;}
.fs0_c02137{font-size:42.240000pt;}
.fs1_c02137{font-size:53.760000pt;}
.y0_c02137{bottom:0.000000pt;}
.y10_c02137{bottom:18.560400pt;}
.y1c_c02137{bottom:130.665211pt;}
.y1e_c02137{bottom:165.866875pt;}
.y1d_c02137{bottom:174.507067pt;}
.y1b_c02137{bottom:245.225371pt;}
.y1a_c02137{bottom:317.225563pt;}
.y18_c02137{bottom:361.386427pt;}
.y14_c02137{bottom:377.386939pt;}
.y19_c02137{bottom:407.786011pt;}
.y17_c02137{bottom:437.226235pt;}
.y16_c02137{bottom:453.226747pt;}
.y13_c02137{bottom:482.666971pt;}
.y15_c02137{bottom:497.386555pt;}
.y12_c02137{bottom:513.387067pt;}
.y20_c02137{bottom:527.786667pt;}
.y21_c02137{bottom:530.347067pt;}
.y1f_c02137{bottom:546.027067pt;}
.yb_c02137{bottom:593.385179pt;}
.yd_c02137{bottom:628.586875pt;}
.yc_c02137{bottom:637.227067pt;}
.ya_c02137{bottom:707.945339pt;}
.y9_c02137{bottom:779.945531pt;}
.y7_c02137{bottom:823.786427pt;}
.y3_c02137{bottom:839.786939pt;}
.y8_c02137{bottom:870.505979pt;}
.y6_c02137{bottom:899.946203pt;}
.y5_c02137{bottom:915.946715pt;}
.y2_c02137{bottom:945.386939pt;}
.y4_c02137{bottom:959.786555pt;}
.y1_c02137{bottom:975.787067pt;}
.yf_c02137{bottom:990.506667pt;}
.y11_c02137{bottom:993.067067pt;}
.ye_c02137{bottom:1008.747067pt;}
.h3_c02137{height:28.916250pt;}
.h5_c02137{height:32.640000pt;}
.h4_c02137{height:36.802500pt;}
.h1_c02137{height:37.063125pt;}
.h2_c02137{height:37.166250pt;}
.h7_c02137{height:47.171250pt;}
.h6_c02137{height:47.302500pt;}
.h0_c02137{height:1122.666667pt;}
.w2_c02137{width:351.360000pt;}
.w1_c02137{width:793.333333pt;}
.w0_c02137{width:793.626667pt;}
.x0_c02137{left:0.000000pt;}
.xd_c02137{left:104.000000pt;}
.xe_c02137{left:143.360000pt;}
.x8_c02137{left:391.999872pt;}
.x4_c02137{left:396.160512pt;}
.xb_c02137{left:400.960000pt;}
.x7_c02137{left:404.799648pt;}
.x5_c02137{left:410.560128pt;}
.x1_c02137{left:411.840000pt;}
.xa_c02137{left:429.760320pt;}
.x9_c02137{left:437.439552pt;}
.x6_c02137{left:438.400512pt;}
.xc_c02137{left:450.560320pt;}
.x3_c02137{left:455.039904pt;}
.x2_c02137{left:468.159648pt;}
}





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

.ir_c02138:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02138{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02138;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02138{font-family:ff1_c02138;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02138;src:url('chunks/assets/font_f81340c00e058a0179492dda.woff2')format("woff");}.ff2_c02138{font-family:ff2_c02138;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02138;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02138{font-family:ff3_c02138;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02138{vertical-align:0.000000px;}
.ls14_c02138{letter-spacing:-0.613008px;}
.lsb_c02138{letter-spacing:-0.574992px;}
.lse_c02138{letter-spacing:-0.427680px;}
.ls11_c02138{letter-spacing:-0.275616px;}
.lsf_c02138{letter-spacing:-0.261360px;}
.ls7_c02138{letter-spacing:-0.242352px;}
.lsa_c02138{letter-spacing:-0.185328px;}
.ls5_c02138{letter-spacing:-0.118800px;}
.ls15_c02138{letter-spacing:-0.080784px;}
.ls13_c02138{letter-spacing:0.000000px;}
.ls2_c02138{letter-spacing:0.006048px;}
.ls6_c02138{letter-spacing:0.128304px;}
.ls8_c02138{letter-spacing:0.242352px;}
.lsd_c02138{letter-spacing:0.508464px;}
.ls1_c02138{letter-spacing:0.514080px;}
.ls10_c02138{letter-spacing:0.536976px;}
.lsc_c02138{letter-spacing:0.579744px;}
.ls12_c02138{letter-spacing:0.594000px;}
.ls9_c02138{letter-spacing:0.598752px;}
.ls3_c02138{letter-spacing:0.613008px;}
.ls0_c02138{letter-spacing:0.717552px;}
.ls4_c02138{letter-spacing:0.722304px;}
.sc__c02138{text-shadow:none;}
.sc0_c02138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02138{-webkit-text-stroke:0px transparent;}
.sc0_c02138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02138{word-spacing:-15.634080px;}
.wsc_c02138{word-spacing:-15.126048px;}
.wsa_c02138{word-spacing:-12.474000px;}
.ws8_c02138{word-spacing:-12.459744px;}
.ws9_c02138{word-spacing:-12.416976px;}
.ws2_c02138{word-spacing:-12.122352px;}
.wse_c02138{word-spacing:-11.799216px;}
.ws4_c02138{word-spacing:-11.694672px;}
.wsd_c02138{word-spacing:-11.266992px;}
.ws16_c02138{word-spacing:-3.598560px;}
.ws12_c02138{word-spacing:-1.078704px;}
.wsf_c02138{word-spacing:-0.974160px;}
.ws11_c02138{word-spacing:-0.118800px;}
.ws14_c02138{word-spacing:-0.099792px;}
.ws15_c02138{word-spacing:-0.085536px;}
.ws10_c02138{word-spacing:0.000000px;}
.ws13_c02138{word-spacing:0.066528px;}
.ws6_c02138{word-spacing:36.742464px;}
.ws1_c02138{word-spacing:37.759392px;}
.ws0_c02138{word-spacing:38.020752px;}
.ws3_c02138{word-spacing:39.218256px;}
.ws5_c02138{word-spacing:39.902544px;}
.ws7_c02138{word-spacing:42.026688px;}
._0_c02138{margin-left:-1.948320px;}
._2_c02138{width:1.482624px;}
._4_c02138{width:5.407776px;}
._1_c02138{width:50.252400px;}
._3_c02138{width:51.530688px;}
.fc0_c02138{color:rgb(0,0,0);}
.fs0_c02138{font-size:47.520000px;}
.fs1_c02138{font-size:60.480000px;}
.y0_c02138{bottom:0.000000px;}
.y10_c02138{bottom:20.880450px;}
.y1c_c02138{bottom:146.998362px;}
.y1e_c02138{bottom:186.600234px;}
.y1d_c02138{bottom:196.320450px;}
.y1b_c02138{bottom:275.878542px;}
.y1a_c02138{bottom:356.878758px;}
.y18_c02138{bottom:406.559730px;}
.y14_c02138{bottom:424.560306px;}
.y19_c02138{bottom:458.759262px;}
.y17_c02138{bottom:491.879514px;}
.y16_c02138{bottom:509.880090px;}
.y13_c02138{bottom:543.000342px;}
.y15_c02138{bottom:559.559874px;}
.y12_c02138{bottom:577.560450px;}
.y20_c02138{bottom:593.760000px;}
.y21_c02138{bottom:596.640450px;}
.y1f_c02138{bottom:614.280450px;}
.yb_c02138{bottom:667.558326px;}
.yd_c02138{bottom:707.160234px;}
.yc_c02138{bottom:716.880450px;}
.ya_c02138{bottom:796.438506px;}
.y9_c02138{bottom:877.438722px;}
.y7_c02138{bottom:926.759730px;}
.y3_c02138{bottom:944.760306px;}
.y8_c02138{bottom:979.319226px;}
.y6_c02138{bottom:1012.439478px;}
.y5_c02138{bottom:1030.440054px;}
.y2_c02138{bottom:1063.560306px;}
.y4_c02138{bottom:1079.759874px;}
.y1_c02138{bottom:1097.760450px;}
.yf_c02138{bottom:1114.320000px;}
.y11_c02138{bottom:1117.200450px;}
.ye_c02138{bottom:1134.840450px;}
.h3_c02138{height:32.530781px;}
.h5_c02138{height:36.720000px;}
.h4_c02138{height:41.402813px;}
.h1_c02138{height:41.696016px;}
.h2_c02138{height:41.812031px;}
.h7_c02138{height:53.067656px;}
.h6_c02138{height:53.215313px;}
.h0_c02138{height:1263.000000px;}
.w2_c02138{width:395.280000px;}
.w1_c02138{width:892.500000px;}
.w0_c02138{width:892.830000px;}
.x0_c02138{left:0.000000px;}
.xd_c02138{left:117.000000px;}
.xe_c02138{left:161.280000px;}
.x8_c02138{left:440.999856px;}
.x4_c02138{left:445.680576px;}
.xb_c02138{left:451.080000px;}
.x7_c02138{left:455.399604px;}
.x5_c02138{left:461.880144px;}
.x1_c02138{left:463.320000px;}
.xa_c02138{left:483.480360px;}
.x9_c02138{left:492.119496px;}
.x6_c02138{left:493.200576px;}
.xc_c02138{left:506.880360px;}
.x3_c02138{left:511.919892px;}
.x2_c02138{left:526.679604px;}
@media print{
.v0_c02138{vertical-align:0.000000pt;}
.ls14_c02138{letter-spacing:-0.544896pt;}
.lsb_c02138{letter-spacing:-0.511104pt;}
.lse_c02138{letter-spacing:-0.380160pt;}
.ls11_c02138{letter-spacing:-0.244992pt;}
.lsf_c02138{letter-spacing:-0.232320pt;}
.ls7_c02138{letter-spacing:-0.215424pt;}
.lsa_c02138{letter-spacing:-0.164736pt;}
.ls5_c02138{letter-spacing:-0.105600pt;}
.ls15_c02138{letter-spacing:-0.071808pt;}
.ls13_c02138{letter-spacing:0.000000pt;}
.ls2_c02138{letter-spacing:0.005376pt;}
.ls6_c02138{letter-spacing:0.114048pt;}
.ls8_c02138{letter-spacing:0.215424pt;}
.lsd_c02138{letter-spacing:0.451968pt;}
.ls1_c02138{letter-spacing:0.456960pt;}
.ls10_c02138{letter-spacing:0.477312pt;}
.lsc_c02138{letter-spacing:0.515328pt;}
.ls12_c02138{letter-spacing:0.528000pt;}
.ls9_c02138{letter-spacing:0.532224pt;}
.ls3_c02138{letter-spacing:0.544896pt;}
.ls0_c02138{letter-spacing:0.637824pt;}
.ls4_c02138{letter-spacing:0.642048pt;}
.wsb_c02138{word-spacing:-13.896960pt;}
.wsc_c02138{word-spacing:-13.445376pt;}
.wsa_c02138{word-spacing:-11.088000pt;}
.ws8_c02138{word-spacing:-11.075328pt;}
.ws9_c02138{word-spacing:-11.037312pt;}
.ws2_c02138{word-spacing:-10.775424pt;}
.wse_c02138{word-spacing:-10.488192pt;}
.ws4_c02138{word-spacing:-10.395264pt;}
.wsd_c02138{word-spacing:-10.015104pt;}
.ws16_c02138{word-spacing:-3.198720pt;}
.ws12_c02138{word-spacing:-0.958848pt;}
.wsf_c02138{word-spacing:-0.865920pt;}
.ws11_c02138{word-spacing:-0.105600pt;}
.ws14_c02138{word-spacing:-0.088704pt;}
.ws15_c02138{word-spacing:-0.076032pt;}
.ws10_c02138{word-spacing:0.000000pt;}
.ws13_c02138{word-spacing:0.059136pt;}
.ws6_c02138{word-spacing:32.659968pt;}
.ws1_c02138{word-spacing:33.563904pt;}
.ws0_c02138{word-spacing:33.796224pt;}
.ws3_c02138{word-spacing:34.860672pt;}
.ws5_c02138{word-spacing:35.468928pt;}
.ws7_c02138{word-spacing:37.357056pt;}
._0_c02138{margin-left:-1.731840pt;}
._2_c02138{width:1.317888pt;}
._4_c02138{width:4.806912pt;}
._1_c02138{width:44.668800pt;}
._3_c02138{width:45.805056pt;}
.fs0_c02138{font-size:42.240000pt;}
.fs1_c02138{font-size:53.760000pt;}
.y0_c02138{bottom:0.000000pt;}
.y10_c02138{bottom:18.560400pt;}
.y1c_c02138{bottom:130.665211pt;}
.y1e_c02138{bottom:165.866875pt;}
.y1d_c02138{bottom:174.507067pt;}
.y1b_c02138{bottom:245.225371pt;}
.y1a_c02138{bottom:317.225563pt;}
.y18_c02138{bottom:361.386427pt;}
.y14_c02138{bottom:377.386939pt;}
.y19_c02138{bottom:407.786011pt;}
.y17_c02138{bottom:437.226235pt;}
.y16_c02138{bottom:453.226747pt;}
.y13_c02138{bottom:482.666971pt;}
.y15_c02138{bottom:497.386555pt;}
.y12_c02138{bottom:513.387067pt;}
.y20_c02138{bottom:527.786667pt;}
.y21_c02138{bottom:530.347067pt;}
.y1f_c02138{bottom:546.027067pt;}
.yb_c02138{bottom:593.385179pt;}
.yd_c02138{bottom:628.586875pt;}
.yc_c02138{bottom:637.227067pt;}
.ya_c02138{bottom:707.945339pt;}
.y9_c02138{bottom:779.945531pt;}
.y7_c02138{bottom:823.786427pt;}
.y3_c02138{bottom:839.786939pt;}
.y8_c02138{bottom:870.505979pt;}
.y6_c02138{bottom:899.946203pt;}
.y5_c02138{bottom:915.946715pt;}
.y2_c02138{bottom:945.386939pt;}
.y4_c02138{bottom:959.786555pt;}
.y1_c02138{bottom:975.787067pt;}
.yf_c02138{bottom:990.506667pt;}
.y11_c02138{bottom:993.067067pt;}
.ye_c02138{bottom:1008.747067pt;}
.h3_c02138{height:28.916250pt;}
.h5_c02138{height:32.640000pt;}
.h4_c02138{height:36.802500pt;}
.h1_c02138{height:37.063125pt;}
.h2_c02138{height:37.166250pt;}
.h7_c02138{height:47.171250pt;}
.h6_c02138{height:47.302500pt;}
.h0_c02138{height:1122.666667pt;}
.w2_c02138{width:351.360000pt;}
.w1_c02138{width:793.333333pt;}
.w0_c02138{width:793.626667pt;}
.x0_c02138{left:0.000000pt;}
.xd_c02138{left:104.000000pt;}
.xe_c02138{left:143.360000pt;}
.x8_c02138{left:391.999872pt;}
.x4_c02138{left:396.160512pt;}
.xb_c02138{left:400.960000pt;}
.x7_c02138{left:404.799648pt;}
.x5_c02138{left:410.560128pt;}
.x1_c02138{left:411.840000pt;}
.xa_c02138{left:429.760320pt;}
.x9_c02138{left:437.439552pt;}
.x6_c02138{left:438.400512pt;}
.xc_c02138{left:450.560320pt;}
.x3_c02138{left:455.039904pt;}
.x2_c02138{left:468.159648pt;}
}





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

.ir_c02139:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02139{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02139;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02139{font-family:ff1_c02139;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02139;src:url('chunks/assets/font_0fd0edee1b79a4e05145c9b1.woff2')format("woff");}.ff2_c02139{font-family:ff2_c02139;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02139;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02139{font-family:ff3_c02139;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02139{vertical-align:0.000000px;}
.v1_c02139{vertical-align:5.759424px;}
.ls17_c02139{letter-spacing:-0.826848px;}
.ls10_c02139{letter-spacing:-0.793584px;}
.lsd_c02139{letter-spacing:-0.774576px;}
.lsc_c02139{letter-spacing:-0.574992px;}
.ls19_c02139{letter-spacing:-0.361152px;}
.ls18_c02139{letter-spacing:-0.308880px;}
.ls13_c02139{letter-spacing:-0.275616px;}
.ls11_c02139{letter-spacing:-0.261360px;}
.ls16_c02139{letter-spacing:-0.256608px;}
.ls8_c02139{letter-spacing:-0.242352px;}
.ls1a_c02139{letter-spacing:-0.218592px;}
.ls5_c02139{letter-spacing:-0.118800px;}
.lsb_c02139{letter-spacing:-0.080784px;}
.ls15_c02139{letter-spacing:0.000000px;}
.ls2_c02139{letter-spacing:0.006048px;}
.ls7_c02139{letter-spacing:0.128304px;}
.ls9_c02139{letter-spacing:0.242352px;}
.lsf_c02139{letter-spacing:0.508464px;}
.ls1_c02139{letter-spacing:0.514080px;}
.ls12_c02139{letter-spacing:0.536976px;}
.lse_c02139{letter-spacing:0.579744px;}
.ls14_c02139{letter-spacing:0.594000px;}
.lsa_c02139{letter-spacing:0.598752px;}
.ls3_c02139{letter-spacing:0.613008px;}
.ls0_c02139{letter-spacing:0.651024px;}
.ls6_c02139{letter-spacing:0.717552px;}
.ls4_c02139{letter-spacing:0.722304px;}
.sc__c02139{text-shadow:none;}
.sc0_c02139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02139{-webkit-text-stroke:0px transparent;}
.sc0_c02139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02139{word-spacing:-15.634080px;}
.wsd_c02139{word-spacing:-15.126048px;}
.wse_c02139{word-spacing:-12.602304px;}
.wsb_c02139{word-spacing:-12.474000px;}
.ws7_c02139{word-spacing:-12.459744px;}
.wsa_c02139{word-spacing:-12.416976px;}
.ws2_c02139{word-spacing:-12.122352px;}
.ws4_c02139{word-spacing:-11.799216px;}
.wsf_c02139{word-spacing:-11.305008px;}
.ws6_c02139{word-spacing:-11.105424px;}
.ws19_c02139{word-spacing:-3.598560px;}
.ws16_c02139{word-spacing:-1.083456px;}
.ws13_c02139{word-spacing:-1.012176px;}
.ws11_c02139{word-spacing:-0.974160px;}
.ws1d_c02139{word-spacing:-0.142560px;}
.ws14_c02139{word-spacing:-0.118800px;}
.ws1a_c02139{word-spacing:-0.104544px;}
.ws17_c02139{word-spacing:-0.099792px;}
.ws18_c02139{word-spacing:-0.085536px;}
.ws1c_c02139{word-spacing:-0.052272px;}
.ws12_c02139{word-spacing:0.000000px;}
.ws15_c02139{word-spacing:0.432432px;}
.ws1b_c02139{word-spacing:0.465696px;}
.ws10_c02139{word-spacing:34.836912px;}
.ws9_c02139{word-spacing:36.143712px;}
.ws1_c02139{word-spacing:37.759392px;}
.ws0_c02139{word-spacing:38.020752px;}
.ws3_c02139{word-spacing:39.218256px;}
.ws5_c02139{word-spacing:39.902544px;}
.ws8_c02139{word-spacing:42.026688px;}
._0_c02139{margin-left:-1.948320px;}
._2_c02139{width:1.482624px;}
._4_c02139{width:2.699136px;}
._1_c02139{width:50.252400px;}
._3_c02139{width:51.530688px;}
.fc0_c02139{color:rgb(0,0,0);}
.fs0_c02139{font-size:47.520000px;}
.fs1_c02139{font-size:60.480000px;}
.y0_c02139{bottom:0.000000px;}
.y10_c02139{bottom:20.880450px;}
.y1d_c02139{bottom:146.999550px;}
.y1f_c02139{bottom:186.600234px;}
.y1e_c02139{bottom:196.320450px;}
.y1c_c02139{bottom:275.879730px;}
.y1b_c02139{bottom:356.879946px;}
.y18_c02139{bottom:406.559730px;}
.y14_c02139{bottom:424.560306px;}
.y1a_c02139{bottom:443.999550px;}
.y19_c02139{bottom:458.759262px;}
.y17_c02139{bottom:491.879514px;}
.y16_c02139{bottom:509.880090px;}
.y13_c02139{bottom:543.000342px;}
.y15_c02139{bottom:559.559874px;}
.y12_c02139{bottom:577.560450px;}
.y21_c02139{bottom:593.760000px;}
.y22_c02139{bottom:596.640450px;}
.y20_c02139{bottom:614.280450px;}
.yb_c02139{bottom:667.558326px;}
.yd_c02139{bottom:707.160234px;}
.yc_c02139{bottom:716.880450px;}
.ya_c02139{bottom:796.438506px;}
.y9_c02139{bottom:877.438722px;}
.y7_c02139{bottom:926.759730px;}
.y3_c02139{bottom:944.760306px;}
.y8_c02139{bottom:979.319226px;}
.y6_c02139{bottom:1012.439478px;}
.y5_c02139{bottom:1030.440054px;}
.y2_c02139{bottom:1063.560306px;}
.y4_c02139{bottom:1079.759874px;}
.y1_c02139{bottom:1097.760450px;}
.yf_c02139{bottom:1114.320000px;}
.y11_c02139{bottom:1117.200450px;}
.ye_c02139{bottom:1134.840450px;}
.h3_c02139{height:32.530781px;}
.h5_c02139{height:36.720000px;}
.h4_c02139{height:41.402813px;}
.h1_c02139{height:41.696016px;}
.h2_c02139{height:41.812031px;}
.h8_c02139{height:47.571455px;}
.h7_c02139{height:53.067656px;}
.h6_c02139{height:53.215313px;}
.h0_c02139{height:1263.000000px;}
.w2_c02139{width:395.280000px;}
.w1_c02139{width:892.500000px;}
.w0_c02139{width:892.830000px;}
.x0_c02139{left:0.000000px;}
.xd_c02139{left:117.000000px;}
.xe_c02139{left:161.280000px;}
.x8_c02139{left:440.999856px;}
.x4_c02139{left:445.680576px;}
.xb_c02139{left:451.080000px;}
.x7_c02139{left:455.399604px;}
.x5_c02139{left:461.880144px;}
.x1_c02139{left:463.320000px;}
.xa_c02139{left:483.480360px;}
.x9_c02139{left:492.119496px;}
.x6_c02139{left:493.200576px;}
.xc_c02139{left:506.880360px;}
.x3_c02139{left:511.919892px;}
.x2_c02139{left:526.679604px;}
.xf_c02139{left:569.881224px;}
@media print{
.v0_c02139{vertical-align:0.000000pt;}
.v1_c02139{vertical-align:5.119488pt;}
.ls17_c02139{letter-spacing:-0.734976pt;}
.ls10_c02139{letter-spacing:-0.705408pt;}
.lsd_c02139{letter-spacing:-0.688512pt;}
.lsc_c02139{letter-spacing:-0.511104pt;}
.ls19_c02139{letter-spacing:-0.321024pt;}
.ls18_c02139{letter-spacing:-0.274560pt;}
.ls13_c02139{letter-spacing:-0.244992pt;}
.ls11_c02139{letter-spacing:-0.232320pt;}
.ls16_c02139{letter-spacing:-0.228096pt;}
.ls8_c02139{letter-spacing:-0.215424pt;}
.ls1a_c02139{letter-spacing:-0.194304pt;}
.ls5_c02139{letter-spacing:-0.105600pt;}
.lsb_c02139{letter-spacing:-0.071808pt;}
.ls15_c02139{letter-spacing:0.000000pt;}
.ls2_c02139{letter-spacing:0.005376pt;}
.ls7_c02139{letter-spacing:0.114048pt;}
.ls9_c02139{letter-spacing:0.215424pt;}
.lsf_c02139{letter-spacing:0.451968pt;}
.ls1_c02139{letter-spacing:0.456960pt;}
.ls12_c02139{letter-spacing:0.477312pt;}
.lse_c02139{letter-spacing:0.515328pt;}
.ls14_c02139{letter-spacing:0.528000pt;}
.lsa_c02139{letter-spacing:0.532224pt;}
.ls3_c02139{letter-spacing:0.544896pt;}
.ls0_c02139{letter-spacing:0.578688pt;}
.ls6_c02139{letter-spacing:0.637824pt;}
.ls4_c02139{letter-spacing:0.642048pt;}
.wsc_c02139{word-spacing:-13.896960pt;}
.wsd_c02139{word-spacing:-13.445376pt;}
.wse_c02139{word-spacing:-11.202048pt;}
.wsb_c02139{word-spacing:-11.088000pt;}
.ws7_c02139{word-spacing:-11.075328pt;}
.wsa_c02139{word-spacing:-11.037312pt;}
.ws2_c02139{word-spacing:-10.775424pt;}
.ws4_c02139{word-spacing:-10.488192pt;}
.wsf_c02139{word-spacing:-10.048896pt;}
.ws6_c02139{word-spacing:-9.871488pt;}
.ws19_c02139{word-spacing:-3.198720pt;}
.ws16_c02139{word-spacing:-0.963072pt;}
.ws13_c02139{word-spacing:-0.899712pt;}
.ws11_c02139{word-spacing:-0.865920pt;}
.ws1d_c02139{word-spacing:-0.126720pt;}
.ws14_c02139{word-spacing:-0.105600pt;}
.ws1a_c02139{word-spacing:-0.092928pt;}
.ws17_c02139{word-spacing:-0.088704pt;}
.ws18_c02139{word-spacing:-0.076032pt;}
.ws1c_c02139{word-spacing:-0.046464pt;}
.ws12_c02139{word-spacing:0.000000pt;}
.ws15_c02139{word-spacing:0.384384pt;}
.ws1b_c02139{word-spacing:0.413952pt;}
.ws10_c02139{word-spacing:30.966144pt;}
.ws9_c02139{word-spacing:32.127744pt;}
.ws1_c02139{word-spacing:33.563904pt;}
.ws0_c02139{word-spacing:33.796224pt;}
.ws3_c02139{word-spacing:34.860672pt;}
.ws5_c02139{word-spacing:35.468928pt;}
.ws8_c02139{word-spacing:37.357056pt;}
._0_c02139{margin-left:-1.731840pt;}
._2_c02139{width:1.317888pt;}
._4_c02139{width:2.399232pt;}
._1_c02139{width:44.668800pt;}
._3_c02139{width:45.805056pt;}
.fs0_c02139{font-size:42.240000pt;}
.fs1_c02139{font-size:53.760000pt;}
.y0_c02139{bottom:0.000000pt;}
.y10_c02139{bottom:18.560400pt;}
.y1d_c02139{bottom:130.666267pt;}
.y1f_c02139{bottom:165.866875pt;}
.y1e_c02139{bottom:174.507067pt;}
.y1c_c02139{bottom:245.226427pt;}
.y1b_c02139{bottom:317.226619pt;}
.y18_c02139{bottom:361.386427pt;}
.y14_c02139{bottom:377.386939pt;}
.y1a_c02139{bottom:394.666267pt;}
.y19_c02139{bottom:407.786011pt;}
.y17_c02139{bottom:437.226235pt;}
.y16_c02139{bottom:453.226747pt;}
.y13_c02139{bottom:482.666971pt;}
.y15_c02139{bottom:497.386555pt;}
.y12_c02139{bottom:513.387067pt;}
.y21_c02139{bottom:527.786667pt;}
.y22_c02139{bottom:530.347067pt;}
.y20_c02139{bottom:546.027067pt;}
.yb_c02139{bottom:593.385179pt;}
.yd_c02139{bottom:628.586875pt;}
.yc_c02139{bottom:637.227067pt;}
.ya_c02139{bottom:707.945339pt;}
.y9_c02139{bottom:779.945531pt;}
.y7_c02139{bottom:823.786427pt;}
.y3_c02139{bottom:839.786939pt;}
.y8_c02139{bottom:870.505979pt;}
.y6_c02139{bottom:899.946203pt;}
.y5_c02139{bottom:915.946715pt;}
.y2_c02139{bottom:945.386939pt;}
.y4_c02139{bottom:959.786555pt;}
.y1_c02139{bottom:975.787067pt;}
.yf_c02139{bottom:990.506667pt;}
.y11_c02139{bottom:993.067067pt;}
.ye_c02139{bottom:1008.747067pt;}
.h3_c02139{height:28.916250pt;}
.h5_c02139{height:32.640000pt;}
.h4_c02139{height:36.802500pt;}
.h1_c02139{height:37.063125pt;}
.h2_c02139{height:37.166250pt;}
.h8_c02139{height:42.285738pt;}
.h7_c02139{height:47.171250pt;}
.h6_c02139{height:47.302500pt;}
.h0_c02139{height:1122.666667pt;}
.w2_c02139{width:351.360000pt;}
.w1_c02139{width:793.333333pt;}
.w0_c02139{width:793.626667pt;}
.x0_c02139{left:0.000000pt;}
.xd_c02139{left:104.000000pt;}
.xe_c02139{left:143.360000pt;}
.x8_c02139{left:391.999872pt;}
.x4_c02139{left:396.160512pt;}
.xb_c02139{left:400.960000pt;}
.x7_c02139{left:404.799648pt;}
.x5_c02139{left:410.560128pt;}
.x1_c02139{left:411.840000pt;}
.xa_c02139{left:429.760320pt;}
.x9_c02139{left:437.439552pt;}
.x6_c02139{left:438.400512pt;}
.xc_c02139{left:450.560320pt;}
.x3_c02139{left:455.039904pt;}
.x2_c02139{left:468.159648pt;}
.xf_c02139{left:506.561088pt;}
}





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

.ir_c02140:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02140{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02140;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02140{font-family:ff1_c02140;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02140;src:url('chunks/assets/font_7e3cf71cda970088698ff964.woff2')format("woff");}.ff2_c02140{font-family:ff2_c02140;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02140;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02140{font-family:ff3_c02140;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02140{vertical-align:0.000000px;}
.lsb_c02140{letter-spacing:-0.936144px;}
.ls9_c02140{letter-spacing:-0.613008px;}
.lsc_c02140{letter-spacing:-0.574992px;}
.lsf_c02140{letter-spacing:-0.427680px;}
.ls13_c02140{letter-spacing:-0.275616px;}
.ls11_c02140{letter-spacing:-0.261360px;}
.ls8_c02140{letter-spacing:-0.242352px;}
.ls6_c02140{letter-spacing:-0.118800px;}
.ls15_c02140{letter-spacing:0.000000px;}
.ls2_c02140{letter-spacing:0.006048px;}
.ls7_c02140{letter-spacing:0.128304px;}
.lse_c02140{letter-spacing:0.508464px;}
.ls1_c02140{letter-spacing:0.514080px;}
.ls12_c02140{letter-spacing:0.536976px;}
.lsd_c02140{letter-spacing:0.579744px;}
.ls14_c02140{letter-spacing:0.594000px;}
.lsa_c02140{letter-spacing:0.598752px;}
.ls4_c02140{letter-spacing:0.613008px;}
.ls3_c02140{letter-spacing:0.651024px;}
.ls10_c02140{letter-spacing:0.660528px;}
.ls0_c02140{letter-spacing:0.717552px;}
.ls5_c02140{letter-spacing:0.722304px;}
.sc__c02140{text-shadow:none;}
.sc0_c02140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02140{-webkit-text-stroke:0px transparent;}
.sc0_c02140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02140{word-spacing:-15.634080px;}
.wsb_c02140{word-spacing:-15.126048px;}
.ws9_c02140{word-spacing:-12.474000px;}
.ws8_c02140{word-spacing:-12.416976px;}
.wsc_c02140{word-spacing:-12.388464px;}
.ws2_c02140{word-spacing:-11.266992px;}
.ws16_c02140{word-spacing:-3.598560px;}
.ws11_c02140{word-spacing:-1.078704px;}
.ws13_c02140{word-spacing:-1.021680px;}
.ws17_c02140{word-spacing:-1.012176px;}
.wsd_c02140{word-spacing:-0.974160px;}
.wsf_c02140{word-spacing:-0.118800px;}
.ws14_c02140{word-spacing:-0.099792px;}
.ws15_c02140{word-spacing:-0.085536px;}
.wse_c02140{word-spacing:0.000000px;}
.ws12_c02140{word-spacing:0.066528px;}
.ws10_c02140{word-spacing:0.574992px;}
.ws7_c02140{word-spacing:36.143712px;}
.ws5_c02140{word-spacing:36.742464px;}
.ws1_c02140{word-spacing:37.759392px;}
.ws0_c02140{word-spacing:38.020752px;}
.ws3_c02140{word-spacing:39.218256px;}
.ws4_c02140{word-spacing:39.902544px;}
.ws6_c02140{word-spacing:42.026688px;}
._0_c02140{margin-left:-1.948320px;}
._2_c02140{width:1.482624px;}
._4_c02140{width:2.642112px;}
._1_c02140{width:50.252400px;}
._3_c02140{width:51.530688px;}
.fc0_c02140{color:rgb(0,0,0);}
.fs0_c02140{font-size:47.520000px;}
.fs1_c02140{font-size:60.480000px;}
.y0_c02140{bottom:0.000000px;}
.y10_c02140{bottom:20.880450px;}
.y1c_c02140{bottom:146.998362px;}
.y1e_c02140{bottom:186.600234px;}
.y1d_c02140{bottom:196.320450px;}
.y1b_c02140{bottom:275.878542px;}
.y1a_c02140{bottom:356.878758px;}
.y18_c02140{bottom:406.559730px;}
.y14_c02140{bottom:424.560306px;}
.y19_c02140{bottom:458.759262px;}
.y17_c02140{bottom:491.879514px;}
.y16_c02140{bottom:509.880090px;}
.y13_c02140{bottom:543.000342px;}
.y15_c02140{bottom:559.559874px;}
.y12_c02140{bottom:577.560450px;}
.y20_c02140{bottom:593.760000px;}
.y21_c02140{bottom:596.640450px;}
.y1f_c02140{bottom:614.280450px;}
.yb_c02140{bottom:667.558326px;}
.yd_c02140{bottom:707.160234px;}
.yc_c02140{bottom:716.880450px;}
.ya_c02140{bottom:796.438506px;}
.y9_c02140{bottom:877.438722px;}
.y7_c02140{bottom:926.759730px;}
.y3_c02140{bottom:944.760306px;}
.y8_c02140{bottom:979.319226px;}
.y6_c02140{bottom:1012.439478px;}
.y5_c02140{bottom:1030.440054px;}
.y2_c02140{bottom:1063.560306px;}
.y4_c02140{bottom:1079.759874px;}
.y1_c02140{bottom:1097.760450px;}
.yf_c02140{bottom:1114.320000px;}
.y11_c02140{bottom:1117.200450px;}
.ye_c02140{bottom:1134.840450px;}
.h3_c02140{height:32.530781px;}
.h5_c02140{height:36.720000px;}
.h4_c02140{height:41.402813px;}
.h1_c02140{height:41.696016px;}
.h2_c02140{height:41.812031px;}
.h7_c02140{height:53.067656px;}
.h6_c02140{height:53.215313px;}
.h0_c02140{height:1263.000000px;}
.w2_c02140{width:395.280000px;}
.w1_c02140{width:892.500000px;}
.w0_c02140{width:892.830000px;}
.x0_c02140{left:0.000000px;}
.xd_c02140{left:117.000000px;}
.xe_c02140{left:161.280000px;}
.x8_c02140{left:440.999856px;}
.x4_c02140{left:445.680576px;}
.xb_c02140{left:451.080000px;}
.x7_c02140{left:455.399604px;}
.x5_c02140{left:461.880144px;}
.x1_c02140{left:463.320000px;}
.xa_c02140{left:483.480360px;}
.x9_c02140{left:492.119496px;}
.x6_c02140{left:493.200576px;}
.xc_c02140{left:506.880360px;}
.x3_c02140{left:511.919892px;}
.x2_c02140{left:526.679604px;}
@media print{
.v0_c02140{vertical-align:0.000000pt;}
.lsb_c02140{letter-spacing:-0.832128pt;}
.ls9_c02140{letter-spacing:-0.544896pt;}
.lsc_c02140{letter-spacing:-0.511104pt;}
.lsf_c02140{letter-spacing:-0.380160pt;}
.ls13_c02140{letter-spacing:-0.244992pt;}
.ls11_c02140{letter-spacing:-0.232320pt;}
.ls8_c02140{letter-spacing:-0.215424pt;}
.ls6_c02140{letter-spacing:-0.105600pt;}
.ls15_c02140{letter-spacing:0.000000pt;}
.ls2_c02140{letter-spacing:0.005376pt;}
.ls7_c02140{letter-spacing:0.114048pt;}
.lse_c02140{letter-spacing:0.451968pt;}
.ls1_c02140{letter-spacing:0.456960pt;}
.ls12_c02140{letter-spacing:0.477312pt;}
.lsd_c02140{letter-spacing:0.515328pt;}
.ls14_c02140{letter-spacing:0.528000pt;}
.lsa_c02140{letter-spacing:0.532224pt;}
.ls4_c02140{letter-spacing:0.544896pt;}
.ls3_c02140{letter-spacing:0.578688pt;}
.ls10_c02140{letter-spacing:0.587136pt;}
.ls0_c02140{letter-spacing:0.637824pt;}
.ls5_c02140{letter-spacing:0.642048pt;}
.wsa_c02140{word-spacing:-13.896960pt;}
.wsb_c02140{word-spacing:-13.445376pt;}
.ws9_c02140{word-spacing:-11.088000pt;}
.ws8_c02140{word-spacing:-11.037312pt;}
.wsc_c02140{word-spacing:-11.011968pt;}
.ws2_c02140{word-spacing:-10.015104pt;}
.ws16_c02140{word-spacing:-3.198720pt;}
.ws11_c02140{word-spacing:-0.958848pt;}
.ws13_c02140{word-spacing:-0.908160pt;}
.ws17_c02140{word-spacing:-0.899712pt;}
.wsd_c02140{word-spacing:-0.865920pt;}
.wsf_c02140{word-spacing:-0.105600pt;}
.ws14_c02140{word-spacing:-0.088704pt;}
.ws15_c02140{word-spacing:-0.076032pt;}
.wse_c02140{word-spacing:0.000000pt;}
.ws12_c02140{word-spacing:0.059136pt;}
.ws10_c02140{word-spacing:0.511104pt;}
.ws7_c02140{word-spacing:32.127744pt;}
.ws5_c02140{word-spacing:32.659968pt;}
.ws1_c02140{word-spacing:33.563904pt;}
.ws0_c02140{word-spacing:33.796224pt;}
.ws3_c02140{word-spacing:34.860672pt;}
.ws4_c02140{word-spacing:35.468928pt;}
.ws6_c02140{word-spacing:37.357056pt;}
._0_c02140{margin-left:-1.731840pt;}
._2_c02140{width:1.317888pt;}
._4_c02140{width:2.348544pt;}
._1_c02140{width:44.668800pt;}
._3_c02140{width:45.805056pt;}
.fs0_c02140{font-size:42.240000pt;}
.fs1_c02140{font-size:53.760000pt;}
.y0_c02140{bottom:0.000000pt;}
.y10_c02140{bottom:18.560400pt;}
.y1c_c02140{bottom:130.665211pt;}
.y1e_c02140{bottom:165.866875pt;}
.y1d_c02140{bottom:174.507067pt;}
.y1b_c02140{bottom:245.225371pt;}
.y1a_c02140{bottom:317.225563pt;}
.y18_c02140{bottom:361.386427pt;}
.y14_c02140{bottom:377.386939pt;}
.y19_c02140{bottom:407.786011pt;}
.y17_c02140{bottom:437.226235pt;}
.y16_c02140{bottom:453.226747pt;}
.y13_c02140{bottom:482.666971pt;}
.y15_c02140{bottom:497.386555pt;}
.y12_c02140{bottom:513.387067pt;}
.y20_c02140{bottom:527.786667pt;}
.y21_c02140{bottom:530.347067pt;}
.y1f_c02140{bottom:546.027067pt;}
.yb_c02140{bottom:593.385179pt;}
.yd_c02140{bottom:628.586875pt;}
.yc_c02140{bottom:637.227067pt;}
.ya_c02140{bottom:707.945339pt;}
.y9_c02140{bottom:779.945531pt;}
.y7_c02140{bottom:823.786427pt;}
.y3_c02140{bottom:839.786939pt;}
.y8_c02140{bottom:870.505979pt;}
.y6_c02140{bottom:899.946203pt;}
.y5_c02140{bottom:915.946715pt;}
.y2_c02140{bottom:945.386939pt;}
.y4_c02140{bottom:959.786555pt;}
.y1_c02140{bottom:975.787067pt;}
.yf_c02140{bottom:990.506667pt;}
.y11_c02140{bottom:993.067067pt;}
.ye_c02140{bottom:1008.747067pt;}
.h3_c02140{height:28.916250pt;}
.h5_c02140{height:32.640000pt;}
.h4_c02140{height:36.802500pt;}
.h1_c02140{height:37.063125pt;}
.h2_c02140{height:37.166250pt;}
.h7_c02140{height:47.171250pt;}
.h6_c02140{height:47.302500pt;}
.h0_c02140{height:1122.666667pt;}
.w2_c02140{width:351.360000pt;}
.w1_c02140{width:793.333333pt;}
.w0_c02140{width:793.626667pt;}
.x0_c02140{left:0.000000pt;}
.xd_c02140{left:104.000000pt;}
.xe_c02140{left:143.360000pt;}
.x8_c02140{left:391.999872pt;}
.x4_c02140{left:396.160512pt;}
.xb_c02140{left:400.960000pt;}
.x7_c02140{left:404.799648pt;}
.x5_c02140{left:410.560128pt;}
.x1_c02140{left:411.840000pt;}
.xa_c02140{left:429.760320pt;}
.x9_c02140{left:437.439552pt;}
.x6_c02140{left:438.400512pt;}
.xc_c02140{left:450.560320pt;}
.x3_c02140{left:455.039904pt;}
.x2_c02140{left:468.159648pt;}
}





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

.ir_c02141:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02141{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02141;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02141{font-family:ff1_c02141;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02141;src:url('chunks/assets/font_117c05312f9ca2f275b12aa9.woff2')format("woff");}.ff2_c02141{font-family:ff2_c02141;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02141;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02141{font-family:ff3_c02141;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02141{vertical-align:0.000000px;}
.ls9_c02141{letter-spacing:-0.613008px;}
.lsc_c02141{letter-spacing:-0.574992px;}
.ls12_c02141{letter-spacing:-0.275616px;}
.lsb_c02141{letter-spacing:-0.261360px;}
.ls8_c02141{letter-spacing:-0.242352px;}
.ls6_c02141{letter-spacing:-0.118800px;}
.ls14_c02141{letter-spacing:0.000000px;}
.ls3_c02141{letter-spacing:0.006048px;}
.ls7_c02141{letter-spacing:0.128304px;}
.lsf_c02141{letter-spacing:0.242352px;}
.lse_c02141{letter-spacing:0.508464px;}
.ls2_c02141{letter-spacing:0.514080px;}
.ls11_c02141{letter-spacing:0.536976px;}
.lsd_c02141{letter-spacing:0.579744px;}
.ls13_c02141{letter-spacing:0.594000px;}
.lsa_c02141{letter-spacing:0.598752px;}
.ls4_c02141{letter-spacing:0.613008px;}
.ls0_c02141{letter-spacing:0.651024px;}
.ls10_c02141{letter-spacing:0.660528px;}
.ls1_c02141{letter-spacing:0.717552px;}
.ls5_c02141{letter-spacing:0.722304px;}
.sc__c02141{text-shadow:none;}
.sc0_c02141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02141{-webkit-text-stroke:0px transparent;}
.sc0_c02141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02141{word-spacing:-15.634080px;}
.wsb_c02141{word-spacing:-15.126048px;}
.ws9_c02141{word-spacing:-12.474000px;}
.ws8_c02141{word-spacing:-12.416976px;}
.ws2_c02141{word-spacing:-11.266992px;}
.ws14_c02141{word-spacing:-3.598560px;}
.ws11_c02141{word-spacing:-1.078704px;}
.ws12_c02141{word-spacing:-1.021680px;}
.wse_c02141{word-spacing:-1.012176px;}
.wsc_c02141{word-spacing:-0.974160px;}
.wsf_c02141{word-spacing:-0.118800px;}
.ws10_c02141{word-spacing:-0.099792px;}
.ws13_c02141{word-spacing:-0.085536px;}
.wsd_c02141{word-spacing:0.000000px;}
.ws7_c02141{word-spacing:36.143712px;}
.ws5_c02141{word-spacing:36.742464px;}
.ws1_c02141{word-spacing:37.759392px;}
.ws0_c02141{word-spacing:38.020752px;}
.ws3_c02141{word-spacing:39.218256px;}
.ws4_c02141{word-spacing:39.902544px;}
.ws6_c02141{word-spacing:42.026688px;}
._0_c02141{margin-left:-1.948320px;}
._2_c02141{width:1.482624px;}
._1_c02141{width:50.252400px;}
._3_c02141{width:51.530688px;}
.fc0_c02141{color:rgb(0,0,0);}
.fs0_c02141{font-size:47.520000px;}
.fs1_c02141{font-size:60.480000px;}
.y0_c02141{bottom:0.000000px;}
.y10_c02141{bottom:20.880450px;}
.y1c_c02141{bottom:146.998362px;}
.y1e_c02141{bottom:186.600234px;}
.y1d_c02141{bottom:196.320450px;}
.y1b_c02141{bottom:275.878542px;}
.y1a_c02141{bottom:356.878758px;}
.y18_c02141{bottom:406.559730px;}
.y14_c02141{bottom:424.560306px;}
.y19_c02141{bottom:458.759262px;}
.y17_c02141{bottom:491.879514px;}
.y16_c02141{bottom:509.880090px;}
.y13_c02141{bottom:543.000342px;}
.y15_c02141{bottom:559.559874px;}
.y12_c02141{bottom:577.560450px;}
.y20_c02141{bottom:593.760000px;}
.y21_c02141{bottom:596.640450px;}
.y1f_c02141{bottom:614.280450px;}
.yb_c02141{bottom:667.558326px;}
.yd_c02141{bottom:707.160234px;}
.yc_c02141{bottom:716.880450px;}
.ya_c02141{bottom:796.438506px;}
.y9_c02141{bottom:877.438722px;}
.y7_c02141{bottom:926.759730px;}
.y3_c02141{bottom:944.760306px;}
.y8_c02141{bottom:979.319226px;}
.y6_c02141{bottom:1012.439478px;}
.y5_c02141{bottom:1030.440054px;}
.y2_c02141{bottom:1063.560306px;}
.y4_c02141{bottom:1079.759874px;}
.y1_c02141{bottom:1097.760450px;}
.yf_c02141{bottom:1114.320000px;}
.y11_c02141{bottom:1117.200450px;}
.ye_c02141{bottom:1134.840450px;}
.h3_c02141{height:32.530781px;}
.h5_c02141{height:36.720000px;}
.h4_c02141{height:41.402813px;}
.h1_c02141{height:41.696016px;}
.h2_c02141{height:41.812031px;}
.h7_c02141{height:53.067656px;}
.h6_c02141{height:53.215313px;}
.h0_c02141{height:1263.000000px;}
.w2_c02141{width:395.280000px;}
.w1_c02141{width:892.500000px;}
.w0_c02141{width:892.830000px;}
.x0_c02141{left:0.000000px;}
.xd_c02141{left:117.000000px;}
.xe_c02141{left:161.280000px;}
.x8_c02141{left:440.999856px;}
.x4_c02141{left:445.680576px;}
.xb_c02141{left:451.080000px;}
.x7_c02141{left:455.399604px;}
.x5_c02141{left:461.880144px;}
.x1_c02141{left:463.320000px;}
.xa_c02141{left:483.480360px;}
.x9_c02141{left:492.119496px;}
.x6_c02141{left:493.200576px;}
.xc_c02141{left:506.880360px;}
.x3_c02141{left:511.919892px;}
.x2_c02141{left:526.679604px;}
@media print{
.v0_c02141{vertical-align:0.000000pt;}
.ls9_c02141{letter-spacing:-0.544896pt;}
.lsc_c02141{letter-spacing:-0.511104pt;}
.ls12_c02141{letter-spacing:-0.244992pt;}
.lsb_c02141{letter-spacing:-0.232320pt;}
.ls8_c02141{letter-spacing:-0.215424pt;}
.ls6_c02141{letter-spacing:-0.105600pt;}
.ls14_c02141{letter-spacing:0.000000pt;}
.ls3_c02141{letter-spacing:0.005376pt;}
.ls7_c02141{letter-spacing:0.114048pt;}
.lsf_c02141{letter-spacing:0.215424pt;}
.lse_c02141{letter-spacing:0.451968pt;}
.ls2_c02141{letter-spacing:0.456960pt;}
.ls11_c02141{letter-spacing:0.477312pt;}
.lsd_c02141{letter-spacing:0.515328pt;}
.ls13_c02141{letter-spacing:0.528000pt;}
.lsa_c02141{letter-spacing:0.532224pt;}
.ls4_c02141{letter-spacing:0.544896pt;}
.ls0_c02141{letter-spacing:0.578688pt;}
.ls10_c02141{letter-spacing:0.587136pt;}
.ls1_c02141{letter-spacing:0.637824pt;}
.ls5_c02141{letter-spacing:0.642048pt;}
.wsa_c02141{word-spacing:-13.896960pt;}
.wsb_c02141{word-spacing:-13.445376pt;}
.ws9_c02141{word-spacing:-11.088000pt;}
.ws8_c02141{word-spacing:-11.037312pt;}
.ws2_c02141{word-spacing:-10.015104pt;}
.ws14_c02141{word-spacing:-3.198720pt;}
.ws11_c02141{word-spacing:-0.958848pt;}
.ws12_c02141{word-spacing:-0.908160pt;}
.wse_c02141{word-spacing:-0.899712pt;}
.wsc_c02141{word-spacing:-0.865920pt;}
.wsf_c02141{word-spacing:-0.105600pt;}
.ws10_c02141{word-spacing:-0.088704pt;}
.ws13_c02141{word-spacing:-0.076032pt;}
.wsd_c02141{word-spacing:0.000000pt;}
.ws7_c02141{word-spacing:32.127744pt;}
.ws5_c02141{word-spacing:32.659968pt;}
.ws1_c02141{word-spacing:33.563904pt;}
.ws0_c02141{word-spacing:33.796224pt;}
.ws3_c02141{word-spacing:34.860672pt;}
.ws4_c02141{word-spacing:35.468928pt;}
.ws6_c02141{word-spacing:37.357056pt;}
._0_c02141{margin-left:-1.731840pt;}
._2_c02141{width:1.317888pt;}
._1_c02141{width:44.668800pt;}
._3_c02141{width:45.805056pt;}
.fs0_c02141{font-size:42.240000pt;}
.fs1_c02141{font-size:53.760000pt;}
.y0_c02141{bottom:0.000000pt;}
.y10_c02141{bottom:18.560400pt;}
.y1c_c02141{bottom:130.665211pt;}
.y1e_c02141{bottom:165.866875pt;}
.y1d_c02141{bottom:174.507067pt;}
.y1b_c02141{bottom:245.225371pt;}
.y1a_c02141{bottom:317.225563pt;}
.y18_c02141{bottom:361.386427pt;}
.y14_c02141{bottom:377.386939pt;}
.y19_c02141{bottom:407.786011pt;}
.y17_c02141{bottom:437.226235pt;}
.y16_c02141{bottom:453.226747pt;}
.y13_c02141{bottom:482.666971pt;}
.y15_c02141{bottom:497.386555pt;}
.y12_c02141{bottom:513.387067pt;}
.y20_c02141{bottom:527.786667pt;}
.y21_c02141{bottom:530.347067pt;}
.y1f_c02141{bottom:546.027067pt;}
.yb_c02141{bottom:593.385179pt;}
.yd_c02141{bottom:628.586875pt;}
.yc_c02141{bottom:637.227067pt;}
.ya_c02141{bottom:707.945339pt;}
.y9_c02141{bottom:779.945531pt;}
.y7_c02141{bottom:823.786427pt;}
.y3_c02141{bottom:839.786939pt;}
.y8_c02141{bottom:870.505979pt;}
.y6_c02141{bottom:899.946203pt;}
.y5_c02141{bottom:915.946715pt;}
.y2_c02141{bottom:945.386939pt;}
.y4_c02141{bottom:959.786555pt;}
.y1_c02141{bottom:975.787067pt;}
.yf_c02141{bottom:990.506667pt;}
.y11_c02141{bottom:993.067067pt;}
.ye_c02141{bottom:1008.747067pt;}
.h3_c02141{height:28.916250pt;}
.h5_c02141{height:32.640000pt;}
.h4_c02141{height:36.802500pt;}
.h1_c02141{height:37.063125pt;}
.h2_c02141{height:37.166250pt;}
.h7_c02141{height:47.171250pt;}
.h6_c02141{height:47.302500pt;}
.h0_c02141{height:1122.666667pt;}
.w2_c02141{width:351.360000pt;}
.w1_c02141{width:793.333333pt;}
.w0_c02141{width:793.626667pt;}
.x0_c02141{left:0.000000pt;}
.xd_c02141{left:104.000000pt;}
.xe_c02141{left:143.360000pt;}
.x8_c02141{left:391.999872pt;}
.x4_c02141{left:396.160512pt;}
.xb_c02141{left:400.960000pt;}
.x7_c02141{left:404.799648pt;}
.x5_c02141{left:410.560128pt;}
.x1_c02141{left:411.840000pt;}
.xa_c02141{left:429.760320pt;}
.x9_c02141{left:437.439552pt;}
.x6_c02141{left:438.400512pt;}
.xc_c02141{left:450.560320pt;}
.x3_c02141{left:455.039904pt;}
.x2_c02141{left:468.159648pt;}
}





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

.ir_c02142:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02142{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02142;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02142{font-family:ff1_c02142;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02142;src:url('chunks/assets/font_769114c0e63127b31c5bdb8f.woff2')format("woff");}.ff2_c02142{font-family:ff2_c02142;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02142;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02142{font-family:ff3_c02142;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02142{vertical-align:0.000000px;}
.ls8_c02142{letter-spacing:-0.613008px;}
.ls14_c02142{letter-spacing:-0.594000px;}
.lsb_c02142{letter-spacing:-0.574992px;}
.ls15_c02142{letter-spacing:-0.427680px;}
.ls10_c02142{letter-spacing:-0.275616px;}
.ls13_c02142{letter-spacing:-0.266112px;}
.lsa_c02142{letter-spacing:-0.261360px;}
.ls7_c02142{letter-spacing:-0.242352px;}
.ls5_c02142{letter-spacing:-0.118800px;}
.ls12_c02142{letter-spacing:0.000000px;}
.ls2_c02142{letter-spacing:0.006048px;}
.ls6_c02142{letter-spacing:0.128304px;}
.lsd_c02142{letter-spacing:0.508464px;}
.ls1_c02142{letter-spacing:0.514080px;}
.lsf_c02142{letter-spacing:0.536976px;}
.lsc_c02142{letter-spacing:0.579744px;}
.ls11_c02142{letter-spacing:0.594000px;}
.ls9_c02142{letter-spacing:0.598752px;}
.ls3_c02142{letter-spacing:0.613008px;}
.lse_c02142{letter-spacing:0.660528px;}
.ls0_c02142{letter-spacing:0.717552px;}
.ls4_c02142{letter-spacing:0.722304px;}
.sc__c02142{text-shadow:none;}
.sc0_c02142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02142{-webkit-text-stroke:0px transparent;}
.sc0_c02142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02142{word-spacing:-15.634080px;}
.wsb_c02142{word-spacing:-15.126048px;}
.ws9_c02142{word-spacing:-12.474000px;}
.wsc_c02142{word-spacing:-12.459744px;}
.ws8_c02142{word-spacing:-12.416976px;}
.ws2_c02142{word-spacing:-11.266992px;}
.ws15_c02142{word-spacing:-3.598560px;}
.ws12_c02142{word-spacing:-1.083456px;}
.ws11_c02142{word-spacing:-1.078704px;}
.ws13_c02142{word-spacing:-1.021680px;}
.wsd_c02142{word-spacing:-0.974160px;}
.wsf_c02142{word-spacing:-0.118800px;}
.ws10_c02142{word-spacing:-0.099792px;}
.ws16_c02142{word-spacing:-0.095040px;}
.ws14_c02142{word-spacing:-0.085536px;}
.wse_c02142{word-spacing:0.000000px;}
.ws18_c02142{word-spacing:0.066528px;}
.ws17_c02142{word-spacing:0.232848px;}
.ws5_c02142{word-spacing:36.742464px;}
.ws1_c02142{word-spacing:37.759392px;}
.ws0_c02142{word-spacing:38.020752px;}
.ws3_c02142{word-spacing:39.218256px;}
.ws4_c02142{word-spacing:39.902544px;}
.ws6_c02142{word-spacing:42.026688px;}
.ws7_c02142{word-spacing:47.662560px;}
._0_c02142{margin-left:-1.948320px;}
._2_c02142{width:1.482624px;}
._1_c02142{width:50.252400px;}
._3_c02142{width:51.530688px;}
.fc0_c02142{color:rgb(0,0,0);}
.fs0_c02142{font-size:47.520000px;}
.fs1_c02142{font-size:60.480000px;}
.y0_c02142{bottom:0.000000px;}
.y10_c02142{bottom:20.880450px;}
.y1c_c02142{bottom:146.998362px;}
.y1e_c02142{bottom:186.600234px;}
.y1d_c02142{bottom:196.320450px;}
.y1b_c02142{bottom:275.878542px;}
.y1a_c02142{bottom:356.878758px;}
.y18_c02142{bottom:406.559730px;}
.y14_c02142{bottom:424.560306px;}
.y19_c02142{bottom:458.759262px;}
.y17_c02142{bottom:491.879514px;}
.y16_c02142{bottom:509.880090px;}
.y13_c02142{bottom:543.000342px;}
.y15_c02142{bottom:559.559874px;}
.y12_c02142{bottom:577.560450px;}
.y20_c02142{bottom:593.760000px;}
.y21_c02142{bottom:596.640450px;}
.y1f_c02142{bottom:614.280450px;}
.yb_c02142{bottom:667.558326px;}
.yd_c02142{bottom:707.160234px;}
.yc_c02142{bottom:716.880450px;}
.ya_c02142{bottom:796.438506px;}
.y9_c02142{bottom:877.438722px;}
.y7_c02142{bottom:926.759730px;}
.y3_c02142{bottom:944.760306px;}
.y8_c02142{bottom:979.319226px;}
.y6_c02142{bottom:1012.439478px;}
.y5_c02142{bottom:1030.440054px;}
.y2_c02142{bottom:1063.560306px;}
.y4_c02142{bottom:1079.759874px;}
.y1_c02142{bottom:1097.760450px;}
.yf_c02142{bottom:1114.320000px;}
.y11_c02142{bottom:1117.200450px;}
.ye_c02142{bottom:1134.840450px;}
.h3_c02142{height:32.530781px;}
.h5_c02142{height:36.720000px;}
.h4_c02142{height:41.402813px;}
.h1_c02142{height:41.696016px;}
.h2_c02142{height:41.812031px;}
.h7_c02142{height:53.067656px;}
.h6_c02142{height:53.215313px;}
.h0_c02142{height:1263.000000px;}
.w2_c02142{width:395.280000px;}
.w1_c02142{width:892.500000px;}
.w0_c02142{width:892.830000px;}
.x0_c02142{left:0.000000px;}
.xd_c02142{left:117.000000px;}
.xe_c02142{left:161.280000px;}
.x8_c02142{left:440.999856px;}
.x4_c02142{left:445.680576px;}
.xb_c02142{left:451.080000px;}
.x7_c02142{left:455.399604px;}
.x5_c02142{left:461.880144px;}
.x1_c02142{left:463.320000px;}
.xa_c02142{left:483.480360px;}
.x9_c02142{left:492.119496px;}
.x6_c02142{left:493.200576px;}
.xc_c02142{left:506.880360px;}
.x3_c02142{left:511.919892px;}
.x2_c02142{left:526.679604px;}
@media print{
.v0_c02142{vertical-align:0.000000pt;}
.ls8_c02142{letter-spacing:-0.544896pt;}
.ls14_c02142{letter-spacing:-0.528000pt;}
.lsb_c02142{letter-spacing:-0.511104pt;}
.ls15_c02142{letter-spacing:-0.380160pt;}
.ls10_c02142{letter-spacing:-0.244992pt;}
.ls13_c02142{letter-spacing:-0.236544pt;}
.lsa_c02142{letter-spacing:-0.232320pt;}
.ls7_c02142{letter-spacing:-0.215424pt;}
.ls5_c02142{letter-spacing:-0.105600pt;}
.ls12_c02142{letter-spacing:0.000000pt;}
.ls2_c02142{letter-spacing:0.005376pt;}
.ls6_c02142{letter-spacing:0.114048pt;}
.lsd_c02142{letter-spacing:0.451968pt;}
.ls1_c02142{letter-spacing:0.456960pt;}
.lsf_c02142{letter-spacing:0.477312pt;}
.lsc_c02142{letter-spacing:0.515328pt;}
.ls11_c02142{letter-spacing:0.528000pt;}
.ls9_c02142{letter-spacing:0.532224pt;}
.ls3_c02142{letter-spacing:0.544896pt;}
.lse_c02142{letter-spacing:0.587136pt;}
.ls0_c02142{letter-spacing:0.637824pt;}
.ls4_c02142{letter-spacing:0.642048pt;}
.wsa_c02142{word-spacing:-13.896960pt;}
.wsb_c02142{word-spacing:-13.445376pt;}
.ws9_c02142{word-spacing:-11.088000pt;}
.wsc_c02142{word-spacing:-11.075328pt;}
.ws8_c02142{word-spacing:-11.037312pt;}
.ws2_c02142{word-spacing:-10.015104pt;}
.ws15_c02142{word-spacing:-3.198720pt;}
.ws12_c02142{word-spacing:-0.963072pt;}
.ws11_c02142{word-spacing:-0.958848pt;}
.ws13_c02142{word-spacing:-0.908160pt;}
.wsd_c02142{word-spacing:-0.865920pt;}
.wsf_c02142{word-spacing:-0.105600pt;}
.ws10_c02142{word-spacing:-0.088704pt;}
.ws16_c02142{word-spacing:-0.084480pt;}
.ws14_c02142{word-spacing:-0.076032pt;}
.wse_c02142{word-spacing:0.000000pt;}
.ws18_c02142{word-spacing:0.059136pt;}
.ws17_c02142{word-spacing:0.206976pt;}
.ws5_c02142{word-spacing:32.659968pt;}
.ws1_c02142{word-spacing:33.563904pt;}
.ws0_c02142{word-spacing:33.796224pt;}
.ws3_c02142{word-spacing:34.860672pt;}
.ws4_c02142{word-spacing:35.468928pt;}
.ws6_c02142{word-spacing:37.357056pt;}
.ws7_c02142{word-spacing:42.366720pt;}
._0_c02142{margin-left:-1.731840pt;}
._2_c02142{width:1.317888pt;}
._1_c02142{width:44.668800pt;}
._3_c02142{width:45.805056pt;}
.fs0_c02142{font-size:42.240000pt;}
.fs1_c02142{font-size:53.760000pt;}
.y0_c02142{bottom:0.000000pt;}
.y10_c02142{bottom:18.560400pt;}
.y1c_c02142{bottom:130.665211pt;}
.y1e_c02142{bottom:165.866875pt;}
.y1d_c02142{bottom:174.507067pt;}
.y1b_c02142{bottom:245.225371pt;}
.y1a_c02142{bottom:317.225563pt;}
.y18_c02142{bottom:361.386427pt;}
.y14_c02142{bottom:377.386939pt;}
.y19_c02142{bottom:407.786011pt;}
.y17_c02142{bottom:437.226235pt;}
.y16_c02142{bottom:453.226747pt;}
.y13_c02142{bottom:482.666971pt;}
.y15_c02142{bottom:497.386555pt;}
.y12_c02142{bottom:513.387067pt;}
.y20_c02142{bottom:527.786667pt;}
.y21_c02142{bottom:530.347067pt;}
.y1f_c02142{bottom:546.027067pt;}
.yb_c02142{bottom:593.385179pt;}
.yd_c02142{bottom:628.586875pt;}
.yc_c02142{bottom:637.227067pt;}
.ya_c02142{bottom:707.945339pt;}
.y9_c02142{bottom:779.945531pt;}
.y7_c02142{bottom:823.786427pt;}
.y3_c02142{bottom:839.786939pt;}
.y8_c02142{bottom:870.505979pt;}
.y6_c02142{bottom:899.946203pt;}
.y5_c02142{bottom:915.946715pt;}
.y2_c02142{bottom:945.386939pt;}
.y4_c02142{bottom:959.786555pt;}
.y1_c02142{bottom:975.787067pt;}
.yf_c02142{bottom:990.506667pt;}
.y11_c02142{bottom:993.067067pt;}
.ye_c02142{bottom:1008.747067pt;}
.h3_c02142{height:28.916250pt;}
.h5_c02142{height:32.640000pt;}
.h4_c02142{height:36.802500pt;}
.h1_c02142{height:37.063125pt;}
.h2_c02142{height:37.166250pt;}
.h7_c02142{height:47.171250pt;}
.h6_c02142{height:47.302500pt;}
.h0_c02142{height:1122.666667pt;}
.w2_c02142{width:351.360000pt;}
.w1_c02142{width:793.333333pt;}
.w0_c02142{width:793.626667pt;}
.x0_c02142{left:0.000000pt;}
.xd_c02142{left:104.000000pt;}
.xe_c02142{left:143.360000pt;}
.x8_c02142{left:391.999872pt;}
.x4_c02142{left:396.160512pt;}
.xb_c02142{left:400.960000pt;}
.x7_c02142{left:404.799648pt;}
.x5_c02142{left:410.560128pt;}
.x1_c02142{left:411.840000pt;}
.xa_c02142{left:429.760320pt;}
.x9_c02142{left:437.439552pt;}
.x6_c02142{left:438.400512pt;}
.xc_c02142{left:450.560320pt;}
.x3_c02142{left:455.039904pt;}
.x2_c02142{left:468.159648pt;}
}





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

.ir_c02143:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02143{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02143;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02143{font-family:ff1_c02143;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02143;src:url('chunks/assets/font_299a59f52f27909f1e78b019.woff2')format("woff");}.ff2_c02143{font-family:ff2_c02143;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02143;src:url('chunks/assets/font_3fc1ee9be084e42ead150f35.woff2')format("woff");}.ff3_c02143{font-family:ff3_c02143;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02143{vertical-align:0.000000px;}
.lse_c02143{letter-spacing:-1.197504px;}
.ls14_c02143{letter-spacing:-0.803088px;}
.ls8_c02143{letter-spacing:-0.613008px;}
.lsb_c02143{letter-spacing:-0.574992px;}
.ls16_c02143{letter-spacing:-0.380160px;}
.ls15_c02143{letter-spacing:-0.280368px;}
.ls11_c02143{letter-spacing:-0.275616px;}
.lsa_c02143{letter-spacing:-0.266112px;}
.lsf_c02143{letter-spacing:-0.261360px;}
.ls7_c02143{letter-spacing:-0.242352px;}
.ls4_c02143{letter-spacing:-0.118800px;}
.ls13_c02143{letter-spacing:0.000000px;}
.ls2_c02143{letter-spacing:0.006048px;}
.ls6_c02143{letter-spacing:0.128304px;}
.lsd_c02143{letter-spacing:0.508464px;}
.ls1_c02143{letter-spacing:0.514080px;}
.ls10_c02143{letter-spacing:0.536976px;}
.lsc_c02143{letter-spacing:0.579744px;}
.ls12_c02143{letter-spacing:0.594000px;}
.ls9_c02143{letter-spacing:0.598752px;}
.ls3_c02143{letter-spacing:0.613008px;}
.ls5_c02143{letter-spacing:0.717552px;}
.ls0_c02143{letter-spacing:0.722304px;}
.sc__c02143{text-shadow:none;}
.sc0_c02143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02143{-webkit-text-stroke:0px transparent;}
.sc0_c02143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02143{word-spacing:-15.634080px;}
.wsb_c02143{word-spacing:-15.126048px;}
.ws9_c02143{word-spacing:-12.474000px;}
.ws7_c02143{word-spacing:-12.459744px;}
.ws8_c02143{word-spacing:-12.416976px;}
.ws2_c02143{word-spacing:-11.266992px;}
.ws14_c02143{word-spacing:-3.598560px;}
.ws10_c02143{word-spacing:-1.083456px;}
.wsc_c02143{word-spacing:-0.974160px;}
.wse_c02143{word-spacing:-0.118800px;}
.ws12_c02143{word-spacing:-0.099792px;}
.wsf_c02143{word-spacing:-0.095040px;}
.ws13_c02143{word-spacing:-0.085536px;}
.ws16_c02143{word-spacing:-0.080784px;}
.wsd_c02143{word-spacing:0.000000px;}
.ws17_c02143{word-spacing:0.019008px;}
.ws15_c02143{word-spacing:0.441936px;}
.ws11_c02143{word-spacing:0.836352px;}
.ws5_c02143{word-spacing:36.742464px;}
.ws1_c02143{word-spacing:37.759392px;}
.ws0_c02143{word-spacing:38.020752px;}
.ws3_c02143{word-spacing:39.218256px;}
.ws4_c02143{word-spacing:39.902544px;}
.ws6_c02143{word-spacing:42.026688px;}
._0_c02143{margin-left:-1.948320px;}
._2_c02143{width:1.482624px;}
._4_c02143{width:2.770416px;}
._1_c02143{width:50.252400px;}
._3_c02143{width:51.530688px;}
.fc0_c02143{color:rgb(0,0,0);}
.fs0_c02143{font-size:47.520000px;}
.fs1_c02143{font-size:60.480000px;}
.y0_c02143{bottom:0.000000px;}
.y10_c02143{bottom:20.880450px;}
.y1c_c02143{bottom:65.880450px;}
.y1f_c02143{bottom:147.000054px;}
.y21_c02143{bottom:186.600234px;}
.y20_c02143{bottom:196.320450px;}
.y1e_c02143{bottom:275.880234px;}
.y1b_c02143{bottom:291.000000px;}
.y1a_c02143{bottom:356.878758px;}
.y1d_c02143{bottom:356.880450px;}
.y18_c02143{bottom:406.559730px;}
.y14_c02143{bottom:424.560306px;}
.y19_c02143{bottom:458.759262px;}
.y17_c02143{bottom:491.879514px;}
.y16_c02143{bottom:509.880090px;}
.y13_c02143{bottom:543.000342px;}
.y15_c02143{bottom:559.559874px;}
.y12_c02143{bottom:577.560450px;}
.y23_c02143{bottom:593.760000px;}
.y24_c02143{bottom:596.640450px;}
.y22_c02143{bottom:614.280450px;}
.yb_c02143{bottom:667.558326px;}
.yd_c02143{bottom:707.160234px;}
.yc_c02143{bottom:716.880450px;}
.ya_c02143{bottom:796.438506px;}
.y9_c02143{bottom:877.438722px;}
.y7_c02143{bottom:926.759730px;}
.y3_c02143{bottom:944.760306px;}
.y8_c02143{bottom:979.319226px;}
.y6_c02143{bottom:1012.439478px;}
.y5_c02143{bottom:1030.440054px;}
.y2_c02143{bottom:1063.560306px;}
.y4_c02143{bottom:1079.759874px;}
.y1_c02143{bottom:1097.760450px;}
.yf_c02143{bottom:1114.320000px;}
.y11_c02143{bottom:1117.200450px;}
.ye_c02143{bottom:1134.840450px;}
.h3_c02143{height:32.530781px;}
.h5_c02143{height:36.720000px;}
.h4_c02143{height:41.402813px;}
.h1_c02143{height:41.696016px;}
.h2_c02143{height:41.812031px;}
.h7_c02143{height:53.067656px;}
.h6_c02143{height:53.215313px;}
.h8_c02143{height:78.480000px;}
.h0_c02143{height:1263.000000px;}
.w3_c02143{width:215.280000px;}
.w2_c02143{width:395.280000px;}
.w1_c02143{width:892.500000px;}
.w0_c02143{width:892.830000px;}
.x0_c02143{left:0.000000px;}
.xd_c02143{left:117.000000px;}
.xe_c02143{left:161.280000px;}
.x8_c02143{left:440.999856px;}
.x4_c02143{left:445.680576px;}
.xb_c02143{left:451.080000px;}
.x7_c02143{left:455.399604px;}
.x5_c02143{left:461.880144px;}
.x1_c02143{left:463.320000px;}
.xa_c02143{left:483.480360px;}
.x9_c02143{left:492.119496px;}
.x6_c02143{left:493.200576px;}
.xc_c02143{left:506.880360px;}
.x3_c02143{left:511.919892px;}
.x2_c02143{left:526.679604px;}
.xf_c02143{left:569.520000px;}
.x10_c02143{left:745.920000px;}
@media print{
.v0_c02143{vertical-align:0.000000pt;}
.lse_c02143{letter-spacing:-1.064448pt;}
.ls14_c02143{letter-spacing:-0.713856pt;}
.ls8_c02143{letter-spacing:-0.544896pt;}
.lsb_c02143{letter-spacing:-0.511104pt;}
.ls16_c02143{letter-spacing:-0.337920pt;}
.ls15_c02143{letter-spacing:-0.249216pt;}
.ls11_c02143{letter-spacing:-0.244992pt;}
.lsa_c02143{letter-spacing:-0.236544pt;}
.lsf_c02143{letter-spacing:-0.232320pt;}
.ls7_c02143{letter-spacing:-0.215424pt;}
.ls4_c02143{letter-spacing:-0.105600pt;}
.ls13_c02143{letter-spacing:0.000000pt;}
.ls2_c02143{letter-spacing:0.005376pt;}
.ls6_c02143{letter-spacing:0.114048pt;}
.lsd_c02143{letter-spacing:0.451968pt;}
.ls1_c02143{letter-spacing:0.456960pt;}
.ls10_c02143{letter-spacing:0.477312pt;}
.lsc_c02143{letter-spacing:0.515328pt;}
.ls12_c02143{letter-spacing:0.528000pt;}
.ls9_c02143{letter-spacing:0.532224pt;}
.ls3_c02143{letter-spacing:0.544896pt;}
.ls5_c02143{letter-spacing:0.637824pt;}
.ls0_c02143{letter-spacing:0.642048pt;}
.wsa_c02143{word-spacing:-13.896960pt;}
.wsb_c02143{word-spacing:-13.445376pt;}
.ws9_c02143{word-spacing:-11.088000pt;}
.ws7_c02143{word-spacing:-11.075328pt;}
.ws8_c02143{word-spacing:-11.037312pt;}
.ws2_c02143{word-spacing:-10.015104pt;}
.ws14_c02143{word-spacing:-3.198720pt;}
.ws10_c02143{word-spacing:-0.963072pt;}
.wsc_c02143{word-spacing:-0.865920pt;}
.wse_c02143{word-spacing:-0.105600pt;}
.ws12_c02143{word-spacing:-0.088704pt;}
.wsf_c02143{word-spacing:-0.084480pt;}
.ws13_c02143{word-spacing:-0.076032pt;}
.ws16_c02143{word-spacing:-0.071808pt;}
.wsd_c02143{word-spacing:0.000000pt;}
.ws17_c02143{word-spacing:0.016896pt;}
.ws15_c02143{word-spacing:0.392832pt;}
.ws11_c02143{word-spacing:0.743424pt;}
.ws5_c02143{word-spacing:32.659968pt;}
.ws1_c02143{word-spacing:33.563904pt;}
.ws0_c02143{word-spacing:33.796224pt;}
.ws3_c02143{word-spacing:34.860672pt;}
.ws4_c02143{word-spacing:35.468928pt;}
.ws6_c02143{word-spacing:37.357056pt;}
._0_c02143{margin-left:-1.731840pt;}
._2_c02143{width:1.317888pt;}
._4_c02143{width:2.462592pt;}
._1_c02143{width:44.668800pt;}
._3_c02143{width:45.805056pt;}
.fs0_c02143{font-size:42.240000pt;}
.fs1_c02143{font-size:53.760000pt;}
.y0_c02143{bottom:0.000000pt;}
.y10_c02143{bottom:18.560400pt;}
.y1c_c02143{bottom:58.560400pt;}
.y1f_c02143{bottom:130.666715pt;}
.y21_c02143{bottom:165.866875pt;}
.y20_c02143{bottom:174.507067pt;}
.y1e_c02143{bottom:245.226875pt;}
.y1b_c02143{bottom:258.666667pt;}
.y1a_c02143{bottom:317.225563pt;}
.y1d_c02143{bottom:317.227067pt;}
.y18_c02143{bottom:361.386427pt;}
.y14_c02143{bottom:377.386939pt;}
.y19_c02143{bottom:407.786011pt;}
.y17_c02143{bottom:437.226235pt;}
.y16_c02143{bottom:453.226747pt;}
.y13_c02143{bottom:482.666971pt;}
.y15_c02143{bottom:497.386555pt;}
.y12_c02143{bottom:513.387067pt;}
.y23_c02143{bottom:527.786667pt;}
.y24_c02143{bottom:530.347067pt;}
.y22_c02143{bottom:546.027067pt;}
.yb_c02143{bottom:593.385179pt;}
.yd_c02143{bottom:628.586875pt;}
.yc_c02143{bottom:637.227067pt;}
.ya_c02143{bottom:707.945339pt;}
.y9_c02143{bottom:779.945531pt;}
.y7_c02143{bottom:823.786427pt;}
.y3_c02143{bottom:839.786939pt;}
.y8_c02143{bottom:870.505979pt;}
.y6_c02143{bottom:899.946203pt;}
.y5_c02143{bottom:915.946715pt;}
.y2_c02143{bottom:945.386939pt;}
.y4_c02143{bottom:959.786555pt;}
.y1_c02143{bottom:975.787067pt;}
.yf_c02143{bottom:990.506667pt;}
.y11_c02143{bottom:993.067067pt;}
.ye_c02143{bottom:1008.747067pt;}
.h3_c02143{height:28.916250pt;}
.h5_c02143{height:32.640000pt;}
.h4_c02143{height:36.802500pt;}
.h1_c02143{height:37.063125pt;}
.h2_c02143{height:37.166250pt;}
.h7_c02143{height:47.171250pt;}
.h6_c02143{height:47.302500pt;}
.h8_c02143{height:69.760000pt;}
.h0_c02143{height:1122.666667pt;}
.w3_c02143{width:191.360000pt;}
.w2_c02143{width:351.360000pt;}
.w1_c02143{width:793.333333pt;}
.w0_c02143{width:793.626667pt;}
.x0_c02143{left:0.000000pt;}
.xd_c02143{left:104.000000pt;}
.xe_c02143{left:143.360000pt;}
.x8_c02143{left:391.999872pt;}
.x4_c02143{left:396.160512pt;}
.xb_c02143{left:400.960000pt;}
.x7_c02143{left:404.799648pt;}
.x5_c02143{left:410.560128pt;}
.x1_c02143{left:411.840000pt;}
.xa_c02143{left:429.760320pt;}
.x9_c02143{left:437.439552pt;}
.x6_c02143{left:438.400512pt;}
.xc_c02143{left:450.560320pt;}
.x3_c02143{left:455.039904pt;}
.x2_c02143{left:468.159648pt;}
.xf_c02143{left:506.240000pt;}
.x10_c02143{left:663.040000pt;}
}





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

.ir_c02144:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02144{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02144;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02144{font-family:ff1_c02144;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02144;src:url('chunks/assets/font_ff7e842357a435570862ee68.woff2')format("woff");}.ff2_c02144{font-family:ff2_c02144;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02144;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02144{font-family:ff3_c02144;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02144{vertical-align:0.000000px;}
.ls14_c02144{letter-spacing:-1.197504px;}
.lse_c02144{letter-spacing:-0.722304px;}
.ls8_c02144{letter-spacing:-0.613008px;}
.lsb_c02144{letter-spacing:-0.574992px;}
.ls11_c02144{letter-spacing:-0.275616px;}
.lsa_c02144{letter-spacing:-0.266112px;}
.lsf_c02144{letter-spacing:-0.261360px;}
.ls7_c02144{letter-spacing:-0.242352px;}
.ls5_c02144{letter-spacing:-0.118800px;}
.ls15_c02144{letter-spacing:-0.095040px;}
.ls13_c02144{letter-spacing:0.000000px;}
.ls2_c02144{letter-spacing:0.006048px;}
.ls6_c02144{letter-spacing:0.128304px;}
.lsd_c02144{letter-spacing:0.508464px;}
.ls1_c02144{letter-spacing:0.514080px;}
.ls10_c02144{letter-spacing:0.536976px;}
.lsc_c02144{letter-spacing:0.579744px;}
.ls12_c02144{letter-spacing:0.594000px;}
.ls9_c02144{letter-spacing:0.598752px;}
.ls3_c02144{letter-spacing:0.613008px;}
.ls0_c02144{letter-spacing:0.717552px;}
.ls4_c02144{letter-spacing:0.722304px;}
.sc__c02144{text-shadow:none;}
.sc0_c02144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02144{-webkit-text-stroke:0px transparent;}
.sc0_c02144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c02144{word-spacing:-15.634080px;}
.wsa_c02144{word-spacing:-15.126048px;}
.ws8_c02144{word-spacing:-12.474000px;}
.ws5_c02144{word-spacing:-12.459744px;}
.ws7_c02144{word-spacing:-12.416976px;}
.ws2_c02144{word-spacing:-11.266992px;}
.ws15_c02144{word-spacing:-3.598560px;}
.ws11_c02144{word-spacing:-1.078704px;}
.wsd_c02144{word-spacing:-0.974160px;}
.ws16_c02144{word-spacing:-0.266112px;}
.wsf_c02144{word-spacing:-0.118800px;}
.ws13_c02144{word-spacing:-0.099792px;}
.ws10_c02144{word-spacing:-0.095040px;}
.ws14_c02144{word-spacing:-0.085536px;}
.wse_c02144{word-spacing:0.000000px;}
.ws12_c02144{word-spacing:0.361152px;}
.wsc_c02144{word-spacing:23.275296px;}
.wsb_c02144{word-spacing:36.742464px;}
.ws1_c02144{word-spacing:37.759392px;}
.ws0_c02144{word-spacing:38.020752px;}
.ws3_c02144{word-spacing:39.218256px;}
.ws4_c02144{word-spacing:39.902544px;}
.ws6_c02144{word-spacing:42.026688px;}
._0_c02144{margin-left:-1.948320px;}
._2_c02144{width:1.482624px;}
._6_c02144{width:2.670624px;}
._5_c02144{width:31.154112px;}
._4_c02144{width:34.979472px;}
._1_c02144{width:50.252400px;}
._3_c02144{width:51.530688px;}
.fc0_c02144{color:rgb(0,0,0);}
.fs0_c02144{font-size:47.520000px;}
.fs1_c02144{font-size:60.480000px;}
.y0_c02144{bottom:0.000000px;}
.y10_c02144{bottom:20.880450px;}
.y1d_c02144{bottom:146.999550px;}
.y1f_c02144{bottom:186.600234px;}
.y1e_c02144{bottom:196.320450px;}
.y1c_c02144{bottom:275.879730px;}
.y1b_c02144{bottom:356.879946px;}
.y18_c02144{bottom:406.559730px;}
.y14_c02144{bottom:424.560306px;}
.y1a_c02144{bottom:443.999550px;}
.y19_c02144{bottom:458.759262px;}
.y17_c02144{bottom:491.879514px;}
.y16_c02144{bottom:509.880090px;}
.y13_c02144{bottom:543.000342px;}
.y15_c02144{bottom:559.559874px;}
.y12_c02144{bottom:577.560450px;}
.y21_c02144{bottom:593.760000px;}
.y22_c02144{bottom:596.640450px;}
.y20_c02144{bottom:614.280450px;}
.yb_c02144{bottom:667.558326px;}
.yd_c02144{bottom:707.160234px;}
.yc_c02144{bottom:716.880450px;}
.ya_c02144{bottom:796.438506px;}
.y9_c02144{bottom:877.438722px;}
.y7_c02144{bottom:926.759730px;}
.y3_c02144{bottom:944.760306px;}
.y8_c02144{bottom:979.319226px;}
.y6_c02144{bottom:1012.439478px;}
.y5_c02144{bottom:1030.440054px;}
.y2_c02144{bottom:1063.560306px;}
.y4_c02144{bottom:1079.759874px;}
.y1_c02144{bottom:1097.760450px;}
.yf_c02144{bottom:1114.320000px;}
.y11_c02144{bottom:1117.200450px;}
.ye_c02144{bottom:1134.840450px;}
.h3_c02144{height:32.530781px;}
.h5_c02144{height:36.720000px;}
.h4_c02144{height:41.402813px;}
.h1_c02144{height:41.696016px;}
.h2_c02144{height:41.812031px;}
.h7_c02144{height:53.067656px;}
.h6_c02144{height:53.215313px;}
.h0_c02144{height:1263.000000px;}
.w2_c02144{width:395.280000px;}
.w1_c02144{width:892.500000px;}
.w0_c02144{width:892.830000px;}
.x0_c02144{left:0.000000px;}
.xd_c02144{left:117.000000px;}
.xe_c02144{left:161.280000px;}
.x8_c02144{left:440.999856px;}
.x4_c02144{left:445.680576px;}
.xb_c02144{left:451.080000px;}
.x7_c02144{left:455.399604px;}
.x5_c02144{left:461.880144px;}
.x1_c02144{left:463.320000px;}
.xa_c02144{left:483.480360px;}
.x9_c02144{left:492.119496px;}
.x6_c02144{left:493.200576px;}
.xc_c02144{left:506.880360px;}
.x3_c02144{left:511.919892px;}
.x2_c02144{left:526.679604px;}
.xf_c02144{left:569.880036px;}
@media print{
.v0_c02144{vertical-align:0.000000pt;}
.ls14_c02144{letter-spacing:-1.064448pt;}
.lse_c02144{letter-spacing:-0.642048pt;}
.ls8_c02144{letter-spacing:-0.544896pt;}
.lsb_c02144{letter-spacing:-0.511104pt;}
.ls11_c02144{letter-spacing:-0.244992pt;}
.lsa_c02144{letter-spacing:-0.236544pt;}
.lsf_c02144{letter-spacing:-0.232320pt;}
.ls7_c02144{letter-spacing:-0.215424pt;}
.ls5_c02144{letter-spacing:-0.105600pt;}
.ls15_c02144{letter-spacing:-0.084480pt;}
.ls13_c02144{letter-spacing:0.000000pt;}
.ls2_c02144{letter-spacing:0.005376pt;}
.ls6_c02144{letter-spacing:0.114048pt;}
.lsd_c02144{letter-spacing:0.451968pt;}
.ls1_c02144{letter-spacing:0.456960pt;}
.ls10_c02144{letter-spacing:0.477312pt;}
.lsc_c02144{letter-spacing:0.515328pt;}
.ls12_c02144{letter-spacing:0.528000pt;}
.ls9_c02144{letter-spacing:0.532224pt;}
.ls3_c02144{letter-spacing:0.544896pt;}
.ls0_c02144{letter-spacing:0.637824pt;}
.ls4_c02144{letter-spacing:0.642048pt;}
.ws9_c02144{word-spacing:-13.896960pt;}
.wsa_c02144{word-spacing:-13.445376pt;}
.ws8_c02144{word-spacing:-11.088000pt;}
.ws5_c02144{word-spacing:-11.075328pt;}
.ws7_c02144{word-spacing:-11.037312pt;}
.ws2_c02144{word-spacing:-10.015104pt;}
.ws15_c02144{word-spacing:-3.198720pt;}
.ws11_c02144{word-spacing:-0.958848pt;}
.wsd_c02144{word-spacing:-0.865920pt;}
.ws16_c02144{word-spacing:-0.236544pt;}
.wsf_c02144{word-spacing:-0.105600pt;}
.ws13_c02144{word-spacing:-0.088704pt;}
.ws10_c02144{word-spacing:-0.084480pt;}
.ws14_c02144{word-spacing:-0.076032pt;}
.wse_c02144{word-spacing:0.000000pt;}
.ws12_c02144{word-spacing:0.321024pt;}
.wsc_c02144{word-spacing:20.689152pt;}
.wsb_c02144{word-spacing:32.659968pt;}
.ws1_c02144{word-spacing:33.563904pt;}
.ws0_c02144{word-spacing:33.796224pt;}
.ws3_c02144{word-spacing:34.860672pt;}
.ws4_c02144{word-spacing:35.468928pt;}
.ws6_c02144{word-spacing:37.357056pt;}
._0_c02144{margin-left:-1.731840pt;}
._2_c02144{width:1.317888pt;}
._6_c02144{width:2.373888pt;}
._5_c02144{width:27.692544pt;}
._4_c02144{width:31.092864pt;}
._1_c02144{width:44.668800pt;}
._3_c02144{width:45.805056pt;}
.fs0_c02144{font-size:42.240000pt;}
.fs1_c02144{font-size:53.760000pt;}
.y0_c02144{bottom:0.000000pt;}
.y10_c02144{bottom:18.560400pt;}
.y1d_c02144{bottom:130.666267pt;}
.y1f_c02144{bottom:165.866875pt;}
.y1e_c02144{bottom:174.507067pt;}
.y1c_c02144{bottom:245.226427pt;}
.y1b_c02144{bottom:317.226619pt;}
.y18_c02144{bottom:361.386427pt;}
.y14_c02144{bottom:377.386939pt;}
.y1a_c02144{bottom:394.666267pt;}
.y19_c02144{bottom:407.786011pt;}
.y17_c02144{bottom:437.226235pt;}
.y16_c02144{bottom:453.226747pt;}
.y13_c02144{bottom:482.666971pt;}
.y15_c02144{bottom:497.386555pt;}
.y12_c02144{bottom:513.387067pt;}
.y21_c02144{bottom:527.786667pt;}
.y22_c02144{bottom:530.347067pt;}
.y20_c02144{bottom:546.027067pt;}
.yb_c02144{bottom:593.385179pt;}
.yd_c02144{bottom:628.586875pt;}
.yc_c02144{bottom:637.227067pt;}
.ya_c02144{bottom:707.945339pt;}
.y9_c02144{bottom:779.945531pt;}
.y7_c02144{bottom:823.786427pt;}
.y3_c02144{bottom:839.786939pt;}
.y8_c02144{bottom:870.505979pt;}
.y6_c02144{bottom:899.946203pt;}
.y5_c02144{bottom:915.946715pt;}
.y2_c02144{bottom:945.386939pt;}
.y4_c02144{bottom:959.786555pt;}
.y1_c02144{bottom:975.787067pt;}
.yf_c02144{bottom:990.506667pt;}
.y11_c02144{bottom:993.067067pt;}
.ye_c02144{bottom:1008.747067pt;}
.h3_c02144{height:28.916250pt;}
.h5_c02144{height:32.640000pt;}
.h4_c02144{height:36.802500pt;}
.h1_c02144{height:37.063125pt;}
.h2_c02144{height:37.166250pt;}
.h7_c02144{height:47.171250pt;}
.h6_c02144{height:47.302500pt;}
.h0_c02144{height:1122.666667pt;}
.w2_c02144{width:351.360000pt;}
.w1_c02144{width:793.333333pt;}
.w0_c02144{width:793.626667pt;}
.x0_c02144{left:0.000000pt;}
.xd_c02144{left:104.000000pt;}
.xe_c02144{left:143.360000pt;}
.x8_c02144{left:391.999872pt;}
.x4_c02144{left:396.160512pt;}
.xb_c02144{left:400.960000pt;}
.x7_c02144{left:404.799648pt;}
.x5_c02144{left:410.560128pt;}
.x1_c02144{left:411.840000pt;}
.xa_c02144{left:429.760320pt;}
.x9_c02144{left:437.439552pt;}
.x6_c02144{left:438.400512pt;}
.xc_c02144{left:450.560320pt;}
.x3_c02144{left:455.039904pt;}
.x2_c02144{left:468.159648pt;}
.xf_c02144{left:506.560032pt;}
}





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

.ir_c02145:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02145{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02145;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02145{font-family:ff1_c02145;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02145;src:url('chunks/assets/font_90b2131a73d7afaccb40f5c3.woff2')format("woff");}.ff2_c02145{font-family:ff2_c02145;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02145;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02145{font-family:ff3_c02145;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02145{vertical-align:0.000000px;}
.ls10_c02145{letter-spacing:-1.197504px;}
.lsb_c02145{letter-spacing:-0.940896px;}
.ls19_c02145{letter-spacing:-0.822096px;}
.ls9_c02145{letter-spacing:-0.613008px;}
.lsc_c02145{letter-spacing:-0.574992px;}
.ls11_c02145{letter-spacing:-0.308880px;}
.ls14_c02145{letter-spacing:-0.275616px;}
.ls17_c02145{letter-spacing:-0.266112px;}
.ls12_c02145{letter-spacing:-0.261360px;}
.ls8_c02145{letter-spacing:-0.242352px;}
.ls5_c02145{letter-spacing:-0.118800px;}
.ls16_c02145{letter-spacing:0.000000px;}
.ls2_c02145{letter-spacing:0.006048px;}
.lse_c02145{letter-spacing:0.071280px;}
.ls7_c02145{letter-spacing:0.128304px;}
.ls18_c02145{letter-spacing:0.242352px;}
.lsf_c02145{letter-spacing:0.508464px;}
.ls1_c02145{letter-spacing:0.514080px;}
.ls13_c02145{letter-spacing:0.536976px;}
.lsd_c02145{letter-spacing:0.579744px;}
.ls15_c02145{letter-spacing:0.594000px;}
.lsa_c02145{letter-spacing:0.598752px;}
.ls4_c02145{letter-spacing:0.613008px;}
.ls3_c02145{letter-spacing:0.651024px;}
.ls6_c02145{letter-spacing:0.717552px;}
.ls0_c02145{letter-spacing:0.722304px;}
.sc__c02145{text-shadow:none;}
.sc0_c02145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02145{-webkit-text-stroke:0px transparent;}
.sc0_c02145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02145{word-spacing:-15.634080px;}
.wsb_c02145{word-spacing:-15.126048px;}
.ws9_c02145{word-spacing:-12.474000px;}
.wsc_c02145{word-spacing:-12.459744px;}
.ws8_c02145{word-spacing:-12.416976px;}
.ws2_c02145{word-spacing:-11.266992px;}
.ws19_c02145{word-spacing:-3.598560px;}
.ws13_c02145{word-spacing:-1.083456px;}
.ws1a_c02145{word-spacing:-1.012176px;}
.wsf_c02145{word-spacing:-0.974160px;}
.ws14_c02145{word-spacing:-0.432432px;}
.ws11_c02145{word-spacing:-0.118800px;}
.ws17_c02145{word-spacing:-0.099792px;}
.ws1b_c02145{word-spacing:-0.095040px;}
.ws18_c02145{word-spacing:-0.085536px;}
.ws16_c02145{word-spacing:-0.052272px;}
.ws10_c02145{word-spacing:0.000000px;}
.ws1c_c02145{word-spacing:0.460944px;}
.ws12_c02145{word-spacing:0.579744px;}
.ws15_c02145{word-spacing:0.836352px;}
.wse_c02145{word-spacing:4.951584px;}
.wsd_c02145{word-spacing:34.836912px;}
.ws7_c02145{word-spacing:36.143712px;}
.ws5_c02145{word-spacing:36.742464px;}
.ws1_c02145{word-spacing:37.759392px;}
.ws0_c02145{word-spacing:38.020752px;}
.ws3_c02145{word-spacing:39.218256px;}
.ws4_c02145{word-spacing:39.902544px;}
.ws6_c02145{word-spacing:42.026688px;}
._0_c02145{margin-left:-1.948320px;}
._2_c02145{width:1.482624px;}
._4_c02145{width:2.656368px;}
._6_c02145{width:13.956624px;}
._5_c02145{width:19.088784px;}
._1_c02145{width:50.252400px;}
._3_c02145{width:51.530688px;}
.fc0_c02145{color:rgb(0,0,0);}
.fs0_c02145{font-size:47.520000px;}
.fs1_c02145{font-size:60.480000px;}
.y0_c02145{bottom:0.000000px;}
.y10_c02145{bottom:20.880450px;}
.y1d_c02145{bottom:131.878686px;}
.y1c_c02145{bottom:146.998362px;}
.y1f_c02145{bottom:186.600234px;}
.y1e_c02145{bottom:196.320450px;}
.y1b_c02145{bottom:275.878542px;}
.y1a_c02145{bottom:356.878758px;}
.y18_c02145{bottom:406.559730px;}
.y14_c02145{bottom:424.560306px;}
.y19_c02145{bottom:458.759262px;}
.y17_c02145{bottom:491.879514px;}
.y16_c02145{bottom:509.880090px;}
.y13_c02145{bottom:543.000342px;}
.y15_c02145{bottom:559.559874px;}
.y12_c02145{bottom:577.560450px;}
.y21_c02145{bottom:593.760000px;}
.y22_c02145{bottom:596.640450px;}
.y20_c02145{bottom:614.280450px;}
.yb_c02145{bottom:667.558326px;}
.yd_c02145{bottom:707.160234px;}
.yc_c02145{bottom:716.880450px;}
.ya_c02145{bottom:796.438506px;}
.y9_c02145{bottom:877.438722px;}
.y7_c02145{bottom:926.759730px;}
.y3_c02145{bottom:944.760306px;}
.y8_c02145{bottom:979.319226px;}
.y6_c02145{bottom:1012.439478px;}
.y5_c02145{bottom:1030.440054px;}
.y2_c02145{bottom:1063.560306px;}
.y4_c02145{bottom:1079.759874px;}
.y1_c02145{bottom:1097.760450px;}
.yf_c02145{bottom:1114.320000px;}
.y11_c02145{bottom:1117.200450px;}
.ye_c02145{bottom:1134.840450px;}
.h3_c02145{height:32.530781px;}
.h5_c02145{height:36.720000px;}
.h4_c02145{height:41.402813px;}
.h1_c02145{height:41.696016px;}
.h2_c02145{height:41.812031px;}
.h7_c02145{height:53.067656px;}
.h6_c02145{height:53.215313px;}
.h0_c02145{height:1263.000000px;}
.w2_c02145{width:395.280000px;}
.w1_c02145{width:892.500000px;}
.w0_c02145{width:892.830000px;}
.x0_c02145{left:0.000000px;}
.xd_c02145{left:117.000000px;}
.xe_c02145{left:161.280000px;}
.x8_c02145{left:440.999856px;}
.x4_c02145{left:445.680576px;}
.xb_c02145{left:451.080000px;}
.x7_c02145{left:455.399604px;}
.x5_c02145{left:461.880144px;}
.x1_c02145{left:463.320000px;}
.xa_c02145{left:483.480360px;}
.x9_c02145{left:492.119496px;}
.x6_c02145{left:493.200576px;}
.xc_c02145{left:506.880360px;}
.x3_c02145{left:511.919892px;}
.x2_c02145{left:526.679604px;}
.xf_c02145{left:569.880036px;}
@media print{
.v0_c02145{vertical-align:0.000000pt;}
.ls10_c02145{letter-spacing:-1.064448pt;}
.lsb_c02145{letter-spacing:-0.836352pt;}
.ls19_c02145{letter-spacing:-0.730752pt;}
.ls9_c02145{letter-spacing:-0.544896pt;}
.lsc_c02145{letter-spacing:-0.511104pt;}
.ls11_c02145{letter-spacing:-0.274560pt;}
.ls14_c02145{letter-spacing:-0.244992pt;}
.ls17_c02145{letter-spacing:-0.236544pt;}
.ls12_c02145{letter-spacing:-0.232320pt;}
.ls8_c02145{letter-spacing:-0.215424pt;}
.ls5_c02145{letter-spacing:-0.105600pt;}
.ls16_c02145{letter-spacing:0.000000pt;}
.ls2_c02145{letter-spacing:0.005376pt;}
.lse_c02145{letter-spacing:0.063360pt;}
.ls7_c02145{letter-spacing:0.114048pt;}
.ls18_c02145{letter-spacing:0.215424pt;}
.lsf_c02145{letter-spacing:0.451968pt;}
.ls1_c02145{letter-spacing:0.456960pt;}
.ls13_c02145{letter-spacing:0.477312pt;}
.lsd_c02145{letter-spacing:0.515328pt;}
.ls15_c02145{letter-spacing:0.528000pt;}
.lsa_c02145{letter-spacing:0.532224pt;}
.ls4_c02145{letter-spacing:0.544896pt;}
.ls3_c02145{letter-spacing:0.578688pt;}
.ls6_c02145{letter-spacing:0.637824pt;}
.ls0_c02145{letter-spacing:0.642048pt;}
.wsa_c02145{word-spacing:-13.896960pt;}
.wsb_c02145{word-spacing:-13.445376pt;}
.ws9_c02145{word-spacing:-11.088000pt;}
.wsc_c02145{word-spacing:-11.075328pt;}
.ws8_c02145{word-spacing:-11.037312pt;}
.ws2_c02145{word-spacing:-10.015104pt;}
.ws19_c02145{word-spacing:-3.198720pt;}
.ws13_c02145{word-spacing:-0.963072pt;}
.ws1a_c02145{word-spacing:-0.899712pt;}
.wsf_c02145{word-spacing:-0.865920pt;}
.ws14_c02145{word-spacing:-0.384384pt;}
.ws11_c02145{word-spacing:-0.105600pt;}
.ws17_c02145{word-spacing:-0.088704pt;}
.ws1b_c02145{word-spacing:-0.084480pt;}
.ws18_c02145{word-spacing:-0.076032pt;}
.ws16_c02145{word-spacing:-0.046464pt;}
.ws10_c02145{word-spacing:0.000000pt;}
.ws1c_c02145{word-spacing:0.409728pt;}
.ws12_c02145{word-spacing:0.515328pt;}
.ws15_c02145{word-spacing:0.743424pt;}
.wse_c02145{word-spacing:4.401408pt;}
.wsd_c02145{word-spacing:30.966144pt;}
.ws7_c02145{word-spacing:32.127744pt;}
.ws5_c02145{word-spacing:32.659968pt;}
.ws1_c02145{word-spacing:33.563904pt;}
.ws0_c02145{word-spacing:33.796224pt;}
.ws3_c02145{word-spacing:34.860672pt;}
.ws4_c02145{word-spacing:35.468928pt;}
.ws6_c02145{word-spacing:37.357056pt;}
._0_c02145{margin-left:-1.731840pt;}
._2_c02145{width:1.317888pt;}
._4_c02145{width:2.361216pt;}
._6_c02145{width:12.405888pt;}
._5_c02145{width:16.967808pt;}
._1_c02145{width:44.668800pt;}
._3_c02145{width:45.805056pt;}
.fs0_c02145{font-size:42.240000pt;}
.fs1_c02145{font-size:53.760000pt;}
.y0_c02145{bottom:0.000000pt;}
.y10_c02145{bottom:18.560400pt;}
.y1d_c02145{bottom:117.225499pt;}
.y1c_c02145{bottom:130.665211pt;}
.y1f_c02145{bottom:165.866875pt;}
.y1e_c02145{bottom:174.507067pt;}
.y1b_c02145{bottom:245.225371pt;}
.y1a_c02145{bottom:317.225563pt;}
.y18_c02145{bottom:361.386427pt;}
.y14_c02145{bottom:377.386939pt;}
.y19_c02145{bottom:407.786011pt;}
.y17_c02145{bottom:437.226235pt;}
.y16_c02145{bottom:453.226747pt;}
.y13_c02145{bottom:482.666971pt;}
.y15_c02145{bottom:497.386555pt;}
.y12_c02145{bottom:513.387067pt;}
.y21_c02145{bottom:527.786667pt;}
.y22_c02145{bottom:530.347067pt;}
.y20_c02145{bottom:546.027067pt;}
.yb_c02145{bottom:593.385179pt;}
.yd_c02145{bottom:628.586875pt;}
.yc_c02145{bottom:637.227067pt;}
.ya_c02145{bottom:707.945339pt;}
.y9_c02145{bottom:779.945531pt;}
.y7_c02145{bottom:823.786427pt;}
.y3_c02145{bottom:839.786939pt;}
.y8_c02145{bottom:870.505979pt;}
.y6_c02145{bottom:899.946203pt;}
.y5_c02145{bottom:915.946715pt;}
.y2_c02145{bottom:945.386939pt;}
.y4_c02145{bottom:959.786555pt;}
.y1_c02145{bottom:975.787067pt;}
.yf_c02145{bottom:990.506667pt;}
.y11_c02145{bottom:993.067067pt;}
.ye_c02145{bottom:1008.747067pt;}
.h3_c02145{height:28.916250pt;}
.h5_c02145{height:32.640000pt;}
.h4_c02145{height:36.802500pt;}
.h1_c02145{height:37.063125pt;}
.h2_c02145{height:37.166250pt;}
.h7_c02145{height:47.171250pt;}
.h6_c02145{height:47.302500pt;}
.h0_c02145{height:1122.666667pt;}
.w2_c02145{width:351.360000pt;}
.w1_c02145{width:793.333333pt;}
.w0_c02145{width:793.626667pt;}
.x0_c02145{left:0.000000pt;}
.xd_c02145{left:104.000000pt;}
.xe_c02145{left:143.360000pt;}
.x8_c02145{left:391.999872pt;}
.x4_c02145{left:396.160512pt;}
.xb_c02145{left:400.960000pt;}
.x7_c02145{left:404.799648pt;}
.x5_c02145{left:410.560128pt;}
.x1_c02145{left:411.840000pt;}
.xa_c02145{left:429.760320pt;}
.x9_c02145{left:437.439552pt;}
.x6_c02145{left:438.400512pt;}
.xc_c02145{left:450.560320pt;}
.x3_c02145{left:455.039904pt;}
.x2_c02145{left:468.159648pt;}
.xf_c02145{left:506.560032pt;}
}





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

.ir_c02146:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02146{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02146;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02146{font-family:ff1_c02146;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02146;src:url('chunks/assets/font_ca93ac04ab827d73a93b65cc.woff2')format("woff");}.ff2_c02146{font-family:ff2_c02146;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02146;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02146{font-family:ff3_c02146;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02146{vertical-align:0.000000px;}
.ls15_c02146{letter-spacing:-0.774576px;}
.ls17_c02146{letter-spacing:-0.736560px;}
.ls16_c02146{letter-spacing:-0.722304px;}
.ls9_c02146{letter-spacing:-0.613008px;}
.lsc_c02146{letter-spacing:-0.574992px;}
.ls12_c02146{letter-spacing:-0.275616px;}
.ls18_c02146{letter-spacing:-0.270864px;}
.lsb_c02146{letter-spacing:-0.266112px;}
.ls10_c02146{letter-spacing:-0.261360px;}
.ls8_c02146{letter-spacing:-0.242352px;}
.ls5_c02146{letter-spacing:-0.118800px;}
.ls14_c02146{letter-spacing:0.000000px;}
.ls3_c02146{letter-spacing:0.006048px;}
.ls7_c02146{letter-spacing:0.128304px;}
.lsf_c02146{letter-spacing:0.242352px;}
.lse_c02146{letter-spacing:0.508464px;}
.ls2_c02146{letter-spacing:0.514080px;}
.ls11_c02146{letter-spacing:0.536976px;}
.lsd_c02146{letter-spacing:0.579744px;}
.ls13_c02146{letter-spacing:0.594000px;}
.lsa_c02146{letter-spacing:0.598752px;}
.ls4_c02146{letter-spacing:0.613008px;}
.ls0_c02146{letter-spacing:0.651024px;}
.ls6_c02146{letter-spacing:0.717552px;}
.ls1_c02146{letter-spacing:0.722304px;}
.sc__c02146{text-shadow:none;}
.sc0_c02146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02146{-webkit-text-stroke:0px transparent;}
.sc0_c02146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02146{word-spacing:-15.634080px;}
.wsb_c02146{word-spacing:-15.126048px;}
.ws9_c02146{word-spacing:-12.474000px;}
.ws7_c02146{word-spacing:-12.459744px;}
.ws8_c02146{word-spacing:-12.416976px;}
.ws2_c02146{word-spacing:-11.266992px;}
.wsc_c02146{word-spacing:-11.105424px;}
.ws17_c02146{word-spacing:-3.598560px;}
.ws14_c02146{word-spacing:-1.083456px;}
.ws11_c02146{word-spacing:-1.012176px;}
.wsf_c02146{word-spacing:-0.974160px;}
.ws12_c02146{word-spacing:-0.118800px;}
.ws15_c02146{word-spacing:-0.099792px;}
.ws13_c02146{word-spacing:-0.095040px;}
.ws19_c02146{word-spacing:-0.090288px;}
.ws16_c02146{word-spacing:-0.085536px;}
.ws10_c02146{word-spacing:0.000000px;}
.ws18_c02146{word-spacing:0.361152px;}
.wse_c02146{word-spacing:6.629040px;}
.wsd_c02146{word-spacing:34.836912px;}
.ws5_c02146{word-spacing:36.742464px;}
.ws1_c02146{word-spacing:37.759392px;}
.ws0_c02146{word-spacing:38.020752px;}
.ws3_c02146{word-spacing:39.218256px;}
.ws4_c02146{word-spacing:39.902544px;}
.ws6_c02146{word-spacing:42.026688px;}
._0_c02146{margin-left:-1.948320px;}
._2_c02146{width:1.482624px;}
._5_c02146{width:19.982160px;}
._6_c02146{width:23.451120px;}
._4_c02146{width:24.691392px;}
._1_c02146{width:50.252400px;}
._3_c02146{width:51.530688px;}
.fc0_c02146{color:rgb(0,0,0);}
.fs0_c02146{font-size:47.520000px;}
.fs1_c02146{font-size:60.480000px;}
.y0_c02146{bottom:0.000000px;}
.y10_c02146{bottom:20.880450px;}
.y1d_c02146{bottom:131.878686px;}
.y1c_c02146{bottom:146.998362px;}
.y1f_c02146{bottom:186.600234px;}
.y1e_c02146{bottom:196.320450px;}
.y1b_c02146{bottom:275.878542px;}
.y1a_c02146{bottom:356.878758px;}
.y18_c02146{bottom:406.559730px;}
.y14_c02146{bottom:424.560306px;}
.y19_c02146{bottom:458.759262px;}
.y17_c02146{bottom:491.879514px;}
.y16_c02146{bottom:509.880090px;}
.y13_c02146{bottom:543.000342px;}
.y15_c02146{bottom:559.559874px;}
.y12_c02146{bottom:577.560450px;}
.y21_c02146{bottom:593.760000px;}
.y22_c02146{bottom:596.640450px;}
.y20_c02146{bottom:614.280450px;}
.yb_c02146{bottom:667.558326px;}
.yd_c02146{bottom:707.160234px;}
.yc_c02146{bottom:716.880450px;}
.ya_c02146{bottom:796.438506px;}
.y9_c02146{bottom:877.438722px;}
.y7_c02146{bottom:926.759730px;}
.y3_c02146{bottom:944.760306px;}
.y8_c02146{bottom:979.319226px;}
.y6_c02146{bottom:1012.439478px;}
.y5_c02146{bottom:1030.440054px;}
.y2_c02146{bottom:1063.560306px;}
.y4_c02146{bottom:1079.759874px;}
.y1_c02146{bottom:1097.760450px;}
.yf_c02146{bottom:1114.320000px;}
.y11_c02146{bottom:1117.200450px;}
.ye_c02146{bottom:1134.840450px;}
.h3_c02146{height:32.530781px;}
.h5_c02146{height:36.720000px;}
.h4_c02146{height:41.402813px;}
.h1_c02146{height:41.696016px;}
.h2_c02146{height:41.812031px;}
.h7_c02146{height:53.067656px;}
.h6_c02146{height:53.215313px;}
.h0_c02146{height:1263.000000px;}
.w2_c02146{width:395.280000px;}
.w1_c02146{width:892.500000px;}
.w0_c02146{width:892.830000px;}
.x0_c02146{left:0.000000px;}
.xd_c02146{left:117.000000px;}
.xe_c02146{left:161.280000px;}
.x8_c02146{left:440.999856px;}
.x4_c02146{left:445.680576px;}
.xb_c02146{left:451.080000px;}
.x7_c02146{left:455.399604px;}
.x5_c02146{left:461.880144px;}
.x1_c02146{left:463.320000px;}
.xa_c02146{left:483.480360px;}
.x9_c02146{left:492.119496px;}
.x6_c02146{left:493.200576px;}
.xc_c02146{left:506.880360px;}
.x3_c02146{left:511.919892px;}
.x2_c02146{left:526.679604px;}
.xf_c02146{left:569.880036px;}
@media print{
.v0_c02146{vertical-align:0.000000pt;}
.ls15_c02146{letter-spacing:-0.688512pt;}
.ls17_c02146{letter-spacing:-0.654720pt;}
.ls16_c02146{letter-spacing:-0.642048pt;}
.ls9_c02146{letter-spacing:-0.544896pt;}
.lsc_c02146{letter-spacing:-0.511104pt;}
.ls12_c02146{letter-spacing:-0.244992pt;}
.ls18_c02146{letter-spacing:-0.240768pt;}
.lsb_c02146{letter-spacing:-0.236544pt;}
.ls10_c02146{letter-spacing:-0.232320pt;}
.ls8_c02146{letter-spacing:-0.215424pt;}
.ls5_c02146{letter-spacing:-0.105600pt;}
.ls14_c02146{letter-spacing:0.000000pt;}
.ls3_c02146{letter-spacing:0.005376pt;}
.ls7_c02146{letter-spacing:0.114048pt;}
.lsf_c02146{letter-spacing:0.215424pt;}
.lse_c02146{letter-spacing:0.451968pt;}
.ls2_c02146{letter-spacing:0.456960pt;}
.ls11_c02146{letter-spacing:0.477312pt;}
.lsd_c02146{letter-spacing:0.515328pt;}
.ls13_c02146{letter-spacing:0.528000pt;}
.lsa_c02146{letter-spacing:0.532224pt;}
.ls4_c02146{letter-spacing:0.544896pt;}
.ls0_c02146{letter-spacing:0.578688pt;}
.ls6_c02146{letter-spacing:0.637824pt;}
.ls1_c02146{letter-spacing:0.642048pt;}
.wsa_c02146{word-spacing:-13.896960pt;}
.wsb_c02146{word-spacing:-13.445376pt;}
.ws9_c02146{word-spacing:-11.088000pt;}
.ws7_c02146{word-spacing:-11.075328pt;}
.ws8_c02146{word-spacing:-11.037312pt;}
.ws2_c02146{word-spacing:-10.015104pt;}
.wsc_c02146{word-spacing:-9.871488pt;}
.ws17_c02146{word-spacing:-3.198720pt;}
.ws14_c02146{word-spacing:-0.963072pt;}
.ws11_c02146{word-spacing:-0.899712pt;}
.wsf_c02146{word-spacing:-0.865920pt;}
.ws12_c02146{word-spacing:-0.105600pt;}
.ws15_c02146{word-spacing:-0.088704pt;}
.ws13_c02146{word-spacing:-0.084480pt;}
.ws19_c02146{word-spacing:-0.080256pt;}
.ws16_c02146{word-spacing:-0.076032pt;}
.ws10_c02146{word-spacing:0.000000pt;}
.ws18_c02146{word-spacing:0.321024pt;}
.wse_c02146{word-spacing:5.892480pt;}
.wsd_c02146{word-spacing:30.966144pt;}
.ws5_c02146{word-spacing:32.659968pt;}
.ws1_c02146{word-spacing:33.563904pt;}
.ws0_c02146{word-spacing:33.796224pt;}
.ws3_c02146{word-spacing:34.860672pt;}
.ws4_c02146{word-spacing:35.468928pt;}
.ws6_c02146{word-spacing:37.357056pt;}
._0_c02146{margin-left:-1.731840pt;}
._2_c02146{width:1.317888pt;}
._5_c02146{width:17.761920pt;}
._6_c02146{width:20.845440pt;}
._4_c02146{width:21.947904pt;}
._1_c02146{width:44.668800pt;}
._3_c02146{width:45.805056pt;}
.fs0_c02146{font-size:42.240000pt;}
.fs1_c02146{font-size:53.760000pt;}
.y0_c02146{bottom:0.000000pt;}
.y10_c02146{bottom:18.560400pt;}
.y1d_c02146{bottom:117.225499pt;}
.y1c_c02146{bottom:130.665211pt;}
.y1f_c02146{bottom:165.866875pt;}
.y1e_c02146{bottom:174.507067pt;}
.y1b_c02146{bottom:245.225371pt;}
.y1a_c02146{bottom:317.225563pt;}
.y18_c02146{bottom:361.386427pt;}
.y14_c02146{bottom:377.386939pt;}
.y19_c02146{bottom:407.786011pt;}
.y17_c02146{bottom:437.226235pt;}
.y16_c02146{bottom:453.226747pt;}
.y13_c02146{bottom:482.666971pt;}
.y15_c02146{bottom:497.386555pt;}
.y12_c02146{bottom:513.387067pt;}
.y21_c02146{bottom:527.786667pt;}
.y22_c02146{bottom:530.347067pt;}
.y20_c02146{bottom:546.027067pt;}
.yb_c02146{bottom:593.385179pt;}
.yd_c02146{bottom:628.586875pt;}
.yc_c02146{bottom:637.227067pt;}
.ya_c02146{bottom:707.945339pt;}
.y9_c02146{bottom:779.945531pt;}
.y7_c02146{bottom:823.786427pt;}
.y3_c02146{bottom:839.786939pt;}
.y8_c02146{bottom:870.505979pt;}
.y6_c02146{bottom:899.946203pt;}
.y5_c02146{bottom:915.946715pt;}
.y2_c02146{bottom:945.386939pt;}
.y4_c02146{bottom:959.786555pt;}
.y1_c02146{bottom:975.787067pt;}
.yf_c02146{bottom:990.506667pt;}
.y11_c02146{bottom:993.067067pt;}
.ye_c02146{bottom:1008.747067pt;}
.h3_c02146{height:28.916250pt;}
.h5_c02146{height:32.640000pt;}
.h4_c02146{height:36.802500pt;}
.h1_c02146{height:37.063125pt;}
.h2_c02146{height:37.166250pt;}
.h7_c02146{height:47.171250pt;}
.h6_c02146{height:47.302500pt;}
.h0_c02146{height:1122.666667pt;}
.w2_c02146{width:351.360000pt;}
.w1_c02146{width:793.333333pt;}
.w0_c02146{width:793.626667pt;}
.x0_c02146{left:0.000000pt;}
.xd_c02146{left:104.000000pt;}
.xe_c02146{left:143.360000pt;}
.x8_c02146{left:391.999872pt;}
.x4_c02146{left:396.160512pt;}
.xb_c02146{left:400.960000pt;}
.x7_c02146{left:404.799648pt;}
.x5_c02146{left:410.560128pt;}
.x1_c02146{left:411.840000pt;}
.xa_c02146{left:429.760320pt;}
.x9_c02146{left:437.439552pt;}
.x6_c02146{left:438.400512pt;}
.xc_c02146{left:450.560320pt;}
.x3_c02146{left:455.039904pt;}
.x2_c02146{left:468.159648pt;}
.xf_c02146{left:506.560032pt;}
}





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

.ir_c02147:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02147{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02147;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02147{font-family:ff1_c02147;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02147;src:url('chunks/assets/font_277c9a4c205a6892bba7ee7e.woff2')format("woff");}.ff2_c02147{font-family:ff2_c02147;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02147;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02147{font-family:ff3_c02147;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02147{vertical-align:0.000000px;}
.ls17_c02147{letter-spacing:-1.197504px;}
.lsd_c02147{letter-spacing:-0.774576px;}
.ls13_c02147{letter-spacing:-0.736560px;}
.ls10_c02147{letter-spacing:-0.722304px;}
.ls9_c02147{letter-spacing:-0.613008px;}
.lsc_c02147{letter-spacing:-0.574992px;}
.ls18_c02147{letter-spacing:-0.275616px;}
.ls14_c02147{letter-spacing:-0.270864px;}
.lsb_c02147{letter-spacing:-0.266112px;}
.ls11_c02147{letter-spacing:-0.261360px;}
.ls8_c02147{letter-spacing:-0.242352px;}
.ls5_c02147{letter-spacing:-0.118800px;}
.ls16_c02147{letter-spacing:0.000000px;}
.ls2_c02147{letter-spacing:0.006048px;}
.ls7_c02147{letter-spacing:0.128304px;}
.lsf_c02147{letter-spacing:0.508464px;}
.ls1_c02147{letter-spacing:0.514080px;}
.ls12_c02147{letter-spacing:0.536976px;}
.lse_c02147{letter-spacing:0.579744px;}
.ls15_c02147{letter-spacing:0.594000px;}
.lsa_c02147{letter-spacing:0.598752px;}
.ls4_c02147{letter-spacing:0.613008px;}
.ls0_c02147{letter-spacing:0.651024px;}
.ls6_c02147{letter-spacing:0.717552px;}
.ls3_c02147{letter-spacing:0.722304px;}
.sc__c02147{text-shadow:none;}
.sc0_c02147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02147{-webkit-text-stroke:0px transparent;}
.sc0_c02147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02147{word-spacing:-15.634080px;}
.wsc_c02147{word-spacing:-15.126048px;}
.wsa_c02147{word-spacing:-12.474000px;}
.ws6_c02147{word-spacing:-12.459744px;}
.wse_c02147{word-spacing:-12.416976px;}
.ws2_c02147{word-spacing:-11.266992px;}
.ws5_c02147{word-spacing:-11.105424px;}
.ws18_c02147{word-spacing:-3.598560px;}
.ws19_c02147{word-spacing:-1.083456px;}
.ws11_c02147{word-spacing:-1.012176px;}
.wsf_c02147{word-spacing:-0.974160px;}
.ws12_c02147{word-spacing:-0.118800px;}
.ws15_c02147{word-spacing:-0.099792px;}
.ws13_c02147{word-spacing:-0.095040px;}
.ws16_c02147{word-spacing:-0.090288px;}
.ws17_c02147{word-spacing:-0.085536px;}
.ws10_c02147{word-spacing:0.000000px;}
.ws14_c02147{word-spacing:0.361152px;}
.ws1a_c02147{word-spacing:0.836352px;}
.ws9_c02147{word-spacing:6.629040px;}
.ws8_c02147{word-spacing:34.836912px;}
.wsd_c02147{word-spacing:36.742464px;}
.ws1_c02147{word-spacing:37.759392px;}
.ws0_c02147{word-spacing:38.020752px;}
.ws3_c02147{word-spacing:39.218256px;}
.ws4_c02147{word-spacing:39.902544px;}
.ws7_c02147{word-spacing:42.026688px;}
._0_c02147{margin-left:-1.948320px;}
._2_c02147{width:1.482624px;}
._7_c02147{width:2.770416px;}
._5_c02147{width:19.982160px;}
._6_c02147{width:23.451120px;}
._4_c02147{width:24.691392px;}
._1_c02147{width:50.252400px;}
._3_c02147{width:51.530688px;}
.fc0_c02147{color:rgb(0,0,0);}
.fs0_c02147{font-size:47.520000px;}
.fs1_c02147{font-size:60.480000px;}
.y0_c02147{bottom:0.000000px;}
.y11_c02147{bottom:20.880450px;}
.y1d_c02147{bottom:146.998362px;}
.y1f_c02147{bottom:186.600234px;}
.y1e_c02147{bottom:196.320450px;}
.y1c_c02147{bottom:275.878542px;}
.y1b_c02147{bottom:356.878758px;}
.y19_c02147{bottom:406.559730px;}
.y15_c02147{bottom:424.560306px;}
.y1a_c02147{bottom:458.759262px;}
.y18_c02147{bottom:491.879514px;}
.y17_c02147{bottom:509.880090px;}
.y14_c02147{bottom:543.000342px;}
.y16_c02147{bottom:559.559874px;}
.y13_c02147{bottom:577.560450px;}
.y21_c02147{bottom:593.760000px;}
.y22_c02147{bottom:596.640450px;}
.y20_c02147{bottom:614.280450px;}
.yc_c02147{bottom:652.438650px;}
.yb_c02147{bottom:667.558326px;}
.ye_c02147{bottom:707.160234px;}
.yd_c02147{bottom:716.880450px;}
.ya_c02147{bottom:796.438506px;}
.y9_c02147{bottom:877.438722px;}
.y7_c02147{bottom:926.759730px;}
.y3_c02147{bottom:944.760306px;}
.y8_c02147{bottom:979.319226px;}
.y6_c02147{bottom:1012.439478px;}
.y5_c02147{bottom:1030.440054px;}
.y2_c02147{bottom:1063.560306px;}
.y4_c02147{bottom:1079.759874px;}
.y1_c02147{bottom:1097.760450px;}
.y10_c02147{bottom:1114.320000px;}
.y12_c02147{bottom:1117.200450px;}
.yf_c02147{bottom:1134.840450px;}
.h3_c02147{height:32.530781px;}
.h5_c02147{height:36.720000px;}
.h4_c02147{height:41.402813px;}
.h1_c02147{height:41.696016px;}
.h2_c02147{height:41.812031px;}
.h7_c02147{height:53.067656px;}
.h6_c02147{height:53.215313px;}
.h0_c02147{height:1263.000000px;}
.w2_c02147{width:395.280000px;}
.w1_c02147{width:892.500000px;}
.w0_c02147{width:892.830000px;}
.x0_c02147{left:0.000000px;}
.xe_c02147{left:117.000000px;}
.xf_c02147{left:161.280000px;}
.x8_c02147{left:440.999856px;}
.x4_c02147{left:445.680576px;}
.xc_c02147{left:451.080000px;}
.x7_c02147{left:455.399604px;}
.x5_c02147{left:461.880144px;}
.x1_c02147{left:463.320000px;}
.xa_c02147{left:483.480360px;}
.x9_c02147{left:492.119496px;}
.x6_c02147{left:493.200576px;}
.xd_c02147{left:506.880360px;}
.x3_c02147{left:511.919892px;}
.x2_c02147{left:526.679604px;}
.xb_c02147{left:569.880036px;}
@media print{
.v0_c02147{vertical-align:0.000000pt;}
.ls17_c02147{letter-spacing:-1.064448pt;}
.lsd_c02147{letter-spacing:-0.688512pt;}
.ls13_c02147{letter-spacing:-0.654720pt;}
.ls10_c02147{letter-spacing:-0.642048pt;}
.ls9_c02147{letter-spacing:-0.544896pt;}
.lsc_c02147{letter-spacing:-0.511104pt;}
.ls18_c02147{letter-spacing:-0.244992pt;}
.ls14_c02147{letter-spacing:-0.240768pt;}
.lsb_c02147{letter-spacing:-0.236544pt;}
.ls11_c02147{letter-spacing:-0.232320pt;}
.ls8_c02147{letter-spacing:-0.215424pt;}
.ls5_c02147{letter-spacing:-0.105600pt;}
.ls16_c02147{letter-spacing:0.000000pt;}
.ls2_c02147{letter-spacing:0.005376pt;}
.ls7_c02147{letter-spacing:0.114048pt;}
.lsf_c02147{letter-spacing:0.451968pt;}
.ls1_c02147{letter-spacing:0.456960pt;}
.ls12_c02147{letter-spacing:0.477312pt;}
.lse_c02147{letter-spacing:0.515328pt;}
.ls15_c02147{letter-spacing:0.528000pt;}
.lsa_c02147{letter-spacing:0.532224pt;}
.ls4_c02147{letter-spacing:0.544896pt;}
.ls0_c02147{letter-spacing:0.578688pt;}
.ls6_c02147{letter-spacing:0.637824pt;}
.ls3_c02147{letter-spacing:0.642048pt;}
.wsb_c02147{word-spacing:-13.896960pt;}
.wsc_c02147{word-spacing:-13.445376pt;}
.wsa_c02147{word-spacing:-11.088000pt;}
.ws6_c02147{word-spacing:-11.075328pt;}
.wse_c02147{word-spacing:-11.037312pt;}
.ws2_c02147{word-spacing:-10.015104pt;}
.ws5_c02147{word-spacing:-9.871488pt;}
.ws18_c02147{word-spacing:-3.198720pt;}
.ws19_c02147{word-spacing:-0.963072pt;}
.ws11_c02147{word-spacing:-0.899712pt;}
.wsf_c02147{word-spacing:-0.865920pt;}
.ws12_c02147{word-spacing:-0.105600pt;}
.ws15_c02147{word-spacing:-0.088704pt;}
.ws13_c02147{word-spacing:-0.084480pt;}
.ws16_c02147{word-spacing:-0.080256pt;}
.ws17_c02147{word-spacing:-0.076032pt;}
.ws10_c02147{word-spacing:0.000000pt;}
.ws14_c02147{word-spacing:0.321024pt;}
.ws1a_c02147{word-spacing:0.743424pt;}
.ws9_c02147{word-spacing:5.892480pt;}
.ws8_c02147{word-spacing:30.966144pt;}
.wsd_c02147{word-spacing:32.659968pt;}
.ws1_c02147{word-spacing:33.563904pt;}
.ws0_c02147{word-spacing:33.796224pt;}
.ws3_c02147{word-spacing:34.860672pt;}
.ws4_c02147{word-spacing:35.468928pt;}
.ws7_c02147{word-spacing:37.357056pt;}
._0_c02147{margin-left:-1.731840pt;}
._2_c02147{width:1.317888pt;}
._7_c02147{width:2.462592pt;}
._5_c02147{width:17.761920pt;}
._6_c02147{width:20.845440pt;}
._4_c02147{width:21.947904pt;}
._1_c02147{width:44.668800pt;}
._3_c02147{width:45.805056pt;}
.fs0_c02147{font-size:42.240000pt;}
.fs1_c02147{font-size:53.760000pt;}
.y0_c02147{bottom:0.000000pt;}
.y11_c02147{bottom:18.560400pt;}
.y1d_c02147{bottom:130.665211pt;}
.y1f_c02147{bottom:165.866875pt;}
.y1e_c02147{bottom:174.507067pt;}
.y1c_c02147{bottom:245.225371pt;}
.y1b_c02147{bottom:317.225563pt;}
.y19_c02147{bottom:361.386427pt;}
.y15_c02147{bottom:377.386939pt;}
.y1a_c02147{bottom:407.786011pt;}
.y18_c02147{bottom:437.226235pt;}
.y17_c02147{bottom:453.226747pt;}
.y14_c02147{bottom:482.666971pt;}
.y16_c02147{bottom:497.386555pt;}
.y13_c02147{bottom:513.387067pt;}
.y21_c02147{bottom:527.786667pt;}
.y22_c02147{bottom:530.347067pt;}
.y20_c02147{bottom:546.027067pt;}
.yc_c02147{bottom:579.945467pt;}
.yb_c02147{bottom:593.385179pt;}
.ye_c02147{bottom:628.586875pt;}
.yd_c02147{bottom:637.227067pt;}
.ya_c02147{bottom:707.945339pt;}
.y9_c02147{bottom:779.945531pt;}
.y7_c02147{bottom:823.786427pt;}
.y3_c02147{bottom:839.786939pt;}
.y8_c02147{bottom:870.505979pt;}
.y6_c02147{bottom:899.946203pt;}
.y5_c02147{bottom:915.946715pt;}
.y2_c02147{bottom:945.386939pt;}
.y4_c02147{bottom:959.786555pt;}
.y1_c02147{bottom:975.787067pt;}
.y10_c02147{bottom:990.506667pt;}
.y12_c02147{bottom:993.067067pt;}
.yf_c02147{bottom:1008.747067pt;}
.h3_c02147{height:28.916250pt;}
.h5_c02147{height:32.640000pt;}
.h4_c02147{height:36.802500pt;}
.h1_c02147{height:37.063125pt;}
.h2_c02147{height:37.166250pt;}
.h7_c02147{height:47.171250pt;}
.h6_c02147{height:47.302500pt;}
.h0_c02147{height:1122.666667pt;}
.w2_c02147{width:351.360000pt;}
.w1_c02147{width:793.333333pt;}
.w0_c02147{width:793.626667pt;}
.x0_c02147{left:0.000000pt;}
.xe_c02147{left:104.000000pt;}
.xf_c02147{left:143.360000pt;}
.x8_c02147{left:391.999872pt;}
.x4_c02147{left:396.160512pt;}
.xc_c02147{left:400.960000pt;}
.x7_c02147{left:404.799648pt;}
.x5_c02147{left:410.560128pt;}
.x1_c02147{left:411.840000pt;}
.xa_c02147{left:429.760320pt;}
.x9_c02147{left:437.439552pt;}
.x6_c02147{left:438.400512pt;}
.xd_c02147{left:450.560320pt;}
.x3_c02147{left:455.039904pt;}
.x2_c02147{left:468.159648pt;}
.xb_c02147{left:506.560032pt;}
}





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

.ir_c02148:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02148{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02148;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02148{font-family:ff1_c02148;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02148;src:url('chunks/assets/font_532b2f52f2425ca04c8a6a02.woff2')format("woff");}.ff2_c02148{font-family:ff2_c02148;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02148;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02148{font-family:ff3_c02148;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02148{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02148{vertical-align:0.000000px;}
.lsd_c02148{letter-spacing:-0.774576px;}
.ls18_c02148{letter-spacing:-0.755568px;}
.ls13_c02148{letter-spacing:-0.736560px;}
.ls10_c02148{letter-spacing:-0.722304px;}
.ls9_c02148{letter-spacing:-0.613008px;}
.lsc_c02148{letter-spacing:-0.574992px;}
.ls14_c02148{letter-spacing:-0.270864px;}
.lsb_c02148{letter-spacing:-0.266112px;}
.ls11_c02148{letter-spacing:-0.261360px;}
.ls8_c02148{letter-spacing:-0.242352px;}
.ls5_c02148{letter-spacing:-0.118800px;}
.ls16_c02148{letter-spacing:0.000000px;}
.ls2_c02148{letter-spacing:0.006048px;}
.ls7_c02148{letter-spacing:0.128304px;}
.ls17_c02148{letter-spacing:0.242352px;}
.lsf_c02148{letter-spacing:0.508464px;}
.ls1_c02148{letter-spacing:0.514080px;}
.ls12_c02148{letter-spacing:0.536976px;}
.lse_c02148{letter-spacing:0.579744px;}
.ls15_c02148{letter-spacing:0.594000px;}
.lsa_c02148{letter-spacing:0.598752px;}
.ls3_c02148{letter-spacing:0.613008px;}
.ls0_c02148{letter-spacing:0.651024px;}
.ls6_c02148{letter-spacing:0.717552px;}
.ls4_c02148{letter-spacing:0.722304px;}
.sc__c02148{text-shadow:none;}
.sc0_c02148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02148{-webkit-text-stroke:0px transparent;}
.sc0_c02148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02148{word-spacing:-15.634080px;}
.wsc_c02148{word-spacing:-15.126048px;}
.wsa_c02148{word-spacing:-12.474000px;}
.ws6_c02148{word-spacing:-12.459744px;}
.wsd_c02148{word-spacing:-12.122352px;}
.ws2_c02148{word-spacing:-11.266992px;}
.wse_c02148{word-spacing:-11.124432px;}
.ws5_c02148{word-spacing:-11.105424px;}
.ws18_c02148{word-spacing:-3.598560px;}
.ws11_c02148{word-spacing:-1.012176px;}
.wsf_c02148{word-spacing:-0.974160px;}
.ws12_c02148{word-spacing:-0.118800px;}
.ws15_c02148{word-spacing:-0.099792px;}
.ws13_c02148{word-spacing:-0.095040px;}
.ws16_c02148{word-spacing:-0.090288px;}
.ws17_c02148{word-spacing:-0.085536px;}
.ws10_c02148{word-spacing:0.000000px;}
.ws14_c02148{word-spacing:0.361152px;}
.ws9_c02148{word-spacing:6.629040px;}
.ws8_c02148{word-spacing:34.836912px;}
.ws1_c02148{word-spacing:37.759392px;}
.ws0_c02148{word-spacing:38.020752px;}
.ws3_c02148{word-spacing:39.218256px;}
.ws4_c02148{word-spacing:39.902544px;}
.ws7_c02148{word-spacing:42.026688px;}
._0_c02148{margin-left:-1.948320px;}
._2_c02148{width:1.482624px;}
._7_c02148{width:3.369168px;}
._5_c02148{width:19.982160px;}
._6_c02148{width:23.451120px;}
._4_c02148{width:24.691392px;}
._1_c02148{width:50.252400px;}
._3_c02148{width:51.530688px;}
.fc0_c02148{color:rgb(0,0,0);}
.fs0_c02148{font-size:47.520000px;}
.fs1_c02148{font-size:60.480000px;}
.y0_c02148{bottom:0.000000px;}
.y11_c02148{bottom:20.880450px;}
.y1e_c02148{bottom:131.878686px;}
.y1d_c02148{bottom:146.998362px;}
.y20_c02148{bottom:186.600234px;}
.y1f_c02148{bottom:196.320450px;}
.y1c_c02148{bottom:275.878542px;}
.y1b_c02148{bottom:356.878758px;}
.y19_c02148{bottom:406.559730px;}
.y15_c02148{bottom:424.560306px;}
.y1a_c02148{bottom:458.759262px;}
.y18_c02148{bottom:491.879514px;}
.y17_c02148{bottom:509.880090px;}
.y14_c02148{bottom:543.000342px;}
.y16_c02148{bottom:559.559874px;}
.y13_c02148{bottom:577.560450px;}
.y22_c02148{bottom:593.760000px;}
.y23_c02148{bottom:596.640450px;}
.y21_c02148{bottom:614.280450px;}
.yc_c02148{bottom:652.438650px;}
.yb_c02148{bottom:667.558326px;}
.ye_c02148{bottom:707.160234px;}
.yd_c02148{bottom:716.880450px;}
.ya_c02148{bottom:796.438506px;}
.y9_c02148{bottom:877.438722px;}
.y7_c02148{bottom:926.759730px;}
.y3_c02148{bottom:944.760306px;}
.y8_c02148{bottom:979.319226px;}
.y6_c02148{bottom:1012.439478px;}
.y5_c02148{bottom:1030.440054px;}
.y2_c02148{bottom:1063.560306px;}
.y4_c02148{bottom:1079.759874px;}
.y1_c02148{bottom:1097.760450px;}
.y10_c02148{bottom:1114.320000px;}
.y12_c02148{bottom:1117.200450px;}
.yf_c02148{bottom:1134.840450px;}
.h3_c02148{height:32.530781px;}
.h5_c02148{height:36.720000px;}
.h4_c02148{height:41.402813px;}
.h1_c02148{height:41.696016px;}
.h2_c02148{height:41.812031px;}
.h7_c02148{height:53.067656px;}
.h6_c02148{height:53.215313px;}
.h0_c02148{height:1263.000000px;}
.w2_c02148{width:395.280000px;}
.w1_c02148{width:892.500000px;}
.w0_c02148{width:892.830000px;}
.x0_c02148{left:0.000000px;}
.xe_c02148{left:117.000000px;}
.xf_c02148{left:161.280000px;}
.x8_c02148{left:440.999856px;}
.x4_c02148{left:445.680576px;}
.xc_c02148{left:451.080000px;}
.x7_c02148{left:455.399604px;}
.x5_c02148{left:461.880144px;}
.x1_c02148{left:463.320000px;}
.xa_c02148{left:483.480360px;}
.x9_c02148{left:492.119496px;}
.x6_c02148{left:493.200576px;}
.xd_c02148{left:506.880360px;}
.x3_c02148{left:511.919892px;}
.x2_c02148{left:526.679604px;}
.xb_c02148{left:569.880036px;}
@media print{
.v0_c02148{vertical-align:0.000000pt;}
.lsd_c02148{letter-spacing:-0.688512pt;}
.ls18_c02148{letter-spacing:-0.671616pt;}
.ls13_c02148{letter-spacing:-0.654720pt;}
.ls10_c02148{letter-spacing:-0.642048pt;}
.ls9_c02148{letter-spacing:-0.544896pt;}
.lsc_c02148{letter-spacing:-0.511104pt;}
.ls14_c02148{letter-spacing:-0.240768pt;}
.lsb_c02148{letter-spacing:-0.236544pt;}
.ls11_c02148{letter-spacing:-0.232320pt;}
.ls8_c02148{letter-spacing:-0.215424pt;}
.ls5_c02148{letter-spacing:-0.105600pt;}
.ls16_c02148{letter-spacing:0.000000pt;}
.ls2_c02148{letter-spacing:0.005376pt;}
.ls7_c02148{letter-spacing:0.114048pt;}
.ls17_c02148{letter-spacing:0.215424pt;}
.lsf_c02148{letter-spacing:0.451968pt;}
.ls1_c02148{letter-spacing:0.456960pt;}
.ls12_c02148{letter-spacing:0.477312pt;}
.lse_c02148{letter-spacing:0.515328pt;}
.ls15_c02148{letter-spacing:0.528000pt;}
.lsa_c02148{letter-spacing:0.532224pt;}
.ls3_c02148{letter-spacing:0.544896pt;}
.ls0_c02148{letter-spacing:0.578688pt;}
.ls6_c02148{letter-spacing:0.637824pt;}
.ls4_c02148{letter-spacing:0.642048pt;}
.wsb_c02148{word-spacing:-13.896960pt;}
.wsc_c02148{word-spacing:-13.445376pt;}
.wsa_c02148{word-spacing:-11.088000pt;}
.ws6_c02148{word-spacing:-11.075328pt;}
.wsd_c02148{word-spacing:-10.775424pt;}
.ws2_c02148{word-spacing:-10.015104pt;}
.wse_c02148{word-spacing:-9.888384pt;}
.ws5_c02148{word-spacing:-9.871488pt;}
.ws18_c02148{word-spacing:-3.198720pt;}
.ws11_c02148{word-spacing:-0.899712pt;}
.wsf_c02148{word-spacing:-0.865920pt;}
.ws12_c02148{word-spacing:-0.105600pt;}
.ws15_c02148{word-spacing:-0.088704pt;}
.ws13_c02148{word-spacing:-0.084480pt;}
.ws16_c02148{word-spacing:-0.080256pt;}
.ws17_c02148{word-spacing:-0.076032pt;}
.ws10_c02148{word-spacing:0.000000pt;}
.ws14_c02148{word-spacing:0.321024pt;}
.ws9_c02148{word-spacing:5.892480pt;}
.ws8_c02148{word-spacing:30.966144pt;}
.ws1_c02148{word-spacing:33.563904pt;}
.ws0_c02148{word-spacing:33.796224pt;}
.ws3_c02148{word-spacing:34.860672pt;}
.ws4_c02148{word-spacing:35.468928pt;}
.ws7_c02148{word-spacing:37.357056pt;}
._0_c02148{margin-left:-1.731840pt;}
._2_c02148{width:1.317888pt;}
._7_c02148{width:2.994816pt;}
._5_c02148{width:17.761920pt;}
._6_c02148{width:20.845440pt;}
._4_c02148{width:21.947904pt;}
._1_c02148{width:44.668800pt;}
._3_c02148{width:45.805056pt;}
.fs0_c02148{font-size:42.240000pt;}
.fs1_c02148{font-size:53.760000pt;}
.y0_c02148{bottom:0.000000pt;}
.y11_c02148{bottom:18.560400pt;}
.y1e_c02148{bottom:117.225499pt;}
.y1d_c02148{bottom:130.665211pt;}
.y20_c02148{bottom:165.866875pt;}
.y1f_c02148{bottom:174.507067pt;}
.y1c_c02148{bottom:245.225371pt;}
.y1b_c02148{bottom:317.225563pt;}
.y19_c02148{bottom:361.386427pt;}
.y15_c02148{bottom:377.386939pt;}
.y1a_c02148{bottom:407.786011pt;}
.y18_c02148{bottom:437.226235pt;}
.y17_c02148{bottom:453.226747pt;}
.y14_c02148{bottom:482.666971pt;}
.y16_c02148{bottom:497.386555pt;}
.y13_c02148{bottom:513.387067pt;}
.y22_c02148{bottom:527.786667pt;}
.y23_c02148{bottom:530.347067pt;}
.y21_c02148{bottom:546.027067pt;}
.yc_c02148{bottom:579.945467pt;}
.yb_c02148{bottom:593.385179pt;}
.ye_c02148{bottom:628.586875pt;}
.yd_c02148{bottom:637.227067pt;}
.ya_c02148{bottom:707.945339pt;}
.y9_c02148{bottom:779.945531pt;}
.y7_c02148{bottom:823.786427pt;}
.y3_c02148{bottom:839.786939pt;}
.y8_c02148{bottom:870.505979pt;}
.y6_c02148{bottom:899.946203pt;}
.y5_c02148{bottom:915.946715pt;}
.y2_c02148{bottom:945.386939pt;}
.y4_c02148{bottom:959.786555pt;}
.y1_c02148{bottom:975.787067pt;}
.y10_c02148{bottom:990.506667pt;}
.y12_c02148{bottom:993.067067pt;}
.yf_c02148{bottom:1008.747067pt;}
.h3_c02148{height:28.916250pt;}
.h5_c02148{height:32.640000pt;}
.h4_c02148{height:36.802500pt;}
.h1_c02148{height:37.063125pt;}
.h2_c02148{height:37.166250pt;}
.h7_c02148{height:47.171250pt;}
.h6_c02148{height:47.302500pt;}
.h0_c02148{height:1122.666667pt;}
.w2_c02148{width:351.360000pt;}
.w1_c02148{width:793.333333pt;}
.w0_c02148{width:793.626667pt;}
.x0_c02148{left:0.000000pt;}
.xe_c02148{left:104.000000pt;}
.xf_c02148{left:143.360000pt;}
.x8_c02148{left:391.999872pt;}
.x4_c02148{left:396.160512pt;}
.xc_c02148{left:400.960000pt;}
.x7_c02148{left:404.799648pt;}
.x5_c02148{left:410.560128pt;}
.x1_c02148{left:411.840000pt;}
.xa_c02148{left:429.760320pt;}
.x9_c02148{left:437.439552pt;}
.x6_c02148{left:438.400512pt;}
.xd_c02148{left:450.560320pt;}
.x3_c02148{left:455.039904pt;}
.x2_c02148{left:468.159648pt;}
.xb_c02148{left:506.560032pt;}
}





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

.ir_c02149:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02149{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02149;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02149{font-family:ff1_c02149;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02149;src:url('chunks/assets/font_4a47799475cd84a52c85db7a.woff2')format("woff");}.ff2_c02149{font-family:ff2_c02149;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02149;src:url('chunks/assets/font_2e8144751526e05effa0d5bb.woff2')format("woff");}.ff3_c02149{font-family:ff3_c02149;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02149{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02149{vertical-align:0.000000px;}
.ls18_c02149{letter-spacing:-0.869616px;}
.lsb_c02149{letter-spacing:-0.746064px;}
.ls13_c02149{letter-spacing:-0.736560px;}
.ls9_c02149{letter-spacing:-0.574992px;}
.ls11_c02149{letter-spacing:-0.399168px;}
.ls14_c02149{letter-spacing:-0.270864px;}
.ls10_c02149{letter-spacing:-0.261360px;}
.ls7_c02149{letter-spacing:-0.242352px;}
.ls5_c02149{letter-spacing:-0.118800px;}
.ls16_c02149{letter-spacing:0.000000px;}
.ls3_c02149{letter-spacing:0.006048px;}
.lsd_c02149{letter-spacing:0.038016px;}
.ls6_c02149{letter-spacing:0.128304px;}
.lse_c02149{letter-spacing:0.237600px;}
.lsc_c02149{letter-spacing:0.508464px;}
.ls2_c02149{letter-spacing:0.514080px;}
.ls12_c02149{letter-spacing:0.536976px;}
.lsa_c02149{letter-spacing:0.579744px;}
.ls15_c02149{letter-spacing:0.594000px;}
.ls8_c02149{letter-spacing:0.598752px;}
.ls4_c02149{letter-spacing:0.613008px;}
.ls17_c02149{letter-spacing:0.665280px;}
.lsf_c02149{letter-spacing:0.689040px;}
.ls0_c02149{letter-spacing:0.717552px;}
.ls1_c02149{letter-spacing:0.722304px;}
.sc__c02149{text-shadow:none;}
.sc0_c02149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02149{-webkit-text-stroke:0px transparent;}
.sc0_c02149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13_c02149{word-spacing:-15.634080px;}
.ws14_c02149{word-spacing:-15.126048px;}
.wsc_c02149{word-spacing:-12.569040px;}
.ws12_c02149{word-spacing:-12.474000px;}
.ws15_c02149{word-spacing:-12.459744px;}
.ws4_c02149{word-spacing:-11.637648px;}
.ws21_c02149{word-spacing:-3.598560px;}
.ws1a_c02149{word-spacing:-1.078704px;}
.ws22_c02149{word-spacing:-1.026432px;}
.ws17_c02149{word-spacing:-0.974160px;}
.ws1c_c02149{word-spacing:-0.399168px;}
.ws19_c02149{word-spacing:-0.118800px;}
.ws1d_c02149{word-spacing:-0.099792px;}
.ws1f_c02149{word-spacing:-0.090288px;}
.ws20_c02149{word-spacing:-0.085536px;}
.ws18_c02149{word-spacing:0.000000px;}
.ws1e_c02149{word-spacing:0.038016px;}
.ws1b_c02149{word-spacing:0.384912px;}
.ws2_c02149{word-spacing:1.330560px;}
.ws11_c02149{word-spacing:6.629040px;}
.wsf_c02149{word-spacing:12.350448px;}
.wsd_c02149{word-spacing:25.294896px;}
.wse_c02149{word-spacing:26.273808px;}
.ws7_c02149{word-spacing:27.994032px;}
.ws10_c02149{word-spacing:34.836912px;}
.ws9_c02149{word-spacing:36.143712px;}
.ws6_c02149{word-spacing:36.742464px;}
.ws1_c02149{word-spacing:37.759392px;}
.ws0_c02149{word-spacing:38.020752px;}
.ws3_c02149{word-spacing:39.218256px;}
.ws5_c02149{word-spacing:39.902544px;}
.ws16_c02149{word-spacing:40.981248px;}
.ws8_c02149{word-spacing:42.026688px;}
.wsa_c02149{word-spacing:49.748688px;}
.wsb_c02149{word-spacing:51.725520px;}
._0_c02149{margin-left:-1.948320px;}
._2_c02149{width:1.482624px;}
._4_c02149{width:4.785264px;}
._c_c02149{width:19.982160px;}
._d_c02149{width:23.451120px;}
._b_c02149{width:24.691392px;}
._a_c02149{width:29.661984px;}
._8_c02149{width:30.921264px;}
._7_c02149{width:39.508128px;}
._5_c02149{width:41.109552px;}
._1_c02149{width:50.252400px;}
._3_c02149{width:51.530688px;}
._9_c02149{width:54.168048px;}
._e_c02149{width:57.684528px;}
._6_c02149{width:65.834208px;}
.fc0_c02149{color:rgb(0,0,0);}
.fs0_c02149{font-size:47.520000px;}
.fs1_c02149{font-size:60.480000px;}
.y0_c02149{bottom:0.000000px;}
.y17_c02149{bottom:20.880450px;}
.yd_c02149{bottom:36.360450px;}
.y24_c02149{bottom:131.878686px;}
.y23_c02149{bottom:146.998362px;}
.y26_c02149{bottom:186.600234px;}
.y25_c02149{bottom:196.320450px;}
.y22_c02149{bottom:275.878542px;}
.y21_c02149{bottom:356.878758px;}
.y1f_c02149{bottom:406.559730px;}
.y1b_c02149{bottom:424.560306px;}
.y20_c02149{bottom:458.759262px;}
.y1e_c02149{bottom:491.879514px;}
.y1d_c02149{bottom:509.880090px;}
.y1a_c02149{bottom:543.000342px;}
.y1c_c02149{bottom:559.559874px;}
.y19_c02149{bottom:577.560450px;}
.y28_c02149{bottom:593.760000px;}
.y29_c02149{bottom:596.640450px;}
.y27_c02149{bottom:614.280450px;}
.y12_c02149{bottom:652.440954px;}
.y11_c02149{bottom:667.560630px;}
.y14_c02149{bottom:707.160234px;}
.y13_c02149{bottom:716.880450px;}
.y10_c02149{bottom:781.321134px;}
.yf_c02149{bottom:796.440810px;}
.yc_c02149{bottom:811.200000px;}
.ye_c02149{bottom:847.560450px;}
.yb_c02149{bottom:862.320234px;}
.ya_c02149{bottom:877.439910px;}
.y8_c02149{bottom:912.000018px;}
.y7_c02149{bottom:926.759730px;}
.y3_c02149{bottom:944.760306px;}
.y9_c02149{bottom:979.320414px;}
.y6_c02149{bottom:1012.439478px;}
.y5_c02149{bottom:1030.440054px;}
.y2_c02149{bottom:1063.560306px;}
.y4_c02149{bottom:1079.759874px;}
.y1_c02149{bottom:1097.760450px;}
.y16_c02149{bottom:1114.320000px;}
.y18_c02149{bottom:1117.200450px;}
.y15_c02149{bottom:1134.840450px;}
.h4_c02149{height:32.530781px;}
.h6_c02149{height:36.720000px;}
.h5_c02149{height:41.402813px;}
.h1_c02149{height:41.696016px;}
.h2_c02149{height:41.812031px;}
.h8_c02149{height:53.067656px;}
.h7_c02149{height:53.215313px;}
.h3_c02149{height:78.840000px;}
.h0_c02149{height:1263.000000px;}
.w2_c02149{width:215.280000px;}
.w3_c02149{width:395.280000px;}
.w1_c02149{width:892.500000px;}
.w0_c02149{width:892.830000px;}
.x0_c02149{left:0.000000px;}
.xf_c02149{left:117.000000px;}
.x10_c02149{left:161.280000px;}
.x9_c02149{left:440.999856px;}
.x4_c02149{left:445.680576px;}
.xd_c02149{left:451.080000px;}
.x7_c02149{left:455.399604px;}
.x5_c02149{left:461.880144px;}
.x1_c02149{left:463.320000px;}
.xc_c02149{left:483.481044px;}
.xa_c02149{left:492.119496px;}
.x6_c02149{left:493.200576px;}
.xe_c02149{left:506.880360px;}
.x3_c02149{left:511.919892px;}
.x2_c02149{left:526.679604px;}
.x8_c02149{left:569.880036px;}
.xb_c02149{left:624.600000px;}
@media print{
.v0_c02149{vertical-align:0.000000pt;}
.ls18_c02149{letter-spacing:-0.772992pt;}
.lsb_c02149{letter-spacing:-0.663168pt;}
.ls13_c02149{letter-spacing:-0.654720pt;}
.ls9_c02149{letter-spacing:-0.511104pt;}
.ls11_c02149{letter-spacing:-0.354816pt;}
.ls14_c02149{letter-spacing:-0.240768pt;}
.ls10_c02149{letter-spacing:-0.232320pt;}
.ls7_c02149{letter-spacing:-0.215424pt;}
.ls5_c02149{letter-spacing:-0.105600pt;}
.ls16_c02149{letter-spacing:0.000000pt;}
.ls3_c02149{letter-spacing:0.005376pt;}
.lsd_c02149{letter-spacing:0.033792pt;}
.ls6_c02149{letter-spacing:0.114048pt;}
.lse_c02149{letter-spacing:0.211200pt;}
.lsc_c02149{letter-spacing:0.451968pt;}
.ls2_c02149{letter-spacing:0.456960pt;}
.ls12_c02149{letter-spacing:0.477312pt;}
.lsa_c02149{letter-spacing:0.515328pt;}
.ls15_c02149{letter-spacing:0.528000pt;}
.ls8_c02149{letter-spacing:0.532224pt;}
.ls4_c02149{letter-spacing:0.544896pt;}
.ls17_c02149{letter-spacing:0.591360pt;}
.lsf_c02149{letter-spacing:0.612480pt;}
.ls0_c02149{letter-spacing:0.637824pt;}
.ls1_c02149{letter-spacing:0.642048pt;}
.ws13_c02149{word-spacing:-13.896960pt;}
.ws14_c02149{word-spacing:-13.445376pt;}
.wsc_c02149{word-spacing:-11.172480pt;}
.ws12_c02149{word-spacing:-11.088000pt;}
.ws15_c02149{word-spacing:-11.075328pt;}
.ws4_c02149{word-spacing:-10.344576pt;}
.ws21_c02149{word-spacing:-3.198720pt;}
.ws1a_c02149{word-spacing:-0.958848pt;}
.ws22_c02149{word-spacing:-0.912384pt;}
.ws17_c02149{word-spacing:-0.865920pt;}
.ws1c_c02149{word-spacing:-0.354816pt;}
.ws19_c02149{word-spacing:-0.105600pt;}
.ws1d_c02149{word-spacing:-0.088704pt;}
.ws1f_c02149{word-spacing:-0.080256pt;}
.ws20_c02149{word-spacing:-0.076032pt;}
.ws18_c02149{word-spacing:0.000000pt;}
.ws1e_c02149{word-spacing:0.033792pt;}
.ws1b_c02149{word-spacing:0.342144pt;}
.ws2_c02149{word-spacing:1.182720pt;}
.ws11_c02149{word-spacing:5.892480pt;}
.wsf_c02149{word-spacing:10.978176pt;}
.wsd_c02149{word-spacing:22.484352pt;}
.wse_c02149{word-spacing:23.354496pt;}
.ws7_c02149{word-spacing:24.883584pt;}
.ws10_c02149{word-spacing:30.966144pt;}
.ws9_c02149{word-spacing:32.127744pt;}
.ws6_c02149{word-spacing:32.659968pt;}
.ws1_c02149{word-spacing:33.563904pt;}
.ws0_c02149{word-spacing:33.796224pt;}
.ws3_c02149{word-spacing:34.860672pt;}
.ws5_c02149{word-spacing:35.468928pt;}
.ws16_c02149{word-spacing:36.427776pt;}
.ws8_c02149{word-spacing:37.357056pt;}
.wsa_c02149{word-spacing:44.221056pt;}
.wsb_c02149{word-spacing:45.978240pt;}
._0_c02149{margin-left:-1.731840pt;}
._2_c02149{width:1.317888pt;}
._4_c02149{width:4.253568pt;}
._c_c02149{width:17.761920pt;}
._d_c02149{width:20.845440pt;}
._b_c02149{width:21.947904pt;}
._a_c02149{width:26.366208pt;}
._8_c02149{width:27.485568pt;}
._7_c02149{width:35.118336pt;}
._5_c02149{width:36.541824pt;}
._1_c02149{width:44.668800pt;}
._3_c02149{width:45.805056pt;}
._9_c02149{width:48.149376pt;}
._e_c02149{width:51.275136pt;}
._6_c02149{width:58.519296pt;}
.fs0_c02149{font-size:42.240000pt;}
.fs1_c02149{font-size:53.760000pt;}
.y0_c02149{bottom:0.000000pt;}
.y17_c02149{bottom:18.560400pt;}
.yd_c02149{bottom:32.320400pt;}
.y24_c02149{bottom:117.225499pt;}
.y23_c02149{bottom:130.665211pt;}
.y26_c02149{bottom:165.866875pt;}
.y25_c02149{bottom:174.507067pt;}
.y22_c02149{bottom:245.225371pt;}
.y21_c02149{bottom:317.225563pt;}
.y1f_c02149{bottom:361.386427pt;}
.y1b_c02149{bottom:377.386939pt;}
.y20_c02149{bottom:407.786011pt;}
.y1e_c02149{bottom:437.226235pt;}
.y1d_c02149{bottom:453.226747pt;}
.y1a_c02149{bottom:482.666971pt;}
.y1c_c02149{bottom:497.386555pt;}
.y19_c02149{bottom:513.387067pt;}
.y28_c02149{bottom:527.786667pt;}
.y29_c02149{bottom:530.347067pt;}
.y27_c02149{bottom:546.027067pt;}
.y12_c02149{bottom:579.947515pt;}
.y11_c02149{bottom:593.387227pt;}
.y14_c02149{bottom:628.586875pt;}
.y13_c02149{bottom:637.227067pt;}
.y10_c02149{bottom:694.507675pt;}
.yf_c02149{bottom:707.947387pt;}
.yc_c02149{bottom:721.066667pt;}
.ye_c02149{bottom:753.387067pt;}
.yb_c02149{bottom:766.506875pt;}
.ya_c02149{bottom:779.946587pt;}
.y8_c02149{bottom:810.666683pt;}
.y7_c02149{bottom:823.786427pt;}
.y3_c02149{bottom:839.786939pt;}
.y9_c02149{bottom:870.507035pt;}
.y6_c02149{bottom:899.946203pt;}
.y5_c02149{bottom:915.946715pt;}
.y2_c02149{bottom:945.386939pt;}
.y4_c02149{bottom:959.786555pt;}
.y1_c02149{bottom:975.787067pt;}
.y16_c02149{bottom:990.506667pt;}
.y18_c02149{bottom:993.067067pt;}
.y15_c02149{bottom:1008.747067pt;}
.h4_c02149{height:28.916250pt;}
.h6_c02149{height:32.640000pt;}
.h5_c02149{height:36.802500pt;}
.h1_c02149{height:37.063125pt;}
.h2_c02149{height:37.166250pt;}
.h8_c02149{height:47.171250pt;}
.h7_c02149{height:47.302500pt;}
.h3_c02149{height:70.080000pt;}
.h0_c02149{height:1122.666667pt;}
.w2_c02149{width:191.360000pt;}
.w3_c02149{width:351.360000pt;}
.w1_c02149{width:793.333333pt;}
.w0_c02149{width:793.626667pt;}
.x0_c02149{left:0.000000pt;}
.xf_c02149{left:104.000000pt;}
.x10_c02149{left:143.360000pt;}
.x9_c02149{left:391.999872pt;}
.x4_c02149{left:396.160512pt;}
.xd_c02149{left:400.960000pt;}
.x7_c02149{left:404.799648pt;}
.x5_c02149{left:410.560128pt;}
.x1_c02149{left:411.840000pt;}
.xc_c02149{left:429.760928pt;}
.xa_c02149{left:437.439552pt;}
.x6_c02149{left:438.400512pt;}
.xe_c02149{left:450.560320pt;}
.x3_c02149{left:455.039904pt;}
.x2_c02149{left:468.159648pt;}
.x8_c02149{left:506.560032pt;}
.xb_c02149{left:555.200000pt;}
}





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

.ir_c02150:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02150{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02150;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02150{font-family:ff1_c02150;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02150;src:url('chunks/assets/font_304464bd0e9ecd929f3dc396.woff2')format("woff");}.ff2_c02150{font-family:ff2_c02150;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02150;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02150{font-family:ff3_c02150;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02150{vertical-align:0.000000px;}
.ls18_c02150{letter-spacing:-0.822096px;}
.ls19_c02150{letter-spacing:-0.798336px;}
.ls16_c02150{letter-spacing:-0.774576px;}
.ls12_c02150{letter-spacing:-0.736560px;}
.lsd_c02150{letter-spacing:-0.731808px;}
.lsa_c02150{letter-spacing:-0.574992px;}
.lsb_c02150{letter-spacing:-0.327888px;}
.ls1b_c02150{letter-spacing:-0.275616px;}
.ls13_c02150{letter-spacing:-0.270864px;}
.ls10_c02150{letter-spacing:-0.261360px;}
.ls8_c02150{letter-spacing:-0.242352px;}
.ls5_c02150{letter-spacing:-0.118800px;}
.ls15_c02150{letter-spacing:0.000000px;}
.ls1_c02150{letter-spacing:0.006048px;}
.lsf_c02150{letter-spacing:0.038016px;}
.ls7_c02150{letter-spacing:0.128304px;}
.lse_c02150{letter-spacing:0.508464px;}
.ls0_c02150{letter-spacing:0.514080px;}
.ls11_c02150{letter-spacing:0.536976px;}
.lsc_c02150{letter-spacing:0.579744px;}
.ls14_c02150{letter-spacing:0.594000px;}
.ls9_c02150{letter-spacing:0.598752px;}
.ls3_c02150{letter-spacing:0.613008px;}
.ls1a_c02150{letter-spacing:0.641520px;}
.ls17_c02150{letter-spacing:0.646272px;}
.ls2_c02150{letter-spacing:0.651024px;}
.ls6_c02150{letter-spacing:0.717552px;}
.ls4_c02150{letter-spacing:0.722304px;}
.sc__c02150{text-shadow:none;}
.sc0_c02150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02150{-webkit-text-stroke:0px transparent;}
.sc0_c02150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02150{word-spacing:-15.634080px;}
.wse_c02150{word-spacing:-15.126048px;}
.wsc_c02150{word-spacing:-12.474000px;}
.ws9_c02150{word-spacing:-12.459744px;}
.ws10_c02150{word-spacing:-12.388464px;}
.ws4_c02150{word-spacing:-11.637648px;}
.wsf_c02150{word-spacing:-11.105424px;}
.ws1c_c02150{word-spacing:-3.598560px;}
.ws1d_c02150{word-spacing:-1.012176px;}
.ws1e_c02150{word-spacing:-1.007424px;}
.ws1f_c02150{word-spacing:-1.002672px;}
.ws14_c02150{word-spacing:-0.974160px;}
.ws18_c02150{word-spacing:-0.399168px;}
.ws16_c02150{word-spacing:-0.118800px;}
.ws19_c02150{word-spacing:-0.099792px;}
.ws1a_c02150{word-spacing:-0.090288px;}
.ws1b_c02150{word-spacing:-0.085536px;}
.ws17_c02150{word-spacing:-0.033264px;}
.ws15_c02150{word-spacing:0.000000px;}
.ws2_c02150{word-spacing:1.330560px;}
.wsb_c02150{word-spacing:6.629040px;}
.ws7_c02150{word-spacing:7.370352px;}
.ws12_c02150{word-spacing:13.310352px;}
.ws13_c02150{word-spacing:20.466864px;}
.wsa_c02150{word-spacing:34.836912px;}
.ws11_c02150{word-spacing:36.143712px;}
.ws6_c02150{word-spacing:36.742464px;}
.ws1_c02150{word-spacing:37.759392px;}
.ws0_c02150{word-spacing:38.020752px;}
.ws3_c02150{word-spacing:39.218256px;}
.ws5_c02150{word-spacing:39.902544px;}
.ws8_c02150{word-spacing:42.026688px;}
._0_c02150{margin-left:-1.948320px;}
._2_c02150{width:1.482624px;}
._4_c02150{width:4.785264px;}
._6_c02150{width:20.243520px;}
._5_c02150{width:24.430032px;}
._7_c02150{width:25.575264px;}
._9_c02150{width:27.181440px;}
._b_c02150{width:30.146688px;}
._8_c02150{width:31.857408px;}
._a_c02150{width:35.160048px;}
._1_c02150{width:50.252400px;}
._3_c02150{width:51.530688px;}
.fc0_c02150{color:rgb(0,0,0);}
.fs0_c02150{font-size:47.520000px;}
.fs1_c02150{font-size:60.480000px;}
.y0_c02150{bottom:0.000000px;}
.y12_c02150{bottom:20.880450px;}
.y20_c02150{bottom:116.759010px;}
.y1f_c02150{bottom:131.878686px;}
.y1e_c02150{bottom:146.998362px;}
.y22_c02150{bottom:186.600234px;}
.y21_c02150{bottom:196.320450px;}
.y1d_c02150{bottom:275.878542px;}
.y1c_c02150{bottom:356.878758px;}
.y1a_c02150{bottom:406.559730px;}
.y16_c02150{bottom:424.560306px;}
.y1b_c02150{bottom:458.759262px;}
.y19_c02150{bottom:491.879514px;}
.y18_c02150{bottom:509.880090px;}
.y15_c02150{bottom:543.000342px;}
.y17_c02150{bottom:559.559874px;}
.y14_c02150{bottom:577.560450px;}
.y24_c02150{bottom:593.760000px;}
.y25_c02150{bottom:596.640450px;}
.y23_c02150{bottom:614.280450px;}
.yd_c02150{bottom:652.439838px;}
.yc_c02150{bottom:667.559514px;}
.yf_c02150{bottom:707.160234px;}
.ye_c02150{bottom:716.880450px;}
.yb_c02150{bottom:796.439694px;}
.ya_c02150{bottom:877.439910px;}
.y8_c02150{bottom:912.000018px;}
.y7_c02150{bottom:926.759730px;}
.y3_c02150{bottom:944.760306px;}
.y9_c02150{bottom:979.320414px;}
.y6_c02150{bottom:1012.439478px;}
.y5_c02150{bottom:1030.440054px;}
.y2_c02150{bottom:1063.560306px;}
.y4_c02150{bottom:1079.759874px;}
.y1_c02150{bottom:1097.760450px;}
.y11_c02150{bottom:1114.320000px;}
.y13_c02150{bottom:1117.200450px;}
.y10_c02150{bottom:1134.840450px;}
.h3_c02150{height:32.530781px;}
.h5_c02150{height:36.720000px;}
.h4_c02150{height:41.402813px;}
.h1_c02150{height:41.696016px;}
.h2_c02150{height:41.812031px;}
.h7_c02150{height:53.067656px;}
.h6_c02150{height:53.215313px;}
.h0_c02150{height:1263.000000px;}
.w2_c02150{width:395.280000px;}
.w1_c02150{width:892.500000px;}
.w0_c02150{width:892.830000px;}
.x0_c02150{left:0.000000px;}
.xe_c02150{left:117.000000px;}
.xf_c02150{left:161.280000px;}
.x9_c02150{left:440.999856px;}
.x4_c02150{left:445.680576px;}
.xc_c02150{left:451.080000px;}
.x7_c02150{left:455.399604px;}
.x5_c02150{left:461.880144px;}
.x1_c02150{left:463.320000px;}
.xb_c02150{left:483.480360px;}
.xa_c02150{left:492.119496px;}
.x6_c02150{left:493.200576px;}
.xd_c02150{left:506.880360px;}
.x3_c02150{left:511.919892px;}
.x2_c02150{left:526.679604px;}
.x8_c02150{left:569.880036px;}
@media print{
.v0_c02150{vertical-align:0.000000pt;}
.ls18_c02150{letter-spacing:-0.730752pt;}
.ls19_c02150{letter-spacing:-0.709632pt;}
.ls16_c02150{letter-spacing:-0.688512pt;}
.ls12_c02150{letter-spacing:-0.654720pt;}
.lsd_c02150{letter-spacing:-0.650496pt;}
.lsa_c02150{letter-spacing:-0.511104pt;}
.lsb_c02150{letter-spacing:-0.291456pt;}
.ls1b_c02150{letter-spacing:-0.244992pt;}
.ls13_c02150{letter-spacing:-0.240768pt;}
.ls10_c02150{letter-spacing:-0.232320pt;}
.ls8_c02150{letter-spacing:-0.215424pt;}
.ls5_c02150{letter-spacing:-0.105600pt;}
.ls15_c02150{letter-spacing:0.000000pt;}
.ls1_c02150{letter-spacing:0.005376pt;}
.lsf_c02150{letter-spacing:0.033792pt;}
.ls7_c02150{letter-spacing:0.114048pt;}
.lse_c02150{letter-spacing:0.451968pt;}
.ls0_c02150{letter-spacing:0.456960pt;}
.ls11_c02150{letter-spacing:0.477312pt;}
.lsc_c02150{letter-spacing:0.515328pt;}
.ls14_c02150{letter-spacing:0.528000pt;}
.ls9_c02150{letter-spacing:0.532224pt;}
.ls3_c02150{letter-spacing:0.544896pt;}
.ls1a_c02150{letter-spacing:0.570240pt;}
.ls17_c02150{letter-spacing:0.574464pt;}
.ls2_c02150{letter-spacing:0.578688pt;}
.ls6_c02150{letter-spacing:0.637824pt;}
.ls4_c02150{letter-spacing:0.642048pt;}
.wsd_c02150{word-spacing:-13.896960pt;}
.wse_c02150{word-spacing:-13.445376pt;}
.wsc_c02150{word-spacing:-11.088000pt;}
.ws9_c02150{word-spacing:-11.075328pt;}
.ws10_c02150{word-spacing:-11.011968pt;}
.ws4_c02150{word-spacing:-10.344576pt;}
.wsf_c02150{word-spacing:-9.871488pt;}
.ws1c_c02150{word-spacing:-3.198720pt;}
.ws1d_c02150{word-spacing:-0.899712pt;}
.ws1e_c02150{word-spacing:-0.895488pt;}
.ws1f_c02150{word-spacing:-0.891264pt;}
.ws14_c02150{word-spacing:-0.865920pt;}
.ws18_c02150{word-spacing:-0.354816pt;}
.ws16_c02150{word-spacing:-0.105600pt;}
.ws19_c02150{word-spacing:-0.088704pt;}
.ws1a_c02150{word-spacing:-0.080256pt;}
.ws1b_c02150{word-spacing:-0.076032pt;}
.ws17_c02150{word-spacing:-0.029568pt;}
.ws15_c02150{word-spacing:0.000000pt;}
.ws2_c02150{word-spacing:1.182720pt;}
.wsb_c02150{word-spacing:5.892480pt;}
.ws7_c02150{word-spacing:6.551424pt;}
.ws12_c02150{word-spacing:11.831424pt;}
.ws13_c02150{word-spacing:18.192768pt;}
.wsa_c02150{word-spacing:30.966144pt;}
.ws11_c02150{word-spacing:32.127744pt;}
.ws6_c02150{word-spacing:32.659968pt;}
.ws1_c02150{word-spacing:33.563904pt;}
.ws0_c02150{word-spacing:33.796224pt;}
.ws3_c02150{word-spacing:34.860672pt;}
.ws5_c02150{word-spacing:35.468928pt;}
.ws8_c02150{word-spacing:37.357056pt;}
._0_c02150{margin-left:-1.731840pt;}
._2_c02150{width:1.317888pt;}
._4_c02150{width:4.253568pt;}
._6_c02150{width:17.994240pt;}
._5_c02150{width:21.715584pt;}
._7_c02150{width:22.733568pt;}
._9_c02150{width:24.161280pt;}
._b_c02150{width:26.797056pt;}
._8_c02150{width:28.317696pt;}
._a_c02150{width:31.253376pt;}
._1_c02150{width:44.668800pt;}
._3_c02150{width:45.805056pt;}
.fs0_c02150{font-size:42.240000pt;}
.fs1_c02150{font-size:53.760000pt;}
.y0_c02150{bottom:0.000000pt;}
.y12_c02150{bottom:18.560400pt;}
.y20_c02150{bottom:103.785787pt;}
.y1f_c02150{bottom:117.225499pt;}
.y1e_c02150{bottom:130.665211pt;}
.y22_c02150{bottom:165.866875pt;}
.y21_c02150{bottom:174.507067pt;}
.y1d_c02150{bottom:245.225371pt;}
.y1c_c02150{bottom:317.225563pt;}
.y1a_c02150{bottom:361.386427pt;}
.y16_c02150{bottom:377.386939pt;}
.y1b_c02150{bottom:407.786011pt;}
.y19_c02150{bottom:437.226235pt;}
.y18_c02150{bottom:453.226747pt;}
.y15_c02150{bottom:482.666971pt;}
.y17_c02150{bottom:497.386555pt;}
.y14_c02150{bottom:513.387067pt;}
.y24_c02150{bottom:527.786667pt;}
.y25_c02150{bottom:530.347067pt;}
.y23_c02150{bottom:546.027067pt;}
.yd_c02150{bottom:579.946523pt;}
.yc_c02150{bottom:593.386235pt;}
.yf_c02150{bottom:628.586875pt;}
.ye_c02150{bottom:637.227067pt;}
.yb_c02150{bottom:707.946395pt;}
.ya_c02150{bottom:779.946587pt;}
.y8_c02150{bottom:810.666683pt;}
.y7_c02150{bottom:823.786427pt;}
.y3_c02150{bottom:839.786939pt;}
.y9_c02150{bottom:870.507035pt;}
.y6_c02150{bottom:899.946203pt;}
.y5_c02150{bottom:915.946715pt;}
.y2_c02150{bottom:945.386939pt;}
.y4_c02150{bottom:959.786555pt;}
.y1_c02150{bottom:975.787067pt;}
.y11_c02150{bottom:990.506667pt;}
.y13_c02150{bottom:993.067067pt;}
.y10_c02150{bottom:1008.747067pt;}
.h3_c02150{height:28.916250pt;}
.h5_c02150{height:32.640000pt;}
.h4_c02150{height:36.802500pt;}
.h1_c02150{height:37.063125pt;}
.h2_c02150{height:37.166250pt;}
.h7_c02150{height:47.171250pt;}
.h6_c02150{height:47.302500pt;}
.h0_c02150{height:1122.666667pt;}
.w2_c02150{width:351.360000pt;}
.w1_c02150{width:793.333333pt;}
.w0_c02150{width:793.626667pt;}
.x0_c02150{left:0.000000pt;}
.xe_c02150{left:104.000000pt;}
.xf_c02150{left:143.360000pt;}
.x9_c02150{left:391.999872pt;}
.x4_c02150{left:396.160512pt;}
.xc_c02150{left:400.960000pt;}
.x7_c02150{left:404.799648pt;}
.x5_c02150{left:410.560128pt;}
.x1_c02150{left:411.840000pt;}
.xb_c02150{left:429.760320pt;}
.xa_c02150{left:437.439552pt;}
.x6_c02150{left:438.400512pt;}
.xd_c02150{left:450.560320pt;}
.x3_c02150{left:455.039904pt;}
.x2_c02150{left:468.159648pt;}
.x8_c02150{left:506.560032pt;}
}





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

.ir_c02151:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02151{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02151;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02151{font-family:ff1_c02151;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02151;src:url('chunks/assets/font_765ef28bd6cd34db7bf9653b.woff2')format("woff");}.ff2_c02151{font-family:ff2_c02151;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02151;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02151{font-family:ff3_c02151;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02151{vertical-align:0.000000px;}
.ls8_c02151{letter-spacing:-0.613008px;}
.lsb_c02151{letter-spacing:-0.574992px;}
.lse_c02151{letter-spacing:-0.441936px;}
.ls14_c02151{letter-spacing:-0.427680px;}
.ls11_c02151{letter-spacing:-0.275616px;}
.lsa_c02151{letter-spacing:-0.261360px;}
.ls7_c02151{letter-spacing:-0.242352px;}
.ls5_c02151{letter-spacing:-0.118800px;}
.ls13_c02151{letter-spacing:0.000000px;}
.ls3_c02151{letter-spacing:0.006048px;}
.ls6_c02151{letter-spacing:0.128304px;}
.lsd_c02151{letter-spacing:0.508464px;}
.ls2_c02151{letter-spacing:0.514080px;}
.ls10_c02151{letter-spacing:0.536976px;}
.lsc_c02151{letter-spacing:0.579744px;}
.ls12_c02151{letter-spacing:0.594000px;}
.ls9_c02151{letter-spacing:0.598752px;}
.ls4_c02151{letter-spacing:0.613008px;}
.lsf_c02151{letter-spacing:0.660528px;}
.ls1_c02151{letter-spacing:0.717552px;}
.ls0_c02151{letter-spacing:0.722304px;}
.sc__c02151{text-shadow:none;}
.sc0_c02151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02151{-webkit-text-stroke:0px transparent;}
.sc0_c02151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02151{word-spacing:-15.634080px;}
.wsc_c02151{word-spacing:-15.126048px;}
.ws2_c02151{word-spacing:-12.602304px;}
.wsa_c02151{word-spacing:-12.474000px;}
.wsd_c02151{word-spacing:-12.459744px;}
.ws9_c02151{word-spacing:-12.416976px;}
.ws3_c02151{word-spacing:-11.266992px;}
.ws16_c02151{word-spacing:-3.598560px;}
.ws12_c02151{word-spacing:-1.078704px;}
.ws14_c02151{word-spacing:-1.021680px;}
.wse_c02151{word-spacing:-0.974160px;}
.ws10_c02151{word-spacing:-0.118800px;}
.ws11_c02151{word-spacing:-0.099792px;}
.ws15_c02151{word-spacing:-0.085536px;}
.wsf_c02151{word-spacing:0.000000px;}
.ws17_c02151{word-spacing:0.066528px;}
.ws13_c02151{word-spacing:0.080784px;}
.ws8_c02151{word-spacing:36.143712px;}
.ws6_c02151{word-spacing:36.742464px;}
.ws1_c02151{word-spacing:37.759392px;}
.ws0_c02151{word-spacing:38.020752px;}
.ws4_c02151{word-spacing:39.218256px;}
.ws5_c02151{word-spacing:39.902544px;}
.ws7_c02151{word-spacing:42.026688px;}
._0_c02151{margin-left:-1.948320px;}
._2_c02151{width:1.482624px;}
._1_c02151{width:50.252400px;}
._3_c02151{width:51.530688px;}
.fc0_c02151{color:rgb(0,0,0);}
.fs0_c02151{font-size:47.520000px;}
.fs1_c02151{font-size:60.480000px;}
.y0_c02151{bottom:0.000000px;}
.y10_c02151{bottom:20.880450px;}
.y1c_c02151{bottom:146.998362px;}
.y1e_c02151{bottom:186.600234px;}
.y1d_c02151{bottom:196.320450px;}
.y1b_c02151{bottom:275.878542px;}
.y1a_c02151{bottom:356.878758px;}
.y18_c02151{bottom:406.559730px;}
.y14_c02151{bottom:424.560306px;}
.y19_c02151{bottom:458.759262px;}
.y17_c02151{bottom:491.879514px;}
.y16_c02151{bottom:509.880090px;}
.y13_c02151{bottom:543.000342px;}
.y15_c02151{bottom:559.559874px;}
.y12_c02151{bottom:577.560450px;}
.y20_c02151{bottom:593.760000px;}
.y21_c02151{bottom:596.640450px;}
.y1f_c02151{bottom:614.280450px;}
.yb_c02151{bottom:667.558326px;}
.yd_c02151{bottom:707.160234px;}
.yc_c02151{bottom:716.880450px;}
.ya_c02151{bottom:796.438506px;}
.y9_c02151{bottom:877.438722px;}
.y7_c02151{bottom:926.759730px;}
.y3_c02151{bottom:944.760306px;}
.y8_c02151{bottom:979.319226px;}
.y6_c02151{bottom:1012.439478px;}
.y5_c02151{bottom:1030.440054px;}
.y2_c02151{bottom:1063.560306px;}
.y4_c02151{bottom:1079.759874px;}
.y1_c02151{bottom:1097.760450px;}
.yf_c02151{bottom:1114.320000px;}
.y11_c02151{bottom:1117.200450px;}
.ye_c02151{bottom:1134.840450px;}
.h3_c02151{height:32.530781px;}
.h5_c02151{height:36.720000px;}
.h4_c02151{height:41.402813px;}
.h1_c02151{height:41.696016px;}
.h2_c02151{height:41.812031px;}
.h7_c02151{height:53.067656px;}
.h6_c02151{height:53.215313px;}
.h0_c02151{height:1263.000000px;}
.w2_c02151{width:395.280000px;}
.w1_c02151{width:892.500000px;}
.w0_c02151{width:892.830000px;}
.x0_c02151{left:0.000000px;}
.xd_c02151{left:117.000000px;}
.xe_c02151{left:161.280000px;}
.x8_c02151{left:440.999856px;}
.x4_c02151{left:445.680576px;}
.xb_c02151{left:451.080000px;}
.x7_c02151{left:455.399604px;}
.x5_c02151{left:461.880144px;}
.x1_c02151{left:463.320000px;}
.xa_c02151{left:483.480360px;}
.x9_c02151{left:492.119496px;}
.x6_c02151{left:493.200576px;}
.xc_c02151{left:506.880360px;}
.x3_c02151{left:511.919892px;}
.x2_c02151{left:526.679604px;}
@media print{
.v0_c02151{vertical-align:0.000000pt;}
.ls8_c02151{letter-spacing:-0.544896pt;}
.lsb_c02151{letter-spacing:-0.511104pt;}
.lse_c02151{letter-spacing:-0.392832pt;}
.ls14_c02151{letter-spacing:-0.380160pt;}
.ls11_c02151{letter-spacing:-0.244992pt;}
.lsa_c02151{letter-spacing:-0.232320pt;}
.ls7_c02151{letter-spacing:-0.215424pt;}
.ls5_c02151{letter-spacing:-0.105600pt;}
.ls13_c02151{letter-spacing:0.000000pt;}
.ls3_c02151{letter-spacing:0.005376pt;}
.ls6_c02151{letter-spacing:0.114048pt;}
.lsd_c02151{letter-spacing:0.451968pt;}
.ls2_c02151{letter-spacing:0.456960pt;}
.ls10_c02151{letter-spacing:0.477312pt;}
.lsc_c02151{letter-spacing:0.515328pt;}
.ls12_c02151{letter-spacing:0.528000pt;}
.ls9_c02151{letter-spacing:0.532224pt;}
.ls4_c02151{letter-spacing:0.544896pt;}
.lsf_c02151{letter-spacing:0.587136pt;}
.ls1_c02151{letter-spacing:0.637824pt;}
.ls0_c02151{letter-spacing:0.642048pt;}
.wsb_c02151{word-spacing:-13.896960pt;}
.wsc_c02151{word-spacing:-13.445376pt;}
.ws2_c02151{word-spacing:-11.202048pt;}
.wsa_c02151{word-spacing:-11.088000pt;}
.wsd_c02151{word-spacing:-11.075328pt;}
.ws9_c02151{word-spacing:-11.037312pt;}
.ws3_c02151{word-spacing:-10.015104pt;}
.ws16_c02151{word-spacing:-3.198720pt;}
.ws12_c02151{word-spacing:-0.958848pt;}
.ws14_c02151{word-spacing:-0.908160pt;}
.wse_c02151{word-spacing:-0.865920pt;}
.ws10_c02151{word-spacing:-0.105600pt;}
.ws11_c02151{word-spacing:-0.088704pt;}
.ws15_c02151{word-spacing:-0.076032pt;}
.wsf_c02151{word-spacing:0.000000pt;}
.ws17_c02151{word-spacing:0.059136pt;}
.ws13_c02151{word-spacing:0.071808pt;}
.ws8_c02151{word-spacing:32.127744pt;}
.ws6_c02151{word-spacing:32.659968pt;}
.ws1_c02151{word-spacing:33.563904pt;}
.ws0_c02151{word-spacing:33.796224pt;}
.ws4_c02151{word-spacing:34.860672pt;}
.ws5_c02151{word-spacing:35.468928pt;}
.ws7_c02151{word-spacing:37.357056pt;}
._0_c02151{margin-left:-1.731840pt;}
._2_c02151{width:1.317888pt;}
._1_c02151{width:44.668800pt;}
._3_c02151{width:45.805056pt;}
.fs0_c02151{font-size:42.240000pt;}
.fs1_c02151{font-size:53.760000pt;}
.y0_c02151{bottom:0.000000pt;}
.y10_c02151{bottom:18.560400pt;}
.y1c_c02151{bottom:130.665211pt;}
.y1e_c02151{bottom:165.866875pt;}
.y1d_c02151{bottom:174.507067pt;}
.y1b_c02151{bottom:245.225371pt;}
.y1a_c02151{bottom:317.225563pt;}
.y18_c02151{bottom:361.386427pt;}
.y14_c02151{bottom:377.386939pt;}
.y19_c02151{bottom:407.786011pt;}
.y17_c02151{bottom:437.226235pt;}
.y16_c02151{bottom:453.226747pt;}
.y13_c02151{bottom:482.666971pt;}
.y15_c02151{bottom:497.386555pt;}
.y12_c02151{bottom:513.387067pt;}
.y20_c02151{bottom:527.786667pt;}
.y21_c02151{bottom:530.347067pt;}
.y1f_c02151{bottom:546.027067pt;}
.yb_c02151{bottom:593.385179pt;}
.yd_c02151{bottom:628.586875pt;}
.yc_c02151{bottom:637.227067pt;}
.ya_c02151{bottom:707.945339pt;}
.y9_c02151{bottom:779.945531pt;}
.y7_c02151{bottom:823.786427pt;}
.y3_c02151{bottom:839.786939pt;}
.y8_c02151{bottom:870.505979pt;}
.y6_c02151{bottom:899.946203pt;}
.y5_c02151{bottom:915.946715pt;}
.y2_c02151{bottom:945.386939pt;}
.y4_c02151{bottom:959.786555pt;}
.y1_c02151{bottom:975.787067pt;}
.yf_c02151{bottom:990.506667pt;}
.y11_c02151{bottom:993.067067pt;}
.ye_c02151{bottom:1008.747067pt;}
.h3_c02151{height:28.916250pt;}
.h5_c02151{height:32.640000pt;}
.h4_c02151{height:36.802500pt;}
.h1_c02151{height:37.063125pt;}
.h2_c02151{height:37.166250pt;}
.h7_c02151{height:47.171250pt;}
.h6_c02151{height:47.302500pt;}
.h0_c02151{height:1122.666667pt;}
.w2_c02151{width:351.360000pt;}
.w1_c02151{width:793.333333pt;}
.w0_c02151{width:793.626667pt;}
.x0_c02151{left:0.000000pt;}
.xd_c02151{left:104.000000pt;}
.xe_c02151{left:143.360000pt;}
.x8_c02151{left:391.999872pt;}
.x4_c02151{left:396.160512pt;}
.xb_c02151{left:400.960000pt;}
.x7_c02151{left:404.799648pt;}
.x5_c02151{left:410.560128pt;}
.x1_c02151{left:411.840000pt;}
.xa_c02151{left:429.760320pt;}
.x9_c02151{left:437.439552pt;}
.x6_c02151{left:438.400512pt;}
.xc_c02151{left:450.560320pt;}
.x3_c02151{left:455.039904pt;}
.x2_c02151{left:468.159648pt;}
}





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

.ir_c02152:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02152{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02152;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02152{font-family:ff1_c02152;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02152;src:url('chunks/assets/font_c75bb841a5b05ff4dcbf2179.woff2')format("woff");}.ff2_c02152{font-family:ff2_c02152;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02152;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02152{font-family:ff3_c02152;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02152{vertical-align:0.000000px;}
.ls14_c02152{letter-spacing:-1.197504px;}
.ls8_c02152{letter-spacing:-0.613008px;}
.lsb_c02152{letter-spacing:-0.574992px;}
.lsf_c02152{letter-spacing:-0.427680px;}
.lsc_c02152{letter-spacing:-0.361152px;}
.ls11_c02152{letter-spacing:-0.275616px;}
.lsa_c02152{letter-spacing:-0.261360px;}
.ls7_c02152{letter-spacing:-0.242352px;}
.ls5_c02152{letter-spacing:-0.118800px;}
.ls13_c02152{letter-spacing:0.000000px;}
.ls1_c02152{letter-spacing:0.006048px;}
.ls6_c02152{letter-spacing:0.128304px;}
.lse_c02152{letter-spacing:0.508464px;}
.ls0_c02152{letter-spacing:0.514080px;}
.ls10_c02152{letter-spacing:0.536976px;}
.lsd_c02152{letter-spacing:0.579744px;}
.ls12_c02152{letter-spacing:0.594000px;}
.ls9_c02152{letter-spacing:0.598752px;}
.ls3_c02152{letter-spacing:0.613008px;}
.ls15_c02152{letter-spacing:0.660528px;}
.ls2_c02152{letter-spacing:0.717552px;}
.ls4_c02152{letter-spacing:0.722304px;}
.sc__c02152{text-shadow:none;}
.sc0_c02152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02152{-webkit-text-stroke:0px transparent;}
.sc0_c02152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02152{word-spacing:-15.634080px;}
.wsb_c02152{word-spacing:-15.126048px;}
.ws9_c02152{word-spacing:-12.474000px;}
.ws7_c02152{word-spacing:-12.459744px;}
.ws8_c02152{word-spacing:-12.416976px;}
.ws2_c02152{word-spacing:-11.266992px;}
.ws13_c02152{word-spacing:-3.598560px;}
.ws14_c02152{word-spacing:-1.078704px;}
.ws16_c02152{word-spacing:-1.021680px;}
.wsd_c02152{word-spacing:-0.974160px;}
.wsf_c02152{word-spacing:-0.118800px;}
.ws10_c02152{word-spacing:-0.099792px;}
.ws12_c02152{word-spacing:-0.085536px;}
.wse_c02152{word-spacing:0.000000px;}
.ws11_c02152{word-spacing:0.066528px;}
.ws15_c02152{word-spacing:0.836352px;}
.wsc_c02152{word-spacing:36.143712px;}
.ws5_c02152{word-spacing:36.742464px;}
.ws1_c02152{word-spacing:37.759392px;}
.ws0_c02152{word-spacing:38.020752px;}
.ws3_c02152{word-spacing:39.218256px;}
.ws4_c02152{word-spacing:39.902544px;}
.ws6_c02152{word-spacing:42.026688px;}
._0_c02152{margin-left:-1.948320px;}
._2_c02152{width:1.482624px;}
._4_c02152{width:2.770416px;}
._1_c02152{width:50.252400px;}
._3_c02152{width:51.530688px;}
.fc0_c02152{color:rgb(0,0,0);}
.fs0_c02152{font-size:47.520000px;}
.fs1_c02152{font-size:60.480000px;}
.y0_c02152{bottom:0.000000px;}
.y10_c02152{bottom:20.880450px;}
.y1c_c02152{bottom:146.998362px;}
.y1e_c02152{bottom:186.600234px;}
.y1d_c02152{bottom:196.320450px;}
.y1b_c02152{bottom:275.878542px;}
.y1a_c02152{bottom:356.878758px;}
.y18_c02152{bottom:406.559730px;}
.y14_c02152{bottom:424.560306px;}
.y19_c02152{bottom:458.759262px;}
.y17_c02152{bottom:491.879514px;}
.y16_c02152{bottom:509.880090px;}
.y13_c02152{bottom:543.000342px;}
.y15_c02152{bottom:559.559874px;}
.y12_c02152{bottom:577.560450px;}
.y20_c02152{bottom:593.760000px;}
.y21_c02152{bottom:596.640450px;}
.y1f_c02152{bottom:614.280450px;}
.yb_c02152{bottom:667.558326px;}
.yd_c02152{bottom:707.160234px;}
.yc_c02152{bottom:716.880450px;}
.ya_c02152{bottom:796.438506px;}
.y9_c02152{bottom:877.438722px;}
.y7_c02152{bottom:926.759730px;}
.y3_c02152{bottom:944.760306px;}
.y8_c02152{bottom:979.319226px;}
.y6_c02152{bottom:1012.439478px;}
.y5_c02152{bottom:1030.440054px;}
.y2_c02152{bottom:1063.560306px;}
.y4_c02152{bottom:1079.759874px;}
.y1_c02152{bottom:1097.760450px;}
.yf_c02152{bottom:1114.320000px;}
.y11_c02152{bottom:1117.200450px;}
.ye_c02152{bottom:1134.840450px;}
.h3_c02152{height:32.530781px;}
.h5_c02152{height:36.720000px;}
.h4_c02152{height:41.402813px;}
.h1_c02152{height:41.696016px;}
.h2_c02152{height:41.812031px;}
.h7_c02152{height:53.067656px;}
.h6_c02152{height:53.215313px;}
.h0_c02152{height:1263.000000px;}
.w2_c02152{width:395.280000px;}
.w1_c02152{width:892.500000px;}
.w0_c02152{width:892.830000px;}
.x0_c02152{left:0.000000px;}
.xd_c02152{left:117.000000px;}
.xe_c02152{left:161.280000px;}
.x8_c02152{left:440.999856px;}
.x4_c02152{left:445.680576px;}
.xb_c02152{left:451.080000px;}
.x7_c02152{left:455.399604px;}
.x5_c02152{left:461.880144px;}
.x1_c02152{left:463.320000px;}
.xa_c02152{left:483.480360px;}
.x9_c02152{left:492.119496px;}
.x6_c02152{left:493.200576px;}
.xc_c02152{left:506.880360px;}
.x3_c02152{left:511.919892px;}
.x2_c02152{left:526.679604px;}
@media print{
.v0_c02152{vertical-align:0.000000pt;}
.ls14_c02152{letter-spacing:-1.064448pt;}
.ls8_c02152{letter-spacing:-0.544896pt;}
.lsb_c02152{letter-spacing:-0.511104pt;}
.lsf_c02152{letter-spacing:-0.380160pt;}
.lsc_c02152{letter-spacing:-0.321024pt;}
.ls11_c02152{letter-spacing:-0.244992pt;}
.lsa_c02152{letter-spacing:-0.232320pt;}
.ls7_c02152{letter-spacing:-0.215424pt;}
.ls5_c02152{letter-spacing:-0.105600pt;}
.ls13_c02152{letter-spacing:0.000000pt;}
.ls1_c02152{letter-spacing:0.005376pt;}
.ls6_c02152{letter-spacing:0.114048pt;}
.lse_c02152{letter-spacing:0.451968pt;}
.ls0_c02152{letter-spacing:0.456960pt;}
.ls10_c02152{letter-spacing:0.477312pt;}
.lsd_c02152{letter-spacing:0.515328pt;}
.ls12_c02152{letter-spacing:0.528000pt;}
.ls9_c02152{letter-spacing:0.532224pt;}
.ls3_c02152{letter-spacing:0.544896pt;}
.ls15_c02152{letter-spacing:0.587136pt;}
.ls2_c02152{letter-spacing:0.637824pt;}
.ls4_c02152{letter-spacing:0.642048pt;}
.wsa_c02152{word-spacing:-13.896960pt;}
.wsb_c02152{word-spacing:-13.445376pt;}
.ws9_c02152{word-spacing:-11.088000pt;}
.ws7_c02152{word-spacing:-11.075328pt;}
.ws8_c02152{word-spacing:-11.037312pt;}
.ws2_c02152{word-spacing:-10.015104pt;}
.ws13_c02152{word-spacing:-3.198720pt;}
.ws14_c02152{word-spacing:-0.958848pt;}
.ws16_c02152{word-spacing:-0.908160pt;}
.wsd_c02152{word-spacing:-0.865920pt;}
.wsf_c02152{word-spacing:-0.105600pt;}
.ws10_c02152{word-spacing:-0.088704pt;}
.ws12_c02152{word-spacing:-0.076032pt;}
.wse_c02152{word-spacing:0.000000pt;}
.ws11_c02152{word-spacing:0.059136pt;}
.ws15_c02152{word-spacing:0.743424pt;}
.wsc_c02152{word-spacing:32.127744pt;}
.ws5_c02152{word-spacing:32.659968pt;}
.ws1_c02152{word-spacing:33.563904pt;}
.ws0_c02152{word-spacing:33.796224pt;}
.ws3_c02152{word-spacing:34.860672pt;}
.ws4_c02152{word-spacing:35.468928pt;}
.ws6_c02152{word-spacing:37.357056pt;}
._0_c02152{margin-left:-1.731840pt;}
._2_c02152{width:1.317888pt;}
._4_c02152{width:2.462592pt;}
._1_c02152{width:44.668800pt;}
._3_c02152{width:45.805056pt;}
.fs0_c02152{font-size:42.240000pt;}
.fs1_c02152{font-size:53.760000pt;}
.y0_c02152{bottom:0.000000pt;}
.y10_c02152{bottom:18.560400pt;}
.y1c_c02152{bottom:130.665211pt;}
.y1e_c02152{bottom:165.866875pt;}
.y1d_c02152{bottom:174.507067pt;}
.y1b_c02152{bottom:245.225371pt;}
.y1a_c02152{bottom:317.225563pt;}
.y18_c02152{bottom:361.386427pt;}
.y14_c02152{bottom:377.386939pt;}
.y19_c02152{bottom:407.786011pt;}
.y17_c02152{bottom:437.226235pt;}
.y16_c02152{bottom:453.226747pt;}
.y13_c02152{bottom:482.666971pt;}
.y15_c02152{bottom:497.386555pt;}
.y12_c02152{bottom:513.387067pt;}
.y20_c02152{bottom:527.786667pt;}
.y21_c02152{bottom:530.347067pt;}
.y1f_c02152{bottom:546.027067pt;}
.yb_c02152{bottom:593.385179pt;}
.yd_c02152{bottom:628.586875pt;}
.yc_c02152{bottom:637.227067pt;}
.ya_c02152{bottom:707.945339pt;}
.y9_c02152{bottom:779.945531pt;}
.y7_c02152{bottom:823.786427pt;}
.y3_c02152{bottom:839.786939pt;}
.y8_c02152{bottom:870.505979pt;}
.y6_c02152{bottom:899.946203pt;}
.y5_c02152{bottom:915.946715pt;}
.y2_c02152{bottom:945.386939pt;}
.y4_c02152{bottom:959.786555pt;}
.y1_c02152{bottom:975.787067pt;}
.yf_c02152{bottom:990.506667pt;}
.y11_c02152{bottom:993.067067pt;}
.ye_c02152{bottom:1008.747067pt;}
.h3_c02152{height:28.916250pt;}
.h5_c02152{height:32.640000pt;}
.h4_c02152{height:36.802500pt;}
.h1_c02152{height:37.063125pt;}
.h2_c02152{height:37.166250pt;}
.h7_c02152{height:47.171250pt;}
.h6_c02152{height:47.302500pt;}
.h0_c02152{height:1122.666667pt;}
.w2_c02152{width:351.360000pt;}
.w1_c02152{width:793.333333pt;}
.w0_c02152{width:793.626667pt;}
.x0_c02152{left:0.000000pt;}
.xd_c02152{left:104.000000pt;}
.xe_c02152{left:143.360000pt;}
.x8_c02152{left:391.999872pt;}
.x4_c02152{left:396.160512pt;}
.xb_c02152{left:400.960000pt;}
.x7_c02152{left:404.799648pt;}
.x5_c02152{left:410.560128pt;}
.x1_c02152{left:411.840000pt;}
.xa_c02152{left:429.760320pt;}
.x9_c02152{left:437.439552pt;}
.x6_c02152{left:438.400512pt;}
.xc_c02152{left:450.560320pt;}
.x3_c02152{left:455.039904pt;}
.x2_c02152{left:468.159648pt;}
}





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

.ir_c02153:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02153{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02153;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02153{font-family:ff1_c02153;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02153;src:url('chunks/assets/font_07a59a83490a7ea616d9409b.woff2')format("woff");}.ff2_c02153{font-family:ff2_c02153;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02153;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02153{font-family:ff3_c02153;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02153{vertical-align:0.000000px;}
.ls10_c02153{letter-spacing:-0.793584px;}
.lsd_c02153{letter-spacing:-0.774576px;}
.ls13_c02153{letter-spacing:-0.736560px;}
.ls9_c02153{letter-spacing:-0.613008px;}
.lsc_c02153{letter-spacing:-0.574992px;}
.lsb_c02153{letter-spacing:-0.275616px;}
.ls14_c02153{letter-spacing:-0.270864px;}
.ls11_c02153{letter-spacing:-0.261360px;}
.ls8_c02153{letter-spacing:-0.242352px;}
.ls6_c02153{letter-spacing:-0.118800px;}
.ls16_c02153{letter-spacing:0.000000px;}
.ls2_c02153{letter-spacing:0.006048px;}
.ls7_c02153{letter-spacing:0.128304px;}
.ls17_c02153{letter-spacing:0.242352px;}
.lsf_c02153{letter-spacing:0.508464px;}
.ls1_c02153{letter-spacing:0.514080px;}
.ls12_c02153{letter-spacing:0.536976px;}
.lse_c02153{letter-spacing:0.579744px;}
.ls15_c02153{letter-spacing:0.594000px;}
.lsa_c02153{letter-spacing:0.598752px;}
.ls4_c02153{letter-spacing:0.613008px;}
.ls0_c02153{letter-spacing:0.651024px;}
.ls18_c02153{letter-spacing:0.660528px;}
.ls3_c02153{letter-spacing:0.717552px;}
.ls5_c02153{letter-spacing:0.722304px;}
.sc__c02153{text-shadow:none;}
.sc0_c02153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02153{-webkit-text-stroke:0px transparent;}
.sc0_c02153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02153{word-spacing:-15.634080px;}
.wsc_c02153{word-spacing:-15.126048px;}
.wsa_c02153{word-spacing:-12.474000px;}
.ws6_c02153{word-spacing:-12.459744px;}
.wsf_c02153{word-spacing:-12.416976px;}
.ws2_c02153{word-spacing:-11.266992px;}
.ws5_c02153{word-spacing:-11.105424px;}
.ws18_c02153{word-spacing:-3.598560px;}
.ws19_c02153{word-spacing:-1.078704px;}
.ws1a_c02153{word-spacing:-1.021680px;}
.ws12_c02153{word-spacing:-1.012176px;}
.ws10_c02153{word-spacing:-0.974160px;}
.ws13_c02153{word-spacing:-0.118800px;}
.ws16_c02153{word-spacing:-0.099792px;}
.ws17_c02153{word-spacing:-0.090288px;}
.ws14_c02153{word-spacing:-0.085536px;}
.ws11_c02153{word-spacing:0.000000px;}
.ws15_c02153{word-spacing:0.432432px;}
.ws9_c02153{word-spacing:6.629040px;}
.ws8_c02153{word-spacing:34.836912px;}
.wse_c02153{word-spacing:36.143712px;}
.wsd_c02153{word-spacing:36.742464px;}
.ws1_c02153{word-spacing:37.759392px;}
.ws0_c02153{word-spacing:38.020752px;}
.ws3_c02153{word-spacing:39.218256px;}
.ws4_c02153{word-spacing:39.902544px;}
.ws7_c02153{word-spacing:42.026688px;}
._0_c02153{margin-left:-1.948320px;}
._2_c02153{width:1.482624px;}
._5_c02153{width:19.982160px;}
._6_c02153{width:23.451120px;}
._4_c02153{width:24.691392px;}
._1_c02153{width:50.252400px;}
._3_c02153{width:51.530688px;}
.fc0_c02153{color:rgb(0,0,0);}
.fs0_c02153{font-size:47.520000px;}
.fs1_c02153{font-size:60.480000px;}
.y0_c02153{bottom:0.000000px;}
.y11_c02153{bottom:20.880450px;}
.y1d_c02153{bottom:146.998362px;}
.y1f_c02153{bottom:186.600234px;}
.y1e_c02153{bottom:196.320450px;}
.y1c_c02153{bottom:275.878542px;}
.y1b_c02153{bottom:356.878758px;}
.y19_c02153{bottom:406.559730px;}
.y15_c02153{bottom:424.560306px;}
.y1a_c02153{bottom:458.759262px;}
.y18_c02153{bottom:491.879514px;}
.y17_c02153{bottom:509.880090px;}
.y14_c02153{bottom:543.000342px;}
.y16_c02153{bottom:559.559874px;}
.y13_c02153{bottom:577.560450px;}
.y21_c02153{bottom:593.760000px;}
.y22_c02153{bottom:596.640450px;}
.y20_c02153{bottom:614.280450px;}
.yc_c02153{bottom:652.438650px;}
.yb_c02153{bottom:667.558326px;}
.ye_c02153{bottom:707.160234px;}
.yd_c02153{bottom:716.880450px;}
.ya_c02153{bottom:796.438506px;}
.y9_c02153{bottom:877.438722px;}
.y7_c02153{bottom:926.759730px;}
.y3_c02153{bottom:944.760306px;}
.y8_c02153{bottom:979.319226px;}
.y6_c02153{bottom:1012.439478px;}
.y5_c02153{bottom:1030.440054px;}
.y2_c02153{bottom:1063.560306px;}
.y4_c02153{bottom:1079.759874px;}
.y1_c02153{bottom:1097.760450px;}
.y10_c02153{bottom:1114.320000px;}
.y12_c02153{bottom:1117.200450px;}
.yf_c02153{bottom:1134.840450px;}
.h3_c02153{height:32.530781px;}
.h5_c02153{height:36.720000px;}
.h4_c02153{height:41.402813px;}
.h1_c02153{height:41.696016px;}
.h2_c02153{height:41.812031px;}
.h7_c02153{height:53.067656px;}
.h6_c02153{height:53.215313px;}
.h0_c02153{height:1263.000000px;}
.w2_c02153{width:395.280000px;}
.w1_c02153{width:892.500000px;}
.w0_c02153{width:892.830000px;}
.x0_c02153{left:0.000000px;}
.xe_c02153{left:117.000000px;}
.xf_c02153{left:161.280000px;}
.x8_c02153{left:440.999856px;}
.x4_c02153{left:445.680576px;}
.xc_c02153{left:451.080000px;}
.x7_c02153{left:455.399604px;}
.x5_c02153{left:461.880144px;}
.x1_c02153{left:463.320000px;}
.xa_c02153{left:483.480360px;}
.x9_c02153{left:492.119496px;}
.x6_c02153{left:493.200576px;}
.xd_c02153{left:506.880360px;}
.x3_c02153{left:511.919892px;}
.x2_c02153{left:526.679604px;}
.xb_c02153{left:569.880036px;}
@media print{
.v0_c02153{vertical-align:0.000000pt;}
.ls10_c02153{letter-spacing:-0.705408pt;}
.lsd_c02153{letter-spacing:-0.688512pt;}
.ls13_c02153{letter-spacing:-0.654720pt;}
.ls9_c02153{letter-spacing:-0.544896pt;}
.lsc_c02153{letter-spacing:-0.511104pt;}
.lsb_c02153{letter-spacing:-0.244992pt;}
.ls14_c02153{letter-spacing:-0.240768pt;}
.ls11_c02153{letter-spacing:-0.232320pt;}
.ls8_c02153{letter-spacing:-0.215424pt;}
.ls6_c02153{letter-spacing:-0.105600pt;}
.ls16_c02153{letter-spacing:0.000000pt;}
.ls2_c02153{letter-spacing:0.005376pt;}
.ls7_c02153{letter-spacing:0.114048pt;}
.ls17_c02153{letter-spacing:0.215424pt;}
.lsf_c02153{letter-spacing:0.451968pt;}
.ls1_c02153{letter-spacing:0.456960pt;}
.ls12_c02153{letter-spacing:0.477312pt;}
.lse_c02153{letter-spacing:0.515328pt;}
.ls15_c02153{letter-spacing:0.528000pt;}
.lsa_c02153{letter-spacing:0.532224pt;}
.ls4_c02153{letter-spacing:0.544896pt;}
.ls0_c02153{letter-spacing:0.578688pt;}
.ls18_c02153{letter-spacing:0.587136pt;}
.ls3_c02153{letter-spacing:0.637824pt;}
.ls5_c02153{letter-spacing:0.642048pt;}
.wsb_c02153{word-spacing:-13.896960pt;}
.wsc_c02153{word-spacing:-13.445376pt;}
.wsa_c02153{word-spacing:-11.088000pt;}
.ws6_c02153{word-spacing:-11.075328pt;}
.wsf_c02153{word-spacing:-11.037312pt;}
.ws2_c02153{word-spacing:-10.015104pt;}
.ws5_c02153{word-spacing:-9.871488pt;}
.ws18_c02153{word-spacing:-3.198720pt;}
.ws19_c02153{word-spacing:-0.958848pt;}
.ws1a_c02153{word-spacing:-0.908160pt;}
.ws12_c02153{word-spacing:-0.899712pt;}
.ws10_c02153{word-spacing:-0.865920pt;}
.ws13_c02153{word-spacing:-0.105600pt;}
.ws16_c02153{word-spacing:-0.088704pt;}
.ws17_c02153{word-spacing:-0.080256pt;}
.ws14_c02153{word-spacing:-0.076032pt;}
.ws11_c02153{word-spacing:0.000000pt;}
.ws15_c02153{word-spacing:0.384384pt;}
.ws9_c02153{word-spacing:5.892480pt;}
.ws8_c02153{word-spacing:30.966144pt;}
.wse_c02153{word-spacing:32.127744pt;}
.wsd_c02153{word-spacing:32.659968pt;}
.ws1_c02153{word-spacing:33.563904pt;}
.ws0_c02153{word-spacing:33.796224pt;}
.ws3_c02153{word-spacing:34.860672pt;}
.ws4_c02153{word-spacing:35.468928pt;}
.ws7_c02153{word-spacing:37.357056pt;}
._0_c02153{margin-left:-1.731840pt;}
._2_c02153{width:1.317888pt;}
._5_c02153{width:17.761920pt;}
._6_c02153{width:20.845440pt;}
._4_c02153{width:21.947904pt;}
._1_c02153{width:44.668800pt;}
._3_c02153{width:45.805056pt;}
.fs0_c02153{font-size:42.240000pt;}
.fs1_c02153{font-size:53.760000pt;}
.y0_c02153{bottom:0.000000pt;}
.y11_c02153{bottom:18.560400pt;}
.y1d_c02153{bottom:130.665211pt;}
.y1f_c02153{bottom:165.866875pt;}
.y1e_c02153{bottom:174.507067pt;}
.y1c_c02153{bottom:245.225371pt;}
.y1b_c02153{bottom:317.225563pt;}
.y19_c02153{bottom:361.386427pt;}
.y15_c02153{bottom:377.386939pt;}
.y1a_c02153{bottom:407.786011pt;}
.y18_c02153{bottom:437.226235pt;}
.y17_c02153{bottom:453.226747pt;}
.y14_c02153{bottom:482.666971pt;}
.y16_c02153{bottom:497.386555pt;}
.y13_c02153{bottom:513.387067pt;}
.y21_c02153{bottom:527.786667pt;}
.y22_c02153{bottom:530.347067pt;}
.y20_c02153{bottom:546.027067pt;}
.yc_c02153{bottom:579.945467pt;}
.yb_c02153{bottom:593.385179pt;}
.ye_c02153{bottom:628.586875pt;}
.yd_c02153{bottom:637.227067pt;}
.ya_c02153{bottom:707.945339pt;}
.y9_c02153{bottom:779.945531pt;}
.y7_c02153{bottom:823.786427pt;}
.y3_c02153{bottom:839.786939pt;}
.y8_c02153{bottom:870.505979pt;}
.y6_c02153{bottom:899.946203pt;}
.y5_c02153{bottom:915.946715pt;}
.y2_c02153{bottom:945.386939pt;}
.y4_c02153{bottom:959.786555pt;}
.y1_c02153{bottom:975.787067pt;}
.y10_c02153{bottom:990.506667pt;}
.y12_c02153{bottom:993.067067pt;}
.yf_c02153{bottom:1008.747067pt;}
.h3_c02153{height:28.916250pt;}
.h5_c02153{height:32.640000pt;}
.h4_c02153{height:36.802500pt;}
.h1_c02153{height:37.063125pt;}
.h2_c02153{height:37.166250pt;}
.h7_c02153{height:47.171250pt;}
.h6_c02153{height:47.302500pt;}
.h0_c02153{height:1122.666667pt;}
.w2_c02153{width:351.360000pt;}
.w1_c02153{width:793.333333pt;}
.w0_c02153{width:793.626667pt;}
.x0_c02153{left:0.000000pt;}
.xe_c02153{left:104.000000pt;}
.xf_c02153{left:143.360000pt;}
.x8_c02153{left:391.999872pt;}
.x4_c02153{left:396.160512pt;}
.xc_c02153{left:400.960000pt;}
.x7_c02153{left:404.799648pt;}
.x5_c02153{left:410.560128pt;}
.x1_c02153{left:411.840000pt;}
.xa_c02153{left:429.760320pt;}
.x9_c02153{left:437.439552pt;}
.x6_c02153{left:438.400512pt;}
.xd_c02153{left:450.560320pt;}
.x3_c02153{left:455.039904pt;}
.x2_c02153{left:468.159648pt;}
.xb_c02153{left:506.560032pt;}
}





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

.ir_c02154:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02154{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02154;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02154{font-family:ff1_c02154;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02154;src:url('chunks/assets/font_7cbf15e853c4c58e7a55cd4c.woff2')format("woff");}.ff2_c02154{font-family:ff2_c02154;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02154;src:url('chunks/assets/font_cdb9a266014a0a045eba588e.woff2')format("woff");}.ff3_c02154{font-family:ff3_c02154;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02154{vertical-align:0.000000px;}
.lsf_c02154{letter-spacing:-0.793584px;}
.ls9_c02154{letter-spacing:-0.613008px;}
.lsc_c02154{letter-spacing:-0.574992px;}
.ls16_c02154{letter-spacing:-0.427680px;}
.ls11_c02154{letter-spacing:-0.380160px;}
.ls13_c02154{letter-spacing:-0.275616px;}
.lsb_c02154{letter-spacing:-0.266112px;}
.ls10_c02154{letter-spacing:-0.261360px;}
.ls8_c02154{letter-spacing:-0.242352px;}
.ls6_c02154{letter-spacing:-0.228096px;}
.ls5_c02154{letter-spacing:-0.118800px;}
.ls15_c02154{letter-spacing:0.000000px;}
.ls3_c02154{letter-spacing:0.006048px;}
.ls7_c02154{letter-spacing:0.128304px;}
.lse_c02154{letter-spacing:0.508464px;}
.ls2_c02154{letter-spacing:0.514080px;}
.ls12_c02154{letter-spacing:0.536976px;}
.lsd_c02154{letter-spacing:0.579744px;}
.ls14_c02154{letter-spacing:0.594000px;}
.lsa_c02154{letter-spacing:0.598752px;}
.ls4_c02154{letter-spacing:0.613008px;}
.ls0_c02154{letter-spacing:0.717552px;}
.ls1_c02154{letter-spacing:0.722304px;}
.sc__c02154{text-shadow:none;}
.sc0_c02154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02154{-webkit-text-stroke:0px transparent;}
.sc0_c02154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02154{word-spacing:-15.634080px;}
.wsb_c02154{word-spacing:-15.126048px;}
.ws9_c02154{word-spacing:-12.474000px;}
.ws6_c02154{word-spacing:-12.459744px;}
.ws8_c02154{word-spacing:-12.416976px;}
.ws0_c02154{word-spacing:-11.761200px;}
.ws1_c02154{word-spacing:-11.651904px;}
.ws3_c02154{word-spacing:-11.266992px;}
.ws18_c02154{word-spacing:-3.598560px;}
.ws14_c02154{word-spacing:-1.083456px;}
.ws12_c02154{word-spacing:-1.078704px;}
.wse_c02154{word-spacing:-0.974160px;}
.ws10_c02154{word-spacing:-0.118800px;}
.ws15_c02154{word-spacing:-0.099792px;}
.ws11_c02154{word-spacing:-0.095040px;}
.ws17_c02154{word-spacing:-0.085536px;}
.wsf_c02154{word-spacing:0.000000px;}
.ws16_c02154{word-spacing:0.019008px;}
.ws19_c02154{word-spacing:0.066528px;}
.ws13_c02154{word-spacing:0.432432px;}
.wsd_c02154{word-spacing:36.742464px;}
.ws2_c02154{word-spacing:37.759392px;}
.wsc_c02154{word-spacing:38.020752px;}
.ws4_c02154{word-spacing:39.218256px;}
.ws5_c02154{word-spacing:39.902544px;}
.ws7_c02154{word-spacing:42.026688px;}
._0_c02154{margin-left:-1.948320px;}
._2_c02154{width:1.406592px;}
._1_c02154{width:50.252400px;}
._3_c02154{width:51.834816px;}
.fc0_c02154{color:rgb(0,0,0);}
.fs0_c02154{font-size:47.520000px;}
.fs1_c02154{font-size:60.480000px;}
.y0_c02154{bottom:0.000000px;}
.y4_c02154{bottom:18.360450px;}
.y15_c02154{bottom:20.880450px;}
.yd_c02154{bottom:66.240450px;}
.y21_c02154{bottom:146.998362px;}
.y23_c02154{bottom:186.600234px;}
.y22_c02154{bottom:196.320450px;}
.y20_c02154{bottom:275.878542px;}
.y1f_c02154{bottom:356.878758px;}
.y1d_c02154{bottom:406.559730px;}
.y19_c02154{bottom:424.560306px;}
.y1e_c02154{bottom:458.759262px;}
.y1c_c02154{bottom:491.879514px;}
.y1b_c02154{bottom:509.880090px;}
.y18_c02154{bottom:543.000342px;}
.y1a_c02154{bottom:559.559874px;}
.y17_c02154{bottom:577.560450px;}
.y25_c02154{bottom:593.760000px;}
.y26_c02154{bottom:596.640450px;}
.y24_c02154{bottom:614.280450px;}
.y10_c02154{bottom:667.560054px;}
.y12_c02154{bottom:707.160234px;}
.y11_c02154{bottom:716.880450px;}
.yf_c02154{bottom:796.440234px;}
.yc_c02154{bottom:811.200000px;}
.yb_c02154{bottom:877.438866px;}
.ye_c02154{bottom:877.440450px;}
.y9_c02154{bottom:926.759874px;}
.y5_c02154{bottom:944.760450px;}
.ya_c02154{bottom:979.319370px;}
.y8_c02154{bottom:1012.439622px;}
.y7_c02154{bottom:1030.440198px;}
.y3_c02154{bottom:1045.200000px;}
.y2_c02154{bottom:1063.560306px;}
.y6_c02154{bottom:1079.760018px;}
.y1_c02154{bottom:1097.760450px;}
.y14_c02154{bottom:1114.320000px;}
.y16_c02154{bottom:1117.200450px;}
.y13_c02154{bottom:1134.840450px;}
.h3_c02154{height:29.520000px;}
.h2_c02154{height:32.530781px;}
.h7_c02154{height:36.720000px;}
.h6_c02154{height:41.402813px;}
.h1_c02154{height:41.696016px;}
.h4_c02154{height:41.812031px;}
.h9_c02154{height:53.067656px;}
.h8_c02154{height:53.215313px;}
.h5_c02154{height:78.840000px;}
.h0_c02154{height:1263.000000px;}
.w2_c02154{width:215.280000px;}
.w3_c02154{width:395.280000px;}
.w1_c02154{width:892.500000px;}
.w0_c02154{width:892.830000px;}
.x0_c02154{left:0.000000px;}
.xf_c02154{left:117.000000px;}
.x10_c02154{left:161.280000px;}
.x9_c02154{left:440.999964px;}
.x5_c02154{left:445.680684px;}
.xd_c02154{left:451.080000px;}
.x8_c02154{left:455.399712px;}
.x6_c02154{left:461.880252px;}
.x1_c02154{left:463.320000px;}
.xc_c02154{left:483.480108px;}
.xa_c02154{left:492.119604px;}
.x7_c02154{left:493.200684px;}
.xe_c02154{left:506.880360px;}
.x4_c02154{left:511.920000px;}
.x2_c02154{left:526.679604px;}
.x3_c02154{left:569.520000px;}
.xb_c02154{left:650.880000px;}
@media print{
.v0_c02154{vertical-align:0.000000pt;}
.lsf_c02154{letter-spacing:-0.705408pt;}
.ls9_c02154{letter-spacing:-0.544896pt;}
.lsc_c02154{letter-spacing:-0.511104pt;}
.ls16_c02154{letter-spacing:-0.380160pt;}
.ls11_c02154{letter-spacing:-0.337920pt;}
.ls13_c02154{letter-spacing:-0.244992pt;}
.lsb_c02154{letter-spacing:-0.236544pt;}
.ls10_c02154{letter-spacing:-0.232320pt;}
.ls8_c02154{letter-spacing:-0.215424pt;}
.ls6_c02154{letter-spacing:-0.202752pt;}
.ls5_c02154{letter-spacing:-0.105600pt;}
.ls15_c02154{letter-spacing:0.000000pt;}
.ls3_c02154{letter-spacing:0.005376pt;}
.ls7_c02154{letter-spacing:0.114048pt;}
.lse_c02154{letter-spacing:0.451968pt;}
.ls2_c02154{letter-spacing:0.456960pt;}
.ls12_c02154{letter-spacing:0.477312pt;}
.lsd_c02154{letter-spacing:0.515328pt;}
.ls14_c02154{letter-spacing:0.528000pt;}
.lsa_c02154{letter-spacing:0.532224pt;}
.ls4_c02154{letter-spacing:0.544896pt;}
.ls0_c02154{letter-spacing:0.637824pt;}
.ls1_c02154{letter-spacing:0.642048pt;}
.wsa_c02154{word-spacing:-13.896960pt;}
.wsb_c02154{word-spacing:-13.445376pt;}
.ws9_c02154{word-spacing:-11.088000pt;}
.ws6_c02154{word-spacing:-11.075328pt;}
.ws8_c02154{word-spacing:-11.037312pt;}
.ws0_c02154{word-spacing:-10.454400pt;}
.ws1_c02154{word-spacing:-10.357248pt;}
.ws3_c02154{word-spacing:-10.015104pt;}
.ws18_c02154{word-spacing:-3.198720pt;}
.ws14_c02154{word-spacing:-0.963072pt;}
.ws12_c02154{word-spacing:-0.958848pt;}
.wse_c02154{word-spacing:-0.865920pt;}
.ws10_c02154{word-spacing:-0.105600pt;}
.ws15_c02154{word-spacing:-0.088704pt;}
.ws11_c02154{word-spacing:-0.084480pt;}
.ws17_c02154{word-spacing:-0.076032pt;}
.wsf_c02154{word-spacing:0.000000pt;}
.ws16_c02154{word-spacing:0.016896pt;}
.ws19_c02154{word-spacing:0.059136pt;}
.ws13_c02154{word-spacing:0.384384pt;}
.wsd_c02154{word-spacing:32.659968pt;}
.ws2_c02154{word-spacing:33.563904pt;}
.wsc_c02154{word-spacing:33.796224pt;}
.ws4_c02154{word-spacing:34.860672pt;}
.ws5_c02154{word-spacing:35.468928pt;}
.ws7_c02154{word-spacing:37.357056pt;}
._0_c02154{margin-left:-1.731840pt;}
._2_c02154{width:1.250304pt;}
._1_c02154{width:44.668800pt;}
._3_c02154{width:46.075392pt;}
.fs0_c02154{font-size:42.240000pt;}
.fs1_c02154{font-size:53.760000pt;}
.y0_c02154{bottom:0.000000pt;}
.y4_c02154{bottom:16.320400pt;}
.y15_c02154{bottom:18.560400pt;}
.yd_c02154{bottom:58.880400pt;}
.y21_c02154{bottom:130.665211pt;}
.y23_c02154{bottom:165.866875pt;}
.y22_c02154{bottom:174.507067pt;}
.y20_c02154{bottom:245.225371pt;}
.y1f_c02154{bottom:317.225563pt;}
.y1d_c02154{bottom:361.386427pt;}
.y19_c02154{bottom:377.386939pt;}
.y1e_c02154{bottom:407.786011pt;}
.y1c_c02154{bottom:437.226235pt;}
.y1b_c02154{bottom:453.226747pt;}
.y18_c02154{bottom:482.666971pt;}
.y1a_c02154{bottom:497.386555pt;}
.y17_c02154{bottom:513.387067pt;}
.y25_c02154{bottom:527.786667pt;}
.y26_c02154{bottom:530.347067pt;}
.y24_c02154{bottom:546.027067pt;}
.y10_c02154{bottom:593.386715pt;}
.y12_c02154{bottom:628.586875pt;}
.y11_c02154{bottom:637.227067pt;}
.yf_c02154{bottom:707.946875pt;}
.yc_c02154{bottom:721.066667pt;}
.yb_c02154{bottom:779.945659pt;}
.ye_c02154{bottom:779.947067pt;}
.y9_c02154{bottom:823.786555pt;}
.y5_c02154{bottom:839.787067pt;}
.ya_c02154{bottom:870.506107pt;}
.y8_c02154{bottom:899.946331pt;}
.y7_c02154{bottom:915.946843pt;}
.y3_c02154{bottom:929.066667pt;}
.y2_c02154{bottom:945.386939pt;}
.y6_c02154{bottom:959.786683pt;}
.y1_c02154{bottom:975.787067pt;}
.y14_c02154{bottom:990.506667pt;}
.y16_c02154{bottom:993.067067pt;}
.y13_c02154{bottom:1008.747067pt;}
.h3_c02154{height:26.240000pt;}
.h2_c02154{height:28.916250pt;}
.h7_c02154{height:32.640000pt;}
.h6_c02154{height:36.802500pt;}
.h1_c02154{height:37.063125pt;}
.h4_c02154{height:37.166250pt;}
.h9_c02154{height:47.171250pt;}
.h8_c02154{height:47.302500pt;}
.h5_c02154{height:70.080000pt;}
.h0_c02154{height:1122.666667pt;}
.w2_c02154{width:191.360000pt;}
.w3_c02154{width:351.360000pt;}
.w1_c02154{width:793.333333pt;}
.w0_c02154{width:793.626667pt;}
.x0_c02154{left:0.000000pt;}
.xf_c02154{left:104.000000pt;}
.x10_c02154{left:143.360000pt;}
.x9_c02154{left:391.999968pt;}
.x5_c02154{left:396.160608pt;}
.xd_c02154{left:400.960000pt;}
.x8_c02154{left:404.799744pt;}
.x6_c02154{left:410.560224pt;}
.x1_c02154{left:411.840000pt;}
.xc_c02154{left:429.760096pt;}
.xa_c02154{left:437.439648pt;}
.x7_c02154{left:438.400608pt;}
.xe_c02154{left:450.560320pt;}
.x4_c02154{left:455.040000pt;}
.x2_c02154{left:468.159648pt;}
.x3_c02154{left:506.240000pt;}
.xb_c02154{left:578.560000pt;}
}





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

.ir_c02155:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02155{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02155;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02155{font-family:ff1_c02155;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02155;src:url('chunks/assets/font_76709eb4c21adf3408f00a2a.woff2')format("woff");}.ff2_c02155{font-family:ff2_c02155;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02155;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02155{font-family:ff3_c02155;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02155{vertical-align:0.000000px;}
.ls8_c02155{letter-spacing:-0.613008px;}
.lsb_c02155{letter-spacing:-0.574992px;}
.lse_c02155{letter-spacing:-0.427680px;}
.ls11_c02155{letter-spacing:-0.275616px;}
.lsa_c02155{letter-spacing:-0.266112px;}
.lsf_c02155{letter-spacing:-0.261360px;}
.ls7_c02155{letter-spacing:-0.242352px;}
.ls4_c02155{letter-spacing:-0.118800px;}
.ls13_c02155{letter-spacing:0.000000px;}
.ls2_c02155{letter-spacing:0.006048px;}
.ls6_c02155{letter-spacing:0.128304px;}
.lsd_c02155{letter-spacing:0.508464px;}
.ls1_c02155{letter-spacing:0.514080px;}
.ls10_c02155{letter-spacing:0.536976px;}
.lsc_c02155{letter-spacing:0.579744px;}
.ls12_c02155{letter-spacing:0.594000px;}
.ls9_c02155{letter-spacing:0.598752px;}
.ls3_c02155{letter-spacing:0.613008px;}
.ls5_c02155{letter-spacing:0.717552px;}
.ls0_c02155{letter-spacing:0.722304px;}
.sc__c02155{text-shadow:none;}
.sc0_c02155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02155{-webkit-text-stroke:0px transparent;}
.sc0_c02155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02155{word-spacing:-15.634080px;}
.wsb_c02155{word-spacing:-15.126048px;}
.ws9_c02155{word-spacing:-12.474000px;}
.ws7_c02155{word-spacing:-12.459744px;}
.ws8_c02155{word-spacing:-12.416976px;}
.ws2_c02155{word-spacing:-11.266992px;}
.ws14_c02155{word-spacing:-3.598560px;}
.ws10_c02155{word-spacing:-1.083456px;}
.wsc_c02155{word-spacing:-0.974160px;}
.wse_c02155{word-spacing:-0.118800px;}
.ws12_c02155{word-spacing:-0.099792px;}
.wsf_c02155{word-spacing:-0.095040px;}
.ws13_c02155{word-spacing:-0.085536px;}
.wsd_c02155{word-spacing:0.000000px;}
.ws11_c02155{word-spacing:0.066528px;}
.ws5_c02155{word-spacing:36.742464px;}
.ws1_c02155{word-spacing:37.759392px;}
.ws0_c02155{word-spacing:38.020752px;}
.ws3_c02155{word-spacing:39.218256px;}
.ws4_c02155{word-spacing:39.902544px;}
.ws6_c02155{word-spacing:42.026688px;}
._0_c02155{margin-left:-1.948320px;}
._2_c02155{width:1.482624px;}
._1_c02155{width:50.252400px;}
._3_c02155{width:51.530688px;}
.fc0_c02155{color:rgb(0,0,0);}
.fs0_c02155{font-size:47.520000px;}
.fs1_c02155{font-size:60.480000px;}
.y0_c02155{bottom:0.000000px;}
.y10_c02155{bottom:20.880450px;}
.y1c_c02155{bottom:146.998362px;}
.y1e_c02155{bottom:186.600234px;}
.y1d_c02155{bottom:196.320450px;}
.y1b_c02155{bottom:275.878542px;}
.y1a_c02155{bottom:356.878758px;}
.y18_c02155{bottom:406.559730px;}
.y14_c02155{bottom:424.560306px;}
.y19_c02155{bottom:458.759262px;}
.y17_c02155{bottom:491.879514px;}
.y16_c02155{bottom:509.880090px;}
.y13_c02155{bottom:543.000342px;}
.y15_c02155{bottom:559.559874px;}
.y12_c02155{bottom:577.560450px;}
.y20_c02155{bottom:593.760000px;}
.y21_c02155{bottom:596.640450px;}
.y1f_c02155{bottom:614.280450px;}
.yb_c02155{bottom:667.558326px;}
.yd_c02155{bottom:707.160234px;}
.yc_c02155{bottom:716.880450px;}
.ya_c02155{bottom:796.438506px;}
.y9_c02155{bottom:877.438722px;}
.y7_c02155{bottom:926.759730px;}
.y3_c02155{bottom:944.760306px;}
.y8_c02155{bottom:979.319226px;}
.y6_c02155{bottom:1012.439478px;}
.y5_c02155{bottom:1030.440054px;}
.y2_c02155{bottom:1063.560306px;}
.y4_c02155{bottom:1079.759874px;}
.y1_c02155{bottom:1097.760450px;}
.yf_c02155{bottom:1114.320000px;}
.y11_c02155{bottom:1117.200450px;}
.ye_c02155{bottom:1134.840450px;}
.h3_c02155{height:32.530781px;}
.h5_c02155{height:36.720000px;}
.h4_c02155{height:41.402813px;}
.h1_c02155{height:41.696016px;}
.h2_c02155{height:41.812031px;}
.h7_c02155{height:53.067656px;}
.h6_c02155{height:53.215313px;}
.h0_c02155{height:1263.000000px;}
.w2_c02155{width:395.280000px;}
.w1_c02155{width:892.500000px;}
.w0_c02155{width:892.830000px;}
.x0_c02155{left:0.000000px;}
.xd_c02155{left:117.000000px;}
.xe_c02155{left:161.280000px;}
.x8_c02155{left:440.999856px;}
.x4_c02155{left:445.680576px;}
.xb_c02155{left:451.080000px;}
.x7_c02155{left:455.399604px;}
.x5_c02155{left:461.880144px;}
.x1_c02155{left:463.320000px;}
.xa_c02155{left:483.480360px;}
.x9_c02155{left:492.119496px;}
.x6_c02155{left:493.200576px;}
.xc_c02155{left:506.880360px;}
.x3_c02155{left:511.919892px;}
.x2_c02155{left:526.679604px;}
@media print{
.v0_c02155{vertical-align:0.000000pt;}
.ls8_c02155{letter-spacing:-0.544896pt;}
.lsb_c02155{letter-spacing:-0.511104pt;}
.lse_c02155{letter-spacing:-0.380160pt;}
.ls11_c02155{letter-spacing:-0.244992pt;}
.lsa_c02155{letter-spacing:-0.236544pt;}
.lsf_c02155{letter-spacing:-0.232320pt;}
.ls7_c02155{letter-spacing:-0.215424pt;}
.ls4_c02155{letter-spacing:-0.105600pt;}
.ls13_c02155{letter-spacing:0.000000pt;}
.ls2_c02155{letter-spacing:0.005376pt;}
.ls6_c02155{letter-spacing:0.114048pt;}
.lsd_c02155{letter-spacing:0.451968pt;}
.ls1_c02155{letter-spacing:0.456960pt;}
.ls10_c02155{letter-spacing:0.477312pt;}
.lsc_c02155{letter-spacing:0.515328pt;}
.ls12_c02155{letter-spacing:0.528000pt;}
.ls9_c02155{letter-spacing:0.532224pt;}
.ls3_c02155{letter-spacing:0.544896pt;}
.ls5_c02155{letter-spacing:0.637824pt;}
.ls0_c02155{letter-spacing:0.642048pt;}
.wsa_c02155{word-spacing:-13.896960pt;}
.wsb_c02155{word-spacing:-13.445376pt;}
.ws9_c02155{word-spacing:-11.088000pt;}
.ws7_c02155{word-spacing:-11.075328pt;}
.ws8_c02155{word-spacing:-11.037312pt;}
.ws2_c02155{word-spacing:-10.015104pt;}
.ws14_c02155{word-spacing:-3.198720pt;}
.ws10_c02155{word-spacing:-0.963072pt;}
.wsc_c02155{word-spacing:-0.865920pt;}
.wse_c02155{word-spacing:-0.105600pt;}
.ws12_c02155{word-spacing:-0.088704pt;}
.wsf_c02155{word-spacing:-0.084480pt;}
.ws13_c02155{word-spacing:-0.076032pt;}
.wsd_c02155{word-spacing:0.000000pt;}
.ws11_c02155{word-spacing:0.059136pt;}
.ws5_c02155{word-spacing:32.659968pt;}
.ws1_c02155{word-spacing:33.563904pt;}
.ws0_c02155{word-spacing:33.796224pt;}
.ws3_c02155{word-spacing:34.860672pt;}
.ws4_c02155{word-spacing:35.468928pt;}
.ws6_c02155{word-spacing:37.357056pt;}
._0_c02155{margin-left:-1.731840pt;}
._2_c02155{width:1.317888pt;}
._1_c02155{width:44.668800pt;}
._3_c02155{width:45.805056pt;}
.fs0_c02155{font-size:42.240000pt;}
.fs1_c02155{font-size:53.760000pt;}
.y0_c02155{bottom:0.000000pt;}
.y10_c02155{bottom:18.560400pt;}
.y1c_c02155{bottom:130.665211pt;}
.y1e_c02155{bottom:165.866875pt;}
.y1d_c02155{bottom:174.507067pt;}
.y1b_c02155{bottom:245.225371pt;}
.y1a_c02155{bottom:317.225563pt;}
.y18_c02155{bottom:361.386427pt;}
.y14_c02155{bottom:377.386939pt;}
.y19_c02155{bottom:407.786011pt;}
.y17_c02155{bottom:437.226235pt;}
.y16_c02155{bottom:453.226747pt;}
.y13_c02155{bottom:482.666971pt;}
.y15_c02155{bottom:497.386555pt;}
.y12_c02155{bottom:513.387067pt;}
.y20_c02155{bottom:527.786667pt;}
.y21_c02155{bottom:530.347067pt;}
.y1f_c02155{bottom:546.027067pt;}
.yb_c02155{bottom:593.385179pt;}
.yd_c02155{bottom:628.586875pt;}
.yc_c02155{bottom:637.227067pt;}
.ya_c02155{bottom:707.945339pt;}
.y9_c02155{bottom:779.945531pt;}
.y7_c02155{bottom:823.786427pt;}
.y3_c02155{bottom:839.786939pt;}
.y8_c02155{bottom:870.505979pt;}
.y6_c02155{bottom:899.946203pt;}
.y5_c02155{bottom:915.946715pt;}
.y2_c02155{bottom:945.386939pt;}
.y4_c02155{bottom:959.786555pt;}
.y1_c02155{bottom:975.787067pt;}
.yf_c02155{bottom:990.506667pt;}
.y11_c02155{bottom:993.067067pt;}
.ye_c02155{bottom:1008.747067pt;}
.h3_c02155{height:28.916250pt;}
.h5_c02155{height:32.640000pt;}
.h4_c02155{height:36.802500pt;}
.h1_c02155{height:37.063125pt;}
.h2_c02155{height:37.166250pt;}
.h7_c02155{height:47.171250pt;}
.h6_c02155{height:47.302500pt;}
.h0_c02155{height:1122.666667pt;}
.w2_c02155{width:351.360000pt;}
.w1_c02155{width:793.333333pt;}
.w0_c02155{width:793.626667pt;}
.x0_c02155{left:0.000000pt;}
.xd_c02155{left:104.000000pt;}
.xe_c02155{left:143.360000pt;}
.x8_c02155{left:391.999872pt;}
.x4_c02155{left:396.160512pt;}
.xb_c02155{left:400.960000pt;}
.x7_c02155{left:404.799648pt;}
.x5_c02155{left:410.560128pt;}
.x1_c02155{left:411.840000pt;}
.xa_c02155{left:429.760320pt;}
.x9_c02155{left:437.439552pt;}
.x6_c02155{left:438.400512pt;}
.xc_c02155{left:450.560320pt;}
.x3_c02155{left:455.039904pt;}
.x2_c02155{left:468.159648pt;}
}





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

.ir_c02156:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02156{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02156;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02156{font-family:ff1_c02156;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02156;src:url('chunks/assets/font_1d010b4a49afed9f66c533f8.woff2')format("woff");}.ff2_c02156{font-family:ff2_c02156;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02156;src:url('chunks/assets/font_6fd153e82aca31b3812e4e35.woff2')format("woff");}.ff3_c02156{font-family:ff3_c02156;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02156{vertical-align:0.000000px;}
.v1_c02156{vertical-align:5.759424px;}
.lse_c02156{letter-spacing:-1.197504px;}
.ls1b_c02156{letter-spacing:-0.964656px;}
.ls1a_c02156{letter-spacing:-0.741312px;}
.ls9_c02156{letter-spacing:-0.613008px;}
.lsc_c02156{letter-spacing:-0.574992px;}
.ls14_c02156{letter-spacing:-0.313632px;}
.ls17_c02156{letter-spacing:-0.275616px;}
.lsb_c02156{letter-spacing:-0.266112px;}
.ls13_c02156{letter-spacing:-0.261360px;}
.ls8_c02156{letter-spacing:-0.242352px;}
.ls6_c02156{letter-spacing:-0.118800px;}
.ls19_c02156{letter-spacing:0.000000px;}
.ls3_c02156{letter-spacing:0.006048px;}
.ls12_c02156{letter-spacing:0.014256px;}
.ls7_c02156{letter-spacing:0.128304px;}
.ls10_c02156{letter-spacing:0.242352px;}
.lsf_c02156{letter-spacing:0.508464px;}
.ls2_c02156{letter-spacing:0.514080px;}
.ls15_c02156{letter-spacing:0.536976px;}
.lsd_c02156{letter-spacing:0.579744px;}
.ls18_c02156{letter-spacing:0.594000px;}
.lsa_c02156{letter-spacing:0.598752px;}
.ls4_c02156{letter-spacing:0.613008px;}
.ls11_c02156{letter-spacing:0.622512px;}
.ls0_c02156{letter-spacing:0.651024px;}
.ls1_c02156{letter-spacing:0.717552px;}
.ls5_c02156{letter-spacing:0.722304px;}
.ls16_c02156{letter-spacing:19.226592px;}
.sc__c02156{text-shadow:none;}
.sc0_c02156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02156{-webkit-text-stroke:0px transparent;}
.sc0_c02156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02156{word-spacing:-31.106592px;}
.wsd_c02156{word-spacing:-15.634080px;}
.wse_c02156{word-spacing:-15.126048px;}
.wsc_c02156{word-spacing:-12.474000px;}
.wsf_c02156{word-spacing:-12.459744px;}
.ws9_c02156{word-spacing:-11.894256px;}
.ws2_c02156{word-spacing:-11.266992px;}
.ws1b_c02156{word-spacing:-3.598560px;}
.ws16_c02156{word-spacing:-1.078704px;}
.ws13_c02156{word-spacing:-1.012176px;}
.ws11_c02156{word-spacing:-0.974160px;}
.ws14_c02156{word-spacing:-0.118800px;}
.ws18_c02156{word-spacing:-0.099792px;}
.ws15_c02156{word-spacing:-0.095040px;}
.ws1a_c02156{word-spacing:-0.085536px;}
.ws19_c02156{word-spacing:-0.047520px;}
.ws12_c02156{word-spacing:0.000000px;}
.ws1c_c02156{word-spacing:0.603504px;}
.ws17_c02156{word-spacing:0.836352px;}
.ws8_c02156{word-spacing:23.593680px;}
.ws10_c02156{word-spacing:25.831872px;}
.wsa_c02156{word-spacing:34.836912px;}
.ws7_c02156{word-spacing:36.143712px;}
.ws5_c02156{word-spacing:36.742464px;}
.ws1_c02156{word-spacing:37.759392px;}
.ws0_c02156{word-spacing:38.020752px;}
.ws3_c02156{word-spacing:39.218256px;}
.ws4_c02156{word-spacing:39.902544px;}
.ws6_c02156{word-spacing:42.026688px;}
._6_c02156{margin-left:-19.863360px;}
._7_c02156{margin-left:-18.689616px;}
._0_c02156{margin-left:-1.948320px;}
._2_c02156{width:1.482624px;}
._4_c02156{width:2.680128px;}
._5_c02156{width:33.278256px;}
._9_c02156{width:35.335872px;}
._8_c02156{width:38.600496px;}
._1_c02156{width:50.252400px;}
._3_c02156{width:51.530688px;}
.fc0_c02156{color:rgb(0,0,0);}
.fs0_c02156{font-size:47.520000px;}
.fs1_c02156{font-size:60.480000px;}
.y0_c02156{bottom:0.000000px;}
.y12_c02156{bottom:20.880450px;}
.y1f_c02156{bottom:131.878686px;}
.y1e_c02156{bottom:146.998362px;}
.y21_c02156{bottom:186.600234px;}
.y20_c02156{bottom:196.320450px;}
.y1d_c02156{bottom:275.878542px;}
.y1c_c02156{bottom:356.878758px;}
.y1a_c02156{bottom:406.559730px;}
.y16_c02156{bottom:424.560306px;}
.y1b_c02156{bottom:458.759262px;}
.y19_c02156{bottom:491.879514px;}
.y18_c02156{bottom:509.880090px;}
.y15_c02156{bottom:543.000342px;}
.y17_c02156{bottom:559.559874px;}
.y14_c02156{bottom:577.560450px;}
.y23_c02156{bottom:593.760000px;}
.y24_c02156{bottom:596.640450px;}
.y22_c02156{bottom:614.280450px;}
.yd_c02156{bottom:652.438650px;}
.yc_c02156{bottom:667.558326px;}
.yf_c02156{bottom:707.160234px;}
.ye_c02156{bottom:716.880450px;}
.yb_c02156{bottom:796.438506px;}
.ya_c02156{bottom:863.758902px;}
.y9_c02156{bottom:877.438722px;}
.y7_c02156{bottom:926.759730px;}
.y3_c02156{bottom:944.760306px;}
.y8_c02156{bottom:979.319226px;}
.y6_c02156{bottom:1012.439478px;}
.y5_c02156{bottom:1030.440054px;}
.y2_c02156{bottom:1063.560306px;}
.y4_c02156{bottom:1079.759874px;}
.y1_c02156{bottom:1097.760450px;}
.y11_c02156{bottom:1114.320000px;}
.y13_c02156{bottom:1117.200450px;}
.y10_c02156{bottom:1134.840450px;}
.h4_c02156{height:32.530781px;}
.h6_c02156{height:36.720000px;}
.h5_c02156{height:41.402813px;}
.h1_c02156{height:41.696016px;}
.h2_c02156{height:41.812031px;}
.h3_c02156{height:47.571455px;}
.h8_c02156{height:53.067656px;}
.h7_c02156{height:53.215313px;}
.h0_c02156{height:1263.000000px;}
.w2_c02156{width:395.280000px;}
.w1_c02156{width:892.500000px;}
.w0_c02156{width:892.830000px;}
.x0_c02156{left:0.000000px;}
.xe_c02156{left:117.000000px;}
.xf_c02156{left:161.280000px;}
.x8_c02156{left:440.999856px;}
.x4_c02156{left:445.680576px;}
.xc_c02156{left:451.080000px;}
.x7_c02156{left:455.399604px;}
.x5_c02156{left:461.880144px;}
.x1_c02156{left:463.320000px;}
.xb_c02156{left:483.480360px;}
.x9_c02156{left:492.119496px;}
.x6_c02156{left:493.200576px;}
.xd_c02156{left:506.880360px;}
.x3_c02156{left:511.919892px;}
.x2_c02156{left:526.679604px;}
.xa_c02156{left:569.880036px;}
@media print{
.v0_c02156{vertical-align:0.000000pt;}
.v1_c02156{vertical-align:5.119488pt;}
.lse_c02156{letter-spacing:-1.064448pt;}
.ls1b_c02156{letter-spacing:-0.857472pt;}
.ls1a_c02156{letter-spacing:-0.658944pt;}
.ls9_c02156{letter-spacing:-0.544896pt;}
.lsc_c02156{letter-spacing:-0.511104pt;}
.ls14_c02156{letter-spacing:-0.278784pt;}
.ls17_c02156{letter-spacing:-0.244992pt;}
.lsb_c02156{letter-spacing:-0.236544pt;}
.ls13_c02156{letter-spacing:-0.232320pt;}
.ls8_c02156{letter-spacing:-0.215424pt;}
.ls6_c02156{letter-spacing:-0.105600pt;}
.ls19_c02156{letter-spacing:0.000000pt;}
.ls3_c02156{letter-spacing:0.005376pt;}
.ls12_c02156{letter-spacing:0.012672pt;}
.ls7_c02156{letter-spacing:0.114048pt;}
.ls10_c02156{letter-spacing:0.215424pt;}
.lsf_c02156{letter-spacing:0.451968pt;}
.ls2_c02156{letter-spacing:0.456960pt;}
.ls15_c02156{letter-spacing:0.477312pt;}
.lsd_c02156{letter-spacing:0.515328pt;}
.ls18_c02156{letter-spacing:0.528000pt;}
.lsa_c02156{letter-spacing:0.532224pt;}
.ls4_c02156{letter-spacing:0.544896pt;}
.ls11_c02156{letter-spacing:0.553344pt;}
.ls0_c02156{letter-spacing:0.578688pt;}
.ls1_c02156{letter-spacing:0.637824pt;}
.ls5_c02156{letter-spacing:0.642048pt;}
.ls16_c02156{letter-spacing:17.090304pt;}
.wsb_c02156{word-spacing:-27.650304pt;}
.wsd_c02156{word-spacing:-13.896960pt;}
.wse_c02156{word-spacing:-13.445376pt;}
.wsc_c02156{word-spacing:-11.088000pt;}
.wsf_c02156{word-spacing:-11.075328pt;}
.ws9_c02156{word-spacing:-10.572672pt;}
.ws2_c02156{word-spacing:-10.015104pt;}
.ws1b_c02156{word-spacing:-3.198720pt;}
.ws16_c02156{word-spacing:-0.958848pt;}
.ws13_c02156{word-spacing:-0.899712pt;}
.ws11_c02156{word-spacing:-0.865920pt;}
.ws14_c02156{word-spacing:-0.105600pt;}
.ws18_c02156{word-spacing:-0.088704pt;}
.ws15_c02156{word-spacing:-0.084480pt;}
.ws1a_c02156{word-spacing:-0.076032pt;}
.ws19_c02156{word-spacing:-0.042240pt;}
.ws12_c02156{word-spacing:0.000000pt;}
.ws1c_c02156{word-spacing:0.536448pt;}
.ws17_c02156{word-spacing:0.743424pt;}
.ws8_c02156{word-spacing:20.972160pt;}
.ws10_c02156{word-spacing:22.961664pt;}
.wsa_c02156{word-spacing:30.966144pt;}
.ws7_c02156{word-spacing:32.127744pt;}
.ws5_c02156{word-spacing:32.659968pt;}
.ws1_c02156{word-spacing:33.563904pt;}
.ws0_c02156{word-spacing:33.796224pt;}
.ws3_c02156{word-spacing:34.860672pt;}
.ws4_c02156{word-spacing:35.468928pt;}
.ws6_c02156{word-spacing:37.357056pt;}
._6_c02156{margin-left:-17.656320pt;}
._7_c02156{margin-left:-16.612992pt;}
._0_c02156{margin-left:-1.731840pt;}
._2_c02156{width:1.317888pt;}
._4_c02156{width:2.382336pt;}
._5_c02156{width:29.580672pt;}
._9_c02156{width:31.409664pt;}
._8_c02156{width:34.311552pt;}
._1_c02156{width:44.668800pt;}
._3_c02156{width:45.805056pt;}
.fs0_c02156{font-size:42.240000pt;}
.fs1_c02156{font-size:53.760000pt;}
.y0_c02156{bottom:0.000000pt;}
.y12_c02156{bottom:18.560400pt;}
.y1f_c02156{bottom:117.225499pt;}
.y1e_c02156{bottom:130.665211pt;}
.y21_c02156{bottom:165.866875pt;}
.y20_c02156{bottom:174.507067pt;}
.y1d_c02156{bottom:245.225371pt;}
.y1c_c02156{bottom:317.225563pt;}
.y1a_c02156{bottom:361.386427pt;}
.y16_c02156{bottom:377.386939pt;}
.y1b_c02156{bottom:407.786011pt;}
.y19_c02156{bottom:437.226235pt;}
.y18_c02156{bottom:453.226747pt;}
.y15_c02156{bottom:482.666971pt;}
.y17_c02156{bottom:497.386555pt;}
.y14_c02156{bottom:513.387067pt;}
.y23_c02156{bottom:527.786667pt;}
.y24_c02156{bottom:530.347067pt;}
.y22_c02156{bottom:546.027067pt;}
.yd_c02156{bottom:579.945467pt;}
.yc_c02156{bottom:593.385179pt;}
.yf_c02156{bottom:628.586875pt;}
.ye_c02156{bottom:637.227067pt;}
.yb_c02156{bottom:707.945339pt;}
.ya_c02156{bottom:767.785691pt;}
.y9_c02156{bottom:779.945531pt;}
.y7_c02156{bottom:823.786427pt;}
.y3_c02156{bottom:839.786939pt;}
.y8_c02156{bottom:870.505979pt;}
.y6_c02156{bottom:899.946203pt;}
.y5_c02156{bottom:915.946715pt;}
.y2_c02156{bottom:945.386939pt;}
.y4_c02156{bottom:959.786555pt;}
.y1_c02156{bottom:975.787067pt;}
.y11_c02156{bottom:990.506667pt;}
.y13_c02156{bottom:993.067067pt;}
.y10_c02156{bottom:1008.747067pt;}
.h4_c02156{height:28.916250pt;}
.h6_c02156{height:32.640000pt;}
.h5_c02156{height:36.802500pt;}
.h1_c02156{height:37.063125pt;}
.h2_c02156{height:37.166250pt;}
.h3_c02156{height:42.285738pt;}
.h8_c02156{height:47.171250pt;}
.h7_c02156{height:47.302500pt;}
.h0_c02156{height:1122.666667pt;}
.w2_c02156{width:351.360000pt;}
.w1_c02156{width:793.333333pt;}
.w0_c02156{width:793.626667pt;}
.x0_c02156{left:0.000000pt;}
.xe_c02156{left:104.000000pt;}
.xf_c02156{left:143.360000pt;}
.x8_c02156{left:391.999872pt;}
.x4_c02156{left:396.160512pt;}
.xc_c02156{left:400.960000pt;}
.x7_c02156{left:404.799648pt;}
.x5_c02156{left:410.560128pt;}
.x1_c02156{left:411.840000pt;}
.xb_c02156{left:429.760320pt;}
.x9_c02156{left:437.439552pt;}
.x6_c02156{left:438.400512pt;}
.xd_c02156{left:450.560320pt;}
.x3_c02156{left:455.039904pt;}
.x2_c02156{left:468.159648pt;}
.xa_c02156{left:506.560032pt;}
}





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

.ir_c02157:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02157{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02157;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02157{font-family:ff1_c02157;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02157;src:url('chunks/assets/font_1689fbe428ee40a1cf2395ea.woff2')format("woff");}.ff2_c02157{font-family:ff2_c02157;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02157;src:url('chunks/assets/font_cdb9a266014a0a045eba588e.woff2')format("woff");}.ff3_c02157{font-family:ff3_c02157;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02157{vertical-align:0.000000px;}
.ls10_c02157{letter-spacing:-0.793584px;}
.ls17_c02157{letter-spacing:-0.774576px;}
.ls18_c02157{letter-spacing:-0.736560px;}
.lsa_c02157{letter-spacing:-0.613008px;}
.lsd_c02157{letter-spacing:-0.574992px;}
.ls12_c02157{letter-spacing:-0.380160px;}
.ls14_c02157{letter-spacing:-0.275616px;}
.ls19_c02157{letter-spacing:-0.270864px;}
.lsc_c02157{letter-spacing:-0.266112px;}
.ls11_c02157{letter-spacing:-0.261360px;}
.ls9_c02157{letter-spacing:-0.242352px;}
.ls7_c02157{letter-spacing:-0.228096px;}
.ls6_c02157{letter-spacing:-0.118800px;}
.ls16_c02157{letter-spacing:0.000000px;}
.ls3_c02157{letter-spacing:0.006048px;}
.ls8_c02157{letter-spacing:0.128304px;}
.lsf_c02157{letter-spacing:0.508464px;}
.ls2_c02157{letter-spacing:0.514080px;}
.ls13_c02157{letter-spacing:0.536976px;}
.lse_c02157{letter-spacing:0.579744px;}
.ls15_c02157{letter-spacing:0.594000px;}
.lsb_c02157{letter-spacing:0.598752px;}
.ls5_c02157{letter-spacing:0.613008px;}
.ls4_c02157{letter-spacing:0.651024px;}
.ls0_c02157{letter-spacing:0.717552px;}
.ls1_c02157{letter-spacing:0.722304px;}
.sc__c02157{text-shadow:none;}
.sc0_c02157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02157{-webkit-text-stroke:0px transparent;}
.sc0_c02157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02157{word-spacing:-15.634080px;}
.wsb_c02157{word-spacing:-15.126048px;}
.ws9_c02157{word-spacing:-12.474000px;}
.ws6_c02157{word-spacing:-12.459744px;}
.ws8_c02157{word-spacing:-12.416976px;}
.ws0_c02157{word-spacing:-11.761200px;}
.ws1_c02157{word-spacing:-11.651904px;}
.ws3_c02157{word-spacing:-11.266992px;}
.wsd_c02157{word-spacing:-11.105424px;}
.ws1a_c02157{word-spacing:-3.598560px;}
.ws16_c02157{word-spacing:-1.083456px;}
.ws14_c02157{word-spacing:-1.078704px;}
.ws1b_c02157{word-spacing:-1.012176px;}
.ws10_c02157{word-spacing:-0.974160px;}
.ws12_c02157{word-spacing:-0.118800px;}
.ws17_c02157{word-spacing:-0.099792px;}
.ws13_c02157{word-spacing:-0.095040px;}
.ws1c_c02157{word-spacing:-0.090288px;}
.ws19_c02157{word-spacing:-0.085536px;}
.ws11_c02157{word-spacing:0.000000px;}
.ws18_c02157{word-spacing:0.019008px;}
.ws15_c02157{word-spacing:0.432432px;}
.wsf_c02157{word-spacing:6.629040px;}
.wse_c02157{word-spacing:34.836912px;}
.ws2_c02157{word-spacing:37.759392px;}
.wsc_c02157{word-spacing:38.020752px;}
.ws4_c02157{word-spacing:39.218256px;}
.ws5_c02157{word-spacing:39.902544px;}
.ws7_c02157{word-spacing:42.026688px;}
._0_c02157{margin-left:-1.948320px;}
._2_c02157{width:1.406592px;}
._5_c02157{width:19.982160px;}
._6_c02157{width:23.451120px;}
._4_c02157{width:24.843456px;}
._1_c02157{width:50.252400px;}
._3_c02157{width:51.834816px;}
.fc0_c02157{color:rgb(0,0,0);}
.fs0_c02157{font-size:47.520000px;}
.fs1_c02157{font-size:60.480000px;}
.y0_c02157{bottom:0.000000px;}
.y4_c02157{bottom:18.360450px;}
.y15_c02157{bottom:20.880450px;}
.yd_c02157{bottom:66.240450px;}
.y22_c02157{bottom:131.878686px;}
.y21_c02157{bottom:146.998362px;}
.y24_c02157{bottom:186.600234px;}
.y23_c02157{bottom:196.320450px;}
.y20_c02157{bottom:275.878542px;}
.y1f_c02157{bottom:356.878758px;}
.y1d_c02157{bottom:406.559730px;}
.y19_c02157{bottom:424.560306px;}
.y1e_c02157{bottom:458.759262px;}
.y1c_c02157{bottom:491.879514px;}
.y1b_c02157{bottom:509.880090px;}
.y18_c02157{bottom:543.000342px;}
.y1a_c02157{bottom:559.559874px;}
.y17_c02157{bottom:577.560450px;}
.y26_c02157{bottom:593.760000px;}
.y27_c02157{bottom:596.640450px;}
.y25_c02157{bottom:614.280450px;}
.y10_c02157{bottom:667.560054px;}
.y12_c02157{bottom:707.160234px;}
.y11_c02157{bottom:716.880450px;}
.yf_c02157{bottom:796.440234px;}
.yc_c02157{bottom:811.200000px;}
.yb_c02157{bottom:877.438866px;}
.ye_c02157{bottom:877.440450px;}
.y9_c02157{bottom:926.759874px;}
.y5_c02157{bottom:944.760450px;}
.ya_c02157{bottom:979.319370px;}
.y8_c02157{bottom:1012.439622px;}
.y7_c02157{bottom:1030.440198px;}
.y3_c02157{bottom:1045.200000px;}
.y2_c02157{bottom:1063.560306px;}
.y6_c02157{bottom:1079.760018px;}
.y1_c02157{bottom:1097.760450px;}
.y14_c02157{bottom:1114.320000px;}
.y16_c02157{bottom:1117.200450px;}
.y13_c02157{bottom:1134.840450px;}
.h3_c02157{height:29.520000px;}
.h2_c02157{height:32.530781px;}
.h7_c02157{height:36.720000px;}
.h6_c02157{height:41.402813px;}
.h1_c02157{height:41.696016px;}
.h4_c02157{height:41.812031px;}
.h9_c02157{height:53.067656px;}
.h8_c02157{height:53.215313px;}
.h5_c02157{height:78.840000px;}
.h0_c02157{height:1263.000000px;}
.w2_c02157{width:215.280000px;}
.w3_c02157{width:395.280000px;}
.w1_c02157{width:892.500000px;}
.w0_c02157{width:892.830000px;}
.x0_c02157{left:0.000000px;}
.xf_c02157{left:117.000000px;}
.x10_c02157{left:161.280000px;}
.x9_c02157{left:440.999964px;}
.x5_c02157{left:445.680684px;}
.xd_c02157{left:451.080000px;}
.x8_c02157{left:455.399712px;}
.x6_c02157{left:461.880252px;}
.x1_c02157{left:463.320000px;}
.xc_c02157{left:483.480108px;}
.xa_c02157{left:492.119604px;}
.x7_c02157{left:493.200684px;}
.xe_c02157{left:506.880360px;}
.x4_c02157{left:511.920000px;}
.x2_c02157{left:526.679604px;}
.x3_c02157{left:569.520000px;}
.xb_c02157{left:650.880000px;}
@media print{
.v0_c02157{vertical-align:0.000000pt;}
.ls10_c02157{letter-spacing:-0.705408pt;}
.ls17_c02157{letter-spacing:-0.688512pt;}
.ls18_c02157{letter-spacing:-0.654720pt;}
.lsa_c02157{letter-spacing:-0.544896pt;}
.lsd_c02157{letter-spacing:-0.511104pt;}
.ls12_c02157{letter-spacing:-0.337920pt;}
.ls14_c02157{letter-spacing:-0.244992pt;}
.ls19_c02157{letter-spacing:-0.240768pt;}
.lsc_c02157{letter-spacing:-0.236544pt;}
.ls11_c02157{letter-spacing:-0.232320pt;}
.ls9_c02157{letter-spacing:-0.215424pt;}
.ls7_c02157{letter-spacing:-0.202752pt;}
.ls6_c02157{letter-spacing:-0.105600pt;}
.ls16_c02157{letter-spacing:0.000000pt;}
.ls3_c02157{letter-spacing:0.005376pt;}
.ls8_c02157{letter-spacing:0.114048pt;}
.lsf_c02157{letter-spacing:0.451968pt;}
.ls2_c02157{letter-spacing:0.456960pt;}
.ls13_c02157{letter-spacing:0.477312pt;}
.lse_c02157{letter-spacing:0.515328pt;}
.ls15_c02157{letter-spacing:0.528000pt;}
.lsb_c02157{letter-spacing:0.532224pt;}
.ls5_c02157{letter-spacing:0.544896pt;}
.ls4_c02157{letter-spacing:0.578688pt;}
.ls0_c02157{letter-spacing:0.637824pt;}
.ls1_c02157{letter-spacing:0.642048pt;}
.wsa_c02157{word-spacing:-13.896960pt;}
.wsb_c02157{word-spacing:-13.445376pt;}
.ws9_c02157{word-spacing:-11.088000pt;}
.ws6_c02157{word-spacing:-11.075328pt;}
.ws8_c02157{word-spacing:-11.037312pt;}
.ws0_c02157{word-spacing:-10.454400pt;}
.ws1_c02157{word-spacing:-10.357248pt;}
.ws3_c02157{word-spacing:-10.015104pt;}
.wsd_c02157{word-spacing:-9.871488pt;}
.ws1a_c02157{word-spacing:-3.198720pt;}
.ws16_c02157{word-spacing:-0.963072pt;}
.ws14_c02157{word-spacing:-0.958848pt;}
.ws1b_c02157{word-spacing:-0.899712pt;}
.ws10_c02157{word-spacing:-0.865920pt;}
.ws12_c02157{word-spacing:-0.105600pt;}
.ws17_c02157{word-spacing:-0.088704pt;}
.ws13_c02157{word-spacing:-0.084480pt;}
.ws1c_c02157{word-spacing:-0.080256pt;}
.ws19_c02157{word-spacing:-0.076032pt;}
.ws11_c02157{word-spacing:0.000000pt;}
.ws18_c02157{word-spacing:0.016896pt;}
.ws15_c02157{word-spacing:0.384384pt;}
.wsf_c02157{word-spacing:5.892480pt;}
.wse_c02157{word-spacing:30.966144pt;}
.ws2_c02157{word-spacing:33.563904pt;}
.wsc_c02157{word-spacing:33.796224pt;}
.ws4_c02157{word-spacing:34.860672pt;}
.ws5_c02157{word-spacing:35.468928pt;}
.ws7_c02157{word-spacing:37.357056pt;}
._0_c02157{margin-left:-1.731840pt;}
._2_c02157{width:1.250304pt;}
._5_c02157{width:17.761920pt;}
._6_c02157{width:20.845440pt;}
._4_c02157{width:22.083072pt;}
._1_c02157{width:44.668800pt;}
._3_c02157{width:46.075392pt;}
.fs0_c02157{font-size:42.240000pt;}
.fs1_c02157{font-size:53.760000pt;}
.y0_c02157{bottom:0.000000pt;}
.y4_c02157{bottom:16.320400pt;}
.y15_c02157{bottom:18.560400pt;}
.yd_c02157{bottom:58.880400pt;}
.y22_c02157{bottom:117.225499pt;}
.y21_c02157{bottom:130.665211pt;}
.y24_c02157{bottom:165.866875pt;}
.y23_c02157{bottom:174.507067pt;}
.y20_c02157{bottom:245.225371pt;}
.y1f_c02157{bottom:317.225563pt;}
.y1d_c02157{bottom:361.386427pt;}
.y19_c02157{bottom:377.386939pt;}
.y1e_c02157{bottom:407.786011pt;}
.y1c_c02157{bottom:437.226235pt;}
.y1b_c02157{bottom:453.226747pt;}
.y18_c02157{bottom:482.666971pt;}
.y1a_c02157{bottom:497.386555pt;}
.y17_c02157{bottom:513.387067pt;}
.y26_c02157{bottom:527.786667pt;}
.y27_c02157{bottom:530.347067pt;}
.y25_c02157{bottom:546.027067pt;}
.y10_c02157{bottom:593.386715pt;}
.y12_c02157{bottom:628.586875pt;}
.y11_c02157{bottom:637.227067pt;}
.yf_c02157{bottom:707.946875pt;}
.yc_c02157{bottom:721.066667pt;}
.yb_c02157{bottom:779.945659pt;}
.ye_c02157{bottom:779.947067pt;}
.y9_c02157{bottom:823.786555pt;}
.y5_c02157{bottom:839.787067pt;}
.ya_c02157{bottom:870.506107pt;}
.y8_c02157{bottom:899.946331pt;}
.y7_c02157{bottom:915.946843pt;}
.y3_c02157{bottom:929.066667pt;}
.y2_c02157{bottom:945.386939pt;}
.y6_c02157{bottom:959.786683pt;}
.y1_c02157{bottom:975.787067pt;}
.y14_c02157{bottom:990.506667pt;}
.y16_c02157{bottom:993.067067pt;}
.y13_c02157{bottom:1008.747067pt;}
.h3_c02157{height:26.240000pt;}
.h2_c02157{height:28.916250pt;}
.h7_c02157{height:32.640000pt;}
.h6_c02157{height:36.802500pt;}
.h1_c02157{height:37.063125pt;}
.h4_c02157{height:37.166250pt;}
.h9_c02157{height:47.171250pt;}
.h8_c02157{height:47.302500pt;}
.h5_c02157{height:70.080000pt;}
.h0_c02157{height:1122.666667pt;}
.w2_c02157{width:191.360000pt;}
.w3_c02157{width:351.360000pt;}
.w1_c02157{width:793.333333pt;}
.w0_c02157{width:793.626667pt;}
.x0_c02157{left:0.000000pt;}
.xf_c02157{left:104.000000pt;}
.x10_c02157{left:143.360000pt;}
.x9_c02157{left:391.999968pt;}
.x5_c02157{left:396.160608pt;}
.xd_c02157{left:400.960000pt;}
.x8_c02157{left:404.799744pt;}
.x6_c02157{left:410.560224pt;}
.x1_c02157{left:411.840000pt;}
.xc_c02157{left:429.760096pt;}
.xa_c02157{left:437.439648pt;}
.x7_c02157{left:438.400608pt;}
.xe_c02157{left:450.560320pt;}
.x4_c02157{left:455.040000pt;}
.x2_c02157{left:468.159648pt;}
.x3_c02157{left:506.240000pt;}
.xb_c02157{left:578.560000pt;}
}





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

.ir_c02158:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02158{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02158;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02158{font-family:ff1_c02158;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02158;src:url('chunks/assets/font_3a51985b56c65dd22316c448.woff2')format("woff");}.ff2_c02158{font-family:ff2_c02158;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02158;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02158{font-family:ff3_c02158;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02158{vertical-align:0.000000px;}
.lse_c02158{letter-spacing:-1.197504px;}
.ls8_c02158{letter-spacing:-0.613008px;}
.lsb_c02158{letter-spacing:-0.574992px;}
.ls12_c02158{letter-spacing:-0.275616px;}
.lsa_c02158{letter-spacing:-0.266112px;}
.ls10_c02158{letter-spacing:-0.261360px;}
.ls7_c02158{letter-spacing:-0.242352px;}
.ls4_c02158{letter-spacing:-0.118800px;}
.lsf_c02158{letter-spacing:0.000000px;}
.ls2_c02158{letter-spacing:0.006048px;}
.ls6_c02158{letter-spacing:0.128304px;}
.lsd_c02158{letter-spacing:0.508464px;}
.ls1_c02158{letter-spacing:0.514080px;}
.ls11_c02158{letter-spacing:0.536976px;}
.lsc_c02158{letter-spacing:0.579744px;}
.ls13_c02158{letter-spacing:0.594000px;}
.ls9_c02158{letter-spacing:0.598752px;}
.ls3_c02158{letter-spacing:0.613008px;}
.ls5_c02158{letter-spacing:0.717552px;}
.ls0_c02158{letter-spacing:0.722304px;}
.sc__c02158{text-shadow:none;}
.sc0_c02158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02158{-webkit-text-stroke:0px transparent;}
.sc0_c02158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02158{word-spacing:-15.634080px;}
.wse_c02158{word-spacing:-15.126048px;}
.wsc_c02158{word-spacing:-12.474000px;}
.ws9_c02158{word-spacing:-12.459744px;}
.ws10_c02158{word-spacing:-12.416976px;}
.ws8_c02158{word-spacing:-11.880000px;}
.wsb_c02158{word-spacing:-11.637648px;}
.ws2_c02158{word-spacing:-11.266992px;}
.ws18_c02158{word-spacing:-3.598560px;}
.ws15_c02158{word-spacing:-1.083456px;}
.ws11_c02158{word-spacing:-0.974160px;}
.ws13_c02158{word-spacing:-0.118800px;}
.ws16_c02158{word-spacing:-0.099792px;}
.ws14_c02158{word-spacing:-0.095040px;}
.ws17_c02158{word-spacing:-0.085536px;}
.ws12_c02158{word-spacing:0.000000px;}
.wsf_c02158{word-spacing:11.756448px;}
.ws7_c02158{word-spacing:23.275296px;}
.wsa_c02158{word-spacing:34.836912px;}
.ws5_c02158{word-spacing:36.742464px;}
.ws1_c02158{word-spacing:37.759392px;}
.ws0_c02158{word-spacing:38.020752px;}
.ws3_c02158{word-spacing:39.218256px;}
.ws4_c02158{word-spacing:39.902544px;}
.ws6_c02158{word-spacing:42.026688px;}
._0_c02158{margin-left:-1.948320px;}
._2_c02158{width:1.482624px;}
._5_c02158{width:2.504304px;}
._8_c02158{width:18.043344px;}
._7_c02158{width:23.460624px;}
._6_c02158{width:30.146688px;}
._4_c02158{width:31.434480px;}
._1_c02158{width:50.252400px;}
._3_c02158{width:51.530688px;}
.fc0_c02158{color:rgb(0,0,0);}
.fs0_c02158{font-size:47.520000px;}
.fs1_c02158{font-size:60.480000px;}
.y0_c02158{bottom:0.000000px;}
.y11_c02158{bottom:20.880450px;}
.y1e_c02158{bottom:146.999550px;}
.y20_c02158{bottom:186.600234px;}
.y1f_c02158{bottom:196.320450px;}
.y1d_c02158{bottom:275.879730px;}
.y1c_c02158{bottom:356.879946px;}
.y19_c02158{bottom:406.559730px;}
.y15_c02158{bottom:424.560306px;}
.y1b_c02158{bottom:443.999550px;}
.y1a_c02158{bottom:458.759262px;}
.y18_c02158{bottom:491.879514px;}
.y17_c02158{bottom:509.880090px;}
.y14_c02158{bottom:543.000342px;}
.y16_c02158{bottom:559.559874px;}
.y13_c02158{bottom:577.560450px;}
.y22_c02158{bottom:593.760000px;}
.y23_c02158{bottom:596.640450px;}
.y21_c02158{bottom:614.280450px;}
.yc_c02158{bottom:667.559514px;}
.ye_c02158{bottom:707.160234px;}
.yd_c02158{bottom:716.880450px;}
.yb_c02158{bottom:796.439694px;}
.ya_c02158{bottom:877.439910px;}
.y7_c02158{bottom:926.759730px;}
.y3_c02158{bottom:944.760306px;}
.y9_c02158{bottom:964.559514px;}
.y8_c02158{bottom:979.319226px;}
.y6_c02158{bottom:1012.439478px;}
.y5_c02158{bottom:1030.440054px;}
.y2_c02158{bottom:1063.560306px;}
.y4_c02158{bottom:1079.759874px;}
.y1_c02158{bottom:1097.760450px;}
.y10_c02158{bottom:1114.320000px;}
.y12_c02158{bottom:1117.200450px;}
.yf_c02158{bottom:1134.840450px;}
.h3_c02158{height:32.530781px;}
.h5_c02158{height:36.720000px;}
.h4_c02158{height:41.402813px;}
.h1_c02158{height:41.696016px;}
.h2_c02158{height:41.812031px;}
.h7_c02158{height:53.067656px;}
.h6_c02158{height:53.215313px;}
.h0_c02158{height:1263.000000px;}
.w2_c02158{width:395.280000px;}
.w1_c02158{width:892.500000px;}
.w0_c02158{width:892.830000px;}
.x0_c02158{left:0.000000px;}
.xe_c02158{left:117.000000px;}
.xf_c02158{left:161.280000px;}
.x8_c02158{left:440.999856px;}
.x4_c02158{left:445.680576px;}
.xc_c02158{left:451.080000px;}
.x7_c02158{left:455.399604px;}
.x5_c02158{left:461.880144px;}
.x1_c02158{left:463.320000px;}
.xb_c02158{left:483.480360px;}
.xa_c02158{left:492.119496px;}
.x6_c02158{left:493.200576px;}
.xd_c02158{left:506.880360px;}
.x3_c02158{left:511.919892px;}
.x2_c02158{left:526.679604px;}
.x9_c02158{left:569.880036px;}
@media print{
.v0_c02158{vertical-align:0.000000pt;}
.lse_c02158{letter-spacing:-1.064448pt;}
.ls8_c02158{letter-spacing:-0.544896pt;}
.lsb_c02158{letter-spacing:-0.511104pt;}
.ls12_c02158{letter-spacing:-0.244992pt;}
.lsa_c02158{letter-spacing:-0.236544pt;}
.ls10_c02158{letter-spacing:-0.232320pt;}
.ls7_c02158{letter-spacing:-0.215424pt;}
.ls4_c02158{letter-spacing:-0.105600pt;}
.lsf_c02158{letter-spacing:0.000000pt;}
.ls2_c02158{letter-spacing:0.005376pt;}
.ls6_c02158{letter-spacing:0.114048pt;}
.lsd_c02158{letter-spacing:0.451968pt;}
.ls1_c02158{letter-spacing:0.456960pt;}
.ls11_c02158{letter-spacing:0.477312pt;}
.lsc_c02158{letter-spacing:0.515328pt;}
.ls13_c02158{letter-spacing:0.528000pt;}
.ls9_c02158{letter-spacing:0.532224pt;}
.ls3_c02158{letter-spacing:0.544896pt;}
.ls5_c02158{letter-spacing:0.637824pt;}
.ls0_c02158{letter-spacing:0.642048pt;}
.wsd_c02158{word-spacing:-13.896960pt;}
.wse_c02158{word-spacing:-13.445376pt;}
.wsc_c02158{word-spacing:-11.088000pt;}
.ws9_c02158{word-spacing:-11.075328pt;}
.ws10_c02158{word-spacing:-11.037312pt;}
.ws8_c02158{word-spacing:-10.560000pt;}
.wsb_c02158{word-spacing:-10.344576pt;}
.ws2_c02158{word-spacing:-10.015104pt;}
.ws18_c02158{word-spacing:-3.198720pt;}
.ws15_c02158{word-spacing:-0.963072pt;}
.ws11_c02158{word-spacing:-0.865920pt;}
.ws13_c02158{word-spacing:-0.105600pt;}
.ws16_c02158{word-spacing:-0.088704pt;}
.ws14_c02158{word-spacing:-0.084480pt;}
.ws17_c02158{word-spacing:-0.076032pt;}
.ws12_c02158{word-spacing:0.000000pt;}
.wsf_c02158{word-spacing:10.450176pt;}
.ws7_c02158{word-spacing:20.689152pt;}
.wsa_c02158{word-spacing:30.966144pt;}
.ws5_c02158{word-spacing:32.659968pt;}
.ws1_c02158{word-spacing:33.563904pt;}
.ws0_c02158{word-spacing:33.796224pt;}
.ws3_c02158{word-spacing:34.860672pt;}
.ws4_c02158{word-spacing:35.468928pt;}
.ws6_c02158{word-spacing:37.357056pt;}
._0_c02158{margin-left:-1.731840pt;}
._2_c02158{width:1.317888pt;}
._5_c02158{width:2.226048pt;}
._8_c02158{width:16.038528pt;}
._7_c02158{width:20.853888pt;}
._6_c02158{width:26.797056pt;}
._4_c02158{width:27.941760pt;}
._1_c02158{width:44.668800pt;}
._3_c02158{width:45.805056pt;}
.fs0_c02158{font-size:42.240000pt;}
.fs1_c02158{font-size:53.760000pt;}
.y0_c02158{bottom:0.000000pt;}
.y11_c02158{bottom:18.560400pt;}
.y1e_c02158{bottom:130.666267pt;}
.y20_c02158{bottom:165.866875pt;}
.y1f_c02158{bottom:174.507067pt;}
.y1d_c02158{bottom:245.226427pt;}
.y1c_c02158{bottom:317.226619pt;}
.y19_c02158{bottom:361.386427pt;}
.y15_c02158{bottom:377.386939pt;}
.y1b_c02158{bottom:394.666267pt;}
.y1a_c02158{bottom:407.786011pt;}
.y18_c02158{bottom:437.226235pt;}
.y17_c02158{bottom:453.226747pt;}
.y14_c02158{bottom:482.666971pt;}
.y16_c02158{bottom:497.386555pt;}
.y13_c02158{bottom:513.387067pt;}
.y22_c02158{bottom:527.786667pt;}
.y23_c02158{bottom:530.347067pt;}
.y21_c02158{bottom:546.027067pt;}
.yc_c02158{bottom:593.386235pt;}
.ye_c02158{bottom:628.586875pt;}
.yd_c02158{bottom:637.227067pt;}
.yb_c02158{bottom:707.946395pt;}
.ya_c02158{bottom:779.946587pt;}
.y7_c02158{bottom:823.786427pt;}
.y3_c02158{bottom:839.786939pt;}
.y9_c02158{bottom:857.386235pt;}
.y8_c02158{bottom:870.505979pt;}
.y6_c02158{bottom:899.946203pt;}
.y5_c02158{bottom:915.946715pt;}
.y2_c02158{bottom:945.386939pt;}
.y4_c02158{bottom:959.786555pt;}
.y1_c02158{bottom:975.787067pt;}
.y10_c02158{bottom:990.506667pt;}
.y12_c02158{bottom:993.067067pt;}
.yf_c02158{bottom:1008.747067pt;}
.h3_c02158{height:28.916250pt;}
.h5_c02158{height:32.640000pt;}
.h4_c02158{height:36.802500pt;}
.h1_c02158{height:37.063125pt;}
.h2_c02158{height:37.166250pt;}
.h7_c02158{height:47.171250pt;}
.h6_c02158{height:47.302500pt;}
.h0_c02158{height:1122.666667pt;}
.w2_c02158{width:351.360000pt;}
.w1_c02158{width:793.333333pt;}
.w0_c02158{width:793.626667pt;}
.x0_c02158{left:0.000000pt;}
.xe_c02158{left:104.000000pt;}
.xf_c02158{left:143.360000pt;}
.x8_c02158{left:391.999872pt;}
.x4_c02158{left:396.160512pt;}
.xc_c02158{left:400.960000pt;}
.x7_c02158{left:404.799648pt;}
.x5_c02158{left:410.560128pt;}
.x1_c02158{left:411.840000pt;}
.xb_c02158{left:429.760320pt;}
.xa_c02158{left:437.439552pt;}
.x6_c02158{left:438.400512pt;}
.xd_c02158{left:450.560320pt;}
.x3_c02158{left:455.039904pt;}
.x2_c02158{left:468.159648pt;}
.x9_c02158{left:506.560032pt;}
}





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

.ir_c02159:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02159{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02159;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02159{font-family:ff1_c02159;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02159;src:url('chunks/assets/font_07a59a83490a7ea616d9409b.woff2')format("woff");}.ff2_c02159{font-family:ff2_c02159;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02159;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02159{font-family:ff3_c02159;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02159{vertical-align:0.000000px;}
.ls10_c02159{letter-spacing:-0.793584px;}
.lsd_c02159{letter-spacing:-0.774576px;}
.ls13_c02159{letter-spacing:-0.736560px;}
.ls9_c02159{letter-spacing:-0.613008px;}
.lsc_c02159{letter-spacing:-0.574992px;}
.lsb_c02159{letter-spacing:-0.275616px;}
.ls14_c02159{letter-spacing:-0.270864px;}
.ls11_c02159{letter-spacing:-0.261360px;}
.ls8_c02159{letter-spacing:-0.242352px;}
.ls6_c02159{letter-spacing:-0.118800px;}
.ls16_c02159{letter-spacing:0.000000px;}
.ls2_c02159{letter-spacing:0.006048px;}
.ls7_c02159{letter-spacing:0.128304px;}
.ls17_c02159{letter-spacing:0.242352px;}
.lsf_c02159{letter-spacing:0.508464px;}
.ls1_c02159{letter-spacing:0.514080px;}
.ls12_c02159{letter-spacing:0.536976px;}
.lse_c02159{letter-spacing:0.579744px;}
.ls15_c02159{letter-spacing:0.594000px;}
.lsa_c02159{letter-spacing:0.598752px;}
.ls4_c02159{letter-spacing:0.613008px;}
.ls0_c02159{letter-spacing:0.651024px;}
.ls18_c02159{letter-spacing:0.660528px;}
.ls3_c02159{letter-spacing:0.717552px;}
.ls5_c02159{letter-spacing:0.722304px;}
.sc__c02159{text-shadow:none;}
.sc0_c02159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02159{-webkit-text-stroke:0px transparent;}
.sc0_c02159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02159{word-spacing:-15.634080px;}
.wsc_c02159{word-spacing:-15.126048px;}
.wsa_c02159{word-spacing:-12.474000px;}
.ws6_c02159{word-spacing:-12.459744px;}
.wsf_c02159{word-spacing:-12.416976px;}
.ws2_c02159{word-spacing:-11.266992px;}
.ws5_c02159{word-spacing:-11.105424px;}
.ws18_c02159{word-spacing:-3.598560px;}
.ws19_c02159{word-spacing:-1.078704px;}
.ws1a_c02159{word-spacing:-1.021680px;}
.ws12_c02159{word-spacing:-1.012176px;}
.ws10_c02159{word-spacing:-0.974160px;}
.ws13_c02159{word-spacing:-0.118800px;}
.ws16_c02159{word-spacing:-0.099792px;}
.ws17_c02159{word-spacing:-0.090288px;}
.ws14_c02159{word-spacing:-0.085536px;}
.ws11_c02159{word-spacing:0.000000px;}
.ws15_c02159{word-spacing:0.432432px;}
.ws9_c02159{word-spacing:6.629040px;}
.ws8_c02159{word-spacing:34.836912px;}
.wse_c02159{word-spacing:36.143712px;}
.wsd_c02159{word-spacing:36.742464px;}
.ws1_c02159{word-spacing:37.759392px;}
.ws0_c02159{word-spacing:38.020752px;}
.ws3_c02159{word-spacing:39.218256px;}
.ws4_c02159{word-spacing:39.902544px;}
.ws7_c02159{word-spacing:42.026688px;}
._0_c02159{margin-left:-1.948320px;}
._2_c02159{width:1.482624px;}
._5_c02159{width:19.982160px;}
._6_c02159{width:23.451120px;}
._4_c02159{width:24.691392px;}
._1_c02159{width:50.252400px;}
._3_c02159{width:51.530688px;}
.fc0_c02159{color:rgb(0,0,0);}
.fs0_c02159{font-size:47.520000px;}
.fs1_c02159{font-size:60.480000px;}
.y0_c02159{bottom:0.000000px;}
.y11_c02159{bottom:20.880450px;}
.y1d_c02159{bottom:146.998362px;}
.y1f_c02159{bottom:186.600234px;}
.y1e_c02159{bottom:196.320450px;}
.y1c_c02159{bottom:275.878542px;}
.y1b_c02159{bottom:356.878758px;}
.y19_c02159{bottom:406.559730px;}
.y15_c02159{bottom:424.560306px;}
.y1a_c02159{bottom:458.759262px;}
.y18_c02159{bottom:491.879514px;}
.y17_c02159{bottom:509.880090px;}
.y14_c02159{bottom:543.000342px;}
.y16_c02159{bottom:559.559874px;}
.y13_c02159{bottom:577.560450px;}
.y21_c02159{bottom:593.760000px;}
.y22_c02159{bottom:596.640450px;}
.y20_c02159{bottom:614.280450px;}
.yc_c02159{bottom:652.438650px;}
.yb_c02159{bottom:667.558326px;}
.ye_c02159{bottom:707.160234px;}
.yd_c02159{bottom:716.880450px;}
.ya_c02159{bottom:796.438506px;}
.y9_c02159{bottom:877.438722px;}
.y7_c02159{bottom:926.759730px;}
.y3_c02159{bottom:944.760306px;}
.y8_c02159{bottom:979.319226px;}
.y6_c02159{bottom:1012.439478px;}
.y5_c02159{bottom:1030.440054px;}
.y2_c02159{bottom:1063.560306px;}
.y4_c02159{bottom:1079.759874px;}
.y1_c02159{bottom:1097.760450px;}
.y10_c02159{bottom:1114.320000px;}
.y12_c02159{bottom:1117.200450px;}
.yf_c02159{bottom:1134.840450px;}
.h3_c02159{height:32.530781px;}
.h5_c02159{height:36.720000px;}
.h4_c02159{height:41.402813px;}
.h1_c02159{height:41.696016px;}
.h2_c02159{height:41.812031px;}
.h7_c02159{height:53.067656px;}
.h6_c02159{height:53.215313px;}
.h0_c02159{height:1263.000000px;}
.w2_c02159{width:395.280000px;}
.w1_c02159{width:892.500000px;}
.w0_c02159{width:892.830000px;}
.x0_c02159{left:0.000000px;}
.xe_c02159{left:117.000000px;}
.xf_c02159{left:161.280000px;}
.x8_c02159{left:440.999856px;}
.x4_c02159{left:445.680576px;}
.xc_c02159{left:451.080000px;}
.x7_c02159{left:455.399604px;}
.x5_c02159{left:461.880144px;}
.x1_c02159{left:463.320000px;}
.xa_c02159{left:483.480360px;}
.x9_c02159{left:492.119496px;}
.x6_c02159{left:493.200576px;}
.xd_c02159{left:506.880360px;}
.x3_c02159{left:511.919892px;}
.x2_c02159{left:526.679604px;}
.xb_c02159{left:569.880036px;}
@media print{
.v0_c02159{vertical-align:0.000000pt;}
.ls10_c02159{letter-spacing:-0.705408pt;}
.lsd_c02159{letter-spacing:-0.688512pt;}
.ls13_c02159{letter-spacing:-0.654720pt;}
.ls9_c02159{letter-spacing:-0.544896pt;}
.lsc_c02159{letter-spacing:-0.511104pt;}
.lsb_c02159{letter-spacing:-0.244992pt;}
.ls14_c02159{letter-spacing:-0.240768pt;}
.ls11_c02159{letter-spacing:-0.232320pt;}
.ls8_c02159{letter-spacing:-0.215424pt;}
.ls6_c02159{letter-spacing:-0.105600pt;}
.ls16_c02159{letter-spacing:0.000000pt;}
.ls2_c02159{letter-spacing:0.005376pt;}
.ls7_c02159{letter-spacing:0.114048pt;}
.ls17_c02159{letter-spacing:0.215424pt;}
.lsf_c02159{letter-spacing:0.451968pt;}
.ls1_c02159{letter-spacing:0.456960pt;}
.ls12_c02159{letter-spacing:0.477312pt;}
.lse_c02159{letter-spacing:0.515328pt;}
.ls15_c02159{letter-spacing:0.528000pt;}
.lsa_c02159{letter-spacing:0.532224pt;}
.ls4_c02159{letter-spacing:0.544896pt;}
.ls0_c02159{letter-spacing:0.578688pt;}
.ls18_c02159{letter-spacing:0.587136pt;}
.ls3_c02159{letter-spacing:0.637824pt;}
.ls5_c02159{letter-spacing:0.642048pt;}
.wsb_c02159{word-spacing:-13.896960pt;}
.wsc_c02159{word-spacing:-13.445376pt;}
.wsa_c02159{word-spacing:-11.088000pt;}
.ws6_c02159{word-spacing:-11.075328pt;}
.wsf_c02159{word-spacing:-11.037312pt;}
.ws2_c02159{word-spacing:-10.015104pt;}
.ws5_c02159{word-spacing:-9.871488pt;}
.ws18_c02159{word-spacing:-3.198720pt;}
.ws19_c02159{word-spacing:-0.958848pt;}
.ws1a_c02159{word-spacing:-0.908160pt;}
.ws12_c02159{word-spacing:-0.899712pt;}
.ws10_c02159{word-spacing:-0.865920pt;}
.ws13_c02159{word-spacing:-0.105600pt;}
.ws16_c02159{word-spacing:-0.088704pt;}
.ws17_c02159{word-spacing:-0.080256pt;}
.ws14_c02159{word-spacing:-0.076032pt;}
.ws11_c02159{word-spacing:0.000000pt;}
.ws15_c02159{word-spacing:0.384384pt;}
.ws9_c02159{word-spacing:5.892480pt;}
.ws8_c02159{word-spacing:30.966144pt;}
.wse_c02159{word-spacing:32.127744pt;}
.wsd_c02159{word-spacing:32.659968pt;}
.ws1_c02159{word-spacing:33.563904pt;}
.ws0_c02159{word-spacing:33.796224pt;}
.ws3_c02159{word-spacing:34.860672pt;}
.ws4_c02159{word-spacing:35.468928pt;}
.ws7_c02159{word-spacing:37.357056pt;}
._0_c02159{margin-left:-1.731840pt;}
._2_c02159{width:1.317888pt;}
._5_c02159{width:17.761920pt;}
._6_c02159{width:20.845440pt;}
._4_c02159{width:21.947904pt;}
._1_c02159{width:44.668800pt;}
._3_c02159{width:45.805056pt;}
.fs0_c02159{font-size:42.240000pt;}
.fs1_c02159{font-size:53.760000pt;}
.y0_c02159{bottom:0.000000pt;}
.y11_c02159{bottom:18.560400pt;}
.y1d_c02159{bottom:130.665211pt;}
.y1f_c02159{bottom:165.866875pt;}
.y1e_c02159{bottom:174.507067pt;}
.y1c_c02159{bottom:245.225371pt;}
.y1b_c02159{bottom:317.225563pt;}
.y19_c02159{bottom:361.386427pt;}
.y15_c02159{bottom:377.386939pt;}
.y1a_c02159{bottom:407.786011pt;}
.y18_c02159{bottom:437.226235pt;}
.y17_c02159{bottom:453.226747pt;}
.y14_c02159{bottom:482.666971pt;}
.y16_c02159{bottom:497.386555pt;}
.y13_c02159{bottom:513.387067pt;}
.y21_c02159{bottom:527.786667pt;}
.y22_c02159{bottom:530.347067pt;}
.y20_c02159{bottom:546.027067pt;}
.yc_c02159{bottom:579.945467pt;}
.yb_c02159{bottom:593.385179pt;}
.ye_c02159{bottom:628.586875pt;}
.yd_c02159{bottom:637.227067pt;}
.ya_c02159{bottom:707.945339pt;}
.y9_c02159{bottom:779.945531pt;}
.y7_c02159{bottom:823.786427pt;}
.y3_c02159{bottom:839.786939pt;}
.y8_c02159{bottom:870.505979pt;}
.y6_c02159{bottom:899.946203pt;}
.y5_c02159{bottom:915.946715pt;}
.y2_c02159{bottom:945.386939pt;}
.y4_c02159{bottom:959.786555pt;}
.y1_c02159{bottom:975.787067pt;}
.y10_c02159{bottom:990.506667pt;}
.y12_c02159{bottom:993.067067pt;}
.yf_c02159{bottom:1008.747067pt;}
.h3_c02159{height:28.916250pt;}
.h5_c02159{height:32.640000pt;}
.h4_c02159{height:36.802500pt;}
.h1_c02159{height:37.063125pt;}
.h2_c02159{height:37.166250pt;}
.h7_c02159{height:47.171250pt;}
.h6_c02159{height:47.302500pt;}
.h0_c02159{height:1122.666667pt;}
.w2_c02159{width:351.360000pt;}
.w1_c02159{width:793.333333pt;}
.w0_c02159{width:793.626667pt;}
.x0_c02159{left:0.000000pt;}
.xe_c02159{left:104.000000pt;}
.xf_c02159{left:143.360000pt;}
.x8_c02159{left:391.999872pt;}
.x4_c02159{left:396.160512pt;}
.xc_c02159{left:400.960000pt;}
.x7_c02159{left:404.799648pt;}
.x5_c02159{left:410.560128pt;}
.x1_c02159{left:411.840000pt;}
.xa_c02159{left:429.760320pt;}
.x9_c02159{left:437.439552pt;}
.x6_c02159{left:438.400512pt;}
.xd_c02159{left:450.560320pt;}
.x3_c02159{left:455.039904pt;}
.x2_c02159{left:468.159648pt;}
.xb_c02159{left:506.560032pt;}
}





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

.ir_c02160:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02160{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02160;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02160{font-family:ff1_c02160;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02160;src:url('chunks/assets/font_17440ea69461810f6c0eef23.woff2')format("woff");}.ff2_c02160{font-family:ff2_c02160;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02160;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02160{font-family:ff3_c02160;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02160{vertical-align:0.000000px;}
.ls16_c02160{letter-spacing:-0.793584px;}
.ls15_c02160{letter-spacing:-0.774576px;}
.ls17_c02160{letter-spacing:-0.655776px;}
.ls9_c02160{letter-spacing:-0.613008px;}
.lsc_c02160{letter-spacing:-0.574992px;}
.ls12_c02160{letter-spacing:-0.275616px;}
.lsb_c02160{letter-spacing:-0.261360px;}
.ls8_c02160{letter-spacing:-0.242352px;}
.ls6_c02160{letter-spacing:-0.118800px;}
.ls14_c02160{letter-spacing:0.000000px;}
.ls3_c02160{letter-spacing:0.006048px;}
.ls7_c02160{letter-spacing:0.128304px;}
.lsf_c02160{letter-spacing:0.242352px;}
.lse_c02160{letter-spacing:0.508464px;}
.ls2_c02160{letter-spacing:0.514080px;}
.ls11_c02160{letter-spacing:0.536976px;}
.lsd_c02160{letter-spacing:0.579744px;}
.ls13_c02160{letter-spacing:0.594000px;}
.lsa_c02160{letter-spacing:0.598752px;}
.ls4_c02160{letter-spacing:0.613008px;}
.ls0_c02160{letter-spacing:0.651024px;}
.ls10_c02160{letter-spacing:0.660528px;}
.ls1_c02160{letter-spacing:0.717552px;}
.ls5_c02160{letter-spacing:0.722304px;}
.sc__c02160{text-shadow:none;}
.sc0_c02160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02160{-webkit-text-stroke:0px transparent;}
.sc0_c02160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02160{word-spacing:-15.634080px;}
.wsb_c02160{word-spacing:-15.126048px;}
.ws9_c02160{word-spacing:-12.474000px;}
.wsd_c02160{word-spacing:-12.459744px;}
.ws8_c02160{word-spacing:-12.416976px;}
.ws2_c02160{word-spacing:-11.266992px;}
.wsc_c02160{word-spacing:-11.105424px;}
.ws16_c02160{word-spacing:-3.598560px;}
.ws13_c02160{word-spacing:-1.078704px;}
.ws14_c02160{word-spacing:-1.021680px;}
.ws10_c02160{word-spacing:-1.012176px;}
.wse_c02160{word-spacing:-0.974160px;}
.ws11_c02160{word-spacing:-0.118800px;}
.ws12_c02160{word-spacing:-0.099792px;}
.ws15_c02160{word-spacing:-0.085536px;}
.wsf_c02160{word-spacing:0.000000px;}
.ws18_c02160{word-spacing:0.294624px;}
.ws17_c02160{word-spacing:0.432432px;}
.ws7_c02160{word-spacing:36.143712px;}
.ws5_c02160{word-spacing:36.742464px;}
.ws1_c02160{word-spacing:37.759392px;}
.ws0_c02160{word-spacing:38.020752px;}
.ws3_c02160{word-spacing:39.218256px;}
.ws4_c02160{word-spacing:39.902544px;}
.ws6_c02160{word-spacing:42.026688px;}
._0_c02160{margin-left:-1.948320px;}
._2_c02160{width:1.482624px;}
._1_c02160{width:50.252400px;}
._3_c02160{width:51.530688px;}
.fc0_c02160{color:rgb(0,0,0);}
.fs0_c02160{font-size:47.520000px;}
.fs1_c02160{font-size:60.480000px;}
.y0_c02160{bottom:0.000000px;}
.y10_c02160{bottom:20.880450px;}
.y1c_c02160{bottom:146.998362px;}
.y1e_c02160{bottom:186.600234px;}
.y1d_c02160{bottom:196.320450px;}
.y1b_c02160{bottom:275.878542px;}
.y1a_c02160{bottom:356.878758px;}
.y18_c02160{bottom:406.559730px;}
.y14_c02160{bottom:424.560306px;}
.y19_c02160{bottom:458.759262px;}
.y17_c02160{bottom:491.879514px;}
.y16_c02160{bottom:509.880090px;}
.y13_c02160{bottom:543.000342px;}
.y15_c02160{bottom:559.559874px;}
.y12_c02160{bottom:577.560450px;}
.y20_c02160{bottom:593.760000px;}
.y21_c02160{bottom:596.640450px;}
.y1f_c02160{bottom:614.280450px;}
.yb_c02160{bottom:667.558326px;}
.yd_c02160{bottom:707.160234px;}
.yc_c02160{bottom:716.880450px;}
.ya_c02160{bottom:796.438506px;}
.y9_c02160{bottom:877.438722px;}
.y7_c02160{bottom:926.759730px;}
.y3_c02160{bottom:944.760306px;}
.y8_c02160{bottom:979.319226px;}
.y6_c02160{bottom:1012.439478px;}
.y5_c02160{bottom:1030.440054px;}
.y2_c02160{bottom:1063.560306px;}
.y4_c02160{bottom:1079.759874px;}
.y1_c02160{bottom:1097.760450px;}
.yf_c02160{bottom:1114.320000px;}
.y11_c02160{bottom:1117.200450px;}
.ye_c02160{bottom:1134.840450px;}
.h3_c02160{height:32.530781px;}
.h5_c02160{height:36.720000px;}
.h4_c02160{height:41.402813px;}
.h1_c02160{height:41.696016px;}
.h2_c02160{height:41.812031px;}
.h7_c02160{height:53.067656px;}
.h6_c02160{height:53.215313px;}
.h0_c02160{height:1263.000000px;}
.w2_c02160{width:395.280000px;}
.w1_c02160{width:892.500000px;}
.w0_c02160{width:892.830000px;}
.x0_c02160{left:0.000000px;}
.xd_c02160{left:117.000000px;}
.xe_c02160{left:161.280000px;}
.x8_c02160{left:440.999856px;}
.x4_c02160{left:445.680576px;}
.xb_c02160{left:451.080000px;}
.x7_c02160{left:455.399604px;}
.x5_c02160{left:461.880144px;}
.x1_c02160{left:463.320000px;}
.xa_c02160{left:483.480360px;}
.x9_c02160{left:492.119496px;}
.x6_c02160{left:493.200576px;}
.xc_c02160{left:506.880360px;}
.x3_c02160{left:511.919892px;}
.x2_c02160{left:526.679604px;}
@media print{
.v0_c02160{vertical-align:0.000000pt;}
.ls16_c02160{letter-spacing:-0.705408pt;}
.ls15_c02160{letter-spacing:-0.688512pt;}
.ls17_c02160{letter-spacing:-0.582912pt;}
.ls9_c02160{letter-spacing:-0.544896pt;}
.lsc_c02160{letter-spacing:-0.511104pt;}
.ls12_c02160{letter-spacing:-0.244992pt;}
.lsb_c02160{letter-spacing:-0.232320pt;}
.ls8_c02160{letter-spacing:-0.215424pt;}
.ls6_c02160{letter-spacing:-0.105600pt;}
.ls14_c02160{letter-spacing:0.000000pt;}
.ls3_c02160{letter-spacing:0.005376pt;}
.ls7_c02160{letter-spacing:0.114048pt;}
.lsf_c02160{letter-spacing:0.215424pt;}
.lse_c02160{letter-spacing:0.451968pt;}
.ls2_c02160{letter-spacing:0.456960pt;}
.ls11_c02160{letter-spacing:0.477312pt;}
.lsd_c02160{letter-spacing:0.515328pt;}
.ls13_c02160{letter-spacing:0.528000pt;}
.lsa_c02160{letter-spacing:0.532224pt;}
.ls4_c02160{letter-spacing:0.544896pt;}
.ls0_c02160{letter-spacing:0.578688pt;}
.ls10_c02160{letter-spacing:0.587136pt;}
.ls1_c02160{letter-spacing:0.637824pt;}
.ls5_c02160{letter-spacing:0.642048pt;}
.wsa_c02160{word-spacing:-13.896960pt;}
.wsb_c02160{word-spacing:-13.445376pt;}
.ws9_c02160{word-spacing:-11.088000pt;}
.wsd_c02160{word-spacing:-11.075328pt;}
.ws8_c02160{word-spacing:-11.037312pt;}
.ws2_c02160{word-spacing:-10.015104pt;}
.wsc_c02160{word-spacing:-9.871488pt;}
.ws16_c02160{word-spacing:-3.198720pt;}
.ws13_c02160{word-spacing:-0.958848pt;}
.ws14_c02160{word-spacing:-0.908160pt;}
.ws10_c02160{word-spacing:-0.899712pt;}
.wse_c02160{word-spacing:-0.865920pt;}
.ws11_c02160{word-spacing:-0.105600pt;}
.ws12_c02160{word-spacing:-0.088704pt;}
.ws15_c02160{word-spacing:-0.076032pt;}
.wsf_c02160{word-spacing:0.000000pt;}
.ws18_c02160{word-spacing:0.261888pt;}
.ws17_c02160{word-spacing:0.384384pt;}
.ws7_c02160{word-spacing:32.127744pt;}
.ws5_c02160{word-spacing:32.659968pt;}
.ws1_c02160{word-spacing:33.563904pt;}
.ws0_c02160{word-spacing:33.796224pt;}
.ws3_c02160{word-spacing:34.860672pt;}
.ws4_c02160{word-spacing:35.468928pt;}
.ws6_c02160{word-spacing:37.357056pt;}
._0_c02160{margin-left:-1.731840pt;}
._2_c02160{width:1.317888pt;}
._1_c02160{width:44.668800pt;}
._3_c02160{width:45.805056pt;}
.fs0_c02160{font-size:42.240000pt;}
.fs1_c02160{font-size:53.760000pt;}
.y0_c02160{bottom:0.000000pt;}
.y10_c02160{bottom:18.560400pt;}
.y1c_c02160{bottom:130.665211pt;}
.y1e_c02160{bottom:165.866875pt;}
.y1d_c02160{bottom:174.507067pt;}
.y1b_c02160{bottom:245.225371pt;}
.y1a_c02160{bottom:317.225563pt;}
.y18_c02160{bottom:361.386427pt;}
.y14_c02160{bottom:377.386939pt;}
.y19_c02160{bottom:407.786011pt;}
.y17_c02160{bottom:437.226235pt;}
.y16_c02160{bottom:453.226747pt;}
.y13_c02160{bottom:482.666971pt;}
.y15_c02160{bottom:497.386555pt;}
.y12_c02160{bottom:513.387067pt;}
.y20_c02160{bottom:527.786667pt;}
.y21_c02160{bottom:530.347067pt;}
.y1f_c02160{bottom:546.027067pt;}
.yb_c02160{bottom:593.385179pt;}
.yd_c02160{bottom:628.586875pt;}
.yc_c02160{bottom:637.227067pt;}
.ya_c02160{bottom:707.945339pt;}
.y9_c02160{bottom:779.945531pt;}
.y7_c02160{bottom:823.786427pt;}
.y3_c02160{bottom:839.786939pt;}
.y8_c02160{bottom:870.505979pt;}
.y6_c02160{bottom:899.946203pt;}
.y5_c02160{bottom:915.946715pt;}
.y2_c02160{bottom:945.386939pt;}
.y4_c02160{bottom:959.786555pt;}
.y1_c02160{bottom:975.787067pt;}
.yf_c02160{bottom:990.506667pt;}
.y11_c02160{bottom:993.067067pt;}
.ye_c02160{bottom:1008.747067pt;}
.h3_c02160{height:28.916250pt;}
.h5_c02160{height:32.640000pt;}
.h4_c02160{height:36.802500pt;}
.h1_c02160{height:37.063125pt;}
.h2_c02160{height:37.166250pt;}
.h7_c02160{height:47.171250pt;}
.h6_c02160{height:47.302500pt;}
.h0_c02160{height:1122.666667pt;}
.w2_c02160{width:351.360000pt;}
.w1_c02160{width:793.333333pt;}
.w0_c02160{width:793.626667pt;}
.x0_c02160{left:0.000000pt;}
.xd_c02160{left:104.000000pt;}
.xe_c02160{left:143.360000pt;}
.x8_c02160{left:391.999872pt;}
.x4_c02160{left:396.160512pt;}
.xb_c02160{left:400.960000pt;}
.x7_c02160{left:404.799648pt;}
.x5_c02160{left:410.560128pt;}
.x1_c02160{left:411.840000pt;}
.xa_c02160{left:429.760320pt;}
.x9_c02160{left:437.439552pt;}
.x6_c02160{left:438.400512pt;}
.xc_c02160{left:450.560320pt;}
.x3_c02160{left:455.039904pt;}
.x2_c02160{left:468.159648pt;}
}





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

.ir_c02161:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02161{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02161;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02161{font-family:ff1_c02161;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02161;src:url('chunks/assets/font_ef365ef3145006e2776eba18.woff2')format("woff");}.ff2_c02161{font-family:ff2_c02161;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02161;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02161{font-family:ff3_c02161;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02161{vertical-align:0.000000px;}
.ls9_c02161{letter-spacing:-0.613008px;}
.lsc_c02161{letter-spacing:-0.574992px;}
.ls12_c02161{letter-spacing:-0.275616px;}
.lsb_c02161{letter-spacing:-0.261360px;}
.ls8_c02161{letter-spacing:-0.242352px;}
.ls6_c02161{letter-spacing:-0.118800px;}
.ls14_c02161{letter-spacing:0.000000px;}
.ls2_c02161{letter-spacing:0.006048px;}
.ls7_c02161{letter-spacing:0.128304px;}
.lsf_c02161{letter-spacing:0.242352px;}
.lse_c02161{letter-spacing:0.508464px;}
.ls1_c02161{letter-spacing:0.514080px;}
.ls11_c02161{letter-spacing:0.536976px;}
.lsd_c02161{letter-spacing:0.579744px;}
.ls13_c02161{letter-spacing:0.594000px;}
.lsa_c02161{letter-spacing:0.598752px;}
.ls4_c02161{letter-spacing:0.613008px;}
.ls3_c02161{letter-spacing:0.651024px;}
.ls10_c02161{letter-spacing:0.660528px;}
.ls0_c02161{letter-spacing:0.717552px;}
.ls5_c02161{letter-spacing:0.722304px;}
.sc__c02161{text-shadow:none;}
.sc0_c02161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02161{-webkit-text-stroke:0px transparent;}
.sc0_c02161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02161{word-spacing:-15.634080px;}
.wsb_c02161{word-spacing:-15.126048px;}
.ws9_c02161{word-spacing:-12.474000px;}
.ws8_c02161{word-spacing:-12.416976px;}
.ws2_c02161{word-spacing:-11.266992px;}
.ws13_c02161{word-spacing:-3.598560px;}
.ws10_c02161{word-spacing:-1.078704px;}
.ws11_c02161{word-spacing:-1.021680px;}
.ws14_c02161{word-spacing:-1.012176px;}
.wsc_c02161{word-spacing:-0.974160px;}
.wse_c02161{word-spacing:-0.118800px;}
.wsf_c02161{word-spacing:-0.099792px;}
.ws12_c02161{word-spacing:-0.085536px;}
.wsd_c02161{word-spacing:0.000000px;}
.ws7_c02161{word-spacing:36.143712px;}
.ws5_c02161{word-spacing:36.742464px;}
.ws1_c02161{word-spacing:37.759392px;}
.ws0_c02161{word-spacing:38.020752px;}
.ws3_c02161{word-spacing:39.218256px;}
.ws4_c02161{word-spacing:39.902544px;}
.ws6_c02161{word-spacing:42.026688px;}
._0_c02161{margin-left:-1.948320px;}
._2_c02161{width:1.482624px;}
._1_c02161{width:50.252400px;}
._3_c02161{width:51.530688px;}
.fc0_c02161{color:rgb(0,0,0);}
.fs0_c02161{font-size:47.520000px;}
.fs1_c02161{font-size:60.480000px;}
.y0_c02161{bottom:0.000000px;}
.y10_c02161{bottom:20.880450px;}
.y1c_c02161{bottom:146.998362px;}
.y1e_c02161{bottom:186.600234px;}
.y1d_c02161{bottom:196.320450px;}
.y1b_c02161{bottom:275.878542px;}
.y1a_c02161{bottom:356.878758px;}
.y18_c02161{bottom:406.559730px;}
.y14_c02161{bottom:424.560306px;}
.y19_c02161{bottom:458.759262px;}
.y17_c02161{bottom:491.879514px;}
.y16_c02161{bottom:509.880090px;}
.y13_c02161{bottom:543.000342px;}
.y15_c02161{bottom:559.559874px;}
.y12_c02161{bottom:577.560450px;}
.y20_c02161{bottom:593.760000px;}
.y21_c02161{bottom:596.640450px;}
.y1f_c02161{bottom:614.280450px;}
.yb_c02161{bottom:667.558326px;}
.yd_c02161{bottom:707.160234px;}
.yc_c02161{bottom:716.880450px;}
.ya_c02161{bottom:796.438506px;}
.y9_c02161{bottom:877.438722px;}
.y7_c02161{bottom:926.759730px;}
.y3_c02161{bottom:944.760306px;}
.y8_c02161{bottom:979.319226px;}
.y6_c02161{bottom:1012.439478px;}
.y5_c02161{bottom:1030.440054px;}
.y2_c02161{bottom:1063.560306px;}
.y4_c02161{bottom:1079.759874px;}
.y1_c02161{bottom:1097.760450px;}
.yf_c02161{bottom:1114.320000px;}
.y11_c02161{bottom:1117.200450px;}
.ye_c02161{bottom:1134.840450px;}
.h3_c02161{height:32.530781px;}
.h5_c02161{height:36.720000px;}
.h4_c02161{height:41.402813px;}
.h1_c02161{height:41.696016px;}
.h2_c02161{height:41.812031px;}
.h7_c02161{height:53.067656px;}
.h6_c02161{height:53.215313px;}
.h0_c02161{height:1263.000000px;}
.w2_c02161{width:395.280000px;}
.w1_c02161{width:892.500000px;}
.w0_c02161{width:892.830000px;}
.x0_c02161{left:0.000000px;}
.xd_c02161{left:117.000000px;}
.xe_c02161{left:161.280000px;}
.x8_c02161{left:440.999856px;}
.x4_c02161{left:445.680576px;}
.xb_c02161{left:451.080000px;}
.x7_c02161{left:455.399604px;}
.x5_c02161{left:461.880144px;}
.x1_c02161{left:463.320000px;}
.xa_c02161{left:483.480360px;}
.x9_c02161{left:492.119496px;}
.x6_c02161{left:493.200576px;}
.xc_c02161{left:506.880360px;}
.x3_c02161{left:511.919892px;}
.x2_c02161{left:526.679604px;}
@media print{
.v0_c02161{vertical-align:0.000000pt;}
.ls9_c02161{letter-spacing:-0.544896pt;}
.lsc_c02161{letter-spacing:-0.511104pt;}
.ls12_c02161{letter-spacing:-0.244992pt;}
.lsb_c02161{letter-spacing:-0.232320pt;}
.ls8_c02161{letter-spacing:-0.215424pt;}
.ls6_c02161{letter-spacing:-0.105600pt;}
.ls14_c02161{letter-spacing:0.000000pt;}
.ls2_c02161{letter-spacing:0.005376pt;}
.ls7_c02161{letter-spacing:0.114048pt;}
.lsf_c02161{letter-spacing:0.215424pt;}
.lse_c02161{letter-spacing:0.451968pt;}
.ls1_c02161{letter-spacing:0.456960pt;}
.ls11_c02161{letter-spacing:0.477312pt;}
.lsd_c02161{letter-spacing:0.515328pt;}
.ls13_c02161{letter-spacing:0.528000pt;}
.lsa_c02161{letter-spacing:0.532224pt;}
.ls4_c02161{letter-spacing:0.544896pt;}
.ls3_c02161{letter-spacing:0.578688pt;}
.ls10_c02161{letter-spacing:0.587136pt;}
.ls0_c02161{letter-spacing:0.637824pt;}
.ls5_c02161{letter-spacing:0.642048pt;}
.wsa_c02161{word-spacing:-13.896960pt;}
.wsb_c02161{word-spacing:-13.445376pt;}
.ws9_c02161{word-spacing:-11.088000pt;}
.ws8_c02161{word-spacing:-11.037312pt;}
.ws2_c02161{word-spacing:-10.015104pt;}
.ws13_c02161{word-spacing:-3.198720pt;}
.ws10_c02161{word-spacing:-0.958848pt;}
.ws11_c02161{word-spacing:-0.908160pt;}
.ws14_c02161{word-spacing:-0.899712pt;}
.wsc_c02161{word-spacing:-0.865920pt;}
.wse_c02161{word-spacing:-0.105600pt;}
.wsf_c02161{word-spacing:-0.088704pt;}
.ws12_c02161{word-spacing:-0.076032pt;}
.wsd_c02161{word-spacing:0.000000pt;}
.ws7_c02161{word-spacing:32.127744pt;}
.ws5_c02161{word-spacing:32.659968pt;}
.ws1_c02161{word-spacing:33.563904pt;}
.ws0_c02161{word-spacing:33.796224pt;}
.ws3_c02161{word-spacing:34.860672pt;}
.ws4_c02161{word-spacing:35.468928pt;}
.ws6_c02161{word-spacing:37.357056pt;}
._0_c02161{margin-left:-1.731840pt;}
._2_c02161{width:1.317888pt;}
._1_c02161{width:44.668800pt;}
._3_c02161{width:45.805056pt;}
.fs0_c02161{font-size:42.240000pt;}
.fs1_c02161{font-size:53.760000pt;}
.y0_c02161{bottom:0.000000pt;}
.y10_c02161{bottom:18.560400pt;}
.y1c_c02161{bottom:130.665211pt;}
.y1e_c02161{bottom:165.866875pt;}
.y1d_c02161{bottom:174.507067pt;}
.y1b_c02161{bottom:245.225371pt;}
.y1a_c02161{bottom:317.225563pt;}
.y18_c02161{bottom:361.386427pt;}
.y14_c02161{bottom:377.386939pt;}
.y19_c02161{bottom:407.786011pt;}
.y17_c02161{bottom:437.226235pt;}
.y16_c02161{bottom:453.226747pt;}
.y13_c02161{bottom:482.666971pt;}
.y15_c02161{bottom:497.386555pt;}
.y12_c02161{bottom:513.387067pt;}
.y20_c02161{bottom:527.786667pt;}
.y21_c02161{bottom:530.347067pt;}
.y1f_c02161{bottom:546.027067pt;}
.yb_c02161{bottom:593.385179pt;}
.yd_c02161{bottom:628.586875pt;}
.yc_c02161{bottom:637.227067pt;}
.ya_c02161{bottom:707.945339pt;}
.y9_c02161{bottom:779.945531pt;}
.y7_c02161{bottom:823.786427pt;}
.y3_c02161{bottom:839.786939pt;}
.y8_c02161{bottom:870.505979pt;}
.y6_c02161{bottom:899.946203pt;}
.y5_c02161{bottom:915.946715pt;}
.y2_c02161{bottom:945.386939pt;}
.y4_c02161{bottom:959.786555pt;}
.y1_c02161{bottom:975.787067pt;}
.yf_c02161{bottom:990.506667pt;}
.y11_c02161{bottom:993.067067pt;}
.ye_c02161{bottom:1008.747067pt;}
.h3_c02161{height:28.916250pt;}
.h5_c02161{height:32.640000pt;}
.h4_c02161{height:36.802500pt;}
.h1_c02161{height:37.063125pt;}
.h2_c02161{height:37.166250pt;}
.h7_c02161{height:47.171250pt;}
.h6_c02161{height:47.302500pt;}
.h0_c02161{height:1122.666667pt;}
.w2_c02161{width:351.360000pt;}
.w1_c02161{width:793.333333pt;}
.w0_c02161{width:793.626667pt;}
.x0_c02161{left:0.000000pt;}
.xd_c02161{left:104.000000pt;}
.xe_c02161{left:143.360000pt;}
.x8_c02161{left:391.999872pt;}
.x4_c02161{left:396.160512pt;}
.xb_c02161{left:400.960000pt;}
.x7_c02161{left:404.799648pt;}
.x5_c02161{left:410.560128pt;}
.x1_c02161{left:411.840000pt;}
.xa_c02161{left:429.760320pt;}
.x9_c02161{left:437.439552pt;}
.x6_c02161{left:438.400512pt;}
.xc_c02161{left:450.560320pt;}
.x3_c02161{left:455.039904pt;}
.x2_c02161{left:468.159648pt;}
}





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

.ir_c02162:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02162{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02162;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02162{font-family:ff1_c02162;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02162;src:url('chunks/assets/font_e28adbd834c37e03df7f0d32.woff2')format("woff");}.ff2_c02162{font-family:ff2_c02162;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02162;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02162{font-family:ff3_c02162;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02162{vertical-align:0.000000px;}
.ls9_c02162{letter-spacing:-0.613008px;}
.lsc_c02162{letter-spacing:-0.574992px;}
.ls12_c02162{letter-spacing:-0.275616px;}
.lsb_c02162{letter-spacing:-0.261360px;}
.ls8_c02162{letter-spacing:-0.242352px;}
.ls6_c02162{letter-spacing:-0.118800px;}
.ls14_c02162{letter-spacing:0.000000px;}
.ls3_c02162{letter-spacing:0.006048px;}
.ls7_c02162{letter-spacing:0.128304px;}
.lsf_c02162{letter-spacing:0.242352px;}
.lse_c02162{letter-spacing:0.508464px;}
.ls2_c02162{letter-spacing:0.514080px;}
.ls11_c02162{letter-spacing:0.536976px;}
.lsd_c02162{letter-spacing:0.579744px;}
.ls13_c02162{letter-spacing:0.594000px;}
.lsa_c02162{letter-spacing:0.598752px;}
.ls4_c02162{letter-spacing:0.613008px;}
.ls0_c02162{letter-spacing:0.651024px;}
.ls10_c02162{letter-spacing:0.660528px;}
.ls1_c02162{letter-spacing:0.717552px;}
.ls5_c02162{letter-spacing:0.722304px;}
.sc__c02162{text-shadow:none;}
.sc0_c02162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02162{-webkit-text-stroke:0px transparent;}
.sc0_c02162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02162{word-spacing:-15.634080px;}
.wsb_c02162{word-spacing:-15.126048px;}
.ws9_c02162{word-spacing:-12.474000px;}
.ws8_c02162{word-spacing:-12.416976px;}
.ws2_c02162{word-spacing:-11.266992px;}
.ws14_c02162{word-spacing:-3.598560px;}
.ws11_c02162{word-spacing:-1.078704px;}
.ws12_c02162{word-spacing:-1.021680px;}
.wse_c02162{word-spacing:-1.012176px;}
.wsc_c02162{word-spacing:-0.974160px;}
.wsf_c02162{word-spacing:-0.118800px;}
.ws10_c02162{word-spacing:-0.099792px;}
.ws13_c02162{word-spacing:-0.085536px;}
.wsd_c02162{word-spacing:0.000000px;}
.ws7_c02162{word-spacing:36.143712px;}
.ws5_c02162{word-spacing:36.742464px;}
.ws1_c02162{word-spacing:37.759392px;}
.ws0_c02162{word-spacing:38.020752px;}
.ws3_c02162{word-spacing:39.218256px;}
.ws4_c02162{word-spacing:39.902544px;}
.ws6_c02162{word-spacing:42.026688px;}
._0_c02162{margin-left:-1.948320px;}
._2_c02162{width:1.482624px;}
._1_c02162{width:50.252400px;}
._3_c02162{width:51.530688px;}
.fc0_c02162{color:rgb(0,0,0);}
.fs0_c02162{font-size:47.520000px;}
.fs1_c02162{font-size:60.480000px;}
.y0_c02162{bottom:0.000000px;}
.y10_c02162{bottom:20.880450px;}
.y1c_c02162{bottom:146.998362px;}
.y1e_c02162{bottom:186.600234px;}
.y1d_c02162{bottom:196.320450px;}
.y1b_c02162{bottom:275.878542px;}
.y1a_c02162{bottom:356.878758px;}
.y18_c02162{bottom:406.559730px;}
.y14_c02162{bottom:424.560306px;}
.y19_c02162{bottom:458.759262px;}
.y17_c02162{bottom:491.879514px;}
.y16_c02162{bottom:509.880090px;}
.y13_c02162{bottom:543.000342px;}
.y15_c02162{bottom:559.559874px;}
.y12_c02162{bottom:577.560450px;}
.y20_c02162{bottom:593.760000px;}
.y21_c02162{bottom:596.640450px;}
.y1f_c02162{bottom:614.280450px;}
.yb_c02162{bottom:667.558326px;}
.yd_c02162{bottom:707.160234px;}
.yc_c02162{bottom:716.880450px;}
.ya_c02162{bottom:796.438506px;}
.y9_c02162{bottom:877.438722px;}
.y7_c02162{bottom:926.759730px;}
.y3_c02162{bottom:944.760306px;}
.y8_c02162{bottom:979.319226px;}
.y6_c02162{bottom:1012.439478px;}
.y5_c02162{bottom:1030.440054px;}
.y2_c02162{bottom:1063.560306px;}
.y4_c02162{bottom:1079.759874px;}
.y1_c02162{bottom:1097.760450px;}
.yf_c02162{bottom:1114.320000px;}
.y11_c02162{bottom:1117.200450px;}
.ye_c02162{bottom:1134.840450px;}
.h3_c02162{height:32.530781px;}
.h5_c02162{height:36.720000px;}
.h4_c02162{height:41.402813px;}
.h1_c02162{height:41.696016px;}
.h2_c02162{height:41.812031px;}
.h7_c02162{height:53.067656px;}
.h6_c02162{height:53.215313px;}
.h0_c02162{height:1263.000000px;}
.w2_c02162{width:395.280000px;}
.w1_c02162{width:892.500000px;}
.w0_c02162{width:892.830000px;}
.x0_c02162{left:0.000000px;}
.xd_c02162{left:117.000000px;}
.xe_c02162{left:161.280000px;}
.x8_c02162{left:440.999856px;}
.x4_c02162{left:445.680576px;}
.xb_c02162{left:451.080000px;}
.x7_c02162{left:455.399604px;}
.x5_c02162{left:461.880144px;}
.x1_c02162{left:463.320000px;}
.xa_c02162{left:483.480360px;}
.x9_c02162{left:492.119496px;}
.x6_c02162{left:493.200576px;}
.xc_c02162{left:506.880360px;}
.x3_c02162{left:511.919892px;}
.x2_c02162{left:526.679604px;}
@media print{
.v0_c02162{vertical-align:0.000000pt;}
.ls9_c02162{letter-spacing:-0.544896pt;}
.lsc_c02162{letter-spacing:-0.511104pt;}
.ls12_c02162{letter-spacing:-0.244992pt;}
.lsb_c02162{letter-spacing:-0.232320pt;}
.ls8_c02162{letter-spacing:-0.215424pt;}
.ls6_c02162{letter-spacing:-0.105600pt;}
.ls14_c02162{letter-spacing:0.000000pt;}
.ls3_c02162{letter-spacing:0.005376pt;}
.ls7_c02162{letter-spacing:0.114048pt;}
.lsf_c02162{letter-spacing:0.215424pt;}
.lse_c02162{letter-spacing:0.451968pt;}
.ls2_c02162{letter-spacing:0.456960pt;}
.ls11_c02162{letter-spacing:0.477312pt;}
.lsd_c02162{letter-spacing:0.515328pt;}
.ls13_c02162{letter-spacing:0.528000pt;}
.lsa_c02162{letter-spacing:0.532224pt;}
.ls4_c02162{letter-spacing:0.544896pt;}
.ls0_c02162{letter-spacing:0.578688pt;}
.ls10_c02162{letter-spacing:0.587136pt;}
.ls1_c02162{letter-spacing:0.637824pt;}
.ls5_c02162{letter-spacing:0.642048pt;}
.wsa_c02162{word-spacing:-13.896960pt;}
.wsb_c02162{word-spacing:-13.445376pt;}
.ws9_c02162{word-spacing:-11.088000pt;}
.ws8_c02162{word-spacing:-11.037312pt;}
.ws2_c02162{word-spacing:-10.015104pt;}
.ws14_c02162{word-spacing:-3.198720pt;}
.ws11_c02162{word-spacing:-0.958848pt;}
.ws12_c02162{word-spacing:-0.908160pt;}
.wse_c02162{word-spacing:-0.899712pt;}
.wsc_c02162{word-spacing:-0.865920pt;}
.wsf_c02162{word-spacing:-0.105600pt;}
.ws10_c02162{word-spacing:-0.088704pt;}
.ws13_c02162{word-spacing:-0.076032pt;}
.wsd_c02162{word-spacing:0.000000pt;}
.ws7_c02162{word-spacing:32.127744pt;}
.ws5_c02162{word-spacing:32.659968pt;}
.ws1_c02162{word-spacing:33.563904pt;}
.ws0_c02162{word-spacing:33.796224pt;}
.ws3_c02162{word-spacing:34.860672pt;}
.ws4_c02162{word-spacing:35.468928pt;}
.ws6_c02162{word-spacing:37.357056pt;}
._0_c02162{margin-left:-1.731840pt;}
._2_c02162{width:1.317888pt;}
._1_c02162{width:44.668800pt;}
._3_c02162{width:45.805056pt;}
.fs0_c02162{font-size:42.240000pt;}
.fs1_c02162{font-size:53.760000pt;}
.y0_c02162{bottom:0.000000pt;}
.y10_c02162{bottom:18.560400pt;}
.y1c_c02162{bottom:130.665211pt;}
.y1e_c02162{bottom:165.866875pt;}
.y1d_c02162{bottom:174.507067pt;}
.y1b_c02162{bottom:245.225371pt;}
.y1a_c02162{bottom:317.225563pt;}
.y18_c02162{bottom:361.386427pt;}
.y14_c02162{bottom:377.386939pt;}
.y19_c02162{bottom:407.786011pt;}
.y17_c02162{bottom:437.226235pt;}
.y16_c02162{bottom:453.226747pt;}
.y13_c02162{bottom:482.666971pt;}
.y15_c02162{bottom:497.386555pt;}
.y12_c02162{bottom:513.387067pt;}
.y20_c02162{bottom:527.786667pt;}
.y21_c02162{bottom:530.347067pt;}
.y1f_c02162{bottom:546.027067pt;}
.yb_c02162{bottom:593.385179pt;}
.yd_c02162{bottom:628.586875pt;}
.yc_c02162{bottom:637.227067pt;}
.ya_c02162{bottom:707.945339pt;}
.y9_c02162{bottom:779.945531pt;}
.y7_c02162{bottom:823.786427pt;}
.y3_c02162{bottom:839.786939pt;}
.y8_c02162{bottom:870.505979pt;}
.y6_c02162{bottom:899.946203pt;}
.y5_c02162{bottom:915.946715pt;}
.y2_c02162{bottom:945.386939pt;}
.y4_c02162{bottom:959.786555pt;}
.y1_c02162{bottom:975.787067pt;}
.yf_c02162{bottom:990.506667pt;}
.y11_c02162{bottom:993.067067pt;}
.ye_c02162{bottom:1008.747067pt;}
.h3_c02162{height:28.916250pt;}
.h5_c02162{height:32.640000pt;}
.h4_c02162{height:36.802500pt;}
.h1_c02162{height:37.063125pt;}
.h2_c02162{height:37.166250pt;}
.h7_c02162{height:47.171250pt;}
.h6_c02162{height:47.302500pt;}
.h0_c02162{height:1122.666667pt;}
.w2_c02162{width:351.360000pt;}
.w1_c02162{width:793.333333pt;}
.w0_c02162{width:793.626667pt;}
.x0_c02162{left:0.000000pt;}
.xd_c02162{left:104.000000pt;}
.xe_c02162{left:143.360000pt;}
.x8_c02162{left:391.999872pt;}
.x4_c02162{left:396.160512pt;}
.xb_c02162{left:400.960000pt;}
.x7_c02162{left:404.799648pt;}
.x5_c02162{left:410.560128pt;}
.x1_c02162{left:411.840000pt;}
.xa_c02162{left:429.760320pt;}
.x9_c02162{left:437.439552pt;}
.x6_c02162{left:438.400512pt;}
.xc_c02162{left:450.560320pt;}
.x3_c02162{left:455.039904pt;}
.x2_c02162{left:468.159648pt;}
}





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

.ir_c02163:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02163{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02163;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02163{font-family:ff1_c02163;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02163;src:url('chunks/assets/font_e28adbd834c37e03df7f0d32.woff2')format("woff");}.ff2_c02163{font-family:ff2_c02163;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02163;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02163{font-family:ff3_c02163;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02163{vertical-align:0.000000px;}
.ls9_c02163{letter-spacing:-0.613008px;}
.lsc_c02163{letter-spacing:-0.574992px;}
.ls12_c02163{letter-spacing:-0.275616px;}
.lsb_c02163{letter-spacing:-0.261360px;}
.ls8_c02163{letter-spacing:-0.242352px;}
.ls6_c02163{letter-spacing:-0.118800px;}
.ls14_c02163{letter-spacing:0.000000px;}
.ls3_c02163{letter-spacing:0.006048px;}
.ls7_c02163{letter-spacing:0.128304px;}
.lsf_c02163{letter-spacing:0.242352px;}
.lse_c02163{letter-spacing:0.508464px;}
.ls2_c02163{letter-spacing:0.514080px;}
.ls11_c02163{letter-spacing:0.536976px;}
.lsd_c02163{letter-spacing:0.579744px;}
.ls13_c02163{letter-spacing:0.594000px;}
.lsa_c02163{letter-spacing:0.598752px;}
.ls4_c02163{letter-spacing:0.613008px;}
.ls0_c02163{letter-spacing:0.651024px;}
.ls10_c02163{letter-spacing:0.660528px;}
.ls1_c02163{letter-spacing:0.717552px;}
.ls5_c02163{letter-spacing:0.722304px;}
.sc__c02163{text-shadow:none;}
.sc0_c02163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02163{-webkit-text-stroke:0px transparent;}
.sc0_c02163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02163{word-spacing:-15.634080px;}
.wsb_c02163{word-spacing:-15.126048px;}
.ws9_c02163{word-spacing:-12.474000px;}
.ws8_c02163{word-spacing:-12.416976px;}
.wsc_c02163{word-spacing:-12.388464px;}
.ws2_c02163{word-spacing:-11.266992px;}
.ws15_c02163{word-spacing:-3.598560px;}
.ws12_c02163{word-spacing:-1.078704px;}
.ws13_c02163{word-spacing:-1.021680px;}
.wsf_c02163{word-spacing:-1.012176px;}
.wsd_c02163{word-spacing:-0.974160px;}
.ws10_c02163{word-spacing:-0.118800px;}
.ws11_c02163{word-spacing:-0.099792px;}
.ws14_c02163{word-spacing:-0.085536px;}
.wse_c02163{word-spacing:0.000000px;}
.ws7_c02163{word-spacing:36.143712px;}
.ws5_c02163{word-spacing:36.742464px;}
.ws1_c02163{word-spacing:37.759392px;}
.ws0_c02163{word-spacing:38.020752px;}
.ws3_c02163{word-spacing:39.218256px;}
.ws4_c02163{word-spacing:39.902544px;}
.ws6_c02163{word-spacing:42.026688px;}
._0_c02163{margin-left:-1.948320px;}
._2_c02163{width:1.482624px;}
._1_c02163{width:50.252400px;}
._3_c02163{width:51.530688px;}
.fc0_c02163{color:rgb(0,0,0);}
.fs0_c02163{font-size:47.520000px;}
.fs1_c02163{font-size:60.480000px;}
.y0_c02163{bottom:0.000000px;}
.y10_c02163{bottom:20.880450px;}
.y1c_c02163{bottom:146.998362px;}
.y1e_c02163{bottom:186.600234px;}
.y1d_c02163{bottom:196.320450px;}
.y1b_c02163{bottom:275.878542px;}
.y1a_c02163{bottom:356.878758px;}
.y18_c02163{bottom:406.559730px;}
.y14_c02163{bottom:424.560306px;}
.y19_c02163{bottom:458.759262px;}
.y17_c02163{bottom:491.879514px;}
.y16_c02163{bottom:509.880090px;}
.y13_c02163{bottom:543.000342px;}
.y15_c02163{bottom:559.559874px;}
.y12_c02163{bottom:577.560450px;}
.y20_c02163{bottom:593.760000px;}
.y21_c02163{bottom:596.640450px;}
.y1f_c02163{bottom:614.280450px;}
.yb_c02163{bottom:667.558326px;}
.yd_c02163{bottom:707.160234px;}
.yc_c02163{bottom:716.880450px;}
.ya_c02163{bottom:796.438506px;}
.y9_c02163{bottom:877.438722px;}
.y7_c02163{bottom:926.759730px;}
.y3_c02163{bottom:944.760306px;}
.y8_c02163{bottom:979.319226px;}
.y6_c02163{bottom:1012.439478px;}
.y5_c02163{bottom:1030.440054px;}
.y2_c02163{bottom:1063.560306px;}
.y4_c02163{bottom:1079.759874px;}
.y1_c02163{bottom:1097.760450px;}
.yf_c02163{bottom:1114.320000px;}
.y11_c02163{bottom:1117.200450px;}
.ye_c02163{bottom:1134.840450px;}
.h3_c02163{height:32.530781px;}
.h5_c02163{height:36.720000px;}
.h4_c02163{height:41.402813px;}
.h1_c02163{height:41.696016px;}
.h2_c02163{height:41.812031px;}
.h7_c02163{height:53.067656px;}
.h6_c02163{height:53.215313px;}
.h0_c02163{height:1263.000000px;}
.w2_c02163{width:395.280000px;}
.w1_c02163{width:892.500000px;}
.w0_c02163{width:892.830000px;}
.x0_c02163{left:0.000000px;}
.xd_c02163{left:117.000000px;}
.xe_c02163{left:161.280000px;}
.x8_c02163{left:440.999856px;}
.x4_c02163{left:445.680576px;}
.xb_c02163{left:451.080000px;}
.x7_c02163{left:455.399604px;}
.x5_c02163{left:461.880144px;}
.x1_c02163{left:463.320000px;}
.xa_c02163{left:483.480360px;}
.x9_c02163{left:492.119496px;}
.x6_c02163{left:493.200576px;}
.xc_c02163{left:506.880360px;}
.x3_c02163{left:511.919892px;}
.x2_c02163{left:526.679604px;}
@media print{
.v0_c02163{vertical-align:0.000000pt;}
.ls9_c02163{letter-spacing:-0.544896pt;}
.lsc_c02163{letter-spacing:-0.511104pt;}
.ls12_c02163{letter-spacing:-0.244992pt;}
.lsb_c02163{letter-spacing:-0.232320pt;}
.ls8_c02163{letter-spacing:-0.215424pt;}
.ls6_c02163{letter-spacing:-0.105600pt;}
.ls14_c02163{letter-spacing:0.000000pt;}
.ls3_c02163{letter-spacing:0.005376pt;}
.ls7_c02163{letter-spacing:0.114048pt;}
.lsf_c02163{letter-spacing:0.215424pt;}
.lse_c02163{letter-spacing:0.451968pt;}
.ls2_c02163{letter-spacing:0.456960pt;}
.ls11_c02163{letter-spacing:0.477312pt;}
.lsd_c02163{letter-spacing:0.515328pt;}
.ls13_c02163{letter-spacing:0.528000pt;}
.lsa_c02163{letter-spacing:0.532224pt;}
.ls4_c02163{letter-spacing:0.544896pt;}
.ls0_c02163{letter-spacing:0.578688pt;}
.ls10_c02163{letter-spacing:0.587136pt;}
.ls1_c02163{letter-spacing:0.637824pt;}
.ls5_c02163{letter-spacing:0.642048pt;}
.wsa_c02163{word-spacing:-13.896960pt;}
.wsb_c02163{word-spacing:-13.445376pt;}
.ws9_c02163{word-spacing:-11.088000pt;}
.ws8_c02163{word-spacing:-11.037312pt;}
.wsc_c02163{word-spacing:-11.011968pt;}
.ws2_c02163{word-spacing:-10.015104pt;}
.ws15_c02163{word-spacing:-3.198720pt;}
.ws12_c02163{word-spacing:-0.958848pt;}
.ws13_c02163{word-spacing:-0.908160pt;}
.wsf_c02163{word-spacing:-0.899712pt;}
.wsd_c02163{word-spacing:-0.865920pt;}
.ws10_c02163{word-spacing:-0.105600pt;}
.ws11_c02163{word-spacing:-0.088704pt;}
.ws14_c02163{word-spacing:-0.076032pt;}
.wse_c02163{word-spacing:0.000000pt;}
.ws7_c02163{word-spacing:32.127744pt;}
.ws5_c02163{word-spacing:32.659968pt;}
.ws1_c02163{word-spacing:33.563904pt;}
.ws0_c02163{word-spacing:33.796224pt;}
.ws3_c02163{word-spacing:34.860672pt;}
.ws4_c02163{word-spacing:35.468928pt;}
.ws6_c02163{word-spacing:37.357056pt;}
._0_c02163{margin-left:-1.731840pt;}
._2_c02163{width:1.317888pt;}
._1_c02163{width:44.668800pt;}
._3_c02163{width:45.805056pt;}
.fs0_c02163{font-size:42.240000pt;}
.fs1_c02163{font-size:53.760000pt;}
.y0_c02163{bottom:0.000000pt;}
.y10_c02163{bottom:18.560400pt;}
.y1c_c02163{bottom:130.665211pt;}
.y1e_c02163{bottom:165.866875pt;}
.y1d_c02163{bottom:174.507067pt;}
.y1b_c02163{bottom:245.225371pt;}
.y1a_c02163{bottom:317.225563pt;}
.y18_c02163{bottom:361.386427pt;}
.y14_c02163{bottom:377.386939pt;}
.y19_c02163{bottom:407.786011pt;}
.y17_c02163{bottom:437.226235pt;}
.y16_c02163{bottom:453.226747pt;}
.y13_c02163{bottom:482.666971pt;}
.y15_c02163{bottom:497.386555pt;}
.y12_c02163{bottom:513.387067pt;}
.y20_c02163{bottom:527.786667pt;}
.y21_c02163{bottom:530.347067pt;}
.y1f_c02163{bottom:546.027067pt;}
.yb_c02163{bottom:593.385179pt;}
.yd_c02163{bottom:628.586875pt;}
.yc_c02163{bottom:637.227067pt;}
.ya_c02163{bottom:707.945339pt;}
.y9_c02163{bottom:779.945531pt;}
.y7_c02163{bottom:823.786427pt;}
.y3_c02163{bottom:839.786939pt;}
.y8_c02163{bottom:870.505979pt;}
.y6_c02163{bottom:899.946203pt;}
.y5_c02163{bottom:915.946715pt;}
.y2_c02163{bottom:945.386939pt;}
.y4_c02163{bottom:959.786555pt;}
.y1_c02163{bottom:975.787067pt;}
.yf_c02163{bottom:990.506667pt;}
.y11_c02163{bottom:993.067067pt;}
.ye_c02163{bottom:1008.747067pt;}
.h3_c02163{height:28.916250pt;}
.h5_c02163{height:32.640000pt;}
.h4_c02163{height:36.802500pt;}
.h1_c02163{height:37.063125pt;}
.h2_c02163{height:37.166250pt;}
.h7_c02163{height:47.171250pt;}
.h6_c02163{height:47.302500pt;}
.h0_c02163{height:1122.666667pt;}
.w2_c02163{width:351.360000pt;}
.w1_c02163{width:793.333333pt;}
.w0_c02163{width:793.626667pt;}
.x0_c02163{left:0.000000pt;}
.xd_c02163{left:104.000000pt;}
.xe_c02163{left:143.360000pt;}
.x8_c02163{left:391.999872pt;}
.x4_c02163{left:396.160512pt;}
.xb_c02163{left:400.960000pt;}
.x7_c02163{left:404.799648pt;}
.x5_c02163{left:410.560128pt;}
.x1_c02163{left:411.840000pt;}
.xa_c02163{left:429.760320pt;}
.x9_c02163{left:437.439552pt;}
.x6_c02163{left:438.400512pt;}
.xc_c02163{left:450.560320pt;}
.x3_c02163{left:455.039904pt;}
.x2_c02163{left:468.159648pt;}
}





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

.ir_c02164:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02164{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02164;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02164{font-family:ff1_c02164;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02164;src:url('chunks/assets/font_6d96c23f832ff2400000a85a.woff2')format("woff");}.ff2_c02164{font-family:ff2_c02164;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02164;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02164{font-family:ff3_c02164;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02164{vertical-align:0.000000px;}
.ls8_c02164{letter-spacing:-0.613008px;}
.lsb_c02164{letter-spacing:-0.574992px;}
.ls11_c02164{letter-spacing:-0.275616px;}
.lsa_c02164{letter-spacing:-0.261360px;}
.ls7_c02164{letter-spacing:-0.242352px;}
.ls5_c02164{letter-spacing:-0.118800px;}
.lsf_c02164{letter-spacing:-0.047520px;}
.ls13_c02164{letter-spacing:0.000000px;}
.ls2_c02164{letter-spacing:0.006048px;}
.ls6_c02164{letter-spacing:0.128304px;}
.lsd_c02164{letter-spacing:0.508464px;}
.ls1_c02164{letter-spacing:0.514080px;}
.ls10_c02164{letter-spacing:0.536976px;}
.lsc_c02164{letter-spacing:0.579744px;}
.ls12_c02164{letter-spacing:0.594000px;}
.ls9_c02164{letter-spacing:0.598752px;}
.ls3_c02164{letter-spacing:0.613008px;}
.lse_c02164{letter-spacing:0.660528px;}
.ls0_c02164{letter-spacing:0.717552px;}
.ls4_c02164{letter-spacing:0.722304px;}
.sc__c02164{text-shadow:none;}
.sc0_c02164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02164{-webkit-text-stroke:0px transparent;}
.sc0_c02164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02164{word-spacing:-15.634080px;}
.wsb_c02164{word-spacing:-15.126048px;}
.ws9_c02164{word-spacing:-12.474000px;}
.ws8_c02164{word-spacing:-12.416976px;}
.ws6_c02164{word-spacing:-12.388464px;}
.ws2_c02164{word-spacing:-11.266992px;}
.ws14_c02164{word-spacing:-3.598560px;}
.ws10_c02164{word-spacing:-1.078704px;}
.ws11_c02164{word-spacing:-1.021680px;}
.wsc_c02164{word-spacing:-0.974160px;}
.ws12_c02164{word-spacing:-0.313632px;}
.wse_c02164{word-spacing:-0.118800px;}
.wsf_c02164{word-spacing:-0.099792px;}
.ws13_c02164{word-spacing:-0.085536px;}
.wsd_c02164{word-spacing:0.000000px;}
.ws7_c02164{word-spacing:36.143712px;}
.ws5_c02164{word-spacing:36.742464px;}
.ws1_c02164{word-spacing:37.759392px;}
.ws0_c02164{word-spacing:38.020752px;}
.ws3_c02164{word-spacing:39.218256px;}
.ws4_c02164{word-spacing:39.902544px;}
._0_c02164{margin-left:-1.948320px;}
._2_c02164{width:1.482624px;}
._1_c02164{width:50.252400px;}
._3_c02164{width:51.530688px;}
.fc0_c02164{color:rgb(0,0,0);}
.fs0_c02164{font-size:47.520000px;}
.fs1_c02164{font-size:60.480000px;}
.y0_c02164{bottom:0.000000px;}
.y10_c02164{bottom:20.880450px;}
.y1c_c02164{bottom:146.998362px;}
.y1e_c02164{bottom:186.600234px;}
.y1d_c02164{bottom:196.320450px;}
.y1b_c02164{bottom:275.878542px;}
.y1a_c02164{bottom:356.878758px;}
.y18_c02164{bottom:406.559730px;}
.y14_c02164{bottom:424.560306px;}
.y19_c02164{bottom:458.759262px;}
.y17_c02164{bottom:491.879514px;}
.y16_c02164{bottom:509.880090px;}
.y13_c02164{bottom:543.000342px;}
.y15_c02164{bottom:559.559874px;}
.y12_c02164{bottom:577.560450px;}
.y20_c02164{bottom:593.760000px;}
.y21_c02164{bottom:596.640450px;}
.y1f_c02164{bottom:614.280450px;}
.yb_c02164{bottom:667.558326px;}
.yd_c02164{bottom:707.160234px;}
.yc_c02164{bottom:716.880450px;}
.ya_c02164{bottom:796.438506px;}
.y9_c02164{bottom:877.438722px;}
.y7_c02164{bottom:926.759730px;}
.y3_c02164{bottom:944.760306px;}
.y8_c02164{bottom:979.319226px;}
.y6_c02164{bottom:1012.439478px;}
.y5_c02164{bottom:1030.440054px;}
.y2_c02164{bottom:1063.560306px;}
.y4_c02164{bottom:1079.759874px;}
.y1_c02164{bottom:1097.760450px;}
.yf_c02164{bottom:1114.320000px;}
.y11_c02164{bottom:1117.200450px;}
.ye_c02164{bottom:1134.840450px;}
.h3_c02164{height:32.530781px;}
.h5_c02164{height:36.720000px;}
.h4_c02164{height:41.402813px;}
.h1_c02164{height:41.696016px;}
.h2_c02164{height:41.812031px;}
.h7_c02164{height:53.067656px;}
.h6_c02164{height:53.215313px;}
.h0_c02164{height:1263.000000px;}
.w2_c02164{width:395.280000px;}
.w1_c02164{width:892.500000px;}
.w0_c02164{width:892.830000px;}
.x0_c02164{left:0.000000px;}
.xd_c02164{left:117.000000px;}
.xe_c02164{left:161.280000px;}
.x8_c02164{left:440.999856px;}
.x4_c02164{left:445.680576px;}
.xb_c02164{left:451.080000px;}
.x7_c02164{left:455.399604px;}
.x5_c02164{left:461.880144px;}
.x1_c02164{left:463.320000px;}
.xa_c02164{left:483.480360px;}
.x9_c02164{left:492.119496px;}
.x6_c02164{left:493.200576px;}
.xc_c02164{left:506.880360px;}
.x3_c02164{left:511.919892px;}
.x2_c02164{left:526.679604px;}
@media print{
.v0_c02164{vertical-align:0.000000pt;}
.ls8_c02164{letter-spacing:-0.544896pt;}
.lsb_c02164{letter-spacing:-0.511104pt;}
.ls11_c02164{letter-spacing:-0.244992pt;}
.lsa_c02164{letter-spacing:-0.232320pt;}
.ls7_c02164{letter-spacing:-0.215424pt;}
.ls5_c02164{letter-spacing:-0.105600pt;}
.lsf_c02164{letter-spacing:-0.042240pt;}
.ls13_c02164{letter-spacing:0.000000pt;}
.ls2_c02164{letter-spacing:0.005376pt;}
.ls6_c02164{letter-spacing:0.114048pt;}
.lsd_c02164{letter-spacing:0.451968pt;}
.ls1_c02164{letter-spacing:0.456960pt;}
.ls10_c02164{letter-spacing:0.477312pt;}
.lsc_c02164{letter-spacing:0.515328pt;}
.ls12_c02164{letter-spacing:0.528000pt;}
.ls9_c02164{letter-spacing:0.532224pt;}
.ls3_c02164{letter-spacing:0.544896pt;}
.lse_c02164{letter-spacing:0.587136pt;}
.ls0_c02164{letter-spacing:0.637824pt;}
.ls4_c02164{letter-spacing:0.642048pt;}
.wsa_c02164{word-spacing:-13.896960pt;}
.wsb_c02164{word-spacing:-13.445376pt;}
.ws9_c02164{word-spacing:-11.088000pt;}
.ws8_c02164{word-spacing:-11.037312pt;}
.ws6_c02164{word-spacing:-11.011968pt;}
.ws2_c02164{word-spacing:-10.015104pt;}
.ws14_c02164{word-spacing:-3.198720pt;}
.ws10_c02164{word-spacing:-0.958848pt;}
.ws11_c02164{word-spacing:-0.908160pt;}
.wsc_c02164{word-spacing:-0.865920pt;}
.ws12_c02164{word-spacing:-0.278784pt;}
.wse_c02164{word-spacing:-0.105600pt;}
.wsf_c02164{word-spacing:-0.088704pt;}
.ws13_c02164{word-spacing:-0.076032pt;}
.wsd_c02164{word-spacing:0.000000pt;}
.ws7_c02164{word-spacing:32.127744pt;}
.ws5_c02164{word-spacing:32.659968pt;}
.ws1_c02164{word-spacing:33.563904pt;}
.ws0_c02164{word-spacing:33.796224pt;}
.ws3_c02164{word-spacing:34.860672pt;}
.ws4_c02164{word-spacing:35.468928pt;}
._0_c02164{margin-left:-1.731840pt;}
._2_c02164{width:1.317888pt;}
._1_c02164{width:44.668800pt;}
._3_c02164{width:45.805056pt;}
.fs0_c02164{font-size:42.240000pt;}
.fs1_c02164{font-size:53.760000pt;}
.y0_c02164{bottom:0.000000pt;}
.y10_c02164{bottom:18.560400pt;}
.y1c_c02164{bottom:130.665211pt;}
.y1e_c02164{bottom:165.866875pt;}
.y1d_c02164{bottom:174.507067pt;}
.y1b_c02164{bottom:245.225371pt;}
.y1a_c02164{bottom:317.225563pt;}
.y18_c02164{bottom:361.386427pt;}
.y14_c02164{bottom:377.386939pt;}
.y19_c02164{bottom:407.786011pt;}
.y17_c02164{bottom:437.226235pt;}
.y16_c02164{bottom:453.226747pt;}
.y13_c02164{bottom:482.666971pt;}
.y15_c02164{bottom:497.386555pt;}
.y12_c02164{bottom:513.387067pt;}
.y20_c02164{bottom:527.786667pt;}
.y21_c02164{bottom:530.347067pt;}
.y1f_c02164{bottom:546.027067pt;}
.yb_c02164{bottom:593.385179pt;}
.yd_c02164{bottom:628.586875pt;}
.yc_c02164{bottom:637.227067pt;}
.ya_c02164{bottom:707.945339pt;}
.y9_c02164{bottom:779.945531pt;}
.y7_c02164{bottom:823.786427pt;}
.y3_c02164{bottom:839.786939pt;}
.y8_c02164{bottom:870.505979pt;}
.y6_c02164{bottom:899.946203pt;}
.y5_c02164{bottom:915.946715pt;}
.y2_c02164{bottom:945.386939pt;}
.y4_c02164{bottom:959.786555pt;}
.y1_c02164{bottom:975.787067pt;}
.yf_c02164{bottom:990.506667pt;}
.y11_c02164{bottom:993.067067pt;}
.ye_c02164{bottom:1008.747067pt;}
.h3_c02164{height:28.916250pt;}
.h5_c02164{height:32.640000pt;}
.h4_c02164{height:36.802500pt;}
.h1_c02164{height:37.063125pt;}
.h2_c02164{height:37.166250pt;}
.h7_c02164{height:47.171250pt;}
.h6_c02164{height:47.302500pt;}
.h0_c02164{height:1122.666667pt;}
.w2_c02164{width:351.360000pt;}
.w1_c02164{width:793.333333pt;}
.w0_c02164{width:793.626667pt;}
.x0_c02164{left:0.000000pt;}
.xd_c02164{left:104.000000pt;}
.xe_c02164{left:143.360000pt;}
.x8_c02164{left:391.999872pt;}
.x4_c02164{left:396.160512pt;}
.xb_c02164{left:400.960000pt;}
.x7_c02164{left:404.799648pt;}
.x5_c02164{left:410.560128pt;}
.x1_c02164{left:411.840000pt;}
.xa_c02164{left:429.760320pt;}
.x9_c02164{left:437.439552pt;}
.x6_c02164{left:438.400512pt;}
.xc_c02164{left:450.560320pt;}
.x3_c02164{left:455.039904pt;}
.x2_c02164{left:468.159648pt;}
}





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

.ir_c02165:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02165{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02165;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02165{font-family:ff1_c02165;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02165;src:url('chunks/assets/font_884bde980fd30fd9c3c3ea5b.woff2')format("woff");}.ff2_c02165{font-family:ff2_c02165;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02165;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02165{font-family:ff3_c02165;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02165{vertical-align:0.000000px;}
.ls8_c02165{letter-spacing:-0.613008px;}
.lsb_c02165{letter-spacing:-0.574992px;}
.ls11_c02165{letter-spacing:-0.275616px;}
.lsa_c02165{letter-spacing:-0.261360px;}
.ls7_c02165{letter-spacing:-0.242352px;}
.ls5_c02165{letter-spacing:-0.118800px;}
.ls13_c02165{letter-spacing:0.000000px;}
.ls2_c02165{letter-spacing:0.006048px;}
.ls6_c02165{letter-spacing:0.128304px;}
.lse_c02165{letter-spacing:0.242352px;}
.lsd_c02165{letter-spacing:0.508464px;}
.ls1_c02165{letter-spacing:0.514080px;}
.ls10_c02165{letter-spacing:0.536976px;}
.lsc_c02165{letter-spacing:0.579744px;}
.ls12_c02165{letter-spacing:0.594000px;}
.ls9_c02165{letter-spacing:0.598752px;}
.ls3_c02165{letter-spacing:0.613008px;}
.lsf_c02165{letter-spacing:0.660528px;}
.ls0_c02165{letter-spacing:0.717552px;}
.ls4_c02165{letter-spacing:0.722304px;}
.sc__c02165{text-shadow:none;}
.sc0_c02165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02165{-webkit-text-stroke:0px transparent;}
.sc0_c02165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02165{word-spacing:-15.634080px;}
.wsb_c02165{word-spacing:-15.126048px;}
.ws9_c02165{word-spacing:-12.474000px;}
.ws8_c02165{word-spacing:-12.416976px;}
.ws2_c02165{word-spacing:-11.266992px;}
.ws13_c02165{word-spacing:-3.598560px;}
.ws10_c02165{word-spacing:-1.078704px;}
.ws11_c02165{word-spacing:-1.021680px;}
.wsc_c02165{word-spacing:-0.974160px;}
.wse_c02165{word-spacing:-0.118800px;}
.wsf_c02165{word-spacing:-0.099792px;}
.ws12_c02165{word-spacing:-0.085536px;}
.wsd_c02165{word-spacing:0.000000px;}
.ws7_c02165{word-spacing:36.143712px;}
.ws5_c02165{word-spacing:36.742464px;}
.ws1_c02165{word-spacing:37.759392px;}
.ws0_c02165{word-spacing:38.020752px;}
.ws3_c02165{word-spacing:39.218256px;}
.ws4_c02165{word-spacing:39.902544px;}
.ws6_c02165{word-spacing:42.026688px;}
._0_c02165{margin-left:-1.948320px;}
._2_c02165{width:1.482624px;}
._1_c02165{width:50.252400px;}
._3_c02165{width:51.530688px;}
.fc0_c02165{color:rgb(0,0,0);}
.fs0_c02165{font-size:47.520000px;}
.fs1_c02165{font-size:60.480000px;}
.y0_c02165{bottom:0.000000px;}
.y10_c02165{bottom:20.880450px;}
.y1c_c02165{bottom:146.998362px;}
.y1e_c02165{bottom:186.600234px;}
.y1d_c02165{bottom:196.320450px;}
.y1b_c02165{bottom:275.878542px;}
.y1a_c02165{bottom:356.878758px;}
.y18_c02165{bottom:406.559730px;}
.y14_c02165{bottom:424.560306px;}
.y19_c02165{bottom:458.759262px;}
.y17_c02165{bottom:491.879514px;}
.y16_c02165{bottom:509.880090px;}
.y13_c02165{bottom:543.000342px;}
.y15_c02165{bottom:559.559874px;}
.y12_c02165{bottom:577.560450px;}
.y20_c02165{bottom:593.760000px;}
.y21_c02165{bottom:596.640450px;}
.y1f_c02165{bottom:614.280450px;}
.yb_c02165{bottom:667.558326px;}
.yd_c02165{bottom:707.160234px;}
.yc_c02165{bottom:716.880450px;}
.ya_c02165{bottom:796.438506px;}
.y9_c02165{bottom:877.438722px;}
.y7_c02165{bottom:926.759730px;}
.y3_c02165{bottom:944.760306px;}
.y8_c02165{bottom:979.319226px;}
.y6_c02165{bottom:1012.439478px;}
.y5_c02165{bottom:1030.440054px;}
.y2_c02165{bottom:1063.560306px;}
.y4_c02165{bottom:1079.759874px;}
.y1_c02165{bottom:1097.760450px;}
.yf_c02165{bottom:1114.320000px;}
.y11_c02165{bottom:1117.200450px;}
.ye_c02165{bottom:1134.840450px;}
.h3_c02165{height:32.530781px;}
.h5_c02165{height:36.720000px;}
.h4_c02165{height:41.402813px;}
.h1_c02165{height:41.696016px;}
.h2_c02165{height:41.812031px;}
.h7_c02165{height:53.067656px;}
.h6_c02165{height:53.215313px;}
.h0_c02165{height:1263.000000px;}
.w2_c02165{width:395.280000px;}
.w1_c02165{width:892.500000px;}
.w0_c02165{width:892.830000px;}
.x0_c02165{left:0.000000px;}
.xd_c02165{left:117.000000px;}
.xe_c02165{left:161.280000px;}
.x8_c02165{left:440.999856px;}
.x4_c02165{left:445.680576px;}
.xb_c02165{left:451.080000px;}
.x7_c02165{left:455.399604px;}
.x5_c02165{left:461.880144px;}
.x1_c02165{left:463.320000px;}
.xa_c02165{left:483.480360px;}
.x9_c02165{left:492.119496px;}
.x6_c02165{left:493.200576px;}
.xc_c02165{left:506.880360px;}
.x3_c02165{left:511.919892px;}
.x2_c02165{left:526.679604px;}
@media print{
.v0_c02165{vertical-align:0.000000pt;}
.ls8_c02165{letter-spacing:-0.544896pt;}
.lsb_c02165{letter-spacing:-0.511104pt;}
.ls11_c02165{letter-spacing:-0.244992pt;}
.lsa_c02165{letter-spacing:-0.232320pt;}
.ls7_c02165{letter-spacing:-0.215424pt;}
.ls5_c02165{letter-spacing:-0.105600pt;}
.ls13_c02165{letter-spacing:0.000000pt;}
.ls2_c02165{letter-spacing:0.005376pt;}
.ls6_c02165{letter-spacing:0.114048pt;}
.lse_c02165{letter-spacing:0.215424pt;}
.lsd_c02165{letter-spacing:0.451968pt;}
.ls1_c02165{letter-spacing:0.456960pt;}
.ls10_c02165{letter-spacing:0.477312pt;}
.lsc_c02165{letter-spacing:0.515328pt;}
.ls12_c02165{letter-spacing:0.528000pt;}
.ls9_c02165{letter-spacing:0.532224pt;}
.ls3_c02165{letter-spacing:0.544896pt;}
.lsf_c02165{letter-spacing:0.587136pt;}
.ls0_c02165{letter-spacing:0.637824pt;}
.ls4_c02165{letter-spacing:0.642048pt;}
.wsa_c02165{word-spacing:-13.896960pt;}
.wsb_c02165{word-spacing:-13.445376pt;}
.ws9_c02165{word-spacing:-11.088000pt;}
.ws8_c02165{word-spacing:-11.037312pt;}
.ws2_c02165{word-spacing:-10.015104pt;}
.ws13_c02165{word-spacing:-3.198720pt;}
.ws10_c02165{word-spacing:-0.958848pt;}
.ws11_c02165{word-spacing:-0.908160pt;}
.wsc_c02165{word-spacing:-0.865920pt;}
.wse_c02165{word-spacing:-0.105600pt;}
.wsf_c02165{word-spacing:-0.088704pt;}
.ws12_c02165{word-spacing:-0.076032pt;}
.wsd_c02165{word-spacing:0.000000pt;}
.ws7_c02165{word-spacing:32.127744pt;}
.ws5_c02165{word-spacing:32.659968pt;}
.ws1_c02165{word-spacing:33.563904pt;}
.ws0_c02165{word-spacing:33.796224pt;}
.ws3_c02165{word-spacing:34.860672pt;}
.ws4_c02165{word-spacing:35.468928pt;}
.ws6_c02165{word-spacing:37.357056pt;}
._0_c02165{margin-left:-1.731840pt;}
._2_c02165{width:1.317888pt;}
._1_c02165{width:44.668800pt;}
._3_c02165{width:45.805056pt;}
.fs0_c02165{font-size:42.240000pt;}
.fs1_c02165{font-size:53.760000pt;}
.y0_c02165{bottom:0.000000pt;}
.y10_c02165{bottom:18.560400pt;}
.y1c_c02165{bottom:130.665211pt;}
.y1e_c02165{bottom:165.866875pt;}
.y1d_c02165{bottom:174.507067pt;}
.y1b_c02165{bottom:245.225371pt;}
.y1a_c02165{bottom:317.225563pt;}
.y18_c02165{bottom:361.386427pt;}
.y14_c02165{bottom:377.386939pt;}
.y19_c02165{bottom:407.786011pt;}
.y17_c02165{bottom:437.226235pt;}
.y16_c02165{bottom:453.226747pt;}
.y13_c02165{bottom:482.666971pt;}
.y15_c02165{bottom:497.386555pt;}
.y12_c02165{bottom:513.387067pt;}
.y20_c02165{bottom:527.786667pt;}
.y21_c02165{bottom:530.347067pt;}
.y1f_c02165{bottom:546.027067pt;}
.yb_c02165{bottom:593.385179pt;}
.yd_c02165{bottom:628.586875pt;}
.yc_c02165{bottom:637.227067pt;}
.ya_c02165{bottom:707.945339pt;}
.y9_c02165{bottom:779.945531pt;}
.y7_c02165{bottom:823.786427pt;}
.y3_c02165{bottom:839.786939pt;}
.y8_c02165{bottom:870.505979pt;}
.y6_c02165{bottom:899.946203pt;}
.y5_c02165{bottom:915.946715pt;}
.y2_c02165{bottom:945.386939pt;}
.y4_c02165{bottom:959.786555pt;}
.y1_c02165{bottom:975.787067pt;}
.yf_c02165{bottom:990.506667pt;}
.y11_c02165{bottom:993.067067pt;}
.ye_c02165{bottom:1008.747067pt;}
.h3_c02165{height:28.916250pt;}
.h5_c02165{height:32.640000pt;}
.h4_c02165{height:36.802500pt;}
.h1_c02165{height:37.063125pt;}
.h2_c02165{height:37.166250pt;}
.h7_c02165{height:47.171250pt;}
.h6_c02165{height:47.302500pt;}
.h0_c02165{height:1122.666667pt;}
.w2_c02165{width:351.360000pt;}
.w1_c02165{width:793.333333pt;}
.w0_c02165{width:793.626667pt;}
.x0_c02165{left:0.000000pt;}
.xd_c02165{left:104.000000pt;}
.xe_c02165{left:143.360000pt;}
.x8_c02165{left:391.999872pt;}
.x4_c02165{left:396.160512pt;}
.xb_c02165{left:400.960000pt;}
.x7_c02165{left:404.799648pt;}
.x5_c02165{left:410.560128pt;}
.x1_c02165{left:411.840000pt;}
.xa_c02165{left:429.760320pt;}
.x9_c02165{left:437.439552pt;}
.x6_c02165{left:438.400512pt;}
.xc_c02165{left:450.560320pt;}
.x3_c02165{left:455.039904pt;}
.x2_c02165{left:468.159648pt;}
}





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

.ir_c02166:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02166{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02166;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02166{font-family:ff1_c02166;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02166;src:url('chunks/assets/font_c9be862a71cfb3274e2c1e7f.woff2')format("woff");}.ff2_c02166{font-family:ff2_c02166;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02166;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02166{font-family:ff3_c02166;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02166{vertical-align:0.000000px;}
.ls10_c02166{letter-spacing:-0.793584px;}
.lsd_c02166{letter-spacing:-0.774576px;}
.ls13_c02166{letter-spacing:-0.736560px;}
.ls9_c02166{letter-spacing:-0.613008px;}
.lsc_c02166{letter-spacing:-0.574992px;}
.lsb_c02166{letter-spacing:-0.289872px;}
.ls18_c02166{letter-spacing:-0.275616px;}
.ls14_c02166{letter-spacing:-0.270864px;}
.ls17_c02166{letter-spacing:-0.266112px;}
.ls11_c02166{letter-spacing:-0.261360px;}
.ls8_c02166{letter-spacing:-0.242352px;}
.ls6_c02166{letter-spacing:-0.118800px;}
.ls16_c02166{letter-spacing:0.000000px;}
.ls2_c02166{letter-spacing:0.006048px;}
.ls7_c02166{letter-spacing:0.128304px;}
.lsf_c02166{letter-spacing:0.508464px;}
.ls1_c02166{letter-spacing:0.514080px;}
.ls12_c02166{letter-spacing:0.536976px;}
.lse_c02166{letter-spacing:0.579744px;}
.ls15_c02166{letter-spacing:0.594000px;}
.lsa_c02166{letter-spacing:0.598752px;}
.ls4_c02166{letter-spacing:0.613008px;}
.ls0_c02166{letter-spacing:0.651024px;}
.ls3_c02166{letter-spacing:0.717552px;}
.ls5_c02166{letter-spacing:0.722304px;}
.sc__c02166{text-shadow:none;}
.sc0_c02166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02166{-webkit-text-stroke:0px transparent;}
.sc0_c02166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02166{word-spacing:-15.634080px;}
.wsc_c02166{word-spacing:-15.126048px;}
.wsa_c02166{word-spacing:-12.474000px;}
.ws6_c02166{word-spacing:-12.459744px;}
.wse_c02166{word-spacing:-12.416976px;}
.ws2_c02166{word-spacing:-11.266992px;}
.ws5_c02166{word-spacing:-11.105424px;}
.ws18_c02166{word-spacing:-3.598560px;}
.ws1b_c02166{word-spacing:-1.083456px;}
.ws1a_c02166{word-spacing:-1.078704px;}
.ws11_c02166{word-spacing:-1.012176px;}
.wsf_c02166{word-spacing:-0.974160px;}
.ws12_c02166{word-spacing:-0.118800px;}
.ws15_c02166{word-spacing:-0.099792px;}
.ws19_c02166{word-spacing:-0.095040px;}
.ws16_c02166{word-spacing:-0.090288px;}
.ws17_c02166{word-spacing:-0.085536px;}
.ws13_c02166{word-spacing:-0.071280px;}
.ws10_c02166{word-spacing:0.000000px;}
.ws14_c02166{word-spacing:0.432432px;}
.ws9_c02166{word-spacing:6.629040px;}
.ws8_c02166{word-spacing:34.836912px;}
.wsd_c02166{word-spacing:36.742464px;}
.ws1_c02166{word-spacing:37.759392px;}
.ws0_c02166{word-spacing:38.020752px;}
.ws3_c02166{word-spacing:39.218256px;}
.ws4_c02166{word-spacing:39.902544px;}
.ws7_c02166{word-spacing:42.026688px;}
._0_c02166{margin-left:-1.948320px;}
._2_c02166{width:1.482624px;}
._5_c02166{width:19.982160px;}
._6_c02166{width:23.451120px;}
._4_c02166{width:24.691392px;}
._1_c02166{width:50.252400px;}
._3_c02166{width:51.530688px;}
.fc0_c02166{color:rgb(0,0,0);}
.fs0_c02166{font-size:47.520000px;}
.fs1_c02166{font-size:60.480000px;}
.y0_c02166{bottom:0.000000px;}
.y11_c02166{bottom:20.880450px;}
.y1d_c02166{bottom:146.998362px;}
.y1f_c02166{bottom:186.600234px;}
.y1e_c02166{bottom:196.320450px;}
.y1c_c02166{bottom:275.878542px;}
.y1b_c02166{bottom:356.878758px;}
.y19_c02166{bottom:406.559730px;}
.y15_c02166{bottom:424.560306px;}
.y1a_c02166{bottom:458.759262px;}
.y18_c02166{bottom:491.879514px;}
.y17_c02166{bottom:509.880090px;}
.y14_c02166{bottom:543.000342px;}
.y16_c02166{bottom:559.559874px;}
.y13_c02166{bottom:577.560450px;}
.y21_c02166{bottom:593.760000px;}
.y22_c02166{bottom:596.640450px;}
.y20_c02166{bottom:614.280450px;}
.yc_c02166{bottom:652.438650px;}
.yb_c02166{bottom:667.558326px;}
.ye_c02166{bottom:707.160234px;}
.yd_c02166{bottom:716.880450px;}
.ya_c02166{bottom:796.438506px;}
.y9_c02166{bottom:877.438722px;}
.y7_c02166{bottom:926.759730px;}
.y3_c02166{bottom:944.760306px;}
.y8_c02166{bottom:979.319226px;}
.y6_c02166{bottom:1012.439478px;}
.y5_c02166{bottom:1030.440054px;}
.y2_c02166{bottom:1063.560306px;}
.y4_c02166{bottom:1079.759874px;}
.y1_c02166{bottom:1097.760450px;}
.y10_c02166{bottom:1114.320000px;}
.y12_c02166{bottom:1117.200450px;}
.yf_c02166{bottom:1134.840450px;}
.h3_c02166{height:32.530781px;}
.h5_c02166{height:36.720000px;}
.h4_c02166{height:41.402813px;}
.h1_c02166{height:41.696016px;}
.h2_c02166{height:41.812031px;}
.h7_c02166{height:53.067656px;}
.h6_c02166{height:53.215313px;}
.h0_c02166{height:1263.000000px;}
.w2_c02166{width:395.280000px;}
.w1_c02166{width:892.500000px;}
.w0_c02166{width:892.830000px;}
.x0_c02166{left:0.000000px;}
.xe_c02166{left:117.000000px;}
.xf_c02166{left:161.280000px;}
.x8_c02166{left:440.999856px;}
.x4_c02166{left:445.680576px;}
.xc_c02166{left:451.080000px;}
.x7_c02166{left:455.399604px;}
.x5_c02166{left:461.880144px;}
.x1_c02166{left:463.320000px;}
.xa_c02166{left:483.480360px;}
.x9_c02166{left:492.119496px;}
.x6_c02166{left:493.200576px;}
.xd_c02166{left:506.880360px;}
.x3_c02166{left:511.919892px;}
.x2_c02166{left:526.679604px;}
.xb_c02166{left:569.880036px;}
@media print{
.v0_c02166{vertical-align:0.000000pt;}
.ls10_c02166{letter-spacing:-0.705408pt;}
.lsd_c02166{letter-spacing:-0.688512pt;}
.ls13_c02166{letter-spacing:-0.654720pt;}
.ls9_c02166{letter-spacing:-0.544896pt;}
.lsc_c02166{letter-spacing:-0.511104pt;}
.lsb_c02166{letter-spacing:-0.257664pt;}
.ls18_c02166{letter-spacing:-0.244992pt;}
.ls14_c02166{letter-spacing:-0.240768pt;}
.ls17_c02166{letter-spacing:-0.236544pt;}
.ls11_c02166{letter-spacing:-0.232320pt;}
.ls8_c02166{letter-spacing:-0.215424pt;}
.ls6_c02166{letter-spacing:-0.105600pt;}
.ls16_c02166{letter-spacing:0.000000pt;}
.ls2_c02166{letter-spacing:0.005376pt;}
.ls7_c02166{letter-spacing:0.114048pt;}
.lsf_c02166{letter-spacing:0.451968pt;}
.ls1_c02166{letter-spacing:0.456960pt;}
.ls12_c02166{letter-spacing:0.477312pt;}
.lse_c02166{letter-spacing:0.515328pt;}
.ls15_c02166{letter-spacing:0.528000pt;}
.lsa_c02166{letter-spacing:0.532224pt;}
.ls4_c02166{letter-spacing:0.544896pt;}
.ls0_c02166{letter-spacing:0.578688pt;}
.ls3_c02166{letter-spacing:0.637824pt;}
.ls5_c02166{letter-spacing:0.642048pt;}
.wsb_c02166{word-spacing:-13.896960pt;}
.wsc_c02166{word-spacing:-13.445376pt;}
.wsa_c02166{word-spacing:-11.088000pt;}
.ws6_c02166{word-spacing:-11.075328pt;}
.wse_c02166{word-spacing:-11.037312pt;}
.ws2_c02166{word-spacing:-10.015104pt;}
.ws5_c02166{word-spacing:-9.871488pt;}
.ws18_c02166{word-spacing:-3.198720pt;}
.ws1b_c02166{word-spacing:-0.963072pt;}
.ws1a_c02166{word-spacing:-0.958848pt;}
.ws11_c02166{word-spacing:-0.899712pt;}
.wsf_c02166{word-spacing:-0.865920pt;}
.ws12_c02166{word-spacing:-0.105600pt;}
.ws15_c02166{word-spacing:-0.088704pt;}
.ws19_c02166{word-spacing:-0.084480pt;}
.ws16_c02166{word-spacing:-0.080256pt;}
.ws17_c02166{word-spacing:-0.076032pt;}
.ws13_c02166{word-spacing:-0.063360pt;}
.ws10_c02166{word-spacing:0.000000pt;}
.ws14_c02166{word-spacing:0.384384pt;}
.ws9_c02166{word-spacing:5.892480pt;}
.ws8_c02166{word-spacing:30.966144pt;}
.wsd_c02166{word-spacing:32.659968pt;}
.ws1_c02166{word-spacing:33.563904pt;}
.ws0_c02166{word-spacing:33.796224pt;}
.ws3_c02166{word-spacing:34.860672pt;}
.ws4_c02166{word-spacing:35.468928pt;}
.ws7_c02166{word-spacing:37.357056pt;}
._0_c02166{margin-left:-1.731840pt;}
._2_c02166{width:1.317888pt;}
._5_c02166{width:17.761920pt;}
._6_c02166{width:20.845440pt;}
._4_c02166{width:21.947904pt;}
._1_c02166{width:44.668800pt;}
._3_c02166{width:45.805056pt;}
.fs0_c02166{font-size:42.240000pt;}
.fs1_c02166{font-size:53.760000pt;}
.y0_c02166{bottom:0.000000pt;}
.y11_c02166{bottom:18.560400pt;}
.y1d_c02166{bottom:130.665211pt;}
.y1f_c02166{bottom:165.866875pt;}
.y1e_c02166{bottom:174.507067pt;}
.y1c_c02166{bottom:245.225371pt;}
.y1b_c02166{bottom:317.225563pt;}
.y19_c02166{bottom:361.386427pt;}
.y15_c02166{bottom:377.386939pt;}
.y1a_c02166{bottom:407.786011pt;}
.y18_c02166{bottom:437.226235pt;}
.y17_c02166{bottom:453.226747pt;}
.y14_c02166{bottom:482.666971pt;}
.y16_c02166{bottom:497.386555pt;}
.y13_c02166{bottom:513.387067pt;}
.y21_c02166{bottom:527.786667pt;}
.y22_c02166{bottom:530.347067pt;}
.y20_c02166{bottom:546.027067pt;}
.yc_c02166{bottom:579.945467pt;}
.yb_c02166{bottom:593.385179pt;}
.ye_c02166{bottom:628.586875pt;}
.yd_c02166{bottom:637.227067pt;}
.ya_c02166{bottom:707.945339pt;}
.y9_c02166{bottom:779.945531pt;}
.y7_c02166{bottom:823.786427pt;}
.y3_c02166{bottom:839.786939pt;}
.y8_c02166{bottom:870.505979pt;}
.y6_c02166{bottom:899.946203pt;}
.y5_c02166{bottom:915.946715pt;}
.y2_c02166{bottom:945.386939pt;}
.y4_c02166{bottom:959.786555pt;}
.y1_c02166{bottom:975.787067pt;}
.y10_c02166{bottom:990.506667pt;}
.y12_c02166{bottom:993.067067pt;}
.yf_c02166{bottom:1008.747067pt;}
.h3_c02166{height:28.916250pt;}
.h5_c02166{height:32.640000pt;}
.h4_c02166{height:36.802500pt;}
.h1_c02166{height:37.063125pt;}
.h2_c02166{height:37.166250pt;}
.h7_c02166{height:47.171250pt;}
.h6_c02166{height:47.302500pt;}
.h0_c02166{height:1122.666667pt;}
.w2_c02166{width:351.360000pt;}
.w1_c02166{width:793.333333pt;}
.w0_c02166{width:793.626667pt;}
.x0_c02166{left:0.000000pt;}
.xe_c02166{left:104.000000pt;}
.xf_c02166{left:143.360000pt;}
.x8_c02166{left:391.999872pt;}
.x4_c02166{left:396.160512pt;}
.xc_c02166{left:400.960000pt;}
.x7_c02166{left:404.799648pt;}
.x5_c02166{left:410.560128pt;}
.x1_c02166{left:411.840000pt;}
.xa_c02166{left:429.760320pt;}
.x9_c02166{left:437.439552pt;}
.x6_c02166{left:438.400512pt;}
.xd_c02166{left:450.560320pt;}
.x3_c02166{left:455.039904pt;}
.x2_c02166{left:468.159648pt;}
.xb_c02166{left:506.560032pt;}
}





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

.ir_c02167:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02167{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02167;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02167{font-family:ff1_c02167;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02167;src:url('chunks/assets/font_a1ba7ca0d689118fe2361744.woff2')format("woff");}.ff2_c02167{font-family:ff2_c02167;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02167;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02167{font-family:ff3_c02167;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02167{vertical-align:0.000000px;}
.ls8_c02167{letter-spacing:-0.613008px;}
.lsb_c02167{letter-spacing:-0.574992px;}
.ls10_c02167{letter-spacing:-0.275616px;}
.lsa_c02167{letter-spacing:-0.266112px;}
.lse_c02167{letter-spacing:-0.261360px;}
.ls7_c02167{letter-spacing:-0.242352px;}
.ls5_c02167{letter-spacing:-0.118800px;}
.ls12_c02167{letter-spacing:0.000000px;}
.ls2_c02167{letter-spacing:0.006048px;}
.ls6_c02167{letter-spacing:0.128304px;}
.lsd_c02167{letter-spacing:0.508464px;}
.ls1_c02167{letter-spacing:0.514080px;}
.lsf_c02167{letter-spacing:0.536976px;}
.lsc_c02167{letter-spacing:0.579744px;}
.ls11_c02167{letter-spacing:0.594000px;}
.ls9_c02167{letter-spacing:0.598752px;}
.ls3_c02167{letter-spacing:0.613008px;}
.ls0_c02167{letter-spacing:0.717552px;}
.ls4_c02167{letter-spacing:0.722304px;}
.sc__c02167{text-shadow:none;}
.sc0_c02167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02167{-webkit-text-stroke:0px transparent;}
.sc0_c02167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02167{word-spacing:-15.634080px;}
.wsb_c02167{word-spacing:-15.126048px;}
.ws9_c02167{word-spacing:-12.474000px;}
.ws7_c02167{word-spacing:-12.459744px;}
.ws8_c02167{word-spacing:-12.416976px;}
.ws2_c02167{word-spacing:-11.266992px;}
.ws14_c02167{word-spacing:-3.598560px;}
.ws11_c02167{word-spacing:-1.083456px;}
.ws10_c02167{word-spacing:-1.078704px;}
.wsc_c02167{word-spacing:-0.974160px;}
.wse_c02167{word-spacing:-0.118800px;}
.ws12_c02167{word-spacing:-0.099792px;}
.wsf_c02167{word-spacing:-0.095040px;}
.ws13_c02167{word-spacing:-0.085536px;}
.wsd_c02167{word-spacing:0.000000px;}
.ws5_c02167{word-spacing:36.742464px;}
.ws1_c02167{word-spacing:37.759392px;}
.ws0_c02167{word-spacing:38.020752px;}
.ws3_c02167{word-spacing:39.218256px;}
.ws4_c02167{word-spacing:39.902544px;}
.ws6_c02167{word-spacing:42.026688px;}
._0_c02167{margin-left:-1.948320px;}
._2_c02167{width:1.482624px;}
._1_c02167{width:50.252400px;}
._3_c02167{width:51.530688px;}
.fc0_c02167{color:rgb(0,0,0);}
.fs0_c02167{font-size:47.520000px;}
.fs1_c02167{font-size:60.480000px;}
.y0_c02167{bottom:0.000000px;}
.y10_c02167{bottom:20.880450px;}
.y1c_c02167{bottom:146.998362px;}
.y1e_c02167{bottom:186.600234px;}
.y1d_c02167{bottom:196.320450px;}
.y1b_c02167{bottom:275.878542px;}
.y1a_c02167{bottom:356.878758px;}
.y18_c02167{bottom:406.559730px;}
.y14_c02167{bottom:424.560306px;}
.y19_c02167{bottom:458.759262px;}
.y17_c02167{bottom:491.879514px;}
.y16_c02167{bottom:509.880090px;}
.y13_c02167{bottom:543.000342px;}
.y15_c02167{bottom:559.559874px;}
.y12_c02167{bottom:577.560450px;}
.y20_c02167{bottom:593.760000px;}
.y21_c02167{bottom:596.640450px;}
.y1f_c02167{bottom:614.280450px;}
.yb_c02167{bottom:667.558326px;}
.yd_c02167{bottom:707.160234px;}
.yc_c02167{bottom:716.880450px;}
.ya_c02167{bottom:796.438506px;}
.y9_c02167{bottom:877.438722px;}
.y7_c02167{bottom:926.759730px;}
.y3_c02167{bottom:944.760306px;}
.y8_c02167{bottom:979.319226px;}
.y6_c02167{bottom:1012.439478px;}
.y5_c02167{bottom:1030.440054px;}
.y2_c02167{bottom:1063.560306px;}
.y4_c02167{bottom:1079.759874px;}
.y1_c02167{bottom:1097.760450px;}
.yf_c02167{bottom:1114.320000px;}
.y11_c02167{bottom:1117.200450px;}
.ye_c02167{bottom:1134.840450px;}
.h3_c02167{height:32.530781px;}
.h5_c02167{height:36.720000px;}
.h4_c02167{height:41.402813px;}
.h1_c02167{height:41.696016px;}
.h2_c02167{height:41.812031px;}
.h7_c02167{height:53.067656px;}
.h6_c02167{height:53.215313px;}
.h0_c02167{height:1263.000000px;}
.w2_c02167{width:395.280000px;}
.w1_c02167{width:892.500000px;}
.w0_c02167{width:892.830000px;}
.x0_c02167{left:0.000000px;}
.xd_c02167{left:117.000000px;}
.xe_c02167{left:161.280000px;}
.x8_c02167{left:440.999856px;}
.x4_c02167{left:445.680576px;}
.xb_c02167{left:451.080000px;}
.x7_c02167{left:455.399604px;}
.x5_c02167{left:461.880144px;}
.x1_c02167{left:463.320000px;}
.xa_c02167{left:483.480360px;}
.x9_c02167{left:492.119496px;}
.x6_c02167{left:493.200576px;}
.xc_c02167{left:506.880360px;}
.x3_c02167{left:511.919892px;}
.x2_c02167{left:526.679604px;}
@media print{
.v0_c02167{vertical-align:0.000000pt;}
.ls8_c02167{letter-spacing:-0.544896pt;}
.lsb_c02167{letter-spacing:-0.511104pt;}
.ls10_c02167{letter-spacing:-0.244992pt;}
.lsa_c02167{letter-spacing:-0.236544pt;}
.lse_c02167{letter-spacing:-0.232320pt;}
.ls7_c02167{letter-spacing:-0.215424pt;}
.ls5_c02167{letter-spacing:-0.105600pt;}
.ls12_c02167{letter-spacing:0.000000pt;}
.ls2_c02167{letter-spacing:0.005376pt;}
.ls6_c02167{letter-spacing:0.114048pt;}
.lsd_c02167{letter-spacing:0.451968pt;}
.ls1_c02167{letter-spacing:0.456960pt;}
.lsf_c02167{letter-spacing:0.477312pt;}
.lsc_c02167{letter-spacing:0.515328pt;}
.ls11_c02167{letter-spacing:0.528000pt;}
.ls9_c02167{letter-spacing:0.532224pt;}
.ls3_c02167{letter-spacing:0.544896pt;}
.ls0_c02167{letter-spacing:0.637824pt;}
.ls4_c02167{letter-spacing:0.642048pt;}
.wsa_c02167{word-spacing:-13.896960pt;}
.wsb_c02167{word-spacing:-13.445376pt;}
.ws9_c02167{word-spacing:-11.088000pt;}
.ws7_c02167{word-spacing:-11.075328pt;}
.ws8_c02167{word-spacing:-11.037312pt;}
.ws2_c02167{word-spacing:-10.015104pt;}
.ws14_c02167{word-spacing:-3.198720pt;}
.ws11_c02167{word-spacing:-0.963072pt;}
.ws10_c02167{word-spacing:-0.958848pt;}
.wsc_c02167{word-spacing:-0.865920pt;}
.wse_c02167{word-spacing:-0.105600pt;}
.ws12_c02167{word-spacing:-0.088704pt;}
.wsf_c02167{word-spacing:-0.084480pt;}
.ws13_c02167{word-spacing:-0.076032pt;}
.wsd_c02167{word-spacing:0.000000pt;}
.ws5_c02167{word-spacing:32.659968pt;}
.ws1_c02167{word-spacing:33.563904pt;}
.ws0_c02167{word-spacing:33.796224pt;}
.ws3_c02167{word-spacing:34.860672pt;}
.ws4_c02167{word-spacing:35.468928pt;}
.ws6_c02167{word-spacing:37.357056pt;}
._0_c02167{margin-left:-1.731840pt;}
._2_c02167{width:1.317888pt;}
._1_c02167{width:44.668800pt;}
._3_c02167{width:45.805056pt;}
.fs0_c02167{font-size:42.240000pt;}
.fs1_c02167{font-size:53.760000pt;}
.y0_c02167{bottom:0.000000pt;}
.y10_c02167{bottom:18.560400pt;}
.y1c_c02167{bottom:130.665211pt;}
.y1e_c02167{bottom:165.866875pt;}
.y1d_c02167{bottom:174.507067pt;}
.y1b_c02167{bottom:245.225371pt;}
.y1a_c02167{bottom:317.225563pt;}
.y18_c02167{bottom:361.386427pt;}
.y14_c02167{bottom:377.386939pt;}
.y19_c02167{bottom:407.786011pt;}
.y17_c02167{bottom:437.226235pt;}
.y16_c02167{bottom:453.226747pt;}
.y13_c02167{bottom:482.666971pt;}
.y15_c02167{bottom:497.386555pt;}
.y12_c02167{bottom:513.387067pt;}
.y20_c02167{bottom:527.786667pt;}
.y21_c02167{bottom:530.347067pt;}
.y1f_c02167{bottom:546.027067pt;}
.yb_c02167{bottom:593.385179pt;}
.yd_c02167{bottom:628.586875pt;}
.yc_c02167{bottom:637.227067pt;}
.ya_c02167{bottom:707.945339pt;}
.y9_c02167{bottom:779.945531pt;}
.y7_c02167{bottom:823.786427pt;}
.y3_c02167{bottom:839.786939pt;}
.y8_c02167{bottom:870.505979pt;}
.y6_c02167{bottom:899.946203pt;}
.y5_c02167{bottom:915.946715pt;}
.y2_c02167{bottom:945.386939pt;}
.y4_c02167{bottom:959.786555pt;}
.y1_c02167{bottom:975.787067pt;}
.yf_c02167{bottom:990.506667pt;}
.y11_c02167{bottom:993.067067pt;}
.ye_c02167{bottom:1008.747067pt;}
.h3_c02167{height:28.916250pt;}
.h5_c02167{height:32.640000pt;}
.h4_c02167{height:36.802500pt;}
.h1_c02167{height:37.063125pt;}
.h2_c02167{height:37.166250pt;}
.h7_c02167{height:47.171250pt;}
.h6_c02167{height:47.302500pt;}
.h0_c02167{height:1122.666667pt;}
.w2_c02167{width:351.360000pt;}
.w1_c02167{width:793.333333pt;}
.w0_c02167{width:793.626667pt;}
.x0_c02167{left:0.000000pt;}
.xd_c02167{left:104.000000pt;}
.xe_c02167{left:143.360000pt;}
.x8_c02167{left:391.999872pt;}
.x4_c02167{left:396.160512pt;}
.xb_c02167{left:400.960000pt;}
.x7_c02167{left:404.799648pt;}
.x5_c02167{left:410.560128pt;}
.x1_c02167{left:411.840000pt;}
.xa_c02167{left:429.760320pt;}
.x9_c02167{left:437.439552pt;}
.x6_c02167{left:438.400512pt;}
.xc_c02167{left:450.560320pt;}
.x3_c02167{left:455.039904pt;}
.x2_c02167{left:468.159648pt;}
}





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

.ir_c02168:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02168{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02168;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02168{font-family:ff1_c02168;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02168;src:url('chunks/assets/font_be350acfc70bf2ae0be40486.woff2')format("woff");}.ff2_c02168{font-family:ff2_c02168;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02168;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02168{font-family:ff3_c02168;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02168{vertical-align:0.000000px;}
.ls10_c02168{letter-spacing:-0.793584px;}
.ls9_c02168{letter-spacing:-0.613008px;}
.lsc_c02168{letter-spacing:-0.574992px;}
.ls13_c02168{letter-spacing:-0.275616px;}
.lse_c02168{letter-spacing:-0.270864px;}
.lsb_c02168{letter-spacing:-0.266112px;}
.ls11_c02168{letter-spacing:-0.261360px;}
.ls8_c02168{letter-spacing:-0.242352px;}
.ls6_c02168{letter-spacing:-0.118800px;}
.ls15_c02168{letter-spacing:0.000000px;}
.ls3_c02168{letter-spacing:0.006048px;}
.ls17_c02168{letter-spacing:0.014256px;}
.ls18_c02168{letter-spacing:0.038016px;}
.ls7_c02168{letter-spacing:0.128304px;}
.lsf_c02168{letter-spacing:0.508464px;}
.ls2_c02168{letter-spacing:0.514080px;}
.ls12_c02168{letter-spacing:0.536976px;}
.lsd_c02168{letter-spacing:0.579744px;}
.ls14_c02168{letter-spacing:0.594000px;}
.lsa_c02168{letter-spacing:0.598752px;}
.ls4_c02168{letter-spacing:0.613008px;}
.ls0_c02168{letter-spacing:0.651024px;}
.ls16_c02168{letter-spacing:0.665280px;}
.ls1_c02168{letter-spacing:0.717552px;}
.ls5_c02168{letter-spacing:0.722304px;}
.sc__c02168{text-shadow:none;}
.sc0_c02168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02168{-webkit-text-stroke:0px transparent;}
.sc0_c02168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02168{word-spacing:-15.634080px;}
.wsb_c02168{word-spacing:-15.126048px;}
.ws9_c02168{word-spacing:-12.474000px;}
.ws7_c02168{word-spacing:-12.459744px;}
.ws8_c02168{word-spacing:-12.416976px;}
.wsf_c02168{word-spacing:-11.894256px;}
.wsd_c02168{word-spacing:-11.637648px;}
.ws2_c02168{word-spacing:-11.266992px;}
.ws1a_c02168{word-spacing:-3.598560px;}
.ws15_c02168{word-spacing:-1.078704px;}
.ws1b_c02168{word-spacing:-1.026432px;}
.ws12_c02168{word-spacing:-1.012176px;}
.ws10_c02168{word-spacing:-0.974160px;}
.ws1c_c02168{word-spacing:-0.399168px;}
.ws13_c02168{word-spacing:-0.118800px;}
.ws18_c02168{word-spacing:-0.099792px;}
.ws14_c02168{word-spacing:-0.095040px;}
.ws16_c02168{word-spacing:-0.090288px;}
.ws19_c02168{word-spacing:-0.085536px;}
.ws11_c02168{word-spacing:0.000000px;}
.ws17_c02168{word-spacing:0.432432px;}
.wsc_c02168{word-spacing:1.330560px;}
.wse_c02168{word-spacing:24.363504px;}
.ws5_c02168{word-spacing:36.742464px;}
.ws1_c02168{word-spacing:37.759392px;}
.ws0_c02168{word-spacing:38.020752px;}
.ws3_c02168{word-spacing:39.218256px;}
.ws4_c02168{word-spacing:39.902544px;}
.ws6_c02168{word-spacing:42.026688px;}
._0_c02168{margin-left:-1.948320px;}
._2_c02168{width:1.482624px;}
._4_c02168{width:4.785264px;}
._5_c02168{width:37.113120px;}
._6_c02168{width:39.156480px;}
._7_c02168{width:40.339728px;}
._1_c02168{width:50.252400px;}
._3_c02168{width:51.530688px;}
.fc0_c02168{color:rgb(0,0,0);}
.fs0_c02168{font-size:47.520000px;}
.fs1_c02168{font-size:60.480000px;}
.y0_c02168{bottom:0.000000px;}
.y10_c02168{bottom:20.880450px;}
.y1d_c02168{bottom:146.999550px;}
.y1f_c02168{bottom:186.600234px;}
.y1e_c02168{bottom:196.320450px;}
.y1c_c02168{bottom:275.879730px;}
.y1b_c02168{bottom:356.879946px;}
.y19_c02168{bottom:391.440054px;}
.y18_c02168{bottom:406.559730px;}
.y14_c02168{bottom:424.560306px;}
.y1a_c02168{bottom:458.760450px;}
.y17_c02168{bottom:491.879514px;}
.y16_c02168{bottom:509.880090px;}
.y13_c02168{bottom:543.000342px;}
.y15_c02168{bottom:559.559874px;}
.y12_c02168{bottom:577.560450px;}
.y21_c02168{bottom:593.760000px;}
.y22_c02168{bottom:596.640450px;}
.y20_c02168{bottom:614.280450px;}
.yb_c02168{bottom:667.558326px;}
.yd_c02168{bottom:707.160234px;}
.yc_c02168{bottom:716.880450px;}
.ya_c02168{bottom:796.438506px;}
.y9_c02168{bottom:877.438722px;}
.y7_c02168{bottom:926.759730px;}
.y3_c02168{bottom:944.760306px;}
.y8_c02168{bottom:979.319226px;}
.y6_c02168{bottom:1012.439478px;}
.y5_c02168{bottom:1030.440054px;}
.y2_c02168{bottom:1063.560306px;}
.y4_c02168{bottom:1079.759874px;}
.y1_c02168{bottom:1097.760450px;}
.yf_c02168{bottom:1114.320000px;}
.y11_c02168{bottom:1117.200450px;}
.ye_c02168{bottom:1134.840450px;}
.h3_c02168{height:32.530781px;}
.h5_c02168{height:36.720000px;}
.h4_c02168{height:41.402813px;}
.h1_c02168{height:41.696016px;}
.h2_c02168{height:41.812031px;}
.h7_c02168{height:53.067656px;}
.h6_c02168{height:53.215313px;}
.h0_c02168{height:1263.000000px;}
.w2_c02168{width:395.280000px;}
.w1_c02168{width:892.500000px;}
.w0_c02168{width:892.830000px;}
.x0_c02168{left:0.000000px;}
.xd_c02168{left:117.000000px;}
.xe_c02168{left:161.280000px;}
.x8_c02168{left:440.999856px;}
.x4_c02168{left:445.680576px;}
.xb_c02168{left:451.080000px;}
.x7_c02168{left:455.399604px;}
.x5_c02168{left:461.880144px;}
.x1_c02168{left:463.320000px;}
.xa_c02168{left:483.480360px;}
.x9_c02168{left:492.119496px;}
.x6_c02168{left:493.200576px;}
.xc_c02168{left:506.880360px;}
.x3_c02168{left:511.919892px;}
.x2_c02168{left:526.679604px;}
.xf_c02168{left:569.880036px;}
@media print{
.v0_c02168{vertical-align:0.000000pt;}
.ls10_c02168{letter-spacing:-0.705408pt;}
.ls9_c02168{letter-spacing:-0.544896pt;}
.lsc_c02168{letter-spacing:-0.511104pt;}
.ls13_c02168{letter-spacing:-0.244992pt;}
.lse_c02168{letter-spacing:-0.240768pt;}
.lsb_c02168{letter-spacing:-0.236544pt;}
.ls11_c02168{letter-spacing:-0.232320pt;}
.ls8_c02168{letter-spacing:-0.215424pt;}
.ls6_c02168{letter-spacing:-0.105600pt;}
.ls15_c02168{letter-spacing:0.000000pt;}
.ls3_c02168{letter-spacing:0.005376pt;}
.ls17_c02168{letter-spacing:0.012672pt;}
.ls18_c02168{letter-spacing:0.033792pt;}
.ls7_c02168{letter-spacing:0.114048pt;}
.lsf_c02168{letter-spacing:0.451968pt;}
.ls2_c02168{letter-spacing:0.456960pt;}
.ls12_c02168{letter-spacing:0.477312pt;}
.lsd_c02168{letter-spacing:0.515328pt;}
.ls14_c02168{letter-spacing:0.528000pt;}
.lsa_c02168{letter-spacing:0.532224pt;}
.ls4_c02168{letter-spacing:0.544896pt;}
.ls0_c02168{letter-spacing:0.578688pt;}
.ls16_c02168{letter-spacing:0.591360pt;}
.ls1_c02168{letter-spacing:0.637824pt;}
.ls5_c02168{letter-spacing:0.642048pt;}
.wsa_c02168{word-spacing:-13.896960pt;}
.wsb_c02168{word-spacing:-13.445376pt;}
.ws9_c02168{word-spacing:-11.088000pt;}
.ws7_c02168{word-spacing:-11.075328pt;}
.ws8_c02168{word-spacing:-11.037312pt;}
.wsf_c02168{word-spacing:-10.572672pt;}
.wsd_c02168{word-spacing:-10.344576pt;}
.ws2_c02168{word-spacing:-10.015104pt;}
.ws1a_c02168{word-spacing:-3.198720pt;}
.ws15_c02168{word-spacing:-0.958848pt;}
.ws1b_c02168{word-spacing:-0.912384pt;}
.ws12_c02168{word-spacing:-0.899712pt;}
.ws10_c02168{word-spacing:-0.865920pt;}
.ws1c_c02168{word-spacing:-0.354816pt;}
.ws13_c02168{word-spacing:-0.105600pt;}
.ws18_c02168{word-spacing:-0.088704pt;}
.ws14_c02168{word-spacing:-0.084480pt;}
.ws16_c02168{word-spacing:-0.080256pt;}
.ws19_c02168{word-spacing:-0.076032pt;}
.ws11_c02168{word-spacing:0.000000pt;}
.ws17_c02168{word-spacing:0.384384pt;}
.wsc_c02168{word-spacing:1.182720pt;}
.wse_c02168{word-spacing:21.656448pt;}
.ws5_c02168{word-spacing:32.659968pt;}
.ws1_c02168{word-spacing:33.563904pt;}
.ws0_c02168{word-spacing:33.796224pt;}
.ws3_c02168{word-spacing:34.860672pt;}
.ws4_c02168{word-spacing:35.468928pt;}
.ws6_c02168{word-spacing:37.357056pt;}
._0_c02168{margin-left:-1.731840pt;}
._2_c02168{width:1.317888pt;}
._4_c02168{width:4.253568pt;}
._5_c02168{width:32.989440pt;}
._6_c02168{width:34.805760pt;}
._7_c02168{width:35.857536pt;}
._1_c02168{width:44.668800pt;}
._3_c02168{width:45.805056pt;}
.fs0_c02168{font-size:42.240000pt;}
.fs1_c02168{font-size:53.760000pt;}
.y0_c02168{bottom:0.000000pt;}
.y10_c02168{bottom:18.560400pt;}
.y1d_c02168{bottom:130.666267pt;}
.y1f_c02168{bottom:165.866875pt;}
.y1e_c02168{bottom:174.507067pt;}
.y1c_c02168{bottom:245.226427pt;}
.y1b_c02168{bottom:317.226619pt;}
.y19_c02168{bottom:347.946715pt;}
.y18_c02168{bottom:361.386427pt;}
.y14_c02168{bottom:377.386939pt;}
.y1a_c02168{bottom:407.787067pt;}
.y17_c02168{bottom:437.226235pt;}
.y16_c02168{bottom:453.226747pt;}
.y13_c02168{bottom:482.666971pt;}
.y15_c02168{bottom:497.386555pt;}
.y12_c02168{bottom:513.387067pt;}
.y21_c02168{bottom:527.786667pt;}
.y22_c02168{bottom:530.347067pt;}
.y20_c02168{bottom:546.027067pt;}
.yb_c02168{bottom:593.385179pt;}
.yd_c02168{bottom:628.586875pt;}
.yc_c02168{bottom:637.227067pt;}
.ya_c02168{bottom:707.945339pt;}
.y9_c02168{bottom:779.945531pt;}
.y7_c02168{bottom:823.786427pt;}
.y3_c02168{bottom:839.786939pt;}
.y8_c02168{bottom:870.505979pt;}
.y6_c02168{bottom:899.946203pt;}
.y5_c02168{bottom:915.946715pt;}
.y2_c02168{bottom:945.386939pt;}
.y4_c02168{bottom:959.786555pt;}
.y1_c02168{bottom:975.787067pt;}
.yf_c02168{bottom:990.506667pt;}
.y11_c02168{bottom:993.067067pt;}
.ye_c02168{bottom:1008.747067pt;}
.h3_c02168{height:28.916250pt;}
.h5_c02168{height:32.640000pt;}
.h4_c02168{height:36.802500pt;}
.h1_c02168{height:37.063125pt;}
.h2_c02168{height:37.166250pt;}
.h7_c02168{height:47.171250pt;}
.h6_c02168{height:47.302500pt;}
.h0_c02168{height:1122.666667pt;}
.w2_c02168{width:351.360000pt;}
.w1_c02168{width:793.333333pt;}
.w0_c02168{width:793.626667pt;}
.x0_c02168{left:0.000000pt;}
.xd_c02168{left:104.000000pt;}
.xe_c02168{left:143.360000pt;}
.x8_c02168{left:391.999872pt;}
.x4_c02168{left:396.160512pt;}
.xb_c02168{left:400.960000pt;}
.x7_c02168{left:404.799648pt;}
.x5_c02168{left:410.560128pt;}
.x1_c02168{left:411.840000pt;}
.xa_c02168{left:429.760320pt;}
.x9_c02168{left:437.439552pt;}
.x6_c02168{left:438.400512pt;}
.xc_c02168{left:450.560320pt;}
.x3_c02168{left:455.039904pt;}
.x2_c02168{left:468.159648pt;}
.xf_c02168{left:506.560032pt;}
}





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

.ir_c02169:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02169{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02169;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02169{font-family:ff1_c02169;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02169;src:url('chunks/assets/font_d2584c0f7850411186602ab0.woff2')format("woff");}.ff2_c02169{font-family:ff2_c02169;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02169;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02169{font-family:ff3_c02169;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02169{vertical-align:0.000000px;}
.ls9_c02169{letter-spacing:-0.574992px;}
.lsa_c02169{letter-spacing:-0.323136px;}
.ls11_c02169{letter-spacing:-0.275616px;}
.lsf_c02169{letter-spacing:-0.261360px;}
.ls7_c02169{letter-spacing:-0.242352px;}
.ls4_c02169{letter-spacing:-0.118800px;}
.ls13_c02169{letter-spacing:0.000000px;}
.ls1_c02169{letter-spacing:0.006048px;}
.lse_c02169{letter-spacing:0.038016px;}
.lsc_c02169{letter-spacing:0.057024px;}
.ls6_c02169{letter-spacing:0.128304px;}
.lsd_c02169{letter-spacing:0.508464px;}
.ls0_c02169{letter-spacing:0.514080px;}
.ls10_c02169{letter-spacing:0.536976px;}
.lsb_c02169{letter-spacing:0.579744px;}
.ls12_c02169{letter-spacing:0.594000px;}
.ls8_c02169{letter-spacing:0.598752px;}
.ls2_c02169{letter-spacing:0.613008px;}
.ls5_c02169{letter-spacing:0.717552px;}
.ls3_c02169{letter-spacing:0.722304px;}
.sc__c02169{text-shadow:none;}
.sc0_c02169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02169{-webkit-text-stroke:0px transparent;}
.sc0_c02169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02169{word-spacing:-15.634080px;}
.wsc_c02169{word-spacing:-15.126048px;}
.wsa_c02169{word-spacing:-12.474000px;}
.ws8_c02169{word-spacing:-12.459744px;}
.ws9_c02169{word-spacing:-12.416976px;}
.ws4_c02169{word-spacing:-11.637648px;}
.wsd_c02169{word-spacing:-11.305008px;}
.ws16_c02169{word-spacing:-3.598560px;}
.wse_c02169{word-spacing:-0.974160px;}
.ws12_c02169{word-spacing:-0.418176px;}
.ws13_c02169{word-spacing:-0.399168px;}
.ws10_c02169{word-spacing:-0.118800px;}
.ws14_c02169{word-spacing:-0.099792px;}
.ws15_c02169{word-spacing:-0.085536px;}
.ws11_c02169{word-spacing:-0.038016px;}
.wsf_c02169{word-spacing:0.000000px;}
.ws2_c02169{word-spacing:1.330560px;}
.ws6_c02169{word-spacing:36.742464px;}
.ws1_c02169{word-spacing:37.759392px;}
.ws0_c02169{word-spacing:38.020752px;}
.ws3_c02169{word-spacing:39.218256px;}
.ws5_c02169{word-spacing:39.902544px;}
.ws7_c02169{word-spacing:42.026688px;}
._0_c02169{margin-left:-1.948320px;}
._2_c02169{width:1.482624px;}
._4_c02169{width:4.785264px;}
._1_c02169{width:50.252400px;}
._3_c02169{width:51.530688px;}
.fc0_c02169{color:rgb(0,0,0);}
.fs0_c02169{font-size:47.520000px;}
.fs1_c02169{font-size:60.480000px;}
.y0_c02169{bottom:0.000000px;}
.y10_c02169{bottom:20.880450px;}
.y1c_c02169{bottom:146.998362px;}
.y1e_c02169{bottom:186.600234px;}
.y1d_c02169{bottom:196.320450px;}
.y1b_c02169{bottom:275.878542px;}
.y1a_c02169{bottom:356.878758px;}
.y18_c02169{bottom:406.559730px;}
.y14_c02169{bottom:424.560306px;}
.y19_c02169{bottom:458.759262px;}
.y17_c02169{bottom:491.879514px;}
.y16_c02169{bottom:509.880090px;}
.y13_c02169{bottom:543.000342px;}
.y15_c02169{bottom:559.559874px;}
.y12_c02169{bottom:577.560450px;}
.y20_c02169{bottom:593.760000px;}
.y21_c02169{bottom:596.640450px;}
.y1f_c02169{bottom:614.280450px;}
.yb_c02169{bottom:667.558326px;}
.yd_c02169{bottom:707.160234px;}
.yc_c02169{bottom:716.880450px;}
.ya_c02169{bottom:796.438506px;}
.y9_c02169{bottom:877.438722px;}
.y7_c02169{bottom:926.759730px;}
.y3_c02169{bottom:944.760306px;}
.y8_c02169{bottom:979.319226px;}
.y6_c02169{bottom:1012.439478px;}
.y5_c02169{bottom:1030.440054px;}
.y2_c02169{bottom:1063.560306px;}
.y4_c02169{bottom:1079.759874px;}
.y1_c02169{bottom:1097.760450px;}
.yf_c02169{bottom:1114.320000px;}
.y11_c02169{bottom:1117.200450px;}
.ye_c02169{bottom:1134.840450px;}
.h3_c02169{height:32.530781px;}
.h5_c02169{height:36.720000px;}
.h4_c02169{height:41.402813px;}
.h1_c02169{height:41.696016px;}
.h2_c02169{height:41.812031px;}
.h7_c02169{height:53.067656px;}
.h6_c02169{height:53.215313px;}
.h0_c02169{height:1263.000000px;}
.w2_c02169{width:395.280000px;}
.w1_c02169{width:892.500000px;}
.w0_c02169{width:892.830000px;}
.x0_c02169{left:0.000000px;}
.xd_c02169{left:117.000000px;}
.xe_c02169{left:161.280000px;}
.x8_c02169{left:440.999856px;}
.x4_c02169{left:445.680576px;}
.xb_c02169{left:451.080000px;}
.x7_c02169{left:455.399604px;}
.x5_c02169{left:461.880144px;}
.x1_c02169{left:463.320000px;}
.xa_c02169{left:483.480360px;}
.x9_c02169{left:492.119496px;}
.x6_c02169{left:493.200576px;}
.xc_c02169{left:506.880360px;}
.x3_c02169{left:511.919892px;}
.x2_c02169{left:526.679604px;}
@media print{
.v0_c02169{vertical-align:0.000000pt;}
.ls9_c02169{letter-spacing:-0.511104pt;}
.lsa_c02169{letter-spacing:-0.287232pt;}
.ls11_c02169{letter-spacing:-0.244992pt;}
.lsf_c02169{letter-spacing:-0.232320pt;}
.ls7_c02169{letter-spacing:-0.215424pt;}
.ls4_c02169{letter-spacing:-0.105600pt;}
.ls13_c02169{letter-spacing:0.000000pt;}
.ls1_c02169{letter-spacing:0.005376pt;}
.lse_c02169{letter-spacing:0.033792pt;}
.lsc_c02169{letter-spacing:0.050688pt;}
.ls6_c02169{letter-spacing:0.114048pt;}
.lsd_c02169{letter-spacing:0.451968pt;}
.ls0_c02169{letter-spacing:0.456960pt;}
.ls10_c02169{letter-spacing:0.477312pt;}
.lsb_c02169{letter-spacing:0.515328pt;}
.ls12_c02169{letter-spacing:0.528000pt;}
.ls8_c02169{letter-spacing:0.532224pt;}
.ls2_c02169{letter-spacing:0.544896pt;}
.ls5_c02169{letter-spacing:0.637824pt;}
.ls3_c02169{letter-spacing:0.642048pt;}
.wsb_c02169{word-spacing:-13.896960pt;}
.wsc_c02169{word-spacing:-13.445376pt;}
.wsa_c02169{word-spacing:-11.088000pt;}
.ws8_c02169{word-spacing:-11.075328pt;}
.ws9_c02169{word-spacing:-11.037312pt;}
.ws4_c02169{word-spacing:-10.344576pt;}
.wsd_c02169{word-spacing:-10.048896pt;}
.ws16_c02169{word-spacing:-3.198720pt;}
.wse_c02169{word-spacing:-0.865920pt;}
.ws12_c02169{word-spacing:-0.371712pt;}
.ws13_c02169{word-spacing:-0.354816pt;}
.ws10_c02169{word-spacing:-0.105600pt;}
.ws14_c02169{word-spacing:-0.088704pt;}
.ws15_c02169{word-spacing:-0.076032pt;}
.ws11_c02169{word-spacing:-0.033792pt;}
.wsf_c02169{word-spacing:0.000000pt;}
.ws2_c02169{word-spacing:1.182720pt;}
.ws6_c02169{word-spacing:32.659968pt;}
.ws1_c02169{word-spacing:33.563904pt;}
.ws0_c02169{word-spacing:33.796224pt;}
.ws3_c02169{word-spacing:34.860672pt;}
.ws5_c02169{word-spacing:35.468928pt;}
.ws7_c02169{word-spacing:37.357056pt;}
._0_c02169{margin-left:-1.731840pt;}
._2_c02169{width:1.317888pt;}
._4_c02169{width:4.253568pt;}
._1_c02169{width:44.668800pt;}
._3_c02169{width:45.805056pt;}
.fs0_c02169{font-size:42.240000pt;}
.fs1_c02169{font-size:53.760000pt;}
.y0_c02169{bottom:0.000000pt;}
.y10_c02169{bottom:18.560400pt;}
.y1c_c02169{bottom:130.665211pt;}
.y1e_c02169{bottom:165.866875pt;}
.y1d_c02169{bottom:174.507067pt;}
.y1b_c02169{bottom:245.225371pt;}
.y1a_c02169{bottom:317.225563pt;}
.y18_c02169{bottom:361.386427pt;}
.y14_c02169{bottom:377.386939pt;}
.y19_c02169{bottom:407.786011pt;}
.y17_c02169{bottom:437.226235pt;}
.y16_c02169{bottom:453.226747pt;}
.y13_c02169{bottom:482.666971pt;}
.y15_c02169{bottom:497.386555pt;}
.y12_c02169{bottom:513.387067pt;}
.y20_c02169{bottom:527.786667pt;}
.y21_c02169{bottom:530.347067pt;}
.y1f_c02169{bottom:546.027067pt;}
.yb_c02169{bottom:593.385179pt;}
.yd_c02169{bottom:628.586875pt;}
.yc_c02169{bottom:637.227067pt;}
.ya_c02169{bottom:707.945339pt;}
.y9_c02169{bottom:779.945531pt;}
.y7_c02169{bottom:823.786427pt;}
.y3_c02169{bottom:839.786939pt;}
.y8_c02169{bottom:870.505979pt;}
.y6_c02169{bottom:899.946203pt;}
.y5_c02169{bottom:915.946715pt;}
.y2_c02169{bottom:945.386939pt;}
.y4_c02169{bottom:959.786555pt;}
.y1_c02169{bottom:975.787067pt;}
.yf_c02169{bottom:990.506667pt;}
.y11_c02169{bottom:993.067067pt;}
.ye_c02169{bottom:1008.747067pt;}
.h3_c02169{height:28.916250pt;}
.h5_c02169{height:32.640000pt;}
.h4_c02169{height:36.802500pt;}
.h1_c02169{height:37.063125pt;}
.h2_c02169{height:37.166250pt;}
.h7_c02169{height:47.171250pt;}
.h6_c02169{height:47.302500pt;}
.h0_c02169{height:1122.666667pt;}
.w2_c02169{width:351.360000pt;}
.w1_c02169{width:793.333333pt;}
.w0_c02169{width:793.626667pt;}
.x0_c02169{left:0.000000pt;}
.xd_c02169{left:104.000000pt;}
.xe_c02169{left:143.360000pt;}
.x8_c02169{left:391.999872pt;}
.x4_c02169{left:396.160512pt;}
.xb_c02169{left:400.960000pt;}
.x7_c02169{left:404.799648pt;}
.x5_c02169{left:410.560128pt;}
.x1_c02169{left:411.840000pt;}
.xa_c02169{left:429.760320pt;}
.x9_c02169{left:437.439552pt;}
.x6_c02169{left:438.400512pt;}
.xc_c02169{left:450.560320pt;}
.x3_c02169{left:455.039904pt;}
.x2_c02169{left:468.159648pt;}
}





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

.ir_c02170:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02170{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02170;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02170{font-family:ff1_c02170;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02170;src:url('chunks/assets/font_0b5c689afc98605e78a9a7f8.woff2')format("woff");}.ff2_c02170{font-family:ff2_c02170;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02170;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02170{font-family:ff3_c02170;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02170{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02170{vertical-align:0.000000px;}
.ls15_c02170{letter-spacing:-0.793584px;}
.ls14_c02170{letter-spacing:-0.774576px;}
.ls16_c02170{letter-spacing:-0.736560px;}
.ls9_c02170{letter-spacing:-0.613008px;}
.lsc_c02170{letter-spacing:-0.574992px;}
.ls11_c02170{letter-spacing:-0.275616px;}
.ls17_c02170{letter-spacing:-0.270864px;}
.lsb_c02170{letter-spacing:-0.261360px;}
.ls8_c02170{letter-spacing:-0.242352px;}
.ls6_c02170{letter-spacing:-0.118800px;}
.ls13_c02170{letter-spacing:0.000000px;}
.ls3_c02170{letter-spacing:0.006048px;}
.ls7_c02170{letter-spacing:0.128304px;}
.lse_c02170{letter-spacing:0.508464px;}
.ls2_c02170{letter-spacing:0.514080px;}
.ls10_c02170{letter-spacing:0.536976px;}
.lsd_c02170{letter-spacing:0.579744px;}
.ls12_c02170{letter-spacing:0.594000px;}
.lsa_c02170{letter-spacing:0.598752px;}
.ls4_c02170{letter-spacing:0.613008px;}
.ls0_c02170{letter-spacing:0.651024px;}
.lsf_c02170{letter-spacing:0.660528px;}
.ls1_c02170{letter-spacing:0.717552px;}
.ls5_c02170{letter-spacing:0.722304px;}
.sc__c02170{text-shadow:none;}
.sc0_c02170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02170{-webkit-text-stroke:0px transparent;}
.sc0_c02170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02170{word-spacing:-15.634080px;}
.wsb_c02170{word-spacing:-15.126048px;}
.ws9_c02170{word-spacing:-12.474000px;}
.wsd_c02170{word-spacing:-12.459744px;}
.ws8_c02170{word-spacing:-12.416976px;}
.ws6_c02170{word-spacing:-12.388464px;}
.ws2_c02170{word-spacing:-11.266992px;}
.wsc_c02170{word-spacing:-11.105424px;}
.ws19_c02170{word-spacing:-3.598560px;}
.ws16_c02170{word-spacing:-1.078704px;}
.ws17_c02170{word-spacing:-1.021680px;}
.ws13_c02170{word-spacing:-1.012176px;}
.ws11_c02170{word-spacing:-0.974160px;}
.ws14_c02170{word-spacing:-0.118800px;}
.ws15_c02170{word-spacing:-0.099792px;}
.ws1b_c02170{word-spacing:-0.090288px;}
.ws18_c02170{word-spacing:-0.085536px;}
.ws12_c02170{word-spacing:0.000000px;}
.ws1a_c02170{word-spacing:0.432432px;}
.ws10_c02170{word-spacing:6.629040px;}
.wsf_c02170{word-spacing:34.836912px;}
.ws7_c02170{word-spacing:36.143712px;}
.ws5_c02170{word-spacing:36.742464px;}
.ws1_c02170{word-spacing:37.759392px;}
.ws0_c02170{word-spacing:38.020752px;}
.ws3_c02170{word-spacing:39.218256px;}
.ws4_c02170{word-spacing:39.902544px;}
.wse_c02170{word-spacing:42.026688px;}
._0_c02170{margin-left:-1.948320px;}
._2_c02170{width:1.482624px;}
._5_c02170{width:19.982160px;}
._6_c02170{width:23.451120px;}
._4_c02170{width:24.691392px;}
._1_c02170{width:50.252400px;}
._3_c02170{width:51.530688px;}
.fc0_c02170{color:rgb(0,0,0);}
.fs0_c02170{font-size:47.520000px;}
.fs1_c02170{font-size:60.480000px;}
.y0_c02170{bottom:0.000000px;}
.y10_c02170{bottom:20.880450px;}
.y1d_c02170{bottom:131.878686px;}
.y1c_c02170{bottom:146.998362px;}
.y1f_c02170{bottom:186.600234px;}
.y1e_c02170{bottom:196.320450px;}
.y1b_c02170{bottom:275.878542px;}
.y1a_c02170{bottom:356.878758px;}
.y18_c02170{bottom:406.559730px;}
.y14_c02170{bottom:424.560306px;}
.y19_c02170{bottom:458.759262px;}
.y17_c02170{bottom:491.879514px;}
.y16_c02170{bottom:509.880090px;}
.y13_c02170{bottom:543.000342px;}
.y15_c02170{bottom:559.559874px;}
.y12_c02170{bottom:577.560450px;}
.y21_c02170{bottom:593.760000px;}
.y22_c02170{bottom:596.640450px;}
.y20_c02170{bottom:614.280450px;}
.yb_c02170{bottom:667.558326px;}
.yd_c02170{bottom:707.160234px;}
.yc_c02170{bottom:716.880450px;}
.ya_c02170{bottom:796.438506px;}
.y9_c02170{bottom:877.438722px;}
.y7_c02170{bottom:926.759730px;}
.y3_c02170{bottom:944.760306px;}
.y8_c02170{bottom:979.319226px;}
.y6_c02170{bottom:1012.439478px;}
.y5_c02170{bottom:1030.440054px;}
.y2_c02170{bottom:1063.560306px;}
.y4_c02170{bottom:1079.759874px;}
.y1_c02170{bottom:1097.760450px;}
.yf_c02170{bottom:1114.320000px;}
.y11_c02170{bottom:1117.200450px;}
.ye_c02170{bottom:1134.840450px;}
.h3_c02170{height:32.530781px;}
.h5_c02170{height:36.720000px;}
.h4_c02170{height:41.402813px;}
.h1_c02170{height:41.696016px;}
.h2_c02170{height:41.812031px;}
.h7_c02170{height:53.067656px;}
.h6_c02170{height:53.215313px;}
.h0_c02170{height:1263.000000px;}
.w2_c02170{width:395.280000px;}
.w1_c02170{width:892.500000px;}
.w0_c02170{width:892.830000px;}
.x0_c02170{left:0.000000px;}
.xd_c02170{left:117.000000px;}
.xe_c02170{left:161.280000px;}
.x8_c02170{left:440.999856px;}
.x4_c02170{left:445.680576px;}
.xb_c02170{left:451.080000px;}
.x7_c02170{left:455.399604px;}
.x5_c02170{left:461.880144px;}
.x1_c02170{left:463.320000px;}
.xa_c02170{left:483.480360px;}
.x9_c02170{left:492.119496px;}
.x6_c02170{left:493.200576px;}
.xc_c02170{left:506.880360px;}
.x3_c02170{left:511.919892px;}
.x2_c02170{left:526.679604px;}
.xf_c02170{left:569.880036px;}
@media print{
.v0_c02170{vertical-align:0.000000pt;}
.ls15_c02170{letter-spacing:-0.705408pt;}
.ls14_c02170{letter-spacing:-0.688512pt;}
.ls16_c02170{letter-spacing:-0.654720pt;}
.ls9_c02170{letter-spacing:-0.544896pt;}
.lsc_c02170{letter-spacing:-0.511104pt;}
.ls11_c02170{letter-spacing:-0.244992pt;}
.ls17_c02170{letter-spacing:-0.240768pt;}
.lsb_c02170{letter-spacing:-0.232320pt;}
.ls8_c02170{letter-spacing:-0.215424pt;}
.ls6_c02170{letter-spacing:-0.105600pt;}
.ls13_c02170{letter-spacing:0.000000pt;}
.ls3_c02170{letter-spacing:0.005376pt;}
.ls7_c02170{letter-spacing:0.114048pt;}
.lse_c02170{letter-spacing:0.451968pt;}
.ls2_c02170{letter-spacing:0.456960pt;}
.ls10_c02170{letter-spacing:0.477312pt;}
.lsd_c02170{letter-spacing:0.515328pt;}
.ls12_c02170{letter-spacing:0.528000pt;}
.lsa_c02170{letter-spacing:0.532224pt;}
.ls4_c02170{letter-spacing:0.544896pt;}
.ls0_c02170{letter-spacing:0.578688pt;}
.lsf_c02170{letter-spacing:0.587136pt;}
.ls1_c02170{letter-spacing:0.637824pt;}
.ls5_c02170{letter-spacing:0.642048pt;}
.wsa_c02170{word-spacing:-13.896960pt;}
.wsb_c02170{word-spacing:-13.445376pt;}
.ws9_c02170{word-spacing:-11.088000pt;}
.wsd_c02170{word-spacing:-11.075328pt;}
.ws8_c02170{word-spacing:-11.037312pt;}
.ws6_c02170{word-spacing:-11.011968pt;}
.ws2_c02170{word-spacing:-10.015104pt;}
.wsc_c02170{word-spacing:-9.871488pt;}
.ws19_c02170{word-spacing:-3.198720pt;}
.ws16_c02170{word-spacing:-0.958848pt;}
.ws17_c02170{word-spacing:-0.908160pt;}
.ws13_c02170{word-spacing:-0.899712pt;}
.ws11_c02170{word-spacing:-0.865920pt;}
.ws14_c02170{word-spacing:-0.105600pt;}
.ws15_c02170{word-spacing:-0.088704pt;}
.ws1b_c02170{word-spacing:-0.080256pt;}
.ws18_c02170{word-spacing:-0.076032pt;}
.ws12_c02170{word-spacing:0.000000pt;}
.ws1a_c02170{word-spacing:0.384384pt;}
.ws10_c02170{word-spacing:5.892480pt;}
.wsf_c02170{word-spacing:30.966144pt;}
.ws7_c02170{word-spacing:32.127744pt;}
.ws5_c02170{word-spacing:32.659968pt;}
.ws1_c02170{word-spacing:33.563904pt;}
.ws0_c02170{word-spacing:33.796224pt;}
.ws3_c02170{word-spacing:34.860672pt;}
.ws4_c02170{word-spacing:35.468928pt;}
.wse_c02170{word-spacing:37.357056pt;}
._0_c02170{margin-left:-1.731840pt;}
._2_c02170{width:1.317888pt;}
._5_c02170{width:17.761920pt;}
._6_c02170{width:20.845440pt;}
._4_c02170{width:21.947904pt;}
._1_c02170{width:44.668800pt;}
._3_c02170{width:45.805056pt;}
.fs0_c02170{font-size:42.240000pt;}
.fs1_c02170{font-size:53.760000pt;}
.y0_c02170{bottom:0.000000pt;}
.y10_c02170{bottom:18.560400pt;}
.y1d_c02170{bottom:117.225499pt;}
.y1c_c02170{bottom:130.665211pt;}
.y1f_c02170{bottom:165.866875pt;}
.y1e_c02170{bottom:174.507067pt;}
.y1b_c02170{bottom:245.225371pt;}
.y1a_c02170{bottom:317.225563pt;}
.y18_c02170{bottom:361.386427pt;}
.y14_c02170{bottom:377.386939pt;}
.y19_c02170{bottom:407.786011pt;}
.y17_c02170{bottom:437.226235pt;}
.y16_c02170{bottom:453.226747pt;}
.y13_c02170{bottom:482.666971pt;}
.y15_c02170{bottom:497.386555pt;}
.y12_c02170{bottom:513.387067pt;}
.y21_c02170{bottom:527.786667pt;}
.y22_c02170{bottom:530.347067pt;}
.y20_c02170{bottom:546.027067pt;}
.yb_c02170{bottom:593.385179pt;}
.yd_c02170{bottom:628.586875pt;}
.yc_c02170{bottom:637.227067pt;}
.ya_c02170{bottom:707.945339pt;}
.y9_c02170{bottom:779.945531pt;}
.y7_c02170{bottom:823.786427pt;}
.y3_c02170{bottom:839.786939pt;}
.y8_c02170{bottom:870.505979pt;}
.y6_c02170{bottom:899.946203pt;}
.y5_c02170{bottom:915.946715pt;}
.y2_c02170{bottom:945.386939pt;}
.y4_c02170{bottom:959.786555pt;}
.y1_c02170{bottom:975.787067pt;}
.yf_c02170{bottom:990.506667pt;}
.y11_c02170{bottom:993.067067pt;}
.ye_c02170{bottom:1008.747067pt;}
.h3_c02170{height:28.916250pt;}
.h5_c02170{height:32.640000pt;}
.h4_c02170{height:36.802500pt;}
.h1_c02170{height:37.063125pt;}
.h2_c02170{height:37.166250pt;}
.h7_c02170{height:47.171250pt;}
.h6_c02170{height:47.302500pt;}
.h0_c02170{height:1122.666667pt;}
.w2_c02170{width:351.360000pt;}
.w1_c02170{width:793.333333pt;}
.w0_c02170{width:793.626667pt;}
.x0_c02170{left:0.000000pt;}
.xd_c02170{left:104.000000pt;}
.xe_c02170{left:143.360000pt;}
.x8_c02170{left:391.999872pt;}
.x4_c02170{left:396.160512pt;}
.xb_c02170{left:400.960000pt;}
.x7_c02170{left:404.799648pt;}
.x5_c02170{left:410.560128pt;}
.x1_c02170{left:411.840000pt;}
.xa_c02170{left:429.760320pt;}
.x9_c02170{left:437.439552pt;}
.x6_c02170{left:438.400512pt;}
.xc_c02170{left:450.560320pt;}
.x3_c02170{left:455.039904pt;}
.x2_c02170{left:468.159648pt;}
.xf_c02170{left:506.560032pt;}
}





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

.ir_c02171:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02171{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02171;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02171{font-family:ff1_c02171;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02171;src:url('chunks/assets/font_ef365ef3145006e2776eba18.woff2')format("woff");}.ff2_c02171{font-family:ff2_c02171;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02171;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02171{font-family:ff3_c02171;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02171{vertical-align:0.000000px;}
.ls9_c02171{letter-spacing:-0.613008px;}
.lsc_c02171{letter-spacing:-0.574992px;}
.ls11_c02171{letter-spacing:-0.275616px;}
.lsb_c02171{letter-spacing:-0.261360px;}
.ls8_c02171{letter-spacing:-0.242352px;}
.ls6_c02171{letter-spacing:-0.118800px;}
.ls13_c02171{letter-spacing:0.000000px;}
.ls2_c02171{letter-spacing:0.006048px;}
.ls7_c02171{letter-spacing:0.128304px;}
.ls14_c02171{letter-spacing:0.242352px;}
.lse_c02171{letter-spacing:0.508464px;}
.ls1_c02171{letter-spacing:0.514080px;}
.ls10_c02171{letter-spacing:0.536976px;}
.lsd_c02171{letter-spacing:0.579744px;}
.ls12_c02171{letter-spacing:0.594000px;}
.lsa_c02171{letter-spacing:0.598752px;}
.ls4_c02171{letter-spacing:0.613008px;}
.ls3_c02171{letter-spacing:0.651024px;}
.lsf_c02171{letter-spacing:0.660528px;}
.ls0_c02171{letter-spacing:0.717552px;}
.ls5_c02171{letter-spacing:0.722304px;}
.sc__c02171{text-shadow:none;}
.sc0_c02171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02171{-webkit-text-stroke:0px transparent;}
.sc0_c02171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02171{word-spacing:-15.634080px;}
.wsb_c02171{word-spacing:-15.126048px;}
.ws9_c02171{word-spacing:-12.474000px;}
.ws8_c02171{word-spacing:-12.416976px;}
.ws6_c02171{word-spacing:-12.388464px;}
.ws2_c02171{word-spacing:-11.266992px;}
.ws14_c02171{word-spacing:-3.598560px;}
.ws11_c02171{word-spacing:-1.078704px;}
.ws12_c02171{word-spacing:-1.021680px;}
.ws15_c02171{word-spacing:-1.012176px;}
.wsd_c02171{word-spacing:-0.974160px;}
.wsf_c02171{word-spacing:-0.118800px;}
.ws10_c02171{word-spacing:-0.099792px;}
.ws13_c02171{word-spacing:-0.085536px;}
.wse_c02171{word-spacing:0.000000px;}
.ws7_c02171{word-spacing:36.143712px;}
.ws5_c02171{word-spacing:36.742464px;}
.ws1_c02171{word-spacing:37.759392px;}
.ws0_c02171{word-spacing:38.020752px;}
.ws3_c02171{word-spacing:39.218256px;}
.ws4_c02171{word-spacing:39.902544px;}
.wsc_c02171{word-spacing:42.026688px;}
._0_c02171{margin-left:-1.948320px;}
._2_c02171{width:1.482624px;}
._1_c02171{width:50.252400px;}
._3_c02171{width:51.530688px;}
.fc0_c02171{color:rgb(0,0,0);}
.fs0_c02171{font-size:47.520000px;}
.fs1_c02171{font-size:60.480000px;}
.y0_c02171{bottom:0.000000px;}
.y10_c02171{bottom:20.880450px;}
.y1c_c02171{bottom:146.998362px;}
.y1e_c02171{bottom:186.600234px;}
.y1d_c02171{bottom:196.320450px;}
.y1b_c02171{bottom:275.878542px;}
.y1a_c02171{bottom:356.878758px;}
.y18_c02171{bottom:406.559730px;}
.y14_c02171{bottom:424.560306px;}
.y19_c02171{bottom:458.759262px;}
.y17_c02171{bottom:491.879514px;}
.y16_c02171{bottom:509.880090px;}
.y13_c02171{bottom:543.000342px;}
.y15_c02171{bottom:559.559874px;}
.y12_c02171{bottom:577.560450px;}
.y20_c02171{bottom:593.760000px;}
.y21_c02171{bottom:596.640450px;}
.y1f_c02171{bottom:614.280450px;}
.yb_c02171{bottom:667.558326px;}
.yd_c02171{bottom:707.160234px;}
.yc_c02171{bottom:716.880450px;}
.ya_c02171{bottom:796.438506px;}
.y9_c02171{bottom:877.438722px;}
.y7_c02171{bottom:926.759730px;}
.y3_c02171{bottom:944.760306px;}
.y8_c02171{bottom:979.319226px;}
.y6_c02171{bottom:1012.439478px;}
.y5_c02171{bottom:1030.440054px;}
.y2_c02171{bottom:1063.560306px;}
.y4_c02171{bottom:1079.759874px;}
.y1_c02171{bottom:1097.760450px;}
.yf_c02171{bottom:1114.320000px;}
.y11_c02171{bottom:1117.200450px;}
.ye_c02171{bottom:1134.840450px;}
.h3_c02171{height:32.530781px;}
.h5_c02171{height:36.720000px;}
.h4_c02171{height:41.402813px;}
.h1_c02171{height:41.696016px;}
.h2_c02171{height:41.812031px;}
.h7_c02171{height:53.067656px;}
.h6_c02171{height:53.215313px;}
.h0_c02171{height:1263.000000px;}
.w2_c02171{width:395.280000px;}
.w1_c02171{width:892.500000px;}
.w0_c02171{width:892.830000px;}
.x0_c02171{left:0.000000px;}
.xd_c02171{left:117.000000px;}
.xe_c02171{left:161.280000px;}
.x8_c02171{left:440.999856px;}
.x4_c02171{left:445.680576px;}
.xb_c02171{left:451.080000px;}
.x7_c02171{left:455.399604px;}
.x5_c02171{left:461.880144px;}
.x1_c02171{left:463.320000px;}
.xa_c02171{left:483.480360px;}
.x9_c02171{left:492.119496px;}
.x6_c02171{left:493.200576px;}
.xc_c02171{left:506.880360px;}
.x3_c02171{left:511.919892px;}
.x2_c02171{left:526.679604px;}
@media print{
.v0_c02171{vertical-align:0.000000pt;}
.ls9_c02171{letter-spacing:-0.544896pt;}
.lsc_c02171{letter-spacing:-0.511104pt;}
.ls11_c02171{letter-spacing:-0.244992pt;}
.lsb_c02171{letter-spacing:-0.232320pt;}
.ls8_c02171{letter-spacing:-0.215424pt;}
.ls6_c02171{letter-spacing:-0.105600pt;}
.ls13_c02171{letter-spacing:0.000000pt;}
.ls2_c02171{letter-spacing:0.005376pt;}
.ls7_c02171{letter-spacing:0.114048pt;}
.ls14_c02171{letter-spacing:0.215424pt;}
.lse_c02171{letter-spacing:0.451968pt;}
.ls1_c02171{letter-spacing:0.456960pt;}
.ls10_c02171{letter-spacing:0.477312pt;}
.lsd_c02171{letter-spacing:0.515328pt;}
.ls12_c02171{letter-spacing:0.528000pt;}
.lsa_c02171{letter-spacing:0.532224pt;}
.ls4_c02171{letter-spacing:0.544896pt;}
.ls3_c02171{letter-spacing:0.578688pt;}
.lsf_c02171{letter-spacing:0.587136pt;}
.ls0_c02171{letter-spacing:0.637824pt;}
.ls5_c02171{letter-spacing:0.642048pt;}
.wsa_c02171{word-spacing:-13.896960pt;}
.wsb_c02171{word-spacing:-13.445376pt;}
.ws9_c02171{word-spacing:-11.088000pt;}
.ws8_c02171{word-spacing:-11.037312pt;}
.ws6_c02171{word-spacing:-11.011968pt;}
.ws2_c02171{word-spacing:-10.015104pt;}
.ws14_c02171{word-spacing:-3.198720pt;}
.ws11_c02171{word-spacing:-0.958848pt;}
.ws12_c02171{word-spacing:-0.908160pt;}
.ws15_c02171{word-spacing:-0.899712pt;}
.wsd_c02171{word-spacing:-0.865920pt;}
.wsf_c02171{word-spacing:-0.105600pt;}
.ws10_c02171{word-spacing:-0.088704pt;}
.ws13_c02171{word-spacing:-0.076032pt;}
.wse_c02171{word-spacing:0.000000pt;}
.ws7_c02171{word-spacing:32.127744pt;}
.ws5_c02171{word-spacing:32.659968pt;}
.ws1_c02171{word-spacing:33.563904pt;}
.ws0_c02171{word-spacing:33.796224pt;}
.ws3_c02171{word-spacing:34.860672pt;}
.ws4_c02171{word-spacing:35.468928pt;}
.wsc_c02171{word-spacing:37.357056pt;}
._0_c02171{margin-left:-1.731840pt;}
._2_c02171{width:1.317888pt;}
._1_c02171{width:44.668800pt;}
._3_c02171{width:45.805056pt;}
.fs0_c02171{font-size:42.240000pt;}
.fs1_c02171{font-size:53.760000pt;}
.y0_c02171{bottom:0.000000pt;}
.y10_c02171{bottom:18.560400pt;}
.y1c_c02171{bottom:130.665211pt;}
.y1e_c02171{bottom:165.866875pt;}
.y1d_c02171{bottom:174.507067pt;}
.y1b_c02171{bottom:245.225371pt;}
.y1a_c02171{bottom:317.225563pt;}
.y18_c02171{bottom:361.386427pt;}
.y14_c02171{bottom:377.386939pt;}
.y19_c02171{bottom:407.786011pt;}
.y17_c02171{bottom:437.226235pt;}
.y16_c02171{bottom:453.226747pt;}
.y13_c02171{bottom:482.666971pt;}
.y15_c02171{bottom:497.386555pt;}
.y12_c02171{bottom:513.387067pt;}
.y20_c02171{bottom:527.786667pt;}
.y21_c02171{bottom:530.347067pt;}
.y1f_c02171{bottom:546.027067pt;}
.yb_c02171{bottom:593.385179pt;}
.yd_c02171{bottom:628.586875pt;}
.yc_c02171{bottom:637.227067pt;}
.ya_c02171{bottom:707.945339pt;}
.y9_c02171{bottom:779.945531pt;}
.y7_c02171{bottom:823.786427pt;}
.y3_c02171{bottom:839.786939pt;}
.y8_c02171{bottom:870.505979pt;}
.y6_c02171{bottom:899.946203pt;}
.y5_c02171{bottom:915.946715pt;}
.y2_c02171{bottom:945.386939pt;}
.y4_c02171{bottom:959.786555pt;}
.y1_c02171{bottom:975.787067pt;}
.yf_c02171{bottom:990.506667pt;}
.y11_c02171{bottom:993.067067pt;}
.ye_c02171{bottom:1008.747067pt;}
.h3_c02171{height:28.916250pt;}
.h5_c02171{height:32.640000pt;}
.h4_c02171{height:36.802500pt;}
.h1_c02171{height:37.063125pt;}
.h2_c02171{height:37.166250pt;}
.h7_c02171{height:47.171250pt;}
.h6_c02171{height:47.302500pt;}
.h0_c02171{height:1122.666667pt;}
.w2_c02171{width:351.360000pt;}
.w1_c02171{width:793.333333pt;}
.w0_c02171{width:793.626667pt;}
.x0_c02171{left:0.000000pt;}
.xd_c02171{left:104.000000pt;}
.xe_c02171{left:143.360000pt;}
.x8_c02171{left:391.999872pt;}
.x4_c02171{left:396.160512pt;}
.xb_c02171{left:400.960000pt;}
.x7_c02171{left:404.799648pt;}
.x5_c02171{left:410.560128pt;}
.x1_c02171{left:411.840000pt;}
.xa_c02171{left:429.760320pt;}
.x9_c02171{left:437.439552pt;}
.x6_c02171{left:438.400512pt;}
.xc_c02171{left:450.560320pt;}
.x3_c02171{left:455.039904pt;}
.x2_c02171{left:468.159648pt;}
}





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

.ir_c02172:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02172{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02172;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02172{font-family:ff1_c02172;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02172;src:url('chunks/assets/font_0b913c091d966229a8a6db9c.woff2')format("woff");}.ff2_c02172{font-family:ff2_c02172;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02172;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02172{font-family:ff3_c02172;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02172{vertical-align:0.000000px;}
.lsa_c02172{letter-spacing:-0.755568px;}
.ls8_c02172{letter-spacing:-0.613008px;}
.lsb_c02172{letter-spacing:-0.574992px;}
.lse_c02172{letter-spacing:-0.427680px;}
.ls11_c02172{letter-spacing:-0.275616px;}
.lsf_c02172{letter-spacing:-0.261360px;}
.ls7_c02172{letter-spacing:-0.242352px;}
.ls5_c02172{letter-spacing:-0.118800px;}
.ls13_c02172{letter-spacing:0.000000px;}
.ls2_c02172{letter-spacing:0.006048px;}
.ls6_c02172{letter-spacing:0.128304px;}
.lsd_c02172{letter-spacing:0.508464px;}
.ls1_c02172{letter-spacing:0.514080px;}
.ls10_c02172{letter-spacing:0.536976px;}
.lsc_c02172{letter-spacing:0.579744px;}
.ls12_c02172{letter-spacing:0.594000px;}
.ls9_c02172{letter-spacing:0.598752px;}
.ls3_c02172{letter-spacing:0.613008px;}
.ls0_c02172{letter-spacing:0.717552px;}
.ls4_c02172{letter-spacing:0.722304px;}
.sc__c02172{text-shadow:none;}
.sc0_c02172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02172{-webkit-text-stroke:0px transparent;}
.sc0_c02172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02172{word-spacing:-15.634080px;}
.wsc_c02172{word-spacing:-15.126048px;}
.wsa_c02172{word-spacing:-12.474000px;}
.ws8_c02172{word-spacing:-12.459744px;}
.ws9_c02172{word-spacing:-12.416976px;}
.ws2_c02172{word-spacing:-11.266992px;}
.ws4_c02172{word-spacing:-11.124432px;}
.ws14_c02172{word-spacing:-3.598560px;}
.ws10_c02172{word-spacing:-1.078704px;}
.wsd_c02172{word-spacing:-0.974160px;}
.wsf_c02172{word-spacing:-0.118800px;}
.ws12_c02172{word-spacing:-0.099792px;}
.ws13_c02172{word-spacing:-0.085536px;}
.wse_c02172{word-spacing:0.000000px;}
.ws11_c02172{word-spacing:0.066528px;}
.ws6_c02172{word-spacing:36.742464px;}
.ws1_c02172{word-spacing:37.759392px;}
.ws0_c02172{word-spacing:38.020752px;}
.ws3_c02172{word-spacing:39.218256px;}
.ws5_c02172{word-spacing:39.902544px;}
.ws7_c02172{word-spacing:42.026688px;}
._0_c02172{margin-left:-1.948320px;}
._2_c02172{width:1.482624px;}
._4_c02172{width:3.369168px;}
._1_c02172{width:50.252400px;}
._3_c02172{width:51.530688px;}
.fc0_c02172{color:rgb(0,0,0);}
.fs0_c02172{font-size:47.520000px;}
.fs1_c02172{font-size:60.480000px;}
.y0_c02172{bottom:0.000000px;}
.y10_c02172{bottom:20.880450px;}
.y1c_c02172{bottom:146.998362px;}
.y1e_c02172{bottom:186.600234px;}
.y1d_c02172{bottom:196.320450px;}
.y1b_c02172{bottom:275.878542px;}
.y1a_c02172{bottom:356.878758px;}
.y18_c02172{bottom:406.559730px;}
.y14_c02172{bottom:424.560306px;}
.y19_c02172{bottom:458.759262px;}
.y17_c02172{bottom:491.879514px;}
.y16_c02172{bottom:509.880090px;}
.y13_c02172{bottom:543.000342px;}
.y15_c02172{bottom:559.559874px;}
.y12_c02172{bottom:577.560450px;}
.y20_c02172{bottom:593.760000px;}
.y21_c02172{bottom:596.640450px;}
.y1f_c02172{bottom:614.280450px;}
.yb_c02172{bottom:667.558326px;}
.yd_c02172{bottom:707.160234px;}
.yc_c02172{bottom:716.880450px;}
.ya_c02172{bottom:796.438506px;}
.y9_c02172{bottom:877.438722px;}
.y7_c02172{bottom:926.759730px;}
.y3_c02172{bottom:944.760306px;}
.y8_c02172{bottom:979.319226px;}
.y6_c02172{bottom:1012.439478px;}
.y5_c02172{bottom:1030.440054px;}
.y2_c02172{bottom:1063.560306px;}
.y4_c02172{bottom:1079.759874px;}
.y1_c02172{bottom:1097.760450px;}
.yf_c02172{bottom:1114.320000px;}
.y11_c02172{bottom:1117.200450px;}
.ye_c02172{bottom:1134.840450px;}
.h3_c02172{height:32.530781px;}
.h5_c02172{height:36.720000px;}
.h4_c02172{height:41.402813px;}
.h1_c02172{height:41.696016px;}
.h2_c02172{height:41.812031px;}
.h7_c02172{height:53.067656px;}
.h6_c02172{height:53.215313px;}
.h0_c02172{height:1263.000000px;}
.w2_c02172{width:395.280000px;}
.w1_c02172{width:892.500000px;}
.w0_c02172{width:892.830000px;}
.x0_c02172{left:0.000000px;}
.xd_c02172{left:117.000000px;}
.xe_c02172{left:161.280000px;}
.x8_c02172{left:440.999856px;}
.x4_c02172{left:445.680576px;}
.xb_c02172{left:451.080000px;}
.x7_c02172{left:455.399604px;}
.x5_c02172{left:461.880144px;}
.x1_c02172{left:463.320000px;}
.xa_c02172{left:483.480360px;}
.x9_c02172{left:492.119496px;}
.x6_c02172{left:493.200576px;}
.xc_c02172{left:506.880360px;}
.x3_c02172{left:511.919892px;}
.x2_c02172{left:526.679604px;}
@media print{
.v0_c02172{vertical-align:0.000000pt;}
.lsa_c02172{letter-spacing:-0.671616pt;}
.ls8_c02172{letter-spacing:-0.544896pt;}
.lsb_c02172{letter-spacing:-0.511104pt;}
.lse_c02172{letter-spacing:-0.380160pt;}
.ls11_c02172{letter-spacing:-0.244992pt;}
.lsf_c02172{letter-spacing:-0.232320pt;}
.ls7_c02172{letter-spacing:-0.215424pt;}
.ls5_c02172{letter-spacing:-0.105600pt;}
.ls13_c02172{letter-spacing:0.000000pt;}
.ls2_c02172{letter-spacing:0.005376pt;}
.ls6_c02172{letter-spacing:0.114048pt;}
.lsd_c02172{letter-spacing:0.451968pt;}
.ls1_c02172{letter-spacing:0.456960pt;}
.ls10_c02172{letter-spacing:0.477312pt;}
.lsc_c02172{letter-spacing:0.515328pt;}
.ls12_c02172{letter-spacing:0.528000pt;}
.ls9_c02172{letter-spacing:0.532224pt;}
.ls3_c02172{letter-spacing:0.544896pt;}
.ls0_c02172{letter-spacing:0.637824pt;}
.ls4_c02172{letter-spacing:0.642048pt;}
.wsb_c02172{word-spacing:-13.896960pt;}
.wsc_c02172{word-spacing:-13.445376pt;}
.wsa_c02172{word-spacing:-11.088000pt;}
.ws8_c02172{word-spacing:-11.075328pt;}
.ws9_c02172{word-spacing:-11.037312pt;}
.ws2_c02172{word-spacing:-10.015104pt;}
.ws4_c02172{word-spacing:-9.888384pt;}
.ws14_c02172{word-spacing:-3.198720pt;}
.ws10_c02172{word-spacing:-0.958848pt;}
.wsd_c02172{word-spacing:-0.865920pt;}
.wsf_c02172{word-spacing:-0.105600pt;}
.ws12_c02172{word-spacing:-0.088704pt;}
.ws13_c02172{word-spacing:-0.076032pt;}
.wse_c02172{word-spacing:0.000000pt;}
.ws11_c02172{word-spacing:0.059136pt;}
.ws6_c02172{word-spacing:32.659968pt;}
.ws1_c02172{word-spacing:33.563904pt;}
.ws0_c02172{word-spacing:33.796224pt;}
.ws3_c02172{word-spacing:34.860672pt;}
.ws5_c02172{word-spacing:35.468928pt;}
.ws7_c02172{word-spacing:37.357056pt;}
._0_c02172{margin-left:-1.731840pt;}
._2_c02172{width:1.317888pt;}
._4_c02172{width:2.994816pt;}
._1_c02172{width:44.668800pt;}
._3_c02172{width:45.805056pt;}
.fs0_c02172{font-size:42.240000pt;}
.fs1_c02172{font-size:53.760000pt;}
.y0_c02172{bottom:0.000000pt;}
.y10_c02172{bottom:18.560400pt;}
.y1c_c02172{bottom:130.665211pt;}
.y1e_c02172{bottom:165.866875pt;}
.y1d_c02172{bottom:174.507067pt;}
.y1b_c02172{bottom:245.225371pt;}
.y1a_c02172{bottom:317.225563pt;}
.y18_c02172{bottom:361.386427pt;}
.y14_c02172{bottom:377.386939pt;}
.y19_c02172{bottom:407.786011pt;}
.y17_c02172{bottom:437.226235pt;}
.y16_c02172{bottom:453.226747pt;}
.y13_c02172{bottom:482.666971pt;}
.y15_c02172{bottom:497.386555pt;}
.y12_c02172{bottom:513.387067pt;}
.y20_c02172{bottom:527.786667pt;}
.y21_c02172{bottom:530.347067pt;}
.y1f_c02172{bottom:546.027067pt;}
.yb_c02172{bottom:593.385179pt;}
.yd_c02172{bottom:628.586875pt;}
.yc_c02172{bottom:637.227067pt;}
.ya_c02172{bottom:707.945339pt;}
.y9_c02172{bottom:779.945531pt;}
.y7_c02172{bottom:823.786427pt;}
.y3_c02172{bottom:839.786939pt;}
.y8_c02172{bottom:870.505979pt;}
.y6_c02172{bottom:899.946203pt;}
.y5_c02172{bottom:915.946715pt;}
.y2_c02172{bottom:945.386939pt;}
.y4_c02172{bottom:959.786555pt;}
.y1_c02172{bottom:975.787067pt;}
.yf_c02172{bottom:990.506667pt;}
.y11_c02172{bottom:993.067067pt;}
.ye_c02172{bottom:1008.747067pt;}
.h3_c02172{height:28.916250pt;}
.h5_c02172{height:32.640000pt;}
.h4_c02172{height:36.802500pt;}
.h1_c02172{height:37.063125pt;}
.h2_c02172{height:37.166250pt;}
.h7_c02172{height:47.171250pt;}
.h6_c02172{height:47.302500pt;}
.h0_c02172{height:1122.666667pt;}
.w2_c02172{width:351.360000pt;}
.w1_c02172{width:793.333333pt;}
.w0_c02172{width:793.626667pt;}
.x0_c02172{left:0.000000pt;}
.xd_c02172{left:104.000000pt;}
.xe_c02172{left:143.360000pt;}
.x8_c02172{left:391.999872pt;}
.x4_c02172{left:396.160512pt;}
.xb_c02172{left:400.960000pt;}
.x7_c02172{left:404.799648pt;}
.x5_c02172{left:410.560128pt;}
.x1_c02172{left:411.840000pt;}
.xa_c02172{left:429.760320pt;}
.x9_c02172{left:437.439552pt;}
.x6_c02172{left:438.400512pt;}
.xc_c02172{left:450.560320pt;}
.x3_c02172{left:455.039904pt;}
.x2_c02172{left:468.159648pt;}
}





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

.ir_c02173:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02173{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02173;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02173{font-family:ff1_c02173;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02173;src:url('chunks/assets/font_b53621b5bcaf34c0b8e96b70.woff2')format("woff");}.ff2_c02173{font-family:ff2_c02173;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02173;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02173{font-family:ff3_c02173;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02173{vertical-align:0.000000px;}
.lsa_c02173{letter-spacing:-0.755568px;}
.ls8_c02173{letter-spacing:-0.613008px;}
.lsb_c02173{letter-spacing:-0.574992px;}
.lse_c02173{letter-spacing:-0.427680px;}
.ls11_c02173{letter-spacing:-0.275616px;}
.lsf_c02173{letter-spacing:-0.261360px;}
.ls7_c02173{letter-spacing:-0.242352px;}
.ls5_c02173{letter-spacing:-0.118800px;}
.ls13_c02173{letter-spacing:0.000000px;}
.ls2_c02173{letter-spacing:0.006048px;}
.ls6_c02173{letter-spacing:0.128304px;}
.lsd_c02173{letter-spacing:0.508464px;}
.ls1_c02173{letter-spacing:0.514080px;}
.ls10_c02173{letter-spacing:0.536976px;}
.lsc_c02173{letter-spacing:0.579744px;}
.ls12_c02173{letter-spacing:0.594000px;}
.ls9_c02173{letter-spacing:0.598752px;}
.ls3_c02173{letter-spacing:0.613008px;}
.ls0_c02173{letter-spacing:0.717552px;}
.ls4_c02173{letter-spacing:0.722304px;}
.sc__c02173{text-shadow:none;}
.sc0_c02173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02173{-webkit-text-stroke:0px transparent;}
.sc0_c02173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02173{word-spacing:-15.634080px;}
.wsc_c02173{word-spacing:-15.126048px;}
.wsa_c02173{word-spacing:-12.474000px;}
.ws8_c02173{word-spacing:-12.459744px;}
.ws9_c02173{word-spacing:-12.416976px;}
.ws2_c02173{word-spacing:-11.266992px;}
.ws4_c02173{word-spacing:-11.124432px;}
.ws14_c02173{word-spacing:-3.598560px;}
.ws10_c02173{word-spacing:-1.078704px;}
.wsd_c02173{word-spacing:-0.974160px;}
.wsf_c02173{word-spacing:-0.118800px;}
.ws12_c02173{word-spacing:-0.099792px;}
.ws13_c02173{word-spacing:-0.085536px;}
.wse_c02173{word-spacing:0.000000px;}
.ws11_c02173{word-spacing:0.066528px;}
.ws6_c02173{word-spacing:36.742464px;}
.ws1_c02173{word-spacing:37.759392px;}
.ws0_c02173{word-spacing:38.020752px;}
.ws3_c02173{word-spacing:39.218256px;}
.ws5_c02173{word-spacing:39.902544px;}
.ws7_c02173{word-spacing:42.026688px;}
._0_c02173{margin-left:-1.948320px;}
._2_c02173{width:1.482624px;}
._4_c02173{width:3.369168px;}
._1_c02173{width:50.252400px;}
._3_c02173{width:51.530688px;}
.fc0_c02173{color:rgb(0,0,0);}
.fs0_c02173{font-size:47.520000px;}
.fs1_c02173{font-size:60.480000px;}
.y0_c02173{bottom:0.000000px;}
.y10_c02173{bottom:20.880450px;}
.y1c_c02173{bottom:146.998362px;}
.y1e_c02173{bottom:186.600234px;}
.y1d_c02173{bottom:196.320450px;}
.y1b_c02173{bottom:275.878542px;}
.y1a_c02173{bottom:356.878758px;}
.y18_c02173{bottom:406.559730px;}
.y14_c02173{bottom:424.560306px;}
.y19_c02173{bottom:458.759262px;}
.y17_c02173{bottom:491.879514px;}
.y16_c02173{bottom:509.880090px;}
.y13_c02173{bottom:543.000342px;}
.y15_c02173{bottom:559.559874px;}
.y12_c02173{bottom:577.560450px;}
.y20_c02173{bottom:593.760000px;}
.y21_c02173{bottom:596.640450px;}
.y1f_c02173{bottom:614.280450px;}
.yb_c02173{bottom:667.558326px;}
.yd_c02173{bottom:707.160234px;}
.yc_c02173{bottom:716.880450px;}
.ya_c02173{bottom:796.438506px;}
.y9_c02173{bottom:877.438722px;}
.y7_c02173{bottom:926.759730px;}
.y3_c02173{bottom:944.760306px;}
.y8_c02173{bottom:979.319226px;}
.y6_c02173{bottom:1012.439478px;}
.y5_c02173{bottom:1030.440054px;}
.y2_c02173{bottom:1063.560306px;}
.y4_c02173{bottom:1079.759874px;}
.y1_c02173{bottom:1097.760450px;}
.yf_c02173{bottom:1114.320000px;}
.y11_c02173{bottom:1117.200450px;}
.ye_c02173{bottom:1134.840450px;}
.h3_c02173{height:32.530781px;}
.h5_c02173{height:36.720000px;}
.h4_c02173{height:41.402813px;}
.h1_c02173{height:41.696016px;}
.h2_c02173{height:41.812031px;}
.h7_c02173{height:53.067656px;}
.h6_c02173{height:53.215313px;}
.h0_c02173{height:1263.000000px;}
.w2_c02173{width:395.280000px;}
.w1_c02173{width:892.500000px;}
.w0_c02173{width:892.830000px;}
.x0_c02173{left:0.000000px;}
.xd_c02173{left:117.000000px;}
.xe_c02173{left:161.280000px;}
.x8_c02173{left:440.999856px;}
.x4_c02173{left:445.680576px;}
.xb_c02173{left:451.080000px;}
.x7_c02173{left:455.399604px;}
.x5_c02173{left:461.880144px;}
.x1_c02173{left:463.320000px;}
.xa_c02173{left:483.480360px;}
.x9_c02173{left:492.119496px;}
.x6_c02173{left:493.200576px;}
.xc_c02173{left:506.880360px;}
.x3_c02173{left:511.919892px;}
.x2_c02173{left:526.679604px;}
@media print{
.v0_c02173{vertical-align:0.000000pt;}
.lsa_c02173{letter-spacing:-0.671616pt;}
.ls8_c02173{letter-spacing:-0.544896pt;}
.lsb_c02173{letter-spacing:-0.511104pt;}
.lse_c02173{letter-spacing:-0.380160pt;}
.ls11_c02173{letter-spacing:-0.244992pt;}
.lsf_c02173{letter-spacing:-0.232320pt;}
.ls7_c02173{letter-spacing:-0.215424pt;}
.ls5_c02173{letter-spacing:-0.105600pt;}
.ls13_c02173{letter-spacing:0.000000pt;}
.ls2_c02173{letter-spacing:0.005376pt;}
.ls6_c02173{letter-spacing:0.114048pt;}
.lsd_c02173{letter-spacing:0.451968pt;}
.ls1_c02173{letter-spacing:0.456960pt;}
.ls10_c02173{letter-spacing:0.477312pt;}
.lsc_c02173{letter-spacing:0.515328pt;}
.ls12_c02173{letter-spacing:0.528000pt;}
.ls9_c02173{letter-spacing:0.532224pt;}
.ls3_c02173{letter-spacing:0.544896pt;}
.ls0_c02173{letter-spacing:0.637824pt;}
.ls4_c02173{letter-spacing:0.642048pt;}
.wsb_c02173{word-spacing:-13.896960pt;}
.wsc_c02173{word-spacing:-13.445376pt;}
.wsa_c02173{word-spacing:-11.088000pt;}
.ws8_c02173{word-spacing:-11.075328pt;}
.ws9_c02173{word-spacing:-11.037312pt;}
.ws2_c02173{word-spacing:-10.015104pt;}
.ws4_c02173{word-spacing:-9.888384pt;}
.ws14_c02173{word-spacing:-3.198720pt;}
.ws10_c02173{word-spacing:-0.958848pt;}
.wsd_c02173{word-spacing:-0.865920pt;}
.wsf_c02173{word-spacing:-0.105600pt;}
.ws12_c02173{word-spacing:-0.088704pt;}
.ws13_c02173{word-spacing:-0.076032pt;}
.wse_c02173{word-spacing:0.000000pt;}
.ws11_c02173{word-spacing:0.059136pt;}
.ws6_c02173{word-spacing:32.659968pt;}
.ws1_c02173{word-spacing:33.563904pt;}
.ws0_c02173{word-spacing:33.796224pt;}
.ws3_c02173{word-spacing:34.860672pt;}
.ws5_c02173{word-spacing:35.468928pt;}
.ws7_c02173{word-spacing:37.357056pt;}
._0_c02173{margin-left:-1.731840pt;}
._2_c02173{width:1.317888pt;}
._4_c02173{width:2.994816pt;}
._1_c02173{width:44.668800pt;}
._3_c02173{width:45.805056pt;}
.fs0_c02173{font-size:42.240000pt;}
.fs1_c02173{font-size:53.760000pt;}
.y0_c02173{bottom:0.000000pt;}
.y10_c02173{bottom:18.560400pt;}
.y1c_c02173{bottom:130.665211pt;}
.y1e_c02173{bottom:165.866875pt;}
.y1d_c02173{bottom:174.507067pt;}
.y1b_c02173{bottom:245.225371pt;}
.y1a_c02173{bottom:317.225563pt;}
.y18_c02173{bottom:361.386427pt;}
.y14_c02173{bottom:377.386939pt;}
.y19_c02173{bottom:407.786011pt;}
.y17_c02173{bottom:437.226235pt;}
.y16_c02173{bottom:453.226747pt;}
.y13_c02173{bottom:482.666971pt;}
.y15_c02173{bottom:497.386555pt;}
.y12_c02173{bottom:513.387067pt;}
.y20_c02173{bottom:527.786667pt;}
.y21_c02173{bottom:530.347067pt;}
.y1f_c02173{bottom:546.027067pt;}
.yb_c02173{bottom:593.385179pt;}
.yd_c02173{bottom:628.586875pt;}
.yc_c02173{bottom:637.227067pt;}
.ya_c02173{bottom:707.945339pt;}
.y9_c02173{bottom:779.945531pt;}
.y7_c02173{bottom:823.786427pt;}
.y3_c02173{bottom:839.786939pt;}
.y8_c02173{bottom:870.505979pt;}
.y6_c02173{bottom:899.946203pt;}
.y5_c02173{bottom:915.946715pt;}
.y2_c02173{bottom:945.386939pt;}
.y4_c02173{bottom:959.786555pt;}
.y1_c02173{bottom:975.787067pt;}
.yf_c02173{bottom:990.506667pt;}
.y11_c02173{bottom:993.067067pt;}
.ye_c02173{bottom:1008.747067pt;}
.h3_c02173{height:28.916250pt;}
.h5_c02173{height:32.640000pt;}
.h4_c02173{height:36.802500pt;}
.h1_c02173{height:37.063125pt;}
.h2_c02173{height:37.166250pt;}
.h7_c02173{height:47.171250pt;}
.h6_c02173{height:47.302500pt;}
.h0_c02173{height:1122.666667pt;}
.w2_c02173{width:351.360000pt;}
.w1_c02173{width:793.333333pt;}
.w0_c02173{width:793.626667pt;}
.x0_c02173{left:0.000000pt;}
.xd_c02173{left:104.000000pt;}
.xe_c02173{left:143.360000pt;}
.x8_c02173{left:391.999872pt;}
.x4_c02173{left:396.160512pt;}
.xb_c02173{left:400.960000pt;}
.x7_c02173{left:404.799648pt;}
.x5_c02173{left:410.560128pt;}
.x1_c02173{left:411.840000pt;}
.xa_c02173{left:429.760320pt;}
.x9_c02173{left:437.439552pt;}
.x6_c02173{left:438.400512pt;}
.xc_c02173{left:450.560320pt;}
.x3_c02173{left:455.039904pt;}
.x2_c02173{left:468.159648pt;}
}





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

.ir_c02174:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02174{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02174;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02174{font-family:ff1_c02174;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02174;src:url('chunks/assets/font_32158afc09e6c51212f047de.woff2')format("woff");}.ff2_c02174{font-family:ff2_c02174;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02174;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02174{font-family:ff3_c02174;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02174{vertical-align:0.000000px;}
.ls15_c02174{letter-spacing:-1.197504px;}
.lsa_c02174{letter-spacing:-0.755568px;}
.ls8_c02174{letter-spacing:-0.613008px;}
.lsb_c02174{letter-spacing:-0.574992px;}
.lse_c02174{letter-spacing:-0.427680px;}
.ls11_c02174{letter-spacing:-0.275616px;}
.ls14_c02174{letter-spacing:-0.266112px;}
.lsf_c02174{letter-spacing:-0.261360px;}
.ls7_c02174{letter-spacing:-0.242352px;}
.ls5_c02174{letter-spacing:-0.118800px;}
.ls13_c02174{letter-spacing:0.000000px;}
.ls2_c02174{letter-spacing:0.006048px;}
.ls6_c02174{letter-spacing:0.128304px;}
.lsd_c02174{letter-spacing:0.508464px;}
.ls1_c02174{letter-spacing:0.514080px;}
.ls10_c02174{letter-spacing:0.536976px;}
.lsc_c02174{letter-spacing:0.579744px;}
.ls12_c02174{letter-spacing:0.594000px;}
.ls9_c02174{letter-spacing:0.598752px;}
.ls3_c02174{letter-spacing:0.613008px;}
.ls0_c02174{letter-spacing:0.717552px;}
.ls4_c02174{letter-spacing:0.722304px;}
.sc__c02174{text-shadow:none;}
.sc0_c02174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02174{-webkit-text-stroke:0px transparent;}
.sc0_c02174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02174{word-spacing:-15.634080px;}
.wsc_c02174{word-spacing:-15.126048px;}
.wsa_c02174{word-spacing:-12.474000px;}
.ws8_c02174{word-spacing:-12.459744px;}
.ws9_c02174{word-spacing:-12.416976px;}
.ws2_c02174{word-spacing:-11.266992px;}
.ws4_c02174{word-spacing:-11.124432px;}
.ws14_c02174{word-spacing:-3.598560px;}
.ws10_c02174{word-spacing:-1.078704px;}
.wsd_c02174{word-spacing:-0.974160px;}
.wsf_c02174{word-spacing:-0.118800px;}
.ws12_c02174{word-spacing:-0.099792px;}
.ws15_c02174{word-spacing:-0.095040px;}
.ws13_c02174{word-spacing:-0.085536px;}
.wse_c02174{word-spacing:0.000000px;}
.ws11_c02174{word-spacing:0.066528px;}
.ws16_c02174{word-spacing:0.836352px;}
.ws6_c02174{word-spacing:36.742464px;}
.ws1_c02174{word-spacing:37.759392px;}
.ws0_c02174{word-spacing:38.020752px;}
.ws3_c02174{word-spacing:39.218256px;}
.ws5_c02174{word-spacing:39.902544px;}
.ws7_c02174{word-spacing:42.026688px;}
._0_c02174{margin-left:-1.948320px;}
._2_c02174{width:1.482624px;}
._4_c02174{width:3.369168px;}
._1_c02174{width:50.252400px;}
._3_c02174{width:51.530688px;}
.fc0_c02174{color:rgb(0,0,0);}
.fs0_c02174{font-size:47.520000px;}
.fs1_c02174{font-size:60.480000px;}
.y0_c02174{bottom:0.000000px;}
.y10_c02174{bottom:20.880450px;}
.y1c_c02174{bottom:146.998362px;}
.y1e_c02174{bottom:186.600234px;}
.y1d_c02174{bottom:196.320450px;}
.y1b_c02174{bottom:275.878542px;}
.y1a_c02174{bottom:356.878758px;}
.y18_c02174{bottom:406.559730px;}
.y14_c02174{bottom:424.560306px;}
.y19_c02174{bottom:458.759262px;}
.y17_c02174{bottom:491.879514px;}
.y16_c02174{bottom:509.880090px;}
.y13_c02174{bottom:543.000342px;}
.y15_c02174{bottom:559.559874px;}
.y12_c02174{bottom:577.560450px;}
.y20_c02174{bottom:593.760000px;}
.y21_c02174{bottom:596.640450px;}
.y1f_c02174{bottom:614.280450px;}
.yb_c02174{bottom:667.558326px;}
.yd_c02174{bottom:707.160234px;}
.yc_c02174{bottom:716.880450px;}
.ya_c02174{bottom:796.438506px;}
.y9_c02174{bottom:877.438722px;}
.y7_c02174{bottom:926.759730px;}
.y3_c02174{bottom:944.760306px;}
.y8_c02174{bottom:979.319226px;}
.y6_c02174{bottom:1012.439478px;}
.y5_c02174{bottom:1030.440054px;}
.y2_c02174{bottom:1063.560306px;}
.y4_c02174{bottom:1079.759874px;}
.y1_c02174{bottom:1097.760450px;}
.yf_c02174{bottom:1114.320000px;}
.y11_c02174{bottom:1117.200450px;}
.ye_c02174{bottom:1134.840450px;}
.h3_c02174{height:32.530781px;}
.h5_c02174{height:36.720000px;}
.h4_c02174{height:41.402813px;}
.h1_c02174{height:41.696016px;}
.h2_c02174{height:41.812031px;}
.h7_c02174{height:53.067656px;}
.h6_c02174{height:53.215313px;}
.h0_c02174{height:1263.000000px;}
.w2_c02174{width:395.280000px;}
.w1_c02174{width:892.500000px;}
.w0_c02174{width:892.830000px;}
.x0_c02174{left:0.000000px;}
.xd_c02174{left:117.000000px;}
.xe_c02174{left:161.280000px;}
.x8_c02174{left:440.999856px;}
.x4_c02174{left:445.680576px;}
.xb_c02174{left:451.080000px;}
.x7_c02174{left:455.399604px;}
.x5_c02174{left:461.880144px;}
.x1_c02174{left:463.320000px;}
.xa_c02174{left:483.480360px;}
.x9_c02174{left:492.119496px;}
.x6_c02174{left:493.200576px;}
.xc_c02174{left:506.880360px;}
.x3_c02174{left:511.919892px;}
.x2_c02174{left:526.679604px;}
@media print{
.v0_c02174{vertical-align:0.000000pt;}
.ls15_c02174{letter-spacing:-1.064448pt;}
.lsa_c02174{letter-spacing:-0.671616pt;}
.ls8_c02174{letter-spacing:-0.544896pt;}
.lsb_c02174{letter-spacing:-0.511104pt;}
.lse_c02174{letter-spacing:-0.380160pt;}
.ls11_c02174{letter-spacing:-0.244992pt;}
.ls14_c02174{letter-spacing:-0.236544pt;}
.lsf_c02174{letter-spacing:-0.232320pt;}
.ls7_c02174{letter-spacing:-0.215424pt;}
.ls5_c02174{letter-spacing:-0.105600pt;}
.ls13_c02174{letter-spacing:0.000000pt;}
.ls2_c02174{letter-spacing:0.005376pt;}
.ls6_c02174{letter-spacing:0.114048pt;}
.lsd_c02174{letter-spacing:0.451968pt;}
.ls1_c02174{letter-spacing:0.456960pt;}
.ls10_c02174{letter-spacing:0.477312pt;}
.lsc_c02174{letter-spacing:0.515328pt;}
.ls12_c02174{letter-spacing:0.528000pt;}
.ls9_c02174{letter-spacing:0.532224pt;}
.ls3_c02174{letter-spacing:0.544896pt;}
.ls0_c02174{letter-spacing:0.637824pt;}
.ls4_c02174{letter-spacing:0.642048pt;}
.wsb_c02174{word-spacing:-13.896960pt;}
.wsc_c02174{word-spacing:-13.445376pt;}
.wsa_c02174{word-spacing:-11.088000pt;}
.ws8_c02174{word-spacing:-11.075328pt;}
.ws9_c02174{word-spacing:-11.037312pt;}
.ws2_c02174{word-spacing:-10.015104pt;}
.ws4_c02174{word-spacing:-9.888384pt;}
.ws14_c02174{word-spacing:-3.198720pt;}
.ws10_c02174{word-spacing:-0.958848pt;}
.wsd_c02174{word-spacing:-0.865920pt;}
.wsf_c02174{word-spacing:-0.105600pt;}
.ws12_c02174{word-spacing:-0.088704pt;}
.ws15_c02174{word-spacing:-0.084480pt;}
.ws13_c02174{word-spacing:-0.076032pt;}
.wse_c02174{word-spacing:0.000000pt;}
.ws11_c02174{word-spacing:0.059136pt;}
.ws16_c02174{word-spacing:0.743424pt;}
.ws6_c02174{word-spacing:32.659968pt;}
.ws1_c02174{word-spacing:33.563904pt;}
.ws0_c02174{word-spacing:33.796224pt;}
.ws3_c02174{word-spacing:34.860672pt;}
.ws5_c02174{word-spacing:35.468928pt;}
.ws7_c02174{word-spacing:37.357056pt;}
._0_c02174{margin-left:-1.731840pt;}
._2_c02174{width:1.317888pt;}
._4_c02174{width:2.994816pt;}
._1_c02174{width:44.668800pt;}
._3_c02174{width:45.805056pt;}
.fs0_c02174{font-size:42.240000pt;}
.fs1_c02174{font-size:53.760000pt;}
.y0_c02174{bottom:0.000000pt;}
.y10_c02174{bottom:18.560400pt;}
.y1c_c02174{bottom:130.665211pt;}
.y1e_c02174{bottom:165.866875pt;}
.y1d_c02174{bottom:174.507067pt;}
.y1b_c02174{bottom:245.225371pt;}
.y1a_c02174{bottom:317.225563pt;}
.y18_c02174{bottom:361.386427pt;}
.y14_c02174{bottom:377.386939pt;}
.y19_c02174{bottom:407.786011pt;}
.y17_c02174{bottom:437.226235pt;}
.y16_c02174{bottom:453.226747pt;}
.y13_c02174{bottom:482.666971pt;}
.y15_c02174{bottom:497.386555pt;}
.y12_c02174{bottom:513.387067pt;}
.y20_c02174{bottom:527.786667pt;}
.y21_c02174{bottom:530.347067pt;}
.y1f_c02174{bottom:546.027067pt;}
.yb_c02174{bottom:593.385179pt;}
.yd_c02174{bottom:628.586875pt;}
.yc_c02174{bottom:637.227067pt;}
.ya_c02174{bottom:707.945339pt;}
.y9_c02174{bottom:779.945531pt;}
.y7_c02174{bottom:823.786427pt;}
.y3_c02174{bottom:839.786939pt;}
.y8_c02174{bottom:870.505979pt;}
.y6_c02174{bottom:899.946203pt;}
.y5_c02174{bottom:915.946715pt;}
.y2_c02174{bottom:945.386939pt;}
.y4_c02174{bottom:959.786555pt;}
.y1_c02174{bottom:975.787067pt;}
.yf_c02174{bottom:990.506667pt;}
.y11_c02174{bottom:993.067067pt;}
.ye_c02174{bottom:1008.747067pt;}
.h3_c02174{height:28.916250pt;}
.h5_c02174{height:32.640000pt;}
.h4_c02174{height:36.802500pt;}
.h1_c02174{height:37.063125pt;}
.h2_c02174{height:37.166250pt;}
.h7_c02174{height:47.171250pt;}
.h6_c02174{height:47.302500pt;}
.h0_c02174{height:1122.666667pt;}
.w2_c02174{width:351.360000pt;}
.w1_c02174{width:793.333333pt;}
.w0_c02174{width:793.626667pt;}
.x0_c02174{left:0.000000pt;}
.xd_c02174{left:104.000000pt;}
.xe_c02174{left:143.360000pt;}
.x8_c02174{left:391.999872pt;}
.x4_c02174{left:396.160512pt;}
.xb_c02174{left:400.960000pt;}
.x7_c02174{left:404.799648pt;}
.x5_c02174{left:410.560128pt;}
.x1_c02174{left:411.840000pt;}
.xa_c02174{left:429.760320pt;}
.x9_c02174{left:437.439552pt;}
.x6_c02174{left:438.400512pt;}
.xc_c02174{left:450.560320pt;}
.x3_c02174{left:455.039904pt;}
.x2_c02174{left:468.159648pt;}
}





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

.ir_c02175:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02175;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02175{font-family:ff1_c02175;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02175;src:url('chunks/assets/font_f8ae682c05ead2abf5408ca2.woff2')format("woff");}.ff2_c02175{font-family:ff2_c02175;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02175;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02175{font-family:ff3_c02175;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02175{vertical-align:0.000000px;}
.lse_c02175{letter-spacing:-1.197504px;}
.ls8_c02175{letter-spacing:-0.613008px;}
.lsb_c02175{letter-spacing:-0.574992px;}
.ls11_c02175{letter-spacing:-0.275616px;}
.lsa_c02175{letter-spacing:-0.266112px;}
.lsf_c02175{letter-spacing:-0.261360px;}
.ls7_c02175{letter-spacing:-0.242352px;}
.ls5_c02175{letter-spacing:-0.118800px;}
.ls13_c02175{letter-spacing:0.000000px;}
.ls2_c02175{letter-spacing:0.006048px;}
.ls6_c02175{letter-spacing:0.128304px;}
.lsd_c02175{letter-spacing:0.508464px;}
.ls1_c02175{letter-spacing:0.514080px;}
.ls10_c02175{letter-spacing:0.536976px;}
.lsc_c02175{letter-spacing:0.579744px;}
.ls12_c02175{letter-spacing:0.594000px;}
.ls9_c02175{letter-spacing:0.598752px;}
.ls3_c02175{letter-spacing:0.613008px;}
.ls0_c02175{letter-spacing:0.717552px;}
.ls4_c02175{letter-spacing:0.722304px;}
.sc__c02175{text-shadow:none;}
.sc0_c02175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02175{-webkit-text-stroke:0px transparent;}
.sc0_c02175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02175{word-spacing:-15.634080px;}
.wsb_c02175{word-spacing:-15.126048px;}
.ws9_c02175{word-spacing:-12.474000px;}
.ws7_c02175{word-spacing:-12.459744px;}
.ws8_c02175{word-spacing:-12.416976px;}
.ws2_c02175{word-spacing:-11.266992px;}
.ws14_c02175{word-spacing:-3.598560px;}
.ws10_c02175{word-spacing:-1.078704px;}
.wsc_c02175{word-spacing:-0.974160px;}
.wse_c02175{word-spacing:-0.118800px;}
.ws12_c02175{word-spacing:-0.099792px;}
.wsf_c02175{word-spacing:-0.095040px;}
.ws13_c02175{word-spacing:-0.085536px;}
.wsd_c02175{word-spacing:0.000000px;}
.ws11_c02175{word-spacing:0.836352px;}
.ws5_c02175{word-spacing:36.742464px;}
.ws1_c02175{word-spacing:37.759392px;}
.ws0_c02175{word-spacing:38.020752px;}
.ws3_c02175{word-spacing:39.218256px;}
.ws4_c02175{word-spacing:39.902544px;}
.ws6_c02175{word-spacing:42.026688px;}
._0_c02175{margin-left:-1.948320px;}
._2_c02175{width:1.482624px;}
._4_c02175{width:2.770416px;}
._1_c02175{width:50.252400px;}
._3_c02175{width:51.530688px;}
.fc0_c02175{color:rgb(0,0,0);}
.fs0_c02175{font-size:47.520000px;}
.fs1_c02175{font-size:60.480000px;}
.y0_c02175{bottom:0.000000px;}
.y10_c02175{bottom:20.880450px;}
.y1c_c02175{bottom:146.998362px;}
.y1e_c02175{bottom:186.600234px;}
.y1d_c02175{bottom:196.320450px;}
.y1b_c02175{bottom:275.878542px;}
.y1a_c02175{bottom:356.878758px;}
.y18_c02175{bottom:406.559730px;}
.y14_c02175{bottom:424.560306px;}
.y19_c02175{bottom:458.759262px;}
.y17_c02175{bottom:491.879514px;}
.y16_c02175{bottom:509.880090px;}
.y13_c02175{bottom:543.000342px;}
.y15_c02175{bottom:559.559874px;}
.y12_c02175{bottom:577.560450px;}
.y20_c02175{bottom:593.760000px;}
.y21_c02175{bottom:596.640450px;}
.y1f_c02175{bottom:614.280450px;}
.yb_c02175{bottom:667.558326px;}
.yd_c02175{bottom:707.160234px;}
.yc_c02175{bottom:716.880450px;}
.ya_c02175{bottom:796.438506px;}
.y9_c02175{bottom:877.438722px;}
.y7_c02175{bottom:926.759730px;}
.y3_c02175{bottom:944.760306px;}
.y8_c02175{bottom:979.319226px;}
.y6_c02175{bottom:1012.439478px;}
.y5_c02175{bottom:1030.440054px;}
.y2_c02175{bottom:1063.560306px;}
.y4_c02175{bottom:1079.759874px;}
.y1_c02175{bottom:1097.760450px;}
.yf_c02175{bottom:1114.320000px;}
.y11_c02175{bottom:1117.200450px;}
.ye_c02175{bottom:1134.840450px;}
.h3_c02175{height:32.530781px;}
.h5_c02175{height:36.720000px;}
.h4_c02175{height:41.402813px;}
.h1_c02175{height:41.696016px;}
.h2_c02175{height:41.812031px;}
.h7_c02175{height:53.067656px;}
.h6_c02175{height:53.215313px;}
.h0_c02175{height:1263.000000px;}
.w2_c02175{width:395.280000px;}
.w1_c02175{width:892.500000px;}
.w0_c02175{width:892.830000px;}
.x0_c02175{left:0.000000px;}
.xd_c02175{left:117.000000px;}
.xe_c02175{left:161.280000px;}
.x8_c02175{left:440.999856px;}
.x4_c02175{left:445.680576px;}
.xb_c02175{left:451.080000px;}
.x7_c02175{left:455.399604px;}
.x5_c02175{left:461.880144px;}
.x1_c02175{left:463.320000px;}
.xa_c02175{left:483.480360px;}
.x9_c02175{left:492.119496px;}
.x6_c02175{left:493.200576px;}
.xc_c02175{left:506.880360px;}
.x3_c02175{left:511.919892px;}
.x2_c02175{left:526.679604px;}
@media print{
.v0_c02175{vertical-align:0.000000pt;}
.lse_c02175{letter-spacing:-1.064448pt;}
.ls8_c02175{letter-spacing:-0.544896pt;}
.lsb_c02175{letter-spacing:-0.511104pt;}
.ls11_c02175{letter-spacing:-0.244992pt;}
.lsa_c02175{letter-spacing:-0.236544pt;}
.lsf_c02175{letter-spacing:-0.232320pt;}
.ls7_c02175{letter-spacing:-0.215424pt;}
.ls5_c02175{letter-spacing:-0.105600pt;}
.ls13_c02175{letter-spacing:0.000000pt;}
.ls2_c02175{letter-spacing:0.005376pt;}
.ls6_c02175{letter-spacing:0.114048pt;}
.lsd_c02175{letter-spacing:0.451968pt;}
.ls1_c02175{letter-spacing:0.456960pt;}
.ls10_c02175{letter-spacing:0.477312pt;}
.lsc_c02175{letter-spacing:0.515328pt;}
.ls12_c02175{letter-spacing:0.528000pt;}
.ls9_c02175{letter-spacing:0.532224pt;}
.ls3_c02175{letter-spacing:0.544896pt;}
.ls0_c02175{letter-spacing:0.637824pt;}
.ls4_c02175{letter-spacing:0.642048pt;}
.wsa_c02175{word-spacing:-13.896960pt;}
.wsb_c02175{word-spacing:-13.445376pt;}
.ws9_c02175{word-spacing:-11.088000pt;}
.ws7_c02175{word-spacing:-11.075328pt;}
.ws8_c02175{word-spacing:-11.037312pt;}
.ws2_c02175{word-spacing:-10.015104pt;}
.ws14_c02175{word-spacing:-3.198720pt;}
.ws10_c02175{word-spacing:-0.958848pt;}
.wsc_c02175{word-spacing:-0.865920pt;}
.wse_c02175{word-spacing:-0.105600pt;}
.ws12_c02175{word-spacing:-0.088704pt;}
.wsf_c02175{word-spacing:-0.084480pt;}
.ws13_c02175{word-spacing:-0.076032pt;}
.wsd_c02175{word-spacing:0.000000pt;}
.ws11_c02175{word-spacing:0.743424pt;}
.ws5_c02175{word-spacing:32.659968pt;}
.ws1_c02175{word-spacing:33.563904pt;}
.ws0_c02175{word-spacing:33.796224pt;}
.ws3_c02175{word-spacing:34.860672pt;}
.ws4_c02175{word-spacing:35.468928pt;}
.ws6_c02175{word-spacing:37.357056pt;}
._0_c02175{margin-left:-1.731840pt;}
._2_c02175{width:1.317888pt;}
._4_c02175{width:2.462592pt;}
._1_c02175{width:44.668800pt;}
._3_c02175{width:45.805056pt;}
.fs0_c02175{font-size:42.240000pt;}
.fs1_c02175{font-size:53.760000pt;}
.y0_c02175{bottom:0.000000pt;}
.y10_c02175{bottom:18.560400pt;}
.y1c_c02175{bottom:130.665211pt;}
.y1e_c02175{bottom:165.866875pt;}
.y1d_c02175{bottom:174.507067pt;}
.y1b_c02175{bottom:245.225371pt;}
.y1a_c02175{bottom:317.225563pt;}
.y18_c02175{bottom:361.386427pt;}
.y14_c02175{bottom:377.386939pt;}
.y19_c02175{bottom:407.786011pt;}
.y17_c02175{bottom:437.226235pt;}
.y16_c02175{bottom:453.226747pt;}
.y13_c02175{bottom:482.666971pt;}
.y15_c02175{bottom:497.386555pt;}
.y12_c02175{bottom:513.387067pt;}
.y20_c02175{bottom:527.786667pt;}
.y21_c02175{bottom:530.347067pt;}
.y1f_c02175{bottom:546.027067pt;}
.yb_c02175{bottom:593.385179pt;}
.yd_c02175{bottom:628.586875pt;}
.yc_c02175{bottom:637.227067pt;}
.ya_c02175{bottom:707.945339pt;}
.y9_c02175{bottom:779.945531pt;}
.y7_c02175{bottom:823.786427pt;}
.y3_c02175{bottom:839.786939pt;}
.y8_c02175{bottom:870.505979pt;}
.y6_c02175{bottom:899.946203pt;}
.y5_c02175{bottom:915.946715pt;}
.y2_c02175{bottom:945.386939pt;}
.y4_c02175{bottom:959.786555pt;}
.y1_c02175{bottom:975.787067pt;}
.yf_c02175{bottom:990.506667pt;}
.y11_c02175{bottom:993.067067pt;}
.ye_c02175{bottom:1008.747067pt;}
.h3_c02175{height:28.916250pt;}
.h5_c02175{height:32.640000pt;}
.h4_c02175{height:36.802500pt;}
.h1_c02175{height:37.063125pt;}
.h2_c02175{height:37.166250pt;}
.h7_c02175{height:47.171250pt;}
.h6_c02175{height:47.302500pt;}
.h0_c02175{height:1122.666667pt;}
.w2_c02175{width:351.360000pt;}
.w1_c02175{width:793.333333pt;}
.w0_c02175{width:793.626667pt;}
.x0_c02175{left:0.000000pt;}
.xd_c02175{left:104.000000pt;}
.xe_c02175{left:143.360000pt;}
.x8_c02175{left:391.999872pt;}
.x4_c02175{left:396.160512pt;}
.xb_c02175{left:400.960000pt;}
.x7_c02175{left:404.799648pt;}
.x5_c02175{left:410.560128pt;}
.x1_c02175{left:411.840000pt;}
.xa_c02175{left:429.760320pt;}
.x9_c02175{left:437.439552pt;}
.x6_c02175{left:438.400512pt;}
.xc_c02175{left:450.560320pt;}
.x3_c02175{left:455.039904pt;}
.x2_c02175{left:468.159648pt;}
}





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

.ir_c02176:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02176{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02176;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02176{font-family:ff1_c02176;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02176;src:url('chunks/assets/font_e0fb8be700719fd78500dc9a.woff2')format("woff");}.ff2_c02176{font-family:ff2_c02176;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02176;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02176{font-family:ff3_c02176;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02176{vertical-align:0.000000px;}
.lse_c02176{letter-spacing:-1.197504px;}
.ls14_c02176{letter-spacing:-0.755568px;}
.ls8_c02176{letter-spacing:-0.613008px;}
.lsb_c02176{letter-spacing:-0.574992px;}
.ls15_c02176{letter-spacing:-0.427680px;}
.ls11_c02176{letter-spacing:-0.275616px;}
.lsa_c02176{letter-spacing:-0.266112px;}
.lsf_c02176{letter-spacing:-0.261360px;}
.ls7_c02176{letter-spacing:-0.242352px;}
.ls5_c02176{letter-spacing:-0.118800px;}
.ls13_c02176{letter-spacing:0.000000px;}
.ls2_c02176{letter-spacing:0.006048px;}
.ls6_c02176{letter-spacing:0.128304px;}
.lsd_c02176{letter-spacing:0.508464px;}
.ls1_c02176{letter-spacing:0.514080px;}
.ls10_c02176{letter-spacing:0.536976px;}
.lsc_c02176{letter-spacing:0.579744px;}
.ls12_c02176{letter-spacing:0.594000px;}
.ls9_c02176{letter-spacing:0.598752px;}
.ls3_c02176{letter-spacing:0.613008px;}
.ls0_c02176{letter-spacing:0.717552px;}
.ls4_c02176{letter-spacing:0.722304px;}
.sc__c02176{text-shadow:none;}
.sc0_c02176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02176{-webkit-text-stroke:0px transparent;}
.sc0_c02176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02176{word-spacing:-15.634080px;}
.wsb_c02176{word-spacing:-15.126048px;}
.ws9_c02176{word-spacing:-12.474000px;}
.ws7_c02176{word-spacing:-12.459744px;}
.ws8_c02176{word-spacing:-12.416976px;}
.ws2_c02176{word-spacing:-11.266992px;}
.wsc_c02176{word-spacing:-11.124432px;}
.ws15_c02176{word-spacing:-3.598560px;}
.ws11_c02176{word-spacing:-1.078704px;}
.wsd_c02176{word-spacing:-0.974160px;}
.wsf_c02176{word-spacing:-0.118800px;}
.ws13_c02176{word-spacing:-0.099792px;}
.ws10_c02176{word-spacing:-0.095040px;}
.ws14_c02176{word-spacing:-0.085536px;}
.wse_c02176{word-spacing:0.000000px;}
.ws16_c02176{word-spacing:0.066528px;}
.ws12_c02176{word-spacing:0.836352px;}
.ws5_c02176{word-spacing:36.742464px;}
.ws1_c02176{word-spacing:37.759392px;}
.ws0_c02176{word-spacing:38.020752px;}
.ws3_c02176{word-spacing:39.218256px;}
.ws4_c02176{word-spacing:39.902544px;}
.ws6_c02176{word-spacing:42.026688px;}
._0_c02176{margin-left:-1.948320px;}
._2_c02176{width:1.482624px;}
._4_c02176{width:2.770416px;}
._1_c02176{width:50.252400px;}
._3_c02176{width:51.530688px;}
.fc0_c02176{color:rgb(0,0,0);}
.fs0_c02176{font-size:47.520000px;}
.fs1_c02176{font-size:60.480000px;}
.y0_c02176{bottom:0.000000px;}
.y10_c02176{bottom:20.880450px;}
.y1c_c02176{bottom:146.998362px;}
.y1e_c02176{bottom:186.600234px;}
.y1d_c02176{bottom:196.320450px;}
.y1b_c02176{bottom:275.878542px;}
.y1a_c02176{bottom:356.878758px;}
.y18_c02176{bottom:406.559730px;}
.y14_c02176{bottom:424.560306px;}
.y19_c02176{bottom:458.759262px;}
.y17_c02176{bottom:491.879514px;}
.y16_c02176{bottom:509.880090px;}
.y13_c02176{bottom:543.000342px;}
.y15_c02176{bottom:559.559874px;}
.y12_c02176{bottom:577.560450px;}
.y20_c02176{bottom:593.760000px;}
.y21_c02176{bottom:596.640450px;}
.y1f_c02176{bottom:614.280450px;}
.yb_c02176{bottom:667.558326px;}
.yd_c02176{bottom:707.160234px;}
.yc_c02176{bottom:716.880450px;}
.ya_c02176{bottom:796.438506px;}
.y9_c02176{bottom:877.438722px;}
.y7_c02176{bottom:926.759730px;}
.y3_c02176{bottom:944.760306px;}
.y8_c02176{bottom:979.319226px;}
.y6_c02176{bottom:1012.439478px;}
.y5_c02176{bottom:1030.440054px;}
.y2_c02176{bottom:1063.560306px;}
.y4_c02176{bottom:1079.759874px;}
.y1_c02176{bottom:1097.760450px;}
.yf_c02176{bottom:1114.320000px;}
.y11_c02176{bottom:1117.200450px;}
.ye_c02176{bottom:1134.840450px;}
.h3_c02176{height:32.530781px;}
.h5_c02176{height:36.720000px;}
.h4_c02176{height:41.402813px;}
.h1_c02176{height:41.696016px;}
.h2_c02176{height:41.812031px;}
.h7_c02176{height:53.067656px;}
.h6_c02176{height:53.215313px;}
.h0_c02176{height:1263.000000px;}
.w2_c02176{width:395.280000px;}
.w1_c02176{width:892.500000px;}
.w0_c02176{width:892.830000px;}
.x0_c02176{left:0.000000px;}
.xd_c02176{left:117.000000px;}
.xe_c02176{left:161.280000px;}
.x8_c02176{left:440.999856px;}
.x4_c02176{left:445.680576px;}
.xb_c02176{left:451.080000px;}
.x7_c02176{left:455.399604px;}
.x5_c02176{left:461.880144px;}
.x1_c02176{left:463.320000px;}
.xa_c02176{left:483.480360px;}
.x9_c02176{left:492.119496px;}
.x6_c02176{left:493.200576px;}
.xc_c02176{left:506.880360px;}
.x3_c02176{left:511.919892px;}
.x2_c02176{left:526.679604px;}
@media print{
.v0_c02176{vertical-align:0.000000pt;}
.lse_c02176{letter-spacing:-1.064448pt;}
.ls14_c02176{letter-spacing:-0.671616pt;}
.ls8_c02176{letter-spacing:-0.544896pt;}
.lsb_c02176{letter-spacing:-0.511104pt;}
.ls15_c02176{letter-spacing:-0.380160pt;}
.ls11_c02176{letter-spacing:-0.244992pt;}
.lsa_c02176{letter-spacing:-0.236544pt;}
.lsf_c02176{letter-spacing:-0.232320pt;}
.ls7_c02176{letter-spacing:-0.215424pt;}
.ls5_c02176{letter-spacing:-0.105600pt;}
.ls13_c02176{letter-spacing:0.000000pt;}
.ls2_c02176{letter-spacing:0.005376pt;}
.ls6_c02176{letter-spacing:0.114048pt;}
.lsd_c02176{letter-spacing:0.451968pt;}
.ls1_c02176{letter-spacing:0.456960pt;}
.ls10_c02176{letter-spacing:0.477312pt;}
.lsc_c02176{letter-spacing:0.515328pt;}
.ls12_c02176{letter-spacing:0.528000pt;}
.ls9_c02176{letter-spacing:0.532224pt;}
.ls3_c02176{letter-spacing:0.544896pt;}
.ls0_c02176{letter-spacing:0.637824pt;}
.ls4_c02176{letter-spacing:0.642048pt;}
.wsa_c02176{word-spacing:-13.896960pt;}
.wsb_c02176{word-spacing:-13.445376pt;}
.ws9_c02176{word-spacing:-11.088000pt;}
.ws7_c02176{word-spacing:-11.075328pt;}
.ws8_c02176{word-spacing:-11.037312pt;}
.ws2_c02176{word-spacing:-10.015104pt;}
.wsc_c02176{word-spacing:-9.888384pt;}
.ws15_c02176{word-spacing:-3.198720pt;}
.ws11_c02176{word-spacing:-0.958848pt;}
.wsd_c02176{word-spacing:-0.865920pt;}
.wsf_c02176{word-spacing:-0.105600pt;}
.ws13_c02176{word-spacing:-0.088704pt;}
.ws10_c02176{word-spacing:-0.084480pt;}
.ws14_c02176{word-spacing:-0.076032pt;}
.wse_c02176{word-spacing:0.000000pt;}
.ws16_c02176{word-spacing:0.059136pt;}
.ws12_c02176{word-spacing:0.743424pt;}
.ws5_c02176{word-spacing:32.659968pt;}
.ws1_c02176{word-spacing:33.563904pt;}
.ws0_c02176{word-spacing:33.796224pt;}
.ws3_c02176{word-spacing:34.860672pt;}
.ws4_c02176{word-spacing:35.468928pt;}
.ws6_c02176{word-spacing:37.357056pt;}
._0_c02176{margin-left:-1.731840pt;}
._2_c02176{width:1.317888pt;}
._4_c02176{width:2.462592pt;}
._1_c02176{width:44.668800pt;}
._3_c02176{width:45.805056pt;}
.fs0_c02176{font-size:42.240000pt;}
.fs1_c02176{font-size:53.760000pt;}
.y0_c02176{bottom:0.000000pt;}
.y10_c02176{bottom:18.560400pt;}
.y1c_c02176{bottom:130.665211pt;}
.y1e_c02176{bottom:165.866875pt;}
.y1d_c02176{bottom:174.507067pt;}
.y1b_c02176{bottom:245.225371pt;}
.y1a_c02176{bottom:317.225563pt;}
.y18_c02176{bottom:361.386427pt;}
.y14_c02176{bottom:377.386939pt;}
.y19_c02176{bottom:407.786011pt;}
.y17_c02176{bottom:437.226235pt;}
.y16_c02176{bottom:453.226747pt;}
.y13_c02176{bottom:482.666971pt;}
.y15_c02176{bottom:497.386555pt;}
.y12_c02176{bottom:513.387067pt;}
.y20_c02176{bottom:527.786667pt;}
.y21_c02176{bottom:530.347067pt;}
.y1f_c02176{bottom:546.027067pt;}
.yb_c02176{bottom:593.385179pt;}
.yd_c02176{bottom:628.586875pt;}
.yc_c02176{bottom:637.227067pt;}
.ya_c02176{bottom:707.945339pt;}
.y9_c02176{bottom:779.945531pt;}
.y7_c02176{bottom:823.786427pt;}
.y3_c02176{bottom:839.786939pt;}
.y8_c02176{bottom:870.505979pt;}
.y6_c02176{bottom:899.946203pt;}
.y5_c02176{bottom:915.946715pt;}
.y2_c02176{bottom:945.386939pt;}
.y4_c02176{bottom:959.786555pt;}
.y1_c02176{bottom:975.787067pt;}
.yf_c02176{bottom:990.506667pt;}
.y11_c02176{bottom:993.067067pt;}
.ye_c02176{bottom:1008.747067pt;}
.h3_c02176{height:28.916250pt;}
.h5_c02176{height:32.640000pt;}
.h4_c02176{height:36.802500pt;}
.h1_c02176{height:37.063125pt;}
.h2_c02176{height:37.166250pt;}
.h7_c02176{height:47.171250pt;}
.h6_c02176{height:47.302500pt;}
.h0_c02176{height:1122.666667pt;}
.w2_c02176{width:351.360000pt;}
.w1_c02176{width:793.333333pt;}
.w0_c02176{width:793.626667pt;}
.x0_c02176{left:0.000000pt;}
.xd_c02176{left:104.000000pt;}
.xe_c02176{left:143.360000pt;}
.x8_c02176{left:391.999872pt;}
.x4_c02176{left:396.160512pt;}
.xb_c02176{left:400.960000pt;}
.x7_c02176{left:404.799648pt;}
.x5_c02176{left:410.560128pt;}
.x1_c02176{left:411.840000pt;}
.xa_c02176{left:429.760320pt;}
.x9_c02176{left:437.439552pt;}
.x6_c02176{left:438.400512pt;}
.xc_c02176{left:450.560320pt;}
.x3_c02176{left:455.039904pt;}
.x2_c02176{left:468.159648pt;}
}





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

.ir_c02177:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02177{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02177;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02177{font-family:ff1_c02177;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02177;src:url('chunks/assets/font_21c5bd6f814d9664ceedf30e.woff2')format("woff");}.ff2_c02177{font-family:ff2_c02177;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02177;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02177{font-family:ff3_c02177;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02177{vertical-align:0.000000px;}
.lsa_c02177{letter-spacing:-0.755568px;}
.ls8_c02177{letter-spacing:-0.613008px;}
.lsb_c02177{letter-spacing:-0.574992px;}
.lse_c02177{letter-spacing:-0.427680px;}
.ls11_c02177{letter-spacing:-0.275616px;}
.lsf_c02177{letter-spacing:-0.261360px;}
.ls7_c02177{letter-spacing:-0.242352px;}
.ls5_c02177{letter-spacing:-0.118800px;}
.ls13_c02177{letter-spacing:0.000000px;}
.ls2_c02177{letter-spacing:0.006048px;}
.ls6_c02177{letter-spacing:0.128304px;}
.lsd_c02177{letter-spacing:0.508464px;}
.ls1_c02177{letter-spacing:0.514080px;}
.ls10_c02177{letter-spacing:0.536976px;}
.lsc_c02177{letter-spacing:0.579744px;}
.ls12_c02177{letter-spacing:0.594000px;}
.ls9_c02177{letter-spacing:0.598752px;}
.ls3_c02177{letter-spacing:0.613008px;}
.ls0_c02177{letter-spacing:0.717552px;}
.ls4_c02177{letter-spacing:0.722304px;}
.sc__c02177{text-shadow:none;}
.sc0_c02177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02177{-webkit-text-stroke:0px transparent;}
.sc0_c02177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02177{word-spacing:-15.634080px;}
.wsc_c02177{word-spacing:-15.126048px;}
.wsa_c02177{word-spacing:-12.474000px;}
.ws8_c02177{word-spacing:-12.459744px;}
.ws9_c02177{word-spacing:-12.416976px;}
.ws2_c02177{word-spacing:-11.266992px;}
.ws4_c02177{word-spacing:-11.124432px;}
.ws14_c02177{word-spacing:-3.598560px;}
.ws10_c02177{word-spacing:-1.078704px;}
.wsd_c02177{word-spacing:-0.974160px;}
.wsf_c02177{word-spacing:-0.118800px;}
.ws12_c02177{word-spacing:-0.099792px;}
.ws13_c02177{word-spacing:-0.085536px;}
.wse_c02177{word-spacing:0.000000px;}
.ws11_c02177{word-spacing:0.066528px;}
.ws6_c02177{word-spacing:36.742464px;}
.ws1_c02177{word-spacing:37.759392px;}
.ws0_c02177{word-spacing:38.020752px;}
.ws3_c02177{word-spacing:39.218256px;}
.ws5_c02177{word-spacing:39.902544px;}
.ws7_c02177{word-spacing:42.026688px;}
._0_c02177{margin-left:-1.948320px;}
._2_c02177{width:1.482624px;}
._4_c02177{width:3.369168px;}
._1_c02177{width:50.252400px;}
._3_c02177{width:51.530688px;}
.fc0_c02177{color:rgb(0,0,0);}
.fs0_c02177{font-size:47.520000px;}
.fs1_c02177{font-size:60.480000px;}
.y0_c02177{bottom:0.000000px;}
.y10_c02177{bottom:20.880450px;}
.y1c_c02177{bottom:146.998362px;}
.y1e_c02177{bottom:186.600234px;}
.y1d_c02177{bottom:196.320450px;}
.y1b_c02177{bottom:275.878542px;}
.y1a_c02177{bottom:356.878758px;}
.y18_c02177{bottom:406.559730px;}
.y14_c02177{bottom:424.560306px;}
.y19_c02177{bottom:458.759262px;}
.y17_c02177{bottom:491.879514px;}
.y16_c02177{bottom:509.880090px;}
.y13_c02177{bottom:543.000342px;}
.y15_c02177{bottom:559.559874px;}
.y12_c02177{bottom:577.560450px;}
.y20_c02177{bottom:593.760000px;}
.y21_c02177{bottom:596.640450px;}
.y1f_c02177{bottom:614.280450px;}
.yb_c02177{bottom:667.558326px;}
.yd_c02177{bottom:707.160234px;}
.yc_c02177{bottom:716.880450px;}
.ya_c02177{bottom:796.438506px;}
.y9_c02177{bottom:877.438722px;}
.y7_c02177{bottom:926.759730px;}
.y3_c02177{bottom:944.760306px;}
.y8_c02177{bottom:979.319226px;}
.y6_c02177{bottom:1012.439478px;}
.y5_c02177{bottom:1030.440054px;}
.y2_c02177{bottom:1063.560306px;}
.y4_c02177{bottom:1079.759874px;}
.y1_c02177{bottom:1097.760450px;}
.yf_c02177{bottom:1114.320000px;}
.y11_c02177{bottom:1117.200450px;}
.ye_c02177{bottom:1134.840450px;}
.h3_c02177{height:32.530781px;}
.h5_c02177{height:36.720000px;}
.h4_c02177{height:41.402813px;}
.h1_c02177{height:41.696016px;}
.h2_c02177{height:41.812031px;}
.h7_c02177{height:53.067656px;}
.h6_c02177{height:53.215313px;}
.h0_c02177{height:1263.000000px;}
.w2_c02177{width:395.280000px;}
.w1_c02177{width:892.500000px;}
.w0_c02177{width:892.830000px;}
.x0_c02177{left:0.000000px;}
.xd_c02177{left:117.000000px;}
.xe_c02177{left:161.280000px;}
.x8_c02177{left:440.999856px;}
.x4_c02177{left:445.680576px;}
.xb_c02177{left:451.080000px;}
.x7_c02177{left:455.399604px;}
.x5_c02177{left:461.880144px;}
.x1_c02177{left:463.320000px;}
.xa_c02177{left:483.480360px;}
.x9_c02177{left:492.119496px;}
.x6_c02177{left:493.200576px;}
.xc_c02177{left:506.880360px;}
.x3_c02177{left:511.919892px;}
.x2_c02177{left:526.679604px;}
@media print{
.v0_c02177{vertical-align:0.000000pt;}
.lsa_c02177{letter-spacing:-0.671616pt;}
.ls8_c02177{letter-spacing:-0.544896pt;}
.lsb_c02177{letter-spacing:-0.511104pt;}
.lse_c02177{letter-spacing:-0.380160pt;}
.ls11_c02177{letter-spacing:-0.244992pt;}
.lsf_c02177{letter-spacing:-0.232320pt;}
.ls7_c02177{letter-spacing:-0.215424pt;}
.ls5_c02177{letter-spacing:-0.105600pt;}
.ls13_c02177{letter-spacing:0.000000pt;}
.ls2_c02177{letter-spacing:0.005376pt;}
.ls6_c02177{letter-spacing:0.114048pt;}
.lsd_c02177{letter-spacing:0.451968pt;}
.ls1_c02177{letter-spacing:0.456960pt;}
.ls10_c02177{letter-spacing:0.477312pt;}
.lsc_c02177{letter-spacing:0.515328pt;}
.ls12_c02177{letter-spacing:0.528000pt;}
.ls9_c02177{letter-spacing:0.532224pt;}
.ls3_c02177{letter-spacing:0.544896pt;}
.ls0_c02177{letter-spacing:0.637824pt;}
.ls4_c02177{letter-spacing:0.642048pt;}
.wsb_c02177{word-spacing:-13.896960pt;}
.wsc_c02177{word-spacing:-13.445376pt;}
.wsa_c02177{word-spacing:-11.088000pt;}
.ws8_c02177{word-spacing:-11.075328pt;}
.ws9_c02177{word-spacing:-11.037312pt;}
.ws2_c02177{word-spacing:-10.015104pt;}
.ws4_c02177{word-spacing:-9.888384pt;}
.ws14_c02177{word-spacing:-3.198720pt;}
.ws10_c02177{word-spacing:-0.958848pt;}
.wsd_c02177{word-spacing:-0.865920pt;}
.wsf_c02177{word-spacing:-0.105600pt;}
.ws12_c02177{word-spacing:-0.088704pt;}
.ws13_c02177{word-spacing:-0.076032pt;}
.wse_c02177{word-spacing:0.000000pt;}
.ws11_c02177{word-spacing:0.059136pt;}
.ws6_c02177{word-spacing:32.659968pt;}
.ws1_c02177{word-spacing:33.563904pt;}
.ws0_c02177{word-spacing:33.796224pt;}
.ws3_c02177{word-spacing:34.860672pt;}
.ws5_c02177{word-spacing:35.468928pt;}
.ws7_c02177{word-spacing:37.357056pt;}
._0_c02177{margin-left:-1.731840pt;}
._2_c02177{width:1.317888pt;}
._4_c02177{width:2.994816pt;}
._1_c02177{width:44.668800pt;}
._3_c02177{width:45.805056pt;}
.fs0_c02177{font-size:42.240000pt;}
.fs1_c02177{font-size:53.760000pt;}
.y0_c02177{bottom:0.000000pt;}
.y10_c02177{bottom:18.560400pt;}
.y1c_c02177{bottom:130.665211pt;}
.y1e_c02177{bottom:165.866875pt;}
.y1d_c02177{bottom:174.507067pt;}
.y1b_c02177{bottom:245.225371pt;}
.y1a_c02177{bottom:317.225563pt;}
.y18_c02177{bottom:361.386427pt;}
.y14_c02177{bottom:377.386939pt;}
.y19_c02177{bottom:407.786011pt;}
.y17_c02177{bottom:437.226235pt;}
.y16_c02177{bottom:453.226747pt;}
.y13_c02177{bottom:482.666971pt;}
.y15_c02177{bottom:497.386555pt;}
.y12_c02177{bottom:513.387067pt;}
.y20_c02177{bottom:527.786667pt;}
.y21_c02177{bottom:530.347067pt;}
.y1f_c02177{bottom:546.027067pt;}
.yb_c02177{bottom:593.385179pt;}
.yd_c02177{bottom:628.586875pt;}
.yc_c02177{bottom:637.227067pt;}
.ya_c02177{bottom:707.945339pt;}
.y9_c02177{bottom:779.945531pt;}
.y7_c02177{bottom:823.786427pt;}
.y3_c02177{bottom:839.786939pt;}
.y8_c02177{bottom:870.505979pt;}
.y6_c02177{bottom:899.946203pt;}
.y5_c02177{bottom:915.946715pt;}
.y2_c02177{bottom:945.386939pt;}
.y4_c02177{bottom:959.786555pt;}
.y1_c02177{bottom:975.787067pt;}
.yf_c02177{bottom:990.506667pt;}
.y11_c02177{bottom:993.067067pt;}
.ye_c02177{bottom:1008.747067pt;}
.h3_c02177{height:28.916250pt;}
.h5_c02177{height:32.640000pt;}
.h4_c02177{height:36.802500pt;}
.h1_c02177{height:37.063125pt;}
.h2_c02177{height:37.166250pt;}
.h7_c02177{height:47.171250pt;}
.h6_c02177{height:47.302500pt;}
.h0_c02177{height:1122.666667pt;}
.w2_c02177{width:351.360000pt;}
.w1_c02177{width:793.333333pt;}
.w0_c02177{width:793.626667pt;}
.x0_c02177{left:0.000000pt;}
.xd_c02177{left:104.000000pt;}
.xe_c02177{left:143.360000pt;}
.x8_c02177{left:391.999872pt;}
.x4_c02177{left:396.160512pt;}
.xb_c02177{left:400.960000pt;}
.x7_c02177{left:404.799648pt;}
.x5_c02177{left:410.560128pt;}
.x1_c02177{left:411.840000pt;}
.xa_c02177{left:429.760320pt;}
.x9_c02177{left:437.439552pt;}
.x6_c02177{left:438.400512pt;}
.xc_c02177{left:450.560320pt;}
.x3_c02177{left:455.039904pt;}
.x2_c02177{left:468.159648pt;}
}





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

.ir_c02178:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02178{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02178;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02178{font-family:ff1_c02178;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02178;src:url('chunks/assets/font_b53621b5bcaf34c0b8e96b70.woff2')format("woff");}.ff2_c02178{font-family:ff2_c02178;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02178;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02178{font-family:ff3_c02178;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02178{vertical-align:0.000000px;}
.lsa_c02178{letter-spacing:-0.755568px;}
.ls8_c02178{letter-spacing:-0.613008px;}
.lsb_c02178{letter-spacing:-0.574992px;}
.lse_c02178{letter-spacing:-0.427680px;}
.ls11_c02178{letter-spacing:-0.275616px;}
.lsf_c02178{letter-spacing:-0.261360px;}
.ls7_c02178{letter-spacing:-0.242352px;}
.ls5_c02178{letter-spacing:-0.118800px;}
.ls13_c02178{letter-spacing:0.000000px;}
.ls2_c02178{letter-spacing:0.006048px;}
.ls6_c02178{letter-spacing:0.128304px;}
.lsd_c02178{letter-spacing:0.508464px;}
.ls1_c02178{letter-spacing:0.514080px;}
.ls10_c02178{letter-spacing:0.536976px;}
.lsc_c02178{letter-spacing:0.579744px;}
.ls12_c02178{letter-spacing:0.594000px;}
.ls9_c02178{letter-spacing:0.598752px;}
.ls3_c02178{letter-spacing:0.613008px;}
.ls0_c02178{letter-spacing:0.717552px;}
.ls4_c02178{letter-spacing:0.722304px;}
.sc__c02178{text-shadow:none;}
.sc0_c02178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02178{-webkit-text-stroke:0px transparent;}
.sc0_c02178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02178{word-spacing:-15.634080px;}
.wsc_c02178{word-spacing:-15.126048px;}
.wsa_c02178{word-spacing:-12.474000px;}
.ws8_c02178{word-spacing:-12.459744px;}
.ws9_c02178{word-spacing:-12.416976px;}
.ws2_c02178{word-spacing:-11.266992px;}
.ws4_c02178{word-spacing:-11.124432px;}
.ws14_c02178{word-spacing:-3.598560px;}
.ws10_c02178{word-spacing:-1.078704px;}
.wsd_c02178{word-spacing:-0.974160px;}
.wsf_c02178{word-spacing:-0.118800px;}
.ws12_c02178{word-spacing:-0.099792px;}
.ws13_c02178{word-spacing:-0.085536px;}
.wse_c02178{word-spacing:0.000000px;}
.ws11_c02178{word-spacing:0.066528px;}
.ws6_c02178{word-spacing:36.742464px;}
.ws1_c02178{word-spacing:37.759392px;}
.ws0_c02178{word-spacing:38.020752px;}
.ws3_c02178{word-spacing:39.218256px;}
.ws5_c02178{word-spacing:39.902544px;}
.ws7_c02178{word-spacing:42.026688px;}
._0_c02178{margin-left:-1.948320px;}
._2_c02178{width:1.482624px;}
._4_c02178{width:3.369168px;}
._1_c02178{width:50.252400px;}
._3_c02178{width:51.530688px;}
.fc0_c02178{color:rgb(0,0,0);}
.fs0_c02178{font-size:47.520000px;}
.fs1_c02178{font-size:60.480000px;}
.y0_c02178{bottom:0.000000px;}
.y10_c02178{bottom:20.880450px;}
.y1c_c02178{bottom:146.998362px;}
.y1e_c02178{bottom:186.600234px;}
.y1d_c02178{bottom:196.320450px;}
.y1b_c02178{bottom:275.878542px;}
.y1a_c02178{bottom:356.878758px;}
.y18_c02178{bottom:406.559730px;}
.y14_c02178{bottom:424.560306px;}
.y19_c02178{bottom:458.759262px;}
.y17_c02178{bottom:491.879514px;}
.y16_c02178{bottom:509.880090px;}
.y13_c02178{bottom:543.000342px;}
.y15_c02178{bottom:559.559874px;}
.y12_c02178{bottom:577.560450px;}
.y20_c02178{bottom:593.760000px;}
.y21_c02178{bottom:596.640450px;}
.y1f_c02178{bottom:614.280450px;}
.yb_c02178{bottom:667.558326px;}
.yd_c02178{bottom:707.160234px;}
.yc_c02178{bottom:716.880450px;}
.ya_c02178{bottom:796.438506px;}
.y9_c02178{bottom:877.438722px;}
.y7_c02178{bottom:926.759730px;}
.y3_c02178{bottom:944.760306px;}
.y8_c02178{bottom:979.319226px;}
.y6_c02178{bottom:1012.439478px;}
.y5_c02178{bottom:1030.440054px;}
.y2_c02178{bottom:1063.560306px;}
.y4_c02178{bottom:1079.759874px;}
.y1_c02178{bottom:1097.760450px;}
.yf_c02178{bottom:1114.320000px;}
.y11_c02178{bottom:1117.200450px;}
.ye_c02178{bottom:1134.840450px;}
.h3_c02178{height:32.530781px;}
.h5_c02178{height:36.720000px;}
.h4_c02178{height:41.402813px;}
.h1_c02178{height:41.696016px;}
.h2_c02178{height:41.812031px;}
.h7_c02178{height:53.067656px;}
.h6_c02178{height:53.215313px;}
.h0_c02178{height:1263.000000px;}
.w2_c02178{width:395.280000px;}
.w1_c02178{width:892.500000px;}
.w0_c02178{width:892.830000px;}
.x0_c02178{left:0.000000px;}
.xd_c02178{left:117.000000px;}
.xe_c02178{left:161.280000px;}
.x8_c02178{left:440.999856px;}
.x4_c02178{left:445.680576px;}
.xb_c02178{left:451.080000px;}
.x7_c02178{left:455.399604px;}
.x5_c02178{left:461.880144px;}
.x1_c02178{left:463.320000px;}
.xa_c02178{left:483.480360px;}
.x9_c02178{left:492.119496px;}
.x6_c02178{left:493.200576px;}
.xc_c02178{left:506.880360px;}
.x3_c02178{left:511.919892px;}
.x2_c02178{left:526.679604px;}
@media print{
.v0_c02178{vertical-align:0.000000pt;}
.lsa_c02178{letter-spacing:-0.671616pt;}
.ls8_c02178{letter-spacing:-0.544896pt;}
.lsb_c02178{letter-spacing:-0.511104pt;}
.lse_c02178{letter-spacing:-0.380160pt;}
.ls11_c02178{letter-spacing:-0.244992pt;}
.lsf_c02178{letter-spacing:-0.232320pt;}
.ls7_c02178{letter-spacing:-0.215424pt;}
.ls5_c02178{letter-spacing:-0.105600pt;}
.ls13_c02178{letter-spacing:0.000000pt;}
.ls2_c02178{letter-spacing:0.005376pt;}
.ls6_c02178{letter-spacing:0.114048pt;}
.lsd_c02178{letter-spacing:0.451968pt;}
.ls1_c02178{letter-spacing:0.456960pt;}
.ls10_c02178{letter-spacing:0.477312pt;}
.lsc_c02178{letter-spacing:0.515328pt;}
.ls12_c02178{letter-spacing:0.528000pt;}
.ls9_c02178{letter-spacing:0.532224pt;}
.ls3_c02178{letter-spacing:0.544896pt;}
.ls0_c02178{letter-spacing:0.637824pt;}
.ls4_c02178{letter-spacing:0.642048pt;}
.wsb_c02178{word-spacing:-13.896960pt;}
.wsc_c02178{word-spacing:-13.445376pt;}
.wsa_c02178{word-spacing:-11.088000pt;}
.ws8_c02178{word-spacing:-11.075328pt;}
.ws9_c02178{word-spacing:-11.037312pt;}
.ws2_c02178{word-spacing:-10.015104pt;}
.ws4_c02178{word-spacing:-9.888384pt;}
.ws14_c02178{word-spacing:-3.198720pt;}
.ws10_c02178{word-spacing:-0.958848pt;}
.wsd_c02178{word-spacing:-0.865920pt;}
.wsf_c02178{word-spacing:-0.105600pt;}
.ws12_c02178{word-spacing:-0.088704pt;}
.ws13_c02178{word-spacing:-0.076032pt;}
.wse_c02178{word-spacing:0.000000pt;}
.ws11_c02178{word-spacing:0.059136pt;}
.ws6_c02178{word-spacing:32.659968pt;}
.ws1_c02178{word-spacing:33.563904pt;}
.ws0_c02178{word-spacing:33.796224pt;}
.ws3_c02178{word-spacing:34.860672pt;}
.ws5_c02178{word-spacing:35.468928pt;}
.ws7_c02178{word-spacing:37.357056pt;}
._0_c02178{margin-left:-1.731840pt;}
._2_c02178{width:1.317888pt;}
._4_c02178{width:2.994816pt;}
._1_c02178{width:44.668800pt;}
._3_c02178{width:45.805056pt;}
.fs0_c02178{font-size:42.240000pt;}
.fs1_c02178{font-size:53.760000pt;}
.y0_c02178{bottom:0.000000pt;}
.y10_c02178{bottom:18.560400pt;}
.y1c_c02178{bottom:130.665211pt;}
.y1e_c02178{bottom:165.866875pt;}
.y1d_c02178{bottom:174.507067pt;}
.y1b_c02178{bottom:245.225371pt;}
.y1a_c02178{bottom:317.225563pt;}
.y18_c02178{bottom:361.386427pt;}
.y14_c02178{bottom:377.386939pt;}
.y19_c02178{bottom:407.786011pt;}
.y17_c02178{bottom:437.226235pt;}
.y16_c02178{bottom:453.226747pt;}
.y13_c02178{bottom:482.666971pt;}
.y15_c02178{bottom:497.386555pt;}
.y12_c02178{bottom:513.387067pt;}
.y20_c02178{bottom:527.786667pt;}
.y21_c02178{bottom:530.347067pt;}
.y1f_c02178{bottom:546.027067pt;}
.yb_c02178{bottom:593.385179pt;}
.yd_c02178{bottom:628.586875pt;}
.yc_c02178{bottom:637.227067pt;}
.ya_c02178{bottom:707.945339pt;}
.y9_c02178{bottom:779.945531pt;}
.y7_c02178{bottom:823.786427pt;}
.y3_c02178{bottom:839.786939pt;}
.y8_c02178{bottom:870.505979pt;}
.y6_c02178{bottom:899.946203pt;}
.y5_c02178{bottom:915.946715pt;}
.y2_c02178{bottom:945.386939pt;}
.y4_c02178{bottom:959.786555pt;}
.y1_c02178{bottom:975.787067pt;}
.yf_c02178{bottom:990.506667pt;}
.y11_c02178{bottom:993.067067pt;}
.ye_c02178{bottom:1008.747067pt;}
.h3_c02178{height:28.916250pt;}
.h5_c02178{height:32.640000pt;}
.h4_c02178{height:36.802500pt;}
.h1_c02178{height:37.063125pt;}
.h2_c02178{height:37.166250pt;}
.h7_c02178{height:47.171250pt;}
.h6_c02178{height:47.302500pt;}
.h0_c02178{height:1122.666667pt;}
.w2_c02178{width:351.360000pt;}
.w1_c02178{width:793.333333pt;}
.w0_c02178{width:793.626667pt;}
.x0_c02178{left:0.000000pt;}
.xd_c02178{left:104.000000pt;}
.xe_c02178{left:143.360000pt;}
.x8_c02178{left:391.999872pt;}
.x4_c02178{left:396.160512pt;}
.xb_c02178{left:400.960000pt;}
.x7_c02178{left:404.799648pt;}
.x5_c02178{left:410.560128pt;}
.x1_c02178{left:411.840000pt;}
.xa_c02178{left:429.760320pt;}
.x9_c02178{left:437.439552pt;}
.x6_c02178{left:438.400512pt;}
.xc_c02178{left:450.560320pt;}
.x3_c02178{left:455.039904pt;}
.x2_c02178{left:468.159648pt;}
}





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

.ir_c02179:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02179{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02179;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02179{font-family:ff1_c02179;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02179;src:url('chunks/assets/font_52afca658f332e2ba4ae5492.woff2')format("woff");}.ff2_c02179{font-family:ff2_c02179;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02179;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02179{font-family:ff3_c02179;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02179{vertical-align:0.000000px;}
.ls14_c02179{letter-spacing:-0.760320px;}
.lsa_c02179{letter-spacing:-0.755568px;}
.ls16_c02179{letter-spacing:-0.736560px;}
.ls8_c02179{letter-spacing:-0.613008px;}
.lsb_c02179{letter-spacing:-0.574992px;}
.lse_c02179{letter-spacing:-0.427680px;}
.ls11_c02179{letter-spacing:-0.275616px;}
.ls17_c02179{letter-spacing:-0.270864px;}
.lsf_c02179{letter-spacing:-0.261360px;}
.ls7_c02179{letter-spacing:-0.242352px;}
.ls5_c02179{letter-spacing:-0.118800px;}
.ls13_c02179{letter-spacing:0.000000px;}
.ls2_c02179{letter-spacing:0.006048px;}
.ls15_c02179{letter-spacing:0.038016px;}
.ls6_c02179{letter-spacing:0.128304px;}
.lsd_c02179{letter-spacing:0.508464px;}
.ls1_c02179{letter-spacing:0.514080px;}
.ls10_c02179{letter-spacing:0.536976px;}
.lsc_c02179{letter-spacing:0.579744px;}
.ls12_c02179{letter-spacing:0.594000px;}
.ls9_c02179{letter-spacing:0.598752px;}
.ls3_c02179{letter-spacing:0.613008px;}
.ls0_c02179{letter-spacing:0.717552px;}
.ls4_c02179{letter-spacing:0.722304px;}
.sc__c02179{text-shadow:none;}
.sc0_c02179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02179{-webkit-text-stroke:0px transparent;}
.sc0_c02179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02179{word-spacing:-15.634080px;}
.wsc_c02179{word-spacing:-15.126048px;}
.wsa_c02179{word-spacing:-12.474000px;}
.ws8_c02179{word-spacing:-12.459744px;}
.ws9_c02179{word-spacing:-12.416976px;}
.wse_c02179{word-spacing:-11.637648px;}
.ws2_c02179{word-spacing:-11.266992px;}
.ws4_c02179{word-spacing:-11.124432px;}
.ws18_c02179{word-spacing:-3.598560px;}
.ws14_c02179{word-spacing:-1.078704px;}
.ws11_c02179{word-spacing:-0.974160px;}
.ws1a_c02179{word-spacing:-0.399168px;}
.ws13_c02179{word-spacing:-0.118800px;}
.ws16_c02179{word-spacing:-0.099792px;}
.ws1b_c02179{word-spacing:-0.090288px;}
.ws17_c02179{word-spacing:-0.085536px;}
.ws12_c02179{word-spacing:0.000000px;}
.ws15_c02179{word-spacing:0.066528px;}
.ws19_c02179{word-spacing:0.399168px;}
.wsd_c02179{word-spacing:1.330560px;}
.ws10_c02179{word-spacing:6.629040px;}
.wsf_c02179{word-spacing:34.836912px;}
.ws6_c02179{word-spacing:36.742464px;}
.ws1_c02179{word-spacing:37.759392px;}
.ws0_c02179{word-spacing:38.020752px;}
.ws3_c02179{word-spacing:39.218256px;}
.ws5_c02179{word-spacing:39.902544px;}
.ws7_c02179{word-spacing:42.026688px;}
._0_c02179{margin-left:-1.948320px;}
._2_c02179{width:1.482624px;}
._4_c02179{width:3.369168px;}
._5_c02179{width:4.785264px;}
._7_c02179{width:19.982160px;}
._8_c02179{width:23.451120px;}
._6_c02179{width:24.691392px;}
._1_c02179{width:50.252400px;}
._3_c02179{width:51.530688px;}
.fc0_c02179{color:rgb(0,0,0);}
.fs0_c02179{font-size:47.520000px;}
.fs1_c02179{font-size:60.480000px;}
.y0_c02179{bottom:0.000000px;}
.y10_c02179{bottom:20.880450px;}
.y1d_c02179{bottom:131.878686px;}
.y1c_c02179{bottom:146.998362px;}
.y1f_c02179{bottom:186.600234px;}
.y1e_c02179{bottom:196.320450px;}
.y1b_c02179{bottom:275.878542px;}
.y1a_c02179{bottom:356.878758px;}
.y18_c02179{bottom:406.559730px;}
.y14_c02179{bottom:424.560306px;}
.y19_c02179{bottom:458.759262px;}
.y17_c02179{bottom:491.879514px;}
.y16_c02179{bottom:509.880090px;}
.y13_c02179{bottom:543.000342px;}
.y15_c02179{bottom:559.559874px;}
.y12_c02179{bottom:577.560450px;}
.y21_c02179{bottom:593.760000px;}
.y22_c02179{bottom:596.640450px;}
.y20_c02179{bottom:614.280450px;}
.yb_c02179{bottom:667.558326px;}
.yd_c02179{bottom:707.160234px;}
.yc_c02179{bottom:716.880450px;}
.ya_c02179{bottom:796.438506px;}
.y9_c02179{bottom:877.438722px;}
.y7_c02179{bottom:926.759730px;}
.y3_c02179{bottom:944.760306px;}
.y8_c02179{bottom:979.319226px;}
.y6_c02179{bottom:1012.439478px;}
.y5_c02179{bottom:1030.440054px;}
.y2_c02179{bottom:1063.560306px;}
.y4_c02179{bottom:1079.759874px;}
.y1_c02179{bottom:1097.760450px;}
.yf_c02179{bottom:1114.320000px;}
.y11_c02179{bottom:1117.200450px;}
.ye_c02179{bottom:1134.840450px;}
.h3_c02179{height:32.530781px;}
.h5_c02179{height:36.720000px;}
.h4_c02179{height:41.402813px;}
.h1_c02179{height:41.696016px;}
.h2_c02179{height:41.812031px;}
.h7_c02179{height:53.067656px;}
.h6_c02179{height:53.215313px;}
.h0_c02179{height:1263.000000px;}
.w2_c02179{width:395.280000px;}
.w1_c02179{width:892.500000px;}
.w0_c02179{width:892.830000px;}
.x0_c02179{left:0.000000px;}
.xd_c02179{left:117.000000px;}
.xe_c02179{left:161.280000px;}
.x8_c02179{left:440.999856px;}
.x4_c02179{left:445.680576px;}
.xb_c02179{left:451.080000px;}
.x7_c02179{left:455.399604px;}
.x5_c02179{left:461.880144px;}
.x1_c02179{left:463.320000px;}
.xa_c02179{left:483.480360px;}
.x9_c02179{left:492.119496px;}
.x6_c02179{left:493.200576px;}
.xc_c02179{left:506.880360px;}
.x3_c02179{left:511.919892px;}
.x2_c02179{left:526.679604px;}
.xf_c02179{left:569.880036px;}
@media print{
.v0_c02179{vertical-align:0.000000pt;}
.ls14_c02179{letter-spacing:-0.675840pt;}
.lsa_c02179{letter-spacing:-0.671616pt;}
.ls16_c02179{letter-spacing:-0.654720pt;}
.ls8_c02179{letter-spacing:-0.544896pt;}
.lsb_c02179{letter-spacing:-0.511104pt;}
.lse_c02179{letter-spacing:-0.380160pt;}
.ls11_c02179{letter-spacing:-0.244992pt;}
.ls17_c02179{letter-spacing:-0.240768pt;}
.lsf_c02179{letter-spacing:-0.232320pt;}
.ls7_c02179{letter-spacing:-0.215424pt;}
.ls5_c02179{letter-spacing:-0.105600pt;}
.ls13_c02179{letter-spacing:0.000000pt;}
.ls2_c02179{letter-spacing:0.005376pt;}
.ls15_c02179{letter-spacing:0.033792pt;}
.ls6_c02179{letter-spacing:0.114048pt;}
.lsd_c02179{letter-spacing:0.451968pt;}
.ls1_c02179{letter-spacing:0.456960pt;}
.ls10_c02179{letter-spacing:0.477312pt;}
.lsc_c02179{letter-spacing:0.515328pt;}
.ls12_c02179{letter-spacing:0.528000pt;}
.ls9_c02179{letter-spacing:0.532224pt;}
.ls3_c02179{letter-spacing:0.544896pt;}
.ls0_c02179{letter-spacing:0.637824pt;}
.ls4_c02179{letter-spacing:0.642048pt;}
.wsb_c02179{word-spacing:-13.896960pt;}
.wsc_c02179{word-spacing:-13.445376pt;}
.wsa_c02179{word-spacing:-11.088000pt;}
.ws8_c02179{word-spacing:-11.075328pt;}
.ws9_c02179{word-spacing:-11.037312pt;}
.wse_c02179{word-spacing:-10.344576pt;}
.ws2_c02179{word-spacing:-10.015104pt;}
.ws4_c02179{word-spacing:-9.888384pt;}
.ws18_c02179{word-spacing:-3.198720pt;}
.ws14_c02179{word-spacing:-0.958848pt;}
.ws11_c02179{word-spacing:-0.865920pt;}
.ws1a_c02179{word-spacing:-0.354816pt;}
.ws13_c02179{word-spacing:-0.105600pt;}
.ws16_c02179{word-spacing:-0.088704pt;}
.ws1b_c02179{word-spacing:-0.080256pt;}
.ws17_c02179{word-spacing:-0.076032pt;}
.ws12_c02179{word-spacing:0.000000pt;}
.ws15_c02179{word-spacing:0.059136pt;}
.ws19_c02179{word-spacing:0.354816pt;}
.wsd_c02179{word-spacing:1.182720pt;}
.ws10_c02179{word-spacing:5.892480pt;}
.wsf_c02179{word-spacing:30.966144pt;}
.ws6_c02179{word-spacing:32.659968pt;}
.ws1_c02179{word-spacing:33.563904pt;}
.ws0_c02179{word-spacing:33.796224pt;}
.ws3_c02179{word-spacing:34.860672pt;}
.ws5_c02179{word-spacing:35.468928pt;}
.ws7_c02179{word-spacing:37.357056pt;}
._0_c02179{margin-left:-1.731840pt;}
._2_c02179{width:1.317888pt;}
._4_c02179{width:2.994816pt;}
._5_c02179{width:4.253568pt;}
._7_c02179{width:17.761920pt;}
._8_c02179{width:20.845440pt;}
._6_c02179{width:21.947904pt;}
._1_c02179{width:44.668800pt;}
._3_c02179{width:45.805056pt;}
.fs0_c02179{font-size:42.240000pt;}
.fs1_c02179{font-size:53.760000pt;}
.y0_c02179{bottom:0.000000pt;}
.y10_c02179{bottom:18.560400pt;}
.y1d_c02179{bottom:117.225499pt;}
.y1c_c02179{bottom:130.665211pt;}
.y1f_c02179{bottom:165.866875pt;}
.y1e_c02179{bottom:174.507067pt;}
.y1b_c02179{bottom:245.225371pt;}
.y1a_c02179{bottom:317.225563pt;}
.y18_c02179{bottom:361.386427pt;}
.y14_c02179{bottom:377.386939pt;}
.y19_c02179{bottom:407.786011pt;}
.y17_c02179{bottom:437.226235pt;}
.y16_c02179{bottom:453.226747pt;}
.y13_c02179{bottom:482.666971pt;}
.y15_c02179{bottom:497.386555pt;}
.y12_c02179{bottom:513.387067pt;}
.y21_c02179{bottom:527.786667pt;}
.y22_c02179{bottom:530.347067pt;}
.y20_c02179{bottom:546.027067pt;}
.yb_c02179{bottom:593.385179pt;}
.yd_c02179{bottom:628.586875pt;}
.yc_c02179{bottom:637.227067pt;}
.ya_c02179{bottom:707.945339pt;}
.y9_c02179{bottom:779.945531pt;}
.y7_c02179{bottom:823.786427pt;}
.y3_c02179{bottom:839.786939pt;}
.y8_c02179{bottom:870.505979pt;}
.y6_c02179{bottom:899.946203pt;}
.y5_c02179{bottom:915.946715pt;}
.y2_c02179{bottom:945.386939pt;}
.y4_c02179{bottom:959.786555pt;}
.y1_c02179{bottom:975.787067pt;}
.yf_c02179{bottom:990.506667pt;}
.y11_c02179{bottom:993.067067pt;}
.ye_c02179{bottom:1008.747067pt;}
.h3_c02179{height:28.916250pt;}
.h5_c02179{height:32.640000pt;}
.h4_c02179{height:36.802500pt;}
.h1_c02179{height:37.063125pt;}
.h2_c02179{height:37.166250pt;}
.h7_c02179{height:47.171250pt;}
.h6_c02179{height:47.302500pt;}
.h0_c02179{height:1122.666667pt;}
.w2_c02179{width:351.360000pt;}
.w1_c02179{width:793.333333pt;}
.w0_c02179{width:793.626667pt;}
.x0_c02179{left:0.000000pt;}
.xd_c02179{left:104.000000pt;}
.xe_c02179{left:143.360000pt;}
.x8_c02179{left:391.999872pt;}
.x4_c02179{left:396.160512pt;}
.xb_c02179{left:400.960000pt;}
.x7_c02179{left:404.799648pt;}
.x5_c02179{left:410.560128pt;}
.x1_c02179{left:411.840000pt;}
.xa_c02179{left:429.760320pt;}
.x9_c02179{left:437.439552pt;}
.x6_c02179{left:438.400512pt;}
.xc_c02179{left:450.560320pt;}
.x3_c02179{left:455.039904pt;}
.x2_c02179{left:468.159648pt;}
.xf_c02179{left:506.560032pt;}
}





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

.ir_c02180:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02180{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02180;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02180{font-family:ff1_c02180;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02180;src:url('chunks/assets/font_7b237e42c949dd954736c1ac.woff2')format("woff");}.ff2_c02180{font-family:ff2_c02180;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02180;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02180{font-family:ff3_c02180;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02180{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02180{vertical-align:0.000000px;}
.ls18_c02180{letter-spacing:-1.197504px;}
.ls16_c02180{letter-spacing:-0.613008px;}
.ls9_c02180{letter-spacing:-0.574992px;}
.ls11_c02180{letter-spacing:-0.365904px;}
.lsa_c02180{letter-spacing:-0.327888px;}
.ls13_c02180{letter-spacing:-0.275616px;}
.ls17_c02180{letter-spacing:-0.266112px;}
.ls10_c02180{letter-spacing:-0.261360px;}
.ls7_c02180{letter-spacing:-0.242352px;}
.lsc_c02180{letter-spacing:-0.175824px;}
.ls4_c02180{letter-spacing:-0.118800px;}
.ls15_c02180{letter-spacing:0.000000px;}
.lsd_c02180{letter-spacing:0.004752px;}
.ls1_c02180{letter-spacing:0.006048px;}
.lsf_c02180{letter-spacing:0.038016px;}
.ls6_c02180{letter-spacing:0.128304px;}
.lse_c02180{letter-spacing:0.508464px;}
.ls0_c02180{letter-spacing:0.514080px;}
.ls12_c02180{letter-spacing:0.536976px;}
.lsb_c02180{letter-spacing:0.579744px;}
.ls14_c02180{letter-spacing:0.594000px;}
.ls8_c02180{letter-spacing:0.598752px;}
.ls3_c02180{letter-spacing:0.613008px;}
.ls5_c02180{letter-spacing:0.717552px;}
.ls2_c02180{letter-spacing:0.722304px;}
.sc__c02180{text-shadow:none;}
.sc0_c02180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02180{-webkit-text-stroke:0px transparent;}
.sc0_c02180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02180{word-spacing:-15.634080px;}
.wsd_c02180{word-spacing:-15.126048px;}
.wsb_c02180{word-spacing:-12.474000px;}
.ws9_c02180{word-spacing:-12.459744px;}
.wsf_c02180{word-spacing:-12.416976px;}
.ws4_c02180{word-spacing:-11.637648px;}
.wse_c02180{word-spacing:-11.266992px;}
.ws19_c02180{word-spacing:-3.598560px;}
.ws1b_c02180{word-spacing:-1.083456px;}
.ws10_c02180{word-spacing:-0.974160px;}
.ws15_c02180{word-spacing:-0.399168px;}
.ws14_c02180{word-spacing:-0.365904px;}
.ws7_c02180{word-spacing:-0.251856px;}
.ws12_c02180{word-spacing:-0.118800px;}
.ws16_c02180{word-spacing:-0.099792px;}
.ws1a_c02180{word-spacing:-0.095040px;}
.ws18_c02180{word-spacing:-0.085536px;}
.ws13_c02180{word-spacing:-0.033264px;}
.ws11_c02180{word-spacing:0.000000px;}
.ws17_c02180{word-spacing:0.004752px;}
.ws1c_c02180{word-spacing:0.836352px;}
.ws2_c02180{word-spacing:1.330560px;}
.wsa_c02180{word-spacing:34.836912px;}
.ws6_c02180{word-spacing:36.742464px;}
.ws1_c02180{word-spacing:37.759392px;}
.ws0_c02180{word-spacing:38.020752px;}
.ws3_c02180{word-spacing:39.218256px;}
.ws5_c02180{word-spacing:39.902544px;}
.ws8_c02180{word-spacing:42.026688px;}
._0_c02180{margin-left:-1.948320px;}
._2_c02180{width:1.482624px;}
._7_c02180{width:2.770416px;}
._4_c02180{width:4.785264px;}
._6_c02180{width:13.904352px;}
._5_c02180{width:15.287184px;}
._1_c02180{width:50.252400px;}
._3_c02180{width:51.530688px;}
.fc0_c02180{color:rgb(0,0,0);}
.fs0_c02180{font-size:47.520000px;}
.fs1_c02180{font-size:60.480000px;}
.y0_c02180{bottom:0.000000px;}
.y11_c02180{bottom:20.880450px;}
.y1d_c02180{bottom:146.998362px;}
.y1f_c02180{bottom:186.600234px;}
.y1e_c02180{bottom:196.320450px;}
.y1c_c02180{bottom:275.878542px;}
.y1b_c02180{bottom:356.878758px;}
.y19_c02180{bottom:406.559730px;}
.y15_c02180{bottom:424.560306px;}
.y1a_c02180{bottom:458.759262px;}
.y18_c02180{bottom:491.879514px;}
.y17_c02180{bottom:509.880090px;}
.y14_c02180{bottom:543.000342px;}
.y16_c02180{bottom:559.559874px;}
.y13_c02180{bottom:577.560450px;}
.y21_c02180{bottom:593.760000px;}
.y22_c02180{bottom:596.640450px;}
.y20_c02180{bottom:614.280450px;}
.yc_c02180{bottom:667.559514px;}
.ye_c02180{bottom:707.160234px;}
.yd_c02180{bottom:716.880450px;}
.yb_c02180{bottom:796.439694px;}
.ya_c02180{bottom:877.439910px;}
.y8_c02180{bottom:912.000018px;}
.y7_c02180{bottom:926.759730px;}
.y3_c02180{bottom:944.760306px;}
.y9_c02180{bottom:979.320414px;}
.y6_c02180{bottom:1012.439478px;}
.y5_c02180{bottom:1030.440054px;}
.y2_c02180{bottom:1063.560306px;}
.y4_c02180{bottom:1079.759874px;}
.y1_c02180{bottom:1097.760450px;}
.y10_c02180{bottom:1114.320000px;}
.y12_c02180{bottom:1117.200450px;}
.yf_c02180{bottom:1134.840450px;}
.h3_c02180{height:32.530781px;}
.h5_c02180{height:36.720000px;}
.h4_c02180{height:41.402813px;}
.h1_c02180{height:41.696016px;}
.h2_c02180{height:41.812031px;}
.h7_c02180{height:53.067656px;}
.h6_c02180{height:53.215313px;}
.h0_c02180{height:1263.000000px;}
.w2_c02180{width:395.280000px;}
.w1_c02180{width:892.500000px;}
.w0_c02180{width:892.830000px;}
.x0_c02180{left:0.000000px;}
.xe_c02180{left:117.000000px;}
.xf_c02180{left:161.280000px;}
.x9_c02180{left:440.999856px;}
.x4_c02180{left:445.680576px;}
.xc_c02180{left:451.080000px;}
.x7_c02180{left:455.399604px;}
.x5_c02180{left:461.880144px;}
.x1_c02180{left:463.320000px;}
.xb_c02180{left:483.480360px;}
.xa_c02180{left:492.119496px;}
.x6_c02180{left:493.200576px;}
.xd_c02180{left:506.880360px;}
.x3_c02180{left:511.919892px;}
.x2_c02180{left:526.679604px;}
.x8_c02180{left:569.880036px;}
@media print{
.v0_c02180{vertical-align:0.000000pt;}
.ls18_c02180{letter-spacing:-1.064448pt;}
.ls16_c02180{letter-spacing:-0.544896pt;}
.ls9_c02180{letter-spacing:-0.511104pt;}
.ls11_c02180{letter-spacing:-0.325248pt;}
.lsa_c02180{letter-spacing:-0.291456pt;}
.ls13_c02180{letter-spacing:-0.244992pt;}
.ls17_c02180{letter-spacing:-0.236544pt;}
.ls10_c02180{letter-spacing:-0.232320pt;}
.ls7_c02180{letter-spacing:-0.215424pt;}
.lsc_c02180{letter-spacing:-0.156288pt;}
.ls4_c02180{letter-spacing:-0.105600pt;}
.ls15_c02180{letter-spacing:0.000000pt;}
.lsd_c02180{letter-spacing:0.004224pt;}
.ls1_c02180{letter-spacing:0.005376pt;}
.lsf_c02180{letter-spacing:0.033792pt;}
.ls6_c02180{letter-spacing:0.114048pt;}
.lse_c02180{letter-spacing:0.451968pt;}
.ls0_c02180{letter-spacing:0.456960pt;}
.ls12_c02180{letter-spacing:0.477312pt;}
.lsb_c02180{letter-spacing:0.515328pt;}
.ls14_c02180{letter-spacing:0.528000pt;}
.ls8_c02180{letter-spacing:0.532224pt;}
.ls3_c02180{letter-spacing:0.544896pt;}
.ls5_c02180{letter-spacing:0.637824pt;}
.ls2_c02180{letter-spacing:0.642048pt;}
.wsc_c02180{word-spacing:-13.896960pt;}
.wsd_c02180{word-spacing:-13.445376pt;}
.wsb_c02180{word-spacing:-11.088000pt;}
.ws9_c02180{word-spacing:-11.075328pt;}
.wsf_c02180{word-spacing:-11.037312pt;}
.ws4_c02180{word-spacing:-10.344576pt;}
.wse_c02180{word-spacing:-10.015104pt;}
.ws19_c02180{word-spacing:-3.198720pt;}
.ws1b_c02180{word-spacing:-0.963072pt;}
.ws10_c02180{word-spacing:-0.865920pt;}
.ws15_c02180{word-spacing:-0.354816pt;}
.ws14_c02180{word-spacing:-0.325248pt;}
.ws7_c02180{word-spacing:-0.223872pt;}
.ws12_c02180{word-spacing:-0.105600pt;}
.ws16_c02180{word-spacing:-0.088704pt;}
.ws1a_c02180{word-spacing:-0.084480pt;}
.ws18_c02180{word-spacing:-0.076032pt;}
.ws13_c02180{word-spacing:-0.029568pt;}
.ws11_c02180{word-spacing:0.000000pt;}
.ws17_c02180{word-spacing:0.004224pt;}
.ws1c_c02180{word-spacing:0.743424pt;}
.ws2_c02180{word-spacing:1.182720pt;}
.wsa_c02180{word-spacing:30.966144pt;}
.ws6_c02180{word-spacing:32.659968pt;}
.ws1_c02180{word-spacing:33.563904pt;}
.ws0_c02180{word-spacing:33.796224pt;}
.ws3_c02180{word-spacing:34.860672pt;}
.ws5_c02180{word-spacing:35.468928pt;}
.ws8_c02180{word-spacing:37.357056pt;}
._0_c02180{margin-left:-1.731840pt;}
._2_c02180{width:1.317888pt;}
._7_c02180{width:2.462592pt;}
._4_c02180{width:4.253568pt;}
._6_c02180{width:12.359424pt;}
._5_c02180{width:13.588608pt;}
._1_c02180{width:44.668800pt;}
._3_c02180{width:45.805056pt;}
.fs0_c02180{font-size:42.240000pt;}
.fs1_c02180{font-size:53.760000pt;}
.y0_c02180{bottom:0.000000pt;}
.y11_c02180{bottom:18.560400pt;}
.y1d_c02180{bottom:130.665211pt;}
.y1f_c02180{bottom:165.866875pt;}
.y1e_c02180{bottom:174.507067pt;}
.y1c_c02180{bottom:245.225371pt;}
.y1b_c02180{bottom:317.225563pt;}
.y19_c02180{bottom:361.386427pt;}
.y15_c02180{bottom:377.386939pt;}
.y1a_c02180{bottom:407.786011pt;}
.y18_c02180{bottom:437.226235pt;}
.y17_c02180{bottom:453.226747pt;}
.y14_c02180{bottom:482.666971pt;}
.y16_c02180{bottom:497.386555pt;}
.y13_c02180{bottom:513.387067pt;}
.y21_c02180{bottom:527.786667pt;}
.y22_c02180{bottom:530.347067pt;}
.y20_c02180{bottom:546.027067pt;}
.yc_c02180{bottom:593.386235pt;}
.ye_c02180{bottom:628.586875pt;}
.yd_c02180{bottom:637.227067pt;}
.yb_c02180{bottom:707.946395pt;}
.ya_c02180{bottom:779.946587pt;}
.y8_c02180{bottom:810.666683pt;}
.y7_c02180{bottom:823.786427pt;}
.y3_c02180{bottom:839.786939pt;}
.y9_c02180{bottom:870.507035pt;}
.y6_c02180{bottom:899.946203pt;}
.y5_c02180{bottom:915.946715pt;}
.y2_c02180{bottom:945.386939pt;}
.y4_c02180{bottom:959.786555pt;}
.y1_c02180{bottom:975.787067pt;}
.y10_c02180{bottom:990.506667pt;}
.y12_c02180{bottom:993.067067pt;}
.yf_c02180{bottom:1008.747067pt;}
.h3_c02180{height:28.916250pt;}
.h5_c02180{height:32.640000pt;}
.h4_c02180{height:36.802500pt;}
.h1_c02180{height:37.063125pt;}
.h2_c02180{height:37.166250pt;}
.h7_c02180{height:47.171250pt;}
.h6_c02180{height:47.302500pt;}
.h0_c02180{height:1122.666667pt;}
.w2_c02180{width:351.360000pt;}
.w1_c02180{width:793.333333pt;}
.w0_c02180{width:793.626667pt;}
.x0_c02180{left:0.000000pt;}
.xe_c02180{left:104.000000pt;}
.xf_c02180{left:143.360000pt;}
.x9_c02180{left:391.999872pt;}
.x4_c02180{left:396.160512pt;}
.xc_c02180{left:400.960000pt;}
.x7_c02180{left:404.799648pt;}
.x5_c02180{left:410.560128pt;}
.x1_c02180{left:411.840000pt;}
.xb_c02180{left:429.760320pt;}
.xa_c02180{left:437.439552pt;}
.x6_c02180{left:438.400512pt;}
.xd_c02180{left:450.560320pt;}
.x3_c02180{left:455.039904pt;}
.x2_c02180{left:468.159648pt;}
.x8_c02180{left:506.560032pt;}
}





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

.ir_c02181:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02181{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02181;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02181{font-family:ff1_c02181;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02181;src:url('chunks/assets/font_20f6ff83db712406f32d6c36.woff2')format("woff");}.ff2_c02181{font-family:ff2_c02181;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02181;src:url('chunks/assets/font_6fd153e82aca31b3812e4e35.woff2')format("woff");}.ff3_c02181{font-family:ff3_c02181;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02181{vertical-align:0.000000px;}
.v1_c02181{vertical-align:5.759424px;}
.lse_c02181{letter-spacing:-1.197504px;}
.lsb_c02181{letter-spacing:-0.574992px;}
.ls17_c02181{letter-spacing:-0.313632px;}
.ls11_c02181{letter-spacing:-0.275616px;}
.lsf_c02181{letter-spacing:-0.261360px;}
.ls7_c02181{letter-spacing:-0.242352px;}
.lsa_c02181{letter-spacing:-0.218592px;}
.ls14_c02181{letter-spacing:-0.185328px;}
.ls5_c02181{letter-spacing:-0.118800px;}
.ls13_c02181{letter-spacing:0.000000px;}
.ls2_c02181{letter-spacing:0.006048px;}
.ls16_c02181{letter-spacing:0.014256px;}
.ls6_c02181{letter-spacing:0.128304px;}
.ls8_c02181{letter-spacing:0.242352px;}
.lsd_c02181{letter-spacing:0.508464px;}
.ls1_c02181{letter-spacing:0.514080px;}
.ls10_c02181{letter-spacing:0.536976px;}
.lsc_c02181{letter-spacing:0.579744px;}
.ls12_c02181{letter-spacing:0.594000px;}
.ls9_c02181{letter-spacing:0.598752px;}
.ls3_c02181{letter-spacing:0.613008px;}
.ls15_c02181{letter-spacing:0.622512px;}
.ls0_c02181{letter-spacing:0.717552px;}
.ls4_c02181{letter-spacing:0.722304px;}
.sc__c02181{text-shadow:none;}
.sc0_c02181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02181{-webkit-text-stroke:0px transparent;}
.sc0_c02181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02181{word-spacing:-15.634080px;}
.wsb_c02181{word-spacing:-15.126048px;}
.ws9_c02181{word-spacing:-12.474000px;}
.ws7_c02181{word-spacing:-12.459744px;}
.ws8_c02181{word-spacing:-12.416976px;}
.wsd_c02181{word-spacing:-12.388464px;}
.ws2_c02181{word-spacing:-12.122352px;}
.ws10_c02181{word-spacing:-11.894256px;}
.wsc_c02181{word-spacing:-11.694672px;}
.ws19_c02181{word-spacing:-3.598560px;}
.ws15_c02181{word-spacing:-1.078704px;}
.ws11_c02181{word-spacing:-0.974160px;}
.ws14_c02181{word-spacing:-0.142560px;}
.ws13_c02181{word-spacing:-0.118800px;}
.ws17_c02181{word-spacing:-0.099792px;}
.ws18_c02181{word-spacing:-0.085536px;}
.ws1a_c02181{word-spacing:-0.047520px;}
.ws12_c02181{word-spacing:0.000000px;}
.ws16_c02181{word-spacing:0.836352px;}
.wsf_c02181{word-spacing:23.593680px;}
.wse_c02181{word-spacing:36.143712px;}
.ws5_c02181{word-spacing:36.742464px;}
.ws1_c02181{word-spacing:37.759392px;}
.ws0_c02181{word-spacing:38.020752px;}
.ws3_c02181{word-spacing:39.218256px;}
.ws4_c02181{word-spacing:39.902544px;}
.ws6_c02181{word-spacing:42.026688px;}
._0_c02181{margin-left:-1.948320px;}
._2_c02181{width:1.482624px;}
._5_c02181{width:2.770416px;}
._4_c02181{width:6.543504px;}
._6_c02181{width:33.278256px;}
._1_c02181{width:50.252400px;}
._3_c02181{width:51.530688px;}
.fc0_c02181{color:rgb(0,0,0);}
.fs0_c02181{font-size:47.520000px;}
.fs1_c02181{font-size:60.480000px;}
.y0_c02181{bottom:0.000000px;}
.y10_c02181{bottom:20.880450px;}
.y1d_c02181{bottom:146.998362px;}
.y1f_c02181{bottom:186.600234px;}
.y1e_c02181{bottom:196.320450px;}
.y1c_c02181{bottom:275.878542px;}
.y1b_c02181{bottom:343.558902px;}
.y1a_c02181{bottom:356.878758px;}
.y18_c02181{bottom:406.559730px;}
.y14_c02181{bottom:424.560306px;}
.y19_c02181{bottom:458.759262px;}
.y17_c02181{bottom:491.879514px;}
.y16_c02181{bottom:509.880090px;}
.y13_c02181{bottom:543.000342px;}
.y15_c02181{bottom:559.559874px;}
.y12_c02181{bottom:577.560450px;}
.y21_c02181{bottom:593.760000px;}
.y22_c02181{bottom:596.640450px;}
.y20_c02181{bottom:614.280450px;}
.yb_c02181{bottom:667.558326px;}
.yd_c02181{bottom:707.160234px;}
.yc_c02181{bottom:716.880450px;}
.ya_c02181{bottom:796.438506px;}
.y9_c02181{bottom:877.438722px;}
.y7_c02181{bottom:926.759730px;}
.y3_c02181{bottom:944.760306px;}
.y8_c02181{bottom:979.319226px;}
.y6_c02181{bottom:1012.439478px;}
.y5_c02181{bottom:1030.440054px;}
.y2_c02181{bottom:1063.560306px;}
.y4_c02181{bottom:1079.759874px;}
.y1_c02181{bottom:1097.760450px;}
.yf_c02181{bottom:1114.320000px;}
.y11_c02181{bottom:1117.200450px;}
.ye_c02181{bottom:1134.840450px;}
.h3_c02181{height:32.530781px;}
.h5_c02181{height:36.720000px;}
.h4_c02181{height:41.402813px;}
.h1_c02181{height:41.696016px;}
.h2_c02181{height:41.812031px;}
.h8_c02181{height:47.571455px;}
.h7_c02181{height:53.067656px;}
.h6_c02181{height:53.215313px;}
.h0_c02181{height:1263.000000px;}
.w2_c02181{width:395.280000px;}
.w1_c02181{width:892.500000px;}
.w0_c02181{width:892.830000px;}
.x0_c02181{left:0.000000px;}
.xd_c02181{left:117.000000px;}
.xe_c02181{left:161.280000px;}
.x8_c02181{left:440.999856px;}
.x4_c02181{left:445.680576px;}
.xb_c02181{left:451.080000px;}
.x7_c02181{left:455.399604px;}
.x5_c02181{left:461.880144px;}
.x1_c02181{left:463.320000px;}
.xa_c02181{left:483.480360px;}
.x9_c02181{left:492.119496px;}
.x6_c02181{left:493.200576px;}
.xc_c02181{left:506.880360px;}
.x3_c02181{left:511.919892px;}
.x2_c02181{left:526.679604px;}
.xf_c02181{left:569.880036px;}
@media print{
.v0_c02181{vertical-align:0.000000pt;}
.v1_c02181{vertical-align:5.119488pt;}
.lse_c02181{letter-spacing:-1.064448pt;}
.lsb_c02181{letter-spacing:-0.511104pt;}
.ls17_c02181{letter-spacing:-0.278784pt;}
.ls11_c02181{letter-spacing:-0.244992pt;}
.lsf_c02181{letter-spacing:-0.232320pt;}
.ls7_c02181{letter-spacing:-0.215424pt;}
.lsa_c02181{letter-spacing:-0.194304pt;}
.ls14_c02181{letter-spacing:-0.164736pt;}
.ls5_c02181{letter-spacing:-0.105600pt;}
.ls13_c02181{letter-spacing:0.000000pt;}
.ls2_c02181{letter-spacing:0.005376pt;}
.ls16_c02181{letter-spacing:0.012672pt;}
.ls6_c02181{letter-spacing:0.114048pt;}
.ls8_c02181{letter-spacing:0.215424pt;}
.lsd_c02181{letter-spacing:0.451968pt;}
.ls1_c02181{letter-spacing:0.456960pt;}
.ls10_c02181{letter-spacing:0.477312pt;}
.lsc_c02181{letter-spacing:0.515328pt;}
.ls12_c02181{letter-spacing:0.528000pt;}
.ls9_c02181{letter-spacing:0.532224pt;}
.ls3_c02181{letter-spacing:0.544896pt;}
.ls15_c02181{letter-spacing:0.553344pt;}
.ls0_c02181{letter-spacing:0.637824pt;}
.ls4_c02181{letter-spacing:0.642048pt;}
.wsa_c02181{word-spacing:-13.896960pt;}
.wsb_c02181{word-spacing:-13.445376pt;}
.ws9_c02181{word-spacing:-11.088000pt;}
.ws7_c02181{word-spacing:-11.075328pt;}
.ws8_c02181{word-spacing:-11.037312pt;}
.wsd_c02181{word-spacing:-11.011968pt;}
.ws2_c02181{word-spacing:-10.775424pt;}
.ws10_c02181{word-spacing:-10.572672pt;}
.wsc_c02181{word-spacing:-10.395264pt;}
.ws19_c02181{word-spacing:-3.198720pt;}
.ws15_c02181{word-spacing:-0.958848pt;}
.ws11_c02181{word-spacing:-0.865920pt;}
.ws14_c02181{word-spacing:-0.126720pt;}
.ws13_c02181{word-spacing:-0.105600pt;}
.ws17_c02181{word-spacing:-0.088704pt;}
.ws18_c02181{word-spacing:-0.076032pt;}
.ws1a_c02181{word-spacing:-0.042240pt;}
.ws12_c02181{word-spacing:0.000000pt;}
.ws16_c02181{word-spacing:0.743424pt;}
.wsf_c02181{word-spacing:20.972160pt;}
.wse_c02181{word-spacing:32.127744pt;}
.ws5_c02181{word-spacing:32.659968pt;}
.ws1_c02181{word-spacing:33.563904pt;}
.ws0_c02181{word-spacing:33.796224pt;}
.ws3_c02181{word-spacing:34.860672pt;}
.ws4_c02181{word-spacing:35.468928pt;}
.ws6_c02181{word-spacing:37.357056pt;}
._0_c02181{margin-left:-1.731840pt;}
._2_c02181{width:1.317888pt;}
._5_c02181{width:2.462592pt;}
._4_c02181{width:5.816448pt;}
._6_c02181{width:29.580672pt;}
._1_c02181{width:44.668800pt;}
._3_c02181{width:45.805056pt;}
.fs0_c02181{font-size:42.240000pt;}
.fs1_c02181{font-size:53.760000pt;}
.y0_c02181{bottom:0.000000pt;}
.y10_c02181{bottom:18.560400pt;}
.y1d_c02181{bottom:130.665211pt;}
.y1f_c02181{bottom:165.866875pt;}
.y1e_c02181{bottom:174.507067pt;}
.y1c_c02181{bottom:245.225371pt;}
.y1b_c02181{bottom:305.385691pt;}
.y1a_c02181{bottom:317.225563pt;}
.y18_c02181{bottom:361.386427pt;}
.y14_c02181{bottom:377.386939pt;}
.y19_c02181{bottom:407.786011pt;}
.y17_c02181{bottom:437.226235pt;}
.y16_c02181{bottom:453.226747pt;}
.y13_c02181{bottom:482.666971pt;}
.y15_c02181{bottom:497.386555pt;}
.y12_c02181{bottom:513.387067pt;}
.y21_c02181{bottom:527.786667pt;}
.y22_c02181{bottom:530.347067pt;}
.y20_c02181{bottom:546.027067pt;}
.yb_c02181{bottom:593.385179pt;}
.yd_c02181{bottom:628.586875pt;}
.yc_c02181{bottom:637.227067pt;}
.ya_c02181{bottom:707.945339pt;}
.y9_c02181{bottom:779.945531pt;}
.y7_c02181{bottom:823.786427pt;}
.y3_c02181{bottom:839.786939pt;}
.y8_c02181{bottom:870.505979pt;}
.y6_c02181{bottom:899.946203pt;}
.y5_c02181{bottom:915.946715pt;}
.y2_c02181{bottom:945.386939pt;}
.y4_c02181{bottom:959.786555pt;}
.y1_c02181{bottom:975.787067pt;}
.yf_c02181{bottom:990.506667pt;}
.y11_c02181{bottom:993.067067pt;}
.ye_c02181{bottom:1008.747067pt;}
.h3_c02181{height:28.916250pt;}
.h5_c02181{height:32.640000pt;}
.h4_c02181{height:36.802500pt;}
.h1_c02181{height:37.063125pt;}
.h2_c02181{height:37.166250pt;}
.h8_c02181{height:42.285738pt;}
.h7_c02181{height:47.171250pt;}
.h6_c02181{height:47.302500pt;}
.h0_c02181{height:1122.666667pt;}
.w2_c02181{width:351.360000pt;}
.w1_c02181{width:793.333333pt;}
.w0_c02181{width:793.626667pt;}
.x0_c02181{left:0.000000pt;}
.xd_c02181{left:104.000000pt;}
.xe_c02181{left:143.360000pt;}
.x8_c02181{left:391.999872pt;}
.x4_c02181{left:396.160512pt;}
.xb_c02181{left:400.960000pt;}
.x7_c02181{left:404.799648pt;}
.x5_c02181{left:410.560128pt;}
.x1_c02181{left:411.840000pt;}
.xa_c02181{left:429.760320pt;}
.x9_c02181{left:437.439552pt;}
.x6_c02181{left:438.400512pt;}
.xc_c02181{left:450.560320pt;}
.x3_c02181{left:455.039904pt;}
.x2_c02181{left:468.159648pt;}
.xf_c02181{left:506.560032pt;}
}





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

.ir_c02182:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02182{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02182;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02182{font-family:ff1_c02182;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02182;src:url('chunks/assets/font_43b08d63faed80ff6f188467.woff2')format("woff");}.ff2_c02182{font-family:ff2_c02182;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02182;src:url('chunks/assets/font_fedf43a0951f754ac17676a1.woff2')format("woff");}.ff3_c02182{font-family:ff3_c02182;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02182{vertical-align:0.000000px;}
.ls14_c02182{letter-spacing:-0.888624px;}
.lsa_c02182{letter-spacing:-0.774576px;}
.ls10_c02182{letter-spacing:-0.736560px;}
.ls9_c02182{letter-spacing:-0.574992px;}
.ls11_c02182{letter-spacing:-0.270864px;}
.lse_c02182{letter-spacing:-0.261360px;}
.ls15_c02182{letter-spacing:-0.256608px;}
.ls7_c02182{letter-spacing:-0.242352px;}
.ls4_c02182{letter-spacing:-0.118800px;}
.ls13_c02182{letter-spacing:0.000000px;}
.ls1_c02182{letter-spacing:0.006048px;}
.lsd_c02182{letter-spacing:0.038016px;}
.ls6_c02182{letter-spacing:0.128304px;}
.lsc_c02182{letter-spacing:0.508464px;}
.ls0_c02182{letter-spacing:0.514080px;}
.lsf_c02182{letter-spacing:0.536976px;}
.lsb_c02182{letter-spacing:0.579744px;}
.ls12_c02182{letter-spacing:0.594000px;}
.ls8_c02182{letter-spacing:0.598752px;}
.ls2_c02182{letter-spacing:0.613008px;}
.ls5_c02182{letter-spacing:0.717552px;}
.ls3_c02182{letter-spacing:0.722304px;}
.sc__c02182{text-shadow:none;}
.sc0_c02182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02182{-webkit-text-stroke:0px transparent;}
.sc0_c02182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02182{word-spacing:-15.634080px;}
.wsd_c02182{word-spacing:-15.126048px;}
.wsb_c02182{word-spacing:-12.474000px;}
.ws7_c02182{word-spacing:-12.459744px;}
.ws4_c02182{word-spacing:-11.637648px;}
.ws6_c02182{word-spacing:-11.105424px;}
.ws18_c02182{word-spacing:-3.598560px;}
.ws1b_c02182{word-spacing:-1.083456px;}
.ws11_c02182{word-spacing:-0.974160px;}
.ws14_c02182{word-spacing:-0.399168px;}
.ws13_c02182{word-spacing:-0.118800px;}
.ws1a_c02182{word-spacing:-0.104544px;}
.ws15_c02182{word-spacing:-0.099792px;}
.ws16_c02182{word-spacing:-0.090288px;}
.ws17_c02182{word-spacing:-0.085536px;}
.ws12_c02182{word-spacing:0.000000px;}
.ws19_c02182{word-spacing:0.527472px;}
.ws2_c02182{word-spacing:1.330560px;}
.wsa_c02182{word-spacing:6.629040px;}
.wsf_c02182{word-spacing:22.923648px;}
.ws9_c02182{word-spacing:34.836912px;}
.ws10_c02182{word-spacing:36.143712px;}
.wse_c02182{word-spacing:36.742464px;}
.ws1_c02182{word-spacing:37.759392px;}
.ws0_c02182{word-spacing:38.020752px;}
.ws3_c02182{word-spacing:39.218256px;}
.ws5_c02182{word-spacing:39.902544px;}
.ws8_c02182{word-spacing:42.026688px;}
._0_c02182{margin-left:-1.948320px;}
._2_c02182{width:1.482624px;}
._4_c02182{width:4.785264px;}
._6_c02182{width:19.982160px;}
._7_c02182{width:23.451120px;}
._5_c02182{width:24.691392px;}
._8_c02182{width:35.948880px;}
._9_c02182{width:39.099456px;}
._1_c02182{width:50.252400px;}
._3_c02182{width:51.530688px;}
.fc0_c02182{color:rgb(0,0,0);}
.fs0_c02182{font-size:47.520000px;}
.fs1_c02182{font-size:60.480000px;}
.y0_c02182{bottom:0.000000px;}
.y11_c02182{bottom:20.880450px;}
.y1f_c02182{bottom:131.879874px;}
.y1e_c02182{bottom:146.999550px;}
.y21_c02182{bottom:186.600234px;}
.y20_c02182{bottom:196.320450px;}
.y1d_c02182{bottom:275.879730px;}
.y1c_c02182{bottom:356.879946px;}
.y1a_c02182{bottom:391.440054px;}
.y19_c02182{bottom:406.559730px;}
.y15_c02182{bottom:424.560306px;}
.y1b_c02182{bottom:458.760450px;}
.y18_c02182{bottom:491.879514px;}
.y17_c02182{bottom:509.880090px;}
.y14_c02182{bottom:543.000342px;}
.y16_c02182{bottom:559.559874px;}
.y13_c02182{bottom:577.560450px;}
.y23_c02182{bottom:593.760000px;}
.y24_c02182{bottom:596.640450px;}
.y22_c02182{bottom:614.280450px;}
.yc_c02182{bottom:652.438650px;}
.yb_c02182{bottom:667.558326px;}
.ye_c02182{bottom:707.160234px;}
.yd_c02182{bottom:716.880450px;}
.ya_c02182{bottom:796.438506px;}
.y9_c02182{bottom:877.438722px;}
.y7_c02182{bottom:926.759730px;}
.y3_c02182{bottom:944.760306px;}
.y8_c02182{bottom:979.319226px;}
.y6_c02182{bottom:1012.439478px;}
.y5_c02182{bottom:1030.440054px;}
.y2_c02182{bottom:1063.560306px;}
.y4_c02182{bottom:1079.759874px;}
.y1_c02182{bottom:1097.760450px;}
.y10_c02182{bottom:1114.320000px;}
.y12_c02182{bottom:1117.200450px;}
.yf_c02182{bottom:1134.840450px;}
.h3_c02182{height:32.530781px;}
.h5_c02182{height:36.720000px;}
.h4_c02182{height:41.402813px;}
.h1_c02182{height:41.696016px;}
.h2_c02182{height:41.812031px;}
.h7_c02182{height:53.067656px;}
.h6_c02182{height:53.215313px;}
.h0_c02182{height:1263.000000px;}
.w2_c02182{width:395.280000px;}
.w1_c02182{width:892.500000px;}
.w0_c02182{width:892.830000px;}
.x0_c02182{left:0.000000px;}
.xe_c02182{left:117.000000px;}
.xf_c02182{left:161.280000px;}
.x8_c02182{left:440.999856px;}
.x4_c02182{left:445.680576px;}
.xc_c02182{left:451.080000px;}
.x7_c02182{left:455.399604px;}
.x5_c02182{left:461.880144px;}
.x1_c02182{left:463.320000px;}
.xa_c02182{left:483.480360px;}
.x9_c02182{left:492.119496px;}
.x6_c02182{left:493.200576px;}
.xd_c02182{left:506.880360px;}
.x3_c02182{left:511.919892px;}
.x2_c02182{left:526.679604px;}
.xb_c02182{left:569.880036px;}
@media print{
.v0_c02182{vertical-align:0.000000pt;}
.ls14_c02182{letter-spacing:-0.789888pt;}
.lsa_c02182{letter-spacing:-0.688512pt;}
.ls10_c02182{letter-spacing:-0.654720pt;}
.ls9_c02182{letter-spacing:-0.511104pt;}
.ls11_c02182{letter-spacing:-0.240768pt;}
.lse_c02182{letter-spacing:-0.232320pt;}
.ls15_c02182{letter-spacing:-0.228096pt;}
.ls7_c02182{letter-spacing:-0.215424pt;}
.ls4_c02182{letter-spacing:-0.105600pt;}
.ls13_c02182{letter-spacing:0.000000pt;}
.ls1_c02182{letter-spacing:0.005376pt;}
.lsd_c02182{letter-spacing:0.033792pt;}
.ls6_c02182{letter-spacing:0.114048pt;}
.lsc_c02182{letter-spacing:0.451968pt;}
.ls0_c02182{letter-spacing:0.456960pt;}
.lsf_c02182{letter-spacing:0.477312pt;}
.lsb_c02182{letter-spacing:0.515328pt;}
.ls12_c02182{letter-spacing:0.528000pt;}
.ls8_c02182{letter-spacing:0.532224pt;}
.ls2_c02182{letter-spacing:0.544896pt;}
.ls5_c02182{letter-spacing:0.637824pt;}
.ls3_c02182{letter-spacing:0.642048pt;}
.wsc_c02182{word-spacing:-13.896960pt;}
.wsd_c02182{word-spacing:-13.445376pt;}
.wsb_c02182{word-spacing:-11.088000pt;}
.ws7_c02182{word-spacing:-11.075328pt;}
.ws4_c02182{word-spacing:-10.344576pt;}
.ws6_c02182{word-spacing:-9.871488pt;}
.ws18_c02182{word-spacing:-3.198720pt;}
.ws1b_c02182{word-spacing:-0.963072pt;}
.ws11_c02182{word-spacing:-0.865920pt;}
.ws14_c02182{word-spacing:-0.354816pt;}
.ws13_c02182{word-spacing:-0.105600pt;}
.ws1a_c02182{word-spacing:-0.092928pt;}
.ws15_c02182{word-spacing:-0.088704pt;}
.ws16_c02182{word-spacing:-0.080256pt;}
.ws17_c02182{word-spacing:-0.076032pt;}
.ws12_c02182{word-spacing:0.000000pt;}
.ws19_c02182{word-spacing:0.468864pt;}
.ws2_c02182{word-spacing:1.182720pt;}
.wsa_c02182{word-spacing:5.892480pt;}
.wsf_c02182{word-spacing:20.376576pt;}
.ws9_c02182{word-spacing:30.966144pt;}
.ws10_c02182{word-spacing:32.127744pt;}
.wse_c02182{word-spacing:32.659968pt;}
.ws1_c02182{word-spacing:33.563904pt;}
.ws0_c02182{word-spacing:33.796224pt;}
.ws3_c02182{word-spacing:34.860672pt;}
.ws5_c02182{word-spacing:35.468928pt;}
.ws8_c02182{word-spacing:37.357056pt;}
._0_c02182{margin-left:-1.731840pt;}
._2_c02182{width:1.317888pt;}
._4_c02182{width:4.253568pt;}
._6_c02182{width:17.761920pt;}
._7_c02182{width:20.845440pt;}
._5_c02182{width:21.947904pt;}
._8_c02182{width:31.954560pt;}
._9_c02182{width:34.755072pt;}
._1_c02182{width:44.668800pt;}
._3_c02182{width:45.805056pt;}
.fs0_c02182{font-size:42.240000pt;}
.fs1_c02182{font-size:53.760000pt;}
.y0_c02182{bottom:0.000000pt;}
.y11_c02182{bottom:18.560400pt;}
.y1f_c02182{bottom:117.226555pt;}
.y1e_c02182{bottom:130.666267pt;}
.y21_c02182{bottom:165.866875pt;}
.y20_c02182{bottom:174.507067pt;}
.y1d_c02182{bottom:245.226427pt;}
.y1c_c02182{bottom:317.226619pt;}
.y1a_c02182{bottom:347.946715pt;}
.y19_c02182{bottom:361.386427pt;}
.y15_c02182{bottom:377.386939pt;}
.y1b_c02182{bottom:407.787067pt;}
.y18_c02182{bottom:437.226235pt;}
.y17_c02182{bottom:453.226747pt;}
.y14_c02182{bottom:482.666971pt;}
.y16_c02182{bottom:497.386555pt;}
.y13_c02182{bottom:513.387067pt;}
.y23_c02182{bottom:527.786667pt;}
.y24_c02182{bottom:530.347067pt;}
.y22_c02182{bottom:546.027067pt;}
.yc_c02182{bottom:579.945467pt;}
.yb_c02182{bottom:593.385179pt;}
.ye_c02182{bottom:628.586875pt;}
.yd_c02182{bottom:637.227067pt;}
.ya_c02182{bottom:707.945339pt;}
.y9_c02182{bottom:779.945531pt;}
.y7_c02182{bottom:823.786427pt;}
.y3_c02182{bottom:839.786939pt;}
.y8_c02182{bottom:870.505979pt;}
.y6_c02182{bottom:899.946203pt;}
.y5_c02182{bottom:915.946715pt;}
.y2_c02182{bottom:945.386939pt;}
.y4_c02182{bottom:959.786555pt;}
.y1_c02182{bottom:975.787067pt;}
.y10_c02182{bottom:990.506667pt;}
.y12_c02182{bottom:993.067067pt;}
.yf_c02182{bottom:1008.747067pt;}
.h3_c02182{height:28.916250pt;}
.h5_c02182{height:32.640000pt;}
.h4_c02182{height:36.802500pt;}
.h1_c02182{height:37.063125pt;}
.h2_c02182{height:37.166250pt;}
.h7_c02182{height:47.171250pt;}
.h6_c02182{height:47.302500pt;}
.h0_c02182{height:1122.666667pt;}
.w2_c02182{width:351.360000pt;}
.w1_c02182{width:793.333333pt;}
.w0_c02182{width:793.626667pt;}
.x0_c02182{left:0.000000pt;}
.xe_c02182{left:104.000000pt;}
.xf_c02182{left:143.360000pt;}
.x8_c02182{left:391.999872pt;}
.x4_c02182{left:396.160512pt;}
.xc_c02182{left:400.960000pt;}
.x7_c02182{left:404.799648pt;}
.x5_c02182{left:410.560128pt;}
.x1_c02182{left:411.840000pt;}
.xa_c02182{left:429.760320pt;}
.x9_c02182{left:437.439552pt;}
.x6_c02182{left:438.400512pt;}
.xd_c02182{left:450.560320pt;}
.x3_c02182{left:455.039904pt;}
.x2_c02182{left:468.159648pt;}
.xb_c02182{left:506.560032pt;}
}





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

.ir_c02183:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02183;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02183{font-family:ff1_c02183;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02183;src:url('chunks/assets/font_b53621b5bcaf34c0b8e96b70.woff2')format("woff");}.ff2_c02183{font-family:ff2_c02183;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02183;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02183{font-family:ff3_c02183;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02183{vertical-align:0.000000px;}
.lsa_c02183{letter-spacing:-0.755568px;}
.ls8_c02183{letter-spacing:-0.613008px;}
.lsb_c02183{letter-spacing:-0.574992px;}
.lse_c02183{letter-spacing:-0.427680px;}
.ls11_c02183{letter-spacing:-0.275616px;}
.lsf_c02183{letter-spacing:-0.261360px;}
.ls7_c02183{letter-spacing:-0.242352px;}
.ls5_c02183{letter-spacing:-0.118800px;}
.ls13_c02183{letter-spacing:0.000000px;}
.ls2_c02183{letter-spacing:0.006048px;}
.ls6_c02183{letter-spacing:0.128304px;}
.lsd_c02183{letter-spacing:0.508464px;}
.ls1_c02183{letter-spacing:0.514080px;}
.ls10_c02183{letter-spacing:0.536976px;}
.lsc_c02183{letter-spacing:0.579744px;}
.ls12_c02183{letter-spacing:0.594000px;}
.ls9_c02183{letter-spacing:0.598752px;}
.ls3_c02183{letter-spacing:0.613008px;}
.ls0_c02183{letter-spacing:0.717552px;}
.ls4_c02183{letter-spacing:0.722304px;}
.sc__c02183{text-shadow:none;}
.sc0_c02183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02183{-webkit-text-stroke:0px transparent;}
.sc0_c02183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02183{word-spacing:-15.634080px;}
.wsc_c02183{word-spacing:-15.126048px;}
.wsa_c02183{word-spacing:-12.474000px;}
.ws8_c02183{word-spacing:-12.459744px;}
.ws9_c02183{word-spacing:-12.416976px;}
.ws2_c02183{word-spacing:-11.266992px;}
.ws4_c02183{word-spacing:-11.124432px;}
.ws14_c02183{word-spacing:-3.598560px;}
.ws10_c02183{word-spacing:-1.078704px;}
.wsd_c02183{word-spacing:-0.974160px;}
.wsf_c02183{word-spacing:-0.118800px;}
.ws12_c02183{word-spacing:-0.099792px;}
.ws13_c02183{word-spacing:-0.085536px;}
.wse_c02183{word-spacing:0.000000px;}
.ws11_c02183{word-spacing:0.066528px;}
.ws6_c02183{word-spacing:36.742464px;}
.ws1_c02183{word-spacing:37.759392px;}
.ws0_c02183{word-spacing:38.020752px;}
.ws3_c02183{word-spacing:39.218256px;}
.ws5_c02183{word-spacing:39.902544px;}
.ws7_c02183{word-spacing:42.026688px;}
._0_c02183{margin-left:-1.948320px;}
._2_c02183{width:1.482624px;}
._4_c02183{width:3.369168px;}
._1_c02183{width:50.252400px;}
._3_c02183{width:51.530688px;}
.fc0_c02183{color:rgb(0,0,0);}
.fs0_c02183{font-size:47.520000px;}
.fs1_c02183{font-size:60.480000px;}
.y0_c02183{bottom:0.000000px;}
.y10_c02183{bottom:20.880450px;}
.y1c_c02183{bottom:146.998362px;}
.y1e_c02183{bottom:186.600234px;}
.y1d_c02183{bottom:196.320450px;}
.y1b_c02183{bottom:275.878542px;}
.y1a_c02183{bottom:356.878758px;}
.y18_c02183{bottom:406.559730px;}
.y14_c02183{bottom:424.560306px;}
.y19_c02183{bottom:458.759262px;}
.y17_c02183{bottom:491.879514px;}
.y16_c02183{bottom:509.880090px;}
.y13_c02183{bottom:543.000342px;}
.y15_c02183{bottom:559.559874px;}
.y12_c02183{bottom:577.560450px;}
.y20_c02183{bottom:593.760000px;}
.y21_c02183{bottom:596.640450px;}
.y1f_c02183{bottom:614.280450px;}
.yb_c02183{bottom:667.558326px;}
.yd_c02183{bottom:707.160234px;}
.yc_c02183{bottom:716.880450px;}
.ya_c02183{bottom:796.438506px;}
.y9_c02183{bottom:877.438722px;}
.y7_c02183{bottom:926.759730px;}
.y3_c02183{bottom:944.760306px;}
.y8_c02183{bottom:979.319226px;}
.y6_c02183{bottom:1012.439478px;}
.y5_c02183{bottom:1030.440054px;}
.y2_c02183{bottom:1063.560306px;}
.y4_c02183{bottom:1079.759874px;}
.y1_c02183{bottom:1097.760450px;}
.yf_c02183{bottom:1114.320000px;}
.y11_c02183{bottom:1117.200450px;}
.ye_c02183{bottom:1134.840450px;}
.h3_c02183{height:32.530781px;}
.h5_c02183{height:36.720000px;}
.h4_c02183{height:41.402813px;}
.h1_c02183{height:41.696016px;}
.h2_c02183{height:41.812031px;}
.h7_c02183{height:53.067656px;}
.h6_c02183{height:53.215313px;}
.h0_c02183{height:1263.000000px;}
.w2_c02183{width:395.280000px;}
.w1_c02183{width:892.500000px;}
.w0_c02183{width:892.830000px;}
.x0_c02183{left:0.000000px;}
.xd_c02183{left:117.000000px;}
.xe_c02183{left:161.280000px;}
.x8_c02183{left:440.999856px;}
.x4_c02183{left:445.680576px;}
.xb_c02183{left:451.080000px;}
.x7_c02183{left:455.399604px;}
.x5_c02183{left:461.880144px;}
.x1_c02183{left:463.320000px;}
.xa_c02183{left:483.480360px;}
.x9_c02183{left:492.119496px;}
.x6_c02183{left:493.200576px;}
.xc_c02183{left:506.880360px;}
.x3_c02183{left:511.919892px;}
.x2_c02183{left:526.679604px;}
@media print{
.v0_c02183{vertical-align:0.000000pt;}
.lsa_c02183{letter-spacing:-0.671616pt;}
.ls8_c02183{letter-spacing:-0.544896pt;}
.lsb_c02183{letter-spacing:-0.511104pt;}
.lse_c02183{letter-spacing:-0.380160pt;}
.ls11_c02183{letter-spacing:-0.244992pt;}
.lsf_c02183{letter-spacing:-0.232320pt;}
.ls7_c02183{letter-spacing:-0.215424pt;}
.ls5_c02183{letter-spacing:-0.105600pt;}
.ls13_c02183{letter-spacing:0.000000pt;}
.ls2_c02183{letter-spacing:0.005376pt;}
.ls6_c02183{letter-spacing:0.114048pt;}
.lsd_c02183{letter-spacing:0.451968pt;}
.ls1_c02183{letter-spacing:0.456960pt;}
.ls10_c02183{letter-spacing:0.477312pt;}
.lsc_c02183{letter-spacing:0.515328pt;}
.ls12_c02183{letter-spacing:0.528000pt;}
.ls9_c02183{letter-spacing:0.532224pt;}
.ls3_c02183{letter-spacing:0.544896pt;}
.ls0_c02183{letter-spacing:0.637824pt;}
.ls4_c02183{letter-spacing:0.642048pt;}
.wsb_c02183{word-spacing:-13.896960pt;}
.wsc_c02183{word-spacing:-13.445376pt;}
.wsa_c02183{word-spacing:-11.088000pt;}
.ws8_c02183{word-spacing:-11.075328pt;}
.ws9_c02183{word-spacing:-11.037312pt;}
.ws2_c02183{word-spacing:-10.015104pt;}
.ws4_c02183{word-spacing:-9.888384pt;}
.ws14_c02183{word-spacing:-3.198720pt;}
.ws10_c02183{word-spacing:-0.958848pt;}
.wsd_c02183{word-spacing:-0.865920pt;}
.wsf_c02183{word-spacing:-0.105600pt;}
.ws12_c02183{word-spacing:-0.088704pt;}
.ws13_c02183{word-spacing:-0.076032pt;}
.wse_c02183{word-spacing:0.000000pt;}
.ws11_c02183{word-spacing:0.059136pt;}
.ws6_c02183{word-spacing:32.659968pt;}
.ws1_c02183{word-spacing:33.563904pt;}
.ws0_c02183{word-spacing:33.796224pt;}
.ws3_c02183{word-spacing:34.860672pt;}
.ws5_c02183{word-spacing:35.468928pt;}
.ws7_c02183{word-spacing:37.357056pt;}
._0_c02183{margin-left:-1.731840pt;}
._2_c02183{width:1.317888pt;}
._4_c02183{width:2.994816pt;}
._1_c02183{width:44.668800pt;}
._3_c02183{width:45.805056pt;}
.fs0_c02183{font-size:42.240000pt;}
.fs1_c02183{font-size:53.760000pt;}
.y0_c02183{bottom:0.000000pt;}
.y10_c02183{bottom:18.560400pt;}
.y1c_c02183{bottom:130.665211pt;}
.y1e_c02183{bottom:165.866875pt;}
.y1d_c02183{bottom:174.507067pt;}
.y1b_c02183{bottom:245.225371pt;}
.y1a_c02183{bottom:317.225563pt;}
.y18_c02183{bottom:361.386427pt;}
.y14_c02183{bottom:377.386939pt;}
.y19_c02183{bottom:407.786011pt;}
.y17_c02183{bottom:437.226235pt;}
.y16_c02183{bottom:453.226747pt;}
.y13_c02183{bottom:482.666971pt;}
.y15_c02183{bottom:497.386555pt;}
.y12_c02183{bottom:513.387067pt;}
.y20_c02183{bottom:527.786667pt;}
.y21_c02183{bottom:530.347067pt;}
.y1f_c02183{bottom:546.027067pt;}
.yb_c02183{bottom:593.385179pt;}
.yd_c02183{bottom:628.586875pt;}
.yc_c02183{bottom:637.227067pt;}
.ya_c02183{bottom:707.945339pt;}
.y9_c02183{bottom:779.945531pt;}
.y7_c02183{bottom:823.786427pt;}
.y3_c02183{bottom:839.786939pt;}
.y8_c02183{bottom:870.505979pt;}
.y6_c02183{bottom:899.946203pt;}
.y5_c02183{bottom:915.946715pt;}
.y2_c02183{bottom:945.386939pt;}
.y4_c02183{bottom:959.786555pt;}
.y1_c02183{bottom:975.787067pt;}
.yf_c02183{bottom:990.506667pt;}
.y11_c02183{bottom:993.067067pt;}
.ye_c02183{bottom:1008.747067pt;}
.h3_c02183{height:28.916250pt;}
.h5_c02183{height:32.640000pt;}
.h4_c02183{height:36.802500pt;}
.h1_c02183{height:37.063125pt;}
.h2_c02183{height:37.166250pt;}
.h7_c02183{height:47.171250pt;}
.h6_c02183{height:47.302500pt;}
.h0_c02183{height:1122.666667pt;}
.w2_c02183{width:351.360000pt;}
.w1_c02183{width:793.333333pt;}
.w0_c02183{width:793.626667pt;}
.x0_c02183{left:0.000000pt;}
.xd_c02183{left:104.000000pt;}
.xe_c02183{left:143.360000pt;}
.x8_c02183{left:391.999872pt;}
.x4_c02183{left:396.160512pt;}
.xb_c02183{left:400.960000pt;}
.x7_c02183{left:404.799648pt;}
.x5_c02183{left:410.560128pt;}
.x1_c02183{left:411.840000pt;}
.xa_c02183{left:429.760320pt;}
.x9_c02183{left:437.439552pt;}
.x6_c02183{left:438.400512pt;}
.xc_c02183{left:450.560320pt;}
.x3_c02183{left:455.039904pt;}
.x2_c02183{left:468.159648pt;}
}





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

.ir_c02184:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02184;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02184{font-family:ff1_c02184;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02184;src:url('chunks/assets/font_71085c480a435f74312d3052.woff2')format("woff");}.ff2_c02184{font-family:ff2_c02184;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02184;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02184{font-family:ff3_c02184;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02184{vertical-align:0.000000px;}
.lsa_c02184{letter-spacing:-0.755568px;}
.ls8_c02184{letter-spacing:-0.613008px;}
.lsb_c02184{letter-spacing:-0.574992px;}
.lse_c02184{letter-spacing:-0.427680px;}
.ls11_c02184{letter-spacing:-0.275616px;}
.lsf_c02184{letter-spacing:-0.261360px;}
.ls7_c02184{letter-spacing:-0.242352px;}
.ls5_c02184{letter-spacing:-0.118800px;}
.ls13_c02184{letter-spacing:0.000000px;}
.ls2_c02184{letter-spacing:0.006048px;}
.ls6_c02184{letter-spacing:0.128304px;}
.lsd_c02184{letter-spacing:0.508464px;}
.ls1_c02184{letter-spacing:0.514080px;}
.ls10_c02184{letter-spacing:0.536976px;}
.lsc_c02184{letter-spacing:0.579744px;}
.ls12_c02184{letter-spacing:0.594000px;}
.ls9_c02184{letter-spacing:0.598752px;}
.ls3_c02184{letter-spacing:0.613008px;}
.ls0_c02184{letter-spacing:0.717552px;}
.ls4_c02184{letter-spacing:0.722304px;}
.sc__c02184{text-shadow:none;}
.sc0_c02184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02184{-webkit-text-stroke:0px transparent;}
.sc0_c02184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02184{word-spacing:-15.634080px;}
.wsc_c02184{word-spacing:-15.126048px;}
.wsa_c02184{word-spacing:-12.474000px;}
.ws8_c02184{word-spacing:-12.459744px;}
.ws9_c02184{word-spacing:-12.416976px;}
.ws2_c02184{word-spacing:-11.266992px;}
.ws4_c02184{word-spacing:-11.124432px;}
.ws14_c02184{word-spacing:-3.598560px;}
.ws10_c02184{word-spacing:-1.078704px;}
.wsd_c02184{word-spacing:-0.974160px;}
.wsf_c02184{word-spacing:-0.118800px;}
.ws12_c02184{word-spacing:-0.099792px;}
.ws13_c02184{word-spacing:-0.085536px;}
.wse_c02184{word-spacing:0.000000px;}
.ws11_c02184{word-spacing:0.066528px;}
.ws6_c02184{word-spacing:36.742464px;}
.ws1_c02184{word-spacing:37.759392px;}
.ws0_c02184{word-spacing:38.020752px;}
.ws3_c02184{word-spacing:39.218256px;}
.ws5_c02184{word-spacing:39.902544px;}
.ws7_c02184{word-spacing:42.026688px;}
._0_c02184{margin-left:-1.948320px;}
._2_c02184{width:1.482624px;}
._4_c02184{width:3.369168px;}
._1_c02184{width:50.252400px;}
._3_c02184{width:51.530688px;}
.fc0_c02184{color:rgb(0,0,0);}
.fs0_c02184{font-size:47.520000px;}
.fs1_c02184{font-size:60.480000px;}
.y0_c02184{bottom:0.000000px;}
.y10_c02184{bottom:20.880450px;}
.y1c_c02184{bottom:146.998362px;}
.y1e_c02184{bottom:186.600234px;}
.y1d_c02184{bottom:196.320450px;}
.y1b_c02184{bottom:275.878542px;}
.y1a_c02184{bottom:356.878758px;}
.y18_c02184{bottom:406.559730px;}
.y14_c02184{bottom:424.560306px;}
.y19_c02184{bottom:458.759262px;}
.y17_c02184{bottom:491.879514px;}
.y16_c02184{bottom:509.880090px;}
.y13_c02184{bottom:543.000342px;}
.y15_c02184{bottom:559.559874px;}
.y12_c02184{bottom:577.560450px;}
.y20_c02184{bottom:593.760000px;}
.y21_c02184{bottom:596.640450px;}
.y1f_c02184{bottom:614.280450px;}
.yb_c02184{bottom:667.558326px;}
.yd_c02184{bottom:707.160234px;}
.yc_c02184{bottom:716.880450px;}
.ya_c02184{bottom:796.438506px;}
.y9_c02184{bottom:877.438722px;}
.y7_c02184{bottom:926.759730px;}
.y3_c02184{bottom:944.760306px;}
.y8_c02184{bottom:979.319226px;}
.y6_c02184{bottom:1012.439478px;}
.y5_c02184{bottom:1030.440054px;}
.y2_c02184{bottom:1063.560306px;}
.y4_c02184{bottom:1079.759874px;}
.y1_c02184{bottom:1097.760450px;}
.yf_c02184{bottom:1114.320000px;}
.y11_c02184{bottom:1117.200450px;}
.ye_c02184{bottom:1134.840450px;}
.h3_c02184{height:32.530781px;}
.h5_c02184{height:36.720000px;}
.h4_c02184{height:41.402813px;}
.h1_c02184{height:41.696016px;}
.h2_c02184{height:41.812031px;}
.h7_c02184{height:53.067656px;}
.h6_c02184{height:53.215313px;}
.h0_c02184{height:1263.000000px;}
.w2_c02184{width:395.280000px;}
.w1_c02184{width:892.500000px;}
.w0_c02184{width:892.830000px;}
.x0_c02184{left:0.000000px;}
.xd_c02184{left:117.000000px;}
.xe_c02184{left:161.280000px;}
.x8_c02184{left:440.999856px;}
.x4_c02184{left:445.680576px;}
.xb_c02184{left:451.080000px;}
.x7_c02184{left:455.399604px;}
.x5_c02184{left:461.880144px;}
.x1_c02184{left:463.320000px;}
.xa_c02184{left:483.480360px;}
.x9_c02184{left:492.119496px;}
.x6_c02184{left:493.200576px;}
.xc_c02184{left:506.880360px;}
.x3_c02184{left:511.919892px;}
.x2_c02184{left:526.679604px;}
@media print{
.v0_c02184{vertical-align:0.000000pt;}
.lsa_c02184{letter-spacing:-0.671616pt;}
.ls8_c02184{letter-spacing:-0.544896pt;}
.lsb_c02184{letter-spacing:-0.511104pt;}
.lse_c02184{letter-spacing:-0.380160pt;}
.ls11_c02184{letter-spacing:-0.244992pt;}
.lsf_c02184{letter-spacing:-0.232320pt;}
.ls7_c02184{letter-spacing:-0.215424pt;}
.ls5_c02184{letter-spacing:-0.105600pt;}
.ls13_c02184{letter-spacing:0.000000pt;}
.ls2_c02184{letter-spacing:0.005376pt;}
.ls6_c02184{letter-spacing:0.114048pt;}
.lsd_c02184{letter-spacing:0.451968pt;}
.ls1_c02184{letter-spacing:0.456960pt;}
.ls10_c02184{letter-spacing:0.477312pt;}
.lsc_c02184{letter-spacing:0.515328pt;}
.ls12_c02184{letter-spacing:0.528000pt;}
.ls9_c02184{letter-spacing:0.532224pt;}
.ls3_c02184{letter-spacing:0.544896pt;}
.ls0_c02184{letter-spacing:0.637824pt;}
.ls4_c02184{letter-spacing:0.642048pt;}
.wsb_c02184{word-spacing:-13.896960pt;}
.wsc_c02184{word-spacing:-13.445376pt;}
.wsa_c02184{word-spacing:-11.088000pt;}
.ws8_c02184{word-spacing:-11.075328pt;}
.ws9_c02184{word-spacing:-11.037312pt;}
.ws2_c02184{word-spacing:-10.015104pt;}
.ws4_c02184{word-spacing:-9.888384pt;}
.ws14_c02184{word-spacing:-3.198720pt;}
.ws10_c02184{word-spacing:-0.958848pt;}
.wsd_c02184{word-spacing:-0.865920pt;}
.wsf_c02184{word-spacing:-0.105600pt;}
.ws12_c02184{word-spacing:-0.088704pt;}
.ws13_c02184{word-spacing:-0.076032pt;}
.wse_c02184{word-spacing:0.000000pt;}
.ws11_c02184{word-spacing:0.059136pt;}
.ws6_c02184{word-spacing:32.659968pt;}
.ws1_c02184{word-spacing:33.563904pt;}
.ws0_c02184{word-spacing:33.796224pt;}
.ws3_c02184{word-spacing:34.860672pt;}
.ws5_c02184{word-spacing:35.468928pt;}
.ws7_c02184{word-spacing:37.357056pt;}
._0_c02184{margin-left:-1.731840pt;}
._2_c02184{width:1.317888pt;}
._4_c02184{width:2.994816pt;}
._1_c02184{width:44.668800pt;}
._3_c02184{width:45.805056pt;}
.fs0_c02184{font-size:42.240000pt;}
.fs1_c02184{font-size:53.760000pt;}
.y0_c02184{bottom:0.000000pt;}
.y10_c02184{bottom:18.560400pt;}
.y1c_c02184{bottom:130.665211pt;}
.y1e_c02184{bottom:165.866875pt;}
.y1d_c02184{bottom:174.507067pt;}
.y1b_c02184{bottom:245.225371pt;}
.y1a_c02184{bottom:317.225563pt;}
.y18_c02184{bottom:361.386427pt;}
.y14_c02184{bottom:377.386939pt;}
.y19_c02184{bottom:407.786011pt;}
.y17_c02184{bottom:437.226235pt;}
.y16_c02184{bottom:453.226747pt;}
.y13_c02184{bottom:482.666971pt;}
.y15_c02184{bottom:497.386555pt;}
.y12_c02184{bottom:513.387067pt;}
.y20_c02184{bottom:527.786667pt;}
.y21_c02184{bottom:530.347067pt;}
.y1f_c02184{bottom:546.027067pt;}
.yb_c02184{bottom:593.385179pt;}
.yd_c02184{bottom:628.586875pt;}
.yc_c02184{bottom:637.227067pt;}
.ya_c02184{bottom:707.945339pt;}
.y9_c02184{bottom:779.945531pt;}
.y7_c02184{bottom:823.786427pt;}
.y3_c02184{bottom:839.786939pt;}
.y8_c02184{bottom:870.505979pt;}
.y6_c02184{bottom:899.946203pt;}
.y5_c02184{bottom:915.946715pt;}
.y2_c02184{bottom:945.386939pt;}
.y4_c02184{bottom:959.786555pt;}
.y1_c02184{bottom:975.787067pt;}
.yf_c02184{bottom:990.506667pt;}
.y11_c02184{bottom:993.067067pt;}
.ye_c02184{bottom:1008.747067pt;}
.h3_c02184{height:28.916250pt;}
.h5_c02184{height:32.640000pt;}
.h4_c02184{height:36.802500pt;}
.h1_c02184{height:37.063125pt;}
.h2_c02184{height:37.166250pt;}
.h7_c02184{height:47.171250pt;}
.h6_c02184{height:47.302500pt;}
.h0_c02184{height:1122.666667pt;}
.w2_c02184{width:351.360000pt;}
.w1_c02184{width:793.333333pt;}
.w0_c02184{width:793.626667pt;}
.x0_c02184{left:0.000000pt;}
.xd_c02184{left:104.000000pt;}
.xe_c02184{left:143.360000pt;}
.x8_c02184{left:391.999872pt;}
.x4_c02184{left:396.160512pt;}
.xb_c02184{left:400.960000pt;}
.x7_c02184{left:404.799648pt;}
.x5_c02184{left:410.560128pt;}
.x1_c02184{left:411.840000pt;}
.xa_c02184{left:429.760320pt;}
.x9_c02184{left:437.439552pt;}
.x6_c02184{left:438.400512pt;}
.xc_c02184{left:450.560320pt;}
.x3_c02184{left:455.039904pt;}
.x2_c02184{left:468.159648pt;}
}





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

.ir_c02185:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02185{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02185;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02185{font-family:ff1_c02185;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02185;src:url('chunks/assets/font_71085c480a435f74312d3052.woff2')format("woff");}.ff2_c02185{font-family:ff2_c02185;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02185;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02185{font-family:ff3_c02185;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02185{vertical-align:0.000000px;}
.lsa_c02185{letter-spacing:-0.755568px;}
.ls8_c02185{letter-spacing:-0.613008px;}
.lsb_c02185{letter-spacing:-0.574992px;}
.lse_c02185{letter-spacing:-0.427680px;}
.ls11_c02185{letter-spacing:-0.275616px;}
.lsf_c02185{letter-spacing:-0.261360px;}
.ls7_c02185{letter-spacing:-0.242352px;}
.ls5_c02185{letter-spacing:-0.118800px;}
.ls13_c02185{letter-spacing:0.000000px;}
.ls2_c02185{letter-spacing:0.006048px;}
.ls6_c02185{letter-spacing:0.128304px;}
.lsd_c02185{letter-spacing:0.508464px;}
.ls1_c02185{letter-spacing:0.514080px;}
.ls10_c02185{letter-spacing:0.536976px;}
.lsc_c02185{letter-spacing:0.579744px;}
.ls12_c02185{letter-spacing:0.594000px;}
.ls9_c02185{letter-spacing:0.598752px;}
.ls3_c02185{letter-spacing:0.613008px;}
.ls0_c02185{letter-spacing:0.717552px;}
.ls4_c02185{letter-spacing:0.722304px;}
.sc__c02185{text-shadow:none;}
.sc0_c02185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02185{-webkit-text-stroke:0px transparent;}
.sc0_c02185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02185{word-spacing:-15.634080px;}
.wsc_c02185{word-spacing:-15.126048px;}
.wsa_c02185{word-spacing:-12.474000px;}
.ws8_c02185{word-spacing:-12.459744px;}
.ws9_c02185{word-spacing:-12.416976px;}
.ws2_c02185{word-spacing:-11.266992px;}
.ws4_c02185{word-spacing:-11.124432px;}
.ws14_c02185{word-spacing:-3.598560px;}
.ws10_c02185{word-spacing:-1.078704px;}
.wsd_c02185{word-spacing:-0.974160px;}
.wsf_c02185{word-spacing:-0.118800px;}
.ws12_c02185{word-spacing:-0.099792px;}
.ws13_c02185{word-spacing:-0.085536px;}
.wse_c02185{word-spacing:0.000000px;}
.ws11_c02185{word-spacing:0.066528px;}
.ws6_c02185{word-spacing:36.742464px;}
.ws1_c02185{word-spacing:37.759392px;}
.ws0_c02185{word-spacing:38.020752px;}
.ws3_c02185{word-spacing:39.218256px;}
.ws5_c02185{word-spacing:39.902544px;}
.ws7_c02185{word-spacing:42.026688px;}
._0_c02185{margin-left:-1.948320px;}
._2_c02185{width:1.482624px;}
._4_c02185{width:3.369168px;}
._1_c02185{width:50.252400px;}
._3_c02185{width:51.530688px;}
.fc0_c02185{color:rgb(0,0,0);}
.fs0_c02185{font-size:47.520000px;}
.fs1_c02185{font-size:60.480000px;}
.y0_c02185{bottom:0.000000px;}
.y10_c02185{bottom:20.880450px;}
.y1c_c02185{bottom:146.998362px;}
.y1e_c02185{bottom:186.600234px;}
.y1d_c02185{bottom:196.320450px;}
.y1b_c02185{bottom:275.878542px;}
.y1a_c02185{bottom:356.878758px;}
.y18_c02185{bottom:406.559730px;}
.y14_c02185{bottom:424.560306px;}
.y19_c02185{bottom:458.759262px;}
.y17_c02185{bottom:491.879514px;}
.y16_c02185{bottom:509.880090px;}
.y13_c02185{bottom:543.000342px;}
.y15_c02185{bottom:559.559874px;}
.y12_c02185{bottom:577.560450px;}
.y20_c02185{bottom:593.760000px;}
.y21_c02185{bottom:596.640450px;}
.y1f_c02185{bottom:614.280450px;}
.yb_c02185{bottom:667.558326px;}
.yd_c02185{bottom:707.160234px;}
.yc_c02185{bottom:716.880450px;}
.ya_c02185{bottom:796.438506px;}
.y9_c02185{bottom:877.438722px;}
.y7_c02185{bottom:926.759730px;}
.y3_c02185{bottom:944.760306px;}
.y8_c02185{bottom:979.319226px;}
.y6_c02185{bottom:1012.439478px;}
.y5_c02185{bottom:1030.440054px;}
.y2_c02185{bottom:1063.560306px;}
.y4_c02185{bottom:1079.759874px;}
.y1_c02185{bottom:1097.760450px;}
.yf_c02185{bottom:1114.320000px;}
.y11_c02185{bottom:1117.200450px;}
.ye_c02185{bottom:1134.840450px;}
.h3_c02185{height:32.530781px;}
.h5_c02185{height:36.720000px;}
.h4_c02185{height:41.402813px;}
.h1_c02185{height:41.696016px;}
.h2_c02185{height:41.812031px;}
.h7_c02185{height:53.067656px;}
.h6_c02185{height:53.215313px;}
.h0_c02185{height:1263.000000px;}
.w2_c02185{width:395.280000px;}
.w1_c02185{width:892.500000px;}
.w0_c02185{width:892.830000px;}
.x0_c02185{left:0.000000px;}
.xd_c02185{left:117.000000px;}
.xe_c02185{left:161.280000px;}
.x8_c02185{left:440.999856px;}
.x4_c02185{left:445.680576px;}
.xb_c02185{left:451.080000px;}
.x7_c02185{left:455.399604px;}
.x5_c02185{left:461.880144px;}
.x1_c02185{left:463.320000px;}
.xa_c02185{left:483.480360px;}
.x9_c02185{left:492.119496px;}
.x6_c02185{left:493.200576px;}
.xc_c02185{left:506.880360px;}
.x3_c02185{left:511.919892px;}
.x2_c02185{left:526.679604px;}
@media print{
.v0_c02185{vertical-align:0.000000pt;}
.lsa_c02185{letter-spacing:-0.671616pt;}
.ls8_c02185{letter-spacing:-0.544896pt;}
.lsb_c02185{letter-spacing:-0.511104pt;}
.lse_c02185{letter-spacing:-0.380160pt;}
.ls11_c02185{letter-spacing:-0.244992pt;}
.lsf_c02185{letter-spacing:-0.232320pt;}
.ls7_c02185{letter-spacing:-0.215424pt;}
.ls5_c02185{letter-spacing:-0.105600pt;}
.ls13_c02185{letter-spacing:0.000000pt;}
.ls2_c02185{letter-spacing:0.005376pt;}
.ls6_c02185{letter-spacing:0.114048pt;}
.lsd_c02185{letter-spacing:0.451968pt;}
.ls1_c02185{letter-spacing:0.456960pt;}
.ls10_c02185{letter-spacing:0.477312pt;}
.lsc_c02185{letter-spacing:0.515328pt;}
.ls12_c02185{letter-spacing:0.528000pt;}
.ls9_c02185{letter-spacing:0.532224pt;}
.ls3_c02185{letter-spacing:0.544896pt;}
.ls0_c02185{letter-spacing:0.637824pt;}
.ls4_c02185{letter-spacing:0.642048pt;}
.wsb_c02185{word-spacing:-13.896960pt;}
.wsc_c02185{word-spacing:-13.445376pt;}
.wsa_c02185{word-spacing:-11.088000pt;}
.ws8_c02185{word-spacing:-11.075328pt;}
.ws9_c02185{word-spacing:-11.037312pt;}
.ws2_c02185{word-spacing:-10.015104pt;}
.ws4_c02185{word-spacing:-9.888384pt;}
.ws14_c02185{word-spacing:-3.198720pt;}
.ws10_c02185{word-spacing:-0.958848pt;}
.wsd_c02185{word-spacing:-0.865920pt;}
.wsf_c02185{word-spacing:-0.105600pt;}
.ws12_c02185{word-spacing:-0.088704pt;}
.ws13_c02185{word-spacing:-0.076032pt;}
.wse_c02185{word-spacing:0.000000pt;}
.ws11_c02185{word-spacing:0.059136pt;}
.ws6_c02185{word-spacing:32.659968pt;}
.ws1_c02185{word-spacing:33.563904pt;}
.ws0_c02185{word-spacing:33.796224pt;}
.ws3_c02185{word-spacing:34.860672pt;}
.ws5_c02185{word-spacing:35.468928pt;}
.ws7_c02185{word-spacing:37.357056pt;}
._0_c02185{margin-left:-1.731840pt;}
._2_c02185{width:1.317888pt;}
._4_c02185{width:2.994816pt;}
._1_c02185{width:44.668800pt;}
._3_c02185{width:45.805056pt;}
.fs0_c02185{font-size:42.240000pt;}
.fs1_c02185{font-size:53.760000pt;}
.y0_c02185{bottom:0.000000pt;}
.y10_c02185{bottom:18.560400pt;}
.y1c_c02185{bottom:130.665211pt;}
.y1e_c02185{bottom:165.866875pt;}
.y1d_c02185{bottom:174.507067pt;}
.y1b_c02185{bottom:245.225371pt;}
.y1a_c02185{bottom:317.225563pt;}
.y18_c02185{bottom:361.386427pt;}
.y14_c02185{bottom:377.386939pt;}
.y19_c02185{bottom:407.786011pt;}
.y17_c02185{bottom:437.226235pt;}
.y16_c02185{bottom:453.226747pt;}
.y13_c02185{bottom:482.666971pt;}
.y15_c02185{bottom:497.386555pt;}
.y12_c02185{bottom:513.387067pt;}
.y20_c02185{bottom:527.786667pt;}
.y21_c02185{bottom:530.347067pt;}
.y1f_c02185{bottom:546.027067pt;}
.yb_c02185{bottom:593.385179pt;}
.yd_c02185{bottom:628.586875pt;}
.yc_c02185{bottom:637.227067pt;}
.ya_c02185{bottom:707.945339pt;}
.y9_c02185{bottom:779.945531pt;}
.y7_c02185{bottom:823.786427pt;}
.y3_c02185{bottom:839.786939pt;}
.y8_c02185{bottom:870.505979pt;}
.y6_c02185{bottom:899.946203pt;}
.y5_c02185{bottom:915.946715pt;}
.y2_c02185{bottom:945.386939pt;}
.y4_c02185{bottom:959.786555pt;}
.y1_c02185{bottom:975.787067pt;}
.yf_c02185{bottom:990.506667pt;}
.y11_c02185{bottom:993.067067pt;}
.ye_c02185{bottom:1008.747067pt;}
.h3_c02185{height:28.916250pt;}
.h5_c02185{height:32.640000pt;}
.h4_c02185{height:36.802500pt;}
.h1_c02185{height:37.063125pt;}
.h2_c02185{height:37.166250pt;}
.h7_c02185{height:47.171250pt;}
.h6_c02185{height:47.302500pt;}
.h0_c02185{height:1122.666667pt;}
.w2_c02185{width:351.360000pt;}
.w1_c02185{width:793.333333pt;}
.w0_c02185{width:793.626667pt;}
.x0_c02185{left:0.000000pt;}
.xd_c02185{left:104.000000pt;}
.xe_c02185{left:143.360000pt;}
.x8_c02185{left:391.999872pt;}
.x4_c02185{left:396.160512pt;}
.xb_c02185{left:400.960000pt;}
.x7_c02185{left:404.799648pt;}
.x5_c02185{left:410.560128pt;}
.x1_c02185{left:411.840000pt;}
.xa_c02185{left:429.760320pt;}
.x9_c02185{left:437.439552pt;}
.x6_c02185{left:438.400512pt;}
.xc_c02185{left:450.560320pt;}
.x3_c02185{left:455.039904pt;}
.x2_c02185{left:468.159648pt;}
}





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

.ir_c02186:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02186{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02186;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02186{font-family:ff1_c02186;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02186;src:url('chunks/assets/font_718ed5c26dd61774da9982ea.woff2')format("woff");}.ff2_c02186{font-family:ff2_c02186;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02186;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02186{font-family:ff3_c02186;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02186{vertical-align:0.000000px;}
.lsf_c02186{letter-spacing:-1.197504px;}
.lsa_c02186{letter-spacing:-0.755568px;}
.ls8_c02186{letter-spacing:-0.613008px;}
.lsb_c02186{letter-spacing:-0.574992px;}
.ls15_c02186{letter-spacing:-0.427680px;}
.lsc_c02186{letter-spacing:-0.361152px;}
.ls12_c02186{letter-spacing:-0.275616px;}
.ls10_c02186{letter-spacing:-0.261360px;}
.ls7_c02186{letter-spacing:-0.242352px;}
.ls5_c02186{letter-spacing:-0.118800px;}
.ls14_c02186{letter-spacing:0.000000px;}
.ls1_c02186{letter-spacing:0.006048px;}
.ls6_c02186{letter-spacing:0.128304px;}
.lse_c02186{letter-spacing:0.508464px;}
.ls0_c02186{letter-spacing:0.514080px;}
.ls11_c02186{letter-spacing:0.536976px;}
.lsd_c02186{letter-spacing:0.579744px;}
.ls13_c02186{letter-spacing:0.594000px;}
.ls9_c02186{letter-spacing:0.598752px;}
.ls3_c02186{letter-spacing:0.613008px;}
.ls2_c02186{letter-spacing:0.717552px;}
.ls4_c02186{letter-spacing:0.722304px;}
.sc__c02186{text-shadow:none;}
.sc0_c02186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02186{-webkit-text-stroke:0px transparent;}
.sc0_c02186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02186{word-spacing:-15.634080px;}
.wsc_c02186{word-spacing:-15.126048px;}
.wsa_c02186{word-spacing:-12.474000px;}
.ws8_c02186{word-spacing:-12.459744px;}
.ws9_c02186{word-spacing:-12.416976px;}
.ws2_c02186{word-spacing:-11.266992px;}
.ws4_c02186{word-spacing:-11.124432px;}
.ws13_c02186{word-spacing:-3.598560px;}
.ws14_c02186{word-spacing:-1.078704px;}
.wsd_c02186{word-spacing:-0.974160px;}
.wsf_c02186{word-spacing:-0.118800px;}
.ws11_c02186{word-spacing:-0.099792px;}
.ws12_c02186{word-spacing:-0.085536px;}
.wse_c02186{word-spacing:0.000000px;}
.ws15_c02186{word-spacing:0.066528px;}
.ws10_c02186{word-spacing:0.836352px;}
.ws6_c02186{word-spacing:36.742464px;}
.ws1_c02186{word-spacing:37.759392px;}
.ws0_c02186{word-spacing:38.020752px;}
.ws3_c02186{word-spacing:39.218256px;}
.ws5_c02186{word-spacing:39.902544px;}
.ws7_c02186{word-spacing:42.026688px;}
._0_c02186{margin-left:-1.948320px;}
._2_c02186{width:1.482624px;}
._4_c02186{width:3.369168px;}
._1_c02186{width:50.252400px;}
._3_c02186{width:51.530688px;}
.fc0_c02186{color:rgb(0,0,0);}
.fs0_c02186{font-size:47.520000px;}
.fs1_c02186{font-size:60.480000px;}
.y0_c02186{bottom:0.000000px;}
.y10_c02186{bottom:20.880450px;}
.y1c_c02186{bottom:146.998362px;}
.y1e_c02186{bottom:186.600234px;}
.y1d_c02186{bottom:196.320450px;}
.y1b_c02186{bottom:275.878542px;}
.y1a_c02186{bottom:356.878758px;}
.y18_c02186{bottom:406.559730px;}
.y14_c02186{bottom:424.560306px;}
.y19_c02186{bottom:458.759262px;}
.y17_c02186{bottom:491.879514px;}
.y16_c02186{bottom:509.880090px;}
.y13_c02186{bottom:543.000342px;}
.y15_c02186{bottom:559.559874px;}
.y12_c02186{bottom:577.560450px;}
.y20_c02186{bottom:593.760000px;}
.y21_c02186{bottom:596.640450px;}
.y1f_c02186{bottom:614.280450px;}
.yb_c02186{bottom:667.558326px;}
.yd_c02186{bottom:707.160234px;}
.yc_c02186{bottom:716.880450px;}
.ya_c02186{bottom:796.438506px;}
.y9_c02186{bottom:877.438722px;}
.y7_c02186{bottom:926.759730px;}
.y3_c02186{bottom:944.760306px;}
.y8_c02186{bottom:979.319226px;}
.y6_c02186{bottom:1012.439478px;}
.y5_c02186{bottom:1030.440054px;}
.y2_c02186{bottom:1063.560306px;}
.y4_c02186{bottom:1079.759874px;}
.y1_c02186{bottom:1097.760450px;}
.yf_c02186{bottom:1114.320000px;}
.y11_c02186{bottom:1117.200450px;}
.ye_c02186{bottom:1134.840450px;}
.h3_c02186{height:32.530781px;}
.h5_c02186{height:36.720000px;}
.h4_c02186{height:41.402813px;}
.h1_c02186{height:41.696016px;}
.h2_c02186{height:41.812031px;}
.h7_c02186{height:53.067656px;}
.h6_c02186{height:53.215313px;}
.h0_c02186{height:1263.000000px;}
.w2_c02186{width:395.280000px;}
.w1_c02186{width:892.500000px;}
.w0_c02186{width:892.830000px;}
.x0_c02186{left:0.000000px;}
.xd_c02186{left:117.000000px;}
.xe_c02186{left:161.280000px;}
.x8_c02186{left:440.999856px;}
.x4_c02186{left:445.680576px;}
.xb_c02186{left:451.080000px;}
.x7_c02186{left:455.399604px;}
.x5_c02186{left:461.880144px;}
.x1_c02186{left:463.320000px;}
.xa_c02186{left:483.480360px;}
.x9_c02186{left:492.119496px;}
.x6_c02186{left:493.200576px;}
.xc_c02186{left:506.880360px;}
.x3_c02186{left:511.919892px;}
.x2_c02186{left:526.679604px;}
@media print{
.v0_c02186{vertical-align:0.000000pt;}
.lsf_c02186{letter-spacing:-1.064448pt;}
.lsa_c02186{letter-spacing:-0.671616pt;}
.ls8_c02186{letter-spacing:-0.544896pt;}
.lsb_c02186{letter-spacing:-0.511104pt;}
.ls15_c02186{letter-spacing:-0.380160pt;}
.lsc_c02186{letter-spacing:-0.321024pt;}
.ls12_c02186{letter-spacing:-0.244992pt;}
.ls10_c02186{letter-spacing:-0.232320pt;}
.ls7_c02186{letter-spacing:-0.215424pt;}
.ls5_c02186{letter-spacing:-0.105600pt;}
.ls14_c02186{letter-spacing:0.000000pt;}
.ls1_c02186{letter-spacing:0.005376pt;}
.ls6_c02186{letter-spacing:0.114048pt;}
.lse_c02186{letter-spacing:0.451968pt;}
.ls0_c02186{letter-spacing:0.456960pt;}
.ls11_c02186{letter-spacing:0.477312pt;}
.lsd_c02186{letter-spacing:0.515328pt;}
.ls13_c02186{letter-spacing:0.528000pt;}
.ls9_c02186{letter-spacing:0.532224pt;}
.ls3_c02186{letter-spacing:0.544896pt;}
.ls2_c02186{letter-spacing:0.637824pt;}
.ls4_c02186{letter-spacing:0.642048pt;}
.wsb_c02186{word-spacing:-13.896960pt;}
.wsc_c02186{word-spacing:-13.445376pt;}
.wsa_c02186{word-spacing:-11.088000pt;}
.ws8_c02186{word-spacing:-11.075328pt;}
.ws9_c02186{word-spacing:-11.037312pt;}
.ws2_c02186{word-spacing:-10.015104pt;}
.ws4_c02186{word-spacing:-9.888384pt;}
.ws13_c02186{word-spacing:-3.198720pt;}
.ws14_c02186{word-spacing:-0.958848pt;}
.wsd_c02186{word-spacing:-0.865920pt;}
.wsf_c02186{word-spacing:-0.105600pt;}
.ws11_c02186{word-spacing:-0.088704pt;}
.ws12_c02186{word-spacing:-0.076032pt;}
.wse_c02186{word-spacing:0.000000pt;}
.ws15_c02186{word-spacing:0.059136pt;}
.ws10_c02186{word-spacing:0.743424pt;}
.ws6_c02186{word-spacing:32.659968pt;}
.ws1_c02186{word-spacing:33.563904pt;}
.ws0_c02186{word-spacing:33.796224pt;}
.ws3_c02186{word-spacing:34.860672pt;}
.ws5_c02186{word-spacing:35.468928pt;}
.ws7_c02186{word-spacing:37.357056pt;}
._0_c02186{margin-left:-1.731840pt;}
._2_c02186{width:1.317888pt;}
._4_c02186{width:2.994816pt;}
._1_c02186{width:44.668800pt;}
._3_c02186{width:45.805056pt;}
.fs0_c02186{font-size:42.240000pt;}
.fs1_c02186{font-size:53.760000pt;}
.y0_c02186{bottom:0.000000pt;}
.y10_c02186{bottom:18.560400pt;}
.y1c_c02186{bottom:130.665211pt;}
.y1e_c02186{bottom:165.866875pt;}
.y1d_c02186{bottom:174.507067pt;}
.y1b_c02186{bottom:245.225371pt;}
.y1a_c02186{bottom:317.225563pt;}
.y18_c02186{bottom:361.386427pt;}
.y14_c02186{bottom:377.386939pt;}
.y19_c02186{bottom:407.786011pt;}
.y17_c02186{bottom:437.226235pt;}
.y16_c02186{bottom:453.226747pt;}
.y13_c02186{bottom:482.666971pt;}
.y15_c02186{bottom:497.386555pt;}
.y12_c02186{bottom:513.387067pt;}
.y20_c02186{bottom:527.786667pt;}
.y21_c02186{bottom:530.347067pt;}
.y1f_c02186{bottom:546.027067pt;}
.yb_c02186{bottom:593.385179pt;}
.yd_c02186{bottom:628.586875pt;}
.yc_c02186{bottom:637.227067pt;}
.ya_c02186{bottom:707.945339pt;}
.y9_c02186{bottom:779.945531pt;}
.y7_c02186{bottom:823.786427pt;}
.y3_c02186{bottom:839.786939pt;}
.y8_c02186{bottom:870.505979pt;}
.y6_c02186{bottom:899.946203pt;}
.y5_c02186{bottom:915.946715pt;}
.y2_c02186{bottom:945.386939pt;}
.y4_c02186{bottom:959.786555pt;}
.y1_c02186{bottom:975.787067pt;}
.yf_c02186{bottom:990.506667pt;}
.y11_c02186{bottom:993.067067pt;}
.ye_c02186{bottom:1008.747067pt;}
.h3_c02186{height:28.916250pt;}
.h5_c02186{height:32.640000pt;}
.h4_c02186{height:36.802500pt;}
.h1_c02186{height:37.063125pt;}
.h2_c02186{height:37.166250pt;}
.h7_c02186{height:47.171250pt;}
.h6_c02186{height:47.302500pt;}
.h0_c02186{height:1122.666667pt;}
.w2_c02186{width:351.360000pt;}
.w1_c02186{width:793.333333pt;}
.w0_c02186{width:793.626667pt;}
.x0_c02186{left:0.000000pt;}
.xd_c02186{left:104.000000pt;}
.xe_c02186{left:143.360000pt;}
.x8_c02186{left:391.999872pt;}
.x4_c02186{left:396.160512pt;}
.xb_c02186{left:400.960000pt;}
.x7_c02186{left:404.799648pt;}
.x5_c02186{left:410.560128pt;}
.x1_c02186{left:411.840000pt;}
.xa_c02186{left:429.760320pt;}
.x9_c02186{left:437.439552pt;}
.x6_c02186{left:438.400512pt;}
.xc_c02186{left:450.560320pt;}
.x3_c02186{left:455.039904pt;}
.x2_c02186{left:468.159648pt;}
}





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

.ir_c02187:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02187{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02187;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02187{font-family:ff1_c02187;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02187;src:url('chunks/assets/font_d94f8d8158259ad25ea4f837.woff2')format("woff");}.ff2_c02187{font-family:ff2_c02187;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02187;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02187{font-family:ff3_c02187;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02187{vertical-align:0.000000px;}
.lsa_c02187{letter-spacing:-0.755568px;}
.ls8_c02187{letter-spacing:-0.613008px;}
.lsb_c02187{letter-spacing:-0.574992px;}
.lse_c02187{letter-spacing:-0.427680px;}
.ls11_c02187{letter-spacing:-0.275616px;}
.lsf_c02187{letter-spacing:-0.261360px;}
.ls7_c02187{letter-spacing:-0.242352px;}
.ls5_c02187{letter-spacing:-0.118800px;}
.ls13_c02187{letter-spacing:0.000000px;}
.ls3_c02187{letter-spacing:0.006048px;}
.ls6_c02187{letter-spacing:0.128304px;}
.lsd_c02187{letter-spacing:0.508464px;}
.ls2_c02187{letter-spacing:0.514080px;}
.ls10_c02187{letter-spacing:0.536976px;}
.lsc_c02187{letter-spacing:0.579744px;}
.ls12_c02187{letter-spacing:0.594000px;}
.ls9_c02187{letter-spacing:0.598752px;}
.ls4_c02187{letter-spacing:0.613008px;}
.ls1_c02187{letter-spacing:0.717552px;}
.ls0_c02187{letter-spacing:0.722304px;}
.sc__c02187{text-shadow:none;}
.sc0_c02187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02187{-webkit-text-stroke:0px transparent;}
.sc0_c02187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02187{word-spacing:-15.634080px;}
.wsd_c02187{word-spacing:-15.126048px;}
.ws5_c02187{word-spacing:-12.602304px;}
.wsb_c02187{word-spacing:-12.474000px;}
.ws9_c02187{word-spacing:-12.459744px;}
.wsa_c02187{word-spacing:-12.416976px;}
.ws2_c02187{word-spacing:-11.266992px;}
.ws15_c02187{word-spacing:-3.598560px;}
.ws11_c02187{word-spacing:-1.078704px;}
.wse_c02187{word-spacing:-0.974160px;}
.ws10_c02187{word-spacing:-0.118800px;}
.ws13_c02187{word-spacing:-0.099792px;}
.ws14_c02187{word-spacing:-0.085536px;}
.wsf_c02187{word-spacing:0.000000px;}
.ws12_c02187{word-spacing:0.066528px;}
.ws4_c02187{word-spacing:4.980096px;}
.ws7_c02187{word-spacing:36.742464px;}
.ws1_c02187{word-spacing:37.759392px;}
.ws0_c02187{word-spacing:38.020752px;}
.ws3_c02187{word-spacing:39.218256px;}
.ws6_c02187{word-spacing:39.902544px;}
.ws8_c02187{word-spacing:42.026688px;}
._0_c02187{margin-left:-1.948320px;}
._2_c02187{width:1.482624px;}
._4_c02187{width:3.369168px;}
._1_c02187{width:50.252400px;}
._3_c02187{width:51.530688px;}
.fc0_c02187{color:rgb(0,0,0);}
.fs0_c02187{font-size:47.520000px;}
.fs1_c02187{font-size:60.480000px;}
.y0_c02187{bottom:0.000000px;}
.y10_c02187{bottom:20.880450px;}
.y1c_c02187{bottom:146.998362px;}
.y1e_c02187{bottom:186.600234px;}
.y1d_c02187{bottom:196.320450px;}
.y1b_c02187{bottom:275.878542px;}
.y1a_c02187{bottom:356.878758px;}
.y18_c02187{bottom:406.559730px;}
.y14_c02187{bottom:424.560306px;}
.y19_c02187{bottom:458.759262px;}
.y17_c02187{bottom:491.879514px;}
.y16_c02187{bottom:509.880090px;}
.y13_c02187{bottom:543.000342px;}
.y15_c02187{bottom:559.559874px;}
.y12_c02187{bottom:577.560450px;}
.y20_c02187{bottom:593.760000px;}
.y21_c02187{bottom:596.640450px;}
.y1f_c02187{bottom:614.280450px;}
.yb_c02187{bottom:667.558326px;}
.yd_c02187{bottom:707.160234px;}
.yc_c02187{bottom:716.880450px;}
.ya_c02187{bottom:796.438506px;}
.y9_c02187{bottom:877.438722px;}
.y7_c02187{bottom:926.759730px;}
.y3_c02187{bottom:944.760306px;}
.y8_c02187{bottom:979.319226px;}
.y6_c02187{bottom:1012.439478px;}
.y5_c02187{bottom:1030.440054px;}
.y2_c02187{bottom:1063.560306px;}
.y4_c02187{bottom:1079.759874px;}
.y1_c02187{bottom:1097.760450px;}
.yf_c02187{bottom:1114.320000px;}
.y11_c02187{bottom:1117.200450px;}
.ye_c02187{bottom:1134.840450px;}
.h3_c02187{height:32.530781px;}
.h5_c02187{height:36.720000px;}
.h4_c02187{height:41.402813px;}
.h1_c02187{height:41.696016px;}
.h2_c02187{height:41.812031px;}
.h7_c02187{height:53.067656px;}
.h6_c02187{height:53.215313px;}
.h0_c02187{height:1263.000000px;}
.w2_c02187{width:395.280000px;}
.w1_c02187{width:892.500000px;}
.w0_c02187{width:892.830000px;}
.x0_c02187{left:0.000000px;}
.xd_c02187{left:117.000000px;}
.xe_c02187{left:161.280000px;}
.x8_c02187{left:440.998668px;}
.x4_c02187{left:445.680576px;}
.xb_c02187{left:451.080000px;}
.x7_c02187{left:455.398416px;}
.x5_c02187{left:461.880144px;}
.x1_c02187{left:463.320000px;}
.xa_c02187{left:483.479172px;}
.x9_c02187{left:492.118308px;}
.x6_c02187{left:493.199388px;}
.xc_c02187{left:506.880360px;}
.x3_c02187{left:511.919892px;}
.x2_c02187{left:526.679604px;}
@media print{
.v0_c02187{vertical-align:0.000000pt;}
.lsa_c02187{letter-spacing:-0.671616pt;}
.ls8_c02187{letter-spacing:-0.544896pt;}
.lsb_c02187{letter-spacing:-0.511104pt;}
.lse_c02187{letter-spacing:-0.380160pt;}
.ls11_c02187{letter-spacing:-0.244992pt;}
.lsf_c02187{letter-spacing:-0.232320pt;}
.ls7_c02187{letter-spacing:-0.215424pt;}
.ls5_c02187{letter-spacing:-0.105600pt;}
.ls13_c02187{letter-spacing:0.000000pt;}
.ls3_c02187{letter-spacing:0.005376pt;}
.ls6_c02187{letter-spacing:0.114048pt;}
.lsd_c02187{letter-spacing:0.451968pt;}
.ls2_c02187{letter-spacing:0.456960pt;}
.ls10_c02187{letter-spacing:0.477312pt;}
.lsc_c02187{letter-spacing:0.515328pt;}
.ls12_c02187{letter-spacing:0.528000pt;}
.ls9_c02187{letter-spacing:0.532224pt;}
.ls4_c02187{letter-spacing:0.544896pt;}
.ls1_c02187{letter-spacing:0.637824pt;}
.ls0_c02187{letter-spacing:0.642048pt;}
.wsc_c02187{word-spacing:-13.896960pt;}
.wsd_c02187{word-spacing:-13.445376pt;}
.ws5_c02187{word-spacing:-11.202048pt;}
.wsb_c02187{word-spacing:-11.088000pt;}
.ws9_c02187{word-spacing:-11.075328pt;}
.wsa_c02187{word-spacing:-11.037312pt;}
.ws2_c02187{word-spacing:-10.015104pt;}
.ws15_c02187{word-spacing:-3.198720pt;}
.ws11_c02187{word-spacing:-0.958848pt;}
.wse_c02187{word-spacing:-0.865920pt;}
.ws10_c02187{word-spacing:-0.105600pt;}
.ws13_c02187{word-spacing:-0.088704pt;}
.ws14_c02187{word-spacing:-0.076032pt;}
.wsf_c02187{word-spacing:0.000000pt;}
.ws12_c02187{word-spacing:0.059136pt;}
.ws4_c02187{word-spacing:4.426752pt;}
.ws7_c02187{word-spacing:32.659968pt;}
.ws1_c02187{word-spacing:33.563904pt;}
.ws0_c02187{word-spacing:33.796224pt;}
.ws3_c02187{word-spacing:34.860672pt;}
.ws6_c02187{word-spacing:35.468928pt;}
.ws8_c02187{word-spacing:37.357056pt;}
._0_c02187{margin-left:-1.731840pt;}
._2_c02187{width:1.317888pt;}
._4_c02187{width:2.994816pt;}
._1_c02187{width:44.668800pt;}
._3_c02187{width:45.805056pt;}
.fs0_c02187{font-size:42.240000pt;}
.fs1_c02187{font-size:53.760000pt;}
.y0_c02187{bottom:0.000000pt;}
.y10_c02187{bottom:18.560400pt;}
.y1c_c02187{bottom:130.665211pt;}
.y1e_c02187{bottom:165.866875pt;}
.y1d_c02187{bottom:174.507067pt;}
.y1b_c02187{bottom:245.225371pt;}
.y1a_c02187{bottom:317.225563pt;}
.y18_c02187{bottom:361.386427pt;}
.y14_c02187{bottom:377.386939pt;}
.y19_c02187{bottom:407.786011pt;}
.y17_c02187{bottom:437.226235pt;}
.y16_c02187{bottom:453.226747pt;}
.y13_c02187{bottom:482.666971pt;}
.y15_c02187{bottom:497.386555pt;}
.y12_c02187{bottom:513.387067pt;}
.y20_c02187{bottom:527.786667pt;}
.y21_c02187{bottom:530.347067pt;}
.y1f_c02187{bottom:546.027067pt;}
.yb_c02187{bottom:593.385179pt;}
.yd_c02187{bottom:628.586875pt;}
.yc_c02187{bottom:637.227067pt;}
.ya_c02187{bottom:707.945339pt;}
.y9_c02187{bottom:779.945531pt;}
.y7_c02187{bottom:823.786427pt;}
.y3_c02187{bottom:839.786939pt;}
.y8_c02187{bottom:870.505979pt;}
.y6_c02187{bottom:899.946203pt;}
.y5_c02187{bottom:915.946715pt;}
.y2_c02187{bottom:945.386939pt;}
.y4_c02187{bottom:959.786555pt;}
.y1_c02187{bottom:975.787067pt;}
.yf_c02187{bottom:990.506667pt;}
.y11_c02187{bottom:993.067067pt;}
.ye_c02187{bottom:1008.747067pt;}
.h3_c02187{height:28.916250pt;}
.h5_c02187{height:32.640000pt;}
.h4_c02187{height:36.802500pt;}
.h1_c02187{height:37.063125pt;}
.h2_c02187{height:37.166250pt;}
.h7_c02187{height:47.171250pt;}
.h6_c02187{height:47.302500pt;}
.h0_c02187{height:1122.666667pt;}
.w2_c02187{width:351.360000pt;}
.w1_c02187{width:793.333333pt;}
.w0_c02187{width:793.626667pt;}
.x0_c02187{left:0.000000pt;}
.xd_c02187{left:104.000000pt;}
.xe_c02187{left:143.360000pt;}
.x8_c02187{left:391.998816pt;}
.x4_c02187{left:396.160512pt;}
.xb_c02187{left:400.960000pt;}
.x7_c02187{left:404.798592pt;}
.x5_c02187{left:410.560128pt;}
.x1_c02187{left:411.840000pt;}
.xa_c02187{left:429.759264pt;}
.x9_c02187{left:437.438496pt;}
.x6_c02187{left:438.399456pt;}
.xc_c02187{left:450.560320pt;}
.x3_c02187{left:455.039904pt;}
.x2_c02187{left:468.159648pt;}
}





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

.ir_c02188:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02188{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02188;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02188{font-family:ff1_c02188;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02188;src:url('chunks/assets/font_daed4555fc34f97c33db0943.woff2')format("woff");}.ff2_c02188{font-family:ff2_c02188;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02188;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02188{font-family:ff3_c02188;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02188{vertical-align:0.000000px;}
.lsa_c02188{letter-spacing:-0.755568px;}
.ls8_c02188{letter-spacing:-0.613008px;}
.lsb_c02188{letter-spacing:-0.574992px;}
.lse_c02188{letter-spacing:-0.427680px;}
.ls11_c02188{letter-spacing:-0.275616px;}
.lsf_c02188{letter-spacing:-0.261360px;}
.ls7_c02188{letter-spacing:-0.242352px;}
.ls5_c02188{letter-spacing:-0.118800px;}
.ls13_c02188{letter-spacing:0.000000px;}
.ls3_c02188{letter-spacing:0.006048px;}
.ls6_c02188{letter-spacing:0.128304px;}
.lsd_c02188{letter-spacing:0.508464px;}
.ls2_c02188{letter-spacing:0.514080px;}
.ls10_c02188{letter-spacing:0.536976px;}
.lsc_c02188{letter-spacing:0.579744px;}
.ls12_c02188{letter-spacing:0.594000px;}
.ls9_c02188{letter-spacing:0.598752px;}
.ls4_c02188{letter-spacing:0.613008px;}
.ls1_c02188{letter-spacing:0.717552px;}
.ls0_c02188{letter-spacing:0.722304px;}
.sc__c02188{text-shadow:none;}
.sc0_c02188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02188{-webkit-text-stroke:0px transparent;}
.sc0_c02188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02188{word-spacing:-15.634080px;}
.wsd_c02188{word-spacing:-15.126048px;}
.ws5_c02188{word-spacing:-12.602304px;}
.wsb_c02188{word-spacing:-12.474000px;}
.ws9_c02188{word-spacing:-12.459744px;}
.wsa_c02188{word-spacing:-12.416976px;}
.ws2_c02188{word-spacing:-11.266992px;}
.wse_c02188{word-spacing:-11.124432px;}
.ws16_c02188{word-spacing:-3.598560px;}
.ws12_c02188{word-spacing:-1.078704px;}
.wsf_c02188{word-spacing:-0.974160px;}
.ws11_c02188{word-spacing:-0.118800px;}
.ws14_c02188{word-spacing:-0.099792px;}
.ws15_c02188{word-spacing:-0.085536px;}
.ws10_c02188{word-spacing:0.000000px;}
.ws13_c02188{word-spacing:0.066528px;}
.ws4_c02188{word-spacing:4.980096px;}
.ws7_c02188{word-spacing:36.742464px;}
.ws1_c02188{word-spacing:37.759392px;}
.ws0_c02188{word-spacing:38.020752px;}
.ws3_c02188{word-spacing:39.218256px;}
.ws6_c02188{word-spacing:39.902544px;}
.ws8_c02188{word-spacing:42.026688px;}
._0_c02188{margin-left:-1.948320px;}
._2_c02188{width:1.482624px;}
._4_c02188{width:3.369168px;}
._1_c02188{width:50.252400px;}
._3_c02188{width:51.530688px;}
.fc0_c02188{color:rgb(0,0,0);}
.fs0_c02188{font-size:47.520000px;}
.fs1_c02188{font-size:60.480000px;}
.y0_c02188{bottom:0.000000px;}
.y10_c02188{bottom:20.880450px;}
.y1c_c02188{bottom:146.998362px;}
.y1e_c02188{bottom:186.600234px;}
.y1d_c02188{bottom:196.320450px;}
.y1b_c02188{bottom:275.878542px;}
.y1a_c02188{bottom:356.878758px;}
.y18_c02188{bottom:406.559730px;}
.y14_c02188{bottom:424.560306px;}
.y19_c02188{bottom:458.759262px;}
.y17_c02188{bottom:491.879514px;}
.y16_c02188{bottom:509.880090px;}
.y13_c02188{bottom:543.000342px;}
.y15_c02188{bottom:559.559874px;}
.y12_c02188{bottom:577.560450px;}
.y20_c02188{bottom:593.760000px;}
.y21_c02188{bottom:596.640450px;}
.y1f_c02188{bottom:614.280450px;}
.yb_c02188{bottom:667.558326px;}
.yd_c02188{bottom:707.160234px;}
.yc_c02188{bottom:716.880450px;}
.ya_c02188{bottom:796.438506px;}
.y9_c02188{bottom:877.438722px;}
.y7_c02188{bottom:926.759730px;}
.y3_c02188{bottom:944.760306px;}
.y8_c02188{bottom:979.319226px;}
.y6_c02188{bottom:1012.439478px;}
.y5_c02188{bottom:1030.440054px;}
.y2_c02188{bottom:1063.560306px;}
.y4_c02188{bottom:1079.759874px;}
.y1_c02188{bottom:1097.760450px;}
.yf_c02188{bottom:1114.320000px;}
.y11_c02188{bottom:1117.200450px;}
.ye_c02188{bottom:1134.840450px;}
.h3_c02188{height:32.530781px;}
.h5_c02188{height:36.720000px;}
.h4_c02188{height:41.402813px;}
.h1_c02188{height:41.696016px;}
.h2_c02188{height:41.812031px;}
.h7_c02188{height:53.067656px;}
.h6_c02188{height:53.215313px;}
.h0_c02188{height:1263.000000px;}
.w2_c02188{width:395.280000px;}
.w1_c02188{width:892.500000px;}
.w0_c02188{width:892.830000px;}
.x0_c02188{left:0.000000px;}
.xd_c02188{left:117.000000px;}
.xe_c02188{left:161.280000px;}
.x8_c02188{left:440.998668px;}
.x4_c02188{left:445.680576px;}
.xb_c02188{left:451.080000px;}
.x7_c02188{left:455.398416px;}
.x5_c02188{left:461.880144px;}
.x1_c02188{left:463.320000px;}
.xa_c02188{left:483.479172px;}
.x9_c02188{left:492.118308px;}
.x6_c02188{left:493.199388px;}
.xc_c02188{left:506.880360px;}
.x3_c02188{left:511.919892px;}
.x2_c02188{left:526.679604px;}
@media print{
.v0_c02188{vertical-align:0.000000pt;}
.lsa_c02188{letter-spacing:-0.671616pt;}
.ls8_c02188{letter-spacing:-0.544896pt;}
.lsb_c02188{letter-spacing:-0.511104pt;}
.lse_c02188{letter-spacing:-0.380160pt;}
.ls11_c02188{letter-spacing:-0.244992pt;}
.lsf_c02188{letter-spacing:-0.232320pt;}
.ls7_c02188{letter-spacing:-0.215424pt;}
.ls5_c02188{letter-spacing:-0.105600pt;}
.ls13_c02188{letter-spacing:0.000000pt;}
.ls3_c02188{letter-spacing:0.005376pt;}
.ls6_c02188{letter-spacing:0.114048pt;}
.lsd_c02188{letter-spacing:0.451968pt;}
.ls2_c02188{letter-spacing:0.456960pt;}
.ls10_c02188{letter-spacing:0.477312pt;}
.lsc_c02188{letter-spacing:0.515328pt;}
.ls12_c02188{letter-spacing:0.528000pt;}
.ls9_c02188{letter-spacing:0.532224pt;}
.ls4_c02188{letter-spacing:0.544896pt;}
.ls1_c02188{letter-spacing:0.637824pt;}
.ls0_c02188{letter-spacing:0.642048pt;}
.wsc_c02188{word-spacing:-13.896960pt;}
.wsd_c02188{word-spacing:-13.445376pt;}
.ws5_c02188{word-spacing:-11.202048pt;}
.wsb_c02188{word-spacing:-11.088000pt;}
.ws9_c02188{word-spacing:-11.075328pt;}
.wsa_c02188{word-spacing:-11.037312pt;}
.ws2_c02188{word-spacing:-10.015104pt;}
.wse_c02188{word-spacing:-9.888384pt;}
.ws16_c02188{word-spacing:-3.198720pt;}
.ws12_c02188{word-spacing:-0.958848pt;}
.wsf_c02188{word-spacing:-0.865920pt;}
.ws11_c02188{word-spacing:-0.105600pt;}
.ws14_c02188{word-spacing:-0.088704pt;}
.ws15_c02188{word-spacing:-0.076032pt;}
.ws10_c02188{word-spacing:0.000000pt;}
.ws13_c02188{word-spacing:0.059136pt;}
.ws4_c02188{word-spacing:4.426752pt;}
.ws7_c02188{word-spacing:32.659968pt;}
.ws1_c02188{word-spacing:33.563904pt;}
.ws0_c02188{word-spacing:33.796224pt;}
.ws3_c02188{word-spacing:34.860672pt;}
.ws6_c02188{word-spacing:35.468928pt;}
.ws8_c02188{word-spacing:37.357056pt;}
._0_c02188{margin-left:-1.731840pt;}
._2_c02188{width:1.317888pt;}
._4_c02188{width:2.994816pt;}
._1_c02188{width:44.668800pt;}
._3_c02188{width:45.805056pt;}
.fs0_c02188{font-size:42.240000pt;}
.fs1_c02188{font-size:53.760000pt;}
.y0_c02188{bottom:0.000000pt;}
.y10_c02188{bottom:18.560400pt;}
.y1c_c02188{bottom:130.665211pt;}
.y1e_c02188{bottom:165.866875pt;}
.y1d_c02188{bottom:174.507067pt;}
.y1b_c02188{bottom:245.225371pt;}
.y1a_c02188{bottom:317.225563pt;}
.y18_c02188{bottom:361.386427pt;}
.y14_c02188{bottom:377.386939pt;}
.y19_c02188{bottom:407.786011pt;}
.y17_c02188{bottom:437.226235pt;}
.y16_c02188{bottom:453.226747pt;}
.y13_c02188{bottom:482.666971pt;}
.y15_c02188{bottom:497.386555pt;}
.y12_c02188{bottom:513.387067pt;}
.y20_c02188{bottom:527.786667pt;}
.y21_c02188{bottom:530.347067pt;}
.y1f_c02188{bottom:546.027067pt;}
.yb_c02188{bottom:593.385179pt;}
.yd_c02188{bottom:628.586875pt;}
.yc_c02188{bottom:637.227067pt;}
.ya_c02188{bottom:707.945339pt;}
.y9_c02188{bottom:779.945531pt;}
.y7_c02188{bottom:823.786427pt;}
.y3_c02188{bottom:839.786939pt;}
.y8_c02188{bottom:870.505979pt;}
.y6_c02188{bottom:899.946203pt;}
.y5_c02188{bottom:915.946715pt;}
.y2_c02188{bottom:945.386939pt;}
.y4_c02188{bottom:959.786555pt;}
.y1_c02188{bottom:975.787067pt;}
.yf_c02188{bottom:990.506667pt;}
.y11_c02188{bottom:993.067067pt;}
.ye_c02188{bottom:1008.747067pt;}
.h3_c02188{height:28.916250pt;}
.h5_c02188{height:32.640000pt;}
.h4_c02188{height:36.802500pt;}
.h1_c02188{height:37.063125pt;}
.h2_c02188{height:37.166250pt;}
.h7_c02188{height:47.171250pt;}
.h6_c02188{height:47.302500pt;}
.h0_c02188{height:1122.666667pt;}
.w2_c02188{width:351.360000pt;}
.w1_c02188{width:793.333333pt;}
.w0_c02188{width:793.626667pt;}
.x0_c02188{left:0.000000pt;}
.xd_c02188{left:104.000000pt;}
.xe_c02188{left:143.360000pt;}
.x8_c02188{left:391.998816pt;}
.x4_c02188{left:396.160512pt;}
.xb_c02188{left:400.960000pt;}
.x7_c02188{left:404.798592pt;}
.x5_c02188{left:410.560128pt;}
.x1_c02188{left:411.840000pt;}
.xa_c02188{left:429.759264pt;}
.x9_c02188{left:437.438496pt;}
.x6_c02188{left:438.399456pt;}
.xc_c02188{left:450.560320pt;}
.x3_c02188{left:455.039904pt;}
.x2_c02188{left:468.159648pt;}
}





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

.ir_c02189:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02189{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02189;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02189{font-family:ff1_c02189;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02189;src:url('chunks/assets/font_71085c480a435f74312d3052.woff2')format("woff");}.ff2_c02189{font-family:ff2_c02189;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02189;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02189{font-family:ff3_c02189;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02189{vertical-align:0.000000px;}
.lsa_c02189{letter-spacing:-0.755568px;}
.ls8_c02189{letter-spacing:-0.613008px;}
.lsb_c02189{letter-spacing:-0.574992px;}
.lse_c02189{letter-spacing:-0.427680px;}
.ls11_c02189{letter-spacing:-0.275616px;}
.lsf_c02189{letter-spacing:-0.261360px;}
.ls7_c02189{letter-spacing:-0.242352px;}
.ls5_c02189{letter-spacing:-0.118800px;}
.ls13_c02189{letter-spacing:0.000000px;}
.ls2_c02189{letter-spacing:0.006048px;}
.ls6_c02189{letter-spacing:0.128304px;}
.lsd_c02189{letter-spacing:0.508464px;}
.ls1_c02189{letter-spacing:0.514080px;}
.ls10_c02189{letter-spacing:0.536976px;}
.lsc_c02189{letter-spacing:0.579744px;}
.ls12_c02189{letter-spacing:0.594000px;}
.ls9_c02189{letter-spacing:0.598752px;}
.ls3_c02189{letter-spacing:0.613008px;}
.ls0_c02189{letter-spacing:0.717552px;}
.ls4_c02189{letter-spacing:0.722304px;}
.sc__c02189{text-shadow:none;}
.sc0_c02189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02189{-webkit-text-stroke:0px transparent;}
.sc0_c02189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02189{word-spacing:-15.634080px;}
.wsc_c02189{word-spacing:-15.126048px;}
.wsa_c02189{word-spacing:-12.474000px;}
.ws8_c02189{word-spacing:-12.459744px;}
.ws9_c02189{word-spacing:-12.416976px;}
.ws2_c02189{word-spacing:-11.266992px;}
.ws4_c02189{word-spacing:-11.124432px;}
.ws14_c02189{word-spacing:-3.598560px;}
.ws10_c02189{word-spacing:-1.078704px;}
.wsd_c02189{word-spacing:-0.974160px;}
.wsf_c02189{word-spacing:-0.118800px;}
.ws12_c02189{word-spacing:-0.099792px;}
.ws13_c02189{word-spacing:-0.085536px;}
.wse_c02189{word-spacing:0.000000px;}
.ws11_c02189{word-spacing:0.066528px;}
.ws6_c02189{word-spacing:36.742464px;}
.ws1_c02189{word-spacing:37.759392px;}
.ws0_c02189{word-spacing:38.020752px;}
.ws3_c02189{word-spacing:39.218256px;}
.ws5_c02189{word-spacing:39.902544px;}
.ws7_c02189{word-spacing:42.026688px;}
._0_c02189{margin-left:-1.948320px;}
._2_c02189{width:1.482624px;}
._4_c02189{width:3.369168px;}
._1_c02189{width:50.252400px;}
._3_c02189{width:51.530688px;}
.fc0_c02189{color:rgb(0,0,0);}
.fs0_c02189{font-size:47.520000px;}
.fs1_c02189{font-size:60.480000px;}
.y0_c02189{bottom:0.000000px;}
.y10_c02189{bottom:20.880450px;}
.y1c_c02189{bottom:146.998362px;}
.y1e_c02189{bottom:186.600234px;}
.y1d_c02189{bottom:196.320450px;}
.y1b_c02189{bottom:275.878542px;}
.y1a_c02189{bottom:356.878758px;}
.y18_c02189{bottom:406.559730px;}
.y14_c02189{bottom:424.560306px;}
.y19_c02189{bottom:458.759262px;}
.y17_c02189{bottom:491.879514px;}
.y16_c02189{bottom:509.880090px;}
.y13_c02189{bottom:543.000342px;}
.y15_c02189{bottom:559.559874px;}
.y12_c02189{bottom:577.560450px;}
.y20_c02189{bottom:593.760000px;}
.y21_c02189{bottom:596.640450px;}
.y1f_c02189{bottom:614.280450px;}
.yb_c02189{bottom:667.558326px;}
.yd_c02189{bottom:707.160234px;}
.yc_c02189{bottom:716.880450px;}
.ya_c02189{bottom:796.438506px;}
.y9_c02189{bottom:877.438722px;}
.y7_c02189{bottom:926.759730px;}
.y3_c02189{bottom:944.760306px;}
.y8_c02189{bottom:979.319226px;}
.y6_c02189{bottom:1012.439478px;}
.y5_c02189{bottom:1030.440054px;}
.y2_c02189{bottom:1063.560306px;}
.y4_c02189{bottom:1079.759874px;}
.y1_c02189{bottom:1097.760450px;}
.yf_c02189{bottom:1114.320000px;}
.y11_c02189{bottom:1117.200450px;}
.ye_c02189{bottom:1134.840450px;}
.h3_c02189{height:32.530781px;}
.h5_c02189{height:36.720000px;}
.h4_c02189{height:41.402813px;}
.h1_c02189{height:41.696016px;}
.h2_c02189{height:41.812031px;}
.h7_c02189{height:53.067656px;}
.h6_c02189{height:53.215313px;}
.h0_c02189{height:1263.000000px;}
.w2_c02189{width:395.280000px;}
.w1_c02189{width:892.500000px;}
.w0_c02189{width:892.830000px;}
.x0_c02189{left:0.000000px;}
.xd_c02189{left:117.000000px;}
.xe_c02189{left:161.280000px;}
.x8_c02189{left:440.999856px;}
.x4_c02189{left:445.680576px;}
.xb_c02189{left:451.080000px;}
.x7_c02189{left:455.399604px;}
.x5_c02189{left:461.880144px;}
.x1_c02189{left:463.320000px;}
.xa_c02189{left:483.480360px;}
.x9_c02189{left:492.119496px;}
.x6_c02189{left:493.200576px;}
.xc_c02189{left:506.880360px;}
.x3_c02189{left:511.919892px;}
.x2_c02189{left:526.679604px;}
@media print{
.v0_c02189{vertical-align:0.000000pt;}
.lsa_c02189{letter-spacing:-0.671616pt;}
.ls8_c02189{letter-spacing:-0.544896pt;}
.lsb_c02189{letter-spacing:-0.511104pt;}
.lse_c02189{letter-spacing:-0.380160pt;}
.ls11_c02189{letter-spacing:-0.244992pt;}
.lsf_c02189{letter-spacing:-0.232320pt;}
.ls7_c02189{letter-spacing:-0.215424pt;}
.ls5_c02189{letter-spacing:-0.105600pt;}
.ls13_c02189{letter-spacing:0.000000pt;}
.ls2_c02189{letter-spacing:0.005376pt;}
.ls6_c02189{letter-spacing:0.114048pt;}
.lsd_c02189{letter-spacing:0.451968pt;}
.ls1_c02189{letter-spacing:0.456960pt;}
.ls10_c02189{letter-spacing:0.477312pt;}
.lsc_c02189{letter-spacing:0.515328pt;}
.ls12_c02189{letter-spacing:0.528000pt;}
.ls9_c02189{letter-spacing:0.532224pt;}
.ls3_c02189{letter-spacing:0.544896pt;}
.ls0_c02189{letter-spacing:0.637824pt;}
.ls4_c02189{letter-spacing:0.642048pt;}
.wsb_c02189{word-spacing:-13.896960pt;}
.wsc_c02189{word-spacing:-13.445376pt;}
.wsa_c02189{word-spacing:-11.088000pt;}
.ws8_c02189{word-spacing:-11.075328pt;}
.ws9_c02189{word-spacing:-11.037312pt;}
.ws2_c02189{word-spacing:-10.015104pt;}
.ws4_c02189{word-spacing:-9.888384pt;}
.ws14_c02189{word-spacing:-3.198720pt;}
.ws10_c02189{word-spacing:-0.958848pt;}
.wsd_c02189{word-spacing:-0.865920pt;}
.wsf_c02189{word-spacing:-0.105600pt;}
.ws12_c02189{word-spacing:-0.088704pt;}
.ws13_c02189{word-spacing:-0.076032pt;}
.wse_c02189{word-spacing:0.000000pt;}
.ws11_c02189{word-spacing:0.059136pt;}
.ws6_c02189{word-spacing:32.659968pt;}
.ws1_c02189{word-spacing:33.563904pt;}
.ws0_c02189{word-spacing:33.796224pt;}
.ws3_c02189{word-spacing:34.860672pt;}
.ws5_c02189{word-spacing:35.468928pt;}
.ws7_c02189{word-spacing:37.357056pt;}
._0_c02189{margin-left:-1.731840pt;}
._2_c02189{width:1.317888pt;}
._4_c02189{width:2.994816pt;}
._1_c02189{width:44.668800pt;}
._3_c02189{width:45.805056pt;}
.fs0_c02189{font-size:42.240000pt;}
.fs1_c02189{font-size:53.760000pt;}
.y0_c02189{bottom:0.000000pt;}
.y10_c02189{bottom:18.560400pt;}
.y1c_c02189{bottom:130.665211pt;}
.y1e_c02189{bottom:165.866875pt;}
.y1d_c02189{bottom:174.507067pt;}
.y1b_c02189{bottom:245.225371pt;}
.y1a_c02189{bottom:317.225563pt;}
.y18_c02189{bottom:361.386427pt;}
.y14_c02189{bottom:377.386939pt;}
.y19_c02189{bottom:407.786011pt;}
.y17_c02189{bottom:437.226235pt;}
.y16_c02189{bottom:453.226747pt;}
.y13_c02189{bottom:482.666971pt;}
.y15_c02189{bottom:497.386555pt;}
.y12_c02189{bottom:513.387067pt;}
.y20_c02189{bottom:527.786667pt;}
.y21_c02189{bottom:530.347067pt;}
.y1f_c02189{bottom:546.027067pt;}
.yb_c02189{bottom:593.385179pt;}
.yd_c02189{bottom:628.586875pt;}
.yc_c02189{bottom:637.227067pt;}
.ya_c02189{bottom:707.945339pt;}
.y9_c02189{bottom:779.945531pt;}
.y7_c02189{bottom:823.786427pt;}
.y3_c02189{bottom:839.786939pt;}
.y8_c02189{bottom:870.505979pt;}
.y6_c02189{bottom:899.946203pt;}
.y5_c02189{bottom:915.946715pt;}
.y2_c02189{bottom:945.386939pt;}
.y4_c02189{bottom:959.786555pt;}
.y1_c02189{bottom:975.787067pt;}
.yf_c02189{bottom:990.506667pt;}
.y11_c02189{bottom:993.067067pt;}
.ye_c02189{bottom:1008.747067pt;}
.h3_c02189{height:28.916250pt;}
.h5_c02189{height:32.640000pt;}
.h4_c02189{height:36.802500pt;}
.h1_c02189{height:37.063125pt;}
.h2_c02189{height:37.166250pt;}
.h7_c02189{height:47.171250pt;}
.h6_c02189{height:47.302500pt;}
.h0_c02189{height:1122.666667pt;}
.w2_c02189{width:351.360000pt;}
.w1_c02189{width:793.333333pt;}
.w0_c02189{width:793.626667pt;}
.x0_c02189{left:0.000000pt;}
.xd_c02189{left:104.000000pt;}
.xe_c02189{left:143.360000pt;}
.x8_c02189{left:391.999872pt;}
.x4_c02189{left:396.160512pt;}
.xb_c02189{left:400.960000pt;}
.x7_c02189{left:404.799648pt;}
.x5_c02189{left:410.560128pt;}
.x1_c02189{left:411.840000pt;}
.xa_c02189{left:429.760320pt;}
.x9_c02189{left:437.439552pt;}
.x6_c02189{left:438.400512pt;}
.xc_c02189{left:450.560320pt;}
.x3_c02189{left:455.039904pt;}
.x2_c02189{left:468.159648pt;}
}





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

.ir_c02190:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02190{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02190;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02190{font-family:ff1_c02190;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02190;src:url('chunks/assets/font_71085c480a435f74312d3052.woff2')format("woff");}.ff2_c02190{font-family:ff2_c02190;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02190;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02190{font-family:ff3_c02190;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02190{vertical-align:0.000000px;}
.lsa_c02190{letter-spacing:-0.755568px;}
.ls8_c02190{letter-spacing:-0.613008px;}
.lsb_c02190{letter-spacing:-0.574992px;}
.lse_c02190{letter-spacing:-0.427680px;}
.ls11_c02190{letter-spacing:-0.275616px;}
.lsf_c02190{letter-spacing:-0.261360px;}
.ls7_c02190{letter-spacing:-0.242352px;}
.ls5_c02190{letter-spacing:-0.118800px;}
.ls13_c02190{letter-spacing:0.000000px;}
.ls2_c02190{letter-spacing:0.006048px;}
.ls6_c02190{letter-spacing:0.128304px;}
.lsd_c02190{letter-spacing:0.508464px;}
.ls1_c02190{letter-spacing:0.514080px;}
.ls10_c02190{letter-spacing:0.536976px;}
.lsc_c02190{letter-spacing:0.579744px;}
.ls12_c02190{letter-spacing:0.594000px;}
.ls9_c02190{letter-spacing:0.598752px;}
.ls3_c02190{letter-spacing:0.613008px;}
.ls0_c02190{letter-spacing:0.717552px;}
.ls4_c02190{letter-spacing:0.722304px;}
.sc__c02190{text-shadow:none;}
.sc0_c02190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02190{-webkit-text-stroke:0px transparent;}
.sc0_c02190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02190{word-spacing:-15.634080px;}
.wsc_c02190{word-spacing:-15.126048px;}
.wsa_c02190{word-spacing:-12.474000px;}
.ws8_c02190{word-spacing:-12.459744px;}
.ws9_c02190{word-spacing:-12.416976px;}
.ws2_c02190{word-spacing:-11.266992px;}
.ws4_c02190{word-spacing:-11.124432px;}
.ws14_c02190{word-spacing:-3.598560px;}
.ws10_c02190{word-spacing:-1.078704px;}
.wsd_c02190{word-spacing:-0.974160px;}
.wsf_c02190{word-spacing:-0.118800px;}
.ws12_c02190{word-spacing:-0.099792px;}
.ws13_c02190{word-spacing:-0.085536px;}
.wse_c02190{word-spacing:0.000000px;}
.ws11_c02190{word-spacing:0.066528px;}
.ws6_c02190{word-spacing:36.742464px;}
.ws1_c02190{word-spacing:37.759392px;}
.ws0_c02190{word-spacing:38.020752px;}
.ws3_c02190{word-spacing:39.218256px;}
.ws5_c02190{word-spacing:39.902544px;}
.ws7_c02190{word-spacing:42.026688px;}
._0_c02190{margin-left:-1.948320px;}
._2_c02190{width:1.482624px;}
._4_c02190{width:3.369168px;}
._1_c02190{width:50.252400px;}
._3_c02190{width:51.530688px;}
.fc0_c02190{color:rgb(0,0,0);}
.fs0_c02190{font-size:47.520000px;}
.fs1_c02190{font-size:60.480000px;}
.y0_c02190{bottom:0.000000px;}
.y10_c02190{bottom:20.880450px;}
.y1c_c02190{bottom:146.998362px;}
.y1e_c02190{bottom:186.600234px;}
.y1d_c02190{bottom:196.320450px;}
.y1b_c02190{bottom:275.878542px;}
.y1a_c02190{bottom:356.878758px;}
.y18_c02190{bottom:406.559730px;}
.y14_c02190{bottom:424.560306px;}
.y19_c02190{bottom:458.759262px;}
.y17_c02190{bottom:491.879514px;}
.y16_c02190{bottom:509.880090px;}
.y13_c02190{bottom:543.000342px;}
.y15_c02190{bottom:559.559874px;}
.y12_c02190{bottom:577.560450px;}
.y20_c02190{bottom:593.760000px;}
.y21_c02190{bottom:596.640450px;}
.y1f_c02190{bottom:614.280450px;}
.yb_c02190{bottom:667.558326px;}
.yd_c02190{bottom:707.160234px;}
.yc_c02190{bottom:716.880450px;}
.ya_c02190{bottom:796.438506px;}
.y9_c02190{bottom:877.438722px;}
.y7_c02190{bottom:926.759730px;}
.y3_c02190{bottom:944.760306px;}
.y8_c02190{bottom:979.319226px;}
.y6_c02190{bottom:1012.439478px;}
.y5_c02190{bottom:1030.440054px;}
.y2_c02190{bottom:1063.560306px;}
.y4_c02190{bottom:1079.759874px;}
.y1_c02190{bottom:1097.760450px;}
.yf_c02190{bottom:1114.320000px;}
.y11_c02190{bottom:1117.200450px;}
.ye_c02190{bottom:1134.840450px;}
.h3_c02190{height:32.530781px;}
.h5_c02190{height:36.720000px;}
.h4_c02190{height:41.402813px;}
.h1_c02190{height:41.696016px;}
.h2_c02190{height:41.812031px;}
.h7_c02190{height:53.067656px;}
.h6_c02190{height:53.215313px;}
.h0_c02190{height:1263.000000px;}
.w2_c02190{width:395.280000px;}
.w1_c02190{width:892.500000px;}
.w0_c02190{width:892.830000px;}
.x0_c02190{left:0.000000px;}
.xd_c02190{left:117.000000px;}
.xe_c02190{left:161.280000px;}
.x8_c02190{left:440.999856px;}
.x4_c02190{left:445.680576px;}
.xb_c02190{left:451.080000px;}
.x7_c02190{left:455.399604px;}
.x5_c02190{left:461.880144px;}
.x1_c02190{left:463.320000px;}
.xa_c02190{left:483.480360px;}
.x9_c02190{left:492.119496px;}
.x6_c02190{left:493.200576px;}
.xc_c02190{left:506.880360px;}
.x3_c02190{left:511.919892px;}
.x2_c02190{left:526.679604px;}
@media print{
.v0_c02190{vertical-align:0.000000pt;}
.lsa_c02190{letter-spacing:-0.671616pt;}
.ls8_c02190{letter-spacing:-0.544896pt;}
.lsb_c02190{letter-spacing:-0.511104pt;}
.lse_c02190{letter-spacing:-0.380160pt;}
.ls11_c02190{letter-spacing:-0.244992pt;}
.lsf_c02190{letter-spacing:-0.232320pt;}
.ls7_c02190{letter-spacing:-0.215424pt;}
.ls5_c02190{letter-spacing:-0.105600pt;}
.ls13_c02190{letter-spacing:0.000000pt;}
.ls2_c02190{letter-spacing:0.005376pt;}
.ls6_c02190{letter-spacing:0.114048pt;}
.lsd_c02190{letter-spacing:0.451968pt;}
.ls1_c02190{letter-spacing:0.456960pt;}
.ls10_c02190{letter-spacing:0.477312pt;}
.lsc_c02190{letter-spacing:0.515328pt;}
.ls12_c02190{letter-spacing:0.528000pt;}
.ls9_c02190{letter-spacing:0.532224pt;}
.ls3_c02190{letter-spacing:0.544896pt;}
.ls0_c02190{letter-spacing:0.637824pt;}
.ls4_c02190{letter-spacing:0.642048pt;}
.wsb_c02190{word-spacing:-13.896960pt;}
.wsc_c02190{word-spacing:-13.445376pt;}
.wsa_c02190{word-spacing:-11.088000pt;}
.ws8_c02190{word-spacing:-11.075328pt;}
.ws9_c02190{word-spacing:-11.037312pt;}
.ws2_c02190{word-spacing:-10.015104pt;}
.ws4_c02190{word-spacing:-9.888384pt;}
.ws14_c02190{word-spacing:-3.198720pt;}
.ws10_c02190{word-spacing:-0.958848pt;}
.wsd_c02190{word-spacing:-0.865920pt;}
.wsf_c02190{word-spacing:-0.105600pt;}
.ws12_c02190{word-spacing:-0.088704pt;}
.ws13_c02190{word-spacing:-0.076032pt;}
.wse_c02190{word-spacing:0.000000pt;}
.ws11_c02190{word-spacing:0.059136pt;}
.ws6_c02190{word-spacing:32.659968pt;}
.ws1_c02190{word-spacing:33.563904pt;}
.ws0_c02190{word-spacing:33.796224pt;}
.ws3_c02190{word-spacing:34.860672pt;}
.ws5_c02190{word-spacing:35.468928pt;}
.ws7_c02190{word-spacing:37.357056pt;}
._0_c02190{margin-left:-1.731840pt;}
._2_c02190{width:1.317888pt;}
._4_c02190{width:2.994816pt;}
._1_c02190{width:44.668800pt;}
._3_c02190{width:45.805056pt;}
.fs0_c02190{font-size:42.240000pt;}
.fs1_c02190{font-size:53.760000pt;}
.y0_c02190{bottom:0.000000pt;}
.y10_c02190{bottom:18.560400pt;}
.y1c_c02190{bottom:130.665211pt;}
.y1e_c02190{bottom:165.866875pt;}
.y1d_c02190{bottom:174.507067pt;}
.y1b_c02190{bottom:245.225371pt;}
.y1a_c02190{bottom:317.225563pt;}
.y18_c02190{bottom:361.386427pt;}
.y14_c02190{bottom:377.386939pt;}
.y19_c02190{bottom:407.786011pt;}
.y17_c02190{bottom:437.226235pt;}
.y16_c02190{bottom:453.226747pt;}
.y13_c02190{bottom:482.666971pt;}
.y15_c02190{bottom:497.386555pt;}
.y12_c02190{bottom:513.387067pt;}
.y20_c02190{bottom:527.786667pt;}
.y21_c02190{bottom:530.347067pt;}
.y1f_c02190{bottom:546.027067pt;}
.yb_c02190{bottom:593.385179pt;}
.yd_c02190{bottom:628.586875pt;}
.yc_c02190{bottom:637.227067pt;}
.ya_c02190{bottom:707.945339pt;}
.y9_c02190{bottom:779.945531pt;}
.y7_c02190{bottom:823.786427pt;}
.y3_c02190{bottom:839.786939pt;}
.y8_c02190{bottom:870.505979pt;}
.y6_c02190{bottom:899.946203pt;}
.y5_c02190{bottom:915.946715pt;}
.y2_c02190{bottom:945.386939pt;}
.y4_c02190{bottom:959.786555pt;}
.y1_c02190{bottom:975.787067pt;}
.yf_c02190{bottom:990.506667pt;}
.y11_c02190{bottom:993.067067pt;}
.ye_c02190{bottom:1008.747067pt;}
.h3_c02190{height:28.916250pt;}
.h5_c02190{height:32.640000pt;}
.h4_c02190{height:36.802500pt;}
.h1_c02190{height:37.063125pt;}
.h2_c02190{height:37.166250pt;}
.h7_c02190{height:47.171250pt;}
.h6_c02190{height:47.302500pt;}
.h0_c02190{height:1122.666667pt;}
.w2_c02190{width:351.360000pt;}
.w1_c02190{width:793.333333pt;}
.w0_c02190{width:793.626667pt;}
.x0_c02190{left:0.000000pt;}
.xd_c02190{left:104.000000pt;}
.xe_c02190{left:143.360000pt;}
.x8_c02190{left:391.999872pt;}
.x4_c02190{left:396.160512pt;}
.xb_c02190{left:400.960000pt;}
.x7_c02190{left:404.799648pt;}
.x5_c02190{left:410.560128pt;}
.x1_c02190{left:411.840000pt;}
.xa_c02190{left:429.760320pt;}
.x9_c02190{left:437.439552pt;}
.x6_c02190{left:438.400512pt;}
.xc_c02190{left:450.560320pt;}
.x3_c02190{left:455.039904pt;}
.x2_c02190{left:468.159648pt;}
}





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

.ir_c02191:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02191;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02191{font-family:ff1_c02191;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02191;src:url('chunks/assets/font_b65b3a9d7623bd280b28ab6a.woff2')format("woff");}.ff2_c02191{font-family:ff2_c02191;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02191;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02191{font-family:ff3_c02191;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02191{vertical-align:0.000000px;}
.lsa_c02191{letter-spacing:-0.755568px;}
.ls8_c02191{letter-spacing:-0.613008px;}
.lsb_c02191{letter-spacing:-0.574992px;}
.lse_c02191{letter-spacing:-0.427680px;}
.ls11_c02191{letter-spacing:-0.275616px;}
.lsf_c02191{letter-spacing:-0.261360px;}
.ls7_c02191{letter-spacing:-0.242352px;}
.ls5_c02191{letter-spacing:-0.118800px;}
.ls13_c02191{letter-spacing:0.000000px;}
.ls2_c02191{letter-spacing:0.006048px;}
.ls6_c02191{letter-spacing:0.128304px;}
.lsd_c02191{letter-spacing:0.508464px;}
.ls1_c02191{letter-spacing:0.514080px;}
.ls10_c02191{letter-spacing:0.536976px;}
.lsc_c02191{letter-spacing:0.579744px;}
.ls12_c02191{letter-spacing:0.594000px;}
.ls9_c02191{letter-spacing:0.598752px;}
.ls3_c02191{letter-spacing:0.613008px;}
.ls0_c02191{letter-spacing:0.717552px;}
.ls4_c02191{letter-spacing:0.722304px;}
.sc__c02191{text-shadow:none;}
.sc0_c02191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02191{-webkit-text-stroke:0px transparent;}
.sc0_c02191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02191{word-spacing:-15.634080px;}
.wsc_c02191{word-spacing:-15.126048px;}
.wsa_c02191{word-spacing:-12.474000px;}
.ws8_c02191{word-spacing:-12.459744px;}
.ws9_c02191{word-spacing:-12.416976px;}
.ws2_c02191{word-spacing:-11.266992px;}
.ws4_c02191{word-spacing:-11.124432px;}
.ws14_c02191{word-spacing:-3.598560px;}
.ws10_c02191{word-spacing:-1.078704px;}
.wsd_c02191{word-spacing:-0.974160px;}
.wsf_c02191{word-spacing:-0.118800px;}
.ws12_c02191{word-spacing:-0.099792px;}
.ws13_c02191{word-spacing:-0.085536px;}
.wse_c02191{word-spacing:0.000000px;}
.ws11_c02191{word-spacing:0.066528px;}
.ws6_c02191{word-spacing:36.742464px;}
.ws1_c02191{word-spacing:37.759392px;}
.ws0_c02191{word-spacing:38.020752px;}
.ws3_c02191{word-spacing:39.218256px;}
.ws5_c02191{word-spacing:39.902544px;}
.ws7_c02191{word-spacing:42.026688px;}
._0_c02191{margin-left:-1.948320px;}
._2_c02191{width:1.482624px;}
._4_c02191{width:3.369168px;}
._1_c02191{width:50.252400px;}
._3_c02191{width:51.530688px;}
.fc0_c02191{color:rgb(0,0,0);}
.fs0_c02191{font-size:47.520000px;}
.fs1_c02191{font-size:60.480000px;}
.y0_c02191{bottom:0.000000px;}
.y10_c02191{bottom:20.880450px;}
.y1c_c02191{bottom:146.998362px;}
.y1e_c02191{bottom:186.600234px;}
.y1d_c02191{bottom:196.320450px;}
.y1b_c02191{bottom:275.878542px;}
.y1a_c02191{bottom:356.878758px;}
.y18_c02191{bottom:406.559730px;}
.y14_c02191{bottom:424.560306px;}
.y19_c02191{bottom:458.759262px;}
.y17_c02191{bottom:491.879514px;}
.y16_c02191{bottom:509.880090px;}
.y13_c02191{bottom:543.000342px;}
.y15_c02191{bottom:559.559874px;}
.y12_c02191{bottom:577.560450px;}
.y20_c02191{bottom:593.760000px;}
.y21_c02191{bottom:596.640450px;}
.y1f_c02191{bottom:614.280450px;}
.yb_c02191{bottom:667.558326px;}
.yd_c02191{bottom:707.160234px;}
.yc_c02191{bottom:716.880450px;}
.ya_c02191{bottom:796.438506px;}
.y9_c02191{bottom:877.438722px;}
.y7_c02191{bottom:926.759730px;}
.y3_c02191{bottom:944.760306px;}
.y8_c02191{bottom:979.319226px;}
.y6_c02191{bottom:1012.439478px;}
.y5_c02191{bottom:1030.440054px;}
.y2_c02191{bottom:1063.560306px;}
.y4_c02191{bottom:1079.759874px;}
.y1_c02191{bottom:1097.760450px;}
.yf_c02191{bottom:1114.320000px;}
.y11_c02191{bottom:1117.200450px;}
.ye_c02191{bottom:1134.840450px;}
.h3_c02191{height:32.530781px;}
.h5_c02191{height:36.720000px;}
.h4_c02191{height:41.402813px;}
.h1_c02191{height:41.696016px;}
.h2_c02191{height:41.812031px;}
.h7_c02191{height:53.067656px;}
.h6_c02191{height:53.215313px;}
.h0_c02191{height:1263.000000px;}
.w2_c02191{width:395.280000px;}
.w1_c02191{width:892.500000px;}
.w0_c02191{width:892.830000px;}
.x0_c02191{left:0.000000px;}
.xd_c02191{left:117.000000px;}
.xe_c02191{left:161.280000px;}
.x8_c02191{left:440.999856px;}
.x4_c02191{left:445.680576px;}
.xb_c02191{left:451.080000px;}
.x7_c02191{left:455.399604px;}
.x5_c02191{left:461.880144px;}
.x1_c02191{left:463.320000px;}
.xa_c02191{left:483.480360px;}
.x9_c02191{left:492.119496px;}
.x6_c02191{left:493.200576px;}
.xc_c02191{left:506.880360px;}
.x3_c02191{left:511.919892px;}
.x2_c02191{left:526.679604px;}
@media print{
.v0_c02191{vertical-align:0.000000pt;}
.lsa_c02191{letter-spacing:-0.671616pt;}
.ls8_c02191{letter-spacing:-0.544896pt;}
.lsb_c02191{letter-spacing:-0.511104pt;}
.lse_c02191{letter-spacing:-0.380160pt;}
.ls11_c02191{letter-spacing:-0.244992pt;}
.lsf_c02191{letter-spacing:-0.232320pt;}
.ls7_c02191{letter-spacing:-0.215424pt;}
.ls5_c02191{letter-spacing:-0.105600pt;}
.ls13_c02191{letter-spacing:0.000000pt;}
.ls2_c02191{letter-spacing:0.005376pt;}
.ls6_c02191{letter-spacing:0.114048pt;}
.lsd_c02191{letter-spacing:0.451968pt;}
.ls1_c02191{letter-spacing:0.456960pt;}
.ls10_c02191{letter-spacing:0.477312pt;}
.lsc_c02191{letter-spacing:0.515328pt;}
.ls12_c02191{letter-spacing:0.528000pt;}
.ls9_c02191{letter-spacing:0.532224pt;}
.ls3_c02191{letter-spacing:0.544896pt;}
.ls0_c02191{letter-spacing:0.637824pt;}
.ls4_c02191{letter-spacing:0.642048pt;}
.wsb_c02191{word-spacing:-13.896960pt;}
.wsc_c02191{word-spacing:-13.445376pt;}
.wsa_c02191{word-spacing:-11.088000pt;}
.ws8_c02191{word-spacing:-11.075328pt;}
.ws9_c02191{word-spacing:-11.037312pt;}
.ws2_c02191{word-spacing:-10.015104pt;}
.ws4_c02191{word-spacing:-9.888384pt;}
.ws14_c02191{word-spacing:-3.198720pt;}
.ws10_c02191{word-spacing:-0.958848pt;}
.wsd_c02191{word-spacing:-0.865920pt;}
.wsf_c02191{word-spacing:-0.105600pt;}
.ws12_c02191{word-spacing:-0.088704pt;}
.ws13_c02191{word-spacing:-0.076032pt;}
.wse_c02191{word-spacing:0.000000pt;}
.ws11_c02191{word-spacing:0.059136pt;}
.ws6_c02191{word-spacing:32.659968pt;}
.ws1_c02191{word-spacing:33.563904pt;}
.ws0_c02191{word-spacing:33.796224pt;}
.ws3_c02191{word-spacing:34.860672pt;}
.ws5_c02191{word-spacing:35.468928pt;}
.ws7_c02191{word-spacing:37.357056pt;}
._0_c02191{margin-left:-1.731840pt;}
._2_c02191{width:1.317888pt;}
._4_c02191{width:2.994816pt;}
._1_c02191{width:44.668800pt;}
._3_c02191{width:45.805056pt;}
.fs0_c02191{font-size:42.240000pt;}
.fs1_c02191{font-size:53.760000pt;}
.y0_c02191{bottom:0.000000pt;}
.y10_c02191{bottom:18.560400pt;}
.y1c_c02191{bottom:130.665211pt;}
.y1e_c02191{bottom:165.866875pt;}
.y1d_c02191{bottom:174.507067pt;}
.y1b_c02191{bottom:245.225371pt;}
.y1a_c02191{bottom:317.225563pt;}
.y18_c02191{bottom:361.386427pt;}
.y14_c02191{bottom:377.386939pt;}
.y19_c02191{bottom:407.786011pt;}
.y17_c02191{bottom:437.226235pt;}
.y16_c02191{bottom:453.226747pt;}
.y13_c02191{bottom:482.666971pt;}
.y15_c02191{bottom:497.386555pt;}
.y12_c02191{bottom:513.387067pt;}
.y20_c02191{bottom:527.786667pt;}
.y21_c02191{bottom:530.347067pt;}
.y1f_c02191{bottom:546.027067pt;}
.yb_c02191{bottom:593.385179pt;}
.yd_c02191{bottom:628.586875pt;}
.yc_c02191{bottom:637.227067pt;}
.ya_c02191{bottom:707.945339pt;}
.y9_c02191{bottom:779.945531pt;}
.y7_c02191{bottom:823.786427pt;}
.y3_c02191{bottom:839.786939pt;}
.y8_c02191{bottom:870.505979pt;}
.y6_c02191{bottom:899.946203pt;}
.y5_c02191{bottom:915.946715pt;}
.y2_c02191{bottom:945.386939pt;}
.y4_c02191{bottom:959.786555pt;}
.y1_c02191{bottom:975.787067pt;}
.yf_c02191{bottom:990.506667pt;}
.y11_c02191{bottom:993.067067pt;}
.ye_c02191{bottom:1008.747067pt;}
.h3_c02191{height:28.916250pt;}
.h5_c02191{height:32.640000pt;}
.h4_c02191{height:36.802500pt;}
.h1_c02191{height:37.063125pt;}
.h2_c02191{height:37.166250pt;}
.h7_c02191{height:47.171250pt;}
.h6_c02191{height:47.302500pt;}
.h0_c02191{height:1122.666667pt;}
.w2_c02191{width:351.360000pt;}
.w1_c02191{width:793.333333pt;}
.w0_c02191{width:793.626667pt;}
.x0_c02191{left:0.000000pt;}
.xd_c02191{left:104.000000pt;}
.xe_c02191{left:143.360000pt;}
.x8_c02191{left:391.999872pt;}
.x4_c02191{left:396.160512pt;}
.xb_c02191{left:400.960000pt;}
.x7_c02191{left:404.799648pt;}
.x5_c02191{left:410.560128pt;}
.x1_c02191{left:411.840000pt;}
.xa_c02191{left:429.760320pt;}
.x9_c02191{left:437.439552pt;}
.x6_c02191{left:438.400512pt;}
.xc_c02191{left:450.560320pt;}
.x3_c02191{left:455.039904pt;}
.x2_c02191{left:468.159648pt;}
}





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

.ir_c02192:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02192{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02192;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02192{font-family:ff1_c02192;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02192;src:url('chunks/assets/font_0b913c091d966229a8a6db9c.woff2')format("woff");}.ff2_c02192{font-family:ff2_c02192;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02192;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02192{font-family:ff3_c02192;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02192{vertical-align:0.000000px;}
.lsa_c02192{letter-spacing:-0.755568px;}
.ls8_c02192{letter-spacing:-0.613008px;}
.lsb_c02192{letter-spacing:-0.574992px;}
.lse_c02192{letter-spacing:-0.427680px;}
.ls11_c02192{letter-spacing:-0.275616px;}
.lsf_c02192{letter-spacing:-0.261360px;}
.ls7_c02192{letter-spacing:-0.242352px;}
.ls5_c02192{letter-spacing:-0.118800px;}
.ls13_c02192{letter-spacing:0.000000px;}
.ls2_c02192{letter-spacing:0.006048px;}
.ls6_c02192{letter-spacing:0.128304px;}
.lsd_c02192{letter-spacing:0.508464px;}
.ls1_c02192{letter-spacing:0.514080px;}
.ls10_c02192{letter-spacing:0.536976px;}
.lsc_c02192{letter-spacing:0.579744px;}
.ls12_c02192{letter-spacing:0.594000px;}
.ls9_c02192{letter-spacing:0.598752px;}
.ls3_c02192{letter-spacing:0.613008px;}
.ls0_c02192{letter-spacing:0.717552px;}
.ls4_c02192{letter-spacing:0.722304px;}
.sc__c02192{text-shadow:none;}
.sc0_c02192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02192{-webkit-text-stroke:0px transparent;}
.sc0_c02192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02192{word-spacing:-15.634080px;}
.wsc_c02192{word-spacing:-15.126048px;}
.wsa_c02192{word-spacing:-12.474000px;}
.ws8_c02192{word-spacing:-12.459744px;}
.ws9_c02192{word-spacing:-12.416976px;}
.ws2_c02192{word-spacing:-11.266992px;}
.ws4_c02192{word-spacing:-11.124432px;}
.ws14_c02192{word-spacing:-3.598560px;}
.ws10_c02192{word-spacing:-1.078704px;}
.wsd_c02192{word-spacing:-0.974160px;}
.wsf_c02192{word-spacing:-0.118800px;}
.ws12_c02192{word-spacing:-0.099792px;}
.ws13_c02192{word-spacing:-0.085536px;}
.wse_c02192{word-spacing:0.000000px;}
.ws11_c02192{word-spacing:0.066528px;}
.ws6_c02192{word-spacing:36.742464px;}
.ws1_c02192{word-spacing:37.759392px;}
.ws0_c02192{word-spacing:38.020752px;}
.ws3_c02192{word-spacing:39.218256px;}
.ws5_c02192{word-spacing:39.902544px;}
.ws7_c02192{word-spacing:42.026688px;}
._0_c02192{margin-left:-1.948320px;}
._2_c02192{width:1.482624px;}
._4_c02192{width:3.369168px;}
._1_c02192{width:50.252400px;}
._3_c02192{width:51.530688px;}
.fc0_c02192{color:rgb(0,0,0);}
.fs0_c02192{font-size:47.520000px;}
.fs1_c02192{font-size:60.480000px;}
.y0_c02192{bottom:0.000000px;}
.y10_c02192{bottom:20.880450px;}
.y1c_c02192{bottom:146.998362px;}
.y1e_c02192{bottom:186.600234px;}
.y1d_c02192{bottom:196.320450px;}
.y1b_c02192{bottom:275.878542px;}
.y1a_c02192{bottom:356.878758px;}
.y18_c02192{bottom:406.559730px;}
.y14_c02192{bottom:424.560306px;}
.y19_c02192{bottom:458.759262px;}
.y17_c02192{bottom:491.879514px;}
.y16_c02192{bottom:509.880090px;}
.y13_c02192{bottom:543.000342px;}
.y15_c02192{bottom:559.559874px;}
.y12_c02192{bottom:577.560450px;}
.y20_c02192{bottom:593.760000px;}
.y21_c02192{bottom:596.640450px;}
.y1f_c02192{bottom:614.280450px;}
.yb_c02192{bottom:667.558326px;}
.yd_c02192{bottom:707.160234px;}
.yc_c02192{bottom:716.880450px;}
.ya_c02192{bottom:796.438506px;}
.y9_c02192{bottom:877.438722px;}
.y7_c02192{bottom:926.759730px;}
.y3_c02192{bottom:944.760306px;}
.y8_c02192{bottom:979.319226px;}
.y6_c02192{bottom:1012.439478px;}
.y5_c02192{bottom:1030.440054px;}
.y2_c02192{bottom:1063.560306px;}
.y4_c02192{bottom:1079.759874px;}
.y1_c02192{bottom:1097.760450px;}
.yf_c02192{bottom:1114.320000px;}
.y11_c02192{bottom:1117.200450px;}
.ye_c02192{bottom:1134.840450px;}
.h3_c02192{height:32.530781px;}
.h5_c02192{height:36.720000px;}
.h4_c02192{height:41.402813px;}
.h1_c02192{height:41.696016px;}
.h2_c02192{height:41.812031px;}
.h7_c02192{height:53.067656px;}
.h6_c02192{height:53.215313px;}
.h0_c02192{height:1263.000000px;}
.w2_c02192{width:395.280000px;}
.w1_c02192{width:892.500000px;}
.w0_c02192{width:892.830000px;}
.x0_c02192{left:0.000000px;}
.xd_c02192{left:117.000000px;}
.xe_c02192{left:161.280000px;}
.x8_c02192{left:440.999856px;}
.x4_c02192{left:445.680576px;}
.xb_c02192{left:451.080000px;}
.x7_c02192{left:455.399604px;}
.x5_c02192{left:461.880144px;}
.x1_c02192{left:463.320000px;}
.xa_c02192{left:483.480360px;}
.x9_c02192{left:492.119496px;}
.x6_c02192{left:493.200576px;}
.xc_c02192{left:506.880360px;}
.x3_c02192{left:511.919892px;}
.x2_c02192{left:526.679604px;}
@media print{
.v0_c02192{vertical-align:0.000000pt;}
.lsa_c02192{letter-spacing:-0.671616pt;}
.ls8_c02192{letter-spacing:-0.544896pt;}
.lsb_c02192{letter-spacing:-0.511104pt;}
.lse_c02192{letter-spacing:-0.380160pt;}
.ls11_c02192{letter-spacing:-0.244992pt;}
.lsf_c02192{letter-spacing:-0.232320pt;}
.ls7_c02192{letter-spacing:-0.215424pt;}
.ls5_c02192{letter-spacing:-0.105600pt;}
.ls13_c02192{letter-spacing:0.000000pt;}
.ls2_c02192{letter-spacing:0.005376pt;}
.ls6_c02192{letter-spacing:0.114048pt;}
.lsd_c02192{letter-spacing:0.451968pt;}
.ls1_c02192{letter-spacing:0.456960pt;}
.ls10_c02192{letter-spacing:0.477312pt;}
.lsc_c02192{letter-spacing:0.515328pt;}
.ls12_c02192{letter-spacing:0.528000pt;}
.ls9_c02192{letter-spacing:0.532224pt;}
.ls3_c02192{letter-spacing:0.544896pt;}
.ls0_c02192{letter-spacing:0.637824pt;}
.ls4_c02192{letter-spacing:0.642048pt;}
.wsb_c02192{word-spacing:-13.896960pt;}
.wsc_c02192{word-spacing:-13.445376pt;}
.wsa_c02192{word-spacing:-11.088000pt;}
.ws8_c02192{word-spacing:-11.075328pt;}
.ws9_c02192{word-spacing:-11.037312pt;}
.ws2_c02192{word-spacing:-10.015104pt;}
.ws4_c02192{word-spacing:-9.888384pt;}
.ws14_c02192{word-spacing:-3.198720pt;}
.ws10_c02192{word-spacing:-0.958848pt;}
.wsd_c02192{word-spacing:-0.865920pt;}
.wsf_c02192{word-spacing:-0.105600pt;}
.ws12_c02192{word-spacing:-0.088704pt;}
.ws13_c02192{word-spacing:-0.076032pt;}
.wse_c02192{word-spacing:0.000000pt;}
.ws11_c02192{word-spacing:0.059136pt;}
.ws6_c02192{word-spacing:32.659968pt;}
.ws1_c02192{word-spacing:33.563904pt;}
.ws0_c02192{word-spacing:33.796224pt;}
.ws3_c02192{word-spacing:34.860672pt;}
.ws5_c02192{word-spacing:35.468928pt;}
.ws7_c02192{word-spacing:37.357056pt;}
._0_c02192{margin-left:-1.731840pt;}
._2_c02192{width:1.317888pt;}
._4_c02192{width:2.994816pt;}
._1_c02192{width:44.668800pt;}
._3_c02192{width:45.805056pt;}
.fs0_c02192{font-size:42.240000pt;}
.fs1_c02192{font-size:53.760000pt;}
.y0_c02192{bottom:0.000000pt;}
.y10_c02192{bottom:18.560400pt;}
.y1c_c02192{bottom:130.665211pt;}
.y1e_c02192{bottom:165.866875pt;}
.y1d_c02192{bottom:174.507067pt;}
.y1b_c02192{bottom:245.225371pt;}
.y1a_c02192{bottom:317.225563pt;}
.y18_c02192{bottom:361.386427pt;}
.y14_c02192{bottom:377.386939pt;}
.y19_c02192{bottom:407.786011pt;}
.y17_c02192{bottom:437.226235pt;}
.y16_c02192{bottom:453.226747pt;}
.y13_c02192{bottom:482.666971pt;}
.y15_c02192{bottom:497.386555pt;}
.y12_c02192{bottom:513.387067pt;}
.y20_c02192{bottom:527.786667pt;}
.y21_c02192{bottom:530.347067pt;}
.y1f_c02192{bottom:546.027067pt;}
.yb_c02192{bottom:593.385179pt;}
.yd_c02192{bottom:628.586875pt;}
.yc_c02192{bottom:637.227067pt;}
.ya_c02192{bottom:707.945339pt;}
.y9_c02192{bottom:779.945531pt;}
.y7_c02192{bottom:823.786427pt;}
.y3_c02192{bottom:839.786939pt;}
.y8_c02192{bottom:870.505979pt;}
.y6_c02192{bottom:899.946203pt;}
.y5_c02192{bottom:915.946715pt;}
.y2_c02192{bottom:945.386939pt;}
.y4_c02192{bottom:959.786555pt;}
.y1_c02192{bottom:975.787067pt;}
.yf_c02192{bottom:990.506667pt;}
.y11_c02192{bottom:993.067067pt;}
.ye_c02192{bottom:1008.747067pt;}
.h3_c02192{height:28.916250pt;}
.h5_c02192{height:32.640000pt;}
.h4_c02192{height:36.802500pt;}
.h1_c02192{height:37.063125pt;}
.h2_c02192{height:37.166250pt;}
.h7_c02192{height:47.171250pt;}
.h6_c02192{height:47.302500pt;}
.h0_c02192{height:1122.666667pt;}
.w2_c02192{width:351.360000pt;}
.w1_c02192{width:793.333333pt;}
.w0_c02192{width:793.626667pt;}
.x0_c02192{left:0.000000pt;}
.xd_c02192{left:104.000000pt;}
.xe_c02192{left:143.360000pt;}
.x8_c02192{left:391.999872pt;}
.x4_c02192{left:396.160512pt;}
.xb_c02192{left:400.960000pt;}
.x7_c02192{left:404.799648pt;}
.x5_c02192{left:410.560128pt;}
.x1_c02192{left:411.840000pt;}
.xa_c02192{left:429.760320pt;}
.x9_c02192{left:437.439552pt;}
.x6_c02192{left:438.400512pt;}
.xc_c02192{left:450.560320pt;}
.x3_c02192{left:455.039904pt;}
.x2_c02192{left:468.159648pt;}
}





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

.ir_c02193:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02193{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02193;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02193{font-family:ff1_c02193;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02193;src:url('chunks/assets/font_b53621b5bcaf34c0b8e96b70.woff2')format("woff");}.ff2_c02193{font-family:ff2_c02193;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02193;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02193{font-family:ff3_c02193;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02193{vertical-align:0.000000px;}
.lsa_c02193{letter-spacing:-0.755568px;}
.ls8_c02193{letter-spacing:-0.613008px;}
.lsb_c02193{letter-spacing:-0.574992px;}
.lse_c02193{letter-spacing:-0.427680px;}
.ls11_c02193{letter-spacing:-0.275616px;}
.lsf_c02193{letter-spacing:-0.261360px;}
.ls7_c02193{letter-spacing:-0.242352px;}
.ls5_c02193{letter-spacing:-0.118800px;}
.ls13_c02193{letter-spacing:0.000000px;}
.ls2_c02193{letter-spacing:0.006048px;}
.ls6_c02193{letter-spacing:0.128304px;}
.lsd_c02193{letter-spacing:0.508464px;}
.ls1_c02193{letter-spacing:0.514080px;}
.ls10_c02193{letter-spacing:0.536976px;}
.lsc_c02193{letter-spacing:0.579744px;}
.ls12_c02193{letter-spacing:0.594000px;}
.ls9_c02193{letter-spacing:0.598752px;}
.ls3_c02193{letter-spacing:0.613008px;}
.ls0_c02193{letter-spacing:0.717552px;}
.ls4_c02193{letter-spacing:0.722304px;}
.sc__c02193{text-shadow:none;}
.sc0_c02193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02193{-webkit-text-stroke:0px transparent;}
.sc0_c02193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02193{word-spacing:-15.634080px;}
.wsc_c02193{word-spacing:-15.126048px;}
.wsa_c02193{word-spacing:-12.474000px;}
.ws8_c02193{word-spacing:-12.459744px;}
.ws9_c02193{word-spacing:-12.416976px;}
.ws2_c02193{word-spacing:-11.266992px;}
.ws4_c02193{word-spacing:-11.124432px;}
.ws14_c02193{word-spacing:-3.598560px;}
.ws10_c02193{word-spacing:-1.078704px;}
.wsd_c02193{word-spacing:-0.974160px;}
.wsf_c02193{word-spacing:-0.118800px;}
.ws12_c02193{word-spacing:-0.099792px;}
.ws13_c02193{word-spacing:-0.085536px;}
.wse_c02193{word-spacing:0.000000px;}
.ws11_c02193{word-spacing:0.066528px;}
.ws6_c02193{word-spacing:36.742464px;}
.ws1_c02193{word-spacing:37.759392px;}
.ws0_c02193{word-spacing:38.020752px;}
.ws3_c02193{word-spacing:39.218256px;}
.ws5_c02193{word-spacing:39.902544px;}
.ws7_c02193{word-spacing:42.026688px;}
._0_c02193{margin-left:-1.948320px;}
._2_c02193{width:1.482624px;}
._4_c02193{width:3.369168px;}
._1_c02193{width:50.252400px;}
._3_c02193{width:51.530688px;}
.fc0_c02193{color:rgb(0,0,0);}
.fs0_c02193{font-size:47.520000px;}
.fs1_c02193{font-size:60.480000px;}
.y0_c02193{bottom:0.000000px;}
.y10_c02193{bottom:20.880450px;}
.y1c_c02193{bottom:146.998362px;}
.y1e_c02193{bottom:186.600234px;}
.y1d_c02193{bottom:196.320450px;}
.y1b_c02193{bottom:275.878542px;}
.y1a_c02193{bottom:356.878758px;}
.y18_c02193{bottom:406.559730px;}
.y14_c02193{bottom:424.560306px;}
.y19_c02193{bottom:458.759262px;}
.y17_c02193{bottom:491.879514px;}
.y16_c02193{bottom:509.880090px;}
.y13_c02193{bottom:543.000342px;}
.y15_c02193{bottom:559.559874px;}
.y12_c02193{bottom:577.560450px;}
.y20_c02193{bottom:593.760000px;}
.y21_c02193{bottom:596.640450px;}
.y1f_c02193{bottom:614.280450px;}
.yb_c02193{bottom:667.558326px;}
.yd_c02193{bottom:707.160234px;}
.yc_c02193{bottom:716.880450px;}
.ya_c02193{bottom:796.438506px;}
.y9_c02193{bottom:877.438722px;}
.y7_c02193{bottom:926.759730px;}
.y3_c02193{bottom:944.760306px;}
.y8_c02193{bottom:979.319226px;}
.y6_c02193{bottom:1012.439478px;}
.y5_c02193{bottom:1030.440054px;}
.y2_c02193{bottom:1063.560306px;}
.y4_c02193{bottom:1079.759874px;}
.y1_c02193{bottom:1097.760450px;}
.yf_c02193{bottom:1114.320000px;}
.y11_c02193{bottom:1117.200450px;}
.ye_c02193{bottom:1134.840450px;}
.h3_c02193{height:32.530781px;}
.h5_c02193{height:36.720000px;}
.h4_c02193{height:41.402813px;}
.h1_c02193{height:41.696016px;}
.h2_c02193{height:41.812031px;}
.h7_c02193{height:53.067656px;}
.h6_c02193{height:53.215313px;}
.h0_c02193{height:1263.000000px;}
.w2_c02193{width:395.280000px;}
.w1_c02193{width:892.500000px;}
.w0_c02193{width:892.830000px;}
.x0_c02193{left:0.000000px;}
.xd_c02193{left:117.000000px;}
.xe_c02193{left:161.280000px;}
.x8_c02193{left:440.999856px;}
.x4_c02193{left:445.680576px;}
.xb_c02193{left:451.080000px;}
.x7_c02193{left:455.399604px;}
.x5_c02193{left:461.880144px;}
.x1_c02193{left:463.320000px;}
.xa_c02193{left:483.480360px;}
.x9_c02193{left:492.119496px;}
.x6_c02193{left:493.200576px;}
.xc_c02193{left:506.880360px;}
.x3_c02193{left:511.919892px;}
.x2_c02193{left:526.679604px;}
@media print{
.v0_c02193{vertical-align:0.000000pt;}
.lsa_c02193{letter-spacing:-0.671616pt;}
.ls8_c02193{letter-spacing:-0.544896pt;}
.lsb_c02193{letter-spacing:-0.511104pt;}
.lse_c02193{letter-spacing:-0.380160pt;}
.ls11_c02193{letter-spacing:-0.244992pt;}
.lsf_c02193{letter-spacing:-0.232320pt;}
.ls7_c02193{letter-spacing:-0.215424pt;}
.ls5_c02193{letter-spacing:-0.105600pt;}
.ls13_c02193{letter-spacing:0.000000pt;}
.ls2_c02193{letter-spacing:0.005376pt;}
.ls6_c02193{letter-spacing:0.114048pt;}
.lsd_c02193{letter-spacing:0.451968pt;}
.ls1_c02193{letter-spacing:0.456960pt;}
.ls10_c02193{letter-spacing:0.477312pt;}
.lsc_c02193{letter-spacing:0.515328pt;}
.ls12_c02193{letter-spacing:0.528000pt;}
.ls9_c02193{letter-spacing:0.532224pt;}
.ls3_c02193{letter-spacing:0.544896pt;}
.ls0_c02193{letter-spacing:0.637824pt;}
.ls4_c02193{letter-spacing:0.642048pt;}
.wsb_c02193{word-spacing:-13.896960pt;}
.wsc_c02193{word-spacing:-13.445376pt;}
.wsa_c02193{word-spacing:-11.088000pt;}
.ws8_c02193{word-spacing:-11.075328pt;}
.ws9_c02193{word-spacing:-11.037312pt;}
.ws2_c02193{word-spacing:-10.015104pt;}
.ws4_c02193{word-spacing:-9.888384pt;}
.ws14_c02193{word-spacing:-3.198720pt;}
.ws10_c02193{word-spacing:-0.958848pt;}
.wsd_c02193{word-spacing:-0.865920pt;}
.wsf_c02193{word-spacing:-0.105600pt;}
.ws12_c02193{word-spacing:-0.088704pt;}
.ws13_c02193{word-spacing:-0.076032pt;}
.wse_c02193{word-spacing:0.000000pt;}
.ws11_c02193{word-spacing:0.059136pt;}
.ws6_c02193{word-spacing:32.659968pt;}
.ws1_c02193{word-spacing:33.563904pt;}
.ws0_c02193{word-spacing:33.796224pt;}
.ws3_c02193{word-spacing:34.860672pt;}
.ws5_c02193{word-spacing:35.468928pt;}
.ws7_c02193{word-spacing:37.357056pt;}
._0_c02193{margin-left:-1.731840pt;}
._2_c02193{width:1.317888pt;}
._4_c02193{width:2.994816pt;}
._1_c02193{width:44.668800pt;}
._3_c02193{width:45.805056pt;}
.fs0_c02193{font-size:42.240000pt;}
.fs1_c02193{font-size:53.760000pt;}
.y0_c02193{bottom:0.000000pt;}
.y10_c02193{bottom:18.560400pt;}
.y1c_c02193{bottom:130.665211pt;}
.y1e_c02193{bottom:165.866875pt;}
.y1d_c02193{bottom:174.507067pt;}
.y1b_c02193{bottom:245.225371pt;}
.y1a_c02193{bottom:317.225563pt;}
.y18_c02193{bottom:361.386427pt;}
.y14_c02193{bottom:377.386939pt;}
.y19_c02193{bottom:407.786011pt;}
.y17_c02193{bottom:437.226235pt;}
.y16_c02193{bottom:453.226747pt;}
.y13_c02193{bottom:482.666971pt;}
.y15_c02193{bottom:497.386555pt;}
.y12_c02193{bottom:513.387067pt;}
.y20_c02193{bottom:527.786667pt;}
.y21_c02193{bottom:530.347067pt;}
.y1f_c02193{bottom:546.027067pt;}
.yb_c02193{bottom:593.385179pt;}
.yd_c02193{bottom:628.586875pt;}
.yc_c02193{bottom:637.227067pt;}
.ya_c02193{bottom:707.945339pt;}
.y9_c02193{bottom:779.945531pt;}
.y7_c02193{bottom:823.786427pt;}
.y3_c02193{bottom:839.786939pt;}
.y8_c02193{bottom:870.505979pt;}
.y6_c02193{bottom:899.946203pt;}
.y5_c02193{bottom:915.946715pt;}
.y2_c02193{bottom:945.386939pt;}
.y4_c02193{bottom:959.786555pt;}
.y1_c02193{bottom:975.787067pt;}
.yf_c02193{bottom:990.506667pt;}
.y11_c02193{bottom:993.067067pt;}
.ye_c02193{bottom:1008.747067pt;}
.h3_c02193{height:28.916250pt;}
.h5_c02193{height:32.640000pt;}
.h4_c02193{height:36.802500pt;}
.h1_c02193{height:37.063125pt;}
.h2_c02193{height:37.166250pt;}
.h7_c02193{height:47.171250pt;}
.h6_c02193{height:47.302500pt;}
.h0_c02193{height:1122.666667pt;}
.w2_c02193{width:351.360000pt;}
.w1_c02193{width:793.333333pt;}
.w0_c02193{width:793.626667pt;}
.x0_c02193{left:0.000000pt;}
.xd_c02193{left:104.000000pt;}
.xe_c02193{left:143.360000pt;}
.x8_c02193{left:391.999872pt;}
.x4_c02193{left:396.160512pt;}
.xb_c02193{left:400.960000pt;}
.x7_c02193{left:404.799648pt;}
.x5_c02193{left:410.560128pt;}
.x1_c02193{left:411.840000pt;}
.xa_c02193{left:429.760320pt;}
.x9_c02193{left:437.439552pt;}
.x6_c02193{left:438.400512pt;}
.xc_c02193{left:450.560320pt;}
.x3_c02193{left:455.039904pt;}
.x2_c02193{left:468.159648pt;}
}





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

.ir_c02194:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02194{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02194;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02194{font-family:ff1_c02194;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02194;src:url('chunks/assets/font_71085c480a435f74312d3052.woff2')format("woff");}.ff2_c02194{font-family:ff2_c02194;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02194;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02194{font-family:ff3_c02194;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02194{vertical-align:0.000000px;}
.lsa_c02194{letter-spacing:-0.755568px;}
.ls8_c02194{letter-spacing:-0.613008px;}
.lsb_c02194{letter-spacing:-0.574992px;}
.lse_c02194{letter-spacing:-0.427680px;}
.ls11_c02194{letter-spacing:-0.275616px;}
.lsf_c02194{letter-spacing:-0.261360px;}
.ls7_c02194{letter-spacing:-0.242352px;}
.ls5_c02194{letter-spacing:-0.118800px;}
.ls13_c02194{letter-spacing:0.000000px;}
.ls2_c02194{letter-spacing:0.006048px;}
.ls6_c02194{letter-spacing:0.128304px;}
.lsd_c02194{letter-spacing:0.508464px;}
.ls1_c02194{letter-spacing:0.514080px;}
.ls10_c02194{letter-spacing:0.536976px;}
.lsc_c02194{letter-spacing:0.579744px;}
.ls12_c02194{letter-spacing:0.594000px;}
.ls9_c02194{letter-spacing:0.598752px;}
.ls3_c02194{letter-spacing:0.613008px;}
.ls0_c02194{letter-spacing:0.717552px;}
.ls4_c02194{letter-spacing:0.722304px;}
.sc__c02194{text-shadow:none;}
.sc0_c02194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02194{-webkit-text-stroke:0px transparent;}
.sc0_c02194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02194{word-spacing:-15.634080px;}
.wsc_c02194{word-spacing:-15.126048px;}
.wsa_c02194{word-spacing:-12.474000px;}
.ws8_c02194{word-spacing:-12.459744px;}
.ws9_c02194{word-spacing:-12.416976px;}
.ws2_c02194{word-spacing:-11.266992px;}
.ws4_c02194{word-spacing:-11.124432px;}
.ws14_c02194{word-spacing:-3.598560px;}
.ws10_c02194{word-spacing:-1.078704px;}
.wsd_c02194{word-spacing:-0.974160px;}
.wsf_c02194{word-spacing:-0.118800px;}
.ws12_c02194{word-spacing:-0.099792px;}
.ws13_c02194{word-spacing:-0.085536px;}
.wse_c02194{word-spacing:0.000000px;}
.ws11_c02194{word-spacing:0.066528px;}
.ws6_c02194{word-spacing:36.742464px;}
.ws1_c02194{word-spacing:37.759392px;}
.ws0_c02194{word-spacing:38.020752px;}
.ws3_c02194{word-spacing:39.218256px;}
.ws5_c02194{word-spacing:39.902544px;}
.ws7_c02194{word-spacing:42.026688px;}
._0_c02194{margin-left:-1.948320px;}
._2_c02194{width:1.482624px;}
._4_c02194{width:3.369168px;}
._1_c02194{width:50.252400px;}
._3_c02194{width:51.530688px;}
.fc0_c02194{color:rgb(0,0,0);}
.fs0_c02194{font-size:47.520000px;}
.fs1_c02194{font-size:60.480000px;}
.y0_c02194{bottom:0.000000px;}
.y10_c02194{bottom:20.880450px;}
.y1c_c02194{bottom:146.998362px;}
.y1e_c02194{bottom:186.600234px;}
.y1d_c02194{bottom:196.320450px;}
.y1b_c02194{bottom:275.878542px;}
.y1a_c02194{bottom:356.878758px;}
.y18_c02194{bottom:406.559730px;}
.y14_c02194{bottom:424.560306px;}
.y19_c02194{bottom:458.759262px;}
.y17_c02194{bottom:491.879514px;}
.y16_c02194{bottom:509.880090px;}
.y13_c02194{bottom:543.000342px;}
.y15_c02194{bottom:559.559874px;}
.y12_c02194{bottom:577.560450px;}
.y20_c02194{bottom:593.760000px;}
.y21_c02194{bottom:596.640450px;}
.y1f_c02194{bottom:614.280450px;}
.yb_c02194{bottom:667.558326px;}
.yd_c02194{bottom:707.160234px;}
.yc_c02194{bottom:716.880450px;}
.ya_c02194{bottom:796.438506px;}
.y9_c02194{bottom:877.438722px;}
.y7_c02194{bottom:926.759730px;}
.y3_c02194{bottom:944.760306px;}
.y8_c02194{bottom:979.319226px;}
.y6_c02194{bottom:1012.439478px;}
.y5_c02194{bottom:1030.440054px;}
.y2_c02194{bottom:1063.560306px;}
.y4_c02194{bottom:1079.759874px;}
.y1_c02194{bottom:1097.760450px;}
.yf_c02194{bottom:1114.320000px;}
.y11_c02194{bottom:1117.200450px;}
.ye_c02194{bottom:1134.840450px;}
.h3_c02194{height:32.530781px;}
.h5_c02194{height:36.720000px;}
.h4_c02194{height:41.402813px;}
.h1_c02194{height:41.696016px;}
.h2_c02194{height:41.812031px;}
.h7_c02194{height:53.067656px;}
.h6_c02194{height:53.215313px;}
.h0_c02194{height:1263.000000px;}
.w2_c02194{width:395.280000px;}
.w1_c02194{width:892.500000px;}
.w0_c02194{width:892.830000px;}
.x0_c02194{left:0.000000px;}
.xd_c02194{left:117.000000px;}
.xe_c02194{left:161.280000px;}
.x8_c02194{left:440.999856px;}
.x4_c02194{left:445.680576px;}
.xb_c02194{left:451.080000px;}
.x7_c02194{left:455.399604px;}
.x5_c02194{left:461.880144px;}
.x1_c02194{left:463.320000px;}
.xa_c02194{left:483.480360px;}
.x9_c02194{left:492.119496px;}
.x6_c02194{left:493.200576px;}
.xc_c02194{left:506.880360px;}
.x3_c02194{left:511.919892px;}
.x2_c02194{left:526.679604px;}
@media print{
.v0_c02194{vertical-align:0.000000pt;}
.lsa_c02194{letter-spacing:-0.671616pt;}
.ls8_c02194{letter-spacing:-0.544896pt;}
.lsb_c02194{letter-spacing:-0.511104pt;}
.lse_c02194{letter-spacing:-0.380160pt;}
.ls11_c02194{letter-spacing:-0.244992pt;}
.lsf_c02194{letter-spacing:-0.232320pt;}
.ls7_c02194{letter-spacing:-0.215424pt;}
.ls5_c02194{letter-spacing:-0.105600pt;}
.ls13_c02194{letter-spacing:0.000000pt;}
.ls2_c02194{letter-spacing:0.005376pt;}
.ls6_c02194{letter-spacing:0.114048pt;}
.lsd_c02194{letter-spacing:0.451968pt;}
.ls1_c02194{letter-spacing:0.456960pt;}
.ls10_c02194{letter-spacing:0.477312pt;}
.lsc_c02194{letter-spacing:0.515328pt;}
.ls12_c02194{letter-spacing:0.528000pt;}
.ls9_c02194{letter-spacing:0.532224pt;}
.ls3_c02194{letter-spacing:0.544896pt;}
.ls0_c02194{letter-spacing:0.637824pt;}
.ls4_c02194{letter-spacing:0.642048pt;}
.wsb_c02194{word-spacing:-13.896960pt;}
.wsc_c02194{word-spacing:-13.445376pt;}
.wsa_c02194{word-spacing:-11.088000pt;}
.ws8_c02194{word-spacing:-11.075328pt;}
.ws9_c02194{word-spacing:-11.037312pt;}
.ws2_c02194{word-spacing:-10.015104pt;}
.ws4_c02194{word-spacing:-9.888384pt;}
.ws14_c02194{word-spacing:-3.198720pt;}
.ws10_c02194{word-spacing:-0.958848pt;}
.wsd_c02194{word-spacing:-0.865920pt;}
.wsf_c02194{word-spacing:-0.105600pt;}
.ws12_c02194{word-spacing:-0.088704pt;}
.ws13_c02194{word-spacing:-0.076032pt;}
.wse_c02194{word-spacing:0.000000pt;}
.ws11_c02194{word-spacing:0.059136pt;}
.ws6_c02194{word-spacing:32.659968pt;}
.ws1_c02194{word-spacing:33.563904pt;}
.ws0_c02194{word-spacing:33.796224pt;}
.ws3_c02194{word-spacing:34.860672pt;}
.ws5_c02194{word-spacing:35.468928pt;}
.ws7_c02194{word-spacing:37.357056pt;}
._0_c02194{margin-left:-1.731840pt;}
._2_c02194{width:1.317888pt;}
._4_c02194{width:2.994816pt;}
._1_c02194{width:44.668800pt;}
._3_c02194{width:45.805056pt;}
.fs0_c02194{font-size:42.240000pt;}
.fs1_c02194{font-size:53.760000pt;}
.y0_c02194{bottom:0.000000pt;}
.y10_c02194{bottom:18.560400pt;}
.y1c_c02194{bottom:130.665211pt;}
.y1e_c02194{bottom:165.866875pt;}
.y1d_c02194{bottom:174.507067pt;}
.y1b_c02194{bottom:245.225371pt;}
.y1a_c02194{bottom:317.225563pt;}
.y18_c02194{bottom:361.386427pt;}
.y14_c02194{bottom:377.386939pt;}
.y19_c02194{bottom:407.786011pt;}
.y17_c02194{bottom:437.226235pt;}
.y16_c02194{bottom:453.226747pt;}
.y13_c02194{bottom:482.666971pt;}
.y15_c02194{bottom:497.386555pt;}
.y12_c02194{bottom:513.387067pt;}
.y20_c02194{bottom:527.786667pt;}
.y21_c02194{bottom:530.347067pt;}
.y1f_c02194{bottom:546.027067pt;}
.yb_c02194{bottom:593.385179pt;}
.yd_c02194{bottom:628.586875pt;}
.yc_c02194{bottom:637.227067pt;}
.ya_c02194{bottom:707.945339pt;}
.y9_c02194{bottom:779.945531pt;}
.y7_c02194{bottom:823.786427pt;}
.y3_c02194{bottom:839.786939pt;}
.y8_c02194{bottom:870.505979pt;}
.y6_c02194{bottom:899.946203pt;}
.y5_c02194{bottom:915.946715pt;}
.y2_c02194{bottom:945.386939pt;}
.y4_c02194{bottom:959.786555pt;}
.y1_c02194{bottom:975.787067pt;}
.yf_c02194{bottom:990.506667pt;}
.y11_c02194{bottom:993.067067pt;}
.ye_c02194{bottom:1008.747067pt;}
.h3_c02194{height:28.916250pt;}
.h5_c02194{height:32.640000pt;}
.h4_c02194{height:36.802500pt;}
.h1_c02194{height:37.063125pt;}
.h2_c02194{height:37.166250pt;}
.h7_c02194{height:47.171250pt;}
.h6_c02194{height:47.302500pt;}
.h0_c02194{height:1122.666667pt;}
.w2_c02194{width:351.360000pt;}
.w1_c02194{width:793.333333pt;}
.w0_c02194{width:793.626667pt;}
.x0_c02194{left:0.000000pt;}
.xd_c02194{left:104.000000pt;}
.xe_c02194{left:143.360000pt;}
.x8_c02194{left:391.999872pt;}
.x4_c02194{left:396.160512pt;}
.xb_c02194{left:400.960000pt;}
.x7_c02194{left:404.799648pt;}
.x5_c02194{left:410.560128pt;}
.x1_c02194{left:411.840000pt;}
.xa_c02194{left:429.760320pt;}
.x9_c02194{left:437.439552pt;}
.x6_c02194{left:438.400512pt;}
.xc_c02194{left:450.560320pt;}
.x3_c02194{left:455.039904pt;}
.x2_c02194{left:468.159648pt;}
}





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

.ir_c02195:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02195{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02195;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02195{font-family:ff1_c02195;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02195;src:url('chunks/assets/font_29937c640122df3d69582e94.woff2')format("woff");}.ff2_c02195{font-family:ff2_c02195;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02195;src:url('chunks/assets/font_22abe6176ba136326a22d0e0.woff2')format("woff");}.ff3_c02195{font-family:ff3_c02195;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02195{vertical-align:0.000000px;}
.lsa_c02195{letter-spacing:-0.755568px;}
.ls8_c02195{letter-spacing:-0.613008px;}
.lsb_c02195{letter-spacing:-0.574992px;}
.lse_c02195{letter-spacing:-0.427680px;}
.ls11_c02195{letter-spacing:-0.275616px;}
.lsf_c02195{letter-spacing:-0.261360px;}
.ls7_c02195{letter-spacing:-0.242352px;}
.ls5_c02195{letter-spacing:-0.118800px;}
.ls13_c02195{letter-spacing:0.000000px;}
.ls2_c02195{letter-spacing:0.006048px;}
.ls6_c02195{letter-spacing:0.128304px;}
.lsd_c02195{letter-spacing:0.508464px;}
.ls1_c02195{letter-spacing:0.514080px;}
.ls10_c02195{letter-spacing:0.536976px;}
.lsc_c02195{letter-spacing:0.579744px;}
.ls12_c02195{letter-spacing:0.594000px;}
.ls9_c02195{letter-spacing:0.598752px;}
.ls3_c02195{letter-spacing:0.613008px;}
.ls0_c02195{letter-spacing:0.717552px;}
.ls4_c02195{letter-spacing:0.722304px;}
.sc__c02195{text-shadow:none;}
.sc0_c02195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02195{-webkit-text-stroke:0px transparent;}
.sc0_c02195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02195{word-spacing:-15.634080px;}
.wsc_c02195{word-spacing:-15.126048px;}
.wsa_c02195{word-spacing:-12.474000px;}
.ws8_c02195{word-spacing:-12.459744px;}
.ws9_c02195{word-spacing:-12.416976px;}
.ws2_c02195{word-spacing:-11.266992px;}
.ws4_c02195{word-spacing:-11.124432px;}
.ws14_c02195{word-spacing:-3.598560px;}
.ws10_c02195{word-spacing:-1.078704px;}
.wsd_c02195{word-spacing:-0.974160px;}
.wsf_c02195{word-spacing:-0.118800px;}
.ws12_c02195{word-spacing:-0.099792px;}
.ws13_c02195{word-spacing:-0.085536px;}
.wse_c02195{word-spacing:0.000000px;}
.ws11_c02195{word-spacing:0.066528px;}
.ws6_c02195{word-spacing:36.742464px;}
.ws1_c02195{word-spacing:37.759392px;}
.ws0_c02195{word-spacing:38.020752px;}
.ws3_c02195{word-spacing:39.218256px;}
.ws5_c02195{word-spacing:39.902544px;}
.ws7_c02195{word-spacing:42.026688px;}
._0_c02195{margin-left:-1.948320px;}
._2_c02195{width:1.482624px;}
._4_c02195{width:3.369168px;}
._1_c02195{width:50.252400px;}
._3_c02195{width:51.530688px;}
.fc0_c02195{color:rgb(0,0,0);}
.fs0_c02195{font-size:47.520000px;}
.fs1_c02195{font-size:60.480000px;}
.y0_c02195{bottom:0.000000px;}
.y10_c02195{bottom:20.880450px;}
.y1c_c02195{bottom:146.998362px;}
.y1e_c02195{bottom:186.600234px;}
.y1d_c02195{bottom:196.320450px;}
.y1b_c02195{bottom:275.878542px;}
.y1a_c02195{bottom:356.878758px;}
.y18_c02195{bottom:406.559730px;}
.y14_c02195{bottom:424.560306px;}
.y19_c02195{bottom:458.759262px;}
.y17_c02195{bottom:491.879514px;}
.y16_c02195{bottom:509.880090px;}
.y13_c02195{bottom:543.000342px;}
.y15_c02195{bottom:559.559874px;}
.y12_c02195{bottom:577.560450px;}
.y20_c02195{bottom:593.760000px;}
.y21_c02195{bottom:596.640450px;}
.y1f_c02195{bottom:614.280450px;}
.yb_c02195{bottom:667.558326px;}
.yd_c02195{bottom:707.160234px;}
.yc_c02195{bottom:716.880450px;}
.ya_c02195{bottom:796.438506px;}
.y9_c02195{bottom:877.438722px;}
.y7_c02195{bottom:926.759730px;}
.y3_c02195{bottom:944.760306px;}
.y8_c02195{bottom:979.319226px;}
.y6_c02195{bottom:1012.439478px;}
.y5_c02195{bottom:1030.440054px;}
.y2_c02195{bottom:1063.560306px;}
.y4_c02195{bottom:1079.759874px;}
.y1_c02195{bottom:1097.760450px;}
.yf_c02195{bottom:1114.320000px;}
.y11_c02195{bottom:1117.200450px;}
.ye_c02195{bottom:1134.840450px;}
.h3_c02195{height:32.530781px;}
.h5_c02195{height:36.720000px;}
.h4_c02195{height:41.402813px;}
.h1_c02195{height:41.696016px;}
.h2_c02195{height:41.812031px;}
.h7_c02195{height:53.067656px;}
.h6_c02195{height:53.215313px;}
.h0_c02195{height:1263.000000px;}
.w2_c02195{width:395.280000px;}
.w1_c02195{width:892.500000px;}
.w0_c02195{width:892.830000px;}
.x0_c02195{left:0.000000px;}
.xd_c02195{left:117.000000px;}
.xe_c02195{left:161.280000px;}
.x8_c02195{left:440.999856px;}
.x4_c02195{left:445.680576px;}
.xb_c02195{left:451.080000px;}
.x7_c02195{left:455.399604px;}
.x5_c02195{left:461.880144px;}
.x1_c02195{left:463.320000px;}
.xa_c02195{left:483.480360px;}
.x9_c02195{left:492.119496px;}
.x6_c02195{left:493.200576px;}
.xc_c02195{left:506.880360px;}
.x3_c02195{left:511.919892px;}
.x2_c02195{left:526.679604px;}
@media print{
.v0_c02195{vertical-align:0.000000pt;}
.lsa_c02195{letter-spacing:-0.671616pt;}
.ls8_c02195{letter-spacing:-0.544896pt;}
.lsb_c02195{letter-spacing:-0.511104pt;}
.lse_c02195{letter-spacing:-0.380160pt;}
.ls11_c02195{letter-spacing:-0.244992pt;}
.lsf_c02195{letter-spacing:-0.232320pt;}
.ls7_c02195{letter-spacing:-0.215424pt;}
.ls5_c02195{letter-spacing:-0.105600pt;}
.ls13_c02195{letter-spacing:0.000000pt;}
.ls2_c02195{letter-spacing:0.005376pt;}
.ls6_c02195{letter-spacing:0.114048pt;}
.lsd_c02195{letter-spacing:0.451968pt;}
.ls1_c02195{letter-spacing:0.456960pt;}
.ls10_c02195{letter-spacing:0.477312pt;}
.lsc_c02195{letter-spacing:0.515328pt;}
.ls12_c02195{letter-spacing:0.528000pt;}
.ls9_c02195{letter-spacing:0.532224pt;}
.ls3_c02195{letter-spacing:0.544896pt;}
.ls0_c02195{letter-spacing:0.637824pt;}
.ls4_c02195{letter-spacing:0.642048pt;}
.wsb_c02195{word-spacing:-13.896960pt;}
.wsc_c02195{word-spacing:-13.445376pt;}
.wsa_c02195{word-spacing:-11.088000pt;}
.ws8_c02195{word-spacing:-11.075328pt;}
.ws9_c02195{word-spacing:-11.037312pt;}
.ws2_c02195{word-spacing:-10.015104pt;}
.ws4_c02195{word-spacing:-9.888384pt;}
.ws14_c02195{word-spacing:-3.198720pt;}
.ws10_c02195{word-spacing:-0.958848pt;}
.wsd_c02195{word-spacing:-0.865920pt;}
.wsf_c02195{word-spacing:-0.105600pt;}
.ws12_c02195{word-spacing:-0.088704pt;}
.ws13_c02195{word-spacing:-0.076032pt;}
.wse_c02195{word-spacing:0.000000pt;}
.ws11_c02195{word-spacing:0.059136pt;}
.ws6_c02195{word-spacing:32.659968pt;}
.ws1_c02195{word-spacing:33.563904pt;}
.ws0_c02195{word-spacing:33.796224pt;}
.ws3_c02195{word-spacing:34.860672pt;}
.ws5_c02195{word-spacing:35.468928pt;}
.ws7_c02195{word-spacing:37.357056pt;}
._0_c02195{margin-left:-1.731840pt;}
._2_c02195{width:1.317888pt;}
._4_c02195{width:2.994816pt;}
._1_c02195{width:44.668800pt;}
._3_c02195{width:45.805056pt;}
.fs0_c02195{font-size:42.240000pt;}
.fs1_c02195{font-size:53.760000pt;}
.y0_c02195{bottom:0.000000pt;}
.y10_c02195{bottom:18.560400pt;}
.y1c_c02195{bottom:130.665211pt;}
.y1e_c02195{bottom:165.866875pt;}
.y1d_c02195{bottom:174.507067pt;}
.y1b_c02195{bottom:245.225371pt;}
.y1a_c02195{bottom:317.225563pt;}
.y18_c02195{bottom:361.386427pt;}
.y14_c02195{bottom:377.386939pt;}
.y19_c02195{bottom:407.786011pt;}
.y17_c02195{bottom:437.226235pt;}
.y16_c02195{bottom:453.226747pt;}
.y13_c02195{bottom:482.666971pt;}
.y15_c02195{bottom:497.386555pt;}
.y12_c02195{bottom:513.387067pt;}
.y20_c02195{bottom:527.786667pt;}
.y21_c02195{bottom:530.347067pt;}
.y1f_c02195{bottom:546.027067pt;}
.yb_c02195{bottom:593.385179pt;}
.yd_c02195{bottom:628.586875pt;}
.yc_c02195{bottom:637.227067pt;}
.ya_c02195{bottom:707.945339pt;}
.y9_c02195{bottom:779.945531pt;}
.y7_c02195{bottom:823.786427pt;}
.y3_c02195{bottom:839.786939pt;}
.y8_c02195{bottom:870.505979pt;}
.y6_c02195{bottom:899.946203pt;}
.y5_c02195{bottom:915.946715pt;}
.y2_c02195{bottom:945.386939pt;}
.y4_c02195{bottom:959.786555pt;}
.y1_c02195{bottom:975.787067pt;}
.yf_c02195{bottom:990.506667pt;}
.y11_c02195{bottom:993.067067pt;}
.ye_c02195{bottom:1008.747067pt;}
.h3_c02195{height:28.916250pt;}
.h5_c02195{height:32.640000pt;}
.h4_c02195{height:36.802500pt;}
.h1_c02195{height:37.063125pt;}
.h2_c02195{height:37.166250pt;}
.h7_c02195{height:47.171250pt;}
.h6_c02195{height:47.302500pt;}
.h0_c02195{height:1122.666667pt;}
.w2_c02195{width:351.360000pt;}
.w1_c02195{width:793.333333pt;}
.w0_c02195{width:793.626667pt;}
.x0_c02195{left:0.000000pt;}
.xd_c02195{left:104.000000pt;}
.xe_c02195{left:143.360000pt;}
.x8_c02195{left:391.999872pt;}
.x4_c02195{left:396.160512pt;}
.xb_c02195{left:400.960000pt;}
.x7_c02195{left:404.799648pt;}
.x5_c02195{left:410.560128pt;}
.x1_c02195{left:411.840000pt;}
.xa_c02195{left:429.760320pt;}
.x9_c02195{left:437.439552pt;}
.x6_c02195{left:438.400512pt;}
.xc_c02195{left:450.560320pt;}
.x3_c02195{left:455.039904pt;}
.x2_c02195{left:468.159648pt;}
}





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

.ir_c02196:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02196{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02196;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02196{font-family:ff1_c02196;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02196;src:url('chunks/assets/font_b573e8bcfaa848dc9838dfa8.woff2')format("woff");}.ff2_c02196{font-family:ff2_c02196;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02196;src:url('chunks/assets/font_06b2b50016cb0a2429f163ed.woff2')format("woff");}.ff3_c02196{font-family:ff3_c02196;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02196{vertical-align:0.000000px;}
.v1_c02196{vertical-align:1.439424px;}
.ls15_c02196{letter-spacing:-0.755568px;}
.ls10_c02196{letter-spacing:-0.736560px;}
.ls14_c02196{letter-spacing:-0.613008px;}
.ls9_c02196{letter-spacing:-0.574992px;}
.ls16_c02196{letter-spacing:-0.427680px;}
.ls17_c02196{letter-spacing:-0.275616px;}
.ls11_c02196{letter-spacing:-0.270864px;}
.lse_c02196{letter-spacing:-0.261360px;}
.ls7_c02196{letter-spacing:-0.242352px;}
.ls5_c02196{letter-spacing:-0.118800px;}
.ls13_c02196{letter-spacing:0.000000px;}
.ls1_c02196{letter-spacing:0.006048px;}
.lsd_c02196{letter-spacing:0.038016px;}
.ls6_c02196{letter-spacing:0.128304px;}
.lsc_c02196{letter-spacing:0.508464px;}
.ls0_c02196{letter-spacing:0.514080px;}
.lsf_c02196{letter-spacing:0.536976px;}
.lsb_c02196{letter-spacing:0.579744px;}
.ls12_c02196{letter-spacing:0.594000px;}
.ls8_c02196{letter-spacing:0.598752px;}
.ls3_c02196{letter-spacing:0.613008px;}
.lsa_c02196{letter-spacing:0.665280px;}
.ls2_c02196{letter-spacing:0.717552px;}
.ls4_c02196{letter-spacing:0.722304px;}
.sc__c02196{text-shadow:none;}
.sc0_c02196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02196{-webkit-text-stroke:0px transparent;}
.sc0_c02196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02196{word-spacing:-15.634080px;}
.wsd_c02196{word-spacing:-15.126048px;}
.wsb_c02196{word-spacing:-12.474000px;}
.ws8_c02196{word-spacing:-12.459744px;}
.ws10_c02196{word-spacing:-12.416976px;}
.ws4_c02196{word-spacing:-11.637648px;}
.wse_c02196{word-spacing:-11.266992px;}
.wsf_c02196{word-spacing:-11.124432px;}
.ws1a_c02196{word-spacing:-3.598560px;}
.ws1d_c02196{word-spacing:-2.159136px;}
.ws1b_c02196{word-spacing:-1.078704px;}
.ws15_c02196{word-spacing:-1.026432px;}
.ws12_c02196{word-spacing:-0.974160px;}
.ws16_c02196{word-spacing:-0.399168px;}
.ws14_c02196{word-spacing:-0.118800px;}
.ws17_c02196{word-spacing:-0.099792px;}
.ws18_c02196{word-spacing:-0.090288px;}
.ws19_c02196{word-spacing:-0.085536px;}
.ws13_c02196{word-spacing:0.000000px;}
.ws1c_c02196{word-spacing:0.066528px;}
.ws2_c02196{word-spacing:1.330560px;}
.wsa_c02196{word-spacing:6.629040px;}
.ws11_c02196{word-spacing:33.300288px;}
.ws9_c02196{word-spacing:34.836912px;}
.ws6_c02196{word-spacing:36.742464px;}
.ws1_c02196{word-spacing:37.759392px;}
.ws0_c02196{word-spacing:38.020752px;}
.ws3_c02196{word-spacing:39.218256px;}
.ws5_c02196{word-spacing:39.902544px;}
.ws7_c02196{word-spacing:42.026688px;}
._0_c02196{margin-left:-1.948320px;}
._2_c02196{width:1.482624px;}
._8_c02196{width:3.369168px;}
._4_c02196{width:4.785264px;}
._9_c02196{width:14.148864px;}
._6_c02196{width:19.982160px;}
._7_c02196{width:23.451120px;}
._5_c02196{width:24.691392px;}
._1_c02196{width:50.252400px;}
._3_c02196{width:51.530688px;}
.fc0_c02196{color:rgb(0,0,0);}
.fs0_c02196{font-size:47.520000px;}
.fs1_c02196{font-size:60.480000px;}
.y0_c02196{bottom:0.000000px;}
.y11_c02196{bottom:20.880450px;}
.y1d_c02196{bottom:146.998362px;}
.y1f_c02196{bottom:186.600234px;}
.y1e_c02196{bottom:196.320450px;}
.y1c_c02196{bottom:275.878542px;}
.y1b_c02196{bottom:356.878758px;}
.y19_c02196{bottom:406.559730px;}
.y15_c02196{bottom:424.560306px;}
.y1a_c02196{bottom:458.759262px;}
.y18_c02196{bottom:491.879514px;}
.y17_c02196{bottom:509.880090px;}
.y14_c02196{bottom:543.000342px;}
.y16_c02196{bottom:559.559874px;}
.y13_c02196{bottom:577.560450px;}
.y20_c02196{bottom:614.280450px;}
.yc_c02196{bottom:652.438650px;}
.yb_c02196{bottom:667.558326px;}
.ye_c02196{bottom:707.160234px;}
.yd_c02196{bottom:716.880450px;}
.ya_c02196{bottom:796.438506px;}
.y9_c02196{bottom:877.438722px;}
.y7_c02196{bottom:926.759730px;}
.y3_c02196{bottom:944.760306px;}
.y8_c02196{bottom:979.319226px;}
.y6_c02196{bottom:1012.439478px;}
.y5_c02196{bottom:1030.440054px;}
.y2_c02196{bottom:1063.560306px;}
.y4_c02196{bottom:1079.759874px;}
.y1_c02196{bottom:1097.760450px;}
.y10_c02196{bottom:1114.320000px;}
.y12_c02196{bottom:1117.200450px;}
.yf_c02196{bottom:1134.840450px;}
.h3_c02196{height:32.530781px;}
.h5_c02196{height:36.720000px;}
.h4_c02196{height:41.402813px;}
.h1_c02196{height:41.696016px;}
.h2_c02196{height:41.812031px;}
.h7_c02196{height:53.067656px;}
.h6_c02196{height:53.215313px;}
.h8_c02196{height:54.654737px;}
.h0_c02196{height:1263.000000px;}
.w2_c02196{width:395.280000px;}
.w1_c02196{width:892.500000px;}
.w0_c02196{width:892.830000px;}
.x0_c02196{left:0.000000px;}
.xe_c02196{left:117.000000px;}
.xf_c02196{left:161.280000px;}
.x8_c02196{left:440.999856px;}
.x4_c02196{left:445.680576px;}
.xc_c02196{left:451.080000px;}
.x7_c02196{left:455.399604px;}
.x5_c02196{left:461.880144px;}
.x1_c02196{left:463.320000px;}
.xa_c02196{left:483.480360px;}
.x9_c02196{left:492.119496px;}
.x6_c02196{left:493.200576px;}
.xd_c02196{left:506.880360px;}
.x3_c02196{left:511.919892px;}
.x2_c02196{left:526.679604px;}
.xb_c02196{left:569.880036px;}
@media print{
.v0_c02196{vertical-align:0.000000pt;}
.v1_c02196{vertical-align:1.279488pt;}
.ls15_c02196{letter-spacing:-0.671616pt;}
.ls10_c02196{letter-spacing:-0.654720pt;}
.ls14_c02196{letter-spacing:-0.544896pt;}
.ls9_c02196{letter-spacing:-0.511104pt;}
.ls16_c02196{letter-spacing:-0.380160pt;}
.ls17_c02196{letter-spacing:-0.244992pt;}
.ls11_c02196{letter-spacing:-0.240768pt;}
.lse_c02196{letter-spacing:-0.232320pt;}
.ls7_c02196{letter-spacing:-0.215424pt;}
.ls5_c02196{letter-spacing:-0.105600pt;}
.ls13_c02196{letter-spacing:0.000000pt;}
.ls1_c02196{letter-spacing:0.005376pt;}
.lsd_c02196{letter-spacing:0.033792pt;}
.ls6_c02196{letter-spacing:0.114048pt;}
.lsc_c02196{letter-spacing:0.451968pt;}
.ls0_c02196{letter-spacing:0.456960pt;}
.lsf_c02196{letter-spacing:0.477312pt;}
.lsb_c02196{letter-spacing:0.515328pt;}
.ls12_c02196{letter-spacing:0.528000pt;}
.ls8_c02196{letter-spacing:0.532224pt;}
.ls3_c02196{letter-spacing:0.544896pt;}
.lsa_c02196{letter-spacing:0.591360pt;}
.ls2_c02196{letter-spacing:0.637824pt;}
.ls4_c02196{letter-spacing:0.642048pt;}
.wsc_c02196{word-spacing:-13.896960pt;}
.wsd_c02196{word-spacing:-13.445376pt;}
.wsb_c02196{word-spacing:-11.088000pt;}
.ws8_c02196{word-spacing:-11.075328pt;}
.ws10_c02196{word-spacing:-11.037312pt;}
.ws4_c02196{word-spacing:-10.344576pt;}
.wse_c02196{word-spacing:-10.015104pt;}
.wsf_c02196{word-spacing:-9.888384pt;}
.ws1a_c02196{word-spacing:-3.198720pt;}
.ws1d_c02196{word-spacing:-1.919232pt;}
.ws1b_c02196{word-spacing:-0.958848pt;}
.ws15_c02196{word-spacing:-0.912384pt;}
.ws12_c02196{word-spacing:-0.865920pt;}
.ws16_c02196{word-spacing:-0.354816pt;}
.ws14_c02196{word-spacing:-0.105600pt;}
.ws17_c02196{word-spacing:-0.088704pt;}
.ws18_c02196{word-spacing:-0.080256pt;}
.ws19_c02196{word-spacing:-0.076032pt;}
.ws13_c02196{word-spacing:0.000000pt;}
.ws1c_c02196{word-spacing:0.059136pt;}
.ws2_c02196{word-spacing:1.182720pt;}
.wsa_c02196{word-spacing:5.892480pt;}
.ws11_c02196{word-spacing:29.600256pt;}
.ws9_c02196{word-spacing:30.966144pt;}
.ws6_c02196{word-spacing:32.659968pt;}
.ws1_c02196{word-spacing:33.563904pt;}
.ws0_c02196{word-spacing:33.796224pt;}
.ws3_c02196{word-spacing:34.860672pt;}
.ws5_c02196{word-spacing:35.468928pt;}
.ws7_c02196{word-spacing:37.357056pt;}
._0_c02196{margin-left:-1.731840pt;}
._2_c02196{width:1.317888pt;}
._8_c02196{width:2.994816pt;}
._4_c02196{width:4.253568pt;}
._9_c02196{width:12.576768pt;}
._6_c02196{width:17.761920pt;}
._7_c02196{width:20.845440pt;}
._5_c02196{width:21.947904pt;}
._1_c02196{width:44.668800pt;}
._3_c02196{width:45.805056pt;}
.fs0_c02196{font-size:42.240000pt;}
.fs1_c02196{font-size:53.760000pt;}
.y0_c02196{bottom:0.000000pt;}
.y11_c02196{bottom:18.560400pt;}
.y1d_c02196{bottom:130.665211pt;}
.y1f_c02196{bottom:165.866875pt;}
.y1e_c02196{bottom:174.507067pt;}
.y1c_c02196{bottom:245.225371pt;}
.y1b_c02196{bottom:317.225563pt;}
.y19_c02196{bottom:361.386427pt;}
.y15_c02196{bottom:377.386939pt;}
.y1a_c02196{bottom:407.786011pt;}
.y18_c02196{bottom:437.226235pt;}
.y17_c02196{bottom:453.226747pt;}
.y14_c02196{bottom:482.666971pt;}
.y16_c02196{bottom:497.386555pt;}
.y13_c02196{bottom:513.387067pt;}
.y20_c02196{bottom:546.027067pt;}
.yc_c02196{bottom:579.945467pt;}
.yb_c02196{bottom:593.385179pt;}
.ye_c02196{bottom:628.586875pt;}
.yd_c02196{bottom:637.227067pt;}
.ya_c02196{bottom:707.945339pt;}
.y9_c02196{bottom:779.945531pt;}
.y7_c02196{bottom:823.786427pt;}
.y3_c02196{bottom:839.786939pt;}
.y8_c02196{bottom:870.505979pt;}
.y6_c02196{bottom:899.946203pt;}
.y5_c02196{bottom:915.946715pt;}
.y2_c02196{bottom:945.386939pt;}
.y4_c02196{bottom:959.786555pt;}
.y1_c02196{bottom:975.787067pt;}
.y10_c02196{bottom:990.506667pt;}
.y12_c02196{bottom:993.067067pt;}
.yf_c02196{bottom:1008.747067pt;}
.h3_c02196{height:28.916250pt;}
.h5_c02196{height:32.640000pt;}
.h4_c02196{height:36.802500pt;}
.h1_c02196{height:37.063125pt;}
.h2_c02196{height:37.166250pt;}
.h7_c02196{height:47.171250pt;}
.h6_c02196{height:47.302500pt;}
.h8_c02196{height:48.581988pt;}
.h0_c02196{height:1122.666667pt;}
.w2_c02196{width:351.360000pt;}
.w1_c02196{width:793.333333pt;}
.w0_c02196{width:793.626667pt;}
.x0_c02196{left:0.000000pt;}
.xe_c02196{left:104.000000pt;}
.xf_c02196{left:143.360000pt;}
.x8_c02196{left:391.999872pt;}
.x4_c02196{left:396.160512pt;}
.xc_c02196{left:400.960000pt;}
.x7_c02196{left:404.799648pt;}
.x5_c02196{left:410.560128pt;}
.x1_c02196{left:411.840000pt;}
.xa_c02196{left:429.760320pt;}
.x9_c02196{left:437.439552pt;}
.x6_c02196{left:438.400512pt;}
.xd_c02196{left:450.560320pt;}
.x3_c02196{left:455.039904pt;}
.x2_c02196{left:468.159648pt;}
.xb_c02196{left:506.560032pt;}
}





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

.ir_c02197:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02197{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02197;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02197{font-family:ff1_c02197;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02197;src:url('chunks/assets/font_964e737c136f0f18ac0f02ed.woff2')format("woff");}.ff2_c02197{font-family:ff2_c02197;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02197;src:url('chunks/assets/font_a04f6b70b9ca59813a3fbf2d.woff2')format("woff");}.ff3_c02197{font-family:ff3_c02197;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02197{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02197{vertical-align:0.000000px;}
.v1_c02197{vertical-align:1.439424px;}
.ls9_c02197{letter-spacing:-0.755568px;}
.ls7_c02197{letter-spacing:-0.613008px;}
.lsa_c02197{letter-spacing:-0.574992px;}
.lsd_c02197{letter-spacing:-0.427680px;}
.lsf_c02197{letter-spacing:-0.380160px;}
.ls11_c02197{letter-spacing:-0.275616px;}
.lse_c02197{letter-spacing:-0.261360px;}
.ls6_c02197{letter-spacing:-0.242352px;}
.ls4_c02197{letter-spacing:-0.118800px;}
.ls14_c02197{letter-spacing:0.000000px;}
.ls2_c02197{letter-spacing:0.006048px;}
.ls5_c02197{letter-spacing:0.128304px;}
.lsc_c02197{letter-spacing:0.508464px;}
.ls13_c02197{letter-spacing:0.514080px;}
.ls10_c02197{letter-spacing:0.536976px;}
.lsb_c02197{letter-spacing:0.579744px;}
.ls12_c02197{letter-spacing:0.594000px;}
.ls8_c02197{letter-spacing:0.598752px;}
.ls3_c02197{letter-spacing:0.613008px;}
.ls0_c02197{letter-spacing:0.717552px;}
.ls1_c02197{letter-spacing:0.722304px;}
.sc__c02197{text-shadow:none;}
.sc0_c02197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02197{-webkit-text-stroke:0px transparent;}
.sc0_c02197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02197{word-spacing:-15.126048px;}
.ws9_c02197{word-spacing:-12.474000px;}
.ws6_c02197{word-spacing:-12.459744px;}
.ws8_c02197{word-spacing:-12.416976px;}
.ws2_c02197{word-spacing:-11.266992px;}
.ws4_c02197{word-spacing:-11.124432px;}
.ws16_c02197{word-spacing:-2.159136px;}
.ws12_c02197{word-spacing:-1.083456px;}
.ws10_c02197{word-spacing:-1.078704px;}
.wsd_c02197{word-spacing:-0.974160px;}
.wsf_c02197{word-spacing:-0.118800px;}
.ws13_c02197{word-spacing:-0.099792px;}
.ws15_c02197{word-spacing:-0.085536px;}
.wse_c02197{word-spacing:0.000000px;}
.ws14_c02197{word-spacing:0.019008px;}
.ws11_c02197{word-spacing:0.066528px;}
.wsa_c02197{word-spacing:33.300288px;}
.wsc_c02197{word-spacing:36.742464px;}
.ws1_c02197{word-spacing:37.759392px;}
.ws0_c02197{word-spacing:38.020752px;}
.ws3_c02197{word-spacing:39.218256px;}
.ws5_c02197{word-spacing:39.902544px;}
.ws7_c02197{word-spacing:42.026688px;}
._0_c02197{margin-left:-1.948320px;}
._2_c02197{width:1.482624px;}
._4_c02197{width:3.369168px;}
._5_c02197{width:14.148864px;}
._1_c02197{width:50.252400px;}
._3_c02197{width:51.530688px;}
.fc0_c02197{color:rgb(0,0,0);}
.fs0_c02197{font-size:47.520000px;}
.fs1_c02197{font-size:60.480000px;}
.y0_c02197{bottom:0.000000px;}
.yb_c02197{bottom:66.240450px;}
.y1c_c02197{bottom:146.998362px;}
.y1e_c02197{bottom:186.600234px;}
.y1d_c02197{bottom:196.320450px;}
.y1b_c02197{bottom:275.878542px;}
.y1a_c02197{bottom:356.878758px;}
.y18_c02197{bottom:406.559730px;}
.y14_c02197{bottom:424.560306px;}
.y19_c02197{bottom:458.759262px;}
.y17_c02197{bottom:491.879514px;}
.y16_c02197{bottom:509.880090px;}
.y13_c02197{bottom:543.000342px;}
.y15_c02197{bottom:559.559874px;}
.y12_c02197{bottom:577.560450px;}
.y1f_c02197{bottom:614.280450px;}
.ye_c02197{bottom:667.560054px;}
.y10_c02197{bottom:707.160234px;}
.yf_c02197{bottom:716.880450px;}
.yd_c02197{bottom:796.440234px;}
.ya_c02197{bottom:811.200000px;}
.y9_c02197{bottom:877.438722px;}
.yc_c02197{bottom:877.440450px;}
.y7_c02197{bottom:926.759730px;}
.y3_c02197{bottom:944.760306px;}
.y8_c02197{bottom:979.319226px;}
.y6_c02197{bottom:1012.439478px;}
.y5_c02197{bottom:1030.440054px;}
.y2_c02197{bottom:1063.560306px;}
.y4_c02197{bottom:1079.759874px;}
.y1_c02197{bottom:1097.760450px;}
.y11_c02197{bottom:1134.840450px;}
.h3_c02197{height:32.530781px;}
.h1_c02197{height:41.696016px;}
.h2_c02197{height:41.812031px;}
.h5_c02197{height:54.654737px;}
.h4_c02197{height:78.840000px;}
.h0_c02197{height:1263.000000px;}
.w2_c02197{width:215.280000px;}
.w1_c02197{width:892.500000px;}
.w0_c02197{width:892.830000px;}
.x0_c02197{left:0.000000px;}
.xf_c02197{left:117.000000px;}
.x8_c02197{left:440.999856px;}
.x4_c02197{left:445.680576px;}
.xd_c02197{left:451.080000px;}
.x7_c02197{left:455.399604px;}
.x5_c02197{left:461.880144px;}
.x1_c02197{left:463.320000px;}
.xc_c02197{left:483.480108px;}
.x9_c02197{left:492.119496px;}
.x6_c02197{left:493.200576px;}
.xe_c02197{left:506.880360px;}
.x3_c02197{left:511.919892px;}
.x2_c02197{left:526.679604px;}
.xa_c02197{left:569.520000px;}
.xb_c02197{left:650.880000px;}
@media print{
.v0_c02197{vertical-align:0.000000pt;}
.v1_c02197{vertical-align:1.279488pt;}
.ls9_c02197{letter-spacing:-0.671616pt;}
.ls7_c02197{letter-spacing:-0.544896pt;}
.lsa_c02197{letter-spacing:-0.511104pt;}
.lsd_c02197{letter-spacing:-0.380160pt;}
.lsf_c02197{letter-spacing:-0.337920pt;}
.ls11_c02197{letter-spacing:-0.244992pt;}
.lse_c02197{letter-spacing:-0.232320pt;}
.ls6_c02197{letter-spacing:-0.215424pt;}
.ls4_c02197{letter-spacing:-0.105600pt;}
.ls14_c02197{letter-spacing:0.000000pt;}
.ls2_c02197{letter-spacing:0.005376pt;}
.ls5_c02197{letter-spacing:0.114048pt;}
.lsc_c02197{letter-spacing:0.451968pt;}
.ls13_c02197{letter-spacing:0.456960pt;}
.ls10_c02197{letter-spacing:0.477312pt;}
.lsb_c02197{letter-spacing:0.515328pt;}
.ls12_c02197{letter-spacing:0.528000pt;}
.ls8_c02197{letter-spacing:0.532224pt;}
.ls3_c02197{letter-spacing:0.544896pt;}
.ls0_c02197{letter-spacing:0.637824pt;}
.ls1_c02197{letter-spacing:0.642048pt;}
.wsb_c02197{word-spacing:-13.445376pt;}
.ws9_c02197{word-spacing:-11.088000pt;}
.ws6_c02197{word-spacing:-11.075328pt;}
.ws8_c02197{word-spacing:-11.037312pt;}
.ws2_c02197{word-spacing:-10.015104pt;}
.ws4_c02197{word-spacing:-9.888384pt;}
.ws16_c02197{word-spacing:-1.919232pt;}
.ws12_c02197{word-spacing:-0.963072pt;}
.ws10_c02197{word-spacing:-0.958848pt;}
.wsd_c02197{word-spacing:-0.865920pt;}
.wsf_c02197{word-spacing:-0.105600pt;}
.ws13_c02197{word-spacing:-0.088704pt;}
.ws15_c02197{word-spacing:-0.076032pt;}
.wse_c02197{word-spacing:0.000000pt;}
.ws14_c02197{word-spacing:0.016896pt;}
.ws11_c02197{word-spacing:0.059136pt;}
.wsa_c02197{word-spacing:29.600256pt;}
.wsc_c02197{word-spacing:32.659968pt;}
.ws1_c02197{word-spacing:33.563904pt;}
.ws0_c02197{word-spacing:33.796224pt;}
.ws3_c02197{word-spacing:34.860672pt;}
.ws5_c02197{word-spacing:35.468928pt;}
.ws7_c02197{word-spacing:37.357056pt;}
._0_c02197{margin-left:-1.731840pt;}
._2_c02197{width:1.317888pt;}
._4_c02197{width:2.994816pt;}
._5_c02197{width:12.576768pt;}
._1_c02197{width:44.668800pt;}
._3_c02197{width:45.805056pt;}
.fs0_c02197{font-size:42.240000pt;}
.fs1_c02197{font-size:53.760000pt;}
.y0_c02197{bottom:0.000000pt;}
.yb_c02197{bottom:58.880400pt;}
.y1c_c02197{bottom:130.665211pt;}
.y1e_c02197{bottom:165.866875pt;}
.y1d_c02197{bottom:174.507067pt;}
.y1b_c02197{bottom:245.225371pt;}
.y1a_c02197{bottom:317.225563pt;}
.y18_c02197{bottom:361.386427pt;}
.y14_c02197{bottom:377.386939pt;}
.y19_c02197{bottom:407.786011pt;}
.y17_c02197{bottom:437.226235pt;}
.y16_c02197{bottom:453.226747pt;}
.y13_c02197{bottom:482.666971pt;}
.y15_c02197{bottom:497.386555pt;}
.y12_c02197{bottom:513.387067pt;}
.y1f_c02197{bottom:546.027067pt;}
.ye_c02197{bottom:593.386715pt;}
.y10_c02197{bottom:628.586875pt;}
.yf_c02197{bottom:637.227067pt;}
.yd_c02197{bottom:707.946875pt;}
.ya_c02197{bottom:721.066667pt;}
.y9_c02197{bottom:779.945531pt;}
.yc_c02197{bottom:779.947067pt;}
.y7_c02197{bottom:823.786427pt;}
.y3_c02197{bottom:839.786939pt;}
.y8_c02197{bottom:870.505979pt;}
.y6_c02197{bottom:899.946203pt;}
.y5_c02197{bottom:915.946715pt;}
.y2_c02197{bottom:945.386939pt;}
.y4_c02197{bottom:959.786555pt;}
.y1_c02197{bottom:975.787067pt;}
.y11_c02197{bottom:1008.747067pt;}
.h3_c02197{height:28.916250pt;}
.h1_c02197{height:37.063125pt;}
.h2_c02197{height:37.166250pt;}
.h5_c02197{height:48.581988pt;}
.h4_c02197{height:70.080000pt;}
.h0_c02197{height:1122.666667pt;}
.w2_c02197{width:191.360000pt;}
.w1_c02197{width:793.333333pt;}
.w0_c02197{width:793.626667pt;}
.x0_c02197{left:0.000000pt;}
.xf_c02197{left:104.000000pt;}
.x8_c02197{left:391.999872pt;}
.x4_c02197{left:396.160512pt;}
.xd_c02197{left:400.960000pt;}
.x7_c02197{left:404.799648pt;}
.x5_c02197{left:410.560128pt;}
.x1_c02197{left:411.840000pt;}
.xc_c02197{left:429.760096pt;}
.x9_c02197{left:437.439552pt;}
.x6_c02197{left:438.400512pt;}
.xe_c02197{left:450.560320pt;}
.x3_c02197{left:455.039904pt;}
.x2_c02197{left:468.159648pt;}
.xa_c02197{left:506.240000pt;}
.xb_c02197{left:578.560000pt;}
}





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

.ir_c02198:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02198{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02198;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02198{font-family:ff1_c02198;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02198;src:url('chunks/assets/font_188d4551c3ddfce5373c1712.woff2')format("woff");}.ff2_c02198{font-family:ff2_c02198;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02198;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02198{font-family:ff3_c02198;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02198{vertical-align:0.000000px;}
.v1_c02198{vertical-align:1.439424px;}
.ls9_c02198{letter-spacing:-0.755568px;}
.ls7_c02198{letter-spacing:-0.613008px;}
.lsa_c02198{letter-spacing:-0.574992px;}
.lsd_c02198{letter-spacing:-0.427680px;}
.ls10_c02198{letter-spacing:-0.275616px;}
.lse_c02198{letter-spacing:-0.261360px;}
.ls6_c02198{letter-spacing:-0.242352px;}
.ls4_c02198{letter-spacing:-0.118800px;}
.ls13_c02198{letter-spacing:0.000000px;}
.ls1_c02198{letter-spacing:0.006048px;}
.ls5_c02198{letter-spacing:0.128304px;}
.lsc_c02198{letter-spacing:0.508464px;}
.ls12_c02198{letter-spacing:0.514080px;}
.lsf_c02198{letter-spacing:0.536976px;}
.lsb_c02198{letter-spacing:0.579744px;}
.ls11_c02198{letter-spacing:0.594000px;}
.ls8_c02198{letter-spacing:0.598752px;}
.ls2_c02198{letter-spacing:0.613008px;}
.ls0_c02198{letter-spacing:0.717552px;}
.ls3_c02198{letter-spacing:0.722304px;}
.sc__c02198{text-shadow:none;}
.sc0_c02198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02198{-webkit-text-stroke:0px transparent;}
.sc0_c02198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02198{word-spacing:-15.126048px;}
.wsa_c02198{word-spacing:-12.474000px;}
.ws8_c02198{word-spacing:-12.459744px;}
.ws9_c02198{word-spacing:-12.416976px;}
.ws2_c02198{word-spacing:-11.266992px;}
.ws4_c02198{word-spacing:-11.124432px;}
.ws14_c02198{word-spacing:-2.159136px;}
.ws10_c02198{word-spacing:-1.078704px;}
.wsd_c02198{word-spacing:-0.974160px;}
.wsf_c02198{word-spacing:-0.118800px;}
.ws12_c02198{word-spacing:-0.099792px;}
.ws13_c02198{word-spacing:-0.085536px;}
.wse_c02198{word-spacing:0.000000px;}
.ws11_c02198{word-spacing:0.066528px;}
.wsb_c02198{word-spacing:33.300288px;}
.ws6_c02198{word-spacing:36.742464px;}
.ws1_c02198{word-spacing:37.759392px;}
.ws0_c02198{word-spacing:38.020752px;}
.ws3_c02198{word-spacing:39.218256px;}
.ws5_c02198{word-spacing:39.902544px;}
.ws7_c02198{word-spacing:42.026688px;}
._0_c02198{margin-left:-1.948320px;}
._2_c02198{width:1.482624px;}
._4_c02198{width:3.369168px;}
._5_c02198{width:14.148864px;}
._1_c02198{width:50.252400px;}
._3_c02198{width:51.530688px;}
.fc0_c02198{color:rgb(0,0,0);}
.fs0_c02198{font-size:47.520000px;}
.fs1_c02198{font-size:60.480000px;}
.y0_c02198{bottom:0.000000px;}
.y19_c02198{bottom:146.998362px;}
.y1b_c02198{bottom:186.600234px;}
.y1a_c02198{bottom:196.320450px;}
.y18_c02198{bottom:275.878542px;}
.y17_c02198{bottom:356.878758px;}
.y15_c02198{bottom:406.559730px;}
.y11_c02198{bottom:424.560306px;}
.y16_c02198{bottom:458.759262px;}
.y14_c02198{bottom:491.879514px;}
.y13_c02198{bottom:509.880090px;}
.y10_c02198{bottom:543.000342px;}
.y12_c02198{bottom:559.559874px;}
.yf_c02198{bottom:577.560450px;}
.y1c_c02198{bottom:614.280450px;}
.yb_c02198{bottom:667.558326px;}
.yd_c02198{bottom:707.160234px;}
.yc_c02198{bottom:716.880450px;}
.ya_c02198{bottom:796.438506px;}
.y9_c02198{bottom:877.438722px;}
.y7_c02198{bottom:926.759730px;}
.y3_c02198{bottom:944.760306px;}
.y8_c02198{bottom:979.319226px;}
.y6_c02198{bottom:1012.439478px;}
.y5_c02198{bottom:1030.440054px;}
.y2_c02198{bottom:1063.560306px;}
.y4_c02198{bottom:1079.759874px;}
.y1_c02198{bottom:1097.760450px;}
.ye_c02198{bottom:1134.840450px;}
.h3_c02198{height:32.530781px;}
.h1_c02198{height:41.696016px;}
.h2_c02198{height:41.812031px;}
.h4_c02198{height:54.654737px;}
.h0_c02198{height:1263.000000px;}
.w1_c02198{width:892.500000px;}
.w0_c02198{width:892.830000px;}
.x0_c02198{left:0.000000px;}
.xd_c02198{left:117.000000px;}
.x8_c02198{left:440.999856px;}
.x4_c02198{left:445.680576px;}
.xb_c02198{left:451.080000px;}
.x7_c02198{left:455.399604px;}
.x5_c02198{left:461.880144px;}
.x1_c02198{left:463.320000px;}
.xa_c02198{left:483.480360px;}
.x9_c02198{left:492.119496px;}
.x6_c02198{left:493.200576px;}
.xc_c02198{left:506.880360px;}
.x3_c02198{left:511.919892px;}
.x2_c02198{left:526.679604px;}
@media print{
.v0_c02198{vertical-align:0.000000pt;}
.v1_c02198{vertical-align:1.279488pt;}
.ls9_c02198{letter-spacing:-0.671616pt;}
.ls7_c02198{letter-spacing:-0.544896pt;}
.lsa_c02198{letter-spacing:-0.511104pt;}
.lsd_c02198{letter-spacing:-0.380160pt;}
.ls10_c02198{letter-spacing:-0.244992pt;}
.lse_c02198{letter-spacing:-0.232320pt;}
.ls6_c02198{letter-spacing:-0.215424pt;}
.ls4_c02198{letter-spacing:-0.105600pt;}
.ls13_c02198{letter-spacing:0.000000pt;}
.ls1_c02198{letter-spacing:0.005376pt;}
.ls5_c02198{letter-spacing:0.114048pt;}
.lsc_c02198{letter-spacing:0.451968pt;}
.ls12_c02198{letter-spacing:0.456960pt;}
.lsf_c02198{letter-spacing:0.477312pt;}
.lsb_c02198{letter-spacing:0.515328pt;}
.ls11_c02198{letter-spacing:0.528000pt;}
.ls8_c02198{letter-spacing:0.532224pt;}
.ls2_c02198{letter-spacing:0.544896pt;}
.ls0_c02198{letter-spacing:0.637824pt;}
.ls3_c02198{letter-spacing:0.642048pt;}
.wsc_c02198{word-spacing:-13.445376pt;}
.wsa_c02198{word-spacing:-11.088000pt;}
.ws8_c02198{word-spacing:-11.075328pt;}
.ws9_c02198{word-spacing:-11.037312pt;}
.ws2_c02198{word-spacing:-10.015104pt;}
.ws4_c02198{word-spacing:-9.888384pt;}
.ws14_c02198{word-spacing:-1.919232pt;}
.ws10_c02198{word-spacing:-0.958848pt;}
.wsd_c02198{word-spacing:-0.865920pt;}
.wsf_c02198{word-spacing:-0.105600pt;}
.ws12_c02198{word-spacing:-0.088704pt;}
.ws13_c02198{word-spacing:-0.076032pt;}
.wse_c02198{word-spacing:0.000000pt;}
.ws11_c02198{word-spacing:0.059136pt;}
.wsb_c02198{word-spacing:29.600256pt;}
.ws6_c02198{word-spacing:32.659968pt;}
.ws1_c02198{word-spacing:33.563904pt;}
.ws0_c02198{word-spacing:33.796224pt;}
.ws3_c02198{word-spacing:34.860672pt;}
.ws5_c02198{word-spacing:35.468928pt;}
.ws7_c02198{word-spacing:37.357056pt;}
._0_c02198{margin-left:-1.731840pt;}
._2_c02198{width:1.317888pt;}
._4_c02198{width:2.994816pt;}
._5_c02198{width:12.576768pt;}
._1_c02198{width:44.668800pt;}
._3_c02198{width:45.805056pt;}
.fs0_c02198{font-size:42.240000pt;}
.fs1_c02198{font-size:53.760000pt;}
.y0_c02198{bottom:0.000000pt;}
.y19_c02198{bottom:130.665211pt;}
.y1b_c02198{bottom:165.866875pt;}
.y1a_c02198{bottom:174.507067pt;}
.y18_c02198{bottom:245.225371pt;}
.y17_c02198{bottom:317.225563pt;}
.y15_c02198{bottom:361.386427pt;}
.y11_c02198{bottom:377.386939pt;}
.y16_c02198{bottom:407.786011pt;}
.y14_c02198{bottom:437.226235pt;}
.y13_c02198{bottom:453.226747pt;}
.y10_c02198{bottom:482.666971pt;}
.y12_c02198{bottom:497.386555pt;}
.yf_c02198{bottom:513.387067pt;}
.y1c_c02198{bottom:546.027067pt;}
.yb_c02198{bottom:593.385179pt;}
.yd_c02198{bottom:628.586875pt;}
.yc_c02198{bottom:637.227067pt;}
.ya_c02198{bottom:707.945339pt;}
.y9_c02198{bottom:779.945531pt;}
.y7_c02198{bottom:823.786427pt;}
.y3_c02198{bottom:839.786939pt;}
.y8_c02198{bottom:870.505979pt;}
.y6_c02198{bottom:899.946203pt;}
.y5_c02198{bottom:915.946715pt;}
.y2_c02198{bottom:945.386939pt;}
.y4_c02198{bottom:959.786555pt;}
.y1_c02198{bottom:975.787067pt;}
.ye_c02198{bottom:1008.747067pt;}
.h3_c02198{height:28.916250pt;}
.h1_c02198{height:37.063125pt;}
.h2_c02198{height:37.166250pt;}
.h4_c02198{height:48.581988pt;}
.h0_c02198{height:1122.666667pt;}
.w1_c02198{width:793.333333pt;}
.w0_c02198{width:793.626667pt;}
.x0_c02198{left:0.000000pt;}
.xd_c02198{left:104.000000pt;}
.x8_c02198{left:391.999872pt;}
.x4_c02198{left:396.160512pt;}
.xb_c02198{left:400.960000pt;}
.x7_c02198{left:404.799648pt;}
.x5_c02198{left:410.560128pt;}
.x1_c02198{left:411.840000pt;}
.xa_c02198{left:429.760320pt;}
.x9_c02198{left:437.439552pt;}
.x6_c02198{left:438.400512pt;}
.xc_c02198{left:450.560320pt;}
.x3_c02198{left:455.039904pt;}
.x2_c02198{left:468.159648pt;}
}





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

.ir_c02199:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02199{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02199;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02199{font-family:ff1_c02199;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02199;src:url('chunks/assets/font_670250688d5c3fd105c1f46f.woff2')format("woff");}.ff2_c02199{font-family:ff2_c02199;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02199;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02199{font-family:ff3_c02199;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02199{vertical-align:0.000000px;}
.v1_c02199{vertical-align:1.439424px;}
.ls9_c02199{letter-spacing:-0.755568px;}
.ls7_c02199{letter-spacing:-0.613008px;}
.lsa_c02199{letter-spacing:-0.574992px;}
.lsd_c02199{letter-spacing:-0.427680px;}
.ls10_c02199{letter-spacing:-0.275616px;}
.lse_c02199{letter-spacing:-0.261360px;}
.ls6_c02199{letter-spacing:-0.242352px;}
.ls4_c02199{letter-spacing:-0.118800px;}
.ls13_c02199{letter-spacing:0.000000px;}
.ls1_c02199{letter-spacing:0.006048px;}
.ls5_c02199{letter-spacing:0.128304px;}
.lsc_c02199{letter-spacing:0.508464px;}
.ls12_c02199{letter-spacing:0.514080px;}
.lsf_c02199{letter-spacing:0.536976px;}
.lsb_c02199{letter-spacing:0.579744px;}
.ls11_c02199{letter-spacing:0.594000px;}
.ls8_c02199{letter-spacing:0.598752px;}
.ls2_c02199{letter-spacing:0.613008px;}
.ls0_c02199{letter-spacing:0.717552px;}
.ls3_c02199{letter-spacing:0.722304px;}
.sc__c02199{text-shadow:none;}
.sc0_c02199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02199{-webkit-text-stroke:0px transparent;}
.sc0_c02199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02199{word-spacing:-15.126048px;}
.wsa_c02199{word-spacing:-12.474000px;}
.ws8_c02199{word-spacing:-12.459744px;}
.ws9_c02199{word-spacing:-12.416976px;}
.ws2_c02199{word-spacing:-11.266992px;}
.ws4_c02199{word-spacing:-11.124432px;}
.ws14_c02199{word-spacing:-2.159136px;}
.ws10_c02199{word-spacing:-1.078704px;}
.wsd_c02199{word-spacing:-0.974160px;}
.wsf_c02199{word-spacing:-0.118800px;}
.ws12_c02199{word-spacing:-0.099792px;}
.ws13_c02199{word-spacing:-0.085536px;}
.wse_c02199{word-spacing:0.000000px;}
.ws11_c02199{word-spacing:0.066528px;}
.wsb_c02199{word-spacing:33.300288px;}
.ws6_c02199{word-spacing:36.742464px;}
.ws1_c02199{word-spacing:37.759392px;}
.ws0_c02199{word-spacing:38.020752px;}
.ws3_c02199{word-spacing:39.218256px;}
.ws5_c02199{word-spacing:39.902544px;}
.ws7_c02199{word-spacing:42.026688px;}
._0_c02199{margin-left:-1.948320px;}
._2_c02199{width:1.482624px;}
._4_c02199{width:3.369168px;}
._5_c02199{width:14.148864px;}
._1_c02199{width:50.252400px;}
._3_c02199{width:51.530688px;}
.fc0_c02199{color:rgb(0,0,0);}
.fs0_c02199{font-size:47.520000px;}
.fs1_c02199{font-size:60.480000px;}
.y0_c02199{bottom:0.000000px;}
.y19_c02199{bottom:146.998362px;}
.y1b_c02199{bottom:186.600234px;}
.y1a_c02199{bottom:196.320450px;}
.y18_c02199{bottom:275.878542px;}
.y17_c02199{bottom:356.878758px;}
.y15_c02199{bottom:406.559730px;}
.y11_c02199{bottom:424.560306px;}
.y16_c02199{bottom:458.759262px;}
.y14_c02199{bottom:491.879514px;}
.y13_c02199{bottom:509.880090px;}
.y10_c02199{bottom:543.000342px;}
.y12_c02199{bottom:559.559874px;}
.yf_c02199{bottom:577.560450px;}
.y1c_c02199{bottom:614.280450px;}
.yb_c02199{bottom:667.558326px;}
.yd_c02199{bottom:707.160234px;}
.yc_c02199{bottom:716.880450px;}
.ya_c02199{bottom:796.438506px;}
.y9_c02199{bottom:877.438722px;}
.y7_c02199{bottom:926.759730px;}
.y3_c02199{bottom:944.760306px;}
.y8_c02199{bottom:979.319226px;}
.y6_c02199{bottom:1012.439478px;}
.y5_c02199{bottom:1030.440054px;}
.y2_c02199{bottom:1063.560306px;}
.y4_c02199{bottom:1079.759874px;}
.y1_c02199{bottom:1097.760450px;}
.ye_c02199{bottom:1134.840450px;}
.h3_c02199{height:32.530781px;}
.h1_c02199{height:41.696016px;}
.h2_c02199{height:41.812031px;}
.h4_c02199{height:54.654737px;}
.h0_c02199{height:1263.000000px;}
.w1_c02199{width:892.500000px;}
.w0_c02199{width:892.830000px;}
.x0_c02199{left:0.000000px;}
.xd_c02199{left:117.000000px;}
.x8_c02199{left:440.999856px;}
.x4_c02199{left:445.680576px;}
.xb_c02199{left:451.080000px;}
.x7_c02199{left:455.399604px;}
.x5_c02199{left:461.880144px;}
.x1_c02199{left:463.320000px;}
.xa_c02199{left:483.480360px;}
.x9_c02199{left:492.119496px;}
.x6_c02199{left:493.200576px;}
.xc_c02199{left:506.880360px;}
.x3_c02199{left:511.919892px;}
.x2_c02199{left:526.679604px;}
@media print{
.v0_c02199{vertical-align:0.000000pt;}
.v1_c02199{vertical-align:1.279488pt;}
.ls9_c02199{letter-spacing:-0.671616pt;}
.ls7_c02199{letter-spacing:-0.544896pt;}
.lsa_c02199{letter-spacing:-0.511104pt;}
.lsd_c02199{letter-spacing:-0.380160pt;}
.ls10_c02199{letter-spacing:-0.244992pt;}
.lse_c02199{letter-spacing:-0.232320pt;}
.ls6_c02199{letter-spacing:-0.215424pt;}
.ls4_c02199{letter-spacing:-0.105600pt;}
.ls13_c02199{letter-spacing:0.000000pt;}
.ls1_c02199{letter-spacing:0.005376pt;}
.ls5_c02199{letter-spacing:0.114048pt;}
.lsc_c02199{letter-spacing:0.451968pt;}
.ls12_c02199{letter-spacing:0.456960pt;}
.lsf_c02199{letter-spacing:0.477312pt;}
.lsb_c02199{letter-spacing:0.515328pt;}
.ls11_c02199{letter-spacing:0.528000pt;}
.ls8_c02199{letter-spacing:0.532224pt;}
.ls2_c02199{letter-spacing:0.544896pt;}
.ls0_c02199{letter-spacing:0.637824pt;}
.ls3_c02199{letter-spacing:0.642048pt;}
.wsc_c02199{word-spacing:-13.445376pt;}
.wsa_c02199{word-spacing:-11.088000pt;}
.ws8_c02199{word-spacing:-11.075328pt;}
.ws9_c02199{word-spacing:-11.037312pt;}
.ws2_c02199{word-spacing:-10.015104pt;}
.ws4_c02199{word-spacing:-9.888384pt;}
.ws14_c02199{word-spacing:-1.919232pt;}
.ws10_c02199{word-spacing:-0.958848pt;}
.wsd_c02199{word-spacing:-0.865920pt;}
.wsf_c02199{word-spacing:-0.105600pt;}
.ws12_c02199{word-spacing:-0.088704pt;}
.ws13_c02199{word-spacing:-0.076032pt;}
.wse_c02199{word-spacing:0.000000pt;}
.ws11_c02199{word-spacing:0.059136pt;}
.wsb_c02199{word-spacing:29.600256pt;}
.ws6_c02199{word-spacing:32.659968pt;}
.ws1_c02199{word-spacing:33.563904pt;}
.ws0_c02199{word-spacing:33.796224pt;}
.ws3_c02199{word-spacing:34.860672pt;}
.ws5_c02199{word-spacing:35.468928pt;}
.ws7_c02199{word-spacing:37.357056pt;}
._0_c02199{margin-left:-1.731840pt;}
._2_c02199{width:1.317888pt;}
._4_c02199{width:2.994816pt;}
._5_c02199{width:12.576768pt;}
._1_c02199{width:44.668800pt;}
._3_c02199{width:45.805056pt;}
.fs0_c02199{font-size:42.240000pt;}
.fs1_c02199{font-size:53.760000pt;}
.y0_c02199{bottom:0.000000pt;}
.y19_c02199{bottom:130.665211pt;}
.y1b_c02199{bottom:165.866875pt;}
.y1a_c02199{bottom:174.507067pt;}
.y18_c02199{bottom:245.225371pt;}
.y17_c02199{bottom:317.225563pt;}
.y15_c02199{bottom:361.386427pt;}
.y11_c02199{bottom:377.386939pt;}
.y16_c02199{bottom:407.786011pt;}
.y14_c02199{bottom:437.226235pt;}
.y13_c02199{bottom:453.226747pt;}
.y10_c02199{bottom:482.666971pt;}
.y12_c02199{bottom:497.386555pt;}
.yf_c02199{bottom:513.387067pt;}
.y1c_c02199{bottom:546.027067pt;}
.yb_c02199{bottom:593.385179pt;}
.yd_c02199{bottom:628.586875pt;}
.yc_c02199{bottom:637.227067pt;}
.ya_c02199{bottom:707.945339pt;}
.y9_c02199{bottom:779.945531pt;}
.y7_c02199{bottom:823.786427pt;}
.y3_c02199{bottom:839.786939pt;}
.y8_c02199{bottom:870.505979pt;}
.y6_c02199{bottom:899.946203pt;}
.y5_c02199{bottom:915.946715pt;}
.y2_c02199{bottom:945.386939pt;}
.y4_c02199{bottom:959.786555pt;}
.y1_c02199{bottom:975.787067pt;}
.ye_c02199{bottom:1008.747067pt;}
.h3_c02199{height:28.916250pt;}
.h1_c02199{height:37.063125pt;}
.h2_c02199{height:37.166250pt;}
.h4_c02199{height:48.581988pt;}
.h0_c02199{height:1122.666667pt;}
.w1_c02199{width:793.333333pt;}
.w0_c02199{width:793.626667pt;}
.x0_c02199{left:0.000000pt;}
.xd_c02199{left:104.000000pt;}
.x8_c02199{left:391.999872pt;}
.x4_c02199{left:396.160512pt;}
.xb_c02199{left:400.960000pt;}
.x7_c02199{left:404.799648pt;}
.x5_c02199{left:410.560128pt;}
.x1_c02199{left:411.840000pt;}
.xa_c02199{left:429.760320pt;}
.x9_c02199{left:437.439552pt;}
.x6_c02199{left:438.400512pt;}
.xc_c02199{left:450.560320pt;}
.x3_c02199{left:455.039904pt;}
.x2_c02199{left:468.159648pt;}
}





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

.ir_c02200:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02200{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02200;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02200{font-family:ff1_c02200;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02200;src:url('chunks/assets/font_670250688d5c3fd105c1f46f.woff2')format("woff");}.ff2_c02200{font-family:ff2_c02200;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02200;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02200{font-family:ff3_c02200;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02200{vertical-align:0.000000px;}
.v1_c02200{vertical-align:1.439424px;}
.ls9_c02200{letter-spacing:-0.755568px;}
.ls7_c02200{letter-spacing:-0.613008px;}
.lsa_c02200{letter-spacing:-0.574992px;}
.lsd_c02200{letter-spacing:-0.427680px;}
.ls10_c02200{letter-spacing:-0.275616px;}
.lse_c02200{letter-spacing:-0.261360px;}
.ls6_c02200{letter-spacing:-0.242352px;}
.ls4_c02200{letter-spacing:-0.118800px;}
.ls13_c02200{letter-spacing:0.000000px;}
.ls1_c02200{letter-spacing:0.006048px;}
.ls5_c02200{letter-spacing:0.128304px;}
.lsc_c02200{letter-spacing:0.508464px;}
.ls12_c02200{letter-spacing:0.514080px;}
.lsf_c02200{letter-spacing:0.536976px;}
.lsb_c02200{letter-spacing:0.579744px;}
.ls11_c02200{letter-spacing:0.594000px;}
.ls8_c02200{letter-spacing:0.598752px;}
.ls2_c02200{letter-spacing:0.613008px;}
.ls0_c02200{letter-spacing:0.717552px;}
.ls3_c02200{letter-spacing:0.722304px;}
.sc__c02200{text-shadow:none;}
.sc0_c02200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02200{-webkit-text-stroke:0px transparent;}
.sc0_c02200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02200{word-spacing:-15.126048px;}
.wsa_c02200{word-spacing:-12.474000px;}
.ws8_c02200{word-spacing:-12.459744px;}
.ws9_c02200{word-spacing:-12.416976px;}
.ws2_c02200{word-spacing:-11.266992px;}
.ws4_c02200{word-spacing:-11.124432px;}
.ws14_c02200{word-spacing:-2.159136px;}
.ws10_c02200{word-spacing:-1.078704px;}
.wsd_c02200{word-spacing:-0.974160px;}
.wsf_c02200{word-spacing:-0.118800px;}
.ws12_c02200{word-spacing:-0.099792px;}
.ws13_c02200{word-spacing:-0.085536px;}
.wse_c02200{word-spacing:0.000000px;}
.ws11_c02200{word-spacing:0.066528px;}
.wsb_c02200{word-spacing:33.300288px;}
.ws6_c02200{word-spacing:36.742464px;}
.ws1_c02200{word-spacing:37.759392px;}
.ws0_c02200{word-spacing:38.020752px;}
.ws3_c02200{word-spacing:39.218256px;}
.ws5_c02200{word-spacing:39.902544px;}
.ws7_c02200{word-spacing:42.026688px;}
._0_c02200{margin-left:-1.948320px;}
._2_c02200{width:1.482624px;}
._4_c02200{width:3.369168px;}
._5_c02200{width:14.148864px;}
._1_c02200{width:50.252400px;}
._3_c02200{width:51.530688px;}
.fc0_c02200{color:rgb(0,0,0);}
.fs0_c02200{font-size:47.520000px;}
.fs1_c02200{font-size:60.480000px;}
.y0_c02200{bottom:0.000000px;}
.y19_c02200{bottom:146.998362px;}
.y1b_c02200{bottom:186.600234px;}
.y1a_c02200{bottom:196.320450px;}
.y18_c02200{bottom:275.878542px;}
.y17_c02200{bottom:356.878758px;}
.y15_c02200{bottom:406.559730px;}
.y11_c02200{bottom:424.560306px;}
.y16_c02200{bottom:458.759262px;}
.y14_c02200{bottom:491.879514px;}
.y13_c02200{bottom:509.880090px;}
.y10_c02200{bottom:543.000342px;}
.y12_c02200{bottom:559.559874px;}
.yf_c02200{bottom:577.560450px;}
.y1c_c02200{bottom:614.280450px;}
.yb_c02200{bottom:667.558326px;}
.yd_c02200{bottom:707.160234px;}
.yc_c02200{bottom:716.880450px;}
.ya_c02200{bottom:796.438506px;}
.y9_c02200{bottom:877.438722px;}
.y7_c02200{bottom:926.759730px;}
.y3_c02200{bottom:944.760306px;}
.y8_c02200{bottom:979.319226px;}
.y6_c02200{bottom:1012.439478px;}
.y5_c02200{bottom:1030.440054px;}
.y2_c02200{bottom:1063.560306px;}
.y4_c02200{bottom:1079.759874px;}
.y1_c02200{bottom:1097.760450px;}
.ye_c02200{bottom:1134.840450px;}
.h3_c02200{height:32.530781px;}
.h1_c02200{height:41.696016px;}
.h2_c02200{height:41.812031px;}
.h4_c02200{height:54.654737px;}
.h0_c02200{height:1263.000000px;}
.w1_c02200{width:892.500000px;}
.w0_c02200{width:892.830000px;}
.x0_c02200{left:0.000000px;}
.xd_c02200{left:117.000000px;}
.x8_c02200{left:440.999856px;}
.x4_c02200{left:445.680576px;}
.xb_c02200{left:451.080000px;}
.x7_c02200{left:455.399604px;}
.x5_c02200{left:461.880144px;}
.x1_c02200{left:463.320000px;}
.xa_c02200{left:483.480360px;}
.x9_c02200{left:492.119496px;}
.x6_c02200{left:493.200576px;}
.xc_c02200{left:506.880360px;}
.x3_c02200{left:511.919892px;}
.x2_c02200{left:526.679604px;}
@media print{
.v0_c02200{vertical-align:0.000000pt;}
.v1_c02200{vertical-align:1.279488pt;}
.ls9_c02200{letter-spacing:-0.671616pt;}
.ls7_c02200{letter-spacing:-0.544896pt;}
.lsa_c02200{letter-spacing:-0.511104pt;}
.lsd_c02200{letter-spacing:-0.380160pt;}
.ls10_c02200{letter-spacing:-0.244992pt;}
.lse_c02200{letter-spacing:-0.232320pt;}
.ls6_c02200{letter-spacing:-0.215424pt;}
.ls4_c02200{letter-spacing:-0.105600pt;}
.ls13_c02200{letter-spacing:0.000000pt;}
.ls1_c02200{letter-spacing:0.005376pt;}
.ls5_c02200{letter-spacing:0.114048pt;}
.lsc_c02200{letter-spacing:0.451968pt;}
.ls12_c02200{letter-spacing:0.456960pt;}
.lsf_c02200{letter-spacing:0.477312pt;}
.lsb_c02200{letter-spacing:0.515328pt;}
.ls11_c02200{letter-spacing:0.528000pt;}
.ls8_c02200{letter-spacing:0.532224pt;}
.ls2_c02200{letter-spacing:0.544896pt;}
.ls0_c02200{letter-spacing:0.637824pt;}
.ls3_c02200{letter-spacing:0.642048pt;}
.wsc_c02200{word-spacing:-13.445376pt;}
.wsa_c02200{word-spacing:-11.088000pt;}
.ws8_c02200{word-spacing:-11.075328pt;}
.ws9_c02200{word-spacing:-11.037312pt;}
.ws2_c02200{word-spacing:-10.015104pt;}
.ws4_c02200{word-spacing:-9.888384pt;}
.ws14_c02200{word-spacing:-1.919232pt;}
.ws10_c02200{word-spacing:-0.958848pt;}
.wsd_c02200{word-spacing:-0.865920pt;}
.wsf_c02200{word-spacing:-0.105600pt;}
.ws12_c02200{word-spacing:-0.088704pt;}
.ws13_c02200{word-spacing:-0.076032pt;}
.wse_c02200{word-spacing:0.000000pt;}
.ws11_c02200{word-spacing:0.059136pt;}
.wsb_c02200{word-spacing:29.600256pt;}
.ws6_c02200{word-spacing:32.659968pt;}
.ws1_c02200{word-spacing:33.563904pt;}
.ws0_c02200{word-spacing:33.796224pt;}
.ws3_c02200{word-spacing:34.860672pt;}
.ws5_c02200{word-spacing:35.468928pt;}
.ws7_c02200{word-spacing:37.357056pt;}
._0_c02200{margin-left:-1.731840pt;}
._2_c02200{width:1.317888pt;}
._4_c02200{width:2.994816pt;}
._5_c02200{width:12.576768pt;}
._1_c02200{width:44.668800pt;}
._3_c02200{width:45.805056pt;}
.fs0_c02200{font-size:42.240000pt;}
.fs1_c02200{font-size:53.760000pt;}
.y0_c02200{bottom:0.000000pt;}
.y19_c02200{bottom:130.665211pt;}
.y1b_c02200{bottom:165.866875pt;}
.y1a_c02200{bottom:174.507067pt;}
.y18_c02200{bottom:245.225371pt;}
.y17_c02200{bottom:317.225563pt;}
.y15_c02200{bottom:361.386427pt;}
.y11_c02200{bottom:377.386939pt;}
.y16_c02200{bottom:407.786011pt;}
.y14_c02200{bottom:437.226235pt;}
.y13_c02200{bottom:453.226747pt;}
.y10_c02200{bottom:482.666971pt;}
.y12_c02200{bottom:497.386555pt;}
.yf_c02200{bottom:513.387067pt;}
.y1c_c02200{bottom:546.027067pt;}
.yb_c02200{bottom:593.385179pt;}
.yd_c02200{bottom:628.586875pt;}
.yc_c02200{bottom:637.227067pt;}
.ya_c02200{bottom:707.945339pt;}
.y9_c02200{bottom:779.945531pt;}
.y7_c02200{bottom:823.786427pt;}
.y3_c02200{bottom:839.786939pt;}
.y8_c02200{bottom:870.505979pt;}
.y6_c02200{bottom:899.946203pt;}
.y5_c02200{bottom:915.946715pt;}
.y2_c02200{bottom:945.386939pt;}
.y4_c02200{bottom:959.786555pt;}
.y1_c02200{bottom:975.787067pt;}
.ye_c02200{bottom:1008.747067pt;}
.h3_c02200{height:28.916250pt;}
.h1_c02200{height:37.063125pt;}
.h2_c02200{height:37.166250pt;}
.h4_c02200{height:48.581988pt;}
.h0_c02200{height:1122.666667pt;}
.w1_c02200{width:793.333333pt;}
.w0_c02200{width:793.626667pt;}
.x0_c02200{left:0.000000pt;}
.xd_c02200{left:104.000000pt;}
.x8_c02200{left:391.999872pt;}
.x4_c02200{left:396.160512pt;}
.xb_c02200{left:400.960000pt;}
.x7_c02200{left:404.799648pt;}
.x5_c02200{left:410.560128pt;}
.x1_c02200{left:411.840000pt;}
.xa_c02200{left:429.760320pt;}
.x9_c02200{left:437.439552pt;}
.x6_c02200{left:438.400512pt;}
.xc_c02200{left:450.560320pt;}
.x3_c02200{left:455.039904pt;}
.x2_c02200{left:468.159648pt;}
}





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

.ir_c02201:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02201{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02201;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02201{font-family:ff1_c02201;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02201;src:url('chunks/assets/font_b65b3a9d7623bd280b28ab6a.woff2')format("woff");}.ff2_c02201{font-family:ff2_c02201;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02201;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02201{font-family:ff3_c02201;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02201{vertical-align:0.000000px;}
.v1_c02201{vertical-align:1.439424px;}
.ls9_c02201{letter-spacing:-0.755568px;}
.ls7_c02201{letter-spacing:-0.613008px;}
.lsa_c02201{letter-spacing:-0.574992px;}
.lsd_c02201{letter-spacing:-0.427680px;}
.ls10_c02201{letter-spacing:-0.275616px;}
.lse_c02201{letter-spacing:-0.261360px;}
.ls6_c02201{letter-spacing:-0.242352px;}
.ls4_c02201{letter-spacing:-0.118800px;}
.ls13_c02201{letter-spacing:0.000000px;}
.ls1_c02201{letter-spacing:0.006048px;}
.ls5_c02201{letter-spacing:0.128304px;}
.lsc_c02201{letter-spacing:0.508464px;}
.ls12_c02201{letter-spacing:0.514080px;}
.lsf_c02201{letter-spacing:0.536976px;}
.lsb_c02201{letter-spacing:0.579744px;}
.ls11_c02201{letter-spacing:0.594000px;}
.ls8_c02201{letter-spacing:0.598752px;}
.ls2_c02201{letter-spacing:0.613008px;}
.ls0_c02201{letter-spacing:0.717552px;}
.ls3_c02201{letter-spacing:0.722304px;}
.sc__c02201{text-shadow:none;}
.sc0_c02201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02201{-webkit-text-stroke:0px transparent;}
.sc0_c02201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02201{word-spacing:-15.126048px;}
.wsa_c02201{word-spacing:-12.474000px;}
.ws8_c02201{word-spacing:-12.459744px;}
.ws9_c02201{word-spacing:-12.416976px;}
.ws2_c02201{word-spacing:-11.266992px;}
.ws4_c02201{word-spacing:-11.124432px;}
.ws14_c02201{word-spacing:-2.159136px;}
.ws10_c02201{word-spacing:-1.078704px;}
.wsd_c02201{word-spacing:-0.974160px;}
.wsf_c02201{word-spacing:-0.118800px;}
.ws12_c02201{word-spacing:-0.099792px;}
.ws13_c02201{word-spacing:-0.085536px;}
.wse_c02201{word-spacing:0.000000px;}
.ws11_c02201{word-spacing:0.066528px;}
.wsb_c02201{word-spacing:33.300288px;}
.ws6_c02201{word-spacing:36.742464px;}
.ws1_c02201{word-spacing:37.759392px;}
.ws0_c02201{word-spacing:38.020752px;}
.ws3_c02201{word-spacing:39.218256px;}
.ws5_c02201{word-spacing:39.902544px;}
.ws7_c02201{word-spacing:42.026688px;}
._0_c02201{margin-left:-1.948320px;}
._2_c02201{width:1.482624px;}
._4_c02201{width:3.369168px;}
._5_c02201{width:14.148864px;}
._1_c02201{width:50.252400px;}
._3_c02201{width:51.530688px;}
.fc0_c02201{color:rgb(0,0,0);}
.fs0_c02201{font-size:47.520000px;}
.fs1_c02201{font-size:60.480000px;}
.y0_c02201{bottom:0.000000px;}
.y19_c02201{bottom:146.998362px;}
.y1b_c02201{bottom:186.600234px;}
.y1a_c02201{bottom:196.320450px;}
.y18_c02201{bottom:275.878542px;}
.y17_c02201{bottom:356.878758px;}
.y15_c02201{bottom:406.559730px;}
.y11_c02201{bottom:424.560306px;}
.y16_c02201{bottom:458.759262px;}
.y14_c02201{bottom:491.879514px;}
.y13_c02201{bottom:509.880090px;}
.y10_c02201{bottom:543.000342px;}
.y12_c02201{bottom:559.559874px;}
.yf_c02201{bottom:577.560450px;}
.y1c_c02201{bottom:614.280450px;}
.yb_c02201{bottom:667.558326px;}
.yd_c02201{bottom:707.160234px;}
.yc_c02201{bottom:716.880450px;}
.ya_c02201{bottom:796.438506px;}
.y9_c02201{bottom:877.438722px;}
.y7_c02201{bottom:926.759730px;}
.y3_c02201{bottom:944.760306px;}
.y8_c02201{bottom:979.319226px;}
.y6_c02201{bottom:1012.439478px;}
.y5_c02201{bottom:1030.440054px;}
.y2_c02201{bottom:1063.560306px;}
.y4_c02201{bottom:1079.759874px;}
.y1_c02201{bottom:1097.760450px;}
.ye_c02201{bottom:1134.840450px;}
.h3_c02201{height:32.530781px;}
.h1_c02201{height:41.696016px;}
.h2_c02201{height:41.812031px;}
.h4_c02201{height:54.654737px;}
.h0_c02201{height:1263.000000px;}
.w1_c02201{width:892.500000px;}
.w0_c02201{width:892.830000px;}
.x0_c02201{left:0.000000px;}
.xd_c02201{left:117.000000px;}
.x8_c02201{left:440.999856px;}
.x4_c02201{left:445.680576px;}
.xb_c02201{left:451.080000px;}
.x7_c02201{left:455.399604px;}
.x5_c02201{left:461.880144px;}
.x1_c02201{left:463.320000px;}
.xa_c02201{left:483.480360px;}
.x9_c02201{left:492.119496px;}
.x6_c02201{left:493.200576px;}
.xc_c02201{left:506.880360px;}
.x3_c02201{left:511.919892px;}
.x2_c02201{left:526.679604px;}
@media print{
.v0_c02201{vertical-align:0.000000pt;}
.v1_c02201{vertical-align:1.279488pt;}
.ls9_c02201{letter-spacing:-0.671616pt;}
.ls7_c02201{letter-spacing:-0.544896pt;}
.lsa_c02201{letter-spacing:-0.511104pt;}
.lsd_c02201{letter-spacing:-0.380160pt;}
.ls10_c02201{letter-spacing:-0.244992pt;}
.lse_c02201{letter-spacing:-0.232320pt;}
.ls6_c02201{letter-spacing:-0.215424pt;}
.ls4_c02201{letter-spacing:-0.105600pt;}
.ls13_c02201{letter-spacing:0.000000pt;}
.ls1_c02201{letter-spacing:0.005376pt;}
.ls5_c02201{letter-spacing:0.114048pt;}
.lsc_c02201{letter-spacing:0.451968pt;}
.ls12_c02201{letter-spacing:0.456960pt;}
.lsf_c02201{letter-spacing:0.477312pt;}
.lsb_c02201{letter-spacing:0.515328pt;}
.ls11_c02201{letter-spacing:0.528000pt;}
.ls8_c02201{letter-spacing:0.532224pt;}
.ls2_c02201{letter-spacing:0.544896pt;}
.ls0_c02201{letter-spacing:0.637824pt;}
.ls3_c02201{letter-spacing:0.642048pt;}
.wsc_c02201{word-spacing:-13.445376pt;}
.wsa_c02201{word-spacing:-11.088000pt;}
.ws8_c02201{word-spacing:-11.075328pt;}
.ws9_c02201{word-spacing:-11.037312pt;}
.ws2_c02201{word-spacing:-10.015104pt;}
.ws4_c02201{word-spacing:-9.888384pt;}
.ws14_c02201{word-spacing:-1.919232pt;}
.ws10_c02201{word-spacing:-0.958848pt;}
.wsd_c02201{word-spacing:-0.865920pt;}
.wsf_c02201{word-spacing:-0.105600pt;}
.ws12_c02201{word-spacing:-0.088704pt;}
.ws13_c02201{word-spacing:-0.076032pt;}
.wse_c02201{word-spacing:0.000000pt;}
.ws11_c02201{word-spacing:0.059136pt;}
.wsb_c02201{word-spacing:29.600256pt;}
.ws6_c02201{word-spacing:32.659968pt;}
.ws1_c02201{word-spacing:33.563904pt;}
.ws0_c02201{word-spacing:33.796224pt;}
.ws3_c02201{word-spacing:34.860672pt;}
.ws5_c02201{word-spacing:35.468928pt;}
.ws7_c02201{word-spacing:37.357056pt;}
._0_c02201{margin-left:-1.731840pt;}
._2_c02201{width:1.317888pt;}
._4_c02201{width:2.994816pt;}
._5_c02201{width:12.576768pt;}
._1_c02201{width:44.668800pt;}
._3_c02201{width:45.805056pt;}
.fs0_c02201{font-size:42.240000pt;}
.fs1_c02201{font-size:53.760000pt;}
.y0_c02201{bottom:0.000000pt;}
.y19_c02201{bottom:130.665211pt;}
.y1b_c02201{bottom:165.866875pt;}
.y1a_c02201{bottom:174.507067pt;}
.y18_c02201{bottom:245.225371pt;}
.y17_c02201{bottom:317.225563pt;}
.y15_c02201{bottom:361.386427pt;}
.y11_c02201{bottom:377.386939pt;}
.y16_c02201{bottom:407.786011pt;}
.y14_c02201{bottom:437.226235pt;}
.y13_c02201{bottom:453.226747pt;}
.y10_c02201{bottom:482.666971pt;}
.y12_c02201{bottom:497.386555pt;}
.yf_c02201{bottom:513.387067pt;}
.y1c_c02201{bottom:546.027067pt;}
.yb_c02201{bottom:593.385179pt;}
.yd_c02201{bottom:628.586875pt;}
.yc_c02201{bottom:637.227067pt;}
.ya_c02201{bottom:707.945339pt;}
.y9_c02201{bottom:779.945531pt;}
.y7_c02201{bottom:823.786427pt;}
.y3_c02201{bottom:839.786939pt;}
.y8_c02201{bottom:870.505979pt;}
.y6_c02201{bottom:899.946203pt;}
.y5_c02201{bottom:915.946715pt;}
.y2_c02201{bottom:945.386939pt;}
.y4_c02201{bottom:959.786555pt;}
.y1_c02201{bottom:975.787067pt;}
.ye_c02201{bottom:1008.747067pt;}
.h3_c02201{height:28.916250pt;}
.h1_c02201{height:37.063125pt;}
.h2_c02201{height:37.166250pt;}
.h4_c02201{height:48.581988pt;}
.h0_c02201{height:1122.666667pt;}
.w1_c02201{width:793.333333pt;}
.w0_c02201{width:793.626667pt;}
.x0_c02201{left:0.000000pt;}
.xd_c02201{left:104.000000pt;}
.x8_c02201{left:391.999872pt;}
.x4_c02201{left:396.160512pt;}
.xb_c02201{left:400.960000pt;}
.x7_c02201{left:404.799648pt;}
.x5_c02201{left:410.560128pt;}
.x1_c02201{left:411.840000pt;}
.xa_c02201{left:429.760320pt;}
.x9_c02201{left:437.439552pt;}
.x6_c02201{left:438.400512pt;}
.xc_c02201{left:450.560320pt;}
.x3_c02201{left:455.039904pt;}
.x2_c02201{left:468.159648pt;}
}





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

.ir_c02202:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02202{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02202;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02202{font-family:ff1_c02202;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02202;src:url('chunks/assets/font_6f1868df9184e4d48e21c12f.woff2')format("woff");}.ff2_c02202{font-family:ff2_c02202;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02202;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02202{font-family:ff3_c02202;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02202{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02202{vertical-align:0.000000px;}
.v1_c02202{vertical-align:1.439424px;}
.ls9_c02202{letter-spacing:-0.755568px;}
.ls7_c02202{letter-spacing:-0.613008px;}
.lsa_c02202{letter-spacing:-0.574992px;}
.lsd_c02202{letter-spacing:-0.427680px;}
.ls10_c02202{letter-spacing:-0.275616px;}
.lse_c02202{letter-spacing:-0.261360px;}
.ls6_c02202{letter-spacing:-0.242352px;}
.ls4_c02202{letter-spacing:-0.118800px;}
.ls13_c02202{letter-spacing:0.000000px;}
.ls1_c02202{letter-spacing:0.006048px;}
.ls5_c02202{letter-spacing:0.128304px;}
.ls14_c02202{letter-spacing:0.242352px;}
.lsc_c02202{letter-spacing:0.508464px;}
.ls12_c02202{letter-spacing:0.514080px;}
.lsf_c02202{letter-spacing:0.536976px;}
.lsb_c02202{letter-spacing:0.579744px;}
.ls11_c02202{letter-spacing:0.594000px;}
.ls8_c02202{letter-spacing:0.598752px;}
.ls2_c02202{letter-spacing:0.613008px;}
.ls0_c02202{letter-spacing:0.717552px;}
.ls3_c02202{letter-spacing:0.722304px;}
.sc__c02202{text-shadow:none;}
.sc0_c02202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02202{-webkit-text-stroke:0px transparent;}
.sc0_c02202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02202{word-spacing:-15.126048px;}
.wsa_c02202{word-spacing:-12.474000px;}
.ws8_c02202{word-spacing:-12.459744px;}
.ws9_c02202{word-spacing:-12.416976px;}
.ws2_c02202{word-spacing:-11.266992px;}
.ws4_c02202{word-spacing:-11.124432px;}
.ws14_c02202{word-spacing:-2.159136px;}
.ws10_c02202{word-spacing:-1.078704px;}
.wsd_c02202{word-spacing:-0.974160px;}
.wsf_c02202{word-spacing:-0.118800px;}
.ws12_c02202{word-spacing:-0.099792px;}
.ws13_c02202{word-spacing:-0.085536px;}
.wse_c02202{word-spacing:0.000000px;}
.ws11_c02202{word-spacing:0.066528px;}
.wsb_c02202{word-spacing:33.300288px;}
.ws6_c02202{word-spacing:36.742464px;}
.ws1_c02202{word-spacing:37.759392px;}
.ws0_c02202{word-spacing:38.020752px;}
.ws3_c02202{word-spacing:39.218256px;}
.ws5_c02202{word-spacing:39.902544px;}
.ws7_c02202{word-spacing:42.026688px;}
._0_c02202{margin-left:-1.948320px;}
._2_c02202{width:1.482624px;}
._4_c02202{width:3.369168px;}
._5_c02202{width:14.148864px;}
._1_c02202{width:50.252400px;}
._3_c02202{width:51.530688px;}
.fc0_c02202{color:rgb(0,0,0);}
.fs0_c02202{font-size:47.520000px;}
.fs1_c02202{font-size:60.480000px;}
.y0_c02202{bottom:0.000000px;}
.y19_c02202{bottom:146.998362px;}
.y1b_c02202{bottom:186.600234px;}
.y1a_c02202{bottom:196.320450px;}
.y18_c02202{bottom:275.878542px;}
.y17_c02202{bottom:356.878758px;}
.y15_c02202{bottom:406.559730px;}
.y11_c02202{bottom:424.560306px;}
.y16_c02202{bottom:458.759262px;}
.y14_c02202{bottom:491.879514px;}
.y13_c02202{bottom:509.880090px;}
.y10_c02202{bottom:543.000342px;}
.y12_c02202{bottom:559.559874px;}
.yf_c02202{bottom:577.560450px;}
.y1c_c02202{bottom:614.280450px;}
.yb_c02202{bottom:667.558326px;}
.yd_c02202{bottom:707.160234px;}
.yc_c02202{bottom:716.880450px;}
.ya_c02202{bottom:796.438506px;}
.y9_c02202{bottom:877.438722px;}
.y7_c02202{bottom:926.759730px;}
.y3_c02202{bottom:944.760306px;}
.y8_c02202{bottom:979.319226px;}
.y6_c02202{bottom:1012.439478px;}
.y5_c02202{bottom:1030.440054px;}
.y2_c02202{bottom:1063.560306px;}
.y4_c02202{bottom:1079.759874px;}
.y1_c02202{bottom:1097.760450px;}
.ye_c02202{bottom:1134.840450px;}
.h3_c02202{height:32.530781px;}
.h1_c02202{height:41.696016px;}
.h2_c02202{height:41.812031px;}
.h4_c02202{height:54.654737px;}
.h0_c02202{height:1263.000000px;}
.w1_c02202{width:892.500000px;}
.w0_c02202{width:892.830000px;}
.x0_c02202{left:0.000000px;}
.xd_c02202{left:117.000000px;}
.x8_c02202{left:440.999856px;}
.x4_c02202{left:445.680576px;}
.xb_c02202{left:451.080000px;}
.x7_c02202{left:455.399604px;}
.x5_c02202{left:461.880144px;}
.x1_c02202{left:463.320000px;}
.xa_c02202{left:483.480360px;}
.x9_c02202{left:492.119496px;}
.x6_c02202{left:493.200576px;}
.xc_c02202{left:506.880360px;}
.x3_c02202{left:511.919892px;}
.x2_c02202{left:526.679604px;}
@media print{
.v0_c02202{vertical-align:0.000000pt;}
.v1_c02202{vertical-align:1.279488pt;}
.ls9_c02202{letter-spacing:-0.671616pt;}
.ls7_c02202{letter-spacing:-0.544896pt;}
.lsa_c02202{letter-spacing:-0.511104pt;}
.lsd_c02202{letter-spacing:-0.380160pt;}
.ls10_c02202{letter-spacing:-0.244992pt;}
.lse_c02202{letter-spacing:-0.232320pt;}
.ls6_c02202{letter-spacing:-0.215424pt;}
.ls4_c02202{letter-spacing:-0.105600pt;}
.ls13_c02202{letter-spacing:0.000000pt;}
.ls1_c02202{letter-spacing:0.005376pt;}
.ls5_c02202{letter-spacing:0.114048pt;}
.ls14_c02202{letter-spacing:0.215424pt;}
.lsc_c02202{letter-spacing:0.451968pt;}
.ls12_c02202{letter-spacing:0.456960pt;}
.lsf_c02202{letter-spacing:0.477312pt;}
.lsb_c02202{letter-spacing:0.515328pt;}
.ls11_c02202{letter-spacing:0.528000pt;}
.ls8_c02202{letter-spacing:0.532224pt;}
.ls2_c02202{letter-spacing:0.544896pt;}
.ls0_c02202{letter-spacing:0.637824pt;}
.ls3_c02202{letter-spacing:0.642048pt;}
.wsc_c02202{word-spacing:-13.445376pt;}
.wsa_c02202{word-spacing:-11.088000pt;}
.ws8_c02202{word-spacing:-11.075328pt;}
.ws9_c02202{word-spacing:-11.037312pt;}
.ws2_c02202{word-spacing:-10.015104pt;}
.ws4_c02202{word-spacing:-9.888384pt;}
.ws14_c02202{word-spacing:-1.919232pt;}
.ws10_c02202{word-spacing:-0.958848pt;}
.wsd_c02202{word-spacing:-0.865920pt;}
.wsf_c02202{word-spacing:-0.105600pt;}
.ws12_c02202{word-spacing:-0.088704pt;}
.ws13_c02202{word-spacing:-0.076032pt;}
.wse_c02202{word-spacing:0.000000pt;}
.ws11_c02202{word-spacing:0.059136pt;}
.wsb_c02202{word-spacing:29.600256pt;}
.ws6_c02202{word-spacing:32.659968pt;}
.ws1_c02202{word-spacing:33.563904pt;}
.ws0_c02202{word-spacing:33.796224pt;}
.ws3_c02202{word-spacing:34.860672pt;}
.ws5_c02202{word-spacing:35.468928pt;}
.ws7_c02202{word-spacing:37.357056pt;}
._0_c02202{margin-left:-1.731840pt;}
._2_c02202{width:1.317888pt;}
._4_c02202{width:2.994816pt;}
._5_c02202{width:12.576768pt;}
._1_c02202{width:44.668800pt;}
._3_c02202{width:45.805056pt;}
.fs0_c02202{font-size:42.240000pt;}
.fs1_c02202{font-size:53.760000pt;}
.y0_c02202{bottom:0.000000pt;}
.y19_c02202{bottom:130.665211pt;}
.y1b_c02202{bottom:165.866875pt;}
.y1a_c02202{bottom:174.507067pt;}
.y18_c02202{bottom:245.225371pt;}
.y17_c02202{bottom:317.225563pt;}
.y15_c02202{bottom:361.386427pt;}
.y11_c02202{bottom:377.386939pt;}
.y16_c02202{bottom:407.786011pt;}
.y14_c02202{bottom:437.226235pt;}
.y13_c02202{bottom:453.226747pt;}
.y10_c02202{bottom:482.666971pt;}
.y12_c02202{bottom:497.386555pt;}
.yf_c02202{bottom:513.387067pt;}
.y1c_c02202{bottom:546.027067pt;}
.yb_c02202{bottom:593.385179pt;}
.yd_c02202{bottom:628.586875pt;}
.yc_c02202{bottom:637.227067pt;}
.ya_c02202{bottom:707.945339pt;}
.y9_c02202{bottom:779.945531pt;}
.y7_c02202{bottom:823.786427pt;}
.y3_c02202{bottom:839.786939pt;}
.y8_c02202{bottom:870.505979pt;}
.y6_c02202{bottom:899.946203pt;}
.y5_c02202{bottom:915.946715pt;}
.y2_c02202{bottom:945.386939pt;}
.y4_c02202{bottom:959.786555pt;}
.y1_c02202{bottom:975.787067pt;}
.ye_c02202{bottom:1008.747067pt;}
.h3_c02202{height:28.916250pt;}
.h1_c02202{height:37.063125pt;}
.h2_c02202{height:37.166250pt;}
.h4_c02202{height:48.581988pt;}
.h0_c02202{height:1122.666667pt;}
.w1_c02202{width:793.333333pt;}
.w0_c02202{width:793.626667pt;}
.x0_c02202{left:0.000000pt;}
.xd_c02202{left:104.000000pt;}
.x8_c02202{left:391.999872pt;}
.x4_c02202{left:396.160512pt;}
.xb_c02202{left:400.960000pt;}
.x7_c02202{left:404.799648pt;}
.x5_c02202{left:410.560128pt;}
.x1_c02202{left:411.840000pt;}
.xa_c02202{left:429.760320pt;}
.x9_c02202{left:437.439552pt;}
.x6_c02202{left:438.400512pt;}
.xc_c02202{left:450.560320pt;}
.x3_c02202{left:455.039904pt;}
.x2_c02202{left:468.159648pt;}
}





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

.ir_c02203:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02203{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02203;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02203{font-family:ff1_c02203;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02203;src:url('chunks/assets/font_09914451d5b856d46d3f3922.woff2')format("woff");}.ff2_c02203{font-family:ff2_c02203;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02203;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02203{font-family:ff3_c02203;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02203{vertical-align:0.000000px;}
.v1_c02203{vertical-align:1.439424px;}
.ls9_c02203{letter-spacing:-0.755568px;}
.ls7_c02203{letter-spacing:-0.613008px;}
.lsa_c02203{letter-spacing:-0.574992px;}
.ls13_c02203{letter-spacing:-0.427680px;}
.lsf_c02203{letter-spacing:-0.275616px;}
.lsd_c02203{letter-spacing:-0.261360px;}
.ls6_c02203{letter-spacing:-0.242352px;}
.ls4_c02203{letter-spacing:-0.118800px;}
.ls12_c02203{letter-spacing:0.000000px;}
.ls1_c02203{letter-spacing:0.006048px;}
.ls5_c02203{letter-spacing:0.128304px;}
.lsc_c02203{letter-spacing:0.508464px;}
.ls11_c02203{letter-spacing:0.514080px;}
.lse_c02203{letter-spacing:0.536976px;}
.lsb_c02203{letter-spacing:0.579744px;}
.ls10_c02203{letter-spacing:0.594000px;}
.ls8_c02203{letter-spacing:0.598752px;}
.ls2_c02203{letter-spacing:0.613008px;}
.ls0_c02203{letter-spacing:0.717552px;}
.ls3_c02203{letter-spacing:0.722304px;}
.sc__c02203{text-shadow:none;}
.sc0_c02203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02203{-webkit-text-stroke:0px transparent;}
.sc0_c02203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02203{word-spacing:-15.126048px;}
.wsa_c02203{word-spacing:-12.474000px;}
.ws8_c02203{word-spacing:-12.459744px;}
.ws9_c02203{word-spacing:-12.416976px;}
.ws7_c02203{word-spacing:-12.388464px;}
.ws2_c02203{word-spacing:-11.266992px;}
.ws4_c02203{word-spacing:-11.124432px;}
.ws14_c02203{word-spacing:-2.159136px;}
.ws11_c02203{word-spacing:-1.078704px;}
.wse_c02203{word-spacing:-0.974160px;}
.ws10_c02203{word-spacing:-0.118800px;}
.ws12_c02203{word-spacing:-0.099792px;}
.ws13_c02203{word-spacing:-0.085536px;}
.wsf_c02203{word-spacing:0.000000px;}
.ws15_c02203{word-spacing:0.066528px;}
.wsb_c02203{word-spacing:33.300288px;}
.ws6_c02203{word-spacing:36.742464px;}
.ws1_c02203{word-spacing:37.759392px;}
.ws0_c02203{word-spacing:38.020752px;}
.ws3_c02203{word-spacing:39.218256px;}
.ws5_c02203{word-spacing:39.902544px;}
.wsd_c02203{word-spacing:42.026688px;}
._0_c02203{margin-left:-1.948320px;}
._2_c02203{width:1.482624px;}
._4_c02203{width:3.369168px;}
._5_c02203{width:14.148864px;}
._1_c02203{width:50.252400px;}
._3_c02203{width:51.530688px;}
.fc0_c02203{color:rgb(0,0,0);}
.fs0_c02203{font-size:47.520000px;}
.fs1_c02203{font-size:60.480000px;}
.y0_c02203{bottom:0.000000px;}
.y19_c02203{bottom:146.998362px;}
.y1b_c02203{bottom:186.600234px;}
.y1a_c02203{bottom:196.320450px;}
.y18_c02203{bottom:275.878542px;}
.y17_c02203{bottom:356.878758px;}
.y15_c02203{bottom:406.559730px;}
.y11_c02203{bottom:424.560306px;}
.y16_c02203{bottom:458.759262px;}
.y14_c02203{bottom:491.879514px;}
.y13_c02203{bottom:509.880090px;}
.y10_c02203{bottom:543.000342px;}
.y12_c02203{bottom:559.559874px;}
.yf_c02203{bottom:577.560450px;}
.y1c_c02203{bottom:614.280450px;}
.yb_c02203{bottom:667.558326px;}
.yd_c02203{bottom:707.160234px;}
.yc_c02203{bottom:716.880450px;}
.ya_c02203{bottom:796.438506px;}
.y9_c02203{bottom:877.438722px;}
.y7_c02203{bottom:926.759730px;}
.y3_c02203{bottom:944.760306px;}
.y8_c02203{bottom:979.319226px;}
.y6_c02203{bottom:1012.439478px;}
.y5_c02203{bottom:1030.440054px;}
.y2_c02203{bottom:1063.560306px;}
.y4_c02203{bottom:1079.759874px;}
.y1_c02203{bottom:1097.760450px;}
.ye_c02203{bottom:1134.840450px;}
.h3_c02203{height:32.530781px;}
.h1_c02203{height:41.696016px;}
.h2_c02203{height:41.812031px;}
.h4_c02203{height:54.654737px;}
.h0_c02203{height:1263.000000px;}
.w1_c02203{width:892.500000px;}
.w0_c02203{width:892.830000px;}
.x0_c02203{left:0.000000px;}
.xd_c02203{left:117.000000px;}
.x8_c02203{left:440.999856px;}
.x4_c02203{left:445.680576px;}
.xb_c02203{left:451.080000px;}
.x7_c02203{left:455.399604px;}
.x5_c02203{left:461.880144px;}
.x1_c02203{left:463.320000px;}
.xa_c02203{left:483.480360px;}
.x9_c02203{left:492.119496px;}
.x6_c02203{left:493.200576px;}
.xc_c02203{left:506.880360px;}
.x3_c02203{left:511.919892px;}
.x2_c02203{left:526.679604px;}
@media print{
.v0_c02203{vertical-align:0.000000pt;}
.v1_c02203{vertical-align:1.279488pt;}
.ls9_c02203{letter-spacing:-0.671616pt;}
.ls7_c02203{letter-spacing:-0.544896pt;}
.lsa_c02203{letter-spacing:-0.511104pt;}
.ls13_c02203{letter-spacing:-0.380160pt;}
.lsf_c02203{letter-spacing:-0.244992pt;}
.lsd_c02203{letter-spacing:-0.232320pt;}
.ls6_c02203{letter-spacing:-0.215424pt;}
.ls4_c02203{letter-spacing:-0.105600pt;}
.ls12_c02203{letter-spacing:0.000000pt;}
.ls1_c02203{letter-spacing:0.005376pt;}
.ls5_c02203{letter-spacing:0.114048pt;}
.lsc_c02203{letter-spacing:0.451968pt;}
.ls11_c02203{letter-spacing:0.456960pt;}
.lse_c02203{letter-spacing:0.477312pt;}
.lsb_c02203{letter-spacing:0.515328pt;}
.ls10_c02203{letter-spacing:0.528000pt;}
.ls8_c02203{letter-spacing:0.532224pt;}
.ls2_c02203{letter-spacing:0.544896pt;}
.ls0_c02203{letter-spacing:0.637824pt;}
.ls3_c02203{letter-spacing:0.642048pt;}
.wsc_c02203{word-spacing:-13.445376pt;}
.wsa_c02203{word-spacing:-11.088000pt;}
.ws8_c02203{word-spacing:-11.075328pt;}
.ws9_c02203{word-spacing:-11.037312pt;}
.ws7_c02203{word-spacing:-11.011968pt;}
.ws2_c02203{word-spacing:-10.015104pt;}
.ws4_c02203{word-spacing:-9.888384pt;}
.ws14_c02203{word-spacing:-1.919232pt;}
.ws11_c02203{word-spacing:-0.958848pt;}
.wse_c02203{word-spacing:-0.865920pt;}
.ws10_c02203{word-spacing:-0.105600pt;}
.ws12_c02203{word-spacing:-0.088704pt;}
.ws13_c02203{word-spacing:-0.076032pt;}
.wsf_c02203{word-spacing:0.000000pt;}
.ws15_c02203{word-spacing:0.059136pt;}
.wsb_c02203{word-spacing:29.600256pt;}
.ws6_c02203{word-spacing:32.659968pt;}
.ws1_c02203{word-spacing:33.563904pt;}
.ws0_c02203{word-spacing:33.796224pt;}
.ws3_c02203{word-spacing:34.860672pt;}
.ws5_c02203{word-spacing:35.468928pt;}
.wsd_c02203{word-spacing:37.357056pt;}
._0_c02203{margin-left:-1.731840pt;}
._2_c02203{width:1.317888pt;}
._4_c02203{width:2.994816pt;}
._5_c02203{width:12.576768pt;}
._1_c02203{width:44.668800pt;}
._3_c02203{width:45.805056pt;}
.fs0_c02203{font-size:42.240000pt;}
.fs1_c02203{font-size:53.760000pt;}
.y0_c02203{bottom:0.000000pt;}
.y19_c02203{bottom:130.665211pt;}
.y1b_c02203{bottom:165.866875pt;}
.y1a_c02203{bottom:174.507067pt;}
.y18_c02203{bottom:245.225371pt;}
.y17_c02203{bottom:317.225563pt;}
.y15_c02203{bottom:361.386427pt;}
.y11_c02203{bottom:377.386939pt;}
.y16_c02203{bottom:407.786011pt;}
.y14_c02203{bottom:437.226235pt;}
.y13_c02203{bottom:453.226747pt;}
.y10_c02203{bottom:482.666971pt;}
.y12_c02203{bottom:497.386555pt;}
.yf_c02203{bottom:513.387067pt;}
.y1c_c02203{bottom:546.027067pt;}
.yb_c02203{bottom:593.385179pt;}
.yd_c02203{bottom:628.586875pt;}
.yc_c02203{bottom:637.227067pt;}
.ya_c02203{bottom:707.945339pt;}
.y9_c02203{bottom:779.945531pt;}
.y7_c02203{bottom:823.786427pt;}
.y3_c02203{bottom:839.786939pt;}
.y8_c02203{bottom:870.505979pt;}
.y6_c02203{bottom:899.946203pt;}
.y5_c02203{bottom:915.946715pt;}
.y2_c02203{bottom:945.386939pt;}
.y4_c02203{bottom:959.786555pt;}
.y1_c02203{bottom:975.787067pt;}
.ye_c02203{bottom:1008.747067pt;}
.h3_c02203{height:28.916250pt;}
.h1_c02203{height:37.063125pt;}
.h2_c02203{height:37.166250pt;}
.h4_c02203{height:48.581988pt;}
.h0_c02203{height:1122.666667pt;}
.w1_c02203{width:793.333333pt;}
.w0_c02203{width:793.626667pt;}
.x0_c02203{left:0.000000pt;}
.xd_c02203{left:104.000000pt;}
.x8_c02203{left:391.999872pt;}
.x4_c02203{left:396.160512pt;}
.xb_c02203{left:400.960000pt;}
.x7_c02203{left:404.799648pt;}
.x5_c02203{left:410.560128pt;}
.x1_c02203{left:411.840000pt;}
.xa_c02203{left:429.760320pt;}
.x9_c02203{left:437.439552pt;}
.x6_c02203{left:438.400512pt;}
.xc_c02203{left:450.560320pt;}
.x3_c02203{left:455.039904pt;}
.x2_c02203{left:468.159648pt;}
}





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

.ir_c02204:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02204{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02204;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02204{font-family:ff1_c02204;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02204;src:url('chunks/assets/font_ad4a31c007f214d0f98587fd.woff2')format("woff");}.ff2_c02204{font-family:ff2_c02204;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02204;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02204{font-family:ff3_c02204;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02204{vertical-align:0.000000px;}
.v1_c02204{vertical-align:1.439424px;}
.ls9_c02204{letter-spacing:-0.755568px;}
.ls7_c02204{letter-spacing:-0.613008px;}
.lsa_c02204{letter-spacing:-0.574992px;}
.lsd_c02204{letter-spacing:-0.427680px;}
.ls10_c02204{letter-spacing:-0.275616px;}
.lse_c02204{letter-spacing:-0.261360px;}
.ls6_c02204{letter-spacing:-0.242352px;}
.ls4_c02204{letter-spacing:-0.118800px;}
.ls13_c02204{letter-spacing:0.000000px;}
.ls1_c02204{letter-spacing:0.006048px;}
.ls5_c02204{letter-spacing:0.128304px;}
.lsc_c02204{letter-spacing:0.508464px;}
.ls12_c02204{letter-spacing:0.514080px;}
.lsf_c02204{letter-spacing:0.536976px;}
.lsb_c02204{letter-spacing:0.579744px;}
.ls11_c02204{letter-spacing:0.594000px;}
.ls8_c02204{letter-spacing:0.598752px;}
.ls2_c02204{letter-spacing:0.613008px;}
.ls0_c02204{letter-spacing:0.717552px;}
.ls3_c02204{letter-spacing:0.722304px;}
.sc__c02204{text-shadow:none;}
.sc0_c02204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02204{-webkit-text-stroke:0px transparent;}
.sc0_c02204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02204{word-spacing:-15.126048px;}
.wsa_c02204{word-spacing:-12.474000px;}
.ws8_c02204{word-spacing:-12.459744px;}
.ws9_c02204{word-spacing:-12.416976px;}
.ws2_c02204{word-spacing:-11.266992px;}
.ws4_c02204{word-spacing:-11.124432px;}
.ws14_c02204{word-spacing:-2.159136px;}
.ws10_c02204{word-spacing:-1.078704px;}
.wsd_c02204{word-spacing:-0.974160px;}
.wsf_c02204{word-spacing:-0.118800px;}
.ws12_c02204{word-spacing:-0.099792px;}
.ws13_c02204{word-spacing:-0.085536px;}
.wse_c02204{word-spacing:0.000000px;}
.ws11_c02204{word-spacing:0.066528px;}
.wsb_c02204{word-spacing:33.300288px;}
.ws6_c02204{word-spacing:36.742464px;}
.ws1_c02204{word-spacing:37.759392px;}
.ws0_c02204{word-spacing:38.020752px;}
.ws3_c02204{word-spacing:39.218256px;}
.ws5_c02204{word-spacing:39.902544px;}
.ws7_c02204{word-spacing:42.026688px;}
._0_c02204{margin-left:-1.948320px;}
._2_c02204{width:1.482624px;}
._4_c02204{width:3.369168px;}
._5_c02204{width:14.148864px;}
._1_c02204{width:50.252400px;}
._3_c02204{width:51.530688px;}
.fc0_c02204{color:rgb(0,0,0);}
.fs0_c02204{font-size:47.520000px;}
.fs1_c02204{font-size:60.480000px;}
.y0_c02204{bottom:0.000000px;}
.y19_c02204{bottom:146.998362px;}
.y1b_c02204{bottom:186.600234px;}
.y1a_c02204{bottom:196.320450px;}
.y18_c02204{bottom:275.878542px;}
.y17_c02204{bottom:356.878758px;}
.y15_c02204{bottom:406.559730px;}
.y11_c02204{bottom:424.560306px;}
.y16_c02204{bottom:458.759262px;}
.y14_c02204{bottom:491.879514px;}
.y13_c02204{bottom:509.880090px;}
.y10_c02204{bottom:543.000342px;}
.y12_c02204{bottom:559.559874px;}
.yf_c02204{bottom:577.560450px;}
.y1c_c02204{bottom:614.280450px;}
.yb_c02204{bottom:667.558326px;}
.yd_c02204{bottom:707.160234px;}
.yc_c02204{bottom:716.880450px;}
.ya_c02204{bottom:796.438506px;}
.y9_c02204{bottom:877.438722px;}
.y7_c02204{bottom:926.759730px;}
.y3_c02204{bottom:944.760306px;}
.y8_c02204{bottom:979.319226px;}
.y6_c02204{bottom:1012.439478px;}
.y5_c02204{bottom:1030.440054px;}
.y2_c02204{bottom:1063.560306px;}
.y4_c02204{bottom:1079.759874px;}
.y1_c02204{bottom:1097.760450px;}
.ye_c02204{bottom:1134.840450px;}
.h3_c02204{height:32.530781px;}
.h1_c02204{height:41.696016px;}
.h2_c02204{height:41.812031px;}
.h4_c02204{height:54.654737px;}
.h0_c02204{height:1263.000000px;}
.w1_c02204{width:892.500000px;}
.w0_c02204{width:892.830000px;}
.x0_c02204{left:0.000000px;}
.xd_c02204{left:117.000000px;}
.x8_c02204{left:440.999856px;}
.x4_c02204{left:445.680576px;}
.xb_c02204{left:451.080000px;}
.x7_c02204{left:455.399604px;}
.x5_c02204{left:461.880144px;}
.x1_c02204{left:463.320000px;}
.xa_c02204{left:483.480360px;}
.x9_c02204{left:492.119496px;}
.x6_c02204{left:493.200576px;}
.xc_c02204{left:506.880360px;}
.x3_c02204{left:511.919892px;}
.x2_c02204{left:526.679604px;}
@media print{
.v0_c02204{vertical-align:0.000000pt;}
.v1_c02204{vertical-align:1.279488pt;}
.ls9_c02204{letter-spacing:-0.671616pt;}
.ls7_c02204{letter-spacing:-0.544896pt;}
.lsa_c02204{letter-spacing:-0.511104pt;}
.lsd_c02204{letter-spacing:-0.380160pt;}
.ls10_c02204{letter-spacing:-0.244992pt;}
.lse_c02204{letter-spacing:-0.232320pt;}
.ls6_c02204{letter-spacing:-0.215424pt;}
.ls4_c02204{letter-spacing:-0.105600pt;}
.ls13_c02204{letter-spacing:0.000000pt;}
.ls1_c02204{letter-spacing:0.005376pt;}
.ls5_c02204{letter-spacing:0.114048pt;}
.lsc_c02204{letter-spacing:0.451968pt;}
.ls12_c02204{letter-spacing:0.456960pt;}
.lsf_c02204{letter-spacing:0.477312pt;}
.lsb_c02204{letter-spacing:0.515328pt;}
.ls11_c02204{letter-spacing:0.528000pt;}
.ls8_c02204{letter-spacing:0.532224pt;}
.ls2_c02204{letter-spacing:0.544896pt;}
.ls0_c02204{letter-spacing:0.637824pt;}
.ls3_c02204{letter-spacing:0.642048pt;}
.wsc_c02204{word-spacing:-13.445376pt;}
.wsa_c02204{word-spacing:-11.088000pt;}
.ws8_c02204{word-spacing:-11.075328pt;}
.ws9_c02204{word-spacing:-11.037312pt;}
.ws2_c02204{word-spacing:-10.015104pt;}
.ws4_c02204{word-spacing:-9.888384pt;}
.ws14_c02204{word-spacing:-1.919232pt;}
.ws10_c02204{word-spacing:-0.958848pt;}
.wsd_c02204{word-spacing:-0.865920pt;}
.wsf_c02204{word-spacing:-0.105600pt;}
.ws12_c02204{word-spacing:-0.088704pt;}
.ws13_c02204{word-spacing:-0.076032pt;}
.wse_c02204{word-spacing:0.000000pt;}
.ws11_c02204{word-spacing:0.059136pt;}
.wsb_c02204{word-spacing:29.600256pt;}
.ws6_c02204{word-spacing:32.659968pt;}
.ws1_c02204{word-spacing:33.563904pt;}
.ws0_c02204{word-spacing:33.796224pt;}
.ws3_c02204{word-spacing:34.860672pt;}
.ws5_c02204{word-spacing:35.468928pt;}
.ws7_c02204{word-spacing:37.357056pt;}
._0_c02204{margin-left:-1.731840pt;}
._2_c02204{width:1.317888pt;}
._4_c02204{width:2.994816pt;}
._5_c02204{width:12.576768pt;}
._1_c02204{width:44.668800pt;}
._3_c02204{width:45.805056pt;}
.fs0_c02204{font-size:42.240000pt;}
.fs1_c02204{font-size:53.760000pt;}
.y0_c02204{bottom:0.000000pt;}
.y19_c02204{bottom:130.665211pt;}
.y1b_c02204{bottom:165.866875pt;}
.y1a_c02204{bottom:174.507067pt;}
.y18_c02204{bottom:245.225371pt;}
.y17_c02204{bottom:317.225563pt;}
.y15_c02204{bottom:361.386427pt;}
.y11_c02204{bottom:377.386939pt;}
.y16_c02204{bottom:407.786011pt;}
.y14_c02204{bottom:437.226235pt;}
.y13_c02204{bottom:453.226747pt;}
.y10_c02204{bottom:482.666971pt;}
.y12_c02204{bottom:497.386555pt;}
.yf_c02204{bottom:513.387067pt;}
.y1c_c02204{bottom:546.027067pt;}
.yb_c02204{bottom:593.385179pt;}
.yd_c02204{bottom:628.586875pt;}
.yc_c02204{bottom:637.227067pt;}
.ya_c02204{bottom:707.945339pt;}
.y9_c02204{bottom:779.945531pt;}
.y7_c02204{bottom:823.786427pt;}
.y3_c02204{bottom:839.786939pt;}
.y8_c02204{bottom:870.505979pt;}
.y6_c02204{bottom:899.946203pt;}
.y5_c02204{bottom:915.946715pt;}
.y2_c02204{bottom:945.386939pt;}
.y4_c02204{bottom:959.786555pt;}
.y1_c02204{bottom:975.787067pt;}
.ye_c02204{bottom:1008.747067pt;}
.h3_c02204{height:28.916250pt;}
.h1_c02204{height:37.063125pt;}
.h2_c02204{height:37.166250pt;}
.h4_c02204{height:48.581988pt;}
.h0_c02204{height:1122.666667pt;}
.w1_c02204{width:793.333333pt;}
.w0_c02204{width:793.626667pt;}
.x0_c02204{left:0.000000pt;}
.xd_c02204{left:104.000000pt;}
.x8_c02204{left:391.999872pt;}
.x4_c02204{left:396.160512pt;}
.xb_c02204{left:400.960000pt;}
.x7_c02204{left:404.799648pt;}
.x5_c02204{left:410.560128pt;}
.x1_c02204{left:411.840000pt;}
.xa_c02204{left:429.760320pt;}
.x9_c02204{left:437.439552pt;}
.x6_c02204{left:438.400512pt;}
.xc_c02204{left:450.560320pt;}
.x3_c02204{left:455.039904pt;}
.x2_c02204{left:468.159648pt;}
}





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

.ir_c02205:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02205{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02205;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02205{font-family:ff1_c02205;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02205;src:url('chunks/assets/font_1feb5973fe58408c007c2114.woff2')format("woff");}.ff2_c02205{font-family:ff2_c02205;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02205;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02205{font-family:ff3_c02205;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02205{vertical-align:0.000000px;}
.v1_c02205{vertical-align:1.439424px;}
.ls13_c02205{letter-spacing:-0.826848px;}
.ls15_c02205{letter-spacing:-0.793584px;}
.ls7_c02205{letter-spacing:-0.613008px;}
.ls9_c02205{letter-spacing:-0.574992px;}
.lsc_c02205{letter-spacing:-0.427680px;}
.lsf_c02205{letter-spacing:-0.275616px;}
.lsd_c02205{letter-spacing:-0.261360px;}
.ls6_c02205{letter-spacing:-0.242352px;}
.ls16_c02205{letter-spacing:-0.228096px;}
.ls4_c02205{letter-spacing:-0.118800px;}
.ls12_c02205{letter-spacing:0.000000px;}
.ls1_c02205{letter-spacing:0.006048px;}
.ls14_c02205{letter-spacing:0.052272px;}
.ls5_c02205{letter-spacing:0.128304px;}
.lsb_c02205{letter-spacing:0.508464px;}
.ls11_c02205{letter-spacing:0.514080px;}
.lse_c02205{letter-spacing:0.536976px;}
.lsa_c02205{letter-spacing:0.579744px;}
.ls10_c02205{letter-spacing:0.594000px;}
.ls8_c02205{letter-spacing:0.598752px;}
.ls2_c02205{letter-spacing:0.613008px;}
.ls0_c02205{letter-spacing:0.717552px;}
.ls3_c02205{letter-spacing:0.722304px;}
.sc__c02205{text-shadow:none;}
.sc0_c02205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02205{-webkit-text-stroke:0px transparent;}
.sc0_c02205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02205{word-spacing:-15.126048px;}
.wsa_c02205{word-spacing:-12.474000px;}
.ws8_c02205{word-spacing:-12.459744px;}
.ws9_c02205{word-spacing:-12.416976px;}
.ws2_c02205{word-spacing:-11.266992px;}
.ws15_c02205{word-spacing:-2.159136px;}
.ws11_c02205{word-spacing:-1.078704px;}
.wse_c02205{word-spacing:-0.974160px;}
.ws16_c02205{word-spacing:-0.413424px;}
.ws18_c02205{word-spacing:-0.133056px;}
.ws10_c02205{word-spacing:-0.118800px;}
.ws13_c02205{word-spacing:-0.099792px;}
.ws14_c02205{word-spacing:-0.085536px;}
.wsf_c02205{word-spacing:0.000000px;}
.ws12_c02205{word-spacing:0.066528px;}
.ws17_c02205{word-spacing:0.432432px;}
.ws4_c02205{word-spacing:4.951584px;}
.wsd_c02205{word-spacing:7.280064px;}
.wsb_c02205{word-spacing:33.300288px;}
.ws6_c02205{word-spacing:36.742464px;}
.ws1_c02205{word-spacing:37.759392px;}
.ws0_c02205{word-spacing:38.020752px;}
.ws3_c02205{word-spacing:39.218256px;}
.ws5_c02205{word-spacing:39.902544px;}
.ws7_c02205{word-spacing:42.026688px;}
._0_c02205{margin-left:-1.948320px;}
._2_c02205{width:1.482624px;}
._4_c02205{width:14.148864px;}
._5_c02205{width:20.210256px;}
._6_c02205{width:22.391424px;}
._7_c02205{width:25.461216px;}
._1_c02205{width:50.252400px;}
._3_c02205{width:51.530688px;}
.fc0_c02205{color:rgb(0,0,0);}
.fs0_c02205{font-size:47.520000px;}
.fs1_c02205{font-size:60.480000px;}
.y0_c02205{bottom:0.000000px;}
.y1a_c02205{bottom:146.999550px;}
.y1c_c02205{bottom:186.600234px;}
.y1b_c02205{bottom:196.320450px;}
.y19_c02205{bottom:275.879730px;}
.y18_c02205{bottom:356.879946px;}
.y16_c02205{bottom:391.440054px;}
.y15_c02205{bottom:406.559730px;}
.y11_c02205{bottom:424.560306px;}
.y17_c02205{bottom:458.760450px;}
.y14_c02205{bottom:491.879514px;}
.y13_c02205{bottom:509.880090px;}
.y10_c02205{bottom:543.000342px;}
.y12_c02205{bottom:559.559874px;}
.yf_c02205{bottom:577.560450px;}
.y1d_c02205{bottom:614.280450px;}
.yb_c02205{bottom:667.558326px;}
.yd_c02205{bottom:707.160234px;}
.yc_c02205{bottom:716.880450px;}
.ya_c02205{bottom:796.438506px;}
.y9_c02205{bottom:877.438722px;}
.y7_c02205{bottom:926.759730px;}
.y3_c02205{bottom:944.760306px;}
.y8_c02205{bottom:979.319226px;}
.y6_c02205{bottom:1012.439478px;}
.y5_c02205{bottom:1030.440054px;}
.y2_c02205{bottom:1063.560306px;}
.y4_c02205{bottom:1079.759874px;}
.y1_c02205{bottom:1097.760450px;}
.ye_c02205{bottom:1134.840450px;}
.h3_c02205{height:32.530781px;}
.h1_c02205{height:41.696016px;}
.h2_c02205{height:41.812031px;}
.h4_c02205{height:54.654737px;}
.h0_c02205{height:1263.000000px;}
.w1_c02205{width:892.500000px;}
.w0_c02205{width:892.830000px;}
.x0_c02205{left:0.000000px;}
.xd_c02205{left:117.000000px;}
.x8_c02205{left:440.999856px;}
.x4_c02205{left:445.680576px;}
.xb_c02205{left:451.080000px;}
.x7_c02205{left:455.399604px;}
.x5_c02205{left:461.880144px;}
.x1_c02205{left:463.320000px;}
.xa_c02205{left:483.480360px;}
.x9_c02205{left:492.119496px;}
.x6_c02205{left:493.200576px;}
.xc_c02205{left:506.880360px;}
.x3_c02205{left:511.919892px;}
.x2_c02205{left:526.679604px;}
.xe_c02205{left:569.880036px;}
@media print{
.v0_c02205{vertical-align:0.000000pt;}
.v1_c02205{vertical-align:1.279488pt;}
.ls13_c02205{letter-spacing:-0.734976pt;}
.ls15_c02205{letter-spacing:-0.705408pt;}
.ls7_c02205{letter-spacing:-0.544896pt;}
.ls9_c02205{letter-spacing:-0.511104pt;}
.lsc_c02205{letter-spacing:-0.380160pt;}
.lsf_c02205{letter-spacing:-0.244992pt;}
.lsd_c02205{letter-spacing:-0.232320pt;}
.ls6_c02205{letter-spacing:-0.215424pt;}
.ls16_c02205{letter-spacing:-0.202752pt;}
.ls4_c02205{letter-spacing:-0.105600pt;}
.ls12_c02205{letter-spacing:0.000000pt;}
.ls1_c02205{letter-spacing:0.005376pt;}
.ls14_c02205{letter-spacing:0.046464pt;}
.ls5_c02205{letter-spacing:0.114048pt;}
.lsb_c02205{letter-spacing:0.451968pt;}
.ls11_c02205{letter-spacing:0.456960pt;}
.lse_c02205{letter-spacing:0.477312pt;}
.lsa_c02205{letter-spacing:0.515328pt;}
.ls10_c02205{letter-spacing:0.528000pt;}
.ls8_c02205{letter-spacing:0.532224pt;}
.ls2_c02205{letter-spacing:0.544896pt;}
.ls0_c02205{letter-spacing:0.637824pt;}
.ls3_c02205{letter-spacing:0.642048pt;}
.wsc_c02205{word-spacing:-13.445376pt;}
.wsa_c02205{word-spacing:-11.088000pt;}
.ws8_c02205{word-spacing:-11.075328pt;}
.ws9_c02205{word-spacing:-11.037312pt;}
.ws2_c02205{word-spacing:-10.015104pt;}
.ws15_c02205{word-spacing:-1.919232pt;}
.ws11_c02205{word-spacing:-0.958848pt;}
.wse_c02205{word-spacing:-0.865920pt;}
.ws16_c02205{word-spacing:-0.367488pt;}
.ws18_c02205{word-spacing:-0.118272pt;}
.ws10_c02205{word-spacing:-0.105600pt;}
.ws13_c02205{word-spacing:-0.088704pt;}
.ws14_c02205{word-spacing:-0.076032pt;}
.wsf_c02205{word-spacing:0.000000pt;}
.ws12_c02205{word-spacing:0.059136pt;}
.ws17_c02205{word-spacing:0.384384pt;}
.ws4_c02205{word-spacing:4.401408pt;}
.wsd_c02205{word-spacing:6.471168pt;}
.wsb_c02205{word-spacing:29.600256pt;}
.ws6_c02205{word-spacing:32.659968pt;}
.ws1_c02205{word-spacing:33.563904pt;}
.ws0_c02205{word-spacing:33.796224pt;}
.ws3_c02205{word-spacing:34.860672pt;}
.ws5_c02205{word-spacing:35.468928pt;}
.ws7_c02205{word-spacing:37.357056pt;}
._0_c02205{margin-left:-1.731840pt;}
._2_c02205{width:1.317888pt;}
._4_c02205{width:12.576768pt;}
._5_c02205{width:17.964672pt;}
._6_c02205{width:19.903488pt;}
._7_c02205{width:22.632192pt;}
._1_c02205{width:44.668800pt;}
._3_c02205{width:45.805056pt;}
.fs0_c02205{font-size:42.240000pt;}
.fs1_c02205{font-size:53.760000pt;}
.y0_c02205{bottom:0.000000pt;}
.y1a_c02205{bottom:130.666267pt;}
.y1c_c02205{bottom:165.866875pt;}
.y1b_c02205{bottom:174.507067pt;}
.y19_c02205{bottom:245.226427pt;}
.y18_c02205{bottom:317.226619pt;}
.y16_c02205{bottom:347.946715pt;}
.y15_c02205{bottom:361.386427pt;}
.y11_c02205{bottom:377.386939pt;}
.y17_c02205{bottom:407.787067pt;}
.y14_c02205{bottom:437.226235pt;}
.y13_c02205{bottom:453.226747pt;}
.y10_c02205{bottom:482.666971pt;}
.y12_c02205{bottom:497.386555pt;}
.yf_c02205{bottom:513.387067pt;}
.y1d_c02205{bottom:546.027067pt;}
.yb_c02205{bottom:593.385179pt;}
.yd_c02205{bottom:628.586875pt;}
.yc_c02205{bottom:637.227067pt;}
.ya_c02205{bottom:707.945339pt;}
.y9_c02205{bottom:779.945531pt;}
.y7_c02205{bottom:823.786427pt;}
.y3_c02205{bottom:839.786939pt;}
.y8_c02205{bottom:870.505979pt;}
.y6_c02205{bottom:899.946203pt;}
.y5_c02205{bottom:915.946715pt;}
.y2_c02205{bottom:945.386939pt;}
.y4_c02205{bottom:959.786555pt;}
.y1_c02205{bottom:975.787067pt;}
.ye_c02205{bottom:1008.747067pt;}
.h3_c02205{height:28.916250pt;}
.h1_c02205{height:37.063125pt;}
.h2_c02205{height:37.166250pt;}
.h4_c02205{height:48.581988pt;}
.h0_c02205{height:1122.666667pt;}
.w1_c02205{width:793.333333pt;}
.w0_c02205{width:793.626667pt;}
.x0_c02205{left:0.000000pt;}
.xd_c02205{left:104.000000pt;}
.x8_c02205{left:391.999872pt;}
.x4_c02205{left:396.160512pt;}
.xb_c02205{left:400.960000pt;}
.x7_c02205{left:404.799648pt;}
.x5_c02205{left:410.560128pt;}
.x1_c02205{left:411.840000pt;}
.xa_c02205{left:429.760320pt;}
.x9_c02205{left:437.439552pt;}
.x6_c02205{left:438.400512pt;}
.xc_c02205{left:450.560320pt;}
.x3_c02205{left:455.039904pt;}
.x2_c02205{left:468.159648pt;}
.xe_c02205{left:506.560032pt;}
}





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

.ir_c02206:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02206{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02206;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02206{font-family:ff1_c02206;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02206;src:url('chunks/assets/font_a7a4855828da6f137b7bf83c.woff2')format("woff");}.ff2_c02206{font-family:ff2_c02206;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02206;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02206{font-family:ff3_c02206;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02206{vertical-align:0.000000px;}
.v1_c02206{vertical-align:1.439424px;}
.ls9_c02206{letter-spacing:-0.784080px;}
.ls14_c02206{letter-spacing:-0.755568px;}
.lsa_c02206{letter-spacing:-0.574992px;}
.lsd_c02206{letter-spacing:-0.427680px;}
.ls10_c02206{letter-spacing:-0.275616px;}
.lse_c02206{letter-spacing:-0.261360px;}
.ls6_c02206{letter-spacing:-0.242352px;}
.ls4_c02206{letter-spacing:-0.118800px;}
.ls13_c02206{letter-spacing:0.000000px;}
.ls1_c02206{letter-spacing:0.006048px;}
.ls5_c02206{letter-spacing:0.128304px;}
.ls7_c02206{letter-spacing:0.242352px;}
.lsc_c02206{letter-spacing:0.508464px;}
.ls12_c02206{letter-spacing:0.514080px;}
.lsf_c02206{letter-spacing:0.536976px;}
.lsb_c02206{letter-spacing:0.579744px;}
.ls11_c02206{letter-spacing:0.594000px;}
.ls8_c02206{letter-spacing:0.598752px;}
.ls3_c02206{letter-spacing:0.613008px;}
.ls0_c02206{letter-spacing:0.717552px;}
.ls2_c02206{letter-spacing:0.722304px;}
.sc__c02206{text-shadow:none;}
.sc0_c02206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02206{-webkit-text-stroke:0px transparent;}
.sc0_c02206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02206{word-spacing:-15.126048px;}
.ws9_c02206{word-spacing:-12.474000px;}
.ws7_c02206{word-spacing:-12.459744px;}
.ws8_c02206{word-spacing:-12.416976px;}
.ws2_c02206{word-spacing:-12.122352px;}
.wsc_c02206{word-spacing:-11.124432px;}
.ws15_c02206{word-spacing:-2.159136px;}
.ws16_c02206{word-spacing:-1.083456px;}
.ws11_c02206{word-spacing:-1.078704px;}
.wsd_c02206{word-spacing:-0.974160px;}
.wsf_c02206{word-spacing:-0.118800px;}
.ws13_c02206{word-spacing:-0.099792px;}
.ws14_c02206{word-spacing:-0.085536px;}
.wse_c02206{word-spacing:0.000000px;}
.ws12_c02206{word-spacing:0.066528px;}
.ws10_c02206{word-spacing:0.422928px;}
.wsa_c02206{word-spacing:33.300288px;}
.ws5_c02206{word-spacing:36.742464px;}
.ws1_c02206{word-spacing:37.759392px;}
.ws0_c02206{word-spacing:38.020752px;}
.ws3_c02206{word-spacing:39.218256px;}
.ws4_c02206{word-spacing:39.902544px;}
.ws6_c02206{word-spacing:42.026688px;}
._0_c02206{margin-left:-1.948320px;}
._2_c02206{width:1.482624px;}
._4_c02206{width:3.483216px;}
._5_c02206{width:14.148864px;}
._1_c02206{width:50.252400px;}
._3_c02206{width:51.530688px;}
.fc0_c02206{color:rgb(0,0,0);}
.fs0_c02206{font-size:47.520000px;}
.fs1_c02206{font-size:60.480000px;}
.y0_c02206{bottom:0.000000px;}
.y19_c02206{bottom:146.998362px;}
.y1b_c02206{bottom:186.600234px;}
.y1a_c02206{bottom:196.320450px;}
.y18_c02206{bottom:275.878542px;}
.y17_c02206{bottom:356.878758px;}
.y15_c02206{bottom:406.559730px;}
.y11_c02206{bottom:424.560306px;}
.y16_c02206{bottom:458.759262px;}
.y14_c02206{bottom:491.879514px;}
.y13_c02206{bottom:509.880090px;}
.y10_c02206{bottom:543.000342px;}
.y12_c02206{bottom:559.559874px;}
.yf_c02206{bottom:577.560450px;}
.y1c_c02206{bottom:614.280450px;}
.yb_c02206{bottom:667.558326px;}
.yd_c02206{bottom:707.160234px;}
.yc_c02206{bottom:716.880450px;}
.ya_c02206{bottom:796.438506px;}
.y9_c02206{bottom:877.438722px;}
.y7_c02206{bottom:926.759730px;}
.y3_c02206{bottom:944.760306px;}
.y8_c02206{bottom:979.319226px;}
.y6_c02206{bottom:1012.439478px;}
.y5_c02206{bottom:1030.440054px;}
.y2_c02206{bottom:1063.560306px;}
.y4_c02206{bottom:1079.759874px;}
.y1_c02206{bottom:1097.760450px;}
.ye_c02206{bottom:1134.840450px;}
.h3_c02206{height:32.530781px;}
.h1_c02206{height:41.696016px;}
.h2_c02206{height:41.812031px;}
.h4_c02206{height:54.654737px;}
.h0_c02206{height:1263.000000px;}
.w1_c02206{width:892.500000px;}
.w0_c02206{width:892.830000px;}
.x0_c02206{left:0.000000px;}
.xd_c02206{left:117.000000px;}
.x8_c02206{left:440.999856px;}
.x4_c02206{left:445.680576px;}
.xb_c02206{left:451.080000px;}
.x7_c02206{left:455.399604px;}
.x5_c02206{left:461.880144px;}
.x1_c02206{left:463.320000px;}
.xa_c02206{left:483.480360px;}
.x9_c02206{left:492.119496px;}
.x6_c02206{left:493.200576px;}
.xc_c02206{left:506.880360px;}
.x3_c02206{left:511.919892px;}
.x2_c02206{left:526.679604px;}
@media print{
.v0_c02206{vertical-align:0.000000pt;}
.v1_c02206{vertical-align:1.279488pt;}
.ls9_c02206{letter-spacing:-0.696960pt;}
.ls14_c02206{letter-spacing:-0.671616pt;}
.lsa_c02206{letter-spacing:-0.511104pt;}
.lsd_c02206{letter-spacing:-0.380160pt;}
.ls10_c02206{letter-spacing:-0.244992pt;}
.lse_c02206{letter-spacing:-0.232320pt;}
.ls6_c02206{letter-spacing:-0.215424pt;}
.ls4_c02206{letter-spacing:-0.105600pt;}
.ls13_c02206{letter-spacing:0.000000pt;}
.ls1_c02206{letter-spacing:0.005376pt;}
.ls5_c02206{letter-spacing:0.114048pt;}
.ls7_c02206{letter-spacing:0.215424pt;}
.lsc_c02206{letter-spacing:0.451968pt;}
.ls12_c02206{letter-spacing:0.456960pt;}
.lsf_c02206{letter-spacing:0.477312pt;}
.lsb_c02206{letter-spacing:0.515328pt;}
.ls11_c02206{letter-spacing:0.528000pt;}
.ls8_c02206{letter-spacing:0.532224pt;}
.ls3_c02206{letter-spacing:0.544896pt;}
.ls0_c02206{letter-spacing:0.637824pt;}
.ls2_c02206{letter-spacing:0.642048pt;}
.wsb_c02206{word-spacing:-13.445376pt;}
.ws9_c02206{word-spacing:-11.088000pt;}
.ws7_c02206{word-spacing:-11.075328pt;}
.ws8_c02206{word-spacing:-11.037312pt;}
.ws2_c02206{word-spacing:-10.775424pt;}
.wsc_c02206{word-spacing:-9.888384pt;}
.ws15_c02206{word-spacing:-1.919232pt;}
.ws16_c02206{word-spacing:-0.963072pt;}
.ws11_c02206{word-spacing:-0.958848pt;}
.wsd_c02206{word-spacing:-0.865920pt;}
.wsf_c02206{word-spacing:-0.105600pt;}
.ws13_c02206{word-spacing:-0.088704pt;}
.ws14_c02206{word-spacing:-0.076032pt;}
.wse_c02206{word-spacing:0.000000pt;}
.ws12_c02206{word-spacing:0.059136pt;}
.ws10_c02206{word-spacing:0.375936pt;}
.wsa_c02206{word-spacing:29.600256pt;}
.ws5_c02206{word-spacing:32.659968pt;}
.ws1_c02206{word-spacing:33.563904pt;}
.ws0_c02206{word-spacing:33.796224pt;}
.ws3_c02206{word-spacing:34.860672pt;}
.ws4_c02206{word-spacing:35.468928pt;}
.ws6_c02206{word-spacing:37.357056pt;}
._0_c02206{margin-left:-1.731840pt;}
._2_c02206{width:1.317888pt;}
._4_c02206{width:3.096192pt;}
._5_c02206{width:12.576768pt;}
._1_c02206{width:44.668800pt;}
._3_c02206{width:45.805056pt;}
.fs0_c02206{font-size:42.240000pt;}
.fs1_c02206{font-size:53.760000pt;}
.y0_c02206{bottom:0.000000pt;}
.y19_c02206{bottom:130.665211pt;}
.y1b_c02206{bottom:165.866875pt;}
.y1a_c02206{bottom:174.507067pt;}
.y18_c02206{bottom:245.225371pt;}
.y17_c02206{bottom:317.225563pt;}
.y15_c02206{bottom:361.386427pt;}
.y11_c02206{bottom:377.386939pt;}
.y16_c02206{bottom:407.786011pt;}
.y14_c02206{bottom:437.226235pt;}
.y13_c02206{bottom:453.226747pt;}
.y10_c02206{bottom:482.666971pt;}
.y12_c02206{bottom:497.386555pt;}
.yf_c02206{bottom:513.387067pt;}
.y1c_c02206{bottom:546.027067pt;}
.yb_c02206{bottom:593.385179pt;}
.yd_c02206{bottom:628.586875pt;}
.yc_c02206{bottom:637.227067pt;}
.ya_c02206{bottom:707.945339pt;}
.y9_c02206{bottom:779.945531pt;}
.y7_c02206{bottom:823.786427pt;}
.y3_c02206{bottom:839.786939pt;}
.y8_c02206{bottom:870.505979pt;}
.y6_c02206{bottom:899.946203pt;}
.y5_c02206{bottom:915.946715pt;}
.y2_c02206{bottom:945.386939pt;}
.y4_c02206{bottom:959.786555pt;}
.y1_c02206{bottom:975.787067pt;}
.ye_c02206{bottom:1008.747067pt;}
.h3_c02206{height:28.916250pt;}
.h1_c02206{height:37.063125pt;}
.h2_c02206{height:37.166250pt;}
.h4_c02206{height:48.581988pt;}
.h0_c02206{height:1122.666667pt;}
.w1_c02206{width:793.333333pt;}
.w0_c02206{width:793.626667pt;}
.x0_c02206{left:0.000000pt;}
.xd_c02206{left:104.000000pt;}
.x8_c02206{left:391.999872pt;}
.x4_c02206{left:396.160512pt;}
.xb_c02206{left:400.960000pt;}
.x7_c02206{left:404.799648pt;}
.x5_c02206{left:410.560128pt;}
.x1_c02206{left:411.840000pt;}
.xa_c02206{left:429.760320pt;}
.x9_c02206{left:437.439552pt;}
.x6_c02206{left:438.400512pt;}
.xc_c02206{left:450.560320pt;}
.x3_c02206{left:455.039904pt;}
.x2_c02206{left:468.159648pt;}
}





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

.ir_c02207:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02207{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02207;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02207{font-family:ff1_c02207;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02207;src:url('chunks/assets/font_100661fb07f8d5492d70d7e3.woff2')format("woff");}.ff2_c02207{font-family:ff2_c02207;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02207;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02207{font-family:ff3_c02207;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02207{vertical-align:0.000000px;}
.v1_c02207{vertical-align:1.439424px;}
.v2_c02207{vertical-align:33.121440px;}
.ls9_c02207{letter-spacing:-0.784080px;}
.ls14_c02207{letter-spacing:-0.760320px;}
.lsa_c02207{letter-spacing:-0.574992px;}
.lsd_c02207{letter-spacing:-0.427680px;}
.ls10_c02207{letter-spacing:-0.275616px;}
.lse_c02207{letter-spacing:-0.261360px;}
.ls6_c02207{letter-spacing:-0.242352px;}
.ls4_c02207{letter-spacing:-0.118800px;}
.ls13_c02207{letter-spacing:0.000000px;}
.ls1_c02207{letter-spacing:0.006048px;}
.ls15_c02207{letter-spacing:0.038016px;}
.ls5_c02207{letter-spacing:0.128304px;}
.ls7_c02207{letter-spacing:0.242352px;}
.lsc_c02207{letter-spacing:0.508464px;}
.ls12_c02207{letter-spacing:0.514080px;}
.lsf_c02207{letter-spacing:0.536976px;}
.lsb_c02207{letter-spacing:0.579744px;}
.ls11_c02207{letter-spacing:0.594000px;}
.ls8_c02207{letter-spacing:0.598752px;}
.ls3_c02207{letter-spacing:0.613008px;}
.ls16_c02207{letter-spacing:0.651024px;}
.ls17_c02207{letter-spacing:0.679536px;}
.ls2_c02207{letter-spacing:0.717552px;}
.ls0_c02207{letter-spacing:0.722304px;}
.sc__c02207{text-shadow:none;}
.sc0_c02207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02207{-webkit-text-stroke:0px transparent;}
.sc0_c02207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02207{word-spacing:-15.126048px;}
.ws9_c02207{word-spacing:-12.474000px;}
.ws7_c02207{word-spacing:-12.459744px;}
.ws8_c02207{word-spacing:-12.416976px;}
.ws2_c02207{word-spacing:-12.122352px;}
.wsd_c02207{word-spacing:-11.637648px;}
.ws19_c02207{word-spacing:-2.159136px;}
.ws15_c02207{word-spacing:-1.083456px;}
.ws1a_c02207{word-spacing:-1.078704px;}
.ws1e_c02207{word-spacing:-1.040688px;}
.ws1d_c02207{word-spacing:-1.012176px;}
.ws11_c02207{word-spacing:-0.974160px;}
.ws1c_c02207{word-spacing:-0.399168px;}
.ws13_c02207{word-spacing:-0.118800px;}
.ws17_c02207{word-spacing:-0.099792px;}
.ws18_c02207{word-spacing:-0.085536px;}
.ws12_c02207{word-spacing:0.000000px;}
.ws16_c02207{word-spacing:0.066528px;}
.ws1b_c02207{word-spacing:0.399168px;}
.ws14_c02207{word-spacing:0.422928px;}
.wsc_c02207{word-spacing:1.330560px;}
.wse_c02207{word-spacing:27.243216px;}
.ws10_c02207{word-spacing:30.298752px;}
.wsa_c02207{word-spacing:33.300288px;}
.wsf_c02207{word-spacing:36.143712px;}
.ws5_c02207{word-spacing:36.742464px;}
.ws1_c02207{word-spacing:37.759392px;}
.ws0_c02207{word-spacing:38.020752px;}
.ws3_c02207{word-spacing:39.218256px;}
.ws4_c02207{word-spacing:39.902544px;}
.ws6_c02207{word-spacing:42.026688px;}
._0_c02207{margin-left:-1.948320px;}
._2_c02207{width:1.482624px;}
._4_c02207{width:3.483216px;}
._6_c02207{width:6.263136px;}
._5_c02207{width:14.148864px;}
._7_c02207{width:41.432688px;}
._8_c02207{width:43.476048px;}
._9_c02207{width:44.835120px;}
._1_c02207{width:50.252400px;}
._3_c02207{width:51.530688px;}
.fc0_c02207{color:rgb(0,0,0);}
.fs0_c02207{font-size:47.520000px;}
.fs1_c02207{font-size:60.480000px;}
.y0_c02207{bottom:0.000000px;}
.y1a_c02207{bottom:146.999550px;}
.y1c_c02207{bottom:186.600234px;}
.y1b_c02207{bottom:196.320450px;}
.y19_c02207{bottom:275.879730px;}
.y18_c02207{bottom:356.879946px;}
.y16_c02207{bottom:391.440054px;}
.y15_c02207{bottom:406.559730px;}
.y11_c02207{bottom:424.560306px;}
.y17_c02207{bottom:458.760450px;}
.y14_c02207{bottom:491.879514px;}
.y13_c02207{bottom:509.880090px;}
.y10_c02207{bottom:543.000342px;}
.y12_c02207{bottom:559.559874px;}
.yf_c02207{bottom:577.560450px;}
.y1d_c02207{bottom:614.280450px;}
.yb_c02207{bottom:667.558326px;}
.yd_c02207{bottom:707.160234px;}
.yc_c02207{bottom:716.880450px;}
.ya_c02207{bottom:796.438506px;}
.y9_c02207{bottom:877.438722px;}
.y7_c02207{bottom:926.759730px;}
.y3_c02207{bottom:944.760306px;}
.y8_c02207{bottom:979.319226px;}
.y6_c02207{bottom:1012.439478px;}
.y5_c02207{bottom:1030.440054px;}
.y2_c02207{bottom:1063.560306px;}
.y4_c02207{bottom:1079.759874px;}
.y1_c02207{bottom:1097.760450px;}
.ye_c02207{bottom:1134.840450px;}
.h3_c02207{height:32.530781px;}
.h1_c02207{height:41.696016px;}
.h2_c02207{height:41.812031px;}
.h4_c02207{height:54.654737px;}
.h5_c02207{height:74.817456px;}
.h0_c02207{height:1263.000000px;}
.w1_c02207{width:892.500000px;}
.w0_c02207{width:892.830000px;}
.x0_c02207{left:0.000000px;}
.xd_c02207{left:117.000000px;}
.x8_c02207{left:440.999856px;}
.x4_c02207{left:445.680576px;}
.xb_c02207{left:451.080000px;}
.x7_c02207{left:455.399604px;}
.x5_c02207{left:461.880144px;}
.x1_c02207{left:463.320000px;}
.xa_c02207{left:483.480360px;}
.x9_c02207{left:492.119496px;}
.x6_c02207{left:493.200576px;}
.xc_c02207{left:506.880360px;}
.x3_c02207{left:511.919892px;}
.x2_c02207{left:526.679604px;}
.xe_c02207{left:569.880036px;}
@media print{
.v0_c02207{vertical-align:0.000000pt;}
.v1_c02207{vertical-align:1.279488pt;}
.v2_c02207{vertical-align:29.441280pt;}
.ls9_c02207{letter-spacing:-0.696960pt;}
.ls14_c02207{letter-spacing:-0.675840pt;}
.lsa_c02207{letter-spacing:-0.511104pt;}
.lsd_c02207{letter-spacing:-0.380160pt;}
.ls10_c02207{letter-spacing:-0.244992pt;}
.lse_c02207{letter-spacing:-0.232320pt;}
.ls6_c02207{letter-spacing:-0.215424pt;}
.ls4_c02207{letter-spacing:-0.105600pt;}
.ls13_c02207{letter-spacing:0.000000pt;}
.ls1_c02207{letter-spacing:0.005376pt;}
.ls15_c02207{letter-spacing:0.033792pt;}
.ls5_c02207{letter-spacing:0.114048pt;}
.ls7_c02207{letter-spacing:0.215424pt;}
.lsc_c02207{letter-spacing:0.451968pt;}
.ls12_c02207{letter-spacing:0.456960pt;}
.lsf_c02207{letter-spacing:0.477312pt;}
.lsb_c02207{letter-spacing:0.515328pt;}
.ls11_c02207{letter-spacing:0.528000pt;}
.ls8_c02207{letter-spacing:0.532224pt;}
.ls3_c02207{letter-spacing:0.544896pt;}
.ls16_c02207{letter-spacing:0.578688pt;}
.ls17_c02207{letter-spacing:0.604032pt;}
.ls2_c02207{letter-spacing:0.637824pt;}
.ls0_c02207{letter-spacing:0.642048pt;}
.wsb_c02207{word-spacing:-13.445376pt;}
.ws9_c02207{word-spacing:-11.088000pt;}
.ws7_c02207{word-spacing:-11.075328pt;}
.ws8_c02207{word-spacing:-11.037312pt;}
.ws2_c02207{word-spacing:-10.775424pt;}
.wsd_c02207{word-spacing:-10.344576pt;}
.ws19_c02207{word-spacing:-1.919232pt;}
.ws15_c02207{word-spacing:-0.963072pt;}
.ws1a_c02207{word-spacing:-0.958848pt;}
.ws1e_c02207{word-spacing:-0.925056pt;}
.ws1d_c02207{word-spacing:-0.899712pt;}
.ws11_c02207{word-spacing:-0.865920pt;}
.ws1c_c02207{word-spacing:-0.354816pt;}
.ws13_c02207{word-spacing:-0.105600pt;}
.ws17_c02207{word-spacing:-0.088704pt;}
.ws18_c02207{word-spacing:-0.076032pt;}
.ws12_c02207{word-spacing:0.000000pt;}
.ws16_c02207{word-spacing:0.059136pt;}
.ws1b_c02207{word-spacing:0.354816pt;}
.ws14_c02207{word-spacing:0.375936pt;}
.wsc_c02207{word-spacing:1.182720pt;}
.wse_c02207{word-spacing:24.216192pt;}
.ws10_c02207{word-spacing:26.932224pt;}
.wsa_c02207{word-spacing:29.600256pt;}
.wsf_c02207{word-spacing:32.127744pt;}
.ws5_c02207{word-spacing:32.659968pt;}
.ws1_c02207{word-spacing:33.563904pt;}
.ws0_c02207{word-spacing:33.796224pt;}
.ws3_c02207{word-spacing:34.860672pt;}
.ws4_c02207{word-spacing:35.468928pt;}
.ws6_c02207{word-spacing:37.357056pt;}
._0_c02207{margin-left:-1.731840pt;}
._2_c02207{width:1.317888pt;}
._4_c02207{width:3.096192pt;}
._6_c02207{width:5.567232pt;}
._5_c02207{width:12.576768pt;}
._7_c02207{width:36.829056pt;}
._8_c02207{width:38.645376pt;}
._9_c02207{width:39.853440pt;}
._1_c02207{width:44.668800pt;}
._3_c02207{width:45.805056pt;}
.fs0_c02207{font-size:42.240000pt;}
.fs1_c02207{font-size:53.760000pt;}
.y0_c02207{bottom:0.000000pt;}
.y1a_c02207{bottom:130.666267pt;}
.y1c_c02207{bottom:165.866875pt;}
.y1b_c02207{bottom:174.507067pt;}
.y19_c02207{bottom:245.226427pt;}
.y18_c02207{bottom:317.226619pt;}
.y16_c02207{bottom:347.946715pt;}
.y15_c02207{bottom:361.386427pt;}
.y11_c02207{bottom:377.386939pt;}
.y17_c02207{bottom:407.787067pt;}
.y14_c02207{bottom:437.226235pt;}
.y13_c02207{bottom:453.226747pt;}
.y10_c02207{bottom:482.666971pt;}
.y12_c02207{bottom:497.386555pt;}
.yf_c02207{bottom:513.387067pt;}
.y1d_c02207{bottom:546.027067pt;}
.yb_c02207{bottom:593.385179pt;}
.yd_c02207{bottom:628.586875pt;}
.yc_c02207{bottom:637.227067pt;}
.ya_c02207{bottom:707.945339pt;}
.y9_c02207{bottom:779.945531pt;}
.y7_c02207{bottom:823.786427pt;}
.y3_c02207{bottom:839.786939pt;}
.y8_c02207{bottom:870.505979pt;}
.y6_c02207{bottom:899.946203pt;}
.y5_c02207{bottom:915.946715pt;}
.y2_c02207{bottom:945.386939pt;}
.y4_c02207{bottom:959.786555pt;}
.y1_c02207{bottom:975.787067pt;}
.ye_c02207{bottom:1008.747067pt;}
.h3_c02207{height:28.916250pt;}
.h1_c02207{height:37.063125pt;}
.h2_c02207{height:37.166250pt;}
.h4_c02207{height:48.581988pt;}
.h5_c02207{height:66.504405pt;}
.h0_c02207{height:1122.666667pt;}
.w1_c02207{width:793.333333pt;}
.w0_c02207{width:793.626667pt;}
.x0_c02207{left:0.000000pt;}
.xd_c02207{left:104.000000pt;}
.x8_c02207{left:391.999872pt;}
.x4_c02207{left:396.160512pt;}
.xb_c02207{left:400.960000pt;}
.x7_c02207{left:404.799648pt;}
.x5_c02207{left:410.560128pt;}
.x1_c02207{left:411.840000pt;}
.xa_c02207{left:429.760320pt;}
.x9_c02207{left:437.439552pt;}
.x6_c02207{left:438.400512pt;}
.xc_c02207{left:450.560320pt;}
.x3_c02207{left:455.039904pt;}
.x2_c02207{left:468.159648pt;}
.xe_c02207{left:506.560032pt;}
}





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

.ir_c02208:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02208{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02208;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02208{font-family:ff1_c02208;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02208;src:url('chunks/assets/font_bcf36fddd6ddb0b20883d3fc.woff2')format("woff");}.ff2_c02208{font-family:ff2_c02208;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02208;src:url('chunks/assets/font_4b28f2f8fb0230c6e57f489b.woff2')format("woff");}.ff3_c02208{font-family:ff3_c02208;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02208{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02208{vertical-align:0.000000px;}
.v1_c02208{vertical-align:1.439424px;}
.ls15_c02208{letter-spacing:-0.774576px;}
.ls10_c02208{letter-spacing:-0.736560px;}
.ls9_c02208{letter-spacing:-0.574992px;}
.ls11_c02208{letter-spacing:-0.270864px;}
.lse_c02208{letter-spacing:-0.261360px;}
.ls7_c02208{letter-spacing:-0.242352px;}
.ls16_c02208{letter-spacing:-0.199584px;}
.ls4_c02208{letter-spacing:-0.118800px;}
.ls14_c02208{letter-spacing:0.000000px;}
.ls0_c02208{letter-spacing:0.006048px;}
.lsd_c02208{letter-spacing:0.038016px;}
.ls6_c02208{letter-spacing:0.128304px;}
.lsc_c02208{letter-spacing:0.508464px;}
.ls13_c02208{letter-spacing:0.514080px;}
.lsf_c02208{letter-spacing:0.536976px;}
.lsb_c02208{letter-spacing:0.579744px;}
.ls12_c02208{letter-spacing:0.594000px;}
.ls8_c02208{letter-spacing:0.598752px;}
.ls3_c02208{letter-spacing:0.613008px;}
.lsa_c02208{letter-spacing:0.665280px;}
.ls1_c02208{letter-spacing:0.670032px;}
.ls5_c02208{letter-spacing:0.717552px;}
.ls2_c02208{letter-spacing:0.722304px;}
.sc__c02208{text-shadow:none;}
.sc0_c02208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02208{-webkit-text-stroke:0px transparent;}
.sc0_c02208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02208{word-spacing:-15.126048px;}
.wsb_c02208{word-spacing:-12.474000px;}
.ws8_c02208{word-spacing:-12.459744px;}
.ws4_c02208{word-spacing:-11.637648px;}
.wse_c02208{word-spacing:-11.105424px;}
.ws18_c02208{word-spacing:-2.159136px;}
.ws1b_c02208{word-spacing:-1.083456px;}
.ws1a_c02208{word-spacing:-1.031184px;}
.ws13_c02208{word-spacing:-1.026432px;}
.ws10_c02208{word-spacing:-0.974160px;}
.wsf_c02208{word-spacing:-0.722304px;}
.ws14_c02208{word-spacing:-0.399168px;}
.ws19_c02208{word-spacing:-0.161568px;}
.ws12_c02208{word-spacing:-0.118800px;}
.ws15_c02208{word-spacing:-0.099792px;}
.ws16_c02208{word-spacing:-0.090288px;}
.ws17_c02208{word-spacing:-0.085536px;}
.ws11_c02208{word-spacing:0.000000px;}
.ws2_c02208{word-spacing:1.330560px;}
.wsa_c02208{word-spacing:6.629040px;}
.wsc_c02208{word-spacing:33.300288px;}
.ws9_c02208{word-spacing:34.836912px;}
.ws6_c02208{word-spacing:36.742464px;}
.ws1_c02208{word-spacing:37.759392px;}
.ws0_c02208{word-spacing:38.020752px;}
.ws3_c02208{word-spacing:39.218256px;}
.ws5_c02208{word-spacing:39.902544px;}
.ws7_c02208{word-spacing:42.026688px;}
._0_c02208{margin-left:-1.948320px;}
._2_c02208{width:1.482624px;}
._4_c02208{width:6.263136px;}
._8_c02208{width:14.148864px;}
._a_c02208{width:15.215904px;}
._9_c02208{width:17.363808px;}
._6_c02208{width:19.982160px;}
._7_c02208{width:23.451120px;}
._5_c02208{width:24.691392px;}
._1_c02208{width:50.252400px;}
._3_c02208{width:51.530688px;}
.fc0_c02208{color:rgb(0,0,0);}
.fs0_c02208{font-size:47.520000px;}
.fs1_c02208{font-size:60.480000px;}
.y0_c02208{bottom:0.000000px;}
.y1a_c02208{bottom:65.880450px;}
.y1f_c02208{bottom:131.880378px;}
.y1e_c02208{bottom:147.000054px;}
.y21_c02208{bottom:186.600234px;}
.y20_c02208{bottom:196.320450px;}
.y1d_c02208{bottom:260.760558px;}
.y1c_c02208{bottom:275.880234px;}
.y19_c02208{bottom:291.000000px;}
.y18_c02208{bottom:356.878758px;}
.y1b_c02208{bottom:356.880450px;}
.y16_c02208{bottom:406.559730px;}
.y12_c02208{bottom:424.560306px;}
.y17_c02208{bottom:458.759262px;}
.y15_c02208{bottom:491.879514px;}
.y14_c02208{bottom:509.880090px;}
.y11_c02208{bottom:543.000342px;}
.y13_c02208{bottom:559.559874px;}
.y10_c02208{bottom:577.560450px;}
.y22_c02208{bottom:614.280450px;}
.yc_c02208{bottom:652.438650px;}
.yb_c02208{bottom:667.558326px;}
.ye_c02208{bottom:707.160234px;}
.yd_c02208{bottom:716.880450px;}
.ya_c02208{bottom:796.438506px;}
.y9_c02208{bottom:877.438722px;}
.y7_c02208{bottom:926.759730px;}
.y3_c02208{bottom:944.760306px;}
.y8_c02208{bottom:979.319226px;}
.y6_c02208{bottom:1012.439478px;}
.y5_c02208{bottom:1030.440054px;}
.y2_c02208{bottom:1063.560306px;}
.y4_c02208{bottom:1079.759874px;}
.y1_c02208{bottom:1097.760450px;}
.yf_c02208{bottom:1134.840450px;}
.h3_c02208{height:32.530781px;}
.h1_c02208{height:41.696016px;}
.h2_c02208{height:41.812031px;}
.h4_c02208{height:54.654737px;}
.h5_c02208{height:78.480000px;}
.h0_c02208{height:1263.000000px;}
.w2_c02208{width:215.280000px;}
.w1_c02208{width:892.500000px;}
.w0_c02208{width:892.830000px;}
.x0_c02208{left:0.000000px;}
.xe_c02208{left:117.000000px;}
.x8_c02208{left:440.999856px;}
.x4_c02208{left:445.680576px;}
.xc_c02208{left:451.080000px;}
.x7_c02208{left:455.399604px;}
.x5_c02208{left:461.880144px;}
.x1_c02208{left:463.320000px;}
.xa_c02208{left:483.480360px;}
.x9_c02208{left:492.119496px;}
.x6_c02208{left:493.200576px;}
.xd_c02208{left:506.880360px;}
.x3_c02208{left:511.919892px;}
.x2_c02208{left:526.679604px;}
.xb_c02208{left:569.880036px;}
.xf_c02208{left:699.840000px;}
@media print{
.v0_c02208{vertical-align:0.000000pt;}
.v1_c02208{vertical-align:1.279488pt;}
.ls15_c02208{letter-spacing:-0.688512pt;}
.ls10_c02208{letter-spacing:-0.654720pt;}
.ls9_c02208{letter-spacing:-0.511104pt;}
.ls11_c02208{letter-spacing:-0.240768pt;}
.lse_c02208{letter-spacing:-0.232320pt;}
.ls7_c02208{letter-spacing:-0.215424pt;}
.ls16_c02208{letter-spacing:-0.177408pt;}
.ls4_c02208{letter-spacing:-0.105600pt;}
.ls14_c02208{letter-spacing:0.000000pt;}
.ls0_c02208{letter-spacing:0.005376pt;}
.lsd_c02208{letter-spacing:0.033792pt;}
.ls6_c02208{letter-spacing:0.114048pt;}
.lsc_c02208{letter-spacing:0.451968pt;}
.ls13_c02208{letter-spacing:0.456960pt;}
.lsf_c02208{letter-spacing:0.477312pt;}
.lsb_c02208{letter-spacing:0.515328pt;}
.ls12_c02208{letter-spacing:0.528000pt;}
.ls8_c02208{letter-spacing:0.532224pt;}
.ls3_c02208{letter-spacing:0.544896pt;}
.lsa_c02208{letter-spacing:0.591360pt;}
.ls1_c02208{letter-spacing:0.595584pt;}
.ls5_c02208{letter-spacing:0.637824pt;}
.ls2_c02208{letter-spacing:0.642048pt;}
.wsd_c02208{word-spacing:-13.445376pt;}
.wsb_c02208{word-spacing:-11.088000pt;}
.ws8_c02208{word-spacing:-11.075328pt;}
.ws4_c02208{word-spacing:-10.344576pt;}
.wse_c02208{word-spacing:-9.871488pt;}
.ws18_c02208{word-spacing:-1.919232pt;}
.ws1b_c02208{word-spacing:-0.963072pt;}
.ws1a_c02208{word-spacing:-0.916608pt;}
.ws13_c02208{word-spacing:-0.912384pt;}
.ws10_c02208{word-spacing:-0.865920pt;}
.wsf_c02208{word-spacing:-0.642048pt;}
.ws14_c02208{word-spacing:-0.354816pt;}
.ws19_c02208{word-spacing:-0.143616pt;}
.ws12_c02208{word-spacing:-0.105600pt;}
.ws15_c02208{word-spacing:-0.088704pt;}
.ws16_c02208{word-spacing:-0.080256pt;}
.ws17_c02208{word-spacing:-0.076032pt;}
.ws11_c02208{word-spacing:0.000000pt;}
.ws2_c02208{word-spacing:1.182720pt;}
.wsa_c02208{word-spacing:5.892480pt;}
.wsc_c02208{word-spacing:29.600256pt;}
.ws9_c02208{word-spacing:30.966144pt;}
.ws6_c02208{word-spacing:32.659968pt;}
.ws1_c02208{word-spacing:33.563904pt;}
.ws0_c02208{word-spacing:33.796224pt;}
.ws3_c02208{word-spacing:34.860672pt;}
.ws5_c02208{word-spacing:35.468928pt;}
.ws7_c02208{word-spacing:37.357056pt;}
._0_c02208{margin-left:-1.731840pt;}
._2_c02208{width:1.317888pt;}
._4_c02208{width:5.567232pt;}
._8_c02208{width:12.576768pt;}
._a_c02208{width:13.525248pt;}
._9_c02208{width:15.434496pt;}
._6_c02208{width:17.761920pt;}
._7_c02208{width:20.845440pt;}
._5_c02208{width:21.947904pt;}
._1_c02208{width:44.668800pt;}
._3_c02208{width:45.805056pt;}
.fs0_c02208{font-size:42.240000pt;}
.fs1_c02208{font-size:53.760000pt;}
.y0_c02208{bottom:0.000000pt;}
.y1a_c02208{bottom:58.560400pt;}
.y1f_c02208{bottom:117.227003pt;}
.y1e_c02208{bottom:130.666715pt;}
.y21_c02208{bottom:165.866875pt;}
.y20_c02208{bottom:174.507067pt;}
.y1d_c02208{bottom:231.787163pt;}
.y1c_c02208{bottom:245.226875pt;}
.y19_c02208{bottom:258.666667pt;}
.y18_c02208{bottom:317.225563pt;}
.y1b_c02208{bottom:317.227067pt;}
.y16_c02208{bottom:361.386427pt;}
.y12_c02208{bottom:377.386939pt;}
.y17_c02208{bottom:407.786011pt;}
.y15_c02208{bottom:437.226235pt;}
.y14_c02208{bottom:453.226747pt;}
.y11_c02208{bottom:482.666971pt;}
.y13_c02208{bottom:497.386555pt;}
.y10_c02208{bottom:513.387067pt;}
.y22_c02208{bottom:546.027067pt;}
.yc_c02208{bottom:579.945467pt;}
.yb_c02208{bottom:593.385179pt;}
.ye_c02208{bottom:628.586875pt;}
.yd_c02208{bottom:637.227067pt;}
.ya_c02208{bottom:707.945339pt;}
.y9_c02208{bottom:779.945531pt;}
.y7_c02208{bottom:823.786427pt;}
.y3_c02208{bottom:839.786939pt;}
.y8_c02208{bottom:870.505979pt;}
.y6_c02208{bottom:899.946203pt;}
.y5_c02208{bottom:915.946715pt;}
.y2_c02208{bottom:945.386939pt;}
.y4_c02208{bottom:959.786555pt;}
.y1_c02208{bottom:975.787067pt;}
.yf_c02208{bottom:1008.747067pt;}
.h3_c02208{height:28.916250pt;}
.h1_c02208{height:37.063125pt;}
.h2_c02208{height:37.166250pt;}
.h4_c02208{height:48.581988pt;}
.h5_c02208{height:69.760000pt;}
.h0_c02208{height:1122.666667pt;}
.w2_c02208{width:191.360000pt;}
.w1_c02208{width:793.333333pt;}
.w0_c02208{width:793.626667pt;}
.x0_c02208{left:0.000000pt;}
.xe_c02208{left:104.000000pt;}
.x8_c02208{left:391.999872pt;}
.x4_c02208{left:396.160512pt;}
.xc_c02208{left:400.960000pt;}
.x7_c02208{left:404.799648pt;}
.x5_c02208{left:410.560128pt;}
.x1_c02208{left:411.840000pt;}
.xa_c02208{left:429.760320pt;}
.x9_c02208{left:437.439552pt;}
.x6_c02208{left:438.400512pt;}
.xd_c02208{left:450.560320pt;}
.x3_c02208{left:455.039904pt;}
.x2_c02208{left:468.159648pt;}
.xb_c02208{left:506.560032pt;}
.xf_c02208{left:622.080000pt;}
}





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

.ir_c02209:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02209{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02209;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02209{font-family:ff1_c02209;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02209;src:url('chunks/assets/font_9a471a100b4c580f226e9e7e.woff2')format("woff");}.ff2_c02209{font-family:ff2_c02209;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02209;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02209{font-family:ff3_c02209;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02209{vertical-align:0.000000px;}
.v1_c02209{vertical-align:1.439424px;}
.ls16_c02209{letter-spacing:-0.736560px;}
.ls8_c02209{letter-spacing:-0.574992px;}
.ls10_c02209{letter-spacing:-0.275616px;}
.ls17_c02209{letter-spacing:-0.270864px;}
.ls14_c02209{letter-spacing:-0.266112px;}
.lse_c02209{letter-spacing:-0.261360px;}
.ls6_c02209{letter-spacing:-0.242352px;}
.lsa_c02209{letter-spacing:-0.237600px;}
.ls4_c02209{letter-spacing:-0.118800px;}
.ls13_c02209{letter-spacing:0.000000px;}
.ls1_c02209{letter-spacing:0.006048px;}
.lsb_c02209{letter-spacing:0.014256px;}
.lsd_c02209{letter-spacing:0.038016px;}
.ls5_c02209{letter-spacing:0.128304px;}
.lsc_c02209{letter-spacing:0.508464px;}
.ls12_c02209{letter-spacing:0.514080px;}
.lsf_c02209{letter-spacing:0.536976px;}
.ls9_c02209{letter-spacing:0.579744px;}
.ls11_c02209{letter-spacing:0.594000px;}
.ls7_c02209{letter-spacing:0.598752px;}
.ls2_c02209{letter-spacing:0.613008px;}
.ls15_c02209{letter-spacing:0.665280px;}
.ls0_c02209{letter-spacing:0.717552px;}
.ls3_c02209{letter-spacing:0.722304px;}
.sc__c02209{text-shadow:none;}
.sc0_c02209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02209{-webkit-text-stroke:0px transparent;}
.sc0_c02209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02209{word-spacing:-15.126048px;}
.wsb_c02209{word-spacing:-12.474000px;}
.ws9_c02209{word-spacing:-12.459744px;}
.wsa_c02209{word-spacing:-12.416976px;}
.wse_c02209{word-spacing:-12.388464px;}
.ws4_c02209{word-spacing:-11.637648px;}
.ws19_c02209{word-spacing:-2.159136px;}
.ws14_c02209{word-spacing:-1.078704px;}
.ws1b_c02209{word-spacing:-1.026432px;}
.ws11_c02209{word-spacing:-0.974160px;}
.ws16_c02209{word-spacing:-0.399168px;}
.ws15_c02209{word-spacing:-0.375408px;}
.ws13_c02209{word-spacing:-0.118800px;}
.ws17_c02209{word-spacing:-0.099792px;}
.ws1a_c02209{word-spacing:-0.095040px;}
.ws1c_c02209{word-spacing:-0.090288px;}
.ws18_c02209{word-spacing:-0.085536px;}
.ws12_c02209{word-spacing:0.000000px;}
.ws2_c02209{word-spacing:1.330560px;}
.ws10_c02209{word-spacing:6.629040px;}
.wsc_c02209{word-spacing:33.300288px;}
.ws7_c02209{word-spacing:33.743952px;}
.wsf_c02209{word-spacing:34.836912px;}
.ws6_c02209{word-spacing:36.742464px;}
.ws1_c02209{word-spacing:37.759392px;}
.ws0_c02209{word-spacing:38.020752px;}
.ws3_c02209{word-spacing:39.218256px;}
.ws5_c02209{word-spacing:39.902544px;}
.ws8_c02209{word-spacing:42.026688px;}
._0_c02209{margin-left:-1.948320px;}
._2_c02209{width:1.482624px;}
._8_c02209{width:4.999104px;}
._4_c02209{width:6.263136px;}
._7_c02209{width:14.148864px;}
._a_c02209{width:19.982160px;}
._b_c02209{width:23.451120px;}
._9_c02209{width:24.691392px;}
._6_c02209{width:46.754928px;}
._1_c02209{width:50.252400px;}
._3_c02209{width:51.530688px;}
._5_c02209{width:88.985952px;}
.fc0_c02209{color:rgb(0,0,0);}
.fs0_c02209{font-size:47.520000px;}
.fs1_c02209{font-size:60.480000px;}
.y0_c02209{bottom:0.000000px;}
.y1b_c02209{bottom:131.878686px;}
.y1a_c02209{bottom:146.998362px;}
.y1d_c02209{bottom:186.600234px;}
.y1c_c02209{bottom:196.320450px;}
.y19_c02209{bottom:275.878542px;}
.y18_c02209{bottom:356.878758px;}
.y16_c02209{bottom:406.559730px;}
.y12_c02209{bottom:424.560306px;}
.y17_c02209{bottom:458.759262px;}
.y15_c02209{bottom:491.879514px;}
.y14_c02209{bottom:509.880090px;}
.y11_c02209{bottom:543.000342px;}
.y13_c02209{bottom:559.559874px;}
.y10_c02209{bottom:577.560450px;}
.y1e_c02209{bottom:614.280450px;}
.yc_c02209{bottom:667.559514px;}
.ye_c02209{bottom:707.160234px;}
.yd_c02209{bottom:716.880450px;}
.yb_c02209{bottom:796.439694px;}
.ya_c02209{bottom:877.439910px;}
.y8_c02209{bottom:912.000018px;}
.y7_c02209{bottom:926.759730px;}
.y3_c02209{bottom:944.760306px;}
.y9_c02209{bottom:979.320414px;}
.y6_c02209{bottom:1012.439478px;}
.y5_c02209{bottom:1030.440054px;}
.y2_c02209{bottom:1063.560306px;}
.y4_c02209{bottom:1079.759874px;}
.y1_c02209{bottom:1097.760450px;}
.yf_c02209{bottom:1134.840450px;}
.h3_c02209{height:32.530781px;}
.h1_c02209{height:41.696016px;}
.h2_c02209{height:41.812031px;}
.h4_c02209{height:54.654737px;}
.h0_c02209{height:1263.000000px;}
.w1_c02209{width:892.500000px;}
.w0_c02209{width:892.830000px;}
.x0_c02209{left:0.000000px;}
.xe_c02209{left:117.000000px;}
.x9_c02209{left:440.999856px;}
.x4_c02209{left:445.680576px;}
.xc_c02209{left:451.080000px;}
.x7_c02209{left:455.399604px;}
.x5_c02209{left:461.880144px;}
.x1_c02209{left:463.320000px;}
.xb_c02209{left:483.480360px;}
.xa_c02209{left:492.119496px;}
.x6_c02209{left:493.200576px;}
.xd_c02209{left:506.880360px;}
.x3_c02209{left:511.919892px;}
.x2_c02209{left:526.679604px;}
.x8_c02209{left:569.880036px;}
@media print{
.v0_c02209{vertical-align:0.000000pt;}
.v1_c02209{vertical-align:1.279488pt;}
.ls16_c02209{letter-spacing:-0.654720pt;}
.ls8_c02209{letter-spacing:-0.511104pt;}
.ls10_c02209{letter-spacing:-0.244992pt;}
.ls17_c02209{letter-spacing:-0.240768pt;}
.ls14_c02209{letter-spacing:-0.236544pt;}
.lse_c02209{letter-spacing:-0.232320pt;}
.ls6_c02209{letter-spacing:-0.215424pt;}
.lsa_c02209{letter-spacing:-0.211200pt;}
.ls4_c02209{letter-spacing:-0.105600pt;}
.ls13_c02209{letter-spacing:0.000000pt;}
.ls1_c02209{letter-spacing:0.005376pt;}
.lsb_c02209{letter-spacing:0.012672pt;}
.lsd_c02209{letter-spacing:0.033792pt;}
.ls5_c02209{letter-spacing:0.114048pt;}
.lsc_c02209{letter-spacing:0.451968pt;}
.ls12_c02209{letter-spacing:0.456960pt;}
.lsf_c02209{letter-spacing:0.477312pt;}
.ls9_c02209{letter-spacing:0.515328pt;}
.ls11_c02209{letter-spacing:0.528000pt;}
.ls7_c02209{letter-spacing:0.532224pt;}
.ls2_c02209{letter-spacing:0.544896pt;}
.ls15_c02209{letter-spacing:0.591360pt;}
.ls0_c02209{letter-spacing:0.637824pt;}
.ls3_c02209{letter-spacing:0.642048pt;}
.wsd_c02209{word-spacing:-13.445376pt;}
.wsb_c02209{word-spacing:-11.088000pt;}
.ws9_c02209{word-spacing:-11.075328pt;}
.wsa_c02209{word-spacing:-11.037312pt;}
.wse_c02209{word-spacing:-11.011968pt;}
.ws4_c02209{word-spacing:-10.344576pt;}
.ws19_c02209{word-spacing:-1.919232pt;}
.ws14_c02209{word-spacing:-0.958848pt;}
.ws1b_c02209{word-spacing:-0.912384pt;}
.ws11_c02209{word-spacing:-0.865920pt;}
.ws16_c02209{word-spacing:-0.354816pt;}
.ws15_c02209{word-spacing:-0.333696pt;}
.ws13_c02209{word-spacing:-0.105600pt;}
.ws17_c02209{word-spacing:-0.088704pt;}
.ws1a_c02209{word-spacing:-0.084480pt;}
.ws1c_c02209{word-spacing:-0.080256pt;}
.ws18_c02209{word-spacing:-0.076032pt;}
.ws12_c02209{word-spacing:0.000000pt;}
.ws2_c02209{word-spacing:1.182720pt;}
.ws10_c02209{word-spacing:5.892480pt;}
.wsc_c02209{word-spacing:29.600256pt;}
.ws7_c02209{word-spacing:29.994624pt;}
.wsf_c02209{word-spacing:30.966144pt;}
.ws6_c02209{word-spacing:32.659968pt;}
.ws1_c02209{word-spacing:33.563904pt;}
.ws0_c02209{word-spacing:33.796224pt;}
.ws3_c02209{word-spacing:34.860672pt;}
.ws5_c02209{word-spacing:35.468928pt;}
.ws8_c02209{word-spacing:37.357056pt;}
._0_c02209{margin-left:-1.731840pt;}
._2_c02209{width:1.317888pt;}
._8_c02209{width:4.443648pt;}
._4_c02209{width:5.567232pt;}
._7_c02209{width:12.576768pt;}
._a_c02209{width:17.761920pt;}
._b_c02209{width:20.845440pt;}
._9_c02209{width:21.947904pt;}
._6_c02209{width:41.559936pt;}
._1_c02209{width:44.668800pt;}
._3_c02209{width:45.805056pt;}
._5_c02209{width:79.098624pt;}
.fs0_c02209{font-size:42.240000pt;}
.fs1_c02209{font-size:53.760000pt;}
.y0_c02209{bottom:0.000000pt;}
.y1b_c02209{bottom:117.225499pt;}
.y1a_c02209{bottom:130.665211pt;}
.y1d_c02209{bottom:165.866875pt;}
.y1c_c02209{bottom:174.507067pt;}
.y19_c02209{bottom:245.225371pt;}
.y18_c02209{bottom:317.225563pt;}
.y16_c02209{bottom:361.386427pt;}
.y12_c02209{bottom:377.386939pt;}
.y17_c02209{bottom:407.786011pt;}
.y15_c02209{bottom:437.226235pt;}
.y14_c02209{bottom:453.226747pt;}
.y11_c02209{bottom:482.666971pt;}
.y13_c02209{bottom:497.386555pt;}
.y10_c02209{bottom:513.387067pt;}
.y1e_c02209{bottom:546.027067pt;}
.yc_c02209{bottom:593.386235pt;}
.ye_c02209{bottom:628.586875pt;}
.yd_c02209{bottom:637.227067pt;}
.yb_c02209{bottom:707.946395pt;}
.ya_c02209{bottom:779.946587pt;}
.y8_c02209{bottom:810.666683pt;}
.y7_c02209{bottom:823.786427pt;}
.y3_c02209{bottom:839.786939pt;}
.y9_c02209{bottom:870.507035pt;}
.y6_c02209{bottom:899.946203pt;}
.y5_c02209{bottom:915.946715pt;}
.y2_c02209{bottom:945.386939pt;}
.y4_c02209{bottom:959.786555pt;}
.y1_c02209{bottom:975.787067pt;}
.yf_c02209{bottom:1008.747067pt;}
.h3_c02209{height:28.916250pt;}
.h1_c02209{height:37.063125pt;}
.h2_c02209{height:37.166250pt;}
.h4_c02209{height:48.581988pt;}
.h0_c02209{height:1122.666667pt;}
.w1_c02209{width:793.333333pt;}
.w0_c02209{width:793.626667pt;}
.x0_c02209{left:0.000000pt;}
.xe_c02209{left:104.000000pt;}
.x9_c02209{left:391.999872pt;}
.x4_c02209{left:396.160512pt;}
.xc_c02209{left:400.960000pt;}
.x7_c02209{left:404.799648pt;}
.x5_c02209{left:410.560128pt;}
.x1_c02209{left:411.840000pt;}
.xb_c02209{left:429.760320pt;}
.xa_c02209{left:437.439552pt;}
.x6_c02209{left:438.400512pt;}
.xd_c02209{left:450.560320pt;}
.x3_c02209{left:455.039904pt;}
.x2_c02209{left:468.159648pt;}
.x8_c02209{left:506.560032pt;}
}





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

.ir_c02210:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02210{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02210;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02210{font-family:ff1_c02210;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02210;src:url('chunks/assets/font_404281927a909554995dd22a.woff2')format("woff");}.ff2_c02210{font-family:ff2_c02210;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02210;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02210{font-family:ff3_c02210;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02210{vertical-align:0.000000px;}
.v1_c02210{vertical-align:1.439424px;}
.ls9_c02210{letter-spacing:-0.774576px;}
.lsf_c02210{letter-spacing:-0.736560px;}
.ls8_c02210{letter-spacing:-0.574992px;}
.ls10_c02210{letter-spacing:-0.270864px;}
.ls14_c02210{letter-spacing:-0.266112px;}
.lsd_c02210{letter-spacing:-0.261360px;}
.ls6_c02210{letter-spacing:-0.242352px;}
.ls3_c02210{letter-spacing:-0.118800px;}
.ls13_c02210{letter-spacing:0.000000px;}
.ls0_c02210{letter-spacing:0.006048px;}
.lsc_c02210{letter-spacing:0.038016px;}
.ls5_c02210{letter-spacing:0.128304px;}
.lsb_c02210{letter-spacing:0.508464px;}
.ls12_c02210{letter-spacing:0.514080px;}
.lse_c02210{letter-spacing:0.536976px;}
.lsa_c02210{letter-spacing:0.579744px;}
.ls11_c02210{letter-spacing:0.594000px;}
.ls7_c02210{letter-spacing:0.598752px;}
.ls1_c02210{letter-spacing:0.613008px;}
.ls15_c02210{letter-spacing:0.665280px;}
.ls4_c02210{letter-spacing:0.717552px;}
.ls2_c02210{letter-spacing:0.722304px;}
.sc__c02210{text-shadow:none;}
.sc0_c02210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02210{-webkit-text-stroke:0px transparent;}
.sc0_c02210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02210{word-spacing:-15.126048px;}
.wsb_c02210{word-spacing:-12.474000px;}
.ws7_c02210{word-spacing:-12.459744px;}
.ws4_c02210{word-spacing:-11.637648px;}
.ws6_c02210{word-spacing:-11.105424px;}
.ws16_c02210{word-spacing:-2.159136px;}
.ws18_c02210{word-spacing:-1.026432px;}
.wsf_c02210{word-spacing:-0.974160px;}
.ws12_c02210{word-spacing:-0.399168px;}
.ws11_c02210{word-spacing:-0.118800px;}
.ws13_c02210{word-spacing:-0.099792px;}
.ws17_c02210{word-spacing:-0.095040px;}
.ws14_c02210{word-spacing:-0.090288px;}
.ws15_c02210{word-spacing:-0.085536px;}
.ws10_c02210{word-spacing:0.000000px;}
.ws2_c02210{word-spacing:1.330560px;}
.wsa_c02210{word-spacing:6.629040px;}
.wsc_c02210{word-spacing:33.300288px;}
.ws9_c02210{word-spacing:34.836912px;}
.wse_c02210{word-spacing:36.742464px;}
.ws1_c02210{word-spacing:37.759392px;}
.ws0_c02210{word-spacing:38.020752px;}
.ws3_c02210{word-spacing:39.218256px;}
.ws5_c02210{word-spacing:39.902544px;}
.ws8_c02210{word-spacing:42.026688px;}
._0_c02210{margin-left:-1.948320px;}
._2_c02210{width:1.482624px;}
._4_c02210{width:4.785264px;}
._8_c02210{width:14.148864px;}
._6_c02210{width:19.982160px;}
._7_c02210{width:23.451120px;}
._5_c02210{width:24.691392px;}
._1_c02210{width:50.252400px;}
._3_c02210{width:51.530688px;}
.fc0_c02210{color:rgb(0,0,0);}
.fs0_c02210{font-size:47.520000px;}
.fs1_c02210{font-size:60.480000px;}
.y0_c02210{bottom:0.000000px;}
.y1b_c02210{bottom:131.878686px;}
.y1a_c02210{bottom:146.998362px;}
.y1d_c02210{bottom:186.600234px;}
.y1c_c02210{bottom:196.320450px;}
.y19_c02210{bottom:275.878542px;}
.y18_c02210{bottom:356.878758px;}
.y16_c02210{bottom:406.559730px;}
.y12_c02210{bottom:424.560306px;}
.y17_c02210{bottom:458.759262px;}
.y15_c02210{bottom:491.879514px;}
.y14_c02210{bottom:509.880090px;}
.y11_c02210{bottom:543.000342px;}
.y13_c02210{bottom:559.559874px;}
.y10_c02210{bottom:577.560450px;}
.y1e_c02210{bottom:614.280450px;}
.yc_c02210{bottom:652.438650px;}
.yb_c02210{bottom:667.558326px;}
.ye_c02210{bottom:707.160234px;}
.yd_c02210{bottom:716.880450px;}
.ya_c02210{bottom:796.438506px;}
.y9_c02210{bottom:877.438722px;}
.y7_c02210{bottom:926.759730px;}
.y3_c02210{bottom:944.760306px;}
.y8_c02210{bottom:979.319226px;}
.y6_c02210{bottom:1012.439478px;}
.y5_c02210{bottom:1030.440054px;}
.y2_c02210{bottom:1063.560306px;}
.y4_c02210{bottom:1079.759874px;}
.y1_c02210{bottom:1097.760450px;}
.yf_c02210{bottom:1134.840450px;}
.h3_c02210{height:32.530781px;}
.h1_c02210{height:41.696016px;}
.h2_c02210{height:41.812031px;}
.h4_c02210{height:54.654737px;}
.h0_c02210{height:1263.000000px;}
.w1_c02210{width:892.500000px;}
.w0_c02210{width:892.830000px;}
.x0_c02210{left:0.000000px;}
.xe_c02210{left:117.000000px;}
.x8_c02210{left:440.999856px;}
.x4_c02210{left:445.680576px;}
.xc_c02210{left:451.080000px;}
.x7_c02210{left:455.399604px;}
.x5_c02210{left:461.880144px;}
.x1_c02210{left:463.320000px;}
.xa_c02210{left:483.480360px;}
.x9_c02210{left:492.119496px;}
.x6_c02210{left:493.200576px;}
.xd_c02210{left:506.880360px;}
.x3_c02210{left:511.919892px;}
.x2_c02210{left:526.679604px;}
.xb_c02210{left:569.880036px;}
@media print{
.v0_c02210{vertical-align:0.000000pt;}
.v1_c02210{vertical-align:1.279488pt;}
.ls9_c02210{letter-spacing:-0.688512pt;}
.lsf_c02210{letter-spacing:-0.654720pt;}
.ls8_c02210{letter-spacing:-0.511104pt;}
.ls10_c02210{letter-spacing:-0.240768pt;}
.ls14_c02210{letter-spacing:-0.236544pt;}
.lsd_c02210{letter-spacing:-0.232320pt;}
.ls6_c02210{letter-spacing:-0.215424pt;}
.ls3_c02210{letter-spacing:-0.105600pt;}
.ls13_c02210{letter-spacing:0.000000pt;}
.ls0_c02210{letter-spacing:0.005376pt;}
.lsc_c02210{letter-spacing:0.033792pt;}
.ls5_c02210{letter-spacing:0.114048pt;}
.lsb_c02210{letter-spacing:0.451968pt;}
.ls12_c02210{letter-spacing:0.456960pt;}
.lse_c02210{letter-spacing:0.477312pt;}
.lsa_c02210{letter-spacing:0.515328pt;}
.ls11_c02210{letter-spacing:0.528000pt;}
.ls7_c02210{letter-spacing:0.532224pt;}
.ls1_c02210{letter-spacing:0.544896pt;}
.ls15_c02210{letter-spacing:0.591360pt;}
.ls4_c02210{letter-spacing:0.637824pt;}
.ls2_c02210{letter-spacing:0.642048pt;}
.wsd_c02210{word-spacing:-13.445376pt;}
.wsb_c02210{word-spacing:-11.088000pt;}
.ws7_c02210{word-spacing:-11.075328pt;}
.ws4_c02210{word-spacing:-10.344576pt;}
.ws6_c02210{word-spacing:-9.871488pt;}
.ws16_c02210{word-spacing:-1.919232pt;}
.ws18_c02210{word-spacing:-0.912384pt;}
.wsf_c02210{word-spacing:-0.865920pt;}
.ws12_c02210{word-spacing:-0.354816pt;}
.ws11_c02210{word-spacing:-0.105600pt;}
.ws13_c02210{word-spacing:-0.088704pt;}
.ws17_c02210{word-spacing:-0.084480pt;}
.ws14_c02210{word-spacing:-0.080256pt;}
.ws15_c02210{word-spacing:-0.076032pt;}
.ws10_c02210{word-spacing:0.000000pt;}
.ws2_c02210{word-spacing:1.182720pt;}
.wsa_c02210{word-spacing:5.892480pt;}
.wsc_c02210{word-spacing:29.600256pt;}
.ws9_c02210{word-spacing:30.966144pt;}
.wse_c02210{word-spacing:32.659968pt;}
.ws1_c02210{word-spacing:33.563904pt;}
.ws0_c02210{word-spacing:33.796224pt;}
.ws3_c02210{word-spacing:34.860672pt;}
.ws5_c02210{word-spacing:35.468928pt;}
.ws8_c02210{word-spacing:37.357056pt;}
._0_c02210{margin-left:-1.731840pt;}
._2_c02210{width:1.317888pt;}
._4_c02210{width:4.253568pt;}
._8_c02210{width:12.576768pt;}
._6_c02210{width:17.761920pt;}
._7_c02210{width:20.845440pt;}
._5_c02210{width:21.947904pt;}
._1_c02210{width:44.668800pt;}
._3_c02210{width:45.805056pt;}
.fs0_c02210{font-size:42.240000pt;}
.fs1_c02210{font-size:53.760000pt;}
.y0_c02210{bottom:0.000000pt;}
.y1b_c02210{bottom:117.225499pt;}
.y1a_c02210{bottom:130.665211pt;}
.y1d_c02210{bottom:165.866875pt;}
.y1c_c02210{bottom:174.507067pt;}
.y19_c02210{bottom:245.225371pt;}
.y18_c02210{bottom:317.225563pt;}
.y16_c02210{bottom:361.386427pt;}
.y12_c02210{bottom:377.386939pt;}
.y17_c02210{bottom:407.786011pt;}
.y15_c02210{bottom:437.226235pt;}
.y14_c02210{bottom:453.226747pt;}
.y11_c02210{bottom:482.666971pt;}
.y13_c02210{bottom:497.386555pt;}
.y10_c02210{bottom:513.387067pt;}
.y1e_c02210{bottom:546.027067pt;}
.yc_c02210{bottom:579.945467pt;}
.yb_c02210{bottom:593.385179pt;}
.ye_c02210{bottom:628.586875pt;}
.yd_c02210{bottom:637.227067pt;}
.ya_c02210{bottom:707.945339pt;}
.y9_c02210{bottom:779.945531pt;}
.y7_c02210{bottom:823.786427pt;}
.y3_c02210{bottom:839.786939pt;}
.y8_c02210{bottom:870.505979pt;}
.y6_c02210{bottom:899.946203pt;}
.y5_c02210{bottom:915.946715pt;}
.y2_c02210{bottom:945.386939pt;}
.y4_c02210{bottom:959.786555pt;}
.y1_c02210{bottom:975.787067pt;}
.yf_c02210{bottom:1008.747067pt;}
.h3_c02210{height:28.916250pt;}
.h1_c02210{height:37.063125pt;}
.h2_c02210{height:37.166250pt;}
.h4_c02210{height:48.581988pt;}
.h0_c02210{height:1122.666667pt;}
.w1_c02210{width:793.333333pt;}
.w0_c02210{width:793.626667pt;}
.x0_c02210{left:0.000000pt;}
.xe_c02210{left:104.000000pt;}
.x8_c02210{left:391.999872pt;}
.x4_c02210{left:396.160512pt;}
.xc_c02210{left:400.960000pt;}
.x7_c02210{left:404.799648pt;}
.x5_c02210{left:410.560128pt;}
.x1_c02210{left:411.840000pt;}
.xa_c02210{left:429.760320pt;}
.x9_c02210{left:437.439552pt;}
.x6_c02210{left:438.400512pt;}
.xd_c02210{left:450.560320pt;}
.x3_c02210{left:455.039904pt;}
.x2_c02210{left:468.159648pt;}
.xb_c02210{left:506.560032pt;}
}





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

.ir_c02211:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02211{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02211;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02211{font-family:ff1_c02211;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02211;src:url('chunks/assets/font_7e2ac60692e41627f6d1ee2b.woff2')format("woff");}.ff2_c02211{font-family:ff2_c02211;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02211;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02211{font-family:ff3_c02211;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02211{vertical-align:0.000000px;}
.v1_c02211{vertical-align:1.439424px;}
.lse_c02211{letter-spacing:-0.793584px;}
.lsb_c02211{letter-spacing:-0.774576px;}
.ls16_c02211{letter-spacing:-0.755568px;}
.ls11_c02211{letter-spacing:-0.736560px;}
.ls8_c02211{letter-spacing:-0.613008px;}
.lsa_c02211{letter-spacing:-0.574992px;}
.ls17_c02211{letter-spacing:-0.427680px;}
.ls18_c02211{letter-spacing:-0.275616px;}
.ls12_c02211{letter-spacing:-0.270864px;}
.lsf_c02211{letter-spacing:-0.261360px;}
.ls7_c02211{letter-spacing:-0.242352px;}
.ls5_c02211{letter-spacing:-0.118800px;}
.ls15_c02211{letter-spacing:0.000000px;}
.ls1_c02211{letter-spacing:0.006048px;}
.ls6_c02211{letter-spacing:0.128304px;}
.lsd_c02211{letter-spacing:0.508464px;}
.ls14_c02211{letter-spacing:0.514080px;}
.ls10_c02211{letter-spacing:0.536976px;}
.lsc_c02211{letter-spacing:0.579744px;}
.ls13_c02211{letter-spacing:0.594000px;}
.ls9_c02211{letter-spacing:0.598752px;}
.ls3_c02211{letter-spacing:0.613008px;}
.ls0_c02211{letter-spacing:0.651024px;}
.ls2_c02211{letter-spacing:0.717552px;}
.ls4_c02211{letter-spacing:0.722304px;}
.sc__c02211{text-shadow:none;}
.sc0_c02211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02211{-webkit-text-stroke:0px transparent;}
.sc0_c02211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02211{word-spacing:-15.126048px;}
.wsb_c02211{word-spacing:-12.474000px;}
.ws7_c02211{word-spacing:-12.459744px;}
.ws10_c02211{word-spacing:-12.416976px;}
.ws2_c02211{word-spacing:-11.266992px;}
.wse_c02211{word-spacing:-11.124432px;}
.ws6_c02211{word-spacing:-11.105424px;}
.ws19_c02211{word-spacing:-2.159136px;}
.ws1a_c02211{word-spacing:-1.078704px;}
.ws13_c02211{word-spacing:-1.012176px;}
.ws11_c02211{word-spacing:-0.974160px;}
.ws14_c02211{word-spacing:-0.118800px;}
.ws16_c02211{word-spacing:-0.099792px;}
.ws17_c02211{word-spacing:-0.090288px;}
.ws18_c02211{word-spacing:-0.085536px;}
.ws12_c02211{word-spacing:0.000000px;}
.ws1b_c02211{word-spacing:0.066528px;}
.ws15_c02211{word-spacing:0.432432px;}
.ws4_c02211{word-spacing:4.951584px;}
.wsa_c02211{word-spacing:6.629040px;}
.wsc_c02211{word-spacing:33.300288px;}
.ws9_c02211{word-spacing:34.836912px;}
.wsf_c02211{word-spacing:36.742464px;}
.ws1_c02211{word-spacing:37.759392px;}
.ws0_c02211{word-spacing:38.020752px;}
.ws3_c02211{word-spacing:39.218256px;}
.ws5_c02211{word-spacing:39.902544px;}
.ws8_c02211{word-spacing:42.026688px;}
._0_c02211{margin-left:-1.948320px;}
._2_c02211{width:1.482624px;}
._8_c02211{width:3.369168px;}
._7_c02211{width:14.148864px;}
._5_c02211{width:19.982160px;}
._6_c02211{width:23.451120px;}
._4_c02211{width:24.691392px;}
._1_c02211{width:50.252400px;}
._3_c02211{width:51.530688px;}
.fc0_c02211{color:rgb(0,0,0);}
.fs0_c02211{font-size:47.520000px;}
.fs1_c02211{font-size:60.480000px;}
.y0_c02211{bottom:0.000000px;}
.y1a_c02211{bottom:146.998362px;}
.y1c_c02211{bottom:186.600234px;}
.y1b_c02211{bottom:196.320450px;}
.y19_c02211{bottom:275.878542px;}
.y18_c02211{bottom:356.878758px;}
.y16_c02211{bottom:406.559730px;}
.y12_c02211{bottom:424.560306px;}
.y17_c02211{bottom:458.759262px;}
.y15_c02211{bottom:491.879514px;}
.y14_c02211{bottom:509.880090px;}
.y11_c02211{bottom:543.000342px;}
.y13_c02211{bottom:559.559874px;}
.y10_c02211{bottom:577.560450px;}
.y1d_c02211{bottom:614.280450px;}
.yc_c02211{bottom:652.438650px;}
.yb_c02211{bottom:667.558326px;}
.ye_c02211{bottom:707.160234px;}
.yd_c02211{bottom:716.880450px;}
.ya_c02211{bottom:796.438506px;}
.y9_c02211{bottom:877.438722px;}
.y7_c02211{bottom:926.759730px;}
.y3_c02211{bottom:944.760306px;}
.y8_c02211{bottom:979.319226px;}
.y6_c02211{bottom:1012.439478px;}
.y5_c02211{bottom:1030.440054px;}
.y2_c02211{bottom:1063.560306px;}
.y4_c02211{bottom:1079.759874px;}
.y1_c02211{bottom:1097.760450px;}
.yf_c02211{bottom:1134.840450px;}
.h3_c02211{height:32.530781px;}
.h1_c02211{height:41.696016px;}
.h2_c02211{height:41.812031px;}
.h4_c02211{height:54.654737px;}
.h0_c02211{height:1263.000000px;}
.w1_c02211{width:892.500000px;}
.w0_c02211{width:892.830000px;}
.x0_c02211{left:0.000000px;}
.xe_c02211{left:117.000000px;}
.x8_c02211{left:440.999856px;}
.x4_c02211{left:445.680576px;}
.xc_c02211{left:451.080000px;}
.x7_c02211{left:455.399604px;}
.x5_c02211{left:461.880144px;}
.x1_c02211{left:463.320000px;}
.xa_c02211{left:483.480360px;}
.x9_c02211{left:492.119496px;}
.x6_c02211{left:493.200576px;}
.xd_c02211{left:506.880360px;}
.x3_c02211{left:511.919892px;}
.x2_c02211{left:526.679604px;}
.xb_c02211{left:569.880036px;}
@media print{
.v0_c02211{vertical-align:0.000000pt;}
.v1_c02211{vertical-align:1.279488pt;}
.lse_c02211{letter-spacing:-0.705408pt;}
.lsb_c02211{letter-spacing:-0.688512pt;}
.ls16_c02211{letter-spacing:-0.671616pt;}
.ls11_c02211{letter-spacing:-0.654720pt;}
.ls8_c02211{letter-spacing:-0.544896pt;}
.lsa_c02211{letter-spacing:-0.511104pt;}
.ls17_c02211{letter-spacing:-0.380160pt;}
.ls18_c02211{letter-spacing:-0.244992pt;}
.ls12_c02211{letter-spacing:-0.240768pt;}
.lsf_c02211{letter-spacing:-0.232320pt;}
.ls7_c02211{letter-spacing:-0.215424pt;}
.ls5_c02211{letter-spacing:-0.105600pt;}
.ls15_c02211{letter-spacing:0.000000pt;}
.ls1_c02211{letter-spacing:0.005376pt;}
.ls6_c02211{letter-spacing:0.114048pt;}
.lsd_c02211{letter-spacing:0.451968pt;}
.ls14_c02211{letter-spacing:0.456960pt;}
.ls10_c02211{letter-spacing:0.477312pt;}
.lsc_c02211{letter-spacing:0.515328pt;}
.ls13_c02211{letter-spacing:0.528000pt;}
.ls9_c02211{letter-spacing:0.532224pt;}
.ls3_c02211{letter-spacing:0.544896pt;}
.ls0_c02211{letter-spacing:0.578688pt;}
.ls2_c02211{letter-spacing:0.637824pt;}
.ls4_c02211{letter-spacing:0.642048pt;}
.wsd_c02211{word-spacing:-13.445376pt;}
.wsb_c02211{word-spacing:-11.088000pt;}
.ws7_c02211{word-spacing:-11.075328pt;}
.ws10_c02211{word-spacing:-11.037312pt;}
.ws2_c02211{word-spacing:-10.015104pt;}
.wse_c02211{word-spacing:-9.888384pt;}
.ws6_c02211{word-spacing:-9.871488pt;}
.ws19_c02211{word-spacing:-1.919232pt;}
.ws1a_c02211{word-spacing:-0.958848pt;}
.ws13_c02211{word-spacing:-0.899712pt;}
.ws11_c02211{word-spacing:-0.865920pt;}
.ws14_c02211{word-spacing:-0.105600pt;}
.ws16_c02211{word-spacing:-0.088704pt;}
.ws17_c02211{word-spacing:-0.080256pt;}
.ws18_c02211{word-spacing:-0.076032pt;}
.ws12_c02211{word-spacing:0.000000pt;}
.ws1b_c02211{word-spacing:0.059136pt;}
.ws15_c02211{word-spacing:0.384384pt;}
.ws4_c02211{word-spacing:4.401408pt;}
.wsa_c02211{word-spacing:5.892480pt;}
.wsc_c02211{word-spacing:29.600256pt;}
.ws9_c02211{word-spacing:30.966144pt;}
.wsf_c02211{word-spacing:32.659968pt;}
.ws1_c02211{word-spacing:33.563904pt;}
.ws0_c02211{word-spacing:33.796224pt;}
.ws3_c02211{word-spacing:34.860672pt;}
.ws5_c02211{word-spacing:35.468928pt;}
.ws8_c02211{word-spacing:37.357056pt;}
._0_c02211{margin-left:-1.731840pt;}
._2_c02211{width:1.317888pt;}
._8_c02211{width:2.994816pt;}
._7_c02211{width:12.576768pt;}
._5_c02211{width:17.761920pt;}
._6_c02211{width:20.845440pt;}
._4_c02211{width:21.947904pt;}
._1_c02211{width:44.668800pt;}
._3_c02211{width:45.805056pt;}
.fs0_c02211{font-size:42.240000pt;}
.fs1_c02211{font-size:53.760000pt;}
.y0_c02211{bottom:0.000000pt;}
.y1a_c02211{bottom:130.665211pt;}
.y1c_c02211{bottom:165.866875pt;}
.y1b_c02211{bottom:174.507067pt;}
.y19_c02211{bottom:245.225371pt;}
.y18_c02211{bottom:317.225563pt;}
.y16_c02211{bottom:361.386427pt;}
.y12_c02211{bottom:377.386939pt;}
.y17_c02211{bottom:407.786011pt;}
.y15_c02211{bottom:437.226235pt;}
.y14_c02211{bottom:453.226747pt;}
.y11_c02211{bottom:482.666971pt;}
.y13_c02211{bottom:497.386555pt;}
.y10_c02211{bottom:513.387067pt;}
.y1d_c02211{bottom:546.027067pt;}
.yc_c02211{bottom:579.945467pt;}
.yb_c02211{bottom:593.385179pt;}
.ye_c02211{bottom:628.586875pt;}
.yd_c02211{bottom:637.227067pt;}
.ya_c02211{bottom:707.945339pt;}
.y9_c02211{bottom:779.945531pt;}
.y7_c02211{bottom:823.786427pt;}
.y3_c02211{bottom:839.786939pt;}
.y8_c02211{bottom:870.505979pt;}
.y6_c02211{bottom:899.946203pt;}
.y5_c02211{bottom:915.946715pt;}
.y2_c02211{bottom:945.386939pt;}
.y4_c02211{bottom:959.786555pt;}
.y1_c02211{bottom:975.787067pt;}
.yf_c02211{bottom:1008.747067pt;}
.h3_c02211{height:28.916250pt;}
.h1_c02211{height:37.063125pt;}
.h2_c02211{height:37.166250pt;}
.h4_c02211{height:48.581988pt;}
.h0_c02211{height:1122.666667pt;}
.w1_c02211{width:793.333333pt;}
.w0_c02211{width:793.626667pt;}
.x0_c02211{left:0.000000pt;}
.xe_c02211{left:104.000000pt;}
.x8_c02211{left:391.999872pt;}
.x4_c02211{left:396.160512pt;}
.xc_c02211{left:400.960000pt;}
.x7_c02211{left:404.799648pt;}
.x5_c02211{left:410.560128pt;}
.x1_c02211{left:411.840000pt;}
.xa_c02211{left:429.760320pt;}
.x9_c02211{left:437.439552pt;}
.x6_c02211{left:438.400512pt;}
.xd_c02211{left:450.560320pt;}
.x3_c02211{left:455.039904pt;}
.x2_c02211{left:468.159648pt;}
.xb_c02211{left:506.560032pt;}
}





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

.ir_c02212:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02212{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02212;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02212{font-family:ff1_c02212;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02212;src:url('chunks/assets/font_33a0594dc3ec11d5f13ef97b.woff2')format("woff");}.ff2_c02212{font-family:ff2_c02212;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02212;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02212{font-family:ff3_c02212;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02212{vertical-align:0.000000px;}
.v1_c02212{vertical-align:1.439424px;}
.ls16_c02212{letter-spacing:-0.755568px;}
.ls15_c02212{letter-spacing:-0.613008px;}
.ls9_c02212{letter-spacing:-0.574992px;}
.ls17_c02212{letter-spacing:-0.427680px;}
.lsa_c02212{letter-spacing:-0.323136px;}
.ls11_c02212{letter-spacing:-0.275616px;}
.ls8_c02212{letter-spacing:-0.266112px;}
.lsf_c02212{letter-spacing:-0.261360px;}
.ls6_c02212{letter-spacing:-0.242352px;}
.ls4_c02212{letter-spacing:-0.118800px;}
.ls14_c02212{letter-spacing:0.000000px;}
.ls0_c02212{letter-spacing:0.006048px;}
.lsd_c02212{letter-spacing:0.038016px;}
.lse_c02212{letter-spacing:0.042768px;}
.ls5_c02212{letter-spacing:0.128304px;}
.lsc_c02212{letter-spacing:0.508464px;}
.ls13_c02212{letter-spacing:0.514080px;}
.ls10_c02212{letter-spacing:0.536976px;}
.lsb_c02212{letter-spacing:0.579744px;}
.ls12_c02212{letter-spacing:0.594000px;}
.ls7_c02212{letter-spacing:0.598752px;}
.ls2_c02212{letter-spacing:0.613008px;}
.ls1_c02212{letter-spacing:0.717552px;}
.ls3_c02212{letter-spacing:0.722304px;}
.sc__c02212{text-shadow:none;}
.sc0_c02212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02212{-webkit-text-stroke:0px transparent;}
.sc0_c02212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02212{word-spacing:-15.126048px;}
.wsa_c02212{word-spacing:-12.474000px;}
.wsf_c02212{word-spacing:-12.459744px;}
.ws9_c02212{word-spacing:-12.416976px;}
.wsd_c02212{word-spacing:-11.266992px;}
.wse_c02212{word-spacing:-11.124432px;}
.ws19_c02212{word-spacing:-2.159136px;}
.ws16_c02212{word-spacing:-1.083456px;}
.ws1a_c02212{word-spacing:-1.078704px;}
.ws10_c02212{word-spacing:-0.974160px;}
.ws15_c02212{word-spacing:-0.399168px;}
.ws12_c02212{word-spacing:-0.118800px;}
.ws17_c02212{word-spacing:-0.099792px;}
.ws13_c02212{word-spacing:-0.095040px;}
.ws18_c02212{word-spacing:-0.085536px;}
.ws14_c02212{word-spacing:-0.038016px;}
.ws11_c02212{word-spacing:0.000000px;}
.ws1b_c02212{word-spacing:0.066528px;}
.ws2_c02212{word-spacing:1.330560px;}
.ws8_c02212{word-spacing:3.155328px;}
.wsb_c02212{word-spacing:33.300288px;}
.ws7_c02212{word-spacing:36.143712px;}
.ws5_c02212{word-spacing:36.742464px;}
.ws1_c02212{word-spacing:37.759392px;}
.ws0_c02212{word-spacing:38.020752px;}
.ws3_c02212{word-spacing:39.218256px;}
.ws4_c02212{word-spacing:39.902544px;}
.ws6_c02212{word-spacing:42.026688px;}
._0_c02212{margin-left:-1.948320px;}
._2_c02212{width:1.482624px;}
._a_c02212{width:3.369168px;}
._4_c02212{width:4.999104px;}
._9_c02212{width:14.148864px;}
._5_c02212{width:17.444592px;}
._6_c02212{width:19.416672px;}
._7_c02212{width:21.122640px;}
._8_c02212{width:22.676544px;}
._1_c02212{width:50.252400px;}
._3_c02212{width:51.530688px;}
.fc0_c02212{color:rgb(0,0,0);}
.fs0_c02212{font-size:47.520000px;}
.fs1_c02212{font-size:60.480000px;}
.y0_c02212{bottom:0.000000px;}
.y1a_c02212{bottom:146.998362px;}
.y1c_c02212{bottom:186.600234px;}
.y1b_c02212{bottom:196.320450px;}
.y19_c02212{bottom:275.878542px;}
.y18_c02212{bottom:356.878758px;}
.y16_c02212{bottom:406.559730px;}
.y12_c02212{bottom:424.560306px;}
.y17_c02212{bottom:458.759262px;}
.y15_c02212{bottom:491.879514px;}
.y14_c02212{bottom:509.880090px;}
.y11_c02212{bottom:543.000342px;}
.y13_c02212{bottom:559.559874px;}
.y10_c02212{bottom:577.560450px;}
.y1d_c02212{bottom:614.280450px;}
.yc_c02212{bottom:667.559514px;}
.ye_c02212{bottom:707.160234px;}
.yd_c02212{bottom:716.880450px;}
.yb_c02212{bottom:796.439694px;}
.ya_c02212{bottom:862.319046px;}
.y9_c02212{bottom:877.438722px;}
.y7_c02212{bottom:926.759730px;}
.y3_c02212{bottom:944.760306px;}
.y8_c02212{bottom:979.319226px;}
.y6_c02212{bottom:1012.439478px;}
.y5_c02212{bottom:1030.440054px;}
.y2_c02212{bottom:1063.560306px;}
.y4_c02212{bottom:1079.759874px;}
.y1_c02212{bottom:1097.760450px;}
.yf_c02212{bottom:1134.840450px;}
.h3_c02212{height:32.530781px;}
.h1_c02212{height:41.696016px;}
.h2_c02212{height:41.812031px;}
.h4_c02212{height:54.654737px;}
.h0_c02212{height:1263.000000px;}
.w1_c02212{width:892.500000px;}
.w0_c02212{width:892.830000px;}
.x0_c02212{left:0.000000px;}
.xe_c02212{left:117.000000px;}
.x8_c02212{left:440.999856px;}
.x4_c02212{left:445.680576px;}
.xc_c02212{left:451.080000px;}
.x7_c02212{left:455.399604px;}
.x5_c02212{left:461.880144px;}
.x1_c02212{left:463.320000px;}
.xb_c02212{left:483.480360px;}
.x9_c02212{left:492.119496px;}
.x6_c02212{left:493.200576px;}
.xd_c02212{left:506.880360px;}
.x3_c02212{left:511.919892px;}
.x2_c02212{left:526.679604px;}
.xa_c02212{left:569.880036px;}
@media print{
.v0_c02212{vertical-align:0.000000pt;}
.v1_c02212{vertical-align:1.279488pt;}
.ls16_c02212{letter-spacing:-0.671616pt;}
.ls15_c02212{letter-spacing:-0.544896pt;}
.ls9_c02212{letter-spacing:-0.511104pt;}
.ls17_c02212{letter-spacing:-0.380160pt;}
.lsa_c02212{letter-spacing:-0.287232pt;}
.ls11_c02212{letter-spacing:-0.244992pt;}
.ls8_c02212{letter-spacing:-0.236544pt;}
.lsf_c02212{letter-spacing:-0.232320pt;}
.ls6_c02212{letter-spacing:-0.215424pt;}
.ls4_c02212{letter-spacing:-0.105600pt;}
.ls14_c02212{letter-spacing:0.000000pt;}
.ls0_c02212{letter-spacing:0.005376pt;}
.lsd_c02212{letter-spacing:0.033792pt;}
.lse_c02212{letter-spacing:0.038016pt;}
.ls5_c02212{letter-spacing:0.114048pt;}
.lsc_c02212{letter-spacing:0.451968pt;}
.ls13_c02212{letter-spacing:0.456960pt;}
.ls10_c02212{letter-spacing:0.477312pt;}
.lsb_c02212{letter-spacing:0.515328pt;}
.ls12_c02212{letter-spacing:0.528000pt;}
.ls7_c02212{letter-spacing:0.532224pt;}
.ls2_c02212{letter-spacing:0.544896pt;}
.ls1_c02212{letter-spacing:0.637824pt;}
.ls3_c02212{letter-spacing:0.642048pt;}
.wsc_c02212{word-spacing:-13.445376pt;}
.wsa_c02212{word-spacing:-11.088000pt;}
.wsf_c02212{word-spacing:-11.075328pt;}
.ws9_c02212{word-spacing:-11.037312pt;}
.wsd_c02212{word-spacing:-10.015104pt;}
.wse_c02212{word-spacing:-9.888384pt;}
.ws19_c02212{word-spacing:-1.919232pt;}
.ws16_c02212{word-spacing:-0.963072pt;}
.ws1a_c02212{word-spacing:-0.958848pt;}
.ws10_c02212{word-spacing:-0.865920pt;}
.ws15_c02212{word-spacing:-0.354816pt;}
.ws12_c02212{word-spacing:-0.105600pt;}
.ws17_c02212{word-spacing:-0.088704pt;}
.ws13_c02212{word-spacing:-0.084480pt;}
.ws18_c02212{word-spacing:-0.076032pt;}
.ws14_c02212{word-spacing:-0.033792pt;}
.ws11_c02212{word-spacing:0.000000pt;}
.ws1b_c02212{word-spacing:0.059136pt;}
.ws2_c02212{word-spacing:1.182720pt;}
.ws8_c02212{word-spacing:2.804736pt;}
.wsb_c02212{word-spacing:29.600256pt;}
.ws7_c02212{word-spacing:32.127744pt;}
.ws5_c02212{word-spacing:32.659968pt;}
.ws1_c02212{word-spacing:33.563904pt;}
.ws0_c02212{word-spacing:33.796224pt;}
.ws3_c02212{word-spacing:34.860672pt;}
.ws4_c02212{word-spacing:35.468928pt;}
.ws6_c02212{word-spacing:37.357056pt;}
._0_c02212{margin-left:-1.731840pt;}
._2_c02212{width:1.317888pt;}
._a_c02212{width:2.994816pt;}
._4_c02212{width:4.443648pt;}
._9_c02212{width:12.576768pt;}
._5_c02212{width:15.506304pt;}
._6_c02212{width:17.259264pt;}
._7_c02212{width:18.775680pt;}
._8_c02212{width:20.156928pt;}
._1_c02212{width:44.668800pt;}
._3_c02212{width:45.805056pt;}
.fs0_c02212{font-size:42.240000pt;}
.fs1_c02212{font-size:53.760000pt;}
.y0_c02212{bottom:0.000000pt;}
.y1a_c02212{bottom:130.665211pt;}
.y1c_c02212{bottom:165.866875pt;}
.y1b_c02212{bottom:174.507067pt;}
.y19_c02212{bottom:245.225371pt;}
.y18_c02212{bottom:317.225563pt;}
.y16_c02212{bottom:361.386427pt;}
.y12_c02212{bottom:377.386939pt;}
.y17_c02212{bottom:407.786011pt;}
.y15_c02212{bottom:437.226235pt;}
.y14_c02212{bottom:453.226747pt;}
.y11_c02212{bottom:482.666971pt;}
.y13_c02212{bottom:497.386555pt;}
.y10_c02212{bottom:513.387067pt;}
.y1d_c02212{bottom:546.027067pt;}
.yc_c02212{bottom:593.386235pt;}
.ye_c02212{bottom:628.586875pt;}
.yd_c02212{bottom:637.227067pt;}
.yb_c02212{bottom:707.946395pt;}
.ya_c02212{bottom:766.505819pt;}
.y9_c02212{bottom:779.945531pt;}
.y7_c02212{bottom:823.786427pt;}
.y3_c02212{bottom:839.786939pt;}
.y8_c02212{bottom:870.505979pt;}
.y6_c02212{bottom:899.946203pt;}
.y5_c02212{bottom:915.946715pt;}
.y2_c02212{bottom:945.386939pt;}
.y4_c02212{bottom:959.786555pt;}
.y1_c02212{bottom:975.787067pt;}
.yf_c02212{bottom:1008.747067pt;}
.h3_c02212{height:28.916250pt;}
.h1_c02212{height:37.063125pt;}
.h2_c02212{height:37.166250pt;}
.h4_c02212{height:48.581988pt;}
.h0_c02212{height:1122.666667pt;}
.w1_c02212{width:793.333333pt;}
.w0_c02212{width:793.626667pt;}
.x0_c02212{left:0.000000pt;}
.xe_c02212{left:104.000000pt;}
.x8_c02212{left:391.999872pt;}
.x4_c02212{left:396.160512pt;}
.xc_c02212{left:400.960000pt;}
.x7_c02212{left:404.799648pt;}
.x5_c02212{left:410.560128pt;}
.x1_c02212{left:411.840000pt;}
.xb_c02212{left:429.760320pt;}
.x9_c02212{left:437.439552pt;}
.x6_c02212{left:438.400512pt;}
.xd_c02212{left:450.560320pt;}
.x3_c02212{left:455.039904pt;}
.x2_c02212{left:468.159648pt;}
.xa_c02212{left:506.560032pt;}
}





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

.ir_c02213:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02213{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02213;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02213{font-family:ff1_c02213;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02213;src:url('chunks/assets/font_475a45bfc41833b533452489.woff2')format("woff");}.ff2_c02213{font-family:ff2_c02213;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02213;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02213{font-family:ff3_c02213;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02213{vertical-align:0.000000px;}
.v1_c02213{vertical-align:1.439424px;}
.ls9_c02213{letter-spacing:-0.755568px;}
.lsc_c02213{letter-spacing:-0.746064px;}
.ls18_c02213{letter-spacing:-0.736560px;}
.ls7_c02213{letter-spacing:-0.613008px;}
.lsa_c02213{letter-spacing:-0.574992px;}
.lse_c02213{letter-spacing:-0.427680px;}
.ls11_c02213{letter-spacing:-0.275616px;}
.ls19_c02213{letter-spacing:-0.270864px;}
.ls15_c02213{letter-spacing:-0.266112px;}
.lsf_c02213{letter-spacing:-0.261360px;}
.ls6_c02213{letter-spacing:-0.242352px;}
.ls4_c02213{letter-spacing:-0.118800px;}
.ls14_c02213{letter-spacing:0.000000px;}
.ls1_c02213{letter-spacing:0.006048px;}
.ls17_c02213{letter-spacing:0.038016px;}
.ls5_c02213{letter-spacing:0.128304px;}
.lsd_c02213{letter-spacing:0.508464px;}
.ls13_c02213{letter-spacing:0.514080px;}
.ls10_c02213{letter-spacing:0.536976px;}
.lsb_c02213{letter-spacing:0.579744px;}
.ls12_c02213{letter-spacing:0.594000px;}
.ls8_c02213{letter-spacing:0.598752px;}
.ls2_c02213{letter-spacing:0.613008px;}
.ls16_c02213{letter-spacing:0.665280px;}
.ls0_c02213{letter-spacing:0.717552px;}
.ls3_c02213{letter-spacing:0.722304px;}
.sc__c02213{text-shadow:none;}
.sc0_c02213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02213{-webkit-text-stroke:0px transparent;}
.sc0_c02213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02213{word-spacing:-15.126048px;}
.wsa_c02213{word-spacing:-12.474000px;}
.ws8_c02213{word-spacing:-12.459744px;}
.ws9_c02213{word-spacing:-12.416976px;}
.ws2_c02213{word-spacing:-11.266992px;}
.ws4_c02213{word-spacing:-11.124432px;}
.ws18_c02213{word-spacing:-2.159136px;}
.ws13_c02213{word-spacing:-1.078704px;}
.ws1a_c02213{word-spacing:-1.026432px;}
.ws10_c02213{word-spacing:-0.974160px;}
.ws1b_c02213{word-spacing:-0.399168px;}
.ws12_c02213{word-spacing:-0.118800px;}
.ws16_c02213{word-spacing:-0.099792px;}
.ws19_c02213{word-spacing:-0.095040px;}
.ws1c_c02213{word-spacing:-0.090288px;}
.ws17_c02213{word-spacing:-0.085536px;}
.ws11_c02213{word-spacing:0.000000px;}
.ws15_c02213{word-spacing:0.066528px;}
.ws14_c02213{word-spacing:0.384912px;}
.wsd_c02213{word-spacing:1.330560px;}
.wsf_c02213{word-spacing:6.629040px;}
.wsb_c02213{word-spacing:33.300288px;}
.wse_c02213{word-spacing:34.836912px;}
.ws6_c02213{word-spacing:36.742464px;}
.ws1_c02213{word-spacing:37.759392px;}
.ws0_c02213{word-spacing:38.020752px;}
.ws3_c02213{word-spacing:39.218256px;}
.ws5_c02213{word-spacing:39.902544px;}
.ws7_c02213{word-spacing:42.026688px;}
._0_c02213{margin-left:-1.948320px;}
._2_c02213{width:1.482624px;}
._4_c02213{width:3.369168px;}
._6_c02213{width:4.999104px;}
._5_c02213{width:14.148864px;}
._8_c02213{width:19.982160px;}
._9_c02213{width:23.451120px;}
._7_c02213{width:24.691392px;}
._1_c02213{width:50.252400px;}
._3_c02213{width:51.530688px;}
.fc0_c02213{color:rgb(0,0,0);}
.fs0_c02213{font-size:47.520000px;}
.fs1_c02213{font-size:60.480000px;}
.y0_c02213{bottom:0.000000px;}
.y1a_c02213{bottom:131.878686px;}
.y19_c02213{bottom:146.998362px;}
.y1c_c02213{bottom:186.600234px;}
.y1b_c02213{bottom:196.320450px;}
.y18_c02213{bottom:275.878542px;}
.y17_c02213{bottom:356.878758px;}
.y15_c02213{bottom:406.559730px;}
.y11_c02213{bottom:424.560306px;}
.y16_c02213{bottom:458.759262px;}
.y14_c02213{bottom:491.879514px;}
.y13_c02213{bottom:509.880090px;}
.y10_c02213{bottom:543.000342px;}
.y12_c02213{bottom:559.559874px;}
.yf_c02213{bottom:577.560450px;}
.y1d_c02213{bottom:614.280450px;}
.yb_c02213{bottom:667.558326px;}
.yd_c02213{bottom:707.160234px;}
.yc_c02213{bottom:716.880450px;}
.ya_c02213{bottom:796.438506px;}
.y9_c02213{bottom:877.438722px;}
.y7_c02213{bottom:926.759730px;}
.y3_c02213{bottom:944.760306px;}
.y8_c02213{bottom:979.319226px;}
.y6_c02213{bottom:1012.439478px;}
.y5_c02213{bottom:1030.440054px;}
.y2_c02213{bottom:1063.560306px;}
.y4_c02213{bottom:1079.759874px;}
.y1_c02213{bottom:1097.760450px;}
.ye_c02213{bottom:1134.840450px;}
.h3_c02213{height:32.530781px;}
.h1_c02213{height:41.696016px;}
.h2_c02213{height:41.812031px;}
.h4_c02213{height:54.654737px;}
.h0_c02213{height:1263.000000px;}
.w1_c02213{width:892.500000px;}
.w0_c02213{width:892.830000px;}
.x0_c02213{left:0.000000px;}
.xd_c02213{left:117.000000px;}
.x8_c02213{left:440.999856px;}
.x4_c02213{left:445.680576px;}
.xb_c02213{left:451.080000px;}
.x7_c02213{left:455.399604px;}
.x5_c02213{left:461.880144px;}
.x1_c02213{left:463.320000px;}
.xa_c02213{left:483.480360px;}
.x9_c02213{left:492.119496px;}
.x6_c02213{left:493.200576px;}
.xc_c02213{left:506.880360px;}
.x3_c02213{left:511.919892px;}
.x2_c02213{left:526.679604px;}
.xe_c02213{left:569.880036px;}
@media print{
.v0_c02213{vertical-align:0.000000pt;}
.v1_c02213{vertical-align:1.279488pt;}
.ls9_c02213{letter-spacing:-0.671616pt;}
.lsc_c02213{letter-spacing:-0.663168pt;}
.ls18_c02213{letter-spacing:-0.654720pt;}
.ls7_c02213{letter-spacing:-0.544896pt;}
.lsa_c02213{letter-spacing:-0.511104pt;}
.lse_c02213{letter-spacing:-0.380160pt;}
.ls11_c02213{letter-spacing:-0.244992pt;}
.ls19_c02213{letter-spacing:-0.240768pt;}
.ls15_c02213{letter-spacing:-0.236544pt;}
.lsf_c02213{letter-spacing:-0.232320pt;}
.ls6_c02213{letter-spacing:-0.215424pt;}
.ls4_c02213{letter-spacing:-0.105600pt;}
.ls14_c02213{letter-spacing:0.000000pt;}
.ls1_c02213{letter-spacing:0.005376pt;}
.ls17_c02213{letter-spacing:0.033792pt;}
.ls5_c02213{letter-spacing:0.114048pt;}
.lsd_c02213{letter-spacing:0.451968pt;}
.ls13_c02213{letter-spacing:0.456960pt;}
.ls10_c02213{letter-spacing:0.477312pt;}
.lsb_c02213{letter-spacing:0.515328pt;}
.ls12_c02213{letter-spacing:0.528000pt;}
.ls8_c02213{letter-spacing:0.532224pt;}
.ls2_c02213{letter-spacing:0.544896pt;}
.ls16_c02213{letter-spacing:0.591360pt;}
.ls0_c02213{letter-spacing:0.637824pt;}
.ls3_c02213{letter-spacing:0.642048pt;}
.wsc_c02213{word-spacing:-13.445376pt;}
.wsa_c02213{word-spacing:-11.088000pt;}
.ws8_c02213{word-spacing:-11.075328pt;}
.ws9_c02213{word-spacing:-11.037312pt;}
.ws2_c02213{word-spacing:-10.015104pt;}
.ws4_c02213{word-spacing:-9.888384pt;}
.ws18_c02213{word-spacing:-1.919232pt;}
.ws13_c02213{word-spacing:-0.958848pt;}
.ws1a_c02213{word-spacing:-0.912384pt;}
.ws10_c02213{word-spacing:-0.865920pt;}
.ws1b_c02213{word-spacing:-0.354816pt;}
.ws12_c02213{word-spacing:-0.105600pt;}
.ws16_c02213{word-spacing:-0.088704pt;}
.ws19_c02213{word-spacing:-0.084480pt;}
.ws1c_c02213{word-spacing:-0.080256pt;}
.ws17_c02213{word-spacing:-0.076032pt;}
.ws11_c02213{word-spacing:0.000000pt;}
.ws15_c02213{word-spacing:0.059136pt;}
.ws14_c02213{word-spacing:0.342144pt;}
.wsd_c02213{word-spacing:1.182720pt;}
.wsf_c02213{word-spacing:5.892480pt;}
.wsb_c02213{word-spacing:29.600256pt;}
.wse_c02213{word-spacing:30.966144pt;}
.ws6_c02213{word-spacing:32.659968pt;}
.ws1_c02213{word-spacing:33.563904pt;}
.ws0_c02213{word-spacing:33.796224pt;}
.ws3_c02213{word-spacing:34.860672pt;}
.ws5_c02213{word-spacing:35.468928pt;}
.ws7_c02213{word-spacing:37.357056pt;}
._0_c02213{margin-left:-1.731840pt;}
._2_c02213{width:1.317888pt;}
._4_c02213{width:2.994816pt;}
._6_c02213{width:4.443648pt;}
._5_c02213{width:12.576768pt;}
._8_c02213{width:17.761920pt;}
._9_c02213{width:20.845440pt;}
._7_c02213{width:21.947904pt;}
._1_c02213{width:44.668800pt;}
._3_c02213{width:45.805056pt;}
.fs0_c02213{font-size:42.240000pt;}
.fs1_c02213{font-size:53.760000pt;}
.y0_c02213{bottom:0.000000pt;}
.y1a_c02213{bottom:117.225499pt;}
.y19_c02213{bottom:130.665211pt;}
.y1c_c02213{bottom:165.866875pt;}
.y1b_c02213{bottom:174.507067pt;}
.y18_c02213{bottom:245.225371pt;}
.y17_c02213{bottom:317.225563pt;}
.y15_c02213{bottom:361.386427pt;}
.y11_c02213{bottom:377.386939pt;}
.y16_c02213{bottom:407.786011pt;}
.y14_c02213{bottom:437.226235pt;}
.y13_c02213{bottom:453.226747pt;}
.y10_c02213{bottom:482.666971pt;}
.y12_c02213{bottom:497.386555pt;}
.yf_c02213{bottom:513.387067pt;}
.y1d_c02213{bottom:546.027067pt;}
.yb_c02213{bottom:593.385179pt;}
.yd_c02213{bottom:628.586875pt;}
.yc_c02213{bottom:637.227067pt;}
.ya_c02213{bottom:707.945339pt;}
.y9_c02213{bottom:779.945531pt;}
.y7_c02213{bottom:823.786427pt;}
.y3_c02213{bottom:839.786939pt;}
.y8_c02213{bottom:870.505979pt;}
.y6_c02213{bottom:899.946203pt;}
.y5_c02213{bottom:915.946715pt;}
.y2_c02213{bottom:945.386939pt;}
.y4_c02213{bottom:959.786555pt;}
.y1_c02213{bottom:975.787067pt;}
.ye_c02213{bottom:1008.747067pt;}
.h3_c02213{height:28.916250pt;}
.h1_c02213{height:37.063125pt;}
.h2_c02213{height:37.166250pt;}
.h4_c02213{height:48.581988pt;}
.h0_c02213{height:1122.666667pt;}
.w1_c02213{width:793.333333pt;}
.w0_c02213{width:793.626667pt;}
.x0_c02213{left:0.000000pt;}
.xd_c02213{left:104.000000pt;}
.x8_c02213{left:391.999872pt;}
.x4_c02213{left:396.160512pt;}
.xb_c02213{left:400.960000pt;}
.x7_c02213{left:404.799648pt;}
.x5_c02213{left:410.560128pt;}
.x1_c02213{left:411.840000pt;}
.xa_c02213{left:429.760320pt;}
.x9_c02213{left:437.439552pt;}
.x6_c02213{left:438.400512pt;}
.xc_c02213{left:450.560320pt;}
.x3_c02213{left:455.039904pt;}
.x2_c02213{left:468.159648pt;}
.xe_c02213{left:506.560032pt;}
}





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

.ir_c02214:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02214{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02214;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02214{font-family:ff1_c02214;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02214;src:url('chunks/assets/font_f5044b09d52c4e092617653e.woff2')format("woff");}.ff2_c02214{font-family:ff2_c02214;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02214;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02214{font-family:ff3_c02214;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02214{vertical-align:0.000000px;}
.v1_c02214{vertical-align:1.439424px;}
.ls8_c02214{letter-spacing:-0.574992px;}
.ls9_c02214{letter-spacing:-0.323136px;}
.lsf_c02214{letter-spacing:-0.275616px;}
.ls13_c02214{letter-spacing:-0.266112px;}
.lsd_c02214{letter-spacing:-0.261360px;}
.ls15_c02214{letter-spacing:-0.251856px;}
.ls6_c02214{letter-spacing:-0.242352px;}
.ls3_c02214{letter-spacing:-0.118800px;}
.ls12_c02214{letter-spacing:0.000000px;}
.ls0_c02214{letter-spacing:0.006048px;}
.lsc_c02214{letter-spacing:0.038016px;}
.ls5_c02214{letter-spacing:0.128304px;}
.lsb_c02214{letter-spacing:0.508464px;}
.ls11_c02214{letter-spacing:0.514080px;}
.lse_c02214{letter-spacing:0.536976px;}
.lsa_c02214{letter-spacing:0.579744px;}
.ls10_c02214{letter-spacing:0.594000px;}
.ls7_c02214{letter-spacing:0.598752px;}
.ls1_c02214{letter-spacing:0.613008px;}
.ls14_c02214{letter-spacing:0.665280px;}
.ls4_c02214{letter-spacing:0.717552px;}
.ls2_c02214{letter-spacing:0.722304px;}
.sc__c02214{text-shadow:none;}
.sc0_c02214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02214{-webkit-text-stroke:0px transparent;}
.sc0_c02214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02214{word-spacing:-15.126048px;}
.wsa_c02214{word-spacing:-12.474000px;}
.ws8_c02214{word-spacing:-12.459744px;}
.ws9_c02214{word-spacing:-12.416976px;}
.ws4_c02214{word-spacing:-11.637648px;}
.ws14_c02214{word-spacing:-2.159136px;}
.ws16_c02214{word-spacing:-1.026432px;}
.wsd_c02214{word-spacing:-0.974160px;}
.ws11_c02214{word-spacing:-0.399168px;}
.wsf_c02214{word-spacing:-0.118800px;}
.ws17_c02214{word-spacing:-0.109296px;}
.ws12_c02214{word-spacing:-0.099792px;}
.ws15_c02214{word-spacing:-0.095040px;}
.ws13_c02214{word-spacing:-0.085536px;}
.ws10_c02214{word-spacing:-0.038016px;}
.wse_c02214{word-spacing:0.000000px;}
.ws2_c02214{word-spacing:1.330560px;}
.wsb_c02214{word-spacing:33.300288px;}
.ws6_c02214{word-spacing:36.742464px;}
.ws1_c02214{word-spacing:37.759392px;}
.ws0_c02214{word-spacing:38.020752px;}
.ws3_c02214{word-spacing:39.218256px;}
.ws5_c02214{word-spacing:39.902544px;}
.ws7_c02214{word-spacing:42.026688px;}
._0_c02214{margin-left:-1.948320px;}
._2_c02214{width:1.482624px;}
._4_c02214{width:4.785264px;}
._5_c02214{width:14.148864px;}
._1_c02214{width:50.252400px;}
._3_c02214{width:51.530688px;}
.fc0_c02214{color:rgb(0,0,0);}
.fs0_c02214{font-size:47.520000px;}
.fs1_c02214{font-size:60.480000px;}
.y0_c02214{bottom:0.000000px;}
.y19_c02214{bottom:146.998362px;}
.y1b_c02214{bottom:186.600234px;}
.y1a_c02214{bottom:196.320450px;}
.y18_c02214{bottom:275.878542px;}
.y17_c02214{bottom:356.878758px;}
.y15_c02214{bottom:406.559730px;}
.y11_c02214{bottom:424.560306px;}
.y16_c02214{bottom:458.759262px;}
.y14_c02214{bottom:491.879514px;}
.y13_c02214{bottom:509.880090px;}
.y10_c02214{bottom:543.000342px;}
.y12_c02214{bottom:559.559874px;}
.yf_c02214{bottom:577.560450px;}
.y1c_c02214{bottom:614.280450px;}
.yb_c02214{bottom:667.558326px;}
.yd_c02214{bottom:707.160234px;}
.yc_c02214{bottom:716.880450px;}
.ya_c02214{bottom:796.438506px;}
.y9_c02214{bottom:877.438722px;}
.y7_c02214{bottom:926.759730px;}
.y3_c02214{bottom:944.760306px;}
.y8_c02214{bottom:979.319226px;}
.y6_c02214{bottom:1012.439478px;}
.y5_c02214{bottom:1030.440054px;}
.y2_c02214{bottom:1063.560306px;}
.y4_c02214{bottom:1079.759874px;}
.y1_c02214{bottom:1097.760450px;}
.ye_c02214{bottom:1134.840450px;}
.h3_c02214{height:32.530781px;}
.h1_c02214{height:41.696016px;}
.h2_c02214{height:41.812031px;}
.h4_c02214{height:54.654737px;}
.h0_c02214{height:1263.000000px;}
.w1_c02214{width:892.500000px;}
.w0_c02214{width:892.830000px;}
.x0_c02214{left:0.000000px;}
.xd_c02214{left:117.000000px;}
.x8_c02214{left:440.999856px;}
.x4_c02214{left:445.680576px;}
.xb_c02214{left:451.080000px;}
.x7_c02214{left:455.399604px;}
.x5_c02214{left:461.880144px;}
.x1_c02214{left:463.320000px;}
.xa_c02214{left:483.480360px;}
.x9_c02214{left:492.119496px;}
.x6_c02214{left:493.200576px;}
.xc_c02214{left:506.880360px;}
.x3_c02214{left:511.919892px;}
.x2_c02214{left:526.679604px;}
@media print{
.v0_c02214{vertical-align:0.000000pt;}
.v1_c02214{vertical-align:1.279488pt;}
.ls8_c02214{letter-spacing:-0.511104pt;}
.ls9_c02214{letter-spacing:-0.287232pt;}
.lsf_c02214{letter-spacing:-0.244992pt;}
.ls13_c02214{letter-spacing:-0.236544pt;}
.lsd_c02214{letter-spacing:-0.232320pt;}
.ls15_c02214{letter-spacing:-0.223872pt;}
.ls6_c02214{letter-spacing:-0.215424pt;}
.ls3_c02214{letter-spacing:-0.105600pt;}
.ls12_c02214{letter-spacing:0.000000pt;}
.ls0_c02214{letter-spacing:0.005376pt;}
.lsc_c02214{letter-spacing:0.033792pt;}
.ls5_c02214{letter-spacing:0.114048pt;}
.lsb_c02214{letter-spacing:0.451968pt;}
.ls11_c02214{letter-spacing:0.456960pt;}
.lse_c02214{letter-spacing:0.477312pt;}
.lsa_c02214{letter-spacing:0.515328pt;}
.ls10_c02214{letter-spacing:0.528000pt;}
.ls7_c02214{letter-spacing:0.532224pt;}
.ls1_c02214{letter-spacing:0.544896pt;}
.ls14_c02214{letter-spacing:0.591360pt;}
.ls4_c02214{letter-spacing:0.637824pt;}
.ls2_c02214{letter-spacing:0.642048pt;}
.wsc_c02214{word-spacing:-13.445376pt;}
.wsa_c02214{word-spacing:-11.088000pt;}
.ws8_c02214{word-spacing:-11.075328pt;}
.ws9_c02214{word-spacing:-11.037312pt;}
.ws4_c02214{word-spacing:-10.344576pt;}
.ws14_c02214{word-spacing:-1.919232pt;}
.ws16_c02214{word-spacing:-0.912384pt;}
.wsd_c02214{word-spacing:-0.865920pt;}
.ws11_c02214{word-spacing:-0.354816pt;}
.wsf_c02214{word-spacing:-0.105600pt;}
.ws17_c02214{word-spacing:-0.097152pt;}
.ws12_c02214{word-spacing:-0.088704pt;}
.ws15_c02214{word-spacing:-0.084480pt;}
.ws13_c02214{word-spacing:-0.076032pt;}
.ws10_c02214{word-spacing:-0.033792pt;}
.wse_c02214{word-spacing:0.000000pt;}
.ws2_c02214{word-spacing:1.182720pt;}
.wsb_c02214{word-spacing:29.600256pt;}
.ws6_c02214{word-spacing:32.659968pt;}
.ws1_c02214{word-spacing:33.563904pt;}
.ws0_c02214{word-spacing:33.796224pt;}
.ws3_c02214{word-spacing:34.860672pt;}
.ws5_c02214{word-spacing:35.468928pt;}
.ws7_c02214{word-spacing:37.357056pt;}
._0_c02214{margin-left:-1.731840pt;}
._2_c02214{width:1.317888pt;}
._4_c02214{width:4.253568pt;}
._5_c02214{width:12.576768pt;}
._1_c02214{width:44.668800pt;}
._3_c02214{width:45.805056pt;}
.fs0_c02214{font-size:42.240000pt;}
.fs1_c02214{font-size:53.760000pt;}
.y0_c02214{bottom:0.000000pt;}
.y19_c02214{bottom:130.665211pt;}
.y1b_c02214{bottom:165.866875pt;}
.y1a_c02214{bottom:174.507067pt;}
.y18_c02214{bottom:245.225371pt;}
.y17_c02214{bottom:317.225563pt;}
.y15_c02214{bottom:361.386427pt;}
.y11_c02214{bottom:377.386939pt;}
.y16_c02214{bottom:407.786011pt;}
.y14_c02214{bottom:437.226235pt;}
.y13_c02214{bottom:453.226747pt;}
.y10_c02214{bottom:482.666971pt;}
.y12_c02214{bottom:497.386555pt;}
.yf_c02214{bottom:513.387067pt;}
.y1c_c02214{bottom:546.027067pt;}
.yb_c02214{bottom:593.385179pt;}
.yd_c02214{bottom:628.586875pt;}
.yc_c02214{bottom:637.227067pt;}
.ya_c02214{bottom:707.945339pt;}
.y9_c02214{bottom:779.945531pt;}
.y7_c02214{bottom:823.786427pt;}
.y3_c02214{bottom:839.786939pt;}
.y8_c02214{bottom:870.505979pt;}
.y6_c02214{bottom:899.946203pt;}
.y5_c02214{bottom:915.946715pt;}
.y2_c02214{bottom:945.386939pt;}
.y4_c02214{bottom:959.786555pt;}
.y1_c02214{bottom:975.787067pt;}
.ye_c02214{bottom:1008.747067pt;}
.h3_c02214{height:28.916250pt;}
.h1_c02214{height:37.063125pt;}
.h2_c02214{height:37.166250pt;}
.h4_c02214{height:48.581988pt;}
.h0_c02214{height:1122.666667pt;}
.w1_c02214{width:793.333333pt;}
.w0_c02214{width:793.626667pt;}
.x0_c02214{left:0.000000pt;}
.xd_c02214{left:104.000000pt;}
.x8_c02214{left:391.999872pt;}
.x4_c02214{left:396.160512pt;}
.xb_c02214{left:400.960000pt;}
.x7_c02214{left:404.799648pt;}
.x5_c02214{left:410.560128pt;}
.x1_c02214{left:411.840000pt;}
.xa_c02214{left:429.760320pt;}
.x9_c02214{left:437.439552pt;}
.x6_c02214{left:438.400512pt;}
.xc_c02214{left:450.560320pt;}
.x3_c02214{left:455.039904pt;}
.x2_c02214{left:468.159648pt;}
}





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

.ir_c02215:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02215{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02215;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02215{font-family:ff1_c02215;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02215;src:url('chunks/assets/font_8a18af807559557564d6589d.woff2')format("woff");}.ff2_c02215{font-family:ff2_c02215;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02215;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02215{font-family:ff3_c02215;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02215{vertical-align:0.000000px;}
.v1_c02215{vertical-align:1.439424px;}
.ls9_c02215{letter-spacing:-0.774576px;}
.lsf_c02215{letter-spacing:-0.736560px;}
.ls8_c02215{letter-spacing:-0.574992px;}
.ls16_c02215{letter-spacing:-0.275616px;}
.ls10_c02215{letter-spacing:-0.270864px;}
.ls14_c02215{letter-spacing:-0.266112px;}
.lsd_c02215{letter-spacing:-0.261360px;}
.ls6_c02215{letter-spacing:-0.242352px;}
.ls3_c02215{letter-spacing:-0.118800px;}
.ls13_c02215{letter-spacing:0.000000px;}
.ls0_c02215{letter-spacing:0.006048px;}
.lsc_c02215{letter-spacing:0.038016px;}
.ls15_c02215{letter-spacing:0.066528px;}
.ls5_c02215{letter-spacing:0.128304px;}
.lsb_c02215{letter-spacing:0.508464px;}
.ls12_c02215{letter-spacing:0.514080px;}
.lse_c02215{letter-spacing:0.536976px;}
.lsa_c02215{letter-spacing:0.579744px;}
.ls11_c02215{letter-spacing:0.594000px;}
.ls7_c02215{letter-spacing:0.598752px;}
.ls1_c02215{letter-spacing:0.613008px;}
.ls4_c02215{letter-spacing:0.717552px;}
.ls2_c02215{letter-spacing:0.722304px;}
.sc__c02215{text-shadow:none;}
.sc0_c02215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02215{-webkit-text-stroke:0px transparent;}
.sc0_c02215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02215{word-spacing:-15.126048px;}
.wsb_c02215{word-spacing:-12.474000px;}
.ws7_c02215{word-spacing:-12.459744px;}
.ws10_c02215{word-spacing:-12.416976px;}
.ws4_c02215{word-spacing:-11.637648px;}
.wse_c02215{word-spacing:-11.305008px;}
.ws6_c02215{word-spacing:-11.105424px;}
.ws18_c02215{word-spacing:-2.159136px;}
.ws11_c02215{word-spacing:-0.974160px;}
.ws1a_c02215{word-spacing:-0.427680px;}
.ws14_c02215{word-spacing:-0.399168px;}
.ws13_c02215{word-spacing:-0.118800px;}
.ws15_c02215{word-spacing:-0.099792px;}
.ws19_c02215{word-spacing:-0.095040px;}
.ws16_c02215{word-spacing:-0.090288px;}
.ws17_c02215{word-spacing:-0.085536px;}
.ws12_c02215{word-spacing:0.000000px;}
.ws2_c02215{word-spacing:1.330560px;}
.wsa_c02215{word-spacing:6.629040px;}
.wsc_c02215{word-spacing:33.300288px;}
.ws9_c02215{word-spacing:34.836912px;}
.wsf_c02215{word-spacing:36.742464px;}
.ws1_c02215{word-spacing:37.759392px;}
.ws0_c02215{word-spacing:38.020752px;}
.ws3_c02215{word-spacing:39.218256px;}
.ws5_c02215{word-spacing:39.902544px;}
.ws8_c02215{word-spacing:42.026688px;}
._0_c02215{margin-left:-1.948320px;}
._2_c02215{width:1.482624px;}
._4_c02215{width:4.785264px;}
._8_c02215{width:14.148864px;}
._6_c02215{width:19.982160px;}
._7_c02215{width:23.451120px;}
._5_c02215{width:24.691392px;}
._1_c02215{width:50.252400px;}
._3_c02215{width:51.530688px;}
.fc0_c02215{color:rgb(0,0,0);}
.fs0_c02215{font-size:47.520000px;}
.fs1_c02215{font-size:60.480000px;}
.y0_c02215{bottom:0.000000px;}
.y1a_c02215{bottom:146.998362px;}
.y1c_c02215{bottom:186.600234px;}
.y1b_c02215{bottom:196.320450px;}
.y19_c02215{bottom:275.878542px;}
.y18_c02215{bottom:356.878758px;}
.y16_c02215{bottom:406.559730px;}
.y12_c02215{bottom:424.560306px;}
.y17_c02215{bottom:458.759262px;}
.y15_c02215{bottom:491.879514px;}
.y14_c02215{bottom:509.880090px;}
.y11_c02215{bottom:543.000342px;}
.y13_c02215{bottom:559.559874px;}
.y10_c02215{bottom:577.560450px;}
.y1d_c02215{bottom:614.280450px;}
.yc_c02215{bottom:652.438650px;}
.yb_c02215{bottom:667.558326px;}
.ye_c02215{bottom:707.160234px;}
.yd_c02215{bottom:716.880450px;}
.ya_c02215{bottom:796.438506px;}
.y9_c02215{bottom:877.438722px;}
.y7_c02215{bottom:926.759730px;}
.y3_c02215{bottom:944.760306px;}
.y8_c02215{bottom:979.319226px;}
.y6_c02215{bottom:1012.439478px;}
.y5_c02215{bottom:1030.440054px;}
.y2_c02215{bottom:1063.560306px;}
.y4_c02215{bottom:1079.759874px;}
.y1_c02215{bottom:1097.760450px;}
.yf_c02215{bottom:1134.840450px;}
.h3_c02215{height:32.530781px;}
.h1_c02215{height:41.696016px;}
.h2_c02215{height:41.812031px;}
.h4_c02215{height:54.654737px;}
.h0_c02215{height:1263.000000px;}
.w1_c02215{width:892.500000px;}
.w0_c02215{width:892.830000px;}
.x0_c02215{left:0.000000px;}
.xe_c02215{left:117.000000px;}
.x8_c02215{left:440.999856px;}
.x4_c02215{left:445.680576px;}
.xc_c02215{left:451.080000px;}
.x7_c02215{left:455.399604px;}
.x5_c02215{left:461.880144px;}
.x1_c02215{left:463.320000px;}
.xa_c02215{left:483.480360px;}
.x9_c02215{left:492.119496px;}
.x6_c02215{left:493.200576px;}
.xd_c02215{left:506.880360px;}
.x3_c02215{left:511.919892px;}
.x2_c02215{left:526.679604px;}
.xb_c02215{left:569.880036px;}
@media print{
.v0_c02215{vertical-align:0.000000pt;}
.v1_c02215{vertical-align:1.279488pt;}
.ls9_c02215{letter-spacing:-0.688512pt;}
.lsf_c02215{letter-spacing:-0.654720pt;}
.ls8_c02215{letter-spacing:-0.511104pt;}
.ls16_c02215{letter-spacing:-0.244992pt;}
.ls10_c02215{letter-spacing:-0.240768pt;}
.ls14_c02215{letter-spacing:-0.236544pt;}
.lsd_c02215{letter-spacing:-0.232320pt;}
.ls6_c02215{letter-spacing:-0.215424pt;}
.ls3_c02215{letter-spacing:-0.105600pt;}
.ls13_c02215{letter-spacing:0.000000pt;}
.ls0_c02215{letter-spacing:0.005376pt;}
.lsc_c02215{letter-spacing:0.033792pt;}
.ls15_c02215{letter-spacing:0.059136pt;}
.ls5_c02215{letter-spacing:0.114048pt;}
.lsb_c02215{letter-spacing:0.451968pt;}
.ls12_c02215{letter-spacing:0.456960pt;}
.lse_c02215{letter-spacing:0.477312pt;}
.lsa_c02215{letter-spacing:0.515328pt;}
.ls11_c02215{letter-spacing:0.528000pt;}
.ls7_c02215{letter-spacing:0.532224pt;}
.ls1_c02215{letter-spacing:0.544896pt;}
.ls4_c02215{letter-spacing:0.637824pt;}
.ls2_c02215{letter-spacing:0.642048pt;}
.wsd_c02215{word-spacing:-13.445376pt;}
.wsb_c02215{word-spacing:-11.088000pt;}
.ws7_c02215{word-spacing:-11.075328pt;}
.ws10_c02215{word-spacing:-11.037312pt;}
.ws4_c02215{word-spacing:-10.344576pt;}
.wse_c02215{word-spacing:-10.048896pt;}
.ws6_c02215{word-spacing:-9.871488pt;}
.ws18_c02215{word-spacing:-1.919232pt;}
.ws11_c02215{word-spacing:-0.865920pt;}
.ws1a_c02215{word-spacing:-0.380160pt;}
.ws14_c02215{word-spacing:-0.354816pt;}
.ws13_c02215{word-spacing:-0.105600pt;}
.ws15_c02215{word-spacing:-0.088704pt;}
.ws19_c02215{word-spacing:-0.084480pt;}
.ws16_c02215{word-spacing:-0.080256pt;}
.ws17_c02215{word-spacing:-0.076032pt;}
.ws12_c02215{word-spacing:0.000000pt;}
.ws2_c02215{word-spacing:1.182720pt;}
.wsa_c02215{word-spacing:5.892480pt;}
.wsc_c02215{word-spacing:29.600256pt;}
.ws9_c02215{word-spacing:30.966144pt;}
.wsf_c02215{word-spacing:32.659968pt;}
.ws1_c02215{word-spacing:33.563904pt;}
.ws0_c02215{word-spacing:33.796224pt;}
.ws3_c02215{word-spacing:34.860672pt;}
.ws5_c02215{word-spacing:35.468928pt;}
.ws8_c02215{word-spacing:37.357056pt;}
._0_c02215{margin-left:-1.731840pt;}
._2_c02215{width:1.317888pt;}
._4_c02215{width:4.253568pt;}
._8_c02215{width:12.576768pt;}
._6_c02215{width:17.761920pt;}
._7_c02215{width:20.845440pt;}
._5_c02215{width:21.947904pt;}
._1_c02215{width:44.668800pt;}
._3_c02215{width:45.805056pt;}
.fs0_c02215{font-size:42.240000pt;}
.fs1_c02215{font-size:53.760000pt;}
.y0_c02215{bottom:0.000000pt;}
.y1a_c02215{bottom:130.665211pt;}
.y1c_c02215{bottom:165.866875pt;}
.y1b_c02215{bottom:174.507067pt;}
.y19_c02215{bottom:245.225371pt;}
.y18_c02215{bottom:317.225563pt;}
.y16_c02215{bottom:361.386427pt;}
.y12_c02215{bottom:377.386939pt;}
.y17_c02215{bottom:407.786011pt;}
.y15_c02215{bottom:437.226235pt;}
.y14_c02215{bottom:453.226747pt;}
.y11_c02215{bottom:482.666971pt;}
.y13_c02215{bottom:497.386555pt;}
.y10_c02215{bottom:513.387067pt;}
.y1d_c02215{bottom:546.027067pt;}
.yc_c02215{bottom:579.945467pt;}
.yb_c02215{bottom:593.385179pt;}
.ye_c02215{bottom:628.586875pt;}
.yd_c02215{bottom:637.227067pt;}
.ya_c02215{bottom:707.945339pt;}
.y9_c02215{bottom:779.945531pt;}
.y7_c02215{bottom:823.786427pt;}
.y3_c02215{bottom:839.786939pt;}
.y8_c02215{bottom:870.505979pt;}
.y6_c02215{bottom:899.946203pt;}
.y5_c02215{bottom:915.946715pt;}
.y2_c02215{bottom:945.386939pt;}
.y4_c02215{bottom:959.786555pt;}
.y1_c02215{bottom:975.787067pt;}
.yf_c02215{bottom:1008.747067pt;}
.h3_c02215{height:28.916250pt;}
.h1_c02215{height:37.063125pt;}
.h2_c02215{height:37.166250pt;}
.h4_c02215{height:48.581988pt;}
.h0_c02215{height:1122.666667pt;}
.w1_c02215{width:793.333333pt;}
.w0_c02215{width:793.626667pt;}
.x0_c02215{left:0.000000pt;}
.xe_c02215{left:104.000000pt;}
.x8_c02215{left:391.999872pt;}
.x4_c02215{left:396.160512pt;}
.xc_c02215{left:400.960000pt;}
.x7_c02215{left:404.799648pt;}
.x5_c02215{left:410.560128pt;}
.x1_c02215{left:411.840000pt;}
.xa_c02215{left:429.760320pt;}
.x9_c02215{left:437.439552pt;}
.x6_c02215{left:438.400512pt;}
.xd_c02215{left:450.560320pt;}
.x3_c02215{left:455.039904pt;}
.x2_c02215{left:468.159648pt;}
.xb_c02215{left:506.560032pt;}
}





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

.ir_c02216:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02216{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02216;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02216{font-family:ff1_c02216;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02216;src:url('chunks/assets/font_a4ad1503cfcc62359a289772.woff2')format("woff");}.ff2_c02216{font-family:ff2_c02216;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02216;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02216{font-family:ff3_c02216;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02216{vertical-align:0.000000px;}
.v1_c02216{vertical-align:1.439424px;}
.ls10_c02216{letter-spacing:-0.836352px;}
.ls9_c02216{letter-spacing:-0.574992px;}
.ls15_c02216{letter-spacing:-0.275616px;}
.ls11_c02216{letter-spacing:-0.270864px;}
.ls8_c02216{letter-spacing:-0.266112px;}
.lse_c02216{letter-spacing:-0.261360px;}
.ls6_c02216{letter-spacing:-0.242352px;}
.ls3_c02216{letter-spacing:-0.118800px;}
.ls14_c02216{letter-spacing:0.000000px;}
.ls0_c02216{letter-spacing:0.006048px;}
.lsd_c02216{letter-spacing:0.038016px;}
.lsb_c02216{letter-spacing:0.066528px;}
.ls5_c02216{letter-spacing:0.128304px;}
.lsc_c02216{letter-spacing:0.508464px;}
.ls13_c02216{letter-spacing:0.514080px;}
.lsf_c02216{letter-spacing:0.536976px;}
.lsa_c02216{letter-spacing:0.579744px;}
.ls12_c02216{letter-spacing:0.594000px;}
.ls7_c02216{letter-spacing:0.598752px;}
.ls1_c02216{letter-spacing:0.613008px;}
.ls4_c02216{letter-spacing:0.717552px;}
.ls2_c02216{letter-spacing:0.722304px;}
.sc__c02216{text-shadow:none;}
.sc0_c02216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02216{-webkit-text-stroke:0px transparent;}
.sc0_c02216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02216{word-spacing:-15.126048px;}
.wsa_c02216{word-spacing:-12.474000px;}
.ws7_c02216{word-spacing:-12.459744px;}
.wsd_c02216{word-spacing:-12.416976px;}
.ws4_c02216{word-spacing:-11.305008px;}
.ws17_c02216{word-spacing:-2.159136px;}
.wse_c02216{word-spacing:-0.974160px;}
.ws12_c02216{word-spacing:-0.427680px;}
.ws13_c02216{word-spacing:-0.399168px;}
.ws10_c02216{word-spacing:-0.118800px;}
.ws14_c02216{word-spacing:-0.099792px;}
.ws11_c02216{word-spacing:-0.095040px;}
.ws15_c02216{word-spacing:-0.090288px;}
.ws16_c02216{word-spacing:-0.085536px;}
.wsf_c02216{word-spacing:0.000000px;}
.ws2_c02216{word-spacing:1.330560px;}
.wsb_c02216{word-spacing:33.300288px;}
.ws8_c02216{word-spacing:34.836912px;}
.ws5_c02216{word-spacing:36.742464px;}
.ws1_c02216{word-spacing:37.759392px;}
.ws0_c02216{word-spacing:38.020752px;}
.ws3_c02216{word-spacing:39.218256px;}
.ws9_c02216{word-spacing:39.474864px;}
.ws6_c02216{word-spacing:42.026688px;}
._0_c02216{margin-left:-1.948320px;}
._2_c02216{width:1.482624px;}
._4_c02216{width:4.999104px;}
._7_c02216{width:14.148864px;}
._1_c02216{width:50.252400px;}
._3_c02216{width:51.530688px;}
._5_c02216{width:53.916192px;}
._6_c02216{width:56.463264px;}
.fc0_c02216{color:rgb(0,0,0);}
.fs0_c02216{font-size:47.520000px;}
.fs1_c02216{font-size:60.480000px;}
.y0_c02216{bottom:0.000000px;}
.y1a_c02216{bottom:146.998362px;}
.y1c_c02216{bottom:186.600234px;}
.y1b_c02216{bottom:196.320450px;}
.y19_c02216{bottom:275.878542px;}
.y18_c02216{bottom:356.878758px;}
.y16_c02216{bottom:406.559730px;}
.y12_c02216{bottom:424.560306px;}
.y17_c02216{bottom:458.759262px;}
.y15_c02216{bottom:491.879514px;}
.y14_c02216{bottom:509.880090px;}
.y11_c02216{bottom:543.000342px;}
.y13_c02216{bottom:559.559874px;}
.y10_c02216{bottom:577.560450px;}
.y1d_c02216{bottom:614.280450px;}
.yc_c02216{bottom:652.438650px;}
.yb_c02216{bottom:667.558326px;}
.ye_c02216{bottom:707.160234px;}
.yd_c02216{bottom:716.880450px;}
.ya_c02216{bottom:796.438506px;}
.y9_c02216{bottom:877.438722px;}
.y7_c02216{bottom:926.759730px;}
.y3_c02216{bottom:944.760306px;}
.y8_c02216{bottom:979.319226px;}
.y6_c02216{bottom:1012.439478px;}
.y5_c02216{bottom:1030.440054px;}
.y2_c02216{bottom:1063.560306px;}
.y4_c02216{bottom:1079.759874px;}
.y1_c02216{bottom:1097.760450px;}
.yf_c02216{bottom:1134.840450px;}
.h3_c02216{height:32.530781px;}
.h1_c02216{height:41.696016px;}
.h2_c02216{height:41.812031px;}
.h4_c02216{height:54.654737px;}
.h0_c02216{height:1263.000000px;}
.w1_c02216{width:892.500000px;}
.w0_c02216{width:892.830000px;}
.x0_c02216{left:0.000000px;}
.xe_c02216{left:117.000000px;}
.x8_c02216{left:441.001044px;}
.x4_c02216{left:445.680576px;}
.xc_c02216{left:451.080000px;}
.x7_c02216{left:455.400792px;}
.x5_c02216{left:461.880144px;}
.x1_c02216{left:463.320000px;}
.xa_c02216{left:483.481548px;}
.x9_c02216{left:492.120684px;}
.x6_c02216{left:493.200576px;}
.xd_c02216{left:506.880360px;}
.x3_c02216{left:511.919892px;}
.x2_c02216{left:526.679604px;}
.xb_c02216{left:569.881224px;}
@media print{
.v0_c02216{vertical-align:0.000000pt;}
.v1_c02216{vertical-align:1.279488pt;}
.ls10_c02216{letter-spacing:-0.743424pt;}
.ls9_c02216{letter-spacing:-0.511104pt;}
.ls15_c02216{letter-spacing:-0.244992pt;}
.ls11_c02216{letter-spacing:-0.240768pt;}
.ls8_c02216{letter-spacing:-0.236544pt;}
.lse_c02216{letter-spacing:-0.232320pt;}
.ls6_c02216{letter-spacing:-0.215424pt;}
.ls3_c02216{letter-spacing:-0.105600pt;}
.ls14_c02216{letter-spacing:0.000000pt;}
.ls0_c02216{letter-spacing:0.005376pt;}
.lsd_c02216{letter-spacing:0.033792pt;}
.lsb_c02216{letter-spacing:0.059136pt;}
.ls5_c02216{letter-spacing:0.114048pt;}
.lsc_c02216{letter-spacing:0.451968pt;}
.ls13_c02216{letter-spacing:0.456960pt;}
.lsf_c02216{letter-spacing:0.477312pt;}
.lsa_c02216{letter-spacing:0.515328pt;}
.ls12_c02216{letter-spacing:0.528000pt;}
.ls7_c02216{letter-spacing:0.532224pt;}
.ls1_c02216{letter-spacing:0.544896pt;}
.ls4_c02216{letter-spacing:0.637824pt;}
.ls2_c02216{letter-spacing:0.642048pt;}
.wsc_c02216{word-spacing:-13.445376pt;}
.wsa_c02216{word-spacing:-11.088000pt;}
.ws7_c02216{word-spacing:-11.075328pt;}
.wsd_c02216{word-spacing:-11.037312pt;}
.ws4_c02216{word-spacing:-10.048896pt;}
.ws17_c02216{word-spacing:-1.919232pt;}
.wse_c02216{word-spacing:-0.865920pt;}
.ws12_c02216{word-spacing:-0.380160pt;}
.ws13_c02216{word-spacing:-0.354816pt;}
.ws10_c02216{word-spacing:-0.105600pt;}
.ws14_c02216{word-spacing:-0.088704pt;}
.ws11_c02216{word-spacing:-0.084480pt;}
.ws15_c02216{word-spacing:-0.080256pt;}
.ws16_c02216{word-spacing:-0.076032pt;}
.wsf_c02216{word-spacing:0.000000pt;}
.ws2_c02216{word-spacing:1.182720pt;}
.wsb_c02216{word-spacing:29.600256pt;}
.ws8_c02216{word-spacing:30.966144pt;}
.ws5_c02216{word-spacing:32.659968pt;}
.ws1_c02216{word-spacing:33.563904pt;}
.ws0_c02216{word-spacing:33.796224pt;}
.ws3_c02216{word-spacing:34.860672pt;}
.ws9_c02216{word-spacing:35.088768pt;}
.ws6_c02216{word-spacing:37.357056pt;}
._0_c02216{margin-left:-1.731840pt;}
._2_c02216{width:1.317888pt;}
._4_c02216{width:4.443648pt;}
._7_c02216{width:12.576768pt;}
._1_c02216{width:44.668800pt;}
._3_c02216{width:45.805056pt;}
._5_c02216{width:47.925504pt;}
._6_c02216{width:50.189568pt;}
.fs0_c02216{font-size:42.240000pt;}
.fs1_c02216{font-size:53.760000pt;}
.y0_c02216{bottom:0.000000pt;}
.y1a_c02216{bottom:130.665211pt;}
.y1c_c02216{bottom:165.866875pt;}
.y1b_c02216{bottom:174.507067pt;}
.y19_c02216{bottom:245.225371pt;}
.y18_c02216{bottom:317.225563pt;}
.y16_c02216{bottom:361.386427pt;}
.y12_c02216{bottom:377.386939pt;}
.y17_c02216{bottom:407.786011pt;}
.y15_c02216{bottom:437.226235pt;}
.y14_c02216{bottom:453.226747pt;}
.y11_c02216{bottom:482.666971pt;}
.y13_c02216{bottom:497.386555pt;}
.y10_c02216{bottom:513.387067pt;}
.y1d_c02216{bottom:546.027067pt;}
.yc_c02216{bottom:579.945467pt;}
.yb_c02216{bottom:593.385179pt;}
.ye_c02216{bottom:628.586875pt;}
.yd_c02216{bottom:637.227067pt;}
.ya_c02216{bottom:707.945339pt;}
.y9_c02216{bottom:779.945531pt;}
.y7_c02216{bottom:823.786427pt;}
.y3_c02216{bottom:839.786939pt;}
.y8_c02216{bottom:870.505979pt;}
.y6_c02216{bottom:899.946203pt;}
.y5_c02216{bottom:915.946715pt;}
.y2_c02216{bottom:945.386939pt;}
.y4_c02216{bottom:959.786555pt;}
.y1_c02216{bottom:975.787067pt;}
.yf_c02216{bottom:1008.747067pt;}
.h3_c02216{height:28.916250pt;}
.h1_c02216{height:37.063125pt;}
.h2_c02216{height:37.166250pt;}
.h4_c02216{height:48.581988pt;}
.h0_c02216{height:1122.666667pt;}
.w1_c02216{width:793.333333pt;}
.w0_c02216{width:793.626667pt;}
.x0_c02216{left:0.000000pt;}
.xe_c02216{left:104.000000pt;}
.x8_c02216{left:392.000928pt;}
.x4_c02216{left:396.160512pt;}
.xc_c02216{left:400.960000pt;}
.x7_c02216{left:404.800704pt;}
.x5_c02216{left:410.560128pt;}
.x1_c02216{left:411.840000pt;}
.xa_c02216{left:429.761376pt;}
.x9_c02216{left:437.440608pt;}
.x6_c02216{left:438.400512pt;}
.xd_c02216{left:450.560320pt;}
.x3_c02216{left:455.039904pt;}
.x2_c02216{left:468.159648pt;}
.xb_c02216{left:506.561088pt;}
}





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

.ir_c02217:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02217{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02217;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02217{font-family:ff1_c02217;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02217;src:url('chunks/assets/font_a7aae9d97d97e420f39c39c8.woff2')format("woff");}.ff2_c02217{font-family:ff2_c02217;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02217;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02217{font-family:ff3_c02217;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02217{vertical-align:0.000000px;}
.v2_c02217{vertical-align:1.439424px;}
.v1_c02217{vertical-align:33.121440px;}
.ls8_c02217{letter-spacing:-0.574992px;}
.lsf_c02217{letter-spacing:-0.384912px;}
.ls13_c02217{letter-spacing:-0.342144px;}
.ls9_c02217{letter-spacing:-0.285120px;}
.ls11_c02217{letter-spacing:-0.275616px;}
.ls16_c02217{letter-spacing:-0.266112px;}
.lse_c02217{letter-spacing:-0.261360px;}
.ls6_c02217{letter-spacing:-0.242352px;}
.ls3_c02217{letter-spacing:-0.118800px;}
.ls15_c02217{letter-spacing:0.000000px;}
.ls0_c02217{letter-spacing:0.006048px;}
.lsc_c02217{letter-spacing:0.038016px;}
.ls5_c02217{letter-spacing:0.128304px;}
.lsb_c02217{letter-spacing:0.508464px;}
.ls14_c02217{letter-spacing:0.514080px;}
.ls10_c02217{letter-spacing:0.536976px;}
.lsa_c02217{letter-spacing:0.579744px;}
.ls12_c02217{letter-spacing:0.594000px;}
.ls7_c02217{letter-spacing:0.598752px;}
.ls1_c02217{letter-spacing:0.613008px;}
.lsd_c02217{letter-spacing:0.651024px;}
.ls4_c02217{letter-spacing:0.717552px;}
.ls2_c02217{letter-spacing:0.722304px;}
.sc__c02217{text-shadow:none;}
.sc0_c02217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02217{-webkit-text-stroke:0px transparent;}
.sc0_c02217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02217{word-spacing:-15.126048px;}
.wsf_c02217{word-spacing:-12.474000px;}
.wse_c02217{word-spacing:-12.459744px;}
.ws9_c02217{word-spacing:-12.416976px;}
.ws4_c02217{word-spacing:-11.637648px;}
.wsd_c02217{word-spacing:-11.305008px;}
.ws1a_c02217{word-spacing:-2.159136px;}
.ws15_c02217{word-spacing:-1.012176px;}
.ws10_c02217{word-spacing:-0.974160px;}
.ws14_c02217{word-spacing:-0.399168px;}
.ws12_c02217{word-spacing:-0.118800px;}
.ws16_c02217{word-spacing:-0.099792px;}
.ws1b_c02217{word-spacing:-0.095040px;}
.ws18_c02217{word-spacing:-0.085536px;}
.ws13_c02217{word-spacing:-0.076032px;}
.ws19_c02217{word-spacing:-0.019008px;}
.ws11_c02217{word-spacing:0.000000px;}
.ws17_c02217{word-spacing:0.023760px;}
.ws2_c02217{word-spacing:1.330560px;}
.wsa_c02217{word-spacing:30.298752px;}
.wsb_c02217{word-spacing:33.300288px;}
.ws8_c02217{word-spacing:36.143712px;}
.ws6_c02217{word-spacing:36.742464px;}
.ws1_c02217{word-spacing:37.759392px;}
.ws0_c02217{word-spacing:38.020752px;}
.ws3_c02217{word-spacing:39.218256px;}
.ws5_c02217{word-spacing:39.902544px;}
.ws7_c02217{word-spacing:42.026688px;}
._0_c02217{margin-left:-1.948320px;}
._2_c02217{width:1.482624px;}
._6_c02217{width:4.999104px;}
._4_c02217{width:6.263136px;}
._5_c02217{width:14.148864px;}
._1_c02217{width:50.252400px;}
._3_c02217{width:51.530688px;}
.fc0_c02217{color:rgb(0,0,0);}
.fs0_c02217{font-size:47.520000px;}
.fs1_c02217{font-size:60.480000px;}
.y0_c02217{bottom:0.000000px;}
.y19_c02217{bottom:146.998362px;}
.y1b_c02217{bottom:186.600234px;}
.y1a_c02217{bottom:196.320450px;}
.y18_c02217{bottom:275.878542px;}
.y17_c02217{bottom:356.878758px;}
.y15_c02217{bottom:406.559730px;}
.y11_c02217{bottom:424.560306px;}
.y16_c02217{bottom:458.759262px;}
.y14_c02217{bottom:491.879514px;}
.y13_c02217{bottom:509.880090px;}
.y10_c02217{bottom:543.000342px;}
.y12_c02217{bottom:559.559874px;}
.yf_c02217{bottom:577.560450px;}
.y1c_c02217{bottom:614.280450px;}
.yb_c02217{bottom:667.558326px;}
.yd_c02217{bottom:707.160234px;}
.yc_c02217{bottom:716.880450px;}
.ya_c02217{bottom:796.438506px;}
.y9_c02217{bottom:877.438722px;}
.y7_c02217{bottom:926.759730px;}
.y3_c02217{bottom:944.760306px;}
.y8_c02217{bottom:979.319226px;}
.y6_c02217{bottom:1012.439478px;}
.y5_c02217{bottom:1030.440054px;}
.y2_c02217{bottom:1063.560306px;}
.y4_c02217{bottom:1079.759874px;}
.y1_c02217{bottom:1097.760450px;}
.ye_c02217{bottom:1134.840450px;}
.h3_c02217{height:32.530781px;}
.h1_c02217{height:41.696016px;}
.h2_c02217{height:41.812031px;}
.h5_c02217{height:54.654737px;}
.h4_c02217{height:74.817456px;}
.h0_c02217{height:1263.000000px;}
.w1_c02217{width:892.500000px;}
.w0_c02217{width:892.830000px;}
.x0_c02217{left:0.000000px;}
.xd_c02217{left:117.000000px;}
.x8_c02217{left:440.999856px;}
.x4_c02217{left:445.680576px;}
.xb_c02217{left:451.080000px;}
.x7_c02217{left:455.399604px;}
.x5_c02217{left:461.880144px;}
.x1_c02217{left:463.320000px;}
.xa_c02217{left:483.480360px;}
.x9_c02217{left:492.119496px;}
.x6_c02217{left:493.200576px;}
.xc_c02217{left:506.880360px;}
.x3_c02217{left:511.919892px;}
.x2_c02217{left:526.679604px;}
@media print{
.v0_c02217{vertical-align:0.000000pt;}
.v2_c02217{vertical-align:1.279488pt;}
.v1_c02217{vertical-align:29.441280pt;}
.ls8_c02217{letter-spacing:-0.511104pt;}
.lsf_c02217{letter-spacing:-0.342144pt;}
.ls13_c02217{letter-spacing:-0.304128pt;}
.ls9_c02217{letter-spacing:-0.253440pt;}
.ls11_c02217{letter-spacing:-0.244992pt;}
.ls16_c02217{letter-spacing:-0.236544pt;}
.lse_c02217{letter-spacing:-0.232320pt;}
.ls6_c02217{letter-spacing:-0.215424pt;}
.ls3_c02217{letter-spacing:-0.105600pt;}
.ls15_c02217{letter-spacing:0.000000pt;}
.ls0_c02217{letter-spacing:0.005376pt;}
.lsc_c02217{letter-spacing:0.033792pt;}
.ls5_c02217{letter-spacing:0.114048pt;}
.lsb_c02217{letter-spacing:0.451968pt;}
.ls14_c02217{letter-spacing:0.456960pt;}
.ls10_c02217{letter-spacing:0.477312pt;}
.lsa_c02217{letter-spacing:0.515328pt;}
.ls12_c02217{letter-spacing:0.528000pt;}
.ls7_c02217{letter-spacing:0.532224pt;}
.ls1_c02217{letter-spacing:0.544896pt;}
.lsd_c02217{letter-spacing:0.578688pt;}
.ls4_c02217{letter-spacing:0.637824pt;}
.ls2_c02217{letter-spacing:0.642048pt;}
.wsc_c02217{word-spacing:-13.445376pt;}
.wsf_c02217{word-spacing:-11.088000pt;}
.wse_c02217{word-spacing:-11.075328pt;}
.ws9_c02217{word-spacing:-11.037312pt;}
.ws4_c02217{word-spacing:-10.344576pt;}
.wsd_c02217{word-spacing:-10.048896pt;}
.ws1a_c02217{word-spacing:-1.919232pt;}
.ws15_c02217{word-spacing:-0.899712pt;}
.ws10_c02217{word-spacing:-0.865920pt;}
.ws14_c02217{word-spacing:-0.354816pt;}
.ws12_c02217{word-spacing:-0.105600pt;}
.ws16_c02217{word-spacing:-0.088704pt;}
.ws1b_c02217{word-spacing:-0.084480pt;}
.ws18_c02217{word-spacing:-0.076032pt;}
.ws13_c02217{word-spacing:-0.067584pt;}
.ws19_c02217{word-spacing:-0.016896pt;}
.ws11_c02217{word-spacing:0.000000pt;}
.ws17_c02217{word-spacing:0.021120pt;}
.ws2_c02217{word-spacing:1.182720pt;}
.wsa_c02217{word-spacing:26.932224pt;}
.wsb_c02217{word-spacing:29.600256pt;}
.ws8_c02217{word-spacing:32.127744pt;}
.ws6_c02217{word-spacing:32.659968pt;}
.ws1_c02217{word-spacing:33.563904pt;}
.ws0_c02217{word-spacing:33.796224pt;}
.ws3_c02217{word-spacing:34.860672pt;}
.ws5_c02217{word-spacing:35.468928pt;}
.ws7_c02217{word-spacing:37.357056pt;}
._0_c02217{margin-left:-1.731840pt;}
._2_c02217{width:1.317888pt;}
._6_c02217{width:4.443648pt;}
._4_c02217{width:5.567232pt;}
._5_c02217{width:12.576768pt;}
._1_c02217{width:44.668800pt;}
._3_c02217{width:45.805056pt;}
.fs0_c02217{font-size:42.240000pt;}
.fs1_c02217{font-size:53.760000pt;}
.y0_c02217{bottom:0.000000pt;}
.y19_c02217{bottom:130.665211pt;}
.y1b_c02217{bottom:165.866875pt;}
.y1a_c02217{bottom:174.507067pt;}
.y18_c02217{bottom:245.225371pt;}
.y17_c02217{bottom:317.225563pt;}
.y15_c02217{bottom:361.386427pt;}
.y11_c02217{bottom:377.386939pt;}
.y16_c02217{bottom:407.786011pt;}
.y14_c02217{bottom:437.226235pt;}
.y13_c02217{bottom:453.226747pt;}
.y10_c02217{bottom:482.666971pt;}
.y12_c02217{bottom:497.386555pt;}
.yf_c02217{bottom:513.387067pt;}
.y1c_c02217{bottom:546.027067pt;}
.yb_c02217{bottom:593.385179pt;}
.yd_c02217{bottom:628.586875pt;}
.yc_c02217{bottom:637.227067pt;}
.ya_c02217{bottom:707.945339pt;}
.y9_c02217{bottom:779.945531pt;}
.y7_c02217{bottom:823.786427pt;}
.y3_c02217{bottom:839.786939pt;}
.y8_c02217{bottom:870.505979pt;}
.y6_c02217{bottom:899.946203pt;}
.y5_c02217{bottom:915.946715pt;}
.y2_c02217{bottom:945.386939pt;}
.y4_c02217{bottom:959.786555pt;}
.y1_c02217{bottom:975.787067pt;}
.ye_c02217{bottom:1008.747067pt;}
.h3_c02217{height:28.916250pt;}
.h1_c02217{height:37.063125pt;}
.h2_c02217{height:37.166250pt;}
.h5_c02217{height:48.581988pt;}
.h4_c02217{height:66.504405pt;}
.h0_c02217{height:1122.666667pt;}
.w1_c02217{width:793.333333pt;}
.w0_c02217{width:793.626667pt;}
.x0_c02217{left:0.000000pt;}
.xd_c02217{left:104.000000pt;}
.x8_c02217{left:391.999872pt;}
.x4_c02217{left:396.160512pt;}
.xb_c02217{left:400.960000pt;}
.x7_c02217{left:404.799648pt;}
.x5_c02217{left:410.560128pt;}
.x1_c02217{left:411.840000pt;}
.xa_c02217{left:429.760320pt;}
.x9_c02217{left:437.439552pt;}
.x6_c02217{left:438.400512pt;}
.xc_c02217{left:450.560320pt;}
.x3_c02217{left:455.039904pt;}
.x2_c02217{left:468.159648pt;}
}





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

.ir_c02218:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02218{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02218;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02218{font-family:ff1_c02218;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02218;src:url('chunks/assets/font_9c2d3bf60d205d0d55da631e.woff2')format("woff");}.ff2_c02218{font-family:ff2_c02218;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02218;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02218{font-family:ff3_c02218;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02218{vertical-align:0.000000px;}
.v1_c02218{vertical-align:1.439424px;}
.lsa_c02218{letter-spacing:-0.574992px;}
.ls10_c02218{letter-spacing:-0.275616px;}
.ls9_c02218{letter-spacing:-0.266112px;}
.lse_c02218{letter-spacing:-0.261360px;}
.ls7_c02218{letter-spacing:-0.242352px;}
.ls4_c02218{letter-spacing:-0.118800px;}
.ls13_c02218{letter-spacing:0.000000px;}
.ls1_c02218{letter-spacing:0.006048px;}
.lsd_c02218{letter-spacing:0.038016px;}
.ls6_c02218{letter-spacing:0.128304px;}
.lsc_c02218{letter-spacing:0.508464px;}
.ls12_c02218{letter-spacing:0.514080px;}
.lsf_c02218{letter-spacing:0.536976px;}
.lsb_c02218{letter-spacing:0.579744px;}
.ls11_c02218{letter-spacing:0.594000px;}
.ls8_c02218{letter-spacing:0.598752px;}
.ls2_c02218{letter-spacing:0.613008px;}
.ls0_c02218{letter-spacing:0.655776px;}
.ls5_c02218{letter-spacing:0.717552px;}
.ls3_c02218{letter-spacing:0.722304px;}
.sc__c02218{text-shadow:none;}
.sc0_c02218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02218{-webkit-text-stroke:0px transparent;}
.sc0_c02218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02218{word-spacing:-15.126048px;}
.ws9_c02218{word-spacing:-12.474000px;}
.ws7_c02218{word-spacing:-12.459744px;}
.ws8_c02218{word-spacing:-12.416976px;}
.wsc_c02218{word-spacing:-11.637648px;}
.ws15_c02218{word-spacing:-2.159136px;}
.ws11_c02218{word-spacing:-1.016928px;}
.wsd_c02218{word-spacing:-0.974160px;}
.ws12_c02218{word-spacing:-0.399168px;}
.wsf_c02218{word-spacing:-0.118800px;}
.ws13_c02218{word-spacing:-0.099792px;}
.ws10_c02218{word-spacing:-0.095040px;}
.ws14_c02218{word-spacing:-0.085536px;}
.wse_c02218{word-spacing:0.000000px;}
.ws2_c02218{word-spacing:1.330560px;}
.wsa_c02218{word-spacing:33.300288px;}
.ws5_c02218{word-spacing:36.742464px;}
.ws1_c02218{word-spacing:37.759392px;}
.ws0_c02218{word-spacing:38.020752px;}
.ws3_c02218{word-spacing:39.218256px;}
.ws4_c02218{word-spacing:39.902544px;}
.ws6_c02218{word-spacing:42.026688px;}
._0_c02218{margin-left:-1.948320px;}
._2_c02218{width:1.482624px;}
._4_c02218{width:4.999104px;}
._5_c02218{width:14.148864px;}
._1_c02218{width:50.252400px;}
._3_c02218{width:51.530688px;}
.fc0_c02218{color:rgb(0,0,0);}
.fs0_c02218{font-size:47.520000px;}
.fs1_c02218{font-size:60.480000px;}
.y0_c02218{bottom:0.000000px;}
.y19_c02218{bottom:146.998362px;}
.y1b_c02218{bottom:186.600234px;}
.y1a_c02218{bottom:196.320450px;}
.y18_c02218{bottom:275.878542px;}
.y17_c02218{bottom:356.878758px;}
.y15_c02218{bottom:406.559730px;}
.y11_c02218{bottom:424.560306px;}
.y16_c02218{bottom:458.759262px;}
.y14_c02218{bottom:491.879514px;}
.y13_c02218{bottom:509.880090px;}
.y10_c02218{bottom:543.000342px;}
.y12_c02218{bottom:559.559874px;}
.yf_c02218{bottom:577.560450px;}
.y1c_c02218{bottom:614.280450px;}
.yb_c02218{bottom:667.558326px;}
.yd_c02218{bottom:707.160234px;}
.yc_c02218{bottom:716.880450px;}
.ya_c02218{bottom:796.438506px;}
.y9_c02218{bottom:877.438722px;}
.y7_c02218{bottom:926.759730px;}
.y3_c02218{bottom:944.760306px;}
.y8_c02218{bottom:979.319226px;}
.y6_c02218{bottom:1012.439478px;}
.y5_c02218{bottom:1030.440054px;}
.y2_c02218{bottom:1063.560306px;}
.y4_c02218{bottom:1079.759874px;}
.y1_c02218{bottom:1097.760450px;}
.ye_c02218{bottom:1134.840450px;}
.h3_c02218{height:32.530781px;}
.h1_c02218{height:41.696016px;}
.h2_c02218{height:41.812031px;}
.h4_c02218{height:54.654737px;}
.h0_c02218{height:1263.000000px;}
.w1_c02218{width:892.500000px;}
.w0_c02218{width:892.830000px;}
.x0_c02218{left:0.000000px;}
.xd_c02218{left:117.000000px;}
.x8_c02218{left:440.999856px;}
.x4_c02218{left:445.680576px;}
.xb_c02218{left:451.080000px;}
.x7_c02218{left:455.399604px;}
.x5_c02218{left:461.880144px;}
.x1_c02218{left:463.320000px;}
.xa_c02218{left:483.480360px;}
.x9_c02218{left:492.119496px;}
.x6_c02218{left:493.200576px;}
.xc_c02218{left:506.880360px;}
.x3_c02218{left:511.919892px;}
.x2_c02218{left:526.679604px;}
@media print{
.v0_c02218{vertical-align:0.000000pt;}
.v1_c02218{vertical-align:1.279488pt;}
.lsa_c02218{letter-spacing:-0.511104pt;}
.ls10_c02218{letter-spacing:-0.244992pt;}
.ls9_c02218{letter-spacing:-0.236544pt;}
.lse_c02218{letter-spacing:-0.232320pt;}
.ls7_c02218{letter-spacing:-0.215424pt;}
.ls4_c02218{letter-spacing:-0.105600pt;}
.ls13_c02218{letter-spacing:0.000000pt;}
.ls1_c02218{letter-spacing:0.005376pt;}
.lsd_c02218{letter-spacing:0.033792pt;}
.ls6_c02218{letter-spacing:0.114048pt;}
.lsc_c02218{letter-spacing:0.451968pt;}
.ls12_c02218{letter-spacing:0.456960pt;}
.lsf_c02218{letter-spacing:0.477312pt;}
.lsb_c02218{letter-spacing:0.515328pt;}
.ls11_c02218{letter-spacing:0.528000pt;}
.ls8_c02218{letter-spacing:0.532224pt;}
.ls2_c02218{letter-spacing:0.544896pt;}
.ls0_c02218{letter-spacing:0.582912pt;}
.ls5_c02218{letter-spacing:0.637824pt;}
.ls3_c02218{letter-spacing:0.642048pt;}
.wsb_c02218{word-spacing:-13.445376pt;}
.ws9_c02218{word-spacing:-11.088000pt;}
.ws7_c02218{word-spacing:-11.075328pt;}
.ws8_c02218{word-spacing:-11.037312pt;}
.wsc_c02218{word-spacing:-10.344576pt;}
.ws15_c02218{word-spacing:-1.919232pt;}
.ws11_c02218{word-spacing:-0.903936pt;}
.wsd_c02218{word-spacing:-0.865920pt;}
.ws12_c02218{word-spacing:-0.354816pt;}
.wsf_c02218{word-spacing:-0.105600pt;}
.ws13_c02218{word-spacing:-0.088704pt;}
.ws10_c02218{word-spacing:-0.084480pt;}
.ws14_c02218{word-spacing:-0.076032pt;}
.wse_c02218{word-spacing:0.000000pt;}
.ws2_c02218{word-spacing:1.182720pt;}
.wsa_c02218{word-spacing:29.600256pt;}
.ws5_c02218{word-spacing:32.659968pt;}
.ws1_c02218{word-spacing:33.563904pt;}
.ws0_c02218{word-spacing:33.796224pt;}
.ws3_c02218{word-spacing:34.860672pt;}
.ws4_c02218{word-spacing:35.468928pt;}
.ws6_c02218{word-spacing:37.357056pt;}
._0_c02218{margin-left:-1.731840pt;}
._2_c02218{width:1.317888pt;}
._4_c02218{width:4.443648pt;}
._5_c02218{width:12.576768pt;}
._1_c02218{width:44.668800pt;}
._3_c02218{width:45.805056pt;}
.fs0_c02218{font-size:42.240000pt;}
.fs1_c02218{font-size:53.760000pt;}
.y0_c02218{bottom:0.000000pt;}
.y19_c02218{bottom:130.665211pt;}
.y1b_c02218{bottom:165.866875pt;}
.y1a_c02218{bottom:174.507067pt;}
.y18_c02218{bottom:245.225371pt;}
.y17_c02218{bottom:317.225563pt;}
.y15_c02218{bottom:361.386427pt;}
.y11_c02218{bottom:377.386939pt;}
.y16_c02218{bottom:407.786011pt;}
.y14_c02218{bottom:437.226235pt;}
.y13_c02218{bottom:453.226747pt;}
.y10_c02218{bottom:482.666971pt;}
.y12_c02218{bottom:497.386555pt;}
.yf_c02218{bottom:513.387067pt;}
.y1c_c02218{bottom:546.027067pt;}
.yb_c02218{bottom:593.385179pt;}
.yd_c02218{bottom:628.586875pt;}
.yc_c02218{bottom:637.227067pt;}
.ya_c02218{bottom:707.945339pt;}
.y9_c02218{bottom:779.945531pt;}
.y7_c02218{bottom:823.786427pt;}
.y3_c02218{bottom:839.786939pt;}
.y8_c02218{bottom:870.505979pt;}
.y6_c02218{bottom:899.946203pt;}
.y5_c02218{bottom:915.946715pt;}
.y2_c02218{bottom:945.386939pt;}
.y4_c02218{bottom:959.786555pt;}
.y1_c02218{bottom:975.787067pt;}
.ye_c02218{bottom:1008.747067pt;}
.h3_c02218{height:28.916250pt;}
.h1_c02218{height:37.063125pt;}
.h2_c02218{height:37.166250pt;}
.h4_c02218{height:48.581988pt;}
.h0_c02218{height:1122.666667pt;}
.w1_c02218{width:793.333333pt;}
.w0_c02218{width:793.626667pt;}
.x0_c02218{left:0.000000pt;}
.xd_c02218{left:104.000000pt;}
.x8_c02218{left:391.999872pt;}
.x4_c02218{left:396.160512pt;}
.xb_c02218{left:400.960000pt;}
.x7_c02218{left:404.799648pt;}
.x5_c02218{left:410.560128pt;}
.x1_c02218{left:411.840000pt;}
.xa_c02218{left:429.760320pt;}
.x9_c02218{left:437.439552pt;}
.x6_c02218{left:438.400512pt;}
.xc_c02218{left:450.560320pt;}
.x3_c02218{left:455.039904pt;}
.x2_c02218{left:468.159648pt;}
}





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

.ir_c02219:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02219{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02219;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02219{font-family:ff1_c02219;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02219;src:url('chunks/assets/font_659493610fa08c952b539609.woff2')format("woff");}.ff2_c02219{font-family:ff2_c02219;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02219;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02219{font-family:ff3_c02219;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02219{vertical-align:0.000000px;}
.v1_c02219{vertical-align:1.439424px;}
.lsf_c02219{letter-spacing:-0.736560px;}
.ls9_c02219{letter-spacing:-0.574992px;}
.ls15_c02219{letter-spacing:-0.275616px;}
.ls10_c02219{letter-spacing:-0.270864px;}
.ls14_c02219{letter-spacing:-0.266112px;}
.lsd_c02219{letter-spacing:-0.261360px;}
.ls7_c02219{letter-spacing:-0.242352px;}
.ls4_c02219{letter-spacing:-0.118800px;}
.ls13_c02219{letter-spacing:0.000000px;}
.ls1_c02219{letter-spacing:0.006048px;}
.lsc_c02219{letter-spacing:0.038016px;}
.ls6_c02219{letter-spacing:0.128304px;}
.lsb_c02219{letter-spacing:0.508464px;}
.ls12_c02219{letter-spacing:0.514080px;}
.lse_c02219{letter-spacing:0.536976px;}
.lsa_c02219{letter-spacing:0.579744px;}
.ls11_c02219{letter-spacing:0.594000px;}
.ls8_c02219{letter-spacing:0.598752px;}
.ls2_c02219{letter-spacing:0.613008px;}
.ls0_c02219{letter-spacing:0.655776px;}
.ls5_c02219{letter-spacing:0.717552px;}
.ls3_c02219{letter-spacing:0.722304px;}
.sc__c02219{text-shadow:none;}
.sc0_c02219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02219{-webkit-text-stroke:0px transparent;}
.sc0_c02219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02219{word-spacing:-15.126048px;}
.wsb_c02219{word-spacing:-12.474000px;}
.ws8_c02219{word-spacing:-12.459744px;}
.wse_c02219{word-spacing:-12.416976px;}
.ws4_c02219{word-spacing:-11.637648px;}
.ws17_c02219{word-spacing:-2.159136px;}
.ws12_c02219{word-spacing:-1.016928px;}
.wsf_c02219{word-spacing:-0.974160px;}
.ws13_c02219{word-spacing:-0.399168px;}
.ws11_c02219{word-spacing:-0.118800px;}
.ws14_c02219{word-spacing:-0.099792px;}
.ws18_c02219{word-spacing:-0.095040px;}
.ws15_c02219{word-spacing:-0.090288px;}
.ws16_c02219{word-spacing:-0.085536px;}
.ws10_c02219{word-spacing:0.000000px;}
.ws2_c02219{word-spacing:1.330560px;}
.wsa_c02219{word-spacing:6.629040px;}
.wsc_c02219{word-spacing:33.300288px;}
.ws9_c02219{word-spacing:34.836912px;}
.ws6_c02219{word-spacing:36.742464px;}
.ws1_c02219{word-spacing:37.759392px;}
.ws0_c02219{word-spacing:38.020752px;}
.ws3_c02219{word-spacing:39.218256px;}
.ws5_c02219{word-spacing:39.902544px;}
.ws7_c02219{word-spacing:42.026688px;}
._0_c02219{margin-left:-1.948320px;}
._2_c02219{width:1.482624px;}
._4_c02219{width:4.785264px;}
._8_c02219{width:14.148864px;}
._6_c02219{width:19.982160px;}
._7_c02219{width:23.451120px;}
._5_c02219{width:24.691392px;}
._1_c02219{width:50.252400px;}
._3_c02219{width:51.530688px;}
.fc0_c02219{color:rgb(0,0,0);}
.fs0_c02219{font-size:47.520000px;}
.fs1_c02219{font-size:60.480000px;}
.y0_c02219{bottom:0.000000px;}
.y1a_c02219{bottom:146.998362px;}
.y1c_c02219{bottom:186.600234px;}
.y1b_c02219{bottom:196.320450px;}
.y19_c02219{bottom:275.878542px;}
.y18_c02219{bottom:356.878758px;}
.y16_c02219{bottom:406.559730px;}
.y12_c02219{bottom:424.560306px;}
.y17_c02219{bottom:458.759262px;}
.y15_c02219{bottom:491.879514px;}
.y14_c02219{bottom:509.880090px;}
.y11_c02219{bottom:543.000342px;}
.y13_c02219{bottom:559.559874px;}
.y10_c02219{bottom:577.560450px;}
.y1d_c02219{bottom:614.280450px;}
.yc_c02219{bottom:652.438650px;}
.yb_c02219{bottom:667.558326px;}
.ye_c02219{bottom:707.160234px;}
.yd_c02219{bottom:716.880450px;}
.ya_c02219{bottom:796.438506px;}
.y9_c02219{bottom:877.438722px;}
.y7_c02219{bottom:926.759730px;}
.y3_c02219{bottom:944.760306px;}
.y8_c02219{bottom:979.319226px;}
.y6_c02219{bottom:1012.439478px;}
.y5_c02219{bottom:1030.440054px;}
.y2_c02219{bottom:1063.560306px;}
.y4_c02219{bottom:1079.759874px;}
.y1_c02219{bottom:1097.760450px;}
.yf_c02219{bottom:1134.840450px;}
.h3_c02219{height:32.530781px;}
.h1_c02219{height:41.696016px;}
.h2_c02219{height:41.812031px;}
.h4_c02219{height:54.654737px;}
.h0_c02219{height:1263.000000px;}
.w1_c02219{width:892.500000px;}
.w0_c02219{width:892.830000px;}
.x0_c02219{left:0.000000px;}
.xe_c02219{left:117.000000px;}
.x8_c02219{left:440.999856px;}
.x4_c02219{left:445.680576px;}
.xc_c02219{left:451.080000px;}
.x7_c02219{left:455.399604px;}
.x5_c02219{left:461.880144px;}
.x1_c02219{left:463.320000px;}
.xa_c02219{left:483.480360px;}
.x9_c02219{left:492.119496px;}
.x6_c02219{left:493.200576px;}
.xd_c02219{left:506.880360px;}
.x3_c02219{left:511.919892px;}
.x2_c02219{left:526.679604px;}
.xb_c02219{left:569.880036px;}
@media print{
.v0_c02219{vertical-align:0.000000pt;}
.v1_c02219{vertical-align:1.279488pt;}
.lsf_c02219{letter-spacing:-0.654720pt;}
.ls9_c02219{letter-spacing:-0.511104pt;}
.ls15_c02219{letter-spacing:-0.244992pt;}
.ls10_c02219{letter-spacing:-0.240768pt;}
.ls14_c02219{letter-spacing:-0.236544pt;}
.lsd_c02219{letter-spacing:-0.232320pt;}
.ls7_c02219{letter-spacing:-0.215424pt;}
.ls4_c02219{letter-spacing:-0.105600pt;}
.ls13_c02219{letter-spacing:0.000000pt;}
.ls1_c02219{letter-spacing:0.005376pt;}
.lsc_c02219{letter-spacing:0.033792pt;}
.ls6_c02219{letter-spacing:0.114048pt;}
.lsb_c02219{letter-spacing:0.451968pt;}
.ls12_c02219{letter-spacing:0.456960pt;}
.lse_c02219{letter-spacing:0.477312pt;}
.lsa_c02219{letter-spacing:0.515328pt;}
.ls11_c02219{letter-spacing:0.528000pt;}
.ls8_c02219{letter-spacing:0.532224pt;}
.ls2_c02219{letter-spacing:0.544896pt;}
.ls0_c02219{letter-spacing:0.582912pt;}
.ls5_c02219{letter-spacing:0.637824pt;}
.ls3_c02219{letter-spacing:0.642048pt;}
.wsd_c02219{word-spacing:-13.445376pt;}
.wsb_c02219{word-spacing:-11.088000pt;}
.ws8_c02219{word-spacing:-11.075328pt;}
.wse_c02219{word-spacing:-11.037312pt;}
.ws4_c02219{word-spacing:-10.344576pt;}
.ws17_c02219{word-spacing:-1.919232pt;}
.ws12_c02219{word-spacing:-0.903936pt;}
.wsf_c02219{word-spacing:-0.865920pt;}
.ws13_c02219{word-spacing:-0.354816pt;}
.ws11_c02219{word-spacing:-0.105600pt;}
.ws14_c02219{word-spacing:-0.088704pt;}
.ws18_c02219{word-spacing:-0.084480pt;}
.ws15_c02219{word-spacing:-0.080256pt;}
.ws16_c02219{word-spacing:-0.076032pt;}
.ws10_c02219{word-spacing:0.000000pt;}
.ws2_c02219{word-spacing:1.182720pt;}
.wsa_c02219{word-spacing:5.892480pt;}
.wsc_c02219{word-spacing:29.600256pt;}
.ws9_c02219{word-spacing:30.966144pt;}
.ws6_c02219{word-spacing:32.659968pt;}
.ws1_c02219{word-spacing:33.563904pt;}
.ws0_c02219{word-spacing:33.796224pt;}
.ws3_c02219{word-spacing:34.860672pt;}
.ws5_c02219{word-spacing:35.468928pt;}
.ws7_c02219{word-spacing:37.357056pt;}
._0_c02219{margin-left:-1.731840pt;}
._2_c02219{width:1.317888pt;}
._4_c02219{width:4.253568pt;}
._8_c02219{width:12.576768pt;}
._6_c02219{width:17.761920pt;}
._7_c02219{width:20.845440pt;}
._5_c02219{width:21.947904pt;}
._1_c02219{width:44.668800pt;}
._3_c02219{width:45.805056pt;}
.fs0_c02219{font-size:42.240000pt;}
.fs1_c02219{font-size:53.760000pt;}
.y0_c02219{bottom:0.000000pt;}
.y1a_c02219{bottom:130.665211pt;}
.y1c_c02219{bottom:165.866875pt;}
.y1b_c02219{bottom:174.507067pt;}
.y19_c02219{bottom:245.225371pt;}
.y18_c02219{bottom:317.225563pt;}
.y16_c02219{bottom:361.386427pt;}
.y12_c02219{bottom:377.386939pt;}
.y17_c02219{bottom:407.786011pt;}
.y15_c02219{bottom:437.226235pt;}
.y14_c02219{bottom:453.226747pt;}
.y11_c02219{bottom:482.666971pt;}
.y13_c02219{bottom:497.386555pt;}
.y10_c02219{bottom:513.387067pt;}
.y1d_c02219{bottom:546.027067pt;}
.yc_c02219{bottom:579.945467pt;}
.yb_c02219{bottom:593.385179pt;}
.ye_c02219{bottom:628.586875pt;}
.yd_c02219{bottom:637.227067pt;}
.ya_c02219{bottom:707.945339pt;}
.y9_c02219{bottom:779.945531pt;}
.y7_c02219{bottom:823.786427pt;}
.y3_c02219{bottom:839.786939pt;}
.y8_c02219{bottom:870.505979pt;}
.y6_c02219{bottom:899.946203pt;}
.y5_c02219{bottom:915.946715pt;}
.y2_c02219{bottom:945.386939pt;}
.y4_c02219{bottom:959.786555pt;}
.y1_c02219{bottom:975.787067pt;}
.yf_c02219{bottom:1008.747067pt;}
.h3_c02219{height:28.916250pt;}
.h1_c02219{height:37.063125pt;}
.h2_c02219{height:37.166250pt;}
.h4_c02219{height:48.581988pt;}
.h0_c02219{height:1122.666667pt;}
.w1_c02219{width:793.333333pt;}
.w0_c02219{width:793.626667pt;}
.x0_c02219{left:0.000000pt;}
.xe_c02219{left:104.000000pt;}
.x8_c02219{left:391.999872pt;}
.x4_c02219{left:396.160512pt;}
.xc_c02219{left:400.960000pt;}
.x7_c02219{left:404.799648pt;}
.x5_c02219{left:410.560128pt;}
.x1_c02219{left:411.840000pt;}
.xa_c02219{left:429.760320pt;}
.x9_c02219{left:437.439552pt;}
.x6_c02219{left:438.400512pt;}
.xd_c02219{left:450.560320pt;}
.x3_c02219{left:455.039904pt;}
.x2_c02219{left:468.159648pt;}
.xb_c02219{left:506.560032pt;}
}





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

.ir_c02220:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02220{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02220;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02220{font-family:ff1_c02220;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02220;src:url('chunks/assets/font_077f4ec5c547c8a5a3b493bc.woff2')format("woff");}.ff2_c02220{font-family:ff2_c02220;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02220;src:url('chunks/assets/font_1d6cbb26c04e57e14f3e1a37.woff2')format("woff");}.ff3_c02220{font-family:ff3_c02220;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02220{vertical-align:0.000000px;}
.v1_c02220{vertical-align:1.439424px;}
.ls14_c02220{letter-spacing:-0.860112px;}
.ls13_c02220{letter-spacing:-0.836352px;}
.ls15_c02220{letter-spacing:-0.826848px;}
.lsd_c02220{letter-spacing:-0.722304px;}
.lsa_c02220{letter-spacing:-0.574992px;}
.lsb_c02220{letter-spacing:-0.323136px;}
.ls16_c02220{letter-spacing:-0.275616px;}
.ls9_c02220{letter-spacing:-0.266112px;}
.ls10_c02220{letter-spacing:-0.261360px;}
.ls7_c02220{letter-spacing:-0.242352px;}
.ls5_c02220{letter-spacing:-0.175824px;}
.ls4_c02220{letter-spacing:-0.118800px;}
.ls19_c02220{letter-spacing:0.000000px;}
.ls2_c02220{letter-spacing:0.006048px;}
.lsf_c02220{letter-spacing:0.038016px;}
.ls6_c02220{letter-spacing:0.128304px;}
.ls11_c02220{letter-spacing:0.242352px;}
.lse_c02220{letter-spacing:0.508464px;}
.ls18_c02220{letter-spacing:0.514080px;}
.ls12_c02220{letter-spacing:0.536976px;}
.lsc_c02220{letter-spacing:0.579744px;}
.ls17_c02220{letter-spacing:0.594000px;}
.ls8_c02220{letter-spacing:0.598752px;}
.ls3_c02220{letter-spacing:0.613008px;}
.ls1c_c02220{letter-spacing:0.651024px;}
.ls1b_c02220{letter-spacing:0.655776px;}
.ls1_c02220{letter-spacing:0.684288px;}
.ls1a_c02220{letter-spacing:0.717552px;}
.ls0_c02220{letter-spacing:0.722304px;}
.sc__c02220{text-shadow:none;}
.sc0_c02220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02220{-webkit-text-stroke:0px transparent;}
.sc0_c02220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13_c02220{word-spacing:-15.126048px;}
.ws3_c02220{word-spacing:-12.602304px;}
.ws11_c02220{word-spacing:-12.474000px;}
.ws16_c02220{word-spacing:-12.416976px;}
.ws1_c02220{word-spacing:-11.704176px;}
.ws14_c02220{word-spacing:-11.637648px;}
.ws22_c02220{word-spacing:-2.159136px;}
.ws1e_c02220{word-spacing:-1.083456px;}
.ws23_c02220{word-spacing:-1.016928px;}
.ws17_c02220{word-spacing:-0.974160px;}
.ws1d_c02220{word-spacing:-0.399168px;}
.ws19_c02220{word-spacing:-0.118800px;}
.ws1f_c02220{word-spacing:-0.099792px;}
.ws1a_c02220{word-spacing:-0.095040px;}
.ws21_c02220{word-spacing:-0.085536px;}
.ws1b_c02220{word-spacing:-0.038016px;}
.ws18_c02220{word-spacing:0.000000px;}
.ws1c_c02220{word-spacing:0.361152px;}
.ws20_c02220{word-spacing:0.465696px;}
.ws4_c02220{word-spacing:1.330560px;}
.wsd_c02220{word-spacing:4.557168px;}
.wsc_c02220{word-spacing:4.752000px;}
.wsb_c02220{word-spacing:5.136912px;}
.ws10_c02220{word-spacing:8.316000px;}
.wsa_c02220{word-spacing:8.387280px;}
.wsf_c02220{word-spacing:11.148192px;}
.ws15_c02220{word-spacing:29.086992px;}
.ws12_c02220{word-spacing:33.300288px;}
.wse_c02220{word-spacing:34.836912px;}
.ws9_c02220{word-spacing:36.143712px;}
.ws7_c02220{word-spacing:36.742464px;}
.ws2_c02220{word-spacing:37.759392px;}
.ws0_c02220{word-spacing:38.020752px;}
.ws5_c02220{word-spacing:39.218256px;}
.ws6_c02220{word-spacing:39.902544px;}
.ws8_c02220{word-spacing:42.026688px;}
._6_c02220{margin-left:-3.069792px;}
._0_c02220{margin-left:-1.948320px;}
._2_c02220{width:1.316304px;}
._a_c02220{width:2.537568px;}
._4_c02220{width:4.699728px;}
._c_c02220{width:15.444000px;}
._b_c02220{width:17.344800px;}
._8_c02220{width:18.718128px;}
._5_c02220{width:21.051360px;}
._7_c02220{width:23.398848px;}
._9_c02220{width:26.254800px;}
._d_c02220{width:39.855024px;}
._e_c02220{width:44.530992px;}
._f_c02220{width:45.918576px;}
._1_c02220{width:50.252400px;}
._3_c02220{width:52.195968px;}
.fc0_c02220{color:rgb(0,0,0);}
.fs0_c02220{font-size:47.520000px;}
.fs1_c02220{font-size:60.480000px;}
.y0_c02220{bottom:0.000000px;}
.y1e_c02220{bottom:146.998362px;}
.y20_c02220{bottom:186.600234px;}
.y1f_c02220{bottom:196.320450px;}
.y1d_c02220{bottom:275.878542px;}
.y1c_c02220{bottom:341.759082px;}
.y1b_c02220{bottom:356.878758px;}
.y19_c02220{bottom:406.559730px;}
.y15_c02220{bottom:424.560306px;}
.y1a_c02220{bottom:458.759262px;}
.y18_c02220{bottom:491.879514px;}
.y17_c02220{bottom:509.880090px;}
.y14_c02220{bottom:543.000342px;}
.y16_c02220{bottom:559.559874px;}
.y13_c02220{bottom:577.560450px;}
.y21_c02220{bottom:614.280450px;}
.yf_c02220{bottom:637.320162px;}
.ye_c02220{bottom:652.439838px;}
.yd_c02220{bottom:667.559514px;}
.y11_c02220{bottom:707.160234px;}
.y10_c02220{bottom:716.880450px;}
.yc_c02220{bottom:781.320018px;}
.yb_c02220{bottom:796.439694px;}
.ya_c02220{bottom:862.319046px;}
.y9_c02220{bottom:877.438722px;}
.y7_c02220{bottom:926.759730px;}
.y3_c02220{bottom:944.760306px;}
.y8_c02220{bottom:979.319226px;}
.y6_c02220{bottom:1012.439478px;}
.y5_c02220{bottom:1030.440054px;}
.y2_c02220{bottom:1063.560306px;}
.y4_c02220{bottom:1079.759874px;}
.y1_c02220{bottom:1097.760450px;}
.y12_c02220{bottom:1134.840450px;}
.h3_c02220{height:32.530781px;}
.h1_c02220{height:41.696016px;}
.h2_c02220{height:41.812031px;}
.h4_c02220{height:54.654737px;}
.h0_c02220{height:1263.000000px;}
.w1_c02220{width:892.500000px;}
.w0_c02220{width:892.830000px;}
.x0_c02220{left:0.000000px;}
.xe_c02220{left:117.000000px;}
.x8_c02220{left:440.999856px;}
.x4_c02220{left:445.680576px;}
.xc_c02220{left:451.080000px;}
.x7_c02220{left:455.399604px;}
.x5_c02220{left:461.880144px;}
.x1_c02220{left:463.320000px;}
.xb_c02220{left:483.480360px;}
.x9_c02220{left:492.119496px;}
.x6_c02220{left:493.200576px;}
.xd_c02220{left:506.880360px;}
.x3_c02220{left:511.919892px;}
.x2_c02220{left:526.679604px;}
.xa_c02220{left:569.880036px;}
@media print{
.v0_c02220{vertical-align:0.000000pt;}
.v1_c02220{vertical-align:1.279488pt;}
.ls14_c02220{letter-spacing:-0.764544pt;}
.ls13_c02220{letter-spacing:-0.743424pt;}
.ls15_c02220{letter-spacing:-0.734976pt;}
.lsd_c02220{letter-spacing:-0.642048pt;}
.lsa_c02220{letter-spacing:-0.511104pt;}
.lsb_c02220{letter-spacing:-0.287232pt;}
.ls16_c02220{letter-spacing:-0.244992pt;}
.ls9_c02220{letter-spacing:-0.236544pt;}
.ls10_c02220{letter-spacing:-0.232320pt;}
.ls7_c02220{letter-spacing:-0.215424pt;}
.ls5_c02220{letter-spacing:-0.156288pt;}
.ls4_c02220{letter-spacing:-0.105600pt;}
.ls19_c02220{letter-spacing:0.000000pt;}
.ls2_c02220{letter-spacing:0.005376pt;}
.lsf_c02220{letter-spacing:0.033792pt;}
.ls6_c02220{letter-spacing:0.114048pt;}
.ls11_c02220{letter-spacing:0.215424pt;}
.lse_c02220{letter-spacing:0.451968pt;}
.ls18_c02220{letter-spacing:0.456960pt;}
.ls12_c02220{letter-spacing:0.477312pt;}
.lsc_c02220{letter-spacing:0.515328pt;}
.ls17_c02220{letter-spacing:0.528000pt;}
.ls8_c02220{letter-spacing:0.532224pt;}
.ls3_c02220{letter-spacing:0.544896pt;}
.ls1c_c02220{letter-spacing:0.578688pt;}
.ls1b_c02220{letter-spacing:0.582912pt;}
.ls1_c02220{letter-spacing:0.608256pt;}
.ls1a_c02220{letter-spacing:0.637824pt;}
.ls0_c02220{letter-spacing:0.642048pt;}
.ws13_c02220{word-spacing:-13.445376pt;}
.ws3_c02220{word-spacing:-11.202048pt;}
.ws11_c02220{word-spacing:-11.088000pt;}
.ws16_c02220{word-spacing:-11.037312pt;}
.ws1_c02220{word-spacing:-10.403712pt;}
.ws14_c02220{word-spacing:-10.344576pt;}
.ws22_c02220{word-spacing:-1.919232pt;}
.ws1e_c02220{word-spacing:-0.963072pt;}
.ws23_c02220{word-spacing:-0.903936pt;}
.ws17_c02220{word-spacing:-0.865920pt;}
.ws1d_c02220{word-spacing:-0.354816pt;}
.ws19_c02220{word-spacing:-0.105600pt;}
.ws1f_c02220{word-spacing:-0.088704pt;}
.ws1a_c02220{word-spacing:-0.084480pt;}
.ws21_c02220{word-spacing:-0.076032pt;}
.ws1b_c02220{word-spacing:-0.033792pt;}
.ws18_c02220{word-spacing:0.000000pt;}
.ws1c_c02220{word-spacing:0.321024pt;}
.ws20_c02220{word-spacing:0.413952pt;}
.ws4_c02220{word-spacing:1.182720pt;}
.wsd_c02220{word-spacing:4.050816pt;}
.wsc_c02220{word-spacing:4.224000pt;}
.wsb_c02220{word-spacing:4.566144pt;}
.ws10_c02220{word-spacing:7.392000pt;}
.wsa_c02220{word-spacing:7.455360pt;}
.wsf_c02220{word-spacing:9.909504pt;}
.ws15_c02220{word-spacing:25.855104pt;}
.ws12_c02220{word-spacing:29.600256pt;}
.wse_c02220{word-spacing:30.966144pt;}
.ws9_c02220{word-spacing:32.127744pt;}
.ws7_c02220{word-spacing:32.659968pt;}
.ws2_c02220{word-spacing:33.563904pt;}
.ws0_c02220{word-spacing:33.796224pt;}
.ws5_c02220{word-spacing:34.860672pt;}
.ws6_c02220{word-spacing:35.468928pt;}
.ws8_c02220{word-spacing:37.357056pt;}
._6_c02220{margin-left:-2.728704pt;}
._0_c02220{margin-left:-1.731840pt;}
._2_c02220{width:1.170048pt;}
._a_c02220{width:2.255616pt;}
._4_c02220{width:4.177536pt;}
._c_c02220{width:13.728000pt;}
._b_c02220{width:15.417600pt;}
._8_c02220{width:16.638336pt;}
._5_c02220{width:18.712320pt;}
._7_c02220{width:20.798976pt;}
._9_c02220{width:23.337600pt;}
._d_c02220{width:35.426688pt;}
._e_c02220{width:39.583104pt;}
._f_c02220{width:40.816512pt;}
._1_c02220{width:44.668800pt;}
._3_c02220{width:46.396416pt;}
.fs0_c02220{font-size:42.240000pt;}
.fs1_c02220{font-size:53.760000pt;}
.y0_c02220{bottom:0.000000pt;}
.y1e_c02220{bottom:130.665211pt;}
.y20_c02220{bottom:165.866875pt;}
.y1f_c02220{bottom:174.507067pt;}
.y1d_c02220{bottom:245.225371pt;}
.y1c_c02220{bottom:303.785851pt;}
.y1b_c02220{bottom:317.225563pt;}
.y19_c02220{bottom:361.386427pt;}
.y15_c02220{bottom:377.386939pt;}
.y1a_c02220{bottom:407.786011pt;}
.y18_c02220{bottom:437.226235pt;}
.y17_c02220{bottom:453.226747pt;}
.y14_c02220{bottom:482.666971pt;}
.y16_c02220{bottom:497.386555pt;}
.y13_c02220{bottom:513.387067pt;}
.y21_c02220{bottom:546.027067pt;}
.yf_c02220{bottom:566.506811pt;}
.ye_c02220{bottom:579.946523pt;}
.yd_c02220{bottom:593.386235pt;}
.y11_c02220{bottom:628.586875pt;}
.y10_c02220{bottom:637.227067pt;}
.yc_c02220{bottom:694.506683pt;}
.yb_c02220{bottom:707.946395pt;}
.ya_c02220{bottom:766.505819pt;}
.y9_c02220{bottom:779.945531pt;}
.y7_c02220{bottom:823.786427pt;}
.y3_c02220{bottom:839.786939pt;}
.y8_c02220{bottom:870.505979pt;}
.y6_c02220{bottom:899.946203pt;}
.y5_c02220{bottom:915.946715pt;}
.y2_c02220{bottom:945.386939pt;}
.y4_c02220{bottom:959.786555pt;}
.y1_c02220{bottom:975.787067pt;}
.y12_c02220{bottom:1008.747067pt;}
.h3_c02220{height:28.916250pt;}
.h1_c02220{height:37.063125pt;}
.h2_c02220{height:37.166250pt;}
.h4_c02220{height:48.581988pt;}
.h0_c02220{height:1122.666667pt;}
.w1_c02220{width:793.333333pt;}
.w0_c02220{width:793.626667pt;}
.x0_c02220{left:0.000000pt;}
.xe_c02220{left:104.000000pt;}
.x8_c02220{left:391.999872pt;}
.x4_c02220{left:396.160512pt;}
.xc_c02220{left:400.960000pt;}
.x7_c02220{left:404.799648pt;}
.x5_c02220{left:410.560128pt;}
.x1_c02220{left:411.840000pt;}
.xb_c02220{left:429.760320pt;}
.x9_c02220{left:437.439552pt;}
.x6_c02220{left:438.400512pt;}
.xd_c02220{left:450.560320pt;}
.x3_c02220{left:455.039904pt;}
.x2_c02220{left:468.159648pt;}
.xa_c02220{left:506.560032pt;}
}





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

.ir_c02221:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02221{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02221;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02221{font-family:ff1_c02221;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02221;src:url('chunks/assets/font_a110909eb6881b084533a5fb.woff2')format("woff");}.ff2_c02221{font-family:ff2_c02221;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02221;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02221{font-family:ff3_c02221;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02221{vertical-align:0.000000px;}
.v1_c02221{vertical-align:1.439424px;}
.ls8_c02221{letter-spacing:-0.574992px;}
.ls10_c02221{letter-spacing:-0.275616px;}
.lse_c02221{letter-spacing:-0.261360px;}
.ls6_c02221{letter-spacing:-0.242352px;}
.ls3_c02221{letter-spacing:-0.118800px;}
.ls13_c02221{letter-spacing:0.000000px;}
.ls0_c02221{letter-spacing:0.006048px;}
.lsc_c02221{letter-spacing:0.038016px;}
.lsd_c02221{letter-spacing:0.042768px;}
.ls5_c02221{letter-spacing:0.128304px;}
.lsb_c02221{letter-spacing:0.508464px;}
.ls12_c02221{letter-spacing:0.514080px;}
.lsf_c02221{letter-spacing:0.536976px;}
.lsa_c02221{letter-spacing:0.579744px;}
.ls11_c02221{letter-spacing:0.594000px;}
.ls7_c02221{letter-spacing:0.598752px;}
.ls1_c02221{letter-spacing:0.613008px;}
.ls9_c02221{letter-spacing:0.655776px;}
.ls4_c02221{letter-spacing:0.717552px;}
.ls2_c02221{letter-spacing:0.722304px;}
.sc__c02221{text-shadow:none;}
.sc0_c02221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02221{-webkit-text-stroke:0px transparent;}
.sc0_c02221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02221{word-spacing:-15.126048px;}
.wsb_c02221{word-spacing:-12.474000px;}
.wse_c02221{word-spacing:-12.459744px;}
.wsa_c02221{word-spacing:-12.416976px;}
.ws4_c02221{word-spacing:-11.637648px;}
.ws17_c02221{word-spacing:-2.159136px;}
.ws14_c02221{word-spacing:-1.083456px;}
.ws12_c02221{word-spacing:-1.016928px;}
.wsf_c02221{word-spacing:-0.974160px;}
.ws13_c02221{word-spacing:-0.399168px;}
.ws11_c02221{word-spacing:-0.118800px;}
.ws15_c02221{word-spacing:-0.099792px;}
.ws16_c02221{word-spacing:-0.085536px;}
.ws10_c02221{word-spacing:0.000000px;}
.ws2_c02221{word-spacing:1.330560px;}
.ws9_c02221{word-spacing:3.155328px;}
.wsc_c02221{word-spacing:33.300288px;}
.ws8_c02221{word-spacing:36.143712px;}
.ws6_c02221{word-spacing:36.742464px;}
.ws1_c02221{word-spacing:37.759392px;}
.ws0_c02221{word-spacing:38.020752px;}
.ws3_c02221{word-spacing:39.218256px;}
.ws5_c02221{word-spacing:39.902544px;}
.ws7_c02221{word-spacing:42.026688px;}
._0_c02221{margin-left:-1.948320px;}
._2_c02221{width:1.482624px;}
._4_c02221{width:4.785264px;}
._9_c02221{width:14.148864px;}
._5_c02221{width:17.444592px;}
._6_c02221{width:19.416672px;}
._7_c02221{width:21.122640px;}
._8_c02221{width:22.676544px;}
._1_c02221{width:50.252400px;}
._3_c02221{width:51.530688px;}
.fc0_c02221{color:rgb(0,0,0);}
.fs0_c02221{font-size:47.520000px;}
.fs1_c02221{font-size:60.480000px;}
.y0_c02221{bottom:0.000000px;}
.y1a_c02221{bottom:146.998362px;}
.y1c_c02221{bottom:186.600234px;}
.y1b_c02221{bottom:196.320450px;}
.y19_c02221{bottom:275.878542px;}
.y18_c02221{bottom:356.878758px;}
.y16_c02221{bottom:406.559730px;}
.y12_c02221{bottom:424.560306px;}
.y17_c02221{bottom:458.759262px;}
.y15_c02221{bottom:491.879514px;}
.y14_c02221{bottom:509.880090px;}
.y11_c02221{bottom:543.000342px;}
.y13_c02221{bottom:559.559874px;}
.y10_c02221{bottom:577.560450px;}
.y1d_c02221{bottom:614.280450px;}
.yc_c02221{bottom:667.559514px;}
.ye_c02221{bottom:707.160234px;}
.yd_c02221{bottom:716.880450px;}
.yb_c02221{bottom:796.439694px;}
.ya_c02221{bottom:862.319046px;}
.y9_c02221{bottom:877.438722px;}
.y7_c02221{bottom:926.759730px;}
.y3_c02221{bottom:944.760306px;}
.y8_c02221{bottom:979.319226px;}
.y6_c02221{bottom:1012.439478px;}
.y5_c02221{bottom:1030.440054px;}
.y2_c02221{bottom:1063.560306px;}
.y4_c02221{bottom:1079.759874px;}
.y1_c02221{bottom:1097.760450px;}
.yf_c02221{bottom:1134.840450px;}
.h3_c02221{height:32.530781px;}
.h1_c02221{height:41.696016px;}
.h2_c02221{height:41.812031px;}
.h4_c02221{height:54.654737px;}
.h0_c02221{height:1263.000000px;}
.w1_c02221{width:892.500000px;}
.w0_c02221{width:892.830000px;}
.x0_c02221{left:0.000000px;}
.xe_c02221{left:117.000000px;}
.x8_c02221{left:440.999856px;}
.x4_c02221{left:445.680576px;}
.xc_c02221{left:451.080000px;}
.x7_c02221{left:455.399604px;}
.x5_c02221{left:461.880144px;}
.x1_c02221{left:463.320000px;}
.xb_c02221{left:483.480360px;}
.x9_c02221{left:492.119496px;}
.x6_c02221{left:493.200576px;}
.xd_c02221{left:506.880360px;}
.x3_c02221{left:511.919892px;}
.x2_c02221{left:526.679604px;}
.xa_c02221{left:569.880036px;}
@media print{
.v0_c02221{vertical-align:0.000000pt;}
.v1_c02221{vertical-align:1.279488pt;}
.ls8_c02221{letter-spacing:-0.511104pt;}
.ls10_c02221{letter-spacing:-0.244992pt;}
.lse_c02221{letter-spacing:-0.232320pt;}
.ls6_c02221{letter-spacing:-0.215424pt;}
.ls3_c02221{letter-spacing:-0.105600pt;}
.ls13_c02221{letter-spacing:0.000000pt;}
.ls0_c02221{letter-spacing:0.005376pt;}
.lsc_c02221{letter-spacing:0.033792pt;}
.lsd_c02221{letter-spacing:0.038016pt;}
.ls5_c02221{letter-spacing:0.114048pt;}
.lsb_c02221{letter-spacing:0.451968pt;}
.ls12_c02221{letter-spacing:0.456960pt;}
.lsf_c02221{letter-spacing:0.477312pt;}
.lsa_c02221{letter-spacing:0.515328pt;}
.ls11_c02221{letter-spacing:0.528000pt;}
.ls7_c02221{letter-spacing:0.532224pt;}
.ls1_c02221{letter-spacing:0.544896pt;}
.ls9_c02221{letter-spacing:0.582912pt;}
.ls4_c02221{letter-spacing:0.637824pt;}
.ls2_c02221{letter-spacing:0.642048pt;}
.wsd_c02221{word-spacing:-13.445376pt;}
.wsb_c02221{word-spacing:-11.088000pt;}
.wse_c02221{word-spacing:-11.075328pt;}
.wsa_c02221{word-spacing:-11.037312pt;}
.ws4_c02221{word-spacing:-10.344576pt;}
.ws17_c02221{word-spacing:-1.919232pt;}
.ws14_c02221{word-spacing:-0.963072pt;}
.ws12_c02221{word-spacing:-0.903936pt;}
.wsf_c02221{word-spacing:-0.865920pt;}
.ws13_c02221{word-spacing:-0.354816pt;}
.ws11_c02221{word-spacing:-0.105600pt;}
.ws15_c02221{word-spacing:-0.088704pt;}
.ws16_c02221{word-spacing:-0.076032pt;}
.ws10_c02221{word-spacing:0.000000pt;}
.ws2_c02221{word-spacing:1.182720pt;}
.ws9_c02221{word-spacing:2.804736pt;}
.wsc_c02221{word-spacing:29.600256pt;}
.ws8_c02221{word-spacing:32.127744pt;}
.ws6_c02221{word-spacing:32.659968pt;}
.ws1_c02221{word-spacing:33.563904pt;}
.ws0_c02221{word-spacing:33.796224pt;}
.ws3_c02221{word-spacing:34.860672pt;}
.ws5_c02221{word-spacing:35.468928pt;}
.ws7_c02221{word-spacing:37.357056pt;}
._0_c02221{margin-left:-1.731840pt;}
._2_c02221{width:1.317888pt;}
._4_c02221{width:4.253568pt;}
._9_c02221{width:12.576768pt;}
._5_c02221{width:15.506304pt;}
._6_c02221{width:17.259264pt;}
._7_c02221{width:18.775680pt;}
._8_c02221{width:20.156928pt;}
._1_c02221{width:44.668800pt;}
._3_c02221{width:45.805056pt;}
.fs0_c02221{font-size:42.240000pt;}
.fs1_c02221{font-size:53.760000pt;}
.y0_c02221{bottom:0.000000pt;}
.y1a_c02221{bottom:130.665211pt;}
.y1c_c02221{bottom:165.866875pt;}
.y1b_c02221{bottom:174.507067pt;}
.y19_c02221{bottom:245.225371pt;}
.y18_c02221{bottom:317.225563pt;}
.y16_c02221{bottom:361.386427pt;}
.y12_c02221{bottom:377.386939pt;}
.y17_c02221{bottom:407.786011pt;}
.y15_c02221{bottom:437.226235pt;}
.y14_c02221{bottom:453.226747pt;}
.y11_c02221{bottom:482.666971pt;}
.y13_c02221{bottom:497.386555pt;}
.y10_c02221{bottom:513.387067pt;}
.y1d_c02221{bottom:546.027067pt;}
.yc_c02221{bottom:593.386235pt;}
.ye_c02221{bottom:628.586875pt;}
.yd_c02221{bottom:637.227067pt;}
.yb_c02221{bottom:707.946395pt;}
.ya_c02221{bottom:766.505819pt;}
.y9_c02221{bottom:779.945531pt;}
.y7_c02221{bottom:823.786427pt;}
.y3_c02221{bottom:839.786939pt;}
.y8_c02221{bottom:870.505979pt;}
.y6_c02221{bottom:899.946203pt;}
.y5_c02221{bottom:915.946715pt;}
.y2_c02221{bottom:945.386939pt;}
.y4_c02221{bottom:959.786555pt;}
.y1_c02221{bottom:975.787067pt;}
.yf_c02221{bottom:1008.747067pt;}
.h3_c02221{height:28.916250pt;}
.h1_c02221{height:37.063125pt;}
.h2_c02221{height:37.166250pt;}
.h4_c02221{height:48.581988pt;}
.h0_c02221{height:1122.666667pt;}
.w1_c02221{width:793.333333pt;}
.w0_c02221{width:793.626667pt;}
.x0_c02221{left:0.000000pt;}
.xe_c02221{left:104.000000pt;}
.x8_c02221{left:391.999872pt;}
.x4_c02221{left:396.160512pt;}
.xc_c02221{left:400.960000pt;}
.x7_c02221{left:404.799648pt;}
.x5_c02221{left:410.560128pt;}
.x1_c02221{left:411.840000pt;}
.xb_c02221{left:429.760320pt;}
.x9_c02221{left:437.439552pt;}
.x6_c02221{left:438.400512pt;}
.xd_c02221{left:450.560320pt;}
.x3_c02221{left:455.039904pt;}
.x2_c02221{left:468.159648pt;}
.xa_c02221{left:506.560032pt;}
}





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

.ir_c02222:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02222{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02222;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02222{font-family:ff1_c02222;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02222;src:url('chunks/assets/font_75448e7612c90cedc2e71c3a.woff2')format("woff");}.ff2_c02222{font-family:ff2_c02222;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02222;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02222{font-family:ff3_c02222;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02222{vertical-align:0.000000px;}
.v1_c02222{vertical-align:1.439424px;}
.ls13_c02222{letter-spacing:-0.613008px;}
.ls9_c02222{letter-spacing:-0.574992px;}
.lsf_c02222{letter-spacing:-0.275616px;}
.lsd_c02222{letter-spacing:-0.261360px;}
.ls7_c02222{letter-spacing:-0.242352px;}
.ls5_c02222{letter-spacing:-0.118800px;}
.ls12_c02222{letter-spacing:0.000000px;}
.ls1_c02222{letter-spacing:0.006048px;}
.lsc_c02222{letter-spacing:0.038016px;}
.ls6_c02222{letter-spacing:0.128304px;}
.lsb_c02222{letter-spacing:0.508464px;}
.ls11_c02222{letter-spacing:0.514080px;}
.lse_c02222{letter-spacing:0.536976px;}
.lsa_c02222{letter-spacing:0.579744px;}
.ls10_c02222{letter-spacing:0.594000px;}
.ls8_c02222{letter-spacing:0.598752px;}
.ls3_c02222{letter-spacing:0.613008px;}
.ls0_c02222{letter-spacing:0.655776px;}
.ls2_c02222{letter-spacing:0.717552px;}
.ls4_c02222{letter-spacing:0.722304px;}
.sc__c02222{text-shadow:none;}
.sc0_c02222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02222{-webkit-text-stroke:0px transparent;}
.sc0_c02222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02222{word-spacing:-15.126048px;}
.wsa_c02222{word-spacing:-12.474000px;}
.ws8_c02222{word-spacing:-12.459744px;}
.ws9_c02222{word-spacing:-12.416976px;}
.ws4_c02222{word-spacing:-11.637648px;}
.wsd_c02222{word-spacing:-11.266992px;}
.ws15_c02222{word-spacing:-2.159136px;}
.ws16_c02222{word-spacing:-1.078704px;}
.ws11_c02222{word-spacing:-1.016928px;}
.wse_c02222{word-spacing:-0.974160px;}
.ws12_c02222{word-spacing:-0.399168px;}
.ws10_c02222{word-spacing:-0.118800px;}
.ws13_c02222{word-spacing:-0.099792px;}
.ws14_c02222{word-spacing:-0.085536px;}
.wsf_c02222{word-spacing:0.000000px;}
.ws2_c02222{word-spacing:1.330560px;}
.wsb_c02222{word-spacing:33.300288px;}
.ws6_c02222{word-spacing:36.742464px;}
.ws1_c02222{word-spacing:37.759392px;}
.ws0_c02222{word-spacing:38.020752px;}
.ws3_c02222{word-spacing:39.218256px;}
.ws5_c02222{word-spacing:39.902544px;}
.ws7_c02222{word-spacing:42.026688px;}
._0_c02222{margin-left:-1.948320px;}
._2_c02222{width:1.482624px;}
._6_c02222{width:3.302640px;}
._4_c02222{width:4.785264px;}
._5_c02222{width:14.148864px;}
._1_c02222{width:50.252400px;}
._3_c02222{width:51.530688px;}
.fc0_c02222{color:rgb(0,0,0);}
.fs0_c02222{font-size:47.520000px;}
.fs1_c02222{font-size:60.480000px;}
.y0_c02222{bottom:0.000000px;}
.y19_c02222{bottom:146.998362px;}
.y1b_c02222{bottom:186.600234px;}
.y1a_c02222{bottom:196.320450px;}
.y18_c02222{bottom:275.878542px;}
.y17_c02222{bottom:356.878758px;}
.y15_c02222{bottom:406.559730px;}
.y11_c02222{bottom:424.560306px;}
.y16_c02222{bottom:458.759262px;}
.y14_c02222{bottom:491.879514px;}
.y13_c02222{bottom:509.880090px;}
.y10_c02222{bottom:543.000342px;}
.y12_c02222{bottom:559.559874px;}
.yf_c02222{bottom:577.560450px;}
.y1c_c02222{bottom:614.280450px;}
.yb_c02222{bottom:667.558326px;}
.yd_c02222{bottom:707.160234px;}
.yc_c02222{bottom:716.880450px;}
.ya_c02222{bottom:796.438506px;}
.y9_c02222{bottom:877.438722px;}
.y7_c02222{bottom:926.759730px;}
.y3_c02222{bottom:944.760306px;}
.y8_c02222{bottom:979.319226px;}
.y6_c02222{bottom:1012.439478px;}
.y5_c02222{bottom:1030.440054px;}
.y2_c02222{bottom:1063.560306px;}
.y4_c02222{bottom:1079.759874px;}
.y1_c02222{bottom:1097.760450px;}
.ye_c02222{bottom:1134.840450px;}
.h3_c02222{height:32.530781px;}
.h1_c02222{height:41.696016px;}
.h2_c02222{height:41.812031px;}
.h4_c02222{height:54.654737px;}
.h0_c02222{height:1263.000000px;}
.w1_c02222{width:892.500000px;}
.w0_c02222{width:892.830000px;}
.x0_c02222{left:0.000000px;}
.xd_c02222{left:117.000000px;}
.x8_c02222{left:440.999856px;}
.x4_c02222{left:445.680576px;}
.xb_c02222{left:451.080000px;}
.x7_c02222{left:455.399604px;}
.x5_c02222{left:461.880144px;}
.x1_c02222{left:463.320000px;}
.xa_c02222{left:483.480360px;}
.x9_c02222{left:492.119496px;}
.x6_c02222{left:493.200576px;}
.xc_c02222{left:506.880360px;}
.x3_c02222{left:511.919892px;}
.x2_c02222{left:526.679604px;}
@media print{
.v0_c02222{vertical-align:0.000000pt;}
.v1_c02222{vertical-align:1.279488pt;}
.ls13_c02222{letter-spacing:-0.544896pt;}
.ls9_c02222{letter-spacing:-0.511104pt;}
.lsf_c02222{letter-spacing:-0.244992pt;}
.lsd_c02222{letter-spacing:-0.232320pt;}
.ls7_c02222{letter-spacing:-0.215424pt;}
.ls5_c02222{letter-spacing:-0.105600pt;}
.ls12_c02222{letter-spacing:0.000000pt;}
.ls1_c02222{letter-spacing:0.005376pt;}
.lsc_c02222{letter-spacing:0.033792pt;}
.ls6_c02222{letter-spacing:0.114048pt;}
.lsb_c02222{letter-spacing:0.451968pt;}
.ls11_c02222{letter-spacing:0.456960pt;}
.lse_c02222{letter-spacing:0.477312pt;}
.lsa_c02222{letter-spacing:0.515328pt;}
.ls10_c02222{letter-spacing:0.528000pt;}
.ls8_c02222{letter-spacing:0.532224pt;}
.ls3_c02222{letter-spacing:0.544896pt;}
.ls0_c02222{letter-spacing:0.582912pt;}
.ls2_c02222{letter-spacing:0.637824pt;}
.ls4_c02222{letter-spacing:0.642048pt;}
.wsc_c02222{word-spacing:-13.445376pt;}
.wsa_c02222{word-spacing:-11.088000pt;}
.ws8_c02222{word-spacing:-11.075328pt;}
.ws9_c02222{word-spacing:-11.037312pt;}
.ws4_c02222{word-spacing:-10.344576pt;}
.wsd_c02222{word-spacing:-10.015104pt;}
.ws15_c02222{word-spacing:-1.919232pt;}
.ws16_c02222{word-spacing:-0.958848pt;}
.ws11_c02222{word-spacing:-0.903936pt;}
.wse_c02222{word-spacing:-0.865920pt;}
.ws12_c02222{word-spacing:-0.354816pt;}
.ws10_c02222{word-spacing:-0.105600pt;}
.ws13_c02222{word-spacing:-0.088704pt;}
.ws14_c02222{word-spacing:-0.076032pt;}
.wsf_c02222{word-spacing:0.000000pt;}
.ws2_c02222{word-spacing:1.182720pt;}
.wsb_c02222{word-spacing:29.600256pt;}
.ws6_c02222{word-spacing:32.659968pt;}
.ws1_c02222{word-spacing:33.563904pt;}
.ws0_c02222{word-spacing:33.796224pt;}
.ws3_c02222{word-spacing:34.860672pt;}
.ws5_c02222{word-spacing:35.468928pt;}
.ws7_c02222{word-spacing:37.357056pt;}
._0_c02222{margin-left:-1.731840pt;}
._2_c02222{width:1.317888pt;}
._6_c02222{width:2.935680pt;}
._4_c02222{width:4.253568pt;}
._5_c02222{width:12.576768pt;}
._1_c02222{width:44.668800pt;}
._3_c02222{width:45.805056pt;}
.fs0_c02222{font-size:42.240000pt;}
.fs1_c02222{font-size:53.760000pt;}
.y0_c02222{bottom:0.000000pt;}
.y19_c02222{bottom:130.665211pt;}
.y1b_c02222{bottom:165.866875pt;}
.y1a_c02222{bottom:174.507067pt;}
.y18_c02222{bottom:245.225371pt;}
.y17_c02222{bottom:317.225563pt;}
.y15_c02222{bottom:361.386427pt;}
.y11_c02222{bottom:377.386939pt;}
.y16_c02222{bottom:407.786011pt;}
.y14_c02222{bottom:437.226235pt;}
.y13_c02222{bottom:453.226747pt;}
.y10_c02222{bottom:482.666971pt;}
.y12_c02222{bottom:497.386555pt;}
.yf_c02222{bottom:513.387067pt;}
.y1c_c02222{bottom:546.027067pt;}
.yb_c02222{bottom:593.385179pt;}
.yd_c02222{bottom:628.586875pt;}
.yc_c02222{bottom:637.227067pt;}
.ya_c02222{bottom:707.945339pt;}
.y9_c02222{bottom:779.945531pt;}
.y7_c02222{bottom:823.786427pt;}
.y3_c02222{bottom:839.786939pt;}
.y8_c02222{bottom:870.505979pt;}
.y6_c02222{bottom:899.946203pt;}
.y5_c02222{bottom:915.946715pt;}
.y2_c02222{bottom:945.386939pt;}
.y4_c02222{bottom:959.786555pt;}
.y1_c02222{bottom:975.787067pt;}
.ye_c02222{bottom:1008.747067pt;}
.h3_c02222{height:28.916250pt;}
.h1_c02222{height:37.063125pt;}
.h2_c02222{height:37.166250pt;}
.h4_c02222{height:48.581988pt;}
.h0_c02222{height:1122.666667pt;}
.w1_c02222{width:793.333333pt;}
.w0_c02222{width:793.626667pt;}
.x0_c02222{left:0.000000pt;}
.xd_c02222{left:104.000000pt;}
.x8_c02222{left:391.999872pt;}
.x4_c02222{left:396.160512pt;}
.xb_c02222{left:400.960000pt;}
.x7_c02222{left:404.799648pt;}
.x5_c02222{left:410.560128pt;}
.x1_c02222{left:411.840000pt;}
.xa_c02222{left:429.760320pt;}
.x9_c02222{left:437.439552pt;}
.x6_c02222{left:438.400512pt;}
.xc_c02222{left:450.560320pt;}
.x3_c02222{left:455.039904pt;}
.x2_c02222{left:468.159648pt;}
}





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

.ir_c02223:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02223{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02223;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02223{font-family:ff1_c02223;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02223;src:url('chunks/assets/font_34fa35021c527618e52c5cd5.woff2')format("woff");}.ff2_c02223{font-family:ff2_c02223;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02223;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02223{font-family:ff3_c02223;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02223{vertical-align:0.000000px;}
.v1_c02223{vertical-align:1.439424px;}
.ls17_c02223{letter-spacing:-0.850608px;}
.ls18_c02223{letter-spacing:-0.765072px;}
.ls9_c02223{letter-spacing:-0.574992px;}
.lsa_c02223{letter-spacing:-0.323136px;}
.ls11_c02223{letter-spacing:-0.275616px;}
.ls8_c02223{letter-spacing:-0.266112px;}
.lsf_c02223{letter-spacing:-0.261360px;}
.ls6_c02223{letter-spacing:-0.242352px;}
.ls3_c02223{letter-spacing:-0.118800px;}
.ls16_c02223{letter-spacing:-0.104544px;}
.ls14_c02223{letter-spacing:0.000000px;}
.ls0_c02223{letter-spacing:0.006048px;}
.ls15_c02223{letter-spacing:0.014256px;}
.lsd_c02223{letter-spacing:0.038016px;}
.ls5_c02223{letter-spacing:0.128304px;}
.lsc_c02223{letter-spacing:0.508464px;}
.ls13_c02223{letter-spacing:0.514080px;}
.ls10_c02223{letter-spacing:0.536976px;}
.lsb_c02223{letter-spacing:0.579744px;}
.ls12_c02223{letter-spacing:0.594000px;}
.ls7_c02223{letter-spacing:0.598752px;}
.ls2_c02223{letter-spacing:0.613008px;}
.lse_c02223{letter-spacing:0.651024px;}
.ls4_c02223{letter-spacing:0.717552px;}
.ls1_c02223{letter-spacing:0.722304px;}
.sc__c02223{text-shadow:none;}
.sc0_c02223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02223{-webkit-text-stroke:0px transparent;}
.sc0_c02223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02223{word-spacing:-15.126048px;}
.wsa_c02223{word-spacing:-12.474000px;}
.ws10_c02223{word-spacing:-12.459744px;}
.ws9_c02223{word-spacing:-12.416976px;}
.wsd_c02223{word-spacing:-11.637648px;}
.ws1e_c02223{word-spacing:-2.159136px;}
.ws1b_c02223{word-spacing:-1.083456px;}
.ws15_c02223{word-spacing:-0.974160px;}
.ws1a_c02223{word-spacing:-0.399168px;}
.ws1f_c02223{word-spacing:-0.256608px;}
.ws17_c02223{word-spacing:-0.118800px;}
.ws1c_c02223{word-spacing:-0.099792px;}
.ws18_c02223{word-spacing:-0.095040px;}
.ws1d_c02223{word-spacing:-0.085536px;}
.ws19_c02223{word-spacing:-0.038016px;}
.ws16_c02223{word-spacing:0.000000px;}
.ws20_c02223{word-spacing:0.403920px;}
.ws2_c02223{word-spacing:1.330560px;}
.ws11_c02223{word-spacing:3.597264px;}
.ws14_c02223{word-spacing:4.951584px;}
.wse_c02223{word-spacing:6.092064px;}
.ws13_c02223{word-spacing:10.487664px;}
.ws8_c02223{word-spacing:29.086992px;}
.wsf_c02223{word-spacing:31.562784px;}
.wsb_c02223{word-spacing:33.300288px;}
.ws12_c02223{word-spacing:34.836912px;}
.ws7_c02223{word-spacing:36.143712px;}
.ws5_c02223{word-spacing:36.742464px;}
.ws1_c02223{word-spacing:37.759392px;}
.ws0_c02223{word-spacing:38.020752px;}
.ws3_c02223{word-spacing:39.218256px;}
.ws4_c02223{word-spacing:39.902544px;}
.ws6_c02223{word-spacing:42.026688px;}
._0_c02223{margin-left:-1.948320px;}
._2_c02223{width:1.482624px;}
._4_c02223{width:4.999104px;}
._8_c02223{width:14.148864px;}
._a_c02223{width:15.914448px;}
._9_c02223{width:19.050768px;}
._f_c02223{width:20.072448px;}
._c_c02223{width:22.524480px;}
._e_c02223{width:24.121152px;}
._d_c02223{width:27.400032px;}
._6_c02223{width:39.427344px;}
._5_c02223{width:43.428528px;}
._7_c02223{width:45.224784px;}
._b_c02223{width:46.322496px;}
._1_c02223{width:50.252400px;}
._3_c02223{width:51.530688px;}
.fc0_c02223{color:rgb(0,0,0);}
.fs0_c02223{font-size:47.520000px;}
.fs1_c02223{font-size:60.480000px;}
.y0_c02223{bottom:0.000000px;}
.y1f_c02223{bottom:116.760198px;}
.y1e_c02223{bottom:131.879874px;}
.y1d_c02223{bottom:146.999550px;}
.y21_c02223{bottom:186.600234px;}
.y20_c02223{bottom:196.320450px;}
.y1c_c02223{bottom:260.760054px;}
.y1b_c02223{bottom:275.879730px;}
.y1a_c02223{bottom:356.879946px;}
.y18_c02223{bottom:376.320378px;}
.y17_c02223{bottom:391.440054px;}
.y16_c02223{bottom:406.559730px;}
.y12_c02223{bottom:424.560306px;}
.y19_c02223{bottom:458.760450px;}
.y15_c02223{bottom:491.879514px;}
.y14_c02223{bottom:509.880090px;}
.y11_c02223{bottom:543.000342px;}
.y13_c02223{bottom:559.559874px;}
.y10_c02223{bottom:577.560450px;}
.y22_c02223{bottom:614.280450px;}
.yc_c02223{bottom:667.559514px;}
.ye_c02223{bottom:707.160234px;}
.yd_c02223{bottom:716.880450px;}
.yb_c02223{bottom:796.439694px;}
.ya_c02223{bottom:862.319046px;}
.y9_c02223{bottom:877.438722px;}
.y7_c02223{bottom:926.759730px;}
.y3_c02223{bottom:944.760306px;}
.y8_c02223{bottom:979.319226px;}
.y6_c02223{bottom:1012.439478px;}
.y5_c02223{bottom:1030.440054px;}
.y2_c02223{bottom:1063.560306px;}
.y4_c02223{bottom:1079.759874px;}
.y1_c02223{bottom:1097.760450px;}
.yf_c02223{bottom:1134.840450px;}
.h3_c02223{height:32.530781px;}
.h1_c02223{height:41.696016px;}
.h2_c02223{height:41.812031px;}
.h4_c02223{height:54.654737px;}
.h0_c02223{height:1263.000000px;}
.w1_c02223{width:892.500000px;}
.w0_c02223{width:892.830000px;}
.x0_c02223{left:0.000000px;}
.xe_c02223{left:117.000000px;}
.x8_c02223{left:440.999856px;}
.x4_c02223{left:445.680576px;}
.xc_c02223{left:451.080000px;}
.x7_c02223{left:455.399604px;}
.x5_c02223{left:461.880144px;}
.x1_c02223{left:463.320000px;}
.xb_c02223{left:483.480360px;}
.x9_c02223{left:492.119496px;}
.x6_c02223{left:493.200576px;}
.xd_c02223{left:506.880360px;}
.x3_c02223{left:511.919892px;}
.x2_c02223{left:526.679604px;}
.xa_c02223{left:569.880036px;}
@media print{
.v0_c02223{vertical-align:0.000000pt;}
.v1_c02223{vertical-align:1.279488pt;}
.ls17_c02223{letter-spacing:-0.756096pt;}
.ls18_c02223{letter-spacing:-0.680064pt;}
.ls9_c02223{letter-spacing:-0.511104pt;}
.lsa_c02223{letter-spacing:-0.287232pt;}
.ls11_c02223{letter-spacing:-0.244992pt;}
.ls8_c02223{letter-spacing:-0.236544pt;}
.lsf_c02223{letter-spacing:-0.232320pt;}
.ls6_c02223{letter-spacing:-0.215424pt;}
.ls3_c02223{letter-spacing:-0.105600pt;}
.ls16_c02223{letter-spacing:-0.092928pt;}
.ls14_c02223{letter-spacing:0.000000pt;}
.ls0_c02223{letter-spacing:0.005376pt;}
.ls15_c02223{letter-spacing:0.012672pt;}
.lsd_c02223{letter-spacing:0.033792pt;}
.ls5_c02223{letter-spacing:0.114048pt;}
.lsc_c02223{letter-spacing:0.451968pt;}
.ls13_c02223{letter-spacing:0.456960pt;}
.ls10_c02223{letter-spacing:0.477312pt;}
.lsb_c02223{letter-spacing:0.515328pt;}
.ls12_c02223{letter-spacing:0.528000pt;}
.ls7_c02223{letter-spacing:0.532224pt;}
.ls2_c02223{letter-spacing:0.544896pt;}
.lse_c02223{letter-spacing:0.578688pt;}
.ls4_c02223{letter-spacing:0.637824pt;}
.ls1_c02223{letter-spacing:0.642048pt;}
.wsc_c02223{word-spacing:-13.445376pt;}
.wsa_c02223{word-spacing:-11.088000pt;}
.ws10_c02223{word-spacing:-11.075328pt;}
.ws9_c02223{word-spacing:-11.037312pt;}
.wsd_c02223{word-spacing:-10.344576pt;}
.ws1e_c02223{word-spacing:-1.919232pt;}
.ws1b_c02223{word-spacing:-0.963072pt;}
.ws15_c02223{word-spacing:-0.865920pt;}
.ws1a_c02223{word-spacing:-0.354816pt;}
.ws1f_c02223{word-spacing:-0.228096pt;}
.ws17_c02223{word-spacing:-0.105600pt;}
.ws1c_c02223{word-spacing:-0.088704pt;}
.ws18_c02223{word-spacing:-0.084480pt;}
.ws1d_c02223{word-spacing:-0.076032pt;}
.ws19_c02223{word-spacing:-0.033792pt;}
.ws16_c02223{word-spacing:0.000000pt;}
.ws20_c02223{word-spacing:0.359040pt;}
.ws2_c02223{word-spacing:1.182720pt;}
.ws11_c02223{word-spacing:3.197568pt;}
.ws14_c02223{word-spacing:4.401408pt;}
.wse_c02223{word-spacing:5.415168pt;}
.ws13_c02223{word-spacing:9.322368pt;}
.ws8_c02223{word-spacing:25.855104pt;}
.wsf_c02223{word-spacing:28.055808pt;}
.wsb_c02223{word-spacing:29.600256pt;}
.ws12_c02223{word-spacing:30.966144pt;}
.ws7_c02223{word-spacing:32.127744pt;}
.ws5_c02223{word-spacing:32.659968pt;}
.ws1_c02223{word-spacing:33.563904pt;}
.ws0_c02223{word-spacing:33.796224pt;}
.ws3_c02223{word-spacing:34.860672pt;}
.ws4_c02223{word-spacing:35.468928pt;}
.ws6_c02223{word-spacing:37.357056pt;}
._0_c02223{margin-left:-1.731840pt;}
._2_c02223{width:1.317888pt;}
._4_c02223{width:4.443648pt;}
._8_c02223{width:12.576768pt;}
._a_c02223{width:14.146176pt;}
._9_c02223{width:16.934016pt;}
._f_c02223{width:17.842176pt;}
._c_c02223{width:20.021760pt;}
._e_c02223{width:21.441024pt;}
._d_c02223{width:24.355584pt;}
._6_c02223{width:35.046528pt;}
._5_c02223{width:38.603136pt;}
._7_c02223{width:40.199808pt;}
._b_c02223{width:41.175552pt;}
._1_c02223{width:44.668800pt;}
._3_c02223{width:45.805056pt;}
.fs0_c02223{font-size:42.240000pt;}
.fs1_c02223{font-size:53.760000pt;}
.y0_c02223{bottom:0.000000pt;}
.y1f_c02223{bottom:103.786843pt;}
.y1e_c02223{bottom:117.226555pt;}
.y1d_c02223{bottom:130.666267pt;}
.y21_c02223{bottom:165.866875pt;}
.y20_c02223{bottom:174.507067pt;}
.y1c_c02223{bottom:231.786715pt;}
.y1b_c02223{bottom:245.226427pt;}
.y1a_c02223{bottom:317.226619pt;}
.y18_c02223{bottom:334.507003pt;}
.y17_c02223{bottom:347.946715pt;}
.y16_c02223{bottom:361.386427pt;}
.y12_c02223{bottom:377.386939pt;}
.y19_c02223{bottom:407.787067pt;}
.y15_c02223{bottom:437.226235pt;}
.y14_c02223{bottom:453.226747pt;}
.y11_c02223{bottom:482.666971pt;}
.y13_c02223{bottom:497.386555pt;}
.y10_c02223{bottom:513.387067pt;}
.y22_c02223{bottom:546.027067pt;}
.yc_c02223{bottom:593.386235pt;}
.ye_c02223{bottom:628.586875pt;}
.yd_c02223{bottom:637.227067pt;}
.yb_c02223{bottom:707.946395pt;}
.ya_c02223{bottom:766.505819pt;}
.y9_c02223{bottom:779.945531pt;}
.y7_c02223{bottom:823.786427pt;}
.y3_c02223{bottom:839.786939pt;}
.y8_c02223{bottom:870.505979pt;}
.y6_c02223{bottom:899.946203pt;}
.y5_c02223{bottom:915.946715pt;}
.y2_c02223{bottom:945.386939pt;}
.y4_c02223{bottom:959.786555pt;}
.y1_c02223{bottom:975.787067pt;}
.yf_c02223{bottom:1008.747067pt;}
.h3_c02223{height:28.916250pt;}
.h1_c02223{height:37.063125pt;}
.h2_c02223{height:37.166250pt;}
.h4_c02223{height:48.581988pt;}
.h0_c02223{height:1122.666667pt;}
.w1_c02223{width:793.333333pt;}
.w0_c02223{width:793.626667pt;}
.x0_c02223{left:0.000000pt;}
.xe_c02223{left:104.000000pt;}
.x8_c02223{left:391.999872pt;}
.x4_c02223{left:396.160512pt;}
.xc_c02223{left:400.960000pt;}
.x7_c02223{left:404.799648pt;}
.x5_c02223{left:410.560128pt;}
.x1_c02223{left:411.840000pt;}
.xb_c02223{left:429.760320pt;}
.x9_c02223{left:437.439552pt;}
.x6_c02223{left:438.400512pt;}
.xd_c02223{left:450.560320pt;}
.x3_c02223{left:455.039904pt;}
.x2_c02223{left:468.159648pt;}
.xa_c02223{left:506.560032pt;}
}





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

.ir_c02224:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02224{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02224;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02224{font-family:ff1_c02224;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02224;src:url('chunks/assets/font_0385e9124639161812014b6a.woff2')format("woff");}.ff2_c02224{font-family:ff2_c02224;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02224;src:url('chunks/assets/font_c4c8700d7179189d56733fce.woff2')format("woff");}.ff3_c02224{font-family:ff3_c02224;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02224{vertical-align:0.000000px;}
.v1_c02224{vertical-align:1.439424px;}
.ls14_c02224{letter-spacing:-0.774576px;}
.ls16_c02224{letter-spacing:-0.736560px;}
.ls8_c02224{letter-spacing:-0.574992px;}
.ls9_c02224{letter-spacing:-0.323136px;}
.lsf_c02224{letter-spacing:-0.275616px;}
.ls17_c02224{letter-spacing:-0.270864px;}
.ls13_c02224{letter-spacing:-0.266112px;}
.lsd_c02224{letter-spacing:-0.261360px;}
.ls6_c02224{letter-spacing:-0.242352px;}
.ls3_c02224{letter-spacing:-0.118800px;}
.ls12_c02224{letter-spacing:0.000000px;}
.ls0_c02224{letter-spacing:0.006048px;}
.lsc_c02224{letter-spacing:0.038016px;}
.ls5_c02224{letter-spacing:0.128304px;}
.lsb_c02224{letter-spacing:0.508464px;}
.ls11_c02224{letter-spacing:0.514080px;}
.lse_c02224{letter-spacing:0.536976px;}
.lsa_c02224{letter-spacing:0.579744px;}
.ls10_c02224{letter-spacing:0.594000px;}
.ls7_c02224{letter-spacing:0.598752px;}
.ls1_c02224{letter-spacing:0.613008px;}
.ls15_c02224{letter-spacing:0.651024px;}
.ls4_c02224{letter-spacing:0.717552px;}
.ls2_c02224{letter-spacing:0.722304px;}
.sc__c02224{text-shadow:none;}
.sc0_c02224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02224{-webkit-text-stroke:0px transparent;}
.sc0_c02224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02224{word-spacing:-15.126048px;}
.wsa_c02224{word-spacing:-12.474000px;}
.ws8_c02224{word-spacing:-12.459744px;}
.ws9_c02224{word-spacing:-12.416976px;}
.ws4_c02224{word-spacing:-11.637648px;}
.wsd_c02224{word-spacing:-11.105424px;}
.ws19_c02224{word-spacing:-2.159136px;}
.ws1b_c02224{word-spacing:-1.083456px;}
.ws12_c02224{word-spacing:-0.974160px;}
.ws16_c02224{word-spacing:-0.399168px;}
.ws14_c02224{word-spacing:-0.118800px;}
.ws17_c02224{word-spacing:-0.099792px;}
.ws1a_c02224{word-spacing:-0.095040px;}
.ws1c_c02224{word-spacing:-0.090288px;}
.ws18_c02224{word-spacing:-0.085536px;}
.ws15_c02224{word-spacing:-0.038016px;}
.ws13_c02224{word-spacing:0.000000px;}
.ws2_c02224{word-spacing:1.330560px;}
.ws11_c02224{word-spacing:6.629040px;}
.wsf_c02224{word-spacing:29.086992px;}
.wsb_c02224{word-spacing:33.300288px;}
.ws10_c02224{word-spacing:34.836912px;}
.wse_c02224{word-spacing:36.143712px;}
.ws6_c02224{word-spacing:36.742464px;}
.ws1_c02224{word-spacing:37.759392px;}
.ws0_c02224{word-spacing:38.020752px;}
.ws3_c02224{word-spacing:39.218256px;}
.ws5_c02224{word-spacing:39.902544px;}
.ws7_c02224{word-spacing:42.026688px;}
._0_c02224{margin-left:-1.948320px;}
._2_c02224{width:1.482624px;}
._4_c02224{width:4.785264px;}
._5_c02224{width:14.148864px;}
._a_c02224{width:19.982160px;}
._b_c02224{width:23.451120px;}
._9_c02224{width:24.691392px;}
._7_c02224{width:39.427344px;}
._6_c02224{width:43.428528px;}
._8_c02224{width:45.224784px;}
._1_c02224{width:50.252400px;}
._3_c02224{width:51.530688px;}
.fc0_c02224{color:rgb(0,0,0);}
.fs0_c02224{font-size:47.520000px;}
.fs1_c02224{font-size:60.480000px;}
.y0_c02224{bottom:0.000000px;}
.y1b_c02224{bottom:131.878686px;}
.y1a_c02224{bottom:146.998362px;}
.y1d_c02224{bottom:186.600234px;}
.y1c_c02224{bottom:196.320450px;}
.y19_c02224{bottom:275.878542px;}
.y18_c02224{bottom:341.759082px;}
.y17_c02224{bottom:356.878758px;}
.y15_c02224{bottom:406.559730px;}
.y11_c02224{bottom:424.560306px;}
.y16_c02224{bottom:458.759262px;}
.y14_c02224{bottom:491.879514px;}
.y13_c02224{bottom:509.880090px;}
.y10_c02224{bottom:543.000342px;}
.y12_c02224{bottom:559.559874px;}
.yf_c02224{bottom:577.560450px;}
.y1e_c02224{bottom:614.280450px;}
.yb_c02224{bottom:667.558326px;}
.yd_c02224{bottom:707.160234px;}
.yc_c02224{bottom:716.880450px;}
.ya_c02224{bottom:796.438506px;}
.y9_c02224{bottom:877.438722px;}
.y7_c02224{bottom:926.759730px;}
.y3_c02224{bottom:944.760306px;}
.y8_c02224{bottom:979.319226px;}
.y6_c02224{bottom:1012.439478px;}
.y5_c02224{bottom:1030.440054px;}
.y2_c02224{bottom:1063.560306px;}
.y4_c02224{bottom:1079.759874px;}
.y1_c02224{bottom:1097.760450px;}
.ye_c02224{bottom:1134.840450px;}
.h3_c02224{height:32.530781px;}
.h1_c02224{height:41.696016px;}
.h2_c02224{height:41.812031px;}
.h4_c02224{height:54.654737px;}
.h0_c02224{height:1263.000000px;}
.w1_c02224{width:892.500000px;}
.w0_c02224{width:892.830000px;}
.x0_c02224{left:0.000000px;}
.xd_c02224{left:117.000000px;}
.x8_c02224{left:440.999856px;}
.x4_c02224{left:445.680576px;}
.xb_c02224{left:451.080000px;}
.x7_c02224{left:455.399604px;}
.x5_c02224{left:461.880144px;}
.x1_c02224{left:463.320000px;}
.xa_c02224{left:483.480360px;}
.x9_c02224{left:492.119496px;}
.x6_c02224{left:493.200576px;}
.xc_c02224{left:506.880360px;}
.x3_c02224{left:511.919892px;}
.x2_c02224{left:526.679604px;}
.xe_c02224{left:569.880036px;}
@media print{
.v0_c02224{vertical-align:0.000000pt;}
.v1_c02224{vertical-align:1.279488pt;}
.ls14_c02224{letter-spacing:-0.688512pt;}
.ls16_c02224{letter-spacing:-0.654720pt;}
.ls8_c02224{letter-spacing:-0.511104pt;}
.ls9_c02224{letter-spacing:-0.287232pt;}
.lsf_c02224{letter-spacing:-0.244992pt;}
.ls17_c02224{letter-spacing:-0.240768pt;}
.ls13_c02224{letter-spacing:-0.236544pt;}
.lsd_c02224{letter-spacing:-0.232320pt;}
.ls6_c02224{letter-spacing:-0.215424pt;}
.ls3_c02224{letter-spacing:-0.105600pt;}
.ls12_c02224{letter-spacing:0.000000pt;}
.ls0_c02224{letter-spacing:0.005376pt;}
.lsc_c02224{letter-spacing:0.033792pt;}
.ls5_c02224{letter-spacing:0.114048pt;}
.lsb_c02224{letter-spacing:0.451968pt;}
.ls11_c02224{letter-spacing:0.456960pt;}
.lse_c02224{letter-spacing:0.477312pt;}
.lsa_c02224{letter-spacing:0.515328pt;}
.ls10_c02224{letter-spacing:0.528000pt;}
.ls7_c02224{letter-spacing:0.532224pt;}
.ls1_c02224{letter-spacing:0.544896pt;}
.ls15_c02224{letter-spacing:0.578688pt;}
.ls4_c02224{letter-spacing:0.637824pt;}
.ls2_c02224{letter-spacing:0.642048pt;}
.wsc_c02224{word-spacing:-13.445376pt;}
.wsa_c02224{word-spacing:-11.088000pt;}
.ws8_c02224{word-spacing:-11.075328pt;}
.ws9_c02224{word-spacing:-11.037312pt;}
.ws4_c02224{word-spacing:-10.344576pt;}
.wsd_c02224{word-spacing:-9.871488pt;}
.ws19_c02224{word-spacing:-1.919232pt;}
.ws1b_c02224{word-spacing:-0.963072pt;}
.ws12_c02224{word-spacing:-0.865920pt;}
.ws16_c02224{word-spacing:-0.354816pt;}
.ws14_c02224{word-spacing:-0.105600pt;}
.ws17_c02224{word-spacing:-0.088704pt;}
.ws1a_c02224{word-spacing:-0.084480pt;}
.ws1c_c02224{word-spacing:-0.080256pt;}
.ws18_c02224{word-spacing:-0.076032pt;}
.ws15_c02224{word-spacing:-0.033792pt;}
.ws13_c02224{word-spacing:0.000000pt;}
.ws2_c02224{word-spacing:1.182720pt;}
.ws11_c02224{word-spacing:5.892480pt;}
.wsf_c02224{word-spacing:25.855104pt;}
.wsb_c02224{word-spacing:29.600256pt;}
.ws10_c02224{word-spacing:30.966144pt;}
.wse_c02224{word-spacing:32.127744pt;}
.ws6_c02224{word-spacing:32.659968pt;}
.ws1_c02224{word-spacing:33.563904pt;}
.ws0_c02224{word-spacing:33.796224pt;}
.ws3_c02224{word-spacing:34.860672pt;}
.ws5_c02224{word-spacing:35.468928pt;}
.ws7_c02224{word-spacing:37.357056pt;}
._0_c02224{margin-left:-1.731840pt;}
._2_c02224{width:1.317888pt;}
._4_c02224{width:4.253568pt;}
._5_c02224{width:12.576768pt;}
._a_c02224{width:17.761920pt;}
._b_c02224{width:20.845440pt;}
._9_c02224{width:21.947904pt;}
._7_c02224{width:35.046528pt;}
._6_c02224{width:38.603136pt;}
._8_c02224{width:40.199808pt;}
._1_c02224{width:44.668800pt;}
._3_c02224{width:45.805056pt;}
.fs0_c02224{font-size:42.240000pt;}
.fs1_c02224{font-size:53.760000pt;}
.y0_c02224{bottom:0.000000pt;}
.y1b_c02224{bottom:117.225499pt;}
.y1a_c02224{bottom:130.665211pt;}
.y1d_c02224{bottom:165.866875pt;}
.y1c_c02224{bottom:174.507067pt;}
.y19_c02224{bottom:245.225371pt;}
.y18_c02224{bottom:303.785851pt;}
.y17_c02224{bottom:317.225563pt;}
.y15_c02224{bottom:361.386427pt;}
.y11_c02224{bottom:377.386939pt;}
.y16_c02224{bottom:407.786011pt;}
.y14_c02224{bottom:437.226235pt;}
.y13_c02224{bottom:453.226747pt;}
.y10_c02224{bottom:482.666971pt;}
.y12_c02224{bottom:497.386555pt;}
.yf_c02224{bottom:513.387067pt;}
.y1e_c02224{bottom:546.027067pt;}
.yb_c02224{bottom:593.385179pt;}
.yd_c02224{bottom:628.586875pt;}
.yc_c02224{bottom:637.227067pt;}
.ya_c02224{bottom:707.945339pt;}
.y9_c02224{bottom:779.945531pt;}
.y7_c02224{bottom:823.786427pt;}
.y3_c02224{bottom:839.786939pt;}
.y8_c02224{bottom:870.505979pt;}
.y6_c02224{bottom:899.946203pt;}
.y5_c02224{bottom:915.946715pt;}
.y2_c02224{bottom:945.386939pt;}
.y4_c02224{bottom:959.786555pt;}
.y1_c02224{bottom:975.787067pt;}
.ye_c02224{bottom:1008.747067pt;}
.h3_c02224{height:28.916250pt;}
.h1_c02224{height:37.063125pt;}
.h2_c02224{height:37.166250pt;}
.h4_c02224{height:48.581988pt;}
.h0_c02224{height:1122.666667pt;}
.w1_c02224{width:793.333333pt;}
.w0_c02224{width:793.626667pt;}
.x0_c02224{left:0.000000pt;}
.xd_c02224{left:104.000000pt;}
.x8_c02224{left:391.999872pt;}
.x4_c02224{left:396.160512pt;}
.xb_c02224{left:400.960000pt;}
.x7_c02224{left:404.799648pt;}
.x5_c02224{left:410.560128pt;}
.x1_c02224{left:411.840000pt;}
.xa_c02224{left:429.760320pt;}
.x9_c02224{left:437.439552pt;}
.x6_c02224{left:438.400512pt;}
.xc_c02224{left:450.560320pt;}
.x3_c02224{left:455.039904pt;}
.x2_c02224{left:468.159648pt;}
.xe_c02224{left:506.560032pt;}
}





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

.ir_c02225:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02225{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02225;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02225{font-family:ff1_c02225;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02225;src:url('chunks/assets/font_843bac5ac8e55ba8d3bfc68e.woff2')format("woff");}.ff2_c02225{font-family:ff2_c02225;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02225;src:url('chunks/assets/font_9cc92fb875afee145045f370.woff2')format("woff");}.ff3_c02225{font-family:ff3_c02225;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02225{vertical-align:0.000000px;}
.v1_c02225{vertical-align:1.439424px;}
.lsb_c02225{letter-spacing:-0.736560px;}
.lsc_c02225{letter-spacing:-0.608256px;}
.ls8_c02225{letter-spacing:-0.574992px;}
.ls9_c02225{letter-spacing:-0.299376px;}
.ls11_c02225{letter-spacing:-0.275616px;}
.ls16_c02225{letter-spacing:-0.270864px;}
.ls15_c02225{letter-spacing:-0.266112px;}
.lsf_c02225{letter-spacing:-0.261360px;}
.ls6_c02225{letter-spacing:-0.242352px;}
.ls3_c02225{letter-spacing:-0.118800px;}
.ls14_c02225{letter-spacing:0.000000px;}
.ls0_c02225{letter-spacing:0.006048px;}
.lse_c02225{letter-spacing:0.038016px;}
.ls5_c02225{letter-spacing:0.128304px;}
.lsd_c02225{letter-spacing:0.508464px;}
.ls13_c02225{letter-spacing:0.514080px;}
.ls10_c02225{letter-spacing:0.536976px;}
.lsa_c02225{letter-spacing:0.579744px;}
.ls12_c02225{letter-spacing:0.594000px;}
.ls7_c02225{letter-spacing:0.598752px;}
.ls1_c02225{letter-spacing:0.613008px;}
.ls4_c02225{letter-spacing:0.717552px;}
.ls2_c02225{letter-spacing:0.722304px;}
.sc__c02225{text-shadow:none;}
.sc0_c02225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02225{-webkit-text-stroke:0px transparent;}
.sc0_c02225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c02225{word-spacing:-15.126048px;}
.wsd_c02225{word-spacing:-12.474000px;}
.wsb_c02225{word-spacing:-12.459744px;}
.wsc_c02225{word-spacing:-12.416976px;}
.ws4_c02225{word-spacing:-11.637648px;}
.ws10_c02225{word-spacing:-11.305008px;}
.ws9_c02225{word-spacing:-11.271744px;}
.ws1a_c02225{word-spacing:-2.159136px;}
.ws13_c02225{word-spacing:-0.974160px;}
.ws17_c02225{word-spacing:-0.399168px;}
.ws15_c02225{word-spacing:-0.118800px;}
.ws18_c02225{word-spacing:-0.099792px;}
.ws1b_c02225{word-spacing:-0.095040px;}
.ws1c_c02225{word-spacing:-0.090288px;}
.ws19_c02225{word-spacing:-0.085536px;}
.ws16_c02225{word-spacing:-0.061776px;}
.ws14_c02225{word-spacing:0.000000px;}
.ws2_c02225{word-spacing:1.330560px;}
.ws12_c02225{word-spacing:6.629040px;}
.ws8_c02225{word-spacing:17.463600px;}
.wse_c02225{word-spacing:33.300288px;}
.ws7_c02225{word-spacing:34.442496px;}
.ws11_c02225{word-spacing:34.836912px;}
.ws6_c02225{word-spacing:36.742464px;}
.ws1_c02225{word-spacing:37.759392px;}
.ws0_c02225{word-spacing:38.020752px;}
.ws3_c02225{word-spacing:39.218256px;}
.ws5_c02225{word-spacing:39.902544px;}
.wsa_c02225{word-spacing:42.026688px;}
._0_c02225{margin-left:-1.948320px;}
._2_c02225{width:1.482624px;}
._9_c02225{width:4.999104px;}
._4_c02225{width:6.263136px;}
._8_c02225{width:14.148864px;}
._b_c02225{width:19.982160px;}
._c_c02225{width:23.451120px;}
._a_c02225{width:24.691392px;}
._6_c02225{width:26.701488px;}
._7_c02225{width:35.378640px;}
._5_c02225{width:47.192112px;}
._1_c02225{width:50.252400px;}
._3_c02225{width:51.530688px;}
.fc0_c02225{color:rgb(0,0,0);}
.fs0_c02225{font-size:47.520000px;}
.fs1_c02225{font-size:60.480000px;}
.y0_c02225{bottom:0.000000px;}
.y1c_c02225{bottom:131.878686px;}
.y1b_c02225{bottom:146.998362px;}
.y1e_c02225{bottom:186.600234px;}
.y1d_c02225{bottom:196.320450px;}
.y1a_c02225{bottom:275.878542px;}
.y19_c02225{bottom:356.878758px;}
.y17_c02225{bottom:406.559730px;}
.y13_c02225{bottom:424.560306px;}
.y18_c02225{bottom:458.759262px;}
.y16_c02225{bottom:491.879514px;}
.y15_c02225{bottom:509.880090px;}
.y12_c02225{bottom:543.000342px;}
.y14_c02225{bottom:559.559874px;}
.y11_c02225{bottom:577.560450px;}
.y1f_c02225{bottom:614.280450px;}
.yd_c02225{bottom:667.559514px;}
.yf_c02225{bottom:707.160234px;}
.ye_c02225{bottom:716.880450px;}
.yc_c02225{bottom:796.439694px;}
.yb_c02225{bottom:877.439910px;}
.y9_c02225{bottom:896.880342px;}
.y8_c02225{bottom:912.000018px;}
.y7_c02225{bottom:926.759730px;}
.y3_c02225{bottom:944.760306px;}
.ya_c02225{bottom:979.320414px;}
.y6_c02225{bottom:1012.439478px;}
.y5_c02225{bottom:1030.440054px;}
.y2_c02225{bottom:1063.560306px;}
.y4_c02225{bottom:1079.759874px;}
.y1_c02225{bottom:1097.760450px;}
.y10_c02225{bottom:1134.840450px;}
.h3_c02225{height:32.530781px;}
.h1_c02225{height:41.696016px;}
.h2_c02225{height:41.812031px;}
.h4_c02225{height:54.654737px;}
.h0_c02225{height:1263.000000px;}
.w1_c02225{width:892.500000px;}
.w0_c02225{width:892.830000px;}
.x0_c02225{left:0.000000px;}
.xe_c02225{left:117.000000px;}
.x9_c02225{left:440.999856px;}
.x4_c02225{left:445.680576px;}
.xc_c02225{left:451.080000px;}
.x7_c02225{left:455.399604px;}
.x5_c02225{left:461.880144px;}
.x1_c02225{left:463.320000px;}
.xb_c02225{left:483.480360px;}
.xa_c02225{left:492.119496px;}
.x6_c02225{left:493.200576px;}
.xd_c02225{left:506.880360px;}
.x3_c02225{left:511.919892px;}
.x2_c02225{left:526.679604px;}
.x8_c02225{left:569.880036px;}
@media print{
.v0_c02225{vertical-align:0.000000pt;}
.v1_c02225{vertical-align:1.279488pt;}
.lsb_c02225{letter-spacing:-0.654720pt;}
.lsc_c02225{letter-spacing:-0.540672pt;}
.ls8_c02225{letter-spacing:-0.511104pt;}
.ls9_c02225{letter-spacing:-0.266112pt;}
.ls11_c02225{letter-spacing:-0.244992pt;}
.ls16_c02225{letter-spacing:-0.240768pt;}
.ls15_c02225{letter-spacing:-0.236544pt;}
.lsf_c02225{letter-spacing:-0.232320pt;}
.ls6_c02225{letter-spacing:-0.215424pt;}
.ls3_c02225{letter-spacing:-0.105600pt;}
.ls14_c02225{letter-spacing:0.000000pt;}
.ls0_c02225{letter-spacing:0.005376pt;}
.lse_c02225{letter-spacing:0.033792pt;}
.ls5_c02225{letter-spacing:0.114048pt;}
.lsd_c02225{letter-spacing:0.451968pt;}
.ls13_c02225{letter-spacing:0.456960pt;}
.ls10_c02225{letter-spacing:0.477312pt;}
.lsa_c02225{letter-spacing:0.515328pt;}
.ls12_c02225{letter-spacing:0.528000pt;}
.ls7_c02225{letter-spacing:0.532224pt;}
.ls1_c02225{letter-spacing:0.544896pt;}
.ls4_c02225{letter-spacing:0.637824pt;}
.ls2_c02225{letter-spacing:0.642048pt;}
.wsf_c02225{word-spacing:-13.445376pt;}
.wsd_c02225{word-spacing:-11.088000pt;}
.wsb_c02225{word-spacing:-11.075328pt;}
.wsc_c02225{word-spacing:-11.037312pt;}
.ws4_c02225{word-spacing:-10.344576pt;}
.ws10_c02225{word-spacing:-10.048896pt;}
.ws9_c02225{word-spacing:-10.019328pt;}
.ws1a_c02225{word-spacing:-1.919232pt;}
.ws13_c02225{word-spacing:-0.865920pt;}
.ws17_c02225{word-spacing:-0.354816pt;}
.ws15_c02225{word-spacing:-0.105600pt;}
.ws18_c02225{word-spacing:-0.088704pt;}
.ws1b_c02225{word-spacing:-0.084480pt;}
.ws1c_c02225{word-spacing:-0.080256pt;}
.ws19_c02225{word-spacing:-0.076032pt;}
.ws16_c02225{word-spacing:-0.054912pt;}
.ws14_c02225{word-spacing:0.000000pt;}
.ws2_c02225{word-spacing:1.182720pt;}
.ws12_c02225{word-spacing:5.892480pt;}
.ws8_c02225{word-spacing:15.523200pt;}
.wse_c02225{word-spacing:29.600256pt;}
.ws7_c02225{word-spacing:30.615552pt;}
.ws11_c02225{word-spacing:30.966144pt;}
.ws6_c02225{word-spacing:32.659968pt;}
.ws1_c02225{word-spacing:33.563904pt;}
.ws0_c02225{word-spacing:33.796224pt;}
.ws3_c02225{word-spacing:34.860672pt;}
.ws5_c02225{word-spacing:35.468928pt;}
.wsa_c02225{word-spacing:37.357056pt;}
._0_c02225{margin-left:-1.731840pt;}
._2_c02225{width:1.317888pt;}
._9_c02225{width:4.443648pt;}
._4_c02225{width:5.567232pt;}
._8_c02225{width:12.576768pt;}
._b_c02225{width:17.761920pt;}
._c_c02225{width:20.845440pt;}
._a_c02225{width:21.947904pt;}
._6_c02225{width:23.734656pt;}
._7_c02225{width:31.447680pt;}
._5_c02225{width:41.948544pt;}
._1_c02225{width:44.668800pt;}
._3_c02225{width:45.805056pt;}
.fs0_c02225{font-size:42.240000pt;}
.fs1_c02225{font-size:53.760000pt;}
.y0_c02225{bottom:0.000000pt;}
.y1c_c02225{bottom:117.225499pt;}
.y1b_c02225{bottom:130.665211pt;}
.y1e_c02225{bottom:165.866875pt;}
.y1d_c02225{bottom:174.507067pt;}
.y1a_c02225{bottom:245.225371pt;}
.y19_c02225{bottom:317.225563pt;}
.y17_c02225{bottom:361.386427pt;}
.y13_c02225{bottom:377.386939pt;}
.y18_c02225{bottom:407.786011pt;}
.y16_c02225{bottom:437.226235pt;}
.y15_c02225{bottom:453.226747pt;}
.y12_c02225{bottom:482.666971pt;}
.y14_c02225{bottom:497.386555pt;}
.y11_c02225{bottom:513.387067pt;}
.y1f_c02225{bottom:546.027067pt;}
.yd_c02225{bottom:593.386235pt;}
.yf_c02225{bottom:628.586875pt;}
.ye_c02225{bottom:637.227067pt;}
.yc_c02225{bottom:707.946395pt;}
.yb_c02225{bottom:779.946587pt;}
.y9_c02225{bottom:797.226971pt;}
.y8_c02225{bottom:810.666683pt;}
.y7_c02225{bottom:823.786427pt;}
.y3_c02225{bottom:839.786939pt;}
.ya_c02225{bottom:870.507035pt;}
.y6_c02225{bottom:899.946203pt;}
.y5_c02225{bottom:915.946715pt;}
.y2_c02225{bottom:945.386939pt;}
.y4_c02225{bottom:959.786555pt;}
.y1_c02225{bottom:975.787067pt;}
.y10_c02225{bottom:1008.747067pt;}
.h3_c02225{height:28.916250pt;}
.h1_c02225{height:37.063125pt;}
.h2_c02225{height:37.166250pt;}
.h4_c02225{height:48.581988pt;}
.h0_c02225{height:1122.666667pt;}
.w1_c02225{width:793.333333pt;}
.w0_c02225{width:793.626667pt;}
.x0_c02225{left:0.000000pt;}
.xe_c02225{left:104.000000pt;}
.x9_c02225{left:391.999872pt;}
.x4_c02225{left:396.160512pt;}
.xc_c02225{left:400.960000pt;}
.x7_c02225{left:404.799648pt;}
.x5_c02225{left:410.560128pt;}
.x1_c02225{left:411.840000pt;}
.xb_c02225{left:429.760320pt;}
.xa_c02225{left:437.439552pt;}
.x6_c02225{left:438.400512pt;}
.xd_c02225{left:450.560320pt;}
.x3_c02225{left:455.039904pt;}
.x2_c02225{left:468.159648pt;}
.x8_c02225{left:506.560032pt;}
}





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

.ir_c02226:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02226{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02226;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02226{font-family:ff1_c02226;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02226;src:url('chunks/assets/font_93958727439c11cacb626846.woff2')format("woff");}.ff2_c02226{font-family:ff2_c02226;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02226;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02226{font-family:ff3_c02226;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02226{vertical-align:0.000000px;}
.v1_c02226{vertical-align:1.439424px;}
.lsf_c02226{letter-spacing:-0.736560px;}
.ls9_c02226{letter-spacing:-0.574992px;}
.ls15_c02226{letter-spacing:-0.275616px;}
.ls10_c02226{letter-spacing:-0.270864px;}
.ls8_c02226{letter-spacing:-0.266112px;}
.lsd_c02226{letter-spacing:-0.261360px;}
.ls6_c02226{letter-spacing:-0.242352px;}
.ls3_c02226{letter-spacing:-0.118800px;}
.ls13_c02226{letter-spacing:0.000000px;}
.ls0_c02226{letter-spacing:0.006048px;}
.lsc_c02226{letter-spacing:0.038016px;}
.ls5_c02226{letter-spacing:0.128304px;}
.lsb_c02226{letter-spacing:0.508464px;}
.ls12_c02226{letter-spacing:0.514080px;}
.lse_c02226{letter-spacing:0.536976px;}
.lsa_c02226{letter-spacing:0.579744px;}
.ls11_c02226{letter-spacing:0.594000px;}
.ls7_c02226{letter-spacing:0.598752px;}
.ls1_c02226{letter-spacing:0.613008px;}
.ls14_c02226{letter-spacing:0.674784px;}
.ls4_c02226{letter-spacing:0.717552px;}
.ls2_c02226{letter-spacing:0.722304px;}
.sc__c02226{text-shadow:none;}
.sc0_c02226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02226{-webkit-text-stroke:0px transparent;}
.sc0_c02226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02226{word-spacing:-15.126048px;}
.ws9_c02226{word-spacing:-12.474000px;}
.ws5_c02226{word-spacing:-12.459744px;}
.wse_c02226{word-spacing:-12.416976px;}
.ws4_c02226{word-spacing:-11.305008px;}
.ws17_c02226{word-spacing:-2.159136px;}
.ws18_c02226{word-spacing:-1.035936px;}
.wsf_c02226{word-spacing:-0.974160px;}
.ws13_c02226{word-spacing:-0.399168px;}
.ws11_c02226{word-spacing:-0.118800px;}
.ws14_c02226{word-spacing:-0.099792px;}
.ws12_c02226{word-spacing:-0.095040px;}
.ws15_c02226{word-spacing:-0.090288px;}
.ws16_c02226{word-spacing:-0.085536px;}
.ws10_c02226{word-spacing:0.000000px;}
.ws2_c02226{word-spacing:1.330560px;}
.ws8_c02226{word-spacing:6.629040px;}
.wsa_c02226{word-spacing:33.300288px;}
.ws7_c02226{word-spacing:34.836912px;}
.wsd_c02226{word-spacing:36.742464px;}
.ws1_c02226{word-spacing:37.759392px;}
.ws0_c02226{word-spacing:38.020752px;}
.ws3_c02226{word-spacing:39.218256px;}
.wsc_c02226{word-spacing:39.902544px;}
.ws6_c02226{word-spacing:42.026688px;}
._0_c02226{margin-left:-1.948320px;}
._2_c02226{width:1.482624px;}
._4_c02226{width:4.999104px;}
._8_c02226{width:14.751072px;}
._6_c02226{width:19.982160px;}
._7_c02226{width:23.451120px;}
._5_c02226{width:24.691392px;}
._1_c02226{width:50.252400px;}
._3_c02226{width:51.530688px;}
.fc0_c02226{color:rgb(0,0,0);}
.fs0_c02226{font-size:47.520000px;}
.fs1_c02226{font-size:60.480000px;}
.y0_c02226{bottom:0.000000px;}
.y1a_c02226{bottom:146.998362px;}
.y1c_c02226{bottom:186.600234px;}
.y1b_c02226{bottom:196.320450px;}
.y19_c02226{bottom:275.878542px;}
.y18_c02226{bottom:356.878758px;}
.y16_c02226{bottom:406.559730px;}
.y12_c02226{bottom:424.560306px;}
.y17_c02226{bottom:458.759262px;}
.y15_c02226{bottom:491.879514px;}
.y14_c02226{bottom:509.880090px;}
.y11_c02226{bottom:543.000342px;}
.y13_c02226{bottom:559.559874px;}
.y10_c02226{bottom:577.560450px;}
.y1d_c02226{bottom:614.280450px;}
.yc_c02226{bottom:652.438650px;}
.yb_c02226{bottom:667.558326px;}
.ye_c02226{bottom:707.160234px;}
.yd_c02226{bottom:716.880450px;}
.ya_c02226{bottom:796.438506px;}
.y9_c02226{bottom:877.438722px;}
.y7_c02226{bottom:926.759730px;}
.y3_c02226{bottom:944.760306px;}
.y8_c02226{bottom:979.319226px;}
.y6_c02226{bottom:1012.439478px;}
.y5_c02226{bottom:1030.440054px;}
.y2_c02226{bottom:1063.560306px;}
.y4_c02226{bottom:1079.759874px;}
.y1_c02226{bottom:1097.760450px;}
.yf_c02226{bottom:1134.840450px;}
.h3_c02226{height:32.530781px;}
.h1_c02226{height:41.696016px;}
.h2_c02226{height:41.812031px;}
.h4_c02226{height:54.654737px;}
.h0_c02226{height:1263.000000px;}
.w1_c02226{width:892.500000px;}
.w0_c02226{width:892.830000px;}
.x0_c02226{left:0.000000px;}
.xe_c02226{left:117.000000px;}
.x8_c02226{left:441.001044px;}
.x4_c02226{left:445.680576px;}
.xc_c02226{left:451.080000px;}
.x7_c02226{left:455.400792px;}
.x5_c02226{left:461.880144px;}
.x1_c02226{left:463.320000px;}
.xa_c02226{left:483.481548px;}
.x9_c02226{left:492.120684px;}
.x6_c02226{left:493.200576px;}
.xd_c02226{left:506.880360px;}
.x3_c02226{left:511.919892px;}
.x2_c02226{left:526.679604px;}
.xb_c02226{left:569.881224px;}
@media print{
.v0_c02226{vertical-align:0.000000pt;}
.v1_c02226{vertical-align:1.279488pt;}
.lsf_c02226{letter-spacing:-0.654720pt;}
.ls9_c02226{letter-spacing:-0.511104pt;}
.ls15_c02226{letter-spacing:-0.244992pt;}
.ls10_c02226{letter-spacing:-0.240768pt;}
.ls8_c02226{letter-spacing:-0.236544pt;}
.lsd_c02226{letter-spacing:-0.232320pt;}
.ls6_c02226{letter-spacing:-0.215424pt;}
.ls3_c02226{letter-spacing:-0.105600pt;}
.ls13_c02226{letter-spacing:0.000000pt;}
.ls0_c02226{letter-spacing:0.005376pt;}
.lsc_c02226{letter-spacing:0.033792pt;}
.ls5_c02226{letter-spacing:0.114048pt;}
.lsb_c02226{letter-spacing:0.451968pt;}
.ls12_c02226{letter-spacing:0.456960pt;}
.lse_c02226{letter-spacing:0.477312pt;}
.lsa_c02226{letter-spacing:0.515328pt;}
.ls11_c02226{letter-spacing:0.528000pt;}
.ls7_c02226{letter-spacing:0.532224pt;}
.ls1_c02226{letter-spacing:0.544896pt;}
.ls14_c02226{letter-spacing:0.599808pt;}
.ls4_c02226{letter-spacing:0.637824pt;}
.ls2_c02226{letter-spacing:0.642048pt;}
.wsb_c02226{word-spacing:-13.445376pt;}
.ws9_c02226{word-spacing:-11.088000pt;}
.ws5_c02226{word-spacing:-11.075328pt;}
.wse_c02226{word-spacing:-11.037312pt;}
.ws4_c02226{word-spacing:-10.048896pt;}
.ws17_c02226{word-spacing:-1.919232pt;}
.ws18_c02226{word-spacing:-0.920832pt;}
.wsf_c02226{word-spacing:-0.865920pt;}
.ws13_c02226{word-spacing:-0.354816pt;}
.ws11_c02226{word-spacing:-0.105600pt;}
.ws14_c02226{word-spacing:-0.088704pt;}
.ws12_c02226{word-spacing:-0.084480pt;}
.ws15_c02226{word-spacing:-0.080256pt;}
.ws16_c02226{word-spacing:-0.076032pt;}
.ws10_c02226{word-spacing:0.000000pt;}
.ws2_c02226{word-spacing:1.182720pt;}
.ws8_c02226{word-spacing:5.892480pt;}
.wsa_c02226{word-spacing:29.600256pt;}
.ws7_c02226{word-spacing:30.966144pt;}
.wsd_c02226{word-spacing:32.659968pt;}
.ws1_c02226{word-spacing:33.563904pt;}
.ws0_c02226{word-spacing:33.796224pt;}
.ws3_c02226{word-spacing:34.860672pt;}
.wsc_c02226{word-spacing:35.468928pt;}
.ws6_c02226{word-spacing:37.357056pt;}
._0_c02226{margin-left:-1.731840pt;}
._2_c02226{width:1.317888pt;}
._4_c02226{width:4.443648pt;}
._8_c02226{width:13.112064pt;}
._6_c02226{width:17.761920pt;}
._7_c02226{width:20.845440pt;}
._5_c02226{width:21.947904pt;}
._1_c02226{width:44.668800pt;}
._3_c02226{width:45.805056pt;}
.fs0_c02226{font-size:42.240000pt;}
.fs1_c02226{font-size:53.760000pt;}
.y0_c02226{bottom:0.000000pt;}
.y1a_c02226{bottom:130.665211pt;}
.y1c_c02226{bottom:165.866875pt;}
.y1b_c02226{bottom:174.507067pt;}
.y19_c02226{bottom:245.225371pt;}
.y18_c02226{bottom:317.225563pt;}
.y16_c02226{bottom:361.386427pt;}
.y12_c02226{bottom:377.386939pt;}
.y17_c02226{bottom:407.786011pt;}
.y15_c02226{bottom:437.226235pt;}
.y14_c02226{bottom:453.226747pt;}
.y11_c02226{bottom:482.666971pt;}
.y13_c02226{bottom:497.386555pt;}
.y10_c02226{bottom:513.387067pt;}
.y1d_c02226{bottom:546.027067pt;}
.yc_c02226{bottom:579.945467pt;}
.yb_c02226{bottom:593.385179pt;}
.ye_c02226{bottom:628.586875pt;}
.yd_c02226{bottom:637.227067pt;}
.ya_c02226{bottom:707.945339pt;}
.y9_c02226{bottom:779.945531pt;}
.y7_c02226{bottom:823.786427pt;}
.y3_c02226{bottom:839.786939pt;}
.y8_c02226{bottom:870.505979pt;}
.y6_c02226{bottom:899.946203pt;}
.y5_c02226{bottom:915.946715pt;}
.y2_c02226{bottom:945.386939pt;}
.y4_c02226{bottom:959.786555pt;}
.y1_c02226{bottom:975.787067pt;}
.yf_c02226{bottom:1008.747067pt;}
.h3_c02226{height:28.916250pt;}
.h1_c02226{height:37.063125pt;}
.h2_c02226{height:37.166250pt;}
.h4_c02226{height:48.581988pt;}
.h0_c02226{height:1122.666667pt;}
.w1_c02226{width:793.333333pt;}
.w0_c02226{width:793.626667pt;}
.x0_c02226{left:0.000000pt;}
.xe_c02226{left:104.000000pt;}
.x8_c02226{left:392.000928pt;}
.x4_c02226{left:396.160512pt;}
.xc_c02226{left:400.960000pt;}
.x7_c02226{left:404.800704pt;}
.x5_c02226{left:410.560128pt;}
.x1_c02226{left:411.840000pt;}
.xa_c02226{left:429.761376pt;}
.x9_c02226{left:437.440608pt;}
.x6_c02226{left:438.400512pt;}
.xd_c02226{left:450.560320pt;}
.x3_c02226{left:455.039904pt;}
.x2_c02226{left:468.159648pt;}
.xb_c02226{left:506.561088pt;}
}





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

.ir_c02227:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02227{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02227;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02227{font-family:ff1_c02227;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02227;src:url('chunks/assets/font_2a6a41e4baa3277369e6c5bb.woff2')format("woff");}.ff2_c02227{font-family:ff2_c02227;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02227;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02227{font-family:ff3_c02227;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02227{vertical-align:0.000000px;}
.v1_c02227{vertical-align:1.439424px;}
.ls10_c02227{letter-spacing:-0.736560px;}
.lsa_c02227{letter-spacing:-0.574992px;}
.ls11_c02227{letter-spacing:-0.270864px;}
.ls9_c02227{letter-spacing:-0.266112px;}
.lse_c02227{letter-spacing:-0.261360px;}
.ls7_c02227{letter-spacing:-0.242352px;}
.ls4_c02227{letter-spacing:-0.118800px;}
.ls14_c02227{letter-spacing:0.000000px;}
.ls1_c02227{letter-spacing:0.006048px;}
.ls15_c02227{letter-spacing:0.038016px;}
.ls6_c02227{letter-spacing:0.128304px;}
.lsd_c02227{letter-spacing:0.242352px;}
.lsc_c02227{letter-spacing:0.508464px;}
.ls13_c02227{letter-spacing:0.514080px;}
.lsf_c02227{letter-spacing:0.536976px;}
.lsb_c02227{letter-spacing:0.579744px;}
.ls12_c02227{letter-spacing:0.594000px;}
.ls8_c02227{letter-spacing:0.598752px;}
.ls2_c02227{letter-spacing:0.613008px;}
.ls0_c02227{letter-spacing:0.651024px;}
.ls5_c02227{letter-spacing:0.717552px;}
.ls3_c02227{letter-spacing:0.722304px;}
.sc__c02227{text-shadow:none;}
.sc0_c02227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02227{-webkit-text-stroke:0px transparent;}
.sc0_c02227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02227{word-spacing:-15.126048px;}
.ws9_c02227{word-spacing:-12.474000px;}
.ws5_c02227{word-spacing:-12.459744px;}
.ws4_c02227{word-spacing:-11.305008px;}
.ws14_c02227{word-spacing:-2.159136px;}
.wse_c02227{word-spacing:-1.012176px;}
.wsc_c02227{word-spacing:-0.974160px;}
.ws15_c02227{word-spacing:-0.399168px;}
.wsf_c02227{word-spacing:-0.118800px;}
.ws11_c02227{word-spacing:-0.099792px;}
.ws10_c02227{word-spacing:-0.095040px;}
.ws12_c02227{word-spacing:-0.090288px;}
.ws13_c02227{word-spacing:-0.085536px;}
.wsd_c02227{word-spacing:0.000000px;}
.ws2_c02227{word-spacing:1.330560px;}
.ws8_c02227{word-spacing:6.629040px;}
.wsa_c02227{word-spacing:33.300288px;}
.ws7_c02227{word-spacing:34.836912px;}
.ws1_c02227{word-spacing:37.759392px;}
.ws0_c02227{word-spacing:38.020752px;}
.ws3_c02227{word-spacing:39.218256px;}
.ws6_c02227{word-spacing:42.026688px;}
._0_c02227{margin-left:-1.948320px;}
._2_c02227{width:1.482624px;}
._4_c02227{width:4.999104px;}
._8_c02227{width:14.751072px;}
._6_c02227{width:19.982160px;}
._7_c02227{width:23.451120px;}
._5_c02227{width:24.691392px;}
._1_c02227{width:50.252400px;}
._3_c02227{width:51.530688px;}
.fc0_c02227{color:rgb(0,0,0);}
.fs0_c02227{font-size:47.520000px;}
.fs1_c02227{font-size:60.480000px;}
.y0_c02227{bottom:0.000000px;}
.y1b_c02227{bottom:131.878686px;}
.y1a_c02227{bottom:146.998362px;}
.y1d_c02227{bottom:186.600234px;}
.y1c_c02227{bottom:196.320450px;}
.y19_c02227{bottom:275.878542px;}
.y18_c02227{bottom:356.878758px;}
.y16_c02227{bottom:406.559730px;}
.y12_c02227{bottom:424.560306px;}
.y17_c02227{bottom:458.759262px;}
.y15_c02227{bottom:491.879514px;}
.y14_c02227{bottom:509.880090px;}
.y11_c02227{bottom:543.000342px;}
.y13_c02227{bottom:559.559874px;}
.y10_c02227{bottom:577.560450px;}
.y1e_c02227{bottom:614.280450px;}
.yc_c02227{bottom:652.438650px;}
.yb_c02227{bottom:667.558326px;}
.ye_c02227{bottom:707.160234px;}
.yd_c02227{bottom:716.880450px;}
.ya_c02227{bottom:796.438506px;}
.y9_c02227{bottom:877.438722px;}
.y7_c02227{bottom:926.759730px;}
.y3_c02227{bottom:944.760306px;}
.y8_c02227{bottom:979.319226px;}
.y6_c02227{bottom:1012.439478px;}
.y5_c02227{bottom:1030.440054px;}
.y2_c02227{bottom:1063.560306px;}
.y4_c02227{bottom:1079.759874px;}
.y1_c02227{bottom:1097.760450px;}
.yf_c02227{bottom:1134.840450px;}
.h3_c02227{height:32.530781px;}
.h1_c02227{height:41.696016px;}
.h2_c02227{height:41.812031px;}
.h4_c02227{height:54.654737px;}
.h0_c02227{height:1263.000000px;}
.w1_c02227{width:892.500000px;}
.w0_c02227{width:892.830000px;}
.x0_c02227{left:0.000000px;}
.xe_c02227{left:117.000000px;}
.x8_c02227{left:441.001044px;}
.x4_c02227{left:445.680576px;}
.xc_c02227{left:451.080000px;}
.x7_c02227{left:455.400792px;}
.x5_c02227{left:461.880144px;}
.x1_c02227{left:463.320000px;}
.xa_c02227{left:483.481548px;}
.x9_c02227{left:492.120684px;}
.x6_c02227{left:493.200576px;}
.xd_c02227{left:506.880360px;}
.x3_c02227{left:511.919892px;}
.x2_c02227{left:526.679604px;}
.xb_c02227{left:569.881224px;}
@media print{
.v0_c02227{vertical-align:0.000000pt;}
.v1_c02227{vertical-align:1.279488pt;}
.ls10_c02227{letter-spacing:-0.654720pt;}
.lsa_c02227{letter-spacing:-0.511104pt;}
.ls11_c02227{letter-spacing:-0.240768pt;}
.ls9_c02227{letter-spacing:-0.236544pt;}
.lse_c02227{letter-spacing:-0.232320pt;}
.ls7_c02227{letter-spacing:-0.215424pt;}
.ls4_c02227{letter-spacing:-0.105600pt;}
.ls14_c02227{letter-spacing:0.000000pt;}
.ls1_c02227{letter-spacing:0.005376pt;}
.ls15_c02227{letter-spacing:0.033792pt;}
.ls6_c02227{letter-spacing:0.114048pt;}
.lsd_c02227{letter-spacing:0.215424pt;}
.lsc_c02227{letter-spacing:0.451968pt;}
.ls13_c02227{letter-spacing:0.456960pt;}
.lsf_c02227{letter-spacing:0.477312pt;}
.lsb_c02227{letter-spacing:0.515328pt;}
.ls12_c02227{letter-spacing:0.528000pt;}
.ls8_c02227{letter-spacing:0.532224pt;}
.ls2_c02227{letter-spacing:0.544896pt;}
.ls0_c02227{letter-spacing:0.578688pt;}
.ls5_c02227{letter-spacing:0.637824pt;}
.ls3_c02227{letter-spacing:0.642048pt;}
.wsb_c02227{word-spacing:-13.445376pt;}
.ws9_c02227{word-spacing:-11.088000pt;}
.ws5_c02227{word-spacing:-11.075328pt;}
.ws4_c02227{word-spacing:-10.048896pt;}
.ws14_c02227{word-spacing:-1.919232pt;}
.wse_c02227{word-spacing:-0.899712pt;}
.wsc_c02227{word-spacing:-0.865920pt;}
.ws15_c02227{word-spacing:-0.354816pt;}
.wsf_c02227{word-spacing:-0.105600pt;}
.ws11_c02227{word-spacing:-0.088704pt;}
.ws10_c02227{word-spacing:-0.084480pt;}
.ws12_c02227{word-spacing:-0.080256pt;}
.ws13_c02227{word-spacing:-0.076032pt;}
.wsd_c02227{word-spacing:0.000000pt;}
.ws2_c02227{word-spacing:1.182720pt;}
.ws8_c02227{word-spacing:5.892480pt;}
.wsa_c02227{word-spacing:29.600256pt;}
.ws7_c02227{word-spacing:30.966144pt;}
.ws1_c02227{word-spacing:33.563904pt;}
.ws0_c02227{word-spacing:33.796224pt;}
.ws3_c02227{word-spacing:34.860672pt;}
.ws6_c02227{word-spacing:37.357056pt;}
._0_c02227{margin-left:-1.731840pt;}
._2_c02227{width:1.317888pt;}
._4_c02227{width:4.443648pt;}
._8_c02227{width:13.112064pt;}
._6_c02227{width:17.761920pt;}
._7_c02227{width:20.845440pt;}
._5_c02227{width:21.947904pt;}
._1_c02227{width:44.668800pt;}
._3_c02227{width:45.805056pt;}
.fs0_c02227{font-size:42.240000pt;}
.fs1_c02227{font-size:53.760000pt;}
.y0_c02227{bottom:0.000000pt;}
.y1b_c02227{bottom:117.225499pt;}
.y1a_c02227{bottom:130.665211pt;}
.y1d_c02227{bottom:165.866875pt;}
.y1c_c02227{bottom:174.507067pt;}
.y19_c02227{bottom:245.225371pt;}
.y18_c02227{bottom:317.225563pt;}
.y16_c02227{bottom:361.386427pt;}
.y12_c02227{bottom:377.386939pt;}
.y17_c02227{bottom:407.786011pt;}
.y15_c02227{bottom:437.226235pt;}
.y14_c02227{bottom:453.226747pt;}
.y11_c02227{bottom:482.666971pt;}
.y13_c02227{bottom:497.386555pt;}
.y10_c02227{bottom:513.387067pt;}
.y1e_c02227{bottom:546.027067pt;}
.yc_c02227{bottom:579.945467pt;}
.yb_c02227{bottom:593.385179pt;}
.ye_c02227{bottom:628.586875pt;}
.yd_c02227{bottom:637.227067pt;}
.ya_c02227{bottom:707.945339pt;}
.y9_c02227{bottom:779.945531pt;}
.y7_c02227{bottom:823.786427pt;}
.y3_c02227{bottom:839.786939pt;}
.y8_c02227{bottom:870.505979pt;}
.y6_c02227{bottom:899.946203pt;}
.y5_c02227{bottom:915.946715pt;}
.y2_c02227{bottom:945.386939pt;}
.y4_c02227{bottom:959.786555pt;}
.y1_c02227{bottom:975.787067pt;}
.yf_c02227{bottom:1008.747067pt;}
.h3_c02227{height:28.916250pt;}
.h1_c02227{height:37.063125pt;}
.h2_c02227{height:37.166250pt;}
.h4_c02227{height:48.581988pt;}
.h0_c02227{height:1122.666667pt;}
.w1_c02227{width:793.333333pt;}
.w0_c02227{width:793.626667pt;}
.x0_c02227{left:0.000000pt;}
.xe_c02227{left:104.000000pt;}
.x8_c02227{left:392.000928pt;}
.x4_c02227{left:396.160512pt;}
.xc_c02227{left:400.960000pt;}
.x7_c02227{left:404.800704pt;}
.x5_c02227{left:410.560128pt;}
.x1_c02227{left:411.840000pt;}
.xa_c02227{left:429.761376pt;}
.x9_c02227{left:437.440608pt;}
.x6_c02227{left:438.400512pt;}
.xd_c02227{left:450.560320pt;}
.x3_c02227{left:455.039904pt;}
.x2_c02227{left:468.159648pt;}
.xb_c02227{left:506.561088pt;}
}





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

.ir_c02228:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02228{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02228;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02228{font-family:ff1_c02228;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02228;src:url('chunks/assets/font_9cf615e4e98e0d6325aa861d.woff2')format("woff");}.ff2_c02228{font-family:ff2_c02228;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02228;src:url('chunks/assets/font_7805e8a3f6f11ed3ca1f8f44.woff2')format("woff");}.ff3_c02228{font-family:ff3_c02228;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02228{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02228{vertical-align:0.000000px;}
.v1_c02228{vertical-align:1.439424px;}
.lse_c02228{letter-spacing:-1.197504px;}
.lsb_c02228{letter-spacing:-0.574992px;}
.ls14_c02228{letter-spacing:-0.361152px;}
.ls10_c02228{letter-spacing:-0.275616px;}
.lsa_c02228{letter-spacing:-0.261360px;}
.ls7_c02228{letter-spacing:-0.242352px;}
.ls3_c02228{letter-spacing:-0.118800px;}
.ls13_c02228{letter-spacing:0.000000px;}
.ls1_c02228{letter-spacing:0.006048px;}
.ls5_c02228{letter-spacing:0.128304px;}
.ls8_c02228{letter-spacing:0.242352px;}
.lsd_c02228{letter-spacing:0.508464px;}
.ls12_c02228{letter-spacing:0.514080px;}
.lsf_c02228{letter-spacing:0.536976px;}
.lsc_c02228{letter-spacing:0.579744px;}
.ls11_c02228{letter-spacing:0.594000px;}
.ls9_c02228{letter-spacing:0.598752px;}
.ls4_c02228{letter-spacing:0.603504px;}
.ls2_c02228{letter-spacing:0.613008px;}
.ls15_c02228{letter-spacing:0.651024px;}
.ls6_c02228{letter-spacing:0.717552px;}
.ls0_c02228{letter-spacing:0.722304px;}
.sc__c02228{text-shadow:none;}
.sc0_c02228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02228{-webkit-text-stroke:0px transparent;}
.sc0_c02228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02228{word-spacing:-15.126048px;}
.ws9_c02228{word-spacing:-12.474000px;}
.ws7_c02228{word-spacing:-12.459744px;}
.ws8_c02228{word-spacing:-12.416976px;}
.ws2_c02228{word-spacing:-12.122352px;}
.ws0_c02228{word-spacing:-11.761200px;}
.ws17_c02228{word-spacing:-2.159136px;}
.ws14_c02228{word-spacing:-1.083456px;}
.wsf_c02228{word-spacing:-0.974160px;}
.ws11_c02228{word-spacing:-0.964656px;}
.ws12_c02228{word-spacing:-0.118800px;}
.ws13_c02228{word-spacing:-0.099792px;}
.ws16_c02228{word-spacing:-0.085536px;}
.ws10_c02228{word-spacing:0.000000px;}
.ws15_c02228{word-spacing:0.836352px;}
.wse_c02228{word-spacing:29.086992px;}
.wsa_c02228{word-spacing:33.300288px;}
.wsd_c02228{word-spacing:36.143712px;}
.ws5_c02228{word-spacing:36.742464px;}
.ws1_c02228{word-spacing:37.759392px;}
.wsc_c02228{word-spacing:38.020752px;}
.ws3_c02228{word-spacing:39.218256px;}
.ws4_c02228{word-spacing:39.902544px;}
.ws6_c02228{word-spacing:42.026688px;}
._0_c02228{margin-left:-1.948320px;}
._2_c02228{width:1.482624px;}
._4_c02228{width:3.402432px;}
._5_c02228{width:14.751072px;}
._7_c02228{width:39.427344px;}
._6_c02228{width:43.428528px;}
._8_c02228{width:45.224784px;}
._1_c02228{width:50.252400px;}
._3_c02228{width:51.530688px;}
.fc0_c02228{color:rgb(0,0,0);}
.fs0_c02228{font-size:47.520000px;}
.fs1_c02228{font-size:60.480000px;}
.y0_c02228{bottom:0.000000px;}
.y4_c02228{bottom:18.360450px;}
.y1c_c02228{bottom:146.998362px;}
.y1e_c02228{bottom:186.600234px;}
.y1d_c02228{bottom:196.320450px;}
.y1b_c02228{bottom:275.878542px;}
.y1a_c02228{bottom:341.759082px;}
.y19_c02228{bottom:356.878758px;}
.y17_c02228{bottom:406.559730px;}
.y13_c02228{bottom:424.560306px;}
.y18_c02228{bottom:458.759262px;}
.y16_c02228{bottom:491.879514px;}
.y15_c02228{bottom:509.880090px;}
.y12_c02228{bottom:543.000342px;}
.y14_c02228{bottom:559.559874px;}
.y11_c02228{bottom:577.560450px;}
.y1f_c02228{bottom:614.280450px;}
.yd_c02228{bottom:667.558470px;}
.yf_c02228{bottom:707.160234px;}
.ye_c02228{bottom:716.880450px;}
.yc_c02228{bottom:796.438650px;}
.yb_c02228{bottom:877.438866px;}
.y9_c02228{bottom:926.759874px;}
.y5_c02228{bottom:944.760450px;}
.ya_c02228{bottom:979.319370px;}
.y8_c02228{bottom:1012.439622px;}
.y7_c02228{bottom:1030.440198px;}
.y3_c02228{bottom:1045.200000px;}
.y2_c02228{bottom:1063.560306px;}
.y6_c02228{bottom:1079.760018px;}
.y1_c02228{bottom:1097.760450px;}
.y10_c02228{bottom:1134.840450px;}
.h3_c02228{height:29.520000px;}
.h2_c02228{height:32.530781px;}
.h1_c02228{height:41.696016px;}
.h4_c02228{height:41.812031px;}
.h5_c02228{height:54.654737px;}
.h0_c02228{height:1263.000000px;}
.w2_c02228{width:215.280000px;}
.w1_c02228{width:892.500000px;}
.w0_c02228{width:892.830000px;}
.x0_c02228{left:0.000000px;}
.xe_c02228{left:117.000000px;}
.x9_c02228{left:440.999964px;}
.x5_c02228{left:445.680684px;}
.xc_c02228{left:451.080000px;}
.x8_c02228{left:455.399712px;}
.x6_c02228{left:461.880252px;}
.x1_c02228{left:463.320000px;}
.xb_c02228{left:483.480468px;}
.xa_c02228{left:492.119604px;}
.x7_c02228{left:493.200684px;}
.xd_c02228{left:506.880360px;}
.x4_c02228{left:511.920000px;}
.x2_c02228{left:526.679604px;}
.x3_c02228{left:569.520000px;}
@media print{
.v0_c02228{vertical-align:0.000000pt;}
.v1_c02228{vertical-align:1.279488pt;}
.lse_c02228{letter-spacing:-1.064448pt;}
.lsb_c02228{letter-spacing:-0.511104pt;}
.ls14_c02228{letter-spacing:-0.321024pt;}
.ls10_c02228{letter-spacing:-0.244992pt;}
.lsa_c02228{letter-spacing:-0.232320pt;}
.ls7_c02228{letter-spacing:-0.215424pt;}
.ls3_c02228{letter-spacing:-0.105600pt;}
.ls13_c02228{letter-spacing:0.000000pt;}
.ls1_c02228{letter-spacing:0.005376pt;}
.ls5_c02228{letter-spacing:0.114048pt;}
.ls8_c02228{letter-spacing:0.215424pt;}
.lsd_c02228{letter-spacing:0.451968pt;}
.ls12_c02228{letter-spacing:0.456960pt;}
.lsf_c02228{letter-spacing:0.477312pt;}
.lsc_c02228{letter-spacing:0.515328pt;}
.ls11_c02228{letter-spacing:0.528000pt;}
.ls9_c02228{letter-spacing:0.532224pt;}
.ls4_c02228{letter-spacing:0.536448pt;}
.ls2_c02228{letter-spacing:0.544896pt;}
.ls15_c02228{letter-spacing:0.578688pt;}
.ls6_c02228{letter-spacing:0.637824pt;}
.ls0_c02228{letter-spacing:0.642048pt;}
.wsb_c02228{word-spacing:-13.445376pt;}
.ws9_c02228{word-spacing:-11.088000pt;}
.ws7_c02228{word-spacing:-11.075328pt;}
.ws8_c02228{word-spacing:-11.037312pt;}
.ws2_c02228{word-spacing:-10.775424pt;}
.ws0_c02228{word-spacing:-10.454400pt;}
.ws17_c02228{word-spacing:-1.919232pt;}
.ws14_c02228{word-spacing:-0.963072pt;}
.wsf_c02228{word-spacing:-0.865920pt;}
.ws11_c02228{word-spacing:-0.857472pt;}
.ws12_c02228{word-spacing:-0.105600pt;}
.ws13_c02228{word-spacing:-0.088704pt;}
.ws16_c02228{word-spacing:-0.076032pt;}
.ws10_c02228{word-spacing:0.000000pt;}
.ws15_c02228{word-spacing:0.743424pt;}
.wse_c02228{word-spacing:25.855104pt;}
.wsa_c02228{word-spacing:29.600256pt;}
.wsd_c02228{word-spacing:32.127744pt;}
.ws5_c02228{word-spacing:32.659968pt;}
.ws1_c02228{word-spacing:33.563904pt;}
.wsc_c02228{word-spacing:33.796224pt;}
.ws3_c02228{word-spacing:34.860672pt;}
.ws4_c02228{word-spacing:35.468928pt;}
.ws6_c02228{word-spacing:37.357056pt;}
._0_c02228{margin-left:-1.731840pt;}
._2_c02228{width:1.317888pt;}
._4_c02228{width:3.024384pt;}
._5_c02228{width:13.112064pt;}
._7_c02228{width:35.046528pt;}
._6_c02228{width:38.603136pt;}
._8_c02228{width:40.199808pt;}
._1_c02228{width:44.668800pt;}
._3_c02228{width:45.805056pt;}
.fs0_c02228{font-size:42.240000pt;}
.fs1_c02228{font-size:53.760000pt;}
.y0_c02228{bottom:0.000000pt;}
.y4_c02228{bottom:16.320400pt;}
.y1c_c02228{bottom:130.665211pt;}
.y1e_c02228{bottom:165.866875pt;}
.y1d_c02228{bottom:174.507067pt;}
.y1b_c02228{bottom:245.225371pt;}
.y1a_c02228{bottom:303.785851pt;}
.y19_c02228{bottom:317.225563pt;}
.y17_c02228{bottom:361.386427pt;}
.y13_c02228{bottom:377.386939pt;}
.y18_c02228{bottom:407.786011pt;}
.y16_c02228{bottom:437.226235pt;}
.y15_c02228{bottom:453.226747pt;}
.y12_c02228{bottom:482.666971pt;}
.y14_c02228{bottom:497.386555pt;}
.y11_c02228{bottom:513.387067pt;}
.y1f_c02228{bottom:546.027067pt;}
.yd_c02228{bottom:593.385307pt;}
.yf_c02228{bottom:628.586875pt;}
.ye_c02228{bottom:637.227067pt;}
.yc_c02228{bottom:707.945467pt;}
.yb_c02228{bottom:779.945659pt;}
.y9_c02228{bottom:823.786555pt;}
.y5_c02228{bottom:839.787067pt;}
.ya_c02228{bottom:870.506107pt;}
.y8_c02228{bottom:899.946331pt;}
.y7_c02228{bottom:915.946843pt;}
.y3_c02228{bottom:929.066667pt;}
.y2_c02228{bottom:945.386939pt;}
.y6_c02228{bottom:959.786683pt;}
.y1_c02228{bottom:975.787067pt;}
.y10_c02228{bottom:1008.747067pt;}
.h3_c02228{height:26.240000pt;}
.h2_c02228{height:28.916250pt;}
.h1_c02228{height:37.063125pt;}
.h4_c02228{height:37.166250pt;}
.h5_c02228{height:48.581988pt;}
.h0_c02228{height:1122.666667pt;}
.w2_c02228{width:191.360000pt;}
.w1_c02228{width:793.333333pt;}
.w0_c02228{width:793.626667pt;}
.x0_c02228{left:0.000000pt;}
.xe_c02228{left:104.000000pt;}
.x9_c02228{left:391.999968pt;}
.x5_c02228{left:396.160608pt;}
.xc_c02228{left:400.960000pt;}
.x8_c02228{left:404.799744pt;}
.x6_c02228{left:410.560224pt;}
.x1_c02228{left:411.840000pt;}
.xb_c02228{left:429.760416pt;}
.xa_c02228{left:437.439648pt;}
.x7_c02228{left:438.400608pt;}
.xd_c02228{left:450.560320pt;}
.x4_c02228{left:455.040000pt;}
.x2_c02228{left:468.159648pt;}
.x3_c02228{left:506.240000pt;}
}





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

.ir_c02229:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02229{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02229;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02229{font-family:ff1_c02229;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02229;src:url('chunks/assets/font_939b73db473f73d9c69d2263.woff2')format("woff");}.ff2_c02229{font-family:ff2_c02229;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02229;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02229{font-family:ff3_c02229;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02229{vertical-align:0.000000px;}
.v1_c02229{vertical-align:1.439424px;}
.lse_c02229{letter-spacing:-1.197504px;}
.lsa_c02229{letter-spacing:-0.574992px;}
.lsb_c02229{letter-spacing:-0.361152px;}
.ls9_c02229{letter-spacing:-0.275616px;}
.lsf_c02229{letter-spacing:-0.261360px;}
.ls6_c02229{letter-spacing:-0.242352px;}
.ls3_c02229{letter-spacing:-0.118800px;}
.ls13_c02229{letter-spacing:0.000000px;}
.ls0_c02229{letter-spacing:0.006048px;}
.ls5_c02229{letter-spacing:0.128304px;}
.ls7_c02229{letter-spacing:0.242352px;}
.lsd_c02229{letter-spacing:0.508464px;}
.ls12_c02229{letter-spacing:0.514080px;}
.ls10_c02229{letter-spacing:0.536976px;}
.lsc_c02229{letter-spacing:0.579744px;}
.ls11_c02229{letter-spacing:0.594000px;}
.ls8_c02229{letter-spacing:0.598752px;}
.ls1_c02229{letter-spacing:0.613008px;}
.ls14_c02229{letter-spacing:0.651024px;}
.ls4_c02229{letter-spacing:0.717552px;}
.ls2_c02229{letter-spacing:0.722304px;}
.sc__c02229{text-shadow:none;}
.sc0_c02229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02229{-webkit-text-stroke:0px transparent;}
.sc0_c02229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02229{word-spacing:-15.126048px;}
.ws9_c02229{word-spacing:-12.474000px;}
.ws7_c02229{word-spacing:-12.459744px;}
.ws8_c02229{word-spacing:-12.416976px;}
.ws2_c02229{word-spacing:-12.122352px;}
.ws14_c02229{word-spacing:-2.159136px;}
.ws15_c02229{word-spacing:-1.083456px;}
.wse_c02229{word-spacing:-0.974160px;}
.ws10_c02229{word-spacing:-0.118800px;}
.ws13_c02229{word-spacing:-0.099792px;}
.ws11_c02229{word-spacing:-0.085536px;}
.wsf_c02229{word-spacing:0.000000px;}
.ws12_c02229{word-spacing:0.836352px;}
.wsd_c02229{word-spacing:29.086992px;}
.wsa_c02229{word-spacing:33.300288px;}
.wsc_c02229{word-spacing:36.143712px;}
.ws5_c02229{word-spacing:36.742464px;}
.ws1_c02229{word-spacing:37.759392px;}
.ws0_c02229{word-spacing:38.020752px;}
.ws3_c02229{word-spacing:39.218256px;}
.ws4_c02229{word-spacing:39.902544px;}
.ws6_c02229{word-spacing:42.026688px;}
._0_c02229{margin-left:-1.948320px;}
._2_c02229{width:1.482624px;}
._4_c02229{width:3.473712px;}
._5_c02229{width:14.751072px;}
._7_c02229{width:39.427344px;}
._6_c02229{width:43.428528px;}
._8_c02229{width:45.224784px;}
._1_c02229{width:50.252400px;}
._3_c02229{width:51.530688px;}
.fc0_c02229{color:rgb(0,0,0);}
.fs0_c02229{font-size:47.520000px;}
.fs1_c02229{font-size:60.480000px;}
.y0_c02229{bottom:0.000000px;}
.y1a_c02229{bottom:146.998362px;}
.y1c_c02229{bottom:186.600234px;}
.y1b_c02229{bottom:196.320450px;}
.y19_c02229{bottom:275.878542px;}
.y18_c02229{bottom:341.759082px;}
.y17_c02229{bottom:356.878758px;}
.y15_c02229{bottom:406.559730px;}
.y11_c02229{bottom:424.560306px;}
.y16_c02229{bottom:458.759262px;}
.y14_c02229{bottom:491.879514px;}
.y13_c02229{bottom:509.880090px;}
.y10_c02229{bottom:543.000342px;}
.y12_c02229{bottom:559.559874px;}
.yf_c02229{bottom:577.560450px;}
.y1d_c02229{bottom:614.280450px;}
.yb_c02229{bottom:667.558326px;}
.yd_c02229{bottom:707.160234px;}
.yc_c02229{bottom:716.880450px;}
.ya_c02229{bottom:796.438506px;}
.y9_c02229{bottom:877.438722px;}
.y7_c02229{bottom:926.759730px;}
.y3_c02229{bottom:944.760306px;}
.y8_c02229{bottom:979.319226px;}
.y6_c02229{bottom:1012.439478px;}
.y5_c02229{bottom:1030.440054px;}
.y2_c02229{bottom:1063.560306px;}
.y4_c02229{bottom:1079.759874px;}
.y1_c02229{bottom:1097.760450px;}
.ye_c02229{bottom:1134.840450px;}
.h3_c02229{height:32.530781px;}
.h1_c02229{height:41.696016px;}
.h2_c02229{height:41.812031px;}
.h4_c02229{height:54.654737px;}
.h0_c02229{height:1263.000000px;}
.w1_c02229{width:892.500000px;}
.w0_c02229{width:892.830000px;}
.x0_c02229{left:0.000000px;}
.xd_c02229{left:117.000000px;}
.x8_c02229{left:440.999856px;}
.x4_c02229{left:445.680576px;}
.xb_c02229{left:451.080000px;}
.x7_c02229{left:455.399604px;}
.x5_c02229{left:461.880144px;}
.x1_c02229{left:463.320000px;}
.xa_c02229{left:483.480360px;}
.x9_c02229{left:492.119496px;}
.x6_c02229{left:493.200576px;}
.xc_c02229{left:506.880360px;}
.x3_c02229{left:511.919892px;}
.x2_c02229{left:526.679604px;}
.xe_c02229{left:569.880036px;}
@media print{
.v0_c02229{vertical-align:0.000000pt;}
.v1_c02229{vertical-align:1.279488pt;}
.lse_c02229{letter-spacing:-1.064448pt;}
.lsa_c02229{letter-spacing:-0.511104pt;}
.lsb_c02229{letter-spacing:-0.321024pt;}
.ls9_c02229{letter-spacing:-0.244992pt;}
.lsf_c02229{letter-spacing:-0.232320pt;}
.ls6_c02229{letter-spacing:-0.215424pt;}
.ls3_c02229{letter-spacing:-0.105600pt;}
.ls13_c02229{letter-spacing:0.000000pt;}
.ls0_c02229{letter-spacing:0.005376pt;}
.ls5_c02229{letter-spacing:0.114048pt;}
.ls7_c02229{letter-spacing:0.215424pt;}
.lsd_c02229{letter-spacing:0.451968pt;}
.ls12_c02229{letter-spacing:0.456960pt;}
.ls10_c02229{letter-spacing:0.477312pt;}
.lsc_c02229{letter-spacing:0.515328pt;}
.ls11_c02229{letter-spacing:0.528000pt;}
.ls8_c02229{letter-spacing:0.532224pt;}
.ls1_c02229{letter-spacing:0.544896pt;}
.ls14_c02229{letter-spacing:0.578688pt;}
.ls4_c02229{letter-spacing:0.637824pt;}
.ls2_c02229{letter-spacing:0.642048pt;}
.wsb_c02229{word-spacing:-13.445376pt;}
.ws9_c02229{word-spacing:-11.088000pt;}
.ws7_c02229{word-spacing:-11.075328pt;}
.ws8_c02229{word-spacing:-11.037312pt;}
.ws2_c02229{word-spacing:-10.775424pt;}
.ws14_c02229{word-spacing:-1.919232pt;}
.ws15_c02229{word-spacing:-0.963072pt;}
.wse_c02229{word-spacing:-0.865920pt;}
.ws10_c02229{word-spacing:-0.105600pt;}
.ws13_c02229{word-spacing:-0.088704pt;}
.ws11_c02229{word-spacing:-0.076032pt;}
.wsf_c02229{word-spacing:0.000000pt;}
.ws12_c02229{word-spacing:0.743424pt;}
.wsd_c02229{word-spacing:25.855104pt;}
.wsa_c02229{word-spacing:29.600256pt;}
.wsc_c02229{word-spacing:32.127744pt;}
.ws5_c02229{word-spacing:32.659968pt;}
.ws1_c02229{word-spacing:33.563904pt;}
.ws0_c02229{word-spacing:33.796224pt;}
.ws3_c02229{word-spacing:34.860672pt;}
.ws4_c02229{word-spacing:35.468928pt;}
.ws6_c02229{word-spacing:37.357056pt;}
._0_c02229{margin-left:-1.731840pt;}
._2_c02229{width:1.317888pt;}
._4_c02229{width:3.087744pt;}
._5_c02229{width:13.112064pt;}
._7_c02229{width:35.046528pt;}
._6_c02229{width:38.603136pt;}
._8_c02229{width:40.199808pt;}
._1_c02229{width:44.668800pt;}
._3_c02229{width:45.805056pt;}
.fs0_c02229{font-size:42.240000pt;}
.fs1_c02229{font-size:53.760000pt;}
.y0_c02229{bottom:0.000000pt;}
.y1a_c02229{bottom:130.665211pt;}
.y1c_c02229{bottom:165.866875pt;}
.y1b_c02229{bottom:174.507067pt;}
.y19_c02229{bottom:245.225371pt;}
.y18_c02229{bottom:303.785851pt;}
.y17_c02229{bottom:317.225563pt;}
.y15_c02229{bottom:361.386427pt;}
.y11_c02229{bottom:377.386939pt;}
.y16_c02229{bottom:407.786011pt;}
.y14_c02229{bottom:437.226235pt;}
.y13_c02229{bottom:453.226747pt;}
.y10_c02229{bottom:482.666971pt;}
.y12_c02229{bottom:497.386555pt;}
.yf_c02229{bottom:513.387067pt;}
.y1d_c02229{bottom:546.027067pt;}
.yb_c02229{bottom:593.385179pt;}
.yd_c02229{bottom:628.586875pt;}
.yc_c02229{bottom:637.227067pt;}
.ya_c02229{bottom:707.945339pt;}
.y9_c02229{bottom:779.945531pt;}
.y7_c02229{bottom:823.786427pt;}
.y3_c02229{bottom:839.786939pt;}
.y8_c02229{bottom:870.505979pt;}
.y6_c02229{bottom:899.946203pt;}
.y5_c02229{bottom:915.946715pt;}
.y2_c02229{bottom:945.386939pt;}
.y4_c02229{bottom:959.786555pt;}
.y1_c02229{bottom:975.787067pt;}
.ye_c02229{bottom:1008.747067pt;}
.h3_c02229{height:28.916250pt;}
.h1_c02229{height:37.063125pt;}
.h2_c02229{height:37.166250pt;}
.h4_c02229{height:48.581988pt;}
.h0_c02229{height:1122.666667pt;}
.w1_c02229{width:793.333333pt;}
.w0_c02229{width:793.626667pt;}
.x0_c02229{left:0.000000pt;}
.xd_c02229{left:104.000000pt;}
.x8_c02229{left:391.999872pt;}
.x4_c02229{left:396.160512pt;}
.xb_c02229{left:400.960000pt;}
.x7_c02229{left:404.799648pt;}
.x5_c02229{left:410.560128pt;}
.x1_c02229{left:411.840000pt;}
.xa_c02229{left:429.760320pt;}
.x9_c02229{left:437.439552pt;}
.x6_c02229{left:438.400512pt;}
.xc_c02229{left:450.560320pt;}
.x3_c02229{left:455.039904pt;}
.x2_c02229{left:468.159648pt;}
.xe_c02229{left:506.560032pt;}
}





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

.ir_c02230:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02230{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02230;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02230{font-family:ff1_c02230;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02230;src:url('chunks/assets/font_4fbdd161898fd43d75feea6c.woff2')format("woff");}.ff2_c02230{font-family:ff2_c02230;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02230;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02230{font-family:ff3_c02230;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02230{vertical-align:0.000000px;}
.v1_c02230{vertical-align:1.439424px;}
.lse_c02230{letter-spacing:-1.197504px;}
.ls9_c02230{letter-spacing:-0.755568px;}
.lsa_c02230{letter-spacing:-0.574992px;}
.lsb_c02230{letter-spacing:-0.361152px;}
.ls11_c02230{letter-spacing:-0.275616px;}
.lsf_c02230{letter-spacing:-0.261360px;}
.ls6_c02230{letter-spacing:-0.242352px;}
.ls3_c02230{letter-spacing:-0.118800px;}
.ls14_c02230{letter-spacing:0.000000px;}
.ls0_c02230{letter-spacing:0.006048px;}
.ls5_c02230{letter-spacing:0.128304px;}
.ls7_c02230{letter-spacing:0.242352px;}
.lsd_c02230{letter-spacing:0.508464px;}
.ls13_c02230{letter-spacing:0.514080px;}
.ls10_c02230{letter-spacing:0.536976px;}
.lsc_c02230{letter-spacing:0.579744px;}
.ls12_c02230{letter-spacing:0.594000px;}
.ls8_c02230{letter-spacing:0.598752px;}
.ls1_c02230{letter-spacing:0.613008px;}
.ls4_c02230{letter-spacing:0.717552px;}
.ls2_c02230{letter-spacing:0.722304px;}
.sc__c02230{text-shadow:none;}
.sc0_c02230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02230{-webkit-text-stroke:0px transparent;}
.sc0_c02230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02230{word-spacing:-15.126048px;}
.wsa_c02230{word-spacing:-12.474000px;}
.ws8_c02230{word-spacing:-12.459744px;}
.ws9_c02230{word-spacing:-12.416976px;}
.ws2_c02230{word-spacing:-12.122352px;}
.ws4_c02230{word-spacing:-11.124432px;}
.ws13_c02230{word-spacing:-2.159136px;}
.wsd_c02230{word-spacing:-0.974160px;}
.wsf_c02230{word-spacing:-0.118800px;}
.ws11_c02230{word-spacing:-0.099792px;}
.ws12_c02230{word-spacing:-0.085536px;}
.wse_c02230{word-spacing:0.000000px;}
.ws10_c02230{word-spacing:0.836352px;}
.wsb_c02230{word-spacing:33.300288px;}
.ws6_c02230{word-spacing:36.742464px;}
.ws1_c02230{word-spacing:37.759392px;}
.ws0_c02230{word-spacing:38.020752px;}
.ws3_c02230{word-spacing:39.218256px;}
.ws5_c02230{word-spacing:39.902544px;}
.ws7_c02230{word-spacing:42.026688px;}
._0_c02230{margin-left:-1.948320px;}
._2_c02230{width:1.482624px;}
._4_c02230{width:3.369168px;}
._5_c02230{width:14.751072px;}
._1_c02230{width:50.252400px;}
._3_c02230{width:51.530688px;}
.fc0_c02230{color:rgb(0,0,0);}
.fs0_c02230{font-size:47.520000px;}
.fs1_c02230{font-size:60.480000px;}
.y0_c02230{bottom:0.000000px;}
.y19_c02230{bottom:146.998362px;}
.y1b_c02230{bottom:186.600234px;}
.y1a_c02230{bottom:196.320450px;}
.y18_c02230{bottom:275.878542px;}
.y17_c02230{bottom:356.878758px;}
.y15_c02230{bottom:406.559730px;}
.y11_c02230{bottom:424.560306px;}
.y16_c02230{bottom:458.759262px;}
.y14_c02230{bottom:491.879514px;}
.y13_c02230{bottom:509.880090px;}
.y10_c02230{bottom:543.000342px;}
.y12_c02230{bottom:559.559874px;}
.yf_c02230{bottom:577.560450px;}
.y1c_c02230{bottom:614.280450px;}
.yb_c02230{bottom:667.558326px;}
.yd_c02230{bottom:707.160234px;}
.yc_c02230{bottom:716.880450px;}
.ya_c02230{bottom:796.438506px;}
.y9_c02230{bottom:877.438722px;}
.y7_c02230{bottom:926.759730px;}
.y3_c02230{bottom:944.760306px;}
.y8_c02230{bottom:979.319226px;}
.y6_c02230{bottom:1012.439478px;}
.y5_c02230{bottom:1030.440054px;}
.y2_c02230{bottom:1063.560306px;}
.y4_c02230{bottom:1079.759874px;}
.y1_c02230{bottom:1097.760450px;}
.ye_c02230{bottom:1134.840450px;}
.h3_c02230{height:32.530781px;}
.h1_c02230{height:41.696016px;}
.h2_c02230{height:41.812031px;}
.h4_c02230{height:54.654737px;}
.h0_c02230{height:1263.000000px;}
.w1_c02230{width:892.500000px;}
.w0_c02230{width:892.830000px;}
.x0_c02230{left:0.000000px;}
.xd_c02230{left:117.000000px;}
.x8_c02230{left:440.999856px;}
.x4_c02230{left:445.680576px;}
.xb_c02230{left:451.080000px;}
.x7_c02230{left:455.399604px;}
.x5_c02230{left:461.880144px;}
.x1_c02230{left:463.320000px;}
.xa_c02230{left:483.480360px;}
.x9_c02230{left:492.119496px;}
.x6_c02230{left:493.200576px;}
.xc_c02230{left:506.880360px;}
.x3_c02230{left:511.919892px;}
.x2_c02230{left:526.679604px;}
@media print{
.v0_c02230{vertical-align:0.000000pt;}
.v1_c02230{vertical-align:1.279488pt;}
.lse_c02230{letter-spacing:-1.064448pt;}
.ls9_c02230{letter-spacing:-0.671616pt;}
.lsa_c02230{letter-spacing:-0.511104pt;}
.lsb_c02230{letter-spacing:-0.321024pt;}
.ls11_c02230{letter-spacing:-0.244992pt;}
.lsf_c02230{letter-spacing:-0.232320pt;}
.ls6_c02230{letter-spacing:-0.215424pt;}
.ls3_c02230{letter-spacing:-0.105600pt;}
.ls14_c02230{letter-spacing:0.000000pt;}
.ls0_c02230{letter-spacing:0.005376pt;}
.ls5_c02230{letter-spacing:0.114048pt;}
.ls7_c02230{letter-spacing:0.215424pt;}
.lsd_c02230{letter-spacing:0.451968pt;}
.ls13_c02230{letter-spacing:0.456960pt;}
.ls10_c02230{letter-spacing:0.477312pt;}
.lsc_c02230{letter-spacing:0.515328pt;}
.ls12_c02230{letter-spacing:0.528000pt;}
.ls8_c02230{letter-spacing:0.532224pt;}
.ls1_c02230{letter-spacing:0.544896pt;}
.ls4_c02230{letter-spacing:0.637824pt;}
.ls2_c02230{letter-spacing:0.642048pt;}
.wsc_c02230{word-spacing:-13.445376pt;}
.wsa_c02230{word-spacing:-11.088000pt;}
.ws8_c02230{word-spacing:-11.075328pt;}
.ws9_c02230{word-spacing:-11.037312pt;}
.ws2_c02230{word-spacing:-10.775424pt;}
.ws4_c02230{word-spacing:-9.888384pt;}
.ws13_c02230{word-spacing:-1.919232pt;}
.wsd_c02230{word-spacing:-0.865920pt;}
.wsf_c02230{word-spacing:-0.105600pt;}
.ws11_c02230{word-spacing:-0.088704pt;}
.ws12_c02230{word-spacing:-0.076032pt;}
.wse_c02230{word-spacing:0.000000pt;}
.ws10_c02230{word-spacing:0.743424pt;}
.wsb_c02230{word-spacing:29.600256pt;}
.ws6_c02230{word-spacing:32.659968pt;}
.ws1_c02230{word-spacing:33.563904pt;}
.ws0_c02230{word-spacing:33.796224pt;}
.ws3_c02230{word-spacing:34.860672pt;}
.ws5_c02230{word-spacing:35.468928pt;}
.ws7_c02230{word-spacing:37.357056pt;}
._0_c02230{margin-left:-1.731840pt;}
._2_c02230{width:1.317888pt;}
._4_c02230{width:2.994816pt;}
._5_c02230{width:13.112064pt;}
._1_c02230{width:44.668800pt;}
._3_c02230{width:45.805056pt;}
.fs0_c02230{font-size:42.240000pt;}
.fs1_c02230{font-size:53.760000pt;}
.y0_c02230{bottom:0.000000pt;}
.y19_c02230{bottom:130.665211pt;}
.y1b_c02230{bottom:165.866875pt;}
.y1a_c02230{bottom:174.507067pt;}
.y18_c02230{bottom:245.225371pt;}
.y17_c02230{bottom:317.225563pt;}
.y15_c02230{bottom:361.386427pt;}
.y11_c02230{bottom:377.386939pt;}
.y16_c02230{bottom:407.786011pt;}
.y14_c02230{bottom:437.226235pt;}
.y13_c02230{bottom:453.226747pt;}
.y10_c02230{bottom:482.666971pt;}
.y12_c02230{bottom:497.386555pt;}
.yf_c02230{bottom:513.387067pt;}
.y1c_c02230{bottom:546.027067pt;}
.yb_c02230{bottom:593.385179pt;}
.yd_c02230{bottom:628.586875pt;}
.yc_c02230{bottom:637.227067pt;}
.ya_c02230{bottom:707.945339pt;}
.y9_c02230{bottom:779.945531pt;}
.y7_c02230{bottom:823.786427pt;}
.y3_c02230{bottom:839.786939pt;}
.y8_c02230{bottom:870.505979pt;}
.y6_c02230{bottom:899.946203pt;}
.y5_c02230{bottom:915.946715pt;}
.y2_c02230{bottom:945.386939pt;}
.y4_c02230{bottom:959.786555pt;}
.y1_c02230{bottom:975.787067pt;}
.ye_c02230{bottom:1008.747067pt;}
.h3_c02230{height:28.916250pt;}
.h1_c02230{height:37.063125pt;}
.h2_c02230{height:37.166250pt;}
.h4_c02230{height:48.581988pt;}
.h0_c02230{height:1122.666667pt;}
.w1_c02230{width:793.333333pt;}
.w0_c02230{width:793.626667pt;}
.x0_c02230{left:0.000000pt;}
.xd_c02230{left:104.000000pt;}
.x8_c02230{left:391.999872pt;}
.x4_c02230{left:396.160512pt;}
.xb_c02230{left:400.960000pt;}
.x7_c02230{left:404.799648pt;}
.x5_c02230{left:410.560128pt;}
.x1_c02230{left:411.840000pt;}
.xa_c02230{left:429.760320pt;}
.x9_c02230{left:437.439552pt;}
.x6_c02230{left:438.400512pt;}
.xc_c02230{left:450.560320pt;}
.x3_c02230{left:455.039904pt;}
.x2_c02230{left:468.159648pt;}
}





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

.ir_c02231:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02231{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02231;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02231{font-family:ff1_c02231;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02231;src:url('chunks/assets/font_4fbdd161898fd43d75feea6c.woff2')format("woff");}.ff2_c02231{font-family:ff2_c02231;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02231;src:url('chunks/assets/font_34f0bef683c49528b09cf62c.woff2')format("woff");}.ff3_c02231{font-family:ff3_c02231;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02231{vertical-align:0.000000px;}
.v1_c02231{vertical-align:1.439424px;}
.lsf_c02231{letter-spacing:-1.197504px;}
.lsb_c02231{letter-spacing:-0.574992px;}
.lsc_c02231{letter-spacing:-0.361152px;}
.ls15_c02231{letter-spacing:-0.280368px;}
.lsa_c02231{letter-spacing:-0.275616px;}
.ls10_c02231{letter-spacing:-0.261360px;}
.ls7_c02231{letter-spacing:-0.242352px;}
.ls4_c02231{letter-spacing:-0.118800px;}
.ls14_c02231{letter-spacing:0.000000px;}
.ls0_c02231{letter-spacing:0.006048px;}
.ls6_c02231{letter-spacing:0.128304px;}
.ls8_c02231{letter-spacing:0.242352px;}
.lse_c02231{letter-spacing:0.508464px;}
.ls13_c02231{letter-spacing:0.514080px;}
.ls11_c02231{letter-spacing:0.536976px;}
.lsd_c02231{letter-spacing:0.579744px;}
.ls12_c02231{letter-spacing:0.594000px;}
.ls9_c02231{letter-spacing:0.598752px;}
.ls2_c02231{letter-spacing:0.613008px;}
.ls1_c02231{letter-spacing:0.674784px;}
.ls5_c02231{letter-spacing:0.717552px;}
.ls3_c02231{letter-spacing:0.722304px;}
.sc__c02231{text-shadow:none;}
.sc0_c02231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02231{-webkit-text-stroke:0px transparent;}
.sc0_c02231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02231{word-spacing:-15.126048px;}
.wsc_c02231{word-spacing:-12.554784px;}
.ws9_c02231{word-spacing:-12.474000px;}
.ws7_c02231{word-spacing:-12.459744px;}
.ws8_c02231{word-spacing:-12.416976px;}
.ws2_c02231{word-spacing:-12.122352px;}
.wsd_c02231{word-spacing:-11.637648px;}
.ws14_c02231{word-spacing:-2.159136px;}
.wse_c02231{word-spacing:-0.974160px;}
.ws10_c02231{word-spacing:-0.118800px;}
.ws13_c02231{word-spacing:-0.099792px;}
.ws11_c02231{word-spacing:-0.085536px;}
.ws15_c02231{word-spacing:-0.080784px;}
.wsf_c02231{word-spacing:0.000000px;}
.ws12_c02231{word-spacing:0.836352px;}
.wsa_c02231{word-spacing:33.300288px;}
.ws5_c02231{word-spacing:36.742464px;}
.ws1_c02231{word-spacing:37.759392px;}
.ws0_c02231{word-spacing:38.020752px;}
.ws3_c02231{word-spacing:39.218256px;}
.ws4_c02231{word-spacing:39.902544px;}
.ws6_c02231{word-spacing:42.026688px;}
._0_c02231{margin-left:-1.948320px;}
._2_c02231{width:1.482624px;}
._4_c02231{width:3.473712px;}
._5_c02231{width:14.751072px;}
._6_c02231{width:20.053440px;}
._1_c02231{width:50.252400px;}
._3_c02231{width:51.530688px;}
.fc0_c02231{color:rgb(0,0,0);}
.fs0_c02231{font-size:47.520000px;}
.fs1_c02231{font-size:60.480000px;}
.y0_c02231{bottom:0.000000px;}
.y19_c02231{bottom:146.998362px;}
.y1b_c02231{bottom:186.600234px;}
.y1a_c02231{bottom:196.320450px;}
.y18_c02231{bottom:275.878542px;}
.y17_c02231{bottom:356.878758px;}
.y15_c02231{bottom:406.559730px;}
.y11_c02231{bottom:424.560306px;}
.y16_c02231{bottom:458.759262px;}
.y14_c02231{bottom:491.879514px;}
.y13_c02231{bottom:509.880090px;}
.y10_c02231{bottom:543.000342px;}
.y12_c02231{bottom:559.559874px;}
.yf_c02231{bottom:577.560450px;}
.y1c_c02231{bottom:614.280450px;}
.yb_c02231{bottom:667.558326px;}
.yd_c02231{bottom:707.160234px;}
.yc_c02231{bottom:716.880450px;}
.ya_c02231{bottom:796.438506px;}
.y9_c02231{bottom:877.438722px;}
.y7_c02231{bottom:926.759730px;}
.y3_c02231{bottom:944.760306px;}
.y8_c02231{bottom:979.319226px;}
.y6_c02231{bottom:1012.439478px;}
.y5_c02231{bottom:1030.440054px;}
.y2_c02231{bottom:1063.560306px;}
.y4_c02231{bottom:1079.759874px;}
.y1_c02231{bottom:1097.760450px;}
.ye_c02231{bottom:1134.840450px;}
.h3_c02231{height:32.530781px;}
.h1_c02231{height:41.696016px;}
.h2_c02231{height:41.812031px;}
.h4_c02231{height:54.654737px;}
.h0_c02231{height:1263.000000px;}
.w1_c02231{width:892.500000px;}
.w0_c02231{width:892.830000px;}
.x0_c02231{left:0.000000px;}
.xd_c02231{left:117.000000px;}
.x8_c02231{left:440.999856px;}
.x4_c02231{left:445.680576px;}
.xb_c02231{left:451.080000px;}
.x7_c02231{left:455.399604px;}
.x5_c02231{left:461.880144px;}
.x1_c02231{left:463.320000px;}
.xa_c02231{left:483.480360px;}
.x9_c02231{left:492.119496px;}
.x6_c02231{left:493.200576px;}
.xc_c02231{left:506.880360px;}
.x3_c02231{left:511.919892px;}
.x2_c02231{left:526.679604px;}
@media print{
.v0_c02231{vertical-align:0.000000pt;}
.v1_c02231{vertical-align:1.279488pt;}
.lsf_c02231{letter-spacing:-1.064448pt;}
.lsb_c02231{letter-spacing:-0.511104pt;}
.lsc_c02231{letter-spacing:-0.321024pt;}
.ls15_c02231{letter-spacing:-0.249216pt;}
.lsa_c02231{letter-spacing:-0.244992pt;}
.ls10_c02231{letter-spacing:-0.232320pt;}
.ls7_c02231{letter-spacing:-0.215424pt;}
.ls4_c02231{letter-spacing:-0.105600pt;}
.ls14_c02231{letter-spacing:0.000000pt;}
.ls0_c02231{letter-spacing:0.005376pt;}
.ls6_c02231{letter-spacing:0.114048pt;}
.ls8_c02231{letter-spacing:0.215424pt;}
.lse_c02231{letter-spacing:0.451968pt;}
.ls13_c02231{letter-spacing:0.456960pt;}
.ls11_c02231{letter-spacing:0.477312pt;}
.lsd_c02231{letter-spacing:0.515328pt;}
.ls12_c02231{letter-spacing:0.528000pt;}
.ls9_c02231{letter-spacing:0.532224pt;}
.ls2_c02231{letter-spacing:0.544896pt;}
.ls1_c02231{letter-spacing:0.599808pt;}
.ls5_c02231{letter-spacing:0.637824pt;}
.ls3_c02231{letter-spacing:0.642048pt;}
.wsb_c02231{word-spacing:-13.445376pt;}
.wsc_c02231{word-spacing:-11.159808pt;}
.ws9_c02231{word-spacing:-11.088000pt;}
.ws7_c02231{word-spacing:-11.075328pt;}
.ws8_c02231{word-spacing:-11.037312pt;}
.ws2_c02231{word-spacing:-10.775424pt;}
.wsd_c02231{word-spacing:-10.344576pt;}
.ws14_c02231{word-spacing:-1.919232pt;}
.wse_c02231{word-spacing:-0.865920pt;}
.ws10_c02231{word-spacing:-0.105600pt;}
.ws13_c02231{word-spacing:-0.088704pt;}
.ws11_c02231{word-spacing:-0.076032pt;}
.ws15_c02231{word-spacing:-0.071808pt;}
.wsf_c02231{word-spacing:0.000000pt;}
.ws12_c02231{word-spacing:0.743424pt;}
.wsa_c02231{word-spacing:29.600256pt;}
.ws5_c02231{word-spacing:32.659968pt;}
.ws1_c02231{word-spacing:33.563904pt;}
.ws0_c02231{word-spacing:33.796224pt;}
.ws3_c02231{word-spacing:34.860672pt;}
.ws4_c02231{word-spacing:35.468928pt;}
.ws6_c02231{word-spacing:37.357056pt;}
._0_c02231{margin-left:-1.731840pt;}
._2_c02231{width:1.317888pt;}
._4_c02231{width:3.087744pt;}
._5_c02231{width:13.112064pt;}
._6_c02231{width:17.825280pt;}
._1_c02231{width:44.668800pt;}
._3_c02231{width:45.805056pt;}
.fs0_c02231{font-size:42.240000pt;}
.fs1_c02231{font-size:53.760000pt;}
.y0_c02231{bottom:0.000000pt;}
.y19_c02231{bottom:130.665211pt;}
.y1b_c02231{bottom:165.866875pt;}
.y1a_c02231{bottom:174.507067pt;}
.y18_c02231{bottom:245.225371pt;}
.y17_c02231{bottom:317.225563pt;}
.y15_c02231{bottom:361.386427pt;}
.y11_c02231{bottom:377.386939pt;}
.y16_c02231{bottom:407.786011pt;}
.y14_c02231{bottom:437.226235pt;}
.y13_c02231{bottom:453.226747pt;}
.y10_c02231{bottom:482.666971pt;}
.y12_c02231{bottom:497.386555pt;}
.yf_c02231{bottom:513.387067pt;}
.y1c_c02231{bottom:546.027067pt;}
.yb_c02231{bottom:593.385179pt;}
.yd_c02231{bottom:628.586875pt;}
.yc_c02231{bottom:637.227067pt;}
.ya_c02231{bottom:707.945339pt;}
.y9_c02231{bottom:779.945531pt;}
.y7_c02231{bottom:823.786427pt;}
.y3_c02231{bottom:839.786939pt;}
.y8_c02231{bottom:870.505979pt;}
.y6_c02231{bottom:899.946203pt;}
.y5_c02231{bottom:915.946715pt;}
.y2_c02231{bottom:945.386939pt;}
.y4_c02231{bottom:959.786555pt;}
.y1_c02231{bottom:975.787067pt;}
.ye_c02231{bottom:1008.747067pt;}
.h3_c02231{height:28.916250pt;}
.h1_c02231{height:37.063125pt;}
.h2_c02231{height:37.166250pt;}
.h4_c02231{height:48.581988pt;}
.h0_c02231{height:1122.666667pt;}
.w1_c02231{width:793.333333pt;}
.w0_c02231{width:793.626667pt;}
.x0_c02231{left:0.000000pt;}
.xd_c02231{left:104.000000pt;}
.x8_c02231{left:391.999872pt;}
.x4_c02231{left:396.160512pt;}
.xb_c02231{left:400.960000pt;}
.x7_c02231{left:404.799648pt;}
.x5_c02231{left:410.560128pt;}
.x1_c02231{left:411.840000pt;}
.xa_c02231{left:429.760320pt;}
.x9_c02231{left:437.439552pt;}
.x6_c02231{left:438.400512pt;}
.xc_c02231{left:450.560320pt;}
.x3_c02231{left:455.039904pt;}
.x2_c02231{left:468.159648pt;}
}





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

.ir_c02232:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02232{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02232;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02232{font-family:ff1_c02232;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02232;src:url('chunks/assets/font_4ee2bdff2175f159b9199266.woff2')format("woff");}.ff2_c02232{font-family:ff2_c02232;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02232;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02232{font-family:ff3_c02232;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02232{vertical-align:0.000000px;}
.v1_c02232{vertical-align:1.439424px;}
.lse_c02232{letter-spacing:-1.197504px;}
.lsa_c02232{letter-spacing:-0.574992px;}
.lsb_c02232{letter-spacing:-0.361152px;}
.ls9_c02232{letter-spacing:-0.275616px;}
.ls10_c02232{letter-spacing:-0.261360px;}
.ls6_c02232{letter-spacing:-0.242352px;}
.ls3_c02232{letter-spacing:-0.118800px;}
.ls14_c02232{letter-spacing:0.000000px;}
.ls0_c02232{letter-spacing:0.006048px;}
.lsf_c02232{letter-spacing:0.042768px;}
.ls5_c02232{letter-spacing:0.128304px;}
.ls7_c02232{letter-spacing:0.242352px;}
.lsd_c02232{letter-spacing:0.508464px;}
.ls13_c02232{letter-spacing:0.514080px;}
.ls11_c02232{letter-spacing:0.536976px;}
.lsc_c02232{letter-spacing:0.579744px;}
.ls12_c02232{letter-spacing:0.594000px;}
.ls8_c02232{letter-spacing:0.598752px;}
.ls1_c02232{letter-spacing:0.613008px;}
.ls4_c02232{letter-spacing:0.717552px;}
.ls2_c02232{letter-spacing:0.722304px;}
.sc__c02232{text-shadow:none;}
.sc0_c02232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02232{-webkit-text-stroke:0px transparent;}
.sc0_c02232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02232{word-spacing:-15.126048px;}
.wsa_c02232{word-spacing:-12.474000px;}
.ws9_c02232{word-spacing:-12.416976px;}
.ws2_c02232{word-spacing:-12.122352px;}
.ws14_c02232{word-spacing:-2.159136px;}
.ws12_c02232{word-spacing:-1.083456px;}
.wsd_c02232{word-spacing:-0.974160px;}
.wsf_c02232{word-spacing:-0.118800px;}
.ws13_c02232{word-spacing:-0.099792px;}
.ws10_c02232{word-spacing:-0.085536px;}
.wse_c02232{word-spacing:0.000000px;}
.ws11_c02232{word-spacing:0.836352px;}
.ws8_c02232{word-spacing:3.155328px;}
.wsb_c02232{word-spacing:33.300288px;}
.ws7_c02232{word-spacing:36.143712px;}
.ws5_c02232{word-spacing:36.742464px;}
.ws1_c02232{word-spacing:37.759392px;}
.ws0_c02232{word-spacing:38.020752px;}
.ws3_c02232{word-spacing:39.218256px;}
.ws4_c02232{word-spacing:39.902544px;}
.ws6_c02232{word-spacing:42.026688px;}
._0_c02232{margin-left:-1.948320px;}
._2_c02232{width:1.482624px;}
._4_c02232{width:3.473712px;}
._9_c02232{width:14.751072px;}
._5_c02232{width:17.444592px;}
._6_c02232{width:19.416672px;}
._7_c02232{width:21.122640px;}
._8_c02232{width:22.676544px;}
._1_c02232{width:50.252400px;}
._3_c02232{width:51.530688px;}
.fc0_c02232{color:rgb(0,0,0);}
.fs0_c02232{font-size:47.520000px;}
.fs1_c02232{font-size:60.480000px;}
.y0_c02232{bottom:0.000000px;}
.y1b_c02232{bottom:146.998362px;}
.y1d_c02232{bottom:186.600234px;}
.y1c_c02232{bottom:196.320450px;}
.y1a_c02232{bottom:275.878542px;}
.y19_c02232{bottom:341.759082px;}
.y18_c02232{bottom:356.878758px;}
.y16_c02232{bottom:406.559730px;}
.y12_c02232{bottom:424.560306px;}
.y17_c02232{bottom:458.759262px;}
.y15_c02232{bottom:491.879514px;}
.y14_c02232{bottom:509.880090px;}
.y11_c02232{bottom:543.000342px;}
.y13_c02232{bottom:559.559874px;}
.y10_c02232{bottom:577.560450px;}
.y1e_c02232{bottom:614.280450px;}
.yc_c02232{bottom:667.559514px;}
.ye_c02232{bottom:707.160234px;}
.yd_c02232{bottom:716.880450px;}
.yb_c02232{bottom:796.439694px;}
.ya_c02232{bottom:862.319046px;}
.y9_c02232{bottom:877.438722px;}
.y7_c02232{bottom:926.759730px;}
.y3_c02232{bottom:944.760306px;}
.y8_c02232{bottom:979.319226px;}
.y6_c02232{bottom:1012.439478px;}
.y5_c02232{bottom:1030.440054px;}
.y2_c02232{bottom:1063.560306px;}
.y4_c02232{bottom:1079.759874px;}
.y1_c02232{bottom:1097.760450px;}
.yf_c02232{bottom:1134.840450px;}
.h3_c02232{height:32.530781px;}
.h1_c02232{height:41.696016px;}
.h2_c02232{height:41.812031px;}
.h4_c02232{height:54.654737px;}
.h0_c02232{height:1263.000000px;}
.w1_c02232{width:892.500000px;}
.w0_c02232{width:892.830000px;}
.x0_c02232{left:0.000000px;}
.xe_c02232{left:117.000000px;}
.x8_c02232{left:440.999856px;}
.x4_c02232{left:445.680576px;}
.xc_c02232{left:451.080000px;}
.x7_c02232{left:455.399604px;}
.x5_c02232{left:461.880144px;}
.x1_c02232{left:463.320000px;}
.xb_c02232{left:483.480360px;}
.x9_c02232{left:492.119496px;}
.x6_c02232{left:493.200576px;}
.xd_c02232{left:506.880360px;}
.x3_c02232{left:511.919892px;}
.x2_c02232{left:526.679604px;}
.xa_c02232{left:569.880036px;}
@media print{
.v0_c02232{vertical-align:0.000000pt;}
.v1_c02232{vertical-align:1.279488pt;}
.lse_c02232{letter-spacing:-1.064448pt;}
.lsa_c02232{letter-spacing:-0.511104pt;}
.lsb_c02232{letter-spacing:-0.321024pt;}
.ls9_c02232{letter-spacing:-0.244992pt;}
.ls10_c02232{letter-spacing:-0.232320pt;}
.ls6_c02232{letter-spacing:-0.215424pt;}
.ls3_c02232{letter-spacing:-0.105600pt;}
.ls14_c02232{letter-spacing:0.000000pt;}
.ls0_c02232{letter-spacing:0.005376pt;}
.lsf_c02232{letter-spacing:0.038016pt;}
.ls5_c02232{letter-spacing:0.114048pt;}
.ls7_c02232{letter-spacing:0.215424pt;}
.lsd_c02232{letter-spacing:0.451968pt;}
.ls13_c02232{letter-spacing:0.456960pt;}
.ls11_c02232{letter-spacing:0.477312pt;}
.lsc_c02232{letter-spacing:0.515328pt;}
.ls12_c02232{letter-spacing:0.528000pt;}
.ls8_c02232{letter-spacing:0.532224pt;}
.ls1_c02232{letter-spacing:0.544896pt;}
.ls4_c02232{letter-spacing:0.637824pt;}
.ls2_c02232{letter-spacing:0.642048pt;}
.wsc_c02232{word-spacing:-13.445376pt;}
.wsa_c02232{word-spacing:-11.088000pt;}
.ws9_c02232{word-spacing:-11.037312pt;}
.ws2_c02232{word-spacing:-10.775424pt;}
.ws14_c02232{word-spacing:-1.919232pt;}
.ws12_c02232{word-spacing:-0.963072pt;}
.wsd_c02232{word-spacing:-0.865920pt;}
.wsf_c02232{word-spacing:-0.105600pt;}
.ws13_c02232{word-spacing:-0.088704pt;}
.ws10_c02232{word-spacing:-0.076032pt;}
.wse_c02232{word-spacing:0.000000pt;}
.ws11_c02232{word-spacing:0.743424pt;}
.ws8_c02232{word-spacing:2.804736pt;}
.wsb_c02232{word-spacing:29.600256pt;}
.ws7_c02232{word-spacing:32.127744pt;}
.ws5_c02232{word-spacing:32.659968pt;}
.ws1_c02232{word-spacing:33.563904pt;}
.ws0_c02232{word-spacing:33.796224pt;}
.ws3_c02232{word-spacing:34.860672pt;}
.ws4_c02232{word-spacing:35.468928pt;}
.ws6_c02232{word-spacing:37.357056pt;}
._0_c02232{margin-left:-1.731840pt;}
._2_c02232{width:1.317888pt;}
._4_c02232{width:3.087744pt;}
._9_c02232{width:13.112064pt;}
._5_c02232{width:15.506304pt;}
._6_c02232{width:17.259264pt;}
._7_c02232{width:18.775680pt;}
._8_c02232{width:20.156928pt;}
._1_c02232{width:44.668800pt;}
._3_c02232{width:45.805056pt;}
.fs0_c02232{font-size:42.240000pt;}
.fs1_c02232{font-size:53.760000pt;}
.y0_c02232{bottom:0.000000pt;}
.y1b_c02232{bottom:130.665211pt;}
.y1d_c02232{bottom:165.866875pt;}
.y1c_c02232{bottom:174.507067pt;}
.y1a_c02232{bottom:245.225371pt;}
.y19_c02232{bottom:303.785851pt;}
.y18_c02232{bottom:317.225563pt;}
.y16_c02232{bottom:361.386427pt;}
.y12_c02232{bottom:377.386939pt;}
.y17_c02232{bottom:407.786011pt;}
.y15_c02232{bottom:437.226235pt;}
.y14_c02232{bottom:453.226747pt;}
.y11_c02232{bottom:482.666971pt;}
.y13_c02232{bottom:497.386555pt;}
.y10_c02232{bottom:513.387067pt;}
.y1e_c02232{bottom:546.027067pt;}
.yc_c02232{bottom:593.386235pt;}
.ye_c02232{bottom:628.586875pt;}
.yd_c02232{bottom:637.227067pt;}
.yb_c02232{bottom:707.946395pt;}
.ya_c02232{bottom:766.505819pt;}
.y9_c02232{bottom:779.945531pt;}
.y7_c02232{bottom:823.786427pt;}
.y3_c02232{bottom:839.786939pt;}
.y8_c02232{bottom:870.505979pt;}
.y6_c02232{bottom:899.946203pt;}
.y5_c02232{bottom:915.946715pt;}
.y2_c02232{bottom:945.386939pt;}
.y4_c02232{bottom:959.786555pt;}
.y1_c02232{bottom:975.787067pt;}
.yf_c02232{bottom:1008.747067pt;}
.h3_c02232{height:28.916250pt;}
.h1_c02232{height:37.063125pt;}
.h2_c02232{height:37.166250pt;}
.h4_c02232{height:48.581988pt;}
.h0_c02232{height:1122.666667pt;}
.w1_c02232{width:793.333333pt;}
.w0_c02232{width:793.626667pt;}
.x0_c02232{left:0.000000pt;}
.xe_c02232{left:104.000000pt;}
.x8_c02232{left:391.999872pt;}
.x4_c02232{left:396.160512pt;}
.xc_c02232{left:400.960000pt;}
.x7_c02232{left:404.799648pt;}
.x5_c02232{left:410.560128pt;}
.x1_c02232{left:411.840000pt;}
.xb_c02232{left:429.760320pt;}
.x9_c02232{left:437.439552pt;}
.x6_c02232{left:438.400512pt;}
.xd_c02232{left:450.560320pt;}
.x3_c02232{left:455.039904pt;}
.x2_c02232{left:468.159648pt;}
.xa_c02232{left:506.560032pt;}
}





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

.ir_c02233:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02233{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02233;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02233{font-family:ff1_c02233;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02233;src:url('chunks/assets/font_3c14d5c17bd44a9019171060.woff2')format("woff");}.ff2_c02233{font-family:ff2_c02233;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02233;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02233{font-family:ff3_c02233;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02233{vertical-align:0.000000px;}
.v1_c02233{vertical-align:1.439424px;}
.lsf_c02233{letter-spacing:-1.197504px;}
.lsb_c02233{letter-spacing:-0.574992px;}
.lsc_c02233{letter-spacing:-0.361152px;}
.ls13_c02233{letter-spacing:-0.275616px;}
.lsa_c02233{letter-spacing:-0.270864px;}
.ls17_c02233{letter-spacing:-0.266112px;}
.ls11_c02233{letter-spacing:-0.261360px;}
.ls7_c02233{letter-spacing:-0.242352px;}
.ls4_c02233{letter-spacing:-0.118800px;}
.ls16_c02233{letter-spacing:0.000000px;}
.ls0_c02233{letter-spacing:0.006048px;}
.ls10_c02233{letter-spacing:0.042768px;}
.ls2_c02233{letter-spacing:0.071280px;}
.ls6_c02233{letter-spacing:0.128304px;}
.ls8_c02233{letter-spacing:0.242352px;}
.lse_c02233{letter-spacing:0.508464px;}
.ls15_c02233{letter-spacing:0.514080px;}
.ls12_c02233{letter-spacing:0.536976px;}
.lsd_c02233{letter-spacing:0.579744px;}
.ls14_c02233{letter-spacing:0.594000px;}
.ls9_c02233{letter-spacing:0.598752px;}
.ls3_c02233{letter-spacing:0.613008px;}
.ls5_c02233{letter-spacing:0.717552px;}
.ls1_c02233{letter-spacing:0.722304px;}
.sc__c02233{text-shadow:none;}
.sc0_c02233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02233{-webkit-text-stroke:0px transparent;}
.sc0_c02233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02233{word-spacing:-15.126048px;}
.wsa_c02233{word-spacing:-12.474000px;}
.ws9_c02233{word-spacing:-12.416976px;}
.ws2_c02233{word-spacing:-12.122352px;}
.wse_c02233{word-spacing:-11.951280px;}
.ws17_c02233{word-spacing:-2.159136px;}
.ws14_c02233{word-spacing:-1.083456px;}
.wsf_c02233{word-spacing:-0.974160px;}
.ws11_c02233{word-spacing:-0.118800px;}
.ws15_c02233{word-spacing:-0.099792px;}
.ws18_c02233{word-spacing:-0.095040px;}
.ws12_c02233{word-spacing:-0.090288px;}
.ws16_c02233{word-spacing:-0.085536px;}
.ws10_c02233{word-spacing:0.000000px;}
.ws13_c02233{word-spacing:0.836352px;}
.ws8_c02233{word-spacing:3.155328px;}
.wsd_c02233{word-spacing:32.883840px;}
.wsb_c02233{word-spacing:33.300288px;}
.ws7_c02233{word-spacing:36.143712px;}
.ws5_c02233{word-spacing:36.742464px;}
.ws1_c02233{word-spacing:37.759392px;}
.ws0_c02233{word-spacing:38.020752px;}
.ws3_c02233{word-spacing:39.218256px;}
.ws4_c02233{word-spacing:39.902544px;}
.ws6_c02233{word-spacing:42.026688px;}
._0_c02233{margin-left:-1.948320px;}
._2_c02233{width:1.482624px;}
._4_c02233{width:3.449952px;}
._9_c02233{width:14.751072px;}
._5_c02233{width:17.444592px;}
._6_c02233{width:19.416672px;}
._7_c02233{width:21.122640px;}
._8_c02233{width:22.676544px;}
._a_c02233{width:45.852048px;}
._1_c02233{width:50.252400px;}
._3_c02233{width:51.530688px;}
.fc0_c02233{color:rgb(0,0,0);}
.fs0_c02233{font-size:47.520000px;}
.fs1_c02233{font-size:60.480000px;}
.y0_c02233{bottom:0.000000px;}
.y1c_c02233{bottom:146.999550px;}
.y1e_c02233{bottom:186.600234px;}
.y1d_c02233{bottom:196.320450px;}
.y1b_c02233{bottom:275.879730px;}
.y1a_c02233{bottom:341.760270px;}
.y19_c02233{bottom:356.879946px;}
.y16_c02233{bottom:406.559730px;}
.y12_c02233{bottom:424.560306px;}
.y18_c02233{bottom:443.999550px;}
.y17_c02233{bottom:458.759262px;}
.y15_c02233{bottom:491.879514px;}
.y14_c02233{bottom:509.880090px;}
.y11_c02233{bottom:543.000342px;}
.y13_c02233{bottom:559.559874px;}
.y10_c02233{bottom:577.560450px;}
.y1f_c02233{bottom:614.280450px;}
.yc_c02233{bottom:667.559514px;}
.ye_c02233{bottom:707.160234px;}
.yd_c02233{bottom:716.880450px;}
.yb_c02233{bottom:796.439694px;}
.ya_c02233{bottom:862.319046px;}
.y9_c02233{bottom:877.438722px;}
.y7_c02233{bottom:926.759730px;}
.y3_c02233{bottom:944.760306px;}
.y8_c02233{bottom:979.319226px;}
.y6_c02233{bottom:1012.439478px;}
.y5_c02233{bottom:1030.440054px;}
.y2_c02233{bottom:1063.560306px;}
.y4_c02233{bottom:1079.759874px;}
.y1_c02233{bottom:1097.760450px;}
.yf_c02233{bottom:1134.840450px;}
.h3_c02233{height:32.530781px;}
.h1_c02233{height:41.696016px;}
.h2_c02233{height:41.812031px;}
.h4_c02233{height:54.654737px;}
.h0_c02233{height:1263.000000px;}
.w1_c02233{width:892.500000px;}
.w0_c02233{width:892.830000px;}
.x0_c02233{left:0.000000px;}
.xe_c02233{left:117.000000px;}
.x8_c02233{left:440.999856px;}
.x4_c02233{left:445.680576px;}
.xc_c02233{left:451.080000px;}
.x7_c02233{left:455.399604px;}
.x5_c02233{left:461.880144px;}
.x1_c02233{left:463.320000px;}
.xb_c02233{left:483.480360px;}
.x9_c02233{left:492.119496px;}
.x6_c02233{left:493.200576px;}
.xd_c02233{left:506.880360px;}
.x3_c02233{left:511.919892px;}
.x2_c02233{left:526.679604px;}
.xa_c02233{left:569.880036px;}
@media print{
.v0_c02233{vertical-align:0.000000pt;}
.v1_c02233{vertical-align:1.279488pt;}
.lsf_c02233{letter-spacing:-1.064448pt;}
.lsb_c02233{letter-spacing:-0.511104pt;}
.lsc_c02233{letter-spacing:-0.321024pt;}
.ls13_c02233{letter-spacing:-0.244992pt;}
.lsa_c02233{letter-spacing:-0.240768pt;}
.ls17_c02233{letter-spacing:-0.236544pt;}
.ls11_c02233{letter-spacing:-0.232320pt;}
.ls7_c02233{letter-spacing:-0.215424pt;}
.ls4_c02233{letter-spacing:-0.105600pt;}
.ls16_c02233{letter-spacing:0.000000pt;}
.ls0_c02233{letter-spacing:0.005376pt;}
.ls10_c02233{letter-spacing:0.038016pt;}
.ls2_c02233{letter-spacing:0.063360pt;}
.ls6_c02233{letter-spacing:0.114048pt;}
.ls8_c02233{letter-spacing:0.215424pt;}
.lse_c02233{letter-spacing:0.451968pt;}
.ls15_c02233{letter-spacing:0.456960pt;}
.ls12_c02233{letter-spacing:0.477312pt;}
.lsd_c02233{letter-spacing:0.515328pt;}
.ls14_c02233{letter-spacing:0.528000pt;}
.ls9_c02233{letter-spacing:0.532224pt;}
.ls3_c02233{letter-spacing:0.544896pt;}
.ls5_c02233{letter-spacing:0.637824pt;}
.ls1_c02233{letter-spacing:0.642048pt;}
.wsc_c02233{word-spacing:-13.445376pt;}
.wsa_c02233{word-spacing:-11.088000pt;}
.ws9_c02233{word-spacing:-11.037312pt;}
.ws2_c02233{word-spacing:-10.775424pt;}
.wse_c02233{word-spacing:-10.623360pt;}
.ws17_c02233{word-spacing:-1.919232pt;}
.ws14_c02233{word-spacing:-0.963072pt;}
.wsf_c02233{word-spacing:-0.865920pt;}
.ws11_c02233{word-spacing:-0.105600pt;}
.ws15_c02233{word-spacing:-0.088704pt;}
.ws18_c02233{word-spacing:-0.084480pt;}
.ws12_c02233{word-spacing:-0.080256pt;}
.ws16_c02233{word-spacing:-0.076032pt;}
.ws10_c02233{word-spacing:0.000000pt;}
.ws13_c02233{word-spacing:0.743424pt;}
.ws8_c02233{word-spacing:2.804736pt;}
.wsd_c02233{word-spacing:29.230080pt;}
.wsb_c02233{word-spacing:29.600256pt;}
.ws7_c02233{word-spacing:32.127744pt;}
.ws5_c02233{word-spacing:32.659968pt;}
.ws1_c02233{word-spacing:33.563904pt;}
.ws0_c02233{word-spacing:33.796224pt;}
.ws3_c02233{word-spacing:34.860672pt;}
.ws4_c02233{word-spacing:35.468928pt;}
.ws6_c02233{word-spacing:37.357056pt;}
._0_c02233{margin-left:-1.731840pt;}
._2_c02233{width:1.317888pt;}
._4_c02233{width:3.066624pt;}
._9_c02233{width:13.112064pt;}
._5_c02233{width:15.506304pt;}
._6_c02233{width:17.259264pt;}
._7_c02233{width:18.775680pt;}
._8_c02233{width:20.156928pt;}
._a_c02233{width:40.757376pt;}
._1_c02233{width:44.668800pt;}
._3_c02233{width:45.805056pt;}
.fs0_c02233{font-size:42.240000pt;}
.fs1_c02233{font-size:53.760000pt;}
.y0_c02233{bottom:0.000000pt;}
.y1c_c02233{bottom:130.666267pt;}
.y1e_c02233{bottom:165.866875pt;}
.y1d_c02233{bottom:174.507067pt;}
.y1b_c02233{bottom:245.226427pt;}
.y1a_c02233{bottom:303.786907pt;}
.y19_c02233{bottom:317.226619pt;}
.y16_c02233{bottom:361.386427pt;}
.y12_c02233{bottom:377.386939pt;}
.y18_c02233{bottom:394.666267pt;}
.y17_c02233{bottom:407.786011pt;}
.y15_c02233{bottom:437.226235pt;}
.y14_c02233{bottom:453.226747pt;}
.y11_c02233{bottom:482.666971pt;}
.y13_c02233{bottom:497.386555pt;}
.y10_c02233{bottom:513.387067pt;}
.y1f_c02233{bottom:546.027067pt;}
.yc_c02233{bottom:593.386235pt;}
.ye_c02233{bottom:628.586875pt;}
.yd_c02233{bottom:637.227067pt;}
.yb_c02233{bottom:707.946395pt;}
.ya_c02233{bottom:766.505819pt;}
.y9_c02233{bottom:779.945531pt;}
.y7_c02233{bottom:823.786427pt;}
.y3_c02233{bottom:839.786939pt;}
.y8_c02233{bottom:870.505979pt;}
.y6_c02233{bottom:899.946203pt;}
.y5_c02233{bottom:915.946715pt;}
.y2_c02233{bottom:945.386939pt;}
.y4_c02233{bottom:959.786555pt;}
.y1_c02233{bottom:975.787067pt;}
.yf_c02233{bottom:1008.747067pt;}
.h3_c02233{height:28.916250pt;}
.h1_c02233{height:37.063125pt;}
.h2_c02233{height:37.166250pt;}
.h4_c02233{height:48.581988pt;}
.h0_c02233{height:1122.666667pt;}
.w1_c02233{width:793.333333pt;}
.w0_c02233{width:793.626667pt;}
.x0_c02233{left:0.000000pt;}
.xe_c02233{left:104.000000pt;}
.x8_c02233{left:391.999872pt;}
.x4_c02233{left:396.160512pt;}
.xc_c02233{left:400.960000pt;}
.x7_c02233{left:404.799648pt;}
.x5_c02233{left:410.560128pt;}
.x1_c02233{left:411.840000pt;}
.xb_c02233{left:429.760320pt;}
.x9_c02233{left:437.439552pt;}
.x6_c02233{left:438.400512pt;}
.xd_c02233{left:450.560320pt;}
.x3_c02233{left:455.039904pt;}
.x2_c02233{left:468.159648pt;}
.xa_c02233{left:506.560032pt;}
}





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

.ir_c02234:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02234{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02234;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02234{font-family:ff1_c02234;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02234;src:url('chunks/assets/font_4518fd2497fec59211bae902.woff2')format("woff");}.ff2_c02234{font-family:ff2_c02234;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02234;src:url('chunks/assets/font_34f0bef683c49528b09cf62c.woff2')format("woff");}.ff3_c02234{font-family:ff3_c02234;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02234{vertical-align:0.000000px;}
.v2_c02234{vertical-align:1.439424px;}
.v1_c02234{vertical-align:7.199280px;}
.lsd_c02234{letter-spacing:-1.197504px;}
.ls15_c02234{letter-spacing:-0.755568px;}
.ls9_c02234{letter-spacing:-0.574992px;}
.lsa_c02234{letter-spacing:-0.361152px;}
.ls10_c02234{letter-spacing:-0.275616px;}
.lse_c02234{letter-spacing:-0.261360px;}
.ls7_c02234{letter-spacing:-0.242352px;}
.ls5_c02234{letter-spacing:-0.118800px;}
.ls13_c02234{letter-spacing:0.000000px;}
.ls1_c02234{letter-spacing:0.006048px;}
.ls16_c02234{letter-spacing:0.042768px;}
.ls6_c02234{letter-spacing:0.128304px;}
.ls14_c02234{letter-spacing:0.242352px;}
.lsc_c02234{letter-spacing:0.508464px;}
.ls12_c02234{letter-spacing:0.514080px;}
.lsf_c02234{letter-spacing:0.536976px;}
.lsb_c02234{letter-spacing:0.579744px;}
.ls11_c02234{letter-spacing:0.594000px;}
.ls8_c02234{letter-spacing:0.598752px;}
.ls3_c02234{letter-spacing:0.613008px;}
.ls0_c02234{letter-spacing:0.651024px;}
.ls2_c02234{letter-spacing:0.717552px;}
.ls4_c02234{letter-spacing:0.722304px;}
.sc__c02234{text-shadow:none;}
.sc0_c02234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02234{-webkit-text-stroke:0px transparent;}
.sc0_c02234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02234{word-spacing:-15.126048px;}
.ws2_c02234{word-spacing:-12.602304px;}
.wsa_c02234{word-spacing:-12.474000px;}
.ws8_c02234{word-spacing:-12.459744px;}
.ws9_c02234{word-spacing:-12.416976px;}
.wsd_c02234{word-spacing:-12.122352px;}
.wse_c02234{word-spacing:-11.124432px;}
.ws18_c02234{word-spacing:-2.159136px;}
.ws1a_c02234{word-spacing:-1.083456px;}
.ws19_c02234{word-spacing:-1.078704px;}
.ws13_c02234{word-spacing:-1.012176px;}
.ws11_c02234{word-spacing:-0.974160px;}
.ws14_c02234{word-spacing:-0.118800px;}
.ws16_c02234{word-spacing:-0.099792px;}
.ws17_c02234{word-spacing:-0.085536px;}
.ws12_c02234{word-spacing:0.000000px;}
.ws15_c02234{word-spacing:0.836352px;}
.ws10_c02234{word-spacing:3.155328px;}
.ws4_c02234{word-spacing:4.951584px;}
.wsb_c02234{word-spacing:33.300288px;}
.wsf_c02234{word-spacing:36.143712px;}
.ws6_c02234{word-spacing:36.742464px;}
.ws1_c02234{word-spacing:37.759392px;}
.ws0_c02234{word-spacing:38.020752px;}
.ws3_c02234{word-spacing:39.218256px;}
.ws5_c02234{word-spacing:39.902544px;}
.ws7_c02234{word-spacing:42.026688px;}
._0_c02234{margin-left:-1.948320px;}
._2_c02234{width:1.482624px;}
._4_c02234{width:2.770416px;}
._5_c02234{width:14.751072px;}
._6_c02234{width:17.444592px;}
._7_c02234{width:19.416672px;}
._8_c02234{width:21.122640px;}
._9_c02234{width:22.676544px;}
._1_c02234{width:50.252400px;}
._3_c02234{width:51.530688px;}
.fc0_c02234{color:rgb(0,0,0);}
.fs0_c02234{font-size:47.520000px;}
.fs1_c02234{font-size:60.480000px;}
.y0_c02234{bottom:0.000000px;}
.y1a_c02234{bottom:146.998362px;}
.y1c_c02234{bottom:186.600234px;}
.y1b_c02234{bottom:196.320450px;}
.y19_c02234{bottom:275.878542px;}
.y18_c02234{bottom:341.759082px;}
.y17_c02234{bottom:356.878758px;}
.y15_c02234{bottom:406.559730px;}
.y11_c02234{bottom:424.560306px;}
.y16_c02234{bottom:458.759262px;}
.y14_c02234{bottom:491.879514px;}
.y13_c02234{bottom:509.880090px;}
.y10_c02234{bottom:543.000342px;}
.y12_c02234{bottom:559.559874px;}
.yf_c02234{bottom:577.560450px;}
.y1d_c02234{bottom:614.280450px;}
.yb_c02234{bottom:667.558326px;}
.yd_c02234{bottom:707.160234px;}
.yc_c02234{bottom:716.880450px;}
.ya_c02234{bottom:796.438506px;}
.y9_c02234{bottom:877.438722px;}
.y7_c02234{bottom:926.759730px;}
.y3_c02234{bottom:944.760306px;}
.y8_c02234{bottom:979.319226px;}
.y6_c02234{bottom:1012.439478px;}
.y5_c02234{bottom:1030.440054px;}
.y2_c02234{bottom:1063.560306px;}
.y4_c02234{bottom:1079.759874px;}
.y1_c02234{bottom:1097.760450px;}
.ye_c02234{bottom:1134.840450px;}
.h4_c02234{height:32.530781px;}
.h1_c02234{height:41.696016px;}
.h2_c02234{height:41.812031px;}
.h3_c02234{height:49.011311px;}
.h5_c02234{height:54.654737px;}
.h0_c02234{height:1263.000000px;}
.w1_c02234{width:892.500000px;}
.w0_c02234{width:892.830000px;}
.x0_c02234{left:0.000000px;}
.xd_c02234{left:117.000000px;}
.x8_c02234{left:440.999856px;}
.x4_c02234{left:445.680576px;}
.xb_c02234{left:451.080000px;}
.x7_c02234{left:455.399604px;}
.x5_c02234{left:461.880144px;}
.x1_c02234{left:463.320000px;}
.xa_c02234{left:483.480360px;}
.x9_c02234{left:492.119496px;}
.x6_c02234{left:493.200576px;}
.xc_c02234{left:506.880360px;}
.x3_c02234{left:511.919892px;}
.x2_c02234{left:526.679604px;}
.xe_c02234{left:569.880036px;}
@media print{
.v0_c02234{vertical-align:0.000000pt;}
.v2_c02234{vertical-align:1.279488pt;}
.v1_c02234{vertical-align:6.399360pt;}
.lsd_c02234{letter-spacing:-1.064448pt;}
.ls15_c02234{letter-spacing:-0.671616pt;}
.ls9_c02234{letter-spacing:-0.511104pt;}
.lsa_c02234{letter-spacing:-0.321024pt;}
.ls10_c02234{letter-spacing:-0.244992pt;}
.lse_c02234{letter-spacing:-0.232320pt;}
.ls7_c02234{letter-spacing:-0.215424pt;}
.ls5_c02234{letter-spacing:-0.105600pt;}
.ls13_c02234{letter-spacing:0.000000pt;}
.ls1_c02234{letter-spacing:0.005376pt;}
.ls16_c02234{letter-spacing:0.038016pt;}
.ls6_c02234{letter-spacing:0.114048pt;}
.ls14_c02234{letter-spacing:0.215424pt;}
.lsc_c02234{letter-spacing:0.451968pt;}
.ls12_c02234{letter-spacing:0.456960pt;}
.lsf_c02234{letter-spacing:0.477312pt;}
.lsb_c02234{letter-spacing:0.515328pt;}
.ls11_c02234{letter-spacing:0.528000pt;}
.ls8_c02234{letter-spacing:0.532224pt;}
.ls3_c02234{letter-spacing:0.544896pt;}
.ls0_c02234{letter-spacing:0.578688pt;}
.ls2_c02234{letter-spacing:0.637824pt;}
.ls4_c02234{letter-spacing:0.642048pt;}
.wsc_c02234{word-spacing:-13.445376pt;}
.ws2_c02234{word-spacing:-11.202048pt;}
.wsa_c02234{word-spacing:-11.088000pt;}
.ws8_c02234{word-spacing:-11.075328pt;}
.ws9_c02234{word-spacing:-11.037312pt;}
.wsd_c02234{word-spacing:-10.775424pt;}
.wse_c02234{word-spacing:-9.888384pt;}
.ws18_c02234{word-spacing:-1.919232pt;}
.ws1a_c02234{word-spacing:-0.963072pt;}
.ws19_c02234{word-spacing:-0.958848pt;}
.ws13_c02234{word-spacing:-0.899712pt;}
.ws11_c02234{word-spacing:-0.865920pt;}
.ws14_c02234{word-spacing:-0.105600pt;}
.ws16_c02234{word-spacing:-0.088704pt;}
.ws17_c02234{word-spacing:-0.076032pt;}
.ws12_c02234{word-spacing:0.000000pt;}
.ws15_c02234{word-spacing:0.743424pt;}
.ws10_c02234{word-spacing:2.804736pt;}
.ws4_c02234{word-spacing:4.401408pt;}
.wsb_c02234{word-spacing:29.600256pt;}
.wsf_c02234{word-spacing:32.127744pt;}
.ws6_c02234{word-spacing:32.659968pt;}
.ws1_c02234{word-spacing:33.563904pt;}
.ws0_c02234{word-spacing:33.796224pt;}
.ws3_c02234{word-spacing:34.860672pt;}
.ws5_c02234{word-spacing:35.468928pt;}
.ws7_c02234{word-spacing:37.357056pt;}
._0_c02234{margin-left:-1.731840pt;}
._2_c02234{width:1.317888pt;}
._4_c02234{width:2.462592pt;}
._5_c02234{width:13.112064pt;}
._6_c02234{width:15.506304pt;}
._7_c02234{width:17.259264pt;}
._8_c02234{width:18.775680pt;}
._9_c02234{width:20.156928pt;}
._1_c02234{width:44.668800pt;}
._3_c02234{width:45.805056pt;}
.fs0_c02234{font-size:42.240000pt;}
.fs1_c02234{font-size:53.760000pt;}
.y0_c02234{bottom:0.000000pt;}
.y1a_c02234{bottom:130.665211pt;}
.y1c_c02234{bottom:165.866875pt;}
.y1b_c02234{bottom:174.507067pt;}
.y19_c02234{bottom:245.225371pt;}
.y18_c02234{bottom:303.785851pt;}
.y17_c02234{bottom:317.225563pt;}
.y15_c02234{bottom:361.386427pt;}
.y11_c02234{bottom:377.386939pt;}
.y16_c02234{bottom:407.786011pt;}
.y14_c02234{bottom:437.226235pt;}
.y13_c02234{bottom:453.226747pt;}
.y10_c02234{bottom:482.666971pt;}
.y12_c02234{bottom:497.386555pt;}
.yf_c02234{bottom:513.387067pt;}
.y1d_c02234{bottom:546.027067pt;}
.yb_c02234{bottom:593.385179pt;}
.yd_c02234{bottom:628.586875pt;}
.yc_c02234{bottom:637.227067pt;}
.ya_c02234{bottom:707.945339pt;}
.y9_c02234{bottom:779.945531pt;}
.y7_c02234{bottom:823.786427pt;}
.y3_c02234{bottom:839.786939pt;}
.y8_c02234{bottom:870.505979pt;}
.y6_c02234{bottom:899.946203pt;}
.y5_c02234{bottom:915.946715pt;}
.y2_c02234{bottom:945.386939pt;}
.y4_c02234{bottom:959.786555pt;}
.y1_c02234{bottom:975.787067pt;}
.ye_c02234{bottom:1008.747067pt;}
.h4_c02234{height:28.916250pt;}
.h1_c02234{height:37.063125pt;}
.h2_c02234{height:37.166250pt;}
.h3_c02234{height:43.565610pt;}
.h5_c02234{height:48.581988pt;}
.h0_c02234{height:1122.666667pt;}
.w1_c02234{width:793.333333pt;}
.w0_c02234{width:793.626667pt;}
.x0_c02234{left:0.000000pt;}
.xd_c02234{left:104.000000pt;}
.x8_c02234{left:391.999872pt;}
.x4_c02234{left:396.160512pt;}
.xb_c02234{left:400.960000pt;}
.x7_c02234{left:404.799648pt;}
.x5_c02234{left:410.560128pt;}
.x1_c02234{left:411.840000pt;}
.xa_c02234{left:429.760320pt;}
.x9_c02234{left:437.439552pt;}
.x6_c02234{left:438.400512pt;}
.xc_c02234{left:450.560320pt;}
.x3_c02234{left:455.039904pt;}
.x2_c02234{left:468.159648pt;}
.xe_c02234{left:506.560032pt;}
}





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

.ir_c02235:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02235{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02235;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02235{font-family:ff1_c02235;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02235;src:url('chunks/assets/font_d77ac1e5b53a54511591851f.woff2')format("woff");}.ff2_c02235{font-family:ff2_c02235;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02235;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02235{font-family:ff3_c02235;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02235{vertical-align:0.000000px;}
.v1_c02235{vertical-align:1.439424px;}
.lsa_c02235{letter-spacing:-0.793584px;}
.ls8_c02235{letter-spacing:-0.613008px;}
.lsb_c02235{letter-spacing:-0.574992px;}
.ls12_c02235{letter-spacing:-0.275616px;}
.ls10_c02235{letter-spacing:-0.261360px;}
.ls7_c02235{letter-spacing:-0.242352px;}
.ls5_c02235{letter-spacing:-0.118800px;}
.ls15_c02235{letter-spacing:0.000000px;}
.ls2_c02235{letter-spacing:0.006048px;}
.lsf_c02235{letter-spacing:0.042768px;}
.ls6_c02235{letter-spacing:0.128304px;}
.lse_c02235{letter-spacing:0.242352px;}
.lsd_c02235{letter-spacing:0.508464px;}
.ls14_c02235{letter-spacing:0.514080px;}
.ls11_c02235{letter-spacing:0.536976px;}
.lsc_c02235{letter-spacing:0.579744px;}
.ls13_c02235{letter-spacing:0.594000px;}
.ls9_c02235{letter-spacing:0.598752px;}
.ls3_c02235{letter-spacing:0.613008px;}
.ls0_c02235{letter-spacing:0.651024px;}
.ls1_c02235{letter-spacing:0.717552px;}
.ls4_c02235{letter-spacing:0.722304px;}
.sc__c02235{text-shadow:none;}
.sc0_c02235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02235{-webkit-text-stroke:0px transparent;}
.sc0_c02235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02235{word-spacing:-15.126048px;}
.wsa_c02235{word-spacing:-12.474000px;}
.ws9_c02235{word-spacing:-12.416976px;}
.ws2_c02235{word-spacing:-11.266992px;}
.ws16_c02235{word-spacing:-2.159136px;}
.ws13_c02235{word-spacing:-1.083456px;}
.ws12_c02235{word-spacing:-1.078704px;}
.wsf_c02235{word-spacing:-1.012176px;}
.wsd_c02235{word-spacing:-0.974160px;}
.ws10_c02235{word-spacing:-0.118800px;}
.ws14_c02235{word-spacing:-0.099792px;}
.ws15_c02235{word-spacing:-0.085536px;}
.wse_c02235{word-spacing:0.000000px;}
.ws11_c02235{word-spacing:0.432432px;}
.ws8_c02235{word-spacing:3.155328px;}
.wsb_c02235{word-spacing:33.300288px;}
.ws7_c02235{word-spacing:36.143712px;}
.ws5_c02235{word-spacing:36.742464px;}
.ws1_c02235{word-spacing:37.759392px;}
.ws0_c02235{word-spacing:38.020752px;}
.ws3_c02235{word-spacing:39.218256px;}
.ws4_c02235{word-spacing:39.902544px;}
.ws6_c02235{word-spacing:42.026688px;}
._0_c02235{margin-left:-1.948320px;}
._2_c02235{width:1.482624px;}
._4_c02235{width:3.521232px;}
._9_c02235{width:14.751072px;}
._5_c02235{width:17.444592px;}
._6_c02235{width:19.416672px;}
._7_c02235{width:21.122640px;}
._8_c02235{width:22.676544px;}
._1_c02235{width:50.252400px;}
._3_c02235{width:51.530688px;}
.fc0_c02235{color:rgb(0,0,0);}
.fs0_c02235{font-size:47.520000px;}
.fs1_c02235{font-size:60.480000px;}
.y0_c02235{bottom:0.000000px;}
.y1b_c02235{bottom:146.998362px;}
.y1d_c02235{bottom:186.600234px;}
.y1c_c02235{bottom:196.320450px;}
.y1a_c02235{bottom:275.878542px;}
.y19_c02235{bottom:341.759082px;}
.y18_c02235{bottom:356.878758px;}
.y16_c02235{bottom:406.559730px;}
.y12_c02235{bottom:424.560306px;}
.y17_c02235{bottom:458.759262px;}
.y15_c02235{bottom:491.879514px;}
.y14_c02235{bottom:509.880090px;}
.y11_c02235{bottom:543.000342px;}
.y13_c02235{bottom:559.559874px;}
.y10_c02235{bottom:577.560450px;}
.y1e_c02235{bottom:614.280450px;}
.yc_c02235{bottom:667.559514px;}
.ye_c02235{bottom:707.160234px;}
.yd_c02235{bottom:716.880450px;}
.yb_c02235{bottom:796.439694px;}
.ya_c02235{bottom:862.319046px;}
.y9_c02235{bottom:877.438722px;}
.y7_c02235{bottom:926.759730px;}
.y3_c02235{bottom:944.760306px;}
.y8_c02235{bottom:979.319226px;}
.y6_c02235{bottom:1012.439478px;}
.y5_c02235{bottom:1030.440054px;}
.y2_c02235{bottom:1063.560306px;}
.y4_c02235{bottom:1079.759874px;}
.y1_c02235{bottom:1097.760450px;}
.yf_c02235{bottom:1134.840450px;}
.h3_c02235{height:32.530781px;}
.h1_c02235{height:41.696016px;}
.h2_c02235{height:41.812031px;}
.h4_c02235{height:54.654737px;}
.h0_c02235{height:1263.000000px;}
.w1_c02235{width:892.500000px;}
.w0_c02235{width:892.830000px;}
.x0_c02235{left:0.000000px;}
.xe_c02235{left:117.000000px;}
.x8_c02235{left:440.999856px;}
.x4_c02235{left:445.680576px;}
.xc_c02235{left:451.080000px;}
.x7_c02235{left:455.399604px;}
.x5_c02235{left:461.880144px;}
.x1_c02235{left:463.320000px;}
.xb_c02235{left:483.480360px;}
.x9_c02235{left:492.119496px;}
.x6_c02235{left:493.200576px;}
.xd_c02235{left:506.880360px;}
.x3_c02235{left:511.919892px;}
.x2_c02235{left:526.679604px;}
.xa_c02235{left:569.880036px;}
@media print{
.v0_c02235{vertical-align:0.000000pt;}
.v1_c02235{vertical-align:1.279488pt;}
.lsa_c02235{letter-spacing:-0.705408pt;}
.ls8_c02235{letter-spacing:-0.544896pt;}
.lsb_c02235{letter-spacing:-0.511104pt;}
.ls12_c02235{letter-spacing:-0.244992pt;}
.ls10_c02235{letter-spacing:-0.232320pt;}
.ls7_c02235{letter-spacing:-0.215424pt;}
.ls5_c02235{letter-spacing:-0.105600pt;}
.ls15_c02235{letter-spacing:0.000000pt;}
.ls2_c02235{letter-spacing:0.005376pt;}
.lsf_c02235{letter-spacing:0.038016pt;}
.ls6_c02235{letter-spacing:0.114048pt;}
.lse_c02235{letter-spacing:0.215424pt;}
.lsd_c02235{letter-spacing:0.451968pt;}
.ls14_c02235{letter-spacing:0.456960pt;}
.ls11_c02235{letter-spacing:0.477312pt;}
.lsc_c02235{letter-spacing:0.515328pt;}
.ls13_c02235{letter-spacing:0.528000pt;}
.ls9_c02235{letter-spacing:0.532224pt;}
.ls3_c02235{letter-spacing:0.544896pt;}
.ls0_c02235{letter-spacing:0.578688pt;}
.ls1_c02235{letter-spacing:0.637824pt;}
.ls4_c02235{letter-spacing:0.642048pt;}
.wsc_c02235{word-spacing:-13.445376pt;}
.wsa_c02235{word-spacing:-11.088000pt;}
.ws9_c02235{word-spacing:-11.037312pt;}
.ws2_c02235{word-spacing:-10.015104pt;}
.ws16_c02235{word-spacing:-1.919232pt;}
.ws13_c02235{word-spacing:-0.963072pt;}
.ws12_c02235{word-spacing:-0.958848pt;}
.wsf_c02235{word-spacing:-0.899712pt;}
.wsd_c02235{word-spacing:-0.865920pt;}
.ws10_c02235{word-spacing:-0.105600pt;}
.ws14_c02235{word-spacing:-0.088704pt;}
.ws15_c02235{word-spacing:-0.076032pt;}
.wse_c02235{word-spacing:0.000000pt;}
.ws11_c02235{word-spacing:0.384384pt;}
.ws8_c02235{word-spacing:2.804736pt;}
.wsb_c02235{word-spacing:29.600256pt;}
.ws7_c02235{word-spacing:32.127744pt;}
.ws5_c02235{word-spacing:32.659968pt;}
.ws1_c02235{word-spacing:33.563904pt;}
.ws0_c02235{word-spacing:33.796224pt;}
.ws3_c02235{word-spacing:34.860672pt;}
.ws4_c02235{word-spacing:35.468928pt;}
.ws6_c02235{word-spacing:37.357056pt;}
._0_c02235{margin-left:-1.731840pt;}
._2_c02235{width:1.317888pt;}
._4_c02235{width:3.129984pt;}
._9_c02235{width:13.112064pt;}
._5_c02235{width:15.506304pt;}
._6_c02235{width:17.259264pt;}
._7_c02235{width:18.775680pt;}
._8_c02235{width:20.156928pt;}
._1_c02235{width:44.668800pt;}
._3_c02235{width:45.805056pt;}
.fs0_c02235{font-size:42.240000pt;}
.fs1_c02235{font-size:53.760000pt;}
.y0_c02235{bottom:0.000000pt;}
.y1b_c02235{bottom:130.665211pt;}
.y1d_c02235{bottom:165.866875pt;}
.y1c_c02235{bottom:174.507067pt;}
.y1a_c02235{bottom:245.225371pt;}
.y19_c02235{bottom:303.785851pt;}
.y18_c02235{bottom:317.225563pt;}
.y16_c02235{bottom:361.386427pt;}
.y12_c02235{bottom:377.386939pt;}
.y17_c02235{bottom:407.786011pt;}
.y15_c02235{bottom:437.226235pt;}
.y14_c02235{bottom:453.226747pt;}
.y11_c02235{bottom:482.666971pt;}
.y13_c02235{bottom:497.386555pt;}
.y10_c02235{bottom:513.387067pt;}
.y1e_c02235{bottom:546.027067pt;}
.yc_c02235{bottom:593.386235pt;}
.ye_c02235{bottom:628.586875pt;}
.yd_c02235{bottom:637.227067pt;}
.yb_c02235{bottom:707.946395pt;}
.ya_c02235{bottom:766.505819pt;}
.y9_c02235{bottom:779.945531pt;}
.y7_c02235{bottom:823.786427pt;}
.y3_c02235{bottom:839.786939pt;}
.y8_c02235{bottom:870.505979pt;}
.y6_c02235{bottom:899.946203pt;}
.y5_c02235{bottom:915.946715pt;}
.y2_c02235{bottom:945.386939pt;}
.y4_c02235{bottom:959.786555pt;}
.y1_c02235{bottom:975.787067pt;}
.yf_c02235{bottom:1008.747067pt;}
.h3_c02235{height:28.916250pt;}
.h1_c02235{height:37.063125pt;}
.h2_c02235{height:37.166250pt;}
.h4_c02235{height:48.581988pt;}
.h0_c02235{height:1122.666667pt;}
.w1_c02235{width:793.333333pt;}
.w0_c02235{width:793.626667pt;}
.x0_c02235{left:0.000000pt;}
.xe_c02235{left:104.000000pt;}
.x8_c02235{left:391.999872pt;}
.x4_c02235{left:396.160512pt;}
.xc_c02235{left:400.960000pt;}
.x7_c02235{left:404.799648pt;}
.x5_c02235{left:410.560128pt;}
.x1_c02235{left:411.840000pt;}
.xb_c02235{left:429.760320pt;}
.x9_c02235{left:437.439552pt;}
.x6_c02235{left:438.400512pt;}
.xd_c02235{left:450.560320pt;}
.x3_c02235{left:455.039904pt;}
.x2_c02235{left:468.159648pt;}
.xa_c02235{left:506.560032pt;}
}





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

.ir_c02236:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02236{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02236;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02236{font-family:ff1_c02236;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02236;src:url('chunks/assets/font_9a1cdb1e0fd19755b8b81bc4.woff2')format("woff");}.ff2_c02236{font-family:ff2_c02236;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02236;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02236{font-family:ff3_c02236;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02236{vertical-align:0.000000px;}
.v1_c02236{vertical-align:1.439424px;}
.lsd_c02236{letter-spacing:-1.197504px;}
.lsa_c02236{letter-spacing:-0.574992px;}
.ls15_c02236{letter-spacing:-0.361152px;}
.ls11_c02236{letter-spacing:-0.275616px;}
.lsf_c02236{letter-spacing:-0.261360px;}
.ls9_c02236{letter-spacing:-0.256608px;}
.ls6_c02236{letter-spacing:-0.242352px;}
.ls3_c02236{letter-spacing:-0.118800px;}
.ls14_c02236{letter-spacing:0.000000px;}
.ls1_c02236{letter-spacing:0.006048px;}
.lse_c02236{letter-spacing:0.042768px;}
.ls5_c02236{letter-spacing:0.128304px;}
.ls7_c02236{letter-spacing:0.242352px;}
.lsc_c02236{letter-spacing:0.508464px;}
.ls13_c02236{letter-spacing:0.514080px;}
.ls10_c02236{letter-spacing:0.536976px;}
.lsb_c02236{letter-spacing:0.579744px;}
.ls12_c02236{letter-spacing:0.594000px;}
.ls8_c02236{letter-spacing:0.598752px;}
.ls2_c02236{letter-spacing:0.613008px;}
.ls4_c02236{letter-spacing:0.717552px;}
.ls0_c02236{letter-spacing:0.722304px;}
.sc__c02236{text-shadow:none;}
.sc0_c02236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02236{-webkit-text-stroke:0px transparent;}
.sc0_c02236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02236{word-spacing:-15.126048px;}
.wsa_c02236{word-spacing:-12.474000px;}
.ws9_c02236{word-spacing:-12.416976px;}
.ws2_c02236{word-spacing:-12.122352px;}
.ws15_c02236{word-spacing:-2.159136px;}
.ws11_c02236{word-spacing:-1.083456px;}
.wsd_c02236{word-spacing:-0.974160px;}
.wsf_c02236{word-spacing:-0.118800px;}
.ws10_c02236{word-spacing:-0.104544px;}
.ws13_c02236{word-spacing:-0.099792px;}
.ws14_c02236{word-spacing:-0.085536px;}
.wse_c02236{word-spacing:0.000000px;}
.ws12_c02236{word-spacing:0.836352px;}
.ws8_c02236{word-spacing:3.155328px;}
.wsb_c02236{word-spacing:33.300288px;}
.ws7_c02236{word-spacing:36.143712px;}
.ws5_c02236{word-spacing:36.742464px;}
.ws1_c02236{word-spacing:37.759392px;}
.ws0_c02236{word-spacing:38.020752px;}
.ws3_c02236{word-spacing:39.218256px;}
.ws4_c02236{word-spacing:39.902544px;}
.ws6_c02236{word-spacing:42.026688px;}
._0_c02236{margin-left:-1.948320px;}
._2_c02236{width:1.482624px;}
._4_c02236{width:2.770416px;}
._9_c02236{width:14.751072px;}
._5_c02236{width:17.444592px;}
._6_c02236{width:19.416672px;}
._7_c02236{width:21.122640px;}
._8_c02236{width:22.676544px;}
._1_c02236{width:50.252400px;}
._3_c02236{width:51.530688px;}
.fc0_c02236{color:rgb(0,0,0);}
.fs0_c02236{font-size:47.520000px;}
.fs1_c02236{font-size:60.480000px;}
.y0_c02236{bottom:0.000000px;}
.y1b_c02236{bottom:146.998362px;}
.y1d_c02236{bottom:186.600234px;}
.y1c_c02236{bottom:196.320450px;}
.y1a_c02236{bottom:275.878542px;}
.y19_c02236{bottom:341.759082px;}
.y18_c02236{bottom:356.878758px;}
.y16_c02236{bottom:406.559730px;}
.y12_c02236{bottom:424.560306px;}
.y17_c02236{bottom:458.759262px;}
.y15_c02236{bottom:491.879514px;}
.y14_c02236{bottom:509.880090px;}
.y11_c02236{bottom:543.000342px;}
.y13_c02236{bottom:559.559874px;}
.y10_c02236{bottom:577.560450px;}
.y1e_c02236{bottom:614.280450px;}
.yc_c02236{bottom:667.559514px;}
.ye_c02236{bottom:707.160234px;}
.yd_c02236{bottom:716.880450px;}
.yb_c02236{bottom:796.439694px;}
.ya_c02236{bottom:862.319046px;}
.y9_c02236{bottom:877.438722px;}
.y7_c02236{bottom:926.759730px;}
.y3_c02236{bottom:944.760306px;}
.y8_c02236{bottom:979.319226px;}
.y6_c02236{bottom:1012.439478px;}
.y5_c02236{bottom:1030.440054px;}
.y2_c02236{bottom:1063.560306px;}
.y4_c02236{bottom:1079.759874px;}
.y1_c02236{bottom:1097.760450px;}
.yf_c02236{bottom:1134.840450px;}
.h3_c02236{height:32.530781px;}
.h1_c02236{height:41.696016px;}
.h2_c02236{height:41.812031px;}
.h4_c02236{height:54.654737px;}
.h0_c02236{height:1263.000000px;}
.w1_c02236{width:892.500000px;}
.w0_c02236{width:892.830000px;}
.x0_c02236{left:0.000000px;}
.xe_c02236{left:117.000000px;}
.x8_c02236{left:440.999856px;}
.x4_c02236{left:445.680576px;}
.xc_c02236{left:451.080000px;}
.x7_c02236{left:455.399604px;}
.x5_c02236{left:461.880144px;}
.x1_c02236{left:463.320000px;}
.xb_c02236{left:483.480360px;}
.x9_c02236{left:492.119496px;}
.x6_c02236{left:493.200576px;}
.xd_c02236{left:506.880360px;}
.x3_c02236{left:511.919892px;}
.x2_c02236{left:526.679604px;}
.xa_c02236{left:569.880036px;}
@media print{
.v0_c02236{vertical-align:0.000000pt;}
.v1_c02236{vertical-align:1.279488pt;}
.lsd_c02236{letter-spacing:-1.064448pt;}
.lsa_c02236{letter-spacing:-0.511104pt;}
.ls15_c02236{letter-spacing:-0.321024pt;}
.ls11_c02236{letter-spacing:-0.244992pt;}
.lsf_c02236{letter-spacing:-0.232320pt;}
.ls9_c02236{letter-spacing:-0.228096pt;}
.ls6_c02236{letter-spacing:-0.215424pt;}
.ls3_c02236{letter-spacing:-0.105600pt;}
.ls14_c02236{letter-spacing:0.000000pt;}
.ls1_c02236{letter-spacing:0.005376pt;}
.lse_c02236{letter-spacing:0.038016pt;}
.ls5_c02236{letter-spacing:0.114048pt;}
.ls7_c02236{letter-spacing:0.215424pt;}
.lsc_c02236{letter-spacing:0.451968pt;}
.ls13_c02236{letter-spacing:0.456960pt;}
.ls10_c02236{letter-spacing:0.477312pt;}
.lsb_c02236{letter-spacing:0.515328pt;}
.ls12_c02236{letter-spacing:0.528000pt;}
.ls8_c02236{letter-spacing:0.532224pt;}
.ls2_c02236{letter-spacing:0.544896pt;}
.ls4_c02236{letter-spacing:0.637824pt;}
.ls0_c02236{letter-spacing:0.642048pt;}
.wsc_c02236{word-spacing:-13.445376pt;}
.wsa_c02236{word-spacing:-11.088000pt;}
.ws9_c02236{word-spacing:-11.037312pt;}
.ws2_c02236{word-spacing:-10.775424pt;}
.ws15_c02236{word-spacing:-1.919232pt;}
.ws11_c02236{word-spacing:-0.963072pt;}
.wsd_c02236{word-spacing:-0.865920pt;}
.wsf_c02236{word-spacing:-0.105600pt;}
.ws10_c02236{word-spacing:-0.092928pt;}
.ws13_c02236{word-spacing:-0.088704pt;}
.ws14_c02236{word-spacing:-0.076032pt;}
.wse_c02236{word-spacing:0.000000pt;}
.ws12_c02236{word-spacing:0.743424pt;}
.ws8_c02236{word-spacing:2.804736pt;}
.wsb_c02236{word-spacing:29.600256pt;}
.ws7_c02236{word-spacing:32.127744pt;}
.ws5_c02236{word-spacing:32.659968pt;}
.ws1_c02236{word-spacing:33.563904pt;}
.ws0_c02236{word-spacing:33.796224pt;}
.ws3_c02236{word-spacing:34.860672pt;}
.ws4_c02236{word-spacing:35.468928pt;}
.ws6_c02236{word-spacing:37.357056pt;}
._0_c02236{margin-left:-1.731840pt;}
._2_c02236{width:1.317888pt;}
._4_c02236{width:2.462592pt;}
._9_c02236{width:13.112064pt;}
._5_c02236{width:15.506304pt;}
._6_c02236{width:17.259264pt;}
._7_c02236{width:18.775680pt;}
._8_c02236{width:20.156928pt;}
._1_c02236{width:44.668800pt;}
._3_c02236{width:45.805056pt;}
.fs0_c02236{font-size:42.240000pt;}
.fs1_c02236{font-size:53.760000pt;}
.y0_c02236{bottom:0.000000pt;}
.y1b_c02236{bottom:130.665211pt;}
.y1d_c02236{bottom:165.866875pt;}
.y1c_c02236{bottom:174.507067pt;}
.y1a_c02236{bottom:245.225371pt;}
.y19_c02236{bottom:303.785851pt;}
.y18_c02236{bottom:317.225563pt;}
.y16_c02236{bottom:361.386427pt;}
.y12_c02236{bottom:377.386939pt;}
.y17_c02236{bottom:407.786011pt;}
.y15_c02236{bottom:437.226235pt;}
.y14_c02236{bottom:453.226747pt;}
.y11_c02236{bottom:482.666971pt;}
.y13_c02236{bottom:497.386555pt;}
.y10_c02236{bottom:513.387067pt;}
.y1e_c02236{bottom:546.027067pt;}
.yc_c02236{bottom:593.386235pt;}
.ye_c02236{bottom:628.586875pt;}
.yd_c02236{bottom:637.227067pt;}
.yb_c02236{bottom:707.946395pt;}
.ya_c02236{bottom:766.505819pt;}
.y9_c02236{bottom:779.945531pt;}
.y7_c02236{bottom:823.786427pt;}
.y3_c02236{bottom:839.786939pt;}
.y8_c02236{bottom:870.505979pt;}
.y6_c02236{bottom:899.946203pt;}
.y5_c02236{bottom:915.946715pt;}
.y2_c02236{bottom:945.386939pt;}
.y4_c02236{bottom:959.786555pt;}
.y1_c02236{bottom:975.787067pt;}
.yf_c02236{bottom:1008.747067pt;}
.h3_c02236{height:28.916250pt;}
.h1_c02236{height:37.063125pt;}
.h2_c02236{height:37.166250pt;}
.h4_c02236{height:48.581988pt;}
.h0_c02236{height:1122.666667pt;}
.w1_c02236{width:793.333333pt;}
.w0_c02236{width:793.626667pt;}
.x0_c02236{left:0.000000pt;}
.xe_c02236{left:104.000000pt;}
.x8_c02236{left:391.999872pt;}
.x4_c02236{left:396.160512pt;}
.xc_c02236{left:400.960000pt;}
.x7_c02236{left:404.799648pt;}
.x5_c02236{left:410.560128pt;}
.x1_c02236{left:411.840000pt;}
.xb_c02236{left:429.760320pt;}
.x9_c02236{left:437.439552pt;}
.x6_c02236{left:438.400512pt;}
.xd_c02236{left:450.560320pt;}
.x3_c02236{left:455.039904pt;}
.x2_c02236{left:468.159648pt;}
.xa_c02236{left:506.560032pt;}
}





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

.ir_c02237:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02237{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02237;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02237{font-family:ff1_c02237;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02237;src:url('chunks/assets/font_fd876363305c6990f17b7021.woff2')format("woff");}.ff2_c02237{font-family:ff2_c02237;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02237;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02237{font-family:ff3_c02237;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02237{vertical-align:0.000000px;}
.v1_c02237{vertical-align:1.439424px;}
.lse_c02237{letter-spacing:-1.197504px;}
.ls16_c02237{letter-spacing:-0.755568px;}
.lsa_c02237{letter-spacing:-0.574992px;}
.lsb_c02237{letter-spacing:-0.361152px;}
.ls12_c02237{letter-spacing:-0.275616px;}
.ls10_c02237{letter-spacing:-0.261360px;}
.ls9_c02237{letter-spacing:-0.256608px;}
.ls6_c02237{letter-spacing:-0.242352px;}
.ls3_c02237{letter-spacing:-0.118800px;}
.ls15_c02237{letter-spacing:0.000000px;}
.ls0_c02237{letter-spacing:0.006048px;}
.lsf_c02237{letter-spacing:0.042768px;}
.ls5_c02237{letter-spacing:0.128304px;}
.ls7_c02237{letter-spacing:0.242352px;}
.lsd_c02237{letter-spacing:0.508464px;}
.ls14_c02237{letter-spacing:0.514080px;}
.ls11_c02237{letter-spacing:0.536976px;}
.lsc_c02237{letter-spacing:0.579744px;}
.ls13_c02237{letter-spacing:0.594000px;}
.ls8_c02237{letter-spacing:0.598752px;}
.ls1_c02237{letter-spacing:0.613008px;}
.ls4_c02237{letter-spacing:0.717552px;}
.ls2_c02237{letter-spacing:0.722304px;}
.sc__c02237{text-shadow:none;}
.sc0_c02237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02237{-webkit-text-stroke:0px transparent;}
.sc0_c02237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02237{word-spacing:-15.126048px;}
.wsa_c02237{word-spacing:-12.474000px;}
.ws9_c02237{word-spacing:-12.416976px;}
.ws2_c02237{word-spacing:-12.122352px;}
.wsd_c02237{word-spacing:-11.124432px;}
.ws16_c02237{word-spacing:-2.159136px;}
.ws13_c02237{word-spacing:-1.083456px;}
.wse_c02237{word-spacing:-0.974160px;}
.ws10_c02237{word-spacing:-0.118800px;}
.ws11_c02237{word-spacing:-0.104544px;}
.ws14_c02237{word-spacing:-0.099792px;}
.ws15_c02237{word-spacing:-0.085536px;}
.wsf_c02237{word-spacing:0.000000px;}
.ws12_c02237{word-spacing:0.836352px;}
.ws8_c02237{word-spacing:3.155328px;}
.wsb_c02237{word-spacing:33.300288px;}
.ws7_c02237{word-spacing:36.143712px;}
.ws5_c02237{word-spacing:36.742464px;}
.ws1_c02237{word-spacing:37.759392px;}
.ws0_c02237{word-spacing:38.020752px;}
.ws3_c02237{word-spacing:39.218256px;}
.ws4_c02237{word-spacing:39.902544px;}
.ws6_c02237{word-spacing:42.026688px;}
._0_c02237{margin-left:-1.948320px;}
._2_c02237{width:1.482624px;}
._4_c02237{width:2.770416px;}
._9_c02237{width:14.751072px;}
._5_c02237{width:17.444592px;}
._6_c02237{width:19.416672px;}
._7_c02237{width:21.122640px;}
._8_c02237{width:22.676544px;}
._1_c02237{width:50.252400px;}
._3_c02237{width:51.530688px;}
.fc0_c02237{color:rgb(0,0,0);}
.fs0_c02237{font-size:47.520000px;}
.fs1_c02237{font-size:60.480000px;}
.y0_c02237{bottom:0.000000px;}
.y1b_c02237{bottom:146.998362px;}
.y1d_c02237{bottom:186.600234px;}
.y1c_c02237{bottom:196.320450px;}
.y1a_c02237{bottom:275.878542px;}
.y19_c02237{bottom:341.759082px;}
.y18_c02237{bottom:356.878758px;}
.y16_c02237{bottom:406.559730px;}
.y12_c02237{bottom:424.560306px;}
.y17_c02237{bottom:458.759262px;}
.y15_c02237{bottom:491.879514px;}
.y14_c02237{bottom:509.880090px;}
.y11_c02237{bottom:543.000342px;}
.y13_c02237{bottom:559.559874px;}
.y10_c02237{bottom:577.560450px;}
.y1e_c02237{bottom:614.280450px;}
.yc_c02237{bottom:667.559514px;}
.ye_c02237{bottom:707.160234px;}
.yd_c02237{bottom:716.880450px;}
.yb_c02237{bottom:796.439694px;}
.ya_c02237{bottom:862.319046px;}
.y9_c02237{bottom:877.438722px;}
.y7_c02237{bottom:926.759730px;}
.y3_c02237{bottom:944.760306px;}
.y8_c02237{bottom:979.319226px;}
.y6_c02237{bottom:1012.439478px;}
.y5_c02237{bottom:1030.440054px;}
.y2_c02237{bottom:1063.560306px;}
.y4_c02237{bottom:1079.759874px;}
.y1_c02237{bottom:1097.760450px;}
.yf_c02237{bottom:1134.840450px;}
.h3_c02237{height:32.530781px;}
.h1_c02237{height:41.696016px;}
.h2_c02237{height:41.812031px;}
.h4_c02237{height:54.654737px;}
.h0_c02237{height:1263.000000px;}
.w1_c02237{width:892.500000px;}
.w0_c02237{width:892.830000px;}
.x0_c02237{left:0.000000px;}
.xe_c02237{left:117.000000px;}
.x8_c02237{left:440.999856px;}
.x4_c02237{left:445.680576px;}
.xc_c02237{left:451.080000px;}
.x7_c02237{left:455.399604px;}
.x5_c02237{left:461.880144px;}
.x1_c02237{left:463.320000px;}
.xb_c02237{left:483.480360px;}
.x9_c02237{left:492.119496px;}
.x6_c02237{left:493.200576px;}
.xd_c02237{left:506.880360px;}
.x3_c02237{left:511.919892px;}
.x2_c02237{left:526.679604px;}
.xa_c02237{left:569.880036px;}
@media print{
.v0_c02237{vertical-align:0.000000pt;}
.v1_c02237{vertical-align:1.279488pt;}
.lse_c02237{letter-spacing:-1.064448pt;}
.ls16_c02237{letter-spacing:-0.671616pt;}
.lsa_c02237{letter-spacing:-0.511104pt;}
.lsb_c02237{letter-spacing:-0.321024pt;}
.ls12_c02237{letter-spacing:-0.244992pt;}
.ls10_c02237{letter-spacing:-0.232320pt;}
.ls9_c02237{letter-spacing:-0.228096pt;}
.ls6_c02237{letter-spacing:-0.215424pt;}
.ls3_c02237{letter-spacing:-0.105600pt;}
.ls15_c02237{letter-spacing:0.000000pt;}
.ls0_c02237{letter-spacing:0.005376pt;}
.lsf_c02237{letter-spacing:0.038016pt;}
.ls5_c02237{letter-spacing:0.114048pt;}
.ls7_c02237{letter-spacing:0.215424pt;}
.lsd_c02237{letter-spacing:0.451968pt;}
.ls14_c02237{letter-spacing:0.456960pt;}
.ls11_c02237{letter-spacing:0.477312pt;}
.lsc_c02237{letter-spacing:0.515328pt;}
.ls13_c02237{letter-spacing:0.528000pt;}
.ls8_c02237{letter-spacing:0.532224pt;}
.ls1_c02237{letter-spacing:0.544896pt;}
.ls4_c02237{letter-spacing:0.637824pt;}
.ls2_c02237{letter-spacing:0.642048pt;}
.wsc_c02237{word-spacing:-13.445376pt;}
.wsa_c02237{word-spacing:-11.088000pt;}
.ws9_c02237{word-spacing:-11.037312pt;}
.ws2_c02237{word-spacing:-10.775424pt;}
.wsd_c02237{word-spacing:-9.888384pt;}
.ws16_c02237{word-spacing:-1.919232pt;}
.ws13_c02237{word-spacing:-0.963072pt;}
.wse_c02237{word-spacing:-0.865920pt;}
.ws10_c02237{word-spacing:-0.105600pt;}
.ws11_c02237{word-spacing:-0.092928pt;}
.ws14_c02237{word-spacing:-0.088704pt;}
.ws15_c02237{word-spacing:-0.076032pt;}
.wsf_c02237{word-spacing:0.000000pt;}
.ws12_c02237{word-spacing:0.743424pt;}
.ws8_c02237{word-spacing:2.804736pt;}
.wsb_c02237{word-spacing:29.600256pt;}
.ws7_c02237{word-spacing:32.127744pt;}
.ws5_c02237{word-spacing:32.659968pt;}
.ws1_c02237{word-spacing:33.563904pt;}
.ws0_c02237{word-spacing:33.796224pt;}
.ws3_c02237{word-spacing:34.860672pt;}
.ws4_c02237{word-spacing:35.468928pt;}
.ws6_c02237{word-spacing:37.357056pt;}
._0_c02237{margin-left:-1.731840pt;}
._2_c02237{width:1.317888pt;}
._4_c02237{width:2.462592pt;}
._9_c02237{width:13.112064pt;}
._5_c02237{width:15.506304pt;}
._6_c02237{width:17.259264pt;}
._7_c02237{width:18.775680pt;}
._8_c02237{width:20.156928pt;}
._1_c02237{width:44.668800pt;}
._3_c02237{width:45.805056pt;}
.fs0_c02237{font-size:42.240000pt;}
.fs1_c02237{font-size:53.760000pt;}
.y0_c02237{bottom:0.000000pt;}
.y1b_c02237{bottom:130.665211pt;}
.y1d_c02237{bottom:165.866875pt;}
.y1c_c02237{bottom:174.507067pt;}
.y1a_c02237{bottom:245.225371pt;}
.y19_c02237{bottom:303.785851pt;}
.y18_c02237{bottom:317.225563pt;}
.y16_c02237{bottom:361.386427pt;}
.y12_c02237{bottom:377.386939pt;}
.y17_c02237{bottom:407.786011pt;}
.y15_c02237{bottom:437.226235pt;}
.y14_c02237{bottom:453.226747pt;}
.y11_c02237{bottom:482.666971pt;}
.y13_c02237{bottom:497.386555pt;}
.y10_c02237{bottom:513.387067pt;}
.y1e_c02237{bottom:546.027067pt;}
.yc_c02237{bottom:593.386235pt;}
.ye_c02237{bottom:628.586875pt;}
.yd_c02237{bottom:637.227067pt;}
.yb_c02237{bottom:707.946395pt;}
.ya_c02237{bottom:766.505819pt;}
.y9_c02237{bottom:779.945531pt;}
.y7_c02237{bottom:823.786427pt;}
.y3_c02237{bottom:839.786939pt;}
.y8_c02237{bottom:870.505979pt;}
.y6_c02237{bottom:899.946203pt;}
.y5_c02237{bottom:915.946715pt;}
.y2_c02237{bottom:945.386939pt;}
.y4_c02237{bottom:959.786555pt;}
.y1_c02237{bottom:975.787067pt;}
.yf_c02237{bottom:1008.747067pt;}
.h3_c02237{height:28.916250pt;}
.h1_c02237{height:37.063125pt;}
.h2_c02237{height:37.166250pt;}
.h4_c02237{height:48.581988pt;}
.h0_c02237{height:1122.666667pt;}
.w1_c02237{width:793.333333pt;}
.w0_c02237{width:793.626667pt;}
.x0_c02237{left:0.000000pt;}
.xe_c02237{left:104.000000pt;}
.x8_c02237{left:391.999872pt;}
.x4_c02237{left:396.160512pt;}
.xc_c02237{left:400.960000pt;}
.x7_c02237{left:404.799648pt;}
.x5_c02237{left:410.560128pt;}
.x1_c02237{left:411.840000pt;}
.xb_c02237{left:429.760320pt;}
.x9_c02237{left:437.439552pt;}
.x6_c02237{left:438.400512pt;}
.xd_c02237{left:450.560320pt;}
.x3_c02237{left:455.039904pt;}
.x2_c02237{left:468.159648pt;}
.xa_c02237{left:506.560032pt;}
}





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

.ir_c02238:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02238{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02238;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02238{font-family:ff1_c02238;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02238;src:url('chunks/assets/font_6b221a2164074d1b2235ef34.woff2')format("woff");}.ff2_c02238{font-family:ff2_c02238;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02238;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02238{font-family:ff3_c02238;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02238{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02238{vertical-align:0.000000px;}
.v1_c02238{vertical-align:1.439424px;}
.ls16_c02238{letter-spacing:-1.197504px;}
.ls9_c02238{letter-spacing:-0.803088px;}
.lsa_c02238{letter-spacing:-0.574992px;}
.ls15_c02238{letter-spacing:-0.361152px;}
.ls11_c02238{letter-spacing:-0.275616px;}
.lsf_c02238{letter-spacing:-0.261360px;}
.ls6_c02238{letter-spacing:-0.242352px;}
.ls3_c02238{letter-spacing:-0.118800px;}
.ls14_c02238{letter-spacing:0.000000px;}
.ls1_c02238{letter-spacing:0.006048px;}
.lsd_c02238{letter-spacing:0.033264px;}
.lse_c02238{letter-spacing:0.042768px;}
.ls5_c02238{letter-spacing:0.128304px;}
.ls7_c02238{letter-spacing:0.242352px;}
.lsc_c02238{letter-spacing:0.508464px;}
.ls13_c02238{letter-spacing:0.514080px;}
.ls10_c02238{letter-spacing:0.536976px;}
.lsb_c02238{letter-spacing:0.579744px;}
.ls12_c02238{letter-spacing:0.594000px;}
.ls8_c02238{letter-spacing:0.598752px;}
.ls2_c02238{letter-spacing:0.613008px;}
.ls4_c02238{letter-spacing:0.717552px;}
.ls0_c02238{letter-spacing:0.722304px;}
.sc__c02238{text-shadow:none;}
.sc0_c02238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02238{-webkit-text-stroke:0px transparent;}
.sc0_c02238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02238{word-spacing:-15.126048px;}
.wsa_c02238{word-spacing:-12.474000px;}
.ws9_c02238{word-spacing:-12.416976px;}
.ws2_c02238{word-spacing:-12.122352px;}
.wsd_c02238{word-spacing:-11.637648px;}
.ws16_c02238{word-spacing:-2.159136px;}
.ws12_c02238{word-spacing:-1.083456px;}
.wse_c02238{word-spacing:-0.974160px;}
.ws13_c02238{word-spacing:-0.394416px;}
.ws10_c02238{word-spacing:-0.118800px;}
.ws14_c02238{word-spacing:-0.099792px;}
.ws15_c02238{word-spacing:-0.085536px;}
.wsf_c02238{word-spacing:0.000000px;}
.ws11_c02238{word-spacing:0.441936px;}
.ws17_c02238{word-spacing:0.836352px;}
.ws8_c02238{word-spacing:3.155328px;}
.wsb_c02238{word-spacing:33.300288px;}
.ws7_c02238{word-spacing:36.143712px;}
.ws5_c02238{word-spacing:36.742464px;}
.ws1_c02238{word-spacing:37.759392px;}
.ws0_c02238{word-spacing:38.020752px;}
.ws3_c02238{word-spacing:39.218256px;}
.ws4_c02238{word-spacing:39.902544px;}
.ws6_c02238{word-spacing:42.026688px;}
._0_c02238{margin-left:-1.948320px;}
._2_c02238{width:1.482624px;}
._a_c02238{width:2.770416px;}
._4_c02238{width:4.267296px;}
._9_c02238{width:14.751072px;}
._5_c02238{width:17.444592px;}
._6_c02238{width:19.416672px;}
._7_c02238{width:21.122640px;}
._8_c02238{width:22.676544px;}
._1_c02238{width:50.252400px;}
._3_c02238{width:51.530688px;}
.fc0_c02238{color:rgb(0,0,0);}
.fs0_c02238{font-size:47.520000px;}
.fs1_c02238{font-size:60.480000px;}
.y0_c02238{bottom:0.000000px;}
.y1b_c02238{bottom:146.998362px;}
.y1d_c02238{bottom:186.600234px;}
.y1c_c02238{bottom:196.320450px;}
.y1a_c02238{bottom:275.878542px;}
.y19_c02238{bottom:341.759082px;}
.y18_c02238{bottom:356.878758px;}
.y16_c02238{bottom:406.559730px;}
.y12_c02238{bottom:424.560306px;}
.y17_c02238{bottom:458.759262px;}
.y15_c02238{bottom:491.879514px;}
.y14_c02238{bottom:509.880090px;}
.y11_c02238{bottom:543.000342px;}
.y13_c02238{bottom:559.559874px;}
.y10_c02238{bottom:577.560450px;}
.y1e_c02238{bottom:614.280450px;}
.yc_c02238{bottom:667.559514px;}
.ye_c02238{bottom:707.160234px;}
.yd_c02238{bottom:716.880450px;}
.yb_c02238{bottom:796.439694px;}
.ya_c02238{bottom:862.319046px;}
.y9_c02238{bottom:877.438722px;}
.y7_c02238{bottom:926.759730px;}
.y3_c02238{bottom:944.760306px;}
.y8_c02238{bottom:979.319226px;}
.y6_c02238{bottom:1012.439478px;}
.y5_c02238{bottom:1030.440054px;}
.y2_c02238{bottom:1063.560306px;}
.y4_c02238{bottom:1079.759874px;}
.y1_c02238{bottom:1097.760450px;}
.yf_c02238{bottom:1134.840450px;}
.h3_c02238{height:32.530781px;}
.h1_c02238{height:41.696016px;}
.h2_c02238{height:41.812031px;}
.h4_c02238{height:54.654737px;}
.h0_c02238{height:1263.000000px;}
.w1_c02238{width:892.500000px;}
.w0_c02238{width:892.830000px;}
.x0_c02238{left:0.000000px;}
.xe_c02238{left:117.000000px;}
.x8_c02238{left:440.999856px;}
.x4_c02238{left:445.680576px;}
.xc_c02238{left:451.080000px;}
.x7_c02238{left:455.399604px;}
.x5_c02238{left:461.880144px;}
.x1_c02238{left:463.320000px;}
.xb_c02238{left:483.480360px;}
.x9_c02238{left:492.119496px;}
.x6_c02238{left:493.200576px;}
.xd_c02238{left:506.880360px;}
.x3_c02238{left:511.919892px;}
.x2_c02238{left:526.679604px;}
.xa_c02238{left:569.880036px;}
@media print{
.v0_c02238{vertical-align:0.000000pt;}
.v1_c02238{vertical-align:1.279488pt;}
.ls16_c02238{letter-spacing:-1.064448pt;}
.ls9_c02238{letter-spacing:-0.713856pt;}
.lsa_c02238{letter-spacing:-0.511104pt;}
.ls15_c02238{letter-spacing:-0.321024pt;}
.ls11_c02238{letter-spacing:-0.244992pt;}
.lsf_c02238{letter-spacing:-0.232320pt;}
.ls6_c02238{letter-spacing:-0.215424pt;}
.ls3_c02238{letter-spacing:-0.105600pt;}
.ls14_c02238{letter-spacing:0.000000pt;}
.ls1_c02238{letter-spacing:0.005376pt;}
.lsd_c02238{letter-spacing:0.029568pt;}
.lse_c02238{letter-spacing:0.038016pt;}
.ls5_c02238{letter-spacing:0.114048pt;}
.ls7_c02238{letter-spacing:0.215424pt;}
.lsc_c02238{letter-spacing:0.451968pt;}
.ls13_c02238{letter-spacing:0.456960pt;}
.ls10_c02238{letter-spacing:0.477312pt;}
.lsb_c02238{letter-spacing:0.515328pt;}
.ls12_c02238{letter-spacing:0.528000pt;}
.ls8_c02238{letter-spacing:0.532224pt;}
.ls2_c02238{letter-spacing:0.544896pt;}
.ls4_c02238{letter-spacing:0.637824pt;}
.ls0_c02238{letter-spacing:0.642048pt;}
.wsc_c02238{word-spacing:-13.445376pt;}
.wsa_c02238{word-spacing:-11.088000pt;}
.ws9_c02238{word-spacing:-11.037312pt;}
.ws2_c02238{word-spacing:-10.775424pt;}
.wsd_c02238{word-spacing:-10.344576pt;}
.ws16_c02238{word-spacing:-1.919232pt;}
.ws12_c02238{word-spacing:-0.963072pt;}
.wse_c02238{word-spacing:-0.865920pt;}
.ws13_c02238{word-spacing:-0.350592pt;}
.ws10_c02238{word-spacing:-0.105600pt;}
.ws14_c02238{word-spacing:-0.088704pt;}
.ws15_c02238{word-spacing:-0.076032pt;}
.wsf_c02238{word-spacing:0.000000pt;}
.ws11_c02238{word-spacing:0.392832pt;}
.ws17_c02238{word-spacing:0.743424pt;}
.ws8_c02238{word-spacing:2.804736pt;}
.wsb_c02238{word-spacing:29.600256pt;}
.ws7_c02238{word-spacing:32.127744pt;}
.ws5_c02238{word-spacing:32.659968pt;}
.ws1_c02238{word-spacing:33.563904pt;}
.ws0_c02238{word-spacing:33.796224pt;}
.ws3_c02238{word-spacing:34.860672pt;}
.ws4_c02238{word-spacing:35.468928pt;}
.ws6_c02238{word-spacing:37.357056pt;}
._0_c02238{margin-left:-1.731840pt;}
._2_c02238{width:1.317888pt;}
._a_c02238{width:2.462592pt;}
._4_c02238{width:3.793152pt;}
._9_c02238{width:13.112064pt;}
._5_c02238{width:15.506304pt;}
._6_c02238{width:17.259264pt;}
._7_c02238{width:18.775680pt;}
._8_c02238{width:20.156928pt;}
._1_c02238{width:44.668800pt;}
._3_c02238{width:45.805056pt;}
.fs0_c02238{font-size:42.240000pt;}
.fs1_c02238{font-size:53.760000pt;}
.y0_c02238{bottom:0.000000pt;}
.y1b_c02238{bottom:130.665211pt;}
.y1d_c02238{bottom:165.866875pt;}
.y1c_c02238{bottom:174.507067pt;}
.y1a_c02238{bottom:245.225371pt;}
.y19_c02238{bottom:303.785851pt;}
.y18_c02238{bottom:317.225563pt;}
.y16_c02238{bottom:361.386427pt;}
.y12_c02238{bottom:377.386939pt;}
.y17_c02238{bottom:407.786011pt;}
.y15_c02238{bottom:437.226235pt;}
.y14_c02238{bottom:453.226747pt;}
.y11_c02238{bottom:482.666971pt;}
.y13_c02238{bottom:497.386555pt;}
.y10_c02238{bottom:513.387067pt;}
.y1e_c02238{bottom:546.027067pt;}
.yc_c02238{bottom:593.386235pt;}
.ye_c02238{bottom:628.586875pt;}
.yd_c02238{bottom:637.227067pt;}
.yb_c02238{bottom:707.946395pt;}
.ya_c02238{bottom:766.505819pt;}
.y9_c02238{bottom:779.945531pt;}
.y7_c02238{bottom:823.786427pt;}
.y3_c02238{bottom:839.786939pt;}
.y8_c02238{bottom:870.505979pt;}
.y6_c02238{bottom:899.946203pt;}
.y5_c02238{bottom:915.946715pt;}
.y2_c02238{bottom:945.386939pt;}
.y4_c02238{bottom:959.786555pt;}
.y1_c02238{bottom:975.787067pt;}
.yf_c02238{bottom:1008.747067pt;}
.h3_c02238{height:28.916250pt;}
.h1_c02238{height:37.063125pt;}
.h2_c02238{height:37.166250pt;}
.h4_c02238{height:48.581988pt;}
.h0_c02238{height:1122.666667pt;}
.w1_c02238{width:793.333333pt;}
.w0_c02238{width:793.626667pt;}
.x0_c02238{left:0.000000pt;}
.xe_c02238{left:104.000000pt;}
.x8_c02238{left:391.999872pt;}
.x4_c02238{left:396.160512pt;}
.xc_c02238{left:400.960000pt;}
.x7_c02238{left:404.799648pt;}
.x5_c02238{left:410.560128pt;}
.x1_c02238{left:411.840000pt;}
.xb_c02238{left:429.760320pt;}
.x9_c02238{left:437.439552pt;}
.x6_c02238{left:438.400512pt;}
.xd_c02238{left:450.560320pt;}
.x3_c02238{left:455.039904pt;}
.x2_c02238{left:468.159648pt;}
.xa_c02238{left:506.560032pt;}
}





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

.ir_c02239:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02239{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02239;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02239{font-family:ff1_c02239;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02239;src:url('chunks/assets/font_87a718be57b99a2144180428.woff2')format("woff");}.ff2_c02239{font-family:ff2_c02239;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02239;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02239{font-family:ff3_c02239;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02239{vertical-align:0.000000px;}
.v1_c02239{vertical-align:1.439424px;}
.lse_c02239{letter-spacing:-1.197504px;}
.ls9_c02239{letter-spacing:-0.755568px;}
.lsa_c02239{letter-spacing:-0.574992px;}
.lsb_c02239{letter-spacing:-0.361152px;}
.ls12_c02239{letter-spacing:-0.275616px;}
.ls10_c02239{letter-spacing:-0.261360px;}
.ls6_c02239{letter-spacing:-0.242352px;}
.ls3_c02239{letter-spacing:-0.118800px;}
.ls15_c02239{letter-spacing:0.000000px;}
.ls0_c02239{letter-spacing:0.006048px;}
.lsf_c02239{letter-spacing:0.042768px;}
.ls5_c02239{letter-spacing:0.128304px;}
.ls7_c02239{letter-spacing:0.242352px;}
.lsd_c02239{letter-spacing:0.508464px;}
.ls14_c02239{letter-spacing:0.514080px;}
.ls11_c02239{letter-spacing:0.536976px;}
.lsc_c02239{letter-spacing:0.579744px;}
.ls13_c02239{letter-spacing:0.594000px;}
.ls8_c02239{letter-spacing:0.598752px;}
.ls1_c02239{letter-spacing:0.613008px;}
.ls4_c02239{letter-spacing:0.717552px;}
.ls2_c02239{letter-spacing:0.722304px;}
.sc__c02239{text-shadow:none;}
.sc0_c02239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02239{-webkit-text-stroke:0px transparent;}
.sc0_c02239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02239{word-spacing:-15.126048px;}
.wsb_c02239{word-spacing:-12.474000px;}
.wsa_c02239{word-spacing:-12.416976px;}
.ws2_c02239{word-spacing:-12.122352px;}
.ws4_c02239{word-spacing:-11.124432px;}
.ws15_c02239{word-spacing:-2.159136px;}
.ws12_c02239{word-spacing:-1.083456px;}
.wse_c02239{word-spacing:-0.974160px;}
.ws10_c02239{word-spacing:-0.118800px;}
.ws13_c02239{word-spacing:-0.099792px;}
.ws14_c02239{word-spacing:-0.085536px;}
.wsf_c02239{word-spacing:0.000000px;}
.ws11_c02239{word-spacing:0.836352px;}
.ws9_c02239{word-spacing:3.155328px;}
.wsc_c02239{word-spacing:33.300288px;}
.ws8_c02239{word-spacing:36.143712px;}
.ws6_c02239{word-spacing:36.742464px;}
.ws1_c02239{word-spacing:37.759392px;}
.ws0_c02239{word-spacing:38.020752px;}
.ws3_c02239{word-spacing:39.218256px;}
.ws5_c02239{word-spacing:39.902544px;}
.ws7_c02239{word-spacing:42.026688px;}
._0_c02239{margin-left:-1.948320px;}
._2_c02239{width:1.482624px;}
._4_c02239{width:3.369168px;}
._9_c02239{width:14.751072px;}
._5_c02239{width:17.444592px;}
._6_c02239{width:19.416672px;}
._7_c02239{width:21.122640px;}
._8_c02239{width:22.676544px;}
._1_c02239{width:50.252400px;}
._3_c02239{width:51.530688px;}
.fc0_c02239{color:rgb(0,0,0);}
.fs0_c02239{font-size:47.520000px;}
.fs1_c02239{font-size:60.480000px;}
.y0_c02239{bottom:0.000000px;}
.y1b_c02239{bottom:146.998362px;}
.y1d_c02239{bottom:186.600234px;}
.y1c_c02239{bottom:196.320450px;}
.y1a_c02239{bottom:275.878542px;}
.y19_c02239{bottom:341.759082px;}
.y18_c02239{bottom:356.878758px;}
.y16_c02239{bottom:406.559730px;}
.y12_c02239{bottom:424.560306px;}
.y17_c02239{bottom:458.759262px;}
.y15_c02239{bottom:491.879514px;}
.y14_c02239{bottom:509.880090px;}
.y11_c02239{bottom:543.000342px;}
.y13_c02239{bottom:559.559874px;}
.y10_c02239{bottom:577.560450px;}
.y1e_c02239{bottom:614.280450px;}
.yc_c02239{bottom:667.559514px;}
.ye_c02239{bottom:707.160234px;}
.yd_c02239{bottom:716.880450px;}
.yb_c02239{bottom:796.439694px;}
.ya_c02239{bottom:862.319046px;}
.y9_c02239{bottom:877.438722px;}
.y7_c02239{bottom:926.759730px;}
.y3_c02239{bottom:944.760306px;}
.y8_c02239{bottom:979.319226px;}
.y6_c02239{bottom:1012.439478px;}
.y5_c02239{bottom:1030.440054px;}
.y2_c02239{bottom:1063.560306px;}
.y4_c02239{bottom:1079.759874px;}
.y1_c02239{bottom:1097.760450px;}
.yf_c02239{bottom:1134.840450px;}
.h3_c02239{height:32.530781px;}
.h1_c02239{height:41.696016px;}
.h2_c02239{height:41.812031px;}
.h4_c02239{height:54.654737px;}
.h0_c02239{height:1263.000000px;}
.w1_c02239{width:892.500000px;}
.w0_c02239{width:892.830000px;}
.x0_c02239{left:0.000000px;}
.xe_c02239{left:117.000000px;}
.x8_c02239{left:440.999856px;}
.x4_c02239{left:445.680576px;}
.xc_c02239{left:451.080000px;}
.x7_c02239{left:455.399604px;}
.x5_c02239{left:461.880144px;}
.x1_c02239{left:463.320000px;}
.xb_c02239{left:483.480360px;}
.x9_c02239{left:492.119496px;}
.x6_c02239{left:493.200576px;}
.xd_c02239{left:506.880360px;}
.x3_c02239{left:511.919892px;}
.x2_c02239{left:526.679604px;}
.xa_c02239{left:569.880036px;}
@media print{
.v0_c02239{vertical-align:0.000000pt;}
.v1_c02239{vertical-align:1.279488pt;}
.lse_c02239{letter-spacing:-1.064448pt;}
.ls9_c02239{letter-spacing:-0.671616pt;}
.lsa_c02239{letter-spacing:-0.511104pt;}
.lsb_c02239{letter-spacing:-0.321024pt;}
.ls12_c02239{letter-spacing:-0.244992pt;}
.ls10_c02239{letter-spacing:-0.232320pt;}
.ls6_c02239{letter-spacing:-0.215424pt;}
.ls3_c02239{letter-spacing:-0.105600pt;}
.ls15_c02239{letter-spacing:0.000000pt;}
.ls0_c02239{letter-spacing:0.005376pt;}
.lsf_c02239{letter-spacing:0.038016pt;}
.ls5_c02239{letter-spacing:0.114048pt;}
.ls7_c02239{letter-spacing:0.215424pt;}
.lsd_c02239{letter-spacing:0.451968pt;}
.ls14_c02239{letter-spacing:0.456960pt;}
.ls11_c02239{letter-spacing:0.477312pt;}
.lsc_c02239{letter-spacing:0.515328pt;}
.ls13_c02239{letter-spacing:0.528000pt;}
.ls8_c02239{letter-spacing:0.532224pt;}
.ls1_c02239{letter-spacing:0.544896pt;}
.ls4_c02239{letter-spacing:0.637824pt;}
.ls2_c02239{letter-spacing:0.642048pt;}
.wsd_c02239{word-spacing:-13.445376pt;}
.wsb_c02239{word-spacing:-11.088000pt;}
.wsa_c02239{word-spacing:-11.037312pt;}
.ws2_c02239{word-spacing:-10.775424pt;}
.ws4_c02239{word-spacing:-9.888384pt;}
.ws15_c02239{word-spacing:-1.919232pt;}
.ws12_c02239{word-spacing:-0.963072pt;}
.wse_c02239{word-spacing:-0.865920pt;}
.ws10_c02239{word-spacing:-0.105600pt;}
.ws13_c02239{word-spacing:-0.088704pt;}
.ws14_c02239{word-spacing:-0.076032pt;}
.wsf_c02239{word-spacing:0.000000pt;}
.ws11_c02239{word-spacing:0.743424pt;}
.ws9_c02239{word-spacing:2.804736pt;}
.wsc_c02239{word-spacing:29.600256pt;}
.ws8_c02239{word-spacing:32.127744pt;}
.ws6_c02239{word-spacing:32.659968pt;}
.ws1_c02239{word-spacing:33.563904pt;}
.ws0_c02239{word-spacing:33.796224pt;}
.ws3_c02239{word-spacing:34.860672pt;}
.ws5_c02239{word-spacing:35.468928pt;}
.ws7_c02239{word-spacing:37.357056pt;}
._0_c02239{margin-left:-1.731840pt;}
._2_c02239{width:1.317888pt;}
._4_c02239{width:2.994816pt;}
._9_c02239{width:13.112064pt;}
._5_c02239{width:15.506304pt;}
._6_c02239{width:17.259264pt;}
._7_c02239{width:18.775680pt;}
._8_c02239{width:20.156928pt;}
._1_c02239{width:44.668800pt;}
._3_c02239{width:45.805056pt;}
.fs0_c02239{font-size:42.240000pt;}
.fs1_c02239{font-size:53.760000pt;}
.y0_c02239{bottom:0.000000pt;}
.y1b_c02239{bottom:130.665211pt;}
.y1d_c02239{bottom:165.866875pt;}
.y1c_c02239{bottom:174.507067pt;}
.y1a_c02239{bottom:245.225371pt;}
.y19_c02239{bottom:303.785851pt;}
.y18_c02239{bottom:317.225563pt;}
.y16_c02239{bottom:361.386427pt;}
.y12_c02239{bottom:377.386939pt;}
.y17_c02239{bottom:407.786011pt;}
.y15_c02239{bottom:437.226235pt;}
.y14_c02239{bottom:453.226747pt;}
.y11_c02239{bottom:482.666971pt;}
.y13_c02239{bottom:497.386555pt;}
.y10_c02239{bottom:513.387067pt;}
.y1e_c02239{bottom:546.027067pt;}
.yc_c02239{bottom:593.386235pt;}
.ye_c02239{bottom:628.586875pt;}
.yd_c02239{bottom:637.227067pt;}
.yb_c02239{bottom:707.946395pt;}
.ya_c02239{bottom:766.505819pt;}
.y9_c02239{bottom:779.945531pt;}
.y7_c02239{bottom:823.786427pt;}
.y3_c02239{bottom:839.786939pt;}
.y8_c02239{bottom:870.505979pt;}
.y6_c02239{bottom:899.946203pt;}
.y5_c02239{bottom:915.946715pt;}
.y2_c02239{bottom:945.386939pt;}
.y4_c02239{bottom:959.786555pt;}
.y1_c02239{bottom:975.787067pt;}
.yf_c02239{bottom:1008.747067pt;}
.h3_c02239{height:28.916250pt;}
.h1_c02239{height:37.063125pt;}
.h2_c02239{height:37.166250pt;}
.h4_c02239{height:48.581988pt;}
.h0_c02239{height:1122.666667pt;}
.w1_c02239{width:793.333333pt;}
.w0_c02239{width:793.626667pt;}
.x0_c02239{left:0.000000pt;}
.xe_c02239{left:104.000000pt;}
.x8_c02239{left:391.999872pt;}
.x4_c02239{left:396.160512pt;}
.xc_c02239{left:400.960000pt;}
.x7_c02239{left:404.799648pt;}
.x5_c02239{left:410.560128pt;}
.x1_c02239{left:411.840000pt;}
.xb_c02239{left:429.760320pt;}
.x9_c02239{left:437.439552pt;}
.x6_c02239{left:438.400512pt;}
.xd_c02239{left:450.560320pt;}
.x3_c02239{left:455.039904pt;}
.x2_c02239{left:468.159648pt;}
.xa_c02239{left:506.560032pt;}
}





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

.ir_c02240:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02240{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02240;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02240{font-family:ff1_c02240;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02240;src:url('chunks/assets/font_dddcd5a27a6bdbf1f13dfc72.woff2')format("woff");}.ff2_c02240{font-family:ff2_c02240;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02240;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02240{font-family:ff3_c02240;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02240{vertical-align:0.000000px;}
.v1_c02240{vertical-align:1.439424px;}
.ls10_c02240{letter-spacing:-1.197504px;}
.lsd_c02240{letter-spacing:-0.774576px;}
.lsb_c02240{letter-spacing:-0.755568px;}
.lsc_c02240{letter-spacing:-0.574992px;}
.ls11_c02240{letter-spacing:-0.446688px;}
.ls14_c02240{letter-spacing:-0.275616px;}
.ls12_c02240{letter-spacing:-0.261360px;}
.ls8_c02240{letter-spacing:-0.242352px;}
.ls5_c02240{letter-spacing:-0.118800px;}
.ls17_c02240{letter-spacing:0.000000px;}
.ls0_c02240{letter-spacing:0.006048px;}
.ls7_c02240{letter-spacing:0.128304px;}
.ls9_c02240{letter-spacing:0.242352px;}
.lsf_c02240{letter-spacing:0.508464px;}
.ls16_c02240{letter-spacing:0.514080px;}
.ls13_c02240{letter-spacing:0.536976px;}
.lse_c02240{letter-spacing:0.579744px;}
.ls15_c02240{letter-spacing:0.594000px;}
.lsa_c02240{letter-spacing:0.598752px;}
.ls3_c02240{letter-spacing:0.613008px;}
.ls1_c02240{letter-spacing:0.651024px;}
.ls2_c02240{letter-spacing:0.684288px;}
.ls6_c02240{letter-spacing:0.717552px;}
.ls4_c02240{letter-spacing:0.722304px;}
.sc__c02240{text-shadow:none;}
.sc0_c02240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02240{-webkit-text-stroke:0px transparent;}
.sc0_c02240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02240{word-spacing:-15.126048px;}
.wsc_c02240{word-spacing:-12.474000px;}
.ws7_c02240{word-spacing:-12.459744px;}
.ws11_c02240{word-spacing:-12.416976px;}
.ws2_c02240{word-spacing:-12.122352px;}
.ws4_c02240{word-spacing:-11.124432px;}
.ws6_c02240{word-spacing:-11.105424px;}
.ws19_c02240{word-spacing:-2.159136px;}
.ws1b_c02240{word-spacing:-1.045440px;}
.ws1a_c02240{word-spacing:-1.012176px;}
.ws12_c02240{word-spacing:-0.974160px;}
.ws14_c02240{word-spacing:-0.118800px;}
.ws17_c02240{word-spacing:-0.099792px;}
.ws18_c02240{word-spacing:-0.085536px;}
.ws13_c02240{word-spacing:0.000000px;}
.ws16_c02240{word-spacing:0.085536px;}
.ws15_c02240{word-spacing:0.836352px;}
.wsf_c02240{word-spacing:4.951584px;}
.wsb_c02240{word-spacing:6.391440px;}
.wsd_c02240{word-spacing:33.300288px;}
.wsa_c02240{word-spacing:34.836912px;}
.ws9_c02240{word-spacing:36.143712px;}
.ws10_c02240{word-spacing:36.742464px;}
.ws1_c02240{word-spacing:37.759392px;}
.ws0_c02240{word-spacing:38.020752px;}
.ws3_c02240{word-spacing:39.218256px;}
.ws5_c02240{word-spacing:39.902544px;}
.ws8_c02240{word-spacing:42.026688px;}
._0_c02240{margin-left:-1.948320px;}
._2_c02240{width:1.482624px;}
._4_c02240{width:3.369168px;}
._8_c02240{width:14.751072px;}
._6_c02240{width:16.114032px;}
._5_c02240{width:22.548240px;}
._7_c02240{width:23.950080px;}
._1_c02240{width:50.252400px;}
._3_c02240{width:51.530688px;}
.fc0_c02240{color:rgb(0,0,0);}
.fs0_c02240{font-size:47.520000px;}
.fs1_c02240{font-size:60.480000px;}
.y0_c02240{bottom:0.000000px;}
.y1a_c02240{bottom:146.998362px;}
.y1c_c02240{bottom:186.600234px;}
.y1b_c02240{bottom:196.320450px;}
.y19_c02240{bottom:275.878542px;}
.y18_c02240{bottom:356.878758px;}
.y16_c02240{bottom:406.559730px;}
.y12_c02240{bottom:424.560306px;}
.y17_c02240{bottom:458.759262px;}
.y15_c02240{bottom:491.879514px;}
.y14_c02240{bottom:509.880090px;}
.y11_c02240{bottom:543.000342px;}
.y13_c02240{bottom:559.559874px;}
.y10_c02240{bottom:577.560450px;}
.y1d_c02240{bottom:614.280450px;}
.yc_c02240{bottom:652.438650px;}
.yb_c02240{bottom:667.558326px;}
.ye_c02240{bottom:707.160234px;}
.yd_c02240{bottom:716.880450px;}
.ya_c02240{bottom:796.438506px;}
.y9_c02240{bottom:877.438722px;}
.y7_c02240{bottom:926.759730px;}
.y3_c02240{bottom:944.760306px;}
.y8_c02240{bottom:979.319226px;}
.y6_c02240{bottom:1012.439478px;}
.y5_c02240{bottom:1030.440054px;}
.y2_c02240{bottom:1063.560306px;}
.y4_c02240{bottom:1079.759874px;}
.y1_c02240{bottom:1097.760450px;}
.yf_c02240{bottom:1134.840450px;}
.h3_c02240{height:32.530781px;}
.h1_c02240{height:41.696016px;}
.h2_c02240{height:41.812031px;}
.h4_c02240{height:54.654737px;}
.h0_c02240{height:1263.000000px;}
.w1_c02240{width:892.500000px;}
.w0_c02240{width:892.830000px;}
.x0_c02240{left:0.000000px;}
.xe_c02240{left:117.000000px;}
.x8_c02240{left:440.999856px;}
.x4_c02240{left:445.680576px;}
.xc_c02240{left:451.080000px;}
.x7_c02240{left:455.399604px;}
.x5_c02240{left:461.880144px;}
.x1_c02240{left:463.320000px;}
.xa_c02240{left:483.480360px;}
.x9_c02240{left:492.119496px;}
.x6_c02240{left:493.200576px;}
.xd_c02240{left:506.880360px;}
.x3_c02240{left:511.919892px;}
.x2_c02240{left:526.679604px;}
.xb_c02240{left:569.880036px;}
@media print{
.v0_c02240{vertical-align:0.000000pt;}
.v1_c02240{vertical-align:1.279488pt;}
.ls10_c02240{letter-spacing:-1.064448pt;}
.lsd_c02240{letter-spacing:-0.688512pt;}
.lsb_c02240{letter-spacing:-0.671616pt;}
.lsc_c02240{letter-spacing:-0.511104pt;}
.ls11_c02240{letter-spacing:-0.397056pt;}
.ls14_c02240{letter-spacing:-0.244992pt;}
.ls12_c02240{letter-spacing:-0.232320pt;}
.ls8_c02240{letter-spacing:-0.215424pt;}
.ls5_c02240{letter-spacing:-0.105600pt;}
.ls17_c02240{letter-spacing:0.000000pt;}
.ls0_c02240{letter-spacing:0.005376pt;}
.ls7_c02240{letter-spacing:0.114048pt;}
.ls9_c02240{letter-spacing:0.215424pt;}
.lsf_c02240{letter-spacing:0.451968pt;}
.ls16_c02240{letter-spacing:0.456960pt;}
.ls13_c02240{letter-spacing:0.477312pt;}
.lse_c02240{letter-spacing:0.515328pt;}
.ls15_c02240{letter-spacing:0.528000pt;}
.lsa_c02240{letter-spacing:0.532224pt;}
.ls3_c02240{letter-spacing:0.544896pt;}
.ls1_c02240{letter-spacing:0.578688pt;}
.ls2_c02240{letter-spacing:0.608256pt;}
.ls6_c02240{letter-spacing:0.637824pt;}
.ls4_c02240{letter-spacing:0.642048pt;}
.wse_c02240{word-spacing:-13.445376pt;}
.wsc_c02240{word-spacing:-11.088000pt;}
.ws7_c02240{word-spacing:-11.075328pt;}
.ws11_c02240{word-spacing:-11.037312pt;}
.ws2_c02240{word-spacing:-10.775424pt;}
.ws4_c02240{word-spacing:-9.888384pt;}
.ws6_c02240{word-spacing:-9.871488pt;}
.ws19_c02240{word-spacing:-1.919232pt;}
.ws1b_c02240{word-spacing:-0.929280pt;}
.ws1a_c02240{word-spacing:-0.899712pt;}
.ws12_c02240{word-spacing:-0.865920pt;}
.ws14_c02240{word-spacing:-0.105600pt;}
.ws17_c02240{word-spacing:-0.088704pt;}
.ws18_c02240{word-spacing:-0.076032pt;}
.ws13_c02240{word-spacing:0.000000pt;}
.ws16_c02240{word-spacing:0.076032pt;}
.ws15_c02240{word-spacing:0.743424pt;}
.wsf_c02240{word-spacing:4.401408pt;}
.wsb_c02240{word-spacing:5.681280pt;}
.wsd_c02240{word-spacing:29.600256pt;}
.wsa_c02240{word-spacing:30.966144pt;}
.ws9_c02240{word-spacing:32.127744pt;}
.ws10_c02240{word-spacing:32.659968pt;}
.ws1_c02240{word-spacing:33.563904pt;}
.ws0_c02240{word-spacing:33.796224pt;}
.ws3_c02240{word-spacing:34.860672pt;}
.ws5_c02240{word-spacing:35.468928pt;}
.ws8_c02240{word-spacing:37.357056pt;}
._0_c02240{margin-left:-1.731840pt;}
._2_c02240{width:1.317888pt;}
._4_c02240{width:2.994816pt;}
._8_c02240{width:13.112064pt;}
._6_c02240{width:14.323584pt;}
._5_c02240{width:20.042880pt;}
._7_c02240{width:21.288960pt;}
._1_c02240{width:44.668800pt;}
._3_c02240{width:45.805056pt;}
.fs0_c02240{font-size:42.240000pt;}
.fs1_c02240{font-size:53.760000pt;}
.y0_c02240{bottom:0.000000pt;}
.y1a_c02240{bottom:130.665211pt;}
.y1c_c02240{bottom:165.866875pt;}
.y1b_c02240{bottom:174.507067pt;}
.y19_c02240{bottom:245.225371pt;}
.y18_c02240{bottom:317.225563pt;}
.y16_c02240{bottom:361.386427pt;}
.y12_c02240{bottom:377.386939pt;}
.y17_c02240{bottom:407.786011pt;}
.y15_c02240{bottom:437.226235pt;}
.y14_c02240{bottom:453.226747pt;}
.y11_c02240{bottom:482.666971pt;}
.y13_c02240{bottom:497.386555pt;}
.y10_c02240{bottom:513.387067pt;}
.y1d_c02240{bottom:546.027067pt;}
.yc_c02240{bottom:579.945467pt;}
.yb_c02240{bottom:593.385179pt;}
.ye_c02240{bottom:628.586875pt;}
.yd_c02240{bottom:637.227067pt;}
.ya_c02240{bottom:707.945339pt;}
.y9_c02240{bottom:779.945531pt;}
.y7_c02240{bottom:823.786427pt;}
.y3_c02240{bottom:839.786939pt;}
.y8_c02240{bottom:870.505979pt;}
.y6_c02240{bottom:899.946203pt;}
.y5_c02240{bottom:915.946715pt;}
.y2_c02240{bottom:945.386939pt;}
.y4_c02240{bottom:959.786555pt;}
.y1_c02240{bottom:975.787067pt;}
.yf_c02240{bottom:1008.747067pt;}
.h3_c02240{height:28.916250pt;}
.h1_c02240{height:37.063125pt;}
.h2_c02240{height:37.166250pt;}
.h4_c02240{height:48.581988pt;}
.h0_c02240{height:1122.666667pt;}
.w1_c02240{width:793.333333pt;}
.w0_c02240{width:793.626667pt;}
.x0_c02240{left:0.000000pt;}
.xe_c02240{left:104.000000pt;}
.x8_c02240{left:391.999872pt;}
.x4_c02240{left:396.160512pt;}
.xc_c02240{left:400.960000pt;}
.x7_c02240{left:404.799648pt;}
.x5_c02240{left:410.560128pt;}
.x1_c02240{left:411.840000pt;}
.xa_c02240{left:429.760320pt;}
.x9_c02240{left:437.439552pt;}
.x6_c02240{left:438.400512pt;}
.xd_c02240{left:450.560320pt;}
.x3_c02240{left:455.039904pt;}
.x2_c02240{left:468.159648pt;}
.xb_c02240{left:506.560032pt;}
}





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

.ir_c02241:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02241{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02241;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02241{font-family:ff1_c02241;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02241;src:url('chunks/assets/font_caa268fb94f5b3e44d0a5b54.woff2')format("woff");}.ff2_c02241{font-family:ff2_c02241;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02241;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02241{font-family:ff3_c02241;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02241{vertical-align:0.000000px;}
.v1_c02241{vertical-align:1.439424px;}
.ls15_c02241{letter-spacing:-0.793584px;}
.ls14_c02241{letter-spacing:-0.774576px;}
.ls17_c02241{letter-spacing:-0.736560px;}
.ls8_c02241{letter-spacing:-0.613008px;}
.lsa_c02241{letter-spacing:-0.574992px;}
.lsd_c02241{letter-spacing:-0.427680px;}
.ls10_c02241{letter-spacing:-0.275616px;}
.ls18_c02241{letter-spacing:-0.270864px;}
.lse_c02241{letter-spacing:-0.261360px;}
.ls7_c02241{letter-spacing:-0.242352px;}
.ls5_c02241{letter-spacing:-0.118800px;}
.ls13_c02241{letter-spacing:0.000000px;}
.ls1_c02241{letter-spacing:0.006048px;}
.ls6_c02241{letter-spacing:0.128304px;}
.lsc_c02241{letter-spacing:0.508464px;}
.ls12_c02241{letter-spacing:0.514080px;}
.lsf_c02241{letter-spacing:0.536976px;}
.lsb_c02241{letter-spacing:0.579744px;}
.ls11_c02241{letter-spacing:0.594000px;}
.ls9_c02241{letter-spacing:0.598752px;}
.ls3_c02241{letter-spacing:0.613008px;}
.ls2_c02241{letter-spacing:0.651024px;}
.ls16_c02241{letter-spacing:0.660528px;}
.ls0_c02241{letter-spacing:0.717552px;}
.ls4_c02241{letter-spacing:0.722304px;}
.sc__c02241{text-shadow:none;}
.sc0_c02241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02241{-webkit-text-stroke:0px transparent;}
.sc0_c02241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02241{word-spacing:-15.126048px;}
.wsa_c02241{word-spacing:-12.474000px;}
.ws8_c02241{word-spacing:-12.459744px;}
.ws9_c02241{word-spacing:-12.416976px;}
.ws4_c02241{word-spacing:-11.637648px;}
.ws2_c02241{word-spacing:-11.266992px;}
.wsd_c02241{word-spacing:-11.105424px;}
.ws18_c02241{word-spacing:-2.159136px;}
.ws14_c02241{word-spacing:-1.078704px;}
.ws1b_c02241{word-spacing:-1.021680px;}
.ws19_c02241{word-spacing:-1.012176px;}
.ws11_c02241{word-spacing:-0.974160px;}
.ws13_c02241{word-spacing:-0.118800px;}
.ws16_c02241{word-spacing:-0.099792px;}
.ws1c_c02241{word-spacing:-0.090288px;}
.ws17_c02241{word-spacing:-0.085536px;}
.ws12_c02241{word-spacing:0.000000px;}
.ws15_c02241{word-spacing:0.066528px;}
.ws1a_c02241{word-spacing:0.432432px;}
.ws10_c02241{word-spacing:6.629040px;}
.wsb_c02241{word-spacing:33.300288px;}
.wsf_c02241{word-spacing:34.836912px;}
.wse_c02241{word-spacing:36.143712px;}
.ws6_c02241{word-spacing:36.742464px;}
.ws1_c02241{word-spacing:37.759392px;}
.ws0_c02241{word-spacing:38.020752px;}
.ws3_c02241{word-spacing:39.218256px;}
.ws5_c02241{word-spacing:39.902544px;}
.ws7_c02241{word-spacing:42.026688px;}
._0_c02241{margin-left:-1.948320px;}
._2_c02241{width:1.482624px;}
._4_c02241{width:3.302640px;}
._6_c02241{width:7.142256px;}
._5_c02241{width:14.751072px;}
._8_c02241{width:19.982160px;}
._9_c02241{width:23.451120px;}
._7_c02241{width:24.691392px;}
._1_c02241{width:50.252400px;}
._3_c02241{width:51.530688px;}
.fc0_c02241{color:rgb(0,0,0);}
.fs0_c02241{font-size:47.520000px;}
.fs1_c02241{font-size:60.480000px;}
.y0_c02241{bottom:0.000000px;}
.y1a_c02241{bottom:131.878686px;}
.y19_c02241{bottom:146.998362px;}
.y1c_c02241{bottom:186.600234px;}
.y1b_c02241{bottom:196.320450px;}
.y18_c02241{bottom:275.878542px;}
.y17_c02241{bottom:356.878758px;}
.y15_c02241{bottom:406.559730px;}
.y11_c02241{bottom:424.560306px;}
.y16_c02241{bottom:458.759262px;}
.y14_c02241{bottom:491.879514px;}
.y13_c02241{bottom:509.880090px;}
.y10_c02241{bottom:543.000342px;}
.y12_c02241{bottom:559.559874px;}
.yf_c02241{bottom:577.560450px;}
.y1d_c02241{bottom:614.280450px;}
.yb_c02241{bottom:667.558326px;}
.yd_c02241{bottom:707.160234px;}
.yc_c02241{bottom:716.880450px;}
.ya_c02241{bottom:796.438506px;}
.y9_c02241{bottom:877.438722px;}
.y7_c02241{bottom:926.759730px;}
.y3_c02241{bottom:944.760306px;}
.y8_c02241{bottom:979.319226px;}
.y6_c02241{bottom:1012.439478px;}
.y5_c02241{bottom:1030.440054px;}
.y2_c02241{bottom:1063.560306px;}
.y4_c02241{bottom:1079.759874px;}
.y1_c02241{bottom:1097.760450px;}
.ye_c02241{bottom:1134.840450px;}
.h3_c02241{height:32.530781px;}
.h1_c02241{height:41.696016px;}
.h2_c02241{height:41.812031px;}
.h4_c02241{height:54.654737px;}
.h0_c02241{height:1263.000000px;}
.w1_c02241{width:892.500000px;}
.w0_c02241{width:892.830000px;}
.x0_c02241{left:0.000000px;}
.xd_c02241{left:117.000000px;}
.x8_c02241{left:440.999856px;}
.x4_c02241{left:445.680576px;}
.xb_c02241{left:451.080000px;}
.x7_c02241{left:455.399604px;}
.x5_c02241{left:461.880144px;}
.x1_c02241{left:463.320000px;}
.xa_c02241{left:483.480360px;}
.x9_c02241{left:492.119496px;}
.x6_c02241{left:493.200576px;}
.xc_c02241{left:506.880360px;}
.x3_c02241{left:511.919892px;}
.x2_c02241{left:526.679604px;}
.xe_c02241{left:569.880036px;}
@media print{
.v0_c02241{vertical-align:0.000000pt;}
.v1_c02241{vertical-align:1.279488pt;}
.ls15_c02241{letter-spacing:-0.705408pt;}
.ls14_c02241{letter-spacing:-0.688512pt;}
.ls17_c02241{letter-spacing:-0.654720pt;}
.ls8_c02241{letter-spacing:-0.544896pt;}
.lsa_c02241{letter-spacing:-0.511104pt;}
.lsd_c02241{letter-spacing:-0.380160pt;}
.ls10_c02241{letter-spacing:-0.244992pt;}
.ls18_c02241{letter-spacing:-0.240768pt;}
.lse_c02241{letter-spacing:-0.232320pt;}
.ls7_c02241{letter-spacing:-0.215424pt;}
.ls5_c02241{letter-spacing:-0.105600pt;}
.ls13_c02241{letter-spacing:0.000000pt;}
.ls1_c02241{letter-spacing:0.005376pt;}
.ls6_c02241{letter-spacing:0.114048pt;}
.lsc_c02241{letter-spacing:0.451968pt;}
.ls12_c02241{letter-spacing:0.456960pt;}
.lsf_c02241{letter-spacing:0.477312pt;}
.lsb_c02241{letter-spacing:0.515328pt;}
.ls11_c02241{letter-spacing:0.528000pt;}
.ls9_c02241{letter-spacing:0.532224pt;}
.ls3_c02241{letter-spacing:0.544896pt;}
.ls2_c02241{letter-spacing:0.578688pt;}
.ls16_c02241{letter-spacing:0.587136pt;}
.ls0_c02241{letter-spacing:0.637824pt;}
.ls4_c02241{letter-spacing:0.642048pt;}
.wsc_c02241{word-spacing:-13.445376pt;}
.wsa_c02241{word-spacing:-11.088000pt;}
.ws8_c02241{word-spacing:-11.075328pt;}
.ws9_c02241{word-spacing:-11.037312pt;}
.ws4_c02241{word-spacing:-10.344576pt;}
.ws2_c02241{word-spacing:-10.015104pt;}
.wsd_c02241{word-spacing:-9.871488pt;}
.ws18_c02241{word-spacing:-1.919232pt;}
.ws14_c02241{word-spacing:-0.958848pt;}
.ws1b_c02241{word-spacing:-0.908160pt;}
.ws19_c02241{word-spacing:-0.899712pt;}
.ws11_c02241{word-spacing:-0.865920pt;}
.ws13_c02241{word-spacing:-0.105600pt;}
.ws16_c02241{word-spacing:-0.088704pt;}
.ws1c_c02241{word-spacing:-0.080256pt;}
.ws17_c02241{word-spacing:-0.076032pt;}
.ws12_c02241{word-spacing:0.000000pt;}
.ws15_c02241{word-spacing:0.059136pt;}
.ws1a_c02241{word-spacing:0.384384pt;}
.ws10_c02241{word-spacing:5.892480pt;}
.wsb_c02241{word-spacing:29.600256pt;}
.wsf_c02241{word-spacing:30.966144pt;}
.wse_c02241{word-spacing:32.127744pt;}
.ws6_c02241{word-spacing:32.659968pt;}
.ws1_c02241{word-spacing:33.563904pt;}
.ws0_c02241{word-spacing:33.796224pt;}
.ws3_c02241{word-spacing:34.860672pt;}
.ws5_c02241{word-spacing:35.468928pt;}
.ws7_c02241{word-spacing:37.357056pt;}
._0_c02241{margin-left:-1.731840pt;}
._2_c02241{width:1.317888pt;}
._4_c02241{width:2.935680pt;}
._6_c02241{width:6.348672pt;}
._5_c02241{width:13.112064pt;}
._8_c02241{width:17.761920pt;}
._9_c02241{width:20.845440pt;}
._7_c02241{width:21.947904pt;}
._1_c02241{width:44.668800pt;}
._3_c02241{width:45.805056pt;}
.fs0_c02241{font-size:42.240000pt;}
.fs1_c02241{font-size:53.760000pt;}
.y0_c02241{bottom:0.000000pt;}
.y1a_c02241{bottom:117.225499pt;}
.y19_c02241{bottom:130.665211pt;}
.y1c_c02241{bottom:165.866875pt;}
.y1b_c02241{bottom:174.507067pt;}
.y18_c02241{bottom:245.225371pt;}
.y17_c02241{bottom:317.225563pt;}
.y15_c02241{bottom:361.386427pt;}
.y11_c02241{bottom:377.386939pt;}
.y16_c02241{bottom:407.786011pt;}
.y14_c02241{bottom:437.226235pt;}
.y13_c02241{bottom:453.226747pt;}
.y10_c02241{bottom:482.666971pt;}
.y12_c02241{bottom:497.386555pt;}
.yf_c02241{bottom:513.387067pt;}
.y1d_c02241{bottom:546.027067pt;}
.yb_c02241{bottom:593.385179pt;}
.yd_c02241{bottom:628.586875pt;}
.yc_c02241{bottom:637.227067pt;}
.ya_c02241{bottom:707.945339pt;}
.y9_c02241{bottom:779.945531pt;}
.y7_c02241{bottom:823.786427pt;}
.y3_c02241{bottom:839.786939pt;}
.y8_c02241{bottom:870.505979pt;}
.y6_c02241{bottom:899.946203pt;}
.y5_c02241{bottom:915.946715pt;}
.y2_c02241{bottom:945.386939pt;}
.y4_c02241{bottom:959.786555pt;}
.y1_c02241{bottom:975.787067pt;}
.ye_c02241{bottom:1008.747067pt;}
.h3_c02241{height:28.916250pt;}
.h1_c02241{height:37.063125pt;}
.h2_c02241{height:37.166250pt;}
.h4_c02241{height:48.581988pt;}
.h0_c02241{height:1122.666667pt;}
.w1_c02241{width:793.333333pt;}
.w0_c02241{width:793.626667pt;}
.x0_c02241{left:0.000000pt;}
.xd_c02241{left:104.000000pt;}
.x8_c02241{left:391.999872pt;}
.x4_c02241{left:396.160512pt;}
.xb_c02241{left:400.960000pt;}
.x7_c02241{left:404.799648pt;}
.x5_c02241{left:410.560128pt;}
.x1_c02241{left:411.840000pt;}
.xa_c02241{left:429.760320pt;}
.x9_c02241{left:437.439552pt;}
.x6_c02241{left:438.400512pt;}
.xc_c02241{left:450.560320pt;}
.x3_c02241{left:455.039904pt;}
.x2_c02241{left:468.159648pt;}
.xe_c02241{left:506.560032pt;}
}





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

.ir_c02242:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02242{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02242;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02242{font-family:ff1_c02242;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02242;src:url('chunks/assets/font_2fa296b091aefccd426d0738.woff2')format("woff");}.ff2_c02242{font-family:ff2_c02242;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02242;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02242{font-family:ff3_c02242;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02242{vertical-align:0.000000px;}
.v1_c02242{vertical-align:1.439424px;}
.lse_c02242{letter-spacing:-0.793584px;}
.lsb_c02242{letter-spacing:-0.774576px;}
.ls11_c02242{letter-spacing:-0.736560px;}
.ls8_c02242{letter-spacing:-0.613008px;}
.lsa_c02242{letter-spacing:-0.574992px;}
.ls18_c02242{letter-spacing:-0.427680px;}
.ls1a_c02242{letter-spacing:-0.361152px;}
.ls1b_c02242{letter-spacing:-0.275616px;}
.ls12_c02242{letter-spacing:-0.270864px;}
.ls16_c02242{letter-spacing:-0.266112px;}
.lsf_c02242{letter-spacing:-0.261360px;}
.ls7_c02242{letter-spacing:-0.242352px;}
.ls4_c02242{letter-spacing:-0.118800px;}
.ls17_c02242{letter-spacing:-0.014256px;}
.ls15_c02242{letter-spacing:0.000000px;}
.ls1_c02242{letter-spacing:0.006048px;}
.ls6_c02242{letter-spacing:0.128304px;}
.lsd_c02242{letter-spacing:0.508464px;}
.ls14_c02242{letter-spacing:0.514080px;}
.ls10_c02242{letter-spacing:0.536976px;}
.lsc_c02242{letter-spacing:0.579744px;}
.ls13_c02242{letter-spacing:0.594000px;}
.ls9_c02242{letter-spacing:0.598752px;}
.ls3_c02242{letter-spacing:0.613008px;}
.ls19_c02242{letter-spacing:0.627264px;}
.ls0_c02242{letter-spacing:0.651024px;}
.ls5_c02242{letter-spacing:0.717552px;}
.ls2_c02242{letter-spacing:0.722304px;}
.sc__c02242{text-shadow:none;}
.sc0_c02242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02242{-webkit-text-stroke:0px transparent;}
.sc0_c02242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02242{word-spacing:-15.126048px;}
.wsb_c02242{word-spacing:-12.474000px;}
.ws7_c02242{word-spacing:-12.459744px;}
.ws12_c02242{word-spacing:-12.416976px;}
.wsf_c02242{word-spacing:-11.865744px;}
.ws4_c02242{word-spacing:-11.637648px;}
.ws2_c02242{word-spacing:-11.266992px;}
.ws6_c02242{word-spacing:-11.105424px;}
.ws1b_c02242{word-spacing:-2.159136px;}
.ws1d_c02242{word-spacing:-1.083456px;}
.ws15_c02242{word-spacing:-1.012176px;}
.ws1f_c02242{word-spacing:-0.988416px;}
.ws13_c02242{word-spacing:-0.974160px;}
.ws16_c02242{word-spacing:-0.118800px;}
.ws18_c02242{word-spacing:-0.099792px;}
.ws1c_c02242{word-spacing:-0.095040px;}
.ws19_c02242{word-spacing:-0.090288px;}
.ws1a_c02242{word-spacing:-0.085536px;}
.ws14_c02242{word-spacing:0.000000px;}
.ws1e_c02242{word-spacing:0.066528px;}
.ws17_c02242{word-spacing:0.432432px;}
.wsa_c02242{word-spacing:6.629040px;}
.ws11_c02242{word-spacing:29.086992px;}
.wsc_c02242{word-spacing:33.300288px;}
.ws9_c02242{word-spacing:34.836912px;}
.ws10_c02242{word-spacing:36.143712px;}
.wse_c02242{word-spacing:36.742464px;}
.ws1_c02242{word-spacing:37.759392px;}
.ws0_c02242{word-spacing:38.020752px;}
.ws3_c02242{word-spacing:39.218256px;}
.ws5_c02242{word-spacing:39.902544px;}
.ws8_c02242{word-spacing:42.026688px;}
._0_c02242{margin-left:-1.948320px;}
._2_c02242{width:1.482624px;}
._4_c02242{width:3.302640px;}
._8_c02242{width:14.751072px;}
._6_c02242{width:19.982160px;}
._7_c02242{width:23.451120px;}
._5_c02242{width:24.691392px;}
._a_c02242{width:39.427344px;}
._9_c02242{width:43.428528px;}
._b_c02242{width:45.224784px;}
._1_c02242{width:50.252400px;}
._3_c02242{width:51.530688px;}
.fc0_c02242{color:rgb(0,0,0);}
.fs0_c02242{font-size:47.520000px;}
.fs1_c02242{font-size:60.480000px;}
.y0_c02242{bottom:0.000000px;}
.y1c_c02242{bottom:146.999550px;}
.y1e_c02242{bottom:186.600234px;}
.y1d_c02242{bottom:196.320450px;}
.y1b_c02242{bottom:275.879730px;}
.y1a_c02242{bottom:326.999370px;}
.y19_c02242{bottom:341.759082px;}
.y18_c02242{bottom:356.878758px;}
.y16_c02242{bottom:406.559730px;}
.y12_c02242{bottom:424.560306px;}
.y17_c02242{bottom:458.759262px;}
.y15_c02242{bottom:491.879514px;}
.y14_c02242{bottom:509.880090px;}
.y11_c02242{bottom:543.000342px;}
.y13_c02242{bottom:559.559874px;}
.y10_c02242{bottom:577.560450px;}
.y1f_c02242{bottom:614.280450px;}
.yc_c02242{bottom:652.438650px;}
.yb_c02242{bottom:667.558326px;}
.ye_c02242{bottom:707.160234px;}
.yd_c02242{bottom:716.880450px;}
.ya_c02242{bottom:796.438506px;}
.y9_c02242{bottom:877.438722px;}
.y7_c02242{bottom:926.759730px;}
.y3_c02242{bottom:944.760306px;}
.y8_c02242{bottom:979.319226px;}
.y6_c02242{bottom:1012.439478px;}
.y5_c02242{bottom:1030.440054px;}
.y2_c02242{bottom:1063.560306px;}
.y4_c02242{bottom:1079.759874px;}
.y1_c02242{bottom:1097.760450px;}
.yf_c02242{bottom:1134.840450px;}
.h3_c02242{height:32.530781px;}
.h1_c02242{height:41.696016px;}
.h2_c02242{height:41.812031px;}
.h4_c02242{height:54.654737px;}
.h0_c02242{height:1263.000000px;}
.w1_c02242{width:892.500000px;}
.w0_c02242{width:892.830000px;}
.x0_c02242{left:0.000000px;}
.xe_c02242{left:117.000000px;}
.x8_c02242{left:440.999856px;}
.x4_c02242{left:445.680576px;}
.xc_c02242{left:451.080000px;}
.x7_c02242{left:455.399604px;}
.x5_c02242{left:461.880144px;}
.x1_c02242{left:463.320000px;}
.xa_c02242{left:483.480360px;}
.x9_c02242{left:492.119496px;}
.x6_c02242{left:493.200576px;}
.xd_c02242{left:506.880360px;}
.x3_c02242{left:511.919892px;}
.x2_c02242{left:526.679604px;}
.xb_c02242{left:569.880036px;}
@media print{
.v0_c02242{vertical-align:0.000000pt;}
.v1_c02242{vertical-align:1.279488pt;}
.lse_c02242{letter-spacing:-0.705408pt;}
.lsb_c02242{letter-spacing:-0.688512pt;}
.ls11_c02242{letter-spacing:-0.654720pt;}
.ls8_c02242{letter-spacing:-0.544896pt;}
.lsa_c02242{letter-spacing:-0.511104pt;}
.ls18_c02242{letter-spacing:-0.380160pt;}
.ls1a_c02242{letter-spacing:-0.321024pt;}
.ls1b_c02242{letter-spacing:-0.244992pt;}
.ls12_c02242{letter-spacing:-0.240768pt;}
.ls16_c02242{letter-spacing:-0.236544pt;}
.lsf_c02242{letter-spacing:-0.232320pt;}
.ls7_c02242{letter-spacing:-0.215424pt;}
.ls4_c02242{letter-spacing:-0.105600pt;}
.ls17_c02242{letter-spacing:-0.012672pt;}
.ls15_c02242{letter-spacing:0.000000pt;}
.ls1_c02242{letter-spacing:0.005376pt;}
.ls6_c02242{letter-spacing:0.114048pt;}
.lsd_c02242{letter-spacing:0.451968pt;}
.ls14_c02242{letter-spacing:0.456960pt;}
.ls10_c02242{letter-spacing:0.477312pt;}
.lsc_c02242{letter-spacing:0.515328pt;}
.ls13_c02242{letter-spacing:0.528000pt;}
.ls9_c02242{letter-spacing:0.532224pt;}
.ls3_c02242{letter-spacing:0.544896pt;}
.ls19_c02242{letter-spacing:0.557568pt;}
.ls0_c02242{letter-spacing:0.578688pt;}
.ls5_c02242{letter-spacing:0.637824pt;}
.ls2_c02242{letter-spacing:0.642048pt;}
.wsd_c02242{word-spacing:-13.445376pt;}
.wsb_c02242{word-spacing:-11.088000pt;}
.ws7_c02242{word-spacing:-11.075328pt;}
.ws12_c02242{word-spacing:-11.037312pt;}
.wsf_c02242{word-spacing:-10.547328pt;}
.ws4_c02242{word-spacing:-10.344576pt;}
.ws2_c02242{word-spacing:-10.015104pt;}
.ws6_c02242{word-spacing:-9.871488pt;}
.ws1b_c02242{word-spacing:-1.919232pt;}
.ws1d_c02242{word-spacing:-0.963072pt;}
.ws15_c02242{word-spacing:-0.899712pt;}
.ws1f_c02242{word-spacing:-0.878592pt;}
.ws13_c02242{word-spacing:-0.865920pt;}
.ws16_c02242{word-spacing:-0.105600pt;}
.ws18_c02242{word-spacing:-0.088704pt;}
.ws1c_c02242{word-spacing:-0.084480pt;}
.ws19_c02242{word-spacing:-0.080256pt;}
.ws1a_c02242{word-spacing:-0.076032pt;}
.ws14_c02242{word-spacing:0.000000pt;}
.ws1e_c02242{word-spacing:0.059136pt;}
.ws17_c02242{word-spacing:0.384384pt;}
.wsa_c02242{word-spacing:5.892480pt;}
.ws11_c02242{word-spacing:25.855104pt;}
.wsc_c02242{word-spacing:29.600256pt;}
.ws9_c02242{word-spacing:30.966144pt;}
.ws10_c02242{word-spacing:32.127744pt;}
.wse_c02242{word-spacing:32.659968pt;}
.ws1_c02242{word-spacing:33.563904pt;}
.ws0_c02242{word-spacing:33.796224pt;}
.ws3_c02242{word-spacing:34.860672pt;}
.ws5_c02242{word-spacing:35.468928pt;}
.ws8_c02242{word-spacing:37.357056pt;}
._0_c02242{margin-left:-1.731840pt;}
._2_c02242{width:1.317888pt;}
._4_c02242{width:2.935680pt;}
._8_c02242{width:13.112064pt;}
._6_c02242{width:17.761920pt;}
._7_c02242{width:20.845440pt;}
._5_c02242{width:21.947904pt;}
._a_c02242{width:35.046528pt;}
._9_c02242{width:38.603136pt;}
._b_c02242{width:40.199808pt;}
._1_c02242{width:44.668800pt;}
._3_c02242{width:45.805056pt;}
.fs0_c02242{font-size:42.240000pt;}
.fs1_c02242{font-size:53.760000pt;}
.y0_c02242{bottom:0.000000pt;}
.y1c_c02242{bottom:130.666267pt;}
.y1e_c02242{bottom:165.866875pt;}
.y1d_c02242{bottom:174.507067pt;}
.y1b_c02242{bottom:245.226427pt;}
.y1a_c02242{bottom:290.666107pt;}
.y19_c02242{bottom:303.785851pt;}
.y18_c02242{bottom:317.225563pt;}
.y16_c02242{bottom:361.386427pt;}
.y12_c02242{bottom:377.386939pt;}
.y17_c02242{bottom:407.786011pt;}
.y15_c02242{bottom:437.226235pt;}
.y14_c02242{bottom:453.226747pt;}
.y11_c02242{bottom:482.666971pt;}
.y13_c02242{bottom:497.386555pt;}
.y10_c02242{bottom:513.387067pt;}
.y1f_c02242{bottom:546.027067pt;}
.yc_c02242{bottom:579.945467pt;}
.yb_c02242{bottom:593.385179pt;}
.ye_c02242{bottom:628.586875pt;}
.yd_c02242{bottom:637.227067pt;}
.ya_c02242{bottom:707.945339pt;}
.y9_c02242{bottom:779.945531pt;}
.y7_c02242{bottom:823.786427pt;}
.y3_c02242{bottom:839.786939pt;}
.y8_c02242{bottom:870.505979pt;}
.y6_c02242{bottom:899.946203pt;}
.y5_c02242{bottom:915.946715pt;}
.y2_c02242{bottom:945.386939pt;}
.y4_c02242{bottom:959.786555pt;}
.y1_c02242{bottom:975.787067pt;}
.yf_c02242{bottom:1008.747067pt;}
.h3_c02242{height:28.916250pt;}
.h1_c02242{height:37.063125pt;}
.h2_c02242{height:37.166250pt;}
.h4_c02242{height:48.581988pt;}
.h0_c02242{height:1122.666667pt;}
.w1_c02242{width:793.333333pt;}
.w0_c02242{width:793.626667pt;}
.x0_c02242{left:0.000000pt;}
.xe_c02242{left:104.000000pt;}
.x8_c02242{left:391.999872pt;}
.x4_c02242{left:396.160512pt;}
.xc_c02242{left:400.960000pt;}
.x7_c02242{left:404.799648pt;}
.x5_c02242{left:410.560128pt;}
.x1_c02242{left:411.840000pt;}
.xa_c02242{left:429.760320pt;}
.x9_c02242{left:437.439552pt;}
.x6_c02242{left:438.400512pt;}
.xd_c02242{left:450.560320pt;}
.x3_c02242{left:455.039904pt;}
.x2_c02242{left:468.159648pt;}
.xb_c02242{left:506.560032pt;}
}





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

.ir_c02243:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02243{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02243;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02243{font-family:ff1_c02243;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02243;src:url('chunks/assets/font_7c7e23698535d97a8a8b22b7.woff2')format("woff");}.ff2_c02243{font-family:ff2_c02243;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02243;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02243{font-family:ff3_c02243;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02243{vertical-align:0.000000px;}
.v1_c02243{vertical-align:1.439424px;}
.ls13_c02243{letter-spacing:-0.845856px;}
.lsc_c02243{letter-spacing:-0.774576px;}
.ls12_c02243{letter-spacing:-0.736560px;}
.lsf_c02243{letter-spacing:-0.722304px;}
.ls8_c02243{letter-spacing:-0.613008px;}
.lsb_c02243{letter-spacing:-0.574992px;}
.ls18_c02243{letter-spacing:-0.337392px;}
.ls14_c02243{letter-spacing:-0.275616px;}
.lsa_c02243{letter-spacing:-0.266112px;}
.ls10_c02243{letter-spacing:-0.261360px;}
.ls7_c02243{letter-spacing:-0.242352px;}
.ls4_c02243{letter-spacing:-0.118800px;}
.ls17_c02243{letter-spacing:0.000000px;}
.ls0_c02243{letter-spacing:0.006048px;}
.ls6_c02243{letter-spacing:0.128304px;}
.lse_c02243{letter-spacing:0.508464px;}
.ls16_c02243{letter-spacing:0.514080px;}
.ls11_c02243{letter-spacing:0.536976px;}
.lsd_c02243{letter-spacing:0.579744px;}
.ls15_c02243{letter-spacing:0.594000px;}
.ls9_c02243{letter-spacing:0.598752px;}
.ls2_c02243{letter-spacing:0.613008px;}
.ls1_c02243{letter-spacing:0.651024px;}
.ls5_c02243{letter-spacing:0.717552px;}
.ls3_c02243{letter-spacing:0.722304px;}
.sc__c02243{text-shadow:none;}
.sc0_c02243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02243{-webkit-text-stroke:0px transparent;}
.sc0_c02243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02243{word-spacing:-15.126048px;}
.wsa_c02243{word-spacing:-12.474000px;}
.ws6_c02243{word-spacing:-12.459744px;}
.ws2_c02243{word-spacing:-11.266992px;}
.ws5_c02243{word-spacing:-11.105424px;}
.ws16_c02243{word-spacing:-2.159136px;}
.ws17_c02243{word-spacing:-1.012176px;}
.wse_c02243{word-spacing:-0.974160px;}
.ws10_c02243{word-spacing:-0.118800px;}
.ws13_c02243{word-spacing:-0.099792px;}
.ws11_c02243{word-spacing:-0.095040px;}
.ws15_c02243{word-spacing:-0.085536px;}
.ws18_c02243{word-spacing:-0.023760px;}
.wsf_c02243{word-spacing:0.000000px;}
.ws12_c02243{word-spacing:0.361152px;}
.ws14_c02243{word-spacing:0.484704px;}
.ws9_c02243{word-spacing:6.629040px;}
.wsb_c02243{word-spacing:33.300288px;}
.ws8_c02243{word-spacing:34.836912px;}
.wsd_c02243{word-spacing:36.143712px;}
.ws1_c02243{word-spacing:37.759392px;}
.ws0_c02243{word-spacing:38.020752px;}
.ws3_c02243{word-spacing:39.218256px;}
.ws4_c02243{word-spacing:39.902544px;}
.ws7_c02243{word-spacing:42.026688px;}
._0_c02243{margin-left:-1.948320px;}
._2_c02243{width:1.482624px;}
._7_c02243{width:2.509056px;}
._8_c02243{width:14.751072px;}
._5_c02243{width:19.982160px;}
._6_c02243{width:23.451120px;}
._4_c02243{width:24.691392px;}
._1_c02243{width:50.252400px;}
._3_c02243{width:51.530688px;}
.fc0_c02243{color:rgb(0,0,0);}
.fs0_c02243{font-size:47.520000px;}
.fs1_c02243{font-size:60.480000px;}
.y0_c02243{bottom:0.000000px;}
.y1b_c02243{bottom:131.878686px;}
.y1a_c02243{bottom:146.998362px;}
.y1d_c02243{bottom:186.600234px;}
.y1c_c02243{bottom:196.320450px;}
.y19_c02243{bottom:275.878542px;}
.y18_c02243{bottom:356.878758px;}
.y16_c02243{bottom:406.559730px;}
.y12_c02243{bottom:424.560306px;}
.y17_c02243{bottom:458.759262px;}
.y15_c02243{bottom:491.879514px;}
.y14_c02243{bottom:509.880090px;}
.y11_c02243{bottom:543.000342px;}
.y13_c02243{bottom:559.559874px;}
.y10_c02243{bottom:577.560450px;}
.y1e_c02243{bottom:614.280450px;}
.yc_c02243{bottom:652.438650px;}
.yb_c02243{bottom:667.558326px;}
.ye_c02243{bottom:707.160234px;}
.yd_c02243{bottom:716.880450px;}
.ya_c02243{bottom:796.438506px;}
.y9_c02243{bottom:877.438722px;}
.y7_c02243{bottom:926.759730px;}
.y3_c02243{bottom:944.760306px;}
.y8_c02243{bottom:979.319226px;}
.y6_c02243{bottom:1012.439478px;}
.y5_c02243{bottom:1030.440054px;}
.y2_c02243{bottom:1063.560306px;}
.y4_c02243{bottom:1079.759874px;}
.y1_c02243{bottom:1097.760450px;}
.yf_c02243{bottom:1134.840450px;}
.h3_c02243{height:32.530781px;}
.h1_c02243{height:41.696016px;}
.h2_c02243{height:41.812031px;}
.h4_c02243{height:54.654737px;}
.h0_c02243{height:1263.000000px;}
.w1_c02243{width:892.500000px;}
.w0_c02243{width:892.830000px;}
.x0_c02243{left:0.000000px;}
.xe_c02243{left:117.000000px;}
.x8_c02243{left:440.999856px;}
.x4_c02243{left:445.680576px;}
.xc_c02243{left:451.080000px;}
.x7_c02243{left:455.399604px;}
.x5_c02243{left:461.880144px;}
.x1_c02243{left:463.320000px;}
.xa_c02243{left:483.480360px;}
.x9_c02243{left:492.119496px;}
.x6_c02243{left:493.200576px;}
.xd_c02243{left:506.880360px;}
.x3_c02243{left:511.919892px;}
.x2_c02243{left:526.679604px;}
.xb_c02243{left:569.880036px;}
@media print{
.v0_c02243{vertical-align:0.000000pt;}
.v1_c02243{vertical-align:1.279488pt;}
.ls13_c02243{letter-spacing:-0.751872pt;}
.lsc_c02243{letter-spacing:-0.688512pt;}
.ls12_c02243{letter-spacing:-0.654720pt;}
.lsf_c02243{letter-spacing:-0.642048pt;}
.ls8_c02243{letter-spacing:-0.544896pt;}
.lsb_c02243{letter-spacing:-0.511104pt;}
.ls18_c02243{letter-spacing:-0.299904pt;}
.ls14_c02243{letter-spacing:-0.244992pt;}
.lsa_c02243{letter-spacing:-0.236544pt;}
.ls10_c02243{letter-spacing:-0.232320pt;}
.ls7_c02243{letter-spacing:-0.215424pt;}
.ls4_c02243{letter-spacing:-0.105600pt;}
.ls17_c02243{letter-spacing:0.000000pt;}
.ls0_c02243{letter-spacing:0.005376pt;}
.ls6_c02243{letter-spacing:0.114048pt;}
.lse_c02243{letter-spacing:0.451968pt;}
.ls16_c02243{letter-spacing:0.456960pt;}
.ls11_c02243{letter-spacing:0.477312pt;}
.lsd_c02243{letter-spacing:0.515328pt;}
.ls15_c02243{letter-spacing:0.528000pt;}
.ls9_c02243{letter-spacing:0.532224pt;}
.ls2_c02243{letter-spacing:0.544896pt;}
.ls1_c02243{letter-spacing:0.578688pt;}
.ls5_c02243{letter-spacing:0.637824pt;}
.ls3_c02243{letter-spacing:0.642048pt;}
.wsc_c02243{word-spacing:-13.445376pt;}
.wsa_c02243{word-spacing:-11.088000pt;}
.ws6_c02243{word-spacing:-11.075328pt;}
.ws2_c02243{word-spacing:-10.015104pt;}
.ws5_c02243{word-spacing:-9.871488pt;}
.ws16_c02243{word-spacing:-1.919232pt;}
.ws17_c02243{word-spacing:-0.899712pt;}
.wse_c02243{word-spacing:-0.865920pt;}
.ws10_c02243{word-spacing:-0.105600pt;}
.ws13_c02243{word-spacing:-0.088704pt;}
.ws11_c02243{word-spacing:-0.084480pt;}
.ws15_c02243{word-spacing:-0.076032pt;}
.ws18_c02243{word-spacing:-0.021120pt;}
.wsf_c02243{word-spacing:0.000000pt;}
.ws12_c02243{word-spacing:0.321024pt;}
.ws14_c02243{word-spacing:0.430848pt;}
.ws9_c02243{word-spacing:5.892480pt;}
.wsb_c02243{word-spacing:29.600256pt;}
.ws8_c02243{word-spacing:30.966144pt;}
.wsd_c02243{word-spacing:32.127744pt;}
.ws1_c02243{word-spacing:33.563904pt;}
.ws0_c02243{word-spacing:33.796224pt;}
.ws3_c02243{word-spacing:34.860672pt;}
.ws4_c02243{word-spacing:35.468928pt;}
.ws7_c02243{word-spacing:37.357056pt;}
._0_c02243{margin-left:-1.731840pt;}
._2_c02243{width:1.317888pt;}
._7_c02243{width:2.230272pt;}
._8_c02243{width:13.112064pt;}
._5_c02243{width:17.761920pt;}
._6_c02243{width:20.845440pt;}
._4_c02243{width:21.947904pt;}
._1_c02243{width:44.668800pt;}
._3_c02243{width:45.805056pt;}
.fs0_c02243{font-size:42.240000pt;}
.fs1_c02243{font-size:53.760000pt;}
.y0_c02243{bottom:0.000000pt;}
.y1b_c02243{bottom:117.225499pt;}
.y1a_c02243{bottom:130.665211pt;}
.y1d_c02243{bottom:165.866875pt;}
.y1c_c02243{bottom:174.507067pt;}
.y19_c02243{bottom:245.225371pt;}
.y18_c02243{bottom:317.225563pt;}
.y16_c02243{bottom:361.386427pt;}
.y12_c02243{bottom:377.386939pt;}
.y17_c02243{bottom:407.786011pt;}
.y15_c02243{bottom:437.226235pt;}
.y14_c02243{bottom:453.226747pt;}
.y11_c02243{bottom:482.666971pt;}
.y13_c02243{bottom:497.386555pt;}
.y10_c02243{bottom:513.387067pt;}
.y1e_c02243{bottom:546.027067pt;}
.yc_c02243{bottom:579.945467pt;}
.yb_c02243{bottom:593.385179pt;}
.ye_c02243{bottom:628.586875pt;}
.yd_c02243{bottom:637.227067pt;}
.ya_c02243{bottom:707.945339pt;}
.y9_c02243{bottom:779.945531pt;}
.y7_c02243{bottom:823.786427pt;}
.y3_c02243{bottom:839.786939pt;}
.y8_c02243{bottom:870.505979pt;}
.y6_c02243{bottom:899.946203pt;}
.y5_c02243{bottom:915.946715pt;}
.y2_c02243{bottom:945.386939pt;}
.y4_c02243{bottom:959.786555pt;}
.y1_c02243{bottom:975.787067pt;}
.yf_c02243{bottom:1008.747067pt;}
.h3_c02243{height:28.916250pt;}
.h1_c02243{height:37.063125pt;}
.h2_c02243{height:37.166250pt;}
.h4_c02243{height:48.581988pt;}
.h0_c02243{height:1122.666667pt;}
.w1_c02243{width:793.333333pt;}
.w0_c02243{width:793.626667pt;}
.x0_c02243{left:0.000000pt;}
.xe_c02243{left:104.000000pt;}
.x8_c02243{left:391.999872pt;}
.x4_c02243{left:396.160512pt;}
.xc_c02243{left:400.960000pt;}
.x7_c02243{left:404.799648pt;}
.x5_c02243{left:410.560128pt;}
.x1_c02243{left:411.840000pt;}
.xa_c02243{left:429.760320pt;}
.x9_c02243{left:437.439552pt;}
.x6_c02243{left:438.400512pt;}
.xd_c02243{left:450.560320pt;}
.x3_c02243{left:455.039904pt;}
.x2_c02243{left:468.159648pt;}
.xb_c02243{left:506.560032pt;}
}





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

.ir_c02244:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02244{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02244;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02244{font-family:ff1_c02244;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02244;src:url('chunks/assets/font_38d2132d02a7f062ad89b86d.woff2')format("woff");}.ff2_c02244{font-family:ff2_c02244;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02244;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02244{font-family:ff3_c02244;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02244{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02244{vertical-align:0.000000px;}
.v1_c02244{vertical-align:1.439424px;}
.ls18_c02244{letter-spacing:-0.845856px;}
.lsf_c02244{letter-spacing:-0.793584px;}
.lsc_c02244{letter-spacing:-0.774576px;}
.ls12_c02244{letter-spacing:-0.736560px;}
.ls17_c02244{letter-spacing:-0.722304px;}
.ls8_c02244{letter-spacing:-0.613008px;}
.lsb_c02244{letter-spacing:-0.574992px;}
.ls19_c02244{letter-spacing:-0.275616px;}
.ls13_c02244{letter-spacing:-0.270864px;}
.lsa_c02244{letter-spacing:-0.266112px;}
.ls10_c02244{letter-spacing:-0.261360px;}
.ls7_c02244{letter-spacing:-0.242352px;}
.ls4_c02244{letter-spacing:-0.118800px;}
.ls16_c02244{letter-spacing:0.000000px;}
.ls1_c02244{letter-spacing:0.006048px;}
.ls6_c02244{letter-spacing:0.128304px;}
.lse_c02244{letter-spacing:0.508464px;}
.ls15_c02244{letter-spacing:0.514080px;}
.ls11_c02244{letter-spacing:0.536976px;}
.lsd_c02244{letter-spacing:0.579744px;}
.ls14_c02244{letter-spacing:0.594000px;}
.ls9_c02244{letter-spacing:0.598752px;}
.ls2_c02244{letter-spacing:0.613008px;}
.ls0_c02244{letter-spacing:0.651024px;}
.ls5_c02244{letter-spacing:0.717552px;}
.ls3_c02244{letter-spacing:0.722304px;}
.sc__c02244{text-shadow:none;}
.sc0_c02244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02244{-webkit-text-stroke:0px transparent;}
.sc0_c02244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02244{word-spacing:-15.126048px;}
.wsc_c02244{word-spacing:-12.474000px;}
.ws6_c02244{word-spacing:-12.459744px;}
.ws2_c02244{word-spacing:-11.266992px;}
.ws5_c02244{word-spacing:-11.105424px;}
.ws19_c02244{word-spacing:-2.159136px;}
.ws15_c02244{word-spacing:-1.083456px;}
.ws11_c02244{word-spacing:-1.012176px;}
.wsf_c02244{word-spacing:-0.974160px;}
.ws12_c02244{word-spacing:-0.118800px;}
.ws16_c02244{word-spacing:-0.099792px;}
.ws13_c02244{word-spacing:-0.095040px;}
.ws17_c02244{word-spacing:-0.090288px;}
.ws18_c02244{word-spacing:-0.085536px;}
.ws10_c02244{word-spacing:0.000000px;}
.ws1a_c02244{word-spacing:0.361152px;}
.ws14_c02244{word-spacing:0.432432px;}
.ws1b_c02244{word-spacing:0.484704px;}
.wsb_c02244{word-spacing:6.629040px;}
.ws9_c02244{word-spacing:29.086992px;}
.wsd_c02244{word-spacing:33.300288px;}
.wsa_c02244{word-spacing:34.836912px;}
.ws8_c02244{word-spacing:36.143712px;}
.ws1_c02244{word-spacing:37.759392px;}
.ws0_c02244{word-spacing:38.020752px;}
.ws3_c02244{word-spacing:39.218256px;}
.ws4_c02244{word-spacing:39.902544px;}
.ws7_c02244{word-spacing:42.026688px;}
._0_c02244{margin-left:-1.948320px;}
._2_c02244{width:1.482624px;}
._b_c02244{width:2.509056px;}
._a_c02244{width:14.751072px;}
._8_c02244{width:19.982160px;}
._9_c02244{width:23.451120px;}
._7_c02244{width:24.691392px;}
._5_c02244{width:39.427344px;}
._4_c02244{width:43.428528px;}
._6_c02244{width:45.224784px;}
._1_c02244{width:50.252400px;}
._3_c02244{width:51.530688px;}
.fc0_c02244{color:rgb(0,0,0);}
.fs0_c02244{font-size:47.520000px;}
.fs1_c02244{font-size:60.480000px;}
.y0_c02244{bottom:0.000000px;}
.y1c_c02244{bottom:131.878686px;}
.y1b_c02244{bottom:146.998362px;}
.y1e_c02244{bottom:186.600234px;}
.y1d_c02244{bottom:196.320450px;}
.y1a_c02244{bottom:275.878542px;}
.y19_c02244{bottom:356.878758px;}
.y17_c02244{bottom:406.559730px;}
.y13_c02244{bottom:424.560306px;}
.y18_c02244{bottom:458.759262px;}
.y16_c02244{bottom:491.879514px;}
.y15_c02244{bottom:509.880090px;}
.y12_c02244{bottom:543.000342px;}
.y14_c02244{bottom:559.559874px;}
.y11_c02244{bottom:577.560450px;}
.y1f_c02244{bottom:614.280450px;}
.yd_c02244{bottom:652.439838px;}
.yc_c02244{bottom:667.559514px;}
.yf_c02244{bottom:707.160234px;}
.ye_c02244{bottom:716.880450px;}
.yb_c02244{bottom:796.439694px;}
.ya_c02244{bottom:862.319046px;}
.y9_c02244{bottom:877.438722px;}
.y7_c02244{bottom:926.759730px;}
.y3_c02244{bottom:944.760306px;}
.y8_c02244{bottom:979.319226px;}
.y6_c02244{bottom:1012.439478px;}
.y5_c02244{bottom:1030.440054px;}
.y2_c02244{bottom:1063.560306px;}
.y4_c02244{bottom:1079.759874px;}
.y1_c02244{bottom:1097.760450px;}
.y10_c02244{bottom:1134.840450px;}
.h3_c02244{height:32.530781px;}
.h1_c02244{height:41.696016px;}
.h2_c02244{height:41.812031px;}
.h4_c02244{height:54.654737px;}
.h0_c02244{height:1263.000000px;}
.w1_c02244{width:892.500000px;}
.w0_c02244{width:892.830000px;}
.x0_c02244{left:0.000000px;}
.xe_c02244{left:117.000000px;}
.x8_c02244{left:440.999856px;}
.x4_c02244{left:445.680576px;}
.xc_c02244{left:451.080000px;}
.x7_c02244{left:455.399604px;}
.x5_c02244{left:461.880144px;}
.x1_c02244{left:463.320000px;}
.xb_c02244{left:483.480360px;}
.x9_c02244{left:492.119496px;}
.x6_c02244{left:493.200576px;}
.xd_c02244{left:506.880360px;}
.x3_c02244{left:511.919892px;}
.x2_c02244{left:526.679604px;}
.xa_c02244{left:569.880036px;}
@media print{
.v0_c02244{vertical-align:0.000000pt;}
.v1_c02244{vertical-align:1.279488pt;}
.ls18_c02244{letter-spacing:-0.751872pt;}
.lsf_c02244{letter-spacing:-0.705408pt;}
.lsc_c02244{letter-spacing:-0.688512pt;}
.ls12_c02244{letter-spacing:-0.654720pt;}
.ls17_c02244{letter-spacing:-0.642048pt;}
.ls8_c02244{letter-spacing:-0.544896pt;}
.lsb_c02244{letter-spacing:-0.511104pt;}
.ls19_c02244{letter-spacing:-0.244992pt;}
.ls13_c02244{letter-spacing:-0.240768pt;}
.lsa_c02244{letter-spacing:-0.236544pt;}
.ls10_c02244{letter-spacing:-0.232320pt;}
.ls7_c02244{letter-spacing:-0.215424pt;}
.ls4_c02244{letter-spacing:-0.105600pt;}
.ls16_c02244{letter-spacing:0.000000pt;}
.ls1_c02244{letter-spacing:0.005376pt;}
.ls6_c02244{letter-spacing:0.114048pt;}
.lse_c02244{letter-spacing:0.451968pt;}
.ls15_c02244{letter-spacing:0.456960pt;}
.ls11_c02244{letter-spacing:0.477312pt;}
.lsd_c02244{letter-spacing:0.515328pt;}
.ls14_c02244{letter-spacing:0.528000pt;}
.ls9_c02244{letter-spacing:0.532224pt;}
.ls2_c02244{letter-spacing:0.544896pt;}
.ls0_c02244{letter-spacing:0.578688pt;}
.ls5_c02244{letter-spacing:0.637824pt;}
.ls3_c02244{letter-spacing:0.642048pt;}
.wse_c02244{word-spacing:-13.445376pt;}
.wsc_c02244{word-spacing:-11.088000pt;}
.ws6_c02244{word-spacing:-11.075328pt;}
.ws2_c02244{word-spacing:-10.015104pt;}
.ws5_c02244{word-spacing:-9.871488pt;}
.ws19_c02244{word-spacing:-1.919232pt;}
.ws15_c02244{word-spacing:-0.963072pt;}
.ws11_c02244{word-spacing:-0.899712pt;}
.wsf_c02244{word-spacing:-0.865920pt;}
.ws12_c02244{word-spacing:-0.105600pt;}
.ws16_c02244{word-spacing:-0.088704pt;}
.ws13_c02244{word-spacing:-0.084480pt;}
.ws17_c02244{word-spacing:-0.080256pt;}
.ws18_c02244{word-spacing:-0.076032pt;}
.ws10_c02244{word-spacing:0.000000pt;}
.ws1a_c02244{word-spacing:0.321024pt;}
.ws14_c02244{word-spacing:0.384384pt;}
.ws1b_c02244{word-spacing:0.430848pt;}
.wsb_c02244{word-spacing:5.892480pt;}
.ws9_c02244{word-spacing:25.855104pt;}
.wsd_c02244{word-spacing:29.600256pt;}
.wsa_c02244{word-spacing:30.966144pt;}
.ws8_c02244{word-spacing:32.127744pt;}
.ws1_c02244{word-spacing:33.563904pt;}
.ws0_c02244{word-spacing:33.796224pt;}
.ws3_c02244{word-spacing:34.860672pt;}
.ws4_c02244{word-spacing:35.468928pt;}
.ws7_c02244{word-spacing:37.357056pt;}
._0_c02244{margin-left:-1.731840pt;}
._2_c02244{width:1.317888pt;}
._b_c02244{width:2.230272pt;}
._a_c02244{width:13.112064pt;}
._8_c02244{width:17.761920pt;}
._9_c02244{width:20.845440pt;}
._7_c02244{width:21.947904pt;}
._5_c02244{width:35.046528pt;}
._4_c02244{width:38.603136pt;}
._6_c02244{width:40.199808pt;}
._1_c02244{width:44.668800pt;}
._3_c02244{width:45.805056pt;}
.fs0_c02244{font-size:42.240000pt;}
.fs1_c02244{font-size:53.760000pt;}
.y0_c02244{bottom:0.000000pt;}
.y1c_c02244{bottom:117.225499pt;}
.y1b_c02244{bottom:130.665211pt;}
.y1e_c02244{bottom:165.866875pt;}
.y1d_c02244{bottom:174.507067pt;}
.y1a_c02244{bottom:245.225371pt;}
.y19_c02244{bottom:317.225563pt;}
.y17_c02244{bottom:361.386427pt;}
.y13_c02244{bottom:377.386939pt;}
.y18_c02244{bottom:407.786011pt;}
.y16_c02244{bottom:437.226235pt;}
.y15_c02244{bottom:453.226747pt;}
.y12_c02244{bottom:482.666971pt;}
.y14_c02244{bottom:497.386555pt;}
.y11_c02244{bottom:513.387067pt;}
.y1f_c02244{bottom:546.027067pt;}
.yd_c02244{bottom:579.946523pt;}
.yc_c02244{bottom:593.386235pt;}
.yf_c02244{bottom:628.586875pt;}
.ye_c02244{bottom:637.227067pt;}
.yb_c02244{bottom:707.946395pt;}
.ya_c02244{bottom:766.505819pt;}
.y9_c02244{bottom:779.945531pt;}
.y7_c02244{bottom:823.786427pt;}
.y3_c02244{bottom:839.786939pt;}
.y8_c02244{bottom:870.505979pt;}
.y6_c02244{bottom:899.946203pt;}
.y5_c02244{bottom:915.946715pt;}
.y2_c02244{bottom:945.386939pt;}
.y4_c02244{bottom:959.786555pt;}
.y1_c02244{bottom:975.787067pt;}
.y10_c02244{bottom:1008.747067pt;}
.h3_c02244{height:28.916250pt;}
.h1_c02244{height:37.063125pt;}
.h2_c02244{height:37.166250pt;}
.h4_c02244{height:48.581988pt;}
.h0_c02244{height:1122.666667pt;}
.w1_c02244{width:793.333333pt;}
.w0_c02244{width:793.626667pt;}
.x0_c02244{left:0.000000pt;}
.xe_c02244{left:104.000000pt;}
.x8_c02244{left:391.999872pt;}
.x4_c02244{left:396.160512pt;}
.xc_c02244{left:400.960000pt;}
.x7_c02244{left:404.799648pt;}
.x5_c02244{left:410.560128pt;}
.x1_c02244{left:411.840000pt;}
.xb_c02244{left:429.760320pt;}
.x9_c02244{left:437.439552pt;}
.x6_c02244{left:438.400512pt;}
.xd_c02244{left:450.560320pt;}
.x3_c02244{left:455.039904pt;}
.x2_c02244{left:468.159648pt;}
.xa_c02244{left:506.560032pt;}
}





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

.ir_c02245:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02245{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02245;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02245{font-family:ff1_c02245;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02245;src:url('chunks/assets/font_1168678c39ff4b91f61fe4c4.woff2')format("woff");}.ff2_c02245{font-family:ff2_c02245;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02245;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02245{font-family:ff3_c02245;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02245{vertical-align:0.000000px;}
.v1_c02245{vertical-align:1.439424px;}
.ls15_c02245{letter-spacing:-0.940896px;}
.ls1a_c02245{letter-spacing:-0.845856px;}
.ls16_c02245{letter-spacing:-0.774576px;}
.ls19_c02245{letter-spacing:-0.736560px;}
.ls17_c02245{letter-spacing:-0.722304px;}
.ls8_c02245{letter-spacing:-0.613008px;}
.lsb_c02245{letter-spacing:-0.574992px;}
.lse_c02245{letter-spacing:-0.427680px;}
.ls18_c02245{letter-spacing:-0.337392px;}
.ls11_c02245{letter-spacing:-0.275616px;}
.lsa_c02245{letter-spacing:-0.266112px;}
.lsf_c02245{letter-spacing:-0.261360px;}
.ls7_c02245{letter-spacing:-0.242352px;}
.ls5_c02245{letter-spacing:-0.118800px;}
.ls14_c02245{letter-spacing:0.000000px;}
.ls1_c02245{letter-spacing:0.006048px;}
.ls6_c02245{letter-spacing:0.128304px;}
.lsd_c02245{letter-spacing:0.508464px;}
.ls13_c02245{letter-spacing:0.514080px;}
.ls10_c02245{letter-spacing:0.536976px;}
.lsc_c02245{letter-spacing:0.579744px;}
.ls12_c02245{letter-spacing:0.594000px;}
.ls9_c02245{letter-spacing:0.598752px;}
.ls3_c02245{letter-spacing:0.613008px;}
.ls2_c02245{letter-spacing:0.651024px;}
.ls0_c02245{letter-spacing:0.717552px;}
.ls4_c02245{letter-spacing:0.722304px;}
.sc__c02245{text-shadow:none;}
.sc0_c02245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02245{-webkit-text-stroke:0px transparent;}
.sc0_c02245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02245{word-spacing:-15.126048px;}
.wsa_c02245{word-spacing:-12.474000px;}
.wse_c02245{word-spacing:-12.459744px;}
.ws9_c02245{word-spacing:-12.416976px;}
.ws2_c02245{word-spacing:-11.266992px;}
.wsd_c02245{word-spacing:-11.105424px;}
.ws1a_c02245{word-spacing:-2.159136px;}
.ws17_c02245{word-spacing:-1.083456px;}
.ws15_c02245{word-spacing:-1.078704px;}
.ws1b_c02245{word-spacing:-1.012176px;}
.ws11_c02245{word-spacing:-0.974160px;}
.ws13_c02245{word-spacing:-0.118800px;}
.ws18_c02245{word-spacing:-0.099792px;}
.ws14_c02245{word-spacing:-0.095040px;}
.ws19_c02245{word-spacing:-0.085536px;}
.ws1e_c02245{word-spacing:-0.023760px;}
.ws12_c02245{word-spacing:0.000000px;}
.ws16_c02245{word-spacing:0.066528px;}
.ws1d_c02245{word-spacing:0.361152px;}
.ws1f_c02245{word-spacing:0.484704px;}
.ws1c_c02245{word-spacing:0.579744px;}
.ws10_c02245{word-spacing:6.629040px;}
.ws8_c02245{word-spacing:29.086992px;}
.wsb_c02245{word-spacing:33.300288px;}
.wsf_c02245{word-spacing:34.836912px;}
.ws7_c02245{word-spacing:36.143712px;}
.ws5_c02245{word-spacing:36.742464px;}
.ws1_c02245{word-spacing:37.759392px;}
.ws0_c02245{word-spacing:38.020752px;}
.ws3_c02245{word-spacing:39.218256px;}
.ws4_c02245{word-spacing:39.902544px;}
.ws6_c02245{word-spacing:42.026688px;}
._0_c02245{margin-left:-1.948320px;}
._2_c02245{width:1.482624px;}
._8_c02245{width:2.656368px;}
._7_c02245{width:14.751072px;}
._a_c02245{width:19.982160px;}
._b_c02245{width:23.451120px;}
._9_c02245{width:24.691392px;}
._5_c02245{width:39.427344px;}
._4_c02245{width:43.428528px;}
._6_c02245{width:45.224784px;}
._1_c02245{width:50.252400px;}
._3_c02245{width:51.530688px;}
.fc0_c02245{color:rgb(0,0,0);}
.fs0_c02245{font-size:47.520000px;}
.fs1_c02245{font-size:60.480000px;}
.y0_c02245{bottom:0.000000px;}
.y1b_c02245{bottom:131.878686px;}
.y1a_c02245{bottom:146.998362px;}
.y1d_c02245{bottom:186.600234px;}
.y1c_c02245{bottom:196.320450px;}
.y19_c02245{bottom:275.878542px;}
.y18_c02245{bottom:356.878758px;}
.y16_c02245{bottom:406.559730px;}
.y12_c02245{bottom:424.560306px;}
.y17_c02245{bottom:458.759262px;}
.y15_c02245{bottom:491.879514px;}
.y14_c02245{bottom:509.880090px;}
.y11_c02245{bottom:543.000342px;}
.y13_c02245{bottom:559.559874px;}
.y10_c02245{bottom:577.560450px;}
.y1e_c02245{bottom:614.280450px;}
.yc_c02245{bottom:667.559514px;}
.ye_c02245{bottom:707.160234px;}
.yd_c02245{bottom:716.880450px;}
.yb_c02245{bottom:796.439694px;}
.ya_c02245{bottom:862.319046px;}
.y9_c02245{bottom:877.438722px;}
.y7_c02245{bottom:926.759730px;}
.y3_c02245{bottom:944.760306px;}
.y8_c02245{bottom:979.319226px;}
.y6_c02245{bottom:1012.439478px;}
.y5_c02245{bottom:1030.440054px;}
.y2_c02245{bottom:1063.560306px;}
.y4_c02245{bottom:1079.759874px;}
.y1_c02245{bottom:1097.760450px;}
.yf_c02245{bottom:1134.840450px;}
.h3_c02245{height:32.530781px;}
.h1_c02245{height:41.696016px;}
.h2_c02245{height:41.812031px;}
.h4_c02245{height:54.654737px;}
.h0_c02245{height:1263.000000px;}
.w1_c02245{width:892.500000px;}
.w0_c02245{width:892.830000px;}
.x0_c02245{left:0.000000px;}
.xe_c02245{left:117.000000px;}
.x8_c02245{left:440.999856px;}
.x4_c02245{left:445.680576px;}
.xc_c02245{left:451.080000px;}
.x7_c02245{left:455.399604px;}
.x5_c02245{left:461.880144px;}
.x1_c02245{left:463.320000px;}
.xb_c02245{left:483.480360px;}
.x9_c02245{left:492.119496px;}
.x6_c02245{left:493.200576px;}
.xd_c02245{left:506.880360px;}
.x3_c02245{left:511.919892px;}
.x2_c02245{left:526.679604px;}
.xa_c02245{left:569.880036px;}
@media print{
.v0_c02245{vertical-align:0.000000pt;}
.v1_c02245{vertical-align:1.279488pt;}
.ls15_c02245{letter-spacing:-0.836352pt;}
.ls1a_c02245{letter-spacing:-0.751872pt;}
.ls16_c02245{letter-spacing:-0.688512pt;}
.ls19_c02245{letter-spacing:-0.654720pt;}
.ls17_c02245{letter-spacing:-0.642048pt;}
.ls8_c02245{letter-spacing:-0.544896pt;}
.lsb_c02245{letter-spacing:-0.511104pt;}
.lse_c02245{letter-spacing:-0.380160pt;}
.ls18_c02245{letter-spacing:-0.299904pt;}
.ls11_c02245{letter-spacing:-0.244992pt;}
.lsa_c02245{letter-spacing:-0.236544pt;}
.lsf_c02245{letter-spacing:-0.232320pt;}
.ls7_c02245{letter-spacing:-0.215424pt;}
.ls5_c02245{letter-spacing:-0.105600pt;}
.ls14_c02245{letter-spacing:0.000000pt;}
.ls1_c02245{letter-spacing:0.005376pt;}
.ls6_c02245{letter-spacing:0.114048pt;}
.lsd_c02245{letter-spacing:0.451968pt;}
.ls13_c02245{letter-spacing:0.456960pt;}
.ls10_c02245{letter-spacing:0.477312pt;}
.lsc_c02245{letter-spacing:0.515328pt;}
.ls12_c02245{letter-spacing:0.528000pt;}
.ls9_c02245{letter-spacing:0.532224pt;}
.ls3_c02245{letter-spacing:0.544896pt;}
.ls2_c02245{letter-spacing:0.578688pt;}
.ls0_c02245{letter-spacing:0.637824pt;}
.ls4_c02245{letter-spacing:0.642048pt;}
.wsc_c02245{word-spacing:-13.445376pt;}
.wsa_c02245{word-spacing:-11.088000pt;}
.wse_c02245{word-spacing:-11.075328pt;}
.ws9_c02245{word-spacing:-11.037312pt;}
.ws2_c02245{word-spacing:-10.015104pt;}
.wsd_c02245{word-spacing:-9.871488pt;}
.ws1a_c02245{word-spacing:-1.919232pt;}
.ws17_c02245{word-spacing:-0.963072pt;}
.ws15_c02245{word-spacing:-0.958848pt;}
.ws1b_c02245{word-spacing:-0.899712pt;}
.ws11_c02245{word-spacing:-0.865920pt;}
.ws13_c02245{word-spacing:-0.105600pt;}
.ws18_c02245{word-spacing:-0.088704pt;}
.ws14_c02245{word-spacing:-0.084480pt;}
.ws19_c02245{word-spacing:-0.076032pt;}
.ws1e_c02245{word-spacing:-0.021120pt;}
.ws12_c02245{word-spacing:0.000000pt;}
.ws16_c02245{word-spacing:0.059136pt;}
.ws1d_c02245{word-spacing:0.321024pt;}
.ws1f_c02245{word-spacing:0.430848pt;}
.ws1c_c02245{word-spacing:0.515328pt;}
.ws10_c02245{word-spacing:5.892480pt;}
.ws8_c02245{word-spacing:25.855104pt;}
.wsb_c02245{word-spacing:29.600256pt;}
.wsf_c02245{word-spacing:30.966144pt;}
.ws7_c02245{word-spacing:32.127744pt;}
.ws5_c02245{word-spacing:32.659968pt;}
.ws1_c02245{word-spacing:33.563904pt;}
.ws0_c02245{word-spacing:33.796224pt;}
.ws3_c02245{word-spacing:34.860672pt;}
.ws4_c02245{word-spacing:35.468928pt;}
.ws6_c02245{word-spacing:37.357056pt;}
._0_c02245{margin-left:-1.731840pt;}
._2_c02245{width:1.317888pt;}
._8_c02245{width:2.361216pt;}
._7_c02245{width:13.112064pt;}
._a_c02245{width:17.761920pt;}
._b_c02245{width:20.845440pt;}
._9_c02245{width:21.947904pt;}
._5_c02245{width:35.046528pt;}
._4_c02245{width:38.603136pt;}
._6_c02245{width:40.199808pt;}
._1_c02245{width:44.668800pt;}
._3_c02245{width:45.805056pt;}
.fs0_c02245{font-size:42.240000pt;}
.fs1_c02245{font-size:53.760000pt;}
.y0_c02245{bottom:0.000000pt;}
.y1b_c02245{bottom:117.225499pt;}
.y1a_c02245{bottom:130.665211pt;}
.y1d_c02245{bottom:165.866875pt;}
.y1c_c02245{bottom:174.507067pt;}
.y19_c02245{bottom:245.225371pt;}
.y18_c02245{bottom:317.225563pt;}
.y16_c02245{bottom:361.386427pt;}
.y12_c02245{bottom:377.386939pt;}
.y17_c02245{bottom:407.786011pt;}
.y15_c02245{bottom:437.226235pt;}
.y14_c02245{bottom:453.226747pt;}
.y11_c02245{bottom:482.666971pt;}
.y13_c02245{bottom:497.386555pt;}
.y10_c02245{bottom:513.387067pt;}
.y1e_c02245{bottom:546.027067pt;}
.yc_c02245{bottom:593.386235pt;}
.ye_c02245{bottom:628.586875pt;}
.yd_c02245{bottom:637.227067pt;}
.yb_c02245{bottom:707.946395pt;}
.ya_c02245{bottom:766.505819pt;}
.y9_c02245{bottom:779.945531pt;}
.y7_c02245{bottom:823.786427pt;}
.y3_c02245{bottom:839.786939pt;}
.y8_c02245{bottom:870.505979pt;}
.y6_c02245{bottom:899.946203pt;}
.y5_c02245{bottom:915.946715pt;}
.y2_c02245{bottom:945.386939pt;}
.y4_c02245{bottom:959.786555pt;}
.y1_c02245{bottom:975.787067pt;}
.yf_c02245{bottom:1008.747067pt;}
.h3_c02245{height:28.916250pt;}
.h1_c02245{height:37.063125pt;}
.h2_c02245{height:37.166250pt;}
.h4_c02245{height:48.581988pt;}
.h0_c02245{height:1122.666667pt;}
.w1_c02245{width:793.333333pt;}
.w0_c02245{width:793.626667pt;}
.x0_c02245{left:0.000000pt;}
.xe_c02245{left:104.000000pt;}
.x8_c02245{left:391.999872pt;}
.x4_c02245{left:396.160512pt;}
.xc_c02245{left:400.960000pt;}
.x7_c02245{left:404.799648pt;}
.x5_c02245{left:410.560128pt;}
.x1_c02245{left:411.840000pt;}
.xb_c02245{left:429.760320pt;}
.x9_c02245{left:437.439552pt;}
.x6_c02245{left:438.400512pt;}
.xd_c02245{left:450.560320pt;}
.x3_c02245{left:455.039904pt;}
.x2_c02245{left:468.159648pt;}
.xa_c02245{left:506.560032pt;}
}





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

.ir_c02246:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02246{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02246;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02246{font-family:ff1_c02246;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02246;src:url('chunks/assets/font_3334aa28a5d90b1721a598be.woff2')format("woff");}.ff2_c02246{font-family:ff2_c02246;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02246;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02246{font-family:ff3_c02246;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02246{vertical-align:0.000000px;}
.v1_c02246{vertical-align:1.439424px;}
.lsa_c02246{letter-spacing:-0.940896px;}
.ls14_c02246{letter-spacing:-0.845856px;}
.lsc_c02246{letter-spacing:-0.774576px;}
.ls13_c02246{letter-spacing:-0.736560px;}
.lsf_c02246{letter-spacing:-0.722304px;}
.ls8_c02246{letter-spacing:-0.613008px;}
.lsb_c02246{letter-spacing:-0.574992px;}
.ls10_c02246{letter-spacing:-0.337392px;}
.ls15_c02246{letter-spacing:-0.275616px;}
.ls11_c02246{letter-spacing:-0.261360px;}
.ls7_c02246{letter-spacing:-0.242352px;}
.ls4_c02246{letter-spacing:-0.118800px;}
.ls18_c02246{letter-spacing:0.000000px;}
.ls1_c02246{letter-spacing:0.006048px;}
.ls6_c02246{letter-spacing:0.128304px;}
.lse_c02246{letter-spacing:0.508464px;}
.ls17_c02246{letter-spacing:0.514080px;}
.ls12_c02246{letter-spacing:0.536976px;}
.lsd_c02246{letter-spacing:0.579744px;}
.ls16_c02246{letter-spacing:0.594000px;}
.ls9_c02246{letter-spacing:0.598752px;}
.ls2_c02246{letter-spacing:0.613008px;}
.ls0_c02246{letter-spacing:0.651024px;}
.ls5_c02246{letter-spacing:0.717552px;}
.ls3_c02246{letter-spacing:0.722304px;}
.sc__c02246{text-shadow:none;}
.sc0_c02246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02246{-webkit-text-stroke:0px transparent;}
.sc0_c02246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02246{word-spacing:-15.126048px;}
.wsb_c02246{word-spacing:-12.474000px;}
.ws6_c02246{word-spacing:-12.459744px;}
.ws2_c02246{word-spacing:-11.266992px;}
.ws5_c02246{word-spacing:-11.105424px;}
.ws18_c02246{word-spacing:-2.159136px;}
.ws10_c02246{word-spacing:-1.012176px;}
.wse_c02246{word-spacing:-0.974160px;}
.ws11_c02246{word-spacing:-0.118800px;}
.ws15_c02246{word-spacing:-0.099792px;}
.ws17_c02246{word-spacing:-0.085536px;}
.ws14_c02246{word-spacing:-0.023760px;}
.wsf_c02246{word-spacing:0.000000px;}
.ws13_c02246{word-spacing:0.361152px;}
.ws16_c02246{word-spacing:0.484704px;}
.ws12_c02246{word-spacing:0.579744px;}
.wsa_c02246{word-spacing:6.629040px;}
.wsc_c02246{word-spacing:33.300288px;}
.ws9_c02246{word-spacing:34.836912px;}
.ws8_c02246{word-spacing:36.143712px;}
.ws1_c02246{word-spacing:37.759392px;}
.ws0_c02246{word-spacing:38.020752px;}
.ws3_c02246{word-spacing:39.218256px;}
.ws4_c02246{word-spacing:39.902544px;}
.ws7_c02246{word-spacing:42.026688px;}
._0_c02246{margin-left:-1.948320px;}
._2_c02246{width:1.482624px;}
._4_c02246{width:2.656368px;}
._8_c02246{width:14.751072px;}
._6_c02246{width:19.982160px;}
._7_c02246{width:23.451120px;}
._5_c02246{width:24.691392px;}
._1_c02246{width:50.252400px;}
._3_c02246{width:51.530688px;}
.fc0_c02246{color:rgb(0,0,0);}
.fs0_c02246{font-size:47.520000px;}
.fs1_c02246{font-size:60.480000px;}
.y0_c02246{bottom:0.000000px;}
.y1b_c02246{bottom:131.878686px;}
.y1a_c02246{bottom:146.998362px;}
.y1d_c02246{bottom:186.600234px;}
.y1c_c02246{bottom:196.320450px;}
.y19_c02246{bottom:275.878542px;}
.y18_c02246{bottom:356.878758px;}
.y16_c02246{bottom:406.559730px;}
.y12_c02246{bottom:424.560306px;}
.y17_c02246{bottom:458.759262px;}
.y15_c02246{bottom:491.879514px;}
.y14_c02246{bottom:509.880090px;}
.y11_c02246{bottom:543.000342px;}
.y13_c02246{bottom:559.559874px;}
.y10_c02246{bottom:577.560450px;}
.y1e_c02246{bottom:614.280450px;}
.yc_c02246{bottom:652.438650px;}
.yb_c02246{bottom:667.558326px;}
.ye_c02246{bottom:707.160234px;}
.yd_c02246{bottom:716.880450px;}
.ya_c02246{bottom:796.438506px;}
.y9_c02246{bottom:877.438722px;}
.y7_c02246{bottom:926.759730px;}
.y3_c02246{bottom:944.760306px;}
.y8_c02246{bottom:979.319226px;}
.y6_c02246{bottom:1012.439478px;}
.y5_c02246{bottom:1030.440054px;}
.y2_c02246{bottom:1063.560306px;}
.y4_c02246{bottom:1079.759874px;}
.y1_c02246{bottom:1097.760450px;}
.yf_c02246{bottom:1134.840450px;}
.h3_c02246{height:32.530781px;}
.h1_c02246{height:41.696016px;}
.h2_c02246{height:41.812031px;}
.h4_c02246{height:54.654737px;}
.h0_c02246{height:1263.000000px;}
.w1_c02246{width:892.500000px;}
.w0_c02246{width:892.830000px;}
.x0_c02246{left:0.000000px;}
.xe_c02246{left:117.000000px;}
.x8_c02246{left:440.999856px;}
.x4_c02246{left:445.680576px;}
.xc_c02246{left:451.080000px;}
.x7_c02246{left:455.399604px;}
.x5_c02246{left:461.880144px;}
.x1_c02246{left:463.320000px;}
.xa_c02246{left:483.480360px;}
.x9_c02246{left:492.119496px;}
.x6_c02246{left:493.200576px;}
.xd_c02246{left:506.880360px;}
.x3_c02246{left:511.919892px;}
.x2_c02246{left:526.679604px;}
.xb_c02246{left:569.880036px;}
@media print{
.v0_c02246{vertical-align:0.000000pt;}
.v1_c02246{vertical-align:1.279488pt;}
.lsa_c02246{letter-spacing:-0.836352pt;}
.ls14_c02246{letter-spacing:-0.751872pt;}
.lsc_c02246{letter-spacing:-0.688512pt;}
.ls13_c02246{letter-spacing:-0.654720pt;}
.lsf_c02246{letter-spacing:-0.642048pt;}
.ls8_c02246{letter-spacing:-0.544896pt;}
.lsb_c02246{letter-spacing:-0.511104pt;}
.ls10_c02246{letter-spacing:-0.299904pt;}
.ls15_c02246{letter-spacing:-0.244992pt;}
.ls11_c02246{letter-spacing:-0.232320pt;}
.ls7_c02246{letter-spacing:-0.215424pt;}
.ls4_c02246{letter-spacing:-0.105600pt;}
.ls18_c02246{letter-spacing:0.000000pt;}
.ls1_c02246{letter-spacing:0.005376pt;}
.ls6_c02246{letter-spacing:0.114048pt;}
.lse_c02246{letter-spacing:0.451968pt;}
.ls17_c02246{letter-spacing:0.456960pt;}
.ls12_c02246{letter-spacing:0.477312pt;}
.lsd_c02246{letter-spacing:0.515328pt;}
.ls16_c02246{letter-spacing:0.528000pt;}
.ls9_c02246{letter-spacing:0.532224pt;}
.ls2_c02246{letter-spacing:0.544896pt;}
.ls0_c02246{letter-spacing:0.578688pt;}
.ls5_c02246{letter-spacing:0.637824pt;}
.ls3_c02246{letter-spacing:0.642048pt;}
.wsd_c02246{word-spacing:-13.445376pt;}
.wsb_c02246{word-spacing:-11.088000pt;}
.ws6_c02246{word-spacing:-11.075328pt;}
.ws2_c02246{word-spacing:-10.015104pt;}
.ws5_c02246{word-spacing:-9.871488pt;}
.ws18_c02246{word-spacing:-1.919232pt;}
.ws10_c02246{word-spacing:-0.899712pt;}
.wse_c02246{word-spacing:-0.865920pt;}
.ws11_c02246{word-spacing:-0.105600pt;}
.ws15_c02246{word-spacing:-0.088704pt;}
.ws17_c02246{word-spacing:-0.076032pt;}
.ws14_c02246{word-spacing:-0.021120pt;}
.wsf_c02246{word-spacing:0.000000pt;}
.ws13_c02246{word-spacing:0.321024pt;}
.ws16_c02246{word-spacing:0.430848pt;}
.ws12_c02246{word-spacing:0.515328pt;}
.wsa_c02246{word-spacing:5.892480pt;}
.wsc_c02246{word-spacing:29.600256pt;}
.ws9_c02246{word-spacing:30.966144pt;}
.ws8_c02246{word-spacing:32.127744pt;}
.ws1_c02246{word-spacing:33.563904pt;}
.ws0_c02246{word-spacing:33.796224pt;}
.ws3_c02246{word-spacing:34.860672pt;}
.ws4_c02246{word-spacing:35.468928pt;}
.ws7_c02246{word-spacing:37.357056pt;}
._0_c02246{margin-left:-1.731840pt;}
._2_c02246{width:1.317888pt;}
._4_c02246{width:2.361216pt;}
._8_c02246{width:13.112064pt;}
._6_c02246{width:17.761920pt;}
._7_c02246{width:20.845440pt;}
._5_c02246{width:21.947904pt;}
._1_c02246{width:44.668800pt;}
._3_c02246{width:45.805056pt;}
.fs0_c02246{font-size:42.240000pt;}
.fs1_c02246{font-size:53.760000pt;}
.y0_c02246{bottom:0.000000pt;}
.y1b_c02246{bottom:117.225499pt;}
.y1a_c02246{bottom:130.665211pt;}
.y1d_c02246{bottom:165.866875pt;}
.y1c_c02246{bottom:174.507067pt;}
.y19_c02246{bottom:245.225371pt;}
.y18_c02246{bottom:317.225563pt;}
.y16_c02246{bottom:361.386427pt;}
.y12_c02246{bottom:377.386939pt;}
.y17_c02246{bottom:407.786011pt;}
.y15_c02246{bottom:437.226235pt;}
.y14_c02246{bottom:453.226747pt;}
.y11_c02246{bottom:482.666971pt;}
.y13_c02246{bottom:497.386555pt;}
.y10_c02246{bottom:513.387067pt;}
.y1e_c02246{bottom:546.027067pt;}
.yc_c02246{bottom:579.945467pt;}
.yb_c02246{bottom:593.385179pt;}
.ye_c02246{bottom:628.586875pt;}
.yd_c02246{bottom:637.227067pt;}
.ya_c02246{bottom:707.945339pt;}
.y9_c02246{bottom:779.945531pt;}
.y7_c02246{bottom:823.786427pt;}
.y3_c02246{bottom:839.786939pt;}
.y8_c02246{bottom:870.505979pt;}
.y6_c02246{bottom:899.946203pt;}
.y5_c02246{bottom:915.946715pt;}
.y2_c02246{bottom:945.386939pt;}
.y4_c02246{bottom:959.786555pt;}
.y1_c02246{bottom:975.787067pt;}
.yf_c02246{bottom:1008.747067pt;}
.h3_c02246{height:28.916250pt;}
.h1_c02246{height:37.063125pt;}
.h2_c02246{height:37.166250pt;}
.h4_c02246{height:48.581988pt;}
.h0_c02246{height:1122.666667pt;}
.w1_c02246{width:793.333333pt;}
.w0_c02246{width:793.626667pt;}
.x0_c02246{left:0.000000pt;}
.xe_c02246{left:104.000000pt;}
.x8_c02246{left:391.999872pt;}
.x4_c02246{left:396.160512pt;}
.xc_c02246{left:400.960000pt;}
.x7_c02246{left:404.799648pt;}
.x5_c02246{left:410.560128pt;}
.x1_c02246{left:411.840000pt;}
.xa_c02246{left:429.760320pt;}
.x9_c02246{left:437.439552pt;}
.x6_c02246{left:438.400512pt;}
.xd_c02246{left:450.560320pt;}
.x3_c02246{left:455.039904pt;}
.x2_c02246{left:468.159648pt;}
.xb_c02246{left:506.560032pt;}
}





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

.ir_c02247:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02247{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02247;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02247{font-family:ff1_c02247;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02247;src:url('chunks/assets/font_ea802d0467b78473081bc49c.woff2')format("woff");}.ff2_c02247{font-family:ff2_c02247;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02247;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02247{font-family:ff3_c02247;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02247{vertical-align:0.000000px;}
.v1_c02247{vertical-align:1.439424px;}
.lsf_c02247{letter-spacing:-0.793584px;}
.lsc_c02247{letter-spacing:-0.774576px;}
.ls12_c02247{letter-spacing:-0.736560px;}
.ls8_c02247{letter-spacing:-0.613008px;}
.lsb_c02247{letter-spacing:-0.574992px;}
.ls17_c02247{letter-spacing:-0.427680px;}
.ls13_c02247{letter-spacing:-0.270864px;}
.lsa_c02247{letter-spacing:-0.266112px;}
.ls10_c02247{letter-spacing:-0.261360px;}
.ls7_c02247{letter-spacing:-0.242352px;}
.ls4_c02247{letter-spacing:-0.118800px;}
.ls16_c02247{letter-spacing:0.000000px;}
.ls1_c02247{letter-spacing:0.006048px;}
.ls6_c02247{letter-spacing:0.128304px;}
.lse_c02247{letter-spacing:0.508464px;}
.ls15_c02247{letter-spacing:0.514080px;}
.ls11_c02247{letter-spacing:0.536976px;}
.lsd_c02247{letter-spacing:0.579744px;}
.ls14_c02247{letter-spacing:0.594000px;}
.ls9_c02247{letter-spacing:0.598752px;}
.ls3_c02247{letter-spacing:0.613008px;}
.ls0_c02247{letter-spacing:0.651024px;}
.ls5_c02247{letter-spacing:0.717552px;}
.ls2_c02247{letter-spacing:0.722304px;}
.sc__c02247{text-shadow:none;}
.sc0_c02247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02247{-webkit-text-stroke:0px transparent;}
.sc0_c02247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02247{word-spacing:-15.126048px;}
.wsc_c02247{word-spacing:-12.474000px;}
.ws6_c02247{word-spacing:-12.459744px;}
.ws2_c02247{word-spacing:-11.266992px;}
.ws5_c02247{word-spacing:-11.105424px;}
.ws1a_c02247{word-spacing:-2.159136px;}
.ws16_c02247{word-spacing:-1.083456px;}
.ws12_c02247{word-spacing:-1.012176px;}
.ws10_c02247{word-spacing:-0.974160px;}
.ws13_c02247{word-spacing:-0.118800px;}
.ws17_c02247{word-spacing:-0.099792px;}
.ws14_c02247{word-spacing:-0.095040px;}
.ws18_c02247{word-spacing:-0.090288px;}
.ws19_c02247{word-spacing:-0.085536px;}
.ws11_c02247{word-spacing:0.000000px;}
.ws1b_c02247{word-spacing:0.066528px;}
.ws15_c02247{word-spacing:0.432432px;}
.wsb_c02247{word-spacing:6.629040px;}
.ws9_c02247{word-spacing:29.086992px;}
.wsd_c02247{word-spacing:33.300288px;}
.wsa_c02247{word-spacing:34.836912px;}
.ws8_c02247{word-spacing:36.143712px;}
.wsf_c02247{word-spacing:36.742464px;}
.ws1_c02247{word-spacing:37.759392px;}
.ws0_c02247{word-spacing:38.020752px;}
.ws3_c02247{word-spacing:39.218256px;}
.ws4_c02247{word-spacing:39.902544px;}
.ws7_c02247{word-spacing:42.026688px;}
._0_c02247{margin-left:-1.948320px;}
._2_c02247{width:1.482624px;}
._a_c02247{width:14.751072px;}
._8_c02247{width:19.982160px;}
._9_c02247{width:23.451120px;}
._7_c02247{width:24.691392px;}
._5_c02247{width:39.427344px;}
._4_c02247{width:43.428528px;}
._6_c02247{width:45.224784px;}
._1_c02247{width:50.252400px;}
._3_c02247{width:51.530688px;}
.fc0_c02247{color:rgb(0,0,0);}
.fs0_c02247{font-size:47.520000px;}
.fs1_c02247{font-size:60.480000px;}
.y0_c02247{bottom:0.000000px;}
.y1d_c02247{bottom:131.878686px;}
.y1c_c02247{bottom:146.998362px;}
.y1f_c02247{bottom:186.600234px;}
.y1e_c02247{bottom:196.320450px;}
.y1b_c02247{bottom:275.878542px;}
.y1a_c02247{bottom:341.759082px;}
.y19_c02247{bottom:356.878758px;}
.y17_c02247{bottom:406.559730px;}
.y13_c02247{bottom:424.560306px;}
.y18_c02247{bottom:458.759262px;}
.y16_c02247{bottom:491.879514px;}
.y15_c02247{bottom:509.880090px;}
.y12_c02247{bottom:543.000342px;}
.y14_c02247{bottom:559.559874px;}
.y11_c02247{bottom:577.560450px;}
.y20_c02247{bottom:614.280450px;}
.yd_c02247{bottom:652.439838px;}
.yc_c02247{bottom:667.559514px;}
.yf_c02247{bottom:707.160234px;}
.ye_c02247{bottom:716.880450px;}
.yb_c02247{bottom:796.439694px;}
.ya_c02247{bottom:862.319046px;}
.y9_c02247{bottom:877.438722px;}
.y7_c02247{bottom:926.759730px;}
.y3_c02247{bottom:944.760306px;}
.y8_c02247{bottom:979.319226px;}
.y6_c02247{bottom:1012.439478px;}
.y5_c02247{bottom:1030.440054px;}
.y2_c02247{bottom:1063.560306px;}
.y4_c02247{bottom:1079.759874px;}
.y1_c02247{bottom:1097.760450px;}
.y10_c02247{bottom:1134.840450px;}
.h3_c02247{height:32.530781px;}
.h1_c02247{height:41.696016px;}
.h2_c02247{height:41.812031px;}
.h4_c02247{height:54.654737px;}
.h0_c02247{height:1263.000000px;}
.w1_c02247{width:892.500000px;}
.w0_c02247{width:892.830000px;}
.x0_c02247{left:0.000000px;}
.xe_c02247{left:117.000000px;}
.x8_c02247{left:440.999856px;}
.x4_c02247{left:445.680576px;}
.xc_c02247{left:451.080000px;}
.x7_c02247{left:455.399604px;}
.x5_c02247{left:461.880144px;}
.x1_c02247{left:463.320000px;}
.xb_c02247{left:483.480360px;}
.x9_c02247{left:492.119496px;}
.x6_c02247{left:493.200576px;}
.xd_c02247{left:506.880360px;}
.x3_c02247{left:511.919892px;}
.x2_c02247{left:526.679604px;}
.xa_c02247{left:569.880036px;}
@media print{
.v0_c02247{vertical-align:0.000000pt;}
.v1_c02247{vertical-align:1.279488pt;}
.lsf_c02247{letter-spacing:-0.705408pt;}
.lsc_c02247{letter-spacing:-0.688512pt;}
.ls12_c02247{letter-spacing:-0.654720pt;}
.ls8_c02247{letter-spacing:-0.544896pt;}
.lsb_c02247{letter-spacing:-0.511104pt;}
.ls17_c02247{letter-spacing:-0.380160pt;}
.ls13_c02247{letter-spacing:-0.240768pt;}
.lsa_c02247{letter-spacing:-0.236544pt;}
.ls10_c02247{letter-spacing:-0.232320pt;}
.ls7_c02247{letter-spacing:-0.215424pt;}
.ls4_c02247{letter-spacing:-0.105600pt;}
.ls16_c02247{letter-spacing:0.000000pt;}
.ls1_c02247{letter-spacing:0.005376pt;}
.ls6_c02247{letter-spacing:0.114048pt;}
.lse_c02247{letter-spacing:0.451968pt;}
.ls15_c02247{letter-spacing:0.456960pt;}
.ls11_c02247{letter-spacing:0.477312pt;}
.lsd_c02247{letter-spacing:0.515328pt;}
.ls14_c02247{letter-spacing:0.528000pt;}
.ls9_c02247{letter-spacing:0.532224pt;}
.ls3_c02247{letter-spacing:0.544896pt;}
.ls0_c02247{letter-spacing:0.578688pt;}
.ls5_c02247{letter-spacing:0.637824pt;}
.ls2_c02247{letter-spacing:0.642048pt;}
.wse_c02247{word-spacing:-13.445376pt;}
.wsc_c02247{word-spacing:-11.088000pt;}
.ws6_c02247{word-spacing:-11.075328pt;}
.ws2_c02247{word-spacing:-10.015104pt;}
.ws5_c02247{word-spacing:-9.871488pt;}
.ws1a_c02247{word-spacing:-1.919232pt;}
.ws16_c02247{word-spacing:-0.963072pt;}
.ws12_c02247{word-spacing:-0.899712pt;}
.ws10_c02247{word-spacing:-0.865920pt;}
.ws13_c02247{word-spacing:-0.105600pt;}
.ws17_c02247{word-spacing:-0.088704pt;}
.ws14_c02247{word-spacing:-0.084480pt;}
.ws18_c02247{word-spacing:-0.080256pt;}
.ws19_c02247{word-spacing:-0.076032pt;}
.ws11_c02247{word-spacing:0.000000pt;}
.ws1b_c02247{word-spacing:0.059136pt;}
.ws15_c02247{word-spacing:0.384384pt;}
.wsb_c02247{word-spacing:5.892480pt;}
.ws9_c02247{word-spacing:25.855104pt;}
.wsd_c02247{word-spacing:29.600256pt;}
.wsa_c02247{word-spacing:30.966144pt;}
.ws8_c02247{word-spacing:32.127744pt;}
.wsf_c02247{word-spacing:32.659968pt;}
.ws1_c02247{word-spacing:33.563904pt;}
.ws0_c02247{word-spacing:33.796224pt;}
.ws3_c02247{word-spacing:34.860672pt;}
.ws4_c02247{word-spacing:35.468928pt;}
.ws7_c02247{word-spacing:37.357056pt;}
._0_c02247{margin-left:-1.731840pt;}
._2_c02247{width:1.317888pt;}
._a_c02247{width:13.112064pt;}
._8_c02247{width:17.761920pt;}
._9_c02247{width:20.845440pt;}
._7_c02247{width:21.947904pt;}
._5_c02247{width:35.046528pt;}
._4_c02247{width:38.603136pt;}
._6_c02247{width:40.199808pt;}
._1_c02247{width:44.668800pt;}
._3_c02247{width:45.805056pt;}
.fs0_c02247{font-size:42.240000pt;}
.fs1_c02247{font-size:53.760000pt;}
.y0_c02247{bottom:0.000000pt;}
.y1d_c02247{bottom:117.225499pt;}
.y1c_c02247{bottom:130.665211pt;}
.y1f_c02247{bottom:165.866875pt;}
.y1e_c02247{bottom:174.507067pt;}
.y1b_c02247{bottom:245.225371pt;}
.y1a_c02247{bottom:303.785851pt;}
.y19_c02247{bottom:317.225563pt;}
.y17_c02247{bottom:361.386427pt;}
.y13_c02247{bottom:377.386939pt;}
.y18_c02247{bottom:407.786011pt;}
.y16_c02247{bottom:437.226235pt;}
.y15_c02247{bottom:453.226747pt;}
.y12_c02247{bottom:482.666971pt;}
.y14_c02247{bottom:497.386555pt;}
.y11_c02247{bottom:513.387067pt;}
.y20_c02247{bottom:546.027067pt;}
.yd_c02247{bottom:579.946523pt;}
.yc_c02247{bottom:593.386235pt;}
.yf_c02247{bottom:628.586875pt;}
.ye_c02247{bottom:637.227067pt;}
.yb_c02247{bottom:707.946395pt;}
.ya_c02247{bottom:766.505819pt;}
.y9_c02247{bottom:779.945531pt;}
.y7_c02247{bottom:823.786427pt;}
.y3_c02247{bottom:839.786939pt;}
.y8_c02247{bottom:870.505979pt;}
.y6_c02247{bottom:899.946203pt;}
.y5_c02247{bottom:915.946715pt;}
.y2_c02247{bottom:945.386939pt;}
.y4_c02247{bottom:959.786555pt;}
.y1_c02247{bottom:975.787067pt;}
.y10_c02247{bottom:1008.747067pt;}
.h3_c02247{height:28.916250pt;}
.h1_c02247{height:37.063125pt;}
.h2_c02247{height:37.166250pt;}
.h4_c02247{height:48.581988pt;}
.h0_c02247{height:1122.666667pt;}
.w1_c02247{width:793.333333pt;}
.w0_c02247{width:793.626667pt;}
.x0_c02247{left:0.000000pt;}
.xe_c02247{left:104.000000pt;}
.x8_c02247{left:391.999872pt;}
.x4_c02247{left:396.160512pt;}
.xc_c02247{left:400.960000pt;}
.x7_c02247{left:404.799648pt;}
.x5_c02247{left:410.560128pt;}
.x1_c02247{left:411.840000pt;}
.xb_c02247{left:429.760320pt;}
.x9_c02247{left:437.439552pt;}
.x6_c02247{left:438.400512pt;}
.xd_c02247{left:450.560320pt;}
.x3_c02247{left:455.039904pt;}
.x2_c02247{left:468.159648pt;}
.xa_c02247{left:506.560032pt;}
}





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

.ir_c02248:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02248{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02248;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02248{font-family:ff1_c02248;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02248;src:url('chunks/assets/font_933037812d7a256c7adf8cbf.woff2')format("woff");}.ff2_c02248{font-family:ff2_c02248;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02248;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02248{font-family:ff3_c02248;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02248{vertical-align:0.000000px;}
.v1_c02248{vertical-align:1.439424px;}
.ls13_c02248{letter-spacing:-0.845856px;}
.ls18_c02248{letter-spacing:-0.793584px;}
.lsc_c02248{letter-spacing:-0.774576px;}
.ls12_c02248{letter-spacing:-0.736560px;}
.lsf_c02248{letter-spacing:-0.722304px;}
.ls8_c02248{letter-spacing:-0.613008px;}
.lsb_c02248{letter-spacing:-0.574992px;}
.ls14_c02248{letter-spacing:-0.275616px;}
.ls19_c02248{letter-spacing:-0.270864px;}
.lsa_c02248{letter-spacing:-0.266112px;}
.ls10_c02248{letter-spacing:-0.261360px;}
.ls7_c02248{letter-spacing:-0.242352px;}
.ls4_c02248{letter-spacing:-0.118800px;}
.ls17_c02248{letter-spacing:0.000000px;}
.ls0_c02248{letter-spacing:0.006048px;}
.ls6_c02248{letter-spacing:0.128304px;}
.lse_c02248{letter-spacing:0.508464px;}
.ls16_c02248{letter-spacing:0.514080px;}
.ls11_c02248{letter-spacing:0.536976px;}
.lsd_c02248{letter-spacing:0.579744px;}
.ls15_c02248{letter-spacing:0.594000px;}
.ls9_c02248{letter-spacing:0.598752px;}
.ls2_c02248{letter-spacing:0.613008px;}
.ls1_c02248{letter-spacing:0.651024px;}
.ls5_c02248{letter-spacing:0.717552px;}
.ls3_c02248{letter-spacing:0.722304px;}
.sc__c02248{text-shadow:none;}
.sc0_c02248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02248{-webkit-text-stroke:0px transparent;}
.sc0_c02248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02248{word-spacing:-15.126048px;}
.wsa_c02248{word-spacing:-12.474000px;}
.ws6_c02248{word-spacing:-12.459744px;}
.ws2_c02248{word-spacing:-11.266992px;}
.ws5_c02248{word-spacing:-11.105424px;}
.ws17_c02248{word-spacing:-2.159136px;}
.ws1a_c02248{word-spacing:-1.083456px;}
.ws18_c02248{word-spacing:-1.012176px;}
.wsf_c02248{word-spacing:-0.974160px;}
.ws11_c02248{word-spacing:-0.118800px;}
.ws14_c02248{word-spacing:-0.099792px;}
.ws12_c02248{word-spacing:-0.095040px;}
.ws1b_c02248{word-spacing:-0.090288px;}
.ws16_c02248{word-spacing:-0.085536px;}
.ws10_c02248{word-spacing:0.000000px;}
.ws13_c02248{word-spacing:0.361152px;}
.ws19_c02248{word-spacing:0.432432px;}
.ws15_c02248{word-spacing:0.484704px;}
.ws9_c02248{word-spacing:6.629040px;}
.wse_c02248{word-spacing:29.086992px;}
.wsb_c02248{word-spacing:33.300288px;}
.ws8_c02248{word-spacing:34.836912px;}
.wsd_c02248{word-spacing:36.143712px;}
.ws1_c02248{word-spacing:37.759392px;}
.ws0_c02248{word-spacing:38.020752px;}
.ws3_c02248{word-spacing:39.218256px;}
.ws4_c02248{word-spacing:39.902544px;}
.ws7_c02248{word-spacing:42.026688px;}
._0_c02248{margin-left:-1.948320px;}
._2_c02248{width:1.482624px;}
._7_c02248{width:2.509056px;}
._8_c02248{width:14.751072px;}
._5_c02248{width:19.982160px;}
._6_c02248{width:23.451120px;}
._4_c02248{width:24.691392px;}
._a_c02248{width:39.427344px;}
._9_c02248{width:43.428528px;}
._b_c02248{width:45.224784px;}
._1_c02248{width:50.252400px;}
._3_c02248{width:51.530688px;}
.fc0_c02248{color:rgb(0,0,0);}
.fs0_c02248{font-size:47.520000px;}
.fs1_c02248{font-size:60.480000px;}
.y0_c02248{bottom:0.000000px;}
.y1c_c02248{bottom:131.878686px;}
.y1b_c02248{bottom:146.998362px;}
.y1e_c02248{bottom:186.600234px;}
.y1d_c02248{bottom:196.320450px;}
.y1a_c02248{bottom:275.878542px;}
.y19_c02248{bottom:341.759082px;}
.y18_c02248{bottom:356.878758px;}
.y16_c02248{bottom:406.559730px;}
.y12_c02248{bottom:424.560306px;}
.y17_c02248{bottom:458.759262px;}
.y15_c02248{bottom:491.879514px;}
.y14_c02248{bottom:509.880090px;}
.y11_c02248{bottom:543.000342px;}
.y13_c02248{bottom:559.559874px;}
.y10_c02248{bottom:577.560450px;}
.y1f_c02248{bottom:614.280450px;}
.yc_c02248{bottom:652.438650px;}
.yb_c02248{bottom:667.558326px;}
.ye_c02248{bottom:707.160234px;}
.yd_c02248{bottom:716.880450px;}
.ya_c02248{bottom:796.438506px;}
.y9_c02248{bottom:877.438722px;}
.y7_c02248{bottom:926.759730px;}
.y3_c02248{bottom:944.760306px;}
.y8_c02248{bottom:979.319226px;}
.y6_c02248{bottom:1012.439478px;}
.y5_c02248{bottom:1030.440054px;}
.y2_c02248{bottom:1063.560306px;}
.y4_c02248{bottom:1079.759874px;}
.y1_c02248{bottom:1097.760450px;}
.yf_c02248{bottom:1134.840450px;}
.h3_c02248{height:32.530781px;}
.h1_c02248{height:41.696016px;}
.h2_c02248{height:41.812031px;}
.h4_c02248{height:54.654737px;}
.h0_c02248{height:1263.000000px;}
.w1_c02248{width:892.500000px;}
.w0_c02248{width:892.830000px;}
.x0_c02248{left:0.000000px;}
.xe_c02248{left:117.000000px;}
.x8_c02248{left:440.999856px;}
.x4_c02248{left:445.680576px;}
.xc_c02248{left:451.080000px;}
.x7_c02248{left:455.399604px;}
.x5_c02248{left:461.880144px;}
.x1_c02248{left:463.320000px;}
.xa_c02248{left:483.480360px;}
.x9_c02248{left:492.119496px;}
.x6_c02248{left:493.200576px;}
.xd_c02248{left:506.880360px;}
.x3_c02248{left:511.919892px;}
.x2_c02248{left:526.679604px;}
.xb_c02248{left:569.880036px;}
@media print{
.v0_c02248{vertical-align:0.000000pt;}
.v1_c02248{vertical-align:1.279488pt;}
.ls13_c02248{letter-spacing:-0.751872pt;}
.ls18_c02248{letter-spacing:-0.705408pt;}
.lsc_c02248{letter-spacing:-0.688512pt;}
.ls12_c02248{letter-spacing:-0.654720pt;}
.lsf_c02248{letter-spacing:-0.642048pt;}
.ls8_c02248{letter-spacing:-0.544896pt;}
.lsb_c02248{letter-spacing:-0.511104pt;}
.ls14_c02248{letter-spacing:-0.244992pt;}
.ls19_c02248{letter-spacing:-0.240768pt;}
.lsa_c02248{letter-spacing:-0.236544pt;}
.ls10_c02248{letter-spacing:-0.232320pt;}
.ls7_c02248{letter-spacing:-0.215424pt;}
.ls4_c02248{letter-spacing:-0.105600pt;}
.ls17_c02248{letter-spacing:0.000000pt;}
.ls0_c02248{letter-spacing:0.005376pt;}
.ls6_c02248{letter-spacing:0.114048pt;}
.lse_c02248{letter-spacing:0.451968pt;}
.ls16_c02248{letter-spacing:0.456960pt;}
.ls11_c02248{letter-spacing:0.477312pt;}
.lsd_c02248{letter-spacing:0.515328pt;}
.ls15_c02248{letter-spacing:0.528000pt;}
.ls9_c02248{letter-spacing:0.532224pt;}
.ls2_c02248{letter-spacing:0.544896pt;}
.ls1_c02248{letter-spacing:0.578688pt;}
.ls5_c02248{letter-spacing:0.637824pt;}
.ls3_c02248{letter-spacing:0.642048pt;}
.wsc_c02248{word-spacing:-13.445376pt;}
.wsa_c02248{word-spacing:-11.088000pt;}
.ws6_c02248{word-spacing:-11.075328pt;}
.ws2_c02248{word-spacing:-10.015104pt;}
.ws5_c02248{word-spacing:-9.871488pt;}
.ws17_c02248{word-spacing:-1.919232pt;}
.ws1a_c02248{word-spacing:-0.963072pt;}
.ws18_c02248{word-spacing:-0.899712pt;}
.wsf_c02248{word-spacing:-0.865920pt;}
.ws11_c02248{word-spacing:-0.105600pt;}
.ws14_c02248{word-spacing:-0.088704pt;}
.ws12_c02248{word-spacing:-0.084480pt;}
.ws1b_c02248{word-spacing:-0.080256pt;}
.ws16_c02248{word-spacing:-0.076032pt;}
.ws10_c02248{word-spacing:0.000000pt;}
.ws13_c02248{word-spacing:0.321024pt;}
.ws19_c02248{word-spacing:0.384384pt;}
.ws15_c02248{word-spacing:0.430848pt;}
.ws9_c02248{word-spacing:5.892480pt;}
.wse_c02248{word-spacing:25.855104pt;}
.wsb_c02248{word-spacing:29.600256pt;}
.ws8_c02248{word-spacing:30.966144pt;}
.wsd_c02248{word-spacing:32.127744pt;}
.ws1_c02248{word-spacing:33.563904pt;}
.ws0_c02248{word-spacing:33.796224pt;}
.ws3_c02248{word-spacing:34.860672pt;}
.ws4_c02248{word-spacing:35.468928pt;}
.ws7_c02248{word-spacing:37.357056pt;}
._0_c02248{margin-left:-1.731840pt;}
._2_c02248{width:1.317888pt;}
._7_c02248{width:2.230272pt;}
._8_c02248{width:13.112064pt;}
._5_c02248{width:17.761920pt;}
._6_c02248{width:20.845440pt;}
._4_c02248{width:21.947904pt;}
._a_c02248{width:35.046528pt;}
._9_c02248{width:38.603136pt;}
._b_c02248{width:40.199808pt;}
._1_c02248{width:44.668800pt;}
._3_c02248{width:45.805056pt;}
.fs0_c02248{font-size:42.240000pt;}
.fs1_c02248{font-size:53.760000pt;}
.y0_c02248{bottom:0.000000pt;}
.y1c_c02248{bottom:117.225499pt;}
.y1b_c02248{bottom:130.665211pt;}
.y1e_c02248{bottom:165.866875pt;}
.y1d_c02248{bottom:174.507067pt;}
.y1a_c02248{bottom:245.225371pt;}
.y19_c02248{bottom:303.785851pt;}
.y18_c02248{bottom:317.225563pt;}
.y16_c02248{bottom:361.386427pt;}
.y12_c02248{bottom:377.386939pt;}
.y17_c02248{bottom:407.786011pt;}
.y15_c02248{bottom:437.226235pt;}
.y14_c02248{bottom:453.226747pt;}
.y11_c02248{bottom:482.666971pt;}
.y13_c02248{bottom:497.386555pt;}
.y10_c02248{bottom:513.387067pt;}
.y1f_c02248{bottom:546.027067pt;}
.yc_c02248{bottom:579.945467pt;}
.yb_c02248{bottom:593.385179pt;}
.ye_c02248{bottom:628.586875pt;}
.yd_c02248{bottom:637.227067pt;}
.ya_c02248{bottom:707.945339pt;}
.y9_c02248{bottom:779.945531pt;}
.y7_c02248{bottom:823.786427pt;}
.y3_c02248{bottom:839.786939pt;}
.y8_c02248{bottom:870.505979pt;}
.y6_c02248{bottom:899.946203pt;}
.y5_c02248{bottom:915.946715pt;}
.y2_c02248{bottom:945.386939pt;}
.y4_c02248{bottom:959.786555pt;}
.y1_c02248{bottom:975.787067pt;}
.yf_c02248{bottom:1008.747067pt;}
.h3_c02248{height:28.916250pt;}
.h1_c02248{height:37.063125pt;}
.h2_c02248{height:37.166250pt;}
.h4_c02248{height:48.581988pt;}
.h0_c02248{height:1122.666667pt;}
.w1_c02248{width:793.333333pt;}
.w0_c02248{width:793.626667pt;}
.x0_c02248{left:0.000000pt;}
.xe_c02248{left:104.000000pt;}
.x8_c02248{left:391.999872pt;}
.x4_c02248{left:396.160512pt;}
.xc_c02248{left:400.960000pt;}
.x7_c02248{left:404.799648pt;}
.x5_c02248{left:410.560128pt;}
.x1_c02248{left:411.840000pt;}
.xa_c02248{left:429.760320pt;}
.x9_c02248{left:437.439552pt;}
.x6_c02248{left:438.400512pt;}
.xd_c02248{left:450.560320pt;}
.x3_c02248{left:455.039904pt;}
.x2_c02248{left:468.159648pt;}
.xb_c02248{left:506.560032pt;}
}





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

.ir_c02249:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02249{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02249;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02249{font-family:ff1_c02249;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02249;src:url('chunks/assets/font_ec0607d42072f24daf9e485f.woff2')format("woff");}.ff2_c02249{font-family:ff2_c02249;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02249;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02249{font-family:ff3_c02249;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02249{vertical-align:0.000000px;}
.v1_c02249{vertical-align:1.439424px;}
.ls12_c02249{letter-spacing:-0.845856px;}
.lsb_c02249{letter-spacing:-0.774576px;}
.ls11_c02249{letter-spacing:-0.736560px;}
.lse_c02249{letter-spacing:-0.722304px;}
.ls7_c02249{letter-spacing:-0.613008px;}
.lsa_c02249{letter-spacing:-0.574992px;}
.ls17_c02249{letter-spacing:-0.427680px;}
.ls13_c02249{letter-spacing:-0.275616px;}
.ls9_c02249{letter-spacing:-0.266112px;}
.lsf_c02249{letter-spacing:-0.261360px;}
.ls6_c02249{letter-spacing:-0.242352px;}
.ls4_c02249{letter-spacing:-0.118800px;}
.ls16_c02249{letter-spacing:0.000000px;}
.ls0_c02249{letter-spacing:0.006048px;}
.ls5_c02249{letter-spacing:0.128304px;}
.lsd_c02249{letter-spacing:0.508464px;}
.ls15_c02249{letter-spacing:0.514080px;}
.ls10_c02249{letter-spacing:0.536976px;}
.lsc_c02249{letter-spacing:0.579744px;}
.ls14_c02249{letter-spacing:0.594000px;}
.ls8_c02249{letter-spacing:0.598752px;}
.ls2_c02249{letter-spacing:0.613008px;}
.ls18_c02249{letter-spacing:0.651024px;}
.ls1_c02249{letter-spacing:0.717552px;}
.ls3_c02249{letter-spacing:0.722304px;}
.sc__c02249{text-shadow:none;}
.sc0_c02249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02249{-webkit-text-stroke:0px transparent;}
.sc0_c02249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02249{word-spacing:-15.126048px;}
.wsa_c02249{word-spacing:-12.474000px;}
.ws6_c02249{word-spacing:-12.459744px;}
.ws10_c02249{word-spacing:-12.416976px;}
.ws2_c02249{word-spacing:-11.266992px;}
.ws5_c02249{word-spacing:-11.105424px;}
.ws19_c02249{word-spacing:-2.159136px;}
.ws1c_c02249{word-spacing:-1.083456px;}
.ws1a_c02249{word-spacing:-1.078704px;}
.ws11_c02249{word-spacing:-0.974160px;}
.ws13_c02249{word-spacing:-0.118800px;}
.ws16_c02249{word-spacing:-0.099792px;}
.ws14_c02249{word-spacing:-0.095040px;}
.ws18_c02249{word-spacing:-0.085536px;}
.ws12_c02249{word-spacing:0.000000px;}
.ws1b_c02249{word-spacing:0.066528px;}
.ws15_c02249{word-spacing:0.361152px;}
.ws17_c02249{word-spacing:0.484704px;}
.ws9_c02249{word-spacing:6.629040px;}
.wsf_c02249{word-spacing:29.086992px;}
.wsb_c02249{word-spacing:33.300288px;}
.ws8_c02249{word-spacing:34.836912px;}
.wse_c02249{word-spacing:36.143712px;}
.wsd_c02249{word-spacing:36.742464px;}
.ws1_c02249{word-spacing:37.759392px;}
.ws0_c02249{word-spacing:38.020752px;}
.ws3_c02249{word-spacing:39.218256px;}
.ws4_c02249{word-spacing:39.902544px;}
.ws7_c02249{word-spacing:42.026688px;}
._0_c02249{margin-left:-1.948320px;}
._2_c02249{width:1.482624px;}
._7_c02249{width:2.509056px;}
._8_c02249{width:14.751072px;}
._5_c02249{width:19.982160px;}
._6_c02249{width:23.451120px;}
._4_c02249{width:24.691392px;}
._a_c02249{width:39.427344px;}
._9_c02249{width:43.428528px;}
._b_c02249{width:45.224784px;}
._1_c02249{width:50.252400px;}
._3_c02249{width:51.530688px;}
.fc0_c02249{color:rgb(0,0,0);}
.fs0_c02249{font-size:47.520000px;}
.fs1_c02249{font-size:60.480000px;}
.y0_c02249{bottom:0.000000px;}
.y1b_c02249{bottom:146.998362px;}
.y1d_c02249{bottom:186.600234px;}
.y1c_c02249{bottom:196.320450px;}
.y1a_c02249{bottom:275.878542px;}
.y19_c02249{bottom:341.759082px;}
.y18_c02249{bottom:356.878758px;}
.y16_c02249{bottom:406.559730px;}
.y12_c02249{bottom:424.560306px;}
.y17_c02249{bottom:458.759262px;}
.y15_c02249{bottom:491.879514px;}
.y14_c02249{bottom:509.880090px;}
.y11_c02249{bottom:543.000342px;}
.y13_c02249{bottom:559.559874px;}
.y10_c02249{bottom:577.560450px;}
.y1e_c02249{bottom:614.280450px;}
.yc_c02249{bottom:652.438650px;}
.yb_c02249{bottom:667.558326px;}
.ye_c02249{bottom:707.160234px;}
.yd_c02249{bottom:716.880450px;}
.ya_c02249{bottom:796.438506px;}
.y9_c02249{bottom:877.438722px;}
.y7_c02249{bottom:926.759730px;}
.y3_c02249{bottom:944.760306px;}
.y8_c02249{bottom:979.319226px;}
.y6_c02249{bottom:1012.439478px;}
.y5_c02249{bottom:1030.440054px;}
.y2_c02249{bottom:1063.560306px;}
.y4_c02249{bottom:1079.759874px;}
.y1_c02249{bottom:1097.760450px;}
.yf_c02249{bottom:1134.840450px;}
.h3_c02249{height:32.530781px;}
.h1_c02249{height:41.696016px;}
.h2_c02249{height:41.812031px;}
.h4_c02249{height:54.654737px;}
.h0_c02249{height:1263.000000px;}
.w1_c02249{width:892.500000px;}
.w0_c02249{width:892.830000px;}
.x0_c02249{left:0.000000px;}
.xe_c02249{left:117.000000px;}
.x8_c02249{left:440.999856px;}
.x4_c02249{left:445.680576px;}
.xc_c02249{left:451.080000px;}
.x7_c02249{left:455.399604px;}
.x5_c02249{left:461.880144px;}
.x1_c02249{left:463.320000px;}
.xa_c02249{left:483.480360px;}
.x9_c02249{left:492.119496px;}
.x6_c02249{left:493.200576px;}
.xd_c02249{left:506.880360px;}
.x3_c02249{left:511.919892px;}
.x2_c02249{left:526.679604px;}
.xb_c02249{left:569.880036px;}
@media print{
.v0_c02249{vertical-align:0.000000pt;}
.v1_c02249{vertical-align:1.279488pt;}
.ls12_c02249{letter-spacing:-0.751872pt;}
.lsb_c02249{letter-spacing:-0.688512pt;}
.ls11_c02249{letter-spacing:-0.654720pt;}
.lse_c02249{letter-spacing:-0.642048pt;}
.ls7_c02249{letter-spacing:-0.544896pt;}
.lsa_c02249{letter-spacing:-0.511104pt;}
.ls17_c02249{letter-spacing:-0.380160pt;}
.ls13_c02249{letter-spacing:-0.244992pt;}
.ls9_c02249{letter-spacing:-0.236544pt;}
.lsf_c02249{letter-spacing:-0.232320pt;}
.ls6_c02249{letter-spacing:-0.215424pt;}
.ls4_c02249{letter-spacing:-0.105600pt;}
.ls16_c02249{letter-spacing:0.000000pt;}
.ls0_c02249{letter-spacing:0.005376pt;}
.ls5_c02249{letter-spacing:0.114048pt;}
.lsd_c02249{letter-spacing:0.451968pt;}
.ls15_c02249{letter-spacing:0.456960pt;}
.ls10_c02249{letter-spacing:0.477312pt;}
.lsc_c02249{letter-spacing:0.515328pt;}
.ls14_c02249{letter-spacing:0.528000pt;}
.ls8_c02249{letter-spacing:0.532224pt;}
.ls2_c02249{letter-spacing:0.544896pt;}
.ls18_c02249{letter-spacing:0.578688pt;}
.ls1_c02249{letter-spacing:0.637824pt;}
.ls3_c02249{letter-spacing:0.642048pt;}
.wsc_c02249{word-spacing:-13.445376pt;}
.wsa_c02249{word-spacing:-11.088000pt;}
.ws6_c02249{word-spacing:-11.075328pt;}
.ws10_c02249{word-spacing:-11.037312pt;}
.ws2_c02249{word-spacing:-10.015104pt;}
.ws5_c02249{word-spacing:-9.871488pt;}
.ws19_c02249{word-spacing:-1.919232pt;}
.ws1c_c02249{word-spacing:-0.963072pt;}
.ws1a_c02249{word-spacing:-0.958848pt;}
.ws11_c02249{word-spacing:-0.865920pt;}
.ws13_c02249{word-spacing:-0.105600pt;}
.ws16_c02249{word-spacing:-0.088704pt;}
.ws14_c02249{word-spacing:-0.084480pt;}
.ws18_c02249{word-spacing:-0.076032pt;}
.ws12_c02249{word-spacing:0.000000pt;}
.ws1b_c02249{word-spacing:0.059136pt;}
.ws15_c02249{word-spacing:0.321024pt;}
.ws17_c02249{word-spacing:0.430848pt;}
.ws9_c02249{word-spacing:5.892480pt;}
.wsf_c02249{word-spacing:25.855104pt;}
.wsb_c02249{word-spacing:29.600256pt;}
.ws8_c02249{word-spacing:30.966144pt;}
.wse_c02249{word-spacing:32.127744pt;}
.wsd_c02249{word-spacing:32.659968pt;}
.ws1_c02249{word-spacing:33.563904pt;}
.ws0_c02249{word-spacing:33.796224pt;}
.ws3_c02249{word-spacing:34.860672pt;}
.ws4_c02249{word-spacing:35.468928pt;}
.ws7_c02249{word-spacing:37.357056pt;}
._0_c02249{margin-left:-1.731840pt;}
._2_c02249{width:1.317888pt;}
._7_c02249{width:2.230272pt;}
._8_c02249{width:13.112064pt;}
._5_c02249{width:17.761920pt;}
._6_c02249{width:20.845440pt;}
._4_c02249{width:21.947904pt;}
._a_c02249{width:35.046528pt;}
._9_c02249{width:38.603136pt;}
._b_c02249{width:40.199808pt;}
._1_c02249{width:44.668800pt;}
._3_c02249{width:45.805056pt;}
.fs0_c02249{font-size:42.240000pt;}
.fs1_c02249{font-size:53.760000pt;}
.y0_c02249{bottom:0.000000pt;}
.y1b_c02249{bottom:130.665211pt;}
.y1d_c02249{bottom:165.866875pt;}
.y1c_c02249{bottom:174.507067pt;}
.y1a_c02249{bottom:245.225371pt;}
.y19_c02249{bottom:303.785851pt;}
.y18_c02249{bottom:317.225563pt;}
.y16_c02249{bottom:361.386427pt;}
.y12_c02249{bottom:377.386939pt;}
.y17_c02249{bottom:407.786011pt;}
.y15_c02249{bottom:437.226235pt;}
.y14_c02249{bottom:453.226747pt;}
.y11_c02249{bottom:482.666971pt;}
.y13_c02249{bottom:497.386555pt;}
.y10_c02249{bottom:513.387067pt;}
.y1e_c02249{bottom:546.027067pt;}
.yc_c02249{bottom:579.945467pt;}
.yb_c02249{bottom:593.385179pt;}
.ye_c02249{bottom:628.586875pt;}
.yd_c02249{bottom:637.227067pt;}
.ya_c02249{bottom:707.945339pt;}
.y9_c02249{bottom:779.945531pt;}
.y7_c02249{bottom:823.786427pt;}
.y3_c02249{bottom:839.786939pt;}
.y8_c02249{bottom:870.505979pt;}
.y6_c02249{bottom:899.946203pt;}
.y5_c02249{bottom:915.946715pt;}
.y2_c02249{bottom:945.386939pt;}
.y4_c02249{bottom:959.786555pt;}
.y1_c02249{bottom:975.787067pt;}
.yf_c02249{bottom:1008.747067pt;}
.h3_c02249{height:28.916250pt;}
.h1_c02249{height:37.063125pt;}
.h2_c02249{height:37.166250pt;}
.h4_c02249{height:48.581988pt;}
.h0_c02249{height:1122.666667pt;}
.w1_c02249{width:793.333333pt;}
.w0_c02249{width:793.626667pt;}
.x0_c02249{left:0.000000pt;}
.xe_c02249{left:104.000000pt;}
.x8_c02249{left:391.999872pt;}
.x4_c02249{left:396.160512pt;}
.xc_c02249{left:400.960000pt;}
.x7_c02249{left:404.799648pt;}
.x5_c02249{left:410.560128pt;}
.x1_c02249{left:411.840000pt;}
.xa_c02249{left:429.760320pt;}
.x9_c02249{left:437.439552pt;}
.x6_c02249{left:438.400512pt;}
.xd_c02249{left:450.560320pt;}
.x3_c02249{left:455.039904pt;}
.x2_c02249{left:468.159648pt;}
.xb_c02249{left:506.560032pt;}
}





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

.ir_c02250:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02250{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02250;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02250{font-family:ff1_c02250;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02250;src:url('chunks/assets/font_b54179be1e7dc75ba89bf5c7.woff2')format("woff");}.ff2_c02250{font-family:ff2_c02250;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02250;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02250{font-family:ff3_c02250;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02250{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02250{vertical-align:0.000000px;}
.v1_c02250{vertical-align:1.439424px;}
.v2_c02250{vertical-align:33.121440px;}
.lsf_c02250{letter-spacing:-0.736560px;}
.ls9_c02250{letter-spacing:-0.574992px;}
.ls17_c02250{letter-spacing:-0.361152px;}
.ls18_c02250{letter-spacing:-0.275616px;}
.ls10_c02250{letter-spacing:-0.270864px;}
.ls8_c02250{letter-spacing:-0.266112px;}
.lsd_c02250{letter-spacing:-0.261360px;}
.ls6_c02250{letter-spacing:-0.242352px;}
.ls14_c02250{letter-spacing:-0.237600px;}
.ls3_c02250{letter-spacing:-0.118800px;}
.ls13_c02250{letter-spacing:0.000000px;}
.ls0_c02250{letter-spacing:0.006048px;}
.lsc_c02250{letter-spacing:0.038016px;}
.ls5_c02250{letter-spacing:0.128304px;}
.lsb_c02250{letter-spacing:0.508464px;}
.ls12_c02250{letter-spacing:0.514080px;}
.lse_c02250{letter-spacing:0.536976px;}
.lsa_c02250{letter-spacing:0.579744px;}
.ls11_c02250{letter-spacing:0.594000px;}
.ls7_c02250{letter-spacing:0.598752px;}
.ls1_c02250{letter-spacing:0.613008px;}
.ls16_c02250{letter-spacing:0.651024px;}
.ls4_c02250{letter-spacing:0.717552px;}
.ls2_c02250{letter-spacing:0.722304px;}
.ls15_c02250{letter-spacing:1.211760px;}
.sc__c02250{text-shadow:none;}
.sc0_c02250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02250{-webkit-text-stroke:0px transparent;}
.sc0_c02250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02250{word-spacing:-15.126048px;}
.wsd_c02250{word-spacing:-13.091760px;}
.ws9_c02250{word-spacing:-12.474000px;}
.ws5_c02250{word-spacing:-12.459744px;}
.ws11_c02250{word-spacing:-12.416976px;}
.wse_c02250{word-spacing:-12.388464px;}
.wsc_c02250{word-spacing:-11.642400px;}
.ws4_c02250{word-spacing:-11.305008px;}
.ws1b_c02250{word-spacing:-2.159136px;}
.ws1c_c02250{word-spacing:-1.083456px;}
.ws13_c02250{word-spacing:-0.974160px;}
.ws17_c02250{word-spacing:-0.399168px;}
.ws15_c02250{word-spacing:-0.118800px;}
.ws18_c02250{word-spacing:-0.099792px;}
.ws16_c02250{word-spacing:-0.095040px;}
.ws19_c02250{word-spacing:-0.090288px;}
.ws1a_c02250{word-spacing:-0.085536px;}
.ws14_c02250{word-spacing:0.000000px;}
.ws2_c02250{word-spacing:1.330560px;}
.ws8_c02250{word-spacing:6.629040px;}
.ws10_c02250{word-spacing:29.086992px;}
.ws12_c02250{word-spacing:30.298752px;}
.wsa_c02250{word-spacing:33.300288px;}
.ws7_c02250{word-spacing:34.836912px;}
.wsf_c02250{word-spacing:36.143712px;}
.ws1_c02250{word-spacing:37.759392px;}
.ws0_c02250{word-spacing:38.020752px;}
.ws3_c02250{word-spacing:39.218256px;}
.ws6_c02250{word-spacing:42.026688px;}
._9_c02250{margin-left:-2.989008px;}
._0_c02250{margin-left:-1.948320px;}
._2_c02250{width:1.482624px;}
._4_c02250{width:4.999104px;}
._8_c02250{width:14.751072px;}
._6_c02250{width:19.982160px;}
._7_c02250{width:23.451120px;}
._5_c02250{width:24.691392px;}
._b_c02250{width:39.427344px;}
._a_c02250{width:44.469216px;}
._c_c02250{width:46.265472px;}
._1_c02250{width:50.252400px;}
._3_c02250{width:51.530688px;}
.fc0_c02250{color:rgb(0,0,0);}
.fs0_c02250{font-size:47.520000px;}
.fs1_c02250{font-size:60.480000px;}
.y0_c02250{bottom:0.000000px;}
.y1b_c02250{bottom:146.998362px;}
.y1d_c02250{bottom:186.600234px;}
.y1c_c02250{bottom:196.320450px;}
.y1a_c02250{bottom:275.878542px;}
.y19_c02250{bottom:341.759082px;}
.y18_c02250{bottom:356.878758px;}
.y16_c02250{bottom:406.559730px;}
.y12_c02250{bottom:424.560306px;}
.y17_c02250{bottom:458.759262px;}
.y15_c02250{bottom:491.879514px;}
.y14_c02250{bottom:509.880090px;}
.y11_c02250{bottom:543.000342px;}
.y13_c02250{bottom:559.559874px;}
.y10_c02250{bottom:577.560450px;}
.y1e_c02250{bottom:614.280450px;}
.yc_c02250{bottom:652.438650px;}
.yb_c02250{bottom:667.558326px;}
.ye_c02250{bottom:707.160234px;}
.yd_c02250{bottom:716.880450px;}
.ya_c02250{bottom:796.438506px;}
.y9_c02250{bottom:877.438722px;}
.y7_c02250{bottom:926.759730px;}
.y3_c02250{bottom:944.760306px;}
.y8_c02250{bottom:979.319226px;}
.y6_c02250{bottom:1012.439478px;}
.y5_c02250{bottom:1030.440054px;}
.y2_c02250{bottom:1063.560306px;}
.y4_c02250{bottom:1079.759874px;}
.y1_c02250{bottom:1097.760450px;}
.yf_c02250{bottom:1134.840450px;}
.h3_c02250{height:32.530781px;}
.h1_c02250{height:41.696016px;}
.h2_c02250{height:41.812031px;}
.h4_c02250{height:54.654737px;}
.h5_c02250{height:74.817456px;}
.h0_c02250{height:1263.000000px;}
.w1_c02250{width:892.500000px;}
.w0_c02250{width:892.830000px;}
.x0_c02250{left:0.000000px;}
.xe_c02250{left:117.000000px;}
.x8_c02250{left:441.001044px;}
.x4_c02250{left:445.680576px;}
.xc_c02250{left:451.080000px;}
.x7_c02250{left:455.400792px;}
.x5_c02250{left:461.880144px;}
.x1_c02250{left:463.320000px;}
.xa_c02250{left:483.481548px;}
.x9_c02250{left:492.120684px;}
.x6_c02250{left:493.200576px;}
.xd_c02250{left:506.880360px;}
.x3_c02250{left:511.919892px;}
.x2_c02250{left:526.679604px;}
.xb_c02250{left:569.881224px;}
@media print{
.v0_c02250{vertical-align:0.000000pt;}
.v1_c02250{vertical-align:1.279488pt;}
.v2_c02250{vertical-align:29.441280pt;}
.lsf_c02250{letter-spacing:-0.654720pt;}
.ls9_c02250{letter-spacing:-0.511104pt;}
.ls17_c02250{letter-spacing:-0.321024pt;}
.ls18_c02250{letter-spacing:-0.244992pt;}
.ls10_c02250{letter-spacing:-0.240768pt;}
.ls8_c02250{letter-spacing:-0.236544pt;}
.lsd_c02250{letter-spacing:-0.232320pt;}
.ls6_c02250{letter-spacing:-0.215424pt;}
.ls14_c02250{letter-spacing:-0.211200pt;}
.ls3_c02250{letter-spacing:-0.105600pt;}
.ls13_c02250{letter-spacing:0.000000pt;}
.ls0_c02250{letter-spacing:0.005376pt;}
.lsc_c02250{letter-spacing:0.033792pt;}
.ls5_c02250{letter-spacing:0.114048pt;}
.lsb_c02250{letter-spacing:0.451968pt;}
.ls12_c02250{letter-spacing:0.456960pt;}
.lse_c02250{letter-spacing:0.477312pt;}
.lsa_c02250{letter-spacing:0.515328pt;}
.ls11_c02250{letter-spacing:0.528000pt;}
.ls7_c02250{letter-spacing:0.532224pt;}
.ls1_c02250{letter-spacing:0.544896pt;}
.ls16_c02250{letter-spacing:0.578688pt;}
.ls4_c02250{letter-spacing:0.637824pt;}
.ls2_c02250{letter-spacing:0.642048pt;}
.ls15_c02250{letter-spacing:1.077120pt;}
.wsb_c02250{word-spacing:-13.445376pt;}
.wsd_c02250{word-spacing:-11.637120pt;}
.ws9_c02250{word-spacing:-11.088000pt;}
.ws5_c02250{word-spacing:-11.075328pt;}
.ws11_c02250{word-spacing:-11.037312pt;}
.wse_c02250{word-spacing:-11.011968pt;}
.wsc_c02250{word-spacing:-10.348800pt;}
.ws4_c02250{word-spacing:-10.048896pt;}
.ws1b_c02250{word-spacing:-1.919232pt;}
.ws1c_c02250{word-spacing:-0.963072pt;}
.ws13_c02250{word-spacing:-0.865920pt;}
.ws17_c02250{word-spacing:-0.354816pt;}
.ws15_c02250{word-spacing:-0.105600pt;}
.ws18_c02250{word-spacing:-0.088704pt;}
.ws16_c02250{word-spacing:-0.084480pt;}
.ws19_c02250{word-spacing:-0.080256pt;}
.ws1a_c02250{word-spacing:-0.076032pt;}
.ws14_c02250{word-spacing:0.000000pt;}
.ws2_c02250{word-spacing:1.182720pt;}
.ws8_c02250{word-spacing:5.892480pt;}
.ws10_c02250{word-spacing:25.855104pt;}
.ws12_c02250{word-spacing:26.932224pt;}
.wsa_c02250{word-spacing:29.600256pt;}
.ws7_c02250{word-spacing:30.966144pt;}
.wsf_c02250{word-spacing:32.127744pt;}
.ws1_c02250{word-spacing:33.563904pt;}
.ws0_c02250{word-spacing:33.796224pt;}
.ws3_c02250{word-spacing:34.860672pt;}
.ws6_c02250{word-spacing:37.357056pt;}
._9_c02250{margin-left:-2.656896pt;}
._0_c02250{margin-left:-1.731840pt;}
._2_c02250{width:1.317888pt;}
._4_c02250{width:4.443648pt;}
._8_c02250{width:13.112064pt;}
._6_c02250{width:17.761920pt;}
._7_c02250{width:20.845440pt;}
._5_c02250{width:21.947904pt;}
._b_c02250{width:35.046528pt;}
._a_c02250{width:39.528192pt;}
._c_c02250{width:41.124864pt;}
._1_c02250{width:44.668800pt;}
._3_c02250{width:45.805056pt;}
.fs0_c02250{font-size:42.240000pt;}
.fs1_c02250{font-size:53.760000pt;}
.y0_c02250{bottom:0.000000pt;}
.y1b_c02250{bottom:130.665211pt;}
.y1d_c02250{bottom:165.866875pt;}
.y1c_c02250{bottom:174.507067pt;}
.y1a_c02250{bottom:245.225371pt;}
.y19_c02250{bottom:303.785851pt;}
.y18_c02250{bottom:317.225563pt;}
.y16_c02250{bottom:361.386427pt;}
.y12_c02250{bottom:377.386939pt;}
.y17_c02250{bottom:407.786011pt;}
.y15_c02250{bottom:437.226235pt;}
.y14_c02250{bottom:453.226747pt;}
.y11_c02250{bottom:482.666971pt;}
.y13_c02250{bottom:497.386555pt;}
.y10_c02250{bottom:513.387067pt;}
.y1e_c02250{bottom:546.027067pt;}
.yc_c02250{bottom:579.945467pt;}
.yb_c02250{bottom:593.385179pt;}
.ye_c02250{bottom:628.586875pt;}
.yd_c02250{bottom:637.227067pt;}
.ya_c02250{bottom:707.945339pt;}
.y9_c02250{bottom:779.945531pt;}
.y7_c02250{bottom:823.786427pt;}
.y3_c02250{bottom:839.786939pt;}
.y8_c02250{bottom:870.505979pt;}
.y6_c02250{bottom:899.946203pt;}
.y5_c02250{bottom:915.946715pt;}
.y2_c02250{bottom:945.386939pt;}
.y4_c02250{bottom:959.786555pt;}
.y1_c02250{bottom:975.787067pt;}
.yf_c02250{bottom:1008.747067pt;}
.h3_c02250{height:28.916250pt;}
.h1_c02250{height:37.063125pt;}
.h2_c02250{height:37.166250pt;}
.h4_c02250{height:48.581988pt;}
.h5_c02250{height:66.504405pt;}
.h0_c02250{height:1122.666667pt;}
.w1_c02250{width:793.333333pt;}
.w0_c02250{width:793.626667pt;}
.x0_c02250{left:0.000000pt;}
.xe_c02250{left:104.000000pt;}
.x8_c02250{left:392.000928pt;}
.x4_c02250{left:396.160512pt;}
.xc_c02250{left:400.960000pt;}
.x7_c02250{left:404.800704pt;}
.x5_c02250{left:410.560128pt;}
.x1_c02250{left:411.840000pt;}
.xa_c02250{left:429.761376pt;}
.x9_c02250{left:437.440608pt;}
.x6_c02250{left:438.400512pt;}
.xd_c02250{left:450.560320pt;}
.x3_c02250{left:455.039904pt;}
.x2_c02250{left:468.159648pt;}
.xb_c02250{left:506.561088pt;}
}





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

.ir_c02251:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02251{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02251;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02251{font-family:ff1_c02251;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02251;src:url('chunks/assets/font_cfae12dd350c37d16236ea1a.woff2')format("woff");}.ff2_c02251{font-family:ff2_c02251;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02251;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02251{font-family:ff3_c02251;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02251{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02251{vertical-align:0.000000px;}
.v1_c02251{vertical-align:1.439424px;}
.lsc_c02251{letter-spacing:-1.197504px;}
.lsf_c02251{letter-spacing:-0.793584px;}
.ls17_c02251{letter-spacing:-0.774576px;}
.ls12_c02251{letter-spacing:-0.736560px;}
.lsb_c02251{letter-spacing:-0.574992px;}
.ls18_c02251{letter-spacing:-0.275616px;}
.ls13_c02251{letter-spacing:-0.270864px;}
.ls10_c02251{letter-spacing:-0.261360px;}
.ls7_c02251{letter-spacing:-0.242352px;}
.ls8_c02251{letter-spacing:-0.237600px;}
.ls4_c02251{letter-spacing:-0.118800px;}
.ls16_c02251{letter-spacing:0.000000px;}
.ls1_c02251{letter-spacing:0.006048px;}
.ls6_c02251{letter-spacing:0.128304px;}
.lse_c02251{letter-spacing:0.508464px;}
.ls15_c02251{letter-spacing:0.514080px;}
.ls11_c02251{letter-spacing:0.536976px;}
.lsd_c02251{letter-spacing:0.579744px;}
.ls14_c02251{letter-spacing:0.594000px;}
.ls9_c02251{letter-spacing:0.598752px;}
.ls2_c02251{letter-spacing:0.613008px;}
.ls0_c02251{letter-spacing:0.651024px;}
.ls5_c02251{letter-spacing:0.717552px;}
.ls3_c02251{letter-spacing:0.722304px;}
.lsa_c02251{letter-spacing:1.211760px;}
.sc__c02251{text-shadow:none;}
.sc0_c02251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02251{-webkit-text-stroke:0px transparent;}
.sc0_c02251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c02251{word-spacing:-15.126048px;}
.ws4_c02251{word-spacing:-13.091760px;}
.wsd_c02251{word-spacing:-12.474000px;}
.ws7_c02251{word-spacing:-12.459744px;}
.ws11_c02251{word-spacing:-12.416976px;}
.ws2_c02251{word-spacing:-11.642400px;}
.ws10_c02251{word-spacing:-11.105424px;}
.ws6_c02251{word-spacing:-10.682496px;}
.ws1b_c02251{word-spacing:-2.159136px;}
.ws17_c02251{word-spacing:-1.083456px;}
.ws14_c02251{word-spacing:-1.012176px;}
.ws12_c02251{word-spacing:-0.974160px;}
.ws15_c02251{word-spacing:-0.118800px;}
.ws18_c02251{word-spacing:-0.099792px;}
.ws19_c02251{word-spacing:-0.090288px;}
.ws1a_c02251{word-spacing:-0.085536px;}
.ws13_c02251{word-spacing:0.000000px;}
.ws16_c02251{word-spacing:0.432432px;}
.wsc_c02251{word-spacing:6.629040px;}
.wsa_c02251{word-spacing:29.086992px;}
.wse_c02251{word-spacing:33.300288px;}
.wsb_c02251{word-spacing:34.836912px;}
.ws9_c02251{word-spacing:36.143712px;}
.ws1_c02251{word-spacing:37.759392px;}
.ws0_c02251{word-spacing:38.020752px;}
.ws3_c02251{word-spacing:39.218256px;}
.ws5_c02251{word-spacing:39.902544px;}
.ws8_c02251{word-spacing:42.026688px;}
._4_c02251{margin-left:-2.989008px;}
._0_c02251{margin-left:-1.948320px;}
._2_c02251{width:1.482624px;}
._b_c02251{width:14.751072px;}
._9_c02251{width:19.982160px;}
._a_c02251{width:23.451120px;}
._8_c02251{width:24.691392px;}
._6_c02251{width:39.427344px;}
._5_c02251{width:44.469216px;}
._7_c02251{width:46.265472px;}
._1_c02251{width:50.252400px;}
._3_c02251{width:51.530688px;}
.fc0_c02251{color:rgb(0,0,0);}
.fs0_c02251{font-size:47.520000px;}
.fs1_c02251{font-size:60.480000px;}
.y0_c02251{bottom:0.000000px;}
.y1b_c02251{bottom:146.998362px;}
.y1d_c02251{bottom:186.600234px;}
.y1c_c02251{bottom:196.320450px;}
.y1a_c02251{bottom:275.878542px;}
.y19_c02251{bottom:356.878758px;}
.y17_c02251{bottom:406.559730px;}
.y13_c02251{bottom:424.560306px;}
.y18_c02251{bottom:458.759262px;}
.y16_c02251{bottom:491.879514px;}
.y15_c02251{bottom:509.880090px;}
.y12_c02251{bottom:543.000342px;}
.y14_c02251{bottom:559.559874px;}
.y11_c02251{bottom:577.560450px;}
.y1e_c02251{bottom:614.280450px;}
.yd_c02251{bottom:652.439838px;}
.yc_c02251{bottom:667.559514px;}
.yf_c02251{bottom:707.160234px;}
.ye_c02251{bottom:716.880450px;}
.yb_c02251{bottom:796.439694px;}
.ya_c02251{bottom:862.319046px;}
.y9_c02251{bottom:877.438722px;}
.y7_c02251{bottom:926.759730px;}
.y3_c02251{bottom:944.760306px;}
.y8_c02251{bottom:979.319226px;}
.y6_c02251{bottom:1012.439478px;}
.y5_c02251{bottom:1030.440054px;}
.y2_c02251{bottom:1063.560306px;}
.y4_c02251{bottom:1079.759874px;}
.y1_c02251{bottom:1097.760450px;}
.y10_c02251{bottom:1134.840450px;}
.h3_c02251{height:32.530781px;}
.h1_c02251{height:41.696016px;}
.h2_c02251{height:41.812031px;}
.h4_c02251{height:54.654737px;}
.h0_c02251{height:1263.000000px;}
.w1_c02251{width:892.500000px;}
.w0_c02251{width:892.830000px;}
.x0_c02251{left:0.000000px;}
.xe_c02251{left:117.000000px;}
.x8_c02251{left:440.999856px;}
.x4_c02251{left:445.680576px;}
.xc_c02251{left:451.080000px;}
.x7_c02251{left:455.399604px;}
.x5_c02251{left:461.880144px;}
.x1_c02251{left:463.320000px;}
.xb_c02251{left:483.480360px;}
.x9_c02251{left:492.119496px;}
.x6_c02251{left:493.200576px;}
.xd_c02251{left:506.880360px;}
.x3_c02251{left:511.919892px;}
.x2_c02251{left:526.679604px;}
.xa_c02251{left:569.880036px;}
@media print{
.v0_c02251{vertical-align:0.000000pt;}
.v1_c02251{vertical-align:1.279488pt;}
.lsc_c02251{letter-spacing:-1.064448pt;}
.lsf_c02251{letter-spacing:-0.705408pt;}
.ls17_c02251{letter-spacing:-0.688512pt;}
.ls12_c02251{letter-spacing:-0.654720pt;}
.lsb_c02251{letter-spacing:-0.511104pt;}
.ls18_c02251{letter-spacing:-0.244992pt;}
.ls13_c02251{letter-spacing:-0.240768pt;}
.ls10_c02251{letter-spacing:-0.232320pt;}
.ls7_c02251{letter-spacing:-0.215424pt;}
.ls8_c02251{letter-spacing:-0.211200pt;}
.ls4_c02251{letter-spacing:-0.105600pt;}
.ls16_c02251{letter-spacing:0.000000pt;}
.ls1_c02251{letter-spacing:0.005376pt;}
.ls6_c02251{letter-spacing:0.114048pt;}
.lse_c02251{letter-spacing:0.451968pt;}
.ls15_c02251{letter-spacing:0.456960pt;}
.ls11_c02251{letter-spacing:0.477312pt;}
.lsd_c02251{letter-spacing:0.515328pt;}
.ls14_c02251{letter-spacing:0.528000pt;}
.ls9_c02251{letter-spacing:0.532224pt;}
.ls2_c02251{letter-spacing:0.544896pt;}
.ls0_c02251{letter-spacing:0.578688pt;}
.ls5_c02251{letter-spacing:0.637824pt;}
.ls3_c02251{letter-spacing:0.642048pt;}
.lsa_c02251{letter-spacing:1.077120pt;}
.wsf_c02251{word-spacing:-13.445376pt;}
.ws4_c02251{word-spacing:-11.637120pt;}
.wsd_c02251{word-spacing:-11.088000pt;}
.ws7_c02251{word-spacing:-11.075328pt;}
.ws11_c02251{word-spacing:-11.037312pt;}
.ws2_c02251{word-spacing:-10.348800pt;}
.ws10_c02251{word-spacing:-9.871488pt;}
.ws6_c02251{word-spacing:-9.495552pt;}
.ws1b_c02251{word-spacing:-1.919232pt;}
.ws17_c02251{word-spacing:-0.963072pt;}
.ws14_c02251{word-spacing:-0.899712pt;}
.ws12_c02251{word-spacing:-0.865920pt;}
.ws15_c02251{word-spacing:-0.105600pt;}
.ws18_c02251{word-spacing:-0.088704pt;}
.ws19_c02251{word-spacing:-0.080256pt;}
.ws1a_c02251{word-spacing:-0.076032pt;}
.ws13_c02251{word-spacing:0.000000pt;}
.ws16_c02251{word-spacing:0.384384pt;}
.wsc_c02251{word-spacing:5.892480pt;}
.wsa_c02251{word-spacing:25.855104pt;}
.wse_c02251{word-spacing:29.600256pt;}
.wsb_c02251{word-spacing:30.966144pt;}
.ws9_c02251{word-spacing:32.127744pt;}
.ws1_c02251{word-spacing:33.563904pt;}
.ws0_c02251{word-spacing:33.796224pt;}
.ws3_c02251{word-spacing:34.860672pt;}
.ws5_c02251{word-spacing:35.468928pt;}
.ws8_c02251{word-spacing:37.357056pt;}
._4_c02251{margin-left:-2.656896pt;}
._0_c02251{margin-left:-1.731840pt;}
._2_c02251{width:1.317888pt;}
._b_c02251{width:13.112064pt;}
._9_c02251{width:17.761920pt;}
._a_c02251{width:20.845440pt;}
._8_c02251{width:21.947904pt;}
._6_c02251{width:35.046528pt;}
._5_c02251{width:39.528192pt;}
._7_c02251{width:41.124864pt;}
._1_c02251{width:44.668800pt;}
._3_c02251{width:45.805056pt;}
.fs0_c02251{font-size:42.240000pt;}
.fs1_c02251{font-size:53.760000pt;}
.y0_c02251{bottom:0.000000pt;}
.y1b_c02251{bottom:130.665211pt;}
.y1d_c02251{bottom:165.866875pt;}
.y1c_c02251{bottom:174.507067pt;}
.y1a_c02251{bottom:245.225371pt;}
.y19_c02251{bottom:317.225563pt;}
.y17_c02251{bottom:361.386427pt;}
.y13_c02251{bottom:377.386939pt;}
.y18_c02251{bottom:407.786011pt;}
.y16_c02251{bottom:437.226235pt;}
.y15_c02251{bottom:453.226747pt;}
.y12_c02251{bottom:482.666971pt;}
.y14_c02251{bottom:497.386555pt;}
.y11_c02251{bottom:513.387067pt;}
.y1e_c02251{bottom:546.027067pt;}
.yd_c02251{bottom:579.946523pt;}
.yc_c02251{bottom:593.386235pt;}
.yf_c02251{bottom:628.586875pt;}
.ye_c02251{bottom:637.227067pt;}
.yb_c02251{bottom:707.946395pt;}
.ya_c02251{bottom:766.505819pt;}
.y9_c02251{bottom:779.945531pt;}
.y7_c02251{bottom:823.786427pt;}
.y3_c02251{bottom:839.786939pt;}
.y8_c02251{bottom:870.505979pt;}
.y6_c02251{bottom:899.946203pt;}
.y5_c02251{bottom:915.946715pt;}
.y2_c02251{bottom:945.386939pt;}
.y4_c02251{bottom:959.786555pt;}
.y1_c02251{bottom:975.787067pt;}
.y10_c02251{bottom:1008.747067pt;}
.h3_c02251{height:28.916250pt;}
.h1_c02251{height:37.063125pt;}
.h2_c02251{height:37.166250pt;}
.h4_c02251{height:48.581988pt;}
.h0_c02251{height:1122.666667pt;}
.w1_c02251{width:793.333333pt;}
.w0_c02251{width:793.626667pt;}
.x0_c02251{left:0.000000pt;}
.xe_c02251{left:104.000000pt;}
.x8_c02251{left:391.999872pt;}
.x4_c02251{left:396.160512pt;}
.xc_c02251{left:400.960000pt;}
.x7_c02251{left:404.799648pt;}
.x5_c02251{left:410.560128pt;}
.x1_c02251{left:411.840000pt;}
.xb_c02251{left:429.760320pt;}
.x9_c02251{left:437.439552pt;}
.x6_c02251{left:438.400512pt;}
.xd_c02251{left:450.560320pt;}
.x3_c02251{left:455.039904pt;}
.x2_c02251{left:468.159648pt;}
.xa_c02251{left:506.560032pt;}
}





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

.ir_c02252:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02252{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02252;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02252{font-family:ff1_c02252;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02252;src:url('chunks/assets/font_640a8434398b96391a35b4b3.woff2')format("woff");}.ff2_c02252{font-family:ff2_c02252;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02252;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02252{font-family:ff3_c02252;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02252{vertical-align:0.000000px;}
.v1_c02252{vertical-align:1.439424px;}
.ls18_c02252{letter-spacing:-0.845856px;}
.ls16_c02252{letter-spacing:-0.774576px;}
.lsf_c02252{letter-spacing:-0.736560px;}
.ls17_c02252{letter-spacing:-0.722304px;}
.ls14_c02252{letter-spacing:-0.613008px;}
.ls8_c02252{letter-spacing:-0.574992px;}
.ls19_c02252{letter-spacing:-0.275616px;}
.ls10_c02252{letter-spacing:-0.270864px;}
.ls15_c02252{letter-spacing:-0.266112px;}
.lsd_c02252{letter-spacing:-0.261360px;}
.ls6_c02252{letter-spacing:-0.242352px;}
.ls3_c02252{letter-spacing:-0.118800px;}
.ls13_c02252{letter-spacing:0.000000px;}
.ls0_c02252{letter-spacing:0.006048px;}
.lsc_c02252{letter-spacing:0.038016px;}
.ls5_c02252{letter-spacing:0.128304px;}
.lsb_c02252{letter-spacing:0.508464px;}
.ls12_c02252{letter-spacing:0.514080px;}
.lse_c02252{letter-spacing:0.536976px;}
.lsa_c02252{letter-spacing:0.579744px;}
.ls11_c02252{letter-spacing:0.594000px;}
.ls7_c02252{letter-spacing:0.598752px;}
.ls1_c02252{letter-spacing:0.613008px;}
.ls9_c02252{letter-spacing:0.670032px;}
.ls4_c02252{letter-spacing:0.717552px;}
.ls2_c02252{letter-spacing:0.722304px;}
.sc__c02252{text-shadow:none;}
.sc0_c02252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02252{-webkit-text-stroke:0px transparent;}
.sc0_c02252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02252{word-spacing:-15.126048px;}
.wsb_c02252{word-spacing:-12.474000px;}
.ws8_c02252{word-spacing:-12.459744px;}
.ws4_c02252{word-spacing:-11.637648px;}
.wse_c02252{word-spacing:-11.266992px;}
.wsf_c02252{word-spacing:-11.105424px;}
.ws18_c02252{word-spacing:-2.159136px;}
.ws13_c02252{word-spacing:-1.031184px;}
.ws10_c02252{word-spacing:-0.974160px;}
.ws14_c02252{word-spacing:-0.399168px;}
.ws12_c02252{word-spacing:-0.118800px;}
.ws15_c02252{word-spacing:-0.099792px;}
.ws19_c02252{word-spacing:-0.095040px;}
.ws16_c02252{word-spacing:-0.090288px;}
.ws17_c02252{word-spacing:-0.085536px;}
.ws11_c02252{word-spacing:0.000000px;}
.ws1a_c02252{word-spacing:0.361152px;}
.ws1b_c02252{word-spacing:0.484704px;}
.ws2_c02252{word-spacing:1.330560px;}
.wsa_c02252{word-spacing:6.629040px;}
.wsc_c02252{word-spacing:33.300288px;}
.ws9_c02252{word-spacing:34.836912px;}
.ws6_c02252{word-spacing:36.742464px;}
.ws1_c02252{word-spacing:37.759392px;}
.ws0_c02252{word-spacing:38.020752px;}
.ws3_c02252{word-spacing:39.218256px;}
.ws5_c02252{word-spacing:39.902544px;}
.ws7_c02252{word-spacing:42.026688px;}
._0_c02252{margin-left:-1.948320px;}
._2_c02252{width:1.482624px;}
._9_c02252{width:2.509056px;}
._4_c02252{width:4.785264px;}
._8_c02252{width:14.751072px;}
._6_c02252{width:19.982160px;}
._7_c02252{width:23.451120px;}
._5_c02252{width:24.691392px;}
._1_c02252{width:50.252400px;}
._3_c02252{width:51.530688px;}
.fc0_c02252{color:rgb(0,0,0);}
.fs0_c02252{font-size:47.520000px;}
.fs1_c02252{font-size:60.480000px;}
.y0_c02252{bottom:0.000000px;}
.y1b_c02252{bottom:131.878686px;}
.y1a_c02252{bottom:146.998362px;}
.y1d_c02252{bottom:186.600234px;}
.y1c_c02252{bottom:196.320450px;}
.y19_c02252{bottom:275.878542px;}
.y18_c02252{bottom:356.878758px;}
.y16_c02252{bottom:406.559730px;}
.y12_c02252{bottom:424.560306px;}
.y17_c02252{bottom:458.759262px;}
.y15_c02252{bottom:491.879514px;}
.y14_c02252{bottom:509.880090px;}
.y11_c02252{bottom:543.000342px;}
.y13_c02252{bottom:559.559874px;}
.y10_c02252{bottom:577.560450px;}
.y1e_c02252{bottom:614.280450px;}
.yc_c02252{bottom:652.438650px;}
.yb_c02252{bottom:667.558326px;}
.ye_c02252{bottom:707.160234px;}
.yd_c02252{bottom:716.880450px;}
.ya_c02252{bottom:796.438506px;}
.y9_c02252{bottom:877.438722px;}
.y7_c02252{bottom:926.759730px;}
.y3_c02252{bottom:944.760306px;}
.y8_c02252{bottom:979.319226px;}
.y6_c02252{bottom:1012.439478px;}
.y5_c02252{bottom:1030.440054px;}
.y2_c02252{bottom:1063.560306px;}
.y4_c02252{bottom:1079.759874px;}
.y1_c02252{bottom:1097.760450px;}
.yf_c02252{bottom:1134.840450px;}
.h3_c02252{height:32.530781px;}
.h1_c02252{height:41.696016px;}
.h2_c02252{height:41.812031px;}
.h4_c02252{height:54.654737px;}
.h0_c02252{height:1263.000000px;}
.w1_c02252{width:892.500000px;}
.w0_c02252{width:892.830000px;}
.x0_c02252{left:0.000000px;}
.xe_c02252{left:117.000000px;}
.x8_c02252{left:440.999856px;}
.x4_c02252{left:445.680576px;}
.xc_c02252{left:451.080000px;}
.x7_c02252{left:455.399604px;}
.x5_c02252{left:461.880144px;}
.x1_c02252{left:463.320000px;}
.xa_c02252{left:483.480360px;}
.x9_c02252{left:492.119496px;}
.x6_c02252{left:493.200576px;}
.xd_c02252{left:506.880360px;}
.x3_c02252{left:511.919892px;}
.x2_c02252{left:526.679604px;}
.xb_c02252{left:569.880036px;}
@media print{
.v0_c02252{vertical-align:0.000000pt;}
.v1_c02252{vertical-align:1.279488pt;}
.ls18_c02252{letter-spacing:-0.751872pt;}
.ls16_c02252{letter-spacing:-0.688512pt;}
.lsf_c02252{letter-spacing:-0.654720pt;}
.ls17_c02252{letter-spacing:-0.642048pt;}
.ls14_c02252{letter-spacing:-0.544896pt;}
.ls8_c02252{letter-spacing:-0.511104pt;}
.ls19_c02252{letter-spacing:-0.244992pt;}
.ls10_c02252{letter-spacing:-0.240768pt;}
.ls15_c02252{letter-spacing:-0.236544pt;}
.lsd_c02252{letter-spacing:-0.232320pt;}
.ls6_c02252{letter-spacing:-0.215424pt;}
.ls3_c02252{letter-spacing:-0.105600pt;}
.ls13_c02252{letter-spacing:0.000000pt;}
.ls0_c02252{letter-spacing:0.005376pt;}
.lsc_c02252{letter-spacing:0.033792pt;}
.ls5_c02252{letter-spacing:0.114048pt;}
.lsb_c02252{letter-spacing:0.451968pt;}
.ls12_c02252{letter-spacing:0.456960pt;}
.lse_c02252{letter-spacing:0.477312pt;}
.lsa_c02252{letter-spacing:0.515328pt;}
.ls11_c02252{letter-spacing:0.528000pt;}
.ls7_c02252{letter-spacing:0.532224pt;}
.ls1_c02252{letter-spacing:0.544896pt;}
.ls9_c02252{letter-spacing:0.595584pt;}
.ls4_c02252{letter-spacing:0.637824pt;}
.ls2_c02252{letter-spacing:0.642048pt;}
.wsd_c02252{word-spacing:-13.445376pt;}
.wsb_c02252{word-spacing:-11.088000pt;}
.ws8_c02252{word-spacing:-11.075328pt;}
.ws4_c02252{word-spacing:-10.344576pt;}
.wse_c02252{word-spacing:-10.015104pt;}
.wsf_c02252{word-spacing:-9.871488pt;}
.ws18_c02252{word-spacing:-1.919232pt;}
.ws13_c02252{word-spacing:-0.916608pt;}
.ws10_c02252{word-spacing:-0.865920pt;}
.ws14_c02252{word-spacing:-0.354816pt;}
.ws12_c02252{word-spacing:-0.105600pt;}
.ws15_c02252{word-spacing:-0.088704pt;}
.ws19_c02252{word-spacing:-0.084480pt;}
.ws16_c02252{word-spacing:-0.080256pt;}
.ws17_c02252{word-spacing:-0.076032pt;}
.ws11_c02252{word-spacing:0.000000pt;}
.ws1a_c02252{word-spacing:0.321024pt;}
.ws1b_c02252{word-spacing:0.430848pt;}
.ws2_c02252{word-spacing:1.182720pt;}
.wsa_c02252{word-spacing:5.892480pt;}
.wsc_c02252{word-spacing:29.600256pt;}
.ws9_c02252{word-spacing:30.966144pt;}
.ws6_c02252{word-spacing:32.659968pt;}
.ws1_c02252{word-spacing:33.563904pt;}
.ws0_c02252{word-spacing:33.796224pt;}
.ws3_c02252{word-spacing:34.860672pt;}
.ws5_c02252{word-spacing:35.468928pt;}
.ws7_c02252{word-spacing:37.357056pt;}
._0_c02252{margin-left:-1.731840pt;}
._2_c02252{width:1.317888pt;}
._9_c02252{width:2.230272pt;}
._4_c02252{width:4.253568pt;}
._8_c02252{width:13.112064pt;}
._6_c02252{width:17.761920pt;}
._7_c02252{width:20.845440pt;}
._5_c02252{width:21.947904pt;}
._1_c02252{width:44.668800pt;}
._3_c02252{width:45.805056pt;}
.fs0_c02252{font-size:42.240000pt;}
.fs1_c02252{font-size:53.760000pt;}
.y0_c02252{bottom:0.000000pt;}
.y1b_c02252{bottom:117.225499pt;}
.y1a_c02252{bottom:130.665211pt;}
.y1d_c02252{bottom:165.866875pt;}
.y1c_c02252{bottom:174.507067pt;}
.y19_c02252{bottom:245.225371pt;}
.y18_c02252{bottom:317.225563pt;}
.y16_c02252{bottom:361.386427pt;}
.y12_c02252{bottom:377.386939pt;}
.y17_c02252{bottom:407.786011pt;}
.y15_c02252{bottom:437.226235pt;}
.y14_c02252{bottom:453.226747pt;}
.y11_c02252{bottom:482.666971pt;}
.y13_c02252{bottom:497.386555pt;}
.y10_c02252{bottom:513.387067pt;}
.y1e_c02252{bottom:546.027067pt;}
.yc_c02252{bottom:579.945467pt;}
.yb_c02252{bottom:593.385179pt;}
.ye_c02252{bottom:628.586875pt;}
.yd_c02252{bottom:637.227067pt;}
.ya_c02252{bottom:707.945339pt;}
.y9_c02252{bottom:779.945531pt;}
.y7_c02252{bottom:823.786427pt;}
.y3_c02252{bottom:839.786939pt;}
.y8_c02252{bottom:870.505979pt;}
.y6_c02252{bottom:899.946203pt;}
.y5_c02252{bottom:915.946715pt;}
.y2_c02252{bottom:945.386939pt;}
.y4_c02252{bottom:959.786555pt;}
.y1_c02252{bottom:975.787067pt;}
.yf_c02252{bottom:1008.747067pt;}
.h3_c02252{height:28.916250pt;}
.h1_c02252{height:37.063125pt;}
.h2_c02252{height:37.166250pt;}
.h4_c02252{height:48.581988pt;}
.h0_c02252{height:1122.666667pt;}
.w1_c02252{width:793.333333pt;}
.w0_c02252{width:793.626667pt;}
.x0_c02252{left:0.000000pt;}
.xe_c02252{left:104.000000pt;}
.x8_c02252{left:391.999872pt;}
.x4_c02252{left:396.160512pt;}
.xc_c02252{left:400.960000pt;}
.x7_c02252{left:404.799648pt;}
.x5_c02252{left:410.560128pt;}
.x1_c02252{left:411.840000pt;}
.xa_c02252{left:429.760320pt;}
.x9_c02252{left:437.439552pt;}
.x6_c02252{left:438.400512pt;}
.xd_c02252{left:450.560320pt;}
.x3_c02252{left:455.039904pt;}
.x2_c02252{left:468.159648pt;}
.xb_c02252{left:506.560032pt;}
}





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

.ir_c02253:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02253{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02253;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02253{font-family:ff1_c02253;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02253;src:url('chunks/assets/font_fb3db0bdca431512c01750ab.woff2')format("woff");}.ff2_c02253{font-family:ff2_c02253;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02253;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02253{font-family:ff3_c02253;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02253{vertical-align:0.000000px;}
.v1_c02253{vertical-align:1.439424px;}
.lse_c02253{letter-spacing:-1.197504px;}
.ls9_c02253{letter-spacing:-0.784080px;}
.lsa_c02253{letter-spacing:-0.574992px;}
.lsb_c02253{letter-spacing:-0.361152px;}
.ls11_c02253{letter-spacing:-0.275616px;}
.ls15_c02253{letter-spacing:-0.266112px;}
.lsf_c02253{letter-spacing:-0.261360px;}
.ls6_c02253{letter-spacing:-0.242352px;}
.ls3_c02253{letter-spacing:-0.118800px;}
.ls14_c02253{letter-spacing:0.000000px;}
.ls0_c02253{letter-spacing:0.006048px;}
.ls5_c02253{letter-spacing:0.128304px;}
.ls7_c02253{letter-spacing:0.242352px;}
.lsd_c02253{letter-spacing:0.508464px;}
.ls13_c02253{letter-spacing:0.514080px;}
.ls10_c02253{letter-spacing:0.536976px;}
.lsc_c02253{letter-spacing:0.579744px;}
.ls12_c02253{letter-spacing:0.594000px;}
.ls8_c02253{letter-spacing:0.598752px;}
.ls1_c02253{letter-spacing:0.613008px;}
.ls4_c02253{letter-spacing:0.717552px;}
.ls2_c02253{letter-spacing:0.722304px;}
.sc__c02253{text-shadow:none;}
.sc0_c02253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02253{-webkit-text-stroke:0px transparent;}
.sc0_c02253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02253{word-spacing:-15.126048px;}
.ws9_c02253{word-spacing:-12.474000px;}
.ws7_c02253{word-spacing:-12.459744px;}
.ws8_c02253{word-spacing:-12.416976px;}
.ws2_c02253{word-spacing:-12.122352px;}
.ws13_c02253{word-spacing:-2.159136px;}
.wsc_c02253{word-spacing:-0.974160px;}
.wse_c02253{word-spacing:-0.118800px;}
.ws11_c02253{word-spacing:-0.099792px;}
.ws14_c02253{word-spacing:-0.095040px;}
.ws12_c02253{word-spacing:-0.085536px;}
.wsd_c02253{word-spacing:0.000000px;}
.wsf_c02253{word-spacing:0.422928px;}
.ws10_c02253{word-spacing:0.836352px;}
.wsa_c02253{word-spacing:33.300288px;}
.ws5_c02253{word-spacing:36.742464px;}
.ws1_c02253{word-spacing:37.759392px;}
.ws0_c02253{word-spacing:38.020752px;}
.ws3_c02253{word-spacing:39.218256px;}
.ws4_c02253{word-spacing:39.902544px;}
.ws6_c02253{word-spacing:42.026688px;}
._0_c02253{margin-left:-1.948320px;}
._2_c02253{width:1.482624px;}
._4_c02253{width:3.483216px;}
._5_c02253{width:14.751072px;}
._1_c02253{width:50.252400px;}
._3_c02253{width:51.530688px;}
.fc0_c02253{color:rgb(0,0,0);}
.fs0_c02253{font-size:47.520000px;}
.fs1_c02253{font-size:60.480000px;}
.y0_c02253{bottom:0.000000px;}
.y19_c02253{bottom:146.998362px;}
.y1b_c02253{bottom:186.600234px;}
.y1a_c02253{bottom:196.320450px;}
.y18_c02253{bottom:275.878542px;}
.y17_c02253{bottom:356.878758px;}
.y15_c02253{bottom:406.559730px;}
.y11_c02253{bottom:424.560306px;}
.y16_c02253{bottom:458.759262px;}
.y14_c02253{bottom:491.879514px;}
.y13_c02253{bottom:509.880090px;}
.y10_c02253{bottom:543.000342px;}
.y12_c02253{bottom:559.559874px;}
.yf_c02253{bottom:577.560450px;}
.y1c_c02253{bottom:614.280450px;}
.yb_c02253{bottom:667.558326px;}
.yd_c02253{bottom:707.160234px;}
.yc_c02253{bottom:716.880450px;}
.ya_c02253{bottom:796.438506px;}
.y9_c02253{bottom:877.438722px;}
.y7_c02253{bottom:926.759730px;}
.y3_c02253{bottom:944.760306px;}
.y8_c02253{bottom:979.319226px;}
.y6_c02253{bottom:1012.439478px;}
.y5_c02253{bottom:1030.440054px;}
.y2_c02253{bottom:1063.560306px;}
.y4_c02253{bottom:1079.759874px;}
.y1_c02253{bottom:1097.760450px;}
.ye_c02253{bottom:1134.840450px;}
.h3_c02253{height:32.530781px;}
.h1_c02253{height:41.696016px;}
.h2_c02253{height:41.812031px;}
.h4_c02253{height:54.654737px;}
.h0_c02253{height:1263.000000px;}
.w1_c02253{width:892.500000px;}
.w0_c02253{width:892.830000px;}
.x0_c02253{left:0.000000px;}
.xd_c02253{left:117.000000px;}
.x8_c02253{left:440.999856px;}
.x4_c02253{left:445.680576px;}
.xb_c02253{left:451.080000px;}
.x7_c02253{left:455.399604px;}
.x5_c02253{left:461.880144px;}
.x1_c02253{left:463.320000px;}
.xa_c02253{left:483.480360px;}
.x9_c02253{left:492.119496px;}
.x6_c02253{left:493.200576px;}
.xc_c02253{left:506.880360px;}
.x3_c02253{left:511.919892px;}
.x2_c02253{left:526.679604px;}
@media print{
.v0_c02253{vertical-align:0.000000pt;}
.v1_c02253{vertical-align:1.279488pt;}
.lse_c02253{letter-spacing:-1.064448pt;}
.ls9_c02253{letter-spacing:-0.696960pt;}
.lsa_c02253{letter-spacing:-0.511104pt;}
.lsb_c02253{letter-spacing:-0.321024pt;}
.ls11_c02253{letter-spacing:-0.244992pt;}
.ls15_c02253{letter-spacing:-0.236544pt;}
.lsf_c02253{letter-spacing:-0.232320pt;}
.ls6_c02253{letter-spacing:-0.215424pt;}
.ls3_c02253{letter-spacing:-0.105600pt;}
.ls14_c02253{letter-spacing:0.000000pt;}
.ls0_c02253{letter-spacing:0.005376pt;}
.ls5_c02253{letter-spacing:0.114048pt;}
.ls7_c02253{letter-spacing:0.215424pt;}
.lsd_c02253{letter-spacing:0.451968pt;}
.ls13_c02253{letter-spacing:0.456960pt;}
.ls10_c02253{letter-spacing:0.477312pt;}
.lsc_c02253{letter-spacing:0.515328pt;}
.ls12_c02253{letter-spacing:0.528000pt;}
.ls8_c02253{letter-spacing:0.532224pt;}
.ls1_c02253{letter-spacing:0.544896pt;}
.ls4_c02253{letter-spacing:0.637824pt;}
.ls2_c02253{letter-spacing:0.642048pt;}
.wsb_c02253{word-spacing:-13.445376pt;}
.ws9_c02253{word-spacing:-11.088000pt;}
.ws7_c02253{word-spacing:-11.075328pt;}
.ws8_c02253{word-spacing:-11.037312pt;}
.ws2_c02253{word-spacing:-10.775424pt;}
.ws13_c02253{word-spacing:-1.919232pt;}
.wsc_c02253{word-spacing:-0.865920pt;}
.wse_c02253{word-spacing:-0.105600pt;}
.ws11_c02253{word-spacing:-0.088704pt;}
.ws14_c02253{word-spacing:-0.084480pt;}
.ws12_c02253{word-spacing:-0.076032pt;}
.wsd_c02253{word-spacing:0.000000pt;}
.wsf_c02253{word-spacing:0.375936pt;}
.ws10_c02253{word-spacing:0.743424pt;}
.wsa_c02253{word-spacing:29.600256pt;}
.ws5_c02253{word-spacing:32.659968pt;}
.ws1_c02253{word-spacing:33.563904pt;}
.ws0_c02253{word-spacing:33.796224pt;}
.ws3_c02253{word-spacing:34.860672pt;}
.ws4_c02253{word-spacing:35.468928pt;}
.ws6_c02253{word-spacing:37.357056pt;}
._0_c02253{margin-left:-1.731840pt;}
._2_c02253{width:1.317888pt;}
._4_c02253{width:3.096192pt;}
._5_c02253{width:13.112064pt;}
._1_c02253{width:44.668800pt;}
._3_c02253{width:45.805056pt;}
.fs0_c02253{font-size:42.240000pt;}
.fs1_c02253{font-size:53.760000pt;}
.y0_c02253{bottom:0.000000pt;}
.y19_c02253{bottom:130.665211pt;}
.y1b_c02253{bottom:165.866875pt;}
.y1a_c02253{bottom:174.507067pt;}
.y18_c02253{bottom:245.225371pt;}
.y17_c02253{bottom:317.225563pt;}
.y15_c02253{bottom:361.386427pt;}
.y11_c02253{bottom:377.386939pt;}
.y16_c02253{bottom:407.786011pt;}
.y14_c02253{bottom:437.226235pt;}
.y13_c02253{bottom:453.226747pt;}
.y10_c02253{bottom:482.666971pt;}
.y12_c02253{bottom:497.386555pt;}
.yf_c02253{bottom:513.387067pt;}
.y1c_c02253{bottom:546.027067pt;}
.yb_c02253{bottom:593.385179pt;}
.yd_c02253{bottom:628.586875pt;}
.yc_c02253{bottom:637.227067pt;}
.ya_c02253{bottom:707.945339pt;}
.y9_c02253{bottom:779.945531pt;}
.y7_c02253{bottom:823.786427pt;}
.y3_c02253{bottom:839.786939pt;}
.y8_c02253{bottom:870.505979pt;}
.y6_c02253{bottom:899.946203pt;}
.y5_c02253{bottom:915.946715pt;}
.y2_c02253{bottom:945.386939pt;}
.y4_c02253{bottom:959.786555pt;}
.y1_c02253{bottom:975.787067pt;}
.ye_c02253{bottom:1008.747067pt;}
.h3_c02253{height:28.916250pt;}
.h1_c02253{height:37.063125pt;}
.h2_c02253{height:37.166250pt;}
.h4_c02253{height:48.581988pt;}
.h0_c02253{height:1122.666667pt;}
.w1_c02253{width:793.333333pt;}
.w0_c02253{width:793.626667pt;}
.x0_c02253{left:0.000000pt;}
.xd_c02253{left:104.000000pt;}
.x8_c02253{left:391.999872pt;}
.x4_c02253{left:396.160512pt;}
.xb_c02253{left:400.960000pt;}
.x7_c02253{left:404.799648pt;}
.x5_c02253{left:410.560128pt;}
.x1_c02253{left:411.840000pt;}
.xa_c02253{left:429.760320pt;}
.x9_c02253{left:437.439552pt;}
.x6_c02253{left:438.400512pt;}
.xc_c02253{left:450.560320pt;}
.x3_c02253{left:455.039904pt;}
.x2_c02253{left:468.159648pt;}
}





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

.ir_c02254:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02254{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02254;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02254{font-family:ff1_c02254;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02254;src:url('chunks/assets/font_f4d7eeb324fa69fb38cab132.woff2')format("woff");}.ff2_c02254{font-family:ff2_c02254;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02254;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02254{font-family:ff3_c02254;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02254{vertical-align:0.000000px;}
.v1_c02254{vertical-align:1.439424px;}
.ls16_c02254{letter-spacing:-0.793584px;}
.ls15_c02254{letter-spacing:-0.774576px;}
.ls17_c02254{letter-spacing:-0.736560px;}
.ls8_c02254{letter-spacing:-0.613008px;}
.lsb_c02254{letter-spacing:-0.574992px;}
.lse_c02254{letter-spacing:-0.427680px;}
.ls11_c02254{letter-spacing:-0.275616px;}
.ls18_c02254{letter-spacing:-0.270864px;}
.lsa_c02254{letter-spacing:-0.266112px;}
.lsf_c02254{letter-spacing:-0.261360px;}
.ls7_c02254{letter-spacing:-0.242352px;}
.ls5_c02254{letter-spacing:-0.118800px;}
.ls14_c02254{letter-spacing:0.000000px;}
.ls1_c02254{letter-spacing:0.006048px;}
.ls6_c02254{letter-spacing:0.128304px;}
.lsd_c02254{letter-spacing:0.508464px;}
.ls13_c02254{letter-spacing:0.514080px;}
.ls10_c02254{letter-spacing:0.536976px;}
.lsc_c02254{letter-spacing:0.579744px;}
.ls12_c02254{letter-spacing:0.594000px;}
.ls9_c02254{letter-spacing:0.598752px;}
.ls3_c02254{letter-spacing:0.613008px;}
.ls2_c02254{letter-spacing:0.651024px;}
.ls0_c02254{letter-spacing:0.717552px;}
.ls4_c02254{letter-spacing:0.722304px;}
.sc__c02254{text-shadow:none;}
.sc0_c02254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02254{-webkit-text-stroke:0px transparent;}
.sc0_c02254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02254{word-spacing:-15.126048px;}
.wsa_c02254{word-spacing:-12.474000px;}
.wse_c02254{word-spacing:-12.459744px;}
.ws9_c02254{word-spacing:-12.416976px;}
.ws2_c02254{word-spacing:-11.266992px;}
.wsd_c02254{word-spacing:-11.105424px;}
.ws1a_c02254{word-spacing:-2.159136px;}
.ws17_c02254{word-spacing:-1.083456px;}
.ws15_c02254{word-spacing:-1.078704px;}
.ws1b_c02254{word-spacing:-1.012176px;}
.ws11_c02254{word-spacing:-0.974160px;}
.ws13_c02254{word-spacing:-0.118800px;}
.ws18_c02254{word-spacing:-0.099792px;}
.ws14_c02254{word-spacing:-0.095040px;}
.ws1d_c02254{word-spacing:-0.090288px;}
.ws19_c02254{word-spacing:-0.085536px;}
.ws12_c02254{word-spacing:0.000000px;}
.ws16_c02254{word-spacing:0.066528px;}
.ws1c_c02254{word-spacing:0.432432px;}
.ws10_c02254{word-spacing:6.629040px;}
.ws8_c02254{word-spacing:29.086992px;}
.wsb_c02254{word-spacing:33.300288px;}
.wsf_c02254{word-spacing:34.836912px;}
.ws7_c02254{word-spacing:36.143712px;}
.ws5_c02254{word-spacing:36.742464px;}
.ws1_c02254{word-spacing:37.759392px;}
.ws0_c02254{word-spacing:38.020752px;}
.ws3_c02254{word-spacing:39.218256px;}
.ws4_c02254{word-spacing:39.902544px;}
.ws6_c02254{word-spacing:42.026688px;}
._0_c02254{margin-left:-1.948320px;}
._2_c02254{width:1.482624px;}
._7_c02254{width:14.751072px;}
._9_c02254{width:19.982160px;}
._a_c02254{width:23.451120px;}
._8_c02254{width:24.691392px;}
._5_c02254{width:39.427344px;}
._4_c02254{width:43.428528px;}
._6_c02254{width:45.224784px;}
._1_c02254{width:50.252400px;}
._3_c02254{width:51.530688px;}
.fc0_c02254{color:rgb(0,0,0);}
.fs0_c02254{font-size:47.520000px;}
.fs1_c02254{font-size:60.480000px;}
.y0_c02254{bottom:0.000000px;}
.y1c_c02254{bottom:131.878686px;}
.y1b_c02254{bottom:146.998362px;}
.y1e_c02254{bottom:186.600234px;}
.y1d_c02254{bottom:196.320450px;}
.y1a_c02254{bottom:275.878542px;}
.y19_c02254{bottom:341.759082px;}
.y18_c02254{bottom:356.878758px;}
.y16_c02254{bottom:406.559730px;}
.y12_c02254{bottom:424.560306px;}
.y17_c02254{bottom:458.759262px;}
.y15_c02254{bottom:491.879514px;}
.y14_c02254{bottom:509.880090px;}
.y11_c02254{bottom:543.000342px;}
.y13_c02254{bottom:559.559874px;}
.y10_c02254{bottom:577.560450px;}
.y1f_c02254{bottom:614.280450px;}
.yc_c02254{bottom:667.559514px;}
.ye_c02254{bottom:707.160234px;}
.yd_c02254{bottom:716.880450px;}
.yb_c02254{bottom:796.439694px;}
.ya_c02254{bottom:862.319046px;}
.y9_c02254{bottom:877.438722px;}
.y7_c02254{bottom:926.759730px;}
.y3_c02254{bottom:944.760306px;}
.y8_c02254{bottom:979.319226px;}
.y6_c02254{bottom:1012.439478px;}
.y5_c02254{bottom:1030.440054px;}
.y2_c02254{bottom:1063.560306px;}
.y4_c02254{bottom:1079.759874px;}
.y1_c02254{bottom:1097.760450px;}
.yf_c02254{bottom:1134.840450px;}
.h3_c02254{height:32.530781px;}
.h1_c02254{height:41.696016px;}
.h2_c02254{height:41.812031px;}
.h4_c02254{height:54.654737px;}
.h0_c02254{height:1263.000000px;}
.w1_c02254{width:892.500000px;}
.w0_c02254{width:892.830000px;}
.x0_c02254{left:0.000000px;}
.xe_c02254{left:117.000000px;}
.x8_c02254{left:440.999856px;}
.x4_c02254{left:445.680576px;}
.xc_c02254{left:451.080000px;}
.x7_c02254{left:455.399604px;}
.x5_c02254{left:461.880144px;}
.x1_c02254{left:463.320000px;}
.xb_c02254{left:483.480360px;}
.x9_c02254{left:492.119496px;}
.x6_c02254{left:493.200576px;}
.xd_c02254{left:506.880360px;}
.x3_c02254{left:511.919892px;}
.x2_c02254{left:526.679604px;}
.xa_c02254{left:569.880036px;}
@media print{
.v0_c02254{vertical-align:0.000000pt;}
.v1_c02254{vertical-align:1.279488pt;}
.ls16_c02254{letter-spacing:-0.705408pt;}
.ls15_c02254{letter-spacing:-0.688512pt;}
.ls17_c02254{letter-spacing:-0.654720pt;}
.ls8_c02254{letter-spacing:-0.544896pt;}
.lsb_c02254{letter-spacing:-0.511104pt;}
.lse_c02254{letter-spacing:-0.380160pt;}
.ls11_c02254{letter-spacing:-0.244992pt;}
.ls18_c02254{letter-spacing:-0.240768pt;}
.lsa_c02254{letter-spacing:-0.236544pt;}
.lsf_c02254{letter-spacing:-0.232320pt;}
.ls7_c02254{letter-spacing:-0.215424pt;}
.ls5_c02254{letter-spacing:-0.105600pt;}
.ls14_c02254{letter-spacing:0.000000pt;}
.ls1_c02254{letter-spacing:0.005376pt;}
.ls6_c02254{letter-spacing:0.114048pt;}
.lsd_c02254{letter-spacing:0.451968pt;}
.ls13_c02254{letter-spacing:0.456960pt;}
.ls10_c02254{letter-spacing:0.477312pt;}
.lsc_c02254{letter-spacing:0.515328pt;}
.ls12_c02254{letter-spacing:0.528000pt;}
.ls9_c02254{letter-spacing:0.532224pt;}
.ls3_c02254{letter-spacing:0.544896pt;}
.ls2_c02254{letter-spacing:0.578688pt;}
.ls0_c02254{letter-spacing:0.637824pt;}
.ls4_c02254{letter-spacing:0.642048pt;}
.wsc_c02254{word-spacing:-13.445376pt;}
.wsa_c02254{word-spacing:-11.088000pt;}
.wse_c02254{word-spacing:-11.075328pt;}
.ws9_c02254{word-spacing:-11.037312pt;}
.ws2_c02254{word-spacing:-10.015104pt;}
.wsd_c02254{word-spacing:-9.871488pt;}
.ws1a_c02254{word-spacing:-1.919232pt;}
.ws17_c02254{word-spacing:-0.963072pt;}
.ws15_c02254{word-spacing:-0.958848pt;}
.ws1b_c02254{word-spacing:-0.899712pt;}
.ws11_c02254{word-spacing:-0.865920pt;}
.ws13_c02254{word-spacing:-0.105600pt;}
.ws18_c02254{word-spacing:-0.088704pt;}
.ws14_c02254{word-spacing:-0.084480pt;}
.ws1d_c02254{word-spacing:-0.080256pt;}
.ws19_c02254{word-spacing:-0.076032pt;}
.ws12_c02254{word-spacing:0.000000pt;}
.ws16_c02254{word-spacing:0.059136pt;}
.ws1c_c02254{word-spacing:0.384384pt;}
.ws10_c02254{word-spacing:5.892480pt;}
.ws8_c02254{word-spacing:25.855104pt;}
.wsb_c02254{word-spacing:29.600256pt;}
.wsf_c02254{word-spacing:30.966144pt;}
.ws7_c02254{word-spacing:32.127744pt;}
.ws5_c02254{word-spacing:32.659968pt;}
.ws1_c02254{word-spacing:33.563904pt;}
.ws0_c02254{word-spacing:33.796224pt;}
.ws3_c02254{word-spacing:34.860672pt;}
.ws4_c02254{word-spacing:35.468928pt;}
.ws6_c02254{word-spacing:37.357056pt;}
._0_c02254{margin-left:-1.731840pt;}
._2_c02254{width:1.317888pt;}
._7_c02254{width:13.112064pt;}
._9_c02254{width:17.761920pt;}
._a_c02254{width:20.845440pt;}
._8_c02254{width:21.947904pt;}
._5_c02254{width:35.046528pt;}
._4_c02254{width:38.603136pt;}
._6_c02254{width:40.199808pt;}
._1_c02254{width:44.668800pt;}
._3_c02254{width:45.805056pt;}
.fs0_c02254{font-size:42.240000pt;}
.fs1_c02254{font-size:53.760000pt;}
.y0_c02254{bottom:0.000000pt;}
.y1c_c02254{bottom:117.225499pt;}
.y1b_c02254{bottom:130.665211pt;}
.y1e_c02254{bottom:165.866875pt;}
.y1d_c02254{bottom:174.507067pt;}
.y1a_c02254{bottom:245.225371pt;}
.y19_c02254{bottom:303.785851pt;}
.y18_c02254{bottom:317.225563pt;}
.y16_c02254{bottom:361.386427pt;}
.y12_c02254{bottom:377.386939pt;}
.y17_c02254{bottom:407.786011pt;}
.y15_c02254{bottom:437.226235pt;}
.y14_c02254{bottom:453.226747pt;}
.y11_c02254{bottom:482.666971pt;}
.y13_c02254{bottom:497.386555pt;}
.y10_c02254{bottom:513.387067pt;}
.y1f_c02254{bottom:546.027067pt;}
.yc_c02254{bottom:593.386235pt;}
.ye_c02254{bottom:628.586875pt;}
.yd_c02254{bottom:637.227067pt;}
.yb_c02254{bottom:707.946395pt;}
.ya_c02254{bottom:766.505819pt;}
.y9_c02254{bottom:779.945531pt;}
.y7_c02254{bottom:823.786427pt;}
.y3_c02254{bottom:839.786939pt;}
.y8_c02254{bottom:870.505979pt;}
.y6_c02254{bottom:899.946203pt;}
.y5_c02254{bottom:915.946715pt;}
.y2_c02254{bottom:945.386939pt;}
.y4_c02254{bottom:959.786555pt;}
.y1_c02254{bottom:975.787067pt;}
.yf_c02254{bottom:1008.747067pt;}
.h3_c02254{height:28.916250pt;}
.h1_c02254{height:37.063125pt;}
.h2_c02254{height:37.166250pt;}
.h4_c02254{height:48.581988pt;}
.h0_c02254{height:1122.666667pt;}
.w1_c02254{width:793.333333pt;}
.w0_c02254{width:793.626667pt;}
.x0_c02254{left:0.000000pt;}
.xe_c02254{left:104.000000pt;}
.x8_c02254{left:391.999872pt;}
.x4_c02254{left:396.160512pt;}
.xc_c02254{left:400.960000pt;}
.x7_c02254{left:404.799648pt;}
.x5_c02254{left:410.560128pt;}
.x1_c02254{left:411.840000pt;}
.xb_c02254{left:429.760320pt;}
.x9_c02254{left:437.439552pt;}
.x6_c02254{left:438.400512pt;}
.xd_c02254{left:450.560320pt;}
.x3_c02254{left:455.039904pt;}
.x2_c02254{left:468.159648pt;}
.xa_c02254{left:506.560032pt;}
}





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

.ir_c02255:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02255{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02255;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02255{font-family:ff1_c02255;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02255;src:url('chunks/assets/font_e5eb19e1ccda7f7ecfc5ca2f.woff2')format("woff");}.ff2_c02255{font-family:ff2_c02255;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02255;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02255{font-family:ff3_c02255;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02255{vertical-align:0.000000px;}
.v1_c02255{vertical-align:1.439424px;}
.ls18_c02255{letter-spacing:-1.197504px;}
.ls17_c02255{letter-spacing:-0.850608px;}
.lsa_c02255{letter-spacing:-0.826848px;}
.lsf_c02255{letter-spacing:-0.793584px;}
.lsc_c02255{letter-spacing:-0.774576px;}
.ls12_c02255{letter-spacing:-0.736560px;}
.lsb_c02255{letter-spacing:-0.574992px;}
.ls13_c02255{letter-spacing:-0.270864px;}
.ls10_c02255{letter-spacing:-0.261360px;}
.ls7_c02255{letter-spacing:-0.242352px;}
.ls8_c02255{letter-spacing:-0.237600px;}
.ls4_c02255{letter-spacing:-0.118800px;}
.ls16_c02255{letter-spacing:0.000000px;}
.ls1_c02255{letter-spacing:0.006048px;}
.ls6_c02255{letter-spacing:0.128304px;}
.lse_c02255{letter-spacing:0.508464px;}
.ls15_c02255{letter-spacing:0.514080px;}
.ls11_c02255{letter-spacing:0.536976px;}
.lsd_c02255{letter-spacing:0.579744px;}
.ls14_c02255{letter-spacing:0.594000px;}
.ls9_c02255{letter-spacing:0.598752px;}
.ls2_c02255{letter-spacing:0.613008px;}
.ls0_c02255{letter-spacing:0.651024px;}
.ls5_c02255{letter-spacing:0.717552px;}
.ls3_c02255{letter-spacing:0.722304px;}
.sc__c02255{text-shadow:none;}
.sc0_c02255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02255{-webkit-text-stroke:0px transparent;}
.sc0_c02255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02255{word-spacing:-15.126048px;}
.wsb_c02255{word-spacing:-12.474000px;}
.ws7_c02255{word-spacing:-12.459744px;}
.ws2_c02255{word-spacing:-11.642400px;}
.ws6_c02255{word-spacing:-11.105424px;}
.ws4_c02255{word-spacing:-11.053152px;}
.wse_c02255{word-spacing:-10.682496px;}
.ws19_c02255{word-spacing:-2.159136px;}
.ws1b_c02255{word-spacing:-1.083456px;}
.ws13_c02255{word-spacing:-1.012176px;}
.ws11_c02255{word-spacing:-0.974160px;}
.ws14_c02255{word-spacing:-0.118800px;}
.ws16_c02255{word-spacing:-0.099792px;}
.ws17_c02255{word-spacing:-0.090288px;}
.ws18_c02255{word-spacing:-0.085536px;}
.ws12_c02255{word-spacing:0.000000px;}
.ws15_c02255{word-spacing:0.432432px;}
.ws1a_c02255{word-spacing:0.489456px;}
.wsa_c02255{word-spacing:6.629040px;}
.ws10_c02255{word-spacing:29.086992px;}
.wsc_c02255{word-spacing:33.300288px;}
.ws9_c02255{word-spacing:34.836912px;}
.wsf_c02255{word-spacing:36.143712px;}
.ws1_c02255{word-spacing:37.759392px;}
.ws0_c02255{word-spacing:38.020752px;}
.ws3_c02255{word-spacing:39.218256px;}
.ws5_c02255{word-spacing:39.902544px;}
.ws8_c02255{word-spacing:42.026688px;}
._0_c02255{margin-left:-1.948320px;}
._2_c02255{width:1.482624px;}
._9_c02255{width:3.559248px;}
._4_c02255{width:4.923072px;}
._8_c02255{width:14.751072px;}
._6_c02255{width:19.982160px;}
._7_c02255{width:23.451120px;}
._5_c02255{width:24.691392px;}
._b_c02255{width:39.427344px;}
._a_c02255{width:43.428528px;}
._c_c02255{width:45.224784px;}
._1_c02255{width:50.252400px;}
._3_c02255{width:51.530688px;}
.fc0_c02255{color:rgb(0,0,0);}
.fs0_c02255{font-size:47.520000px;}
.fs1_c02255{font-size:60.480000px;}
.y0_c02255{bottom:0.000000px;}
.y1c_c02255{bottom:131.878686px;}
.y1b_c02255{bottom:146.998362px;}
.y1e_c02255{bottom:186.600234px;}
.y1d_c02255{bottom:196.320450px;}
.y1a_c02255{bottom:275.878542px;}
.y19_c02255{bottom:341.759082px;}
.y18_c02255{bottom:356.878758px;}
.y16_c02255{bottom:406.559730px;}
.y12_c02255{bottom:424.560306px;}
.y17_c02255{bottom:458.759262px;}
.y15_c02255{bottom:491.879514px;}
.y14_c02255{bottom:509.880090px;}
.y11_c02255{bottom:543.000342px;}
.y13_c02255{bottom:559.559874px;}
.y10_c02255{bottom:577.560450px;}
.y1f_c02255{bottom:614.280450px;}
.yc_c02255{bottom:652.438650px;}
.yb_c02255{bottom:667.558326px;}
.ye_c02255{bottom:707.160234px;}
.yd_c02255{bottom:716.880450px;}
.ya_c02255{bottom:796.438506px;}
.y9_c02255{bottom:877.438722px;}
.y7_c02255{bottom:926.759730px;}
.y3_c02255{bottom:944.760306px;}
.y8_c02255{bottom:979.319226px;}
.y6_c02255{bottom:1012.439478px;}
.y5_c02255{bottom:1030.440054px;}
.y2_c02255{bottom:1063.560306px;}
.y4_c02255{bottom:1079.759874px;}
.y1_c02255{bottom:1097.760450px;}
.yf_c02255{bottom:1134.840450px;}
.h3_c02255{height:32.530781px;}
.h1_c02255{height:41.696016px;}
.h2_c02255{height:41.812031px;}
.h4_c02255{height:54.654737px;}
.h0_c02255{height:1263.000000px;}
.w1_c02255{width:892.500000px;}
.w0_c02255{width:892.830000px;}
.x0_c02255{left:0.000000px;}
.xe_c02255{left:117.000000px;}
.x8_c02255{left:440.999856px;}
.x4_c02255{left:445.680576px;}
.xc_c02255{left:451.080000px;}
.x7_c02255{left:455.399604px;}
.x5_c02255{left:461.880144px;}
.x1_c02255{left:463.320000px;}
.xa_c02255{left:483.480360px;}
.x9_c02255{left:492.119496px;}
.x6_c02255{left:493.200576px;}
.xd_c02255{left:506.880360px;}
.x3_c02255{left:511.919892px;}
.x2_c02255{left:526.679604px;}
.xb_c02255{left:569.880036px;}
@media print{
.v0_c02255{vertical-align:0.000000pt;}
.v1_c02255{vertical-align:1.279488pt;}
.ls18_c02255{letter-spacing:-1.064448pt;}
.ls17_c02255{letter-spacing:-0.756096pt;}
.lsa_c02255{letter-spacing:-0.734976pt;}
.lsf_c02255{letter-spacing:-0.705408pt;}
.lsc_c02255{letter-spacing:-0.688512pt;}
.ls12_c02255{letter-spacing:-0.654720pt;}
.lsb_c02255{letter-spacing:-0.511104pt;}
.ls13_c02255{letter-spacing:-0.240768pt;}
.ls10_c02255{letter-spacing:-0.232320pt;}
.ls7_c02255{letter-spacing:-0.215424pt;}
.ls8_c02255{letter-spacing:-0.211200pt;}
.ls4_c02255{letter-spacing:-0.105600pt;}
.ls16_c02255{letter-spacing:0.000000pt;}
.ls1_c02255{letter-spacing:0.005376pt;}
.ls6_c02255{letter-spacing:0.114048pt;}
.lse_c02255{letter-spacing:0.451968pt;}
.ls15_c02255{letter-spacing:0.456960pt;}
.ls11_c02255{letter-spacing:0.477312pt;}
.lsd_c02255{letter-spacing:0.515328pt;}
.ls14_c02255{letter-spacing:0.528000pt;}
.ls9_c02255{letter-spacing:0.532224pt;}
.ls2_c02255{letter-spacing:0.544896pt;}
.ls0_c02255{letter-spacing:0.578688pt;}
.ls5_c02255{letter-spacing:0.637824pt;}
.ls3_c02255{letter-spacing:0.642048pt;}
.wsd_c02255{word-spacing:-13.445376pt;}
.wsb_c02255{word-spacing:-11.088000pt;}
.ws7_c02255{word-spacing:-11.075328pt;}
.ws2_c02255{word-spacing:-10.348800pt;}
.ws6_c02255{word-spacing:-9.871488pt;}
.ws4_c02255{word-spacing:-9.825024pt;}
.wse_c02255{word-spacing:-9.495552pt;}
.ws19_c02255{word-spacing:-1.919232pt;}
.ws1b_c02255{word-spacing:-0.963072pt;}
.ws13_c02255{word-spacing:-0.899712pt;}
.ws11_c02255{word-spacing:-0.865920pt;}
.ws14_c02255{word-spacing:-0.105600pt;}
.ws16_c02255{word-spacing:-0.088704pt;}
.ws17_c02255{word-spacing:-0.080256pt;}
.ws18_c02255{word-spacing:-0.076032pt;}
.ws12_c02255{word-spacing:0.000000pt;}
.ws15_c02255{word-spacing:0.384384pt;}
.ws1a_c02255{word-spacing:0.435072pt;}
.wsa_c02255{word-spacing:5.892480pt;}
.ws10_c02255{word-spacing:25.855104pt;}
.wsc_c02255{word-spacing:29.600256pt;}
.ws9_c02255{word-spacing:30.966144pt;}
.wsf_c02255{word-spacing:32.127744pt;}
.ws1_c02255{word-spacing:33.563904pt;}
.ws0_c02255{word-spacing:33.796224pt;}
.ws3_c02255{word-spacing:34.860672pt;}
.ws5_c02255{word-spacing:35.468928pt;}
.ws8_c02255{word-spacing:37.357056pt;}
._0_c02255{margin-left:-1.731840pt;}
._2_c02255{width:1.317888pt;}
._9_c02255{width:3.163776pt;}
._4_c02255{width:4.376064pt;}
._8_c02255{width:13.112064pt;}
._6_c02255{width:17.761920pt;}
._7_c02255{width:20.845440pt;}
._5_c02255{width:21.947904pt;}
._b_c02255{width:35.046528pt;}
._a_c02255{width:38.603136pt;}
._c_c02255{width:40.199808pt;}
._1_c02255{width:44.668800pt;}
._3_c02255{width:45.805056pt;}
.fs0_c02255{font-size:42.240000pt;}
.fs1_c02255{font-size:53.760000pt;}
.y0_c02255{bottom:0.000000pt;}
.y1c_c02255{bottom:117.225499pt;}
.y1b_c02255{bottom:130.665211pt;}
.y1e_c02255{bottom:165.866875pt;}
.y1d_c02255{bottom:174.507067pt;}
.y1a_c02255{bottom:245.225371pt;}
.y19_c02255{bottom:303.785851pt;}
.y18_c02255{bottom:317.225563pt;}
.y16_c02255{bottom:361.386427pt;}
.y12_c02255{bottom:377.386939pt;}
.y17_c02255{bottom:407.786011pt;}
.y15_c02255{bottom:437.226235pt;}
.y14_c02255{bottom:453.226747pt;}
.y11_c02255{bottom:482.666971pt;}
.y13_c02255{bottom:497.386555pt;}
.y10_c02255{bottom:513.387067pt;}
.y1f_c02255{bottom:546.027067pt;}
.yc_c02255{bottom:579.945467pt;}
.yb_c02255{bottom:593.385179pt;}
.ye_c02255{bottom:628.586875pt;}
.yd_c02255{bottom:637.227067pt;}
.ya_c02255{bottom:707.945339pt;}
.y9_c02255{bottom:779.945531pt;}
.y7_c02255{bottom:823.786427pt;}
.y3_c02255{bottom:839.786939pt;}
.y8_c02255{bottom:870.505979pt;}
.y6_c02255{bottom:899.946203pt;}
.y5_c02255{bottom:915.946715pt;}
.y2_c02255{bottom:945.386939pt;}
.y4_c02255{bottom:959.786555pt;}
.y1_c02255{bottom:975.787067pt;}
.yf_c02255{bottom:1008.747067pt;}
.h3_c02255{height:28.916250pt;}
.h1_c02255{height:37.063125pt;}
.h2_c02255{height:37.166250pt;}
.h4_c02255{height:48.581988pt;}
.h0_c02255{height:1122.666667pt;}
.w1_c02255{width:793.333333pt;}
.w0_c02255{width:793.626667pt;}
.x0_c02255{left:0.000000pt;}
.xe_c02255{left:104.000000pt;}
.x8_c02255{left:391.999872pt;}
.x4_c02255{left:396.160512pt;}
.xc_c02255{left:400.960000pt;}
.x7_c02255{left:404.799648pt;}
.x5_c02255{left:410.560128pt;}
.x1_c02255{left:411.840000pt;}
.xa_c02255{left:429.760320pt;}
.x9_c02255{left:437.439552pt;}
.x6_c02255{left:438.400512pt;}
.xd_c02255{left:450.560320pt;}
.x3_c02255{left:455.039904pt;}
.x2_c02255{left:468.159648pt;}
.xb_c02255{left:506.560032pt;}
}





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

.ir_c02256:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02256{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02256;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02256{font-family:ff1_c02256;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02256;src:url('chunks/assets/font_a7aa30533cd3f65c328c3547.woff2')format("woff");}.ff2_c02256{font-family:ff2_c02256;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02256;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02256{font-family:ff3_c02256;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02256{vertical-align:0.000000px;}
.v1_c02256{vertical-align:1.439424px;}
.ls17_c02256{letter-spacing:-0.826848px;}
.lsf_c02256{letter-spacing:-0.793584px;}
.lsc_c02256{letter-spacing:-0.774576px;}
.ls12_c02256{letter-spacing:-0.736560px;}
.ls18_c02256{letter-spacing:-0.722304px;}
.lsb_c02256{letter-spacing:-0.574992px;}
.ls1a_c02256{letter-spacing:-0.275616px;}
.ls13_c02256{letter-spacing:-0.270864px;}
.ls10_c02256{letter-spacing:-0.261360px;}
.ls7_c02256{letter-spacing:-0.242352px;}
.ls8_c02256{letter-spacing:-0.237600px;}
.ls19_c02256{letter-spacing:-0.209088px;}
.ls4_c02256{letter-spacing:-0.118800px;}
.ls16_c02256{letter-spacing:0.000000px;}
.lsa_c02256{letter-spacing:0.004752px;}
.ls1_c02256{letter-spacing:0.006048px;}
.ls6_c02256{letter-spacing:0.128304px;}
.lse_c02256{letter-spacing:0.508464px;}
.ls15_c02256{letter-spacing:0.514080px;}
.ls11_c02256{letter-spacing:0.536976px;}
.lsd_c02256{letter-spacing:0.579744px;}
.ls14_c02256{letter-spacing:0.594000px;}
.ls9_c02256{letter-spacing:0.598752px;}
.ls2_c02256{letter-spacing:0.613008px;}
.ls0_c02256{letter-spacing:0.651024px;}
.ls5_c02256{letter-spacing:0.717552px;}
.ls3_c02256{letter-spacing:0.722304px;}
.sc__c02256{text-shadow:none;}
.sc0_c02256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02256{-webkit-text-stroke:0px transparent;}
.sc0_c02256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02256{word-spacing:-15.126048px;}
.wsa_c02256{word-spacing:-12.474000px;}
.ws6_c02256{word-spacing:-12.459744px;}
.wsf_c02256{word-spacing:-12.416976px;}
.ws2_c02256{word-spacing:-11.642400px;}
.ws5_c02256{word-spacing:-11.105424px;}
.wsd_c02256{word-spacing:-11.053152px;}
.ws19_c02256{word-spacing:-2.159136px;}
.ws12_c02256{word-spacing:-1.012176px;}
.ws10_c02256{word-spacing:-0.974160px;}
.ws14_c02256{word-spacing:-0.365904px;}
.ws1b_c02256{word-spacing:-0.152064px;}
.ws13_c02256{word-spacing:-0.118800px;}
.ws16_c02256{word-spacing:-0.099792px;}
.ws17_c02256{word-spacing:-0.090288px;}
.ws18_c02256{word-spacing:-0.085536px;}
.ws11_c02256{word-spacing:0.000000px;}
.ws1a_c02256{word-spacing:0.361152px;}
.ws15_c02256{word-spacing:0.432432px;}
.ws9_c02256{word-spacing:6.629040px;}
.wse_c02256{word-spacing:9.484992px;}
.wsb_c02256{word-spacing:33.300288px;}
.ws8_c02256{word-spacing:34.836912px;}
.ws1_c02256{word-spacing:37.759392px;}
.ws0_c02256{word-spacing:38.020752px;}
.ws3_c02256{word-spacing:39.218256px;}
.ws4_c02256{word-spacing:39.902544px;}
.ws7_c02256{word-spacing:42.026688px;}
._0_c02256{margin-left:-1.948320px;}
._2_c02256{width:1.482624px;}
._4_c02256{width:3.487968px;}
._9_c02256{width:4.923072px;}
._8_c02256{width:14.751072px;}
._6_c02256{width:19.982160px;}
._7_c02256{width:23.451120px;}
._5_c02256{width:24.691392px;}
._1_c02256{width:50.252400px;}
._3_c02256{width:51.530688px;}
.fc0_c02256{color:rgb(0,0,0);}
.fs0_c02256{font-size:47.520000px;}
.fs1_c02256{font-size:60.480000px;}
.y0_c02256{bottom:0.000000px;}
.y1b_c02256{bottom:146.998362px;}
.y1d_c02256{bottom:186.600234px;}
.y1c_c02256{bottom:196.320450px;}
.y1a_c02256{bottom:275.878542px;}
.y19_c02256{bottom:356.878758px;}
.y17_c02256{bottom:406.559730px;}
.y12_c02256{bottom:424.560306px;}
.y18_c02256{bottom:458.759262px;}
.y16_c02256{bottom:476.759838px;}
.y15_c02256{bottom:491.879514px;}
.y14_c02256{bottom:509.880090px;}
.y11_c02256{bottom:543.000342px;}
.y13_c02256{bottom:559.559874px;}
.y10_c02256{bottom:577.560450px;}
.y1e_c02256{bottom:614.280450px;}
.yc_c02256{bottom:652.438650px;}
.yb_c02256{bottom:667.558326px;}
.ye_c02256{bottom:707.160234px;}
.yd_c02256{bottom:716.880450px;}
.ya_c02256{bottom:796.438506px;}
.y9_c02256{bottom:877.438722px;}
.y7_c02256{bottom:926.759730px;}
.y3_c02256{bottom:944.760306px;}
.y8_c02256{bottom:979.319226px;}
.y6_c02256{bottom:1012.439478px;}
.y5_c02256{bottom:1030.440054px;}
.y2_c02256{bottom:1063.560306px;}
.y4_c02256{bottom:1079.759874px;}
.y1_c02256{bottom:1097.760450px;}
.yf_c02256{bottom:1134.840450px;}
.h3_c02256{height:32.530781px;}
.h1_c02256{height:41.696016px;}
.h2_c02256{height:41.812031px;}
.h4_c02256{height:54.654737px;}
.h0_c02256{height:1263.000000px;}
.w1_c02256{width:892.500000px;}
.w0_c02256{width:892.830000px;}
.x0_c02256{left:0.000000px;}
.xe_c02256{left:117.000000px;}
.x8_c02256{left:440.999856px;}
.x4_c02256{left:445.680576px;}
.xc_c02256{left:451.080000px;}
.x7_c02256{left:455.399604px;}
.x5_c02256{left:461.880144px;}
.x1_c02256{left:463.320000px;}
.xa_c02256{left:483.480360px;}
.x9_c02256{left:492.119496px;}
.x6_c02256{left:493.200576px;}
.xd_c02256{left:506.880360px;}
.x3_c02256{left:511.919892px;}
.x2_c02256{left:526.679604px;}
.xb_c02256{left:569.880036px;}
@media print{
.v0_c02256{vertical-align:0.000000pt;}
.v1_c02256{vertical-align:1.279488pt;}
.ls17_c02256{letter-spacing:-0.734976pt;}
.lsf_c02256{letter-spacing:-0.705408pt;}
.lsc_c02256{letter-spacing:-0.688512pt;}
.ls12_c02256{letter-spacing:-0.654720pt;}
.ls18_c02256{letter-spacing:-0.642048pt;}
.lsb_c02256{letter-spacing:-0.511104pt;}
.ls1a_c02256{letter-spacing:-0.244992pt;}
.ls13_c02256{letter-spacing:-0.240768pt;}
.ls10_c02256{letter-spacing:-0.232320pt;}
.ls7_c02256{letter-spacing:-0.215424pt;}
.ls8_c02256{letter-spacing:-0.211200pt;}
.ls19_c02256{letter-spacing:-0.185856pt;}
.ls4_c02256{letter-spacing:-0.105600pt;}
.ls16_c02256{letter-spacing:0.000000pt;}
.lsa_c02256{letter-spacing:0.004224pt;}
.ls1_c02256{letter-spacing:0.005376pt;}
.ls6_c02256{letter-spacing:0.114048pt;}
.lse_c02256{letter-spacing:0.451968pt;}
.ls15_c02256{letter-spacing:0.456960pt;}
.ls11_c02256{letter-spacing:0.477312pt;}
.lsd_c02256{letter-spacing:0.515328pt;}
.ls14_c02256{letter-spacing:0.528000pt;}
.ls9_c02256{letter-spacing:0.532224pt;}
.ls2_c02256{letter-spacing:0.544896pt;}
.ls0_c02256{letter-spacing:0.578688pt;}
.ls5_c02256{letter-spacing:0.637824pt;}
.ls3_c02256{letter-spacing:0.642048pt;}
.wsc_c02256{word-spacing:-13.445376pt;}
.wsa_c02256{word-spacing:-11.088000pt;}
.ws6_c02256{word-spacing:-11.075328pt;}
.wsf_c02256{word-spacing:-11.037312pt;}
.ws2_c02256{word-spacing:-10.348800pt;}
.ws5_c02256{word-spacing:-9.871488pt;}
.wsd_c02256{word-spacing:-9.825024pt;}
.ws19_c02256{word-spacing:-1.919232pt;}
.ws12_c02256{word-spacing:-0.899712pt;}
.ws10_c02256{word-spacing:-0.865920pt;}
.ws14_c02256{word-spacing:-0.325248pt;}
.ws1b_c02256{word-spacing:-0.135168pt;}
.ws13_c02256{word-spacing:-0.105600pt;}
.ws16_c02256{word-spacing:-0.088704pt;}
.ws17_c02256{word-spacing:-0.080256pt;}
.ws18_c02256{word-spacing:-0.076032pt;}
.ws11_c02256{word-spacing:0.000000pt;}
.ws1a_c02256{word-spacing:0.321024pt;}
.ws15_c02256{word-spacing:0.384384pt;}
.ws9_c02256{word-spacing:5.892480pt;}
.wse_c02256{word-spacing:8.431104pt;}
.wsb_c02256{word-spacing:29.600256pt;}
.ws8_c02256{word-spacing:30.966144pt;}
.ws1_c02256{word-spacing:33.563904pt;}
.ws0_c02256{word-spacing:33.796224pt;}
.ws3_c02256{word-spacing:34.860672pt;}
.ws4_c02256{word-spacing:35.468928pt;}
.ws7_c02256{word-spacing:37.357056pt;}
._0_c02256{margin-left:-1.731840pt;}
._2_c02256{width:1.317888pt;}
._4_c02256{width:3.100416pt;}
._9_c02256{width:4.376064pt;}
._8_c02256{width:13.112064pt;}
._6_c02256{width:17.761920pt;}
._7_c02256{width:20.845440pt;}
._5_c02256{width:21.947904pt;}
._1_c02256{width:44.668800pt;}
._3_c02256{width:45.805056pt;}
.fs0_c02256{font-size:42.240000pt;}
.fs1_c02256{font-size:53.760000pt;}
.y0_c02256{bottom:0.000000pt;}
.y1b_c02256{bottom:130.665211pt;}
.y1d_c02256{bottom:165.866875pt;}
.y1c_c02256{bottom:174.507067pt;}
.y1a_c02256{bottom:245.225371pt;}
.y19_c02256{bottom:317.225563pt;}
.y17_c02256{bottom:361.386427pt;}
.y12_c02256{bottom:377.386939pt;}
.y18_c02256{bottom:407.786011pt;}
.y16_c02256{bottom:423.786523pt;}
.y15_c02256{bottom:437.226235pt;}
.y14_c02256{bottom:453.226747pt;}
.y11_c02256{bottom:482.666971pt;}
.y13_c02256{bottom:497.386555pt;}
.y10_c02256{bottom:513.387067pt;}
.y1e_c02256{bottom:546.027067pt;}
.yc_c02256{bottom:579.945467pt;}
.yb_c02256{bottom:593.385179pt;}
.ye_c02256{bottom:628.586875pt;}
.yd_c02256{bottom:637.227067pt;}
.ya_c02256{bottom:707.945339pt;}
.y9_c02256{bottom:779.945531pt;}
.y7_c02256{bottom:823.786427pt;}
.y3_c02256{bottom:839.786939pt;}
.y8_c02256{bottom:870.505979pt;}
.y6_c02256{bottom:899.946203pt;}
.y5_c02256{bottom:915.946715pt;}
.y2_c02256{bottom:945.386939pt;}
.y4_c02256{bottom:959.786555pt;}
.y1_c02256{bottom:975.787067pt;}
.yf_c02256{bottom:1008.747067pt;}
.h3_c02256{height:28.916250pt;}
.h1_c02256{height:37.063125pt;}
.h2_c02256{height:37.166250pt;}
.h4_c02256{height:48.581988pt;}
.h0_c02256{height:1122.666667pt;}
.w1_c02256{width:793.333333pt;}
.w0_c02256{width:793.626667pt;}
.x0_c02256{left:0.000000pt;}
.xe_c02256{left:104.000000pt;}
.x8_c02256{left:391.999872pt;}
.x4_c02256{left:396.160512pt;}
.xc_c02256{left:400.960000pt;}
.x7_c02256{left:404.799648pt;}
.x5_c02256{left:410.560128pt;}
.x1_c02256{left:411.840000pt;}
.xa_c02256{left:429.760320pt;}
.x9_c02256{left:437.439552pt;}
.x6_c02256{left:438.400512pt;}
.xd_c02256{left:450.560320pt;}
.x3_c02256{left:455.039904pt;}
.x2_c02256{left:468.159648pt;}
.xb_c02256{left:506.560032pt;}
}





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

.ir_c02257:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02257{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02257;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02257{font-family:ff1_c02257;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02257;src:url('chunks/assets/font_5e5c1bfd88ddbd7a1b50e333.woff2')format("woff");}.ff2_c02257{font-family:ff2_c02257;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02257;src:url('chunks/assets/font_63440c2a141a7172f276743f.woff2')format("woff");}.ff3_c02257{font-family:ff3_c02257;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02257{vertical-align:0.000000px;}
.v1_c02257{vertical-align:1.439424px;}
.v2_c02257{vertical-align:33.121440px;}
.lsb_c02257{letter-spacing:-0.826848px;}
.ls10_c02257{letter-spacing:-0.793584px;}
.lsd_c02257{letter-spacing:-0.774576px;}
.ls13_c02257{letter-spacing:-0.736560px;}
.ls1d_c02257{letter-spacing:-0.722304px;}
.lsc_c02257{letter-spacing:-0.574992px;}
.ls1a_c02257{letter-spacing:-0.332640px;}
.ls1b_c02257{letter-spacing:-0.275616px;}
.ls14_c02257{letter-spacing:-0.270864px;}
.ls11_c02257{letter-spacing:-0.261360px;}
.ls8_c02257{letter-spacing:-0.242352px;}
.ls9_c02257{letter-spacing:-0.237600px;}
.ls19_c02257{letter-spacing:-0.209088px;}
.ls5_c02257{letter-spacing:-0.118800px;}
.ls17_c02257{letter-spacing:0.000000px;}
.ls1_c02257{letter-spacing:0.006048px;}
.ls1c_c02257{letter-spacing:0.028512px;}
.ls7_c02257{letter-spacing:0.128304px;}
.lsf_c02257{letter-spacing:0.508464px;}
.ls16_c02257{letter-spacing:0.514080px;}
.ls12_c02257{letter-spacing:0.536976px;}
.ls3_c02257{letter-spacing:0.551232px;}
.lse_c02257{letter-spacing:0.579744px;}
.ls15_c02257{letter-spacing:0.594000px;}
.lsa_c02257{letter-spacing:0.598752px;}
.ls4_c02257{letter-spacing:0.613008px;}
.ls18_c02257{letter-spacing:0.622512px;}
.ls0_c02257{letter-spacing:0.651024px;}
.ls6_c02257{letter-spacing:0.717552px;}
.ls2_c02257{letter-spacing:0.722304px;}
.sc__c02257{text-shadow:none;}
.sc0_c02257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02257{-webkit-text-stroke:0px transparent;}
.sc0_c02257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02257{word-spacing:-15.126048px;}
.wsb_c02257{word-spacing:-12.474000px;}
.ws7_c02257{word-spacing:-12.459744px;}
.ws15_c02257{word-spacing:-12.416976px;}
.ws2_c02257{word-spacing:-11.642400px;}
.ws6_c02257{word-spacing:-11.105424px;}
.ws4_c02257{word-spacing:-11.053152px;}
.ws12_c02257{word-spacing:-3.240864px;}
.ws21_c02257{word-spacing:-2.159136px;}
.ws23_c02257{word-spacing:-1.083456px;}
.ws1b_c02257{word-spacing:-1.012176px;}
.ws19_c02257{word-spacing:-0.974160px;}
.ws1c_c02257{word-spacing:-0.118800px;}
.ws1e_c02257{word-spacing:-0.099792px;}
.ws1f_c02257{word-spacing:-0.090288px;}
.ws20_c02257{word-spacing:-0.085536px;}
.ws24_c02257{word-spacing:-0.028512px;}
.ws1a_c02257{word-spacing:0.000000px;}
.ws25_c02257{word-spacing:0.361152px;}
.ws22_c02257{word-spacing:0.413424px;}
.ws1d_c02257{word-spacing:0.432432px;}
.ws10_c02257{word-spacing:3.692304px;}
.ws13_c02257{word-spacing:4.020192px;}
.wsf_c02257{word-spacing:4.381344px;}
.ws17_c02257{word-spacing:4.984848px;}
.ws18_c02257{word-spacing:5.151168px;}
.wsa_c02257{word-spacing:6.629040px;}
.ws11_c02257{word-spacing:8.510832px;}
.ws16_c02257{word-spacing:30.298752px;}
.wsc_c02257{word-spacing:33.300288px;}
.ws9_c02257{word-spacing:34.836912px;}
.ws14_c02257{word-spacing:35.274096px;}
.wse_c02257{word-spacing:36.143712px;}
.ws1_c02257{word-spacing:37.759392px;}
.ws0_c02257{word-spacing:38.020752px;}
.ws3_c02257{word-spacing:39.218256px;}
.ws5_c02257{word-spacing:39.902544px;}
.ws8_c02257{word-spacing:42.026688px;}
._d_c02257{margin-left:-3.027024px;}
._0_c02257{margin-left:-1.948320px;}
._2_c02257{width:1.482624px;}
._4_c02257{width:4.923072px;}
._b_c02257{width:12.350448px;}
._8_c02257{width:14.751072px;}
._9_c02257{width:16.180560px;}
._a_c02257{width:18.095616px;}
._6_c02257{width:19.982160px;}
._e_c02257{width:21.958992px;}
._7_c02257{width:23.451120px;}
._5_c02257{width:24.691392px;}
._1_c02257{width:50.252400px;}
._3_c02257{width:51.530688px;}
._c_c02257{width:54.676512px;}
.fc0_c02257{color:rgb(0,0,0);}
.fs0_c02257{font-size:47.520000px;}
.fs1_c02257{font-size:60.480000px;}
.y0_c02257{bottom:0.000000px;}
.y1d_c02257{bottom:146.999550px;}
.y21_c02257{bottom:165.001206px;}
.y20_c02257{bottom:179.760918px;}
.y1f_c02257{bottom:186.600234px;}
.y1e_c02257{bottom:196.320450px;}
.y1c_c02257{bottom:245.999154px;}
.y1b_c02257{bottom:260.758866px;}
.y1a_c02257{bottom:275.878542px;}
.y19_c02257{bottom:341.759082px;}
.y18_c02257{bottom:356.878758px;}
.y16_c02257{bottom:406.559730px;}
.y12_c02257{bottom:424.560306px;}
.y17_c02257{bottom:458.759262px;}
.y15_c02257{bottom:491.879514px;}
.y14_c02257{bottom:509.880090px;}
.y11_c02257{bottom:543.000342px;}
.y13_c02257{bottom:559.559874px;}
.y10_c02257{bottom:577.560450px;}
.y22_c02257{bottom:614.280450px;}
.yc_c02257{bottom:652.438650px;}
.yb_c02257{bottom:667.558326px;}
.ye_c02257{bottom:707.160234px;}
.yd_c02257{bottom:716.880450px;}
.ya_c02257{bottom:796.438506px;}
.y9_c02257{bottom:877.438722px;}
.y7_c02257{bottom:926.759730px;}
.y3_c02257{bottom:944.760306px;}
.y8_c02257{bottom:979.319226px;}
.y6_c02257{bottom:1012.439478px;}
.y5_c02257{bottom:1030.440054px;}
.y2_c02257{bottom:1063.560306px;}
.y4_c02257{bottom:1079.759874px;}
.y1_c02257{bottom:1097.760450px;}
.yf_c02257{bottom:1134.840450px;}
.h3_c02257{height:32.530781px;}
.h1_c02257{height:41.696016px;}
.h2_c02257{height:41.812031px;}
.h4_c02257{height:54.654737px;}
.h5_c02257{height:74.817456px;}
.h0_c02257{height:1263.000000px;}
.w1_c02257{width:892.500000px;}
.w0_c02257{width:892.830000px;}
.x0_c02257{left:0.000000px;}
.xe_c02257{left:117.000000px;}
.x8_c02257{left:440.999856px;}
.x4_c02257{left:445.680576px;}
.xc_c02257{left:451.080000px;}
.x7_c02257{left:455.399604px;}
.x5_c02257{left:461.880144px;}
.x1_c02257{left:463.320000px;}
.xa_c02257{left:483.480360px;}
.x9_c02257{left:492.119496px;}
.x6_c02257{left:493.200576px;}
.xd_c02257{left:506.880360px;}
.x3_c02257{left:511.919892px;}
.x2_c02257{left:526.679604px;}
.xb_c02257{left:569.880036px;}
@media print{
.v0_c02257{vertical-align:0.000000pt;}
.v1_c02257{vertical-align:1.279488pt;}
.v2_c02257{vertical-align:29.441280pt;}
.lsb_c02257{letter-spacing:-0.734976pt;}
.ls10_c02257{letter-spacing:-0.705408pt;}
.lsd_c02257{letter-spacing:-0.688512pt;}
.ls13_c02257{letter-spacing:-0.654720pt;}
.ls1d_c02257{letter-spacing:-0.642048pt;}
.lsc_c02257{letter-spacing:-0.511104pt;}
.ls1a_c02257{letter-spacing:-0.295680pt;}
.ls1b_c02257{letter-spacing:-0.244992pt;}
.ls14_c02257{letter-spacing:-0.240768pt;}
.ls11_c02257{letter-spacing:-0.232320pt;}
.ls8_c02257{letter-spacing:-0.215424pt;}
.ls9_c02257{letter-spacing:-0.211200pt;}
.ls19_c02257{letter-spacing:-0.185856pt;}
.ls5_c02257{letter-spacing:-0.105600pt;}
.ls17_c02257{letter-spacing:0.000000pt;}
.ls1_c02257{letter-spacing:0.005376pt;}
.ls1c_c02257{letter-spacing:0.025344pt;}
.ls7_c02257{letter-spacing:0.114048pt;}
.lsf_c02257{letter-spacing:0.451968pt;}
.ls16_c02257{letter-spacing:0.456960pt;}
.ls12_c02257{letter-spacing:0.477312pt;}
.ls3_c02257{letter-spacing:0.489984pt;}
.lse_c02257{letter-spacing:0.515328pt;}
.ls15_c02257{letter-spacing:0.528000pt;}
.lsa_c02257{letter-spacing:0.532224pt;}
.ls4_c02257{letter-spacing:0.544896pt;}
.ls18_c02257{letter-spacing:0.553344pt;}
.ls0_c02257{letter-spacing:0.578688pt;}
.ls6_c02257{letter-spacing:0.637824pt;}
.ls2_c02257{letter-spacing:0.642048pt;}
.wsd_c02257{word-spacing:-13.445376pt;}
.wsb_c02257{word-spacing:-11.088000pt;}
.ws7_c02257{word-spacing:-11.075328pt;}
.ws15_c02257{word-spacing:-11.037312pt;}
.ws2_c02257{word-spacing:-10.348800pt;}
.ws6_c02257{word-spacing:-9.871488pt;}
.ws4_c02257{word-spacing:-9.825024pt;}
.ws12_c02257{word-spacing:-2.880768pt;}
.ws21_c02257{word-spacing:-1.919232pt;}
.ws23_c02257{word-spacing:-0.963072pt;}
.ws1b_c02257{word-spacing:-0.899712pt;}
.ws19_c02257{word-spacing:-0.865920pt;}
.ws1c_c02257{word-spacing:-0.105600pt;}
.ws1e_c02257{word-spacing:-0.088704pt;}
.ws1f_c02257{word-spacing:-0.080256pt;}
.ws20_c02257{word-spacing:-0.076032pt;}
.ws24_c02257{word-spacing:-0.025344pt;}
.ws1a_c02257{word-spacing:0.000000pt;}
.ws25_c02257{word-spacing:0.321024pt;}
.ws22_c02257{word-spacing:0.367488pt;}
.ws1d_c02257{word-spacing:0.384384pt;}
.ws10_c02257{word-spacing:3.282048pt;}
.ws13_c02257{word-spacing:3.573504pt;}
.wsf_c02257{word-spacing:3.894528pt;}
.ws17_c02257{word-spacing:4.430976pt;}
.ws18_c02257{word-spacing:4.578816pt;}
.wsa_c02257{word-spacing:5.892480pt;}
.ws11_c02257{word-spacing:7.565184pt;}
.ws16_c02257{word-spacing:26.932224pt;}
.wsc_c02257{word-spacing:29.600256pt;}
.ws9_c02257{word-spacing:30.966144pt;}
.ws14_c02257{word-spacing:31.354752pt;}
.wse_c02257{word-spacing:32.127744pt;}
.ws1_c02257{word-spacing:33.563904pt;}
.ws0_c02257{word-spacing:33.796224pt;}
.ws3_c02257{word-spacing:34.860672pt;}
.ws5_c02257{word-spacing:35.468928pt;}
.ws8_c02257{word-spacing:37.357056pt;}
._d_c02257{margin-left:-2.690688pt;}
._0_c02257{margin-left:-1.731840pt;}
._2_c02257{width:1.317888pt;}
._4_c02257{width:4.376064pt;}
._b_c02257{width:10.978176pt;}
._8_c02257{width:13.112064pt;}
._9_c02257{width:14.382720pt;}
._a_c02257{width:16.084992pt;}
._6_c02257{width:17.761920pt;}
._e_c02257{width:19.519104pt;}
._7_c02257{width:20.845440pt;}
._5_c02257{width:21.947904pt;}
._1_c02257{width:44.668800pt;}
._3_c02257{width:45.805056pt;}
._c_c02257{width:48.601344pt;}
.fs0_c02257{font-size:42.240000pt;}
.fs1_c02257{font-size:53.760000pt;}
.y0_c02257{bottom:0.000000pt;}
.y1d_c02257{bottom:130.666267pt;}
.y21_c02257{bottom:146.667739pt;}
.y20_c02257{bottom:159.787483pt;}
.y1f_c02257{bottom:165.866875pt;}
.y1e_c02257{bottom:174.507067pt;}
.y1c_c02257{bottom:218.665915pt;}
.y1b_c02257{bottom:231.785659pt;}
.y1a_c02257{bottom:245.225371pt;}
.y19_c02257{bottom:303.785851pt;}
.y18_c02257{bottom:317.225563pt;}
.y16_c02257{bottom:361.386427pt;}
.y12_c02257{bottom:377.386939pt;}
.y17_c02257{bottom:407.786011pt;}
.y15_c02257{bottom:437.226235pt;}
.y14_c02257{bottom:453.226747pt;}
.y11_c02257{bottom:482.666971pt;}
.y13_c02257{bottom:497.386555pt;}
.y10_c02257{bottom:513.387067pt;}
.y22_c02257{bottom:546.027067pt;}
.yc_c02257{bottom:579.945467pt;}
.yb_c02257{bottom:593.385179pt;}
.ye_c02257{bottom:628.586875pt;}
.yd_c02257{bottom:637.227067pt;}
.ya_c02257{bottom:707.945339pt;}
.y9_c02257{bottom:779.945531pt;}
.y7_c02257{bottom:823.786427pt;}
.y3_c02257{bottom:839.786939pt;}
.y8_c02257{bottom:870.505979pt;}
.y6_c02257{bottom:899.946203pt;}
.y5_c02257{bottom:915.946715pt;}
.y2_c02257{bottom:945.386939pt;}
.y4_c02257{bottom:959.786555pt;}
.y1_c02257{bottom:975.787067pt;}
.yf_c02257{bottom:1008.747067pt;}
.h3_c02257{height:28.916250pt;}
.h1_c02257{height:37.063125pt;}
.h2_c02257{height:37.166250pt;}
.h4_c02257{height:48.581988pt;}
.h5_c02257{height:66.504405pt;}
.h0_c02257{height:1122.666667pt;}
.w1_c02257{width:793.333333pt;}
.w0_c02257{width:793.626667pt;}
.x0_c02257{left:0.000000pt;}
.xe_c02257{left:104.000000pt;}
.x8_c02257{left:391.999872pt;}
.x4_c02257{left:396.160512pt;}
.xc_c02257{left:400.960000pt;}
.x7_c02257{left:404.799648pt;}
.x5_c02257{left:410.560128pt;}
.x1_c02257{left:411.840000pt;}
.xa_c02257{left:429.760320pt;}
.x9_c02257{left:437.439552pt;}
.x6_c02257{left:438.400512pt;}
.xd_c02257{left:450.560320pt;}
.x3_c02257{left:455.039904pt;}
.x2_c02257{left:468.159648pt;}
.xb_c02257{left:506.560032pt;}
}





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

.ir_c02258:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02258{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02258;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02258{font-family:ff1_c02258;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02258;src:url('chunks/assets/font_4a5166b584237ae621e591c1.woff2')format("woff");}.ff2_c02258{font-family:ff2_c02258;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02258;src:url('chunks/assets/font_8c1b2a51d39eba295e1e2674.woff2')format("woff");}.ff3_c02258{font-family:ff3_c02258;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02258{vertical-align:0.000000px;}
.v1_c02258{vertical-align:1.439424px;}
.ls13_c02258{letter-spacing:-0.803088px;}
.lsf_c02258{letter-spacing:-0.793584px;}
.lsc_c02258{letter-spacing:-0.774576px;}
.ls11_c02258{letter-spacing:-0.746064px;}
.ls1a_c02258{letter-spacing:-0.736560px;}
.ls8_c02258{letter-spacing:-0.613008px;}
.lsb_c02258{letter-spacing:-0.574992px;}
.ls14_c02258{letter-spacing:-0.270864px;}
.lsa_c02258{letter-spacing:-0.266112px;}
.ls10_c02258{letter-spacing:-0.261360px;}
.ls7_c02258{letter-spacing:-0.242352px;}
.ls18_c02258{letter-spacing:-0.237600px;}
.ls4_c02258{letter-spacing:-0.118800px;}
.ls17_c02258{letter-spacing:0.000000px;}
.ls1_c02258{letter-spacing:0.006048px;}
.ls6_c02258{letter-spacing:0.128304px;}
.lse_c02258{letter-spacing:0.508464px;}
.ls16_c02258{letter-spacing:0.514080px;}
.ls12_c02258{letter-spacing:0.536976px;}
.lsd_c02258{letter-spacing:0.579744px;}
.ls15_c02258{letter-spacing:0.594000px;}
.ls9_c02258{letter-spacing:0.598752px;}
.ls3_c02258{letter-spacing:0.613008px;}
.ls19_c02258{letter-spacing:0.636768px;}
.ls0_c02258{letter-spacing:0.651024px;}
.ls5_c02258{letter-spacing:0.717552px;}
.ls2_c02258{letter-spacing:0.722304px;}
.sc__c02258{text-shadow:none;}
.sc0_c02258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02258{-webkit-text-stroke:0px transparent;}
.sc0_c02258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c02258{word-spacing:-15.126048px;}
.ws13_c02258{word-spacing:-12.516768px;}
.wse_c02258{word-spacing:-12.474000px;}
.ws6_c02258{word-spacing:-12.459744px;}
.ws11_c02258{word-spacing:-11.761200px;}
.ws12_c02258{word-spacing:-11.642400px;}
.ws2_c02258{word-spacing:-11.266992px;}
.ws5_c02258{word-spacing:-11.105424px;}
.ws22_c02258{word-spacing:-2.159136px;}
.ws1d_c02258{word-spacing:-1.083456px;}
.ws23_c02258{word-spacing:-1.078704px;}
.ws19_c02258{word-spacing:-1.012176px;}
.ws17_c02258{word-spacing:-0.974160px;}
.ws1a_c02258{word-spacing:-0.118800px;}
.ws1e_c02258{word-spacing:-0.099792px;}
.ws1b_c02258{word-spacing:-0.095040px;}
.ws20_c02258{word-spacing:-0.090288px;}
.ws21_c02258{word-spacing:-0.085536px;}
.ws18_c02258{word-spacing:0.000000px;}
.ws1f_c02258{word-spacing:0.384912px;}
.ws1c_c02258{word-spacing:0.432432px;}
.wsd_c02258{word-spacing:3.407184px;}
.ws14_c02258{word-spacing:4.951584px;}
.ws16_c02258{word-spacing:6.629040px;}
.wsa_c02258{word-spacing:15.116112px;}
.ws9_c02258{word-spacing:29.086992px;}
.wsf_c02258{word-spacing:33.300288px;}
.wsb_c02258{word-spacing:34.836912px;}
.ws8_c02258{word-spacing:36.143712px;}
.ws15_c02258{word-spacing:36.742464px;}
.ws1_c02258{word-spacing:37.759392px;}
.ws0_c02258{word-spacing:38.020752px;}
.ws3_c02258{word-spacing:39.218256px;}
.ws4_c02258{word-spacing:39.902544px;}
.ws7_c02258{word-spacing:42.026688px;}
.wsc_c02258{word-spacing:45.272304px;}
._0_c02258{margin-left:-1.948320px;}
._2_c02258{width:1.482624px;}
._e_c02258{width:14.751072px;}
._d_c02258{width:18.860688px;}
._c_c02258{width:20.975328px;}
._10_c02258{width:22.923648px;}
._f_c02258{width:24.691392px;}
._8_c02258{width:25.784352px;}
._9_c02258{width:30.032640px;}
._7_c02258{width:32.603472px;}
._5_c02258{width:39.427344px;}
._4_c02258{width:43.428528px;}
._6_c02258{width:45.224784px;}
._1_c02258{width:50.252400px;}
._3_c02258{width:51.530688px;}
._a_c02258{width:55.284768px;}
._b_c02258{width:60.991920px;}
.fc0_c02258{color:rgb(0,0,0);}
.fs0_c02258{font-size:47.520000px;}
.fs1_c02258{font-size:60.480000px;}
.y0_c02258{bottom:0.000000px;}
.y16_c02258{bottom:18.000450px;}
.y21_c02258{bottom:131.878794px;}
.y20_c02258{bottom:146.998470px;}
.y23_c02258{bottom:186.600234px;}
.y22_c02258{bottom:196.320450px;}
.y1f_c02258{bottom:275.878650px;}
.y1e_c02258{bottom:356.878866px;}
.y1c_c02258{bottom:406.559838px;}
.y18_c02258{bottom:424.560414px;}
.y1d_c02258{bottom:458.759370px;}
.y1b_c02258{bottom:491.879622px;}
.y1a_c02258{bottom:509.880198px;}
.y15_c02258{bottom:525.000000px;}
.y14_c02258{bottom:543.000342px;}
.y17_c02258{bottom:543.000450px;}
.y19_c02258{bottom:559.559982px;}
.y13_c02258{bottom:577.560450px;}
.y24_c02258{bottom:614.280450px;}
.yf_c02258{bottom:637.320162px;}
.ye_c02258{bottom:652.439838px;}
.yd_c02258{bottom:667.559514px;}
.y11_c02258{bottom:707.160234px;}
.y10_c02258{bottom:716.880450px;}
.yc_c02258{bottom:781.320018px;}
.yb_c02258{bottom:796.439694px;}
.ya_c02258{bottom:862.319046px;}
.y9_c02258{bottom:877.438722px;}
.y7_c02258{bottom:926.759730px;}
.y3_c02258{bottom:944.760306px;}
.y8_c02258{bottom:979.319226px;}
.y6_c02258{bottom:1012.439478px;}
.y5_c02258{bottom:1030.440054px;}
.y2_c02258{bottom:1063.560306px;}
.y4_c02258{bottom:1079.759874px;}
.y1_c02258{bottom:1097.760450px;}
.y12_c02258{bottom:1134.840450px;}
.h5_c02258{height:29.160000px;}
.h3_c02258{height:32.530781px;}
.h1_c02258{height:41.696016px;}
.h2_c02258{height:41.812031px;}
.h4_c02258{height:54.654737px;}
.h0_c02258{height:1263.000000px;}
.w2_c02258{width:215.280000px;}
.w1_c02258{width:892.500000px;}
.w0_c02258{width:892.830000px;}
.x0_c02258{left:0.000000px;}
.xe_c02258{left:117.000000px;}
.x8_c02258{left:440.999856px;}
.x4_c02258{left:445.680576px;}
.xc_c02258{left:451.080000px;}
.x7_c02258{left:455.399604px;}
.x5_c02258{left:461.880144px;}
.x1_c02258{left:463.320000px;}
.xb_c02258{left:483.480360px;}
.x9_c02258{left:492.119496px;}
.x6_c02258{left:493.200576px;}
.xd_c02258{left:506.880360px;}
.x3_c02258{left:511.919892px;}
.x2_c02258{left:526.679604px;}
.xa_c02258{left:569.880036px;}
.xf_c02258{left:620.640000px;}
@media print{
.v0_c02258{vertical-align:0.000000pt;}
.v1_c02258{vertical-align:1.279488pt;}
.ls13_c02258{letter-spacing:-0.713856pt;}
.lsf_c02258{letter-spacing:-0.705408pt;}
.lsc_c02258{letter-spacing:-0.688512pt;}
.ls11_c02258{letter-spacing:-0.663168pt;}
.ls1a_c02258{letter-spacing:-0.654720pt;}
.ls8_c02258{letter-spacing:-0.544896pt;}
.lsb_c02258{letter-spacing:-0.511104pt;}
.ls14_c02258{letter-spacing:-0.240768pt;}
.lsa_c02258{letter-spacing:-0.236544pt;}
.ls10_c02258{letter-spacing:-0.232320pt;}
.ls7_c02258{letter-spacing:-0.215424pt;}
.ls18_c02258{letter-spacing:-0.211200pt;}
.ls4_c02258{letter-spacing:-0.105600pt;}
.ls17_c02258{letter-spacing:0.000000pt;}
.ls1_c02258{letter-spacing:0.005376pt;}
.ls6_c02258{letter-spacing:0.114048pt;}
.lse_c02258{letter-spacing:0.451968pt;}
.ls16_c02258{letter-spacing:0.456960pt;}
.ls12_c02258{letter-spacing:0.477312pt;}
.lsd_c02258{letter-spacing:0.515328pt;}
.ls15_c02258{letter-spacing:0.528000pt;}
.ls9_c02258{letter-spacing:0.532224pt;}
.ls3_c02258{letter-spacing:0.544896pt;}
.ls19_c02258{letter-spacing:0.566016pt;}
.ls0_c02258{letter-spacing:0.578688pt;}
.ls5_c02258{letter-spacing:0.637824pt;}
.ls2_c02258{letter-spacing:0.642048pt;}
.ws10_c02258{word-spacing:-13.445376pt;}
.ws13_c02258{word-spacing:-11.126016pt;}
.wse_c02258{word-spacing:-11.088000pt;}
.ws6_c02258{word-spacing:-11.075328pt;}
.ws11_c02258{word-spacing:-10.454400pt;}
.ws12_c02258{word-spacing:-10.348800pt;}
.ws2_c02258{word-spacing:-10.015104pt;}
.ws5_c02258{word-spacing:-9.871488pt;}
.ws22_c02258{word-spacing:-1.919232pt;}
.ws1d_c02258{word-spacing:-0.963072pt;}
.ws23_c02258{word-spacing:-0.958848pt;}
.ws19_c02258{word-spacing:-0.899712pt;}
.ws17_c02258{word-spacing:-0.865920pt;}
.ws1a_c02258{word-spacing:-0.105600pt;}
.ws1e_c02258{word-spacing:-0.088704pt;}
.ws1b_c02258{word-spacing:-0.084480pt;}
.ws20_c02258{word-spacing:-0.080256pt;}
.ws21_c02258{word-spacing:-0.076032pt;}
.ws18_c02258{word-spacing:0.000000pt;}
.ws1f_c02258{word-spacing:0.342144pt;}
.ws1c_c02258{word-spacing:0.384384pt;}
.wsd_c02258{word-spacing:3.028608pt;}
.ws14_c02258{word-spacing:4.401408pt;}
.ws16_c02258{word-spacing:5.892480pt;}
.wsa_c02258{word-spacing:13.436544pt;}
.ws9_c02258{word-spacing:25.855104pt;}
.wsf_c02258{word-spacing:29.600256pt;}
.wsb_c02258{word-spacing:30.966144pt;}
.ws8_c02258{word-spacing:32.127744pt;}
.ws15_c02258{word-spacing:32.659968pt;}
.ws1_c02258{word-spacing:33.563904pt;}
.ws0_c02258{word-spacing:33.796224pt;}
.ws3_c02258{word-spacing:34.860672pt;}
.ws4_c02258{word-spacing:35.468928pt;}
.ws7_c02258{word-spacing:37.357056pt;}
.wsc_c02258{word-spacing:40.242048pt;}
._0_c02258{margin-left:-1.731840pt;}
._2_c02258{width:1.317888pt;}
._e_c02258{width:13.112064pt;}
._d_c02258{width:16.765056pt;}
._c_c02258{width:18.644736pt;}
._10_c02258{width:20.376576pt;}
._f_c02258{width:21.947904pt;}
._8_c02258{width:22.919424pt;}
._9_c02258{width:26.695680pt;}
._7_c02258{width:28.980864pt;}
._5_c02258{width:35.046528pt;}
._4_c02258{width:38.603136pt;}
._6_c02258{width:40.199808pt;}
._1_c02258{width:44.668800pt;}
._3_c02258{width:45.805056pt;}
._a_c02258{width:49.142016pt;}
._b_c02258{width:54.215040pt;}
.fs0_c02258{font-size:42.240000pt;}
.fs1_c02258{font-size:53.760000pt;}
.y0_c02258{bottom:0.000000pt;}
.y16_c02258{bottom:16.000400pt;}
.y21_c02258{bottom:117.225595pt;}
.y20_c02258{bottom:130.665307pt;}
.y23_c02258{bottom:165.866875pt;}
.y22_c02258{bottom:174.507067pt;}
.y1f_c02258{bottom:245.225467pt;}
.y1e_c02258{bottom:317.225659pt;}
.y1c_c02258{bottom:361.386523pt;}
.y18_c02258{bottom:377.387035pt;}
.y1d_c02258{bottom:407.786107pt;}
.y1b_c02258{bottom:437.226331pt;}
.y1a_c02258{bottom:453.226843pt;}
.y15_c02258{bottom:466.666667pt;}
.y14_c02258{bottom:482.666971pt;}
.y17_c02258{bottom:482.667067pt;}
.y19_c02258{bottom:497.386651pt;}
.y13_c02258{bottom:513.387067pt;}
.y24_c02258{bottom:546.027067pt;}
.yf_c02258{bottom:566.506811pt;}
.ye_c02258{bottom:579.946523pt;}
.yd_c02258{bottom:593.386235pt;}
.y11_c02258{bottom:628.586875pt;}
.y10_c02258{bottom:637.227067pt;}
.yc_c02258{bottom:694.506683pt;}
.yb_c02258{bottom:707.946395pt;}
.ya_c02258{bottom:766.505819pt;}
.y9_c02258{bottom:779.945531pt;}
.y7_c02258{bottom:823.786427pt;}
.y3_c02258{bottom:839.786939pt;}
.y8_c02258{bottom:870.505979pt;}
.y6_c02258{bottom:899.946203pt;}
.y5_c02258{bottom:915.946715pt;}
.y2_c02258{bottom:945.386939pt;}
.y4_c02258{bottom:959.786555pt;}
.y1_c02258{bottom:975.787067pt;}
.y12_c02258{bottom:1008.747067pt;}
.h5_c02258{height:25.920000pt;}
.h3_c02258{height:28.916250pt;}
.h1_c02258{height:37.063125pt;}
.h2_c02258{height:37.166250pt;}
.h4_c02258{height:48.581988pt;}
.h0_c02258{height:1122.666667pt;}
.w2_c02258{width:191.360000pt;}
.w1_c02258{width:793.333333pt;}
.w0_c02258{width:793.626667pt;}
.x0_c02258{left:0.000000pt;}
.xe_c02258{left:104.000000pt;}
.x8_c02258{left:391.999872pt;}
.x4_c02258{left:396.160512pt;}
.xc_c02258{left:400.960000pt;}
.x7_c02258{left:404.799648pt;}
.x5_c02258{left:410.560128pt;}
.x1_c02258{left:411.840000pt;}
.xb_c02258{left:429.760320pt;}
.x9_c02258{left:437.439552pt;}
.x6_c02258{left:438.400512pt;}
.xd_c02258{left:450.560320pt;}
.x3_c02258{left:455.039904pt;}
.x2_c02258{left:468.159648pt;}
.xa_c02258{left:506.560032pt;}
.xf_c02258{left:551.680000pt;}
}





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

.ir_c02259:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02259{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02259;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02259{font-family:ff1_c02259;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02259;src:url('chunks/assets/font_c212bc86b7a3ae9a1a06ba36.woff2')format("woff");}.ff2_c02259{font-family:ff2_c02259;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02259;src:url('chunks/assets/font_8c1b2a51d39eba295e1e2674.woff2')format("woff");}.ff3_c02259{font-family:ff3_c02259;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02259{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02259{vertical-align:0.000000px;}
.v1_c02259{vertical-align:1.439424px;}
.lse_c02259{letter-spacing:-0.793584px;}
.lsb_c02259{letter-spacing:-0.774576px;}
.ls11_c02259{letter-spacing:-0.736560px;}
.lsa_c02259{letter-spacing:-0.574992px;}
.ls17_c02259{letter-spacing:-0.361152px;}
.ls18_c02259{letter-spacing:-0.275616px;}
.ls12_c02259{letter-spacing:-0.270864px;}
.lsf_c02259{letter-spacing:-0.261360px;}
.ls8_c02259{letter-spacing:-0.242352px;}
.ls5_c02259{letter-spacing:-0.237600px;}
.ls4_c02259{letter-spacing:-0.118800px;}
.ls15_c02259{letter-spacing:0.000000px;}
.ls1_c02259{letter-spacing:0.006048px;}
.ls7_c02259{letter-spacing:0.128304px;}
.lsd_c02259{letter-spacing:0.508464px;}
.ls14_c02259{letter-spacing:0.514080px;}
.ls10_c02259{letter-spacing:0.536976px;}
.lsc_c02259{letter-spacing:0.579744px;}
.ls13_c02259{letter-spacing:0.594000px;}
.ls9_c02259{letter-spacing:0.598752px;}
.ls2_c02259{letter-spacing:0.613008px;}
.ls6_c02259{letter-spacing:0.636768px;}
.ls0_c02259{letter-spacing:0.651024px;}
.ls16_c02259{letter-spacing:0.717552px;}
.ls3_c02259{letter-spacing:0.722304px;}
.sc__c02259{text-shadow:none;}
.sc0_c02259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02259{-webkit-text-stroke:0px transparent;}
.sc0_c02259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c02259{word-spacing:-15.126048px;}
.ws2_c02259{word-spacing:-12.516768px;}
.wse_c02259{word-spacing:-12.474000px;}
.ws8_c02259{word-spacing:-12.459744px;}
.ws14_c02259{word-spacing:-12.416976px;}
.ws13_c02259{word-spacing:-12.388464px;}
.ws0_c02259{word-spacing:-11.761200px;}
.ws1_c02259{word-spacing:-11.642400px;}
.ws12_c02259{word-spacing:-11.305008px;}
.ws7_c02259{word-spacing:-11.105424px;}
.ws1e_c02259{word-spacing:-2.159136px;}
.ws1a_c02259{word-spacing:-1.083456px;}
.ws17_c02259{word-spacing:-1.012176px;}
.ws15_c02259{word-spacing:-0.974160px;}
.ws18_c02259{word-spacing:-0.118800px;}
.ws1b_c02259{word-spacing:-0.099792px;}
.ws1c_c02259{word-spacing:-0.090288px;}
.ws1d_c02259{word-spacing:-0.085536px;}
.ws16_c02259{word-spacing:0.000000px;}
.ws19_c02259{word-spacing:0.432432px;}
.ws5_c02259{word-spacing:4.951584px;}
.wsd_c02259{word-spacing:6.629040px;}
.wsb_c02259{word-spacing:29.086992px;}
.wsf_c02259{word-spacing:33.300288px;}
.wsc_c02259{word-spacing:34.836912px;}
.wsa_c02259{word-spacing:36.143712px;}
.ws3_c02259{word-spacing:37.759392px;}
.ws11_c02259{word-spacing:38.020752px;}
.ws4_c02259{word-spacing:39.218256px;}
.ws6_c02259{word-spacing:39.902544px;}
.ws9_c02259{word-spacing:42.026688px;}
._0_c02259{margin-left:-1.948320px;}
._2_c02259{width:1.211760px;}
._4_c02259{width:2.242944px;}
._b_c02259{width:15.292800px;}
._9_c02259{width:19.982160px;}
._a_c02259{width:23.451120px;}
._8_c02259{width:25.233120px;}
._5_c02259{width:39.959568px;}
._6_c02259{width:43.409520px;}
._7_c02259{width:44.692560px;}
._1_c02259{width:50.252400px;}
._3_c02259{width:51.402384px;}
._c_c02259{width:52.566624px;}
.fc0_c02259{color:rgb(0,0,0);}
.fs0_c02259{font-size:47.520000px;}
.fs1_c02259{font-size:60.480000px;}
.y0_c02259{bottom:0.000000px;}
.y4_c02259{bottom:18.360450px;}
.y1f_c02259{bottom:146.998362px;}
.y21_c02259{bottom:186.600234px;}
.y20_c02259{bottom:196.320450px;}
.y1e_c02259{bottom:275.878542px;}
.y1d_c02259{bottom:341.759082px;}
.y1c_c02259{bottom:356.878758px;}
.y1a_c02259{bottom:406.559730px;}
.y16_c02259{bottom:424.560306px;}
.y1b_c02259{bottom:458.759262px;}
.y19_c02259{bottom:491.879514px;}
.y18_c02259{bottom:509.880090px;}
.y15_c02259{bottom:543.000342px;}
.y17_c02259{bottom:559.559874px;}
.y14_c02259{bottom:577.560450px;}
.y22_c02259{bottom:614.280450px;}
.y10_c02259{bottom:652.439982px;}
.yf_c02259{bottom:667.559658px;}
.y12_c02259{bottom:707.160234px;}
.y11_c02259{bottom:716.880450px;}
.ye_c02259{bottom:796.439838px;}
.yd_c02259{bottom:862.319190px;}
.yc_c02259{bottom:877.438866px;}
.ya_c02259{bottom:926.759874px;}
.y6_c02259{bottom:944.760450px;}
.yb_c02259{bottom:979.319370px;}
.y9_c02259{bottom:1012.439622px;}
.y8_c02259{bottom:1030.440198px;}
.y3_c02259{bottom:1045.200000px;}
.y2_c02259{bottom:1063.560306px;}
.y5_c02259{bottom:1063.560450px;}
.y7_c02259{bottom:1079.760018px;}
.y1_c02259{bottom:1097.760450px;}
.y13_c02259{bottom:1134.840450px;}
.h3_c02259{height:29.520000px;}
.h2_c02259{height:32.530781px;}
.h1_c02259{height:41.696016px;}
.h4_c02259{height:41.812031px;}
.h5_c02259{height:54.654737px;}
.h0_c02259{height:1263.000000px;}
.w2_c02259{width:215.280000px;}
.w1_c02259{width:892.500000px;}
.w0_c02259{width:892.830000px;}
.x0_c02259{left:0.000000px;}
.xf_c02259{left:117.000000px;}
.xa_c02259{left:441.000144px;}
.x6_c02259{left:445.680864px;}
.xd_c02259{left:451.080000px;}
.x9_c02259{left:455.399892px;}
.x7_c02259{left:461.880432px;}
.x1_c02259{left:463.320000px;}
.xc_c02259{left:483.480648px;}
.xb_c02259{left:492.119784px;}
.x8_c02259{left:493.200864px;}
.xe_c02259{left:506.880360px;}
.x5_c02259{left:511.920180px;}
.x2_c02259{left:526.679604px;}
.x3_c02259{left:569.520000px;}
.x4_c02259{left:620.640000px;}
@media print{
.v0_c02259{vertical-align:0.000000pt;}
.v1_c02259{vertical-align:1.279488pt;}
.lse_c02259{letter-spacing:-0.705408pt;}
.lsb_c02259{letter-spacing:-0.688512pt;}
.ls11_c02259{letter-spacing:-0.654720pt;}
.lsa_c02259{letter-spacing:-0.511104pt;}
.ls17_c02259{letter-spacing:-0.321024pt;}
.ls18_c02259{letter-spacing:-0.244992pt;}
.ls12_c02259{letter-spacing:-0.240768pt;}
.lsf_c02259{letter-spacing:-0.232320pt;}
.ls8_c02259{letter-spacing:-0.215424pt;}
.ls5_c02259{letter-spacing:-0.211200pt;}
.ls4_c02259{letter-spacing:-0.105600pt;}
.ls15_c02259{letter-spacing:0.000000pt;}
.ls1_c02259{letter-spacing:0.005376pt;}
.ls7_c02259{letter-spacing:0.114048pt;}
.lsd_c02259{letter-spacing:0.451968pt;}
.ls14_c02259{letter-spacing:0.456960pt;}
.ls10_c02259{letter-spacing:0.477312pt;}
.lsc_c02259{letter-spacing:0.515328pt;}
.ls13_c02259{letter-spacing:0.528000pt;}
.ls9_c02259{letter-spacing:0.532224pt;}
.ls2_c02259{letter-spacing:0.544896pt;}
.ls6_c02259{letter-spacing:0.566016pt;}
.ls0_c02259{letter-spacing:0.578688pt;}
.ls16_c02259{letter-spacing:0.637824pt;}
.ls3_c02259{letter-spacing:0.642048pt;}
.ws10_c02259{word-spacing:-13.445376pt;}
.ws2_c02259{word-spacing:-11.126016pt;}
.wse_c02259{word-spacing:-11.088000pt;}
.ws8_c02259{word-spacing:-11.075328pt;}
.ws14_c02259{word-spacing:-11.037312pt;}
.ws13_c02259{word-spacing:-11.011968pt;}
.ws0_c02259{word-spacing:-10.454400pt;}
.ws1_c02259{word-spacing:-10.348800pt;}
.ws12_c02259{word-spacing:-10.048896pt;}
.ws7_c02259{word-spacing:-9.871488pt;}
.ws1e_c02259{word-spacing:-1.919232pt;}
.ws1a_c02259{word-spacing:-0.963072pt;}
.ws17_c02259{word-spacing:-0.899712pt;}
.ws15_c02259{word-spacing:-0.865920pt;}
.ws18_c02259{word-spacing:-0.105600pt;}
.ws1b_c02259{word-spacing:-0.088704pt;}
.ws1c_c02259{word-spacing:-0.080256pt;}
.ws1d_c02259{word-spacing:-0.076032pt;}
.ws16_c02259{word-spacing:0.000000pt;}
.ws19_c02259{word-spacing:0.384384pt;}
.ws5_c02259{word-spacing:4.401408pt;}
.wsd_c02259{word-spacing:5.892480pt;}
.wsb_c02259{word-spacing:25.855104pt;}
.wsf_c02259{word-spacing:29.600256pt;}
.wsc_c02259{word-spacing:30.966144pt;}
.wsa_c02259{word-spacing:32.127744pt;}
.ws3_c02259{word-spacing:33.563904pt;}
.ws11_c02259{word-spacing:33.796224pt;}
.ws4_c02259{word-spacing:34.860672pt;}
.ws6_c02259{word-spacing:35.468928pt;}
.ws9_c02259{word-spacing:37.357056pt;}
._0_c02259{margin-left:-1.731840pt;}
._2_c02259{width:1.077120pt;}
._4_c02259{width:1.993728pt;}
._b_c02259{width:13.593600pt;}
._9_c02259{width:17.761920pt;}
._a_c02259{width:20.845440pt;}
._8_c02259{width:22.429440pt;}
._5_c02259{width:35.519616pt;}
._6_c02259{width:38.586240pt;}
._7_c02259{width:39.726720pt;}
._1_c02259{width:44.668800pt;}
._3_c02259{width:45.691008pt;}
._c_c02259{width:46.725888pt;}
.fs0_c02259{font-size:42.240000pt;}
.fs1_c02259{font-size:53.760000pt;}
.y0_c02259{bottom:0.000000pt;}
.y4_c02259{bottom:16.320400pt;}
.y1f_c02259{bottom:130.665211pt;}
.y21_c02259{bottom:165.866875pt;}
.y20_c02259{bottom:174.507067pt;}
.y1e_c02259{bottom:245.225371pt;}
.y1d_c02259{bottom:303.785851pt;}
.y1c_c02259{bottom:317.225563pt;}
.y1a_c02259{bottom:361.386427pt;}
.y16_c02259{bottom:377.386939pt;}
.y1b_c02259{bottom:407.786011pt;}
.y19_c02259{bottom:437.226235pt;}
.y18_c02259{bottom:453.226747pt;}
.y15_c02259{bottom:482.666971pt;}
.y17_c02259{bottom:497.386555pt;}
.y14_c02259{bottom:513.387067pt;}
.y22_c02259{bottom:546.027067pt;}
.y10_c02259{bottom:579.946651pt;}
.yf_c02259{bottom:593.386363pt;}
.y12_c02259{bottom:628.586875pt;}
.y11_c02259{bottom:637.227067pt;}
.ye_c02259{bottom:707.946523pt;}
.yd_c02259{bottom:766.505947pt;}
.yc_c02259{bottom:779.945659pt;}
.ya_c02259{bottom:823.786555pt;}
.y6_c02259{bottom:839.787067pt;}
.yb_c02259{bottom:870.506107pt;}
.y9_c02259{bottom:899.946331pt;}
.y8_c02259{bottom:915.946843pt;}
.y3_c02259{bottom:929.066667pt;}
.y2_c02259{bottom:945.386939pt;}
.y5_c02259{bottom:945.387067pt;}
.y7_c02259{bottom:959.786683pt;}
.y1_c02259{bottom:975.787067pt;}
.y13_c02259{bottom:1008.747067pt;}
.h3_c02259{height:26.240000pt;}
.h2_c02259{height:28.916250pt;}
.h1_c02259{height:37.063125pt;}
.h4_c02259{height:37.166250pt;}
.h5_c02259{height:48.581988pt;}
.h0_c02259{height:1122.666667pt;}
.w2_c02259{width:191.360000pt;}
.w1_c02259{width:793.333333pt;}
.w0_c02259{width:793.626667pt;}
.x0_c02259{left:0.000000pt;}
.xf_c02259{left:104.000000pt;}
.xa_c02259{left:392.000128pt;}
.x6_c02259{left:396.160768pt;}
.xd_c02259{left:400.960000pt;}
.x9_c02259{left:404.799904pt;}
.x7_c02259{left:410.560384pt;}
.x1_c02259{left:411.840000pt;}
.xc_c02259{left:429.760576pt;}
.xb_c02259{left:437.439808pt;}
.x8_c02259{left:438.400768pt;}
.xe_c02259{left:450.560320pt;}
.x5_c02259{left:455.040160pt;}
.x2_c02259{left:468.159648pt;}
.x3_c02259{left:506.240000pt;}
.x4_c02259{left:551.680000pt;}
}





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

.ir_c02260:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02260{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02260;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02260{font-family:ff1_c02260;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02260;src:url('chunks/assets/font_8e3a222e6e7621b570d021c9.woff2')format("woff");}.ff2_c02260{font-family:ff2_c02260;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02260;src:url('chunks/assets/font_8c1b2a51d39eba295e1e2674.woff2')format("woff");}.ff3_c02260{font-family:ff3_c02260;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02260{vertical-align:0.000000px;}
.v1_c02260{vertical-align:1.439424px;}
.lsb_c02260{letter-spacing:-1.197504px;}
.ls11_c02260{letter-spacing:-0.836352px;}
.lse_c02260{letter-spacing:-0.793584px;}
.ls18_c02260{letter-spacing:-0.755568px;}
.lsa_c02260{letter-spacing:-0.574992px;}
.ls19_c02260{letter-spacing:-0.361152px;}
.ls1a_c02260{letter-spacing:-0.275616px;}
.ls12_c02260{letter-spacing:-0.270864px;}
.lsf_c02260{letter-spacing:-0.261360px;}
.ls8_c02260{letter-spacing:-0.242352px;}
.ls5_c02260{letter-spacing:-0.237600px;}
.ls4_c02260{letter-spacing:-0.118800px;}
.ls15_c02260{letter-spacing:0.000000px;}
.ls1_c02260{letter-spacing:0.006048px;}
.ls7_c02260{letter-spacing:0.128304px;}
.ls17_c02260{letter-spacing:0.242352px;}
.lsd_c02260{letter-spacing:0.508464px;}
.ls14_c02260{letter-spacing:0.514080px;}
.ls10_c02260{letter-spacing:0.536976px;}
.lsc_c02260{letter-spacing:0.579744px;}
.ls13_c02260{letter-spacing:0.594000px;}
.ls9_c02260{letter-spacing:0.598752px;}
.ls2_c02260{letter-spacing:0.613008px;}
.ls6_c02260{letter-spacing:0.636768px;}
.ls0_c02260{letter-spacing:0.651024px;}
.ls16_c02260{letter-spacing:0.717552px;}
.ls3_c02260{letter-spacing:0.722304px;}
.sc__c02260{text-shadow:none;}
.sc0_c02260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02260{-webkit-text-stroke:0px transparent;}
.sc0_c02260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11_c02260{word-spacing:-15.126048px;}
.ws2_c02260{word-spacing:-12.516768px;}
.wsf_c02260{word-spacing:-12.474000px;}
.ws8_c02260{word-spacing:-12.459744px;}
.ws16_c02260{word-spacing:-12.416976px;}
.ws13_c02260{word-spacing:-12.122352px;}
.ws0_c02260{word-spacing:-11.761200px;}
.ws1_c02260{word-spacing:-11.642400px;}
.ws14_c02260{word-spacing:-11.124432px;}
.ws7_c02260{word-spacing:-10.682496px;}
.ws20_c02260{word-spacing:-2.159136px;}
.ws1c_c02260{word-spacing:-1.083456px;}
.ws19_c02260{word-spacing:-1.012176px;}
.ws17_c02260{word-spacing:-0.974160px;}
.ws1a_c02260{word-spacing:-0.118800px;}
.ws1d_c02260{word-spacing:-0.099792px;}
.ws1e_c02260{word-spacing:-0.090288px;}
.ws1f_c02260{word-spacing:-0.085536px;}
.ws18_c02260{word-spacing:0.000000px;}
.ws1b_c02260{word-spacing:0.432432px;}
.ws21_c02260{word-spacing:0.836352px;}
.wse_c02260{word-spacing:3.473712px;}
.ws5_c02260{word-spacing:4.951584px;}
.wsb_c02260{word-spacing:29.086992px;}
.ws10_c02260{word-spacing:33.300288px;}
.wsc_c02260{word-spacing:34.836912px;}
.wsa_c02260{word-spacing:36.143712px;}
.ws15_c02260{word-spacing:36.742464px;}
.ws3_c02260{word-spacing:37.759392px;}
.ws12_c02260{word-spacing:38.020752px;}
.ws4_c02260{word-spacing:39.218256px;}
.ws6_c02260{word-spacing:39.902544px;}
.ws9_c02260{word-spacing:42.026688px;}
.wsd_c02260{word-spacing:46.431792px;}
._0_c02260{margin-left:-1.948320px;}
._2_c02260{width:1.211760px;}
._4_c02260{width:2.242944px;}
._c_c02260{width:3.640032px;}
._b_c02260{width:15.292800px;}
._9_c02260{width:16.432416px;}
._a_c02260{width:18.822672px;}
._8_c02260{width:21.493296px;}
._5_c02260{width:39.959568px;}
._6_c02260{width:43.409520px;}
._7_c02260{width:44.692560px;}
._1_c02260{width:50.252400px;}
._3_c02260{width:51.402384px;}
.fc0_c02260{color:rgb(0,0,0);}
.fs0_c02260{font-size:47.520000px;}
.fs1_c02260{font-size:60.480000px;}
.y0_c02260{bottom:0.000000px;}
.y4_c02260{bottom:18.360450px;}
.y1f_c02260{bottom:146.998362px;}
.y21_c02260{bottom:186.600234px;}
.y20_c02260{bottom:196.320450px;}
.y1e_c02260{bottom:275.878542px;}
.y1d_c02260{bottom:356.878758px;}
.y1b_c02260{bottom:406.559730px;}
.y17_c02260{bottom:424.560306px;}
.y1c_c02260{bottom:458.759262px;}
.y1a_c02260{bottom:491.879514px;}
.y19_c02260{bottom:509.880090px;}
.y16_c02260{bottom:543.000342px;}
.y18_c02260{bottom:559.559874px;}
.y15_c02260{bottom:577.560450px;}
.y22_c02260{bottom:614.280450px;}
.y11_c02260{bottom:637.320306px;}
.y10_c02260{bottom:652.439982px;}
.yf_c02260{bottom:667.559658px;}
.y13_c02260{bottom:707.160234px;}
.y12_c02260{bottom:716.880450px;}
.ye_c02260{bottom:796.439838px;}
.yd_c02260{bottom:862.319190px;}
.yc_c02260{bottom:877.438866px;}
.ya_c02260{bottom:926.759874px;}
.y6_c02260{bottom:944.760450px;}
.yb_c02260{bottom:979.319370px;}
.y9_c02260{bottom:1012.439622px;}
.y8_c02260{bottom:1030.440198px;}
.y3_c02260{bottom:1045.200000px;}
.y2_c02260{bottom:1063.560306px;}
.y5_c02260{bottom:1063.560450px;}
.y7_c02260{bottom:1079.760018px;}
.y1_c02260{bottom:1097.760450px;}
.y14_c02260{bottom:1134.840450px;}
.h3_c02260{height:29.520000px;}
.h2_c02260{height:32.530781px;}
.h1_c02260{height:41.696016px;}
.h4_c02260{height:41.812031px;}
.h5_c02260{height:54.654737px;}
.h0_c02260{height:1263.000000px;}
.w2_c02260{width:215.280000px;}
.w1_c02260{width:892.500000px;}
.w0_c02260{width:892.830000px;}
.x0_c02260{left:0.000000px;}
.xf_c02260{left:117.000000px;}
.xa_c02260{left:441.000144px;}
.x6_c02260{left:445.680864px;}
.xd_c02260{left:451.080000px;}
.x9_c02260{left:455.399892px;}
.x7_c02260{left:461.880432px;}
.x1_c02260{left:463.320000px;}
.xc_c02260{left:483.480648px;}
.xb_c02260{left:492.119784px;}
.x8_c02260{left:493.200864px;}
.xe_c02260{left:506.880360px;}
.x5_c02260{left:511.920180px;}
.x2_c02260{left:526.679604px;}
.x3_c02260{left:569.520000px;}
.x4_c02260{left:620.640000px;}
@media print{
.v0_c02260{vertical-align:0.000000pt;}
.v1_c02260{vertical-align:1.279488pt;}
.lsb_c02260{letter-spacing:-1.064448pt;}
.ls11_c02260{letter-spacing:-0.743424pt;}
.lse_c02260{letter-spacing:-0.705408pt;}
.ls18_c02260{letter-spacing:-0.671616pt;}
.lsa_c02260{letter-spacing:-0.511104pt;}
.ls19_c02260{letter-spacing:-0.321024pt;}
.ls1a_c02260{letter-spacing:-0.244992pt;}
.ls12_c02260{letter-spacing:-0.240768pt;}
.lsf_c02260{letter-spacing:-0.232320pt;}
.ls8_c02260{letter-spacing:-0.215424pt;}
.ls5_c02260{letter-spacing:-0.211200pt;}
.ls4_c02260{letter-spacing:-0.105600pt;}
.ls15_c02260{letter-spacing:0.000000pt;}
.ls1_c02260{letter-spacing:0.005376pt;}
.ls7_c02260{letter-spacing:0.114048pt;}
.ls17_c02260{letter-spacing:0.215424pt;}
.lsd_c02260{letter-spacing:0.451968pt;}
.ls14_c02260{letter-spacing:0.456960pt;}
.ls10_c02260{letter-spacing:0.477312pt;}
.lsc_c02260{letter-spacing:0.515328pt;}
.ls13_c02260{letter-spacing:0.528000pt;}
.ls9_c02260{letter-spacing:0.532224pt;}
.ls2_c02260{letter-spacing:0.544896pt;}
.ls6_c02260{letter-spacing:0.566016pt;}
.ls0_c02260{letter-spacing:0.578688pt;}
.ls16_c02260{letter-spacing:0.637824pt;}
.ls3_c02260{letter-spacing:0.642048pt;}
.ws11_c02260{word-spacing:-13.445376pt;}
.ws2_c02260{word-spacing:-11.126016pt;}
.wsf_c02260{word-spacing:-11.088000pt;}
.ws8_c02260{word-spacing:-11.075328pt;}
.ws16_c02260{word-spacing:-11.037312pt;}
.ws13_c02260{word-spacing:-10.775424pt;}
.ws0_c02260{word-spacing:-10.454400pt;}
.ws1_c02260{word-spacing:-10.348800pt;}
.ws14_c02260{word-spacing:-9.888384pt;}
.ws7_c02260{word-spacing:-9.495552pt;}
.ws20_c02260{word-spacing:-1.919232pt;}
.ws1c_c02260{word-spacing:-0.963072pt;}
.ws19_c02260{word-spacing:-0.899712pt;}
.ws17_c02260{word-spacing:-0.865920pt;}
.ws1a_c02260{word-spacing:-0.105600pt;}
.ws1d_c02260{word-spacing:-0.088704pt;}
.ws1e_c02260{word-spacing:-0.080256pt;}
.ws1f_c02260{word-spacing:-0.076032pt;}
.ws18_c02260{word-spacing:0.000000pt;}
.ws1b_c02260{word-spacing:0.384384pt;}
.ws21_c02260{word-spacing:0.743424pt;}
.wse_c02260{word-spacing:3.087744pt;}
.ws5_c02260{word-spacing:4.401408pt;}
.wsb_c02260{word-spacing:25.855104pt;}
.ws10_c02260{word-spacing:29.600256pt;}
.wsc_c02260{word-spacing:30.966144pt;}
.wsa_c02260{word-spacing:32.127744pt;}
.ws15_c02260{word-spacing:32.659968pt;}
.ws3_c02260{word-spacing:33.563904pt;}
.ws12_c02260{word-spacing:33.796224pt;}
.ws4_c02260{word-spacing:34.860672pt;}
.ws6_c02260{word-spacing:35.468928pt;}
.ws9_c02260{word-spacing:37.357056pt;}
.wsd_c02260{word-spacing:41.272704pt;}
._0_c02260{margin-left:-1.731840pt;}
._2_c02260{width:1.077120pt;}
._4_c02260{width:1.993728pt;}
._c_c02260{width:3.235584pt;}
._b_c02260{width:13.593600pt;}
._9_c02260{width:14.606592pt;}
._a_c02260{width:16.731264pt;}
._8_c02260{width:19.105152pt;}
._5_c02260{width:35.519616pt;}
._6_c02260{width:38.586240pt;}
._7_c02260{width:39.726720pt;}
._1_c02260{width:44.668800pt;}
._3_c02260{width:45.691008pt;}
.fs0_c02260{font-size:42.240000pt;}
.fs1_c02260{font-size:53.760000pt;}
.y0_c02260{bottom:0.000000pt;}
.y4_c02260{bottom:16.320400pt;}
.y1f_c02260{bottom:130.665211pt;}
.y21_c02260{bottom:165.866875pt;}
.y20_c02260{bottom:174.507067pt;}
.y1e_c02260{bottom:245.225371pt;}
.y1d_c02260{bottom:317.225563pt;}
.y1b_c02260{bottom:361.386427pt;}
.y17_c02260{bottom:377.386939pt;}
.y1c_c02260{bottom:407.786011pt;}
.y1a_c02260{bottom:437.226235pt;}
.y19_c02260{bottom:453.226747pt;}
.y16_c02260{bottom:482.666971pt;}
.y18_c02260{bottom:497.386555pt;}
.y15_c02260{bottom:513.387067pt;}
.y22_c02260{bottom:546.027067pt;}
.y11_c02260{bottom:566.506939pt;}
.y10_c02260{bottom:579.946651pt;}
.yf_c02260{bottom:593.386363pt;}
.y13_c02260{bottom:628.586875pt;}
.y12_c02260{bottom:637.227067pt;}
.ye_c02260{bottom:707.946523pt;}
.yd_c02260{bottom:766.505947pt;}
.yc_c02260{bottom:779.945659pt;}
.ya_c02260{bottom:823.786555pt;}
.y6_c02260{bottom:839.787067pt;}
.yb_c02260{bottom:870.506107pt;}
.y9_c02260{bottom:899.946331pt;}
.y8_c02260{bottom:915.946843pt;}
.y3_c02260{bottom:929.066667pt;}
.y2_c02260{bottom:945.386939pt;}
.y5_c02260{bottom:945.387067pt;}
.y7_c02260{bottom:959.786683pt;}
.y1_c02260{bottom:975.787067pt;}
.y14_c02260{bottom:1008.747067pt;}
.h3_c02260{height:26.240000pt;}
.h2_c02260{height:28.916250pt;}
.h1_c02260{height:37.063125pt;}
.h4_c02260{height:37.166250pt;}
.h5_c02260{height:48.581988pt;}
.h0_c02260{height:1122.666667pt;}
.w2_c02260{width:191.360000pt;}
.w1_c02260{width:793.333333pt;}
.w0_c02260{width:793.626667pt;}
.x0_c02260{left:0.000000pt;}
.xf_c02260{left:104.000000pt;}
.xa_c02260{left:392.000128pt;}
.x6_c02260{left:396.160768pt;}
.xd_c02260{left:400.960000pt;}
.x9_c02260{left:404.799904pt;}
.x7_c02260{left:410.560384pt;}
.x1_c02260{left:411.840000pt;}
.xc_c02260{left:429.760576pt;}
.xb_c02260{left:437.439808pt;}
.x8_c02260{left:438.400768pt;}
.xe_c02260{left:450.560320pt;}
.x5_c02260{left:455.040160pt;}
.x2_c02260{left:468.159648pt;}
.x3_c02260{left:506.240000pt;}
.x4_c02260{left:551.680000pt;}
}





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

.ir_c02261:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02261{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02261;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02261{font-family:ff1_c02261;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02261;src:url('chunks/assets/font_9b96d2cbfbfdd4d8ecf621bb.woff2')format("woff");}.ff2_c02261{font-family:ff2_c02261;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02261;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02261{font-family:ff3_c02261;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02261{vertical-align:0.000000px;}
.v1_c02261{vertical-align:1.439424px;}
.lse_c02261{letter-spacing:-1.197504px;}
.ls9_c02261{letter-spacing:-0.755568px;}
.lsa_c02261{letter-spacing:-0.574992px;}
.lsb_c02261{letter-spacing:-0.361152px;}
.ls11_c02261{letter-spacing:-0.275616px;}
.lsf_c02261{letter-spacing:-0.261360px;}
.ls6_c02261{letter-spacing:-0.242352px;}
.ls3_c02261{letter-spacing:-0.118800px;}
.ls14_c02261{letter-spacing:0.000000px;}
.ls0_c02261{letter-spacing:0.006048px;}
.ls5_c02261{letter-spacing:0.128304px;}
.ls7_c02261{letter-spacing:0.242352px;}
.lsd_c02261{letter-spacing:0.508464px;}
.ls13_c02261{letter-spacing:0.514080px;}
.ls10_c02261{letter-spacing:0.536976px;}
.lsc_c02261{letter-spacing:0.579744px;}
.ls12_c02261{letter-spacing:0.594000px;}
.ls8_c02261{letter-spacing:0.598752px;}
.ls1_c02261{letter-spacing:0.613008px;}
.ls4_c02261{letter-spacing:0.717552px;}
.ls2_c02261{letter-spacing:0.722304px;}
.sc__c02261{text-shadow:none;}
.sc0_c02261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02261{-webkit-text-stroke:0px transparent;}
.sc0_c02261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02261{word-spacing:-15.126048px;}
.wsa_c02261{word-spacing:-12.474000px;}
.ws8_c02261{word-spacing:-12.459744px;}
.ws9_c02261{word-spacing:-12.416976px;}
.ws2_c02261{word-spacing:-12.122352px;}
.ws4_c02261{word-spacing:-11.124432px;}
.ws13_c02261{word-spacing:-2.159136px;}
.wsd_c02261{word-spacing:-0.974160px;}
.wsf_c02261{word-spacing:-0.118800px;}
.ws11_c02261{word-spacing:-0.099792px;}
.ws12_c02261{word-spacing:-0.085536px;}
.wse_c02261{word-spacing:0.000000px;}
.ws10_c02261{word-spacing:0.836352px;}
.wsb_c02261{word-spacing:33.300288px;}
.ws6_c02261{word-spacing:36.742464px;}
.ws1_c02261{word-spacing:37.759392px;}
.ws0_c02261{word-spacing:38.020752px;}
.ws3_c02261{word-spacing:39.218256px;}
.ws5_c02261{word-spacing:39.902544px;}
.ws7_c02261{word-spacing:42.026688px;}
._0_c02261{margin-left:-1.948320px;}
._2_c02261{width:1.482624px;}
._4_c02261{width:3.369168px;}
._5_c02261{width:14.751072px;}
._1_c02261{width:50.252400px;}
._3_c02261{width:51.530688px;}
.fc0_c02261{color:rgb(0,0,0);}
.fs0_c02261{font-size:47.520000px;}
.fs1_c02261{font-size:60.480000px;}
.y0_c02261{bottom:0.000000px;}
.y19_c02261{bottom:146.998362px;}
.y1b_c02261{bottom:186.600234px;}
.y1a_c02261{bottom:196.320450px;}
.y18_c02261{bottom:275.878542px;}
.y17_c02261{bottom:356.878758px;}
.y15_c02261{bottom:406.559730px;}
.y11_c02261{bottom:424.560306px;}
.y16_c02261{bottom:458.759262px;}
.y14_c02261{bottom:491.879514px;}
.y13_c02261{bottom:509.880090px;}
.y10_c02261{bottom:543.000342px;}
.y12_c02261{bottom:559.559874px;}
.yf_c02261{bottom:577.560450px;}
.y1c_c02261{bottom:614.280450px;}
.yb_c02261{bottom:667.558326px;}
.yd_c02261{bottom:707.160234px;}
.yc_c02261{bottom:716.880450px;}
.ya_c02261{bottom:796.438506px;}
.y9_c02261{bottom:877.438722px;}
.y7_c02261{bottom:926.759730px;}
.y3_c02261{bottom:944.760306px;}
.y8_c02261{bottom:979.319226px;}
.y6_c02261{bottom:1012.439478px;}
.y5_c02261{bottom:1030.440054px;}
.y2_c02261{bottom:1063.560306px;}
.y4_c02261{bottom:1079.759874px;}
.y1_c02261{bottom:1097.760450px;}
.ye_c02261{bottom:1134.840450px;}
.h3_c02261{height:32.530781px;}
.h1_c02261{height:41.696016px;}
.h2_c02261{height:41.812031px;}
.h4_c02261{height:54.654737px;}
.h0_c02261{height:1263.000000px;}
.w1_c02261{width:892.500000px;}
.w0_c02261{width:892.830000px;}
.x0_c02261{left:0.000000px;}
.xd_c02261{left:117.000000px;}
.x8_c02261{left:440.999856px;}
.x4_c02261{left:445.680576px;}
.xb_c02261{left:451.080000px;}
.x7_c02261{left:455.399604px;}
.x5_c02261{left:461.880144px;}
.x1_c02261{left:463.320000px;}
.xa_c02261{left:483.480360px;}
.x9_c02261{left:492.119496px;}
.x6_c02261{left:493.200576px;}
.xc_c02261{left:506.880360px;}
.x3_c02261{left:511.919892px;}
.x2_c02261{left:526.679604px;}
@media print{
.v0_c02261{vertical-align:0.000000pt;}
.v1_c02261{vertical-align:1.279488pt;}
.lse_c02261{letter-spacing:-1.064448pt;}
.ls9_c02261{letter-spacing:-0.671616pt;}
.lsa_c02261{letter-spacing:-0.511104pt;}
.lsb_c02261{letter-spacing:-0.321024pt;}
.ls11_c02261{letter-spacing:-0.244992pt;}
.lsf_c02261{letter-spacing:-0.232320pt;}
.ls6_c02261{letter-spacing:-0.215424pt;}
.ls3_c02261{letter-spacing:-0.105600pt;}
.ls14_c02261{letter-spacing:0.000000pt;}
.ls0_c02261{letter-spacing:0.005376pt;}
.ls5_c02261{letter-spacing:0.114048pt;}
.ls7_c02261{letter-spacing:0.215424pt;}
.lsd_c02261{letter-spacing:0.451968pt;}
.ls13_c02261{letter-spacing:0.456960pt;}
.ls10_c02261{letter-spacing:0.477312pt;}
.lsc_c02261{letter-spacing:0.515328pt;}
.ls12_c02261{letter-spacing:0.528000pt;}
.ls8_c02261{letter-spacing:0.532224pt;}
.ls1_c02261{letter-spacing:0.544896pt;}
.ls4_c02261{letter-spacing:0.637824pt;}
.ls2_c02261{letter-spacing:0.642048pt;}
.wsc_c02261{word-spacing:-13.445376pt;}
.wsa_c02261{word-spacing:-11.088000pt;}
.ws8_c02261{word-spacing:-11.075328pt;}
.ws9_c02261{word-spacing:-11.037312pt;}
.ws2_c02261{word-spacing:-10.775424pt;}
.ws4_c02261{word-spacing:-9.888384pt;}
.ws13_c02261{word-spacing:-1.919232pt;}
.wsd_c02261{word-spacing:-0.865920pt;}
.wsf_c02261{word-spacing:-0.105600pt;}
.ws11_c02261{word-spacing:-0.088704pt;}
.ws12_c02261{word-spacing:-0.076032pt;}
.wse_c02261{word-spacing:0.000000pt;}
.ws10_c02261{word-spacing:0.743424pt;}
.wsb_c02261{word-spacing:29.600256pt;}
.ws6_c02261{word-spacing:32.659968pt;}
.ws1_c02261{word-spacing:33.563904pt;}
.ws0_c02261{word-spacing:33.796224pt;}
.ws3_c02261{word-spacing:34.860672pt;}
.ws5_c02261{word-spacing:35.468928pt;}
.ws7_c02261{word-spacing:37.357056pt;}
._0_c02261{margin-left:-1.731840pt;}
._2_c02261{width:1.317888pt;}
._4_c02261{width:2.994816pt;}
._5_c02261{width:13.112064pt;}
._1_c02261{width:44.668800pt;}
._3_c02261{width:45.805056pt;}
.fs0_c02261{font-size:42.240000pt;}
.fs1_c02261{font-size:53.760000pt;}
.y0_c02261{bottom:0.000000pt;}
.y19_c02261{bottom:130.665211pt;}
.y1b_c02261{bottom:165.866875pt;}
.y1a_c02261{bottom:174.507067pt;}
.y18_c02261{bottom:245.225371pt;}
.y17_c02261{bottom:317.225563pt;}
.y15_c02261{bottom:361.386427pt;}
.y11_c02261{bottom:377.386939pt;}
.y16_c02261{bottom:407.786011pt;}
.y14_c02261{bottom:437.226235pt;}
.y13_c02261{bottom:453.226747pt;}
.y10_c02261{bottom:482.666971pt;}
.y12_c02261{bottom:497.386555pt;}
.yf_c02261{bottom:513.387067pt;}
.y1c_c02261{bottom:546.027067pt;}
.yb_c02261{bottom:593.385179pt;}
.yd_c02261{bottom:628.586875pt;}
.yc_c02261{bottom:637.227067pt;}
.ya_c02261{bottom:707.945339pt;}
.y9_c02261{bottom:779.945531pt;}
.y7_c02261{bottom:823.786427pt;}
.y3_c02261{bottom:839.786939pt;}
.y8_c02261{bottom:870.505979pt;}
.y6_c02261{bottom:899.946203pt;}
.y5_c02261{bottom:915.946715pt;}
.y2_c02261{bottom:945.386939pt;}
.y4_c02261{bottom:959.786555pt;}
.y1_c02261{bottom:975.787067pt;}
.ye_c02261{bottom:1008.747067pt;}
.h3_c02261{height:28.916250pt;}
.h1_c02261{height:37.063125pt;}
.h2_c02261{height:37.166250pt;}
.h4_c02261{height:48.581988pt;}
.h0_c02261{height:1122.666667pt;}
.w1_c02261{width:793.333333pt;}
.w0_c02261{width:793.626667pt;}
.x0_c02261{left:0.000000pt;}
.xd_c02261{left:104.000000pt;}
.x8_c02261{left:391.999872pt;}
.x4_c02261{left:396.160512pt;}
.xb_c02261{left:400.960000pt;}
.x7_c02261{left:404.799648pt;}
.x5_c02261{left:410.560128pt;}
.x1_c02261{left:411.840000pt;}
.xa_c02261{left:429.760320pt;}
.x9_c02261{left:437.439552pt;}
.x6_c02261{left:438.400512pt;}
.xc_c02261{left:450.560320pt;}
.x3_c02261{left:455.039904pt;}
.x2_c02261{left:468.159648pt;}
}





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

.ir_c02262:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02262{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02262;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02262{font-family:ff1_c02262;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02262;src:url('chunks/assets/font_7790d99a419e2fadfa8d9571.woff2')format("woff");}.ff2_c02262{font-family:ff2_c02262;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02262;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02262{font-family:ff3_c02262;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02262{vertical-align:0.000000px;}
.v1_c02262{vertical-align:1.439424px;}
.lse_c02262{letter-spacing:-1.197504px;}
.ls9_c02262{letter-spacing:-0.755568px;}
.lsa_c02262{letter-spacing:-0.574992px;}
.lsb_c02262{letter-spacing:-0.361152px;}
.ls11_c02262{letter-spacing:-0.275616px;}
.lsf_c02262{letter-spacing:-0.261360px;}
.ls6_c02262{letter-spacing:-0.242352px;}
.ls3_c02262{letter-spacing:-0.118800px;}
.ls14_c02262{letter-spacing:0.000000px;}
.ls0_c02262{letter-spacing:0.006048px;}
.ls5_c02262{letter-spacing:0.128304px;}
.ls7_c02262{letter-spacing:0.242352px;}
.lsd_c02262{letter-spacing:0.508464px;}
.ls13_c02262{letter-spacing:0.514080px;}
.ls10_c02262{letter-spacing:0.536976px;}
.lsc_c02262{letter-spacing:0.579744px;}
.ls12_c02262{letter-spacing:0.594000px;}
.ls8_c02262{letter-spacing:0.598752px;}
.ls1_c02262{letter-spacing:0.613008px;}
.ls4_c02262{letter-spacing:0.717552px;}
.ls2_c02262{letter-spacing:0.722304px;}
.sc__c02262{text-shadow:none;}
.sc0_c02262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02262{-webkit-text-stroke:0px transparent;}
.sc0_c02262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02262{word-spacing:-15.126048px;}
.wsa_c02262{word-spacing:-12.474000px;}
.ws8_c02262{word-spacing:-12.459744px;}
.ws9_c02262{word-spacing:-12.416976px;}
.ws2_c02262{word-spacing:-12.122352px;}
.ws4_c02262{word-spacing:-11.124432px;}
.ws13_c02262{word-spacing:-2.159136px;}
.wsd_c02262{word-spacing:-0.974160px;}
.wsf_c02262{word-spacing:-0.118800px;}
.ws11_c02262{word-spacing:-0.099792px;}
.ws12_c02262{word-spacing:-0.085536px;}
.wse_c02262{word-spacing:0.000000px;}
.ws10_c02262{word-spacing:0.836352px;}
.wsb_c02262{word-spacing:33.300288px;}
.ws6_c02262{word-spacing:36.742464px;}
.ws1_c02262{word-spacing:37.759392px;}
.ws0_c02262{word-spacing:38.020752px;}
.ws3_c02262{word-spacing:39.218256px;}
.ws5_c02262{word-spacing:39.902544px;}
.ws7_c02262{word-spacing:42.026688px;}
._0_c02262{margin-left:-1.948320px;}
._2_c02262{width:1.482624px;}
._4_c02262{width:3.369168px;}
._5_c02262{width:14.751072px;}
._1_c02262{width:50.252400px;}
._3_c02262{width:51.530688px;}
.fc0_c02262{color:rgb(0,0,0);}
.fs0_c02262{font-size:47.520000px;}
.fs1_c02262{font-size:60.480000px;}
.y0_c02262{bottom:0.000000px;}
.y19_c02262{bottom:146.998362px;}
.y1b_c02262{bottom:186.600234px;}
.y1a_c02262{bottom:196.320450px;}
.y18_c02262{bottom:275.878542px;}
.y17_c02262{bottom:356.878758px;}
.y15_c02262{bottom:406.559730px;}
.y11_c02262{bottom:424.560306px;}
.y16_c02262{bottom:458.759262px;}
.y14_c02262{bottom:491.879514px;}
.y13_c02262{bottom:509.880090px;}
.y10_c02262{bottom:543.000342px;}
.y12_c02262{bottom:559.559874px;}
.yf_c02262{bottom:577.560450px;}
.y1c_c02262{bottom:614.280450px;}
.yb_c02262{bottom:667.558326px;}
.yd_c02262{bottom:707.160234px;}
.yc_c02262{bottom:716.880450px;}
.ya_c02262{bottom:796.438506px;}
.y9_c02262{bottom:877.438722px;}
.y7_c02262{bottom:926.759730px;}
.y3_c02262{bottom:944.760306px;}
.y8_c02262{bottom:979.319226px;}
.y6_c02262{bottom:1012.439478px;}
.y5_c02262{bottom:1030.440054px;}
.y2_c02262{bottom:1063.560306px;}
.y4_c02262{bottom:1079.759874px;}
.y1_c02262{bottom:1097.760450px;}
.ye_c02262{bottom:1134.840450px;}
.h3_c02262{height:32.530781px;}
.h1_c02262{height:41.696016px;}
.h2_c02262{height:41.812031px;}
.h4_c02262{height:54.654737px;}
.h0_c02262{height:1263.000000px;}
.w1_c02262{width:892.500000px;}
.w0_c02262{width:892.830000px;}
.x0_c02262{left:0.000000px;}
.xd_c02262{left:117.000000px;}
.x8_c02262{left:440.999856px;}
.x4_c02262{left:445.680576px;}
.xb_c02262{left:451.080000px;}
.x7_c02262{left:455.399604px;}
.x5_c02262{left:461.880144px;}
.x1_c02262{left:463.320000px;}
.xa_c02262{left:483.480360px;}
.x9_c02262{left:492.119496px;}
.x6_c02262{left:493.200576px;}
.xc_c02262{left:506.880360px;}
.x3_c02262{left:511.919892px;}
.x2_c02262{left:526.679604px;}
@media print{
.v0_c02262{vertical-align:0.000000pt;}
.v1_c02262{vertical-align:1.279488pt;}
.lse_c02262{letter-spacing:-1.064448pt;}
.ls9_c02262{letter-spacing:-0.671616pt;}
.lsa_c02262{letter-spacing:-0.511104pt;}
.lsb_c02262{letter-spacing:-0.321024pt;}
.ls11_c02262{letter-spacing:-0.244992pt;}
.lsf_c02262{letter-spacing:-0.232320pt;}
.ls6_c02262{letter-spacing:-0.215424pt;}
.ls3_c02262{letter-spacing:-0.105600pt;}
.ls14_c02262{letter-spacing:0.000000pt;}
.ls0_c02262{letter-spacing:0.005376pt;}
.ls5_c02262{letter-spacing:0.114048pt;}
.ls7_c02262{letter-spacing:0.215424pt;}
.lsd_c02262{letter-spacing:0.451968pt;}
.ls13_c02262{letter-spacing:0.456960pt;}
.ls10_c02262{letter-spacing:0.477312pt;}
.lsc_c02262{letter-spacing:0.515328pt;}
.ls12_c02262{letter-spacing:0.528000pt;}
.ls8_c02262{letter-spacing:0.532224pt;}
.ls1_c02262{letter-spacing:0.544896pt;}
.ls4_c02262{letter-spacing:0.637824pt;}
.ls2_c02262{letter-spacing:0.642048pt;}
.wsc_c02262{word-spacing:-13.445376pt;}
.wsa_c02262{word-spacing:-11.088000pt;}
.ws8_c02262{word-spacing:-11.075328pt;}
.ws9_c02262{word-spacing:-11.037312pt;}
.ws2_c02262{word-spacing:-10.775424pt;}
.ws4_c02262{word-spacing:-9.888384pt;}
.ws13_c02262{word-spacing:-1.919232pt;}
.wsd_c02262{word-spacing:-0.865920pt;}
.wsf_c02262{word-spacing:-0.105600pt;}
.ws11_c02262{word-spacing:-0.088704pt;}
.ws12_c02262{word-spacing:-0.076032pt;}
.wse_c02262{word-spacing:0.000000pt;}
.ws10_c02262{word-spacing:0.743424pt;}
.wsb_c02262{word-spacing:29.600256pt;}
.ws6_c02262{word-spacing:32.659968pt;}
.ws1_c02262{word-spacing:33.563904pt;}
.ws0_c02262{word-spacing:33.796224pt;}
.ws3_c02262{word-spacing:34.860672pt;}
.ws5_c02262{word-spacing:35.468928pt;}
.ws7_c02262{word-spacing:37.357056pt;}
._0_c02262{margin-left:-1.731840pt;}
._2_c02262{width:1.317888pt;}
._4_c02262{width:2.994816pt;}
._5_c02262{width:13.112064pt;}
._1_c02262{width:44.668800pt;}
._3_c02262{width:45.805056pt;}
.fs0_c02262{font-size:42.240000pt;}
.fs1_c02262{font-size:53.760000pt;}
.y0_c02262{bottom:0.000000pt;}
.y19_c02262{bottom:130.665211pt;}
.y1b_c02262{bottom:165.866875pt;}
.y1a_c02262{bottom:174.507067pt;}
.y18_c02262{bottom:245.225371pt;}
.y17_c02262{bottom:317.225563pt;}
.y15_c02262{bottom:361.386427pt;}
.y11_c02262{bottom:377.386939pt;}
.y16_c02262{bottom:407.786011pt;}
.y14_c02262{bottom:437.226235pt;}
.y13_c02262{bottom:453.226747pt;}
.y10_c02262{bottom:482.666971pt;}
.y12_c02262{bottom:497.386555pt;}
.yf_c02262{bottom:513.387067pt;}
.y1c_c02262{bottom:546.027067pt;}
.yb_c02262{bottom:593.385179pt;}
.yd_c02262{bottom:628.586875pt;}
.yc_c02262{bottom:637.227067pt;}
.ya_c02262{bottom:707.945339pt;}
.y9_c02262{bottom:779.945531pt;}
.y7_c02262{bottom:823.786427pt;}
.y3_c02262{bottom:839.786939pt;}
.y8_c02262{bottom:870.505979pt;}
.y6_c02262{bottom:899.946203pt;}
.y5_c02262{bottom:915.946715pt;}
.y2_c02262{bottom:945.386939pt;}
.y4_c02262{bottom:959.786555pt;}
.y1_c02262{bottom:975.787067pt;}
.ye_c02262{bottom:1008.747067pt;}
.h3_c02262{height:28.916250pt;}
.h1_c02262{height:37.063125pt;}
.h2_c02262{height:37.166250pt;}
.h4_c02262{height:48.581988pt;}
.h0_c02262{height:1122.666667pt;}
.w1_c02262{width:793.333333pt;}
.w0_c02262{width:793.626667pt;}
.x0_c02262{left:0.000000pt;}
.xd_c02262{left:104.000000pt;}
.x8_c02262{left:391.999872pt;}
.x4_c02262{left:396.160512pt;}
.xb_c02262{left:400.960000pt;}
.x7_c02262{left:404.799648pt;}
.x5_c02262{left:410.560128pt;}
.x1_c02262{left:411.840000pt;}
.xa_c02262{left:429.760320pt;}
.x9_c02262{left:437.439552pt;}
.x6_c02262{left:438.400512pt;}
.xc_c02262{left:450.560320pt;}
.x3_c02262{left:455.039904pt;}
.x2_c02262{left:468.159648pt;}
}





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

.ir_c02263:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02263{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02263;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02263{font-family:ff1_c02263;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02263;src:url('chunks/assets/font_49f6e68d567ab9bb8ea1dc94.woff2')format("woff");}.ff2_c02263{font-family:ff2_c02263;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02263;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02263{font-family:ff3_c02263;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02263{vertical-align:0.000000px;}
.v1_c02263{vertical-align:1.439424px;}
.lse_c02263{letter-spacing:-1.197504px;}
.ls9_c02263{letter-spacing:-0.755568px;}
.lsa_c02263{letter-spacing:-0.574992px;}
.lsb_c02263{letter-spacing:-0.361152px;}
.ls11_c02263{letter-spacing:-0.275616px;}
.lsf_c02263{letter-spacing:-0.261360px;}
.ls6_c02263{letter-spacing:-0.242352px;}
.ls3_c02263{letter-spacing:-0.118800px;}
.ls14_c02263{letter-spacing:0.000000px;}
.ls0_c02263{letter-spacing:0.006048px;}
.ls5_c02263{letter-spacing:0.128304px;}
.ls7_c02263{letter-spacing:0.242352px;}
.lsd_c02263{letter-spacing:0.508464px;}
.ls13_c02263{letter-spacing:0.514080px;}
.ls10_c02263{letter-spacing:0.536976px;}
.lsc_c02263{letter-spacing:0.579744px;}
.ls12_c02263{letter-spacing:0.594000px;}
.ls8_c02263{letter-spacing:0.598752px;}
.ls1_c02263{letter-spacing:0.613008px;}
.ls4_c02263{letter-spacing:0.717552px;}
.ls2_c02263{letter-spacing:0.722304px;}
.sc__c02263{text-shadow:none;}
.sc0_c02263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02263{-webkit-text-stroke:0px transparent;}
.sc0_c02263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02263{word-spacing:-15.126048px;}
.wsa_c02263{word-spacing:-12.474000px;}
.ws8_c02263{word-spacing:-12.459744px;}
.ws9_c02263{word-spacing:-12.416976px;}
.ws2_c02263{word-spacing:-12.122352px;}
.ws4_c02263{word-spacing:-11.124432px;}
.ws13_c02263{word-spacing:-2.159136px;}
.wsd_c02263{word-spacing:-0.974160px;}
.wsf_c02263{word-spacing:-0.118800px;}
.ws11_c02263{word-spacing:-0.099792px;}
.ws12_c02263{word-spacing:-0.085536px;}
.wse_c02263{word-spacing:0.000000px;}
.ws10_c02263{word-spacing:0.836352px;}
.wsb_c02263{word-spacing:33.300288px;}
.ws6_c02263{word-spacing:36.742464px;}
.ws1_c02263{word-spacing:37.759392px;}
.ws0_c02263{word-spacing:38.020752px;}
.ws3_c02263{word-spacing:39.218256px;}
.ws5_c02263{word-spacing:39.902544px;}
.ws7_c02263{word-spacing:42.026688px;}
._0_c02263{margin-left:-1.948320px;}
._2_c02263{width:1.482624px;}
._4_c02263{width:3.369168px;}
._5_c02263{width:14.751072px;}
._1_c02263{width:50.252400px;}
._3_c02263{width:51.530688px;}
.fc0_c02263{color:rgb(0,0,0);}
.fs0_c02263{font-size:47.520000px;}
.fs1_c02263{font-size:60.480000px;}
.y0_c02263{bottom:0.000000px;}
.y19_c02263{bottom:146.998362px;}
.y1b_c02263{bottom:186.600234px;}
.y1a_c02263{bottom:196.320450px;}
.y18_c02263{bottom:275.878542px;}
.y17_c02263{bottom:356.878758px;}
.y15_c02263{bottom:406.559730px;}
.y11_c02263{bottom:424.560306px;}
.y16_c02263{bottom:458.759262px;}
.y14_c02263{bottom:491.879514px;}
.y13_c02263{bottom:509.880090px;}
.y10_c02263{bottom:543.000342px;}
.y12_c02263{bottom:559.559874px;}
.yf_c02263{bottom:577.560450px;}
.y1c_c02263{bottom:614.280450px;}
.yb_c02263{bottom:667.558326px;}
.yd_c02263{bottom:707.160234px;}
.yc_c02263{bottom:716.880450px;}
.ya_c02263{bottom:796.438506px;}
.y9_c02263{bottom:877.438722px;}
.y7_c02263{bottom:926.759730px;}
.y3_c02263{bottom:944.760306px;}
.y8_c02263{bottom:979.319226px;}
.y6_c02263{bottom:1012.439478px;}
.y5_c02263{bottom:1030.440054px;}
.y2_c02263{bottom:1063.560306px;}
.y4_c02263{bottom:1079.759874px;}
.y1_c02263{bottom:1097.760450px;}
.ye_c02263{bottom:1134.840450px;}
.h3_c02263{height:32.530781px;}
.h1_c02263{height:41.696016px;}
.h2_c02263{height:41.812031px;}
.h4_c02263{height:54.654737px;}
.h0_c02263{height:1263.000000px;}
.w1_c02263{width:892.500000px;}
.w0_c02263{width:892.830000px;}
.x0_c02263{left:0.000000px;}
.xd_c02263{left:117.000000px;}
.x8_c02263{left:440.999856px;}
.x4_c02263{left:445.680576px;}
.xb_c02263{left:451.080000px;}
.x7_c02263{left:455.399604px;}
.x5_c02263{left:461.880144px;}
.x1_c02263{left:463.320000px;}
.xa_c02263{left:483.480360px;}
.x9_c02263{left:492.119496px;}
.x6_c02263{left:493.200576px;}
.xc_c02263{left:506.880360px;}
.x3_c02263{left:511.919892px;}
.x2_c02263{left:526.679604px;}
@media print{
.v0_c02263{vertical-align:0.000000pt;}
.v1_c02263{vertical-align:1.279488pt;}
.lse_c02263{letter-spacing:-1.064448pt;}
.ls9_c02263{letter-spacing:-0.671616pt;}
.lsa_c02263{letter-spacing:-0.511104pt;}
.lsb_c02263{letter-spacing:-0.321024pt;}
.ls11_c02263{letter-spacing:-0.244992pt;}
.lsf_c02263{letter-spacing:-0.232320pt;}
.ls6_c02263{letter-spacing:-0.215424pt;}
.ls3_c02263{letter-spacing:-0.105600pt;}
.ls14_c02263{letter-spacing:0.000000pt;}
.ls0_c02263{letter-spacing:0.005376pt;}
.ls5_c02263{letter-spacing:0.114048pt;}
.ls7_c02263{letter-spacing:0.215424pt;}
.lsd_c02263{letter-spacing:0.451968pt;}
.ls13_c02263{letter-spacing:0.456960pt;}
.ls10_c02263{letter-spacing:0.477312pt;}
.lsc_c02263{letter-spacing:0.515328pt;}
.ls12_c02263{letter-spacing:0.528000pt;}
.ls8_c02263{letter-spacing:0.532224pt;}
.ls1_c02263{letter-spacing:0.544896pt;}
.ls4_c02263{letter-spacing:0.637824pt;}
.ls2_c02263{letter-spacing:0.642048pt;}
.wsc_c02263{word-spacing:-13.445376pt;}
.wsa_c02263{word-spacing:-11.088000pt;}
.ws8_c02263{word-spacing:-11.075328pt;}
.ws9_c02263{word-spacing:-11.037312pt;}
.ws2_c02263{word-spacing:-10.775424pt;}
.ws4_c02263{word-spacing:-9.888384pt;}
.ws13_c02263{word-spacing:-1.919232pt;}
.wsd_c02263{word-spacing:-0.865920pt;}
.wsf_c02263{word-spacing:-0.105600pt;}
.ws11_c02263{word-spacing:-0.088704pt;}
.ws12_c02263{word-spacing:-0.076032pt;}
.wse_c02263{word-spacing:0.000000pt;}
.ws10_c02263{word-spacing:0.743424pt;}
.wsb_c02263{word-spacing:29.600256pt;}
.ws6_c02263{word-spacing:32.659968pt;}
.ws1_c02263{word-spacing:33.563904pt;}
.ws0_c02263{word-spacing:33.796224pt;}
.ws3_c02263{word-spacing:34.860672pt;}
.ws5_c02263{word-spacing:35.468928pt;}
.ws7_c02263{word-spacing:37.357056pt;}
._0_c02263{margin-left:-1.731840pt;}
._2_c02263{width:1.317888pt;}
._4_c02263{width:2.994816pt;}
._5_c02263{width:13.112064pt;}
._1_c02263{width:44.668800pt;}
._3_c02263{width:45.805056pt;}
.fs0_c02263{font-size:42.240000pt;}
.fs1_c02263{font-size:53.760000pt;}
.y0_c02263{bottom:0.000000pt;}
.y19_c02263{bottom:130.665211pt;}
.y1b_c02263{bottom:165.866875pt;}
.y1a_c02263{bottom:174.507067pt;}
.y18_c02263{bottom:245.225371pt;}
.y17_c02263{bottom:317.225563pt;}
.y15_c02263{bottom:361.386427pt;}
.y11_c02263{bottom:377.386939pt;}
.y16_c02263{bottom:407.786011pt;}
.y14_c02263{bottom:437.226235pt;}
.y13_c02263{bottom:453.226747pt;}
.y10_c02263{bottom:482.666971pt;}
.y12_c02263{bottom:497.386555pt;}
.yf_c02263{bottom:513.387067pt;}
.y1c_c02263{bottom:546.027067pt;}
.yb_c02263{bottom:593.385179pt;}
.yd_c02263{bottom:628.586875pt;}
.yc_c02263{bottom:637.227067pt;}
.ya_c02263{bottom:707.945339pt;}
.y9_c02263{bottom:779.945531pt;}
.y7_c02263{bottom:823.786427pt;}
.y3_c02263{bottom:839.786939pt;}
.y8_c02263{bottom:870.505979pt;}
.y6_c02263{bottom:899.946203pt;}
.y5_c02263{bottom:915.946715pt;}
.y2_c02263{bottom:945.386939pt;}
.y4_c02263{bottom:959.786555pt;}
.y1_c02263{bottom:975.787067pt;}
.ye_c02263{bottom:1008.747067pt;}
.h3_c02263{height:28.916250pt;}
.h1_c02263{height:37.063125pt;}
.h2_c02263{height:37.166250pt;}
.h4_c02263{height:48.581988pt;}
.h0_c02263{height:1122.666667pt;}
.w1_c02263{width:793.333333pt;}
.w0_c02263{width:793.626667pt;}
.x0_c02263{left:0.000000pt;}
.xd_c02263{left:104.000000pt;}
.x8_c02263{left:391.999872pt;}
.x4_c02263{left:396.160512pt;}
.xb_c02263{left:400.960000pt;}
.x7_c02263{left:404.799648pt;}
.x5_c02263{left:410.560128pt;}
.x1_c02263{left:411.840000pt;}
.xa_c02263{left:429.760320pt;}
.x9_c02263{left:437.439552pt;}
.x6_c02263{left:438.400512pt;}
.xc_c02263{left:450.560320pt;}
.x3_c02263{left:455.039904pt;}
.x2_c02263{left:468.159648pt;}
}





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

.ir_c02264:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02264{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02264;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02264{font-family:ff1_c02264;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02264;src:url('chunks/assets/font_7790d99a419e2fadfa8d9571.woff2')format("woff");}.ff2_c02264{font-family:ff2_c02264;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02264;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02264{font-family:ff3_c02264;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02264{vertical-align:0.000000px;}
.v1_c02264{vertical-align:1.439424px;}
.lse_c02264{letter-spacing:-1.197504px;}
.ls9_c02264{letter-spacing:-0.755568px;}
.lsa_c02264{letter-spacing:-0.574992px;}
.lsb_c02264{letter-spacing:-0.361152px;}
.ls11_c02264{letter-spacing:-0.275616px;}
.lsf_c02264{letter-spacing:-0.261360px;}
.ls6_c02264{letter-spacing:-0.242352px;}
.ls3_c02264{letter-spacing:-0.118800px;}
.ls14_c02264{letter-spacing:0.000000px;}
.ls0_c02264{letter-spacing:0.006048px;}
.ls5_c02264{letter-spacing:0.128304px;}
.ls7_c02264{letter-spacing:0.242352px;}
.lsd_c02264{letter-spacing:0.508464px;}
.ls13_c02264{letter-spacing:0.514080px;}
.ls10_c02264{letter-spacing:0.536976px;}
.lsc_c02264{letter-spacing:0.579744px;}
.ls12_c02264{letter-spacing:0.594000px;}
.ls8_c02264{letter-spacing:0.598752px;}
.ls1_c02264{letter-spacing:0.613008px;}
.ls4_c02264{letter-spacing:0.717552px;}
.ls2_c02264{letter-spacing:0.722304px;}
.sc__c02264{text-shadow:none;}
.sc0_c02264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02264{-webkit-text-stroke:0px transparent;}
.sc0_c02264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02264{word-spacing:-15.126048px;}
.wsa_c02264{word-spacing:-12.474000px;}
.ws8_c02264{word-spacing:-12.459744px;}
.ws9_c02264{word-spacing:-12.416976px;}
.ws2_c02264{word-spacing:-12.122352px;}
.ws4_c02264{word-spacing:-11.124432px;}
.ws13_c02264{word-spacing:-2.159136px;}
.wsd_c02264{word-spacing:-0.974160px;}
.wsf_c02264{word-spacing:-0.118800px;}
.ws11_c02264{word-spacing:-0.099792px;}
.ws12_c02264{word-spacing:-0.085536px;}
.wse_c02264{word-spacing:0.000000px;}
.ws10_c02264{word-spacing:0.836352px;}
.wsb_c02264{word-spacing:33.300288px;}
.ws6_c02264{word-spacing:36.742464px;}
.ws1_c02264{word-spacing:37.759392px;}
.ws0_c02264{word-spacing:38.020752px;}
.ws3_c02264{word-spacing:39.218256px;}
.ws5_c02264{word-spacing:39.902544px;}
.ws7_c02264{word-spacing:42.026688px;}
._0_c02264{margin-left:-1.948320px;}
._2_c02264{width:1.482624px;}
._4_c02264{width:3.369168px;}
._5_c02264{width:14.751072px;}
._1_c02264{width:50.252400px;}
._3_c02264{width:51.530688px;}
.fc0_c02264{color:rgb(0,0,0);}
.fs0_c02264{font-size:47.520000px;}
.fs1_c02264{font-size:60.480000px;}
.y0_c02264{bottom:0.000000px;}
.y19_c02264{bottom:146.998362px;}
.y1b_c02264{bottom:186.600234px;}
.y1a_c02264{bottom:196.320450px;}
.y18_c02264{bottom:275.878542px;}
.y17_c02264{bottom:356.878758px;}
.y15_c02264{bottom:406.559730px;}
.y11_c02264{bottom:424.560306px;}
.y16_c02264{bottom:458.759262px;}
.y14_c02264{bottom:491.879514px;}
.y13_c02264{bottom:509.880090px;}
.y10_c02264{bottom:543.000342px;}
.y12_c02264{bottom:559.559874px;}
.yf_c02264{bottom:577.560450px;}
.y1c_c02264{bottom:614.280450px;}
.yb_c02264{bottom:667.558326px;}
.yd_c02264{bottom:707.160234px;}
.yc_c02264{bottom:716.880450px;}
.ya_c02264{bottom:796.438506px;}
.y9_c02264{bottom:877.438722px;}
.y7_c02264{bottom:926.759730px;}
.y3_c02264{bottom:944.760306px;}
.y8_c02264{bottom:979.319226px;}
.y6_c02264{bottom:1012.439478px;}
.y5_c02264{bottom:1030.440054px;}
.y2_c02264{bottom:1063.560306px;}
.y4_c02264{bottom:1079.759874px;}
.y1_c02264{bottom:1097.760450px;}
.ye_c02264{bottom:1134.840450px;}
.h3_c02264{height:32.530781px;}
.h1_c02264{height:41.696016px;}
.h2_c02264{height:41.812031px;}
.h4_c02264{height:54.654737px;}
.h0_c02264{height:1263.000000px;}
.w1_c02264{width:892.500000px;}
.w0_c02264{width:892.830000px;}
.x0_c02264{left:0.000000px;}
.xd_c02264{left:117.000000px;}
.x8_c02264{left:440.999856px;}
.x4_c02264{left:445.680576px;}
.xb_c02264{left:451.080000px;}
.x7_c02264{left:455.399604px;}
.x5_c02264{left:461.880144px;}
.x1_c02264{left:463.320000px;}
.xa_c02264{left:483.480360px;}
.x9_c02264{left:492.119496px;}
.x6_c02264{left:493.200576px;}
.xc_c02264{left:506.880360px;}
.x3_c02264{left:511.919892px;}
.x2_c02264{left:526.679604px;}
@media print{
.v0_c02264{vertical-align:0.000000pt;}
.v1_c02264{vertical-align:1.279488pt;}
.lse_c02264{letter-spacing:-1.064448pt;}
.ls9_c02264{letter-spacing:-0.671616pt;}
.lsa_c02264{letter-spacing:-0.511104pt;}
.lsb_c02264{letter-spacing:-0.321024pt;}
.ls11_c02264{letter-spacing:-0.244992pt;}
.lsf_c02264{letter-spacing:-0.232320pt;}
.ls6_c02264{letter-spacing:-0.215424pt;}
.ls3_c02264{letter-spacing:-0.105600pt;}
.ls14_c02264{letter-spacing:0.000000pt;}
.ls0_c02264{letter-spacing:0.005376pt;}
.ls5_c02264{letter-spacing:0.114048pt;}
.ls7_c02264{letter-spacing:0.215424pt;}
.lsd_c02264{letter-spacing:0.451968pt;}
.ls13_c02264{letter-spacing:0.456960pt;}
.ls10_c02264{letter-spacing:0.477312pt;}
.lsc_c02264{letter-spacing:0.515328pt;}
.ls12_c02264{letter-spacing:0.528000pt;}
.ls8_c02264{letter-spacing:0.532224pt;}
.ls1_c02264{letter-spacing:0.544896pt;}
.ls4_c02264{letter-spacing:0.637824pt;}
.ls2_c02264{letter-spacing:0.642048pt;}
.wsc_c02264{word-spacing:-13.445376pt;}
.wsa_c02264{word-spacing:-11.088000pt;}
.ws8_c02264{word-spacing:-11.075328pt;}
.ws9_c02264{word-spacing:-11.037312pt;}
.ws2_c02264{word-spacing:-10.775424pt;}
.ws4_c02264{word-spacing:-9.888384pt;}
.ws13_c02264{word-spacing:-1.919232pt;}
.wsd_c02264{word-spacing:-0.865920pt;}
.wsf_c02264{word-spacing:-0.105600pt;}
.ws11_c02264{word-spacing:-0.088704pt;}
.ws12_c02264{word-spacing:-0.076032pt;}
.wse_c02264{word-spacing:0.000000pt;}
.ws10_c02264{word-spacing:0.743424pt;}
.wsb_c02264{word-spacing:29.600256pt;}
.ws6_c02264{word-spacing:32.659968pt;}
.ws1_c02264{word-spacing:33.563904pt;}
.ws0_c02264{word-spacing:33.796224pt;}
.ws3_c02264{word-spacing:34.860672pt;}
.ws5_c02264{word-spacing:35.468928pt;}
.ws7_c02264{word-spacing:37.357056pt;}
._0_c02264{margin-left:-1.731840pt;}
._2_c02264{width:1.317888pt;}
._4_c02264{width:2.994816pt;}
._5_c02264{width:13.112064pt;}
._1_c02264{width:44.668800pt;}
._3_c02264{width:45.805056pt;}
.fs0_c02264{font-size:42.240000pt;}
.fs1_c02264{font-size:53.760000pt;}
.y0_c02264{bottom:0.000000pt;}
.y19_c02264{bottom:130.665211pt;}
.y1b_c02264{bottom:165.866875pt;}
.y1a_c02264{bottom:174.507067pt;}
.y18_c02264{bottom:245.225371pt;}
.y17_c02264{bottom:317.225563pt;}
.y15_c02264{bottom:361.386427pt;}
.y11_c02264{bottom:377.386939pt;}
.y16_c02264{bottom:407.786011pt;}
.y14_c02264{bottom:437.226235pt;}
.y13_c02264{bottom:453.226747pt;}
.y10_c02264{bottom:482.666971pt;}
.y12_c02264{bottom:497.386555pt;}
.yf_c02264{bottom:513.387067pt;}
.y1c_c02264{bottom:546.027067pt;}
.yb_c02264{bottom:593.385179pt;}
.yd_c02264{bottom:628.586875pt;}
.yc_c02264{bottom:637.227067pt;}
.ya_c02264{bottom:707.945339pt;}
.y9_c02264{bottom:779.945531pt;}
.y7_c02264{bottom:823.786427pt;}
.y3_c02264{bottom:839.786939pt;}
.y8_c02264{bottom:870.505979pt;}
.y6_c02264{bottom:899.946203pt;}
.y5_c02264{bottom:915.946715pt;}
.y2_c02264{bottom:945.386939pt;}
.y4_c02264{bottom:959.786555pt;}
.y1_c02264{bottom:975.787067pt;}
.ye_c02264{bottom:1008.747067pt;}
.h3_c02264{height:28.916250pt;}
.h1_c02264{height:37.063125pt;}
.h2_c02264{height:37.166250pt;}
.h4_c02264{height:48.581988pt;}
.h0_c02264{height:1122.666667pt;}
.w1_c02264{width:793.333333pt;}
.w0_c02264{width:793.626667pt;}
.x0_c02264{left:0.000000pt;}
.xd_c02264{left:104.000000pt;}
.x8_c02264{left:391.999872pt;}
.x4_c02264{left:396.160512pt;}
.xb_c02264{left:400.960000pt;}
.x7_c02264{left:404.799648pt;}
.x5_c02264{left:410.560128pt;}
.x1_c02264{left:411.840000pt;}
.xa_c02264{left:429.760320pt;}
.x9_c02264{left:437.439552pt;}
.x6_c02264{left:438.400512pt;}
.xc_c02264{left:450.560320pt;}
.x3_c02264{left:455.039904pt;}
.x2_c02264{left:468.159648pt;}
}





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

.ir_c02265:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02265{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02265;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02265{font-family:ff1_c02265;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02265;src:url('chunks/assets/font_7790d99a419e2fadfa8d9571.woff2')format("woff");}.ff2_c02265{font-family:ff2_c02265;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02265;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02265{font-family:ff3_c02265;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02265{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02265{vertical-align:0.000000px;}
.v1_c02265{vertical-align:1.439424px;}
.lse_c02265{letter-spacing:-1.197504px;}
.ls9_c02265{letter-spacing:-0.755568px;}
.lsa_c02265{letter-spacing:-0.574992px;}
.lsb_c02265{letter-spacing:-0.361152px;}
.ls11_c02265{letter-spacing:-0.275616px;}
.lsf_c02265{letter-spacing:-0.261360px;}
.ls6_c02265{letter-spacing:-0.242352px;}
.ls3_c02265{letter-spacing:-0.118800px;}
.ls14_c02265{letter-spacing:0.000000px;}
.ls0_c02265{letter-spacing:0.006048px;}
.ls5_c02265{letter-spacing:0.128304px;}
.ls7_c02265{letter-spacing:0.242352px;}
.lsd_c02265{letter-spacing:0.508464px;}
.ls13_c02265{letter-spacing:0.514080px;}
.ls10_c02265{letter-spacing:0.536976px;}
.lsc_c02265{letter-spacing:0.579744px;}
.ls12_c02265{letter-spacing:0.594000px;}
.ls8_c02265{letter-spacing:0.598752px;}
.ls1_c02265{letter-spacing:0.613008px;}
.ls4_c02265{letter-spacing:0.717552px;}
.ls2_c02265{letter-spacing:0.722304px;}
.sc__c02265{text-shadow:none;}
.sc0_c02265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02265{-webkit-text-stroke:0px transparent;}
.sc0_c02265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02265{word-spacing:-15.126048px;}
.wsa_c02265{word-spacing:-12.474000px;}
.ws8_c02265{word-spacing:-12.459744px;}
.ws9_c02265{word-spacing:-12.416976px;}
.ws2_c02265{word-spacing:-12.122352px;}
.ws4_c02265{word-spacing:-11.124432px;}
.ws13_c02265{word-spacing:-2.159136px;}
.wsd_c02265{word-spacing:-0.974160px;}
.wsf_c02265{word-spacing:-0.118800px;}
.ws11_c02265{word-spacing:-0.099792px;}
.ws12_c02265{word-spacing:-0.085536px;}
.wse_c02265{word-spacing:0.000000px;}
.ws10_c02265{word-spacing:0.836352px;}
.wsb_c02265{word-spacing:33.300288px;}
.ws6_c02265{word-spacing:36.742464px;}
.ws1_c02265{word-spacing:37.759392px;}
.ws0_c02265{word-spacing:38.020752px;}
.ws3_c02265{word-spacing:39.218256px;}
.ws5_c02265{word-spacing:39.902544px;}
.ws7_c02265{word-spacing:42.026688px;}
._0_c02265{margin-left:-1.948320px;}
._2_c02265{width:1.482624px;}
._4_c02265{width:3.369168px;}
._5_c02265{width:14.751072px;}
._1_c02265{width:50.252400px;}
._3_c02265{width:51.530688px;}
.fc0_c02265{color:rgb(0,0,0);}
.fs0_c02265{font-size:47.520000px;}
.fs1_c02265{font-size:60.480000px;}
.y0_c02265{bottom:0.000000px;}
.y19_c02265{bottom:146.998362px;}
.y1b_c02265{bottom:186.600234px;}
.y1a_c02265{bottom:196.320450px;}
.y18_c02265{bottom:275.878542px;}
.y17_c02265{bottom:356.878758px;}
.y15_c02265{bottom:406.559730px;}
.y11_c02265{bottom:424.560306px;}
.y16_c02265{bottom:458.759262px;}
.y14_c02265{bottom:491.879514px;}
.y13_c02265{bottom:509.880090px;}
.y10_c02265{bottom:543.000342px;}
.y12_c02265{bottom:559.559874px;}
.yf_c02265{bottom:577.560450px;}
.y1c_c02265{bottom:614.280450px;}
.yb_c02265{bottom:667.558326px;}
.yd_c02265{bottom:707.160234px;}
.yc_c02265{bottom:716.880450px;}
.ya_c02265{bottom:796.438506px;}
.y9_c02265{bottom:877.438722px;}
.y7_c02265{bottom:926.759730px;}
.y3_c02265{bottom:944.760306px;}
.y8_c02265{bottom:979.319226px;}
.y6_c02265{bottom:1012.439478px;}
.y5_c02265{bottom:1030.440054px;}
.y2_c02265{bottom:1063.560306px;}
.y4_c02265{bottom:1079.759874px;}
.y1_c02265{bottom:1097.760450px;}
.ye_c02265{bottom:1134.840450px;}
.h3_c02265{height:32.530781px;}
.h1_c02265{height:41.696016px;}
.h2_c02265{height:41.812031px;}
.h4_c02265{height:54.654737px;}
.h0_c02265{height:1263.000000px;}
.w1_c02265{width:892.500000px;}
.w0_c02265{width:892.830000px;}
.x0_c02265{left:0.000000px;}
.xd_c02265{left:117.000000px;}
.x8_c02265{left:440.999856px;}
.x4_c02265{left:445.680576px;}
.xb_c02265{left:451.080000px;}
.x7_c02265{left:455.399604px;}
.x5_c02265{left:461.880144px;}
.x1_c02265{left:463.320000px;}
.xa_c02265{left:483.480360px;}
.x9_c02265{left:492.119496px;}
.x6_c02265{left:493.200576px;}
.xc_c02265{left:506.880360px;}
.x3_c02265{left:511.919892px;}
.x2_c02265{left:526.679604px;}
@media print{
.v0_c02265{vertical-align:0.000000pt;}
.v1_c02265{vertical-align:1.279488pt;}
.lse_c02265{letter-spacing:-1.064448pt;}
.ls9_c02265{letter-spacing:-0.671616pt;}
.lsa_c02265{letter-spacing:-0.511104pt;}
.lsb_c02265{letter-spacing:-0.321024pt;}
.ls11_c02265{letter-spacing:-0.244992pt;}
.lsf_c02265{letter-spacing:-0.232320pt;}
.ls6_c02265{letter-spacing:-0.215424pt;}
.ls3_c02265{letter-spacing:-0.105600pt;}
.ls14_c02265{letter-spacing:0.000000pt;}
.ls0_c02265{letter-spacing:0.005376pt;}
.ls5_c02265{letter-spacing:0.114048pt;}
.ls7_c02265{letter-spacing:0.215424pt;}
.lsd_c02265{letter-spacing:0.451968pt;}
.ls13_c02265{letter-spacing:0.456960pt;}
.ls10_c02265{letter-spacing:0.477312pt;}
.lsc_c02265{letter-spacing:0.515328pt;}
.ls12_c02265{letter-spacing:0.528000pt;}
.ls8_c02265{letter-spacing:0.532224pt;}
.ls1_c02265{letter-spacing:0.544896pt;}
.ls4_c02265{letter-spacing:0.637824pt;}
.ls2_c02265{letter-spacing:0.642048pt;}
.wsc_c02265{word-spacing:-13.445376pt;}
.wsa_c02265{word-spacing:-11.088000pt;}
.ws8_c02265{word-spacing:-11.075328pt;}
.ws9_c02265{word-spacing:-11.037312pt;}
.ws2_c02265{word-spacing:-10.775424pt;}
.ws4_c02265{word-spacing:-9.888384pt;}
.ws13_c02265{word-spacing:-1.919232pt;}
.wsd_c02265{word-spacing:-0.865920pt;}
.wsf_c02265{word-spacing:-0.105600pt;}
.ws11_c02265{word-spacing:-0.088704pt;}
.ws12_c02265{word-spacing:-0.076032pt;}
.wse_c02265{word-spacing:0.000000pt;}
.ws10_c02265{word-spacing:0.743424pt;}
.wsb_c02265{word-spacing:29.600256pt;}
.ws6_c02265{word-spacing:32.659968pt;}
.ws1_c02265{word-spacing:33.563904pt;}
.ws0_c02265{word-spacing:33.796224pt;}
.ws3_c02265{word-spacing:34.860672pt;}
.ws5_c02265{word-spacing:35.468928pt;}
.ws7_c02265{word-spacing:37.357056pt;}
._0_c02265{margin-left:-1.731840pt;}
._2_c02265{width:1.317888pt;}
._4_c02265{width:2.994816pt;}
._5_c02265{width:13.112064pt;}
._1_c02265{width:44.668800pt;}
._3_c02265{width:45.805056pt;}
.fs0_c02265{font-size:42.240000pt;}
.fs1_c02265{font-size:53.760000pt;}
.y0_c02265{bottom:0.000000pt;}
.y19_c02265{bottom:130.665211pt;}
.y1b_c02265{bottom:165.866875pt;}
.y1a_c02265{bottom:174.507067pt;}
.y18_c02265{bottom:245.225371pt;}
.y17_c02265{bottom:317.225563pt;}
.y15_c02265{bottom:361.386427pt;}
.y11_c02265{bottom:377.386939pt;}
.y16_c02265{bottom:407.786011pt;}
.y14_c02265{bottom:437.226235pt;}
.y13_c02265{bottom:453.226747pt;}
.y10_c02265{bottom:482.666971pt;}
.y12_c02265{bottom:497.386555pt;}
.yf_c02265{bottom:513.387067pt;}
.y1c_c02265{bottom:546.027067pt;}
.yb_c02265{bottom:593.385179pt;}
.yd_c02265{bottom:628.586875pt;}
.yc_c02265{bottom:637.227067pt;}
.ya_c02265{bottom:707.945339pt;}
.y9_c02265{bottom:779.945531pt;}
.y7_c02265{bottom:823.786427pt;}
.y3_c02265{bottom:839.786939pt;}
.y8_c02265{bottom:870.505979pt;}
.y6_c02265{bottom:899.946203pt;}
.y5_c02265{bottom:915.946715pt;}
.y2_c02265{bottom:945.386939pt;}
.y4_c02265{bottom:959.786555pt;}
.y1_c02265{bottom:975.787067pt;}
.ye_c02265{bottom:1008.747067pt;}
.h3_c02265{height:28.916250pt;}
.h1_c02265{height:37.063125pt;}
.h2_c02265{height:37.166250pt;}
.h4_c02265{height:48.581988pt;}
.h0_c02265{height:1122.666667pt;}
.w1_c02265{width:793.333333pt;}
.w0_c02265{width:793.626667pt;}
.x0_c02265{left:0.000000pt;}
.xd_c02265{left:104.000000pt;}
.x8_c02265{left:391.999872pt;}
.x4_c02265{left:396.160512pt;}
.xb_c02265{left:400.960000pt;}
.x7_c02265{left:404.799648pt;}
.x5_c02265{left:410.560128pt;}
.x1_c02265{left:411.840000pt;}
.xa_c02265{left:429.760320pt;}
.x9_c02265{left:437.439552pt;}
.x6_c02265{left:438.400512pt;}
.xc_c02265{left:450.560320pt;}
.x3_c02265{left:455.039904pt;}
.x2_c02265{left:468.159648pt;}
}





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

.ir_c02266:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02266{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02266;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02266{font-family:ff1_c02266;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02266;src:url('chunks/assets/font_fd9bf683c43b1f2ec9393115.woff2')format("woff");}.ff2_c02266{font-family:ff2_c02266;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02266;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02266{font-family:ff3_c02266;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02266{vertical-align:0.000000px;}
.v1_c02266{vertical-align:1.439424px;}
.lsa_c02266{letter-spacing:-0.940896px;}
.ls14_c02266{letter-spacing:-0.845856px;}
.lsc_c02266{letter-spacing:-0.774576px;}
.ls13_c02266{letter-spacing:-0.736560px;}
.lsf_c02266{letter-spacing:-0.722304px;}
.ls8_c02266{letter-spacing:-0.613008px;}
.lsb_c02266{letter-spacing:-0.574992px;}
.ls10_c02266{letter-spacing:-0.337392px;}
.ls15_c02266{letter-spacing:-0.275616px;}
.ls11_c02266{letter-spacing:-0.261360px;}
.ls7_c02266{letter-spacing:-0.242352px;}
.ls4_c02266{letter-spacing:-0.118800px;}
.ls18_c02266{letter-spacing:0.000000px;}
.ls1_c02266{letter-spacing:0.006048px;}
.ls6_c02266{letter-spacing:0.128304px;}
.lse_c02266{letter-spacing:0.508464px;}
.ls17_c02266{letter-spacing:0.514080px;}
.ls12_c02266{letter-spacing:0.536976px;}
.lsd_c02266{letter-spacing:0.579744px;}
.ls16_c02266{letter-spacing:0.594000px;}
.ls9_c02266{letter-spacing:0.598752px;}
.ls2_c02266{letter-spacing:0.613008px;}
.ls0_c02266{letter-spacing:0.651024px;}
.ls5_c02266{letter-spacing:0.717552px;}
.ls3_c02266{letter-spacing:0.722304px;}
.sc__c02266{text-shadow:none;}
.sc0_c02266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02266{-webkit-text-stroke:0px transparent;}
.sc0_c02266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02266{word-spacing:-15.126048px;}
.wsb_c02266{word-spacing:-12.474000px;}
.ws6_c02266{word-spacing:-12.459744px;}
.ws2_c02266{word-spacing:-11.266992px;}
.ws5_c02266{word-spacing:-11.105424px;}
.ws18_c02266{word-spacing:-2.159136px;}
.ws10_c02266{word-spacing:-1.012176px;}
.wse_c02266{word-spacing:-0.974160px;}
.ws11_c02266{word-spacing:-0.118800px;}
.ws15_c02266{word-spacing:-0.099792px;}
.ws17_c02266{word-spacing:-0.085536px;}
.ws14_c02266{word-spacing:-0.023760px;}
.wsf_c02266{word-spacing:0.000000px;}
.ws13_c02266{word-spacing:0.361152px;}
.ws16_c02266{word-spacing:0.484704px;}
.ws12_c02266{word-spacing:0.579744px;}
.wsa_c02266{word-spacing:6.629040px;}
.wsc_c02266{word-spacing:33.300288px;}
.ws9_c02266{word-spacing:34.836912px;}
.ws8_c02266{word-spacing:36.143712px;}
.ws1_c02266{word-spacing:37.759392px;}
.ws0_c02266{word-spacing:38.020752px;}
.ws3_c02266{word-spacing:39.218256px;}
.ws4_c02266{word-spacing:39.902544px;}
.ws7_c02266{word-spacing:42.026688px;}
._0_c02266{margin-left:-1.948320px;}
._2_c02266{width:1.482624px;}
._4_c02266{width:2.656368px;}
._8_c02266{width:14.751072px;}
._6_c02266{width:19.982160px;}
._7_c02266{width:23.451120px;}
._5_c02266{width:24.691392px;}
._1_c02266{width:50.252400px;}
._3_c02266{width:51.530688px;}
.fc0_c02266{color:rgb(0,0,0);}
.fs0_c02266{font-size:47.520000px;}
.fs1_c02266{font-size:60.480000px;}
.y0_c02266{bottom:0.000000px;}
.y1b_c02266{bottom:131.878686px;}
.y1a_c02266{bottom:146.998362px;}
.y1d_c02266{bottom:186.600234px;}
.y1c_c02266{bottom:196.320450px;}
.y19_c02266{bottom:275.878542px;}
.y18_c02266{bottom:356.878758px;}
.y16_c02266{bottom:406.559730px;}
.y12_c02266{bottom:424.560306px;}
.y17_c02266{bottom:458.759262px;}
.y15_c02266{bottom:491.879514px;}
.y14_c02266{bottom:509.880090px;}
.y11_c02266{bottom:543.000342px;}
.y13_c02266{bottom:559.559874px;}
.y10_c02266{bottom:577.560450px;}
.y1e_c02266{bottom:614.280450px;}
.yc_c02266{bottom:652.438650px;}
.yb_c02266{bottom:667.558326px;}
.ye_c02266{bottom:707.160234px;}
.yd_c02266{bottom:716.880450px;}
.ya_c02266{bottom:796.438506px;}
.y9_c02266{bottom:877.438722px;}
.y7_c02266{bottom:926.759730px;}
.y3_c02266{bottom:944.760306px;}
.y8_c02266{bottom:979.319226px;}
.y6_c02266{bottom:1012.439478px;}
.y5_c02266{bottom:1030.440054px;}
.y2_c02266{bottom:1063.560306px;}
.y4_c02266{bottom:1079.759874px;}
.y1_c02266{bottom:1097.760450px;}
.yf_c02266{bottom:1134.840450px;}
.h3_c02266{height:32.530781px;}
.h1_c02266{height:41.696016px;}
.h2_c02266{height:41.812031px;}
.h4_c02266{height:54.654737px;}
.h0_c02266{height:1263.000000px;}
.w1_c02266{width:892.500000px;}
.w0_c02266{width:892.830000px;}
.x0_c02266{left:0.000000px;}
.xe_c02266{left:117.000000px;}
.x8_c02266{left:440.999856px;}
.x4_c02266{left:445.680576px;}
.xc_c02266{left:451.080000px;}
.x7_c02266{left:455.399604px;}
.x5_c02266{left:461.880144px;}
.x1_c02266{left:463.320000px;}
.xa_c02266{left:483.480360px;}
.x9_c02266{left:492.119496px;}
.x6_c02266{left:493.200576px;}
.xd_c02266{left:506.880360px;}
.x3_c02266{left:511.919892px;}
.x2_c02266{left:526.679604px;}
.xb_c02266{left:569.880036px;}
@media print{
.v0_c02266{vertical-align:0.000000pt;}
.v1_c02266{vertical-align:1.279488pt;}
.lsa_c02266{letter-spacing:-0.836352pt;}
.ls14_c02266{letter-spacing:-0.751872pt;}
.lsc_c02266{letter-spacing:-0.688512pt;}
.ls13_c02266{letter-spacing:-0.654720pt;}
.lsf_c02266{letter-spacing:-0.642048pt;}
.ls8_c02266{letter-spacing:-0.544896pt;}
.lsb_c02266{letter-spacing:-0.511104pt;}
.ls10_c02266{letter-spacing:-0.299904pt;}
.ls15_c02266{letter-spacing:-0.244992pt;}
.ls11_c02266{letter-spacing:-0.232320pt;}
.ls7_c02266{letter-spacing:-0.215424pt;}
.ls4_c02266{letter-spacing:-0.105600pt;}
.ls18_c02266{letter-spacing:0.000000pt;}
.ls1_c02266{letter-spacing:0.005376pt;}
.ls6_c02266{letter-spacing:0.114048pt;}
.lse_c02266{letter-spacing:0.451968pt;}
.ls17_c02266{letter-spacing:0.456960pt;}
.ls12_c02266{letter-spacing:0.477312pt;}
.lsd_c02266{letter-spacing:0.515328pt;}
.ls16_c02266{letter-spacing:0.528000pt;}
.ls9_c02266{letter-spacing:0.532224pt;}
.ls2_c02266{letter-spacing:0.544896pt;}
.ls0_c02266{letter-spacing:0.578688pt;}
.ls5_c02266{letter-spacing:0.637824pt;}
.ls3_c02266{letter-spacing:0.642048pt;}
.wsd_c02266{word-spacing:-13.445376pt;}
.wsb_c02266{word-spacing:-11.088000pt;}
.ws6_c02266{word-spacing:-11.075328pt;}
.ws2_c02266{word-spacing:-10.015104pt;}
.ws5_c02266{word-spacing:-9.871488pt;}
.ws18_c02266{word-spacing:-1.919232pt;}
.ws10_c02266{word-spacing:-0.899712pt;}
.wse_c02266{word-spacing:-0.865920pt;}
.ws11_c02266{word-spacing:-0.105600pt;}
.ws15_c02266{word-spacing:-0.088704pt;}
.ws17_c02266{word-spacing:-0.076032pt;}
.ws14_c02266{word-spacing:-0.021120pt;}
.wsf_c02266{word-spacing:0.000000pt;}
.ws13_c02266{word-spacing:0.321024pt;}
.ws16_c02266{word-spacing:0.430848pt;}
.ws12_c02266{word-spacing:0.515328pt;}
.wsa_c02266{word-spacing:5.892480pt;}
.wsc_c02266{word-spacing:29.600256pt;}
.ws9_c02266{word-spacing:30.966144pt;}
.ws8_c02266{word-spacing:32.127744pt;}
.ws1_c02266{word-spacing:33.563904pt;}
.ws0_c02266{word-spacing:33.796224pt;}
.ws3_c02266{word-spacing:34.860672pt;}
.ws4_c02266{word-spacing:35.468928pt;}
.ws7_c02266{word-spacing:37.357056pt;}
._0_c02266{margin-left:-1.731840pt;}
._2_c02266{width:1.317888pt;}
._4_c02266{width:2.361216pt;}
._8_c02266{width:13.112064pt;}
._6_c02266{width:17.761920pt;}
._7_c02266{width:20.845440pt;}
._5_c02266{width:21.947904pt;}
._1_c02266{width:44.668800pt;}
._3_c02266{width:45.805056pt;}
.fs0_c02266{font-size:42.240000pt;}
.fs1_c02266{font-size:53.760000pt;}
.y0_c02266{bottom:0.000000pt;}
.y1b_c02266{bottom:117.225499pt;}
.y1a_c02266{bottom:130.665211pt;}
.y1d_c02266{bottom:165.866875pt;}
.y1c_c02266{bottom:174.507067pt;}
.y19_c02266{bottom:245.225371pt;}
.y18_c02266{bottom:317.225563pt;}
.y16_c02266{bottom:361.386427pt;}
.y12_c02266{bottom:377.386939pt;}
.y17_c02266{bottom:407.786011pt;}
.y15_c02266{bottom:437.226235pt;}
.y14_c02266{bottom:453.226747pt;}
.y11_c02266{bottom:482.666971pt;}
.y13_c02266{bottom:497.386555pt;}
.y10_c02266{bottom:513.387067pt;}
.y1e_c02266{bottom:546.027067pt;}
.yc_c02266{bottom:579.945467pt;}
.yb_c02266{bottom:593.385179pt;}
.ye_c02266{bottom:628.586875pt;}
.yd_c02266{bottom:637.227067pt;}
.ya_c02266{bottom:707.945339pt;}
.y9_c02266{bottom:779.945531pt;}
.y7_c02266{bottom:823.786427pt;}
.y3_c02266{bottom:839.786939pt;}
.y8_c02266{bottom:870.505979pt;}
.y6_c02266{bottom:899.946203pt;}
.y5_c02266{bottom:915.946715pt;}
.y2_c02266{bottom:945.386939pt;}
.y4_c02266{bottom:959.786555pt;}
.y1_c02266{bottom:975.787067pt;}
.yf_c02266{bottom:1008.747067pt;}
.h3_c02266{height:28.916250pt;}
.h1_c02266{height:37.063125pt;}
.h2_c02266{height:37.166250pt;}
.h4_c02266{height:48.581988pt;}
.h0_c02266{height:1122.666667pt;}
.w1_c02266{width:793.333333pt;}
.w0_c02266{width:793.626667pt;}
.x0_c02266{left:0.000000pt;}
.xe_c02266{left:104.000000pt;}
.x8_c02266{left:391.999872pt;}
.x4_c02266{left:396.160512pt;}
.xc_c02266{left:400.960000pt;}
.x7_c02266{left:404.799648pt;}
.x5_c02266{left:410.560128pt;}
.x1_c02266{left:411.840000pt;}
.xa_c02266{left:429.760320pt;}
.x9_c02266{left:437.439552pt;}
.x6_c02266{left:438.400512pt;}
.xd_c02266{left:450.560320pt;}
.x3_c02266{left:455.039904pt;}
.x2_c02266{left:468.159648pt;}
.xb_c02266{left:506.560032pt;}
}





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

.ir_c02267:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02267{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02267;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02267{font-family:ff1_c02267;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02267;src:url('chunks/assets/font_95a2c990d6d3748078a72e84.woff2')format("woff");}.ff2_c02267{font-family:ff2_c02267;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02267;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02267{font-family:ff3_c02267;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02267{vertical-align:0.000000px;}
.v1_c02267{vertical-align:1.439424px;}
.lse_c02267{letter-spacing:-1.197504px;}
.lsa_c02267{letter-spacing:-0.574992px;}
.lsb_c02267{letter-spacing:-0.361152px;}
.ls10_c02267{letter-spacing:-0.275616px;}
.ls9_c02267{letter-spacing:-0.261360px;}
.ls6_c02267{letter-spacing:-0.242352px;}
.ls3_c02267{letter-spacing:-0.118800px;}
.ls13_c02267{letter-spacing:0.000000px;}
.ls0_c02267{letter-spacing:0.006048px;}
.ls5_c02267{letter-spacing:0.128304px;}
.ls7_c02267{letter-spacing:0.242352px;}
.lsd_c02267{letter-spacing:0.508464px;}
.ls12_c02267{letter-spacing:0.514080px;}
.lsf_c02267{letter-spacing:0.536976px;}
.lsc_c02267{letter-spacing:0.579744px;}
.ls11_c02267{letter-spacing:0.594000px;}
.ls8_c02267{letter-spacing:0.598752px;}
.ls1_c02267{letter-spacing:0.613008px;}
.ls4_c02267{letter-spacing:0.717552px;}
.ls2_c02267{letter-spacing:0.722304px;}
.sc__c02267{text-shadow:none;}
.sc0_c02267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02267{-webkit-text-stroke:0px transparent;}
.sc0_c02267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02267{word-spacing:-15.126048px;}
.ws9_c02267{word-spacing:-12.474000px;}
.ws7_c02267{word-spacing:-12.459744px;}
.ws8_c02267{word-spacing:-12.416976px;}
.ws2_c02267{word-spacing:-12.122352px;}
.ws12_c02267{word-spacing:-2.159136px;}
.wsc_c02267{word-spacing:-0.974160px;}
.wse_c02267{word-spacing:-0.118800px;}
.wsf_c02267{word-spacing:-0.099792px;}
.ws11_c02267{word-spacing:-0.085536px;}
.wsd_c02267{word-spacing:0.000000px;}
.ws10_c02267{word-spacing:0.836352px;}
.wsa_c02267{word-spacing:33.300288px;}
.ws5_c02267{word-spacing:36.742464px;}
.ws1_c02267{word-spacing:37.759392px;}
.ws0_c02267{word-spacing:38.020752px;}
.ws3_c02267{word-spacing:39.218256px;}
.ws4_c02267{word-spacing:39.902544px;}
.ws6_c02267{word-spacing:42.026688px;}
._0_c02267{margin-left:-1.948320px;}
._2_c02267{width:1.482624px;}
._4_c02267{width:3.402432px;}
._5_c02267{width:14.751072px;}
._1_c02267{width:50.252400px;}
._3_c02267{width:51.530688px;}
.fc0_c02267{color:rgb(0,0,0);}
.fs0_c02267{font-size:47.520000px;}
.fs1_c02267{font-size:60.480000px;}
.y0_c02267{bottom:0.000000px;}
.y19_c02267{bottom:146.998362px;}
.y1b_c02267{bottom:186.600234px;}
.y1a_c02267{bottom:196.320450px;}
.y18_c02267{bottom:275.878542px;}
.y17_c02267{bottom:356.878758px;}
.y15_c02267{bottom:406.559730px;}
.y11_c02267{bottom:424.560306px;}
.y16_c02267{bottom:458.759262px;}
.y14_c02267{bottom:491.879514px;}
.y13_c02267{bottom:509.880090px;}
.y10_c02267{bottom:543.000342px;}
.y12_c02267{bottom:559.559874px;}
.yf_c02267{bottom:577.560450px;}
.y1c_c02267{bottom:614.280450px;}
.yb_c02267{bottom:667.558326px;}
.yd_c02267{bottom:707.160234px;}
.yc_c02267{bottom:716.880450px;}
.ya_c02267{bottom:796.438506px;}
.y9_c02267{bottom:877.438722px;}
.y7_c02267{bottom:926.759730px;}
.y3_c02267{bottom:944.760306px;}
.y8_c02267{bottom:979.319226px;}
.y6_c02267{bottom:1012.439478px;}
.y5_c02267{bottom:1030.440054px;}
.y2_c02267{bottom:1063.560306px;}
.y4_c02267{bottom:1079.759874px;}
.y1_c02267{bottom:1097.760450px;}
.ye_c02267{bottom:1134.840450px;}
.h3_c02267{height:32.530781px;}
.h1_c02267{height:41.696016px;}
.h2_c02267{height:41.812031px;}
.h4_c02267{height:54.654737px;}
.h0_c02267{height:1263.000000px;}
.w1_c02267{width:892.500000px;}
.w0_c02267{width:892.830000px;}
.x0_c02267{left:0.000000px;}
.xd_c02267{left:117.000000px;}
.x8_c02267{left:440.999856px;}
.x4_c02267{left:445.680576px;}
.xb_c02267{left:451.080000px;}
.x7_c02267{left:455.399604px;}
.x5_c02267{left:461.880144px;}
.x1_c02267{left:463.320000px;}
.xa_c02267{left:483.480360px;}
.x9_c02267{left:492.119496px;}
.x6_c02267{left:493.200576px;}
.xc_c02267{left:506.880360px;}
.x3_c02267{left:511.919892px;}
.x2_c02267{left:526.679604px;}
@media print{
.v0_c02267{vertical-align:0.000000pt;}
.v1_c02267{vertical-align:1.279488pt;}
.lse_c02267{letter-spacing:-1.064448pt;}
.lsa_c02267{letter-spacing:-0.511104pt;}
.lsb_c02267{letter-spacing:-0.321024pt;}
.ls10_c02267{letter-spacing:-0.244992pt;}
.ls9_c02267{letter-spacing:-0.232320pt;}
.ls6_c02267{letter-spacing:-0.215424pt;}
.ls3_c02267{letter-spacing:-0.105600pt;}
.ls13_c02267{letter-spacing:0.000000pt;}
.ls0_c02267{letter-spacing:0.005376pt;}
.ls5_c02267{letter-spacing:0.114048pt;}
.ls7_c02267{letter-spacing:0.215424pt;}
.lsd_c02267{letter-spacing:0.451968pt;}
.ls12_c02267{letter-spacing:0.456960pt;}
.lsf_c02267{letter-spacing:0.477312pt;}
.lsc_c02267{letter-spacing:0.515328pt;}
.ls11_c02267{letter-spacing:0.528000pt;}
.ls8_c02267{letter-spacing:0.532224pt;}
.ls1_c02267{letter-spacing:0.544896pt;}
.ls4_c02267{letter-spacing:0.637824pt;}
.ls2_c02267{letter-spacing:0.642048pt;}
.wsb_c02267{word-spacing:-13.445376pt;}
.ws9_c02267{word-spacing:-11.088000pt;}
.ws7_c02267{word-spacing:-11.075328pt;}
.ws8_c02267{word-spacing:-11.037312pt;}
.ws2_c02267{word-spacing:-10.775424pt;}
.ws12_c02267{word-spacing:-1.919232pt;}
.wsc_c02267{word-spacing:-0.865920pt;}
.wse_c02267{word-spacing:-0.105600pt;}
.wsf_c02267{word-spacing:-0.088704pt;}
.ws11_c02267{word-spacing:-0.076032pt;}
.wsd_c02267{word-spacing:0.000000pt;}
.ws10_c02267{word-spacing:0.743424pt;}
.wsa_c02267{word-spacing:29.600256pt;}
.ws5_c02267{word-spacing:32.659968pt;}
.ws1_c02267{word-spacing:33.563904pt;}
.ws0_c02267{word-spacing:33.796224pt;}
.ws3_c02267{word-spacing:34.860672pt;}
.ws4_c02267{word-spacing:35.468928pt;}
.ws6_c02267{word-spacing:37.357056pt;}
._0_c02267{margin-left:-1.731840pt;}
._2_c02267{width:1.317888pt;}
._4_c02267{width:3.024384pt;}
._5_c02267{width:13.112064pt;}
._1_c02267{width:44.668800pt;}
._3_c02267{width:45.805056pt;}
.fs0_c02267{font-size:42.240000pt;}
.fs1_c02267{font-size:53.760000pt;}
.y0_c02267{bottom:0.000000pt;}
.y19_c02267{bottom:130.665211pt;}
.y1b_c02267{bottom:165.866875pt;}
.y1a_c02267{bottom:174.507067pt;}
.y18_c02267{bottom:245.225371pt;}
.y17_c02267{bottom:317.225563pt;}
.y15_c02267{bottom:361.386427pt;}
.y11_c02267{bottom:377.386939pt;}
.y16_c02267{bottom:407.786011pt;}
.y14_c02267{bottom:437.226235pt;}
.y13_c02267{bottom:453.226747pt;}
.y10_c02267{bottom:482.666971pt;}
.y12_c02267{bottom:497.386555pt;}
.yf_c02267{bottom:513.387067pt;}
.y1c_c02267{bottom:546.027067pt;}
.yb_c02267{bottom:593.385179pt;}
.yd_c02267{bottom:628.586875pt;}
.yc_c02267{bottom:637.227067pt;}
.ya_c02267{bottom:707.945339pt;}
.y9_c02267{bottom:779.945531pt;}
.y7_c02267{bottom:823.786427pt;}
.y3_c02267{bottom:839.786939pt;}
.y8_c02267{bottom:870.505979pt;}
.y6_c02267{bottom:899.946203pt;}
.y5_c02267{bottom:915.946715pt;}
.y2_c02267{bottom:945.386939pt;}
.y4_c02267{bottom:959.786555pt;}
.y1_c02267{bottom:975.787067pt;}
.ye_c02267{bottom:1008.747067pt;}
.h3_c02267{height:28.916250pt;}
.h1_c02267{height:37.063125pt;}
.h2_c02267{height:37.166250pt;}
.h4_c02267{height:48.581988pt;}
.h0_c02267{height:1122.666667pt;}
.w1_c02267{width:793.333333pt;}
.w0_c02267{width:793.626667pt;}
.x0_c02267{left:0.000000pt;}
.xd_c02267{left:104.000000pt;}
.x8_c02267{left:391.999872pt;}
.x4_c02267{left:396.160512pt;}
.xb_c02267{left:400.960000pt;}
.x7_c02267{left:404.799648pt;}
.x5_c02267{left:410.560128pt;}
.x1_c02267{left:411.840000pt;}
.xa_c02267{left:429.760320pt;}
.x9_c02267{left:437.439552pt;}
.x6_c02267{left:438.400512pt;}
.xc_c02267{left:450.560320pt;}
.x3_c02267{left:455.039904pt;}
.x2_c02267{left:468.159648pt;}
}





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

.ir_c02268:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02268{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02268;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02268{font-family:ff1_c02268;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02268;src:url('chunks/assets/font_0c2960ceba276f90f65a74a3.woff2')format("woff");}.ff2_c02268{font-family:ff2_c02268;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02268;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02268{font-family:ff3_c02268;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02268{vertical-align:0.000000px;}
.v1_c02268{vertical-align:1.439424px;}
.lse_c02268{letter-spacing:-1.197504px;}
.lsa_c02268{letter-spacing:-0.574992px;}
.lsb_c02268{letter-spacing:-0.361152px;}
.ls10_c02268{letter-spacing:-0.275616px;}
.ls9_c02268{letter-spacing:-0.261360px;}
.ls6_c02268{letter-spacing:-0.242352px;}
.ls3_c02268{letter-spacing:-0.118800px;}
.ls13_c02268{letter-spacing:0.000000px;}
.ls0_c02268{letter-spacing:0.006048px;}
.ls5_c02268{letter-spacing:0.128304px;}
.ls7_c02268{letter-spacing:0.242352px;}
.lsd_c02268{letter-spacing:0.508464px;}
.ls12_c02268{letter-spacing:0.514080px;}
.lsf_c02268{letter-spacing:0.536976px;}
.lsc_c02268{letter-spacing:0.579744px;}
.ls11_c02268{letter-spacing:0.594000px;}
.ls8_c02268{letter-spacing:0.598752px;}
.ls1_c02268{letter-spacing:0.613008px;}
.ls4_c02268{letter-spacing:0.717552px;}
.ls2_c02268{letter-spacing:0.722304px;}
.sc__c02268{text-shadow:none;}
.sc0_c02268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02268{-webkit-text-stroke:0px transparent;}
.sc0_c02268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02268{word-spacing:-15.126048px;}
.ws9_c02268{word-spacing:-12.474000px;}
.ws7_c02268{word-spacing:-12.459744px;}
.ws8_c02268{word-spacing:-12.416976px;}
.ws2_c02268{word-spacing:-12.122352px;}
.ws12_c02268{word-spacing:-2.159136px;}
.wsc_c02268{word-spacing:-0.974160px;}
.wse_c02268{word-spacing:-0.118800px;}
.wsf_c02268{word-spacing:-0.099792px;}
.ws11_c02268{word-spacing:-0.085536px;}
.wsd_c02268{word-spacing:0.000000px;}
.ws10_c02268{word-spacing:0.836352px;}
.wsa_c02268{word-spacing:33.300288px;}
.ws5_c02268{word-spacing:36.742464px;}
.ws1_c02268{word-spacing:37.759392px;}
.ws0_c02268{word-spacing:38.020752px;}
.ws3_c02268{word-spacing:39.218256px;}
.ws4_c02268{word-spacing:39.902544px;}
.ws6_c02268{word-spacing:42.026688px;}
._0_c02268{margin-left:-1.948320px;}
._2_c02268{width:1.482624px;}
._4_c02268{width:3.402432px;}
._5_c02268{width:14.751072px;}
._1_c02268{width:50.252400px;}
._3_c02268{width:51.530688px;}
.fc0_c02268{color:rgb(0,0,0);}
.fs0_c02268{font-size:47.520000px;}
.fs1_c02268{font-size:60.480000px;}
.y0_c02268{bottom:0.000000px;}
.y19_c02268{bottom:146.998362px;}
.y1b_c02268{bottom:186.600234px;}
.y1a_c02268{bottom:196.320450px;}
.y18_c02268{bottom:275.878542px;}
.y17_c02268{bottom:356.878758px;}
.y15_c02268{bottom:406.559730px;}
.y11_c02268{bottom:424.560306px;}
.y16_c02268{bottom:458.759262px;}
.y14_c02268{bottom:491.879514px;}
.y13_c02268{bottom:509.880090px;}
.y10_c02268{bottom:543.000342px;}
.y12_c02268{bottom:559.559874px;}
.yf_c02268{bottom:577.560450px;}
.y1c_c02268{bottom:614.280450px;}
.yb_c02268{bottom:667.558326px;}
.yd_c02268{bottom:707.160234px;}
.yc_c02268{bottom:716.880450px;}
.ya_c02268{bottom:796.438506px;}
.y9_c02268{bottom:877.438722px;}
.y7_c02268{bottom:926.759730px;}
.y3_c02268{bottom:944.760306px;}
.y8_c02268{bottom:979.319226px;}
.y6_c02268{bottom:1012.439478px;}
.y5_c02268{bottom:1030.440054px;}
.y2_c02268{bottom:1063.560306px;}
.y4_c02268{bottom:1079.759874px;}
.y1_c02268{bottom:1097.760450px;}
.ye_c02268{bottom:1134.840450px;}
.h3_c02268{height:32.530781px;}
.h1_c02268{height:41.696016px;}
.h2_c02268{height:41.812031px;}
.h4_c02268{height:54.654737px;}
.h0_c02268{height:1263.000000px;}
.w1_c02268{width:892.500000px;}
.w0_c02268{width:892.830000px;}
.x0_c02268{left:0.000000px;}
.xd_c02268{left:117.000000px;}
.x8_c02268{left:440.999856px;}
.x4_c02268{left:445.680576px;}
.xb_c02268{left:451.080000px;}
.x7_c02268{left:455.399604px;}
.x5_c02268{left:461.880144px;}
.x1_c02268{left:463.320000px;}
.xa_c02268{left:483.480360px;}
.x9_c02268{left:492.119496px;}
.x6_c02268{left:493.200576px;}
.xc_c02268{left:506.880360px;}
.x3_c02268{left:511.919892px;}
.x2_c02268{left:526.679604px;}
@media print{
.v0_c02268{vertical-align:0.000000pt;}
.v1_c02268{vertical-align:1.279488pt;}
.lse_c02268{letter-spacing:-1.064448pt;}
.lsa_c02268{letter-spacing:-0.511104pt;}
.lsb_c02268{letter-spacing:-0.321024pt;}
.ls10_c02268{letter-spacing:-0.244992pt;}
.ls9_c02268{letter-spacing:-0.232320pt;}
.ls6_c02268{letter-spacing:-0.215424pt;}
.ls3_c02268{letter-spacing:-0.105600pt;}
.ls13_c02268{letter-spacing:0.000000pt;}
.ls0_c02268{letter-spacing:0.005376pt;}
.ls5_c02268{letter-spacing:0.114048pt;}
.ls7_c02268{letter-spacing:0.215424pt;}
.lsd_c02268{letter-spacing:0.451968pt;}
.ls12_c02268{letter-spacing:0.456960pt;}
.lsf_c02268{letter-spacing:0.477312pt;}
.lsc_c02268{letter-spacing:0.515328pt;}
.ls11_c02268{letter-spacing:0.528000pt;}
.ls8_c02268{letter-spacing:0.532224pt;}
.ls1_c02268{letter-spacing:0.544896pt;}
.ls4_c02268{letter-spacing:0.637824pt;}
.ls2_c02268{letter-spacing:0.642048pt;}
.wsb_c02268{word-spacing:-13.445376pt;}
.ws9_c02268{word-spacing:-11.088000pt;}
.ws7_c02268{word-spacing:-11.075328pt;}
.ws8_c02268{word-spacing:-11.037312pt;}
.ws2_c02268{word-spacing:-10.775424pt;}
.ws12_c02268{word-spacing:-1.919232pt;}
.wsc_c02268{word-spacing:-0.865920pt;}
.wse_c02268{word-spacing:-0.105600pt;}
.wsf_c02268{word-spacing:-0.088704pt;}
.ws11_c02268{word-spacing:-0.076032pt;}
.wsd_c02268{word-spacing:0.000000pt;}
.ws10_c02268{word-spacing:0.743424pt;}
.wsa_c02268{word-spacing:29.600256pt;}
.ws5_c02268{word-spacing:32.659968pt;}
.ws1_c02268{word-spacing:33.563904pt;}
.ws0_c02268{word-spacing:33.796224pt;}
.ws3_c02268{word-spacing:34.860672pt;}
.ws4_c02268{word-spacing:35.468928pt;}
.ws6_c02268{word-spacing:37.357056pt;}
._0_c02268{margin-left:-1.731840pt;}
._2_c02268{width:1.317888pt;}
._4_c02268{width:3.024384pt;}
._5_c02268{width:13.112064pt;}
._1_c02268{width:44.668800pt;}
._3_c02268{width:45.805056pt;}
.fs0_c02268{font-size:42.240000pt;}
.fs1_c02268{font-size:53.760000pt;}
.y0_c02268{bottom:0.000000pt;}
.y19_c02268{bottom:130.665211pt;}
.y1b_c02268{bottom:165.866875pt;}
.y1a_c02268{bottom:174.507067pt;}
.y18_c02268{bottom:245.225371pt;}
.y17_c02268{bottom:317.225563pt;}
.y15_c02268{bottom:361.386427pt;}
.y11_c02268{bottom:377.386939pt;}
.y16_c02268{bottom:407.786011pt;}
.y14_c02268{bottom:437.226235pt;}
.y13_c02268{bottom:453.226747pt;}
.y10_c02268{bottom:482.666971pt;}
.y12_c02268{bottom:497.386555pt;}
.yf_c02268{bottom:513.387067pt;}
.y1c_c02268{bottom:546.027067pt;}
.yb_c02268{bottom:593.385179pt;}
.yd_c02268{bottom:628.586875pt;}
.yc_c02268{bottom:637.227067pt;}
.ya_c02268{bottom:707.945339pt;}
.y9_c02268{bottom:779.945531pt;}
.y7_c02268{bottom:823.786427pt;}
.y3_c02268{bottom:839.786939pt;}
.y8_c02268{bottom:870.505979pt;}
.y6_c02268{bottom:899.946203pt;}
.y5_c02268{bottom:915.946715pt;}
.y2_c02268{bottom:945.386939pt;}
.y4_c02268{bottom:959.786555pt;}
.y1_c02268{bottom:975.787067pt;}
.ye_c02268{bottom:1008.747067pt;}
.h3_c02268{height:28.916250pt;}
.h1_c02268{height:37.063125pt;}
.h2_c02268{height:37.166250pt;}
.h4_c02268{height:48.581988pt;}
.h0_c02268{height:1122.666667pt;}
.w1_c02268{width:793.333333pt;}
.w0_c02268{width:793.626667pt;}
.x0_c02268{left:0.000000pt;}
.xd_c02268{left:104.000000pt;}
.x8_c02268{left:391.999872pt;}
.x4_c02268{left:396.160512pt;}
.xb_c02268{left:400.960000pt;}
.x7_c02268{left:404.799648pt;}
.x5_c02268{left:410.560128pt;}
.x1_c02268{left:411.840000pt;}
.xa_c02268{left:429.760320pt;}
.x9_c02268{left:437.439552pt;}
.x6_c02268{left:438.400512pt;}
.xc_c02268{left:450.560320pt;}
.x3_c02268{left:455.039904pt;}
.x2_c02268{left:468.159648pt;}
}





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

.ir_c02269:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02269{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02269;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02269{font-family:ff1_c02269;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02269;src:url('chunks/assets/font_be3fc0b8386bf76824029da1.woff2')format("woff");}.ff2_c02269{font-family:ff2_c02269;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02269;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02269{font-family:ff3_c02269;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02269{vertical-align:0.000000px;}
.v1_c02269{vertical-align:1.439424px;}
.lse_c02269{letter-spacing:-1.197504px;}
.lsa_c02269{letter-spacing:-0.574992px;}
.lsb_c02269{letter-spacing:-0.361152px;}
.ls10_c02269{letter-spacing:-0.275616px;}
.ls9_c02269{letter-spacing:-0.261360px;}
.ls6_c02269{letter-spacing:-0.242352px;}
.ls3_c02269{letter-spacing:-0.118800px;}
.ls13_c02269{letter-spacing:0.000000px;}
.ls0_c02269{letter-spacing:0.006048px;}
.ls5_c02269{letter-spacing:0.128304px;}
.ls7_c02269{letter-spacing:0.242352px;}
.lsd_c02269{letter-spacing:0.508464px;}
.ls12_c02269{letter-spacing:0.514080px;}
.lsf_c02269{letter-spacing:0.536976px;}
.lsc_c02269{letter-spacing:0.579744px;}
.ls11_c02269{letter-spacing:0.594000px;}
.ls8_c02269{letter-spacing:0.598752px;}
.ls1_c02269{letter-spacing:0.613008px;}
.ls4_c02269{letter-spacing:0.717552px;}
.ls2_c02269{letter-spacing:0.722304px;}
.sc__c02269{text-shadow:none;}
.sc0_c02269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02269{-webkit-text-stroke:0px transparent;}
.sc0_c02269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02269{word-spacing:-15.126048px;}
.ws9_c02269{word-spacing:-12.474000px;}
.ws7_c02269{word-spacing:-12.459744px;}
.ws8_c02269{word-spacing:-12.416976px;}
.ws2_c02269{word-spacing:-12.122352px;}
.ws12_c02269{word-spacing:-2.159136px;}
.wsc_c02269{word-spacing:-0.974160px;}
.wse_c02269{word-spacing:-0.118800px;}
.wsf_c02269{word-spacing:-0.099792px;}
.ws11_c02269{word-spacing:-0.085536px;}
.wsd_c02269{word-spacing:0.000000px;}
.ws10_c02269{word-spacing:0.836352px;}
.wsa_c02269{word-spacing:33.300288px;}
.ws5_c02269{word-spacing:36.742464px;}
.ws1_c02269{word-spacing:37.759392px;}
.ws0_c02269{word-spacing:38.020752px;}
.ws3_c02269{word-spacing:39.218256px;}
.ws4_c02269{word-spacing:39.902544px;}
.ws6_c02269{word-spacing:42.026688px;}
._0_c02269{margin-left:-1.948320px;}
._2_c02269{width:1.482624px;}
._4_c02269{width:3.402432px;}
._5_c02269{width:14.751072px;}
._1_c02269{width:50.252400px;}
._3_c02269{width:51.530688px;}
.fc0_c02269{color:rgb(0,0,0);}
.fs0_c02269{font-size:47.520000px;}
.fs1_c02269{font-size:60.480000px;}
.y0_c02269{bottom:0.000000px;}
.y19_c02269{bottom:146.998362px;}
.y1b_c02269{bottom:186.600234px;}
.y1a_c02269{bottom:196.320450px;}
.y18_c02269{bottom:275.878542px;}
.y17_c02269{bottom:356.878758px;}
.y15_c02269{bottom:406.559730px;}
.y11_c02269{bottom:424.560306px;}
.y16_c02269{bottom:458.759262px;}
.y14_c02269{bottom:491.879514px;}
.y13_c02269{bottom:509.880090px;}
.y10_c02269{bottom:543.000342px;}
.y12_c02269{bottom:559.559874px;}
.yf_c02269{bottom:577.560450px;}
.y1c_c02269{bottom:614.280450px;}
.yb_c02269{bottom:667.558326px;}
.yd_c02269{bottom:707.160234px;}
.yc_c02269{bottom:716.880450px;}
.ya_c02269{bottom:796.438506px;}
.y9_c02269{bottom:877.438722px;}
.y7_c02269{bottom:926.759730px;}
.y3_c02269{bottom:944.760306px;}
.y8_c02269{bottom:979.319226px;}
.y6_c02269{bottom:1012.439478px;}
.y5_c02269{bottom:1030.440054px;}
.y2_c02269{bottom:1063.560306px;}
.y4_c02269{bottom:1079.759874px;}
.y1_c02269{bottom:1097.760450px;}
.ye_c02269{bottom:1134.840450px;}
.h3_c02269{height:32.530781px;}
.h1_c02269{height:41.696016px;}
.h2_c02269{height:41.812031px;}
.h4_c02269{height:54.654737px;}
.h0_c02269{height:1263.000000px;}
.w1_c02269{width:892.500000px;}
.w0_c02269{width:892.830000px;}
.x0_c02269{left:0.000000px;}
.xd_c02269{left:117.000000px;}
.x8_c02269{left:440.999856px;}
.x4_c02269{left:445.680576px;}
.xb_c02269{left:451.080000px;}
.x7_c02269{left:455.399604px;}
.x5_c02269{left:461.880144px;}
.x1_c02269{left:463.320000px;}
.xa_c02269{left:483.480360px;}
.x9_c02269{left:492.119496px;}
.x6_c02269{left:493.200576px;}
.xc_c02269{left:506.880360px;}
.x3_c02269{left:511.919892px;}
.x2_c02269{left:526.679604px;}
@media print{
.v0_c02269{vertical-align:0.000000pt;}
.v1_c02269{vertical-align:1.279488pt;}
.lse_c02269{letter-spacing:-1.064448pt;}
.lsa_c02269{letter-spacing:-0.511104pt;}
.lsb_c02269{letter-spacing:-0.321024pt;}
.ls10_c02269{letter-spacing:-0.244992pt;}
.ls9_c02269{letter-spacing:-0.232320pt;}
.ls6_c02269{letter-spacing:-0.215424pt;}
.ls3_c02269{letter-spacing:-0.105600pt;}
.ls13_c02269{letter-spacing:0.000000pt;}
.ls0_c02269{letter-spacing:0.005376pt;}
.ls5_c02269{letter-spacing:0.114048pt;}
.ls7_c02269{letter-spacing:0.215424pt;}
.lsd_c02269{letter-spacing:0.451968pt;}
.ls12_c02269{letter-spacing:0.456960pt;}
.lsf_c02269{letter-spacing:0.477312pt;}
.lsc_c02269{letter-spacing:0.515328pt;}
.ls11_c02269{letter-spacing:0.528000pt;}
.ls8_c02269{letter-spacing:0.532224pt;}
.ls1_c02269{letter-spacing:0.544896pt;}
.ls4_c02269{letter-spacing:0.637824pt;}
.ls2_c02269{letter-spacing:0.642048pt;}
.wsb_c02269{word-spacing:-13.445376pt;}
.ws9_c02269{word-spacing:-11.088000pt;}
.ws7_c02269{word-spacing:-11.075328pt;}
.ws8_c02269{word-spacing:-11.037312pt;}
.ws2_c02269{word-spacing:-10.775424pt;}
.ws12_c02269{word-spacing:-1.919232pt;}
.wsc_c02269{word-spacing:-0.865920pt;}
.wse_c02269{word-spacing:-0.105600pt;}
.wsf_c02269{word-spacing:-0.088704pt;}
.ws11_c02269{word-spacing:-0.076032pt;}
.wsd_c02269{word-spacing:0.000000pt;}
.ws10_c02269{word-spacing:0.743424pt;}
.wsa_c02269{word-spacing:29.600256pt;}
.ws5_c02269{word-spacing:32.659968pt;}
.ws1_c02269{word-spacing:33.563904pt;}
.ws0_c02269{word-spacing:33.796224pt;}
.ws3_c02269{word-spacing:34.860672pt;}
.ws4_c02269{word-spacing:35.468928pt;}
.ws6_c02269{word-spacing:37.357056pt;}
._0_c02269{margin-left:-1.731840pt;}
._2_c02269{width:1.317888pt;}
._4_c02269{width:3.024384pt;}
._5_c02269{width:13.112064pt;}
._1_c02269{width:44.668800pt;}
._3_c02269{width:45.805056pt;}
.fs0_c02269{font-size:42.240000pt;}
.fs1_c02269{font-size:53.760000pt;}
.y0_c02269{bottom:0.000000pt;}
.y19_c02269{bottom:130.665211pt;}
.y1b_c02269{bottom:165.866875pt;}
.y1a_c02269{bottom:174.507067pt;}
.y18_c02269{bottom:245.225371pt;}
.y17_c02269{bottom:317.225563pt;}
.y15_c02269{bottom:361.386427pt;}
.y11_c02269{bottom:377.386939pt;}
.y16_c02269{bottom:407.786011pt;}
.y14_c02269{bottom:437.226235pt;}
.y13_c02269{bottom:453.226747pt;}
.y10_c02269{bottom:482.666971pt;}
.y12_c02269{bottom:497.386555pt;}
.yf_c02269{bottom:513.387067pt;}
.y1c_c02269{bottom:546.027067pt;}
.yb_c02269{bottom:593.385179pt;}
.yd_c02269{bottom:628.586875pt;}
.yc_c02269{bottom:637.227067pt;}
.ya_c02269{bottom:707.945339pt;}
.y9_c02269{bottom:779.945531pt;}
.y7_c02269{bottom:823.786427pt;}
.y3_c02269{bottom:839.786939pt;}
.y8_c02269{bottom:870.505979pt;}
.y6_c02269{bottom:899.946203pt;}
.y5_c02269{bottom:915.946715pt;}
.y2_c02269{bottom:945.386939pt;}
.y4_c02269{bottom:959.786555pt;}
.y1_c02269{bottom:975.787067pt;}
.ye_c02269{bottom:1008.747067pt;}
.h3_c02269{height:28.916250pt;}
.h1_c02269{height:37.063125pt;}
.h2_c02269{height:37.166250pt;}
.h4_c02269{height:48.581988pt;}
.h0_c02269{height:1122.666667pt;}
.w1_c02269{width:793.333333pt;}
.w0_c02269{width:793.626667pt;}
.x0_c02269{left:0.000000pt;}
.xd_c02269{left:104.000000pt;}
.x8_c02269{left:391.999872pt;}
.x4_c02269{left:396.160512pt;}
.xb_c02269{left:400.960000pt;}
.x7_c02269{left:404.799648pt;}
.x5_c02269{left:410.560128pt;}
.x1_c02269{left:411.840000pt;}
.xa_c02269{left:429.760320pt;}
.x9_c02269{left:437.439552pt;}
.x6_c02269{left:438.400512pt;}
.xc_c02269{left:450.560320pt;}
.x3_c02269{left:455.039904pt;}
.x2_c02269{left:468.159648pt;}
}





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

.ir_c02270:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02270{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02270;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02270{font-family:ff1_c02270;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02270;src:url('chunks/assets/font_be3fc0b8386bf76824029da1.woff2')format("woff");}.ff2_c02270{font-family:ff2_c02270;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02270;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02270{font-family:ff3_c02270;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02270{vertical-align:0.000000px;}
.v1_c02270{vertical-align:1.439424px;}
.lse_c02270{letter-spacing:-1.197504px;}
.lsa_c02270{letter-spacing:-0.574992px;}
.lsb_c02270{letter-spacing:-0.361152px;}
.ls10_c02270{letter-spacing:-0.275616px;}
.ls9_c02270{letter-spacing:-0.261360px;}
.ls6_c02270{letter-spacing:-0.242352px;}
.ls3_c02270{letter-spacing:-0.118800px;}
.ls13_c02270{letter-spacing:0.000000px;}
.ls0_c02270{letter-spacing:0.006048px;}
.ls5_c02270{letter-spacing:0.128304px;}
.ls7_c02270{letter-spacing:0.242352px;}
.lsd_c02270{letter-spacing:0.508464px;}
.ls12_c02270{letter-spacing:0.514080px;}
.lsf_c02270{letter-spacing:0.536976px;}
.lsc_c02270{letter-spacing:0.579744px;}
.ls11_c02270{letter-spacing:0.594000px;}
.ls8_c02270{letter-spacing:0.598752px;}
.ls1_c02270{letter-spacing:0.613008px;}
.ls4_c02270{letter-spacing:0.717552px;}
.ls2_c02270{letter-spacing:0.722304px;}
.sc__c02270{text-shadow:none;}
.sc0_c02270{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02270{-webkit-text-stroke:0px transparent;}
.sc0_c02270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02270{word-spacing:-15.126048px;}
.ws9_c02270{word-spacing:-12.474000px;}
.ws7_c02270{word-spacing:-12.459744px;}
.ws8_c02270{word-spacing:-12.416976px;}
.ws2_c02270{word-spacing:-12.122352px;}
.ws12_c02270{word-spacing:-2.159136px;}
.wsc_c02270{word-spacing:-0.974160px;}
.wse_c02270{word-spacing:-0.118800px;}
.wsf_c02270{word-spacing:-0.099792px;}
.ws11_c02270{word-spacing:-0.085536px;}
.wsd_c02270{word-spacing:0.000000px;}
.ws10_c02270{word-spacing:0.836352px;}
.wsa_c02270{word-spacing:33.300288px;}
.ws5_c02270{word-spacing:36.742464px;}
.ws1_c02270{word-spacing:37.759392px;}
.ws0_c02270{word-spacing:38.020752px;}
.ws3_c02270{word-spacing:39.218256px;}
.ws4_c02270{word-spacing:39.902544px;}
.ws6_c02270{word-spacing:42.026688px;}
._0_c02270{margin-left:-1.948320px;}
._2_c02270{width:1.482624px;}
._4_c02270{width:3.402432px;}
._5_c02270{width:14.751072px;}
._1_c02270{width:50.252400px;}
._3_c02270{width:51.530688px;}
.fc0_c02270{color:rgb(0,0,0);}
.fs0_c02270{font-size:47.520000px;}
.fs1_c02270{font-size:60.480000px;}
.y0_c02270{bottom:0.000000px;}
.y19_c02270{bottom:146.998362px;}
.y1b_c02270{bottom:186.600234px;}
.y1a_c02270{bottom:196.320450px;}
.y18_c02270{bottom:275.878542px;}
.y17_c02270{bottom:356.878758px;}
.y15_c02270{bottom:406.559730px;}
.y11_c02270{bottom:424.560306px;}
.y16_c02270{bottom:458.759262px;}
.y14_c02270{bottom:491.879514px;}
.y13_c02270{bottom:509.880090px;}
.y10_c02270{bottom:543.000342px;}
.y12_c02270{bottom:559.559874px;}
.yf_c02270{bottom:577.560450px;}
.y1c_c02270{bottom:614.280450px;}
.yb_c02270{bottom:667.558326px;}
.yd_c02270{bottom:707.160234px;}
.yc_c02270{bottom:716.880450px;}
.ya_c02270{bottom:796.438506px;}
.y9_c02270{bottom:877.438722px;}
.y7_c02270{bottom:926.759730px;}
.y3_c02270{bottom:944.760306px;}
.y8_c02270{bottom:979.319226px;}
.y6_c02270{bottom:1012.439478px;}
.y5_c02270{bottom:1030.440054px;}
.y2_c02270{bottom:1063.560306px;}
.y4_c02270{bottom:1079.759874px;}
.y1_c02270{bottom:1097.760450px;}
.ye_c02270{bottom:1134.840450px;}
.h3_c02270{height:32.530781px;}
.h1_c02270{height:41.696016px;}
.h2_c02270{height:41.812031px;}
.h4_c02270{height:54.654737px;}
.h0_c02270{height:1263.000000px;}
.w1_c02270{width:892.500000px;}
.w0_c02270{width:892.830000px;}
.x0_c02270{left:0.000000px;}
.xd_c02270{left:117.000000px;}
.x8_c02270{left:440.999856px;}
.x4_c02270{left:445.680576px;}
.xb_c02270{left:451.080000px;}
.x7_c02270{left:455.399604px;}
.x5_c02270{left:461.880144px;}
.x1_c02270{left:463.320000px;}
.xa_c02270{left:483.480360px;}
.x9_c02270{left:492.119496px;}
.x6_c02270{left:493.200576px;}
.xc_c02270{left:506.880360px;}
.x3_c02270{left:511.919892px;}
.x2_c02270{left:526.679604px;}
@media print{
.v0_c02270{vertical-align:0.000000pt;}
.v1_c02270{vertical-align:1.279488pt;}
.lse_c02270{letter-spacing:-1.064448pt;}
.lsa_c02270{letter-spacing:-0.511104pt;}
.lsb_c02270{letter-spacing:-0.321024pt;}
.ls10_c02270{letter-spacing:-0.244992pt;}
.ls9_c02270{letter-spacing:-0.232320pt;}
.ls6_c02270{letter-spacing:-0.215424pt;}
.ls3_c02270{letter-spacing:-0.105600pt;}
.ls13_c02270{letter-spacing:0.000000pt;}
.ls0_c02270{letter-spacing:0.005376pt;}
.ls5_c02270{letter-spacing:0.114048pt;}
.ls7_c02270{letter-spacing:0.215424pt;}
.lsd_c02270{letter-spacing:0.451968pt;}
.ls12_c02270{letter-spacing:0.456960pt;}
.lsf_c02270{letter-spacing:0.477312pt;}
.lsc_c02270{letter-spacing:0.515328pt;}
.ls11_c02270{letter-spacing:0.528000pt;}
.ls8_c02270{letter-spacing:0.532224pt;}
.ls1_c02270{letter-spacing:0.544896pt;}
.ls4_c02270{letter-spacing:0.637824pt;}
.ls2_c02270{letter-spacing:0.642048pt;}
.wsb_c02270{word-spacing:-13.445376pt;}
.ws9_c02270{word-spacing:-11.088000pt;}
.ws7_c02270{word-spacing:-11.075328pt;}
.ws8_c02270{word-spacing:-11.037312pt;}
.ws2_c02270{word-spacing:-10.775424pt;}
.ws12_c02270{word-spacing:-1.919232pt;}
.wsc_c02270{word-spacing:-0.865920pt;}
.wse_c02270{word-spacing:-0.105600pt;}
.wsf_c02270{word-spacing:-0.088704pt;}
.ws11_c02270{word-spacing:-0.076032pt;}
.wsd_c02270{word-spacing:0.000000pt;}
.ws10_c02270{word-spacing:0.743424pt;}
.wsa_c02270{word-spacing:29.600256pt;}
.ws5_c02270{word-spacing:32.659968pt;}
.ws1_c02270{word-spacing:33.563904pt;}
.ws0_c02270{word-spacing:33.796224pt;}
.ws3_c02270{word-spacing:34.860672pt;}
.ws4_c02270{word-spacing:35.468928pt;}
.ws6_c02270{word-spacing:37.357056pt;}
._0_c02270{margin-left:-1.731840pt;}
._2_c02270{width:1.317888pt;}
._4_c02270{width:3.024384pt;}
._5_c02270{width:13.112064pt;}
._1_c02270{width:44.668800pt;}
._3_c02270{width:45.805056pt;}
.fs0_c02270{font-size:42.240000pt;}
.fs1_c02270{font-size:53.760000pt;}
.y0_c02270{bottom:0.000000pt;}
.y19_c02270{bottom:130.665211pt;}
.y1b_c02270{bottom:165.866875pt;}
.y1a_c02270{bottom:174.507067pt;}
.y18_c02270{bottom:245.225371pt;}
.y17_c02270{bottom:317.225563pt;}
.y15_c02270{bottom:361.386427pt;}
.y11_c02270{bottom:377.386939pt;}
.y16_c02270{bottom:407.786011pt;}
.y14_c02270{bottom:437.226235pt;}
.y13_c02270{bottom:453.226747pt;}
.y10_c02270{bottom:482.666971pt;}
.y12_c02270{bottom:497.386555pt;}
.yf_c02270{bottom:513.387067pt;}
.y1c_c02270{bottom:546.027067pt;}
.yb_c02270{bottom:593.385179pt;}
.yd_c02270{bottom:628.586875pt;}
.yc_c02270{bottom:637.227067pt;}
.ya_c02270{bottom:707.945339pt;}
.y9_c02270{bottom:779.945531pt;}
.y7_c02270{bottom:823.786427pt;}
.y3_c02270{bottom:839.786939pt;}
.y8_c02270{bottom:870.505979pt;}
.y6_c02270{bottom:899.946203pt;}
.y5_c02270{bottom:915.946715pt;}
.y2_c02270{bottom:945.386939pt;}
.y4_c02270{bottom:959.786555pt;}
.y1_c02270{bottom:975.787067pt;}
.ye_c02270{bottom:1008.747067pt;}
.h3_c02270{height:28.916250pt;}
.h1_c02270{height:37.063125pt;}
.h2_c02270{height:37.166250pt;}
.h4_c02270{height:48.581988pt;}
.h0_c02270{height:1122.666667pt;}
.w1_c02270{width:793.333333pt;}
.w0_c02270{width:793.626667pt;}
.x0_c02270{left:0.000000pt;}
.xd_c02270{left:104.000000pt;}
.x8_c02270{left:391.999872pt;}
.x4_c02270{left:396.160512pt;}
.xb_c02270{left:400.960000pt;}
.x7_c02270{left:404.799648pt;}
.x5_c02270{left:410.560128pt;}
.x1_c02270{left:411.840000pt;}
.xa_c02270{left:429.760320pt;}
.x9_c02270{left:437.439552pt;}
.x6_c02270{left:438.400512pt;}
.xc_c02270{left:450.560320pt;}
.x3_c02270{left:455.039904pt;}
.x2_c02270{left:468.159648pt;}
}





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

.ir_c02271:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02271{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02271;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02271{font-family:ff1_c02271;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02271;src:url('chunks/assets/font_eaea5f7ef80dc331f47b81a3.woff2')format("woff");}.ff2_c02271{font-family:ff2_c02271;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02271;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02271{font-family:ff3_c02271;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02271{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02271{vertical-align:0.000000px;}
.v1_c02271{vertical-align:1.439424px;}
.lse_c02271{letter-spacing:-1.197504px;}
.lsb_c02271{letter-spacing:-0.774576px;}
.ls9_c02271{letter-spacing:-0.755568px;}
.ls11_c02271{letter-spacing:-0.736560px;}
.lsa_c02271{letter-spacing:-0.574992px;}
.ls16_c02271{letter-spacing:-0.361152px;}
.ls17_c02271{letter-spacing:-0.275616px;}
.ls12_c02271{letter-spacing:-0.270864px;}
.lsf_c02271{letter-spacing:-0.261360px;}
.ls6_c02271{letter-spacing:-0.242352px;}
.ls3_c02271{letter-spacing:-0.118800px;}
.ls15_c02271{letter-spacing:0.000000px;}
.ls0_c02271{letter-spacing:0.006048px;}
.ls5_c02271{letter-spacing:0.128304px;}
.ls7_c02271{letter-spacing:0.242352px;}
.lsd_c02271{letter-spacing:0.508464px;}
.ls14_c02271{letter-spacing:0.514080px;}
.ls10_c02271{letter-spacing:0.536976px;}
.lsc_c02271{letter-spacing:0.579744px;}
.ls13_c02271{letter-spacing:0.594000px;}
.ls8_c02271{letter-spacing:0.598752px;}
.ls1_c02271{letter-spacing:0.613008px;}
.ls4_c02271{letter-spacing:0.717552px;}
.ls2_c02271{letter-spacing:0.722304px;}
.sc__c02271{text-shadow:none;}
.sc0_c02271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02271{-webkit-text-stroke:0px transparent;}
.sc0_c02271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02271{word-spacing:-15.126048px;}
.wsb_c02271{word-spacing:-12.474000px;}
.ws7_c02271{word-spacing:-12.459744px;}
.wsf_c02271{word-spacing:-12.416976px;}
.ws2_c02271{word-spacing:-12.122352px;}
.ws4_c02271{word-spacing:-11.124432px;}
.ws6_c02271{word-spacing:-11.105424px;}
.ws17_c02271{word-spacing:-2.159136px;}
.ws10_c02271{word-spacing:-0.974160px;}
.ws12_c02271{word-spacing:-0.118800px;}
.ws14_c02271{word-spacing:-0.099792px;}
.ws15_c02271{word-spacing:-0.090288px;}
.ws16_c02271{word-spacing:-0.085536px;}
.ws11_c02271{word-spacing:0.000000px;}
.ws13_c02271{word-spacing:0.836352px;}
.wsa_c02271{word-spacing:6.629040px;}
.wsc_c02271{word-spacing:33.300288px;}
.ws9_c02271{word-spacing:34.836912px;}
.wse_c02271{word-spacing:36.742464px;}
.ws1_c02271{word-spacing:37.759392px;}
.ws0_c02271{word-spacing:38.020752px;}
.ws3_c02271{word-spacing:39.218256px;}
.ws5_c02271{word-spacing:39.902544px;}
.ws8_c02271{word-spacing:42.026688px;}
._0_c02271{margin-left:-1.948320px;}
._2_c02271{width:1.482624px;}
._4_c02271{width:3.369168px;}
._8_c02271{width:14.751072px;}
._6_c02271{width:19.982160px;}
._7_c02271{width:23.451120px;}
._5_c02271{width:24.691392px;}
._1_c02271{width:50.252400px;}
._3_c02271{width:51.530688px;}
.fc0_c02271{color:rgb(0,0,0);}
.fs0_c02271{font-size:47.520000px;}
.fs1_c02271{font-size:60.480000px;}
.y0_c02271{bottom:0.000000px;}
.y1a_c02271{bottom:146.998362px;}
.y1c_c02271{bottom:186.600234px;}
.y1b_c02271{bottom:196.320450px;}
.y19_c02271{bottom:275.878542px;}
.y18_c02271{bottom:356.878758px;}
.y16_c02271{bottom:406.559730px;}
.y12_c02271{bottom:424.560306px;}
.y17_c02271{bottom:458.759262px;}
.y15_c02271{bottom:491.879514px;}
.y14_c02271{bottom:509.880090px;}
.y11_c02271{bottom:543.000342px;}
.y13_c02271{bottom:559.559874px;}
.y10_c02271{bottom:577.560450px;}
.y1d_c02271{bottom:614.280450px;}
.yc_c02271{bottom:652.438650px;}
.yb_c02271{bottom:667.558326px;}
.ye_c02271{bottom:707.160234px;}
.yd_c02271{bottom:716.880450px;}
.ya_c02271{bottom:796.438506px;}
.y9_c02271{bottom:877.438722px;}
.y7_c02271{bottom:926.759730px;}
.y3_c02271{bottom:944.760306px;}
.y8_c02271{bottom:979.319226px;}
.y6_c02271{bottom:1012.439478px;}
.y5_c02271{bottom:1030.440054px;}
.y2_c02271{bottom:1063.560306px;}
.y4_c02271{bottom:1079.759874px;}
.y1_c02271{bottom:1097.760450px;}
.yf_c02271{bottom:1134.840450px;}
.h3_c02271{height:32.530781px;}
.h1_c02271{height:41.696016px;}
.h2_c02271{height:41.812031px;}
.h4_c02271{height:54.654737px;}
.h0_c02271{height:1263.000000px;}
.w1_c02271{width:892.500000px;}
.w0_c02271{width:892.830000px;}
.x0_c02271{left:0.000000px;}
.xe_c02271{left:117.000000px;}
.x8_c02271{left:440.999856px;}
.x4_c02271{left:445.680576px;}
.xc_c02271{left:451.080000px;}
.x7_c02271{left:455.399604px;}
.x5_c02271{left:461.880144px;}
.x1_c02271{left:463.320000px;}
.xa_c02271{left:483.480360px;}
.x9_c02271{left:492.119496px;}
.x6_c02271{left:493.200576px;}
.xd_c02271{left:506.880360px;}
.x3_c02271{left:511.919892px;}
.x2_c02271{left:526.679604px;}
.xb_c02271{left:569.880036px;}
@media print{
.v0_c02271{vertical-align:0.000000pt;}
.v1_c02271{vertical-align:1.279488pt;}
.lse_c02271{letter-spacing:-1.064448pt;}
.lsb_c02271{letter-spacing:-0.688512pt;}
.ls9_c02271{letter-spacing:-0.671616pt;}
.ls11_c02271{letter-spacing:-0.654720pt;}
.lsa_c02271{letter-spacing:-0.511104pt;}
.ls16_c02271{letter-spacing:-0.321024pt;}
.ls17_c02271{letter-spacing:-0.244992pt;}
.ls12_c02271{letter-spacing:-0.240768pt;}
.lsf_c02271{letter-spacing:-0.232320pt;}
.ls6_c02271{letter-spacing:-0.215424pt;}
.ls3_c02271{letter-spacing:-0.105600pt;}
.ls15_c02271{letter-spacing:0.000000pt;}
.ls0_c02271{letter-spacing:0.005376pt;}
.ls5_c02271{letter-spacing:0.114048pt;}
.ls7_c02271{letter-spacing:0.215424pt;}
.lsd_c02271{letter-spacing:0.451968pt;}
.ls14_c02271{letter-spacing:0.456960pt;}
.ls10_c02271{letter-spacing:0.477312pt;}
.lsc_c02271{letter-spacing:0.515328pt;}
.ls13_c02271{letter-spacing:0.528000pt;}
.ls8_c02271{letter-spacing:0.532224pt;}
.ls1_c02271{letter-spacing:0.544896pt;}
.ls4_c02271{letter-spacing:0.637824pt;}
.ls2_c02271{letter-spacing:0.642048pt;}
.wsd_c02271{word-spacing:-13.445376pt;}
.wsb_c02271{word-spacing:-11.088000pt;}
.ws7_c02271{word-spacing:-11.075328pt;}
.wsf_c02271{word-spacing:-11.037312pt;}
.ws2_c02271{word-spacing:-10.775424pt;}
.ws4_c02271{word-spacing:-9.888384pt;}
.ws6_c02271{word-spacing:-9.871488pt;}
.ws17_c02271{word-spacing:-1.919232pt;}
.ws10_c02271{word-spacing:-0.865920pt;}
.ws12_c02271{word-spacing:-0.105600pt;}
.ws14_c02271{word-spacing:-0.088704pt;}
.ws15_c02271{word-spacing:-0.080256pt;}
.ws16_c02271{word-spacing:-0.076032pt;}
.ws11_c02271{word-spacing:0.000000pt;}
.ws13_c02271{word-spacing:0.743424pt;}
.wsa_c02271{word-spacing:5.892480pt;}
.wsc_c02271{word-spacing:29.600256pt;}
.ws9_c02271{word-spacing:30.966144pt;}
.wse_c02271{word-spacing:32.659968pt;}
.ws1_c02271{word-spacing:33.563904pt;}
.ws0_c02271{word-spacing:33.796224pt;}
.ws3_c02271{word-spacing:34.860672pt;}
.ws5_c02271{word-spacing:35.468928pt;}
.ws8_c02271{word-spacing:37.357056pt;}
._0_c02271{margin-left:-1.731840pt;}
._2_c02271{width:1.317888pt;}
._4_c02271{width:2.994816pt;}
._8_c02271{width:13.112064pt;}
._6_c02271{width:17.761920pt;}
._7_c02271{width:20.845440pt;}
._5_c02271{width:21.947904pt;}
._1_c02271{width:44.668800pt;}
._3_c02271{width:45.805056pt;}
.fs0_c02271{font-size:42.240000pt;}
.fs1_c02271{font-size:53.760000pt;}
.y0_c02271{bottom:0.000000pt;}
.y1a_c02271{bottom:130.665211pt;}
.y1c_c02271{bottom:165.866875pt;}
.y1b_c02271{bottom:174.507067pt;}
.y19_c02271{bottom:245.225371pt;}
.y18_c02271{bottom:317.225563pt;}
.y16_c02271{bottom:361.386427pt;}
.y12_c02271{bottom:377.386939pt;}
.y17_c02271{bottom:407.786011pt;}
.y15_c02271{bottom:437.226235pt;}
.y14_c02271{bottom:453.226747pt;}
.y11_c02271{bottom:482.666971pt;}
.y13_c02271{bottom:497.386555pt;}
.y10_c02271{bottom:513.387067pt;}
.y1d_c02271{bottom:546.027067pt;}
.yc_c02271{bottom:579.945467pt;}
.yb_c02271{bottom:593.385179pt;}
.ye_c02271{bottom:628.586875pt;}
.yd_c02271{bottom:637.227067pt;}
.ya_c02271{bottom:707.945339pt;}
.y9_c02271{bottom:779.945531pt;}
.y7_c02271{bottom:823.786427pt;}
.y3_c02271{bottom:839.786939pt;}
.y8_c02271{bottom:870.505979pt;}
.y6_c02271{bottom:899.946203pt;}
.y5_c02271{bottom:915.946715pt;}
.y2_c02271{bottom:945.386939pt;}
.y4_c02271{bottom:959.786555pt;}
.y1_c02271{bottom:975.787067pt;}
.yf_c02271{bottom:1008.747067pt;}
.h3_c02271{height:28.916250pt;}
.h1_c02271{height:37.063125pt;}
.h2_c02271{height:37.166250pt;}
.h4_c02271{height:48.581988pt;}
.h0_c02271{height:1122.666667pt;}
.w1_c02271{width:793.333333pt;}
.w0_c02271{width:793.626667pt;}
.x0_c02271{left:0.000000pt;}
.xe_c02271{left:104.000000pt;}
.x8_c02271{left:391.999872pt;}
.x4_c02271{left:396.160512pt;}
.xc_c02271{left:400.960000pt;}
.x7_c02271{left:404.799648pt;}
.x5_c02271{left:410.560128pt;}
.x1_c02271{left:411.840000pt;}
.xa_c02271{left:429.760320pt;}
.x9_c02271{left:437.439552pt;}
.x6_c02271{left:438.400512pt;}
.xd_c02271{left:450.560320pt;}
.x3_c02271{left:455.039904pt;}
.x2_c02271{left:468.159648pt;}
.xb_c02271{left:506.560032pt;}
}





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

.ir_c02272:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02272{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02272;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02272{font-family:ff1_c02272;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02272;src:url('chunks/assets/font_95a2c990d6d3748078a72e84.woff2')format("woff");}.ff2_c02272{font-family:ff2_c02272;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02272;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02272{font-family:ff3_c02272;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02272{vertical-align:0.000000px;}
.v1_c02272{vertical-align:1.439424px;}
.lse_c02272{letter-spacing:-1.197504px;}
.lsa_c02272{letter-spacing:-0.574992px;}
.lsb_c02272{letter-spacing:-0.361152px;}
.ls10_c02272{letter-spacing:-0.275616px;}
.ls9_c02272{letter-spacing:-0.261360px;}
.ls6_c02272{letter-spacing:-0.242352px;}
.ls3_c02272{letter-spacing:-0.118800px;}
.ls13_c02272{letter-spacing:0.000000px;}
.ls0_c02272{letter-spacing:0.006048px;}
.ls5_c02272{letter-spacing:0.128304px;}
.ls7_c02272{letter-spacing:0.242352px;}
.lsd_c02272{letter-spacing:0.508464px;}
.ls12_c02272{letter-spacing:0.514080px;}
.lsf_c02272{letter-spacing:0.536976px;}
.lsc_c02272{letter-spacing:0.579744px;}
.ls11_c02272{letter-spacing:0.594000px;}
.ls8_c02272{letter-spacing:0.598752px;}
.ls1_c02272{letter-spacing:0.613008px;}
.ls4_c02272{letter-spacing:0.717552px;}
.ls2_c02272{letter-spacing:0.722304px;}
.sc__c02272{text-shadow:none;}
.sc0_c02272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02272{-webkit-text-stroke:0px transparent;}
.sc0_c02272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02272{word-spacing:-15.126048px;}
.ws9_c02272{word-spacing:-12.474000px;}
.ws7_c02272{word-spacing:-12.459744px;}
.ws8_c02272{word-spacing:-12.416976px;}
.ws2_c02272{word-spacing:-12.122352px;}
.ws12_c02272{word-spacing:-2.159136px;}
.wsc_c02272{word-spacing:-0.974160px;}
.wse_c02272{word-spacing:-0.118800px;}
.wsf_c02272{word-spacing:-0.099792px;}
.ws11_c02272{word-spacing:-0.085536px;}
.wsd_c02272{word-spacing:0.000000px;}
.ws10_c02272{word-spacing:0.836352px;}
.wsa_c02272{word-spacing:33.300288px;}
.ws5_c02272{word-spacing:36.742464px;}
.ws1_c02272{word-spacing:37.759392px;}
.ws0_c02272{word-spacing:38.020752px;}
.ws3_c02272{word-spacing:39.218256px;}
.ws4_c02272{word-spacing:39.902544px;}
.ws6_c02272{word-spacing:42.026688px;}
._0_c02272{margin-left:-1.948320px;}
._2_c02272{width:1.482624px;}
._4_c02272{width:3.402432px;}
._5_c02272{width:14.751072px;}
._1_c02272{width:50.252400px;}
._3_c02272{width:51.530688px;}
.fc0_c02272{color:rgb(0,0,0);}
.fs0_c02272{font-size:47.520000px;}
.fs1_c02272{font-size:60.480000px;}
.y0_c02272{bottom:0.000000px;}
.y19_c02272{bottom:146.998362px;}
.y1b_c02272{bottom:186.600234px;}
.y1a_c02272{bottom:196.320450px;}
.y18_c02272{bottom:275.878542px;}
.y17_c02272{bottom:356.878758px;}
.y15_c02272{bottom:406.559730px;}
.y11_c02272{bottom:424.560306px;}
.y16_c02272{bottom:458.759262px;}
.y14_c02272{bottom:491.879514px;}
.y13_c02272{bottom:509.880090px;}
.y10_c02272{bottom:543.000342px;}
.y12_c02272{bottom:559.559874px;}
.yf_c02272{bottom:577.560450px;}
.y1c_c02272{bottom:614.280450px;}
.yb_c02272{bottom:667.558326px;}
.yd_c02272{bottom:707.160234px;}
.yc_c02272{bottom:716.880450px;}
.ya_c02272{bottom:796.438506px;}
.y9_c02272{bottom:877.438722px;}
.y7_c02272{bottom:926.759730px;}
.y3_c02272{bottom:944.760306px;}
.y8_c02272{bottom:979.319226px;}
.y6_c02272{bottom:1012.439478px;}
.y5_c02272{bottom:1030.440054px;}
.y2_c02272{bottom:1063.560306px;}
.y4_c02272{bottom:1079.759874px;}
.y1_c02272{bottom:1097.760450px;}
.ye_c02272{bottom:1134.840450px;}
.h3_c02272{height:32.530781px;}
.h1_c02272{height:41.696016px;}
.h2_c02272{height:41.812031px;}
.h4_c02272{height:54.654737px;}
.h0_c02272{height:1263.000000px;}
.w1_c02272{width:892.500000px;}
.w0_c02272{width:892.830000px;}
.x0_c02272{left:0.000000px;}
.xd_c02272{left:117.000000px;}
.x8_c02272{left:440.999856px;}
.x4_c02272{left:445.680576px;}
.xb_c02272{left:451.080000px;}
.x7_c02272{left:455.399604px;}
.x5_c02272{left:461.880144px;}
.x1_c02272{left:463.320000px;}
.xa_c02272{left:483.480360px;}
.x9_c02272{left:492.119496px;}
.x6_c02272{left:493.200576px;}
.xc_c02272{left:506.880360px;}
.x3_c02272{left:511.919892px;}
.x2_c02272{left:526.679604px;}
@media print{
.v0_c02272{vertical-align:0.000000pt;}
.v1_c02272{vertical-align:1.279488pt;}
.lse_c02272{letter-spacing:-1.064448pt;}
.lsa_c02272{letter-spacing:-0.511104pt;}
.lsb_c02272{letter-spacing:-0.321024pt;}
.ls10_c02272{letter-spacing:-0.244992pt;}
.ls9_c02272{letter-spacing:-0.232320pt;}
.ls6_c02272{letter-spacing:-0.215424pt;}
.ls3_c02272{letter-spacing:-0.105600pt;}
.ls13_c02272{letter-spacing:0.000000pt;}
.ls0_c02272{letter-spacing:0.005376pt;}
.ls5_c02272{letter-spacing:0.114048pt;}
.ls7_c02272{letter-spacing:0.215424pt;}
.lsd_c02272{letter-spacing:0.451968pt;}
.ls12_c02272{letter-spacing:0.456960pt;}
.lsf_c02272{letter-spacing:0.477312pt;}
.lsc_c02272{letter-spacing:0.515328pt;}
.ls11_c02272{letter-spacing:0.528000pt;}
.ls8_c02272{letter-spacing:0.532224pt;}
.ls1_c02272{letter-spacing:0.544896pt;}
.ls4_c02272{letter-spacing:0.637824pt;}
.ls2_c02272{letter-spacing:0.642048pt;}
.wsb_c02272{word-spacing:-13.445376pt;}
.ws9_c02272{word-spacing:-11.088000pt;}
.ws7_c02272{word-spacing:-11.075328pt;}
.ws8_c02272{word-spacing:-11.037312pt;}
.ws2_c02272{word-spacing:-10.775424pt;}
.ws12_c02272{word-spacing:-1.919232pt;}
.wsc_c02272{word-spacing:-0.865920pt;}
.wse_c02272{word-spacing:-0.105600pt;}
.wsf_c02272{word-spacing:-0.088704pt;}
.ws11_c02272{word-spacing:-0.076032pt;}
.wsd_c02272{word-spacing:0.000000pt;}
.ws10_c02272{word-spacing:0.743424pt;}
.wsa_c02272{word-spacing:29.600256pt;}
.ws5_c02272{word-spacing:32.659968pt;}
.ws1_c02272{word-spacing:33.563904pt;}
.ws0_c02272{word-spacing:33.796224pt;}
.ws3_c02272{word-spacing:34.860672pt;}
.ws4_c02272{word-spacing:35.468928pt;}
.ws6_c02272{word-spacing:37.357056pt;}
._0_c02272{margin-left:-1.731840pt;}
._2_c02272{width:1.317888pt;}
._4_c02272{width:3.024384pt;}
._5_c02272{width:13.112064pt;}
._1_c02272{width:44.668800pt;}
._3_c02272{width:45.805056pt;}
.fs0_c02272{font-size:42.240000pt;}
.fs1_c02272{font-size:53.760000pt;}
.y0_c02272{bottom:0.000000pt;}
.y19_c02272{bottom:130.665211pt;}
.y1b_c02272{bottom:165.866875pt;}
.y1a_c02272{bottom:174.507067pt;}
.y18_c02272{bottom:245.225371pt;}
.y17_c02272{bottom:317.225563pt;}
.y15_c02272{bottom:361.386427pt;}
.y11_c02272{bottom:377.386939pt;}
.y16_c02272{bottom:407.786011pt;}
.y14_c02272{bottom:437.226235pt;}
.y13_c02272{bottom:453.226747pt;}
.y10_c02272{bottom:482.666971pt;}
.y12_c02272{bottom:497.386555pt;}
.yf_c02272{bottom:513.387067pt;}
.y1c_c02272{bottom:546.027067pt;}
.yb_c02272{bottom:593.385179pt;}
.yd_c02272{bottom:628.586875pt;}
.yc_c02272{bottom:637.227067pt;}
.ya_c02272{bottom:707.945339pt;}
.y9_c02272{bottom:779.945531pt;}
.y7_c02272{bottom:823.786427pt;}
.y3_c02272{bottom:839.786939pt;}
.y8_c02272{bottom:870.505979pt;}
.y6_c02272{bottom:899.946203pt;}
.y5_c02272{bottom:915.946715pt;}
.y2_c02272{bottom:945.386939pt;}
.y4_c02272{bottom:959.786555pt;}
.y1_c02272{bottom:975.787067pt;}
.ye_c02272{bottom:1008.747067pt;}
.h3_c02272{height:28.916250pt;}
.h1_c02272{height:37.063125pt;}
.h2_c02272{height:37.166250pt;}
.h4_c02272{height:48.581988pt;}
.h0_c02272{height:1122.666667pt;}
.w1_c02272{width:793.333333pt;}
.w0_c02272{width:793.626667pt;}
.x0_c02272{left:0.000000pt;}
.xd_c02272{left:104.000000pt;}
.x8_c02272{left:391.999872pt;}
.x4_c02272{left:396.160512pt;}
.xb_c02272{left:400.960000pt;}
.x7_c02272{left:404.799648pt;}
.x5_c02272{left:410.560128pt;}
.x1_c02272{left:411.840000pt;}
.xa_c02272{left:429.760320pt;}
.x9_c02272{left:437.439552pt;}
.x6_c02272{left:438.400512pt;}
.xc_c02272{left:450.560320pt;}
.x3_c02272{left:455.039904pt;}
.x2_c02272{left:468.159648pt;}
}





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

.ir_c02273:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02273{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02273;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02273{font-family:ff1_c02273;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02273;src:url('chunks/assets/font_6f688f994a1ecc775cec0e41.woff2')format("woff");}.ff2_c02273{font-family:ff2_c02273;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02273;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02273{font-family:ff3_c02273;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02273{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02273{vertical-align:0.000000px;}
.v1_c02273{vertical-align:1.439424px;}
.lse_c02273{letter-spacing:-1.197504px;}
.lsa_c02273{letter-spacing:-0.574992px;}
.lsb_c02273{letter-spacing:-0.361152px;}
.ls10_c02273{letter-spacing:-0.275616px;}
.ls14_c02273{letter-spacing:-0.270864px;}
.ls9_c02273{letter-spacing:-0.261360px;}
.ls6_c02273{letter-spacing:-0.242352px;}
.ls3_c02273{letter-spacing:-0.118800px;}
.ls13_c02273{letter-spacing:0.000000px;}
.ls0_c02273{letter-spacing:0.006048px;}
.ls5_c02273{letter-spacing:0.128304px;}
.ls7_c02273{letter-spacing:0.242352px;}
.lsd_c02273{letter-spacing:0.508464px;}
.ls12_c02273{letter-spacing:0.514080px;}
.lsf_c02273{letter-spacing:0.536976px;}
.lsc_c02273{letter-spacing:0.579744px;}
.ls11_c02273{letter-spacing:0.594000px;}
.ls8_c02273{letter-spacing:0.598752px;}
.ls1_c02273{letter-spacing:0.613008px;}
.ls4_c02273{letter-spacing:0.717552px;}
.ls2_c02273{letter-spacing:0.722304px;}
.sc__c02273{text-shadow:none;}
.sc0_c02273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02273{-webkit-text-stroke:0px transparent;}
.sc0_c02273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02273{word-spacing:-15.126048px;}
.ws9_c02273{word-spacing:-12.474000px;}
.ws7_c02273{word-spacing:-12.459744px;}
.ws8_c02273{word-spacing:-12.416976px;}
.ws2_c02273{word-spacing:-12.122352px;}
.ws12_c02273{word-spacing:-2.159136px;}
.wsc_c02273{word-spacing:-0.974160px;}
.wse_c02273{word-spacing:-0.118800px;}
.wsf_c02273{word-spacing:-0.099792px;}
.ws13_c02273{word-spacing:-0.090288px;}
.ws11_c02273{word-spacing:-0.085536px;}
.wsd_c02273{word-spacing:0.000000px;}
.ws10_c02273{word-spacing:0.836352px;}
.wsa_c02273{word-spacing:33.300288px;}
.ws5_c02273{word-spacing:36.742464px;}
.ws1_c02273{word-spacing:37.759392px;}
.ws0_c02273{word-spacing:38.020752px;}
.ws3_c02273{word-spacing:39.218256px;}
.ws4_c02273{word-spacing:39.902544px;}
.ws6_c02273{word-spacing:42.026688px;}
._0_c02273{margin-left:-1.948320px;}
._2_c02273{width:1.482624px;}
._4_c02273{width:3.402432px;}
._5_c02273{width:14.751072px;}
._1_c02273{width:50.252400px;}
._3_c02273{width:51.530688px;}
.fc0_c02273{color:rgb(0,0,0);}
.fs0_c02273{font-size:47.520000px;}
.fs1_c02273{font-size:60.480000px;}
.y0_c02273{bottom:0.000000px;}
.y19_c02273{bottom:146.998362px;}
.y1b_c02273{bottom:186.600234px;}
.y1a_c02273{bottom:196.320450px;}
.y18_c02273{bottom:275.878542px;}
.y17_c02273{bottom:356.878758px;}
.y15_c02273{bottom:406.559730px;}
.y11_c02273{bottom:424.560306px;}
.y16_c02273{bottom:458.759262px;}
.y14_c02273{bottom:491.879514px;}
.y13_c02273{bottom:509.880090px;}
.y10_c02273{bottom:543.000342px;}
.y12_c02273{bottom:559.559874px;}
.yf_c02273{bottom:577.560450px;}
.y1c_c02273{bottom:614.280450px;}
.yb_c02273{bottom:667.558326px;}
.yd_c02273{bottom:707.160234px;}
.yc_c02273{bottom:716.880450px;}
.ya_c02273{bottom:796.438506px;}
.y9_c02273{bottom:877.438722px;}
.y7_c02273{bottom:926.759730px;}
.y3_c02273{bottom:944.760306px;}
.y8_c02273{bottom:979.319226px;}
.y6_c02273{bottom:1012.439478px;}
.y5_c02273{bottom:1030.440054px;}
.y2_c02273{bottom:1063.560306px;}
.y4_c02273{bottom:1079.759874px;}
.y1_c02273{bottom:1097.760450px;}
.ye_c02273{bottom:1134.840450px;}
.h3_c02273{height:32.530781px;}
.h1_c02273{height:41.696016px;}
.h2_c02273{height:41.812031px;}
.h4_c02273{height:54.654737px;}
.h0_c02273{height:1263.000000px;}
.w1_c02273{width:892.500000px;}
.w0_c02273{width:892.830000px;}
.x0_c02273{left:0.000000px;}
.xd_c02273{left:117.000000px;}
.x8_c02273{left:440.999856px;}
.x4_c02273{left:445.680576px;}
.xb_c02273{left:451.080000px;}
.x7_c02273{left:455.399604px;}
.x5_c02273{left:461.880144px;}
.x1_c02273{left:463.320000px;}
.xa_c02273{left:483.480360px;}
.x9_c02273{left:492.119496px;}
.x6_c02273{left:493.200576px;}
.xc_c02273{left:506.880360px;}
.x3_c02273{left:511.919892px;}
.x2_c02273{left:526.679604px;}
@media print{
.v0_c02273{vertical-align:0.000000pt;}
.v1_c02273{vertical-align:1.279488pt;}
.lse_c02273{letter-spacing:-1.064448pt;}
.lsa_c02273{letter-spacing:-0.511104pt;}
.lsb_c02273{letter-spacing:-0.321024pt;}
.ls10_c02273{letter-spacing:-0.244992pt;}
.ls14_c02273{letter-spacing:-0.240768pt;}
.ls9_c02273{letter-spacing:-0.232320pt;}
.ls6_c02273{letter-spacing:-0.215424pt;}
.ls3_c02273{letter-spacing:-0.105600pt;}
.ls13_c02273{letter-spacing:0.000000pt;}
.ls0_c02273{letter-spacing:0.005376pt;}
.ls5_c02273{letter-spacing:0.114048pt;}
.ls7_c02273{letter-spacing:0.215424pt;}
.lsd_c02273{letter-spacing:0.451968pt;}
.ls12_c02273{letter-spacing:0.456960pt;}
.lsf_c02273{letter-spacing:0.477312pt;}
.lsc_c02273{letter-spacing:0.515328pt;}
.ls11_c02273{letter-spacing:0.528000pt;}
.ls8_c02273{letter-spacing:0.532224pt;}
.ls1_c02273{letter-spacing:0.544896pt;}
.ls4_c02273{letter-spacing:0.637824pt;}
.ls2_c02273{letter-spacing:0.642048pt;}
.wsb_c02273{word-spacing:-13.445376pt;}
.ws9_c02273{word-spacing:-11.088000pt;}
.ws7_c02273{word-spacing:-11.075328pt;}
.ws8_c02273{word-spacing:-11.037312pt;}
.ws2_c02273{word-spacing:-10.775424pt;}
.ws12_c02273{word-spacing:-1.919232pt;}
.wsc_c02273{word-spacing:-0.865920pt;}
.wse_c02273{word-spacing:-0.105600pt;}
.wsf_c02273{word-spacing:-0.088704pt;}
.ws13_c02273{word-spacing:-0.080256pt;}
.ws11_c02273{word-spacing:-0.076032pt;}
.wsd_c02273{word-spacing:0.000000pt;}
.ws10_c02273{word-spacing:0.743424pt;}
.wsa_c02273{word-spacing:29.600256pt;}
.ws5_c02273{word-spacing:32.659968pt;}
.ws1_c02273{word-spacing:33.563904pt;}
.ws0_c02273{word-spacing:33.796224pt;}
.ws3_c02273{word-spacing:34.860672pt;}
.ws4_c02273{word-spacing:35.468928pt;}
.ws6_c02273{word-spacing:37.357056pt;}
._0_c02273{margin-left:-1.731840pt;}
._2_c02273{width:1.317888pt;}
._4_c02273{width:3.024384pt;}
._5_c02273{width:13.112064pt;}
._1_c02273{width:44.668800pt;}
._3_c02273{width:45.805056pt;}
.fs0_c02273{font-size:42.240000pt;}
.fs1_c02273{font-size:53.760000pt;}
.y0_c02273{bottom:0.000000pt;}
.y19_c02273{bottom:130.665211pt;}
.y1b_c02273{bottom:165.866875pt;}
.y1a_c02273{bottom:174.507067pt;}
.y18_c02273{bottom:245.225371pt;}
.y17_c02273{bottom:317.225563pt;}
.y15_c02273{bottom:361.386427pt;}
.y11_c02273{bottom:377.386939pt;}
.y16_c02273{bottom:407.786011pt;}
.y14_c02273{bottom:437.226235pt;}
.y13_c02273{bottom:453.226747pt;}
.y10_c02273{bottom:482.666971pt;}
.y12_c02273{bottom:497.386555pt;}
.yf_c02273{bottom:513.387067pt;}
.y1c_c02273{bottom:546.027067pt;}
.yb_c02273{bottom:593.385179pt;}
.yd_c02273{bottom:628.586875pt;}
.yc_c02273{bottom:637.227067pt;}
.ya_c02273{bottom:707.945339pt;}
.y9_c02273{bottom:779.945531pt;}
.y7_c02273{bottom:823.786427pt;}
.y3_c02273{bottom:839.786939pt;}
.y8_c02273{bottom:870.505979pt;}
.y6_c02273{bottom:899.946203pt;}
.y5_c02273{bottom:915.946715pt;}
.y2_c02273{bottom:945.386939pt;}
.y4_c02273{bottom:959.786555pt;}
.y1_c02273{bottom:975.787067pt;}
.ye_c02273{bottom:1008.747067pt;}
.h3_c02273{height:28.916250pt;}
.h1_c02273{height:37.063125pt;}
.h2_c02273{height:37.166250pt;}
.h4_c02273{height:48.581988pt;}
.h0_c02273{height:1122.666667pt;}
.w1_c02273{width:793.333333pt;}
.w0_c02273{width:793.626667pt;}
.x0_c02273{left:0.000000pt;}
.xd_c02273{left:104.000000pt;}
.x8_c02273{left:391.999872pt;}
.x4_c02273{left:396.160512pt;}
.xb_c02273{left:400.960000pt;}
.x7_c02273{left:404.799648pt;}
.x5_c02273{left:410.560128pt;}
.x1_c02273{left:411.840000pt;}
.xa_c02273{left:429.760320pt;}
.x9_c02273{left:437.439552pt;}
.x6_c02273{left:438.400512pt;}
.xc_c02273{left:450.560320pt;}
.x3_c02273{left:455.039904pt;}
.x2_c02273{left:468.159648pt;}
}





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

.ir_c02274:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02274{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02274;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02274{font-family:ff1_c02274;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02274;src:url('chunks/assets/font_6f688f994a1ecc775cec0e41.woff2')format("woff");}.ff2_c02274{font-family:ff2_c02274;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02274;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02274{font-family:ff3_c02274;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02274{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02274{vertical-align:0.000000px;}
.v1_c02274{vertical-align:1.439424px;}
.lse_c02274{letter-spacing:-1.197504px;}
.lsa_c02274{letter-spacing:-0.574992px;}
.lsb_c02274{letter-spacing:-0.361152px;}
.ls10_c02274{letter-spacing:-0.275616px;}
.ls9_c02274{letter-spacing:-0.261360px;}
.ls6_c02274{letter-spacing:-0.242352px;}
.ls3_c02274{letter-spacing:-0.118800px;}
.ls13_c02274{letter-spacing:0.000000px;}
.ls0_c02274{letter-spacing:0.006048px;}
.ls5_c02274{letter-spacing:0.128304px;}
.ls7_c02274{letter-spacing:0.242352px;}
.lsd_c02274{letter-spacing:0.508464px;}
.ls12_c02274{letter-spacing:0.514080px;}
.lsf_c02274{letter-spacing:0.536976px;}
.lsc_c02274{letter-spacing:0.579744px;}
.ls11_c02274{letter-spacing:0.594000px;}
.ls8_c02274{letter-spacing:0.598752px;}
.ls1_c02274{letter-spacing:0.613008px;}
.ls4_c02274{letter-spacing:0.717552px;}
.ls2_c02274{letter-spacing:0.722304px;}
.sc__c02274{text-shadow:none;}
.sc0_c02274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02274{-webkit-text-stroke:0px transparent;}
.sc0_c02274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02274{word-spacing:-15.126048px;}
.ws9_c02274{word-spacing:-12.474000px;}
.ws7_c02274{word-spacing:-12.459744px;}
.ws8_c02274{word-spacing:-12.416976px;}
.ws2_c02274{word-spacing:-12.122352px;}
.ws12_c02274{word-spacing:-2.159136px;}
.wsc_c02274{word-spacing:-0.974160px;}
.wse_c02274{word-spacing:-0.118800px;}
.wsf_c02274{word-spacing:-0.099792px;}
.ws11_c02274{word-spacing:-0.085536px;}
.wsd_c02274{word-spacing:0.000000px;}
.ws10_c02274{word-spacing:0.836352px;}
.wsa_c02274{word-spacing:33.300288px;}
.ws5_c02274{word-spacing:36.742464px;}
.ws1_c02274{word-spacing:37.759392px;}
.ws0_c02274{word-spacing:38.020752px;}
.ws3_c02274{word-spacing:39.218256px;}
.ws4_c02274{word-spacing:39.902544px;}
.ws6_c02274{word-spacing:42.026688px;}
._0_c02274{margin-left:-1.948320px;}
._2_c02274{width:1.482624px;}
._4_c02274{width:3.402432px;}
._5_c02274{width:14.751072px;}
._1_c02274{width:50.252400px;}
._3_c02274{width:51.530688px;}
.fc0_c02274{color:rgb(0,0,0);}
.fs0_c02274{font-size:47.520000px;}
.fs1_c02274{font-size:60.480000px;}
.y0_c02274{bottom:0.000000px;}
.y19_c02274{bottom:146.998362px;}
.y1b_c02274{bottom:186.600234px;}
.y1a_c02274{bottom:196.320450px;}
.y18_c02274{bottom:275.878542px;}
.y17_c02274{bottom:356.878758px;}
.y15_c02274{bottom:406.559730px;}
.y11_c02274{bottom:424.560306px;}
.y16_c02274{bottom:458.759262px;}
.y14_c02274{bottom:491.879514px;}
.y13_c02274{bottom:509.880090px;}
.y10_c02274{bottom:543.000342px;}
.y12_c02274{bottom:559.559874px;}
.yf_c02274{bottom:577.560450px;}
.y1c_c02274{bottom:614.280450px;}
.yb_c02274{bottom:667.558326px;}
.yd_c02274{bottom:707.160234px;}
.yc_c02274{bottom:716.880450px;}
.ya_c02274{bottom:796.438506px;}
.y9_c02274{bottom:877.438722px;}
.y7_c02274{bottom:926.759730px;}
.y3_c02274{bottom:944.760306px;}
.y8_c02274{bottom:979.319226px;}
.y6_c02274{bottom:1012.439478px;}
.y5_c02274{bottom:1030.440054px;}
.y2_c02274{bottom:1063.560306px;}
.y4_c02274{bottom:1079.759874px;}
.y1_c02274{bottom:1097.760450px;}
.ye_c02274{bottom:1134.840450px;}
.h3_c02274{height:32.530781px;}
.h1_c02274{height:41.696016px;}
.h2_c02274{height:41.812031px;}
.h4_c02274{height:54.654737px;}
.h0_c02274{height:1263.000000px;}
.w1_c02274{width:892.500000px;}
.w0_c02274{width:892.830000px;}
.x0_c02274{left:0.000000px;}
.xd_c02274{left:117.000000px;}
.x8_c02274{left:440.999856px;}
.x4_c02274{left:445.680576px;}
.xb_c02274{left:451.080000px;}
.x7_c02274{left:455.399604px;}
.x5_c02274{left:461.880144px;}
.x1_c02274{left:463.320000px;}
.xa_c02274{left:483.480360px;}
.x9_c02274{left:492.119496px;}
.x6_c02274{left:493.200576px;}
.xc_c02274{left:506.880360px;}
.x3_c02274{left:511.919892px;}
.x2_c02274{left:526.679604px;}
@media print{
.v0_c02274{vertical-align:0.000000pt;}
.v1_c02274{vertical-align:1.279488pt;}
.lse_c02274{letter-spacing:-1.064448pt;}
.lsa_c02274{letter-spacing:-0.511104pt;}
.lsb_c02274{letter-spacing:-0.321024pt;}
.ls10_c02274{letter-spacing:-0.244992pt;}
.ls9_c02274{letter-spacing:-0.232320pt;}
.ls6_c02274{letter-spacing:-0.215424pt;}
.ls3_c02274{letter-spacing:-0.105600pt;}
.ls13_c02274{letter-spacing:0.000000pt;}
.ls0_c02274{letter-spacing:0.005376pt;}
.ls5_c02274{letter-spacing:0.114048pt;}
.ls7_c02274{letter-spacing:0.215424pt;}
.lsd_c02274{letter-spacing:0.451968pt;}
.ls12_c02274{letter-spacing:0.456960pt;}
.lsf_c02274{letter-spacing:0.477312pt;}
.lsc_c02274{letter-spacing:0.515328pt;}
.ls11_c02274{letter-spacing:0.528000pt;}
.ls8_c02274{letter-spacing:0.532224pt;}
.ls1_c02274{letter-spacing:0.544896pt;}
.ls4_c02274{letter-spacing:0.637824pt;}
.ls2_c02274{letter-spacing:0.642048pt;}
.wsb_c02274{word-spacing:-13.445376pt;}
.ws9_c02274{word-spacing:-11.088000pt;}
.ws7_c02274{word-spacing:-11.075328pt;}
.ws8_c02274{word-spacing:-11.037312pt;}
.ws2_c02274{word-spacing:-10.775424pt;}
.ws12_c02274{word-spacing:-1.919232pt;}
.wsc_c02274{word-spacing:-0.865920pt;}
.wse_c02274{word-spacing:-0.105600pt;}
.wsf_c02274{word-spacing:-0.088704pt;}
.ws11_c02274{word-spacing:-0.076032pt;}
.wsd_c02274{word-spacing:0.000000pt;}
.ws10_c02274{word-spacing:0.743424pt;}
.wsa_c02274{word-spacing:29.600256pt;}
.ws5_c02274{word-spacing:32.659968pt;}
.ws1_c02274{word-spacing:33.563904pt;}
.ws0_c02274{word-spacing:33.796224pt;}
.ws3_c02274{word-spacing:34.860672pt;}
.ws4_c02274{word-spacing:35.468928pt;}
.ws6_c02274{word-spacing:37.357056pt;}
._0_c02274{margin-left:-1.731840pt;}
._2_c02274{width:1.317888pt;}
._4_c02274{width:3.024384pt;}
._5_c02274{width:13.112064pt;}
._1_c02274{width:44.668800pt;}
._3_c02274{width:45.805056pt;}
.fs0_c02274{font-size:42.240000pt;}
.fs1_c02274{font-size:53.760000pt;}
.y0_c02274{bottom:0.000000pt;}
.y19_c02274{bottom:130.665211pt;}
.y1b_c02274{bottom:165.866875pt;}
.y1a_c02274{bottom:174.507067pt;}
.y18_c02274{bottom:245.225371pt;}
.y17_c02274{bottom:317.225563pt;}
.y15_c02274{bottom:361.386427pt;}
.y11_c02274{bottom:377.386939pt;}
.y16_c02274{bottom:407.786011pt;}
.y14_c02274{bottom:437.226235pt;}
.y13_c02274{bottom:453.226747pt;}
.y10_c02274{bottom:482.666971pt;}
.y12_c02274{bottom:497.386555pt;}
.yf_c02274{bottom:513.387067pt;}
.y1c_c02274{bottom:546.027067pt;}
.yb_c02274{bottom:593.385179pt;}
.yd_c02274{bottom:628.586875pt;}
.yc_c02274{bottom:637.227067pt;}
.ya_c02274{bottom:707.945339pt;}
.y9_c02274{bottom:779.945531pt;}
.y7_c02274{bottom:823.786427pt;}
.y3_c02274{bottom:839.786939pt;}
.y8_c02274{bottom:870.505979pt;}
.y6_c02274{bottom:899.946203pt;}
.y5_c02274{bottom:915.946715pt;}
.y2_c02274{bottom:945.386939pt;}
.y4_c02274{bottom:959.786555pt;}
.y1_c02274{bottom:975.787067pt;}
.ye_c02274{bottom:1008.747067pt;}
.h3_c02274{height:28.916250pt;}
.h1_c02274{height:37.063125pt;}
.h2_c02274{height:37.166250pt;}
.h4_c02274{height:48.581988pt;}
.h0_c02274{height:1122.666667pt;}
.w1_c02274{width:793.333333pt;}
.w0_c02274{width:793.626667pt;}
.x0_c02274{left:0.000000pt;}
.xd_c02274{left:104.000000pt;}
.x8_c02274{left:391.999872pt;}
.x4_c02274{left:396.160512pt;}
.xb_c02274{left:400.960000pt;}
.x7_c02274{left:404.799648pt;}
.x5_c02274{left:410.560128pt;}
.x1_c02274{left:411.840000pt;}
.xa_c02274{left:429.760320pt;}
.x9_c02274{left:437.439552pt;}
.x6_c02274{left:438.400512pt;}
.xc_c02274{left:450.560320pt;}
.x3_c02274{left:455.039904pt;}
.x2_c02274{left:468.159648pt;}
}





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

.ir_c02275:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02275{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02275;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02275{font-family:ff1_c02275;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02275;src:url('chunks/assets/font_6f688f994a1ecc775cec0e41.woff2')format("woff");}.ff2_c02275{font-family:ff2_c02275;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02275;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02275{font-family:ff3_c02275;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02275{vertical-align:0.000000px;}
.v1_c02275{vertical-align:1.439424px;}
.lse_c02275{letter-spacing:-1.197504px;}
.lsa_c02275{letter-spacing:-0.574992px;}
.lsb_c02275{letter-spacing:-0.361152px;}
.ls10_c02275{letter-spacing:-0.275616px;}
.ls14_c02275{letter-spacing:-0.270864px;}
.ls9_c02275{letter-spacing:-0.261360px;}
.ls6_c02275{letter-spacing:-0.242352px;}
.ls3_c02275{letter-spacing:-0.118800px;}
.ls13_c02275{letter-spacing:0.000000px;}
.ls0_c02275{letter-spacing:0.006048px;}
.ls5_c02275{letter-spacing:0.128304px;}
.ls7_c02275{letter-spacing:0.242352px;}
.lsd_c02275{letter-spacing:0.508464px;}
.ls12_c02275{letter-spacing:0.514080px;}
.lsf_c02275{letter-spacing:0.536976px;}
.lsc_c02275{letter-spacing:0.579744px;}
.ls11_c02275{letter-spacing:0.594000px;}
.ls8_c02275{letter-spacing:0.598752px;}
.ls1_c02275{letter-spacing:0.613008px;}
.ls4_c02275{letter-spacing:0.717552px;}
.ls2_c02275{letter-spacing:0.722304px;}
.sc__c02275{text-shadow:none;}
.sc0_c02275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02275{-webkit-text-stroke:0px transparent;}
.sc0_c02275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02275{word-spacing:-15.126048px;}
.ws9_c02275{word-spacing:-12.474000px;}
.ws7_c02275{word-spacing:-12.459744px;}
.ws8_c02275{word-spacing:-12.416976px;}
.ws2_c02275{word-spacing:-12.122352px;}
.ws12_c02275{word-spacing:-2.159136px;}
.wsc_c02275{word-spacing:-0.974160px;}
.wse_c02275{word-spacing:-0.118800px;}
.wsf_c02275{word-spacing:-0.099792px;}
.ws13_c02275{word-spacing:-0.090288px;}
.ws11_c02275{word-spacing:-0.085536px;}
.wsd_c02275{word-spacing:0.000000px;}
.ws10_c02275{word-spacing:0.836352px;}
.wsa_c02275{word-spacing:33.300288px;}
.ws5_c02275{word-spacing:36.742464px;}
.ws1_c02275{word-spacing:37.759392px;}
.ws0_c02275{word-spacing:38.020752px;}
.ws3_c02275{word-spacing:39.218256px;}
.ws4_c02275{word-spacing:39.902544px;}
.ws6_c02275{word-spacing:42.026688px;}
._0_c02275{margin-left:-1.948320px;}
._2_c02275{width:1.482624px;}
._4_c02275{width:3.402432px;}
._5_c02275{width:14.751072px;}
._1_c02275{width:50.252400px;}
._3_c02275{width:51.530688px;}
.fc0_c02275{color:rgb(0,0,0);}
.fs0_c02275{font-size:47.520000px;}
.fs1_c02275{font-size:60.480000px;}
.y0_c02275{bottom:0.000000px;}
.y19_c02275{bottom:146.998362px;}
.y1b_c02275{bottom:186.600234px;}
.y1a_c02275{bottom:196.320450px;}
.y18_c02275{bottom:275.878542px;}
.y17_c02275{bottom:356.878758px;}
.y15_c02275{bottom:406.559730px;}
.y11_c02275{bottom:424.560306px;}
.y16_c02275{bottom:458.759262px;}
.y14_c02275{bottom:491.879514px;}
.y13_c02275{bottom:509.880090px;}
.y10_c02275{bottom:543.000342px;}
.y12_c02275{bottom:559.559874px;}
.yf_c02275{bottom:577.560450px;}
.y1c_c02275{bottom:614.280450px;}
.yb_c02275{bottom:667.558326px;}
.yd_c02275{bottom:707.160234px;}
.yc_c02275{bottom:716.880450px;}
.ya_c02275{bottom:796.438506px;}
.y9_c02275{bottom:877.438722px;}
.y7_c02275{bottom:926.759730px;}
.y3_c02275{bottom:944.760306px;}
.y8_c02275{bottom:979.319226px;}
.y6_c02275{bottom:1012.439478px;}
.y5_c02275{bottom:1030.440054px;}
.y2_c02275{bottom:1063.560306px;}
.y4_c02275{bottom:1079.759874px;}
.y1_c02275{bottom:1097.760450px;}
.ye_c02275{bottom:1134.840450px;}
.h3_c02275{height:32.530781px;}
.h1_c02275{height:41.696016px;}
.h2_c02275{height:41.812031px;}
.h4_c02275{height:54.654737px;}
.h0_c02275{height:1263.000000px;}
.w1_c02275{width:892.500000px;}
.w0_c02275{width:892.830000px;}
.x0_c02275{left:0.000000px;}
.xd_c02275{left:117.000000px;}
.x8_c02275{left:440.999856px;}
.x4_c02275{left:445.680576px;}
.xb_c02275{left:451.080000px;}
.x7_c02275{left:455.399604px;}
.x5_c02275{left:461.880144px;}
.x1_c02275{left:463.320000px;}
.xa_c02275{left:483.480360px;}
.x9_c02275{left:492.119496px;}
.x6_c02275{left:493.200576px;}
.xc_c02275{left:506.880360px;}
.x3_c02275{left:511.919892px;}
.x2_c02275{left:526.679604px;}
@media print{
.v0_c02275{vertical-align:0.000000pt;}
.v1_c02275{vertical-align:1.279488pt;}
.lse_c02275{letter-spacing:-1.064448pt;}
.lsa_c02275{letter-spacing:-0.511104pt;}
.lsb_c02275{letter-spacing:-0.321024pt;}
.ls10_c02275{letter-spacing:-0.244992pt;}
.ls14_c02275{letter-spacing:-0.240768pt;}
.ls9_c02275{letter-spacing:-0.232320pt;}
.ls6_c02275{letter-spacing:-0.215424pt;}
.ls3_c02275{letter-spacing:-0.105600pt;}
.ls13_c02275{letter-spacing:0.000000pt;}
.ls0_c02275{letter-spacing:0.005376pt;}
.ls5_c02275{letter-spacing:0.114048pt;}
.ls7_c02275{letter-spacing:0.215424pt;}
.lsd_c02275{letter-spacing:0.451968pt;}
.ls12_c02275{letter-spacing:0.456960pt;}
.lsf_c02275{letter-spacing:0.477312pt;}
.lsc_c02275{letter-spacing:0.515328pt;}
.ls11_c02275{letter-spacing:0.528000pt;}
.ls8_c02275{letter-spacing:0.532224pt;}
.ls1_c02275{letter-spacing:0.544896pt;}
.ls4_c02275{letter-spacing:0.637824pt;}
.ls2_c02275{letter-spacing:0.642048pt;}
.wsb_c02275{word-spacing:-13.445376pt;}
.ws9_c02275{word-spacing:-11.088000pt;}
.ws7_c02275{word-spacing:-11.075328pt;}
.ws8_c02275{word-spacing:-11.037312pt;}
.ws2_c02275{word-spacing:-10.775424pt;}
.ws12_c02275{word-spacing:-1.919232pt;}
.wsc_c02275{word-spacing:-0.865920pt;}
.wse_c02275{word-spacing:-0.105600pt;}
.wsf_c02275{word-spacing:-0.088704pt;}
.ws13_c02275{word-spacing:-0.080256pt;}
.ws11_c02275{word-spacing:-0.076032pt;}
.wsd_c02275{word-spacing:0.000000pt;}
.ws10_c02275{word-spacing:0.743424pt;}
.wsa_c02275{word-spacing:29.600256pt;}
.ws5_c02275{word-spacing:32.659968pt;}
.ws1_c02275{word-spacing:33.563904pt;}
.ws0_c02275{word-spacing:33.796224pt;}
.ws3_c02275{word-spacing:34.860672pt;}
.ws4_c02275{word-spacing:35.468928pt;}
.ws6_c02275{word-spacing:37.357056pt;}
._0_c02275{margin-left:-1.731840pt;}
._2_c02275{width:1.317888pt;}
._4_c02275{width:3.024384pt;}
._5_c02275{width:13.112064pt;}
._1_c02275{width:44.668800pt;}
._3_c02275{width:45.805056pt;}
.fs0_c02275{font-size:42.240000pt;}
.fs1_c02275{font-size:53.760000pt;}
.y0_c02275{bottom:0.000000pt;}
.y19_c02275{bottom:130.665211pt;}
.y1b_c02275{bottom:165.866875pt;}
.y1a_c02275{bottom:174.507067pt;}
.y18_c02275{bottom:245.225371pt;}
.y17_c02275{bottom:317.225563pt;}
.y15_c02275{bottom:361.386427pt;}
.y11_c02275{bottom:377.386939pt;}
.y16_c02275{bottom:407.786011pt;}
.y14_c02275{bottom:437.226235pt;}
.y13_c02275{bottom:453.226747pt;}
.y10_c02275{bottom:482.666971pt;}
.y12_c02275{bottom:497.386555pt;}
.yf_c02275{bottom:513.387067pt;}
.y1c_c02275{bottom:546.027067pt;}
.yb_c02275{bottom:593.385179pt;}
.yd_c02275{bottom:628.586875pt;}
.yc_c02275{bottom:637.227067pt;}
.ya_c02275{bottom:707.945339pt;}
.y9_c02275{bottom:779.945531pt;}
.y7_c02275{bottom:823.786427pt;}
.y3_c02275{bottom:839.786939pt;}
.y8_c02275{bottom:870.505979pt;}
.y6_c02275{bottom:899.946203pt;}
.y5_c02275{bottom:915.946715pt;}
.y2_c02275{bottom:945.386939pt;}
.y4_c02275{bottom:959.786555pt;}
.y1_c02275{bottom:975.787067pt;}
.ye_c02275{bottom:1008.747067pt;}
.h3_c02275{height:28.916250pt;}
.h1_c02275{height:37.063125pt;}
.h2_c02275{height:37.166250pt;}
.h4_c02275{height:48.581988pt;}
.h0_c02275{height:1122.666667pt;}
.w1_c02275{width:793.333333pt;}
.w0_c02275{width:793.626667pt;}
.x0_c02275{left:0.000000pt;}
.xd_c02275{left:104.000000pt;}
.x8_c02275{left:391.999872pt;}
.x4_c02275{left:396.160512pt;}
.xb_c02275{left:400.960000pt;}
.x7_c02275{left:404.799648pt;}
.x5_c02275{left:410.560128pt;}
.x1_c02275{left:411.840000pt;}
.xa_c02275{left:429.760320pt;}
.x9_c02275{left:437.439552pt;}
.x6_c02275{left:438.400512pt;}
.xc_c02275{left:450.560320pt;}
.x3_c02275{left:455.039904pt;}
.x2_c02275{left:468.159648pt;}
}





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

.ir_c02276:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02276{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02276;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02276{font-family:ff1_c02276;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02276;src:url('chunks/assets/font_0aacdededf401a50fd5a7dfe.woff2')format("woff");}.ff2_c02276{font-family:ff2_c02276;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02276;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02276{font-family:ff3_c02276;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02276{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02276{vertical-align:0.000000px;}
.v1_c02276{vertical-align:1.439424px;}
.lse_c02276{letter-spacing:-1.197504px;}
.lsa_c02276{letter-spacing:-0.574992px;}
.lsb_c02276{letter-spacing:-0.361152px;}
.ls11_c02276{letter-spacing:-0.275616px;}
.ls9_c02276{letter-spacing:-0.261360px;}
.ls6_c02276{letter-spacing:-0.242352px;}
.ls3_c02276{letter-spacing:-0.118800px;}
.ls14_c02276{letter-spacing:0.000000px;}
.ls0_c02276{letter-spacing:0.006048px;}
.ls5_c02276{letter-spacing:0.128304px;}
.ls7_c02276{letter-spacing:0.242352px;}
.lsd_c02276{letter-spacing:0.508464px;}
.ls13_c02276{letter-spacing:0.514080px;}
.ls10_c02276{letter-spacing:0.536976px;}
.lsc_c02276{letter-spacing:0.579744px;}
.ls12_c02276{letter-spacing:0.594000px;}
.ls8_c02276{letter-spacing:0.598752px;}
.ls1_c02276{letter-spacing:0.613008px;}
.lsf_c02276{letter-spacing:0.684288px;}
.ls4_c02276{letter-spacing:0.717552px;}
.ls2_c02276{letter-spacing:0.722304px;}
.sc__c02276{text-shadow:none;}
.sc0_c02276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02276{-webkit-text-stroke:0px transparent;}
.sc0_c02276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02276{word-spacing:-15.126048px;}
.ws9_c02276{word-spacing:-12.474000px;}
.ws8_c02276{word-spacing:-12.416976px;}
.ws2_c02276{word-spacing:-12.122352px;}
.ws13_c02276{word-spacing:-2.159136px;}
.ws11_c02276{word-spacing:-1.045440px;}
.wsc_c02276{word-spacing:-0.974160px;}
.wse_c02276{word-spacing:-0.118800px;}
.wsf_c02276{word-spacing:-0.099792px;}
.ws12_c02276{word-spacing:-0.085536px;}
.wsd_c02276{word-spacing:0.000000px;}
.ws10_c02276{word-spacing:0.836352px;}
.wsa_c02276{word-spacing:33.300288px;}
.ws7_c02276{word-spacing:36.143712px;}
.ws5_c02276{word-spacing:36.742464px;}
.ws1_c02276{word-spacing:37.759392px;}
.ws0_c02276{word-spacing:38.020752px;}
.ws3_c02276{word-spacing:39.218256px;}
.ws4_c02276{word-spacing:39.902544px;}
.ws6_c02276{word-spacing:42.026688px;}
._0_c02276{margin-left:-1.948320px;}
._2_c02276{width:1.482624px;}
._4_c02276{width:3.402432px;}
._5_c02276{width:14.751072px;}
._1_c02276{width:50.252400px;}
._3_c02276{width:51.530688px;}
.fc0_c02276{color:rgb(0,0,0);}
.fs0_c02276{font-size:47.520000px;}
.fs1_c02276{font-size:60.480000px;}
.y0_c02276{bottom:0.000000px;}
.y19_c02276{bottom:146.998362px;}
.y1b_c02276{bottom:186.600234px;}
.y1a_c02276{bottom:196.320450px;}
.y18_c02276{bottom:275.878542px;}
.y17_c02276{bottom:356.878758px;}
.y15_c02276{bottom:406.559730px;}
.y11_c02276{bottom:424.560306px;}
.y16_c02276{bottom:458.759262px;}
.y14_c02276{bottom:491.879514px;}
.y13_c02276{bottom:509.880090px;}
.y10_c02276{bottom:543.000342px;}
.y12_c02276{bottom:559.559874px;}
.yf_c02276{bottom:577.560450px;}
.y1c_c02276{bottom:614.280450px;}
.yb_c02276{bottom:667.558326px;}
.yd_c02276{bottom:707.160234px;}
.yc_c02276{bottom:716.880450px;}
.ya_c02276{bottom:796.438506px;}
.y9_c02276{bottom:877.438722px;}
.y7_c02276{bottom:926.759730px;}
.y3_c02276{bottom:944.760306px;}
.y8_c02276{bottom:979.319226px;}
.y6_c02276{bottom:1012.439478px;}
.y5_c02276{bottom:1030.440054px;}
.y2_c02276{bottom:1063.560306px;}
.y4_c02276{bottom:1079.759874px;}
.y1_c02276{bottom:1097.760450px;}
.ye_c02276{bottom:1134.840450px;}
.h3_c02276{height:32.530781px;}
.h1_c02276{height:41.696016px;}
.h2_c02276{height:41.812031px;}
.h4_c02276{height:54.654737px;}
.h0_c02276{height:1263.000000px;}
.w1_c02276{width:892.500000px;}
.w0_c02276{width:892.830000px;}
.x0_c02276{left:0.000000px;}
.xd_c02276{left:117.000000px;}
.x8_c02276{left:440.999856px;}
.x4_c02276{left:445.680576px;}
.xb_c02276{left:451.080000px;}
.x7_c02276{left:455.399604px;}
.x5_c02276{left:461.880144px;}
.x1_c02276{left:463.320000px;}
.xa_c02276{left:483.480360px;}
.x9_c02276{left:492.119496px;}
.x6_c02276{left:493.200576px;}
.xc_c02276{left:506.880360px;}
.x3_c02276{left:511.919892px;}
.x2_c02276{left:526.679604px;}
@media print{
.v0_c02276{vertical-align:0.000000pt;}
.v1_c02276{vertical-align:1.279488pt;}
.lse_c02276{letter-spacing:-1.064448pt;}
.lsa_c02276{letter-spacing:-0.511104pt;}
.lsb_c02276{letter-spacing:-0.321024pt;}
.ls11_c02276{letter-spacing:-0.244992pt;}
.ls9_c02276{letter-spacing:-0.232320pt;}
.ls6_c02276{letter-spacing:-0.215424pt;}
.ls3_c02276{letter-spacing:-0.105600pt;}
.ls14_c02276{letter-spacing:0.000000pt;}
.ls0_c02276{letter-spacing:0.005376pt;}
.ls5_c02276{letter-spacing:0.114048pt;}
.ls7_c02276{letter-spacing:0.215424pt;}
.lsd_c02276{letter-spacing:0.451968pt;}
.ls13_c02276{letter-spacing:0.456960pt;}
.ls10_c02276{letter-spacing:0.477312pt;}
.lsc_c02276{letter-spacing:0.515328pt;}
.ls12_c02276{letter-spacing:0.528000pt;}
.ls8_c02276{letter-spacing:0.532224pt;}
.ls1_c02276{letter-spacing:0.544896pt;}
.lsf_c02276{letter-spacing:0.608256pt;}
.ls4_c02276{letter-spacing:0.637824pt;}
.ls2_c02276{letter-spacing:0.642048pt;}
.wsb_c02276{word-spacing:-13.445376pt;}
.ws9_c02276{word-spacing:-11.088000pt;}
.ws8_c02276{word-spacing:-11.037312pt;}
.ws2_c02276{word-spacing:-10.775424pt;}
.ws13_c02276{word-spacing:-1.919232pt;}
.ws11_c02276{word-spacing:-0.929280pt;}
.wsc_c02276{word-spacing:-0.865920pt;}
.wse_c02276{word-spacing:-0.105600pt;}
.wsf_c02276{word-spacing:-0.088704pt;}
.ws12_c02276{word-spacing:-0.076032pt;}
.wsd_c02276{word-spacing:0.000000pt;}
.ws10_c02276{word-spacing:0.743424pt;}
.wsa_c02276{word-spacing:29.600256pt;}
.ws7_c02276{word-spacing:32.127744pt;}
.ws5_c02276{word-spacing:32.659968pt;}
.ws1_c02276{word-spacing:33.563904pt;}
.ws0_c02276{word-spacing:33.796224pt;}
.ws3_c02276{word-spacing:34.860672pt;}
.ws4_c02276{word-spacing:35.468928pt;}
.ws6_c02276{word-spacing:37.357056pt;}
._0_c02276{margin-left:-1.731840pt;}
._2_c02276{width:1.317888pt;}
._4_c02276{width:3.024384pt;}
._5_c02276{width:13.112064pt;}
._1_c02276{width:44.668800pt;}
._3_c02276{width:45.805056pt;}
.fs0_c02276{font-size:42.240000pt;}
.fs1_c02276{font-size:53.760000pt;}
.y0_c02276{bottom:0.000000pt;}
.y19_c02276{bottom:130.665211pt;}
.y1b_c02276{bottom:165.866875pt;}
.y1a_c02276{bottom:174.507067pt;}
.y18_c02276{bottom:245.225371pt;}
.y17_c02276{bottom:317.225563pt;}
.y15_c02276{bottom:361.386427pt;}
.y11_c02276{bottom:377.386939pt;}
.y16_c02276{bottom:407.786011pt;}
.y14_c02276{bottom:437.226235pt;}
.y13_c02276{bottom:453.226747pt;}
.y10_c02276{bottom:482.666971pt;}
.y12_c02276{bottom:497.386555pt;}
.yf_c02276{bottom:513.387067pt;}
.y1c_c02276{bottom:546.027067pt;}
.yb_c02276{bottom:593.385179pt;}
.yd_c02276{bottom:628.586875pt;}
.yc_c02276{bottom:637.227067pt;}
.ya_c02276{bottom:707.945339pt;}
.y9_c02276{bottom:779.945531pt;}
.y7_c02276{bottom:823.786427pt;}
.y3_c02276{bottom:839.786939pt;}
.y8_c02276{bottom:870.505979pt;}
.y6_c02276{bottom:899.946203pt;}
.y5_c02276{bottom:915.946715pt;}
.y2_c02276{bottom:945.386939pt;}
.y4_c02276{bottom:959.786555pt;}
.y1_c02276{bottom:975.787067pt;}
.ye_c02276{bottom:1008.747067pt;}
.h3_c02276{height:28.916250pt;}
.h1_c02276{height:37.063125pt;}
.h2_c02276{height:37.166250pt;}
.h4_c02276{height:48.581988pt;}
.h0_c02276{height:1122.666667pt;}
.w1_c02276{width:793.333333pt;}
.w0_c02276{width:793.626667pt;}
.x0_c02276{left:0.000000pt;}
.xd_c02276{left:104.000000pt;}
.x8_c02276{left:391.999872pt;}
.x4_c02276{left:396.160512pt;}
.xb_c02276{left:400.960000pt;}
.x7_c02276{left:404.799648pt;}
.x5_c02276{left:410.560128pt;}
.x1_c02276{left:411.840000pt;}
.xa_c02276{left:429.760320pt;}
.x9_c02276{left:437.439552pt;}
.x6_c02276{left:438.400512pt;}
.xc_c02276{left:450.560320pt;}
.x3_c02276{left:455.039904pt;}
.x2_c02276{left:468.159648pt;}
}





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

.ir_c02277:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02277{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02277;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02277{font-family:ff1_c02277;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02277;src:url('chunks/assets/font_f149bc309a9795b04936e916.woff2')format("woff");}.ff2_c02277{font-family:ff2_c02277;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02277;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02277{font-family:ff3_c02277;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02277{vertical-align:0.000000px;}
.v1_c02277{vertical-align:1.439424px;}
.lsd_c02277{letter-spacing:-1.197504px;}
.lsa_c02277{letter-spacing:-0.574992px;}
.ls14_c02277{letter-spacing:-0.361152px;}
.ls10_c02277{letter-spacing:-0.275616px;}
.ls9_c02277{letter-spacing:-0.261360px;}
.ls6_c02277{letter-spacing:-0.242352px;}
.ls3_c02277{letter-spacing:-0.118800px;}
.ls13_c02277{letter-spacing:0.000000px;}
.ls1_c02277{letter-spacing:0.006048px;}
.ls5_c02277{letter-spacing:0.128304px;}
.ls7_c02277{letter-spacing:0.242352px;}
.lsc_c02277{letter-spacing:0.508464px;}
.ls12_c02277{letter-spacing:0.514080px;}
.lsf_c02277{letter-spacing:0.536976px;}
.lsb_c02277{letter-spacing:0.579744px;}
.ls11_c02277{letter-spacing:0.594000px;}
.ls8_c02277{letter-spacing:0.598752px;}
.ls2_c02277{letter-spacing:0.613008px;}
.lse_c02277{letter-spacing:0.684288px;}
.ls4_c02277{letter-spacing:0.717552px;}
.ls0_c02277{letter-spacing:0.722304px;}
.sc__c02277{text-shadow:none;}
.sc0_c02277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02277{-webkit-text-stroke:0px transparent;}
.sc0_c02277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02277{word-spacing:-15.126048px;}
.ws9_c02277{word-spacing:-12.474000px;}
.wsc_c02277{word-spacing:-12.459744px;}
.ws8_c02277{word-spacing:-12.416976px;}
.ws2_c02277{word-spacing:-12.122352px;}
.ws15_c02277{word-spacing:-2.159136px;}
.ws11_c02277{word-spacing:-1.083456px;}
.ws13_c02277{word-spacing:-1.045440px;}
.wsd_c02277{word-spacing:-0.974160px;}
.wsf_c02277{word-spacing:-0.118800px;}
.ws10_c02277{word-spacing:-0.099792px;}
.ws14_c02277{word-spacing:-0.085536px;}
.wse_c02277{word-spacing:0.000000px;}
.ws12_c02277{word-spacing:0.836352px;}
.wsa_c02277{word-spacing:33.300288px;}
.ws7_c02277{word-spacing:36.143712px;}
.ws5_c02277{word-spacing:36.742464px;}
.ws1_c02277{word-spacing:37.759392px;}
.ws0_c02277{word-spacing:38.020752px;}
.ws3_c02277{word-spacing:39.218256px;}
.ws4_c02277{word-spacing:39.902544px;}
.ws6_c02277{word-spacing:42.026688px;}
._0_c02277{margin-left:-1.948320px;}
._2_c02277{width:1.482624px;}
._4_c02277{width:3.402432px;}
._5_c02277{width:14.751072px;}
._1_c02277{width:50.252400px;}
._3_c02277{width:51.530688px;}
.fc0_c02277{color:rgb(0,0,0);}
.fs0_c02277{font-size:47.520000px;}
.fs1_c02277{font-size:60.480000px;}
.y0_c02277{bottom:0.000000px;}
.y19_c02277{bottom:146.998362px;}
.y1b_c02277{bottom:186.600234px;}
.y1a_c02277{bottom:196.320450px;}
.y18_c02277{bottom:275.878542px;}
.y17_c02277{bottom:356.878758px;}
.y15_c02277{bottom:406.559730px;}
.y11_c02277{bottom:424.560306px;}
.y16_c02277{bottom:458.759262px;}
.y14_c02277{bottom:491.879514px;}
.y13_c02277{bottom:509.880090px;}
.y10_c02277{bottom:543.000342px;}
.y12_c02277{bottom:559.559874px;}
.yf_c02277{bottom:577.560450px;}
.y1c_c02277{bottom:614.280450px;}
.yb_c02277{bottom:667.558326px;}
.yd_c02277{bottom:707.160234px;}
.yc_c02277{bottom:716.880450px;}
.ya_c02277{bottom:796.438506px;}
.y9_c02277{bottom:877.438722px;}
.y7_c02277{bottom:926.759730px;}
.y3_c02277{bottom:944.760306px;}
.y8_c02277{bottom:979.319226px;}
.y6_c02277{bottom:1012.439478px;}
.y5_c02277{bottom:1030.440054px;}
.y2_c02277{bottom:1063.560306px;}
.y4_c02277{bottom:1079.759874px;}
.y1_c02277{bottom:1097.760450px;}
.ye_c02277{bottom:1134.840450px;}
.h3_c02277{height:32.530781px;}
.h1_c02277{height:41.696016px;}
.h2_c02277{height:41.812031px;}
.h4_c02277{height:54.654737px;}
.h0_c02277{height:1263.000000px;}
.w1_c02277{width:892.500000px;}
.w0_c02277{width:892.830000px;}
.x0_c02277{left:0.000000px;}
.xd_c02277{left:117.000000px;}
.x8_c02277{left:440.999856px;}
.x4_c02277{left:445.680576px;}
.xb_c02277{left:451.080000px;}
.x7_c02277{left:455.399604px;}
.x5_c02277{left:461.880144px;}
.x1_c02277{left:463.320000px;}
.xa_c02277{left:483.480360px;}
.x9_c02277{left:492.119496px;}
.x6_c02277{left:493.200576px;}
.xc_c02277{left:506.880360px;}
.x3_c02277{left:511.919892px;}
.x2_c02277{left:526.679604px;}
@media print{
.v0_c02277{vertical-align:0.000000pt;}
.v1_c02277{vertical-align:1.279488pt;}
.lsd_c02277{letter-spacing:-1.064448pt;}
.lsa_c02277{letter-spacing:-0.511104pt;}
.ls14_c02277{letter-spacing:-0.321024pt;}
.ls10_c02277{letter-spacing:-0.244992pt;}
.ls9_c02277{letter-spacing:-0.232320pt;}
.ls6_c02277{letter-spacing:-0.215424pt;}
.ls3_c02277{letter-spacing:-0.105600pt;}
.ls13_c02277{letter-spacing:0.000000pt;}
.ls1_c02277{letter-spacing:0.005376pt;}
.ls5_c02277{letter-spacing:0.114048pt;}
.ls7_c02277{letter-spacing:0.215424pt;}
.lsc_c02277{letter-spacing:0.451968pt;}
.ls12_c02277{letter-spacing:0.456960pt;}
.lsf_c02277{letter-spacing:0.477312pt;}
.lsb_c02277{letter-spacing:0.515328pt;}
.ls11_c02277{letter-spacing:0.528000pt;}
.ls8_c02277{letter-spacing:0.532224pt;}
.ls2_c02277{letter-spacing:0.544896pt;}
.lse_c02277{letter-spacing:0.608256pt;}
.ls4_c02277{letter-spacing:0.637824pt;}
.ls0_c02277{letter-spacing:0.642048pt;}
.wsb_c02277{word-spacing:-13.445376pt;}
.ws9_c02277{word-spacing:-11.088000pt;}
.wsc_c02277{word-spacing:-11.075328pt;}
.ws8_c02277{word-spacing:-11.037312pt;}
.ws2_c02277{word-spacing:-10.775424pt;}
.ws15_c02277{word-spacing:-1.919232pt;}
.ws11_c02277{word-spacing:-0.963072pt;}
.ws13_c02277{word-spacing:-0.929280pt;}
.wsd_c02277{word-spacing:-0.865920pt;}
.wsf_c02277{word-spacing:-0.105600pt;}
.ws10_c02277{word-spacing:-0.088704pt;}
.ws14_c02277{word-spacing:-0.076032pt;}
.wse_c02277{word-spacing:0.000000pt;}
.ws12_c02277{word-spacing:0.743424pt;}
.wsa_c02277{word-spacing:29.600256pt;}
.ws7_c02277{word-spacing:32.127744pt;}
.ws5_c02277{word-spacing:32.659968pt;}
.ws1_c02277{word-spacing:33.563904pt;}
.ws0_c02277{word-spacing:33.796224pt;}
.ws3_c02277{word-spacing:34.860672pt;}
.ws4_c02277{word-spacing:35.468928pt;}
.ws6_c02277{word-spacing:37.357056pt;}
._0_c02277{margin-left:-1.731840pt;}
._2_c02277{width:1.317888pt;}
._4_c02277{width:3.024384pt;}
._5_c02277{width:13.112064pt;}
._1_c02277{width:44.668800pt;}
._3_c02277{width:45.805056pt;}
.fs0_c02277{font-size:42.240000pt;}
.fs1_c02277{font-size:53.760000pt;}
.y0_c02277{bottom:0.000000pt;}
.y19_c02277{bottom:130.665211pt;}
.y1b_c02277{bottom:165.866875pt;}
.y1a_c02277{bottom:174.507067pt;}
.y18_c02277{bottom:245.225371pt;}
.y17_c02277{bottom:317.225563pt;}
.y15_c02277{bottom:361.386427pt;}
.y11_c02277{bottom:377.386939pt;}
.y16_c02277{bottom:407.786011pt;}
.y14_c02277{bottom:437.226235pt;}
.y13_c02277{bottom:453.226747pt;}
.y10_c02277{bottom:482.666971pt;}
.y12_c02277{bottom:497.386555pt;}
.yf_c02277{bottom:513.387067pt;}
.y1c_c02277{bottom:546.027067pt;}
.yb_c02277{bottom:593.385179pt;}
.yd_c02277{bottom:628.586875pt;}
.yc_c02277{bottom:637.227067pt;}
.ya_c02277{bottom:707.945339pt;}
.y9_c02277{bottom:779.945531pt;}
.y7_c02277{bottom:823.786427pt;}
.y3_c02277{bottom:839.786939pt;}
.y8_c02277{bottom:870.505979pt;}
.y6_c02277{bottom:899.946203pt;}
.y5_c02277{bottom:915.946715pt;}
.y2_c02277{bottom:945.386939pt;}
.y4_c02277{bottom:959.786555pt;}
.y1_c02277{bottom:975.787067pt;}
.ye_c02277{bottom:1008.747067pt;}
.h3_c02277{height:28.916250pt;}
.h1_c02277{height:37.063125pt;}
.h2_c02277{height:37.166250pt;}
.h4_c02277{height:48.581988pt;}
.h0_c02277{height:1122.666667pt;}
.w1_c02277{width:793.333333pt;}
.w0_c02277{width:793.626667pt;}
.x0_c02277{left:0.000000pt;}
.xd_c02277{left:104.000000pt;}
.x8_c02277{left:391.999872pt;}
.x4_c02277{left:396.160512pt;}
.xb_c02277{left:400.960000pt;}
.x7_c02277{left:404.799648pt;}
.x5_c02277{left:410.560128pt;}
.x1_c02277{left:411.840000pt;}
.xa_c02277{left:429.760320pt;}
.x9_c02277{left:437.439552pt;}
.x6_c02277{left:438.400512pt;}
.xc_c02277{left:450.560320pt;}
.x3_c02277{left:455.039904pt;}
.x2_c02277{left:468.159648pt;}
}





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

.ir_c02278:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02278{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02278;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02278{font-family:ff1_c02278;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02278;src:url('chunks/assets/font_7626d21cdff7c1da2502c318.woff2')format("woff");}.ff2_c02278{font-family:ff2_c02278;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02278;src:url('chunks/assets/font_df4aa8f4f72b49a946f74f3f.woff2')format("woff");}.ff3_c02278{font-family:ff3_c02278;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02278{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02278{vertical-align:0.000000px;}
.v1_c02278{vertical-align:1.439424px;}
.ls8_c02278{letter-spacing:-0.784080px;}
.ls18_c02278{letter-spacing:-0.736560px;}
.ls9_c02278{letter-spacing:-0.574992px;}
.ls11_c02278{letter-spacing:-0.375408px;}
.ls17_c02278{letter-spacing:-0.361152px;}
.ls13_c02278{letter-spacing:-0.275616px;}
.ls19_c02278{letter-spacing:-0.270864px;}
.lse_c02278{letter-spacing:-0.261360px;}
.ls6_c02278{letter-spacing:-0.242352px;}
.ls10_c02278{letter-spacing:-0.209088px;}
.lsf_c02278{letter-spacing:-0.156816px;}
.ls3_c02278{letter-spacing:-0.118800px;}
.ls16_c02278{letter-spacing:0.000000px;}
.ls1_c02278{letter-spacing:0.006048px;}
.ls5_c02278{letter-spacing:0.128304px;}
.lsc_c02278{letter-spacing:0.242352px;}
.lsb_c02278{letter-spacing:0.508464px;}
.ls15_c02278{letter-spacing:0.514080px;}
.ls12_c02278{letter-spacing:0.536976px;}
.lsa_c02278{letter-spacing:0.579744px;}
.ls14_c02278{letter-spacing:0.594000px;}
.ls7_c02278{letter-spacing:0.598752px;}
.ls2_c02278{letter-spacing:0.613008px;}
.lsd_c02278{letter-spacing:0.670032px;}
.ls4_c02278{letter-spacing:0.717552px;}
.ls0_c02278{letter-spacing:0.722304px;}
.sc__c02278{text-shadow:none;}
.sc0_c02278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02278{-webkit-text-stroke:0px transparent;}
.sc0_c02278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02278{word-spacing:-15.126048px;}
.wsa_c02278{word-spacing:-12.474000px;}
.ws5_c02278{word-spacing:-12.459744px;}
.ws9_c02278{word-spacing:-12.416976px;}
.wse_c02278{word-spacing:-12.388464px;}
.wsd_c02278{word-spacing:-11.305008px;}
.ws1b_c02278{word-spacing:-2.159136px;}
.ws16_c02278{word-spacing:-1.083456px;}
.ws17_c02278{word-spacing:-1.031184px;}
.ws12_c02278{word-spacing:-0.974160px;}
.ws14_c02278{word-spacing:-0.118800px;}
.ws18_c02278{word-spacing:-0.099792px;}
.ws1c_c02278{word-spacing:-0.090288px;}
.ws1a_c02278{word-spacing:-0.085536px;}
.ws13_c02278{word-spacing:0.000000px;}
.ws19_c02278{word-spacing:0.014256px;}
.ws15_c02278{word-spacing:0.422928px;}
.ws2_c02278{word-spacing:3.725568px;}
.ws11_c02278{word-spacing:6.629040px;}
.ws7_c02278{word-spacing:19.754064px;}
.wsb_c02278{word-spacing:33.300288px;}
.ws10_c02278{word-spacing:34.836912px;}
.wsf_c02278{word-spacing:36.143712px;}
.ws1_c02278{word-spacing:37.759392px;}
.ws0_c02278{word-spacing:38.020752px;}
.ws3_c02278{word-spacing:39.218256px;}
.ws4_c02278{word-spacing:39.902544px;}
.ws8_c02278{word-spacing:41.456448px;}
.ws6_c02278{word-spacing:42.026688px;}
._0_c02278{margin-left:-1.948320px;}
._2_c02278{width:1.482624px;}
._9_c02278{width:14.751072px;}
._4_c02278{width:17.111952px;}
._b_c02278{width:19.982160px;}
._c_c02278{width:23.451120px;}
._a_c02278{width:24.691392px;}
._7_c02278{width:28.787616px;}
._5_c02278{width:35.050752px;}
._6_c02278{width:36.352800px;}
._1_c02278{width:50.252400px;}
._3_c02278{width:51.530688px;}
._8_c02278{width:54.752544px;}
.fc0_c02278{color:rgb(0,0,0);}
.fs0_c02278{font-size:47.520000px;}
.fs1_c02278{font-size:60.480000px;}
.y0_c02278{bottom:0.000000px;}
.yb_c02278{bottom:66.240450px;}
.y1f_c02278{bottom:131.878686px;}
.y1e_c02278{bottom:146.998362px;}
.y21_c02278{bottom:186.600234px;}
.y20_c02278{bottom:196.320450px;}
.y1d_c02278{bottom:275.878542px;}
.y1c_c02278{bottom:356.878758px;}
.y1a_c02278{bottom:406.559730px;}
.y16_c02278{bottom:424.560306px;}
.y1b_c02278{bottom:458.759262px;}
.y19_c02278{bottom:491.879514px;}
.y18_c02278{bottom:509.880090px;}
.y15_c02278{bottom:543.000342px;}
.y17_c02278{bottom:559.559874px;}
.y14_c02278{bottom:577.560450px;}
.y22_c02278{bottom:614.280450px;}
.y10_c02278{bottom:667.561242px;}
.y12_c02278{bottom:707.160234px;}
.y11_c02278{bottom:716.880450px;}
.yf_c02278{bottom:766.560846px;}
.ye_c02278{bottom:781.320558px;}
.yd_c02278{bottom:796.440234px;}
.ya_c02278{bottom:811.200000px;}
.y9_c02278{bottom:877.438722px;}
.yc_c02278{bottom:877.440450px;}
.y7_c02278{bottom:926.759730px;}
.y3_c02278{bottom:944.760306px;}
.y8_c02278{bottom:979.319226px;}
.y6_c02278{bottom:1012.439478px;}
.y5_c02278{bottom:1030.440054px;}
.y2_c02278{bottom:1063.560306px;}
.y4_c02278{bottom:1079.759874px;}
.y1_c02278{bottom:1097.760450px;}
.y13_c02278{bottom:1134.840450px;}
.h3_c02278{height:32.530781px;}
.h1_c02278{height:41.696016px;}
.h2_c02278{height:41.812031px;}
.h5_c02278{height:54.654737px;}
.h4_c02278{height:78.840000px;}
.h0_c02278{height:1263.000000px;}
.w2_c02278{width:215.280000px;}
.w1_c02278{width:892.500000px;}
.w0_c02278{width:892.830000px;}
.x0_c02278{left:0.000000px;}
.xf_c02278{left:117.000000px;}
.x8_c02278{left:440.999856px;}
.x4_c02278{left:445.680576px;}
.xd_c02278{left:451.080000px;}
.x7_c02278{left:455.399604px;}
.x5_c02278{left:461.880144px;}
.x1_c02278{left:463.320000px;}
.xc_c02278{left:483.480756px;}
.x9_c02278{left:492.119496px;}
.x6_c02278{left:493.200576px;}
.xe_c02278{left:506.880360px;}
.x3_c02278{left:511.919892px;}
.x2_c02278{left:526.679604px;}
.xa_c02278{left:569.520000px;}
.xb_c02278{left:633.600000px;}
@media print{
.v0_c02278{vertical-align:0.000000pt;}
.v1_c02278{vertical-align:1.279488pt;}
.ls8_c02278{letter-spacing:-0.696960pt;}
.ls18_c02278{letter-spacing:-0.654720pt;}
.ls9_c02278{letter-spacing:-0.511104pt;}
.ls11_c02278{letter-spacing:-0.333696pt;}
.ls17_c02278{letter-spacing:-0.321024pt;}
.ls13_c02278{letter-spacing:-0.244992pt;}
.ls19_c02278{letter-spacing:-0.240768pt;}
.lse_c02278{letter-spacing:-0.232320pt;}
.ls6_c02278{letter-spacing:-0.215424pt;}
.ls10_c02278{letter-spacing:-0.185856pt;}
.lsf_c02278{letter-spacing:-0.139392pt;}
.ls3_c02278{letter-spacing:-0.105600pt;}
.ls16_c02278{letter-spacing:0.000000pt;}
.ls1_c02278{letter-spacing:0.005376pt;}
.ls5_c02278{letter-spacing:0.114048pt;}
.lsc_c02278{letter-spacing:0.215424pt;}
.lsb_c02278{letter-spacing:0.451968pt;}
.ls15_c02278{letter-spacing:0.456960pt;}
.ls12_c02278{letter-spacing:0.477312pt;}
.lsa_c02278{letter-spacing:0.515328pt;}
.ls14_c02278{letter-spacing:0.528000pt;}
.ls7_c02278{letter-spacing:0.532224pt;}
.ls2_c02278{letter-spacing:0.544896pt;}
.lsd_c02278{letter-spacing:0.595584pt;}
.ls4_c02278{letter-spacing:0.637824pt;}
.ls0_c02278{letter-spacing:0.642048pt;}
.wsc_c02278{word-spacing:-13.445376pt;}
.wsa_c02278{word-spacing:-11.088000pt;}
.ws5_c02278{word-spacing:-11.075328pt;}
.ws9_c02278{word-spacing:-11.037312pt;}
.wse_c02278{word-spacing:-11.011968pt;}
.wsd_c02278{word-spacing:-10.048896pt;}
.ws1b_c02278{word-spacing:-1.919232pt;}
.ws16_c02278{word-spacing:-0.963072pt;}
.ws17_c02278{word-spacing:-0.916608pt;}
.ws12_c02278{word-spacing:-0.865920pt;}
.ws14_c02278{word-spacing:-0.105600pt;}
.ws18_c02278{word-spacing:-0.088704pt;}
.ws1c_c02278{word-spacing:-0.080256pt;}
.ws1a_c02278{word-spacing:-0.076032pt;}
.ws13_c02278{word-spacing:0.000000pt;}
.ws19_c02278{word-spacing:0.012672pt;}
.ws15_c02278{word-spacing:0.375936pt;}
.ws2_c02278{word-spacing:3.311616pt;}
.ws11_c02278{word-spacing:5.892480pt;}
.ws7_c02278{word-spacing:17.559168pt;}
.wsb_c02278{word-spacing:29.600256pt;}
.ws10_c02278{word-spacing:30.966144pt;}
.wsf_c02278{word-spacing:32.127744pt;}
.ws1_c02278{word-spacing:33.563904pt;}
.ws0_c02278{word-spacing:33.796224pt;}
.ws3_c02278{word-spacing:34.860672pt;}
.ws4_c02278{word-spacing:35.468928pt;}
.ws8_c02278{word-spacing:36.850176pt;}
.ws6_c02278{word-spacing:37.357056pt;}
._0_c02278{margin-left:-1.731840pt;}
._2_c02278{width:1.317888pt;}
._9_c02278{width:13.112064pt;}
._4_c02278{width:15.210624pt;}
._b_c02278{width:17.761920pt;}
._c_c02278{width:20.845440pt;}
._a_c02278{width:21.947904pt;}
._7_c02278{width:25.588992pt;}
._5_c02278{width:31.156224pt;}
._6_c02278{width:32.313600pt;}
._1_c02278{width:44.668800pt;}
._3_c02278{width:45.805056pt;}
._8_c02278{width:48.668928pt;}
.fs0_c02278{font-size:42.240000pt;}
.fs1_c02278{font-size:53.760000pt;}
.y0_c02278{bottom:0.000000pt;}
.yb_c02278{bottom:58.880400pt;}
.y1f_c02278{bottom:117.225499pt;}
.y1e_c02278{bottom:130.665211pt;}
.y21_c02278{bottom:165.866875pt;}
.y20_c02278{bottom:174.507067pt;}
.y1d_c02278{bottom:245.225371pt;}
.y1c_c02278{bottom:317.225563pt;}
.y1a_c02278{bottom:361.386427pt;}
.y16_c02278{bottom:377.386939pt;}
.y1b_c02278{bottom:407.786011pt;}
.y19_c02278{bottom:437.226235pt;}
.y18_c02278{bottom:453.226747pt;}
.y15_c02278{bottom:482.666971pt;}
.y17_c02278{bottom:497.386555pt;}
.y14_c02278{bottom:513.387067pt;}
.y22_c02278{bottom:546.027067pt;}
.y10_c02278{bottom:593.387771pt;}
.y12_c02278{bottom:628.586875pt;}
.y11_c02278{bottom:637.227067pt;}
.yf_c02278{bottom:681.387419pt;}
.ye_c02278{bottom:694.507163pt;}
.yd_c02278{bottom:707.946875pt;}
.ya_c02278{bottom:721.066667pt;}
.y9_c02278{bottom:779.945531pt;}
.yc_c02278{bottom:779.947067pt;}
.y7_c02278{bottom:823.786427pt;}
.y3_c02278{bottom:839.786939pt;}
.y8_c02278{bottom:870.505979pt;}
.y6_c02278{bottom:899.946203pt;}
.y5_c02278{bottom:915.946715pt;}
.y2_c02278{bottom:945.386939pt;}
.y4_c02278{bottom:959.786555pt;}
.y1_c02278{bottom:975.787067pt;}
.y13_c02278{bottom:1008.747067pt;}
.h3_c02278{height:28.916250pt;}
.h1_c02278{height:37.063125pt;}
.h2_c02278{height:37.166250pt;}
.h5_c02278{height:48.581988pt;}
.h4_c02278{height:70.080000pt;}
.h0_c02278{height:1122.666667pt;}
.w2_c02278{width:191.360000pt;}
.w1_c02278{width:793.333333pt;}
.w0_c02278{width:793.626667pt;}
.x0_c02278{left:0.000000pt;}
.xf_c02278{left:104.000000pt;}
.x8_c02278{left:391.999872pt;}
.x4_c02278{left:396.160512pt;}
.xd_c02278{left:400.960000pt;}
.x7_c02278{left:404.799648pt;}
.x5_c02278{left:410.560128pt;}
.x1_c02278{left:411.840000pt;}
.xc_c02278{left:429.760672pt;}
.x9_c02278{left:437.439552pt;}
.x6_c02278{left:438.400512pt;}
.xe_c02278{left:450.560320pt;}
.x3_c02278{left:455.039904pt;}
.x2_c02278{left:468.159648pt;}
.xa_c02278{left:506.240000pt;}
.xb_c02278{left:563.200000pt;}
}





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

.ir_c02279:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02279{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02279;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02279{font-family:ff1_c02279;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02279;src:url('chunks/assets/font_05b88aa9dca30b66c4970398.woff2')format("woff");}.ff2_c02279{font-family:ff2_c02279;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02279;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02279{font-family:ff3_c02279;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02279{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02279{vertical-align:0.000000px;}
.v1_c02279{vertical-align:1.439424px;}
.lsd_c02279{letter-spacing:-0.793584px;}
.lsa_c02279{letter-spacing:-0.574992px;}
.lsf_c02279{letter-spacing:-0.361152px;}
.ls11_c02279{letter-spacing:-0.275616px;}
.lse_c02279{letter-spacing:-0.261360px;}
.ls7_c02279{letter-spacing:-0.242352px;}
.ls9_c02279{letter-spacing:-0.223344px;}
.ls4_c02279{letter-spacing:-0.118800px;}
.ls14_c02279{letter-spacing:0.000000px;}
.ls0_c02279{letter-spacing:0.006048px;}
.ls6_c02279{letter-spacing:0.128304px;}
.lsc_c02279{letter-spacing:0.508464px;}
.ls13_c02279{letter-spacing:0.514080px;}
.ls10_c02279{letter-spacing:0.536976px;}
.lsb_c02279{letter-spacing:0.579744px;}
.ls12_c02279{letter-spacing:0.594000px;}
.ls8_c02279{letter-spacing:0.598752px;}
.ls2_c02279{letter-spacing:0.613008px;}
.ls1_c02279{letter-spacing:0.651024px;}
.ls15_c02279{letter-spacing:0.684288px;}
.ls5_c02279{letter-spacing:0.717552px;}
.ls3_c02279{letter-spacing:0.722304px;}
.sc__c02279{text-shadow:none;}
.sc0_c02279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02279{-webkit-text-stroke:0px transparent;}
.sc0_c02279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02279{word-spacing:-15.126048px;}
.ws9_c02279{word-spacing:-12.474000px;}
.ws5_c02279{word-spacing:-12.459744px;}
.ws8_c02279{word-spacing:-12.416976px;}
.ws4_c02279{word-spacing:-11.305008px;}
.ws14_c02279{word-spacing:-2.159136px;}
.ws11_c02279{word-spacing:-1.083456px;}
.ws16_c02279{word-spacing:-1.045440px;}
.ws15_c02279{word-spacing:-1.012176px;}
.wsc_c02279{word-spacing:-0.974160px;}
.wsf_c02279{word-spacing:-0.137808px;}
.wse_c02279{word-spacing:-0.118800px;}
.ws12_c02279{word-spacing:-0.099792px;}
.ws13_c02279{word-spacing:-0.085536px;}
.wsd_c02279{word-spacing:0.000000px;}
.ws10_c02279{word-spacing:0.432432px;}
.ws2_c02279{word-spacing:3.725568px;}
.wsa_c02279{word-spacing:33.300288px;}
.ws7_c02279{word-spacing:36.143712px;}
.ws1_c02279{word-spacing:37.759392px;}
.ws0_c02279{word-spacing:38.020752px;}
.ws3_c02279{word-spacing:39.218256px;}
.ws6_c02279{word-spacing:42.026688px;}
._0_c02279{margin-left:-1.948320px;}
._2_c02279{width:1.482624px;}
._5_c02279{width:14.751072px;}
._4_c02279{width:16.917120px;}
._1_c02279{width:50.252400px;}
._3_c02279{width:51.530688px;}
.fc0_c02279{color:rgb(0,0,0);}
.fs0_c02279{font-size:47.520000px;}
.fs1_c02279{font-size:60.480000px;}
.y0_c02279{bottom:0.000000px;}
.y19_c02279{bottom:146.998362px;}
.y1b_c02279{bottom:186.600234px;}
.y1a_c02279{bottom:196.320450px;}
.y18_c02279{bottom:275.878542px;}
.y17_c02279{bottom:356.878758px;}
.y15_c02279{bottom:406.559730px;}
.y11_c02279{bottom:424.560306px;}
.y16_c02279{bottom:458.759262px;}
.y14_c02279{bottom:491.879514px;}
.y13_c02279{bottom:509.880090px;}
.y10_c02279{bottom:543.000342px;}
.y12_c02279{bottom:559.559874px;}
.yf_c02279{bottom:577.560450px;}
.y1c_c02279{bottom:614.280450px;}
.yb_c02279{bottom:667.558326px;}
.yd_c02279{bottom:707.160234px;}
.yc_c02279{bottom:716.880450px;}
.ya_c02279{bottom:796.438506px;}
.y9_c02279{bottom:877.438722px;}
.y7_c02279{bottom:926.759730px;}
.y3_c02279{bottom:944.760306px;}
.y8_c02279{bottom:979.319226px;}
.y6_c02279{bottom:1012.439478px;}
.y5_c02279{bottom:1030.440054px;}
.y2_c02279{bottom:1063.560306px;}
.y4_c02279{bottom:1079.759874px;}
.y1_c02279{bottom:1097.760450px;}
.ye_c02279{bottom:1134.840450px;}
.h3_c02279{height:32.530781px;}
.h1_c02279{height:41.696016px;}
.h2_c02279{height:41.812031px;}
.h4_c02279{height:54.654737px;}
.h0_c02279{height:1263.000000px;}
.w1_c02279{width:892.500000px;}
.w0_c02279{width:892.830000px;}
.x0_c02279{left:0.000000px;}
.xd_c02279{left:117.000000px;}
.x8_c02279{left:441.001044px;}
.x4_c02279{left:445.680576px;}
.xb_c02279{left:451.080000px;}
.x7_c02279{left:455.400792px;}
.x5_c02279{left:461.880144px;}
.x1_c02279{left:463.320000px;}
.xa_c02279{left:483.481548px;}
.x9_c02279{left:492.120684px;}
.x6_c02279{left:493.200576px;}
.xc_c02279{left:506.880360px;}
.x3_c02279{left:511.919892px;}
.x2_c02279{left:526.679604px;}
@media print{
.v0_c02279{vertical-align:0.000000pt;}
.v1_c02279{vertical-align:1.279488pt;}
.lsd_c02279{letter-spacing:-0.705408pt;}
.lsa_c02279{letter-spacing:-0.511104pt;}
.lsf_c02279{letter-spacing:-0.321024pt;}
.ls11_c02279{letter-spacing:-0.244992pt;}
.lse_c02279{letter-spacing:-0.232320pt;}
.ls7_c02279{letter-spacing:-0.215424pt;}
.ls9_c02279{letter-spacing:-0.198528pt;}
.ls4_c02279{letter-spacing:-0.105600pt;}
.ls14_c02279{letter-spacing:0.000000pt;}
.ls0_c02279{letter-spacing:0.005376pt;}
.ls6_c02279{letter-spacing:0.114048pt;}
.lsc_c02279{letter-spacing:0.451968pt;}
.ls13_c02279{letter-spacing:0.456960pt;}
.ls10_c02279{letter-spacing:0.477312pt;}
.lsb_c02279{letter-spacing:0.515328pt;}
.ls12_c02279{letter-spacing:0.528000pt;}
.ls8_c02279{letter-spacing:0.532224pt;}
.ls2_c02279{letter-spacing:0.544896pt;}
.ls1_c02279{letter-spacing:0.578688pt;}
.ls15_c02279{letter-spacing:0.608256pt;}
.ls5_c02279{letter-spacing:0.637824pt;}
.ls3_c02279{letter-spacing:0.642048pt;}
.wsb_c02279{word-spacing:-13.445376pt;}
.ws9_c02279{word-spacing:-11.088000pt;}
.ws5_c02279{word-spacing:-11.075328pt;}
.ws8_c02279{word-spacing:-11.037312pt;}
.ws4_c02279{word-spacing:-10.048896pt;}
.ws14_c02279{word-spacing:-1.919232pt;}
.ws11_c02279{word-spacing:-0.963072pt;}
.ws16_c02279{word-spacing:-0.929280pt;}
.ws15_c02279{word-spacing:-0.899712pt;}
.wsc_c02279{word-spacing:-0.865920pt;}
.wsf_c02279{word-spacing:-0.122496pt;}
.wse_c02279{word-spacing:-0.105600pt;}
.ws12_c02279{word-spacing:-0.088704pt;}
.ws13_c02279{word-spacing:-0.076032pt;}
.wsd_c02279{word-spacing:0.000000pt;}
.ws10_c02279{word-spacing:0.384384pt;}
.ws2_c02279{word-spacing:3.311616pt;}
.wsa_c02279{word-spacing:29.600256pt;}
.ws7_c02279{word-spacing:32.127744pt;}
.ws1_c02279{word-spacing:33.563904pt;}
.ws0_c02279{word-spacing:33.796224pt;}
.ws3_c02279{word-spacing:34.860672pt;}
.ws6_c02279{word-spacing:37.357056pt;}
._0_c02279{margin-left:-1.731840pt;}
._2_c02279{width:1.317888pt;}
._5_c02279{width:13.112064pt;}
._4_c02279{width:15.037440pt;}
._1_c02279{width:44.668800pt;}
._3_c02279{width:45.805056pt;}
.fs0_c02279{font-size:42.240000pt;}
.fs1_c02279{font-size:53.760000pt;}
.y0_c02279{bottom:0.000000pt;}
.y19_c02279{bottom:130.665211pt;}
.y1b_c02279{bottom:165.866875pt;}
.y1a_c02279{bottom:174.507067pt;}
.y18_c02279{bottom:245.225371pt;}
.y17_c02279{bottom:317.225563pt;}
.y15_c02279{bottom:361.386427pt;}
.y11_c02279{bottom:377.386939pt;}
.y16_c02279{bottom:407.786011pt;}
.y14_c02279{bottom:437.226235pt;}
.y13_c02279{bottom:453.226747pt;}
.y10_c02279{bottom:482.666971pt;}
.y12_c02279{bottom:497.386555pt;}
.yf_c02279{bottom:513.387067pt;}
.y1c_c02279{bottom:546.027067pt;}
.yb_c02279{bottom:593.385179pt;}
.yd_c02279{bottom:628.586875pt;}
.yc_c02279{bottom:637.227067pt;}
.ya_c02279{bottom:707.945339pt;}
.y9_c02279{bottom:779.945531pt;}
.y7_c02279{bottom:823.786427pt;}
.y3_c02279{bottom:839.786939pt;}
.y8_c02279{bottom:870.505979pt;}
.y6_c02279{bottom:899.946203pt;}
.y5_c02279{bottom:915.946715pt;}
.y2_c02279{bottom:945.386939pt;}
.y4_c02279{bottom:959.786555pt;}
.y1_c02279{bottom:975.787067pt;}
.ye_c02279{bottom:1008.747067pt;}
.h3_c02279{height:28.916250pt;}
.h1_c02279{height:37.063125pt;}
.h2_c02279{height:37.166250pt;}
.h4_c02279{height:48.581988pt;}
.h0_c02279{height:1122.666667pt;}
.w1_c02279{width:793.333333pt;}
.w0_c02279{width:793.626667pt;}
.x0_c02279{left:0.000000pt;}
.xd_c02279{left:104.000000pt;}
.x8_c02279{left:392.000928pt;}
.x4_c02279{left:396.160512pt;}
.xb_c02279{left:400.960000pt;}
.x7_c02279{left:404.800704pt;}
.x5_c02279{left:410.560128pt;}
.x1_c02279{left:411.840000pt;}
.xa_c02279{left:429.761376pt;}
.x9_c02279{left:437.440608pt;}
.x6_c02279{left:438.400512pt;}
.xc_c02279{left:450.560320pt;}
.x3_c02279{left:455.039904pt;}
.x2_c02279{left:468.159648pt;}
}





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

.ir_c02280:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02280{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02280;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02280{font-family:ff1_c02280;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02280;src:url('chunks/assets/font_2a2db544bd322db627e76657.woff2')format("woff");}.ff2_c02280{font-family:ff2_c02280;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02280;src:url('chunks/assets/font_3c153859761e5a3f29ffd56b.woff2')format("woff");}.ff3_c02280{font-family:ff3_c02280;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02280{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02280{vertical-align:0.000000px;}
.v1_c02280{vertical-align:1.439424px;}
.lsb_c02280{letter-spacing:-1.197504px;}
.ls17_c02280{letter-spacing:-0.845856px;}
.ls16_c02280{letter-spacing:-0.774576px;}
.ls11_c02280{letter-spacing:-0.736560px;}
.ls9_c02280{letter-spacing:-0.722304px;}
.lsa_c02280{letter-spacing:-0.574992px;}
.lse_c02280{letter-spacing:-0.337392px;}
.ls18_c02280{letter-spacing:-0.275616px;}
.ls12_c02280{letter-spacing:-0.270864px;}
.lsf_c02280{letter-spacing:-0.261360px;}
.ls6_c02280{letter-spacing:-0.242352px;}
.ls3_c02280{letter-spacing:-0.118800px;}
.ls15_c02280{letter-spacing:0.000000px;}
.ls0_c02280{letter-spacing:0.006048px;}
.ls5_c02280{letter-spacing:0.128304px;}
.lsd_c02280{letter-spacing:0.242352px;}
.ls7_c02280{letter-spacing:0.508464px;}
.ls14_c02280{letter-spacing:0.514080px;}
.ls10_c02280{letter-spacing:0.536976px;}
.lsc_c02280{letter-spacing:0.579744px;}
.ls13_c02280{letter-spacing:0.594000px;}
.ls8_c02280{letter-spacing:0.598752px;}
.ls1_c02280{letter-spacing:0.613008px;}
.ls4_c02280{letter-spacing:0.717552px;}
.ls2_c02280{letter-spacing:0.722304px;}
.sc__c02280{text-shadow:none;}
.sc0_c02280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02280{-webkit-text-stroke:0px transparent;}
.sc0_c02280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02280{word-spacing:-15.126048px;}
.wsb_c02280{word-spacing:-12.474000px;}
.ws6_c02280{word-spacing:-12.459744px;}
.ws2_c02280{word-spacing:-12.388464px;}
.wse_c02280{word-spacing:-11.105424px;}
.ws5_c02280{word-spacing:-10.682496px;}
.ws17_c02280{word-spacing:-2.159136px;}
.wsf_c02280{word-spacing:-0.974160px;}
.ws11_c02280{word-spacing:-0.118800px;}
.ws14_c02280{word-spacing:-0.099792px;}
.ws15_c02280{word-spacing:-0.090288px;}
.ws16_c02280{word-spacing:-0.085536px;}
.ws13_c02280{word-spacing:-0.023760px;}
.ws10_c02280{word-spacing:0.000000px;}
.ws12_c02280{word-spacing:0.361152px;}
.ws18_c02280{word-spacing:0.484704px;}
.wsa_c02280{word-spacing:6.629040px;}
.wsc_c02280{word-spacing:33.300288px;}
.ws9_c02280{word-spacing:34.836912px;}
.ws8_c02280{word-spacing:36.143712px;}
.ws1_c02280{word-spacing:37.759392px;}
.ws0_c02280{word-spacing:38.020752px;}
.ws3_c02280{word-spacing:39.218256px;}
.ws4_c02280{word-spacing:39.902544px;}
.ws7_c02280{word-spacing:42.026688px;}
._0_c02280{margin-left:-1.948320px;}
._2_c02280{width:1.482624px;}
._9_c02280{width:2.509056px;}
._4_c02280{width:4.694976px;}
._8_c02280{width:14.751072px;}
._6_c02280{width:19.982160px;}
._7_c02280{width:23.451120px;}
._5_c02280{width:24.691392px;}
._1_c02280{width:50.252400px;}
._3_c02280{width:51.530688px;}
.fc0_c02280{color:rgb(0,0,0);}
.fs0_c02280{font-size:47.520000px;}
.fs1_c02280{font-size:60.480000px;}
.y0_c02280{bottom:0.000000px;}
.y1b_c02280{bottom:131.878686px;}
.y1a_c02280{bottom:146.998362px;}
.y1d_c02280{bottom:186.600234px;}
.y1c_c02280{bottom:196.320450px;}
.y19_c02280{bottom:275.878542px;}
.y18_c02280{bottom:356.878758px;}
.y16_c02280{bottom:406.559730px;}
.y12_c02280{bottom:424.560306px;}
.y17_c02280{bottom:458.759262px;}
.y15_c02280{bottom:491.879514px;}
.y14_c02280{bottom:509.880090px;}
.y11_c02280{bottom:543.000342px;}
.y13_c02280{bottom:559.559874px;}
.y10_c02280{bottom:577.560450px;}
.y1e_c02280{bottom:614.280450px;}
.yc_c02280{bottom:652.438650px;}
.yb_c02280{bottom:667.558326px;}
.ye_c02280{bottom:707.160234px;}
.yd_c02280{bottom:716.880450px;}
.ya_c02280{bottom:796.438506px;}
.y9_c02280{bottom:877.438722px;}
.y7_c02280{bottom:926.759730px;}
.y3_c02280{bottom:944.760306px;}
.y8_c02280{bottom:979.319226px;}
.y6_c02280{bottom:1012.439478px;}
.y5_c02280{bottom:1030.440054px;}
.y2_c02280{bottom:1063.560306px;}
.y4_c02280{bottom:1079.759874px;}
.y1_c02280{bottom:1097.760450px;}
.yf_c02280{bottom:1134.840450px;}
.h3_c02280{height:32.530781px;}
.h1_c02280{height:41.696016px;}
.h2_c02280{height:41.812031px;}
.h4_c02280{height:54.654737px;}
.h0_c02280{height:1263.000000px;}
.w1_c02280{width:892.500000px;}
.w0_c02280{width:892.830000px;}
.x0_c02280{left:0.000000px;}
.xe_c02280{left:117.000000px;}
.x8_c02280{left:440.999856px;}
.x4_c02280{left:445.680576px;}
.xc_c02280{left:451.080000px;}
.x7_c02280{left:455.399604px;}
.x5_c02280{left:461.880144px;}
.x1_c02280{left:463.320000px;}
.xa_c02280{left:483.480360px;}
.x9_c02280{left:492.119496px;}
.x6_c02280{left:493.200576px;}
.xd_c02280{left:506.880360px;}
.x3_c02280{left:511.919892px;}
.x2_c02280{left:526.679604px;}
.xb_c02280{left:569.880036px;}
@media print{
.v0_c02280{vertical-align:0.000000pt;}
.v1_c02280{vertical-align:1.279488pt;}
.lsb_c02280{letter-spacing:-1.064448pt;}
.ls17_c02280{letter-spacing:-0.751872pt;}
.ls16_c02280{letter-spacing:-0.688512pt;}
.ls11_c02280{letter-spacing:-0.654720pt;}
.ls9_c02280{letter-spacing:-0.642048pt;}
.lsa_c02280{letter-spacing:-0.511104pt;}
.lse_c02280{letter-spacing:-0.299904pt;}
.ls18_c02280{letter-spacing:-0.244992pt;}
.ls12_c02280{letter-spacing:-0.240768pt;}
.lsf_c02280{letter-spacing:-0.232320pt;}
.ls6_c02280{letter-spacing:-0.215424pt;}
.ls3_c02280{letter-spacing:-0.105600pt;}
.ls15_c02280{letter-spacing:0.000000pt;}
.ls0_c02280{letter-spacing:0.005376pt;}
.ls5_c02280{letter-spacing:0.114048pt;}
.lsd_c02280{letter-spacing:0.215424pt;}
.ls7_c02280{letter-spacing:0.451968pt;}
.ls14_c02280{letter-spacing:0.456960pt;}
.ls10_c02280{letter-spacing:0.477312pt;}
.lsc_c02280{letter-spacing:0.515328pt;}
.ls13_c02280{letter-spacing:0.528000pt;}
.ls8_c02280{letter-spacing:0.532224pt;}
.ls1_c02280{letter-spacing:0.544896pt;}
.ls4_c02280{letter-spacing:0.637824pt;}
.ls2_c02280{letter-spacing:0.642048pt;}
.wsd_c02280{word-spacing:-13.445376pt;}
.wsb_c02280{word-spacing:-11.088000pt;}
.ws6_c02280{word-spacing:-11.075328pt;}
.ws2_c02280{word-spacing:-11.011968pt;}
.wse_c02280{word-spacing:-9.871488pt;}
.ws5_c02280{word-spacing:-9.495552pt;}
.ws17_c02280{word-spacing:-1.919232pt;}
.wsf_c02280{word-spacing:-0.865920pt;}
.ws11_c02280{word-spacing:-0.105600pt;}
.ws14_c02280{word-spacing:-0.088704pt;}
.ws15_c02280{word-spacing:-0.080256pt;}
.ws16_c02280{word-spacing:-0.076032pt;}
.ws13_c02280{word-spacing:-0.021120pt;}
.ws10_c02280{word-spacing:0.000000pt;}
.ws12_c02280{word-spacing:0.321024pt;}
.ws18_c02280{word-spacing:0.430848pt;}
.wsa_c02280{word-spacing:5.892480pt;}
.wsc_c02280{word-spacing:29.600256pt;}
.ws9_c02280{word-spacing:30.966144pt;}
.ws8_c02280{word-spacing:32.127744pt;}
.ws1_c02280{word-spacing:33.563904pt;}
.ws0_c02280{word-spacing:33.796224pt;}
.ws3_c02280{word-spacing:34.860672pt;}
.ws4_c02280{word-spacing:35.468928pt;}
.ws7_c02280{word-spacing:37.357056pt;}
._0_c02280{margin-left:-1.731840pt;}
._2_c02280{width:1.317888pt;}
._9_c02280{width:2.230272pt;}
._4_c02280{width:4.173312pt;}
._8_c02280{width:13.112064pt;}
._6_c02280{width:17.761920pt;}
._7_c02280{width:20.845440pt;}
._5_c02280{width:21.947904pt;}
._1_c02280{width:44.668800pt;}
._3_c02280{width:45.805056pt;}
.fs0_c02280{font-size:42.240000pt;}
.fs1_c02280{font-size:53.760000pt;}
.y0_c02280{bottom:0.000000pt;}
.y1b_c02280{bottom:117.225499pt;}
.y1a_c02280{bottom:130.665211pt;}
.y1d_c02280{bottom:165.866875pt;}
.y1c_c02280{bottom:174.507067pt;}
.y19_c02280{bottom:245.225371pt;}
.y18_c02280{bottom:317.225563pt;}
.y16_c02280{bottom:361.386427pt;}
.y12_c02280{bottom:377.386939pt;}
.y17_c02280{bottom:407.786011pt;}
.y15_c02280{bottom:437.226235pt;}
.y14_c02280{bottom:453.226747pt;}
.y11_c02280{bottom:482.666971pt;}
.y13_c02280{bottom:497.386555pt;}
.y10_c02280{bottom:513.387067pt;}
.y1e_c02280{bottom:546.027067pt;}
.yc_c02280{bottom:579.945467pt;}
.yb_c02280{bottom:593.385179pt;}
.ye_c02280{bottom:628.586875pt;}
.yd_c02280{bottom:637.227067pt;}
.ya_c02280{bottom:707.945339pt;}
.y9_c02280{bottom:779.945531pt;}
.y7_c02280{bottom:823.786427pt;}
.y3_c02280{bottom:839.786939pt;}
.y8_c02280{bottom:870.505979pt;}
.y6_c02280{bottom:899.946203pt;}
.y5_c02280{bottom:915.946715pt;}
.y2_c02280{bottom:945.386939pt;}
.y4_c02280{bottom:959.786555pt;}
.y1_c02280{bottom:975.787067pt;}
.yf_c02280{bottom:1008.747067pt;}
.h3_c02280{height:28.916250pt;}
.h1_c02280{height:37.063125pt;}
.h2_c02280{height:37.166250pt;}
.h4_c02280{height:48.581988pt;}
.h0_c02280{height:1122.666667pt;}
.w1_c02280{width:793.333333pt;}
.w0_c02280{width:793.626667pt;}
.x0_c02280{left:0.000000pt;}
.xe_c02280{left:104.000000pt;}
.x8_c02280{left:391.999872pt;}
.x4_c02280{left:396.160512pt;}
.xc_c02280{left:400.960000pt;}
.x7_c02280{left:404.799648pt;}
.x5_c02280{left:410.560128pt;}
.x1_c02280{left:411.840000pt;}
.xa_c02280{left:429.760320pt;}
.x9_c02280{left:437.439552pt;}
.x6_c02280{left:438.400512pt;}
.xd_c02280{left:450.560320pt;}
.x3_c02280{left:455.039904pt;}
.x2_c02280{left:468.159648pt;}
.xb_c02280{left:506.560032pt;}
}





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

.ir_c02281:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02281{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02281;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02281{font-family:ff1_c02281;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02281;src:url('chunks/assets/font_ad0fbc3b4200e51dc8ad1dec.woff2')format("woff");}.ff2_c02281{font-family:ff2_c02281;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02281;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02281{font-family:ff3_c02281;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02281{vertical-align:0.000000px;}
.v2_c02281{vertical-align:1.439424px;}
.v1_c02281{vertical-align:33.121440px;}
.lse_c02281{letter-spacing:-0.793584px;}
.lsb_c02281{letter-spacing:-0.774576px;}
.ls9_c02281{letter-spacing:-0.693792px;}
.lsa_c02281{letter-spacing:-0.574992px;}
.ls10_c02281{letter-spacing:-0.361152px;}
.ls12_c02281{letter-spacing:-0.275616px;}
.lsf_c02281{letter-spacing:-0.261360px;}
.ls6_c02281{letter-spacing:-0.242352px;}
.ls7_c02281{letter-spacing:-0.237600px;}
.ls3_c02281{letter-spacing:-0.118800px;}
.ls16_c02281{letter-spacing:0.000000px;}
.ls1_c02281{letter-spacing:0.006048px;}
.ls14_c02281{letter-spacing:0.090288px;}
.ls5_c02281{letter-spacing:0.128304px;}
.lsd_c02281{letter-spacing:0.508464px;}
.ls15_c02281{letter-spacing:0.514080px;}
.ls11_c02281{letter-spacing:0.536976px;}
.lsc_c02281{letter-spacing:0.579744px;}
.ls13_c02281{letter-spacing:0.594000px;}
.ls8_c02281{letter-spacing:0.598752px;}
.ls2_c02281{letter-spacing:0.613008px;}
.ls4_c02281{letter-spacing:0.717552px;}
.ls0_c02281{letter-spacing:0.722304px;}
.sc__c02281{text-shadow:none;}
.sc0_c02281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02281{-webkit-text-stroke:0px transparent;}
.sc0_c02281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02281{word-spacing:-15.126048px;}
.ws2_c02281{word-spacing:-12.602304px;}
.ws7_c02281{word-spacing:-12.459744px;}
.wsa_c02281{word-spacing:-12.416976px;}
.ws3_c02281{word-spacing:-11.642400px;}
.ws6_c02281{word-spacing:-11.105424px;}
.ws17_c02281{word-spacing:-2.159136px;}
.ws13_c02281{word-spacing:-1.083456px;}
.wse_c02281{word-spacing:-0.974160px;}
.ws16_c02281{word-spacing:-0.451440px;}
.ws10_c02281{word-spacing:-0.118800px;}
.ws14_c02281{word-spacing:-0.099792px;}
.ws15_c02281{word-spacing:-0.085536px;}
.wsf_c02281{word-spacing:0.000000px;}
.ws11_c02281{word-spacing:0.332640px;}
.ws12_c02281{word-spacing:0.432432px;}
.wsb_c02281{word-spacing:30.298752px;}
.wsc_c02281{word-spacing:33.300288px;}
.ws9_c02281{word-spacing:36.143712px;}
.ws1_c02281{word-spacing:37.759392px;}
.ws0_c02281{word-spacing:38.020752px;}
.ws4_c02281{word-spacing:39.218256px;}
.ws5_c02281{word-spacing:39.902544px;}
.ws8_c02281{word-spacing:42.026688px;}
._0_c02281{margin-left:-1.948320px;}
._2_c02281{width:1.482624px;}
._4_c02281{width:3.663792px;}
._5_c02281{width:14.707872px;}
._1_c02281{width:50.252400px;}
._3_c02281{width:51.530688px;}
.fc0_c02281{color:rgb(0,0,0);}
.fs0_c02281{font-size:47.520000px;}
.fs1_c02281{font-size:60.480000px;}
.y0_c02281{bottom:0.000000px;}
.y19_c02281{bottom:146.998362px;}
.y1b_c02281{bottom:186.600234px;}
.y1a_c02281{bottom:196.320450px;}
.y18_c02281{bottom:275.878542px;}
.y17_c02281{bottom:356.878758px;}
.y15_c02281{bottom:406.559730px;}
.y11_c02281{bottom:424.560306px;}
.y16_c02281{bottom:458.759262px;}
.y14_c02281{bottom:491.879514px;}
.y13_c02281{bottom:509.880090px;}
.y10_c02281{bottom:543.000342px;}
.y12_c02281{bottom:559.559874px;}
.yf_c02281{bottom:577.560450px;}
.y1c_c02281{bottom:614.280450px;}
.yb_c02281{bottom:667.558326px;}
.yd_c02281{bottom:707.160234px;}
.yc_c02281{bottom:716.880450px;}
.ya_c02281{bottom:796.438506px;}
.y9_c02281{bottom:877.438722px;}
.y7_c02281{bottom:926.759730px;}
.y3_c02281{bottom:944.760306px;}
.y8_c02281{bottom:979.319226px;}
.y6_c02281{bottom:1012.439478px;}
.y5_c02281{bottom:1030.440054px;}
.y2_c02281{bottom:1063.560306px;}
.y4_c02281{bottom:1079.759874px;}
.y1_c02281{bottom:1097.760450px;}
.ye_c02281{bottom:1134.840450px;}
.h3_c02281{height:32.530781px;}
.h1_c02281{height:41.696016px;}
.h2_c02281{height:41.812031px;}
.h5_c02281{height:54.654737px;}
.h4_c02281{height:74.817456px;}
.h0_c02281{height:1263.000000px;}
.w1_c02281{width:892.500000px;}
.w0_c02281{width:892.830000px;}
.x0_c02281{left:0.000000px;}
.xd_c02281{left:117.000000px;}
.x8_c02281{left:440.999856px;}
.x4_c02281{left:445.680576px;}
.xb_c02281{left:451.080000px;}
.x7_c02281{left:455.399604px;}
.x5_c02281{left:461.880144px;}
.x1_c02281{left:463.320000px;}
.xa_c02281{left:483.480360px;}
.x9_c02281{left:492.119496px;}
.x6_c02281{left:493.200576px;}
.xc_c02281{left:506.880360px;}
.x3_c02281{left:511.919892px;}
.x2_c02281{left:526.679604px;}
@media print{
.v0_c02281{vertical-align:0.000000pt;}
.v2_c02281{vertical-align:1.279488pt;}
.v1_c02281{vertical-align:29.441280pt;}
.lse_c02281{letter-spacing:-0.705408pt;}
.lsb_c02281{letter-spacing:-0.688512pt;}
.ls9_c02281{letter-spacing:-0.616704pt;}
.lsa_c02281{letter-spacing:-0.511104pt;}
.ls10_c02281{letter-spacing:-0.321024pt;}
.ls12_c02281{letter-spacing:-0.244992pt;}
.lsf_c02281{letter-spacing:-0.232320pt;}
.ls6_c02281{letter-spacing:-0.215424pt;}
.ls7_c02281{letter-spacing:-0.211200pt;}
.ls3_c02281{letter-spacing:-0.105600pt;}
.ls16_c02281{letter-spacing:0.000000pt;}
.ls1_c02281{letter-spacing:0.005376pt;}
.ls14_c02281{letter-spacing:0.080256pt;}
.ls5_c02281{letter-spacing:0.114048pt;}
.lsd_c02281{letter-spacing:0.451968pt;}
.ls15_c02281{letter-spacing:0.456960pt;}
.ls11_c02281{letter-spacing:0.477312pt;}
.lsc_c02281{letter-spacing:0.515328pt;}
.ls13_c02281{letter-spacing:0.528000pt;}
.ls8_c02281{letter-spacing:0.532224pt;}
.ls2_c02281{letter-spacing:0.544896pt;}
.ls4_c02281{letter-spacing:0.637824pt;}
.ls0_c02281{letter-spacing:0.642048pt;}
.wsd_c02281{word-spacing:-13.445376pt;}
.ws2_c02281{word-spacing:-11.202048pt;}
.ws7_c02281{word-spacing:-11.075328pt;}
.wsa_c02281{word-spacing:-11.037312pt;}
.ws3_c02281{word-spacing:-10.348800pt;}
.ws6_c02281{word-spacing:-9.871488pt;}
.ws17_c02281{word-spacing:-1.919232pt;}
.ws13_c02281{word-spacing:-0.963072pt;}
.wse_c02281{word-spacing:-0.865920pt;}
.ws16_c02281{word-spacing:-0.401280pt;}
.ws10_c02281{word-spacing:-0.105600pt;}
.ws14_c02281{word-spacing:-0.088704pt;}
.ws15_c02281{word-spacing:-0.076032pt;}
.wsf_c02281{word-spacing:0.000000pt;}
.ws11_c02281{word-spacing:0.295680pt;}
.ws12_c02281{word-spacing:0.384384pt;}
.wsb_c02281{word-spacing:26.932224pt;}
.wsc_c02281{word-spacing:29.600256pt;}
.ws9_c02281{word-spacing:32.127744pt;}
.ws1_c02281{word-spacing:33.563904pt;}
.ws0_c02281{word-spacing:33.796224pt;}
.ws4_c02281{word-spacing:34.860672pt;}
.ws5_c02281{word-spacing:35.468928pt;}
.ws8_c02281{word-spacing:37.357056pt;}
._0_c02281{margin-left:-1.731840pt;}
._2_c02281{width:1.317888pt;}
._4_c02281{width:3.256704pt;}
._5_c02281{width:13.073664pt;}
._1_c02281{width:44.668800pt;}
._3_c02281{width:45.805056pt;}
.fs0_c02281{font-size:42.240000pt;}
.fs1_c02281{font-size:53.760000pt;}
.y0_c02281{bottom:0.000000pt;}
.y19_c02281{bottom:130.665211pt;}
.y1b_c02281{bottom:165.866875pt;}
.y1a_c02281{bottom:174.507067pt;}
.y18_c02281{bottom:245.225371pt;}
.y17_c02281{bottom:317.225563pt;}
.y15_c02281{bottom:361.386427pt;}
.y11_c02281{bottom:377.386939pt;}
.y16_c02281{bottom:407.786011pt;}
.y14_c02281{bottom:437.226235pt;}
.y13_c02281{bottom:453.226747pt;}
.y10_c02281{bottom:482.666971pt;}
.y12_c02281{bottom:497.386555pt;}
.yf_c02281{bottom:513.387067pt;}
.y1c_c02281{bottom:546.027067pt;}
.yb_c02281{bottom:593.385179pt;}
.yd_c02281{bottom:628.586875pt;}
.yc_c02281{bottom:637.227067pt;}
.ya_c02281{bottom:707.945339pt;}
.y9_c02281{bottom:779.945531pt;}
.y7_c02281{bottom:823.786427pt;}
.y3_c02281{bottom:839.786939pt;}
.y8_c02281{bottom:870.505979pt;}
.y6_c02281{bottom:899.946203pt;}
.y5_c02281{bottom:915.946715pt;}
.y2_c02281{bottom:945.386939pt;}
.y4_c02281{bottom:959.786555pt;}
.y1_c02281{bottom:975.787067pt;}
.ye_c02281{bottom:1008.747067pt;}
.h3_c02281{height:28.916250pt;}
.h1_c02281{height:37.063125pt;}
.h2_c02281{height:37.166250pt;}
.h5_c02281{height:48.581988pt;}
.h4_c02281{height:66.504405pt;}
.h0_c02281{height:1122.666667pt;}
.w1_c02281{width:793.333333pt;}
.w0_c02281{width:793.626667pt;}
.x0_c02281{left:0.000000pt;}
.xd_c02281{left:104.000000pt;}
.x8_c02281{left:391.999872pt;}
.x4_c02281{left:396.160512pt;}
.xb_c02281{left:400.960000pt;}
.x7_c02281{left:404.799648pt;}
.x5_c02281{left:410.560128pt;}
.x1_c02281{left:411.840000pt;}
.xa_c02281{left:429.760320pt;}
.x9_c02281{left:437.439552pt;}
.x6_c02281{left:438.400512pt;}
.xc_c02281{left:450.560320pt;}
.x3_c02281{left:455.039904pt;}
.x2_c02281{left:468.159648pt;}
}





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

.ir_c02282:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02282{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02282;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02282{font-family:ff1_c02282;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02282;src:url('chunks/assets/font_b22271ef7fc71218273924cf.woff2')format("woff");}.ff2_c02282{font-family:ff2_c02282;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02282;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02282{font-family:ff3_c02282;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02282{vertical-align:0.000000px;}
.v2_c02282{vertical-align:1.439424px;}
.v1_c02282{vertical-align:33.121440px;}
.lse_c02282{letter-spacing:-0.793584px;}
.lsb_c02282{letter-spacing:-0.774576px;}
.ls9_c02282{letter-spacing:-0.693792px;}
.lsa_c02282{letter-spacing:-0.574992px;}
.ls10_c02282{letter-spacing:-0.361152px;}
.ls12_c02282{letter-spacing:-0.275616px;}
.lsf_c02282{letter-spacing:-0.261360px;}
.ls6_c02282{letter-spacing:-0.242352px;}
.ls7_c02282{letter-spacing:-0.237600px;}
.ls3_c02282{letter-spacing:-0.118800px;}
.ls16_c02282{letter-spacing:0.000000px;}
.ls0_c02282{letter-spacing:0.006048px;}
.ls14_c02282{letter-spacing:0.090288px;}
.ls5_c02282{letter-spacing:0.128304px;}
.lsd_c02282{letter-spacing:0.508464px;}
.ls15_c02282{letter-spacing:0.514080px;}
.ls11_c02282{letter-spacing:0.536976px;}
.lsc_c02282{letter-spacing:0.579744px;}
.ls13_c02282{letter-spacing:0.594000px;}
.ls8_c02282{letter-spacing:0.598752px;}
.ls1_c02282{letter-spacing:0.613008px;}
.ls4_c02282{letter-spacing:0.717552px;}
.ls2_c02282{letter-spacing:0.722304px;}
.sc__c02282{text-shadow:none;}
.sc0_c02282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02282{-webkit-text-stroke:0px transparent;}
.sc0_c02282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02282{word-spacing:-15.126048px;}
.ws6_c02282{word-spacing:-12.459744px;}
.ws9_c02282{word-spacing:-12.416976px;}
.ws2_c02282{word-spacing:-11.642400px;}
.ws5_c02282{word-spacing:-11.105424px;}
.ws16_c02282{word-spacing:-2.159136px;}
.ws12_c02282{word-spacing:-1.083456px;}
.wsd_c02282{word-spacing:-0.974160px;}
.ws15_c02282{word-spacing:-0.451440px;}
.wsf_c02282{word-spacing:-0.118800px;}
.ws13_c02282{word-spacing:-0.099792px;}
.ws14_c02282{word-spacing:-0.085536px;}
.wse_c02282{word-spacing:0.000000px;}
.ws10_c02282{word-spacing:0.332640px;}
.ws11_c02282{word-spacing:0.432432px;}
.wsa_c02282{word-spacing:30.298752px;}
.wsb_c02282{word-spacing:33.300288px;}
.ws8_c02282{word-spacing:36.143712px;}
.ws1_c02282{word-spacing:37.759392px;}
.ws0_c02282{word-spacing:38.020752px;}
.ws3_c02282{word-spacing:39.218256px;}
.ws4_c02282{word-spacing:39.902544px;}
.ws7_c02282{word-spacing:42.026688px;}
._0_c02282{margin-left:-1.948320px;}
._2_c02282{width:1.482624px;}
._4_c02282{width:3.663792px;}
._5_c02282{width:14.707872px;}
._1_c02282{width:50.252400px;}
._3_c02282{width:51.530688px;}
.fc0_c02282{color:rgb(0,0,0);}
.fs0_c02282{font-size:47.520000px;}
.fs1_c02282{font-size:60.480000px;}
.y0_c02282{bottom:0.000000px;}
.y19_c02282{bottom:146.998362px;}
.y1b_c02282{bottom:186.600234px;}
.y1a_c02282{bottom:196.320450px;}
.y18_c02282{bottom:275.878542px;}
.y17_c02282{bottom:356.878758px;}
.y15_c02282{bottom:406.559730px;}
.y11_c02282{bottom:424.560306px;}
.y16_c02282{bottom:458.759262px;}
.y14_c02282{bottom:491.879514px;}
.y13_c02282{bottom:509.880090px;}
.y10_c02282{bottom:543.000342px;}
.y12_c02282{bottom:559.559874px;}
.yf_c02282{bottom:577.560450px;}
.y1c_c02282{bottom:614.280450px;}
.yb_c02282{bottom:667.558326px;}
.yd_c02282{bottom:707.160234px;}
.yc_c02282{bottom:716.880450px;}
.ya_c02282{bottom:796.438506px;}
.y9_c02282{bottom:877.438722px;}
.y7_c02282{bottom:926.759730px;}
.y3_c02282{bottom:944.760306px;}
.y8_c02282{bottom:979.319226px;}
.y6_c02282{bottom:1012.439478px;}
.y5_c02282{bottom:1030.440054px;}
.y2_c02282{bottom:1063.560306px;}
.y4_c02282{bottom:1079.759874px;}
.y1_c02282{bottom:1097.760450px;}
.ye_c02282{bottom:1134.840450px;}
.h3_c02282{height:32.530781px;}
.h1_c02282{height:41.696016px;}
.h2_c02282{height:41.812031px;}
.h5_c02282{height:54.654737px;}
.h4_c02282{height:74.817456px;}
.h0_c02282{height:1263.000000px;}
.w1_c02282{width:892.500000px;}
.w0_c02282{width:892.830000px;}
.x0_c02282{left:0.000000px;}
.xd_c02282{left:117.000000px;}
.x8_c02282{left:440.999856px;}
.x4_c02282{left:445.680576px;}
.xb_c02282{left:451.080000px;}
.x7_c02282{left:455.399604px;}
.x5_c02282{left:461.880144px;}
.x1_c02282{left:463.320000px;}
.xa_c02282{left:483.480360px;}
.x9_c02282{left:492.119496px;}
.x6_c02282{left:493.200576px;}
.xc_c02282{left:506.880360px;}
.x3_c02282{left:511.919892px;}
.x2_c02282{left:526.679604px;}
@media print{
.v0_c02282{vertical-align:0.000000pt;}
.v2_c02282{vertical-align:1.279488pt;}
.v1_c02282{vertical-align:29.441280pt;}
.lse_c02282{letter-spacing:-0.705408pt;}
.lsb_c02282{letter-spacing:-0.688512pt;}
.ls9_c02282{letter-spacing:-0.616704pt;}
.lsa_c02282{letter-spacing:-0.511104pt;}
.ls10_c02282{letter-spacing:-0.321024pt;}
.ls12_c02282{letter-spacing:-0.244992pt;}
.lsf_c02282{letter-spacing:-0.232320pt;}
.ls6_c02282{letter-spacing:-0.215424pt;}
.ls7_c02282{letter-spacing:-0.211200pt;}
.ls3_c02282{letter-spacing:-0.105600pt;}
.ls16_c02282{letter-spacing:0.000000pt;}
.ls0_c02282{letter-spacing:0.005376pt;}
.ls14_c02282{letter-spacing:0.080256pt;}
.ls5_c02282{letter-spacing:0.114048pt;}
.lsd_c02282{letter-spacing:0.451968pt;}
.ls15_c02282{letter-spacing:0.456960pt;}
.ls11_c02282{letter-spacing:0.477312pt;}
.lsc_c02282{letter-spacing:0.515328pt;}
.ls13_c02282{letter-spacing:0.528000pt;}
.ls8_c02282{letter-spacing:0.532224pt;}
.ls1_c02282{letter-spacing:0.544896pt;}
.ls4_c02282{letter-spacing:0.637824pt;}
.ls2_c02282{letter-spacing:0.642048pt;}
.wsc_c02282{word-spacing:-13.445376pt;}
.ws6_c02282{word-spacing:-11.075328pt;}
.ws9_c02282{word-spacing:-11.037312pt;}
.ws2_c02282{word-spacing:-10.348800pt;}
.ws5_c02282{word-spacing:-9.871488pt;}
.ws16_c02282{word-spacing:-1.919232pt;}
.ws12_c02282{word-spacing:-0.963072pt;}
.wsd_c02282{word-spacing:-0.865920pt;}
.ws15_c02282{word-spacing:-0.401280pt;}
.wsf_c02282{word-spacing:-0.105600pt;}
.ws13_c02282{word-spacing:-0.088704pt;}
.ws14_c02282{word-spacing:-0.076032pt;}
.wse_c02282{word-spacing:0.000000pt;}
.ws10_c02282{word-spacing:0.295680pt;}
.ws11_c02282{word-spacing:0.384384pt;}
.wsa_c02282{word-spacing:26.932224pt;}
.wsb_c02282{word-spacing:29.600256pt;}
.ws8_c02282{word-spacing:32.127744pt;}
.ws1_c02282{word-spacing:33.563904pt;}
.ws0_c02282{word-spacing:33.796224pt;}
.ws3_c02282{word-spacing:34.860672pt;}
.ws4_c02282{word-spacing:35.468928pt;}
.ws7_c02282{word-spacing:37.357056pt;}
._0_c02282{margin-left:-1.731840pt;}
._2_c02282{width:1.317888pt;}
._4_c02282{width:3.256704pt;}
._5_c02282{width:13.073664pt;}
._1_c02282{width:44.668800pt;}
._3_c02282{width:45.805056pt;}
.fs0_c02282{font-size:42.240000pt;}
.fs1_c02282{font-size:53.760000pt;}
.y0_c02282{bottom:0.000000pt;}
.y19_c02282{bottom:130.665211pt;}
.y1b_c02282{bottom:165.866875pt;}
.y1a_c02282{bottom:174.507067pt;}
.y18_c02282{bottom:245.225371pt;}
.y17_c02282{bottom:317.225563pt;}
.y15_c02282{bottom:361.386427pt;}
.y11_c02282{bottom:377.386939pt;}
.y16_c02282{bottom:407.786011pt;}
.y14_c02282{bottom:437.226235pt;}
.y13_c02282{bottom:453.226747pt;}
.y10_c02282{bottom:482.666971pt;}
.y12_c02282{bottom:497.386555pt;}
.yf_c02282{bottom:513.387067pt;}
.y1c_c02282{bottom:546.027067pt;}
.yb_c02282{bottom:593.385179pt;}
.yd_c02282{bottom:628.586875pt;}
.yc_c02282{bottom:637.227067pt;}
.ya_c02282{bottom:707.945339pt;}
.y9_c02282{bottom:779.945531pt;}
.y7_c02282{bottom:823.786427pt;}
.y3_c02282{bottom:839.786939pt;}
.y8_c02282{bottom:870.505979pt;}
.y6_c02282{bottom:899.946203pt;}
.y5_c02282{bottom:915.946715pt;}
.y2_c02282{bottom:945.386939pt;}
.y4_c02282{bottom:959.786555pt;}
.y1_c02282{bottom:975.787067pt;}
.ye_c02282{bottom:1008.747067pt;}
.h3_c02282{height:28.916250pt;}
.h1_c02282{height:37.063125pt;}
.h2_c02282{height:37.166250pt;}
.h5_c02282{height:48.581988pt;}
.h4_c02282{height:66.504405pt;}
.h0_c02282{height:1122.666667pt;}
.w1_c02282{width:793.333333pt;}
.w0_c02282{width:793.626667pt;}
.x0_c02282{left:0.000000pt;}
.xd_c02282{left:104.000000pt;}
.x8_c02282{left:391.999872pt;}
.x4_c02282{left:396.160512pt;}
.xb_c02282{left:400.960000pt;}
.x7_c02282{left:404.799648pt;}
.x5_c02282{left:410.560128pt;}
.x1_c02282{left:411.840000pt;}
.xa_c02282{left:429.760320pt;}
.x9_c02282{left:437.439552pt;}
.x6_c02282{left:438.400512pt;}
.xc_c02282{left:450.560320pt;}
.x3_c02282{left:455.039904pt;}
.x2_c02282{left:468.159648pt;}
}





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

.ir_c02283:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02283{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02283;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02283{font-family:ff1_c02283;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02283;src:url('chunks/assets/font_2b85692cdc7a47b43c67dcd6.woff2')format("woff");}.ff2_c02283{font-family:ff2_c02283;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02283;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02283{font-family:ff3_c02283;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02283{vertical-align:0.000000px;}
.v2_c02283{vertical-align:1.439424px;}
.v1_c02283{vertical-align:33.121440px;}
.lse_c02283{letter-spacing:-0.793584px;}
.lsb_c02283{letter-spacing:-0.774576px;}
.ls9_c02283{letter-spacing:-0.693792px;}
.lsa_c02283{letter-spacing:-0.574992px;}
.ls11_c02283{letter-spacing:-0.275616px;}
.lsf_c02283{letter-spacing:-0.261360px;}
.ls6_c02283{letter-spacing:-0.242352px;}
.ls7_c02283{letter-spacing:-0.237600px;}
.ls3_c02283{letter-spacing:-0.118800px;}
.ls15_c02283{letter-spacing:0.000000px;}
.ls1_c02283{letter-spacing:0.006048px;}
.ls13_c02283{letter-spacing:0.090288px;}
.ls5_c02283{letter-spacing:0.128304px;}
.lsd_c02283{letter-spacing:0.508464px;}
.ls14_c02283{letter-spacing:0.514080px;}
.ls10_c02283{letter-spacing:0.536976px;}
.lsc_c02283{letter-spacing:0.579744px;}
.ls12_c02283{letter-spacing:0.594000px;}
.ls8_c02283{letter-spacing:0.598752px;}
.ls2_c02283{letter-spacing:0.613008px;}
.ls4_c02283{letter-spacing:0.717552px;}
.ls0_c02283{letter-spacing:0.722304px;}
.sc__c02283{text-shadow:none;}
.sc0_c02283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02283{-webkit-text-stroke:0px transparent;}
.sc0_c02283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02283{word-spacing:-15.126048px;}
.ws2_c02283{word-spacing:-12.602304px;}
.ws7_c02283{word-spacing:-12.459744px;}
.wsa_c02283{word-spacing:-12.416976px;}
.ws3_c02283{word-spacing:-11.642400px;}
.ws6_c02283{word-spacing:-11.105424px;}
.ws17_c02283{word-spacing:-2.159136px;}
.ws13_c02283{word-spacing:-1.083456px;}
.wse_c02283{word-spacing:-0.974160px;}
.ws16_c02283{word-spacing:-0.451440px;}
.ws10_c02283{word-spacing:-0.118800px;}
.ws14_c02283{word-spacing:-0.099792px;}
.ws15_c02283{word-spacing:-0.085536px;}
.wsf_c02283{word-spacing:0.000000px;}
.ws11_c02283{word-spacing:0.332640px;}
.ws12_c02283{word-spacing:0.432432px;}
.wsb_c02283{word-spacing:30.298752px;}
.wsc_c02283{word-spacing:33.300288px;}
.ws9_c02283{word-spacing:36.143712px;}
.ws1_c02283{word-spacing:37.759392px;}
.ws0_c02283{word-spacing:38.020752px;}
.ws4_c02283{word-spacing:39.218256px;}
.ws5_c02283{word-spacing:39.902544px;}
.ws8_c02283{word-spacing:42.026688px;}
._0_c02283{margin-left:-1.948320px;}
._2_c02283{width:1.482624px;}
._4_c02283{width:3.663792px;}
._5_c02283{width:14.707872px;}
._1_c02283{width:50.252400px;}
._3_c02283{width:51.530688px;}
.fc0_c02283{color:rgb(0,0,0);}
.fs0_c02283{font-size:47.520000px;}
.fs1_c02283{font-size:60.480000px;}
.y0_c02283{bottom:0.000000px;}
.y19_c02283{bottom:146.998362px;}
.y1b_c02283{bottom:186.600234px;}
.y1a_c02283{bottom:196.320450px;}
.y18_c02283{bottom:275.878542px;}
.y17_c02283{bottom:356.878758px;}
.y15_c02283{bottom:406.559730px;}
.y11_c02283{bottom:424.560306px;}
.y16_c02283{bottom:458.759262px;}
.y14_c02283{bottom:491.879514px;}
.y13_c02283{bottom:509.880090px;}
.y10_c02283{bottom:543.000342px;}
.y12_c02283{bottom:559.559874px;}
.yf_c02283{bottom:577.560450px;}
.y1c_c02283{bottom:614.280450px;}
.yb_c02283{bottom:667.558326px;}
.yd_c02283{bottom:707.160234px;}
.yc_c02283{bottom:716.880450px;}
.ya_c02283{bottom:796.438506px;}
.y9_c02283{bottom:877.438722px;}
.y7_c02283{bottom:926.759730px;}
.y3_c02283{bottom:944.760306px;}
.y8_c02283{bottom:979.319226px;}
.y6_c02283{bottom:1012.439478px;}
.y5_c02283{bottom:1030.440054px;}
.y2_c02283{bottom:1063.560306px;}
.y4_c02283{bottom:1079.759874px;}
.y1_c02283{bottom:1097.760450px;}
.ye_c02283{bottom:1134.840450px;}
.h3_c02283{height:32.530781px;}
.h1_c02283{height:41.696016px;}
.h2_c02283{height:41.812031px;}
.h5_c02283{height:54.654737px;}
.h4_c02283{height:74.817456px;}
.h0_c02283{height:1263.000000px;}
.w1_c02283{width:892.500000px;}
.w0_c02283{width:892.830000px;}
.x0_c02283{left:0.000000px;}
.xd_c02283{left:117.000000px;}
.x8_c02283{left:440.999856px;}
.x4_c02283{left:445.680576px;}
.xb_c02283{left:451.080000px;}
.x7_c02283{left:455.399604px;}
.x5_c02283{left:461.880144px;}
.x1_c02283{left:463.320000px;}
.xa_c02283{left:483.480360px;}
.x9_c02283{left:492.119496px;}
.x6_c02283{left:493.200576px;}
.xc_c02283{left:506.880360px;}
.x3_c02283{left:511.919892px;}
.x2_c02283{left:526.679604px;}
@media print{
.v0_c02283{vertical-align:0.000000pt;}
.v2_c02283{vertical-align:1.279488pt;}
.v1_c02283{vertical-align:29.441280pt;}
.lse_c02283{letter-spacing:-0.705408pt;}
.lsb_c02283{letter-spacing:-0.688512pt;}
.ls9_c02283{letter-spacing:-0.616704pt;}
.lsa_c02283{letter-spacing:-0.511104pt;}
.ls11_c02283{letter-spacing:-0.244992pt;}
.lsf_c02283{letter-spacing:-0.232320pt;}
.ls6_c02283{letter-spacing:-0.215424pt;}
.ls7_c02283{letter-spacing:-0.211200pt;}
.ls3_c02283{letter-spacing:-0.105600pt;}
.ls15_c02283{letter-spacing:0.000000pt;}
.ls1_c02283{letter-spacing:0.005376pt;}
.ls13_c02283{letter-spacing:0.080256pt;}
.ls5_c02283{letter-spacing:0.114048pt;}
.lsd_c02283{letter-spacing:0.451968pt;}
.ls14_c02283{letter-spacing:0.456960pt;}
.ls10_c02283{letter-spacing:0.477312pt;}
.lsc_c02283{letter-spacing:0.515328pt;}
.ls12_c02283{letter-spacing:0.528000pt;}
.ls8_c02283{letter-spacing:0.532224pt;}
.ls2_c02283{letter-spacing:0.544896pt;}
.ls4_c02283{letter-spacing:0.637824pt;}
.ls0_c02283{letter-spacing:0.642048pt;}
.wsd_c02283{word-spacing:-13.445376pt;}
.ws2_c02283{word-spacing:-11.202048pt;}
.ws7_c02283{word-spacing:-11.075328pt;}
.wsa_c02283{word-spacing:-11.037312pt;}
.ws3_c02283{word-spacing:-10.348800pt;}
.ws6_c02283{word-spacing:-9.871488pt;}
.ws17_c02283{word-spacing:-1.919232pt;}
.ws13_c02283{word-spacing:-0.963072pt;}
.wse_c02283{word-spacing:-0.865920pt;}
.ws16_c02283{word-spacing:-0.401280pt;}
.ws10_c02283{word-spacing:-0.105600pt;}
.ws14_c02283{word-spacing:-0.088704pt;}
.ws15_c02283{word-spacing:-0.076032pt;}
.wsf_c02283{word-spacing:0.000000pt;}
.ws11_c02283{word-spacing:0.295680pt;}
.ws12_c02283{word-spacing:0.384384pt;}
.wsb_c02283{word-spacing:26.932224pt;}
.wsc_c02283{word-spacing:29.600256pt;}
.ws9_c02283{word-spacing:32.127744pt;}
.ws1_c02283{word-spacing:33.563904pt;}
.ws0_c02283{word-spacing:33.796224pt;}
.ws4_c02283{word-spacing:34.860672pt;}
.ws5_c02283{word-spacing:35.468928pt;}
.ws8_c02283{word-spacing:37.357056pt;}
._0_c02283{margin-left:-1.731840pt;}
._2_c02283{width:1.317888pt;}
._4_c02283{width:3.256704pt;}
._5_c02283{width:13.073664pt;}
._1_c02283{width:44.668800pt;}
._3_c02283{width:45.805056pt;}
.fs0_c02283{font-size:42.240000pt;}
.fs1_c02283{font-size:53.760000pt;}
.y0_c02283{bottom:0.000000pt;}
.y19_c02283{bottom:130.665211pt;}
.y1b_c02283{bottom:165.866875pt;}
.y1a_c02283{bottom:174.507067pt;}
.y18_c02283{bottom:245.225371pt;}
.y17_c02283{bottom:317.225563pt;}
.y15_c02283{bottom:361.386427pt;}
.y11_c02283{bottom:377.386939pt;}
.y16_c02283{bottom:407.786011pt;}
.y14_c02283{bottom:437.226235pt;}
.y13_c02283{bottom:453.226747pt;}
.y10_c02283{bottom:482.666971pt;}
.y12_c02283{bottom:497.386555pt;}
.yf_c02283{bottom:513.387067pt;}
.y1c_c02283{bottom:546.027067pt;}
.yb_c02283{bottom:593.385179pt;}
.yd_c02283{bottom:628.586875pt;}
.yc_c02283{bottom:637.227067pt;}
.ya_c02283{bottom:707.945339pt;}
.y9_c02283{bottom:779.945531pt;}
.y7_c02283{bottom:823.786427pt;}
.y3_c02283{bottom:839.786939pt;}
.y8_c02283{bottom:870.505979pt;}
.y6_c02283{bottom:899.946203pt;}
.y5_c02283{bottom:915.946715pt;}
.y2_c02283{bottom:945.386939pt;}
.y4_c02283{bottom:959.786555pt;}
.y1_c02283{bottom:975.787067pt;}
.ye_c02283{bottom:1008.747067pt;}
.h3_c02283{height:28.916250pt;}
.h1_c02283{height:37.063125pt;}
.h2_c02283{height:37.166250pt;}
.h5_c02283{height:48.581988pt;}
.h4_c02283{height:66.504405pt;}
.h0_c02283{height:1122.666667pt;}
.w1_c02283{width:793.333333pt;}
.w0_c02283{width:793.626667pt;}
.x0_c02283{left:0.000000pt;}
.xd_c02283{left:104.000000pt;}
.x8_c02283{left:391.999872pt;}
.x4_c02283{left:396.160512pt;}
.xb_c02283{left:400.960000pt;}
.x7_c02283{left:404.799648pt;}
.x5_c02283{left:410.560128pt;}
.x1_c02283{left:411.840000pt;}
.xa_c02283{left:429.760320pt;}
.x9_c02283{left:437.439552pt;}
.x6_c02283{left:438.400512pt;}
.xc_c02283{left:450.560320pt;}
.x3_c02283{left:455.039904pt;}
.x2_c02283{left:468.159648pt;}
}





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

.ir_c02284:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02284{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02284;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02284{font-family:ff1_c02284;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02284;src:url('chunks/assets/font_01912885e031c23de3ea9c19.woff2')format("woff");}.ff2_c02284{font-family:ff2_c02284;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02284;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02284{font-family:ff3_c02284;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02284{vertical-align:0.000000px;}
.v2_c02284{vertical-align:1.439424px;}
.v1_c02284{vertical-align:33.121440px;}
.ls18_c02284{letter-spacing:-1.197504px;}
.lse_c02284{letter-spacing:-0.793584px;}
.lsb_c02284{letter-spacing:-0.774576px;}
.ls17_c02284{letter-spacing:-0.755568px;}
.ls9_c02284{letter-spacing:-0.693792px;}
.lsa_c02284{letter-spacing:-0.574992px;}
.ls11_c02284{letter-spacing:-0.275616px;}
.lsf_c02284{letter-spacing:-0.261360px;}
.ls6_c02284{letter-spacing:-0.242352px;}
.ls7_c02284{letter-spacing:-0.237600px;}
.ls4_c02284{letter-spacing:-0.118800px;}
.ls15_c02284{letter-spacing:0.000000px;}
.ls1_c02284{letter-spacing:0.006048px;}
.ls13_c02284{letter-spacing:0.090288px;}
.ls5_c02284{letter-spacing:0.128304px;}
.ls16_c02284{letter-spacing:0.242352px;}
.lsd_c02284{letter-spacing:0.508464px;}
.ls14_c02284{letter-spacing:0.514080px;}
.ls10_c02284{letter-spacing:0.536976px;}
.lsc_c02284{letter-spacing:0.579744px;}
.ls12_c02284{letter-spacing:0.594000px;}
.ls8_c02284{letter-spacing:0.598752px;}
.ls3_c02284{letter-spacing:0.613008px;}
.ls2_c02284{letter-spacing:0.717552px;}
.ls0_c02284{letter-spacing:0.722304px;}
.sc__c02284{text-shadow:none;}
.sc0_c02284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02284{-webkit-text-stroke:0px transparent;}
.sc0_c02284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02284{word-spacing:-15.126048px;}
.ws2_c02284{word-spacing:-12.602304px;}
.ws11_c02284{word-spacing:-12.474000px;}
.ws7_c02284{word-spacing:-12.459744px;}
.wsa_c02284{word-spacing:-12.416976px;}
.wse_c02284{word-spacing:-12.122352px;}
.ws3_c02284{word-spacing:-11.642400px;}
.wsf_c02284{word-spacing:-11.124432px;}
.ws6_c02284{word-spacing:-11.105424px;}
.ws1b_c02284{word-spacing:-2.159136px;}
.ws17_c02284{word-spacing:-1.083456px;}
.ws1c_c02284{word-spacing:-1.078704px;}
.ws12_c02284{word-spacing:-0.974160px;}
.ws1a_c02284{word-spacing:-0.451440px;}
.ws14_c02284{word-spacing:-0.118800px;}
.ws18_c02284{word-spacing:-0.099792px;}
.ws19_c02284{word-spacing:-0.085536px;}
.ws13_c02284{word-spacing:0.000000px;}
.ws15_c02284{word-spacing:0.332640px;}
.ws16_c02284{word-spacing:0.432432px;}
.ws1d_c02284{word-spacing:0.836352px;}
.wsb_c02284{word-spacing:30.298752px;}
.wsc_c02284{word-spacing:33.300288px;}
.ws9_c02284{word-spacing:36.143712px;}
.ws10_c02284{word-spacing:36.742464px;}
.ws1_c02284{word-spacing:37.759392px;}
.ws0_c02284{word-spacing:38.020752px;}
.ws4_c02284{word-spacing:39.218256px;}
.ws5_c02284{word-spacing:39.902544px;}
.ws8_c02284{word-spacing:42.026688px;}
._0_c02284{margin-left:-1.948320px;}
._2_c02284{width:1.482624px;}
._4_c02284{width:3.663792px;}
._5_c02284{width:14.707872px;}
._1_c02284{width:50.252400px;}
._3_c02284{width:51.530688px;}
.fc0_c02284{color:rgb(0,0,0);}
.fs0_c02284{font-size:47.520000px;}
.fs1_c02284{font-size:60.480000px;}
.y0_c02284{bottom:0.000000px;}
.y19_c02284{bottom:146.998362px;}
.y1b_c02284{bottom:186.600234px;}
.y1a_c02284{bottom:196.320450px;}
.y18_c02284{bottom:275.878542px;}
.y17_c02284{bottom:356.878758px;}
.y15_c02284{bottom:406.559730px;}
.y11_c02284{bottom:424.560306px;}
.y16_c02284{bottom:458.759262px;}
.y14_c02284{bottom:491.879514px;}
.y13_c02284{bottom:509.880090px;}
.y10_c02284{bottom:543.000342px;}
.y12_c02284{bottom:559.559874px;}
.yf_c02284{bottom:577.560450px;}
.y1c_c02284{bottom:614.280450px;}
.yb_c02284{bottom:667.558326px;}
.yd_c02284{bottom:707.160234px;}
.yc_c02284{bottom:716.880450px;}
.ya_c02284{bottom:796.438506px;}
.y9_c02284{bottom:877.438722px;}
.y7_c02284{bottom:926.759730px;}
.y3_c02284{bottom:944.760306px;}
.y8_c02284{bottom:979.319226px;}
.y6_c02284{bottom:1012.439478px;}
.y5_c02284{bottom:1030.440054px;}
.y2_c02284{bottom:1063.560306px;}
.y4_c02284{bottom:1079.759874px;}
.y1_c02284{bottom:1097.760450px;}
.ye_c02284{bottom:1134.840450px;}
.h3_c02284{height:32.530781px;}
.h1_c02284{height:41.696016px;}
.h2_c02284{height:41.812031px;}
.h5_c02284{height:54.654737px;}
.h4_c02284{height:74.817456px;}
.h0_c02284{height:1263.000000px;}
.w1_c02284{width:892.500000px;}
.w0_c02284{width:892.830000px;}
.x0_c02284{left:0.000000px;}
.xd_c02284{left:117.000000px;}
.x8_c02284{left:440.999856px;}
.x4_c02284{left:445.680576px;}
.xb_c02284{left:451.080000px;}
.x7_c02284{left:455.399604px;}
.x5_c02284{left:461.880144px;}
.x1_c02284{left:463.320000px;}
.xa_c02284{left:483.480360px;}
.x9_c02284{left:492.119496px;}
.x6_c02284{left:493.200576px;}
.xc_c02284{left:506.880360px;}
.x3_c02284{left:511.919892px;}
.x2_c02284{left:526.679604px;}
@media print{
.v0_c02284{vertical-align:0.000000pt;}
.v2_c02284{vertical-align:1.279488pt;}
.v1_c02284{vertical-align:29.441280pt;}
.ls18_c02284{letter-spacing:-1.064448pt;}
.lse_c02284{letter-spacing:-0.705408pt;}
.lsb_c02284{letter-spacing:-0.688512pt;}
.ls17_c02284{letter-spacing:-0.671616pt;}
.ls9_c02284{letter-spacing:-0.616704pt;}
.lsa_c02284{letter-spacing:-0.511104pt;}
.ls11_c02284{letter-spacing:-0.244992pt;}
.lsf_c02284{letter-spacing:-0.232320pt;}
.ls6_c02284{letter-spacing:-0.215424pt;}
.ls7_c02284{letter-spacing:-0.211200pt;}
.ls4_c02284{letter-spacing:-0.105600pt;}
.ls15_c02284{letter-spacing:0.000000pt;}
.ls1_c02284{letter-spacing:0.005376pt;}
.ls13_c02284{letter-spacing:0.080256pt;}
.ls5_c02284{letter-spacing:0.114048pt;}
.ls16_c02284{letter-spacing:0.215424pt;}
.lsd_c02284{letter-spacing:0.451968pt;}
.ls14_c02284{letter-spacing:0.456960pt;}
.ls10_c02284{letter-spacing:0.477312pt;}
.lsc_c02284{letter-spacing:0.515328pt;}
.ls12_c02284{letter-spacing:0.528000pt;}
.ls8_c02284{letter-spacing:0.532224pt;}
.ls3_c02284{letter-spacing:0.544896pt;}
.ls2_c02284{letter-spacing:0.637824pt;}
.ls0_c02284{letter-spacing:0.642048pt;}
.wsd_c02284{word-spacing:-13.445376pt;}
.ws2_c02284{word-spacing:-11.202048pt;}
.ws11_c02284{word-spacing:-11.088000pt;}
.ws7_c02284{word-spacing:-11.075328pt;}
.wsa_c02284{word-spacing:-11.037312pt;}
.wse_c02284{word-spacing:-10.775424pt;}
.ws3_c02284{word-spacing:-10.348800pt;}
.wsf_c02284{word-spacing:-9.888384pt;}
.ws6_c02284{word-spacing:-9.871488pt;}
.ws1b_c02284{word-spacing:-1.919232pt;}
.ws17_c02284{word-spacing:-0.963072pt;}
.ws1c_c02284{word-spacing:-0.958848pt;}
.ws12_c02284{word-spacing:-0.865920pt;}
.ws1a_c02284{word-spacing:-0.401280pt;}
.ws14_c02284{word-spacing:-0.105600pt;}
.ws18_c02284{word-spacing:-0.088704pt;}
.ws19_c02284{word-spacing:-0.076032pt;}
.ws13_c02284{word-spacing:0.000000pt;}
.ws15_c02284{word-spacing:0.295680pt;}
.ws16_c02284{word-spacing:0.384384pt;}
.ws1d_c02284{word-spacing:0.743424pt;}
.wsb_c02284{word-spacing:26.932224pt;}
.wsc_c02284{word-spacing:29.600256pt;}
.ws9_c02284{word-spacing:32.127744pt;}
.ws10_c02284{word-spacing:32.659968pt;}
.ws1_c02284{word-spacing:33.563904pt;}
.ws0_c02284{word-spacing:33.796224pt;}
.ws4_c02284{word-spacing:34.860672pt;}
.ws5_c02284{word-spacing:35.468928pt;}
.ws8_c02284{word-spacing:37.357056pt;}
._0_c02284{margin-left:-1.731840pt;}
._2_c02284{width:1.317888pt;}
._4_c02284{width:3.256704pt;}
._5_c02284{width:13.073664pt;}
._1_c02284{width:44.668800pt;}
._3_c02284{width:45.805056pt;}
.fs0_c02284{font-size:42.240000pt;}
.fs1_c02284{font-size:53.760000pt;}
.y0_c02284{bottom:0.000000pt;}
.y19_c02284{bottom:130.665211pt;}
.y1b_c02284{bottom:165.866875pt;}
.y1a_c02284{bottom:174.507067pt;}
.y18_c02284{bottom:245.225371pt;}
.y17_c02284{bottom:317.225563pt;}
.y15_c02284{bottom:361.386427pt;}
.y11_c02284{bottom:377.386939pt;}
.y16_c02284{bottom:407.786011pt;}
.y14_c02284{bottom:437.226235pt;}
.y13_c02284{bottom:453.226747pt;}
.y10_c02284{bottom:482.666971pt;}
.y12_c02284{bottom:497.386555pt;}
.yf_c02284{bottom:513.387067pt;}
.y1c_c02284{bottom:546.027067pt;}
.yb_c02284{bottom:593.385179pt;}
.yd_c02284{bottom:628.586875pt;}
.yc_c02284{bottom:637.227067pt;}
.ya_c02284{bottom:707.945339pt;}
.y9_c02284{bottom:779.945531pt;}
.y7_c02284{bottom:823.786427pt;}
.y3_c02284{bottom:839.786939pt;}
.y8_c02284{bottom:870.505979pt;}
.y6_c02284{bottom:899.946203pt;}
.y5_c02284{bottom:915.946715pt;}
.y2_c02284{bottom:945.386939pt;}
.y4_c02284{bottom:959.786555pt;}
.y1_c02284{bottom:975.787067pt;}
.ye_c02284{bottom:1008.747067pt;}
.h3_c02284{height:28.916250pt;}
.h1_c02284{height:37.063125pt;}
.h2_c02284{height:37.166250pt;}
.h5_c02284{height:48.581988pt;}
.h4_c02284{height:66.504405pt;}
.h0_c02284{height:1122.666667pt;}
.w1_c02284{width:793.333333pt;}
.w0_c02284{width:793.626667pt;}
.x0_c02284{left:0.000000pt;}
.xd_c02284{left:104.000000pt;}
.x8_c02284{left:391.999872pt;}
.x4_c02284{left:396.160512pt;}
.xb_c02284{left:400.960000pt;}
.x7_c02284{left:404.799648pt;}
.x5_c02284{left:410.560128pt;}
.x1_c02284{left:411.840000pt;}
.xa_c02284{left:429.760320pt;}
.x9_c02284{left:437.439552pt;}
.x6_c02284{left:438.400512pt;}
.xc_c02284{left:450.560320pt;}
.x3_c02284{left:455.039904pt;}
.x2_c02284{left:468.159648pt;}
}





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

.ir_c02285:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02285{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02285;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02285{font-family:ff1_c02285;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02285;src:url('chunks/assets/font_a795534126513a77c722ee0b.woff2')format("woff");}.ff2_c02285{font-family:ff2_c02285;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02285;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02285{font-family:ff3_c02285;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02285{vertical-align:0.000000px;}
.v1_c02285{vertical-align:1.439424px;}
.lse_c02285{letter-spacing:-1.197504px;}
.lsa_c02285{letter-spacing:-0.574992px;}
.lsb_c02285{letter-spacing:-0.361152px;}
.ls10_c02285{letter-spacing:-0.275616px;}
.ls9_c02285{letter-spacing:-0.261360px;}
.ls6_c02285{letter-spacing:-0.242352px;}
.ls4_c02285{letter-spacing:-0.118800px;}
.ls13_c02285{letter-spacing:0.000000px;}
.ls0_c02285{letter-spacing:0.006048px;}
.ls5_c02285{letter-spacing:0.128304px;}
.ls7_c02285{letter-spacing:0.242352px;}
.lsd_c02285{letter-spacing:0.508464px;}
.ls12_c02285{letter-spacing:0.514080px;}
.lsf_c02285{letter-spacing:0.536976px;}
.lsc_c02285{letter-spacing:0.579744px;}
.ls11_c02285{letter-spacing:0.594000px;}
.ls8_c02285{letter-spacing:0.598752px;}
.ls2_c02285{letter-spacing:0.613008px;}
.ls1_c02285{letter-spacing:0.717552px;}
.ls3_c02285{letter-spacing:0.722304px;}
.sc__c02285{text-shadow:none;}
.sc0_c02285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02285{-webkit-text-stroke:0px transparent;}
.sc0_c02285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02285{word-spacing:-15.126048px;}
.ws9_c02285{word-spacing:-12.474000px;}
.ws7_c02285{word-spacing:-12.459744px;}
.ws8_c02285{word-spacing:-12.416976px;}
.ws2_c02285{word-spacing:-12.122352px;}
.ws12_c02285{word-spacing:-2.159136px;}
.ws13_c02285{word-spacing:-1.078704px;}
.wsc_c02285{word-spacing:-0.974160px;}
.wse_c02285{word-spacing:-0.118800px;}
.wsf_c02285{word-spacing:-0.099792px;}
.ws11_c02285{word-spacing:-0.085536px;}
.wsd_c02285{word-spacing:0.000000px;}
.ws10_c02285{word-spacing:0.836352px;}
.wsa_c02285{word-spacing:33.300288px;}
.ws5_c02285{word-spacing:36.742464px;}
.ws1_c02285{word-spacing:37.759392px;}
.ws0_c02285{word-spacing:38.020752px;}
.ws3_c02285{word-spacing:39.218256px;}
.ws4_c02285{word-spacing:39.902544px;}
.ws6_c02285{word-spacing:42.026688px;}
._0_c02285{margin-left:-1.948320px;}
._2_c02285{width:1.482624px;}
._4_c02285{width:3.402432px;}
._5_c02285{width:14.707872px;}
._1_c02285{width:50.252400px;}
._3_c02285{width:51.530688px;}
.fc0_c02285{color:rgb(0,0,0);}
.fs0_c02285{font-size:47.520000px;}
.fs1_c02285{font-size:60.480000px;}
.y0_c02285{bottom:0.000000px;}
.y19_c02285{bottom:146.998362px;}
.y1b_c02285{bottom:186.600234px;}
.y1a_c02285{bottom:196.320450px;}
.y18_c02285{bottom:275.878542px;}
.y17_c02285{bottom:356.878758px;}
.y15_c02285{bottom:406.559730px;}
.y11_c02285{bottom:424.560306px;}
.y16_c02285{bottom:458.759262px;}
.y14_c02285{bottom:491.879514px;}
.y13_c02285{bottom:509.880090px;}
.y10_c02285{bottom:543.000342px;}
.y12_c02285{bottom:559.559874px;}
.yf_c02285{bottom:577.560450px;}
.y1c_c02285{bottom:614.280450px;}
.yb_c02285{bottom:667.558326px;}
.yd_c02285{bottom:707.160234px;}
.yc_c02285{bottom:716.880450px;}
.ya_c02285{bottom:796.438506px;}
.y9_c02285{bottom:877.438722px;}
.y7_c02285{bottom:926.759730px;}
.y3_c02285{bottom:944.760306px;}
.y8_c02285{bottom:979.319226px;}
.y6_c02285{bottom:1012.439478px;}
.y5_c02285{bottom:1030.440054px;}
.y2_c02285{bottom:1063.560306px;}
.y4_c02285{bottom:1079.759874px;}
.y1_c02285{bottom:1097.760450px;}
.ye_c02285{bottom:1134.840450px;}
.h3_c02285{height:32.530781px;}
.h1_c02285{height:41.696016px;}
.h2_c02285{height:41.812031px;}
.h4_c02285{height:54.654737px;}
.h0_c02285{height:1263.000000px;}
.w1_c02285{width:892.500000px;}
.w0_c02285{width:892.830000px;}
.x0_c02285{left:0.000000px;}
.xd_c02285{left:117.000000px;}
.x8_c02285{left:440.999856px;}
.x4_c02285{left:445.680576px;}
.xb_c02285{left:451.080000px;}
.x7_c02285{left:455.399604px;}
.x5_c02285{left:461.880144px;}
.x1_c02285{left:463.320000px;}
.xa_c02285{left:483.480360px;}
.x9_c02285{left:492.119496px;}
.x6_c02285{left:493.200576px;}
.xc_c02285{left:506.880360px;}
.x3_c02285{left:511.919892px;}
.x2_c02285{left:526.679604px;}
@media print{
.v0_c02285{vertical-align:0.000000pt;}
.v1_c02285{vertical-align:1.279488pt;}
.lse_c02285{letter-spacing:-1.064448pt;}
.lsa_c02285{letter-spacing:-0.511104pt;}
.lsb_c02285{letter-spacing:-0.321024pt;}
.ls10_c02285{letter-spacing:-0.244992pt;}
.ls9_c02285{letter-spacing:-0.232320pt;}
.ls6_c02285{letter-spacing:-0.215424pt;}
.ls4_c02285{letter-spacing:-0.105600pt;}
.ls13_c02285{letter-spacing:0.000000pt;}
.ls0_c02285{letter-spacing:0.005376pt;}
.ls5_c02285{letter-spacing:0.114048pt;}
.ls7_c02285{letter-spacing:0.215424pt;}
.lsd_c02285{letter-spacing:0.451968pt;}
.ls12_c02285{letter-spacing:0.456960pt;}
.lsf_c02285{letter-spacing:0.477312pt;}
.lsc_c02285{letter-spacing:0.515328pt;}
.ls11_c02285{letter-spacing:0.528000pt;}
.ls8_c02285{letter-spacing:0.532224pt;}
.ls2_c02285{letter-spacing:0.544896pt;}
.ls1_c02285{letter-spacing:0.637824pt;}
.ls3_c02285{letter-spacing:0.642048pt;}
.wsb_c02285{word-spacing:-13.445376pt;}
.ws9_c02285{word-spacing:-11.088000pt;}
.ws7_c02285{word-spacing:-11.075328pt;}
.ws8_c02285{word-spacing:-11.037312pt;}
.ws2_c02285{word-spacing:-10.775424pt;}
.ws12_c02285{word-spacing:-1.919232pt;}
.ws13_c02285{word-spacing:-0.958848pt;}
.wsc_c02285{word-spacing:-0.865920pt;}
.wse_c02285{word-spacing:-0.105600pt;}
.wsf_c02285{word-spacing:-0.088704pt;}
.ws11_c02285{word-spacing:-0.076032pt;}
.wsd_c02285{word-spacing:0.000000pt;}
.ws10_c02285{word-spacing:0.743424pt;}
.wsa_c02285{word-spacing:29.600256pt;}
.ws5_c02285{word-spacing:32.659968pt;}
.ws1_c02285{word-spacing:33.563904pt;}
.ws0_c02285{word-spacing:33.796224pt;}
.ws3_c02285{word-spacing:34.860672pt;}
.ws4_c02285{word-spacing:35.468928pt;}
.ws6_c02285{word-spacing:37.357056pt;}
._0_c02285{margin-left:-1.731840pt;}
._2_c02285{width:1.317888pt;}
._4_c02285{width:3.024384pt;}
._5_c02285{width:13.073664pt;}
._1_c02285{width:44.668800pt;}
._3_c02285{width:45.805056pt;}
.fs0_c02285{font-size:42.240000pt;}
.fs1_c02285{font-size:53.760000pt;}
.y0_c02285{bottom:0.000000pt;}
.y19_c02285{bottom:130.665211pt;}
.y1b_c02285{bottom:165.866875pt;}
.y1a_c02285{bottom:174.507067pt;}
.y18_c02285{bottom:245.225371pt;}
.y17_c02285{bottom:317.225563pt;}
.y15_c02285{bottom:361.386427pt;}
.y11_c02285{bottom:377.386939pt;}
.y16_c02285{bottom:407.786011pt;}
.y14_c02285{bottom:437.226235pt;}
.y13_c02285{bottom:453.226747pt;}
.y10_c02285{bottom:482.666971pt;}
.y12_c02285{bottom:497.386555pt;}
.yf_c02285{bottom:513.387067pt;}
.y1c_c02285{bottom:546.027067pt;}
.yb_c02285{bottom:593.385179pt;}
.yd_c02285{bottom:628.586875pt;}
.yc_c02285{bottom:637.227067pt;}
.ya_c02285{bottom:707.945339pt;}
.y9_c02285{bottom:779.945531pt;}
.y7_c02285{bottom:823.786427pt;}
.y3_c02285{bottom:839.786939pt;}
.y8_c02285{bottom:870.505979pt;}
.y6_c02285{bottom:899.946203pt;}
.y5_c02285{bottom:915.946715pt;}
.y2_c02285{bottom:945.386939pt;}
.y4_c02285{bottom:959.786555pt;}
.y1_c02285{bottom:975.787067pt;}
.ye_c02285{bottom:1008.747067pt;}
.h3_c02285{height:28.916250pt;}
.h1_c02285{height:37.063125pt;}
.h2_c02285{height:37.166250pt;}
.h4_c02285{height:48.581988pt;}
.h0_c02285{height:1122.666667pt;}
.w1_c02285{width:793.333333pt;}
.w0_c02285{width:793.626667pt;}
.x0_c02285{left:0.000000pt;}
.xd_c02285{left:104.000000pt;}
.x8_c02285{left:391.999872pt;}
.x4_c02285{left:396.160512pt;}
.xb_c02285{left:400.960000pt;}
.x7_c02285{left:404.799648pt;}
.x5_c02285{left:410.560128pt;}
.x1_c02285{left:411.840000pt;}
.xa_c02285{left:429.760320pt;}
.x9_c02285{left:437.439552pt;}
.x6_c02285{left:438.400512pt;}
.xc_c02285{left:450.560320pt;}
.x3_c02285{left:455.039904pt;}
.x2_c02285{left:468.159648pt;}
}





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

.ir_c02286:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02286{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02286;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02286{font-family:ff1_c02286;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02286;src:url('chunks/assets/font_a77da0283b801279dfb7b808.woff2')format("woff");}.ff2_c02286{font-family:ff2_c02286;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02286;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02286{font-family:ff3_c02286;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02286{vertical-align:0.000000px;}
.v1_c02286{vertical-align:1.439424px;}
.lsf_c02286{letter-spacing:-1.197504px;}
.ls8_c02286{letter-spacing:-0.613008px;}
.lsb_c02286{letter-spacing:-0.574992px;}
.lsc_c02286{letter-spacing:-0.361152px;}
.lsa_c02286{letter-spacing:-0.275616px;}
.ls10_c02286{letter-spacing:-0.261360px;}
.ls7_c02286{letter-spacing:-0.242352px;}
.ls4_c02286{letter-spacing:-0.118800px;}
.ls14_c02286{letter-spacing:0.000000px;}
.ls0_c02286{letter-spacing:0.006048px;}
.ls6_c02286{letter-spacing:0.128304px;}
.ls15_c02286{letter-spacing:0.242352px;}
.lse_c02286{letter-spacing:0.508464px;}
.ls13_c02286{letter-spacing:0.514080px;}
.ls11_c02286{letter-spacing:0.536976px;}
.lsd_c02286{letter-spacing:0.579744px;}
.ls12_c02286{letter-spacing:0.594000px;}
.ls9_c02286{letter-spacing:0.598752px;}
.ls2_c02286{letter-spacing:0.613008px;}
.ls1_c02286{letter-spacing:0.651024px;}
.ls5_c02286{letter-spacing:0.717552px;}
.ls3_c02286{letter-spacing:0.722304px;}
.sc__c02286{text-shadow:none;}
.sc0_c02286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02286{-webkit-text-stroke:0px transparent;}
.sc0_c02286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02286{word-spacing:-15.126048px;}
.ws9_c02286{word-spacing:-12.474000px;}
.ws7_c02286{word-spacing:-12.459744px;}
.ws8_c02286{word-spacing:-12.416976px;}
.wsc_c02286{word-spacing:-12.122352px;}
.ws2_c02286{word-spacing:-11.266992px;}
.ws13_c02286{word-spacing:-2.159136px;}
.ws14_c02286{word-spacing:-1.012176px;}
.wsd_c02286{word-spacing:-0.974160px;}
.wsf_c02286{word-spacing:-0.118800px;}
.ws12_c02286{word-spacing:-0.099792px;}
.ws10_c02286{word-spacing:-0.085536px;}
.wse_c02286{word-spacing:0.000000px;}
.ws11_c02286{word-spacing:0.836352px;}
.wsa_c02286{word-spacing:33.300288px;}
.ws5_c02286{word-spacing:36.742464px;}
.ws1_c02286{word-spacing:37.759392px;}
.ws0_c02286{word-spacing:38.020752px;}
.ws3_c02286{word-spacing:39.218256px;}
.ws4_c02286{word-spacing:39.902544px;}
.ws6_c02286{word-spacing:42.026688px;}
._0_c02286{margin-left:-1.948320px;}
._2_c02286{width:1.482624px;}
._4_c02286{width:3.473712px;}
._5_c02286{width:14.707872px;}
._1_c02286{width:50.252400px;}
._3_c02286{width:51.530688px;}
.fc0_c02286{color:rgb(0,0,0);}
.fs0_c02286{font-size:47.520000px;}
.fs1_c02286{font-size:60.480000px;}
.y0_c02286{bottom:0.000000px;}
.y19_c02286{bottom:146.998362px;}
.y1b_c02286{bottom:186.600234px;}
.y1a_c02286{bottom:196.320450px;}
.y18_c02286{bottom:275.878542px;}
.y17_c02286{bottom:356.878758px;}
.y15_c02286{bottom:406.559730px;}
.y11_c02286{bottom:424.560306px;}
.y16_c02286{bottom:458.759262px;}
.y14_c02286{bottom:491.879514px;}
.y13_c02286{bottom:509.880090px;}
.y10_c02286{bottom:543.000342px;}
.y12_c02286{bottom:559.559874px;}
.yf_c02286{bottom:577.560450px;}
.y1c_c02286{bottom:614.280450px;}
.yb_c02286{bottom:667.558326px;}
.yd_c02286{bottom:707.160234px;}
.yc_c02286{bottom:716.880450px;}
.ya_c02286{bottom:796.438506px;}
.y9_c02286{bottom:877.438722px;}
.y7_c02286{bottom:926.759730px;}
.y3_c02286{bottom:944.760306px;}
.y8_c02286{bottom:979.319226px;}
.y6_c02286{bottom:1012.439478px;}
.y5_c02286{bottom:1030.440054px;}
.y2_c02286{bottom:1063.560306px;}
.y4_c02286{bottom:1079.759874px;}
.y1_c02286{bottom:1097.760450px;}
.ye_c02286{bottom:1134.840450px;}
.h3_c02286{height:32.530781px;}
.h1_c02286{height:41.696016px;}
.h2_c02286{height:41.812031px;}
.h4_c02286{height:54.654737px;}
.h0_c02286{height:1263.000000px;}
.w1_c02286{width:892.500000px;}
.w0_c02286{width:892.830000px;}
.x0_c02286{left:0.000000px;}
.xd_c02286{left:117.000000px;}
.x8_c02286{left:440.999856px;}
.x4_c02286{left:445.680576px;}
.xb_c02286{left:451.080000px;}
.x7_c02286{left:455.399604px;}
.x5_c02286{left:461.880144px;}
.x1_c02286{left:463.320000px;}
.xa_c02286{left:483.480360px;}
.x9_c02286{left:492.119496px;}
.x6_c02286{left:493.200576px;}
.xc_c02286{left:506.880360px;}
.x3_c02286{left:511.919892px;}
.x2_c02286{left:526.679604px;}
@media print{
.v0_c02286{vertical-align:0.000000pt;}
.v1_c02286{vertical-align:1.279488pt;}
.lsf_c02286{letter-spacing:-1.064448pt;}
.ls8_c02286{letter-spacing:-0.544896pt;}
.lsb_c02286{letter-spacing:-0.511104pt;}
.lsc_c02286{letter-spacing:-0.321024pt;}
.lsa_c02286{letter-spacing:-0.244992pt;}
.ls10_c02286{letter-spacing:-0.232320pt;}
.ls7_c02286{letter-spacing:-0.215424pt;}
.ls4_c02286{letter-spacing:-0.105600pt;}
.ls14_c02286{letter-spacing:0.000000pt;}
.ls0_c02286{letter-spacing:0.005376pt;}
.ls6_c02286{letter-spacing:0.114048pt;}
.ls15_c02286{letter-spacing:0.215424pt;}
.lse_c02286{letter-spacing:0.451968pt;}
.ls13_c02286{letter-spacing:0.456960pt;}
.ls11_c02286{letter-spacing:0.477312pt;}
.lsd_c02286{letter-spacing:0.515328pt;}
.ls12_c02286{letter-spacing:0.528000pt;}
.ls9_c02286{letter-spacing:0.532224pt;}
.ls2_c02286{letter-spacing:0.544896pt;}
.ls1_c02286{letter-spacing:0.578688pt;}
.ls5_c02286{letter-spacing:0.637824pt;}
.ls3_c02286{letter-spacing:0.642048pt;}
.wsb_c02286{word-spacing:-13.445376pt;}
.ws9_c02286{word-spacing:-11.088000pt;}
.ws7_c02286{word-spacing:-11.075328pt;}
.ws8_c02286{word-spacing:-11.037312pt;}
.wsc_c02286{word-spacing:-10.775424pt;}
.ws2_c02286{word-spacing:-10.015104pt;}
.ws13_c02286{word-spacing:-1.919232pt;}
.ws14_c02286{word-spacing:-0.899712pt;}
.wsd_c02286{word-spacing:-0.865920pt;}
.wsf_c02286{word-spacing:-0.105600pt;}
.ws12_c02286{word-spacing:-0.088704pt;}
.ws10_c02286{word-spacing:-0.076032pt;}
.wse_c02286{word-spacing:0.000000pt;}
.ws11_c02286{word-spacing:0.743424pt;}
.wsa_c02286{word-spacing:29.600256pt;}
.ws5_c02286{word-spacing:32.659968pt;}
.ws1_c02286{word-spacing:33.563904pt;}
.ws0_c02286{word-spacing:33.796224pt;}
.ws3_c02286{word-spacing:34.860672pt;}
.ws4_c02286{word-spacing:35.468928pt;}
.ws6_c02286{word-spacing:37.357056pt;}
._0_c02286{margin-left:-1.731840pt;}
._2_c02286{width:1.317888pt;}
._4_c02286{width:3.087744pt;}
._5_c02286{width:13.073664pt;}
._1_c02286{width:44.668800pt;}
._3_c02286{width:45.805056pt;}
.fs0_c02286{font-size:42.240000pt;}
.fs1_c02286{font-size:53.760000pt;}
.y0_c02286{bottom:0.000000pt;}
.y19_c02286{bottom:130.665211pt;}
.y1b_c02286{bottom:165.866875pt;}
.y1a_c02286{bottom:174.507067pt;}
.y18_c02286{bottom:245.225371pt;}
.y17_c02286{bottom:317.225563pt;}
.y15_c02286{bottom:361.386427pt;}
.y11_c02286{bottom:377.386939pt;}
.y16_c02286{bottom:407.786011pt;}
.y14_c02286{bottom:437.226235pt;}
.y13_c02286{bottom:453.226747pt;}
.y10_c02286{bottom:482.666971pt;}
.y12_c02286{bottom:497.386555pt;}
.yf_c02286{bottom:513.387067pt;}
.y1c_c02286{bottom:546.027067pt;}
.yb_c02286{bottom:593.385179pt;}
.yd_c02286{bottom:628.586875pt;}
.yc_c02286{bottom:637.227067pt;}
.ya_c02286{bottom:707.945339pt;}
.y9_c02286{bottom:779.945531pt;}
.y7_c02286{bottom:823.786427pt;}
.y3_c02286{bottom:839.786939pt;}
.y8_c02286{bottom:870.505979pt;}
.y6_c02286{bottom:899.946203pt;}
.y5_c02286{bottom:915.946715pt;}
.y2_c02286{bottom:945.386939pt;}
.y4_c02286{bottom:959.786555pt;}
.y1_c02286{bottom:975.787067pt;}
.ye_c02286{bottom:1008.747067pt;}
.h3_c02286{height:28.916250pt;}
.h1_c02286{height:37.063125pt;}
.h2_c02286{height:37.166250pt;}
.h4_c02286{height:48.581988pt;}
.h0_c02286{height:1122.666667pt;}
.w1_c02286{width:793.333333pt;}
.w0_c02286{width:793.626667pt;}
.x0_c02286{left:0.000000pt;}
.xd_c02286{left:104.000000pt;}
.x8_c02286{left:391.999872pt;}
.x4_c02286{left:396.160512pt;}
.xb_c02286{left:400.960000pt;}
.x7_c02286{left:404.799648pt;}
.x5_c02286{left:410.560128pt;}
.x1_c02286{left:411.840000pt;}
.xa_c02286{left:429.760320pt;}
.x9_c02286{left:437.439552pt;}
.x6_c02286{left:438.400512pt;}
.xc_c02286{left:450.560320pt;}
.x3_c02286{left:455.039904pt;}
.x2_c02286{left:468.159648pt;}
}





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

.ir_c02287:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02287{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02287;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02287{font-family:ff1_c02287;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02287;src:url('chunks/assets/font_0c2960ceba276f90f65a74a3.woff2')format("woff");}.ff2_c02287{font-family:ff2_c02287;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02287;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02287{font-family:ff3_c02287;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02287{vertical-align:0.000000px;}
.v1_c02287{vertical-align:1.439424px;}
.lse_c02287{letter-spacing:-1.197504px;}
.lsa_c02287{letter-spacing:-0.574992px;}
.lsb_c02287{letter-spacing:-0.361152px;}
.ls10_c02287{letter-spacing:-0.275616px;}
.ls9_c02287{letter-spacing:-0.261360px;}
.ls6_c02287{letter-spacing:-0.242352px;}
.ls3_c02287{letter-spacing:-0.118800px;}
.ls13_c02287{letter-spacing:0.000000px;}
.ls0_c02287{letter-spacing:0.006048px;}
.ls5_c02287{letter-spacing:0.128304px;}
.ls7_c02287{letter-spacing:0.242352px;}
.lsd_c02287{letter-spacing:0.508464px;}
.ls12_c02287{letter-spacing:0.514080px;}
.lsf_c02287{letter-spacing:0.536976px;}
.lsc_c02287{letter-spacing:0.579744px;}
.ls11_c02287{letter-spacing:0.594000px;}
.ls8_c02287{letter-spacing:0.598752px;}
.ls1_c02287{letter-spacing:0.613008px;}
.ls4_c02287{letter-spacing:0.717552px;}
.ls2_c02287{letter-spacing:0.722304px;}
.sc__c02287{text-shadow:none;}
.sc0_c02287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02287{-webkit-text-stroke:0px transparent;}
.sc0_c02287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02287{word-spacing:-15.126048px;}
.ws9_c02287{word-spacing:-12.474000px;}
.ws7_c02287{word-spacing:-12.459744px;}
.ws8_c02287{word-spacing:-12.416976px;}
.ws2_c02287{word-spacing:-12.122352px;}
.ws12_c02287{word-spacing:-2.159136px;}
.wsc_c02287{word-spacing:-0.974160px;}
.wse_c02287{word-spacing:-0.118800px;}
.wsf_c02287{word-spacing:-0.099792px;}
.ws11_c02287{word-spacing:-0.085536px;}
.wsd_c02287{word-spacing:0.000000px;}
.ws10_c02287{word-spacing:0.836352px;}
.wsa_c02287{word-spacing:33.300288px;}
.ws5_c02287{word-spacing:36.742464px;}
.ws1_c02287{word-spacing:37.759392px;}
.ws0_c02287{word-spacing:38.020752px;}
.ws3_c02287{word-spacing:39.218256px;}
.ws4_c02287{word-spacing:39.902544px;}
.ws6_c02287{word-spacing:42.026688px;}
._0_c02287{margin-left:-1.948320px;}
._2_c02287{width:1.482624px;}
._4_c02287{width:3.402432px;}
._5_c02287{width:14.707872px;}
._1_c02287{width:50.252400px;}
._3_c02287{width:51.530688px;}
.fc0_c02287{color:rgb(0,0,0);}
.fs0_c02287{font-size:47.520000px;}
.fs1_c02287{font-size:60.480000px;}
.y0_c02287{bottom:0.000000px;}
.y19_c02287{bottom:146.998362px;}
.y1b_c02287{bottom:186.600234px;}
.y1a_c02287{bottom:196.320450px;}
.y18_c02287{bottom:275.878542px;}
.y17_c02287{bottom:356.878758px;}
.y15_c02287{bottom:406.559730px;}
.y11_c02287{bottom:424.560306px;}
.y16_c02287{bottom:458.759262px;}
.y14_c02287{bottom:491.879514px;}
.y13_c02287{bottom:509.880090px;}
.y10_c02287{bottom:543.000342px;}
.y12_c02287{bottom:559.559874px;}
.yf_c02287{bottom:577.560450px;}
.y1c_c02287{bottom:614.280450px;}
.yb_c02287{bottom:667.558326px;}
.yd_c02287{bottom:707.160234px;}
.yc_c02287{bottom:716.880450px;}
.ya_c02287{bottom:796.438506px;}
.y9_c02287{bottom:877.438722px;}
.y7_c02287{bottom:926.759730px;}
.y3_c02287{bottom:944.760306px;}
.y8_c02287{bottom:979.319226px;}
.y6_c02287{bottom:1012.439478px;}
.y5_c02287{bottom:1030.440054px;}
.y2_c02287{bottom:1063.560306px;}
.y4_c02287{bottom:1079.759874px;}
.y1_c02287{bottom:1097.760450px;}
.ye_c02287{bottom:1134.840450px;}
.h3_c02287{height:32.530781px;}
.h1_c02287{height:41.696016px;}
.h2_c02287{height:41.812031px;}
.h4_c02287{height:54.654737px;}
.h0_c02287{height:1263.000000px;}
.w1_c02287{width:892.500000px;}
.w0_c02287{width:892.830000px;}
.x0_c02287{left:0.000000px;}
.xd_c02287{left:117.000000px;}
.x8_c02287{left:440.999856px;}
.x4_c02287{left:445.680576px;}
.xb_c02287{left:451.080000px;}
.x7_c02287{left:455.399604px;}
.x5_c02287{left:461.880144px;}
.x1_c02287{left:463.320000px;}
.xa_c02287{left:483.480360px;}
.x9_c02287{left:492.119496px;}
.x6_c02287{left:493.200576px;}
.xc_c02287{left:506.880360px;}
.x3_c02287{left:511.919892px;}
.x2_c02287{left:526.679604px;}
@media print{
.v0_c02287{vertical-align:0.000000pt;}
.v1_c02287{vertical-align:1.279488pt;}
.lse_c02287{letter-spacing:-1.064448pt;}
.lsa_c02287{letter-spacing:-0.511104pt;}
.lsb_c02287{letter-spacing:-0.321024pt;}
.ls10_c02287{letter-spacing:-0.244992pt;}
.ls9_c02287{letter-spacing:-0.232320pt;}
.ls6_c02287{letter-spacing:-0.215424pt;}
.ls3_c02287{letter-spacing:-0.105600pt;}
.ls13_c02287{letter-spacing:0.000000pt;}
.ls0_c02287{letter-spacing:0.005376pt;}
.ls5_c02287{letter-spacing:0.114048pt;}
.ls7_c02287{letter-spacing:0.215424pt;}
.lsd_c02287{letter-spacing:0.451968pt;}
.ls12_c02287{letter-spacing:0.456960pt;}
.lsf_c02287{letter-spacing:0.477312pt;}
.lsc_c02287{letter-spacing:0.515328pt;}
.ls11_c02287{letter-spacing:0.528000pt;}
.ls8_c02287{letter-spacing:0.532224pt;}
.ls1_c02287{letter-spacing:0.544896pt;}
.ls4_c02287{letter-spacing:0.637824pt;}
.ls2_c02287{letter-spacing:0.642048pt;}
.wsb_c02287{word-spacing:-13.445376pt;}
.ws9_c02287{word-spacing:-11.088000pt;}
.ws7_c02287{word-spacing:-11.075328pt;}
.ws8_c02287{word-spacing:-11.037312pt;}
.ws2_c02287{word-spacing:-10.775424pt;}
.ws12_c02287{word-spacing:-1.919232pt;}
.wsc_c02287{word-spacing:-0.865920pt;}
.wse_c02287{word-spacing:-0.105600pt;}
.wsf_c02287{word-spacing:-0.088704pt;}
.ws11_c02287{word-spacing:-0.076032pt;}
.wsd_c02287{word-spacing:0.000000pt;}
.ws10_c02287{word-spacing:0.743424pt;}
.wsa_c02287{word-spacing:29.600256pt;}
.ws5_c02287{word-spacing:32.659968pt;}
.ws1_c02287{word-spacing:33.563904pt;}
.ws0_c02287{word-spacing:33.796224pt;}
.ws3_c02287{word-spacing:34.860672pt;}
.ws4_c02287{word-spacing:35.468928pt;}
.ws6_c02287{word-spacing:37.357056pt;}
._0_c02287{margin-left:-1.731840pt;}
._2_c02287{width:1.317888pt;}
._4_c02287{width:3.024384pt;}
._5_c02287{width:13.073664pt;}
._1_c02287{width:44.668800pt;}
._3_c02287{width:45.805056pt;}
.fs0_c02287{font-size:42.240000pt;}
.fs1_c02287{font-size:53.760000pt;}
.y0_c02287{bottom:0.000000pt;}
.y19_c02287{bottom:130.665211pt;}
.y1b_c02287{bottom:165.866875pt;}
.y1a_c02287{bottom:174.507067pt;}
.y18_c02287{bottom:245.225371pt;}
.y17_c02287{bottom:317.225563pt;}
.y15_c02287{bottom:361.386427pt;}
.y11_c02287{bottom:377.386939pt;}
.y16_c02287{bottom:407.786011pt;}
.y14_c02287{bottom:437.226235pt;}
.y13_c02287{bottom:453.226747pt;}
.y10_c02287{bottom:482.666971pt;}
.y12_c02287{bottom:497.386555pt;}
.yf_c02287{bottom:513.387067pt;}
.y1c_c02287{bottom:546.027067pt;}
.yb_c02287{bottom:593.385179pt;}
.yd_c02287{bottom:628.586875pt;}
.yc_c02287{bottom:637.227067pt;}
.ya_c02287{bottom:707.945339pt;}
.y9_c02287{bottom:779.945531pt;}
.y7_c02287{bottom:823.786427pt;}
.y3_c02287{bottom:839.786939pt;}
.y8_c02287{bottom:870.505979pt;}
.y6_c02287{bottom:899.946203pt;}
.y5_c02287{bottom:915.946715pt;}
.y2_c02287{bottom:945.386939pt;}
.y4_c02287{bottom:959.786555pt;}
.y1_c02287{bottom:975.787067pt;}
.ye_c02287{bottom:1008.747067pt;}
.h3_c02287{height:28.916250pt;}
.h1_c02287{height:37.063125pt;}
.h2_c02287{height:37.166250pt;}
.h4_c02287{height:48.581988pt;}
.h0_c02287{height:1122.666667pt;}
.w1_c02287{width:793.333333pt;}
.w0_c02287{width:793.626667pt;}
.x0_c02287{left:0.000000pt;}
.xd_c02287{left:104.000000pt;}
.x8_c02287{left:391.999872pt;}
.x4_c02287{left:396.160512pt;}
.xb_c02287{left:400.960000pt;}
.x7_c02287{left:404.799648pt;}
.x5_c02287{left:410.560128pt;}
.x1_c02287{left:411.840000pt;}
.xa_c02287{left:429.760320pt;}
.x9_c02287{left:437.439552pt;}
.x6_c02287{left:438.400512pt;}
.xc_c02287{left:450.560320pt;}
.x3_c02287{left:455.039904pt;}
.x2_c02287{left:468.159648pt;}
}





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

.ir_c02288:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02288{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02288;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02288{font-family:ff1_c02288;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02288;src:url('chunks/assets/font_0c2960ceba276f90f65a74a3.woff2')format("woff");}.ff2_c02288{font-family:ff2_c02288;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02288;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02288{font-family:ff3_c02288;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02288{vertical-align:0.000000px;}
.v1_c02288{vertical-align:1.439424px;}
.lse_c02288{letter-spacing:-1.197504px;}
.lsa_c02288{letter-spacing:-0.574992px;}
.lsb_c02288{letter-spacing:-0.361152px;}
.ls10_c02288{letter-spacing:-0.275616px;}
.ls9_c02288{letter-spacing:-0.261360px;}
.ls6_c02288{letter-spacing:-0.242352px;}
.ls3_c02288{letter-spacing:-0.118800px;}
.ls13_c02288{letter-spacing:0.000000px;}
.ls0_c02288{letter-spacing:0.006048px;}
.ls5_c02288{letter-spacing:0.128304px;}
.ls7_c02288{letter-spacing:0.242352px;}
.lsd_c02288{letter-spacing:0.508464px;}
.ls12_c02288{letter-spacing:0.514080px;}
.lsf_c02288{letter-spacing:0.536976px;}
.lsc_c02288{letter-spacing:0.579744px;}
.ls11_c02288{letter-spacing:0.594000px;}
.ls8_c02288{letter-spacing:0.598752px;}
.ls1_c02288{letter-spacing:0.613008px;}
.ls4_c02288{letter-spacing:0.717552px;}
.ls2_c02288{letter-spacing:0.722304px;}
.sc__c02288{text-shadow:none;}
.sc0_c02288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02288{-webkit-text-stroke:0px transparent;}
.sc0_c02288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02288{word-spacing:-15.126048px;}
.ws9_c02288{word-spacing:-12.474000px;}
.ws7_c02288{word-spacing:-12.459744px;}
.ws8_c02288{word-spacing:-12.416976px;}
.ws2_c02288{word-spacing:-12.122352px;}
.ws12_c02288{word-spacing:-2.159136px;}
.wsc_c02288{word-spacing:-0.974160px;}
.wse_c02288{word-spacing:-0.118800px;}
.wsf_c02288{word-spacing:-0.099792px;}
.ws11_c02288{word-spacing:-0.085536px;}
.wsd_c02288{word-spacing:0.000000px;}
.ws10_c02288{word-spacing:0.836352px;}
.wsa_c02288{word-spacing:33.300288px;}
.ws5_c02288{word-spacing:36.742464px;}
.ws1_c02288{word-spacing:37.759392px;}
.ws0_c02288{word-spacing:38.020752px;}
.ws3_c02288{word-spacing:39.218256px;}
.ws4_c02288{word-spacing:39.902544px;}
.ws6_c02288{word-spacing:42.026688px;}
._0_c02288{margin-left:-1.948320px;}
._2_c02288{width:1.482624px;}
._4_c02288{width:3.402432px;}
._5_c02288{width:14.707872px;}
._1_c02288{width:50.252400px;}
._3_c02288{width:51.530688px;}
.fc0_c02288{color:rgb(0,0,0);}
.fs0_c02288{font-size:47.520000px;}
.fs1_c02288{font-size:60.480000px;}
.y0_c02288{bottom:0.000000px;}
.y19_c02288{bottom:146.998362px;}
.y1b_c02288{bottom:186.600234px;}
.y1a_c02288{bottom:196.320450px;}
.y18_c02288{bottom:275.878542px;}
.y17_c02288{bottom:356.878758px;}
.y15_c02288{bottom:406.559730px;}
.y11_c02288{bottom:424.560306px;}
.y16_c02288{bottom:458.759262px;}
.y14_c02288{bottom:491.879514px;}
.y13_c02288{bottom:509.880090px;}
.y10_c02288{bottom:543.000342px;}
.y12_c02288{bottom:559.559874px;}
.yf_c02288{bottom:577.560450px;}
.y1c_c02288{bottom:614.280450px;}
.yb_c02288{bottom:667.558326px;}
.yd_c02288{bottom:707.160234px;}
.yc_c02288{bottom:716.880450px;}
.ya_c02288{bottom:796.438506px;}
.y9_c02288{bottom:877.438722px;}
.y7_c02288{bottom:926.759730px;}
.y3_c02288{bottom:944.760306px;}
.y8_c02288{bottom:979.319226px;}
.y6_c02288{bottom:1012.439478px;}
.y5_c02288{bottom:1030.440054px;}
.y2_c02288{bottom:1063.560306px;}
.y4_c02288{bottom:1079.759874px;}
.y1_c02288{bottom:1097.760450px;}
.ye_c02288{bottom:1134.840450px;}
.h3_c02288{height:32.530781px;}
.h1_c02288{height:41.696016px;}
.h2_c02288{height:41.812031px;}
.h4_c02288{height:54.654737px;}
.h0_c02288{height:1263.000000px;}
.w1_c02288{width:892.500000px;}
.w0_c02288{width:892.830000px;}
.x0_c02288{left:0.000000px;}
.xd_c02288{left:117.000000px;}
.x8_c02288{left:440.999856px;}
.x4_c02288{left:445.680576px;}
.xb_c02288{left:451.080000px;}
.x7_c02288{left:455.399604px;}
.x5_c02288{left:461.880144px;}
.x1_c02288{left:463.320000px;}
.xa_c02288{left:483.480360px;}
.x9_c02288{left:492.119496px;}
.x6_c02288{left:493.200576px;}
.xc_c02288{left:506.880360px;}
.x3_c02288{left:511.919892px;}
.x2_c02288{left:526.679604px;}
@media print{
.v0_c02288{vertical-align:0.000000pt;}
.v1_c02288{vertical-align:1.279488pt;}
.lse_c02288{letter-spacing:-1.064448pt;}
.lsa_c02288{letter-spacing:-0.511104pt;}
.lsb_c02288{letter-spacing:-0.321024pt;}
.ls10_c02288{letter-spacing:-0.244992pt;}
.ls9_c02288{letter-spacing:-0.232320pt;}
.ls6_c02288{letter-spacing:-0.215424pt;}
.ls3_c02288{letter-spacing:-0.105600pt;}
.ls13_c02288{letter-spacing:0.000000pt;}
.ls0_c02288{letter-spacing:0.005376pt;}
.ls5_c02288{letter-spacing:0.114048pt;}
.ls7_c02288{letter-spacing:0.215424pt;}
.lsd_c02288{letter-spacing:0.451968pt;}
.ls12_c02288{letter-spacing:0.456960pt;}
.lsf_c02288{letter-spacing:0.477312pt;}
.lsc_c02288{letter-spacing:0.515328pt;}
.ls11_c02288{letter-spacing:0.528000pt;}
.ls8_c02288{letter-spacing:0.532224pt;}
.ls1_c02288{letter-spacing:0.544896pt;}
.ls4_c02288{letter-spacing:0.637824pt;}
.ls2_c02288{letter-spacing:0.642048pt;}
.wsb_c02288{word-spacing:-13.445376pt;}
.ws9_c02288{word-spacing:-11.088000pt;}
.ws7_c02288{word-spacing:-11.075328pt;}
.ws8_c02288{word-spacing:-11.037312pt;}
.ws2_c02288{word-spacing:-10.775424pt;}
.ws12_c02288{word-spacing:-1.919232pt;}
.wsc_c02288{word-spacing:-0.865920pt;}
.wse_c02288{word-spacing:-0.105600pt;}
.wsf_c02288{word-spacing:-0.088704pt;}
.ws11_c02288{word-spacing:-0.076032pt;}
.wsd_c02288{word-spacing:0.000000pt;}
.ws10_c02288{word-spacing:0.743424pt;}
.wsa_c02288{word-spacing:29.600256pt;}
.ws5_c02288{word-spacing:32.659968pt;}
.ws1_c02288{word-spacing:33.563904pt;}
.ws0_c02288{word-spacing:33.796224pt;}
.ws3_c02288{word-spacing:34.860672pt;}
.ws4_c02288{word-spacing:35.468928pt;}
.ws6_c02288{word-spacing:37.357056pt;}
._0_c02288{margin-left:-1.731840pt;}
._2_c02288{width:1.317888pt;}
._4_c02288{width:3.024384pt;}
._5_c02288{width:13.073664pt;}
._1_c02288{width:44.668800pt;}
._3_c02288{width:45.805056pt;}
.fs0_c02288{font-size:42.240000pt;}
.fs1_c02288{font-size:53.760000pt;}
.y0_c02288{bottom:0.000000pt;}
.y19_c02288{bottom:130.665211pt;}
.y1b_c02288{bottom:165.866875pt;}
.y1a_c02288{bottom:174.507067pt;}
.y18_c02288{bottom:245.225371pt;}
.y17_c02288{bottom:317.225563pt;}
.y15_c02288{bottom:361.386427pt;}
.y11_c02288{bottom:377.386939pt;}
.y16_c02288{bottom:407.786011pt;}
.y14_c02288{bottom:437.226235pt;}
.y13_c02288{bottom:453.226747pt;}
.y10_c02288{bottom:482.666971pt;}
.y12_c02288{bottom:497.386555pt;}
.yf_c02288{bottom:513.387067pt;}
.y1c_c02288{bottom:546.027067pt;}
.yb_c02288{bottom:593.385179pt;}
.yd_c02288{bottom:628.586875pt;}
.yc_c02288{bottom:637.227067pt;}
.ya_c02288{bottom:707.945339pt;}
.y9_c02288{bottom:779.945531pt;}
.y7_c02288{bottom:823.786427pt;}
.y3_c02288{bottom:839.786939pt;}
.y8_c02288{bottom:870.505979pt;}
.y6_c02288{bottom:899.946203pt;}
.y5_c02288{bottom:915.946715pt;}
.y2_c02288{bottom:945.386939pt;}
.y4_c02288{bottom:959.786555pt;}
.y1_c02288{bottom:975.787067pt;}
.ye_c02288{bottom:1008.747067pt;}
.h3_c02288{height:28.916250pt;}
.h1_c02288{height:37.063125pt;}
.h2_c02288{height:37.166250pt;}
.h4_c02288{height:48.581988pt;}
.h0_c02288{height:1122.666667pt;}
.w1_c02288{width:793.333333pt;}
.w0_c02288{width:793.626667pt;}
.x0_c02288{left:0.000000pt;}
.xd_c02288{left:104.000000pt;}
.x8_c02288{left:391.999872pt;}
.x4_c02288{left:396.160512pt;}
.xb_c02288{left:400.960000pt;}
.x7_c02288{left:404.799648pt;}
.x5_c02288{left:410.560128pt;}
.x1_c02288{left:411.840000pt;}
.xa_c02288{left:429.760320pt;}
.x9_c02288{left:437.439552pt;}
.x6_c02288{left:438.400512pt;}
.xc_c02288{left:450.560320pt;}
.x3_c02288{left:455.039904pt;}
.x2_c02288{left:468.159648pt;}
}





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

.ir_c02289:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02289{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02289;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02289{font-family:ff1_c02289;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02289;src:url('chunks/assets/font_0c2960ceba276f90f65a74a3.woff2')format("woff");}.ff2_c02289{font-family:ff2_c02289;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02289;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02289{font-family:ff3_c02289;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02289{vertical-align:0.000000px;}
.v1_c02289{vertical-align:1.439424px;}
.lse_c02289{letter-spacing:-1.197504px;}
.lsa_c02289{letter-spacing:-0.574992px;}
.lsb_c02289{letter-spacing:-0.361152px;}
.ls10_c02289{letter-spacing:-0.275616px;}
.ls9_c02289{letter-spacing:-0.261360px;}
.ls6_c02289{letter-spacing:-0.242352px;}
.ls3_c02289{letter-spacing:-0.118800px;}
.ls13_c02289{letter-spacing:0.000000px;}
.ls0_c02289{letter-spacing:0.006048px;}
.ls5_c02289{letter-spacing:0.128304px;}
.ls7_c02289{letter-spacing:0.242352px;}
.lsd_c02289{letter-spacing:0.508464px;}
.ls12_c02289{letter-spacing:0.514080px;}
.lsf_c02289{letter-spacing:0.536976px;}
.lsc_c02289{letter-spacing:0.579744px;}
.ls11_c02289{letter-spacing:0.594000px;}
.ls8_c02289{letter-spacing:0.598752px;}
.ls1_c02289{letter-spacing:0.613008px;}
.ls4_c02289{letter-spacing:0.717552px;}
.ls2_c02289{letter-spacing:0.722304px;}
.sc__c02289{text-shadow:none;}
.sc0_c02289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02289{-webkit-text-stroke:0px transparent;}
.sc0_c02289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02289{word-spacing:-15.126048px;}
.ws9_c02289{word-spacing:-12.474000px;}
.ws7_c02289{word-spacing:-12.459744px;}
.ws8_c02289{word-spacing:-12.416976px;}
.ws2_c02289{word-spacing:-12.122352px;}
.wsc_c02289{word-spacing:-11.637648px;}
.ws13_c02289{word-spacing:-2.159136px;}
.wsd_c02289{word-spacing:-0.974160px;}
.wsf_c02289{word-spacing:-0.118800px;}
.ws10_c02289{word-spacing:-0.099792px;}
.ws12_c02289{word-spacing:-0.085536px;}
.wse_c02289{word-spacing:0.000000px;}
.ws11_c02289{word-spacing:0.836352px;}
.wsa_c02289{word-spacing:33.300288px;}
.ws5_c02289{word-spacing:36.742464px;}
.ws1_c02289{word-spacing:37.759392px;}
.ws0_c02289{word-spacing:38.020752px;}
.ws3_c02289{word-spacing:39.218256px;}
.ws4_c02289{word-spacing:39.902544px;}
.ws6_c02289{word-spacing:42.026688px;}
._0_c02289{margin-left:-1.948320px;}
._2_c02289{width:1.482624px;}
._4_c02289{width:3.402432px;}
._5_c02289{width:14.707872px;}
._1_c02289{width:50.252400px;}
._3_c02289{width:51.530688px;}
.fc0_c02289{color:rgb(0,0,0);}
.fs0_c02289{font-size:47.520000px;}
.fs1_c02289{font-size:60.480000px;}
.y0_c02289{bottom:0.000000px;}
.y19_c02289{bottom:146.998362px;}
.y1b_c02289{bottom:186.600234px;}
.y1a_c02289{bottom:196.320450px;}
.y18_c02289{bottom:275.878542px;}
.y17_c02289{bottom:356.878758px;}
.y15_c02289{bottom:406.559730px;}
.y11_c02289{bottom:424.560306px;}
.y16_c02289{bottom:458.759262px;}
.y14_c02289{bottom:491.879514px;}
.y13_c02289{bottom:509.880090px;}
.y10_c02289{bottom:543.000342px;}
.y12_c02289{bottom:559.559874px;}
.yf_c02289{bottom:577.560450px;}
.y1c_c02289{bottom:614.280450px;}
.yb_c02289{bottom:667.558326px;}
.yd_c02289{bottom:707.160234px;}
.yc_c02289{bottom:716.880450px;}
.ya_c02289{bottom:796.438506px;}
.y9_c02289{bottom:877.438722px;}
.y7_c02289{bottom:926.759730px;}
.y3_c02289{bottom:944.760306px;}
.y8_c02289{bottom:979.319226px;}
.y6_c02289{bottom:1012.439478px;}
.y5_c02289{bottom:1030.440054px;}
.y2_c02289{bottom:1063.560306px;}
.y4_c02289{bottom:1079.759874px;}
.y1_c02289{bottom:1097.760450px;}
.ye_c02289{bottom:1134.840450px;}
.h3_c02289{height:32.530781px;}
.h1_c02289{height:41.696016px;}
.h2_c02289{height:41.812031px;}
.h4_c02289{height:54.654737px;}
.h0_c02289{height:1263.000000px;}
.w1_c02289{width:892.500000px;}
.w0_c02289{width:892.830000px;}
.x0_c02289{left:0.000000px;}
.xd_c02289{left:117.000000px;}
.x8_c02289{left:440.999856px;}
.x4_c02289{left:445.680576px;}
.xb_c02289{left:451.080000px;}
.x7_c02289{left:455.399604px;}
.x5_c02289{left:461.880144px;}
.x1_c02289{left:463.320000px;}
.xa_c02289{left:483.480360px;}
.x9_c02289{left:492.119496px;}
.x6_c02289{left:493.200576px;}
.xc_c02289{left:506.880360px;}
.x3_c02289{left:511.919892px;}
.x2_c02289{left:526.679604px;}
@media print{
.v0_c02289{vertical-align:0.000000pt;}
.v1_c02289{vertical-align:1.279488pt;}
.lse_c02289{letter-spacing:-1.064448pt;}
.lsa_c02289{letter-spacing:-0.511104pt;}
.lsb_c02289{letter-spacing:-0.321024pt;}
.ls10_c02289{letter-spacing:-0.244992pt;}
.ls9_c02289{letter-spacing:-0.232320pt;}
.ls6_c02289{letter-spacing:-0.215424pt;}
.ls3_c02289{letter-spacing:-0.105600pt;}
.ls13_c02289{letter-spacing:0.000000pt;}
.ls0_c02289{letter-spacing:0.005376pt;}
.ls5_c02289{letter-spacing:0.114048pt;}
.ls7_c02289{letter-spacing:0.215424pt;}
.lsd_c02289{letter-spacing:0.451968pt;}
.ls12_c02289{letter-spacing:0.456960pt;}
.lsf_c02289{letter-spacing:0.477312pt;}
.lsc_c02289{letter-spacing:0.515328pt;}
.ls11_c02289{letter-spacing:0.528000pt;}
.ls8_c02289{letter-spacing:0.532224pt;}
.ls1_c02289{letter-spacing:0.544896pt;}
.ls4_c02289{letter-spacing:0.637824pt;}
.ls2_c02289{letter-spacing:0.642048pt;}
.wsb_c02289{word-spacing:-13.445376pt;}
.ws9_c02289{word-spacing:-11.088000pt;}
.ws7_c02289{word-spacing:-11.075328pt;}
.ws8_c02289{word-spacing:-11.037312pt;}
.ws2_c02289{word-spacing:-10.775424pt;}
.wsc_c02289{word-spacing:-10.344576pt;}
.ws13_c02289{word-spacing:-1.919232pt;}
.wsd_c02289{word-spacing:-0.865920pt;}
.wsf_c02289{word-spacing:-0.105600pt;}
.ws10_c02289{word-spacing:-0.088704pt;}
.ws12_c02289{word-spacing:-0.076032pt;}
.wse_c02289{word-spacing:0.000000pt;}
.ws11_c02289{word-spacing:0.743424pt;}
.wsa_c02289{word-spacing:29.600256pt;}
.ws5_c02289{word-spacing:32.659968pt;}
.ws1_c02289{word-spacing:33.563904pt;}
.ws0_c02289{word-spacing:33.796224pt;}
.ws3_c02289{word-spacing:34.860672pt;}
.ws4_c02289{word-spacing:35.468928pt;}
.ws6_c02289{word-spacing:37.357056pt;}
._0_c02289{margin-left:-1.731840pt;}
._2_c02289{width:1.317888pt;}
._4_c02289{width:3.024384pt;}
._5_c02289{width:13.073664pt;}
._1_c02289{width:44.668800pt;}
._3_c02289{width:45.805056pt;}
.fs0_c02289{font-size:42.240000pt;}
.fs1_c02289{font-size:53.760000pt;}
.y0_c02289{bottom:0.000000pt;}
.y19_c02289{bottom:130.665211pt;}
.y1b_c02289{bottom:165.866875pt;}
.y1a_c02289{bottom:174.507067pt;}
.y18_c02289{bottom:245.225371pt;}
.y17_c02289{bottom:317.225563pt;}
.y15_c02289{bottom:361.386427pt;}
.y11_c02289{bottom:377.386939pt;}
.y16_c02289{bottom:407.786011pt;}
.y14_c02289{bottom:437.226235pt;}
.y13_c02289{bottom:453.226747pt;}
.y10_c02289{bottom:482.666971pt;}
.y12_c02289{bottom:497.386555pt;}
.yf_c02289{bottom:513.387067pt;}
.y1c_c02289{bottom:546.027067pt;}
.yb_c02289{bottom:593.385179pt;}
.yd_c02289{bottom:628.586875pt;}
.yc_c02289{bottom:637.227067pt;}
.ya_c02289{bottom:707.945339pt;}
.y9_c02289{bottom:779.945531pt;}
.y7_c02289{bottom:823.786427pt;}
.y3_c02289{bottom:839.786939pt;}
.y8_c02289{bottom:870.505979pt;}
.y6_c02289{bottom:899.946203pt;}
.y5_c02289{bottom:915.946715pt;}
.y2_c02289{bottom:945.386939pt;}
.y4_c02289{bottom:959.786555pt;}
.y1_c02289{bottom:975.787067pt;}
.ye_c02289{bottom:1008.747067pt;}
.h3_c02289{height:28.916250pt;}
.h1_c02289{height:37.063125pt;}
.h2_c02289{height:37.166250pt;}
.h4_c02289{height:48.581988pt;}
.h0_c02289{height:1122.666667pt;}
.w1_c02289{width:793.333333pt;}
.w0_c02289{width:793.626667pt;}
.x0_c02289{left:0.000000pt;}
.xd_c02289{left:104.000000pt;}
.x8_c02289{left:391.999872pt;}
.x4_c02289{left:396.160512pt;}
.xb_c02289{left:400.960000pt;}
.x7_c02289{left:404.799648pt;}
.x5_c02289{left:410.560128pt;}
.x1_c02289{left:411.840000pt;}
.xa_c02289{left:429.760320pt;}
.x9_c02289{left:437.439552pt;}
.x6_c02289{left:438.400512pt;}
.xc_c02289{left:450.560320pt;}
.x3_c02289{left:455.039904pt;}
.x2_c02289{left:468.159648pt;}
}





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

.ir_c02290:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02290{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02290;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02290{font-family:ff1_c02290;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02290;src:url('chunks/assets/font_1aa6bcffe972b0349171853e.woff2')format("woff");}.ff2_c02290{font-family:ff2_c02290;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02290;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02290{font-family:ff3_c02290;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02290{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02290{vertical-align:0.000000px;}
.v1_c02290{vertical-align:1.439424px;}
.lsd_c02290{letter-spacing:-1.197504px;}
.ls9_c02290{letter-spacing:-0.574992px;}
.lsa_c02290{letter-spacing:-0.361152px;}
.ls10_c02290{letter-spacing:-0.275616px;}
.lse_c02290{letter-spacing:-0.261360px;}
.ls6_c02290{letter-spacing:-0.242352px;}
.ls3_c02290{letter-spacing:-0.118800px;}
.ls13_c02290{letter-spacing:0.000000px;}
.ls0_c02290{letter-spacing:0.006048px;}
.ls5_c02290{letter-spacing:0.128304px;}
.ls7_c02290{letter-spacing:0.242352px;}
.lsc_c02290{letter-spacing:0.508464px;}
.ls12_c02290{letter-spacing:0.514080px;}
.lsf_c02290{letter-spacing:0.536976px;}
.lsb_c02290{letter-spacing:0.579744px;}
.ls11_c02290{letter-spacing:0.594000px;}
.ls8_c02290{letter-spacing:0.598752px;}
.ls1_c02290{letter-spacing:0.613008px;}
.ls4_c02290{letter-spacing:0.717552px;}
.ls2_c02290{letter-spacing:0.722304px;}
.sc__c02290{text-shadow:none;}
.sc0_c02290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02290{-webkit-text-stroke:0px transparent;}
.sc0_c02290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02290{word-spacing:-15.126048px;}
.wsa_c02290{word-spacing:-12.474000px;}
.ws8_c02290{word-spacing:-12.459744px;}
.ws9_c02290{word-spacing:-12.416976px;}
.ws2_c02290{word-spacing:-12.122352px;}
.ws4_c02290{word-spacing:-11.637648px;}
.ws13_c02290{word-spacing:-2.159136px;}
.wsd_c02290{word-spacing:-0.974160px;}
.wsf_c02290{word-spacing:-0.118800px;}
.ws11_c02290{word-spacing:-0.099792px;}
.ws12_c02290{word-spacing:-0.085536px;}
.wse_c02290{word-spacing:0.000000px;}
.ws10_c02290{word-spacing:0.836352px;}
.wsb_c02290{word-spacing:33.300288px;}
.ws6_c02290{word-spacing:36.742464px;}
.ws1_c02290{word-spacing:37.759392px;}
.ws0_c02290{word-spacing:38.020752px;}
.ws3_c02290{word-spacing:39.218256px;}
.ws5_c02290{word-spacing:39.902544px;}
.ws7_c02290{word-spacing:42.026688px;}
._0_c02290{margin-left:-1.948320px;}
._2_c02290{width:1.482624px;}
._4_c02290{width:3.307392px;}
._5_c02290{width:14.707872px;}
._1_c02290{width:50.252400px;}
._3_c02290{width:51.530688px;}
.fc0_c02290{color:rgb(0,0,0);}
.fs0_c02290{font-size:47.520000px;}
.fs1_c02290{font-size:60.480000px;}
.y0_c02290{bottom:0.000000px;}
.y19_c02290{bottom:146.998362px;}
.y1b_c02290{bottom:186.600234px;}
.y1a_c02290{bottom:196.320450px;}
.y18_c02290{bottom:275.878542px;}
.y17_c02290{bottom:356.878758px;}
.y15_c02290{bottom:406.559730px;}
.y11_c02290{bottom:424.560306px;}
.y16_c02290{bottom:458.759262px;}
.y14_c02290{bottom:491.879514px;}
.y13_c02290{bottom:509.880090px;}
.y10_c02290{bottom:543.000342px;}
.y12_c02290{bottom:559.559874px;}
.yf_c02290{bottom:577.560450px;}
.y1c_c02290{bottom:614.280450px;}
.yb_c02290{bottom:667.558326px;}
.yd_c02290{bottom:707.160234px;}
.yc_c02290{bottom:716.880450px;}
.ya_c02290{bottom:796.438506px;}
.y9_c02290{bottom:877.438722px;}
.y7_c02290{bottom:926.759730px;}
.y3_c02290{bottom:944.760306px;}
.y8_c02290{bottom:979.319226px;}
.y6_c02290{bottom:1012.439478px;}
.y5_c02290{bottom:1030.440054px;}
.y2_c02290{bottom:1063.560306px;}
.y4_c02290{bottom:1079.759874px;}
.y1_c02290{bottom:1097.760450px;}
.ye_c02290{bottom:1134.840450px;}
.h3_c02290{height:32.530781px;}
.h1_c02290{height:41.696016px;}
.h2_c02290{height:41.812031px;}
.h4_c02290{height:54.654737px;}
.h0_c02290{height:1263.000000px;}
.w1_c02290{width:892.500000px;}
.w0_c02290{width:892.830000px;}
.x0_c02290{left:0.000000px;}
.xd_c02290{left:117.000000px;}
.x8_c02290{left:440.999856px;}
.x4_c02290{left:445.680576px;}
.xb_c02290{left:451.080000px;}
.x7_c02290{left:455.399604px;}
.x5_c02290{left:461.880144px;}
.x1_c02290{left:463.320000px;}
.xa_c02290{left:483.480360px;}
.x9_c02290{left:492.119496px;}
.x6_c02290{left:493.200576px;}
.xc_c02290{left:506.880360px;}
.x3_c02290{left:511.919892px;}
.x2_c02290{left:526.679604px;}
@media print{
.v0_c02290{vertical-align:0.000000pt;}
.v1_c02290{vertical-align:1.279488pt;}
.lsd_c02290{letter-spacing:-1.064448pt;}
.ls9_c02290{letter-spacing:-0.511104pt;}
.lsa_c02290{letter-spacing:-0.321024pt;}
.ls10_c02290{letter-spacing:-0.244992pt;}
.lse_c02290{letter-spacing:-0.232320pt;}
.ls6_c02290{letter-spacing:-0.215424pt;}
.ls3_c02290{letter-spacing:-0.105600pt;}
.ls13_c02290{letter-spacing:0.000000pt;}
.ls0_c02290{letter-spacing:0.005376pt;}
.ls5_c02290{letter-spacing:0.114048pt;}
.ls7_c02290{letter-spacing:0.215424pt;}
.lsc_c02290{letter-spacing:0.451968pt;}
.ls12_c02290{letter-spacing:0.456960pt;}
.lsf_c02290{letter-spacing:0.477312pt;}
.lsb_c02290{letter-spacing:0.515328pt;}
.ls11_c02290{letter-spacing:0.528000pt;}
.ls8_c02290{letter-spacing:0.532224pt;}
.ls1_c02290{letter-spacing:0.544896pt;}
.ls4_c02290{letter-spacing:0.637824pt;}
.ls2_c02290{letter-spacing:0.642048pt;}
.wsc_c02290{word-spacing:-13.445376pt;}
.wsa_c02290{word-spacing:-11.088000pt;}
.ws8_c02290{word-spacing:-11.075328pt;}
.ws9_c02290{word-spacing:-11.037312pt;}
.ws2_c02290{word-spacing:-10.775424pt;}
.ws4_c02290{word-spacing:-10.344576pt;}
.ws13_c02290{word-spacing:-1.919232pt;}
.wsd_c02290{word-spacing:-0.865920pt;}
.wsf_c02290{word-spacing:-0.105600pt;}
.ws11_c02290{word-spacing:-0.088704pt;}
.ws12_c02290{word-spacing:-0.076032pt;}
.wse_c02290{word-spacing:0.000000pt;}
.ws10_c02290{word-spacing:0.743424pt;}
.wsb_c02290{word-spacing:29.600256pt;}
.ws6_c02290{word-spacing:32.659968pt;}
.ws1_c02290{word-spacing:33.563904pt;}
.ws0_c02290{word-spacing:33.796224pt;}
.ws3_c02290{word-spacing:34.860672pt;}
.ws5_c02290{word-spacing:35.468928pt;}
.ws7_c02290{word-spacing:37.357056pt;}
._0_c02290{margin-left:-1.731840pt;}
._2_c02290{width:1.317888pt;}
._4_c02290{width:2.939904pt;}
._5_c02290{width:13.073664pt;}
._1_c02290{width:44.668800pt;}
._3_c02290{width:45.805056pt;}
.fs0_c02290{font-size:42.240000pt;}
.fs1_c02290{font-size:53.760000pt;}
.y0_c02290{bottom:0.000000pt;}
.y19_c02290{bottom:130.665211pt;}
.y1b_c02290{bottom:165.866875pt;}
.y1a_c02290{bottom:174.507067pt;}
.y18_c02290{bottom:245.225371pt;}
.y17_c02290{bottom:317.225563pt;}
.y15_c02290{bottom:361.386427pt;}
.y11_c02290{bottom:377.386939pt;}
.y16_c02290{bottom:407.786011pt;}
.y14_c02290{bottom:437.226235pt;}
.y13_c02290{bottom:453.226747pt;}
.y10_c02290{bottom:482.666971pt;}
.y12_c02290{bottom:497.386555pt;}
.yf_c02290{bottom:513.387067pt;}
.y1c_c02290{bottom:546.027067pt;}
.yb_c02290{bottom:593.385179pt;}
.yd_c02290{bottom:628.586875pt;}
.yc_c02290{bottom:637.227067pt;}
.ya_c02290{bottom:707.945339pt;}
.y9_c02290{bottom:779.945531pt;}
.y7_c02290{bottom:823.786427pt;}
.y3_c02290{bottom:839.786939pt;}
.y8_c02290{bottom:870.505979pt;}
.y6_c02290{bottom:899.946203pt;}
.y5_c02290{bottom:915.946715pt;}
.y2_c02290{bottom:945.386939pt;}
.y4_c02290{bottom:959.786555pt;}
.y1_c02290{bottom:975.787067pt;}
.ye_c02290{bottom:1008.747067pt;}
.h3_c02290{height:28.916250pt;}
.h1_c02290{height:37.063125pt;}
.h2_c02290{height:37.166250pt;}
.h4_c02290{height:48.581988pt;}
.h0_c02290{height:1122.666667pt;}
.w1_c02290{width:793.333333pt;}
.w0_c02290{width:793.626667pt;}
.x0_c02290{left:0.000000pt;}
.xd_c02290{left:104.000000pt;}
.x8_c02290{left:391.999872pt;}
.x4_c02290{left:396.160512pt;}
.xb_c02290{left:400.960000pt;}
.x7_c02290{left:404.799648pt;}
.x5_c02290{left:410.560128pt;}
.x1_c02290{left:411.840000pt;}
.xa_c02290{left:429.760320pt;}
.x9_c02290{left:437.439552pt;}
.x6_c02290{left:438.400512pt;}
.xc_c02290{left:450.560320pt;}
.x3_c02290{left:455.039904pt;}
.x2_c02290{left:468.159648pt;}
}





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

.ir_c02291:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02291{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02291;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02291{font-family:ff1_c02291;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02291;src:url('chunks/assets/font_2e682d8d83572cfa12799592.woff2')format("woff");}.ff2_c02291{font-family:ff2_c02291;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02291;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02291{font-family:ff3_c02291;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02291{vertical-align:0.000000px;}
.v1_c02291{vertical-align:1.439424px;}
.ls17_c02291{letter-spacing:-1.197504px;}
.lsd_c02291{letter-spacing:-0.793584px;}
.ls11_c02291{letter-spacing:-0.736560px;}
.lsa_c02291{letter-spacing:-0.574992px;}
.ls16_c02291{letter-spacing:-0.361152px;}
.ls18_c02291{letter-spacing:-0.275616px;}
.ls12_c02291{letter-spacing:-0.270864px;}
.lsf_c02291{letter-spacing:-0.261360px;}
.ls7_c02291{letter-spacing:-0.242352px;}
.ls4_c02291{letter-spacing:-0.118800px;}
.ls15_c02291{letter-spacing:0.000000px;}
.ls2_c02291{letter-spacing:0.006048px;}
.ls6_c02291{letter-spacing:0.128304px;}
.ls8_c02291{letter-spacing:0.242352px;}
.lsc_c02291{letter-spacing:0.508464px;}
.ls14_c02291{letter-spacing:0.514080px;}
.ls10_c02291{letter-spacing:0.536976px;}
.lsb_c02291{letter-spacing:0.579744px;}
.ls13_c02291{letter-spacing:0.594000px;}
.ls9_c02291{letter-spacing:0.598752px;}
.ls3_c02291{letter-spacing:0.613008px;}
.ls0_c02291{letter-spacing:0.651024px;}
.lse_c02291{letter-spacing:0.684288px;}
.ls5_c02291{letter-spacing:0.717552px;}
.ls1_c02291{letter-spacing:0.722304px;}
.sc__c02291{text-shadow:none;}
.sc0_c02291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02291{-webkit-text-stroke:0px transparent;}
.sc0_c02291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02291{word-spacing:-15.126048px;}
.wsb_c02291{word-spacing:-12.474000px;}
.ws6_c02291{word-spacing:-12.459744px;}
.wsf_c02291{word-spacing:-12.416976px;}
.ws2_c02291{word-spacing:-12.122352px;}
.ws4_c02291{word-spacing:-11.637648px;}
.ws1a_c02291{word-spacing:-2.159136px;}
.ws14_c02291{word-spacing:-1.083456px;}
.ws16_c02291{word-spacing:-1.045440px;}
.ws12_c02291{word-spacing:-1.012176px;}
.ws10_c02291{word-spacing:-0.974160px;}
.ws13_c02291{word-spacing:-0.118800px;}
.ws17_c02291{word-spacing:-0.099792px;}
.ws18_c02291{word-spacing:-0.090288px;}
.ws19_c02291{word-spacing:-0.085536px;}
.ws11_c02291{word-spacing:0.000000px;}
.ws15_c02291{word-spacing:0.432432px;}
.ws1b_c02291{word-spacing:0.836352px;}
.wsa_c02291{word-spacing:6.629040px;}
.wsc_c02291{word-spacing:33.300288px;}
.ws9_c02291{word-spacing:34.836912px;}
.ws8_c02291{word-spacing:36.143712px;}
.wse_c02291{word-spacing:36.742464px;}
.ws1_c02291{word-spacing:37.759392px;}
.ws0_c02291{word-spacing:38.020752px;}
.ws3_c02291{word-spacing:39.218256px;}
.ws5_c02291{word-spacing:39.902544px;}
.ws7_c02291{word-spacing:42.026688px;}
._0_c02291{margin-left:-1.948320px;}
._2_c02291{width:1.482624px;}
._4_c02291{width:3.307392px;}
._8_c02291{width:14.707872px;}
._6_c02291{width:19.982160px;}
._7_c02291{width:23.451120px;}
._5_c02291{width:24.691392px;}
._1_c02291{width:50.252400px;}
._3_c02291{width:51.530688px;}
.fc0_c02291{color:rgb(0,0,0);}
.fs0_c02291{font-size:47.520000px;}
.fs1_c02291{font-size:60.480000px;}
.y0_c02291{bottom:0.000000px;}
.y1a_c02291{bottom:146.998362px;}
.y1c_c02291{bottom:186.600234px;}
.y1b_c02291{bottom:196.320450px;}
.y19_c02291{bottom:275.878542px;}
.y18_c02291{bottom:356.878758px;}
.y16_c02291{bottom:406.559730px;}
.y12_c02291{bottom:424.560306px;}
.y17_c02291{bottom:458.759262px;}
.y15_c02291{bottom:491.879514px;}
.y14_c02291{bottom:509.880090px;}
.y11_c02291{bottom:543.000342px;}
.y13_c02291{bottom:559.559874px;}
.y10_c02291{bottom:577.560450px;}
.y1d_c02291{bottom:614.280450px;}
.yc_c02291{bottom:652.438650px;}
.yb_c02291{bottom:667.558326px;}
.ye_c02291{bottom:707.160234px;}
.yd_c02291{bottom:716.880450px;}
.ya_c02291{bottom:796.438506px;}
.y9_c02291{bottom:877.438722px;}
.y7_c02291{bottom:926.759730px;}
.y3_c02291{bottom:944.760306px;}
.y8_c02291{bottom:979.319226px;}
.y6_c02291{bottom:1012.439478px;}
.y5_c02291{bottom:1030.440054px;}
.y2_c02291{bottom:1063.560306px;}
.y4_c02291{bottom:1079.759874px;}
.y1_c02291{bottom:1097.760450px;}
.yf_c02291{bottom:1134.840450px;}
.h3_c02291{height:32.530781px;}
.h1_c02291{height:41.696016px;}
.h2_c02291{height:41.812031px;}
.h4_c02291{height:54.654737px;}
.h0_c02291{height:1263.000000px;}
.w1_c02291{width:892.500000px;}
.w0_c02291{width:892.830000px;}
.x0_c02291{left:0.000000px;}
.xe_c02291{left:117.000000px;}
.x8_c02291{left:440.999856px;}
.x4_c02291{left:445.680576px;}
.xc_c02291{left:451.080000px;}
.x7_c02291{left:455.399604px;}
.x5_c02291{left:461.880144px;}
.x1_c02291{left:463.320000px;}
.xa_c02291{left:483.480360px;}
.x9_c02291{left:492.119496px;}
.x6_c02291{left:493.200576px;}
.xd_c02291{left:506.880360px;}
.x3_c02291{left:511.919892px;}
.x2_c02291{left:526.679604px;}
.xb_c02291{left:569.880036px;}
@media print{
.v0_c02291{vertical-align:0.000000pt;}
.v1_c02291{vertical-align:1.279488pt;}
.ls17_c02291{letter-spacing:-1.064448pt;}
.lsd_c02291{letter-spacing:-0.705408pt;}
.ls11_c02291{letter-spacing:-0.654720pt;}
.lsa_c02291{letter-spacing:-0.511104pt;}
.ls16_c02291{letter-spacing:-0.321024pt;}
.ls18_c02291{letter-spacing:-0.244992pt;}
.ls12_c02291{letter-spacing:-0.240768pt;}
.lsf_c02291{letter-spacing:-0.232320pt;}
.ls7_c02291{letter-spacing:-0.215424pt;}
.ls4_c02291{letter-spacing:-0.105600pt;}
.ls15_c02291{letter-spacing:0.000000pt;}
.ls2_c02291{letter-spacing:0.005376pt;}
.ls6_c02291{letter-spacing:0.114048pt;}
.ls8_c02291{letter-spacing:0.215424pt;}
.lsc_c02291{letter-spacing:0.451968pt;}
.ls14_c02291{letter-spacing:0.456960pt;}
.ls10_c02291{letter-spacing:0.477312pt;}
.lsb_c02291{letter-spacing:0.515328pt;}
.ls13_c02291{letter-spacing:0.528000pt;}
.ls9_c02291{letter-spacing:0.532224pt;}
.ls3_c02291{letter-spacing:0.544896pt;}
.ls0_c02291{letter-spacing:0.578688pt;}
.lse_c02291{letter-spacing:0.608256pt;}
.ls5_c02291{letter-spacing:0.637824pt;}
.ls1_c02291{letter-spacing:0.642048pt;}
.wsd_c02291{word-spacing:-13.445376pt;}
.wsb_c02291{word-spacing:-11.088000pt;}
.ws6_c02291{word-spacing:-11.075328pt;}
.wsf_c02291{word-spacing:-11.037312pt;}
.ws2_c02291{word-spacing:-10.775424pt;}
.ws4_c02291{word-spacing:-10.344576pt;}
.ws1a_c02291{word-spacing:-1.919232pt;}
.ws14_c02291{word-spacing:-0.963072pt;}
.ws16_c02291{word-spacing:-0.929280pt;}
.ws12_c02291{word-spacing:-0.899712pt;}
.ws10_c02291{word-spacing:-0.865920pt;}
.ws13_c02291{word-spacing:-0.105600pt;}
.ws17_c02291{word-spacing:-0.088704pt;}
.ws18_c02291{word-spacing:-0.080256pt;}
.ws19_c02291{word-spacing:-0.076032pt;}
.ws11_c02291{word-spacing:0.000000pt;}
.ws15_c02291{word-spacing:0.384384pt;}
.ws1b_c02291{word-spacing:0.743424pt;}
.wsa_c02291{word-spacing:5.892480pt;}
.wsc_c02291{word-spacing:29.600256pt;}
.ws9_c02291{word-spacing:30.966144pt;}
.ws8_c02291{word-spacing:32.127744pt;}
.wse_c02291{word-spacing:32.659968pt;}
.ws1_c02291{word-spacing:33.563904pt;}
.ws0_c02291{word-spacing:33.796224pt;}
.ws3_c02291{word-spacing:34.860672pt;}
.ws5_c02291{word-spacing:35.468928pt;}
.ws7_c02291{word-spacing:37.357056pt;}
._0_c02291{margin-left:-1.731840pt;}
._2_c02291{width:1.317888pt;}
._4_c02291{width:2.939904pt;}
._8_c02291{width:13.073664pt;}
._6_c02291{width:17.761920pt;}
._7_c02291{width:20.845440pt;}
._5_c02291{width:21.947904pt;}
._1_c02291{width:44.668800pt;}
._3_c02291{width:45.805056pt;}
.fs0_c02291{font-size:42.240000pt;}
.fs1_c02291{font-size:53.760000pt;}
.y0_c02291{bottom:0.000000pt;}
.y1a_c02291{bottom:130.665211pt;}
.y1c_c02291{bottom:165.866875pt;}
.y1b_c02291{bottom:174.507067pt;}
.y19_c02291{bottom:245.225371pt;}
.y18_c02291{bottom:317.225563pt;}
.y16_c02291{bottom:361.386427pt;}
.y12_c02291{bottom:377.386939pt;}
.y17_c02291{bottom:407.786011pt;}
.y15_c02291{bottom:437.226235pt;}
.y14_c02291{bottom:453.226747pt;}
.y11_c02291{bottom:482.666971pt;}
.y13_c02291{bottom:497.386555pt;}
.y10_c02291{bottom:513.387067pt;}
.y1d_c02291{bottom:546.027067pt;}
.yc_c02291{bottom:579.945467pt;}
.yb_c02291{bottom:593.385179pt;}
.ye_c02291{bottom:628.586875pt;}
.yd_c02291{bottom:637.227067pt;}
.ya_c02291{bottom:707.945339pt;}
.y9_c02291{bottom:779.945531pt;}
.y7_c02291{bottom:823.786427pt;}
.y3_c02291{bottom:839.786939pt;}
.y8_c02291{bottom:870.505979pt;}
.y6_c02291{bottom:899.946203pt;}
.y5_c02291{bottom:915.946715pt;}
.y2_c02291{bottom:945.386939pt;}
.y4_c02291{bottom:959.786555pt;}
.y1_c02291{bottom:975.787067pt;}
.yf_c02291{bottom:1008.747067pt;}
.h3_c02291{height:28.916250pt;}
.h1_c02291{height:37.063125pt;}
.h2_c02291{height:37.166250pt;}
.h4_c02291{height:48.581988pt;}
.h0_c02291{height:1122.666667pt;}
.w1_c02291{width:793.333333pt;}
.w0_c02291{width:793.626667pt;}
.x0_c02291{left:0.000000pt;}
.xe_c02291{left:104.000000pt;}
.x8_c02291{left:391.999872pt;}
.x4_c02291{left:396.160512pt;}
.xc_c02291{left:400.960000pt;}
.x7_c02291{left:404.799648pt;}
.x5_c02291{left:410.560128pt;}
.x1_c02291{left:411.840000pt;}
.xa_c02291{left:429.760320pt;}
.x9_c02291{left:437.439552pt;}
.x6_c02291{left:438.400512pt;}
.xd_c02291{left:450.560320pt;}
.x3_c02291{left:455.039904pt;}
.x2_c02291{left:468.159648pt;}
.xb_c02291{left:506.560032pt;}
}





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

.ir_c02292:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02292{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02292;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02292{font-family:ff1_c02292;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02292;src:url('chunks/assets/font_2e682d8d83572cfa12799592.woff2')format("woff");}.ff2_c02292{font-family:ff2_c02292;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02292;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02292{font-family:ff3_c02292;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02292{vertical-align:0.000000px;}
.v1_c02292{vertical-align:1.439424px;}
.lse_c02292{letter-spacing:-1.197504px;}
.ls15_c02292{letter-spacing:-0.793584px;}
.ls17_c02292{letter-spacing:-0.736560px;}
.lsa_c02292{letter-spacing:-0.574992px;}
.lsb_c02292{letter-spacing:-0.361152px;}
.ls11_c02292{letter-spacing:-0.275616px;}
.ls18_c02292{letter-spacing:-0.270864px;}
.lsf_c02292{letter-spacing:-0.261360px;}
.ls7_c02292{letter-spacing:-0.242352px;}
.ls4_c02292{letter-spacing:-0.118800px;}
.ls14_c02292{letter-spacing:0.000000px;}
.ls0_c02292{letter-spacing:0.006048px;}
.ls6_c02292{letter-spacing:0.128304px;}
.ls8_c02292{letter-spacing:0.242352px;}
.lsd_c02292{letter-spacing:0.508464px;}
.ls13_c02292{letter-spacing:0.514080px;}
.ls10_c02292{letter-spacing:0.536976px;}
.lsc_c02292{letter-spacing:0.579744px;}
.ls12_c02292{letter-spacing:0.594000px;}
.ls9_c02292{letter-spacing:0.598752px;}
.ls3_c02292{letter-spacing:0.613008px;}
.ls1_c02292{letter-spacing:0.651024px;}
.ls16_c02292{letter-spacing:0.684288px;}
.ls5_c02292{letter-spacing:0.717552px;}
.ls2_c02292{letter-spacing:0.722304px;}
.sc__c02292{text-shadow:none;}
.sc0_c02292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02292{-webkit-text-stroke:0px transparent;}
.sc0_c02292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02292{word-spacing:-15.126048px;}
.wsa_c02292{word-spacing:-12.474000px;}
.ws8_c02292{word-spacing:-12.459744px;}
.ws9_c02292{word-spacing:-12.416976px;}
.ws2_c02292{word-spacing:-12.122352px;}
.ws4_c02292{word-spacing:-11.637648px;}
.ws16_c02292{word-spacing:-2.159136px;}
.ws18_c02292{word-spacing:-1.083456px;}
.ws1a_c02292{word-spacing:-1.045440px;}
.ws17_c02292{word-spacing:-1.012176px;}
.ws10_c02292{word-spacing:-0.974160px;}
.ws12_c02292{word-spacing:-0.118800px;}
.ws14_c02292{word-spacing:-0.099792px;}
.ws1b_c02292{word-spacing:-0.090288px;}
.ws15_c02292{word-spacing:-0.085536px;}
.ws11_c02292{word-spacing:0.000000px;}
.ws19_c02292{word-spacing:0.432432px;}
.ws13_c02292{word-spacing:0.836352px;}
.wsf_c02292{word-spacing:6.629040px;}
.wsb_c02292{word-spacing:33.300288px;}
.wse_c02292{word-spacing:34.836912px;}
.wsd_c02292{word-spacing:36.143712px;}
.ws6_c02292{word-spacing:36.742464px;}
.ws1_c02292{word-spacing:37.759392px;}
.ws0_c02292{word-spacing:38.020752px;}
.ws3_c02292{word-spacing:39.218256px;}
.ws5_c02292{word-spacing:39.902544px;}
.ws7_c02292{word-spacing:42.026688px;}
._0_c02292{margin-left:-1.948320px;}
._2_c02292{width:1.482624px;}
._4_c02292{width:3.307392px;}
._5_c02292{width:14.707872px;}
._7_c02292{width:19.982160px;}
._8_c02292{width:23.451120px;}
._6_c02292{width:24.691392px;}
._1_c02292{width:50.252400px;}
._3_c02292{width:51.530688px;}
.fc0_c02292{color:rgb(0,0,0);}
.fs0_c02292{font-size:47.520000px;}
.fs1_c02292{font-size:60.480000px;}
.y0_c02292{bottom:0.000000px;}
.y1a_c02292{bottom:131.878686px;}
.y19_c02292{bottom:146.998362px;}
.y1c_c02292{bottom:186.600234px;}
.y1b_c02292{bottom:196.320450px;}
.y18_c02292{bottom:275.878542px;}
.y17_c02292{bottom:356.878758px;}
.y15_c02292{bottom:406.559730px;}
.y11_c02292{bottom:424.560306px;}
.y16_c02292{bottom:458.759262px;}
.y14_c02292{bottom:491.879514px;}
.y13_c02292{bottom:509.880090px;}
.y10_c02292{bottom:543.000342px;}
.y12_c02292{bottom:559.559874px;}
.yf_c02292{bottom:577.560450px;}
.y1d_c02292{bottom:614.280450px;}
.yb_c02292{bottom:667.558326px;}
.yd_c02292{bottom:707.160234px;}
.yc_c02292{bottom:716.880450px;}
.ya_c02292{bottom:796.438506px;}
.y9_c02292{bottom:877.438722px;}
.y7_c02292{bottom:926.759730px;}
.y3_c02292{bottom:944.760306px;}
.y8_c02292{bottom:979.319226px;}
.y6_c02292{bottom:1012.439478px;}
.y5_c02292{bottom:1030.440054px;}
.y2_c02292{bottom:1063.560306px;}
.y4_c02292{bottom:1079.759874px;}
.y1_c02292{bottom:1097.760450px;}
.ye_c02292{bottom:1134.840450px;}
.h3_c02292{height:32.530781px;}
.h1_c02292{height:41.696016px;}
.h2_c02292{height:41.812031px;}
.h4_c02292{height:54.654737px;}
.h0_c02292{height:1263.000000px;}
.w1_c02292{width:892.500000px;}
.w0_c02292{width:892.830000px;}
.x0_c02292{left:0.000000px;}
.xd_c02292{left:117.000000px;}
.x8_c02292{left:440.999856px;}
.x4_c02292{left:445.680576px;}
.xb_c02292{left:451.080000px;}
.x7_c02292{left:455.399604px;}
.x5_c02292{left:461.880144px;}
.x1_c02292{left:463.320000px;}
.xa_c02292{left:483.480360px;}
.x9_c02292{left:492.119496px;}
.x6_c02292{left:493.200576px;}
.xc_c02292{left:506.880360px;}
.x3_c02292{left:511.919892px;}
.x2_c02292{left:526.679604px;}
.xe_c02292{left:569.880036px;}
@media print{
.v0_c02292{vertical-align:0.000000pt;}
.v1_c02292{vertical-align:1.279488pt;}
.lse_c02292{letter-spacing:-1.064448pt;}
.ls15_c02292{letter-spacing:-0.705408pt;}
.ls17_c02292{letter-spacing:-0.654720pt;}
.lsa_c02292{letter-spacing:-0.511104pt;}
.lsb_c02292{letter-spacing:-0.321024pt;}
.ls11_c02292{letter-spacing:-0.244992pt;}
.ls18_c02292{letter-spacing:-0.240768pt;}
.lsf_c02292{letter-spacing:-0.232320pt;}
.ls7_c02292{letter-spacing:-0.215424pt;}
.ls4_c02292{letter-spacing:-0.105600pt;}
.ls14_c02292{letter-spacing:0.000000pt;}
.ls0_c02292{letter-spacing:0.005376pt;}
.ls6_c02292{letter-spacing:0.114048pt;}
.ls8_c02292{letter-spacing:0.215424pt;}
.lsd_c02292{letter-spacing:0.451968pt;}
.ls13_c02292{letter-spacing:0.456960pt;}
.ls10_c02292{letter-spacing:0.477312pt;}
.lsc_c02292{letter-spacing:0.515328pt;}
.ls12_c02292{letter-spacing:0.528000pt;}
.ls9_c02292{letter-spacing:0.532224pt;}
.ls3_c02292{letter-spacing:0.544896pt;}
.ls1_c02292{letter-spacing:0.578688pt;}
.ls16_c02292{letter-spacing:0.608256pt;}
.ls5_c02292{letter-spacing:0.637824pt;}
.ls2_c02292{letter-spacing:0.642048pt;}
.wsc_c02292{word-spacing:-13.445376pt;}
.wsa_c02292{word-spacing:-11.088000pt;}
.ws8_c02292{word-spacing:-11.075328pt;}
.ws9_c02292{word-spacing:-11.037312pt;}
.ws2_c02292{word-spacing:-10.775424pt;}
.ws4_c02292{word-spacing:-10.344576pt;}
.ws16_c02292{word-spacing:-1.919232pt;}
.ws18_c02292{word-spacing:-0.963072pt;}
.ws1a_c02292{word-spacing:-0.929280pt;}
.ws17_c02292{word-spacing:-0.899712pt;}
.ws10_c02292{word-spacing:-0.865920pt;}
.ws12_c02292{word-spacing:-0.105600pt;}
.ws14_c02292{word-spacing:-0.088704pt;}
.ws1b_c02292{word-spacing:-0.080256pt;}
.ws15_c02292{word-spacing:-0.076032pt;}
.ws11_c02292{word-spacing:0.000000pt;}
.ws19_c02292{word-spacing:0.384384pt;}
.ws13_c02292{word-spacing:0.743424pt;}
.wsf_c02292{word-spacing:5.892480pt;}
.wsb_c02292{word-spacing:29.600256pt;}
.wse_c02292{word-spacing:30.966144pt;}
.wsd_c02292{word-spacing:32.127744pt;}
.ws6_c02292{word-spacing:32.659968pt;}
.ws1_c02292{word-spacing:33.563904pt;}
.ws0_c02292{word-spacing:33.796224pt;}
.ws3_c02292{word-spacing:34.860672pt;}
.ws5_c02292{word-spacing:35.468928pt;}
.ws7_c02292{word-spacing:37.357056pt;}
._0_c02292{margin-left:-1.731840pt;}
._2_c02292{width:1.317888pt;}
._4_c02292{width:2.939904pt;}
._5_c02292{width:13.073664pt;}
._7_c02292{width:17.761920pt;}
._8_c02292{width:20.845440pt;}
._6_c02292{width:21.947904pt;}
._1_c02292{width:44.668800pt;}
._3_c02292{width:45.805056pt;}
.fs0_c02292{font-size:42.240000pt;}
.fs1_c02292{font-size:53.760000pt;}
.y0_c02292{bottom:0.000000pt;}
.y1a_c02292{bottom:117.225499pt;}
.y19_c02292{bottom:130.665211pt;}
.y1c_c02292{bottom:165.866875pt;}
.y1b_c02292{bottom:174.507067pt;}
.y18_c02292{bottom:245.225371pt;}
.y17_c02292{bottom:317.225563pt;}
.y15_c02292{bottom:361.386427pt;}
.y11_c02292{bottom:377.386939pt;}
.y16_c02292{bottom:407.786011pt;}
.y14_c02292{bottom:437.226235pt;}
.y13_c02292{bottom:453.226747pt;}
.y10_c02292{bottom:482.666971pt;}
.y12_c02292{bottom:497.386555pt;}
.yf_c02292{bottom:513.387067pt;}
.y1d_c02292{bottom:546.027067pt;}
.yb_c02292{bottom:593.385179pt;}
.yd_c02292{bottom:628.586875pt;}
.yc_c02292{bottom:637.227067pt;}
.ya_c02292{bottom:707.945339pt;}
.y9_c02292{bottom:779.945531pt;}
.y7_c02292{bottom:823.786427pt;}
.y3_c02292{bottom:839.786939pt;}
.y8_c02292{bottom:870.505979pt;}
.y6_c02292{bottom:899.946203pt;}
.y5_c02292{bottom:915.946715pt;}
.y2_c02292{bottom:945.386939pt;}
.y4_c02292{bottom:959.786555pt;}
.y1_c02292{bottom:975.787067pt;}
.ye_c02292{bottom:1008.747067pt;}
.h3_c02292{height:28.916250pt;}
.h1_c02292{height:37.063125pt;}
.h2_c02292{height:37.166250pt;}
.h4_c02292{height:48.581988pt;}
.h0_c02292{height:1122.666667pt;}
.w1_c02292{width:793.333333pt;}
.w0_c02292{width:793.626667pt;}
.x0_c02292{left:0.000000pt;}
.xd_c02292{left:104.000000pt;}
.x8_c02292{left:391.999872pt;}
.x4_c02292{left:396.160512pt;}
.xb_c02292{left:400.960000pt;}
.x7_c02292{left:404.799648pt;}
.x5_c02292{left:410.560128pt;}
.x1_c02292{left:411.840000pt;}
.xa_c02292{left:429.760320pt;}
.x9_c02292{left:437.439552pt;}
.x6_c02292{left:438.400512pt;}
.xc_c02292{left:450.560320pt;}
.x3_c02292{left:455.039904pt;}
.x2_c02292{left:468.159648pt;}
.xe_c02292{left:506.560032pt;}
}





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

.ir_c02293:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02293{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02293;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02293{font-family:ff1_c02293;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02293;src:url('chunks/assets/font_1aa6bcffe972b0349171853e.woff2')format("woff");}.ff2_c02293{font-family:ff2_c02293;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02293;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02293{font-family:ff3_c02293;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02293{vertical-align:0.000000px;}
.v1_c02293{vertical-align:1.439424px;}
.lsd_c02293{letter-spacing:-1.197504px;}
.ls9_c02293{letter-spacing:-0.574992px;}
.lsa_c02293{letter-spacing:-0.361152px;}
.ls10_c02293{letter-spacing:-0.275616px;}
.lse_c02293{letter-spacing:-0.261360px;}
.ls6_c02293{letter-spacing:-0.242352px;}
.ls3_c02293{letter-spacing:-0.118800px;}
.ls13_c02293{letter-spacing:0.000000px;}
.ls0_c02293{letter-spacing:0.006048px;}
.ls5_c02293{letter-spacing:0.128304px;}
.ls7_c02293{letter-spacing:0.242352px;}
.lsc_c02293{letter-spacing:0.508464px;}
.ls12_c02293{letter-spacing:0.514080px;}
.lsf_c02293{letter-spacing:0.536976px;}
.lsb_c02293{letter-spacing:0.579744px;}
.ls11_c02293{letter-spacing:0.594000px;}
.ls8_c02293{letter-spacing:0.598752px;}
.ls1_c02293{letter-spacing:0.613008px;}
.ls4_c02293{letter-spacing:0.717552px;}
.ls2_c02293{letter-spacing:0.722304px;}
.sc__c02293{text-shadow:none;}
.sc0_c02293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02293{-webkit-text-stroke:0px transparent;}
.sc0_c02293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02293{word-spacing:-15.126048px;}
.wsa_c02293{word-spacing:-12.474000px;}
.ws8_c02293{word-spacing:-12.459744px;}
.ws9_c02293{word-spacing:-12.416976px;}
.ws2_c02293{word-spacing:-12.122352px;}
.ws4_c02293{word-spacing:-11.637648px;}
.ws13_c02293{word-spacing:-2.159136px;}
.wsd_c02293{word-spacing:-0.974160px;}
.wsf_c02293{word-spacing:-0.118800px;}
.ws11_c02293{word-spacing:-0.099792px;}
.ws12_c02293{word-spacing:-0.085536px;}
.wse_c02293{word-spacing:0.000000px;}
.ws10_c02293{word-spacing:0.836352px;}
.wsb_c02293{word-spacing:33.300288px;}
.ws6_c02293{word-spacing:36.742464px;}
.ws1_c02293{word-spacing:37.759392px;}
.ws0_c02293{word-spacing:38.020752px;}
.ws3_c02293{word-spacing:39.218256px;}
.ws5_c02293{word-spacing:39.902544px;}
.ws7_c02293{word-spacing:42.026688px;}
._0_c02293{margin-left:-1.948320px;}
._2_c02293{width:1.482624px;}
._4_c02293{width:3.307392px;}
._5_c02293{width:14.707872px;}
._1_c02293{width:50.252400px;}
._3_c02293{width:51.530688px;}
.fc0_c02293{color:rgb(0,0,0);}
.fs0_c02293{font-size:47.520000px;}
.fs1_c02293{font-size:60.480000px;}
.y0_c02293{bottom:0.000000px;}
.y19_c02293{bottom:146.998362px;}
.y1b_c02293{bottom:186.600234px;}
.y1a_c02293{bottom:196.320450px;}
.y18_c02293{bottom:275.878542px;}
.y17_c02293{bottom:356.878758px;}
.y15_c02293{bottom:406.559730px;}
.y11_c02293{bottom:424.560306px;}
.y16_c02293{bottom:458.759262px;}
.y14_c02293{bottom:491.879514px;}
.y13_c02293{bottom:509.880090px;}
.y10_c02293{bottom:543.000342px;}
.y12_c02293{bottom:559.559874px;}
.yf_c02293{bottom:577.560450px;}
.y1c_c02293{bottom:614.280450px;}
.yb_c02293{bottom:667.558326px;}
.yd_c02293{bottom:707.160234px;}
.yc_c02293{bottom:716.880450px;}
.ya_c02293{bottom:796.438506px;}
.y9_c02293{bottom:877.438722px;}
.y7_c02293{bottom:926.759730px;}
.y3_c02293{bottom:944.760306px;}
.y8_c02293{bottom:979.319226px;}
.y6_c02293{bottom:1012.439478px;}
.y5_c02293{bottom:1030.440054px;}
.y2_c02293{bottom:1063.560306px;}
.y4_c02293{bottom:1079.759874px;}
.y1_c02293{bottom:1097.760450px;}
.ye_c02293{bottom:1134.840450px;}
.h3_c02293{height:32.530781px;}
.h1_c02293{height:41.696016px;}
.h2_c02293{height:41.812031px;}
.h4_c02293{height:54.654737px;}
.h0_c02293{height:1263.000000px;}
.w1_c02293{width:892.500000px;}
.w0_c02293{width:892.830000px;}
.x0_c02293{left:0.000000px;}
.xd_c02293{left:117.000000px;}
.x8_c02293{left:440.999856px;}
.x4_c02293{left:445.680576px;}
.xb_c02293{left:451.080000px;}
.x7_c02293{left:455.399604px;}
.x5_c02293{left:461.880144px;}
.x1_c02293{left:463.320000px;}
.xa_c02293{left:483.480360px;}
.x9_c02293{left:492.119496px;}
.x6_c02293{left:493.200576px;}
.xc_c02293{left:506.880360px;}
.x3_c02293{left:511.919892px;}
.x2_c02293{left:526.679604px;}
@media print{
.v0_c02293{vertical-align:0.000000pt;}
.v1_c02293{vertical-align:1.279488pt;}
.lsd_c02293{letter-spacing:-1.064448pt;}
.ls9_c02293{letter-spacing:-0.511104pt;}
.lsa_c02293{letter-spacing:-0.321024pt;}
.ls10_c02293{letter-spacing:-0.244992pt;}
.lse_c02293{letter-spacing:-0.232320pt;}
.ls6_c02293{letter-spacing:-0.215424pt;}
.ls3_c02293{letter-spacing:-0.105600pt;}
.ls13_c02293{letter-spacing:0.000000pt;}
.ls0_c02293{letter-spacing:0.005376pt;}
.ls5_c02293{letter-spacing:0.114048pt;}
.ls7_c02293{letter-spacing:0.215424pt;}
.lsc_c02293{letter-spacing:0.451968pt;}
.ls12_c02293{letter-spacing:0.456960pt;}
.lsf_c02293{letter-spacing:0.477312pt;}
.lsb_c02293{letter-spacing:0.515328pt;}
.ls11_c02293{letter-spacing:0.528000pt;}
.ls8_c02293{letter-spacing:0.532224pt;}
.ls1_c02293{letter-spacing:0.544896pt;}
.ls4_c02293{letter-spacing:0.637824pt;}
.ls2_c02293{letter-spacing:0.642048pt;}
.wsc_c02293{word-spacing:-13.445376pt;}
.wsa_c02293{word-spacing:-11.088000pt;}
.ws8_c02293{word-spacing:-11.075328pt;}
.ws9_c02293{word-spacing:-11.037312pt;}
.ws2_c02293{word-spacing:-10.775424pt;}
.ws4_c02293{word-spacing:-10.344576pt;}
.ws13_c02293{word-spacing:-1.919232pt;}
.wsd_c02293{word-spacing:-0.865920pt;}
.wsf_c02293{word-spacing:-0.105600pt;}
.ws11_c02293{word-spacing:-0.088704pt;}
.ws12_c02293{word-spacing:-0.076032pt;}
.wse_c02293{word-spacing:0.000000pt;}
.ws10_c02293{word-spacing:0.743424pt;}
.wsb_c02293{word-spacing:29.600256pt;}
.ws6_c02293{word-spacing:32.659968pt;}
.ws1_c02293{word-spacing:33.563904pt;}
.ws0_c02293{word-spacing:33.796224pt;}
.ws3_c02293{word-spacing:34.860672pt;}
.ws5_c02293{word-spacing:35.468928pt;}
.ws7_c02293{word-spacing:37.357056pt;}
._0_c02293{margin-left:-1.731840pt;}
._2_c02293{width:1.317888pt;}
._4_c02293{width:2.939904pt;}
._5_c02293{width:13.073664pt;}
._1_c02293{width:44.668800pt;}
._3_c02293{width:45.805056pt;}
.fs0_c02293{font-size:42.240000pt;}
.fs1_c02293{font-size:53.760000pt;}
.y0_c02293{bottom:0.000000pt;}
.y19_c02293{bottom:130.665211pt;}
.y1b_c02293{bottom:165.866875pt;}
.y1a_c02293{bottom:174.507067pt;}
.y18_c02293{bottom:245.225371pt;}
.y17_c02293{bottom:317.225563pt;}
.y15_c02293{bottom:361.386427pt;}
.y11_c02293{bottom:377.386939pt;}
.y16_c02293{bottom:407.786011pt;}
.y14_c02293{bottom:437.226235pt;}
.y13_c02293{bottom:453.226747pt;}
.y10_c02293{bottom:482.666971pt;}
.y12_c02293{bottom:497.386555pt;}
.yf_c02293{bottom:513.387067pt;}
.y1c_c02293{bottom:546.027067pt;}
.yb_c02293{bottom:593.385179pt;}
.yd_c02293{bottom:628.586875pt;}
.yc_c02293{bottom:637.227067pt;}
.ya_c02293{bottom:707.945339pt;}
.y9_c02293{bottom:779.945531pt;}
.y7_c02293{bottom:823.786427pt;}
.y3_c02293{bottom:839.786939pt;}
.y8_c02293{bottom:870.505979pt;}
.y6_c02293{bottom:899.946203pt;}
.y5_c02293{bottom:915.946715pt;}
.y2_c02293{bottom:945.386939pt;}
.y4_c02293{bottom:959.786555pt;}
.y1_c02293{bottom:975.787067pt;}
.ye_c02293{bottom:1008.747067pt;}
.h3_c02293{height:28.916250pt;}
.h1_c02293{height:37.063125pt;}
.h2_c02293{height:37.166250pt;}
.h4_c02293{height:48.581988pt;}
.h0_c02293{height:1122.666667pt;}
.w1_c02293{width:793.333333pt;}
.w0_c02293{width:793.626667pt;}
.x0_c02293{left:0.000000pt;}
.xd_c02293{left:104.000000pt;}
.x8_c02293{left:391.999872pt;}
.x4_c02293{left:396.160512pt;}
.xb_c02293{left:400.960000pt;}
.x7_c02293{left:404.799648pt;}
.x5_c02293{left:410.560128pt;}
.x1_c02293{left:411.840000pt;}
.xa_c02293{left:429.760320pt;}
.x9_c02293{left:437.439552pt;}
.x6_c02293{left:438.400512pt;}
.xc_c02293{left:450.560320pt;}
.x3_c02293{left:455.039904pt;}
.x2_c02293{left:468.159648pt;}
}





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

.ir_c02294:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02294{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02294;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02294{font-family:ff1_c02294;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02294;src:url('chunks/assets/font_2ec1e65c42b29ea4c19c3588.woff2')format("woff");}.ff2_c02294{font-family:ff2_c02294;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02294;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02294{font-family:ff3_c02294;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02294{vertical-align:0.000000px;}
.v1_c02294{vertical-align:1.439424px;}
.ls14_c02294{letter-spacing:-0.807840px;}
.ls15_c02294{letter-spacing:-0.736560px;}
.lsa_c02294{letter-spacing:-0.574992px;}
.lsb_c02294{letter-spacing:-0.361152px;}
.ls10_c02294{letter-spacing:-0.275616px;}
.ls16_c02294{letter-spacing:-0.270864px;}
.lse_c02294{letter-spacing:-0.261360px;}
.ls7_c02294{letter-spacing:-0.242352px;}
.ls5_c02294{letter-spacing:-0.118800px;}
.ls13_c02294{letter-spacing:0.000000px;}
.ls1_c02294{letter-spacing:0.006048px;}
.ls6_c02294{letter-spacing:0.128304px;}
.ls8_c02294{letter-spacing:0.242352px;}
.lsd_c02294{letter-spacing:0.508464px;}
.ls12_c02294{letter-spacing:0.514080px;}
.lsf_c02294{letter-spacing:0.536976px;}
.lsc_c02294{letter-spacing:0.579744px;}
.ls11_c02294{letter-spacing:0.594000px;}
.ls9_c02294{letter-spacing:0.598752px;}
.ls3_c02294{letter-spacing:0.613008px;}
.ls0_c02294{letter-spacing:0.651024px;}
.ls2_c02294{letter-spacing:0.717552px;}
.ls4_c02294{letter-spacing:0.722304px;}
.sc__c02294{text-shadow:none;}
.sc0_c02294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02294{-webkit-text-stroke:0px transparent;}
.sc0_c02294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02294{word-spacing:-15.126048px;}
.wsa_c02294{word-spacing:-12.474000px;}
.ws8_c02294{word-spacing:-12.459744px;}
.ws9_c02294{word-spacing:-12.416976px;}
.wse_c02294{word-spacing:-12.388464px;}
.ws2_c02294{word-spacing:-12.122352px;}
.ws4_c02294{word-spacing:-11.637648px;}
.ws17_c02294{word-spacing:-2.159136px;}
.ws19_c02294{word-spacing:-1.078704px;}
.ws13_c02294{word-spacing:-1.012176px;}
.ws11_c02294{word-spacing:-0.974160px;}
.ws14_c02294{word-spacing:-0.118800px;}
.ws15_c02294{word-spacing:-0.099792px;}
.ws1a_c02294{word-spacing:-0.090288px;}
.ws16_c02294{word-spacing:-0.085536px;}
.ws12_c02294{word-spacing:0.000000px;}
.ws18_c02294{word-spacing:0.446688px;}
.wsd_c02294{word-spacing:1.330560px;}
.ws10_c02294{word-spacing:6.629040px;}
.wsb_c02294{word-spacing:33.300288px;}
.wsf_c02294{word-spacing:34.836912px;}
.ws6_c02294{word-spacing:36.742464px;}
.ws1_c02294{word-spacing:37.759392px;}
.ws0_c02294{word-spacing:38.020752px;}
.ws3_c02294{word-spacing:39.218256px;}
.ws5_c02294{word-spacing:39.902544px;}
.ws7_c02294{word-spacing:42.026688px;}
._0_c02294{margin-left:-1.948320px;}
._2_c02294{width:1.482624px;}
._4_c02294{width:3.307392px;}
._5_c02294{width:14.707872px;}
._7_c02294{width:19.982160px;}
._8_c02294{width:23.451120px;}
._6_c02294{width:24.691392px;}
._1_c02294{width:50.252400px;}
._3_c02294{width:51.530688px;}
.fc0_c02294{color:rgb(0,0,0);}
.fs0_c02294{font-size:47.520000px;}
.fs1_c02294{font-size:60.480000px;}
.y0_c02294{bottom:0.000000px;}
.y1a_c02294{bottom:131.878686px;}
.y19_c02294{bottom:146.998362px;}
.y1c_c02294{bottom:186.600234px;}
.y1b_c02294{bottom:196.320450px;}
.y18_c02294{bottom:275.878542px;}
.y17_c02294{bottom:356.878758px;}
.y15_c02294{bottom:406.559730px;}
.y11_c02294{bottom:424.560306px;}
.y16_c02294{bottom:458.759262px;}
.y14_c02294{bottom:491.879514px;}
.y13_c02294{bottom:509.880090px;}
.y10_c02294{bottom:543.000342px;}
.y12_c02294{bottom:559.559874px;}
.yf_c02294{bottom:577.560450px;}
.y1d_c02294{bottom:614.280450px;}
.yb_c02294{bottom:667.558326px;}
.yd_c02294{bottom:707.160234px;}
.yc_c02294{bottom:716.880450px;}
.ya_c02294{bottom:796.438506px;}
.y9_c02294{bottom:877.438722px;}
.y7_c02294{bottom:926.759730px;}
.y3_c02294{bottom:944.760306px;}
.y8_c02294{bottom:979.319226px;}
.y6_c02294{bottom:1012.439478px;}
.y5_c02294{bottom:1030.440054px;}
.y2_c02294{bottom:1063.560306px;}
.y4_c02294{bottom:1079.759874px;}
.y1_c02294{bottom:1097.760450px;}
.ye_c02294{bottom:1134.840450px;}
.h3_c02294{height:32.530781px;}
.h1_c02294{height:41.696016px;}
.h2_c02294{height:41.812031px;}
.h4_c02294{height:54.654737px;}
.h0_c02294{height:1263.000000px;}
.w1_c02294{width:892.500000px;}
.w0_c02294{width:892.830000px;}
.x0_c02294{left:0.000000px;}
.xd_c02294{left:117.000000px;}
.x8_c02294{left:440.999856px;}
.x4_c02294{left:445.680576px;}
.xb_c02294{left:451.080000px;}
.x7_c02294{left:455.399604px;}
.x5_c02294{left:461.880144px;}
.x1_c02294{left:463.320000px;}
.xa_c02294{left:483.480360px;}
.x9_c02294{left:492.119496px;}
.x6_c02294{left:493.200576px;}
.xc_c02294{left:506.880360px;}
.x3_c02294{left:511.919892px;}
.x2_c02294{left:526.679604px;}
.xe_c02294{left:569.880036px;}
@media print{
.v0_c02294{vertical-align:0.000000pt;}
.v1_c02294{vertical-align:1.279488pt;}
.ls14_c02294{letter-spacing:-0.718080pt;}
.ls15_c02294{letter-spacing:-0.654720pt;}
.lsa_c02294{letter-spacing:-0.511104pt;}
.lsb_c02294{letter-spacing:-0.321024pt;}
.ls10_c02294{letter-spacing:-0.244992pt;}
.ls16_c02294{letter-spacing:-0.240768pt;}
.lse_c02294{letter-spacing:-0.232320pt;}
.ls7_c02294{letter-spacing:-0.215424pt;}
.ls5_c02294{letter-spacing:-0.105600pt;}
.ls13_c02294{letter-spacing:0.000000pt;}
.ls1_c02294{letter-spacing:0.005376pt;}
.ls6_c02294{letter-spacing:0.114048pt;}
.ls8_c02294{letter-spacing:0.215424pt;}
.lsd_c02294{letter-spacing:0.451968pt;}
.ls12_c02294{letter-spacing:0.456960pt;}
.lsf_c02294{letter-spacing:0.477312pt;}
.lsc_c02294{letter-spacing:0.515328pt;}
.ls11_c02294{letter-spacing:0.528000pt;}
.ls9_c02294{letter-spacing:0.532224pt;}
.ls3_c02294{letter-spacing:0.544896pt;}
.ls0_c02294{letter-spacing:0.578688pt;}
.ls2_c02294{letter-spacing:0.637824pt;}
.ls4_c02294{letter-spacing:0.642048pt;}
.wsc_c02294{word-spacing:-13.445376pt;}
.wsa_c02294{word-spacing:-11.088000pt;}
.ws8_c02294{word-spacing:-11.075328pt;}
.ws9_c02294{word-spacing:-11.037312pt;}
.wse_c02294{word-spacing:-11.011968pt;}
.ws2_c02294{word-spacing:-10.775424pt;}
.ws4_c02294{word-spacing:-10.344576pt;}
.ws17_c02294{word-spacing:-1.919232pt;}
.ws19_c02294{word-spacing:-0.958848pt;}
.ws13_c02294{word-spacing:-0.899712pt;}
.ws11_c02294{word-spacing:-0.865920pt;}
.ws14_c02294{word-spacing:-0.105600pt;}
.ws15_c02294{word-spacing:-0.088704pt;}
.ws1a_c02294{word-spacing:-0.080256pt;}
.ws16_c02294{word-spacing:-0.076032pt;}
.ws12_c02294{word-spacing:0.000000pt;}
.ws18_c02294{word-spacing:0.397056pt;}
.wsd_c02294{word-spacing:1.182720pt;}
.ws10_c02294{word-spacing:5.892480pt;}
.wsb_c02294{word-spacing:29.600256pt;}
.wsf_c02294{word-spacing:30.966144pt;}
.ws6_c02294{word-spacing:32.659968pt;}
.ws1_c02294{word-spacing:33.563904pt;}
.ws0_c02294{word-spacing:33.796224pt;}
.ws3_c02294{word-spacing:34.860672pt;}
.ws5_c02294{word-spacing:35.468928pt;}
.ws7_c02294{word-spacing:37.357056pt;}
._0_c02294{margin-left:-1.731840pt;}
._2_c02294{width:1.317888pt;}
._4_c02294{width:2.939904pt;}
._5_c02294{width:13.073664pt;}
._7_c02294{width:17.761920pt;}
._8_c02294{width:20.845440pt;}
._6_c02294{width:21.947904pt;}
._1_c02294{width:44.668800pt;}
._3_c02294{width:45.805056pt;}
.fs0_c02294{font-size:42.240000pt;}
.fs1_c02294{font-size:53.760000pt;}
.y0_c02294{bottom:0.000000pt;}
.y1a_c02294{bottom:117.225499pt;}
.y19_c02294{bottom:130.665211pt;}
.y1c_c02294{bottom:165.866875pt;}
.y1b_c02294{bottom:174.507067pt;}
.y18_c02294{bottom:245.225371pt;}
.y17_c02294{bottom:317.225563pt;}
.y15_c02294{bottom:361.386427pt;}
.y11_c02294{bottom:377.386939pt;}
.y16_c02294{bottom:407.786011pt;}
.y14_c02294{bottom:437.226235pt;}
.y13_c02294{bottom:453.226747pt;}
.y10_c02294{bottom:482.666971pt;}
.y12_c02294{bottom:497.386555pt;}
.yf_c02294{bottom:513.387067pt;}
.y1d_c02294{bottom:546.027067pt;}
.yb_c02294{bottom:593.385179pt;}
.yd_c02294{bottom:628.586875pt;}
.yc_c02294{bottom:637.227067pt;}
.ya_c02294{bottom:707.945339pt;}
.y9_c02294{bottom:779.945531pt;}
.y7_c02294{bottom:823.786427pt;}
.y3_c02294{bottom:839.786939pt;}
.y8_c02294{bottom:870.505979pt;}
.y6_c02294{bottom:899.946203pt;}
.y5_c02294{bottom:915.946715pt;}
.y2_c02294{bottom:945.386939pt;}
.y4_c02294{bottom:959.786555pt;}
.y1_c02294{bottom:975.787067pt;}
.ye_c02294{bottom:1008.747067pt;}
.h3_c02294{height:28.916250pt;}
.h1_c02294{height:37.063125pt;}
.h2_c02294{height:37.166250pt;}
.h4_c02294{height:48.581988pt;}
.h0_c02294{height:1122.666667pt;}
.w1_c02294{width:793.333333pt;}
.w0_c02294{width:793.626667pt;}
.x0_c02294{left:0.000000pt;}
.xd_c02294{left:104.000000pt;}
.x8_c02294{left:391.999872pt;}
.x4_c02294{left:396.160512pt;}
.xb_c02294{left:400.960000pt;}
.x7_c02294{left:404.799648pt;}
.x5_c02294{left:410.560128pt;}
.x1_c02294{left:411.840000pt;}
.xa_c02294{left:429.760320pt;}
.x9_c02294{left:437.439552pt;}
.x6_c02294{left:438.400512pt;}
.xc_c02294{left:450.560320pt;}
.x3_c02294{left:455.039904pt;}
.x2_c02294{left:468.159648pt;}
.xe_c02294{left:506.560032pt;}
}





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

.ir_c02295:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02295{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02295;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02295{font-family:ff1_c02295;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02295;src:url('chunks/assets/font_fb4b8d513dd9d324a814f7ff.woff2')format("woff");}.ff2_c02295{font-family:ff2_c02295;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02295;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02295{font-family:ff3_c02295;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02295{vertical-align:0.000000px;}
.v1_c02295{vertical-align:1.439424px;}
.ls8_c02295{letter-spacing:-0.807840px;}
.lsf_c02295{letter-spacing:-0.736560px;}
.ls9_c02295{letter-spacing:-0.574992px;}
.ls10_c02295{letter-spacing:-0.270864px;}
.lsd_c02295{letter-spacing:-0.261360px;}
.ls6_c02295{letter-spacing:-0.242352px;}
.ls4_c02295{letter-spacing:-0.118800px;}
.ls13_c02295{letter-spacing:0.000000px;}
.ls1_c02295{letter-spacing:0.006048px;}
.lsc_c02295{letter-spacing:0.038016px;}
.ls5_c02295{letter-spacing:0.128304px;}
.lsb_c02295{letter-spacing:0.508464px;}
.ls12_c02295{letter-spacing:0.514080px;}
.lse_c02295{letter-spacing:0.536976px;}
.lsa_c02295{letter-spacing:0.579744px;}
.ls11_c02295{letter-spacing:0.594000px;}
.ls7_c02295{letter-spacing:0.598752px;}
.ls2_c02295{letter-spacing:0.613008px;}
.ls0_c02295{letter-spacing:0.717552px;}
.ls3_c02295{letter-spacing:0.722304px;}
.sc__c02295{text-shadow:none;}
.sc0_c02295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02295{-webkit-text-stroke:0px transparent;}
.sc0_c02295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02295{word-spacing:-15.126048px;}
.ws9_c02295{word-spacing:-12.474000px;}
.ws5_c02295{word-spacing:-12.459744px;}
.ws16_c02295{word-spacing:-2.159136px;}
.ws11_c02295{word-spacing:-1.078704px;}
.wsd_c02295{word-spacing:-0.974160px;}
.ws12_c02295{word-spacing:-0.399168px;}
.wsf_c02295{word-spacing:-0.118800px;}
.ws13_c02295{word-spacing:-0.099792px;}
.ws14_c02295{word-spacing:-0.090288px;}
.ws15_c02295{word-spacing:-0.085536px;}
.wse_c02295{word-spacing:0.000000px;}
.ws10_c02295{word-spacing:0.446688px;}
.ws2_c02295{word-spacing:1.330560px;}
.ws8_c02295{word-spacing:6.629040px;}
.wsa_c02295{word-spacing:33.300288px;}
.ws7_c02295{word-spacing:34.836912px;}
.wsc_c02295{word-spacing:36.742464px;}
.ws1_c02295{word-spacing:37.759392px;}
.ws0_c02295{word-spacing:38.020752px;}
.ws3_c02295{word-spacing:39.218256px;}
.ws4_c02295{word-spacing:39.902544px;}
.ws6_c02295{word-spacing:42.026688px;}
._0_c02295{margin-left:-1.948320px;}
._2_c02295{width:1.482624px;}
._7_c02295{width:14.707872px;}
._5_c02295{width:19.982160px;}
._6_c02295{width:23.451120px;}
._4_c02295{width:24.691392px;}
._1_c02295{width:50.252400px;}
._3_c02295{width:51.530688px;}
.fc0_c02295{color:rgb(0,0,0);}
.fs0_c02295{font-size:47.520000px;}
.fs1_c02295{font-size:60.480000px;}
.y0_c02295{bottom:0.000000px;}
.y1b_c02295{bottom:131.878686px;}
.y1a_c02295{bottom:146.998362px;}
.y1d_c02295{bottom:186.600234px;}
.y1c_c02295{bottom:196.320450px;}
.y19_c02295{bottom:275.878542px;}
.y18_c02295{bottom:356.878758px;}
.y16_c02295{bottom:406.559730px;}
.y12_c02295{bottom:424.560306px;}
.y17_c02295{bottom:458.759262px;}
.y15_c02295{bottom:491.879514px;}
.y14_c02295{bottom:509.880090px;}
.y11_c02295{bottom:543.000342px;}
.y13_c02295{bottom:559.559874px;}
.y10_c02295{bottom:577.560450px;}
.y1e_c02295{bottom:614.280450px;}
.yc_c02295{bottom:652.438650px;}
.yb_c02295{bottom:667.558326px;}
.ye_c02295{bottom:707.160234px;}
.yd_c02295{bottom:716.880450px;}
.ya_c02295{bottom:796.438506px;}
.y9_c02295{bottom:877.438722px;}
.y7_c02295{bottom:926.759730px;}
.y3_c02295{bottom:944.760306px;}
.y8_c02295{bottom:979.319226px;}
.y6_c02295{bottom:1012.439478px;}
.y5_c02295{bottom:1030.440054px;}
.y2_c02295{bottom:1063.560306px;}
.y4_c02295{bottom:1079.759874px;}
.y1_c02295{bottom:1097.760450px;}
.yf_c02295{bottom:1134.840450px;}
.h3_c02295{height:32.530781px;}
.h1_c02295{height:41.696016px;}
.h2_c02295{height:41.812031px;}
.h4_c02295{height:54.654737px;}
.h0_c02295{height:1263.000000px;}
.w1_c02295{width:892.500000px;}
.w0_c02295{width:892.830000px;}
.x0_c02295{left:0.000000px;}
.xe_c02295{left:117.000000px;}
.x8_c02295{left:440.999856px;}
.x4_c02295{left:445.680576px;}
.xc_c02295{left:451.080000px;}
.x7_c02295{left:455.399604px;}
.x5_c02295{left:461.880144px;}
.x1_c02295{left:463.320000px;}
.xa_c02295{left:483.480360px;}
.x9_c02295{left:492.119496px;}
.x6_c02295{left:493.200576px;}
.xd_c02295{left:506.880360px;}
.x3_c02295{left:511.919892px;}
.x2_c02295{left:526.679604px;}
.xb_c02295{left:569.880036px;}
@media print{
.v0_c02295{vertical-align:0.000000pt;}
.v1_c02295{vertical-align:1.279488pt;}
.ls8_c02295{letter-spacing:-0.718080pt;}
.lsf_c02295{letter-spacing:-0.654720pt;}
.ls9_c02295{letter-spacing:-0.511104pt;}
.ls10_c02295{letter-spacing:-0.240768pt;}
.lsd_c02295{letter-spacing:-0.232320pt;}
.ls6_c02295{letter-spacing:-0.215424pt;}
.ls4_c02295{letter-spacing:-0.105600pt;}
.ls13_c02295{letter-spacing:0.000000pt;}
.ls1_c02295{letter-spacing:0.005376pt;}
.lsc_c02295{letter-spacing:0.033792pt;}
.ls5_c02295{letter-spacing:0.114048pt;}
.lsb_c02295{letter-spacing:0.451968pt;}
.ls12_c02295{letter-spacing:0.456960pt;}
.lse_c02295{letter-spacing:0.477312pt;}
.lsa_c02295{letter-spacing:0.515328pt;}
.ls11_c02295{letter-spacing:0.528000pt;}
.ls7_c02295{letter-spacing:0.532224pt;}
.ls2_c02295{letter-spacing:0.544896pt;}
.ls0_c02295{letter-spacing:0.637824pt;}
.ls3_c02295{letter-spacing:0.642048pt;}
.wsb_c02295{word-spacing:-13.445376pt;}
.ws9_c02295{word-spacing:-11.088000pt;}
.ws5_c02295{word-spacing:-11.075328pt;}
.ws16_c02295{word-spacing:-1.919232pt;}
.ws11_c02295{word-spacing:-0.958848pt;}
.wsd_c02295{word-spacing:-0.865920pt;}
.ws12_c02295{word-spacing:-0.354816pt;}
.wsf_c02295{word-spacing:-0.105600pt;}
.ws13_c02295{word-spacing:-0.088704pt;}
.ws14_c02295{word-spacing:-0.080256pt;}
.ws15_c02295{word-spacing:-0.076032pt;}
.wse_c02295{word-spacing:0.000000pt;}
.ws10_c02295{word-spacing:0.397056pt;}
.ws2_c02295{word-spacing:1.182720pt;}
.ws8_c02295{word-spacing:5.892480pt;}
.wsa_c02295{word-spacing:29.600256pt;}
.ws7_c02295{word-spacing:30.966144pt;}
.wsc_c02295{word-spacing:32.659968pt;}
.ws1_c02295{word-spacing:33.563904pt;}
.ws0_c02295{word-spacing:33.796224pt;}
.ws3_c02295{word-spacing:34.860672pt;}
.ws4_c02295{word-spacing:35.468928pt;}
.ws6_c02295{word-spacing:37.357056pt;}
._0_c02295{margin-left:-1.731840pt;}
._2_c02295{width:1.317888pt;}
._7_c02295{width:13.073664pt;}
._5_c02295{width:17.761920pt;}
._6_c02295{width:20.845440pt;}
._4_c02295{width:21.947904pt;}
._1_c02295{width:44.668800pt;}
._3_c02295{width:45.805056pt;}
.fs0_c02295{font-size:42.240000pt;}
.fs1_c02295{font-size:53.760000pt;}
.y0_c02295{bottom:0.000000pt;}
.y1b_c02295{bottom:117.225499pt;}
.y1a_c02295{bottom:130.665211pt;}
.y1d_c02295{bottom:165.866875pt;}
.y1c_c02295{bottom:174.507067pt;}
.y19_c02295{bottom:245.225371pt;}
.y18_c02295{bottom:317.225563pt;}
.y16_c02295{bottom:361.386427pt;}
.y12_c02295{bottom:377.386939pt;}
.y17_c02295{bottom:407.786011pt;}
.y15_c02295{bottom:437.226235pt;}
.y14_c02295{bottom:453.226747pt;}
.y11_c02295{bottom:482.666971pt;}
.y13_c02295{bottom:497.386555pt;}
.y10_c02295{bottom:513.387067pt;}
.y1e_c02295{bottom:546.027067pt;}
.yc_c02295{bottom:579.945467pt;}
.yb_c02295{bottom:593.385179pt;}
.ye_c02295{bottom:628.586875pt;}
.yd_c02295{bottom:637.227067pt;}
.ya_c02295{bottom:707.945339pt;}
.y9_c02295{bottom:779.945531pt;}
.y7_c02295{bottom:823.786427pt;}
.y3_c02295{bottom:839.786939pt;}
.y8_c02295{bottom:870.505979pt;}
.y6_c02295{bottom:899.946203pt;}
.y5_c02295{bottom:915.946715pt;}
.y2_c02295{bottom:945.386939pt;}
.y4_c02295{bottom:959.786555pt;}
.y1_c02295{bottom:975.787067pt;}
.yf_c02295{bottom:1008.747067pt;}
.h3_c02295{height:28.916250pt;}
.h1_c02295{height:37.063125pt;}
.h2_c02295{height:37.166250pt;}
.h4_c02295{height:48.581988pt;}
.h0_c02295{height:1122.666667pt;}
.w1_c02295{width:793.333333pt;}
.w0_c02295{width:793.626667pt;}
.x0_c02295{left:0.000000pt;}
.xe_c02295{left:104.000000pt;}
.x8_c02295{left:391.999872pt;}
.x4_c02295{left:396.160512pt;}
.xc_c02295{left:400.960000pt;}
.x7_c02295{left:404.799648pt;}
.x5_c02295{left:410.560128pt;}
.x1_c02295{left:411.840000pt;}
.xa_c02295{left:429.760320pt;}
.x9_c02295{left:437.439552pt;}
.x6_c02295{left:438.400512pt;}
.xd_c02295{left:450.560320pt;}
.x3_c02295{left:455.039904pt;}
.x2_c02295{left:468.159648pt;}
.xb_c02295{left:506.560032pt;}
}





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

.ir_c02296:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02296{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02296;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02296{font-family:ff1_c02296;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02296;src:url('chunks/assets/font_1aa6bcffe972b0349171853e.woff2')format("woff");}.ff2_c02296{font-family:ff2_c02296;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02296;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02296{font-family:ff3_c02296;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02296{vertical-align:0.000000px;}
.v1_c02296{vertical-align:1.439424px;}
.lsc_c02296{letter-spacing:-1.197504px;}
.ls9_c02296{letter-spacing:-0.574992px;}
.ls13_c02296{letter-spacing:-0.361152px;}
.lsf_c02296{letter-spacing:-0.275616px;}
.lsd_c02296{letter-spacing:-0.261360px;}
.ls6_c02296{letter-spacing:-0.242352px;}
.ls4_c02296{letter-spacing:-0.118800px;}
.ls12_c02296{letter-spacing:0.000000px;}
.ls1_c02296{letter-spacing:0.006048px;}
.ls5_c02296{letter-spacing:0.128304px;}
.ls7_c02296{letter-spacing:0.242352px;}
.lsb_c02296{letter-spacing:0.508464px;}
.ls11_c02296{letter-spacing:0.514080px;}
.lse_c02296{letter-spacing:0.536976px;}
.lsa_c02296{letter-spacing:0.579744px;}
.ls10_c02296{letter-spacing:0.594000px;}
.ls8_c02296{letter-spacing:0.598752px;}
.ls2_c02296{letter-spacing:0.613008px;}
.ls0_c02296{letter-spacing:0.717552px;}
.ls3_c02296{letter-spacing:0.722304px;}
.sc__c02296{text-shadow:none;}
.sc0_c02296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02296{-webkit-text-stroke:0px transparent;}
.sc0_c02296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02296{word-spacing:-15.126048px;}
.wsa_c02296{word-spacing:-12.474000px;}
.ws8_c02296{word-spacing:-12.459744px;}
.ws9_c02296{word-spacing:-12.416976px;}
.ws2_c02296{word-spacing:-12.122352px;}
.ws4_c02296{word-spacing:-11.637648px;}
.ws14_c02296{word-spacing:-2.159136px;}
.ws10_c02296{word-spacing:-1.078704px;}
.wsd_c02296{word-spacing:-0.974160px;}
.wsf_c02296{word-spacing:-0.118800px;}
.ws12_c02296{word-spacing:-0.099792px;}
.ws13_c02296{word-spacing:-0.085536px;}
.wse_c02296{word-spacing:0.000000px;}
.ws11_c02296{word-spacing:0.836352px;}
.wsb_c02296{word-spacing:33.300288px;}
.ws6_c02296{word-spacing:36.742464px;}
.ws1_c02296{word-spacing:37.759392px;}
.ws0_c02296{word-spacing:38.020752px;}
.ws3_c02296{word-spacing:39.218256px;}
.ws5_c02296{word-spacing:39.902544px;}
.ws7_c02296{word-spacing:42.026688px;}
._0_c02296{margin-left:-1.948320px;}
._2_c02296{width:1.482624px;}
._4_c02296{width:3.307392px;}
._5_c02296{width:14.707872px;}
._1_c02296{width:50.252400px;}
._3_c02296{width:51.530688px;}
.fc0_c02296{color:rgb(0,0,0);}
.fs0_c02296{font-size:47.520000px;}
.fs1_c02296{font-size:60.480000px;}
.y0_c02296{bottom:0.000000px;}
.y19_c02296{bottom:146.998362px;}
.y1b_c02296{bottom:186.600234px;}
.y1a_c02296{bottom:196.320450px;}
.y18_c02296{bottom:275.878542px;}
.y17_c02296{bottom:356.878758px;}
.y15_c02296{bottom:406.559730px;}
.y11_c02296{bottom:424.560306px;}
.y16_c02296{bottom:458.759262px;}
.y14_c02296{bottom:491.879514px;}
.y13_c02296{bottom:509.880090px;}
.y10_c02296{bottom:543.000342px;}
.y12_c02296{bottom:559.559874px;}
.yf_c02296{bottom:577.560450px;}
.y1c_c02296{bottom:614.280450px;}
.yb_c02296{bottom:667.558326px;}
.yd_c02296{bottom:707.160234px;}
.yc_c02296{bottom:716.880450px;}
.ya_c02296{bottom:796.438506px;}
.y9_c02296{bottom:877.438722px;}
.y7_c02296{bottom:926.759730px;}
.y3_c02296{bottom:944.760306px;}
.y8_c02296{bottom:979.319226px;}
.y6_c02296{bottom:1012.439478px;}
.y5_c02296{bottom:1030.440054px;}
.y2_c02296{bottom:1063.560306px;}
.y4_c02296{bottom:1079.759874px;}
.y1_c02296{bottom:1097.760450px;}
.ye_c02296{bottom:1134.840450px;}
.h3_c02296{height:32.530781px;}
.h1_c02296{height:41.696016px;}
.h2_c02296{height:41.812031px;}
.h4_c02296{height:54.654737px;}
.h0_c02296{height:1263.000000px;}
.w1_c02296{width:892.500000px;}
.w0_c02296{width:892.830000px;}
.x0_c02296{left:0.000000px;}
.xd_c02296{left:117.000000px;}
.x8_c02296{left:440.999856px;}
.x4_c02296{left:445.680576px;}
.xb_c02296{left:451.080000px;}
.x7_c02296{left:455.399604px;}
.x5_c02296{left:461.880144px;}
.x1_c02296{left:463.320000px;}
.xa_c02296{left:483.480360px;}
.x9_c02296{left:492.119496px;}
.x6_c02296{left:493.200576px;}
.xc_c02296{left:506.880360px;}
.x3_c02296{left:511.919892px;}
.x2_c02296{left:526.679604px;}
@media print{
.v0_c02296{vertical-align:0.000000pt;}
.v1_c02296{vertical-align:1.279488pt;}
.lsc_c02296{letter-spacing:-1.064448pt;}
.ls9_c02296{letter-spacing:-0.511104pt;}
.ls13_c02296{letter-spacing:-0.321024pt;}
.lsf_c02296{letter-spacing:-0.244992pt;}
.lsd_c02296{letter-spacing:-0.232320pt;}
.ls6_c02296{letter-spacing:-0.215424pt;}
.ls4_c02296{letter-spacing:-0.105600pt;}
.ls12_c02296{letter-spacing:0.000000pt;}
.ls1_c02296{letter-spacing:0.005376pt;}
.ls5_c02296{letter-spacing:0.114048pt;}
.ls7_c02296{letter-spacing:0.215424pt;}
.lsb_c02296{letter-spacing:0.451968pt;}
.ls11_c02296{letter-spacing:0.456960pt;}
.lse_c02296{letter-spacing:0.477312pt;}
.lsa_c02296{letter-spacing:0.515328pt;}
.ls10_c02296{letter-spacing:0.528000pt;}
.ls8_c02296{letter-spacing:0.532224pt;}
.ls2_c02296{letter-spacing:0.544896pt;}
.ls0_c02296{letter-spacing:0.637824pt;}
.ls3_c02296{letter-spacing:0.642048pt;}
.wsc_c02296{word-spacing:-13.445376pt;}
.wsa_c02296{word-spacing:-11.088000pt;}
.ws8_c02296{word-spacing:-11.075328pt;}
.ws9_c02296{word-spacing:-11.037312pt;}
.ws2_c02296{word-spacing:-10.775424pt;}
.ws4_c02296{word-spacing:-10.344576pt;}
.ws14_c02296{word-spacing:-1.919232pt;}
.ws10_c02296{word-spacing:-0.958848pt;}
.wsd_c02296{word-spacing:-0.865920pt;}
.wsf_c02296{word-spacing:-0.105600pt;}
.ws12_c02296{word-spacing:-0.088704pt;}
.ws13_c02296{word-spacing:-0.076032pt;}
.wse_c02296{word-spacing:0.000000pt;}
.ws11_c02296{word-spacing:0.743424pt;}
.wsb_c02296{word-spacing:29.600256pt;}
.ws6_c02296{word-spacing:32.659968pt;}
.ws1_c02296{word-spacing:33.563904pt;}
.ws0_c02296{word-spacing:33.796224pt;}
.ws3_c02296{word-spacing:34.860672pt;}
.ws5_c02296{word-spacing:35.468928pt;}
.ws7_c02296{word-spacing:37.357056pt;}
._0_c02296{margin-left:-1.731840pt;}
._2_c02296{width:1.317888pt;}
._4_c02296{width:2.939904pt;}
._5_c02296{width:13.073664pt;}
._1_c02296{width:44.668800pt;}
._3_c02296{width:45.805056pt;}
.fs0_c02296{font-size:42.240000pt;}
.fs1_c02296{font-size:53.760000pt;}
.y0_c02296{bottom:0.000000pt;}
.y19_c02296{bottom:130.665211pt;}
.y1b_c02296{bottom:165.866875pt;}
.y1a_c02296{bottom:174.507067pt;}
.y18_c02296{bottom:245.225371pt;}
.y17_c02296{bottom:317.225563pt;}
.y15_c02296{bottom:361.386427pt;}
.y11_c02296{bottom:377.386939pt;}
.y16_c02296{bottom:407.786011pt;}
.y14_c02296{bottom:437.226235pt;}
.y13_c02296{bottom:453.226747pt;}
.y10_c02296{bottom:482.666971pt;}
.y12_c02296{bottom:497.386555pt;}
.yf_c02296{bottom:513.387067pt;}
.y1c_c02296{bottom:546.027067pt;}
.yb_c02296{bottom:593.385179pt;}
.yd_c02296{bottom:628.586875pt;}
.yc_c02296{bottom:637.227067pt;}
.ya_c02296{bottom:707.945339pt;}
.y9_c02296{bottom:779.945531pt;}
.y7_c02296{bottom:823.786427pt;}
.y3_c02296{bottom:839.786939pt;}
.y8_c02296{bottom:870.505979pt;}
.y6_c02296{bottom:899.946203pt;}
.y5_c02296{bottom:915.946715pt;}
.y2_c02296{bottom:945.386939pt;}
.y4_c02296{bottom:959.786555pt;}
.y1_c02296{bottom:975.787067pt;}
.ye_c02296{bottom:1008.747067pt;}
.h3_c02296{height:28.916250pt;}
.h1_c02296{height:37.063125pt;}
.h2_c02296{height:37.166250pt;}
.h4_c02296{height:48.581988pt;}
.h0_c02296{height:1122.666667pt;}
.w1_c02296{width:793.333333pt;}
.w0_c02296{width:793.626667pt;}
.x0_c02296{left:0.000000pt;}
.xd_c02296{left:104.000000pt;}
.x8_c02296{left:391.999872pt;}
.x4_c02296{left:396.160512pt;}
.xb_c02296{left:400.960000pt;}
.x7_c02296{left:404.799648pt;}
.x5_c02296{left:410.560128pt;}
.x1_c02296{left:411.840000pt;}
.xa_c02296{left:429.760320pt;}
.x9_c02296{left:437.439552pt;}
.x6_c02296{left:438.400512pt;}
.xc_c02296{left:450.560320pt;}
.x3_c02296{left:455.039904pt;}
.x2_c02296{left:468.159648pt;}
}





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

.ir_c02297:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02297{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02297;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02297{font-family:ff1_c02297;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02297;src:url('chunks/assets/font_1aa6bcffe972b0349171853e.woff2')format("woff");}.ff2_c02297{font-family:ff2_c02297;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02297;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02297{font-family:ff3_c02297;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02297{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02297{vertical-align:0.000000px;}
.v1_c02297{vertical-align:1.439424px;}
.lsd_c02297{letter-spacing:-1.197504px;}
.ls9_c02297{letter-spacing:-0.574992px;}
.lsa_c02297{letter-spacing:-0.361152px;}
.ls10_c02297{letter-spacing:-0.275616px;}
.lse_c02297{letter-spacing:-0.261360px;}
.ls6_c02297{letter-spacing:-0.242352px;}
.ls3_c02297{letter-spacing:-0.118800px;}
.ls13_c02297{letter-spacing:0.000000px;}
.ls0_c02297{letter-spacing:0.006048px;}
.ls5_c02297{letter-spacing:0.128304px;}
.ls7_c02297{letter-spacing:0.242352px;}
.lsc_c02297{letter-spacing:0.508464px;}
.ls12_c02297{letter-spacing:0.514080px;}
.lsf_c02297{letter-spacing:0.536976px;}
.lsb_c02297{letter-spacing:0.579744px;}
.ls11_c02297{letter-spacing:0.594000px;}
.ls8_c02297{letter-spacing:0.598752px;}
.ls1_c02297{letter-spacing:0.613008px;}
.ls4_c02297{letter-spacing:0.717552px;}
.ls2_c02297{letter-spacing:0.722304px;}
.sc__c02297{text-shadow:none;}
.sc0_c02297{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02297{-webkit-text-stroke:0px transparent;}
.sc0_c02297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02297{word-spacing:-15.126048px;}
.wsa_c02297{word-spacing:-12.474000px;}
.ws8_c02297{word-spacing:-12.459744px;}
.ws9_c02297{word-spacing:-12.416976px;}
.ws2_c02297{word-spacing:-12.122352px;}
.ws4_c02297{word-spacing:-11.637648px;}
.ws13_c02297{word-spacing:-2.159136px;}
.wsd_c02297{word-spacing:-0.974160px;}
.wsf_c02297{word-spacing:-0.118800px;}
.ws11_c02297{word-spacing:-0.099792px;}
.ws12_c02297{word-spacing:-0.085536px;}
.wse_c02297{word-spacing:0.000000px;}
.ws10_c02297{word-spacing:0.836352px;}
.wsb_c02297{word-spacing:33.300288px;}
.ws6_c02297{word-spacing:36.742464px;}
.ws1_c02297{word-spacing:37.759392px;}
.ws0_c02297{word-spacing:38.020752px;}
.ws3_c02297{word-spacing:39.218256px;}
.ws5_c02297{word-spacing:39.902544px;}
.ws7_c02297{word-spacing:42.026688px;}
._0_c02297{margin-left:-1.948320px;}
._2_c02297{width:1.482624px;}
._4_c02297{width:3.307392px;}
._5_c02297{width:14.707872px;}
._1_c02297{width:50.252400px;}
._3_c02297{width:51.530688px;}
.fc0_c02297{color:rgb(0,0,0);}
.fs0_c02297{font-size:47.520000px;}
.fs1_c02297{font-size:60.480000px;}
.y0_c02297{bottom:0.000000px;}
.y19_c02297{bottom:146.998362px;}
.y1b_c02297{bottom:186.600234px;}
.y1a_c02297{bottom:196.320450px;}
.y18_c02297{bottom:275.878542px;}
.y17_c02297{bottom:356.878758px;}
.y15_c02297{bottom:406.559730px;}
.y11_c02297{bottom:424.560306px;}
.y16_c02297{bottom:458.759262px;}
.y14_c02297{bottom:491.879514px;}
.y13_c02297{bottom:509.880090px;}
.y10_c02297{bottom:543.000342px;}
.y12_c02297{bottom:559.559874px;}
.yf_c02297{bottom:577.560450px;}
.y1c_c02297{bottom:614.280450px;}
.yb_c02297{bottom:667.558326px;}
.yd_c02297{bottom:707.160234px;}
.yc_c02297{bottom:716.880450px;}
.ya_c02297{bottom:796.438506px;}
.y9_c02297{bottom:877.438722px;}
.y7_c02297{bottom:926.759730px;}
.y3_c02297{bottom:944.760306px;}
.y8_c02297{bottom:979.319226px;}
.y6_c02297{bottom:1012.439478px;}
.y5_c02297{bottom:1030.440054px;}
.y2_c02297{bottom:1063.560306px;}
.y4_c02297{bottom:1079.759874px;}
.y1_c02297{bottom:1097.760450px;}
.ye_c02297{bottom:1134.840450px;}
.h3_c02297{height:32.530781px;}
.h1_c02297{height:41.696016px;}
.h2_c02297{height:41.812031px;}
.h4_c02297{height:54.654737px;}
.h0_c02297{height:1263.000000px;}
.w1_c02297{width:892.500000px;}
.w0_c02297{width:892.830000px;}
.x0_c02297{left:0.000000px;}
.xd_c02297{left:117.000000px;}
.x8_c02297{left:440.999856px;}
.x4_c02297{left:445.680576px;}
.xb_c02297{left:451.080000px;}
.x7_c02297{left:455.399604px;}
.x5_c02297{left:461.880144px;}
.x1_c02297{left:463.320000px;}
.xa_c02297{left:483.480360px;}
.x9_c02297{left:492.119496px;}
.x6_c02297{left:493.200576px;}
.xc_c02297{left:506.880360px;}
.x3_c02297{left:511.919892px;}
.x2_c02297{left:526.679604px;}
@media print{
.v0_c02297{vertical-align:0.000000pt;}
.v1_c02297{vertical-align:1.279488pt;}
.lsd_c02297{letter-spacing:-1.064448pt;}
.ls9_c02297{letter-spacing:-0.511104pt;}
.lsa_c02297{letter-spacing:-0.321024pt;}
.ls10_c02297{letter-spacing:-0.244992pt;}
.lse_c02297{letter-spacing:-0.232320pt;}
.ls6_c02297{letter-spacing:-0.215424pt;}
.ls3_c02297{letter-spacing:-0.105600pt;}
.ls13_c02297{letter-spacing:0.000000pt;}
.ls0_c02297{letter-spacing:0.005376pt;}
.ls5_c02297{letter-spacing:0.114048pt;}
.ls7_c02297{letter-spacing:0.215424pt;}
.lsc_c02297{letter-spacing:0.451968pt;}
.ls12_c02297{letter-spacing:0.456960pt;}
.lsf_c02297{letter-spacing:0.477312pt;}
.lsb_c02297{letter-spacing:0.515328pt;}
.ls11_c02297{letter-spacing:0.528000pt;}
.ls8_c02297{letter-spacing:0.532224pt;}
.ls1_c02297{letter-spacing:0.544896pt;}
.ls4_c02297{letter-spacing:0.637824pt;}
.ls2_c02297{letter-spacing:0.642048pt;}
.wsc_c02297{word-spacing:-13.445376pt;}
.wsa_c02297{word-spacing:-11.088000pt;}
.ws8_c02297{word-spacing:-11.075328pt;}
.ws9_c02297{word-spacing:-11.037312pt;}
.ws2_c02297{word-spacing:-10.775424pt;}
.ws4_c02297{word-spacing:-10.344576pt;}
.ws13_c02297{word-spacing:-1.919232pt;}
.wsd_c02297{word-spacing:-0.865920pt;}
.wsf_c02297{word-spacing:-0.105600pt;}
.ws11_c02297{word-spacing:-0.088704pt;}
.ws12_c02297{word-spacing:-0.076032pt;}
.wse_c02297{word-spacing:0.000000pt;}
.ws10_c02297{word-spacing:0.743424pt;}
.wsb_c02297{word-spacing:29.600256pt;}
.ws6_c02297{word-spacing:32.659968pt;}
.ws1_c02297{word-spacing:33.563904pt;}
.ws0_c02297{word-spacing:33.796224pt;}
.ws3_c02297{word-spacing:34.860672pt;}
.ws5_c02297{word-spacing:35.468928pt;}
.ws7_c02297{word-spacing:37.357056pt;}
._0_c02297{margin-left:-1.731840pt;}
._2_c02297{width:1.317888pt;}
._4_c02297{width:2.939904pt;}
._5_c02297{width:13.073664pt;}
._1_c02297{width:44.668800pt;}
._3_c02297{width:45.805056pt;}
.fs0_c02297{font-size:42.240000pt;}
.fs1_c02297{font-size:53.760000pt;}
.y0_c02297{bottom:0.000000pt;}
.y19_c02297{bottom:130.665211pt;}
.y1b_c02297{bottom:165.866875pt;}
.y1a_c02297{bottom:174.507067pt;}
.y18_c02297{bottom:245.225371pt;}
.y17_c02297{bottom:317.225563pt;}
.y15_c02297{bottom:361.386427pt;}
.y11_c02297{bottom:377.386939pt;}
.y16_c02297{bottom:407.786011pt;}
.y14_c02297{bottom:437.226235pt;}
.y13_c02297{bottom:453.226747pt;}
.y10_c02297{bottom:482.666971pt;}
.y12_c02297{bottom:497.386555pt;}
.yf_c02297{bottom:513.387067pt;}
.y1c_c02297{bottom:546.027067pt;}
.yb_c02297{bottom:593.385179pt;}
.yd_c02297{bottom:628.586875pt;}
.yc_c02297{bottom:637.227067pt;}
.ya_c02297{bottom:707.945339pt;}
.y9_c02297{bottom:779.945531pt;}
.y7_c02297{bottom:823.786427pt;}
.y3_c02297{bottom:839.786939pt;}
.y8_c02297{bottom:870.505979pt;}
.y6_c02297{bottom:899.946203pt;}
.y5_c02297{bottom:915.946715pt;}
.y2_c02297{bottom:945.386939pt;}
.y4_c02297{bottom:959.786555pt;}
.y1_c02297{bottom:975.787067pt;}
.ye_c02297{bottom:1008.747067pt;}
.h3_c02297{height:28.916250pt;}
.h1_c02297{height:37.063125pt;}
.h2_c02297{height:37.166250pt;}
.h4_c02297{height:48.581988pt;}
.h0_c02297{height:1122.666667pt;}
.w1_c02297{width:793.333333pt;}
.w0_c02297{width:793.626667pt;}
.x0_c02297{left:0.000000pt;}
.xd_c02297{left:104.000000pt;}
.x8_c02297{left:391.999872pt;}
.x4_c02297{left:396.160512pt;}
.xb_c02297{left:400.960000pt;}
.x7_c02297{left:404.799648pt;}
.x5_c02297{left:410.560128pt;}
.x1_c02297{left:411.840000pt;}
.xa_c02297{left:429.760320pt;}
.x9_c02297{left:437.439552pt;}
.x6_c02297{left:438.400512pt;}
.xc_c02297{left:450.560320pt;}
.x3_c02297{left:455.039904pt;}
.x2_c02297{left:468.159648pt;}
}





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

.ir_c02298:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02298{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02298;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02298{font-family:ff1_c02298;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02298;src:url('chunks/assets/font_1aa6bcffe972b0349171853e.woff2')format("woff");}.ff2_c02298{font-family:ff2_c02298;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02298;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02298{font-family:ff3_c02298;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02298{vertical-align:0.000000px;}
.v1_c02298{vertical-align:1.439424px;}
.lsd_c02298{letter-spacing:-1.197504px;}
.ls9_c02298{letter-spacing:-0.574992px;}
.lsa_c02298{letter-spacing:-0.361152px;}
.ls10_c02298{letter-spacing:-0.275616px;}
.lse_c02298{letter-spacing:-0.261360px;}
.ls6_c02298{letter-spacing:-0.242352px;}
.ls3_c02298{letter-spacing:-0.118800px;}
.ls13_c02298{letter-spacing:0.000000px;}
.ls0_c02298{letter-spacing:0.006048px;}
.ls5_c02298{letter-spacing:0.128304px;}
.ls7_c02298{letter-spacing:0.242352px;}
.lsc_c02298{letter-spacing:0.508464px;}
.ls12_c02298{letter-spacing:0.514080px;}
.lsf_c02298{letter-spacing:0.536976px;}
.lsb_c02298{letter-spacing:0.579744px;}
.ls11_c02298{letter-spacing:0.594000px;}
.ls8_c02298{letter-spacing:0.598752px;}
.ls2_c02298{letter-spacing:0.613008px;}
.ls4_c02298{letter-spacing:0.717552px;}
.ls1_c02298{letter-spacing:0.722304px;}
.sc__c02298{text-shadow:none;}
.sc0_c02298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02298{-webkit-text-stroke:0px transparent;}
.sc0_c02298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02298{word-spacing:-15.126048px;}
.wsa_c02298{word-spacing:-12.474000px;}
.ws8_c02298{word-spacing:-12.459744px;}
.ws9_c02298{word-spacing:-12.416976px;}
.ws2_c02298{word-spacing:-12.122352px;}
.ws4_c02298{word-spacing:-11.637648px;}
.ws13_c02298{word-spacing:-2.159136px;}
.ws14_c02298{word-spacing:-1.083456px;}
.wsd_c02298{word-spacing:-0.974160px;}
.wsf_c02298{word-spacing:-0.118800px;}
.ws11_c02298{word-spacing:-0.099792px;}
.ws12_c02298{word-spacing:-0.085536px;}
.wse_c02298{word-spacing:0.000000px;}
.ws10_c02298{word-spacing:0.836352px;}
.wsb_c02298{word-spacing:33.300288px;}
.ws6_c02298{word-spacing:36.742464px;}
.ws1_c02298{word-spacing:37.759392px;}
.ws0_c02298{word-spacing:38.020752px;}
.ws3_c02298{word-spacing:39.218256px;}
.ws5_c02298{word-spacing:39.902544px;}
.ws7_c02298{word-spacing:42.026688px;}
._0_c02298{margin-left:-1.948320px;}
._2_c02298{width:1.482624px;}
._4_c02298{width:3.307392px;}
._5_c02298{width:14.707872px;}
._1_c02298{width:50.252400px;}
._3_c02298{width:51.530688px;}
.fc0_c02298{color:rgb(0,0,0);}
.fs0_c02298{font-size:47.520000px;}
.fs1_c02298{font-size:60.480000px;}
.y0_c02298{bottom:0.000000px;}
.y19_c02298{bottom:146.998362px;}
.y1b_c02298{bottom:186.600234px;}
.y1a_c02298{bottom:196.320450px;}
.y18_c02298{bottom:275.878542px;}
.y17_c02298{bottom:356.878758px;}
.y15_c02298{bottom:406.559730px;}
.y11_c02298{bottom:424.560306px;}
.y16_c02298{bottom:458.759262px;}
.y14_c02298{bottom:491.879514px;}
.y13_c02298{bottom:509.880090px;}
.y10_c02298{bottom:543.000342px;}
.y12_c02298{bottom:559.559874px;}
.yf_c02298{bottom:577.560450px;}
.y1c_c02298{bottom:614.280450px;}
.yb_c02298{bottom:667.558326px;}
.yd_c02298{bottom:707.160234px;}
.yc_c02298{bottom:716.880450px;}
.ya_c02298{bottom:796.438506px;}
.y9_c02298{bottom:877.438722px;}
.y7_c02298{bottom:926.759730px;}
.y3_c02298{bottom:944.760306px;}
.y8_c02298{bottom:979.319226px;}
.y6_c02298{bottom:1012.439478px;}
.y5_c02298{bottom:1030.440054px;}
.y2_c02298{bottom:1063.560306px;}
.y4_c02298{bottom:1079.759874px;}
.y1_c02298{bottom:1097.760450px;}
.ye_c02298{bottom:1134.840450px;}
.h3_c02298{height:32.530781px;}
.h1_c02298{height:41.696016px;}
.h2_c02298{height:41.812031px;}
.h4_c02298{height:54.654737px;}
.h0_c02298{height:1263.000000px;}
.w1_c02298{width:892.500000px;}
.w0_c02298{width:892.830000px;}
.x0_c02298{left:0.000000px;}
.xd_c02298{left:117.000000px;}
.x8_c02298{left:440.999856px;}
.x4_c02298{left:445.680576px;}
.xb_c02298{left:451.080000px;}
.x7_c02298{left:455.399604px;}
.x5_c02298{left:461.880144px;}
.x1_c02298{left:463.320000px;}
.xa_c02298{left:483.480360px;}
.x9_c02298{left:492.119496px;}
.x6_c02298{left:493.200576px;}
.xc_c02298{left:506.880360px;}
.x3_c02298{left:511.919892px;}
.x2_c02298{left:526.679604px;}
@media print{
.v0_c02298{vertical-align:0.000000pt;}
.v1_c02298{vertical-align:1.279488pt;}
.lsd_c02298{letter-spacing:-1.064448pt;}
.ls9_c02298{letter-spacing:-0.511104pt;}
.lsa_c02298{letter-spacing:-0.321024pt;}
.ls10_c02298{letter-spacing:-0.244992pt;}
.lse_c02298{letter-spacing:-0.232320pt;}
.ls6_c02298{letter-spacing:-0.215424pt;}
.ls3_c02298{letter-spacing:-0.105600pt;}
.ls13_c02298{letter-spacing:0.000000pt;}
.ls0_c02298{letter-spacing:0.005376pt;}
.ls5_c02298{letter-spacing:0.114048pt;}
.ls7_c02298{letter-spacing:0.215424pt;}
.lsc_c02298{letter-spacing:0.451968pt;}
.ls12_c02298{letter-spacing:0.456960pt;}
.lsf_c02298{letter-spacing:0.477312pt;}
.lsb_c02298{letter-spacing:0.515328pt;}
.ls11_c02298{letter-spacing:0.528000pt;}
.ls8_c02298{letter-spacing:0.532224pt;}
.ls2_c02298{letter-spacing:0.544896pt;}
.ls4_c02298{letter-spacing:0.637824pt;}
.ls1_c02298{letter-spacing:0.642048pt;}
.wsc_c02298{word-spacing:-13.445376pt;}
.wsa_c02298{word-spacing:-11.088000pt;}
.ws8_c02298{word-spacing:-11.075328pt;}
.ws9_c02298{word-spacing:-11.037312pt;}
.ws2_c02298{word-spacing:-10.775424pt;}
.ws4_c02298{word-spacing:-10.344576pt;}
.ws13_c02298{word-spacing:-1.919232pt;}
.ws14_c02298{word-spacing:-0.963072pt;}
.wsd_c02298{word-spacing:-0.865920pt;}
.wsf_c02298{word-spacing:-0.105600pt;}
.ws11_c02298{word-spacing:-0.088704pt;}
.ws12_c02298{word-spacing:-0.076032pt;}
.wse_c02298{word-spacing:0.000000pt;}
.ws10_c02298{word-spacing:0.743424pt;}
.wsb_c02298{word-spacing:29.600256pt;}
.ws6_c02298{word-spacing:32.659968pt;}
.ws1_c02298{word-spacing:33.563904pt;}
.ws0_c02298{word-spacing:33.796224pt;}
.ws3_c02298{word-spacing:34.860672pt;}
.ws5_c02298{word-spacing:35.468928pt;}
.ws7_c02298{word-spacing:37.357056pt;}
._0_c02298{margin-left:-1.731840pt;}
._2_c02298{width:1.317888pt;}
._4_c02298{width:2.939904pt;}
._5_c02298{width:13.073664pt;}
._1_c02298{width:44.668800pt;}
._3_c02298{width:45.805056pt;}
.fs0_c02298{font-size:42.240000pt;}
.fs1_c02298{font-size:53.760000pt;}
.y0_c02298{bottom:0.000000pt;}
.y19_c02298{bottom:130.665211pt;}
.y1b_c02298{bottom:165.866875pt;}
.y1a_c02298{bottom:174.507067pt;}
.y18_c02298{bottom:245.225371pt;}
.y17_c02298{bottom:317.225563pt;}
.y15_c02298{bottom:361.386427pt;}
.y11_c02298{bottom:377.386939pt;}
.y16_c02298{bottom:407.786011pt;}
.y14_c02298{bottom:437.226235pt;}
.y13_c02298{bottom:453.226747pt;}
.y10_c02298{bottom:482.666971pt;}
.y12_c02298{bottom:497.386555pt;}
.yf_c02298{bottom:513.387067pt;}
.y1c_c02298{bottom:546.027067pt;}
.yb_c02298{bottom:593.385179pt;}
.yd_c02298{bottom:628.586875pt;}
.yc_c02298{bottom:637.227067pt;}
.ya_c02298{bottom:707.945339pt;}
.y9_c02298{bottom:779.945531pt;}
.y7_c02298{bottom:823.786427pt;}
.y3_c02298{bottom:839.786939pt;}
.y8_c02298{bottom:870.505979pt;}
.y6_c02298{bottom:899.946203pt;}
.y5_c02298{bottom:915.946715pt;}
.y2_c02298{bottom:945.386939pt;}
.y4_c02298{bottom:959.786555pt;}
.y1_c02298{bottom:975.787067pt;}
.ye_c02298{bottom:1008.747067pt;}
.h3_c02298{height:28.916250pt;}
.h1_c02298{height:37.063125pt;}
.h2_c02298{height:37.166250pt;}
.h4_c02298{height:48.581988pt;}
.h0_c02298{height:1122.666667pt;}
.w1_c02298{width:793.333333pt;}
.w0_c02298{width:793.626667pt;}
.x0_c02298{left:0.000000pt;}
.xd_c02298{left:104.000000pt;}
.x8_c02298{left:391.999872pt;}
.x4_c02298{left:396.160512pt;}
.xb_c02298{left:400.960000pt;}
.x7_c02298{left:404.799648pt;}
.x5_c02298{left:410.560128pt;}
.x1_c02298{left:411.840000pt;}
.xa_c02298{left:429.760320pt;}
.x9_c02298{left:437.439552pt;}
.x6_c02298{left:438.400512pt;}
.xc_c02298{left:450.560320pt;}
.x3_c02298{left:455.039904pt;}
.x2_c02298{left:468.159648pt;}
}





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

.ir_c02299:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02299{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02299;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02299{font-family:ff1_c02299;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02299;src:url('chunks/assets/font_1aa6bcffe972b0349171853e.woff2')format("woff");}.ff2_c02299{font-family:ff2_c02299;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02299;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02299{font-family:ff3_c02299;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02299{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02299{vertical-align:0.000000px;}
.v1_c02299{vertical-align:1.439424px;}
.lsc_c02299{letter-spacing:-1.197504px;}
.ls9_c02299{letter-spacing:-0.574992px;}
.lsf_c02299{letter-spacing:-0.275616px;}
.lsd_c02299{letter-spacing:-0.261360px;}
.ls6_c02299{letter-spacing:-0.242352px;}
.ls3_c02299{letter-spacing:-0.118800px;}
.ls12_c02299{letter-spacing:0.000000px;}
.ls1_c02299{letter-spacing:0.006048px;}
.ls5_c02299{letter-spacing:0.128304px;}
.ls7_c02299{letter-spacing:0.242352px;}
.lsb_c02299{letter-spacing:0.508464px;}
.ls11_c02299{letter-spacing:0.514080px;}
.lse_c02299{letter-spacing:0.536976px;}
.lsa_c02299{letter-spacing:0.579744px;}
.ls10_c02299{letter-spacing:0.594000px;}
.ls8_c02299{letter-spacing:0.598752px;}
.ls2_c02299{letter-spacing:0.613008px;}
.ls4_c02299{letter-spacing:0.717552px;}
.ls0_c02299{letter-spacing:0.722304px;}
.sc__c02299{text-shadow:none;}
.sc0_c02299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02299{-webkit-text-stroke:0px transparent;}
.sc0_c02299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02299{word-spacing:-15.126048px;}
.wsa_c02299{word-spacing:-12.474000px;}
.ws8_c02299{word-spacing:-12.459744px;}
.ws9_c02299{word-spacing:-12.416976px;}
.ws2_c02299{word-spacing:-12.122352px;}
.ws4_c02299{word-spacing:-11.637648px;}
.ws14_c02299{word-spacing:-2.159136px;}
.ws10_c02299{word-spacing:-1.083456px;}
.wsd_c02299{word-spacing:-0.974160px;}
.wsf_c02299{word-spacing:-0.118800px;}
.ws12_c02299{word-spacing:-0.099792px;}
.ws13_c02299{word-spacing:-0.085536px;}
.wse_c02299{word-spacing:0.000000px;}
.ws11_c02299{word-spacing:0.836352px;}
.wsb_c02299{word-spacing:33.300288px;}
.ws6_c02299{word-spacing:36.742464px;}
.ws1_c02299{word-spacing:37.759392px;}
.ws0_c02299{word-spacing:38.020752px;}
.ws3_c02299{word-spacing:39.218256px;}
.ws5_c02299{word-spacing:39.902544px;}
.ws7_c02299{word-spacing:42.026688px;}
._0_c02299{margin-left:-1.948320px;}
._2_c02299{width:1.482624px;}
._4_c02299{width:3.307392px;}
._5_c02299{width:14.707872px;}
._1_c02299{width:50.252400px;}
._3_c02299{width:51.530688px;}
.fc0_c02299{color:rgb(0,0,0);}
.fs0_c02299{font-size:47.520000px;}
.fs1_c02299{font-size:60.480000px;}
.y0_c02299{bottom:0.000000px;}
.y19_c02299{bottom:146.998362px;}
.y1b_c02299{bottom:186.600234px;}
.y1a_c02299{bottom:196.320450px;}
.y18_c02299{bottom:275.878542px;}
.y17_c02299{bottom:356.878758px;}
.y15_c02299{bottom:406.559730px;}
.y11_c02299{bottom:424.560306px;}
.y16_c02299{bottom:458.759262px;}
.y14_c02299{bottom:491.879514px;}
.y13_c02299{bottom:509.880090px;}
.y10_c02299{bottom:543.000342px;}
.y12_c02299{bottom:559.559874px;}
.yf_c02299{bottom:577.560450px;}
.y1c_c02299{bottom:614.280450px;}
.yb_c02299{bottom:667.558326px;}
.yd_c02299{bottom:707.160234px;}
.yc_c02299{bottom:716.880450px;}
.ya_c02299{bottom:796.438506px;}
.y9_c02299{bottom:877.438722px;}
.y7_c02299{bottom:926.759730px;}
.y3_c02299{bottom:944.760306px;}
.y8_c02299{bottom:979.319226px;}
.y6_c02299{bottom:1012.439478px;}
.y5_c02299{bottom:1030.440054px;}
.y2_c02299{bottom:1063.560306px;}
.y4_c02299{bottom:1079.759874px;}
.y1_c02299{bottom:1097.760450px;}
.ye_c02299{bottom:1134.840450px;}
.h3_c02299{height:32.530781px;}
.h1_c02299{height:41.696016px;}
.h2_c02299{height:41.812031px;}
.h4_c02299{height:54.654737px;}
.h0_c02299{height:1263.000000px;}
.w1_c02299{width:892.500000px;}
.w0_c02299{width:892.830000px;}
.x0_c02299{left:0.000000px;}
.xd_c02299{left:117.000000px;}
.x8_c02299{left:440.999856px;}
.x4_c02299{left:445.680576px;}
.xb_c02299{left:451.080000px;}
.x7_c02299{left:455.399604px;}
.x5_c02299{left:461.880144px;}
.x1_c02299{left:463.320000px;}
.xa_c02299{left:483.480360px;}
.x9_c02299{left:492.119496px;}
.x6_c02299{left:493.200576px;}
.xc_c02299{left:506.880360px;}
.x3_c02299{left:511.919892px;}
.x2_c02299{left:526.679604px;}
@media print{
.v0_c02299{vertical-align:0.000000pt;}
.v1_c02299{vertical-align:1.279488pt;}
.lsc_c02299{letter-spacing:-1.064448pt;}
.ls9_c02299{letter-spacing:-0.511104pt;}
.lsf_c02299{letter-spacing:-0.244992pt;}
.lsd_c02299{letter-spacing:-0.232320pt;}
.ls6_c02299{letter-spacing:-0.215424pt;}
.ls3_c02299{letter-spacing:-0.105600pt;}
.ls12_c02299{letter-spacing:0.000000pt;}
.ls1_c02299{letter-spacing:0.005376pt;}
.ls5_c02299{letter-spacing:0.114048pt;}
.ls7_c02299{letter-spacing:0.215424pt;}
.lsb_c02299{letter-spacing:0.451968pt;}
.ls11_c02299{letter-spacing:0.456960pt;}
.lse_c02299{letter-spacing:0.477312pt;}
.lsa_c02299{letter-spacing:0.515328pt;}
.ls10_c02299{letter-spacing:0.528000pt;}
.ls8_c02299{letter-spacing:0.532224pt;}
.ls2_c02299{letter-spacing:0.544896pt;}
.ls4_c02299{letter-spacing:0.637824pt;}
.ls0_c02299{letter-spacing:0.642048pt;}
.wsc_c02299{word-spacing:-13.445376pt;}
.wsa_c02299{word-spacing:-11.088000pt;}
.ws8_c02299{word-spacing:-11.075328pt;}
.ws9_c02299{word-spacing:-11.037312pt;}
.ws2_c02299{word-spacing:-10.775424pt;}
.ws4_c02299{word-spacing:-10.344576pt;}
.ws14_c02299{word-spacing:-1.919232pt;}
.ws10_c02299{word-spacing:-0.963072pt;}
.wsd_c02299{word-spacing:-0.865920pt;}
.wsf_c02299{word-spacing:-0.105600pt;}
.ws12_c02299{word-spacing:-0.088704pt;}
.ws13_c02299{word-spacing:-0.076032pt;}
.wse_c02299{word-spacing:0.000000pt;}
.ws11_c02299{word-spacing:0.743424pt;}
.wsb_c02299{word-spacing:29.600256pt;}
.ws6_c02299{word-spacing:32.659968pt;}
.ws1_c02299{word-spacing:33.563904pt;}
.ws0_c02299{word-spacing:33.796224pt;}
.ws3_c02299{word-spacing:34.860672pt;}
.ws5_c02299{word-spacing:35.468928pt;}
.ws7_c02299{word-spacing:37.357056pt;}
._0_c02299{margin-left:-1.731840pt;}
._2_c02299{width:1.317888pt;}
._4_c02299{width:2.939904pt;}
._5_c02299{width:13.073664pt;}
._1_c02299{width:44.668800pt;}
._3_c02299{width:45.805056pt;}
.fs0_c02299{font-size:42.240000pt;}
.fs1_c02299{font-size:53.760000pt;}
.y0_c02299{bottom:0.000000pt;}
.y19_c02299{bottom:130.665211pt;}
.y1b_c02299{bottom:165.866875pt;}
.y1a_c02299{bottom:174.507067pt;}
.y18_c02299{bottom:245.225371pt;}
.y17_c02299{bottom:317.225563pt;}
.y15_c02299{bottom:361.386427pt;}
.y11_c02299{bottom:377.386939pt;}
.y16_c02299{bottom:407.786011pt;}
.y14_c02299{bottom:437.226235pt;}
.y13_c02299{bottom:453.226747pt;}
.y10_c02299{bottom:482.666971pt;}
.y12_c02299{bottom:497.386555pt;}
.yf_c02299{bottom:513.387067pt;}
.y1c_c02299{bottom:546.027067pt;}
.yb_c02299{bottom:593.385179pt;}
.yd_c02299{bottom:628.586875pt;}
.yc_c02299{bottom:637.227067pt;}
.ya_c02299{bottom:707.945339pt;}
.y9_c02299{bottom:779.945531pt;}
.y7_c02299{bottom:823.786427pt;}
.y3_c02299{bottom:839.786939pt;}
.y8_c02299{bottom:870.505979pt;}
.y6_c02299{bottom:899.946203pt;}
.y5_c02299{bottom:915.946715pt;}
.y2_c02299{bottom:945.386939pt;}
.y4_c02299{bottom:959.786555pt;}
.y1_c02299{bottom:975.787067pt;}
.ye_c02299{bottom:1008.747067pt;}
.h3_c02299{height:28.916250pt;}
.h1_c02299{height:37.063125pt;}
.h2_c02299{height:37.166250pt;}
.h4_c02299{height:48.581988pt;}
.h0_c02299{height:1122.666667pt;}
.w1_c02299{width:793.333333pt;}
.w0_c02299{width:793.626667pt;}
.x0_c02299{left:0.000000pt;}
.xd_c02299{left:104.000000pt;}
.x8_c02299{left:391.999872pt;}
.x4_c02299{left:396.160512pt;}
.xb_c02299{left:400.960000pt;}
.x7_c02299{left:404.799648pt;}
.x5_c02299{left:410.560128pt;}
.x1_c02299{left:411.840000pt;}
.xa_c02299{left:429.760320pt;}
.x9_c02299{left:437.439552pt;}
.x6_c02299{left:438.400512pt;}
.xc_c02299{left:450.560320pt;}
.x3_c02299{left:455.039904pt;}
.x2_c02299{left:468.159648pt;}
}





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

.ir_c02300:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02300{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02300;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02300{font-family:ff1_c02300;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02300;src:url('chunks/assets/font_1aa6bcffe972b0349171853e.woff2')format("woff");}.ff2_c02300{font-family:ff2_c02300;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02300;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02300{font-family:ff3_c02300;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02300{vertical-align:0.000000px;}
.v1_c02300{vertical-align:1.439424px;}
.lsd_c02300{letter-spacing:-1.197504px;}
.ls9_c02300{letter-spacing:-0.574992px;}
.lsa_c02300{letter-spacing:-0.361152px;}
.ls10_c02300{letter-spacing:-0.275616px;}
.lse_c02300{letter-spacing:-0.261360px;}
.ls6_c02300{letter-spacing:-0.242352px;}
.ls3_c02300{letter-spacing:-0.118800px;}
.ls13_c02300{letter-spacing:0.000000px;}
.ls0_c02300{letter-spacing:0.006048px;}
.ls5_c02300{letter-spacing:0.128304px;}
.ls7_c02300{letter-spacing:0.242352px;}
.lsc_c02300{letter-spacing:0.508464px;}
.ls12_c02300{letter-spacing:0.514080px;}
.lsf_c02300{letter-spacing:0.536976px;}
.lsb_c02300{letter-spacing:0.579744px;}
.ls11_c02300{letter-spacing:0.594000px;}
.ls8_c02300{letter-spacing:0.598752px;}
.ls1_c02300{letter-spacing:0.613008px;}
.ls4_c02300{letter-spacing:0.717552px;}
.ls2_c02300{letter-spacing:0.722304px;}
.sc__c02300{text-shadow:none;}
.sc0_c02300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02300{-webkit-text-stroke:0px transparent;}
.sc0_c02300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02300{word-spacing:-15.126048px;}
.wsa_c02300{word-spacing:-12.474000px;}
.ws8_c02300{word-spacing:-12.459744px;}
.ws9_c02300{word-spacing:-12.416976px;}
.ws2_c02300{word-spacing:-12.122352px;}
.ws4_c02300{word-spacing:-11.637648px;}
.ws13_c02300{word-spacing:-2.159136px;}
.wsd_c02300{word-spacing:-0.974160px;}
.wsf_c02300{word-spacing:-0.118800px;}
.ws11_c02300{word-spacing:-0.099792px;}
.ws12_c02300{word-spacing:-0.085536px;}
.wse_c02300{word-spacing:0.000000px;}
.ws10_c02300{word-spacing:0.836352px;}
.wsb_c02300{word-spacing:33.300288px;}
.ws6_c02300{word-spacing:36.742464px;}
.ws1_c02300{word-spacing:37.759392px;}
.ws0_c02300{word-spacing:38.020752px;}
.ws3_c02300{word-spacing:39.218256px;}
.ws5_c02300{word-spacing:39.902544px;}
.ws7_c02300{word-spacing:42.026688px;}
._0_c02300{margin-left:-1.948320px;}
._2_c02300{width:1.482624px;}
._4_c02300{width:3.307392px;}
._5_c02300{width:14.707872px;}
._1_c02300{width:50.252400px;}
._3_c02300{width:51.530688px;}
.fc0_c02300{color:rgb(0,0,0);}
.fs0_c02300{font-size:47.520000px;}
.fs1_c02300{font-size:60.480000px;}
.y0_c02300{bottom:0.000000px;}
.y19_c02300{bottom:146.998362px;}
.y1b_c02300{bottom:186.600234px;}
.y1a_c02300{bottom:196.320450px;}
.y18_c02300{bottom:275.878542px;}
.y17_c02300{bottom:356.878758px;}
.y15_c02300{bottom:406.559730px;}
.y11_c02300{bottom:424.560306px;}
.y16_c02300{bottom:458.759262px;}
.y14_c02300{bottom:491.879514px;}
.y13_c02300{bottom:509.880090px;}
.y10_c02300{bottom:543.000342px;}
.y12_c02300{bottom:559.559874px;}
.yf_c02300{bottom:577.560450px;}
.y1c_c02300{bottom:614.280450px;}
.yb_c02300{bottom:667.558326px;}
.yd_c02300{bottom:707.160234px;}
.yc_c02300{bottom:716.880450px;}
.ya_c02300{bottom:796.438506px;}
.y9_c02300{bottom:877.438722px;}
.y7_c02300{bottom:926.759730px;}
.y3_c02300{bottom:944.760306px;}
.y8_c02300{bottom:979.319226px;}
.y6_c02300{bottom:1012.439478px;}
.y5_c02300{bottom:1030.440054px;}
.y2_c02300{bottom:1063.560306px;}
.y4_c02300{bottom:1079.759874px;}
.y1_c02300{bottom:1097.760450px;}
.ye_c02300{bottom:1134.840450px;}
.h3_c02300{height:32.530781px;}
.h1_c02300{height:41.696016px;}
.h2_c02300{height:41.812031px;}
.h4_c02300{height:54.654737px;}
.h0_c02300{height:1263.000000px;}
.w1_c02300{width:892.500000px;}
.w0_c02300{width:892.830000px;}
.x0_c02300{left:0.000000px;}
.xd_c02300{left:117.000000px;}
.x8_c02300{left:440.999856px;}
.x4_c02300{left:445.680576px;}
.xb_c02300{left:451.080000px;}
.x7_c02300{left:455.399604px;}
.x5_c02300{left:461.880144px;}
.x1_c02300{left:463.320000px;}
.xa_c02300{left:483.480360px;}
.x9_c02300{left:492.119496px;}
.x6_c02300{left:493.200576px;}
.xc_c02300{left:506.880360px;}
.x3_c02300{left:511.919892px;}
.x2_c02300{left:526.679604px;}
@media print{
.v0_c02300{vertical-align:0.000000pt;}
.v1_c02300{vertical-align:1.279488pt;}
.lsd_c02300{letter-spacing:-1.064448pt;}
.ls9_c02300{letter-spacing:-0.511104pt;}
.lsa_c02300{letter-spacing:-0.321024pt;}
.ls10_c02300{letter-spacing:-0.244992pt;}
.lse_c02300{letter-spacing:-0.232320pt;}
.ls6_c02300{letter-spacing:-0.215424pt;}
.ls3_c02300{letter-spacing:-0.105600pt;}
.ls13_c02300{letter-spacing:0.000000pt;}
.ls0_c02300{letter-spacing:0.005376pt;}
.ls5_c02300{letter-spacing:0.114048pt;}
.ls7_c02300{letter-spacing:0.215424pt;}
.lsc_c02300{letter-spacing:0.451968pt;}
.ls12_c02300{letter-spacing:0.456960pt;}
.lsf_c02300{letter-spacing:0.477312pt;}
.lsb_c02300{letter-spacing:0.515328pt;}
.ls11_c02300{letter-spacing:0.528000pt;}
.ls8_c02300{letter-spacing:0.532224pt;}
.ls1_c02300{letter-spacing:0.544896pt;}
.ls4_c02300{letter-spacing:0.637824pt;}
.ls2_c02300{letter-spacing:0.642048pt;}
.wsc_c02300{word-spacing:-13.445376pt;}
.wsa_c02300{word-spacing:-11.088000pt;}
.ws8_c02300{word-spacing:-11.075328pt;}
.ws9_c02300{word-spacing:-11.037312pt;}
.ws2_c02300{word-spacing:-10.775424pt;}
.ws4_c02300{word-spacing:-10.344576pt;}
.ws13_c02300{word-spacing:-1.919232pt;}
.wsd_c02300{word-spacing:-0.865920pt;}
.wsf_c02300{word-spacing:-0.105600pt;}
.ws11_c02300{word-spacing:-0.088704pt;}
.ws12_c02300{word-spacing:-0.076032pt;}
.wse_c02300{word-spacing:0.000000pt;}
.ws10_c02300{word-spacing:0.743424pt;}
.wsb_c02300{word-spacing:29.600256pt;}
.ws6_c02300{word-spacing:32.659968pt;}
.ws1_c02300{word-spacing:33.563904pt;}
.ws0_c02300{word-spacing:33.796224pt;}
.ws3_c02300{word-spacing:34.860672pt;}
.ws5_c02300{word-spacing:35.468928pt;}
.ws7_c02300{word-spacing:37.357056pt;}
._0_c02300{margin-left:-1.731840pt;}
._2_c02300{width:1.317888pt;}
._4_c02300{width:2.939904pt;}
._5_c02300{width:13.073664pt;}
._1_c02300{width:44.668800pt;}
._3_c02300{width:45.805056pt;}
.fs0_c02300{font-size:42.240000pt;}
.fs1_c02300{font-size:53.760000pt;}
.y0_c02300{bottom:0.000000pt;}
.y19_c02300{bottom:130.665211pt;}
.y1b_c02300{bottom:165.866875pt;}
.y1a_c02300{bottom:174.507067pt;}
.y18_c02300{bottom:245.225371pt;}
.y17_c02300{bottom:317.225563pt;}
.y15_c02300{bottom:361.386427pt;}
.y11_c02300{bottom:377.386939pt;}
.y16_c02300{bottom:407.786011pt;}
.y14_c02300{bottom:437.226235pt;}
.y13_c02300{bottom:453.226747pt;}
.y10_c02300{bottom:482.666971pt;}
.y12_c02300{bottom:497.386555pt;}
.yf_c02300{bottom:513.387067pt;}
.y1c_c02300{bottom:546.027067pt;}
.yb_c02300{bottom:593.385179pt;}
.yd_c02300{bottom:628.586875pt;}
.yc_c02300{bottom:637.227067pt;}
.ya_c02300{bottom:707.945339pt;}
.y9_c02300{bottom:779.945531pt;}
.y7_c02300{bottom:823.786427pt;}
.y3_c02300{bottom:839.786939pt;}
.y8_c02300{bottom:870.505979pt;}
.y6_c02300{bottom:899.946203pt;}
.y5_c02300{bottom:915.946715pt;}
.y2_c02300{bottom:945.386939pt;}
.y4_c02300{bottom:959.786555pt;}
.y1_c02300{bottom:975.787067pt;}
.ye_c02300{bottom:1008.747067pt;}
.h3_c02300{height:28.916250pt;}
.h1_c02300{height:37.063125pt;}
.h2_c02300{height:37.166250pt;}
.h4_c02300{height:48.581988pt;}
.h0_c02300{height:1122.666667pt;}
.w1_c02300{width:793.333333pt;}
.w0_c02300{width:793.626667pt;}
.x0_c02300{left:0.000000pt;}
.xd_c02300{left:104.000000pt;}
.x8_c02300{left:391.999872pt;}
.x4_c02300{left:396.160512pt;}
.xb_c02300{left:400.960000pt;}
.x7_c02300{left:404.799648pt;}
.x5_c02300{left:410.560128pt;}
.x1_c02300{left:411.840000pt;}
.xa_c02300{left:429.760320pt;}
.x9_c02300{left:437.439552pt;}
.x6_c02300{left:438.400512pt;}
.xc_c02300{left:450.560320pt;}
.x3_c02300{left:455.039904pt;}
.x2_c02300{left:468.159648pt;}
}





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

.ir_c02301:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02301{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02301;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02301{font-family:ff1_c02301;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02301;src:url('chunks/assets/font_e09918ec87dde13ba5502edc.woff2')format("woff");}.ff2_c02301{font-family:ff2_c02301;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02301;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02301{font-family:ff3_c02301;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02301{vertical-align:0.000000px;}
.v1_c02301{vertical-align:1.439424px;}
.lse_c02301{letter-spacing:-1.197504px;}
.ls9_c02301{letter-spacing:-0.755568px;}
.lsa_c02301{letter-spacing:-0.574992px;}
.lsb_c02301{letter-spacing:-0.361152px;}
.ls11_c02301{letter-spacing:-0.275616px;}
.lsf_c02301{letter-spacing:-0.261360px;}
.ls6_c02301{letter-spacing:-0.242352px;}
.ls4_c02301{letter-spacing:-0.118800px;}
.ls14_c02301{letter-spacing:0.000000px;}
.ls0_c02301{letter-spacing:0.006048px;}
.ls15_c02301{letter-spacing:0.042768px;}
.ls5_c02301{letter-spacing:0.128304px;}
.ls7_c02301{letter-spacing:0.242352px;}
.lsd_c02301{letter-spacing:0.508464px;}
.ls13_c02301{letter-spacing:0.514080px;}
.ls10_c02301{letter-spacing:0.536976px;}
.lsc_c02301{letter-spacing:0.579744px;}
.ls12_c02301{letter-spacing:0.594000px;}
.ls8_c02301{letter-spacing:0.598752px;}
.ls2_c02301{letter-spacing:0.613008px;}
.ls16_c02301{letter-spacing:0.684288px;}
.ls1_c02301{letter-spacing:0.717552px;}
.ls3_c02301{letter-spacing:0.722304px;}
.sc__c02301{text-shadow:none;}
.sc0_c02301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02301{-webkit-text-stroke:0px transparent;}
.sc0_c02301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02301{word-spacing:-15.126048px;}
.wsa_c02301{word-spacing:-12.474000px;}
.ws8_c02301{word-spacing:-12.459744px;}
.ws9_c02301{word-spacing:-12.416976px;}
.ws2_c02301{word-spacing:-12.122352px;}
.wsd_c02301{word-spacing:-11.637648px;}
.ws4_c02301{word-spacing:-11.124432px;}
.ws15_c02301{word-spacing:-2.159136px;}
.ws16_c02301{word-spacing:-1.078704px;}
.ws18_c02301{word-spacing:-1.045440px;}
.wsf_c02301{word-spacing:-0.974160px;}
.ws17_c02301{word-spacing:-0.403920px;}
.ws11_c02301{word-spacing:-0.118800px;}
.ws13_c02301{word-spacing:-0.099792px;}
.ws14_c02301{word-spacing:-0.085536px;}
.ws10_c02301{word-spacing:0.000000px;}
.ws12_c02301{word-spacing:0.836352px;}
.wsb_c02301{word-spacing:33.300288px;}
.wse_c02301{word-spacing:36.143712px;}
.ws6_c02301{word-spacing:36.742464px;}
.ws1_c02301{word-spacing:37.759392px;}
.ws0_c02301{word-spacing:38.020752px;}
.ws3_c02301{word-spacing:39.218256px;}
.ws5_c02301{word-spacing:39.902544px;}
.ws7_c02301{word-spacing:42.026688px;}
._0_c02301{margin-left:-1.948320px;}
._2_c02301{width:1.482624px;}
._4_c02301{width:3.369168px;}
._5_c02301{width:14.707872px;}
._1_c02301{width:50.252400px;}
._3_c02301{width:51.530688px;}
.fc0_c02301{color:rgb(0,0,0);}
.fs0_c02301{font-size:47.520000px;}
.fs1_c02301{font-size:60.480000px;}
.y0_c02301{bottom:0.000000px;}
.y19_c02301{bottom:146.998362px;}
.y1b_c02301{bottom:186.600234px;}
.y1a_c02301{bottom:196.320450px;}
.y18_c02301{bottom:275.878542px;}
.y17_c02301{bottom:356.878758px;}
.y15_c02301{bottom:406.559730px;}
.y11_c02301{bottom:424.560306px;}
.y16_c02301{bottom:458.759262px;}
.y14_c02301{bottom:491.879514px;}
.y13_c02301{bottom:509.880090px;}
.y10_c02301{bottom:543.000342px;}
.y12_c02301{bottom:559.559874px;}
.yf_c02301{bottom:577.560450px;}
.y1c_c02301{bottom:614.280450px;}
.yb_c02301{bottom:667.558326px;}
.yd_c02301{bottom:707.160234px;}
.yc_c02301{bottom:716.880450px;}
.ya_c02301{bottom:796.438506px;}
.y9_c02301{bottom:877.438722px;}
.y7_c02301{bottom:926.759730px;}
.y3_c02301{bottom:944.760306px;}
.y8_c02301{bottom:979.319226px;}
.y6_c02301{bottom:1012.439478px;}
.y5_c02301{bottom:1030.440054px;}
.y2_c02301{bottom:1063.560306px;}
.y4_c02301{bottom:1079.759874px;}
.y1_c02301{bottom:1097.760450px;}
.ye_c02301{bottom:1134.840450px;}
.h3_c02301{height:32.530781px;}
.h1_c02301{height:41.696016px;}
.h2_c02301{height:41.812031px;}
.h4_c02301{height:54.654737px;}
.h0_c02301{height:1263.000000px;}
.w1_c02301{width:892.500000px;}
.w0_c02301{width:892.830000px;}
.x0_c02301{left:0.000000px;}
.xd_c02301{left:117.000000px;}
.x8_c02301{left:440.999856px;}
.x4_c02301{left:445.680576px;}
.xb_c02301{left:451.080000px;}
.x7_c02301{left:455.399604px;}
.x5_c02301{left:461.880144px;}
.x1_c02301{left:463.320000px;}
.xa_c02301{left:483.480360px;}
.x9_c02301{left:492.119496px;}
.x6_c02301{left:493.200576px;}
.xc_c02301{left:506.880360px;}
.x3_c02301{left:511.919892px;}
.x2_c02301{left:526.679604px;}
@media print{
.v0_c02301{vertical-align:0.000000pt;}
.v1_c02301{vertical-align:1.279488pt;}
.lse_c02301{letter-spacing:-1.064448pt;}
.ls9_c02301{letter-spacing:-0.671616pt;}
.lsa_c02301{letter-spacing:-0.511104pt;}
.lsb_c02301{letter-spacing:-0.321024pt;}
.ls11_c02301{letter-spacing:-0.244992pt;}
.lsf_c02301{letter-spacing:-0.232320pt;}
.ls6_c02301{letter-spacing:-0.215424pt;}
.ls4_c02301{letter-spacing:-0.105600pt;}
.ls14_c02301{letter-spacing:0.000000pt;}
.ls0_c02301{letter-spacing:0.005376pt;}
.ls15_c02301{letter-spacing:0.038016pt;}
.ls5_c02301{letter-spacing:0.114048pt;}
.ls7_c02301{letter-spacing:0.215424pt;}
.lsd_c02301{letter-spacing:0.451968pt;}
.ls13_c02301{letter-spacing:0.456960pt;}
.ls10_c02301{letter-spacing:0.477312pt;}
.lsc_c02301{letter-spacing:0.515328pt;}
.ls12_c02301{letter-spacing:0.528000pt;}
.ls8_c02301{letter-spacing:0.532224pt;}
.ls2_c02301{letter-spacing:0.544896pt;}
.ls16_c02301{letter-spacing:0.608256pt;}
.ls1_c02301{letter-spacing:0.637824pt;}
.ls3_c02301{letter-spacing:0.642048pt;}
.wsc_c02301{word-spacing:-13.445376pt;}
.wsa_c02301{word-spacing:-11.088000pt;}
.ws8_c02301{word-spacing:-11.075328pt;}
.ws9_c02301{word-spacing:-11.037312pt;}
.ws2_c02301{word-spacing:-10.775424pt;}
.wsd_c02301{word-spacing:-10.344576pt;}
.ws4_c02301{word-spacing:-9.888384pt;}
.ws15_c02301{word-spacing:-1.919232pt;}
.ws16_c02301{word-spacing:-0.958848pt;}
.ws18_c02301{word-spacing:-0.929280pt;}
.wsf_c02301{word-spacing:-0.865920pt;}
.ws17_c02301{word-spacing:-0.359040pt;}
.ws11_c02301{word-spacing:-0.105600pt;}
.ws13_c02301{word-spacing:-0.088704pt;}
.ws14_c02301{word-spacing:-0.076032pt;}
.ws10_c02301{word-spacing:0.000000pt;}
.ws12_c02301{word-spacing:0.743424pt;}
.wsb_c02301{word-spacing:29.600256pt;}
.wse_c02301{word-spacing:32.127744pt;}
.ws6_c02301{word-spacing:32.659968pt;}
.ws1_c02301{word-spacing:33.563904pt;}
.ws0_c02301{word-spacing:33.796224pt;}
.ws3_c02301{word-spacing:34.860672pt;}
.ws5_c02301{word-spacing:35.468928pt;}
.ws7_c02301{word-spacing:37.357056pt;}
._0_c02301{margin-left:-1.731840pt;}
._2_c02301{width:1.317888pt;}
._4_c02301{width:2.994816pt;}
._5_c02301{width:13.073664pt;}
._1_c02301{width:44.668800pt;}
._3_c02301{width:45.805056pt;}
.fs0_c02301{font-size:42.240000pt;}
.fs1_c02301{font-size:53.760000pt;}
.y0_c02301{bottom:0.000000pt;}
.y19_c02301{bottom:130.665211pt;}
.y1b_c02301{bottom:165.866875pt;}
.y1a_c02301{bottom:174.507067pt;}
.y18_c02301{bottom:245.225371pt;}
.y17_c02301{bottom:317.225563pt;}
.y15_c02301{bottom:361.386427pt;}
.y11_c02301{bottom:377.386939pt;}
.y16_c02301{bottom:407.786011pt;}
.y14_c02301{bottom:437.226235pt;}
.y13_c02301{bottom:453.226747pt;}
.y10_c02301{bottom:482.666971pt;}
.y12_c02301{bottom:497.386555pt;}
.yf_c02301{bottom:513.387067pt;}
.y1c_c02301{bottom:546.027067pt;}
.yb_c02301{bottom:593.385179pt;}
.yd_c02301{bottom:628.586875pt;}
.yc_c02301{bottom:637.227067pt;}
.ya_c02301{bottom:707.945339pt;}
.y9_c02301{bottom:779.945531pt;}
.y7_c02301{bottom:823.786427pt;}
.y3_c02301{bottom:839.786939pt;}
.y8_c02301{bottom:870.505979pt;}
.y6_c02301{bottom:899.946203pt;}
.y5_c02301{bottom:915.946715pt;}
.y2_c02301{bottom:945.386939pt;}
.y4_c02301{bottom:959.786555pt;}
.y1_c02301{bottom:975.787067pt;}
.ye_c02301{bottom:1008.747067pt;}
.h3_c02301{height:28.916250pt;}
.h1_c02301{height:37.063125pt;}
.h2_c02301{height:37.166250pt;}
.h4_c02301{height:48.581988pt;}
.h0_c02301{height:1122.666667pt;}
.w1_c02301{width:793.333333pt;}
.w0_c02301{width:793.626667pt;}
.x0_c02301{left:0.000000pt;}
.xd_c02301{left:104.000000pt;}
.x8_c02301{left:391.999872pt;}
.x4_c02301{left:396.160512pt;}
.xb_c02301{left:400.960000pt;}
.x7_c02301{left:404.799648pt;}
.x5_c02301{left:410.560128pt;}
.x1_c02301{left:411.840000pt;}
.xa_c02301{left:429.760320pt;}
.x9_c02301{left:437.439552pt;}
.x6_c02301{left:438.400512pt;}
.xc_c02301{left:450.560320pt;}
.x3_c02301{left:455.039904pt;}
.x2_c02301{left:468.159648pt;}
}





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

.ir_c02302:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02302{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02302;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02302{font-family:ff1_c02302;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02302;src:url('chunks/assets/font_a2dc7242886dfb887a997803.woff2')format("woff");}.ff2_c02302{font-family:ff2_c02302;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02302;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02302{font-family:ff3_c02302;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02302{vertical-align:0.000000px;}
.v1_c02302{vertical-align:1.439424px;}
.lsa_c02302{letter-spacing:-0.574992px;}
.ls10_c02302{letter-spacing:-0.275616px;}
.ls9_c02302{letter-spacing:-0.261360px;}
.ls6_c02302{letter-spacing:-0.242352px;}
.ls4_c02302{letter-spacing:-0.118800px;}
.ls13_c02302{letter-spacing:0.000000px;}
.ls1_c02302{letter-spacing:0.006048px;}
.lsd_c02302{letter-spacing:0.042768px;}
.ls5_c02302{letter-spacing:0.128304px;}
.ls7_c02302{letter-spacing:0.242352px;}
.lsc_c02302{letter-spacing:0.508464px;}
.ls12_c02302{letter-spacing:0.514080px;}
.lsf_c02302{letter-spacing:0.536976px;}
.lsb_c02302{letter-spacing:0.579744px;}
.ls11_c02302{letter-spacing:0.594000px;}
.ls8_c02302{letter-spacing:0.598752px;}
.ls2_c02302{letter-spacing:0.613008px;}
.lse_c02302{letter-spacing:0.684288px;}
.ls0_c02302{letter-spacing:0.717552px;}
.ls3_c02302{letter-spacing:0.722304px;}
.sc__c02302{text-shadow:none;}
.sc0_c02302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02302{-webkit-text-stroke:0px transparent;}
.sc0_c02302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02302{word-spacing:-15.126048px;}
.ws9_c02302{word-spacing:-12.474000px;}
.ws8_c02302{word-spacing:-12.416976px;}
.ws2_c02302{word-spacing:-12.122352px;}
.ws14_c02302{word-spacing:-2.159136px;}
.ws10_c02302{word-spacing:-1.078704px;}
.ws12_c02302{word-spacing:-1.045440px;}
.wsc_c02302{word-spacing:-0.974160px;}
.ws11_c02302{word-spacing:-0.403920px;}
.wse_c02302{word-spacing:-0.118800px;}
.wsf_c02302{word-spacing:-0.099792px;}
.ws13_c02302{word-spacing:-0.085536px;}
.wsd_c02302{word-spacing:0.000000px;}
.wsa_c02302{word-spacing:33.300288px;}
.ws7_c02302{word-spacing:36.143712px;}
.ws5_c02302{word-spacing:36.742464px;}
.ws1_c02302{word-spacing:37.759392px;}
.ws0_c02302{word-spacing:38.020752px;}
.ws3_c02302{word-spacing:39.218256px;}
.ws4_c02302{word-spacing:39.902544px;}
.ws6_c02302{word-spacing:42.026688px;}
._0_c02302{margin-left:-1.948320px;}
._2_c02302{width:1.482624px;}
._4_c02302{width:3.402432px;}
._5_c02302{width:14.707872px;}
._1_c02302{width:50.252400px;}
._3_c02302{width:51.530688px;}
.fc0_c02302{color:rgb(0,0,0);}
.fs0_c02302{font-size:47.520000px;}
.fs1_c02302{font-size:60.480000px;}
.y0_c02302{bottom:0.000000px;}
.y19_c02302{bottom:146.998362px;}
.y1b_c02302{bottom:186.600234px;}
.y1a_c02302{bottom:196.320450px;}
.y18_c02302{bottom:275.878542px;}
.y17_c02302{bottom:356.878758px;}
.y15_c02302{bottom:406.559730px;}
.y11_c02302{bottom:424.560306px;}
.y16_c02302{bottom:458.759262px;}
.y14_c02302{bottom:491.879514px;}
.y13_c02302{bottom:509.880090px;}
.y10_c02302{bottom:543.000342px;}
.y12_c02302{bottom:559.559874px;}
.yf_c02302{bottom:577.560450px;}
.y1c_c02302{bottom:614.280450px;}
.yb_c02302{bottom:667.558326px;}
.yd_c02302{bottom:707.160234px;}
.yc_c02302{bottom:716.880450px;}
.ya_c02302{bottom:796.438506px;}
.y9_c02302{bottom:877.438722px;}
.y7_c02302{bottom:926.759730px;}
.y3_c02302{bottom:944.760306px;}
.y8_c02302{bottom:979.319226px;}
.y6_c02302{bottom:1012.439478px;}
.y5_c02302{bottom:1030.440054px;}
.y2_c02302{bottom:1063.560306px;}
.y4_c02302{bottom:1079.759874px;}
.y1_c02302{bottom:1097.760450px;}
.ye_c02302{bottom:1134.840450px;}
.h3_c02302{height:32.530781px;}
.h1_c02302{height:41.696016px;}
.h2_c02302{height:41.812031px;}
.h4_c02302{height:54.654737px;}
.h0_c02302{height:1263.000000px;}
.w1_c02302{width:892.500000px;}
.w0_c02302{width:892.830000px;}
.x0_c02302{left:0.000000px;}
.xd_c02302{left:117.000000px;}
.x8_c02302{left:440.999856px;}
.x4_c02302{left:445.680576px;}
.xb_c02302{left:451.080000px;}
.x7_c02302{left:455.399604px;}
.x5_c02302{left:461.880144px;}
.x1_c02302{left:463.320000px;}
.xa_c02302{left:483.480360px;}
.x9_c02302{left:492.119496px;}
.x6_c02302{left:493.200576px;}
.xc_c02302{left:506.880360px;}
.x3_c02302{left:511.919892px;}
.x2_c02302{left:526.679604px;}
@media print{
.v0_c02302{vertical-align:0.000000pt;}
.v1_c02302{vertical-align:1.279488pt;}
.lsa_c02302{letter-spacing:-0.511104pt;}
.ls10_c02302{letter-spacing:-0.244992pt;}
.ls9_c02302{letter-spacing:-0.232320pt;}
.ls6_c02302{letter-spacing:-0.215424pt;}
.ls4_c02302{letter-spacing:-0.105600pt;}
.ls13_c02302{letter-spacing:0.000000pt;}
.ls1_c02302{letter-spacing:0.005376pt;}
.lsd_c02302{letter-spacing:0.038016pt;}
.ls5_c02302{letter-spacing:0.114048pt;}
.ls7_c02302{letter-spacing:0.215424pt;}
.lsc_c02302{letter-spacing:0.451968pt;}
.ls12_c02302{letter-spacing:0.456960pt;}
.lsf_c02302{letter-spacing:0.477312pt;}
.lsb_c02302{letter-spacing:0.515328pt;}
.ls11_c02302{letter-spacing:0.528000pt;}
.ls8_c02302{letter-spacing:0.532224pt;}
.ls2_c02302{letter-spacing:0.544896pt;}
.lse_c02302{letter-spacing:0.608256pt;}
.ls0_c02302{letter-spacing:0.637824pt;}
.ls3_c02302{letter-spacing:0.642048pt;}
.wsb_c02302{word-spacing:-13.445376pt;}
.ws9_c02302{word-spacing:-11.088000pt;}
.ws8_c02302{word-spacing:-11.037312pt;}
.ws2_c02302{word-spacing:-10.775424pt;}
.ws14_c02302{word-spacing:-1.919232pt;}
.ws10_c02302{word-spacing:-0.958848pt;}
.ws12_c02302{word-spacing:-0.929280pt;}
.wsc_c02302{word-spacing:-0.865920pt;}
.ws11_c02302{word-spacing:-0.359040pt;}
.wse_c02302{word-spacing:-0.105600pt;}
.wsf_c02302{word-spacing:-0.088704pt;}
.ws13_c02302{word-spacing:-0.076032pt;}
.wsd_c02302{word-spacing:0.000000pt;}
.wsa_c02302{word-spacing:29.600256pt;}
.ws7_c02302{word-spacing:32.127744pt;}
.ws5_c02302{word-spacing:32.659968pt;}
.ws1_c02302{word-spacing:33.563904pt;}
.ws0_c02302{word-spacing:33.796224pt;}
.ws3_c02302{word-spacing:34.860672pt;}
.ws4_c02302{word-spacing:35.468928pt;}
.ws6_c02302{word-spacing:37.357056pt;}
._0_c02302{margin-left:-1.731840pt;}
._2_c02302{width:1.317888pt;}
._4_c02302{width:3.024384pt;}
._5_c02302{width:13.073664pt;}
._1_c02302{width:44.668800pt;}
._3_c02302{width:45.805056pt;}
.fs0_c02302{font-size:42.240000pt;}
.fs1_c02302{font-size:53.760000pt;}
.y0_c02302{bottom:0.000000pt;}
.y19_c02302{bottom:130.665211pt;}
.y1b_c02302{bottom:165.866875pt;}
.y1a_c02302{bottom:174.507067pt;}
.y18_c02302{bottom:245.225371pt;}
.y17_c02302{bottom:317.225563pt;}
.y15_c02302{bottom:361.386427pt;}
.y11_c02302{bottom:377.386939pt;}
.y16_c02302{bottom:407.786011pt;}
.y14_c02302{bottom:437.226235pt;}
.y13_c02302{bottom:453.226747pt;}
.y10_c02302{bottom:482.666971pt;}
.y12_c02302{bottom:497.386555pt;}
.yf_c02302{bottom:513.387067pt;}
.y1c_c02302{bottom:546.027067pt;}
.yb_c02302{bottom:593.385179pt;}
.yd_c02302{bottom:628.586875pt;}
.yc_c02302{bottom:637.227067pt;}
.ya_c02302{bottom:707.945339pt;}
.y9_c02302{bottom:779.945531pt;}
.y7_c02302{bottom:823.786427pt;}
.y3_c02302{bottom:839.786939pt;}
.y8_c02302{bottom:870.505979pt;}
.y6_c02302{bottom:899.946203pt;}
.y5_c02302{bottom:915.946715pt;}
.y2_c02302{bottom:945.386939pt;}
.y4_c02302{bottom:959.786555pt;}
.y1_c02302{bottom:975.787067pt;}
.ye_c02302{bottom:1008.747067pt;}
.h3_c02302{height:28.916250pt;}
.h1_c02302{height:37.063125pt;}
.h2_c02302{height:37.166250pt;}
.h4_c02302{height:48.581988pt;}
.h0_c02302{height:1122.666667pt;}
.w1_c02302{width:793.333333pt;}
.w0_c02302{width:793.626667pt;}
.x0_c02302{left:0.000000pt;}
.xd_c02302{left:104.000000pt;}
.x8_c02302{left:391.999872pt;}
.x4_c02302{left:396.160512pt;}
.xb_c02302{left:400.960000pt;}
.x7_c02302{left:404.799648pt;}
.x5_c02302{left:410.560128pt;}
.x1_c02302{left:411.840000pt;}
.xa_c02302{left:429.760320pt;}
.x9_c02302{left:437.439552pt;}
.x6_c02302{left:438.400512pt;}
.xc_c02302{left:450.560320pt;}
.x3_c02302{left:455.039904pt;}
.x2_c02302{left:468.159648pt;}
}





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

.ir_c02303:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02303{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02303;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02303{font-family:ff1_c02303;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02303;src:url('chunks/assets/font_f89d8ad97f4ecf46db1c5211.woff2')format("woff");}.ff2_c02303{font-family:ff2_c02303;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02303;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02303{font-family:ff3_c02303;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02303{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02303{vertical-align:0.000000px;}
.v1_c02303{vertical-align:1.439424px;}
.ls14_c02303{letter-spacing:-0.793584px;}
.ls15_c02303{letter-spacing:-0.736560px;}
.ls9_c02303{letter-spacing:-0.574992px;}
.ls10_c02303{letter-spacing:-0.275616px;}
.ls16_c02303{letter-spacing:-0.270864px;}
.lse_c02303{letter-spacing:-0.261360px;}
.ls6_c02303{letter-spacing:-0.242352px;}
.ls4_c02303{letter-spacing:-0.118800px;}
.ls13_c02303{letter-spacing:0.000000px;}
.ls1_c02303{letter-spacing:0.006048px;}
.lsc_c02303{letter-spacing:0.042768px;}
.ls5_c02303{letter-spacing:0.128304px;}
.ls7_c02303{letter-spacing:0.242352px;}
.lsb_c02303{letter-spacing:0.508464px;}
.ls12_c02303{letter-spacing:0.514080px;}
.lsf_c02303{letter-spacing:0.536976px;}
.lsa_c02303{letter-spacing:0.579744px;}
.ls11_c02303{letter-spacing:0.594000px;}
.ls8_c02303{letter-spacing:0.598752px;}
.ls3_c02303{letter-spacing:0.613008px;}
.lsd_c02303{letter-spacing:0.684288px;}
.ls0_c02303{letter-spacing:0.717552px;}
.ls2_c02303{letter-spacing:0.722304px;}
.sc__c02303{text-shadow:none;}
.sc0_c02303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02303{-webkit-text-stroke:0px transparent;}
.sc0_c02303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02303{word-spacing:-15.126048px;}
.wsa_c02303{word-spacing:-12.474000px;}
.wsd_c02303{word-spacing:-12.459744px;}
.ws9_c02303{word-spacing:-12.416976px;}
.ws2_c02303{word-spacing:-12.122352px;}
.ws4_c02303{word-spacing:-11.637648px;}
.ws18_c02303{word-spacing:-2.159136px;}
.ws19_c02303{word-spacing:-1.083456px;}
.ws13_c02303{word-spacing:-1.078704px;}
.ws15_c02303{word-spacing:-1.045440px;}
.ws10_c02303{word-spacing:-0.974160px;}
.ws14_c02303{word-spacing:-0.403920px;}
.ws12_c02303{word-spacing:-0.118800px;}
.ws16_c02303{word-spacing:-0.099792px;}
.ws1b_c02303{word-spacing:-0.090288px;}
.ws17_c02303{word-spacing:-0.085536px;}
.ws11_c02303{word-spacing:0.000000px;}
.ws1a_c02303{word-spacing:0.432432px;}
.wsf_c02303{word-spacing:6.629040px;}
.wsb_c02303{word-spacing:33.300288px;}
.wse_c02303{word-spacing:34.836912px;}
.ws8_c02303{word-spacing:36.143712px;}
.ws6_c02303{word-spacing:36.742464px;}
.ws1_c02303{word-spacing:37.759392px;}
.ws0_c02303{word-spacing:38.020752px;}
.ws3_c02303{word-spacing:39.218256px;}
.ws5_c02303{word-spacing:39.902544px;}
.ws7_c02303{word-spacing:42.026688px;}
._0_c02303{margin-left:-1.948320px;}
._2_c02303{width:1.482624px;}
._4_c02303{width:3.307392px;}
._5_c02303{width:14.707872px;}
._7_c02303{width:19.982160px;}
._8_c02303{width:23.451120px;}
._6_c02303{width:24.691392px;}
._1_c02303{width:50.252400px;}
._3_c02303{width:51.530688px;}
.fc0_c02303{color:rgb(0,0,0);}
.fs0_c02303{font-size:47.520000px;}
.fs1_c02303{font-size:60.480000px;}
.y0_c02303{bottom:0.000000px;}
.y1a_c02303{bottom:131.878686px;}
.y19_c02303{bottom:146.998362px;}
.y1c_c02303{bottom:186.600234px;}
.y1b_c02303{bottom:196.320450px;}
.y18_c02303{bottom:275.878542px;}
.y17_c02303{bottom:356.878758px;}
.y15_c02303{bottom:406.559730px;}
.y11_c02303{bottom:424.560306px;}
.y16_c02303{bottom:458.759262px;}
.y14_c02303{bottom:491.879514px;}
.y13_c02303{bottom:509.880090px;}
.y10_c02303{bottom:543.000342px;}
.y12_c02303{bottom:559.559874px;}
.yf_c02303{bottom:577.560450px;}
.y1d_c02303{bottom:614.280450px;}
.yb_c02303{bottom:667.558326px;}
.yd_c02303{bottom:707.160234px;}
.yc_c02303{bottom:716.880450px;}
.ya_c02303{bottom:796.438506px;}
.y9_c02303{bottom:877.438722px;}
.y7_c02303{bottom:926.759730px;}
.y3_c02303{bottom:944.760306px;}
.y8_c02303{bottom:979.319226px;}
.y6_c02303{bottom:1012.439478px;}
.y5_c02303{bottom:1030.440054px;}
.y2_c02303{bottom:1063.560306px;}
.y4_c02303{bottom:1079.759874px;}
.y1_c02303{bottom:1097.760450px;}
.ye_c02303{bottom:1134.840450px;}
.h3_c02303{height:32.530781px;}
.h1_c02303{height:41.696016px;}
.h2_c02303{height:41.812031px;}
.h4_c02303{height:54.654737px;}
.h0_c02303{height:1263.000000px;}
.w1_c02303{width:892.500000px;}
.w0_c02303{width:892.830000px;}
.x0_c02303{left:0.000000px;}
.xd_c02303{left:117.000000px;}
.x8_c02303{left:440.999856px;}
.x4_c02303{left:445.680576px;}
.xb_c02303{left:451.080000px;}
.x7_c02303{left:455.399604px;}
.x5_c02303{left:461.880144px;}
.x1_c02303{left:463.320000px;}
.xa_c02303{left:483.480360px;}
.x9_c02303{left:492.119496px;}
.x6_c02303{left:493.200576px;}
.xc_c02303{left:506.880360px;}
.x3_c02303{left:511.919892px;}
.x2_c02303{left:526.679604px;}
.xe_c02303{left:569.880036px;}
@media print{
.v0_c02303{vertical-align:0.000000pt;}
.v1_c02303{vertical-align:1.279488pt;}
.ls14_c02303{letter-spacing:-0.705408pt;}
.ls15_c02303{letter-spacing:-0.654720pt;}
.ls9_c02303{letter-spacing:-0.511104pt;}
.ls10_c02303{letter-spacing:-0.244992pt;}
.ls16_c02303{letter-spacing:-0.240768pt;}
.lse_c02303{letter-spacing:-0.232320pt;}
.ls6_c02303{letter-spacing:-0.215424pt;}
.ls4_c02303{letter-spacing:-0.105600pt;}
.ls13_c02303{letter-spacing:0.000000pt;}
.ls1_c02303{letter-spacing:0.005376pt;}
.lsc_c02303{letter-spacing:0.038016pt;}
.ls5_c02303{letter-spacing:0.114048pt;}
.ls7_c02303{letter-spacing:0.215424pt;}
.lsb_c02303{letter-spacing:0.451968pt;}
.ls12_c02303{letter-spacing:0.456960pt;}
.lsf_c02303{letter-spacing:0.477312pt;}
.lsa_c02303{letter-spacing:0.515328pt;}
.ls11_c02303{letter-spacing:0.528000pt;}
.ls8_c02303{letter-spacing:0.532224pt;}
.ls3_c02303{letter-spacing:0.544896pt;}
.lsd_c02303{letter-spacing:0.608256pt;}
.ls0_c02303{letter-spacing:0.637824pt;}
.ls2_c02303{letter-spacing:0.642048pt;}
.wsc_c02303{word-spacing:-13.445376pt;}
.wsa_c02303{word-spacing:-11.088000pt;}
.wsd_c02303{word-spacing:-11.075328pt;}
.ws9_c02303{word-spacing:-11.037312pt;}
.ws2_c02303{word-spacing:-10.775424pt;}
.ws4_c02303{word-spacing:-10.344576pt;}
.ws18_c02303{word-spacing:-1.919232pt;}
.ws19_c02303{word-spacing:-0.963072pt;}
.ws13_c02303{word-spacing:-0.958848pt;}
.ws15_c02303{word-spacing:-0.929280pt;}
.ws10_c02303{word-spacing:-0.865920pt;}
.ws14_c02303{word-spacing:-0.359040pt;}
.ws12_c02303{word-spacing:-0.105600pt;}
.ws16_c02303{word-spacing:-0.088704pt;}
.ws1b_c02303{word-spacing:-0.080256pt;}
.ws17_c02303{word-spacing:-0.076032pt;}
.ws11_c02303{word-spacing:0.000000pt;}
.ws1a_c02303{word-spacing:0.384384pt;}
.wsf_c02303{word-spacing:5.892480pt;}
.wsb_c02303{word-spacing:29.600256pt;}
.wse_c02303{word-spacing:30.966144pt;}
.ws8_c02303{word-spacing:32.127744pt;}
.ws6_c02303{word-spacing:32.659968pt;}
.ws1_c02303{word-spacing:33.563904pt;}
.ws0_c02303{word-spacing:33.796224pt;}
.ws3_c02303{word-spacing:34.860672pt;}
.ws5_c02303{word-spacing:35.468928pt;}
.ws7_c02303{word-spacing:37.357056pt;}
._0_c02303{margin-left:-1.731840pt;}
._2_c02303{width:1.317888pt;}
._4_c02303{width:2.939904pt;}
._5_c02303{width:13.073664pt;}
._7_c02303{width:17.761920pt;}
._8_c02303{width:20.845440pt;}
._6_c02303{width:21.947904pt;}
._1_c02303{width:44.668800pt;}
._3_c02303{width:45.805056pt;}
.fs0_c02303{font-size:42.240000pt;}
.fs1_c02303{font-size:53.760000pt;}
.y0_c02303{bottom:0.000000pt;}
.y1a_c02303{bottom:117.225499pt;}
.y19_c02303{bottom:130.665211pt;}
.y1c_c02303{bottom:165.866875pt;}
.y1b_c02303{bottom:174.507067pt;}
.y18_c02303{bottom:245.225371pt;}
.y17_c02303{bottom:317.225563pt;}
.y15_c02303{bottom:361.386427pt;}
.y11_c02303{bottom:377.386939pt;}
.y16_c02303{bottom:407.786011pt;}
.y14_c02303{bottom:437.226235pt;}
.y13_c02303{bottom:453.226747pt;}
.y10_c02303{bottom:482.666971pt;}
.y12_c02303{bottom:497.386555pt;}
.yf_c02303{bottom:513.387067pt;}
.y1d_c02303{bottom:546.027067pt;}
.yb_c02303{bottom:593.385179pt;}
.yd_c02303{bottom:628.586875pt;}
.yc_c02303{bottom:637.227067pt;}
.ya_c02303{bottom:707.945339pt;}
.y9_c02303{bottom:779.945531pt;}
.y7_c02303{bottom:823.786427pt;}
.y3_c02303{bottom:839.786939pt;}
.y8_c02303{bottom:870.505979pt;}
.y6_c02303{bottom:899.946203pt;}
.y5_c02303{bottom:915.946715pt;}
.y2_c02303{bottom:945.386939pt;}
.y4_c02303{bottom:959.786555pt;}
.y1_c02303{bottom:975.787067pt;}
.ye_c02303{bottom:1008.747067pt;}
.h3_c02303{height:28.916250pt;}
.h1_c02303{height:37.063125pt;}
.h2_c02303{height:37.166250pt;}
.h4_c02303{height:48.581988pt;}
.h0_c02303{height:1122.666667pt;}
.w1_c02303{width:793.333333pt;}
.w0_c02303{width:793.626667pt;}
.x0_c02303{left:0.000000pt;}
.xd_c02303{left:104.000000pt;}
.x8_c02303{left:391.999872pt;}
.x4_c02303{left:396.160512pt;}
.xb_c02303{left:400.960000pt;}
.x7_c02303{left:404.799648pt;}
.x5_c02303{left:410.560128pt;}
.x1_c02303{left:411.840000pt;}
.xa_c02303{left:429.760320pt;}
.x9_c02303{left:437.439552pt;}
.x6_c02303{left:438.400512pt;}
.xc_c02303{left:450.560320pt;}
.x3_c02303{left:455.039904pt;}
.x2_c02303{left:468.159648pt;}
.xe_c02303{left:506.560032pt;}
}





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

.ir_c02304:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02304{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02304;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02304{font-family:ff1_c02304;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02304;src:url('chunks/assets/font_2a2892afbdce31e417dd63a2.woff2')format("woff");}.ff2_c02304{font-family:ff2_c02304;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02304;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02304{font-family:ff3_c02304;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02304{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02304{vertical-align:0.000000px;}
.v1_c02304{vertical-align:1.439424px;}
.ls13_c02304{letter-spacing:-0.803088px;}
.ls9_c02304{letter-spacing:-0.574992px;}
.lsf_c02304{letter-spacing:-0.275616px;}
.lsd_c02304{letter-spacing:-0.261360px;}
.ls6_c02304{letter-spacing:-0.242352px;}
.ls4_c02304{letter-spacing:-0.118800px;}
.ls12_c02304{letter-spacing:0.000000px;}
.ls1_c02304{letter-spacing:0.006048px;}
.lsc_c02304{letter-spacing:0.047520px;}
.ls5_c02304{letter-spacing:0.128304px;}
.ls7_c02304{letter-spacing:0.242352px;}
.lsb_c02304{letter-spacing:0.508464px;}
.ls11_c02304{letter-spacing:0.514080px;}
.lse_c02304{letter-spacing:0.536976px;}
.lsa_c02304{letter-spacing:0.579744px;}
.ls10_c02304{letter-spacing:0.594000px;}
.ls8_c02304{letter-spacing:0.598752px;}
.ls2_c02304{letter-spacing:0.613008px;}
.ls0_c02304{letter-spacing:0.717552px;}
.ls3_c02304{letter-spacing:0.722304px;}
.sc__c02304{text-shadow:none;}
.sc0_c02304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02304{-webkit-text-stroke:0px transparent;}
.sc0_c02304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02304{word-spacing:-15.126048px;}
.wsa_c02304{word-spacing:-12.474000px;}
.ws8_c02304{word-spacing:-12.459744px;}
.ws9_c02304{word-spacing:-12.416976px;}
.ws2_c02304{word-spacing:-12.122352px;}
.ws4_c02304{word-spacing:-11.637648px;}
.ws14_c02304{word-spacing:-2.159136px;}
.ws10_c02304{word-spacing:-1.078704px;}
.wsd_c02304{word-spacing:-0.974160px;}
.ws11_c02304{word-spacing:-0.408672px;}
.wsf_c02304{word-spacing:-0.118800px;}
.ws12_c02304{word-spacing:-0.099792px;}
.ws13_c02304{word-spacing:-0.085536px;}
.wse_c02304{word-spacing:0.000000px;}
.ws15_c02304{word-spacing:0.441936px;}
.wsb_c02304{word-spacing:33.300288px;}
.ws6_c02304{word-spacing:36.742464px;}
.ws1_c02304{word-spacing:37.759392px;}
.ws0_c02304{word-spacing:38.020752px;}
.ws3_c02304{word-spacing:39.218256px;}
.ws5_c02304{word-spacing:39.902544px;}
.ws7_c02304{word-spacing:42.026688px;}
._0_c02304{margin-left:-1.948320px;}
._2_c02304{width:1.482624px;}
._4_c02304{width:3.307392px;}
._5_c02304{width:14.707872px;}
._1_c02304{width:50.252400px;}
._3_c02304{width:51.530688px;}
.fc0_c02304{color:rgb(0,0,0);}
.fs0_c02304{font-size:47.520000px;}
.fs1_c02304{font-size:60.480000px;}
.y0_c02304{bottom:0.000000px;}
.y19_c02304{bottom:146.998362px;}
.y1b_c02304{bottom:186.600234px;}
.y1a_c02304{bottom:196.320450px;}
.y18_c02304{bottom:275.878542px;}
.y17_c02304{bottom:356.878758px;}
.y15_c02304{bottom:406.559730px;}
.y11_c02304{bottom:424.560306px;}
.y16_c02304{bottom:458.759262px;}
.y14_c02304{bottom:491.879514px;}
.y13_c02304{bottom:509.880090px;}
.y10_c02304{bottom:543.000342px;}
.y12_c02304{bottom:559.559874px;}
.yf_c02304{bottom:577.560450px;}
.y1c_c02304{bottom:614.280450px;}
.yb_c02304{bottom:667.558326px;}
.yd_c02304{bottom:707.160234px;}
.yc_c02304{bottom:716.880450px;}
.ya_c02304{bottom:796.438506px;}
.y9_c02304{bottom:877.438722px;}
.y7_c02304{bottom:926.759730px;}
.y3_c02304{bottom:944.760306px;}
.y8_c02304{bottom:979.319226px;}
.y6_c02304{bottom:1012.439478px;}
.y5_c02304{bottom:1030.440054px;}
.y2_c02304{bottom:1063.560306px;}
.y4_c02304{bottom:1079.759874px;}
.y1_c02304{bottom:1097.760450px;}
.ye_c02304{bottom:1134.840450px;}
.h3_c02304{height:32.530781px;}
.h1_c02304{height:41.696016px;}
.h2_c02304{height:41.812031px;}
.h4_c02304{height:54.654737px;}
.h0_c02304{height:1263.000000px;}
.w1_c02304{width:892.500000px;}
.w0_c02304{width:892.830000px;}
.x0_c02304{left:0.000000px;}
.xd_c02304{left:117.000000px;}
.x8_c02304{left:440.999856px;}
.x4_c02304{left:445.680576px;}
.xb_c02304{left:451.080000px;}
.x7_c02304{left:455.399604px;}
.x5_c02304{left:461.880144px;}
.x1_c02304{left:463.320000px;}
.xa_c02304{left:483.480360px;}
.x9_c02304{left:492.119496px;}
.x6_c02304{left:493.200576px;}
.xc_c02304{left:506.880360px;}
.x3_c02304{left:511.919892px;}
.x2_c02304{left:526.679604px;}
@media print{
.v0_c02304{vertical-align:0.000000pt;}
.v1_c02304{vertical-align:1.279488pt;}
.ls13_c02304{letter-spacing:-0.713856pt;}
.ls9_c02304{letter-spacing:-0.511104pt;}
.lsf_c02304{letter-spacing:-0.244992pt;}
.lsd_c02304{letter-spacing:-0.232320pt;}
.ls6_c02304{letter-spacing:-0.215424pt;}
.ls4_c02304{letter-spacing:-0.105600pt;}
.ls12_c02304{letter-spacing:0.000000pt;}
.ls1_c02304{letter-spacing:0.005376pt;}
.lsc_c02304{letter-spacing:0.042240pt;}
.ls5_c02304{letter-spacing:0.114048pt;}
.ls7_c02304{letter-spacing:0.215424pt;}
.lsb_c02304{letter-spacing:0.451968pt;}
.ls11_c02304{letter-spacing:0.456960pt;}
.lse_c02304{letter-spacing:0.477312pt;}
.lsa_c02304{letter-spacing:0.515328pt;}
.ls10_c02304{letter-spacing:0.528000pt;}
.ls8_c02304{letter-spacing:0.532224pt;}
.ls2_c02304{letter-spacing:0.544896pt;}
.ls0_c02304{letter-spacing:0.637824pt;}
.ls3_c02304{letter-spacing:0.642048pt;}
.wsc_c02304{word-spacing:-13.445376pt;}
.wsa_c02304{word-spacing:-11.088000pt;}
.ws8_c02304{word-spacing:-11.075328pt;}
.ws9_c02304{word-spacing:-11.037312pt;}
.ws2_c02304{word-spacing:-10.775424pt;}
.ws4_c02304{word-spacing:-10.344576pt;}
.ws14_c02304{word-spacing:-1.919232pt;}
.ws10_c02304{word-spacing:-0.958848pt;}
.wsd_c02304{word-spacing:-0.865920pt;}
.ws11_c02304{word-spacing:-0.363264pt;}
.wsf_c02304{word-spacing:-0.105600pt;}
.ws12_c02304{word-spacing:-0.088704pt;}
.ws13_c02304{word-spacing:-0.076032pt;}
.wse_c02304{word-spacing:0.000000pt;}
.ws15_c02304{word-spacing:0.392832pt;}
.wsb_c02304{word-spacing:29.600256pt;}
.ws6_c02304{word-spacing:32.659968pt;}
.ws1_c02304{word-spacing:33.563904pt;}
.ws0_c02304{word-spacing:33.796224pt;}
.ws3_c02304{word-spacing:34.860672pt;}
.ws5_c02304{word-spacing:35.468928pt;}
.ws7_c02304{word-spacing:37.357056pt;}
._0_c02304{margin-left:-1.731840pt;}
._2_c02304{width:1.317888pt;}
._4_c02304{width:2.939904pt;}
._5_c02304{width:13.073664pt;}
._1_c02304{width:44.668800pt;}
._3_c02304{width:45.805056pt;}
.fs0_c02304{font-size:42.240000pt;}
.fs1_c02304{font-size:53.760000pt;}
.y0_c02304{bottom:0.000000pt;}
.y19_c02304{bottom:130.665211pt;}
.y1b_c02304{bottom:165.866875pt;}
.y1a_c02304{bottom:174.507067pt;}
.y18_c02304{bottom:245.225371pt;}
.y17_c02304{bottom:317.225563pt;}
.y15_c02304{bottom:361.386427pt;}
.y11_c02304{bottom:377.386939pt;}
.y16_c02304{bottom:407.786011pt;}
.y14_c02304{bottom:437.226235pt;}
.y13_c02304{bottom:453.226747pt;}
.y10_c02304{bottom:482.666971pt;}
.y12_c02304{bottom:497.386555pt;}
.yf_c02304{bottom:513.387067pt;}
.y1c_c02304{bottom:546.027067pt;}
.yb_c02304{bottom:593.385179pt;}
.yd_c02304{bottom:628.586875pt;}
.yc_c02304{bottom:637.227067pt;}
.ya_c02304{bottom:707.945339pt;}
.y9_c02304{bottom:779.945531pt;}
.y7_c02304{bottom:823.786427pt;}
.y3_c02304{bottom:839.786939pt;}
.y8_c02304{bottom:870.505979pt;}
.y6_c02304{bottom:899.946203pt;}
.y5_c02304{bottom:915.946715pt;}
.y2_c02304{bottom:945.386939pt;}
.y4_c02304{bottom:959.786555pt;}
.y1_c02304{bottom:975.787067pt;}
.ye_c02304{bottom:1008.747067pt;}
.h3_c02304{height:28.916250pt;}
.h1_c02304{height:37.063125pt;}
.h2_c02304{height:37.166250pt;}
.h4_c02304{height:48.581988pt;}
.h0_c02304{height:1122.666667pt;}
.w1_c02304{width:793.333333pt;}
.w0_c02304{width:793.626667pt;}
.x0_c02304{left:0.000000pt;}
.xd_c02304{left:104.000000pt;}
.x8_c02304{left:391.999872pt;}
.x4_c02304{left:396.160512pt;}
.xb_c02304{left:400.960000pt;}
.x7_c02304{left:404.799648pt;}
.x5_c02304{left:410.560128pt;}
.x1_c02304{left:411.840000pt;}
.xa_c02304{left:429.760320pt;}
.x9_c02304{left:437.439552pt;}
.x6_c02304{left:438.400512pt;}
.xc_c02304{left:450.560320pt;}
.x3_c02304{left:455.039904pt;}
.x2_c02304{left:468.159648pt;}
}





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

.ir_c02305:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02305{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02305;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02305{font-family:ff1_c02305;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02305;src:url('chunks/assets/font_2a2892afbdce31e417dd63a2.woff2')format("woff");}.ff2_c02305{font-family:ff2_c02305;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02305;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02305{font-family:ff3_c02305;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02305{vertical-align:0.000000px;}
.v1_c02305{vertical-align:1.439424px;}
.ls9_c02305{letter-spacing:-0.803088px;}
.lsa_c02305{letter-spacing:-0.574992px;}
.ls10_c02305{letter-spacing:-0.275616px;}
.lse_c02305{letter-spacing:-0.261360px;}
.ls6_c02305{letter-spacing:-0.242352px;}
.ls4_c02305{letter-spacing:-0.118800px;}
.ls13_c02305{letter-spacing:0.000000px;}
.ls1_c02305{letter-spacing:0.006048px;}
.lsd_c02305{letter-spacing:0.047520px;}
.ls5_c02305{letter-spacing:0.128304px;}
.ls7_c02305{letter-spacing:0.242352px;}
.lsc_c02305{letter-spacing:0.508464px;}
.ls12_c02305{letter-spacing:0.514080px;}
.lsf_c02305{letter-spacing:0.536976px;}
.lsb_c02305{letter-spacing:0.579744px;}
.ls11_c02305{letter-spacing:0.594000px;}
.ls8_c02305{letter-spacing:0.598752px;}
.ls2_c02305{letter-spacing:0.613008px;}
.ls0_c02305{letter-spacing:0.717552px;}
.ls3_c02305{letter-spacing:0.722304px;}
.sc__c02305{text-shadow:none;}
.sc0_c02305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02305{-webkit-text-stroke:0px transparent;}
.sc0_c02305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02305{word-spacing:-15.126048px;}
.ws9_c02305{word-spacing:-12.474000px;}
.ws7_c02305{word-spacing:-12.459744px;}
.ws8_c02305{word-spacing:-12.416976px;}
.ws2_c02305{word-spacing:-12.122352px;}
.ws14_c02305{word-spacing:-2.159136px;}
.ws10_c02305{word-spacing:-1.078704px;}
.wsc_c02305{word-spacing:-0.974160px;}
.ws11_c02305{word-spacing:-0.408672px;}
.wse_c02305{word-spacing:-0.118800px;}
.ws12_c02305{word-spacing:-0.099792px;}
.ws13_c02305{word-spacing:-0.085536px;}
.wsd_c02305{word-spacing:0.000000px;}
.wsf_c02305{word-spacing:0.441936px;}
.wsa_c02305{word-spacing:33.300288px;}
.ws5_c02305{word-spacing:36.742464px;}
.ws1_c02305{word-spacing:37.759392px;}
.ws0_c02305{word-spacing:38.020752px;}
.ws3_c02305{word-spacing:39.218256px;}
.ws4_c02305{word-spacing:39.902544px;}
.ws6_c02305{word-spacing:42.026688px;}
._0_c02305{margin-left:-1.948320px;}
._2_c02305{width:1.482624px;}
._4_c02305{width:4.267296px;}
._5_c02305{width:14.707872px;}
._1_c02305{width:50.252400px;}
._3_c02305{width:51.530688px;}
.fc0_c02305{color:rgb(0,0,0);}
.fs0_c02305{font-size:47.520000px;}
.fs1_c02305{font-size:60.480000px;}
.y0_c02305{bottom:0.000000px;}
.y19_c02305{bottom:146.998362px;}
.y1b_c02305{bottom:186.600234px;}
.y1a_c02305{bottom:196.320450px;}
.y18_c02305{bottom:275.878542px;}
.y17_c02305{bottom:356.878758px;}
.y15_c02305{bottom:406.559730px;}
.y11_c02305{bottom:424.560306px;}
.y16_c02305{bottom:458.759262px;}
.y14_c02305{bottom:491.879514px;}
.y13_c02305{bottom:509.880090px;}
.y10_c02305{bottom:543.000342px;}
.y12_c02305{bottom:559.559874px;}
.yf_c02305{bottom:577.560450px;}
.y1c_c02305{bottom:614.280450px;}
.yb_c02305{bottom:667.558326px;}
.yd_c02305{bottom:707.160234px;}
.yc_c02305{bottom:716.880450px;}
.ya_c02305{bottom:796.438506px;}
.y9_c02305{bottom:877.438722px;}
.y7_c02305{bottom:926.759730px;}
.y3_c02305{bottom:944.760306px;}
.y8_c02305{bottom:979.319226px;}
.y6_c02305{bottom:1012.439478px;}
.y5_c02305{bottom:1030.440054px;}
.y2_c02305{bottom:1063.560306px;}
.y4_c02305{bottom:1079.759874px;}
.y1_c02305{bottom:1097.760450px;}
.ye_c02305{bottom:1134.840450px;}
.h3_c02305{height:32.530781px;}
.h1_c02305{height:41.696016px;}
.h2_c02305{height:41.812031px;}
.h4_c02305{height:54.654737px;}
.h0_c02305{height:1263.000000px;}
.w1_c02305{width:892.500000px;}
.w0_c02305{width:892.830000px;}
.x0_c02305{left:0.000000px;}
.xd_c02305{left:117.000000px;}
.x8_c02305{left:440.999856px;}
.x4_c02305{left:445.680576px;}
.xb_c02305{left:451.080000px;}
.x7_c02305{left:455.399604px;}
.x5_c02305{left:461.880144px;}
.x1_c02305{left:463.320000px;}
.xa_c02305{left:483.480360px;}
.x9_c02305{left:492.119496px;}
.x6_c02305{left:493.200576px;}
.xc_c02305{left:506.880360px;}
.x3_c02305{left:511.919892px;}
.x2_c02305{left:526.679604px;}
@media print{
.v0_c02305{vertical-align:0.000000pt;}
.v1_c02305{vertical-align:1.279488pt;}
.ls9_c02305{letter-spacing:-0.713856pt;}
.lsa_c02305{letter-spacing:-0.511104pt;}
.ls10_c02305{letter-spacing:-0.244992pt;}
.lse_c02305{letter-spacing:-0.232320pt;}
.ls6_c02305{letter-spacing:-0.215424pt;}
.ls4_c02305{letter-spacing:-0.105600pt;}
.ls13_c02305{letter-spacing:0.000000pt;}
.ls1_c02305{letter-spacing:0.005376pt;}
.lsd_c02305{letter-spacing:0.042240pt;}
.ls5_c02305{letter-spacing:0.114048pt;}
.ls7_c02305{letter-spacing:0.215424pt;}
.lsc_c02305{letter-spacing:0.451968pt;}
.ls12_c02305{letter-spacing:0.456960pt;}
.lsf_c02305{letter-spacing:0.477312pt;}
.lsb_c02305{letter-spacing:0.515328pt;}
.ls11_c02305{letter-spacing:0.528000pt;}
.ls8_c02305{letter-spacing:0.532224pt;}
.ls2_c02305{letter-spacing:0.544896pt;}
.ls0_c02305{letter-spacing:0.637824pt;}
.ls3_c02305{letter-spacing:0.642048pt;}
.wsb_c02305{word-spacing:-13.445376pt;}
.ws9_c02305{word-spacing:-11.088000pt;}
.ws7_c02305{word-spacing:-11.075328pt;}
.ws8_c02305{word-spacing:-11.037312pt;}
.ws2_c02305{word-spacing:-10.775424pt;}
.ws14_c02305{word-spacing:-1.919232pt;}
.ws10_c02305{word-spacing:-0.958848pt;}
.wsc_c02305{word-spacing:-0.865920pt;}
.ws11_c02305{word-spacing:-0.363264pt;}
.wse_c02305{word-spacing:-0.105600pt;}
.ws12_c02305{word-spacing:-0.088704pt;}
.ws13_c02305{word-spacing:-0.076032pt;}
.wsd_c02305{word-spacing:0.000000pt;}
.wsf_c02305{word-spacing:0.392832pt;}
.wsa_c02305{word-spacing:29.600256pt;}
.ws5_c02305{word-spacing:32.659968pt;}
.ws1_c02305{word-spacing:33.563904pt;}
.ws0_c02305{word-spacing:33.796224pt;}
.ws3_c02305{word-spacing:34.860672pt;}
.ws4_c02305{word-spacing:35.468928pt;}
.ws6_c02305{word-spacing:37.357056pt;}
._0_c02305{margin-left:-1.731840pt;}
._2_c02305{width:1.317888pt;}
._4_c02305{width:3.793152pt;}
._5_c02305{width:13.073664pt;}
._1_c02305{width:44.668800pt;}
._3_c02305{width:45.805056pt;}
.fs0_c02305{font-size:42.240000pt;}
.fs1_c02305{font-size:53.760000pt;}
.y0_c02305{bottom:0.000000pt;}
.y19_c02305{bottom:130.665211pt;}
.y1b_c02305{bottom:165.866875pt;}
.y1a_c02305{bottom:174.507067pt;}
.y18_c02305{bottom:245.225371pt;}
.y17_c02305{bottom:317.225563pt;}
.y15_c02305{bottom:361.386427pt;}
.y11_c02305{bottom:377.386939pt;}
.y16_c02305{bottom:407.786011pt;}
.y14_c02305{bottom:437.226235pt;}
.y13_c02305{bottom:453.226747pt;}
.y10_c02305{bottom:482.666971pt;}
.y12_c02305{bottom:497.386555pt;}
.yf_c02305{bottom:513.387067pt;}
.y1c_c02305{bottom:546.027067pt;}
.yb_c02305{bottom:593.385179pt;}
.yd_c02305{bottom:628.586875pt;}
.yc_c02305{bottom:637.227067pt;}
.ya_c02305{bottom:707.945339pt;}
.y9_c02305{bottom:779.945531pt;}
.y7_c02305{bottom:823.786427pt;}
.y3_c02305{bottom:839.786939pt;}
.y8_c02305{bottom:870.505979pt;}
.y6_c02305{bottom:899.946203pt;}
.y5_c02305{bottom:915.946715pt;}
.y2_c02305{bottom:945.386939pt;}
.y4_c02305{bottom:959.786555pt;}
.y1_c02305{bottom:975.787067pt;}
.ye_c02305{bottom:1008.747067pt;}
.h3_c02305{height:28.916250pt;}
.h1_c02305{height:37.063125pt;}
.h2_c02305{height:37.166250pt;}
.h4_c02305{height:48.581988pt;}
.h0_c02305{height:1122.666667pt;}
.w1_c02305{width:793.333333pt;}
.w0_c02305{width:793.626667pt;}
.x0_c02305{left:0.000000pt;}
.xd_c02305{left:104.000000pt;}
.x8_c02305{left:391.999872pt;}
.x4_c02305{left:396.160512pt;}
.xb_c02305{left:400.960000pt;}
.x7_c02305{left:404.799648pt;}
.x5_c02305{left:410.560128pt;}
.x1_c02305{left:411.840000pt;}
.xa_c02305{left:429.760320pt;}
.x9_c02305{left:437.439552pt;}
.x6_c02305{left:438.400512pt;}
.xc_c02305{left:450.560320pt;}
.x3_c02305{left:455.039904pt;}
.x2_c02305{left:468.159648pt;}
}





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

.ir_c02306:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02306{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02306;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02306{font-family:ff1_c02306;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02306;src:url('chunks/assets/font_2a2892afbdce31e417dd63a2.woff2')format("woff");}.ff2_c02306{font-family:ff2_c02306;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02306;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02306{font-family:ff3_c02306;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02306{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02306{vertical-align:0.000000px;}
.v1_c02306{vertical-align:1.439424px;}
.ls9_c02306{letter-spacing:-0.803088px;}
.lsa_c02306{letter-spacing:-0.574992px;}
.ls10_c02306{letter-spacing:-0.275616px;}
.lse_c02306{letter-spacing:-0.261360px;}
.ls6_c02306{letter-spacing:-0.242352px;}
.ls4_c02306{letter-spacing:-0.118800px;}
.ls13_c02306{letter-spacing:0.000000px;}
.ls1_c02306{letter-spacing:0.006048px;}
.lsd_c02306{letter-spacing:0.047520px;}
.ls5_c02306{letter-spacing:0.128304px;}
.ls7_c02306{letter-spacing:0.242352px;}
.lsc_c02306{letter-spacing:0.508464px;}
.ls12_c02306{letter-spacing:0.514080px;}
.lsf_c02306{letter-spacing:0.536976px;}
.lsb_c02306{letter-spacing:0.579744px;}
.ls11_c02306{letter-spacing:0.594000px;}
.ls8_c02306{letter-spacing:0.598752px;}
.ls2_c02306{letter-spacing:0.613008px;}
.ls0_c02306{letter-spacing:0.717552px;}
.ls3_c02306{letter-spacing:0.722304px;}
.sc__c02306{text-shadow:none;}
.sc0_c02306{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02306{-webkit-text-stroke:0px transparent;}
.sc0_c02306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02306{word-spacing:-15.126048px;}
.ws9_c02306{word-spacing:-12.474000px;}
.ws7_c02306{word-spacing:-12.459744px;}
.ws8_c02306{word-spacing:-12.416976px;}
.ws2_c02306{word-spacing:-12.122352px;}
.ws14_c02306{word-spacing:-2.159136px;}
.ws10_c02306{word-spacing:-1.078704px;}
.wsc_c02306{word-spacing:-0.974160px;}
.ws11_c02306{word-spacing:-0.408672px;}
.wse_c02306{word-spacing:-0.118800px;}
.ws12_c02306{word-spacing:-0.099792px;}
.ws13_c02306{word-spacing:-0.085536px;}
.wsd_c02306{word-spacing:0.000000px;}
.wsf_c02306{word-spacing:0.441936px;}
.wsa_c02306{word-spacing:33.300288px;}
.ws5_c02306{word-spacing:36.742464px;}
.ws1_c02306{word-spacing:37.759392px;}
.ws0_c02306{word-spacing:38.020752px;}
.ws3_c02306{word-spacing:39.218256px;}
.ws4_c02306{word-spacing:39.902544px;}
.ws6_c02306{word-spacing:42.026688px;}
._0_c02306{margin-left:-1.948320px;}
._2_c02306{width:1.482624px;}
._4_c02306{width:4.267296px;}
._5_c02306{width:14.707872px;}
._1_c02306{width:50.252400px;}
._3_c02306{width:51.530688px;}
.fc0_c02306{color:rgb(0,0,0);}
.fs0_c02306{font-size:47.520000px;}
.fs1_c02306{font-size:60.480000px;}
.y0_c02306{bottom:0.000000px;}
.y19_c02306{bottom:146.998362px;}
.y1b_c02306{bottom:186.600234px;}
.y1a_c02306{bottom:196.320450px;}
.y18_c02306{bottom:275.878542px;}
.y17_c02306{bottom:356.878758px;}
.y15_c02306{bottom:406.559730px;}
.y11_c02306{bottom:424.560306px;}
.y16_c02306{bottom:458.759262px;}
.y14_c02306{bottom:491.879514px;}
.y13_c02306{bottom:509.880090px;}
.y10_c02306{bottom:543.000342px;}
.y12_c02306{bottom:559.559874px;}
.yf_c02306{bottom:577.560450px;}
.y1c_c02306{bottom:614.280450px;}
.yb_c02306{bottom:667.558326px;}
.yd_c02306{bottom:707.160234px;}
.yc_c02306{bottom:716.880450px;}
.ya_c02306{bottom:796.438506px;}
.y9_c02306{bottom:877.438722px;}
.y7_c02306{bottom:926.759730px;}
.y3_c02306{bottom:944.760306px;}
.y8_c02306{bottom:979.319226px;}
.y6_c02306{bottom:1012.439478px;}
.y5_c02306{bottom:1030.440054px;}
.y2_c02306{bottom:1063.560306px;}
.y4_c02306{bottom:1079.759874px;}
.y1_c02306{bottom:1097.760450px;}
.ye_c02306{bottom:1134.840450px;}
.h3_c02306{height:32.530781px;}
.h1_c02306{height:41.696016px;}
.h2_c02306{height:41.812031px;}
.h4_c02306{height:54.654737px;}
.h0_c02306{height:1263.000000px;}
.w1_c02306{width:892.500000px;}
.w0_c02306{width:892.830000px;}
.x0_c02306{left:0.000000px;}
.xd_c02306{left:117.000000px;}
.x8_c02306{left:440.999856px;}
.x4_c02306{left:445.680576px;}
.xb_c02306{left:451.080000px;}
.x7_c02306{left:455.399604px;}
.x5_c02306{left:461.880144px;}
.x1_c02306{left:463.320000px;}
.xa_c02306{left:483.480360px;}
.x9_c02306{left:492.119496px;}
.x6_c02306{left:493.200576px;}
.xc_c02306{left:506.880360px;}
.x3_c02306{left:511.919892px;}
.x2_c02306{left:526.679604px;}
@media print{
.v0_c02306{vertical-align:0.000000pt;}
.v1_c02306{vertical-align:1.279488pt;}
.ls9_c02306{letter-spacing:-0.713856pt;}
.lsa_c02306{letter-spacing:-0.511104pt;}
.ls10_c02306{letter-spacing:-0.244992pt;}
.lse_c02306{letter-spacing:-0.232320pt;}
.ls6_c02306{letter-spacing:-0.215424pt;}
.ls4_c02306{letter-spacing:-0.105600pt;}
.ls13_c02306{letter-spacing:0.000000pt;}
.ls1_c02306{letter-spacing:0.005376pt;}
.lsd_c02306{letter-spacing:0.042240pt;}
.ls5_c02306{letter-spacing:0.114048pt;}
.ls7_c02306{letter-spacing:0.215424pt;}
.lsc_c02306{letter-spacing:0.451968pt;}
.ls12_c02306{letter-spacing:0.456960pt;}
.lsf_c02306{letter-spacing:0.477312pt;}
.lsb_c02306{letter-spacing:0.515328pt;}
.ls11_c02306{letter-spacing:0.528000pt;}
.ls8_c02306{letter-spacing:0.532224pt;}
.ls2_c02306{letter-spacing:0.544896pt;}
.ls0_c02306{letter-spacing:0.637824pt;}
.ls3_c02306{letter-spacing:0.642048pt;}
.wsb_c02306{word-spacing:-13.445376pt;}
.ws9_c02306{word-spacing:-11.088000pt;}
.ws7_c02306{word-spacing:-11.075328pt;}
.ws8_c02306{word-spacing:-11.037312pt;}
.ws2_c02306{word-spacing:-10.775424pt;}
.ws14_c02306{word-spacing:-1.919232pt;}
.ws10_c02306{word-spacing:-0.958848pt;}
.wsc_c02306{word-spacing:-0.865920pt;}
.ws11_c02306{word-spacing:-0.363264pt;}
.wse_c02306{word-spacing:-0.105600pt;}
.ws12_c02306{word-spacing:-0.088704pt;}
.ws13_c02306{word-spacing:-0.076032pt;}
.wsd_c02306{word-spacing:0.000000pt;}
.wsf_c02306{word-spacing:0.392832pt;}
.wsa_c02306{word-spacing:29.600256pt;}
.ws5_c02306{word-spacing:32.659968pt;}
.ws1_c02306{word-spacing:33.563904pt;}
.ws0_c02306{word-spacing:33.796224pt;}
.ws3_c02306{word-spacing:34.860672pt;}
.ws4_c02306{word-spacing:35.468928pt;}
.ws6_c02306{word-spacing:37.357056pt;}
._0_c02306{margin-left:-1.731840pt;}
._2_c02306{width:1.317888pt;}
._4_c02306{width:3.793152pt;}
._5_c02306{width:13.073664pt;}
._1_c02306{width:44.668800pt;}
._3_c02306{width:45.805056pt;}
.fs0_c02306{font-size:42.240000pt;}
.fs1_c02306{font-size:53.760000pt;}
.y0_c02306{bottom:0.000000pt;}
.y19_c02306{bottom:130.665211pt;}
.y1b_c02306{bottom:165.866875pt;}
.y1a_c02306{bottom:174.507067pt;}
.y18_c02306{bottom:245.225371pt;}
.y17_c02306{bottom:317.225563pt;}
.y15_c02306{bottom:361.386427pt;}
.y11_c02306{bottom:377.386939pt;}
.y16_c02306{bottom:407.786011pt;}
.y14_c02306{bottom:437.226235pt;}
.y13_c02306{bottom:453.226747pt;}
.y10_c02306{bottom:482.666971pt;}
.y12_c02306{bottom:497.386555pt;}
.yf_c02306{bottom:513.387067pt;}
.y1c_c02306{bottom:546.027067pt;}
.yb_c02306{bottom:593.385179pt;}
.yd_c02306{bottom:628.586875pt;}
.yc_c02306{bottom:637.227067pt;}
.ya_c02306{bottom:707.945339pt;}
.y9_c02306{bottom:779.945531pt;}
.y7_c02306{bottom:823.786427pt;}
.y3_c02306{bottom:839.786939pt;}
.y8_c02306{bottom:870.505979pt;}
.y6_c02306{bottom:899.946203pt;}
.y5_c02306{bottom:915.946715pt;}
.y2_c02306{bottom:945.386939pt;}
.y4_c02306{bottom:959.786555pt;}
.y1_c02306{bottom:975.787067pt;}
.ye_c02306{bottom:1008.747067pt;}
.h3_c02306{height:28.916250pt;}
.h1_c02306{height:37.063125pt;}
.h2_c02306{height:37.166250pt;}
.h4_c02306{height:48.581988pt;}
.h0_c02306{height:1122.666667pt;}
.w1_c02306{width:793.333333pt;}
.w0_c02306{width:793.626667pt;}
.x0_c02306{left:0.000000pt;}
.xd_c02306{left:104.000000pt;}
.x8_c02306{left:391.999872pt;}
.x4_c02306{left:396.160512pt;}
.xb_c02306{left:400.960000pt;}
.x7_c02306{left:404.799648pt;}
.x5_c02306{left:410.560128pt;}
.x1_c02306{left:411.840000pt;}
.xa_c02306{left:429.760320pt;}
.x9_c02306{left:437.439552pt;}
.x6_c02306{left:438.400512pt;}
.xc_c02306{left:450.560320pt;}
.x3_c02306{left:455.039904pt;}
.x2_c02306{left:468.159648pt;}
}





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

.ir_c02307:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02307{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02307;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02307{font-family:ff1_c02307;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02307;src:url('chunks/assets/font_2a2892afbdce31e417dd63a2.woff2')format("woff");}.ff2_c02307{font-family:ff2_c02307;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02307;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02307{font-family:ff3_c02307;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02307{vertical-align:0.000000px;}
.v1_c02307{vertical-align:1.439424px;}
.ls9_c02307{letter-spacing:-0.803088px;}
.lsa_c02307{letter-spacing:-0.574992px;}
.ls10_c02307{letter-spacing:-0.275616px;}
.lse_c02307{letter-spacing:-0.261360px;}
.ls6_c02307{letter-spacing:-0.242352px;}
.ls4_c02307{letter-spacing:-0.118800px;}
.ls13_c02307{letter-spacing:0.000000px;}
.ls1_c02307{letter-spacing:0.006048px;}
.lsd_c02307{letter-spacing:0.047520px;}
.ls5_c02307{letter-spacing:0.128304px;}
.ls7_c02307{letter-spacing:0.242352px;}
.lsc_c02307{letter-spacing:0.508464px;}
.ls12_c02307{letter-spacing:0.514080px;}
.lsf_c02307{letter-spacing:0.536976px;}
.lsb_c02307{letter-spacing:0.579744px;}
.ls11_c02307{letter-spacing:0.594000px;}
.ls8_c02307{letter-spacing:0.598752px;}
.ls2_c02307{letter-spacing:0.613008px;}
.ls0_c02307{letter-spacing:0.717552px;}
.ls3_c02307{letter-spacing:0.722304px;}
.sc__c02307{text-shadow:none;}
.sc0_c02307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02307{-webkit-text-stroke:0px transparent;}
.sc0_c02307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02307{word-spacing:-15.126048px;}
.ws9_c02307{word-spacing:-12.474000px;}
.ws7_c02307{word-spacing:-12.459744px;}
.ws8_c02307{word-spacing:-12.416976px;}
.ws2_c02307{word-spacing:-12.122352px;}
.ws14_c02307{word-spacing:-2.159136px;}
.ws10_c02307{word-spacing:-1.078704px;}
.wsc_c02307{word-spacing:-0.974160px;}
.ws11_c02307{word-spacing:-0.408672px;}
.wse_c02307{word-spacing:-0.118800px;}
.ws12_c02307{word-spacing:-0.099792px;}
.ws13_c02307{word-spacing:-0.085536px;}
.wsd_c02307{word-spacing:0.000000px;}
.wsf_c02307{word-spacing:0.441936px;}
.wsa_c02307{word-spacing:33.300288px;}
.ws5_c02307{word-spacing:36.742464px;}
.ws1_c02307{word-spacing:37.759392px;}
.ws0_c02307{word-spacing:38.020752px;}
.ws3_c02307{word-spacing:39.218256px;}
.ws4_c02307{word-spacing:39.902544px;}
.ws6_c02307{word-spacing:42.026688px;}
._0_c02307{margin-left:-1.948320px;}
._2_c02307{width:1.482624px;}
._4_c02307{width:4.267296px;}
._5_c02307{width:14.707872px;}
._1_c02307{width:50.252400px;}
._3_c02307{width:51.530688px;}
.fc0_c02307{color:rgb(0,0,0);}
.fs0_c02307{font-size:47.520000px;}
.fs1_c02307{font-size:60.480000px;}
.y0_c02307{bottom:0.000000px;}
.y19_c02307{bottom:146.998362px;}
.y1b_c02307{bottom:186.600234px;}
.y1a_c02307{bottom:196.320450px;}
.y18_c02307{bottom:275.878542px;}
.y17_c02307{bottom:356.878758px;}
.y15_c02307{bottom:406.559730px;}
.y11_c02307{bottom:424.560306px;}
.y16_c02307{bottom:458.759262px;}
.y14_c02307{bottom:491.879514px;}
.y13_c02307{bottom:509.880090px;}
.y10_c02307{bottom:543.000342px;}
.y12_c02307{bottom:559.559874px;}
.yf_c02307{bottom:577.560450px;}
.y1c_c02307{bottom:614.280450px;}
.yb_c02307{bottom:667.558326px;}
.yd_c02307{bottom:707.160234px;}
.yc_c02307{bottom:716.880450px;}
.ya_c02307{bottom:796.438506px;}
.y9_c02307{bottom:877.438722px;}
.y7_c02307{bottom:926.759730px;}
.y3_c02307{bottom:944.760306px;}
.y8_c02307{bottom:979.319226px;}
.y6_c02307{bottom:1012.439478px;}
.y5_c02307{bottom:1030.440054px;}
.y2_c02307{bottom:1063.560306px;}
.y4_c02307{bottom:1079.759874px;}
.y1_c02307{bottom:1097.760450px;}
.ye_c02307{bottom:1134.840450px;}
.h3_c02307{height:32.530781px;}
.h1_c02307{height:41.696016px;}
.h2_c02307{height:41.812031px;}
.h4_c02307{height:54.654737px;}
.h0_c02307{height:1263.000000px;}
.w1_c02307{width:892.500000px;}
.w0_c02307{width:892.830000px;}
.x0_c02307{left:0.000000px;}
.xd_c02307{left:117.000000px;}
.x8_c02307{left:440.999856px;}
.x4_c02307{left:445.680576px;}
.xb_c02307{left:451.080000px;}
.x7_c02307{left:455.399604px;}
.x5_c02307{left:461.880144px;}
.x1_c02307{left:463.320000px;}
.xa_c02307{left:483.480360px;}
.x9_c02307{left:492.119496px;}
.x6_c02307{left:493.200576px;}
.xc_c02307{left:506.880360px;}
.x3_c02307{left:511.919892px;}
.x2_c02307{left:526.679604px;}
@media print{
.v0_c02307{vertical-align:0.000000pt;}
.v1_c02307{vertical-align:1.279488pt;}
.ls9_c02307{letter-spacing:-0.713856pt;}
.lsa_c02307{letter-spacing:-0.511104pt;}
.ls10_c02307{letter-spacing:-0.244992pt;}
.lse_c02307{letter-spacing:-0.232320pt;}
.ls6_c02307{letter-spacing:-0.215424pt;}
.ls4_c02307{letter-spacing:-0.105600pt;}
.ls13_c02307{letter-spacing:0.000000pt;}
.ls1_c02307{letter-spacing:0.005376pt;}
.lsd_c02307{letter-spacing:0.042240pt;}
.ls5_c02307{letter-spacing:0.114048pt;}
.ls7_c02307{letter-spacing:0.215424pt;}
.lsc_c02307{letter-spacing:0.451968pt;}
.ls12_c02307{letter-spacing:0.456960pt;}
.lsf_c02307{letter-spacing:0.477312pt;}
.lsb_c02307{letter-spacing:0.515328pt;}
.ls11_c02307{letter-spacing:0.528000pt;}
.ls8_c02307{letter-spacing:0.532224pt;}
.ls2_c02307{letter-spacing:0.544896pt;}
.ls0_c02307{letter-spacing:0.637824pt;}
.ls3_c02307{letter-spacing:0.642048pt;}
.wsb_c02307{word-spacing:-13.445376pt;}
.ws9_c02307{word-spacing:-11.088000pt;}
.ws7_c02307{word-spacing:-11.075328pt;}
.ws8_c02307{word-spacing:-11.037312pt;}
.ws2_c02307{word-spacing:-10.775424pt;}
.ws14_c02307{word-spacing:-1.919232pt;}
.ws10_c02307{word-spacing:-0.958848pt;}
.wsc_c02307{word-spacing:-0.865920pt;}
.ws11_c02307{word-spacing:-0.363264pt;}
.wse_c02307{word-spacing:-0.105600pt;}
.ws12_c02307{word-spacing:-0.088704pt;}
.ws13_c02307{word-spacing:-0.076032pt;}
.wsd_c02307{word-spacing:0.000000pt;}
.wsf_c02307{word-spacing:0.392832pt;}
.wsa_c02307{word-spacing:29.600256pt;}
.ws5_c02307{word-spacing:32.659968pt;}
.ws1_c02307{word-spacing:33.563904pt;}
.ws0_c02307{word-spacing:33.796224pt;}
.ws3_c02307{word-spacing:34.860672pt;}
.ws4_c02307{word-spacing:35.468928pt;}
.ws6_c02307{word-spacing:37.357056pt;}
._0_c02307{margin-left:-1.731840pt;}
._2_c02307{width:1.317888pt;}
._4_c02307{width:3.793152pt;}
._5_c02307{width:13.073664pt;}
._1_c02307{width:44.668800pt;}
._3_c02307{width:45.805056pt;}
.fs0_c02307{font-size:42.240000pt;}
.fs1_c02307{font-size:53.760000pt;}
.y0_c02307{bottom:0.000000pt;}
.y19_c02307{bottom:130.665211pt;}
.y1b_c02307{bottom:165.866875pt;}
.y1a_c02307{bottom:174.507067pt;}
.y18_c02307{bottom:245.225371pt;}
.y17_c02307{bottom:317.225563pt;}
.y15_c02307{bottom:361.386427pt;}
.y11_c02307{bottom:377.386939pt;}
.y16_c02307{bottom:407.786011pt;}
.y14_c02307{bottom:437.226235pt;}
.y13_c02307{bottom:453.226747pt;}
.y10_c02307{bottom:482.666971pt;}
.y12_c02307{bottom:497.386555pt;}
.yf_c02307{bottom:513.387067pt;}
.y1c_c02307{bottom:546.027067pt;}
.yb_c02307{bottom:593.385179pt;}
.yd_c02307{bottom:628.586875pt;}
.yc_c02307{bottom:637.227067pt;}
.ya_c02307{bottom:707.945339pt;}
.y9_c02307{bottom:779.945531pt;}
.y7_c02307{bottom:823.786427pt;}
.y3_c02307{bottom:839.786939pt;}
.y8_c02307{bottom:870.505979pt;}
.y6_c02307{bottom:899.946203pt;}
.y5_c02307{bottom:915.946715pt;}
.y2_c02307{bottom:945.386939pt;}
.y4_c02307{bottom:959.786555pt;}
.y1_c02307{bottom:975.787067pt;}
.ye_c02307{bottom:1008.747067pt;}
.h3_c02307{height:28.916250pt;}
.h1_c02307{height:37.063125pt;}
.h2_c02307{height:37.166250pt;}
.h4_c02307{height:48.581988pt;}
.h0_c02307{height:1122.666667pt;}
.w1_c02307{width:793.333333pt;}
.w0_c02307{width:793.626667pt;}
.x0_c02307{left:0.000000pt;}
.xd_c02307{left:104.000000pt;}
.x8_c02307{left:391.999872pt;}
.x4_c02307{left:396.160512pt;}
.xb_c02307{left:400.960000pt;}
.x7_c02307{left:404.799648pt;}
.x5_c02307{left:410.560128pt;}
.x1_c02307{left:411.840000pt;}
.xa_c02307{left:429.760320pt;}
.x9_c02307{left:437.439552pt;}
.x6_c02307{left:438.400512pt;}
.xc_c02307{left:450.560320pt;}
.x3_c02307{left:455.039904pt;}
.x2_c02307{left:468.159648pt;}
}





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

.ir_c02308:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02308{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02308;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02308{font-family:ff1_c02308;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02308;src:url('chunks/assets/font_fb7120810655c43ac100b07e.woff2')format("woff");}.ff2_c02308{font-family:ff2_c02308;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02308;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02308{font-family:ff3_c02308;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02308{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02308{vertical-align:0.000000px;}
.v1_c02308{vertical-align:1.439424px;}
.ls9_c02308{letter-spacing:-0.803088px;}
.lsa_c02308{letter-spacing:-0.574992px;}
.ls10_c02308{letter-spacing:-0.275616px;}
.lse_c02308{letter-spacing:-0.261360px;}
.lsd_c02308{letter-spacing:-0.256608px;}
.ls6_c02308{letter-spacing:-0.242352px;}
.ls4_c02308{letter-spacing:-0.118800px;}
.ls13_c02308{letter-spacing:0.000000px;}
.ls1_c02308{letter-spacing:0.006048px;}
.ls5_c02308{letter-spacing:0.128304px;}
.ls7_c02308{letter-spacing:0.242352px;}
.lsc_c02308{letter-spacing:0.508464px;}
.ls12_c02308{letter-spacing:0.514080px;}
.lsf_c02308{letter-spacing:0.536976px;}
.lsb_c02308{letter-spacing:0.579744px;}
.ls11_c02308{letter-spacing:0.594000px;}
.ls8_c02308{letter-spacing:0.598752px;}
.ls2_c02308{letter-spacing:0.613008px;}
.ls0_c02308{letter-spacing:0.717552px;}
.ls3_c02308{letter-spacing:0.722304px;}
.sc__c02308{text-shadow:none;}
.sc0_c02308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02308{-webkit-text-stroke:0px transparent;}
.sc0_c02308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02308{word-spacing:-15.126048px;}
.ws9_c02308{word-spacing:-12.474000px;}
.ws7_c02308{word-spacing:-12.459744px;}
.ws8_c02308{word-spacing:-12.416976px;}
.ws2_c02308{word-spacing:-12.122352px;}
.wsc_c02308{word-spacing:-11.637648px;}
.ws15_c02308{word-spacing:-2.159136px;}
.ws11_c02308{word-spacing:-1.078704px;}
.wsd_c02308{word-spacing:-0.974160px;}
.wsf_c02308{word-spacing:-0.118800px;}
.ws12_c02308{word-spacing:-0.104544px;}
.ws13_c02308{word-spacing:-0.099792px;}
.ws14_c02308{word-spacing:-0.085536px;}
.wse_c02308{word-spacing:0.000000px;}
.ws10_c02308{word-spacing:0.441936px;}
.wsa_c02308{word-spacing:33.300288px;}
.ws5_c02308{word-spacing:36.742464px;}
.ws1_c02308{word-spacing:37.759392px;}
.ws0_c02308{word-spacing:38.020752px;}
.ws3_c02308{word-spacing:39.218256px;}
.ws4_c02308{word-spacing:39.902544px;}
.ws6_c02308{word-spacing:42.026688px;}
._0_c02308{margin-left:-1.948320px;}
._2_c02308{width:1.482624px;}
._4_c02308{width:4.267296px;}
._5_c02308{width:14.707872px;}
._1_c02308{width:50.252400px;}
._3_c02308{width:51.530688px;}
.fc0_c02308{color:rgb(0,0,0);}
.fs0_c02308{font-size:47.520000px;}
.fs1_c02308{font-size:60.480000px;}
.y0_c02308{bottom:0.000000px;}
.y19_c02308{bottom:146.998362px;}
.y1b_c02308{bottom:186.600234px;}
.y1a_c02308{bottom:196.320450px;}
.y18_c02308{bottom:275.878542px;}
.y17_c02308{bottom:356.878758px;}
.y15_c02308{bottom:406.559730px;}
.y11_c02308{bottom:424.560306px;}
.y16_c02308{bottom:458.759262px;}
.y14_c02308{bottom:491.879514px;}
.y13_c02308{bottom:509.880090px;}
.y10_c02308{bottom:543.000342px;}
.y12_c02308{bottom:559.559874px;}
.yf_c02308{bottom:577.560450px;}
.y1c_c02308{bottom:614.280450px;}
.yb_c02308{bottom:667.558326px;}
.yd_c02308{bottom:707.160234px;}
.yc_c02308{bottom:716.880450px;}
.ya_c02308{bottom:796.438506px;}
.y9_c02308{bottom:877.438722px;}
.y7_c02308{bottom:926.759730px;}
.y3_c02308{bottom:944.760306px;}
.y8_c02308{bottom:979.319226px;}
.y6_c02308{bottom:1012.439478px;}
.y5_c02308{bottom:1030.440054px;}
.y2_c02308{bottom:1063.560306px;}
.y4_c02308{bottom:1079.759874px;}
.y1_c02308{bottom:1097.760450px;}
.ye_c02308{bottom:1134.840450px;}
.h3_c02308{height:32.530781px;}
.h1_c02308{height:41.696016px;}
.h2_c02308{height:41.812031px;}
.h4_c02308{height:54.654737px;}
.h0_c02308{height:1263.000000px;}
.w1_c02308{width:892.500000px;}
.w0_c02308{width:892.830000px;}
.x0_c02308{left:0.000000px;}
.xd_c02308{left:117.000000px;}
.x8_c02308{left:440.999856px;}
.x4_c02308{left:445.680576px;}
.xb_c02308{left:451.080000px;}
.x7_c02308{left:455.399604px;}
.x5_c02308{left:461.880144px;}
.x1_c02308{left:463.320000px;}
.xa_c02308{left:483.480360px;}
.x9_c02308{left:492.119496px;}
.x6_c02308{left:493.200576px;}
.xc_c02308{left:506.880360px;}
.x3_c02308{left:511.919892px;}
.x2_c02308{left:526.679604px;}
@media print{
.v0_c02308{vertical-align:0.000000pt;}
.v1_c02308{vertical-align:1.279488pt;}
.ls9_c02308{letter-spacing:-0.713856pt;}
.lsa_c02308{letter-spacing:-0.511104pt;}
.ls10_c02308{letter-spacing:-0.244992pt;}
.lse_c02308{letter-spacing:-0.232320pt;}
.lsd_c02308{letter-spacing:-0.228096pt;}
.ls6_c02308{letter-spacing:-0.215424pt;}
.ls4_c02308{letter-spacing:-0.105600pt;}
.ls13_c02308{letter-spacing:0.000000pt;}
.ls1_c02308{letter-spacing:0.005376pt;}
.ls5_c02308{letter-spacing:0.114048pt;}
.ls7_c02308{letter-spacing:0.215424pt;}
.lsc_c02308{letter-spacing:0.451968pt;}
.ls12_c02308{letter-spacing:0.456960pt;}
.lsf_c02308{letter-spacing:0.477312pt;}
.lsb_c02308{letter-spacing:0.515328pt;}
.ls11_c02308{letter-spacing:0.528000pt;}
.ls8_c02308{letter-spacing:0.532224pt;}
.ls2_c02308{letter-spacing:0.544896pt;}
.ls0_c02308{letter-spacing:0.637824pt;}
.ls3_c02308{letter-spacing:0.642048pt;}
.wsb_c02308{word-spacing:-13.445376pt;}
.ws9_c02308{word-spacing:-11.088000pt;}
.ws7_c02308{word-spacing:-11.075328pt;}
.ws8_c02308{word-spacing:-11.037312pt;}
.ws2_c02308{word-spacing:-10.775424pt;}
.wsc_c02308{word-spacing:-10.344576pt;}
.ws15_c02308{word-spacing:-1.919232pt;}
.ws11_c02308{word-spacing:-0.958848pt;}
.wsd_c02308{word-spacing:-0.865920pt;}
.wsf_c02308{word-spacing:-0.105600pt;}
.ws12_c02308{word-spacing:-0.092928pt;}
.ws13_c02308{word-spacing:-0.088704pt;}
.ws14_c02308{word-spacing:-0.076032pt;}
.wse_c02308{word-spacing:0.000000pt;}
.ws10_c02308{word-spacing:0.392832pt;}
.wsa_c02308{word-spacing:29.600256pt;}
.ws5_c02308{word-spacing:32.659968pt;}
.ws1_c02308{word-spacing:33.563904pt;}
.ws0_c02308{word-spacing:33.796224pt;}
.ws3_c02308{word-spacing:34.860672pt;}
.ws4_c02308{word-spacing:35.468928pt;}
.ws6_c02308{word-spacing:37.357056pt;}
._0_c02308{margin-left:-1.731840pt;}
._2_c02308{width:1.317888pt;}
._4_c02308{width:3.793152pt;}
._5_c02308{width:13.073664pt;}
._1_c02308{width:44.668800pt;}
._3_c02308{width:45.805056pt;}
.fs0_c02308{font-size:42.240000pt;}
.fs1_c02308{font-size:53.760000pt;}
.y0_c02308{bottom:0.000000pt;}
.y19_c02308{bottom:130.665211pt;}
.y1b_c02308{bottom:165.866875pt;}
.y1a_c02308{bottom:174.507067pt;}
.y18_c02308{bottom:245.225371pt;}
.y17_c02308{bottom:317.225563pt;}
.y15_c02308{bottom:361.386427pt;}
.y11_c02308{bottom:377.386939pt;}
.y16_c02308{bottom:407.786011pt;}
.y14_c02308{bottom:437.226235pt;}
.y13_c02308{bottom:453.226747pt;}
.y10_c02308{bottom:482.666971pt;}
.y12_c02308{bottom:497.386555pt;}
.yf_c02308{bottom:513.387067pt;}
.y1c_c02308{bottom:546.027067pt;}
.yb_c02308{bottom:593.385179pt;}
.yd_c02308{bottom:628.586875pt;}
.yc_c02308{bottom:637.227067pt;}
.ya_c02308{bottom:707.945339pt;}
.y9_c02308{bottom:779.945531pt;}
.y7_c02308{bottom:823.786427pt;}
.y3_c02308{bottom:839.786939pt;}
.y8_c02308{bottom:870.505979pt;}
.y6_c02308{bottom:899.946203pt;}
.y5_c02308{bottom:915.946715pt;}
.y2_c02308{bottom:945.386939pt;}
.y4_c02308{bottom:959.786555pt;}
.y1_c02308{bottom:975.787067pt;}
.ye_c02308{bottom:1008.747067pt;}
.h3_c02308{height:28.916250pt;}
.h1_c02308{height:37.063125pt;}
.h2_c02308{height:37.166250pt;}
.h4_c02308{height:48.581988pt;}
.h0_c02308{height:1122.666667pt;}
.w1_c02308{width:793.333333pt;}
.w0_c02308{width:793.626667pt;}
.x0_c02308{left:0.000000pt;}
.xd_c02308{left:104.000000pt;}
.x8_c02308{left:391.999872pt;}
.x4_c02308{left:396.160512pt;}
.xb_c02308{left:400.960000pt;}
.x7_c02308{left:404.799648pt;}
.x5_c02308{left:410.560128pt;}
.x1_c02308{left:411.840000pt;}
.xa_c02308{left:429.760320pt;}
.x9_c02308{left:437.439552pt;}
.x6_c02308{left:438.400512pt;}
.xc_c02308{left:450.560320pt;}
.x3_c02308{left:455.039904pt;}
.x2_c02308{left:468.159648pt;}
}





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

.ir_c02309:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02309{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02309;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02309{font-family:ff1_c02309;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02309;src:url('chunks/assets/font_5edf91dfa0e0ba8f4e6e7ac4.woff2')format("woff");}.ff2_c02309{font-family:ff2_c02309;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02309;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02309{font-family:ff3_c02309;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02309{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02309{vertical-align:0.000000px;}
.v1_c02309{vertical-align:1.439424px;}
.ls15_c02309{letter-spacing:-0.826848px;}
.ls13_c02309{letter-spacing:-0.807840px;}
.ls16_c02309{letter-spacing:-0.617760px;}
.ls9_c02309{letter-spacing:-0.574992px;}
.ls14_c02309{letter-spacing:-0.327888px;}
.lsf_c02309{letter-spacing:-0.275616px;}
.lsd_c02309{letter-spacing:-0.261360px;}
.lsc_c02309{letter-spacing:-0.256608px;}
.ls6_c02309{letter-spacing:-0.242352px;}
.ls4_c02309{letter-spacing:-0.118800px;}
.ls12_c02309{letter-spacing:0.000000px;}
.ls1_c02309{letter-spacing:0.006048px;}
.ls17_c02309{letter-spacing:0.038016px;}
.ls5_c02309{letter-spacing:0.128304px;}
.ls7_c02309{letter-spacing:0.242352px;}
.lsb_c02309{letter-spacing:0.508464px;}
.ls11_c02309{letter-spacing:0.514080px;}
.lse_c02309{letter-spacing:0.536976px;}
.lsa_c02309{letter-spacing:0.579744px;}
.ls10_c02309{letter-spacing:0.594000px;}
.ls8_c02309{letter-spacing:0.598752px;}
.ls2_c02309{letter-spacing:0.613008px;}
.ls0_c02309{letter-spacing:0.717552px;}
.ls3_c02309{letter-spacing:0.722304px;}
.sc__c02309{text-shadow:none;}
.sc0_c02309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02309{-webkit-text-stroke:0px transparent;}
.sc0_c02309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02309{word-spacing:-15.126048px;}
.wsa_c02309{word-spacing:-12.474000px;}
.ws8_c02309{word-spacing:-12.459744px;}
.ws9_c02309{word-spacing:-12.416976px;}
.ws2_c02309{word-spacing:-12.122352px;}
.ws4_c02309{word-spacing:-11.637648px;}
.wsf_c02309{word-spacing:-11.262240px;}
.ws17_c02309{word-spacing:-2.159136px;}
.ws13_c02309{word-spacing:-1.078704px;}
.ws10_c02309{word-spacing:-0.974160px;}
.ws1a_c02309{word-spacing:-0.399168px;}
.ws12_c02309{word-spacing:-0.118800px;}
.ws14_c02309{word-spacing:-0.104544px;}
.ws15_c02309{word-spacing:-0.099792px;}
.ws16_c02309{word-spacing:-0.085536px;}
.ws19_c02309{word-spacing:-0.033264px;}
.ws11_c02309{word-spacing:0.000000px;}
.ws18_c02309{word-spacing:0.446688px;}
.wsd_c02309{word-spacing:1.330560px;}
.wsb_c02309{word-spacing:33.300288px;}
.wse_c02309{word-spacing:33.691680px;}
.ws6_c02309{word-spacing:36.742464px;}
.ws1_c02309{word-spacing:37.759392px;}
.ws0_c02309{word-spacing:38.020752px;}
.ws3_c02309{word-spacing:39.218256px;}
.ws5_c02309{word-spacing:39.902544px;}
.ws7_c02309{word-spacing:42.026688px;}
._0_c02309{margin-left:-1.948320px;}
._2_c02309{width:1.482624px;}
._4_c02309{width:3.307392px;}
._6_c02309{width:5.650128px;}
._5_c02309{width:14.707872px;}
._7_c02309{width:41.052528px;}
._1_c02309{width:50.252400px;}
._3_c02309{width:51.530688px;}
.fc0_c02309{color:rgb(0,0,0);}
.fs0_c02309{font-size:47.520000px;}
.fs1_c02309{font-size:60.480000px;}
.y0_c02309{bottom:0.000000px;}
.y1a_c02309{bottom:146.999550px;}
.y1c_c02309{bottom:186.600234px;}
.y1b_c02309{bottom:196.320450px;}
.y19_c02309{bottom:275.879730px;}
.y18_c02309{bottom:356.879946px;}
.y16_c02309{bottom:391.440054px;}
.y15_c02309{bottom:406.559730px;}
.y11_c02309{bottom:424.560306px;}
.y17_c02309{bottom:458.760450px;}
.y14_c02309{bottom:491.879514px;}
.y13_c02309{bottom:509.880090px;}
.y10_c02309{bottom:543.000342px;}
.y12_c02309{bottom:559.559874px;}
.yf_c02309{bottom:577.560450px;}
.y1d_c02309{bottom:614.280450px;}
.yb_c02309{bottom:667.558326px;}
.yd_c02309{bottom:707.160234px;}
.yc_c02309{bottom:716.880450px;}
.ya_c02309{bottom:796.438506px;}
.y9_c02309{bottom:877.438722px;}
.y7_c02309{bottom:926.759730px;}
.y3_c02309{bottom:944.760306px;}
.y8_c02309{bottom:979.319226px;}
.y6_c02309{bottom:1012.439478px;}
.y5_c02309{bottom:1030.440054px;}
.y2_c02309{bottom:1063.560306px;}
.y4_c02309{bottom:1079.759874px;}
.y1_c02309{bottom:1097.760450px;}
.ye_c02309{bottom:1134.840450px;}
.h3_c02309{height:32.530781px;}
.h1_c02309{height:41.696016px;}
.h2_c02309{height:41.812031px;}
.h4_c02309{height:54.654737px;}
.h0_c02309{height:1263.000000px;}
.w1_c02309{width:892.500000px;}
.w0_c02309{width:892.830000px;}
.x0_c02309{left:0.000000px;}
.xd_c02309{left:117.000000px;}
.x8_c02309{left:440.999856px;}
.x4_c02309{left:445.680576px;}
.xb_c02309{left:451.080000px;}
.x7_c02309{left:455.399604px;}
.x5_c02309{left:461.880144px;}
.x1_c02309{left:463.320000px;}
.xa_c02309{left:483.480360px;}
.x9_c02309{left:492.119496px;}
.x6_c02309{left:493.200576px;}
.xc_c02309{left:506.880360px;}
.x3_c02309{left:511.919892px;}
.x2_c02309{left:526.679604px;}
.xe_c02309{left:569.880036px;}
@media print{
.v0_c02309{vertical-align:0.000000pt;}
.v1_c02309{vertical-align:1.279488pt;}
.ls15_c02309{letter-spacing:-0.734976pt;}
.ls13_c02309{letter-spacing:-0.718080pt;}
.ls16_c02309{letter-spacing:-0.549120pt;}
.ls9_c02309{letter-spacing:-0.511104pt;}
.ls14_c02309{letter-spacing:-0.291456pt;}
.lsf_c02309{letter-spacing:-0.244992pt;}
.lsd_c02309{letter-spacing:-0.232320pt;}
.lsc_c02309{letter-spacing:-0.228096pt;}
.ls6_c02309{letter-spacing:-0.215424pt;}
.ls4_c02309{letter-spacing:-0.105600pt;}
.ls12_c02309{letter-spacing:0.000000pt;}
.ls1_c02309{letter-spacing:0.005376pt;}
.ls17_c02309{letter-spacing:0.033792pt;}
.ls5_c02309{letter-spacing:0.114048pt;}
.ls7_c02309{letter-spacing:0.215424pt;}
.lsb_c02309{letter-spacing:0.451968pt;}
.ls11_c02309{letter-spacing:0.456960pt;}
.lse_c02309{letter-spacing:0.477312pt;}
.lsa_c02309{letter-spacing:0.515328pt;}
.ls10_c02309{letter-spacing:0.528000pt;}
.ls8_c02309{letter-spacing:0.532224pt;}
.ls2_c02309{letter-spacing:0.544896pt;}
.ls0_c02309{letter-spacing:0.637824pt;}
.ls3_c02309{letter-spacing:0.642048pt;}
.wsc_c02309{word-spacing:-13.445376pt;}
.wsa_c02309{word-spacing:-11.088000pt;}
.ws8_c02309{word-spacing:-11.075328pt;}
.ws9_c02309{word-spacing:-11.037312pt;}
.ws2_c02309{word-spacing:-10.775424pt;}
.ws4_c02309{word-spacing:-10.344576pt;}
.wsf_c02309{word-spacing:-10.010880pt;}
.ws17_c02309{word-spacing:-1.919232pt;}
.ws13_c02309{word-spacing:-0.958848pt;}
.ws10_c02309{word-spacing:-0.865920pt;}
.ws1a_c02309{word-spacing:-0.354816pt;}
.ws12_c02309{word-spacing:-0.105600pt;}
.ws14_c02309{word-spacing:-0.092928pt;}
.ws15_c02309{word-spacing:-0.088704pt;}
.ws16_c02309{word-spacing:-0.076032pt;}
.ws19_c02309{word-spacing:-0.029568pt;}
.ws11_c02309{word-spacing:0.000000pt;}
.ws18_c02309{word-spacing:0.397056pt;}
.wsd_c02309{word-spacing:1.182720pt;}
.wsb_c02309{word-spacing:29.600256pt;}
.wse_c02309{word-spacing:29.948160pt;}
.ws6_c02309{word-spacing:32.659968pt;}
.ws1_c02309{word-spacing:33.563904pt;}
.ws0_c02309{word-spacing:33.796224pt;}
.ws3_c02309{word-spacing:34.860672pt;}
.ws5_c02309{word-spacing:35.468928pt;}
.ws7_c02309{word-spacing:37.357056pt;}
._0_c02309{margin-left:-1.731840pt;}
._2_c02309{width:1.317888pt;}
._4_c02309{width:2.939904pt;}
._6_c02309{width:5.022336pt;}
._5_c02309{width:13.073664pt;}
._7_c02309{width:36.491136pt;}
._1_c02309{width:44.668800pt;}
._3_c02309{width:45.805056pt;}
.fs0_c02309{font-size:42.240000pt;}
.fs1_c02309{font-size:53.760000pt;}
.y0_c02309{bottom:0.000000pt;}
.y1a_c02309{bottom:130.666267pt;}
.y1c_c02309{bottom:165.866875pt;}
.y1b_c02309{bottom:174.507067pt;}
.y19_c02309{bottom:245.226427pt;}
.y18_c02309{bottom:317.226619pt;}
.y16_c02309{bottom:347.946715pt;}
.y15_c02309{bottom:361.386427pt;}
.y11_c02309{bottom:377.386939pt;}
.y17_c02309{bottom:407.787067pt;}
.y14_c02309{bottom:437.226235pt;}
.y13_c02309{bottom:453.226747pt;}
.y10_c02309{bottom:482.666971pt;}
.y12_c02309{bottom:497.386555pt;}
.yf_c02309{bottom:513.387067pt;}
.y1d_c02309{bottom:546.027067pt;}
.yb_c02309{bottom:593.385179pt;}
.yd_c02309{bottom:628.586875pt;}
.yc_c02309{bottom:637.227067pt;}
.ya_c02309{bottom:707.945339pt;}
.y9_c02309{bottom:779.945531pt;}
.y7_c02309{bottom:823.786427pt;}
.y3_c02309{bottom:839.786939pt;}
.y8_c02309{bottom:870.505979pt;}
.y6_c02309{bottom:899.946203pt;}
.y5_c02309{bottom:915.946715pt;}
.y2_c02309{bottom:945.386939pt;}
.y4_c02309{bottom:959.786555pt;}
.y1_c02309{bottom:975.787067pt;}
.ye_c02309{bottom:1008.747067pt;}
.h3_c02309{height:28.916250pt;}
.h1_c02309{height:37.063125pt;}
.h2_c02309{height:37.166250pt;}
.h4_c02309{height:48.581988pt;}
.h0_c02309{height:1122.666667pt;}
.w1_c02309{width:793.333333pt;}
.w0_c02309{width:793.626667pt;}
.x0_c02309{left:0.000000pt;}
.xd_c02309{left:104.000000pt;}
.x8_c02309{left:391.999872pt;}
.x4_c02309{left:396.160512pt;}
.xb_c02309{left:400.960000pt;}
.x7_c02309{left:404.799648pt;}
.x5_c02309{left:410.560128pt;}
.x1_c02309{left:411.840000pt;}
.xa_c02309{left:429.760320pt;}
.x9_c02309{left:437.439552pt;}
.x6_c02309{left:438.400512pt;}
.xc_c02309{left:450.560320pt;}
.x3_c02309{left:455.039904pt;}
.x2_c02309{left:468.159648pt;}
.xe_c02309{left:506.560032pt;}
}





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

.ir_c02310:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02310{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02310;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02310{font-family:ff1_c02310;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02310;src:url('chunks/assets/font_3e432079d0cca439bce2f5b8.woff2')format("woff");}.ff2_c02310{font-family:ff2_c02310;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02310;src:url('chunks/assets/font_20145e1d44e38f19f4692a08.woff2')format("woff");}.ff3_c02310{font-family:ff3_c02310;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02310{vertical-align:0.000000px;}
.v1_c02310{vertical-align:1.439424px;}
.ls11_c02310{letter-spacing:-0.826848px;}
.ls17_c02310{letter-spacing:-0.736560px;}
.ls9_c02310{letter-spacing:-0.574992px;}
.ls12_c02310{letter-spacing:-0.275616px;}
.ls18_c02310{letter-spacing:-0.270864px;}
.lsf_c02310{letter-spacing:-0.261360px;}
.ls7_c02310{letter-spacing:-0.242352px;}
.lsc_c02310{letter-spacing:-0.223344px;}
.ls4_c02310{letter-spacing:-0.118800px;}
.ls15_c02310{letter-spacing:0.000000px;}
.ls2_c02310{letter-spacing:0.006048px;}
.lse_c02310{letter-spacing:0.038016px;}
.ls5_c02310{letter-spacing:0.128304px;}
.lsd_c02310{letter-spacing:0.508464px;}
.ls14_c02310{letter-spacing:0.514080px;}
.ls10_c02310{letter-spacing:0.536976px;}
.lsb_c02310{letter-spacing:0.579744px;}
.ls13_c02310{letter-spacing:0.594000px;}
.ls8_c02310{letter-spacing:0.598752px;}
.ls3_c02310{letter-spacing:0.613008px;}
.ls16_c02310{letter-spacing:0.655776px;}
.lsa_c02310{letter-spacing:0.665280px;}
.ls0_c02310{letter-spacing:0.679536px;}
.ls6_c02310{letter-spacing:0.717552px;}
.ls1_c02310{letter-spacing:0.722304px;}
.sc__c02310{text-shadow:none;}
.sc0_c02310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02310{-webkit-text-stroke:0px transparent;}
.sc0_c02310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c02310{word-spacing:-15.126048px;}
.ws8_c02310{word-spacing:-12.602304px;}
.wsd_c02310{word-spacing:-12.474000px;}
.ws11_c02310{word-spacing:-12.459744px;}
.ws0_c02310{word-spacing:-11.761200px;}
.ws4_c02310{word-spacing:-11.637648px;}
.ws1d_c02310{word-spacing:-2.159136px;}
.ws19_c02310{word-spacing:-1.083456px;}
.ws15_c02310{word-spacing:-1.040688px;}
.ws17_c02310{word-spacing:-1.026432px;}
.ws1e_c02310{word-spacing:-1.016928px;}
.ws13_c02310{word-spacing:-0.974160px;}
.ws18_c02310{word-spacing:-0.399168px;}
.ws16_c02310{word-spacing:-0.118800px;}
.ws1a_c02310{word-spacing:-0.099792px;}
.ws1f_c02310{word-spacing:-0.090288px;}
.ws1c_c02310{word-spacing:-0.085536px;}
.ws14_c02310{word-spacing:0.000000px;}
.ws1b_c02310{word-spacing:0.465696px;}
.ws2_c02310{word-spacing:1.330560px;}
.ws12_c02310{word-spacing:6.629040px;}
.wsc_c02310{word-spacing:11.661408px;}
.ws7_c02310{word-spacing:22.885632px;}
.wse_c02310{word-spacing:33.300288px;}
.wsb_c02310{word-spacing:34.836912px;}
.wsa_c02310{word-spacing:36.143712px;}
.ws6_c02310{word-spacing:36.742464px;}
.ws1_c02310{word-spacing:37.759392px;}
.ws10_c02310{word-spacing:38.020752px;}
.ws3_c02310{word-spacing:39.218256px;}
.ws5_c02310{word-spacing:39.902544px;}
.ws9_c02310{word-spacing:42.026688px;}
._0_c02310{margin-left:-1.948320px;}
._2_c02310{width:1.482624px;}
._4_c02310{width:4.785264px;}
._b_c02310{width:14.707872px;}
._c_c02310{width:19.896624px;}
._d_c02310{width:23.451120px;}
._a_c02310{width:24.776928px;}
._9_c02310{width:26.573184px;}
._8_c02310{width:30.393792px;}
._7_c02310{width:38.491200px;}
._6_c02310{width:39.531888px;}
._5_c02310{width:42.891552px;}
._1_c02310{width:50.252400px;}
._3_c02310{width:51.530688px;}
.fc0_c02310{color:rgb(0,0,0);}
.fs0_c02310{font-size:47.520000px;}
.fs1_c02310{font-size:60.480000px;}
.y0_c02310{bottom:0.000000px;}
.y4_c02310{bottom:18.360450px;}
.y1e_c02310{bottom:131.878686px;}
.y1d_c02310{bottom:146.998362px;}
.y20_c02310{bottom:186.600234px;}
.y1f_c02310{bottom:196.320450px;}
.y1c_c02310{bottom:275.878542px;}
.y1b_c02310{bottom:356.878758px;}
.y19_c02310{bottom:406.559730px;}
.y15_c02310{bottom:424.560306px;}
.y1a_c02310{bottom:458.759262px;}
.y18_c02310{bottom:491.879514px;}
.y17_c02310{bottom:509.880090px;}
.y14_c02310{bottom:543.000342px;}
.y16_c02310{bottom:559.559874px;}
.y13_c02310{bottom:577.560450px;}
.y21_c02310{bottom:614.280450px;}
.yf_c02310{bottom:652.439982px;}
.ye_c02310{bottom:667.559658px;}
.y11_c02310{bottom:707.160234px;}
.y10_c02310{bottom:716.880450px;}
.yd_c02310{bottom:796.439838px;}
.yc_c02310{bottom:877.440054px;}
.ya_c02310{bottom:912.000162px;}
.y9_c02310{bottom:926.759874px;}
.y5_c02310{bottom:944.760450px;}
.yb_c02310{bottom:979.320558px;}
.y8_c02310{bottom:1012.439622px;}
.y7_c02310{bottom:1030.440198px;}
.y3_c02310{bottom:1045.200000px;}
.y2_c02310{bottom:1063.560306px;}
.y6_c02310{bottom:1079.760018px;}
.y1_c02310{bottom:1097.760450px;}
.y12_c02310{bottom:1134.840450px;}
.h3_c02310{height:29.520000px;}
.h2_c02310{height:32.530781px;}
.h1_c02310{height:41.696016px;}
.h4_c02310{height:41.812031px;}
.h5_c02310{height:54.654737px;}
.h0_c02310{height:1263.000000px;}
.w2_c02310{width:215.280000px;}
.w1_c02310{width:892.500000px;}
.w0_c02310{width:892.830000px;}
.x0_c02310{left:0.000000px;}
.xe_c02310{left:117.000000px;}
.x9_c02310{left:440.999964px;}
.x5_c02310{left:445.680684px;}
.xc_c02310{left:451.080000px;}
.x8_c02310{left:455.399712px;}
.x6_c02310{left:461.880252px;}
.x1_c02310{left:463.320000px;}
.xb_c02310{left:483.480468px;}
.xa_c02310{left:492.119604px;}
.x7_c02310{left:493.200684px;}
.xd_c02310{left:506.880360px;}
.x4_c02310{left:511.920000px;}
.x2_c02310{left:526.679604px;}
.x3_c02310{left:569.520000px;}
@media print{
.v0_c02310{vertical-align:0.000000pt;}
.v1_c02310{vertical-align:1.279488pt;}
.ls11_c02310{letter-spacing:-0.734976pt;}
.ls17_c02310{letter-spacing:-0.654720pt;}
.ls9_c02310{letter-spacing:-0.511104pt;}
.ls12_c02310{letter-spacing:-0.244992pt;}
.ls18_c02310{letter-spacing:-0.240768pt;}
.lsf_c02310{letter-spacing:-0.232320pt;}
.ls7_c02310{letter-spacing:-0.215424pt;}
.lsc_c02310{letter-spacing:-0.198528pt;}
.ls4_c02310{letter-spacing:-0.105600pt;}
.ls15_c02310{letter-spacing:0.000000pt;}
.ls2_c02310{letter-spacing:0.005376pt;}
.lse_c02310{letter-spacing:0.033792pt;}
.ls5_c02310{letter-spacing:0.114048pt;}
.lsd_c02310{letter-spacing:0.451968pt;}
.ls14_c02310{letter-spacing:0.456960pt;}
.ls10_c02310{letter-spacing:0.477312pt;}
.lsb_c02310{letter-spacing:0.515328pt;}
.ls13_c02310{letter-spacing:0.528000pt;}
.ls8_c02310{letter-spacing:0.532224pt;}
.ls3_c02310{letter-spacing:0.544896pt;}
.ls16_c02310{letter-spacing:0.582912pt;}
.lsa_c02310{letter-spacing:0.591360pt;}
.ls0_c02310{letter-spacing:0.604032pt;}
.ls6_c02310{letter-spacing:0.637824pt;}
.ls1_c02310{letter-spacing:0.642048pt;}
.wsf_c02310{word-spacing:-13.445376pt;}
.ws8_c02310{word-spacing:-11.202048pt;}
.wsd_c02310{word-spacing:-11.088000pt;}
.ws11_c02310{word-spacing:-11.075328pt;}
.ws0_c02310{word-spacing:-10.454400pt;}
.ws4_c02310{word-spacing:-10.344576pt;}
.ws1d_c02310{word-spacing:-1.919232pt;}
.ws19_c02310{word-spacing:-0.963072pt;}
.ws15_c02310{word-spacing:-0.925056pt;}
.ws17_c02310{word-spacing:-0.912384pt;}
.ws1e_c02310{word-spacing:-0.903936pt;}
.ws13_c02310{word-spacing:-0.865920pt;}
.ws18_c02310{word-spacing:-0.354816pt;}
.ws16_c02310{word-spacing:-0.105600pt;}
.ws1a_c02310{word-spacing:-0.088704pt;}
.ws1f_c02310{word-spacing:-0.080256pt;}
.ws1c_c02310{word-spacing:-0.076032pt;}
.ws14_c02310{word-spacing:0.000000pt;}
.ws1b_c02310{word-spacing:0.413952pt;}
.ws2_c02310{word-spacing:1.182720pt;}
.ws12_c02310{word-spacing:5.892480pt;}
.wsc_c02310{word-spacing:10.365696pt;}
.ws7_c02310{word-spacing:20.342784pt;}
.wse_c02310{word-spacing:29.600256pt;}
.wsb_c02310{word-spacing:30.966144pt;}
.wsa_c02310{word-spacing:32.127744pt;}
.ws6_c02310{word-spacing:32.659968pt;}
.ws1_c02310{word-spacing:33.563904pt;}
.ws10_c02310{word-spacing:33.796224pt;}
.ws3_c02310{word-spacing:34.860672pt;}
.ws5_c02310{word-spacing:35.468928pt;}
.ws9_c02310{word-spacing:37.357056pt;}
._0_c02310{margin-left:-1.731840pt;}
._2_c02310{width:1.317888pt;}
._4_c02310{width:4.253568pt;}
._b_c02310{width:13.073664pt;}
._c_c02310{width:17.685888pt;}
._d_c02310{width:20.845440pt;}
._a_c02310{width:22.023936pt;}
._9_c02310{width:23.620608pt;}
._8_c02310{width:27.016704pt;}
._7_c02310{width:34.214400pt;}
._6_c02310{width:35.139456pt;}
._5_c02310{width:38.125824pt;}
._1_c02310{width:44.668800pt;}
._3_c02310{width:45.805056pt;}
.fs0_c02310{font-size:42.240000pt;}
.fs1_c02310{font-size:53.760000pt;}
.y0_c02310{bottom:0.000000pt;}
.y4_c02310{bottom:16.320400pt;}
.y1e_c02310{bottom:117.225499pt;}
.y1d_c02310{bottom:130.665211pt;}
.y20_c02310{bottom:165.866875pt;}
.y1f_c02310{bottom:174.507067pt;}
.y1c_c02310{bottom:245.225371pt;}
.y1b_c02310{bottom:317.225563pt;}
.y19_c02310{bottom:361.386427pt;}
.y15_c02310{bottom:377.386939pt;}
.y1a_c02310{bottom:407.786011pt;}
.y18_c02310{bottom:437.226235pt;}
.y17_c02310{bottom:453.226747pt;}
.y14_c02310{bottom:482.666971pt;}
.y16_c02310{bottom:497.386555pt;}
.y13_c02310{bottom:513.387067pt;}
.y21_c02310{bottom:546.027067pt;}
.yf_c02310{bottom:579.946651pt;}
.ye_c02310{bottom:593.386363pt;}
.y11_c02310{bottom:628.586875pt;}
.y10_c02310{bottom:637.227067pt;}
.yd_c02310{bottom:707.946523pt;}
.yc_c02310{bottom:779.946715pt;}
.ya_c02310{bottom:810.666811pt;}
.y9_c02310{bottom:823.786555pt;}
.y5_c02310{bottom:839.787067pt;}
.yb_c02310{bottom:870.507163pt;}
.y8_c02310{bottom:899.946331pt;}
.y7_c02310{bottom:915.946843pt;}
.y3_c02310{bottom:929.066667pt;}
.y2_c02310{bottom:945.386939pt;}
.y6_c02310{bottom:959.786683pt;}
.y1_c02310{bottom:975.787067pt;}
.y12_c02310{bottom:1008.747067pt;}
.h3_c02310{height:26.240000pt;}
.h2_c02310{height:28.916250pt;}
.h1_c02310{height:37.063125pt;}
.h4_c02310{height:37.166250pt;}
.h5_c02310{height:48.581988pt;}
.h0_c02310{height:1122.666667pt;}
.w2_c02310{width:191.360000pt;}
.w1_c02310{width:793.333333pt;}
.w0_c02310{width:793.626667pt;}
.x0_c02310{left:0.000000pt;}
.xe_c02310{left:104.000000pt;}
.x9_c02310{left:391.999968pt;}
.x5_c02310{left:396.160608pt;}
.xc_c02310{left:400.960000pt;}
.x8_c02310{left:404.799744pt;}
.x6_c02310{left:410.560224pt;}
.x1_c02310{left:411.840000pt;}
.xb_c02310{left:429.760416pt;}
.xa_c02310{left:437.439648pt;}
.x7_c02310{left:438.400608pt;}
.xd_c02310{left:450.560320pt;}
.x4_c02310{left:455.040000pt;}
.x2_c02310{left:468.159648pt;}
.x3_c02310{left:506.240000pt;}
}





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

.ir_c02311:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02311{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02311;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02311{font-family:ff1_c02311;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02311;src:url('chunks/assets/font_0d9f88c7fd41f8e69e922574.woff2')format("woff");}.ff2_c02311{font-family:ff2_c02311;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02311;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02311{font-family:ff3_c02311;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02311{vertical-align:0.000000px;}
.v1_c02311{vertical-align:1.439424px;}
.lsf_c02311{letter-spacing:-0.736560px;}
.ls8_c02311{letter-spacing:-0.574992px;}
.ls9_c02311{letter-spacing:-0.323136px;}
.ls15_c02311{letter-spacing:-0.275616px;}
.ls10_c02311{letter-spacing:-0.270864px;}
.lsd_c02311{letter-spacing:-0.261360px;}
.ls6_c02311{letter-spacing:-0.242352px;}
.ls3_c02311{letter-spacing:-0.118800px;}
.ls13_c02311{letter-spacing:0.000000px;}
.ls0_c02311{letter-spacing:0.006048px;}
.lsc_c02311{letter-spacing:0.038016px;}
.ls5_c02311{letter-spacing:0.128304px;}
.lsb_c02311{letter-spacing:0.508464px;}
.ls12_c02311{letter-spacing:0.514080px;}
.lse_c02311{letter-spacing:0.536976px;}
.lsa_c02311{letter-spacing:0.579744px;}
.ls11_c02311{letter-spacing:0.594000px;}
.ls7_c02311{letter-spacing:0.598752px;}
.ls1_c02311{letter-spacing:0.613008px;}
.ls14_c02311{letter-spacing:0.655776px;}
.ls4_c02311{letter-spacing:0.717552px;}
.ls2_c02311{letter-spacing:0.722304px;}
.sc__c02311{text-shadow:none;}
.sc0_c02311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02311{-webkit-text-stroke:0px transparent;}
.sc0_c02311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02311{word-spacing:-15.126048px;}
.wsb_c02311{word-spacing:-12.474000px;}
.ws8_c02311{word-spacing:-12.459744px;}
.wse_c02311{word-spacing:-12.416976px;}
.ws4_c02311{word-spacing:-11.637648px;}
.ws17_c02311{word-spacing:-2.159136px;}
.ws18_c02311{word-spacing:-1.016928px;}
.wsf_c02311{word-spacing:-0.974160px;}
.ws13_c02311{word-spacing:-0.399168px;}
.ws11_c02311{word-spacing:-0.118800px;}
.ws14_c02311{word-spacing:-0.099792px;}
.ws15_c02311{word-spacing:-0.090288px;}
.ws16_c02311{word-spacing:-0.085536px;}
.ws12_c02311{word-spacing:-0.038016px;}
.ws10_c02311{word-spacing:0.000000px;}
.ws2_c02311{word-spacing:1.330560px;}
.wsa_c02311{word-spacing:6.629040px;}
.wsc_c02311{word-spacing:33.300288px;}
.ws9_c02311{word-spacing:34.836912px;}
.ws6_c02311{word-spacing:36.742464px;}
.ws1_c02311{word-spacing:37.759392px;}
.ws0_c02311{word-spacing:38.020752px;}
.ws3_c02311{word-spacing:39.218256px;}
.ws5_c02311{word-spacing:39.902544px;}
.ws7_c02311{word-spacing:42.026688px;}
._0_c02311{margin-left:-1.948320px;}
._2_c02311{width:1.482624px;}
._4_c02311{width:4.785264px;}
._8_c02311{width:14.707872px;}
._6_c02311{width:19.982160px;}
._7_c02311{width:23.451120px;}
._5_c02311{width:24.691392px;}
._1_c02311{width:50.252400px;}
._3_c02311{width:51.530688px;}
.fc0_c02311{color:rgb(0,0,0);}
.fs0_c02311{font-size:47.520000px;}
.fs1_c02311{font-size:60.480000px;}
.y0_c02311{bottom:0.000000px;}
.y1a_c02311{bottom:146.998362px;}
.y1c_c02311{bottom:186.600234px;}
.y1b_c02311{bottom:196.320450px;}
.y19_c02311{bottom:275.878542px;}
.y18_c02311{bottom:356.878758px;}
.y16_c02311{bottom:406.559730px;}
.y12_c02311{bottom:424.560306px;}
.y17_c02311{bottom:458.759262px;}
.y15_c02311{bottom:491.879514px;}
.y14_c02311{bottom:509.880090px;}
.y11_c02311{bottom:543.000342px;}
.y13_c02311{bottom:559.559874px;}
.y10_c02311{bottom:577.560450px;}
.y1d_c02311{bottom:614.280450px;}
.yc_c02311{bottom:652.438650px;}
.yb_c02311{bottom:667.558326px;}
.ye_c02311{bottom:707.160234px;}
.yd_c02311{bottom:716.880450px;}
.ya_c02311{bottom:796.438506px;}
.y9_c02311{bottom:877.438722px;}
.y7_c02311{bottom:926.759730px;}
.y3_c02311{bottom:944.760306px;}
.y8_c02311{bottom:979.319226px;}
.y6_c02311{bottom:1012.439478px;}
.y5_c02311{bottom:1030.440054px;}
.y2_c02311{bottom:1063.560306px;}
.y4_c02311{bottom:1079.759874px;}
.y1_c02311{bottom:1097.760450px;}
.yf_c02311{bottom:1134.840450px;}
.h3_c02311{height:32.530781px;}
.h1_c02311{height:41.696016px;}
.h2_c02311{height:41.812031px;}
.h4_c02311{height:54.654737px;}
.h0_c02311{height:1263.000000px;}
.w1_c02311{width:892.500000px;}
.w0_c02311{width:892.830000px;}
.x0_c02311{left:0.000000px;}
.xe_c02311{left:117.000000px;}
.x8_c02311{left:440.999856px;}
.x4_c02311{left:445.680576px;}
.xc_c02311{left:451.080000px;}
.x7_c02311{left:455.399604px;}
.x5_c02311{left:461.880144px;}
.x1_c02311{left:463.320000px;}
.xa_c02311{left:483.480360px;}
.x9_c02311{left:492.119496px;}
.x6_c02311{left:493.200576px;}
.xd_c02311{left:506.880360px;}
.x3_c02311{left:511.919892px;}
.x2_c02311{left:526.679604px;}
.xb_c02311{left:569.880036px;}
@media print{
.v0_c02311{vertical-align:0.000000pt;}
.v1_c02311{vertical-align:1.279488pt;}
.lsf_c02311{letter-spacing:-0.654720pt;}
.ls8_c02311{letter-spacing:-0.511104pt;}
.ls9_c02311{letter-spacing:-0.287232pt;}
.ls15_c02311{letter-spacing:-0.244992pt;}
.ls10_c02311{letter-spacing:-0.240768pt;}
.lsd_c02311{letter-spacing:-0.232320pt;}
.ls6_c02311{letter-spacing:-0.215424pt;}
.ls3_c02311{letter-spacing:-0.105600pt;}
.ls13_c02311{letter-spacing:0.000000pt;}
.ls0_c02311{letter-spacing:0.005376pt;}
.lsc_c02311{letter-spacing:0.033792pt;}
.ls5_c02311{letter-spacing:0.114048pt;}
.lsb_c02311{letter-spacing:0.451968pt;}
.ls12_c02311{letter-spacing:0.456960pt;}
.lse_c02311{letter-spacing:0.477312pt;}
.lsa_c02311{letter-spacing:0.515328pt;}
.ls11_c02311{letter-spacing:0.528000pt;}
.ls7_c02311{letter-spacing:0.532224pt;}
.ls1_c02311{letter-spacing:0.544896pt;}
.ls14_c02311{letter-spacing:0.582912pt;}
.ls4_c02311{letter-spacing:0.637824pt;}
.ls2_c02311{letter-spacing:0.642048pt;}
.wsd_c02311{word-spacing:-13.445376pt;}
.wsb_c02311{word-spacing:-11.088000pt;}
.ws8_c02311{word-spacing:-11.075328pt;}
.wse_c02311{word-spacing:-11.037312pt;}
.ws4_c02311{word-spacing:-10.344576pt;}
.ws17_c02311{word-spacing:-1.919232pt;}
.ws18_c02311{word-spacing:-0.903936pt;}
.wsf_c02311{word-spacing:-0.865920pt;}
.ws13_c02311{word-spacing:-0.354816pt;}
.ws11_c02311{word-spacing:-0.105600pt;}
.ws14_c02311{word-spacing:-0.088704pt;}
.ws15_c02311{word-spacing:-0.080256pt;}
.ws16_c02311{word-spacing:-0.076032pt;}
.ws12_c02311{word-spacing:-0.033792pt;}
.ws10_c02311{word-spacing:0.000000pt;}
.ws2_c02311{word-spacing:1.182720pt;}
.wsa_c02311{word-spacing:5.892480pt;}
.wsc_c02311{word-spacing:29.600256pt;}
.ws9_c02311{word-spacing:30.966144pt;}
.ws6_c02311{word-spacing:32.659968pt;}
.ws1_c02311{word-spacing:33.563904pt;}
.ws0_c02311{word-spacing:33.796224pt;}
.ws3_c02311{word-spacing:34.860672pt;}
.ws5_c02311{word-spacing:35.468928pt;}
.ws7_c02311{word-spacing:37.357056pt;}
._0_c02311{margin-left:-1.731840pt;}
._2_c02311{width:1.317888pt;}
._4_c02311{width:4.253568pt;}
._8_c02311{width:13.073664pt;}
._6_c02311{width:17.761920pt;}
._7_c02311{width:20.845440pt;}
._5_c02311{width:21.947904pt;}
._1_c02311{width:44.668800pt;}
._3_c02311{width:45.805056pt;}
.fs0_c02311{font-size:42.240000pt;}
.fs1_c02311{font-size:53.760000pt;}
.y0_c02311{bottom:0.000000pt;}
.y1a_c02311{bottom:130.665211pt;}
.y1c_c02311{bottom:165.866875pt;}
.y1b_c02311{bottom:174.507067pt;}
.y19_c02311{bottom:245.225371pt;}
.y18_c02311{bottom:317.225563pt;}
.y16_c02311{bottom:361.386427pt;}
.y12_c02311{bottom:377.386939pt;}
.y17_c02311{bottom:407.786011pt;}
.y15_c02311{bottom:437.226235pt;}
.y14_c02311{bottom:453.226747pt;}
.y11_c02311{bottom:482.666971pt;}
.y13_c02311{bottom:497.386555pt;}
.y10_c02311{bottom:513.387067pt;}
.y1d_c02311{bottom:546.027067pt;}
.yc_c02311{bottom:579.945467pt;}
.yb_c02311{bottom:593.385179pt;}
.ye_c02311{bottom:628.586875pt;}
.yd_c02311{bottom:637.227067pt;}
.ya_c02311{bottom:707.945339pt;}
.y9_c02311{bottom:779.945531pt;}
.y7_c02311{bottom:823.786427pt;}
.y3_c02311{bottom:839.786939pt;}
.y8_c02311{bottom:870.505979pt;}
.y6_c02311{bottom:899.946203pt;}
.y5_c02311{bottom:915.946715pt;}
.y2_c02311{bottom:945.386939pt;}
.y4_c02311{bottom:959.786555pt;}
.y1_c02311{bottom:975.787067pt;}
.yf_c02311{bottom:1008.747067pt;}
.h3_c02311{height:28.916250pt;}
.h1_c02311{height:37.063125pt;}
.h2_c02311{height:37.166250pt;}
.h4_c02311{height:48.581988pt;}
.h0_c02311{height:1122.666667pt;}
.w1_c02311{width:793.333333pt;}
.w0_c02311{width:793.626667pt;}
.x0_c02311{left:0.000000pt;}
.xe_c02311{left:104.000000pt;}
.x8_c02311{left:391.999872pt;}
.x4_c02311{left:396.160512pt;}
.xc_c02311{left:400.960000pt;}
.x7_c02311{left:404.799648pt;}
.x5_c02311{left:410.560128pt;}
.x1_c02311{left:411.840000pt;}
.xa_c02311{left:429.760320pt;}
.x9_c02311{left:437.439552pt;}
.x6_c02311{left:438.400512pt;}
.xd_c02311{left:450.560320pt;}
.x3_c02311{left:455.039904pt;}
.x2_c02311{left:468.159648pt;}
.xb_c02311{left:506.560032pt;}
}





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

.ir_c02312:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02312{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02312;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02312{font-family:ff1_c02312;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02312;src:url('chunks/assets/font_618d0e674301c8f1566b4237.woff2')format("woff");}.ff2_c02312{font-family:ff2_c02312;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02312;src:url('chunks/assets/font_4540d7fef127eb4a1ec47a7b.woff2')format("woff");}.ff3_c02312{font-family:ff3_c02312;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02312{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02312{vertical-align:0.000000px;}
.v1_c02312{vertical-align:1.439424px;}
.ls10_c02312{letter-spacing:-0.850608px;}
.ls9_c02312{letter-spacing:-0.574992px;}
.ls15_c02312{letter-spacing:-0.380160px;}
.ls11_c02312{letter-spacing:-0.275616px;}
.lse_c02312{letter-spacing:-0.261360px;}
.ls7_c02312{letter-spacing:-0.242352px;}
.lsb_c02312{letter-spacing:-0.237600px;}
.ls4_c02312{letter-spacing:-0.118800px;}
.ls14_c02312{letter-spacing:0.000000px;}
.ls0_c02312{letter-spacing:0.006048px;}
.lsd_c02312{letter-spacing:0.038016px;}
.ls5_c02312{letter-spacing:0.128304px;}
.lsc_c02312{letter-spacing:0.508464px;}
.ls13_c02312{letter-spacing:0.514080px;}
.lsf_c02312{letter-spacing:0.536976px;}
.lsa_c02312{letter-spacing:0.579744px;}
.ls12_c02312{letter-spacing:0.594000px;}
.ls8_c02312{letter-spacing:0.598752px;}
.ls3_c02312{letter-spacing:0.613008px;}
.ls1_c02312{letter-spacing:0.655776px;}
.ls6_c02312{letter-spacing:0.717552px;}
.ls2_c02312{letter-spacing:0.722304px;}
.sc__c02312{text-shadow:none;}
.sc0_c02312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02312{-webkit-text-stroke:0px transparent;}
.sc0_c02312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02312{word-spacing:-15.126048px;}
.wsb_c02312{word-spacing:-12.474000px;}
.wsf_c02312{word-spacing:-12.459744px;}
.ws10_c02312{word-spacing:-12.416976px;}
.ws0_c02312{word-spacing:-11.761200px;}
.ws4_c02312{word-spacing:-11.637648px;}
.ws1b_c02312{word-spacing:-2.159136px;}
.ws13_c02312{word-spacing:-1.083456px;}
.ws15_c02312{word-spacing:-1.016928px;}
.ws11_c02312{word-spacing:-0.974160px;}
.ws17_c02312{word-spacing:-0.399168px;}
.ws16_c02312{word-spacing:-0.123552px;}
.ws14_c02312{word-spacing:-0.118800px;}
.ws18_c02312{word-spacing:-0.099792px;}
.ws1a_c02312{word-spacing:-0.085536px;}
.ws12_c02312{word-spacing:0.000000px;}
.ws1c_c02312{word-spacing:0.019008px;}
.ws19_c02312{word-spacing:0.489456px;}
.ws2_c02312{word-spacing:1.330560px;}
.wsa_c02312{word-spacing:11.661408px;}
.wsc_c02312{word-spacing:33.300288px;}
.ws9_c02312{word-spacing:34.836912px;}
.ws8_c02312{word-spacing:36.143712px;}
.ws6_c02312{word-spacing:36.742464px;}
.ws1_c02312{word-spacing:37.759392px;}
.wse_c02312{word-spacing:38.020752px;}
.ws3_c02312{word-spacing:39.218256px;}
.ws5_c02312{word-spacing:39.902544px;}
.ws7_c02312{word-spacing:42.026688px;}
._0_c02312{margin-left:-1.948320px;}
._2_c02312{width:1.482624px;}
._4_c02312{width:4.785264px;}
._8_c02312{width:14.707872px;}
._7_c02312{width:24.776928px;}
._6_c02312{width:26.573184px;}
._5_c02312{width:30.393792px;}
._1_c02312{width:50.252400px;}
._3_c02312{width:51.530688px;}
.fc0_c02312{color:rgb(0,0,0);}
.fs0_c02312{font-size:47.520000px;}
.fs1_c02312{font-size:60.480000px;}
.y0_c02312{bottom:0.000000px;}
.y4_c02312{bottom:18.360450px;}
.y1c_c02312{bottom:65.880450px;}
.y1f_c02312{bottom:147.000054px;}
.y21_c02312{bottom:186.600234px;}
.y20_c02312{bottom:196.320450px;}
.y1e_c02312{bottom:275.880234px;}
.y1b_c02312{bottom:291.000000px;}
.y1a_c02312{bottom:356.878758px;}
.y1d_c02312{bottom:356.880450px;}
.y18_c02312{bottom:406.559730px;}
.y14_c02312{bottom:424.560306px;}
.y19_c02312{bottom:458.759262px;}
.y17_c02312{bottom:491.879514px;}
.y16_c02312{bottom:509.880090px;}
.y13_c02312{bottom:543.000342px;}
.y15_c02312{bottom:559.559874px;}
.y12_c02312{bottom:577.560450px;}
.y22_c02312{bottom:614.280450px;}
.ye_c02312{bottom:652.438794px;}
.yd_c02312{bottom:667.558470px;}
.y10_c02312{bottom:707.160234px;}
.yf_c02312{bottom:716.880450px;}
.yc_c02312{bottom:796.438650px;}
.yb_c02312{bottom:877.438866px;}
.y9_c02312{bottom:926.759874px;}
.y5_c02312{bottom:944.760450px;}
.ya_c02312{bottom:979.319370px;}
.y8_c02312{bottom:1012.439622px;}
.y7_c02312{bottom:1030.440198px;}
.y3_c02312{bottom:1045.200000px;}
.y2_c02312{bottom:1063.560306px;}
.y6_c02312{bottom:1079.760018px;}
.y1_c02312{bottom:1097.760450px;}
.y11_c02312{bottom:1134.840450px;}
.h3_c02312{height:29.520000px;}
.h2_c02312{height:32.530781px;}
.h1_c02312{height:41.696016px;}
.h4_c02312{height:41.812031px;}
.h5_c02312{height:54.654737px;}
.h6_c02312{height:78.480000px;}
.h0_c02312{height:1263.000000px;}
.w2_c02312{width:215.280000px;}
.w1_c02312{width:892.500000px;}
.w0_c02312{width:892.830000px;}
.x0_c02312{left:0.000000px;}
.xe_c02312{left:117.000000px;}
.x9_c02312{left:440.999964px;}
.x5_c02312{left:445.680684px;}
.xc_c02312{left:451.080000px;}
.x8_c02312{left:455.399712px;}
.x6_c02312{left:461.880252px;}
.x1_c02312{left:463.320000px;}
.xb_c02312{left:483.480468px;}
.xa_c02312{left:492.119604px;}
.x7_c02312{left:493.200684px;}
.xd_c02312{left:506.880360px;}
.x4_c02312{left:511.920000px;}
.x2_c02312{left:526.679604px;}
.x3_c02312{left:569.520000px;}
.xf_c02312{left:650.880000px;}
@media print{
.v0_c02312{vertical-align:0.000000pt;}
.v1_c02312{vertical-align:1.279488pt;}
.ls10_c02312{letter-spacing:-0.756096pt;}
.ls9_c02312{letter-spacing:-0.511104pt;}
.ls15_c02312{letter-spacing:-0.337920pt;}
.ls11_c02312{letter-spacing:-0.244992pt;}
.lse_c02312{letter-spacing:-0.232320pt;}
.ls7_c02312{letter-spacing:-0.215424pt;}
.lsb_c02312{letter-spacing:-0.211200pt;}
.ls4_c02312{letter-spacing:-0.105600pt;}
.ls14_c02312{letter-spacing:0.000000pt;}
.ls0_c02312{letter-spacing:0.005376pt;}
.lsd_c02312{letter-spacing:0.033792pt;}
.ls5_c02312{letter-spacing:0.114048pt;}
.lsc_c02312{letter-spacing:0.451968pt;}
.ls13_c02312{letter-spacing:0.456960pt;}
.lsf_c02312{letter-spacing:0.477312pt;}
.lsa_c02312{letter-spacing:0.515328pt;}
.ls12_c02312{letter-spacing:0.528000pt;}
.ls8_c02312{letter-spacing:0.532224pt;}
.ls3_c02312{letter-spacing:0.544896pt;}
.ls1_c02312{letter-spacing:0.582912pt;}
.ls6_c02312{letter-spacing:0.637824pt;}
.ls2_c02312{letter-spacing:0.642048pt;}
.wsd_c02312{word-spacing:-13.445376pt;}
.wsb_c02312{word-spacing:-11.088000pt;}
.wsf_c02312{word-spacing:-11.075328pt;}
.ws10_c02312{word-spacing:-11.037312pt;}
.ws0_c02312{word-spacing:-10.454400pt;}
.ws4_c02312{word-spacing:-10.344576pt;}
.ws1b_c02312{word-spacing:-1.919232pt;}
.ws13_c02312{word-spacing:-0.963072pt;}
.ws15_c02312{word-spacing:-0.903936pt;}
.ws11_c02312{word-spacing:-0.865920pt;}
.ws17_c02312{word-spacing:-0.354816pt;}
.ws16_c02312{word-spacing:-0.109824pt;}
.ws14_c02312{word-spacing:-0.105600pt;}
.ws18_c02312{word-spacing:-0.088704pt;}
.ws1a_c02312{word-spacing:-0.076032pt;}
.ws12_c02312{word-spacing:0.000000pt;}
.ws1c_c02312{word-spacing:0.016896pt;}
.ws19_c02312{word-spacing:0.435072pt;}
.ws2_c02312{word-spacing:1.182720pt;}
.wsa_c02312{word-spacing:10.365696pt;}
.wsc_c02312{word-spacing:29.600256pt;}
.ws9_c02312{word-spacing:30.966144pt;}
.ws8_c02312{word-spacing:32.127744pt;}
.ws6_c02312{word-spacing:32.659968pt;}
.ws1_c02312{word-spacing:33.563904pt;}
.wse_c02312{word-spacing:33.796224pt;}
.ws3_c02312{word-spacing:34.860672pt;}
.ws5_c02312{word-spacing:35.468928pt;}
.ws7_c02312{word-spacing:37.357056pt;}
._0_c02312{margin-left:-1.731840pt;}
._2_c02312{width:1.317888pt;}
._4_c02312{width:4.253568pt;}
._8_c02312{width:13.073664pt;}
._7_c02312{width:22.023936pt;}
._6_c02312{width:23.620608pt;}
._5_c02312{width:27.016704pt;}
._1_c02312{width:44.668800pt;}
._3_c02312{width:45.805056pt;}
.fs0_c02312{font-size:42.240000pt;}
.fs1_c02312{font-size:53.760000pt;}
.y0_c02312{bottom:0.000000pt;}
.y4_c02312{bottom:16.320400pt;}
.y1c_c02312{bottom:58.560400pt;}
.y1f_c02312{bottom:130.666715pt;}
.y21_c02312{bottom:165.866875pt;}
.y20_c02312{bottom:174.507067pt;}
.y1e_c02312{bottom:245.226875pt;}
.y1b_c02312{bottom:258.666667pt;}
.y1a_c02312{bottom:317.225563pt;}
.y1d_c02312{bottom:317.227067pt;}
.y18_c02312{bottom:361.386427pt;}
.y14_c02312{bottom:377.386939pt;}
.y19_c02312{bottom:407.786011pt;}
.y17_c02312{bottom:437.226235pt;}
.y16_c02312{bottom:453.226747pt;}
.y13_c02312{bottom:482.666971pt;}
.y15_c02312{bottom:497.386555pt;}
.y12_c02312{bottom:513.387067pt;}
.y22_c02312{bottom:546.027067pt;}
.ye_c02312{bottom:579.945595pt;}
.yd_c02312{bottom:593.385307pt;}
.y10_c02312{bottom:628.586875pt;}
.yf_c02312{bottom:637.227067pt;}
.yc_c02312{bottom:707.945467pt;}
.yb_c02312{bottom:779.945659pt;}
.y9_c02312{bottom:823.786555pt;}
.y5_c02312{bottom:839.787067pt;}
.ya_c02312{bottom:870.506107pt;}
.y8_c02312{bottom:899.946331pt;}
.y7_c02312{bottom:915.946843pt;}
.y3_c02312{bottom:929.066667pt;}
.y2_c02312{bottom:945.386939pt;}
.y6_c02312{bottom:959.786683pt;}
.y1_c02312{bottom:975.787067pt;}
.y11_c02312{bottom:1008.747067pt;}
.h3_c02312{height:26.240000pt;}
.h2_c02312{height:28.916250pt;}
.h1_c02312{height:37.063125pt;}
.h4_c02312{height:37.166250pt;}
.h5_c02312{height:48.581988pt;}
.h6_c02312{height:69.760000pt;}
.h0_c02312{height:1122.666667pt;}
.w2_c02312{width:191.360000pt;}
.w1_c02312{width:793.333333pt;}
.w0_c02312{width:793.626667pt;}
.x0_c02312{left:0.000000pt;}
.xe_c02312{left:104.000000pt;}
.x9_c02312{left:391.999968pt;}
.x5_c02312{left:396.160608pt;}
.xc_c02312{left:400.960000pt;}
.x8_c02312{left:404.799744pt;}
.x6_c02312{left:410.560224pt;}
.x1_c02312{left:411.840000pt;}
.xb_c02312{left:429.760416pt;}
.xa_c02312{left:437.439648pt;}
.x7_c02312{left:438.400608pt;}
.xd_c02312{left:450.560320pt;}
.x4_c02312{left:455.040000pt;}
.x2_c02312{left:468.159648pt;}
.x3_c02312{left:506.240000pt;}
.xf_c02312{left:578.560000pt;}
}





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

.ir_c02313:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02313{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02313;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02313{font-family:ff1_c02313;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02313;src:url('chunks/assets/font_63b161d520dd520c3d304c25.woff2')format("woff");}.ff2_c02313{font-family:ff2_c02313;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02313;src:url('chunks/assets/font_d77456cb17e48e8715cf88bc.woff2')format("woff");}.ff3_c02313{font-family:ff3_c02313;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02313{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02313{vertical-align:0.000000px;}
.v2_c02313{vertical-align:1.439424px;}
.v3_c02313{vertical-align:5.759424px;}
.v1_c02313{vertical-align:33.121440px;}
.ls13_c02313{letter-spacing:-0.826848px;}
.ls1a_c02313{letter-spacing:-0.708048px;}
.ls9_c02313{letter-spacing:-0.574992px;}
.ls16_c02313{letter-spacing:-0.361152px;}
.ls19_c02313{letter-spacing:-0.327888px;}
.lsa_c02313{letter-spacing:-0.323136px;}
.ls11_c02313{letter-spacing:-0.313632px;}
.ls14_c02313{letter-spacing:-0.275616px;}
.ls10_c02313{letter-spacing:-0.261360px;}
.ls7_c02313{letter-spacing:-0.242352px;}
.lsc_c02313{letter-spacing:-0.223344px;}
.ls3_c02313{letter-spacing:-0.118800px;}
.ls18_c02313{letter-spacing:0.000000px;}
.ls1_c02313{letter-spacing:0.006048px;}
.lse_c02313{letter-spacing:0.038016px;}
.ls5_c02313{letter-spacing:0.128304px;}
.ls4_c02313{letter-spacing:0.237600px;}
.lsd_c02313{letter-spacing:0.508464px;}
.ls17_c02313{letter-spacing:0.514080px;}
.ls12_c02313{letter-spacing:0.536976px;}
.lsb_c02313{letter-spacing:0.579744px;}
.ls15_c02313{letter-spacing:0.594000px;}
.ls8_c02313{letter-spacing:0.598752px;}
.ls2_c02313{letter-spacing:0.613008px;}
.ls1c_c02313{letter-spacing:0.617760px;}
.ls1b_c02313{letter-spacing:0.641520px;}
.lsf_c02313{letter-spacing:0.689040px;}
.ls6_c02313{letter-spacing:0.717552px;}
.ls0_c02313{letter-spacing:0.722304px;}
.sc__c02313{text-shadow:none;}
.sc0_c02313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02313{-webkit-text-stroke:0px transparent;}
.sc0_c02313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11_c02313{word-spacing:-15.126048px;}
.ws8_c02313{word-spacing:-12.602304px;}
.ws1a_c02313{word-spacing:-12.474000px;}
.ws19_c02313{word-spacing:-12.416976px;}
.ws4_c02313{word-spacing:-11.637648px;}
.ws27_c02313{word-spacing:-2.159136px;}
.ws14_c02313{word-spacing:-2.062368px;}
.ws22_c02313{word-spacing:-1.083456px;}
.ws21_c02313{word-spacing:-1.078704px;}
.ws1b_c02313{word-spacing:-0.974160px;}
.ws1d_c02313{word-spacing:-0.598752px;}
.ws20_c02313{word-spacing:-0.399168px;}
.ws1e_c02313{word-spacing:-0.118800px;}
.ws23_c02313{word-spacing:-0.099792px;}
.ws26_c02313{word-spacing:-0.085536px;}
.ws24_c02313{word-spacing:-0.047520px;}
.ws1f_c02313{word-spacing:-0.038016px;}
.ws28_c02313{word-spacing:-0.033264px;}
.ws1c_c02313{word-spacing:0.000000px;}
.ws29_c02313{word-spacing:0.346896px;}
.ws25_c02313{word-spacing:0.465696px;}
.ws17_c02313{word-spacing:0.717552px;}
.ws2_c02313{word-spacing:1.330560px;}
.ws16_c02313{word-spacing:2.480544px;}
.ws15_c02313{word-spacing:3.164832px;}
.ws18_c02313{word-spacing:5.037120px;}
.wse_c02313{word-spacing:11.661408px;}
.wsb_c02313{word-spacing:15.301440px;}
.ws7_c02313{word-spacing:22.885632px;}
.wsc_c02313{word-spacing:25.195104px;}
.ws13_c02313{word-spacing:27.385776px;}
.wsf_c02313{word-spacing:30.298752px;}
.ws10_c02313{word-spacing:33.300288px;}
.ws12_c02313{word-spacing:33.691680px;}
.wsd_c02313{word-spacing:34.836912px;}
.wsa_c02313{word-spacing:36.143712px;}
.ws6_c02313{word-spacing:36.742464px;}
.ws1_c02313{word-spacing:37.759392px;}
.ws0_c02313{word-spacing:38.020752px;}
.ws3_c02313{word-spacing:39.218256px;}
.ws5_c02313{word-spacing:39.902544px;}
.ws9_c02313{word-spacing:42.026688px;}
._0_c02313{margin-left:-1.948320px;}
._2_c02313{width:1.482624px;}
._4_c02313{width:4.785264px;}
._12_c02313{width:12.968208px;}
._d_c02313{width:14.707872px;}
._11_c02313{width:15.933024px;}
._10_c02313{width:17.387568px;}
._f_c02313{width:18.746640px;}
._c_c02313{width:24.776928px;}
._b_c02313{width:26.573184px;}
._a_c02313{width:30.393792px;}
._8_c02313{width:31.405968px;}
._9_c02313{width:33.069168px;}
._7_c02313{width:38.491200px;}
._6_c02313{width:39.531888px;}
._e_c02313{width:41.052528px;}
._5_c02313{width:42.891552px;}
._1_c02313{width:50.252400px;}
._3_c02313{width:51.530688px;}
.fc0_c02313{color:rgb(0,0,0);}
.fs0_c02313{font-size:47.520000px;}
.fs1_c02313{font-size:60.480000px;}
.y0_c02313{bottom:0.000000px;}
.yc_c02313{bottom:51.120450px;}
.y23_c02313{bottom:147.000738px;}
.y25_c02313{bottom:186.600234px;}
.y24_c02313{bottom:196.320450px;}
.y22_c02313{bottom:246.000342px;}
.y21_c02313{bottom:260.760054px;}
.y20_c02313{bottom:275.879730px;}
.y1f_c02313{bottom:343.560090px;}
.y1e_c02313{bottom:356.879946px;}
.y1c_c02313{bottom:391.440054px;}
.y1b_c02313{bottom:406.559730px;}
.y17_c02313{bottom:424.560306px;}
.y1d_c02313{bottom:458.760450px;}
.y1a_c02313{bottom:491.879514px;}
.y19_c02313{bottom:509.880090px;}
.y16_c02313{bottom:543.000342px;}
.y18_c02313{bottom:559.559874px;}
.y15_c02313{bottom:577.560450px;}
.y26_c02313{bottom:614.280450px;}
.y11_c02313{bottom:652.441242px;}
.y10_c02313{bottom:667.560918px;}
.y13_c02313{bottom:707.160234px;}
.y12_c02313{bottom:716.880450px;}
.yf_c02313{bottom:781.321422px;}
.ye_c02313{bottom:796.441098px;}
.yb_c02313{bottom:811.200000px;}
.yd_c02313{bottom:862.320450px;}
.ya_c02313{bottom:877.439910px;}
.y8_c02313{bottom:912.000018px;}
.y7_c02313{bottom:926.759730px;}
.y3_c02313{bottom:944.760306px;}
.y9_c02313{bottom:979.320414px;}
.y6_c02313{bottom:1012.439478px;}
.y5_c02313{bottom:1030.440054px;}
.y2_c02313{bottom:1063.560306px;}
.y4_c02313{bottom:1079.759874px;}
.y1_c02313{bottom:1097.760450px;}
.y14_c02313{bottom:1134.840450px;}
.h4_c02313{height:32.530781px;}
.h1_c02313{height:41.696016px;}
.h2_c02313{height:41.812031px;}
.h7_c02313{height:47.571455px;}
.h6_c02313{height:54.654737px;}
.h5_c02313{height:74.817456px;}
.h3_c02313{height:78.840000px;}
.h0_c02313{height:1263.000000px;}
.w2_c02313{width:215.280000px;}
.w1_c02313{width:892.500000px;}
.w0_c02313{width:892.830000px;}
.x0_c02313{left:0.000000px;}
.xf_c02313{left:117.000000px;}
.x9_c02313{left:440.999856px;}
.x4_c02313{left:445.680576px;}
.xd_c02313{left:451.080000px;}
.x7_c02313{left:455.399604px;}
.x5_c02313{left:461.880144px;}
.x1_c02313{left:463.320000px;}
.xc_c02313{left:483.480396px;}
.xa_c02313{left:492.119496px;}
.x6_c02313{left:493.200576px;}
.xe_c02313{left:506.880360px;}
.x3_c02313{left:511.919892px;}
.x2_c02313{left:526.679604px;}
.x8_c02313{left:569.880036px;}
.xb_c02313{left:653.760000px;}
@media print{
.v0_c02313{vertical-align:0.000000pt;}
.v2_c02313{vertical-align:1.279488pt;}
.v3_c02313{vertical-align:5.119488pt;}
.v1_c02313{vertical-align:29.441280pt;}
.ls13_c02313{letter-spacing:-0.734976pt;}
.ls1a_c02313{letter-spacing:-0.629376pt;}
.ls9_c02313{letter-spacing:-0.511104pt;}
.ls16_c02313{letter-spacing:-0.321024pt;}
.ls19_c02313{letter-spacing:-0.291456pt;}
.lsa_c02313{letter-spacing:-0.287232pt;}
.ls11_c02313{letter-spacing:-0.278784pt;}
.ls14_c02313{letter-spacing:-0.244992pt;}
.ls10_c02313{letter-spacing:-0.232320pt;}
.ls7_c02313{letter-spacing:-0.215424pt;}
.lsc_c02313{letter-spacing:-0.198528pt;}
.ls3_c02313{letter-spacing:-0.105600pt;}
.ls18_c02313{letter-spacing:0.000000pt;}
.ls1_c02313{letter-spacing:0.005376pt;}
.lse_c02313{letter-spacing:0.033792pt;}
.ls5_c02313{letter-spacing:0.114048pt;}
.ls4_c02313{letter-spacing:0.211200pt;}
.lsd_c02313{letter-spacing:0.451968pt;}
.ls17_c02313{letter-spacing:0.456960pt;}
.ls12_c02313{letter-spacing:0.477312pt;}
.lsb_c02313{letter-spacing:0.515328pt;}
.ls15_c02313{letter-spacing:0.528000pt;}
.ls8_c02313{letter-spacing:0.532224pt;}
.ls2_c02313{letter-spacing:0.544896pt;}
.ls1c_c02313{letter-spacing:0.549120pt;}
.ls1b_c02313{letter-spacing:0.570240pt;}
.lsf_c02313{letter-spacing:0.612480pt;}
.ls6_c02313{letter-spacing:0.637824pt;}
.ls0_c02313{letter-spacing:0.642048pt;}
.ws11_c02313{word-spacing:-13.445376pt;}
.ws8_c02313{word-spacing:-11.202048pt;}
.ws1a_c02313{word-spacing:-11.088000pt;}
.ws19_c02313{word-spacing:-11.037312pt;}
.ws4_c02313{word-spacing:-10.344576pt;}
.ws27_c02313{word-spacing:-1.919232pt;}
.ws14_c02313{word-spacing:-1.833216pt;}
.ws22_c02313{word-spacing:-0.963072pt;}
.ws21_c02313{word-spacing:-0.958848pt;}
.ws1b_c02313{word-spacing:-0.865920pt;}
.ws1d_c02313{word-spacing:-0.532224pt;}
.ws20_c02313{word-spacing:-0.354816pt;}
.ws1e_c02313{word-spacing:-0.105600pt;}
.ws23_c02313{word-spacing:-0.088704pt;}
.ws26_c02313{word-spacing:-0.076032pt;}
.ws24_c02313{word-spacing:-0.042240pt;}
.ws1f_c02313{word-spacing:-0.033792pt;}
.ws28_c02313{word-spacing:-0.029568pt;}
.ws1c_c02313{word-spacing:0.000000pt;}
.ws29_c02313{word-spacing:0.308352pt;}
.ws25_c02313{word-spacing:0.413952pt;}
.ws17_c02313{word-spacing:0.637824pt;}
.ws2_c02313{word-spacing:1.182720pt;}
.ws16_c02313{word-spacing:2.204928pt;}
.ws15_c02313{word-spacing:2.813184pt;}
.ws18_c02313{word-spacing:4.477440pt;}
.wse_c02313{word-spacing:10.365696pt;}
.wsb_c02313{word-spacing:13.601280pt;}
.ws7_c02313{word-spacing:20.342784pt;}
.wsc_c02313{word-spacing:22.395648pt;}
.ws13_c02313{word-spacing:24.342912pt;}
.wsf_c02313{word-spacing:26.932224pt;}
.ws10_c02313{word-spacing:29.600256pt;}
.ws12_c02313{word-spacing:29.948160pt;}
.wsd_c02313{word-spacing:30.966144pt;}
.wsa_c02313{word-spacing:32.127744pt;}
.ws6_c02313{word-spacing:32.659968pt;}
.ws1_c02313{word-spacing:33.563904pt;}
.ws0_c02313{word-spacing:33.796224pt;}
.ws3_c02313{word-spacing:34.860672pt;}
.ws5_c02313{word-spacing:35.468928pt;}
.ws9_c02313{word-spacing:37.357056pt;}
._0_c02313{margin-left:-1.731840pt;}
._2_c02313{width:1.317888pt;}
._4_c02313{width:4.253568pt;}
._12_c02313{width:11.527296pt;}
._d_c02313{width:13.073664pt;}
._11_c02313{width:14.162688pt;}
._10_c02313{width:15.455616pt;}
._f_c02313{width:16.663680pt;}
._c_c02313{width:22.023936pt;}
._b_c02313{width:23.620608pt;}
._a_c02313{width:27.016704pt;}
._8_c02313{width:27.916416pt;}
._9_c02313{width:29.394816pt;}
._7_c02313{width:34.214400pt;}
._6_c02313{width:35.139456pt;}
._e_c02313{width:36.491136pt;}
._5_c02313{width:38.125824pt;}
._1_c02313{width:44.668800pt;}
._3_c02313{width:45.805056pt;}
.fs0_c02313{font-size:42.240000pt;}
.fs1_c02313{font-size:53.760000pt;}
.y0_c02313{bottom:0.000000pt;}
.yc_c02313{bottom:45.440400pt;}
.y23_c02313{bottom:130.667323pt;}
.y25_c02313{bottom:165.866875pt;}
.y24_c02313{bottom:174.507067pt;}
.y22_c02313{bottom:218.666971pt;}
.y21_c02313{bottom:231.786715pt;}
.y20_c02313{bottom:245.226427pt;}
.y1f_c02313{bottom:305.386747pt;}
.y1e_c02313{bottom:317.226619pt;}
.y1c_c02313{bottom:347.946715pt;}
.y1b_c02313{bottom:361.386427pt;}
.y17_c02313{bottom:377.386939pt;}
.y1d_c02313{bottom:407.787067pt;}
.y1a_c02313{bottom:437.226235pt;}
.y19_c02313{bottom:453.226747pt;}
.y16_c02313{bottom:482.666971pt;}
.y18_c02313{bottom:497.386555pt;}
.y15_c02313{bottom:513.387067pt;}
.y26_c02313{bottom:546.027067pt;}
.y11_c02313{bottom:579.947771pt;}
.y10_c02313{bottom:593.387483pt;}
.y13_c02313{bottom:628.586875pt;}
.y12_c02313{bottom:637.227067pt;}
.yf_c02313{bottom:694.507931pt;}
.ye_c02313{bottom:707.947643pt;}
.yb_c02313{bottom:721.066667pt;}
.yd_c02313{bottom:766.507067pt;}
.ya_c02313{bottom:779.946587pt;}
.y8_c02313{bottom:810.666683pt;}
.y7_c02313{bottom:823.786427pt;}
.y3_c02313{bottom:839.786939pt;}
.y9_c02313{bottom:870.507035pt;}
.y6_c02313{bottom:899.946203pt;}
.y5_c02313{bottom:915.946715pt;}
.y2_c02313{bottom:945.386939pt;}
.y4_c02313{bottom:959.786555pt;}
.y1_c02313{bottom:975.787067pt;}
.y14_c02313{bottom:1008.747067pt;}
.h4_c02313{height:28.916250pt;}
.h1_c02313{height:37.063125pt;}
.h2_c02313{height:37.166250pt;}
.h7_c02313{height:42.285738pt;}
.h6_c02313{height:48.581988pt;}
.h5_c02313{height:66.504405pt;}
.h3_c02313{height:70.080000pt;}
.h0_c02313{height:1122.666667pt;}
.w2_c02313{width:191.360000pt;}
.w1_c02313{width:793.333333pt;}
.w0_c02313{width:793.626667pt;}
.x0_c02313{left:0.000000pt;}
.xf_c02313{left:104.000000pt;}
.x9_c02313{left:391.999872pt;}
.x4_c02313{left:396.160512pt;}
.xd_c02313{left:400.960000pt;}
.x7_c02313{left:404.799648pt;}
.x5_c02313{left:410.560128pt;}
.x1_c02313{left:411.840000pt;}
.xc_c02313{left:429.760352pt;}
.xa_c02313{left:437.439552pt;}
.x6_c02313{left:438.400512pt;}
.xe_c02313{left:450.560320pt;}
.x3_c02313{left:455.039904pt;}
.x2_c02313{left:468.159648pt;}
.x8_c02313{left:506.560032pt;}
.xb_c02313{left:581.120000pt;}
}





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

.ir_c02314:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02314{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02314;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02314{font-family:ff1_c02314;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02314;src:url('chunks/assets/font_9ddbbfa741df27b00bd98b2c.woff2')format("woff");}.ff2_c02314{font-family:ff2_c02314;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02314;src:url('chunks/assets/font_0d96f5ad014fd1a1c98ce3b0.woff2')format("woff");}.ff3_c02314{font-family:ff3_c02314;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02314{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02314{vertical-align:0.000000px;}
.v1_c02314{vertical-align:1.439424px;}
.v2_c02314{vertical-align:33.121440px;}
.ls17_c02314{letter-spacing:-0.765072px;}
.lsa_c02314{letter-spacing:-0.574992px;}
.ls1c_c02314{letter-spacing:-0.361152px;}
.lsb_c02314{letter-spacing:-0.332640px;}
.ls16_c02314{letter-spacing:-0.323136px;}
.ls12_c02314{letter-spacing:-0.275616px;}
.ls10_c02314{letter-spacing:-0.261360px;}
.ls8_c02314{letter-spacing:-0.242352px;}
.ls1d_c02314{letter-spacing:-0.223344px;}
.ls5_c02314{letter-spacing:-0.118800px;}
.ls15_c02314{letter-spacing:0.000000px;}
.ls0_c02314{letter-spacing:0.006048px;}
.lsd_c02314{letter-spacing:0.014256px;}
.lsf_c02314{letter-spacing:0.038016px;}
.ls7_c02314{letter-spacing:0.128304px;}
.ls1a_c02314{letter-spacing:0.237600px;}
.lse_c02314{letter-spacing:0.508464px;}
.ls14_c02314{letter-spacing:0.514080px;}
.ls11_c02314{letter-spacing:0.536976px;}
.lsc_c02314{letter-spacing:0.579744px;}
.ls13_c02314{letter-spacing:0.594000px;}
.ls9_c02314{letter-spacing:0.598752px;}
.ls4_c02314{letter-spacing:0.613008px;}
.ls1b_c02314{letter-spacing:0.617760px;}
.ls3_c02314{letter-spacing:0.636768px;}
.ls2_c02314{letter-spacing:0.655776px;}
.ls19_c02314{letter-spacing:0.679536px;}
.ls18_c02314{letter-spacing:0.684288px;}
.ls6_c02314{letter-spacing:0.717552px;}
.ls1_c02314{letter-spacing:0.722304px;}
.sc__c02314{text-shadow:none;}
.sc0_c02314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02314{-webkit-text-stroke:0px transparent;}
.sc0_c02314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02314{word-spacing:-15.126048px;}
.ws10_c02314{word-spacing:-12.602304px;}
.wsc_c02314{word-spacing:-12.474000px;}
.wsb_c02314{word-spacing:-12.416976px;}
.ws8_c02314{word-spacing:-11.894256px;}
.ws4_c02314{word-spacing:-11.637648px;}
.ws1b_c02314{word-spacing:-2.162160px;}
.ws26_c02314{word-spacing:-2.159136px;}
.ws24_c02314{word-spacing:-1.083456px;}
.ws28_c02314{word-spacing:-1.040688px;}
.ws1f_c02314{word-spacing:-0.974160px;}
.ws1a_c02314{word-spacing:-0.399168px;}
.ws29_c02314{word-spacing:-0.137808px;}
.ws21_c02314{word-spacing:-0.118800px;}
.ws23_c02314{word-spacing:-0.099792px;}
.ws25_c02314{word-spacing:-0.085536px;}
.ws27_c02314{word-spacing:-0.038016px;}
.ws22_c02314{word-spacing:-0.028512px;}
.ws20_c02314{word-spacing:0.000000px;}
.ws18_c02314{word-spacing:0.527472px;}
.ws2_c02314{word-spacing:1.330560px;}
.ws19_c02314{word-spacing:1.724976px;}
.ws17_c02314{word-spacing:3.511728px;}
.ws11_c02314{word-spacing:3.668544px;}
.ws7_c02314{word-spacing:4.200768px;}
.ws12_c02314{word-spacing:4.314816px;}
.ws14_c02314{word-spacing:13.776048px;}
.ws13_c02314{word-spacing:15.581808px;}
.ws15_c02314{word-spacing:17.634672px;}
.wsf_c02314{word-spacing:23.280048px;}
.ws16_c02314{word-spacing:29.709504px;}
.ws1e_c02314{word-spacing:30.298752px;}
.wsd_c02314{word-spacing:33.300288px;}
.wsa_c02314{word-spacing:36.143712px;}
.ws6_c02314{word-spacing:36.742464px;}
.ws1_c02314{word-spacing:37.759392px;}
.ws0_c02314{word-spacing:38.020752px;}
.ws3_c02314{word-spacing:39.218256px;}
.ws1d_c02314{word-spacing:39.593664px;}
.ws5_c02314{word-spacing:39.902544px;}
.ws9_c02314{word-spacing:42.026688px;}
.ws1c_c02314{word-spacing:49.677408px;}
._0_c02314{margin-left:-1.948320px;}
._2_c02314{width:1.482624px;}
._4_c02314{width:4.785264px;}
._8_c02314{width:14.707872px;}
._5_c02314{width:16.955136px;}
._6_c02314{width:18.998496px;}
._7_c02314{width:21.787920px;}
._b_c02314{width:30.512592px;}
._9_c02314{width:37.963728px;}
._a_c02314{width:42.364080px;}
._c_c02314{width:43.713648px;}
._d_c02314{width:49.221216px;}
._1_c02314{width:50.252400px;}
._3_c02314{width:51.530688px;}
._10_c02314{width:55.593648px;}
._f_c02314{width:57.171312px;}
._e_c02314{width:59.514048px;}
._11_c02314{width:112.132944px;}
.fc0_c02314{color:rgb(0,0,0);}
.fs0_c02314{font-size:47.520000px;}
.fs1_c02314{font-size:60.480000px;}
.y0_c02314{bottom:0.000000px;}
.y23_c02314{bottom:147.001926px;}
.y25_c02314{bottom:186.600234px;}
.y24_c02314{bottom:196.320450px;}
.y22_c02314{bottom:230.881854px;}
.y21_c02314{bottom:246.001530px;}
.y20_c02314{bottom:260.761242px;}
.y1f_c02314{bottom:275.880918px;}
.y1e_c02314{bottom:296.761206px;}
.y1d_c02314{bottom:311.880882px;}
.y1c_c02314{bottom:327.000558px;}
.y1b_c02314{bottom:341.760270px;}
.y1a_c02314{bottom:356.879946px;}
.y18_c02314{bottom:376.320378px;}
.y17_c02314{bottom:391.440054px;}
.y16_c02314{bottom:406.559730px;}
.y12_c02314{bottom:424.560306px;}
.y19_c02314{bottom:458.760450px;}
.y15_c02314{bottom:491.879514px;}
.y14_c02314{bottom:509.880090px;}
.y11_c02314{bottom:543.000342px;}
.y13_c02314{bottom:559.559874px;}
.y10_c02314{bottom:577.560450px;}
.y26_c02314{bottom:614.280450px;}
.yc_c02314{bottom:667.559514px;}
.ye_c02314{bottom:707.160234px;}
.yd_c02314{bottom:716.880450px;}
.yb_c02314{bottom:796.439694px;}
.ya_c02314{bottom:877.439910px;}
.y8_c02314{bottom:912.000018px;}
.y7_c02314{bottom:926.759730px;}
.y3_c02314{bottom:944.760306px;}
.y9_c02314{bottom:979.320414px;}
.y6_c02314{bottom:1012.439478px;}
.y5_c02314{bottom:1030.440054px;}
.y2_c02314{bottom:1063.560306px;}
.y4_c02314{bottom:1079.759874px;}
.y1_c02314{bottom:1097.760450px;}
.yf_c02314{bottom:1134.840450px;}
.h3_c02314{height:32.530781px;}
.h1_c02314{height:41.696016px;}
.h2_c02314{height:41.812031px;}
.h4_c02314{height:54.654737px;}
.h5_c02314{height:74.817456px;}
.h0_c02314{height:1263.000000px;}
.w1_c02314{width:892.500000px;}
.w0_c02314{width:892.830000px;}
.x0_c02314{left:0.000000px;}
.xe_c02314{left:117.000000px;}
.x9_c02314{left:440.999856px;}
.x4_c02314{left:445.680576px;}
.xc_c02314{left:451.080000px;}
.x7_c02314{left:455.399604px;}
.x5_c02314{left:461.880144px;}
.x1_c02314{left:463.320000px;}
.xb_c02314{left:483.480360px;}
.xa_c02314{left:492.119496px;}
.x6_c02314{left:493.200576px;}
.xd_c02314{left:506.880360px;}
.x3_c02314{left:511.919892px;}
.x2_c02314{left:526.679604px;}
.x8_c02314{left:569.880036px;}
@media print{
.v0_c02314{vertical-align:0.000000pt;}
.v1_c02314{vertical-align:1.279488pt;}
.v2_c02314{vertical-align:29.441280pt;}
.ls17_c02314{letter-spacing:-0.680064pt;}
.lsa_c02314{letter-spacing:-0.511104pt;}
.ls1c_c02314{letter-spacing:-0.321024pt;}
.lsb_c02314{letter-spacing:-0.295680pt;}
.ls16_c02314{letter-spacing:-0.287232pt;}
.ls12_c02314{letter-spacing:-0.244992pt;}
.ls10_c02314{letter-spacing:-0.232320pt;}
.ls8_c02314{letter-spacing:-0.215424pt;}
.ls1d_c02314{letter-spacing:-0.198528pt;}
.ls5_c02314{letter-spacing:-0.105600pt;}
.ls15_c02314{letter-spacing:0.000000pt;}
.ls0_c02314{letter-spacing:0.005376pt;}
.lsd_c02314{letter-spacing:0.012672pt;}
.lsf_c02314{letter-spacing:0.033792pt;}
.ls7_c02314{letter-spacing:0.114048pt;}
.ls1a_c02314{letter-spacing:0.211200pt;}
.lse_c02314{letter-spacing:0.451968pt;}
.ls14_c02314{letter-spacing:0.456960pt;}
.ls11_c02314{letter-spacing:0.477312pt;}
.lsc_c02314{letter-spacing:0.515328pt;}
.ls13_c02314{letter-spacing:0.528000pt;}
.ls9_c02314{letter-spacing:0.532224pt;}
.ls4_c02314{letter-spacing:0.544896pt;}
.ls1b_c02314{letter-spacing:0.549120pt;}
.ls3_c02314{letter-spacing:0.566016pt;}
.ls2_c02314{letter-spacing:0.582912pt;}
.ls19_c02314{letter-spacing:0.604032pt;}
.ls18_c02314{letter-spacing:0.608256pt;}
.ls6_c02314{letter-spacing:0.637824pt;}
.ls1_c02314{letter-spacing:0.642048pt;}
.wse_c02314{word-spacing:-13.445376pt;}
.ws10_c02314{word-spacing:-11.202048pt;}
.wsc_c02314{word-spacing:-11.088000pt;}
.wsb_c02314{word-spacing:-11.037312pt;}
.ws8_c02314{word-spacing:-10.572672pt;}
.ws4_c02314{word-spacing:-10.344576pt;}
.ws1b_c02314{word-spacing:-1.921920pt;}
.ws26_c02314{word-spacing:-1.919232pt;}
.ws24_c02314{word-spacing:-0.963072pt;}
.ws28_c02314{word-spacing:-0.925056pt;}
.ws1f_c02314{word-spacing:-0.865920pt;}
.ws1a_c02314{word-spacing:-0.354816pt;}
.ws29_c02314{word-spacing:-0.122496pt;}
.ws21_c02314{word-spacing:-0.105600pt;}
.ws23_c02314{word-spacing:-0.088704pt;}
.ws25_c02314{word-spacing:-0.076032pt;}
.ws27_c02314{word-spacing:-0.033792pt;}
.ws22_c02314{word-spacing:-0.025344pt;}
.ws20_c02314{word-spacing:0.000000pt;}
.ws18_c02314{word-spacing:0.468864pt;}
.ws2_c02314{word-spacing:1.182720pt;}
.ws19_c02314{word-spacing:1.533312pt;}
.ws17_c02314{word-spacing:3.121536pt;}
.ws11_c02314{word-spacing:3.260928pt;}
.ws7_c02314{word-spacing:3.734016pt;}
.ws12_c02314{word-spacing:3.835392pt;}
.ws14_c02314{word-spacing:12.245376pt;}
.ws13_c02314{word-spacing:13.850496pt;}
.ws15_c02314{word-spacing:15.675264pt;}
.wsf_c02314{word-spacing:20.693376pt;}
.ws16_c02314{word-spacing:26.408448pt;}
.ws1e_c02314{word-spacing:26.932224pt;}
.wsd_c02314{word-spacing:29.600256pt;}
.wsa_c02314{word-spacing:32.127744pt;}
.ws6_c02314{word-spacing:32.659968pt;}
.ws1_c02314{word-spacing:33.563904pt;}
.ws0_c02314{word-spacing:33.796224pt;}
.ws3_c02314{word-spacing:34.860672pt;}
.ws1d_c02314{word-spacing:35.194368pt;}
.ws5_c02314{word-spacing:35.468928pt;}
.ws9_c02314{word-spacing:37.357056pt;}
.ws1c_c02314{word-spacing:44.157696pt;}
._0_c02314{margin-left:-1.731840pt;}
._2_c02314{width:1.317888pt;}
._4_c02314{width:4.253568pt;}
._8_c02314{width:13.073664pt;}
._5_c02314{width:15.071232pt;}
._6_c02314{width:16.887552pt;}
._7_c02314{width:19.367040pt;}
._b_c02314{width:27.122304pt;}
._9_c02314{width:33.745536pt;}
._a_c02314{width:37.656960pt;}
._c_c02314{width:38.856576pt;}
._d_c02314{width:43.752192pt;}
._1_c02314{width:44.668800pt;}
._3_c02314{width:45.805056pt;}
._10_c02314{width:49.416576pt;}
._f_c02314{width:50.818944pt;}
._e_c02314{width:52.901376pt;}
._11_c02314{width:99.673728pt;}
.fs0_c02314{font-size:42.240000pt;}
.fs1_c02314{font-size:53.760000pt;}
.y0_c02314{bottom:0.000000pt;}
.y23_c02314{bottom:130.668379pt;}
.y25_c02314{bottom:165.866875pt;}
.y24_c02314{bottom:174.507067pt;}
.y22_c02314{bottom:205.228315pt;}
.y21_c02314{bottom:218.668027pt;}
.y20_c02314{bottom:231.787771pt;}
.y1f_c02314{bottom:245.227483pt;}
.y1e_c02314{bottom:263.787739pt;}
.y1d_c02314{bottom:277.227451pt;}
.y1c_c02314{bottom:290.667163pt;}
.y1b_c02314{bottom:303.786907pt;}
.y1a_c02314{bottom:317.226619pt;}
.y18_c02314{bottom:334.507003pt;}
.y17_c02314{bottom:347.946715pt;}
.y16_c02314{bottom:361.386427pt;}
.y12_c02314{bottom:377.386939pt;}
.y19_c02314{bottom:407.787067pt;}
.y15_c02314{bottom:437.226235pt;}
.y14_c02314{bottom:453.226747pt;}
.y11_c02314{bottom:482.666971pt;}
.y13_c02314{bottom:497.386555pt;}
.y10_c02314{bottom:513.387067pt;}
.y26_c02314{bottom:546.027067pt;}
.yc_c02314{bottom:593.386235pt;}
.ye_c02314{bottom:628.586875pt;}
.yd_c02314{bottom:637.227067pt;}
.yb_c02314{bottom:707.946395pt;}
.ya_c02314{bottom:779.946587pt;}
.y8_c02314{bottom:810.666683pt;}
.y7_c02314{bottom:823.786427pt;}
.y3_c02314{bottom:839.786939pt;}
.y9_c02314{bottom:870.507035pt;}
.y6_c02314{bottom:899.946203pt;}
.y5_c02314{bottom:915.946715pt;}
.y2_c02314{bottom:945.386939pt;}
.y4_c02314{bottom:959.786555pt;}
.y1_c02314{bottom:975.787067pt;}
.yf_c02314{bottom:1008.747067pt;}
.h3_c02314{height:28.916250pt;}
.h1_c02314{height:37.063125pt;}
.h2_c02314{height:37.166250pt;}
.h4_c02314{height:48.581988pt;}
.h5_c02314{height:66.504405pt;}
.h0_c02314{height:1122.666667pt;}
.w1_c02314{width:793.333333pt;}
.w0_c02314{width:793.626667pt;}
.x0_c02314{left:0.000000pt;}
.xe_c02314{left:104.000000pt;}
.x9_c02314{left:391.999872pt;}
.x4_c02314{left:396.160512pt;}
.xc_c02314{left:400.960000pt;}
.x7_c02314{left:404.799648pt;}
.x5_c02314{left:410.560128pt;}
.x1_c02314{left:411.840000pt;}
.xb_c02314{left:429.760320pt;}
.xa_c02314{left:437.439552pt;}
.x6_c02314{left:438.400512pt;}
.xd_c02314{left:450.560320pt;}
.x3_c02314{left:455.039904pt;}
.x2_c02314{left:468.159648pt;}
.x8_c02314{left:506.560032pt;}
}





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

.ir_c02315:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02315{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02315;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02315{font-family:ff1_c02315;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02315;src:url('chunks/assets/font_4ff6bf3d99591b99e2eab2ee.woff2')format("woff");}.ff2_c02315{font-family:ff2_c02315;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02315;src:url('chunks/assets/font_58d185e33f6292cfee9d21b0.woff2')format("woff");}.ff3_c02315{font-family:ff3_c02315;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02315{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02315{vertical-align:0.000000px;}
.v1_c02315{vertical-align:1.439424px;}
.ls8_c02315{letter-spacing:-0.855360px;}
.lsc_c02315{letter-spacing:-0.826848px;}
.ls18_c02315{letter-spacing:-0.774576px;}
.ls1b_c02315{letter-spacing:-0.736560px;}
.ls9_c02315{letter-spacing:-0.574992px;}
.lsa_c02315{letter-spacing:-0.323136px;}
.ls13_c02315{letter-spacing:-0.275616px;}
.ls1c_c02315{letter-spacing:-0.270864px;}
.ls17_c02315{letter-spacing:-0.266112px;}
.ls11_c02315{letter-spacing:-0.261360px;}
.ls6_c02315{letter-spacing:-0.242352px;}
.ls10_c02315{letter-spacing:-0.232848px;}
.ls3_c02315{letter-spacing:-0.118800px;}
.ls16_c02315{letter-spacing:0.000000px;}
.ls1_c02315{letter-spacing:0.006048px;}
.lsf_c02315{letter-spacing:0.014256px;}
.lsd_c02315{letter-spacing:0.023760px;}
.ls19_c02315{letter-spacing:0.038016px;}
.ls5_c02315{letter-spacing:0.128304px;}
.lse_c02315{letter-spacing:0.508464px;}
.ls15_c02315{letter-spacing:0.514080px;}
.ls12_c02315{letter-spacing:0.536976px;}
.lsb_c02315{letter-spacing:0.579744px;}
.ls14_c02315{letter-spacing:0.594000px;}
.ls7_c02315{letter-spacing:0.598752px;}
.ls2_c02315{letter-spacing:0.613008px;}
.ls1a_c02315{letter-spacing:0.651024px;}
.ls4_c02315{letter-spacing:0.717552px;}
.ls0_c02315{letter-spacing:0.722304px;}
.sc__c02315{text-shadow:none;}
.sc0_c02315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02315{-webkit-text-stroke:0px transparent;}
.sc0_c02315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02315{word-spacing:-15.126048px;}
.wsa_c02315{word-spacing:-12.474000px;}
.ws8_c02315{word-spacing:-12.459744px;}
.ws9_c02315{word-spacing:-12.416976px;}
.wsd_c02315{word-spacing:-11.105424px;}
.ws1d_c02315{word-spacing:-2.159136px;}
.ws19_c02315{word-spacing:-1.083456px;}
.ws12_c02315{word-spacing:-0.974160px;}
.ws1f_c02315{word-spacing:-0.399168px;}
.ws17_c02315{word-spacing:-0.384912px;}
.ws18_c02315{word-spacing:-0.375408px;}
.ws1a_c02315{word-spacing:-0.128304px;}
.ws14_c02315{word-spacing:-0.118800px;}
.ws1b_c02315{word-spacing:-0.099792px;}
.ws1e_c02315{word-spacing:-0.095040px;}
.ws20_c02315{word-spacing:-0.090288px;}
.ws1c_c02315{word-spacing:-0.085536px;}
.ws16_c02315{word-spacing:-0.038016px;}
.ws13_c02315{word-spacing:0.000000px;}
.ws15_c02315{word-spacing:0.494208px;}
.ws2_c02315{word-spacing:1.330560px;}
.ws11_c02315{word-spacing:6.629040px;}
.wsf_c02315{word-spacing:29.086992px;}
.wsb_c02315{word-spacing:33.300288px;}
.ws6_c02315{word-spacing:33.691680px;}
.ws10_c02315{word-spacing:34.836912px;}
.wse_c02315{word-spacing:36.143712px;}
.ws5_c02315{word-spacing:36.742464px;}
.ws1_c02315{word-spacing:37.759392px;}
.ws0_c02315{word-spacing:38.020752px;}
.ws3_c02315{word-spacing:39.218256px;}
.ws4_c02315{word-spacing:39.902544px;}
.ws7_c02315{word-spacing:42.026688px;}
._0_c02315{margin-left:-1.948320px;}
._2_c02315{width:1.482624px;}
._7_c02315{width:4.999104px;}
._4_c02315{width:6.077808px;}
._6_c02315{width:14.707872px;}
._c_c02315{width:19.982160px;}
._d_c02315{width:23.451120px;}
._b_c02315{width:24.691392px;}
._9_c02315{width:39.427344px;}
._5_c02315{width:41.052528px;}
._8_c02315{width:43.428528px;}
._a_c02315{width:45.224784px;}
._1_c02315{width:50.252400px;}
._3_c02315{width:51.530688px;}
.fc0_c02315{color:rgb(0,0,0);}
.fs0_c02315{font-size:47.520000px;}
.fs1_c02315{font-size:60.480000px;}
.y0_c02315{bottom:0.000000px;}
.yc_c02315{bottom:66.240450px;}
.y1f_c02315{bottom:131.878686px;}
.y1e_c02315{bottom:146.998362px;}
.y21_c02315{bottom:186.600234px;}
.y20_c02315{bottom:196.320450px;}
.y1d_c02315{bottom:275.878542px;}
.y1c_c02315{bottom:341.759082px;}
.y1b_c02315{bottom:356.878758px;}
.y19_c02315{bottom:406.559730px;}
.y15_c02315{bottom:424.560306px;}
.y1a_c02315{bottom:458.759262px;}
.y18_c02315{bottom:491.879514px;}
.y17_c02315{bottom:509.880090px;}
.y14_c02315{bottom:543.000342px;}
.y16_c02315{bottom:559.559874px;}
.y13_c02315{bottom:577.560450px;}
.y22_c02315{bottom:614.280450px;}
.yf_c02315{bottom:667.560054px;}
.y11_c02315{bottom:707.160234px;}
.y10_c02315{bottom:716.880450px;}
.ye_c02315{bottom:796.440234px;}
.yb_c02315{bottom:811.200000px;}
.ya_c02315{bottom:877.439910px;}
.yd_c02315{bottom:877.440450px;}
.y8_c02315{bottom:912.000018px;}
.y7_c02315{bottom:926.759730px;}
.y3_c02315{bottom:944.760306px;}
.y9_c02315{bottom:979.320414px;}
.y6_c02315{bottom:1012.439478px;}
.y5_c02315{bottom:1030.440054px;}
.y2_c02315{bottom:1063.560306px;}
.y4_c02315{bottom:1079.759874px;}
.y1_c02315{bottom:1097.760450px;}
.y12_c02315{bottom:1134.840450px;}
.h3_c02315{height:32.530781px;}
.h1_c02315{height:41.696016px;}
.h2_c02315{height:41.812031px;}
.h5_c02315{height:54.654737px;}
.h4_c02315{height:78.840000px;}
.h0_c02315{height:1263.000000px;}
.w2_c02315{width:215.280000px;}
.w1_c02315{width:892.500000px;}
.w0_c02315{width:892.830000px;}
.x0_c02315{left:0.000000px;}
.xf_c02315{left:117.000000px;}
.x9_c02315{left:440.999856px;}
.x4_c02315{left:445.680576px;}
.xd_c02315{left:451.080000px;}
.x7_c02315{left:455.399604px;}
.x5_c02315{left:461.880144px;}
.x1_c02315{left:463.320000px;}
.xc_c02315{left:483.480396px;}
.xa_c02315{left:492.120684px;}
.x6_c02315{left:493.200576px;}
.xe_c02315{left:506.880360px;}
.x3_c02315{left:511.919892px;}
.x2_c02315{left:526.679604px;}
.x8_c02315{left:569.880036px;}
.xb_c02315{left:748.800000px;}
@media print{
.v0_c02315{vertical-align:0.000000pt;}
.v1_c02315{vertical-align:1.279488pt;}
.ls8_c02315{letter-spacing:-0.760320pt;}
.lsc_c02315{letter-spacing:-0.734976pt;}
.ls18_c02315{letter-spacing:-0.688512pt;}
.ls1b_c02315{letter-spacing:-0.654720pt;}
.ls9_c02315{letter-spacing:-0.511104pt;}
.lsa_c02315{letter-spacing:-0.287232pt;}
.ls13_c02315{letter-spacing:-0.244992pt;}
.ls1c_c02315{letter-spacing:-0.240768pt;}
.ls17_c02315{letter-spacing:-0.236544pt;}
.ls11_c02315{letter-spacing:-0.232320pt;}
.ls6_c02315{letter-spacing:-0.215424pt;}
.ls10_c02315{letter-spacing:-0.206976pt;}
.ls3_c02315{letter-spacing:-0.105600pt;}
.ls16_c02315{letter-spacing:0.000000pt;}
.ls1_c02315{letter-spacing:0.005376pt;}
.lsf_c02315{letter-spacing:0.012672pt;}
.lsd_c02315{letter-spacing:0.021120pt;}
.ls19_c02315{letter-spacing:0.033792pt;}
.ls5_c02315{letter-spacing:0.114048pt;}
.lse_c02315{letter-spacing:0.451968pt;}
.ls15_c02315{letter-spacing:0.456960pt;}
.ls12_c02315{letter-spacing:0.477312pt;}
.lsb_c02315{letter-spacing:0.515328pt;}
.ls14_c02315{letter-spacing:0.528000pt;}
.ls7_c02315{letter-spacing:0.532224pt;}
.ls2_c02315{letter-spacing:0.544896pt;}
.ls1a_c02315{letter-spacing:0.578688pt;}
.ls4_c02315{letter-spacing:0.637824pt;}
.ls0_c02315{letter-spacing:0.642048pt;}
.wsc_c02315{word-spacing:-13.445376pt;}
.wsa_c02315{word-spacing:-11.088000pt;}
.ws8_c02315{word-spacing:-11.075328pt;}
.ws9_c02315{word-spacing:-11.037312pt;}
.wsd_c02315{word-spacing:-9.871488pt;}
.ws1d_c02315{word-spacing:-1.919232pt;}
.ws19_c02315{word-spacing:-0.963072pt;}
.ws12_c02315{word-spacing:-0.865920pt;}
.ws1f_c02315{word-spacing:-0.354816pt;}
.ws17_c02315{word-spacing:-0.342144pt;}
.ws18_c02315{word-spacing:-0.333696pt;}
.ws1a_c02315{word-spacing:-0.114048pt;}
.ws14_c02315{word-spacing:-0.105600pt;}
.ws1b_c02315{word-spacing:-0.088704pt;}
.ws1e_c02315{word-spacing:-0.084480pt;}
.ws20_c02315{word-spacing:-0.080256pt;}
.ws1c_c02315{word-spacing:-0.076032pt;}
.ws16_c02315{word-spacing:-0.033792pt;}
.ws13_c02315{word-spacing:0.000000pt;}
.ws15_c02315{word-spacing:0.439296pt;}
.ws2_c02315{word-spacing:1.182720pt;}
.ws11_c02315{word-spacing:5.892480pt;}
.wsf_c02315{word-spacing:25.855104pt;}
.wsb_c02315{word-spacing:29.600256pt;}
.ws6_c02315{word-spacing:29.948160pt;}
.ws10_c02315{word-spacing:30.966144pt;}
.wse_c02315{word-spacing:32.127744pt;}
.ws5_c02315{word-spacing:32.659968pt;}
.ws1_c02315{word-spacing:33.563904pt;}
.ws0_c02315{word-spacing:33.796224pt;}
.ws3_c02315{word-spacing:34.860672pt;}
.ws4_c02315{word-spacing:35.468928pt;}
.ws7_c02315{word-spacing:37.357056pt;}
._0_c02315{margin-left:-1.731840pt;}
._2_c02315{width:1.317888pt;}
._7_c02315{width:4.443648pt;}
._4_c02315{width:5.402496pt;}
._6_c02315{width:13.073664pt;}
._c_c02315{width:17.761920pt;}
._d_c02315{width:20.845440pt;}
._b_c02315{width:21.947904pt;}
._9_c02315{width:35.046528pt;}
._5_c02315{width:36.491136pt;}
._8_c02315{width:38.603136pt;}
._a_c02315{width:40.199808pt;}
._1_c02315{width:44.668800pt;}
._3_c02315{width:45.805056pt;}
.fs0_c02315{font-size:42.240000pt;}
.fs1_c02315{font-size:53.760000pt;}
.y0_c02315{bottom:0.000000pt;}
.yc_c02315{bottom:58.880400pt;}
.y1f_c02315{bottom:117.225499pt;}
.y1e_c02315{bottom:130.665211pt;}
.y21_c02315{bottom:165.866875pt;}
.y20_c02315{bottom:174.507067pt;}
.y1d_c02315{bottom:245.225371pt;}
.y1c_c02315{bottom:303.785851pt;}
.y1b_c02315{bottom:317.225563pt;}
.y19_c02315{bottom:361.386427pt;}
.y15_c02315{bottom:377.386939pt;}
.y1a_c02315{bottom:407.786011pt;}
.y18_c02315{bottom:437.226235pt;}
.y17_c02315{bottom:453.226747pt;}
.y14_c02315{bottom:482.666971pt;}
.y16_c02315{bottom:497.386555pt;}
.y13_c02315{bottom:513.387067pt;}
.y22_c02315{bottom:546.027067pt;}
.yf_c02315{bottom:593.386715pt;}
.y11_c02315{bottom:628.586875pt;}
.y10_c02315{bottom:637.227067pt;}
.ye_c02315{bottom:707.946875pt;}
.yb_c02315{bottom:721.066667pt;}
.ya_c02315{bottom:779.946587pt;}
.yd_c02315{bottom:779.947067pt;}
.y8_c02315{bottom:810.666683pt;}
.y7_c02315{bottom:823.786427pt;}
.y3_c02315{bottom:839.786939pt;}
.y9_c02315{bottom:870.507035pt;}
.y6_c02315{bottom:899.946203pt;}
.y5_c02315{bottom:915.946715pt;}
.y2_c02315{bottom:945.386939pt;}
.y4_c02315{bottom:959.786555pt;}
.y1_c02315{bottom:975.787067pt;}
.y12_c02315{bottom:1008.747067pt;}
.h3_c02315{height:28.916250pt;}
.h1_c02315{height:37.063125pt;}
.h2_c02315{height:37.166250pt;}
.h5_c02315{height:48.581988pt;}
.h4_c02315{height:70.080000pt;}
.h0_c02315{height:1122.666667pt;}
.w2_c02315{width:191.360000pt;}
.w1_c02315{width:793.333333pt;}
.w0_c02315{width:793.626667pt;}
.x0_c02315{left:0.000000pt;}
.xf_c02315{left:104.000000pt;}
.x9_c02315{left:391.999872pt;}
.x4_c02315{left:396.160512pt;}
.xd_c02315{left:400.960000pt;}
.x7_c02315{left:404.799648pt;}
.x5_c02315{left:410.560128pt;}
.x1_c02315{left:411.840000pt;}
.xc_c02315{left:429.760352pt;}
.xa_c02315{left:437.440608pt;}
.x6_c02315{left:438.400512pt;}
.xe_c02315{left:450.560320pt;}
.x3_c02315{left:455.039904pt;}
.x2_c02315{left:468.159648pt;}
.x8_c02315{left:506.560032pt;}
.xb_c02315{left:665.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_c02316 {
    display:none;
  }
  .loading-indicator_c02316.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02316 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02316 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02316" -> "#page-container .classname_c02316")
 */
.pf_c02316 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02316 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02316.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02316 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02316 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02316 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02316 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02316 {overflow:visible;}
  }
}
.c_c02316 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02316 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02316:after { /* webkit #35443 */
  content: '';
}
.t_c02316:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02316 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02316 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02316 { /* info for Javascript */
  display:none;
}
.l_c02316 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02316 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02316 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02316:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02316{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02316;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02316{font-family:ff1_c02316;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02316;src:url('chunks/assets/font_917c6626dd1be64c07c84cb4.woff2')format("woff");}.ff2_c02316{font-family:ff2_c02316;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02316;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02316{font-family:ff3_c02316;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02316{vertical-align:0.000000px;}
.v1_c02316{vertical-align:1.439424px;}
.lse_c02316{letter-spacing:-1.197504px;}
.ls9_c02316{letter-spacing:-0.803088px;}
.ls17_c02316{letter-spacing:-0.594000px;}
.lsa_c02316{letter-spacing:-0.574992px;}
.lsb_c02316{letter-spacing:-0.361152px;}
.ls16_c02316{letter-spacing:-0.332640px;}
.ls12_c02316{letter-spacing:-0.275616px;}
.ls10_c02316{letter-spacing:-0.261360px;}
.ls6_c02316{letter-spacing:-0.242352px;}
.ls3_c02316{letter-spacing:-0.118800px;}
.ls15_c02316{letter-spacing:0.000000px;}
.ls0_c02316{letter-spacing:0.006048px;}
.ls5_c02316{letter-spacing:0.128304px;}
.ls7_c02316{letter-spacing:0.242352px;}
.lsd_c02316{letter-spacing:0.508464px;}
.ls14_c02316{letter-spacing:0.514080px;}
.ls11_c02316{letter-spacing:0.536976px;}
.lsc_c02316{letter-spacing:0.579744px;}
.ls13_c02316{letter-spacing:0.594000px;}
.ls8_c02316{letter-spacing:0.598752px;}
.ls1_c02316{letter-spacing:0.613008px;}
.lsf_c02316{letter-spacing:0.684288px;}
.ls4_c02316{letter-spacing:0.717552px;}
.ls2_c02316{letter-spacing:0.722304px;}
.sc__c02316{text-shadow:none;}
.sc0_c02316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02316{-webkit-text-stroke:0px transparent;}
.sc0_c02316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02316{word-spacing:-15.126048px;}
.ws9_c02316{word-spacing:-12.474000px;}
.ws8_c02316{word-spacing:-12.416976px;}
.ws2_c02316{word-spacing:-12.122352px;}
.ws14_c02316{word-spacing:-2.159136px;}
.ws11_c02316{word-spacing:-1.045440px;}
.wsc_c02316{word-spacing:-0.974160px;}
.wse_c02316{word-spacing:-0.118800px;}
.ws12_c02316{word-spacing:-0.099792px;}
.ws13_c02316{word-spacing:-0.085536px;}
.ws15_c02316{word-spacing:-0.028512px;}
.wsd_c02316{word-spacing:0.000000px;}
.ws16_c02316{word-spacing:0.232848px;}
.wsf_c02316{word-spacing:0.441936px;}
.ws10_c02316{word-spacing:0.836352px;}
.wsa_c02316{word-spacing:33.300288px;}
.ws7_c02316{word-spacing:36.143712px;}
.ws5_c02316{word-spacing:36.742464px;}
.ws1_c02316{word-spacing:37.759392px;}
.ws0_c02316{word-spacing:38.020752px;}
.ws3_c02316{word-spacing:39.218256px;}
.ws4_c02316{word-spacing:39.902544px;}
.ws6_c02316{word-spacing:42.026688px;}
._0_c02316{margin-left:-1.948320px;}
._2_c02316{width:1.482624px;}
._5_c02316{width:2.770416px;}
._4_c02316{width:4.267296px;}
._6_c02316{width:14.707872px;}
._1_c02316{width:50.252400px;}
._3_c02316{width:51.530688px;}
.fc0_c02316{color:rgb(0,0,0);}
.fs0_c02316{font-size:47.520000px;}
.fs1_c02316{font-size:60.480000px;}
.y0_c02316{bottom:0.000000px;}
.y19_c02316{bottom:146.998362px;}
.y1b_c02316{bottom:186.600234px;}
.y1a_c02316{bottom:196.320450px;}
.y18_c02316{bottom:275.878542px;}
.y17_c02316{bottom:356.878758px;}
.y15_c02316{bottom:406.559730px;}
.y11_c02316{bottom:424.560306px;}
.y16_c02316{bottom:458.759262px;}
.y14_c02316{bottom:491.879514px;}
.y13_c02316{bottom:509.880090px;}
.y10_c02316{bottom:543.000342px;}
.y12_c02316{bottom:559.559874px;}
.yf_c02316{bottom:577.560450px;}
.y1c_c02316{bottom:614.280450px;}
.yb_c02316{bottom:667.558326px;}
.yd_c02316{bottom:707.160234px;}
.yc_c02316{bottom:716.880450px;}
.ya_c02316{bottom:796.438506px;}
.y9_c02316{bottom:877.438722px;}
.y7_c02316{bottom:926.759730px;}
.y3_c02316{bottom:944.760306px;}
.y8_c02316{bottom:979.319226px;}
.y6_c02316{bottom:1012.439478px;}
.y5_c02316{bottom:1030.440054px;}
.y2_c02316{bottom:1063.560306px;}
.y4_c02316{bottom:1079.759874px;}
.y1_c02316{bottom:1097.760450px;}
.ye_c02316{bottom:1134.840450px;}
.h3_c02316{height:32.530781px;}
.h1_c02316{height:41.696016px;}
.h2_c02316{height:41.812031px;}
.h4_c02316{height:54.654737px;}
.h0_c02316{height:1263.000000px;}
.w1_c02316{width:892.500000px;}
.w0_c02316{width:892.830000px;}
.x0_c02316{left:0.000000px;}
.xd_c02316{left:117.000000px;}
.x8_c02316{left:440.999856px;}
.x4_c02316{left:445.680576px;}
.xb_c02316{left:451.080000px;}
.x7_c02316{left:455.399604px;}
.x5_c02316{left:461.880144px;}
.x1_c02316{left:463.320000px;}
.xa_c02316{left:483.480360px;}
.x9_c02316{left:492.119496px;}
.x6_c02316{left:493.200576px;}
.xc_c02316{left:506.880360px;}
.x3_c02316{left:511.919892px;}
.x2_c02316{left:526.679604px;}
@media print{
.v0_c02316{vertical-align:0.000000pt;}
.v1_c02316{vertical-align:1.279488pt;}
.lse_c02316{letter-spacing:-1.064448pt;}
.ls9_c02316{letter-spacing:-0.713856pt;}
.ls17_c02316{letter-spacing:-0.528000pt;}
.lsa_c02316{letter-spacing:-0.511104pt;}
.lsb_c02316{letter-spacing:-0.321024pt;}
.ls16_c02316{letter-spacing:-0.295680pt;}
.ls12_c02316{letter-spacing:-0.244992pt;}
.ls10_c02316{letter-spacing:-0.232320pt;}
.ls6_c02316{letter-spacing:-0.215424pt;}
.ls3_c02316{letter-spacing:-0.105600pt;}
.ls15_c02316{letter-spacing:0.000000pt;}
.ls0_c02316{letter-spacing:0.005376pt;}
.ls5_c02316{letter-spacing:0.114048pt;}
.ls7_c02316{letter-spacing:0.215424pt;}
.lsd_c02316{letter-spacing:0.451968pt;}
.ls14_c02316{letter-spacing:0.456960pt;}
.ls11_c02316{letter-spacing:0.477312pt;}
.lsc_c02316{letter-spacing:0.515328pt;}
.ls13_c02316{letter-spacing:0.528000pt;}
.ls8_c02316{letter-spacing:0.532224pt;}
.ls1_c02316{letter-spacing:0.544896pt;}
.lsf_c02316{letter-spacing:0.608256pt;}
.ls4_c02316{letter-spacing:0.637824pt;}
.ls2_c02316{letter-spacing:0.642048pt;}
.wsb_c02316{word-spacing:-13.445376pt;}
.ws9_c02316{word-spacing:-11.088000pt;}
.ws8_c02316{word-spacing:-11.037312pt;}
.ws2_c02316{word-spacing:-10.775424pt;}
.ws14_c02316{word-spacing:-1.919232pt;}
.ws11_c02316{word-spacing:-0.929280pt;}
.wsc_c02316{word-spacing:-0.865920pt;}
.wse_c02316{word-spacing:-0.105600pt;}
.ws12_c02316{word-spacing:-0.088704pt;}
.ws13_c02316{word-spacing:-0.076032pt;}
.ws15_c02316{word-spacing:-0.025344pt;}
.wsd_c02316{word-spacing:0.000000pt;}
.ws16_c02316{word-spacing:0.206976pt;}
.wsf_c02316{word-spacing:0.392832pt;}
.ws10_c02316{word-spacing:0.743424pt;}
.wsa_c02316{word-spacing:29.600256pt;}
.ws7_c02316{word-spacing:32.127744pt;}
.ws5_c02316{word-spacing:32.659968pt;}
.ws1_c02316{word-spacing:33.563904pt;}
.ws0_c02316{word-spacing:33.796224pt;}
.ws3_c02316{word-spacing:34.860672pt;}
.ws4_c02316{word-spacing:35.468928pt;}
.ws6_c02316{word-spacing:37.357056pt;}
._0_c02316{margin-left:-1.731840pt;}
._2_c02316{width:1.317888pt;}
._5_c02316{width:2.462592pt;}
._4_c02316{width:3.793152pt;}
._6_c02316{width:13.073664pt;}
._1_c02316{width:44.668800pt;}
._3_c02316{width:45.805056pt;}
.fs0_c02316{font-size:42.240000pt;}
.fs1_c02316{font-size:53.760000pt;}
.y0_c02316{bottom:0.000000pt;}
.y19_c02316{bottom:130.665211pt;}
.y1b_c02316{bottom:165.866875pt;}
.y1a_c02316{bottom:174.507067pt;}
.y18_c02316{bottom:245.225371pt;}
.y17_c02316{bottom:317.225563pt;}
.y15_c02316{bottom:361.386427pt;}
.y11_c02316{bottom:377.386939pt;}
.y16_c02316{bottom:407.786011pt;}
.y14_c02316{bottom:437.226235pt;}
.y13_c02316{bottom:453.226747pt;}
.y10_c02316{bottom:482.666971pt;}
.y12_c02316{bottom:497.386555pt;}
.yf_c02316{bottom:513.387067pt;}
.y1c_c02316{bottom:546.027067pt;}
.yb_c02316{bottom:593.385179pt;}
.yd_c02316{bottom:628.586875pt;}
.yc_c02316{bottom:637.227067pt;}
.ya_c02316{bottom:707.945339pt;}
.y9_c02316{bottom:779.945531pt;}
.y7_c02316{bottom:823.786427pt;}
.y3_c02316{bottom:839.786939pt;}
.y8_c02316{bottom:870.505979pt;}
.y6_c02316{bottom:899.946203pt;}
.y5_c02316{bottom:915.946715pt;}
.y2_c02316{bottom:945.386939pt;}
.y4_c02316{bottom:959.786555pt;}
.y1_c02316{bottom:975.787067pt;}
.ye_c02316{bottom:1008.747067pt;}
.h3_c02316{height:28.916250pt;}
.h1_c02316{height:37.063125pt;}
.h2_c02316{height:37.166250pt;}
.h4_c02316{height:48.581988pt;}
.h0_c02316{height:1122.666667pt;}
.w1_c02316{width:793.333333pt;}
.w0_c02316{width:793.626667pt;}
.x0_c02316{left:0.000000pt;}
.xd_c02316{left:104.000000pt;}
.x8_c02316{left:391.999872pt;}
.x4_c02316{left:396.160512pt;}
.xb_c02316{left:400.960000pt;}
.x7_c02316{left:404.799648pt;}
.x5_c02316{left:410.560128pt;}
.x1_c02316{left:411.840000pt;}
.xa_c02316{left:429.760320pt;}
.x9_c02316{left:437.439552pt;}
.x6_c02316{left:438.400512pt;}
.xc_c02316{left:450.560320pt;}
.x3_c02316{left:455.039904pt;}
.x2_c02316{left:468.159648pt;}
}





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

.ir_c02317:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02317{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02317;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02317{font-family:ff1_c02317;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02317;src:url('chunks/assets/font_447479a1a4021611353ebfed.woff2')format("woff");}.ff2_c02317{font-family:ff2_c02317;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02317;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02317{font-family:ff3_c02317;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02317{vertical-align:0.000000px;}
.v1_c02317{vertical-align:1.439424px;}
.lse_c02317{letter-spacing:-1.197504px;}
.ls9_c02317{letter-spacing:-0.803088px;}
.lsa_c02317{letter-spacing:-0.574992px;}
.lsb_c02317{letter-spacing:-0.361152px;}
.ls12_c02317{letter-spacing:-0.275616px;}
.ls10_c02317{letter-spacing:-0.261360px;}
.ls6_c02317{letter-spacing:-0.242352px;}
.ls3_c02317{letter-spacing:-0.118800px;}
.ls15_c02317{letter-spacing:0.000000px;}
.ls0_c02317{letter-spacing:0.006048px;}
.ls5_c02317{letter-spacing:0.128304px;}
.ls7_c02317{letter-spacing:0.242352px;}
.lsd_c02317{letter-spacing:0.508464px;}
.ls14_c02317{letter-spacing:0.514080px;}
.ls11_c02317{letter-spacing:0.536976px;}
.lsc_c02317{letter-spacing:0.579744px;}
.ls13_c02317{letter-spacing:0.594000px;}
.ls8_c02317{letter-spacing:0.598752px;}
.ls1_c02317{letter-spacing:0.613008px;}
.lsf_c02317{letter-spacing:0.684288px;}
.ls4_c02317{letter-spacing:0.717552px;}
.ls2_c02317{letter-spacing:0.722304px;}
.sc__c02317{text-shadow:none;}
.sc0_c02317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02317{-webkit-text-stroke:0px transparent;}
.sc0_c02317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02317{word-spacing:-15.126048px;}
.ws9_c02317{word-spacing:-12.474000px;}
.wsc_c02317{word-spacing:-12.459744px;}
.ws8_c02317{word-spacing:-12.416976px;}
.ws2_c02317{word-spacing:-12.122352px;}
.ws15_c02317{word-spacing:-2.159136px;}
.ws12_c02317{word-spacing:-1.045440px;}
.wsd_c02317{word-spacing:-0.974160px;}
.wsf_c02317{word-spacing:-0.118800px;}
.ws13_c02317{word-spacing:-0.099792px;}
.ws14_c02317{word-spacing:-0.085536px;}
.wse_c02317{word-spacing:0.000000px;}
.ws10_c02317{word-spacing:0.441936px;}
.ws11_c02317{word-spacing:0.836352px;}
.wsa_c02317{word-spacing:33.300288px;}
.ws7_c02317{word-spacing:36.143712px;}
.ws5_c02317{word-spacing:36.742464px;}
.ws1_c02317{word-spacing:37.759392px;}
.ws0_c02317{word-spacing:38.020752px;}
.ws3_c02317{word-spacing:39.218256px;}
.ws4_c02317{word-spacing:39.902544px;}
.ws6_c02317{word-spacing:42.026688px;}
._0_c02317{margin-left:-1.948320px;}
._2_c02317{width:1.482624px;}
._5_c02317{width:2.770416px;}
._4_c02317{width:4.267296px;}
._6_c02317{width:14.707872px;}
._1_c02317{width:50.252400px;}
._3_c02317{width:51.530688px;}
.fc0_c02317{color:rgb(0,0,0);}
.fs0_c02317{font-size:47.520000px;}
.fs1_c02317{font-size:60.480000px;}
.y0_c02317{bottom:0.000000px;}
.y19_c02317{bottom:146.998362px;}
.y1b_c02317{bottom:186.600234px;}
.y1a_c02317{bottom:196.320450px;}
.y18_c02317{bottom:275.878542px;}
.y17_c02317{bottom:356.878758px;}
.y15_c02317{bottom:406.559730px;}
.y11_c02317{bottom:424.560306px;}
.y16_c02317{bottom:458.759262px;}
.y14_c02317{bottom:491.879514px;}
.y13_c02317{bottom:509.880090px;}
.y10_c02317{bottom:543.000342px;}
.y12_c02317{bottom:559.559874px;}
.yf_c02317{bottom:577.560450px;}
.y1c_c02317{bottom:614.280450px;}
.yb_c02317{bottom:667.558326px;}
.yd_c02317{bottom:707.160234px;}
.yc_c02317{bottom:716.880450px;}
.ya_c02317{bottom:796.438506px;}
.y9_c02317{bottom:877.438722px;}
.y7_c02317{bottom:926.759730px;}
.y3_c02317{bottom:944.760306px;}
.y8_c02317{bottom:979.319226px;}
.y6_c02317{bottom:1012.439478px;}
.y5_c02317{bottom:1030.440054px;}
.y2_c02317{bottom:1063.560306px;}
.y4_c02317{bottom:1079.759874px;}
.y1_c02317{bottom:1097.760450px;}
.ye_c02317{bottom:1134.840450px;}
.h3_c02317{height:32.530781px;}
.h1_c02317{height:41.696016px;}
.h2_c02317{height:41.812031px;}
.h4_c02317{height:54.654737px;}
.h0_c02317{height:1263.000000px;}
.w1_c02317{width:892.500000px;}
.w0_c02317{width:892.830000px;}
.x0_c02317{left:0.000000px;}
.xd_c02317{left:117.000000px;}
.x8_c02317{left:440.999856px;}
.x4_c02317{left:445.680576px;}
.xb_c02317{left:451.080000px;}
.x7_c02317{left:455.399604px;}
.x5_c02317{left:461.880144px;}
.x1_c02317{left:463.320000px;}
.xa_c02317{left:483.480360px;}
.x9_c02317{left:492.119496px;}
.x6_c02317{left:493.200576px;}
.xc_c02317{left:506.880360px;}
.x3_c02317{left:511.919892px;}
.x2_c02317{left:526.679604px;}
@media print{
.v0_c02317{vertical-align:0.000000pt;}
.v1_c02317{vertical-align:1.279488pt;}
.lse_c02317{letter-spacing:-1.064448pt;}
.ls9_c02317{letter-spacing:-0.713856pt;}
.lsa_c02317{letter-spacing:-0.511104pt;}
.lsb_c02317{letter-spacing:-0.321024pt;}
.ls12_c02317{letter-spacing:-0.244992pt;}
.ls10_c02317{letter-spacing:-0.232320pt;}
.ls6_c02317{letter-spacing:-0.215424pt;}
.ls3_c02317{letter-spacing:-0.105600pt;}
.ls15_c02317{letter-spacing:0.000000pt;}
.ls0_c02317{letter-spacing:0.005376pt;}
.ls5_c02317{letter-spacing:0.114048pt;}
.ls7_c02317{letter-spacing:0.215424pt;}
.lsd_c02317{letter-spacing:0.451968pt;}
.ls14_c02317{letter-spacing:0.456960pt;}
.ls11_c02317{letter-spacing:0.477312pt;}
.lsc_c02317{letter-spacing:0.515328pt;}
.ls13_c02317{letter-spacing:0.528000pt;}
.ls8_c02317{letter-spacing:0.532224pt;}
.ls1_c02317{letter-spacing:0.544896pt;}
.lsf_c02317{letter-spacing:0.608256pt;}
.ls4_c02317{letter-spacing:0.637824pt;}
.ls2_c02317{letter-spacing:0.642048pt;}
.wsb_c02317{word-spacing:-13.445376pt;}
.ws9_c02317{word-spacing:-11.088000pt;}
.wsc_c02317{word-spacing:-11.075328pt;}
.ws8_c02317{word-spacing:-11.037312pt;}
.ws2_c02317{word-spacing:-10.775424pt;}
.ws15_c02317{word-spacing:-1.919232pt;}
.ws12_c02317{word-spacing:-0.929280pt;}
.wsd_c02317{word-spacing:-0.865920pt;}
.wsf_c02317{word-spacing:-0.105600pt;}
.ws13_c02317{word-spacing:-0.088704pt;}
.ws14_c02317{word-spacing:-0.076032pt;}
.wse_c02317{word-spacing:0.000000pt;}
.ws10_c02317{word-spacing:0.392832pt;}
.ws11_c02317{word-spacing:0.743424pt;}
.wsa_c02317{word-spacing:29.600256pt;}
.ws7_c02317{word-spacing:32.127744pt;}
.ws5_c02317{word-spacing:32.659968pt;}
.ws1_c02317{word-spacing:33.563904pt;}
.ws0_c02317{word-spacing:33.796224pt;}
.ws3_c02317{word-spacing:34.860672pt;}
.ws4_c02317{word-spacing:35.468928pt;}
.ws6_c02317{word-spacing:37.357056pt;}
._0_c02317{margin-left:-1.731840pt;}
._2_c02317{width:1.317888pt;}
._5_c02317{width:2.462592pt;}
._4_c02317{width:3.793152pt;}
._6_c02317{width:13.073664pt;}
._1_c02317{width:44.668800pt;}
._3_c02317{width:45.805056pt;}
.fs0_c02317{font-size:42.240000pt;}
.fs1_c02317{font-size:53.760000pt;}
.y0_c02317{bottom:0.000000pt;}
.y19_c02317{bottom:130.665211pt;}
.y1b_c02317{bottom:165.866875pt;}
.y1a_c02317{bottom:174.507067pt;}
.y18_c02317{bottom:245.225371pt;}
.y17_c02317{bottom:317.225563pt;}
.y15_c02317{bottom:361.386427pt;}
.y11_c02317{bottom:377.386939pt;}
.y16_c02317{bottom:407.786011pt;}
.y14_c02317{bottom:437.226235pt;}
.y13_c02317{bottom:453.226747pt;}
.y10_c02317{bottom:482.666971pt;}
.y12_c02317{bottom:497.386555pt;}
.yf_c02317{bottom:513.387067pt;}
.y1c_c02317{bottom:546.027067pt;}
.yb_c02317{bottom:593.385179pt;}
.yd_c02317{bottom:628.586875pt;}
.yc_c02317{bottom:637.227067pt;}
.ya_c02317{bottom:707.945339pt;}
.y9_c02317{bottom:779.945531pt;}
.y7_c02317{bottom:823.786427pt;}
.y3_c02317{bottom:839.786939pt;}
.y8_c02317{bottom:870.505979pt;}
.y6_c02317{bottom:899.946203pt;}
.y5_c02317{bottom:915.946715pt;}
.y2_c02317{bottom:945.386939pt;}
.y4_c02317{bottom:959.786555pt;}
.y1_c02317{bottom:975.787067pt;}
.ye_c02317{bottom:1008.747067pt;}
.h3_c02317{height:28.916250pt;}
.h1_c02317{height:37.063125pt;}
.h2_c02317{height:37.166250pt;}
.h4_c02317{height:48.581988pt;}
.h0_c02317{height:1122.666667pt;}
.w1_c02317{width:793.333333pt;}
.w0_c02317{width:793.626667pt;}
.x0_c02317{left:0.000000pt;}
.xd_c02317{left:104.000000pt;}
.x8_c02317{left:391.999872pt;}
.x4_c02317{left:396.160512pt;}
.xb_c02317{left:400.960000pt;}
.x7_c02317{left:404.799648pt;}
.x5_c02317{left:410.560128pt;}
.x1_c02317{left:411.840000pt;}
.xa_c02317{left:429.760320pt;}
.x9_c02317{left:437.439552pt;}
.x6_c02317{left:438.400512pt;}
.xc_c02317{left:450.560320pt;}
.x3_c02317{left:455.039904pt;}
.x2_c02317{left:468.159648pt;}
}





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

.ir_c02318:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02318{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02318;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02318{font-family:ff1_c02318;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02318;src:url('chunks/assets/font_447479a1a4021611353ebfed.woff2')format("woff");}.ff2_c02318{font-family:ff2_c02318;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02318;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02318{font-family:ff3_c02318;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02318{vertical-align:0.000000px;}
.v1_c02318{vertical-align:1.439424px;}
.lse_c02318{letter-spacing:-1.197504px;}
.ls9_c02318{letter-spacing:-0.803088px;}
.lsa_c02318{letter-spacing:-0.574992px;}
.lsb_c02318{letter-spacing:-0.361152px;}
.ls12_c02318{letter-spacing:-0.275616px;}
.ls10_c02318{letter-spacing:-0.261360px;}
.ls6_c02318{letter-spacing:-0.242352px;}
.ls3_c02318{letter-spacing:-0.118800px;}
.ls15_c02318{letter-spacing:0.000000px;}
.ls0_c02318{letter-spacing:0.006048px;}
.ls5_c02318{letter-spacing:0.128304px;}
.ls7_c02318{letter-spacing:0.242352px;}
.lsd_c02318{letter-spacing:0.508464px;}
.ls14_c02318{letter-spacing:0.514080px;}
.ls11_c02318{letter-spacing:0.536976px;}
.lsc_c02318{letter-spacing:0.579744px;}
.ls13_c02318{letter-spacing:0.594000px;}
.ls8_c02318{letter-spacing:0.598752px;}
.ls1_c02318{letter-spacing:0.613008px;}
.lsf_c02318{letter-spacing:0.684288px;}
.ls4_c02318{letter-spacing:0.717552px;}
.ls2_c02318{letter-spacing:0.722304px;}
.sc__c02318{text-shadow:none;}
.sc0_c02318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02318{-webkit-text-stroke:0px transparent;}
.sc0_c02318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02318{word-spacing:-15.126048px;}
.ws9_c02318{word-spacing:-12.474000px;}
.ws8_c02318{word-spacing:-12.416976px;}
.ws2_c02318{word-spacing:-12.122352px;}
.ws14_c02318{word-spacing:-2.159136px;}
.ws11_c02318{word-spacing:-1.045440px;}
.wsc_c02318{word-spacing:-0.974160px;}
.wse_c02318{word-spacing:-0.118800px;}
.ws12_c02318{word-spacing:-0.099792px;}
.ws13_c02318{word-spacing:-0.085536px;}
.wsd_c02318{word-spacing:0.000000px;}
.wsf_c02318{word-spacing:0.441936px;}
.ws10_c02318{word-spacing:0.836352px;}
.wsa_c02318{word-spacing:33.300288px;}
.ws7_c02318{word-spacing:36.143712px;}
.ws5_c02318{word-spacing:36.742464px;}
.ws1_c02318{word-spacing:37.759392px;}
.ws0_c02318{word-spacing:38.020752px;}
.ws3_c02318{word-spacing:39.218256px;}
.ws4_c02318{word-spacing:39.902544px;}
.ws6_c02318{word-spacing:42.026688px;}
._0_c02318{margin-left:-1.948320px;}
._2_c02318{width:1.482624px;}
._5_c02318{width:2.770416px;}
._4_c02318{width:4.267296px;}
._6_c02318{width:14.707872px;}
._1_c02318{width:50.252400px;}
._3_c02318{width:51.530688px;}
.fc0_c02318{color:rgb(0,0,0);}
.fs0_c02318{font-size:47.520000px;}
.fs1_c02318{font-size:60.480000px;}
.y0_c02318{bottom:0.000000px;}
.y19_c02318{bottom:146.998362px;}
.y1b_c02318{bottom:186.600234px;}
.y1a_c02318{bottom:196.320450px;}
.y18_c02318{bottom:275.878542px;}
.y17_c02318{bottom:356.878758px;}
.y15_c02318{bottom:406.559730px;}
.y11_c02318{bottom:424.560306px;}
.y16_c02318{bottom:458.759262px;}
.y14_c02318{bottom:491.879514px;}
.y13_c02318{bottom:509.880090px;}
.y10_c02318{bottom:543.000342px;}
.y12_c02318{bottom:559.559874px;}
.yf_c02318{bottom:577.560450px;}
.y1c_c02318{bottom:614.280450px;}
.yb_c02318{bottom:667.558326px;}
.yd_c02318{bottom:707.160234px;}
.yc_c02318{bottom:716.880450px;}
.ya_c02318{bottom:796.438506px;}
.y9_c02318{bottom:877.438722px;}
.y7_c02318{bottom:926.759730px;}
.y3_c02318{bottom:944.760306px;}
.y8_c02318{bottom:979.319226px;}
.y6_c02318{bottom:1012.439478px;}
.y5_c02318{bottom:1030.440054px;}
.y2_c02318{bottom:1063.560306px;}
.y4_c02318{bottom:1079.759874px;}
.y1_c02318{bottom:1097.760450px;}
.ye_c02318{bottom:1134.840450px;}
.h3_c02318{height:32.530781px;}
.h1_c02318{height:41.696016px;}
.h2_c02318{height:41.812031px;}
.h4_c02318{height:54.654737px;}
.h0_c02318{height:1263.000000px;}
.w1_c02318{width:892.500000px;}
.w0_c02318{width:892.830000px;}
.x0_c02318{left:0.000000px;}
.xd_c02318{left:117.000000px;}
.x8_c02318{left:440.999856px;}
.x4_c02318{left:445.680576px;}
.xb_c02318{left:451.080000px;}
.x7_c02318{left:455.399604px;}
.x5_c02318{left:461.880144px;}
.x1_c02318{left:463.320000px;}
.xa_c02318{left:483.480360px;}
.x9_c02318{left:492.119496px;}
.x6_c02318{left:493.200576px;}
.xc_c02318{left:506.880360px;}
.x3_c02318{left:511.919892px;}
.x2_c02318{left:526.679604px;}
@media print{
.v0_c02318{vertical-align:0.000000pt;}
.v1_c02318{vertical-align:1.279488pt;}
.lse_c02318{letter-spacing:-1.064448pt;}
.ls9_c02318{letter-spacing:-0.713856pt;}
.lsa_c02318{letter-spacing:-0.511104pt;}
.lsb_c02318{letter-spacing:-0.321024pt;}
.ls12_c02318{letter-spacing:-0.244992pt;}
.ls10_c02318{letter-spacing:-0.232320pt;}
.ls6_c02318{letter-spacing:-0.215424pt;}
.ls3_c02318{letter-spacing:-0.105600pt;}
.ls15_c02318{letter-spacing:0.000000pt;}
.ls0_c02318{letter-spacing:0.005376pt;}
.ls5_c02318{letter-spacing:0.114048pt;}
.ls7_c02318{letter-spacing:0.215424pt;}
.lsd_c02318{letter-spacing:0.451968pt;}
.ls14_c02318{letter-spacing:0.456960pt;}
.ls11_c02318{letter-spacing:0.477312pt;}
.lsc_c02318{letter-spacing:0.515328pt;}
.ls13_c02318{letter-spacing:0.528000pt;}
.ls8_c02318{letter-spacing:0.532224pt;}
.ls1_c02318{letter-spacing:0.544896pt;}
.lsf_c02318{letter-spacing:0.608256pt;}
.ls4_c02318{letter-spacing:0.637824pt;}
.ls2_c02318{letter-spacing:0.642048pt;}
.wsb_c02318{word-spacing:-13.445376pt;}
.ws9_c02318{word-spacing:-11.088000pt;}
.ws8_c02318{word-spacing:-11.037312pt;}
.ws2_c02318{word-spacing:-10.775424pt;}
.ws14_c02318{word-spacing:-1.919232pt;}
.ws11_c02318{word-spacing:-0.929280pt;}
.wsc_c02318{word-spacing:-0.865920pt;}
.wse_c02318{word-spacing:-0.105600pt;}
.ws12_c02318{word-spacing:-0.088704pt;}
.ws13_c02318{word-spacing:-0.076032pt;}
.wsd_c02318{word-spacing:0.000000pt;}
.wsf_c02318{word-spacing:0.392832pt;}
.ws10_c02318{word-spacing:0.743424pt;}
.wsa_c02318{word-spacing:29.600256pt;}
.ws7_c02318{word-spacing:32.127744pt;}
.ws5_c02318{word-spacing:32.659968pt;}
.ws1_c02318{word-spacing:33.563904pt;}
.ws0_c02318{word-spacing:33.796224pt;}
.ws3_c02318{word-spacing:34.860672pt;}
.ws4_c02318{word-spacing:35.468928pt;}
.ws6_c02318{word-spacing:37.357056pt;}
._0_c02318{margin-left:-1.731840pt;}
._2_c02318{width:1.317888pt;}
._5_c02318{width:2.462592pt;}
._4_c02318{width:3.793152pt;}
._6_c02318{width:13.073664pt;}
._1_c02318{width:44.668800pt;}
._3_c02318{width:45.805056pt;}
.fs0_c02318{font-size:42.240000pt;}
.fs1_c02318{font-size:53.760000pt;}
.y0_c02318{bottom:0.000000pt;}
.y19_c02318{bottom:130.665211pt;}
.y1b_c02318{bottom:165.866875pt;}
.y1a_c02318{bottom:174.507067pt;}
.y18_c02318{bottom:245.225371pt;}
.y17_c02318{bottom:317.225563pt;}
.y15_c02318{bottom:361.386427pt;}
.y11_c02318{bottom:377.386939pt;}
.y16_c02318{bottom:407.786011pt;}
.y14_c02318{bottom:437.226235pt;}
.y13_c02318{bottom:453.226747pt;}
.y10_c02318{bottom:482.666971pt;}
.y12_c02318{bottom:497.386555pt;}
.yf_c02318{bottom:513.387067pt;}
.y1c_c02318{bottom:546.027067pt;}
.yb_c02318{bottom:593.385179pt;}
.yd_c02318{bottom:628.586875pt;}
.yc_c02318{bottom:637.227067pt;}
.ya_c02318{bottom:707.945339pt;}
.y9_c02318{bottom:779.945531pt;}
.y7_c02318{bottom:823.786427pt;}
.y3_c02318{bottom:839.786939pt;}
.y8_c02318{bottom:870.505979pt;}
.y6_c02318{bottom:899.946203pt;}
.y5_c02318{bottom:915.946715pt;}
.y2_c02318{bottom:945.386939pt;}
.y4_c02318{bottom:959.786555pt;}
.y1_c02318{bottom:975.787067pt;}
.ye_c02318{bottom:1008.747067pt;}
.h3_c02318{height:28.916250pt;}
.h1_c02318{height:37.063125pt;}
.h2_c02318{height:37.166250pt;}
.h4_c02318{height:48.581988pt;}
.h0_c02318{height:1122.666667pt;}
.w1_c02318{width:793.333333pt;}
.w0_c02318{width:793.626667pt;}
.x0_c02318{left:0.000000pt;}
.xd_c02318{left:104.000000pt;}
.x8_c02318{left:391.999872pt;}
.x4_c02318{left:396.160512pt;}
.xb_c02318{left:400.960000pt;}
.x7_c02318{left:404.799648pt;}
.x5_c02318{left:410.560128pt;}
.x1_c02318{left:411.840000pt;}
.xa_c02318{left:429.760320pt;}
.x9_c02318{left:437.439552pt;}
.x6_c02318{left:438.400512pt;}
.xc_c02318{left:450.560320pt;}
.x3_c02318{left:455.039904pt;}
.x2_c02318{left:468.159648pt;}
}





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

.ir_c02319:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02319{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02319;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02319{font-family:ff1_c02319;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02319;src:url('chunks/assets/font_5c702314dff0776eb2ee3693.woff2')format("woff");}.ff2_c02319{font-family:ff2_c02319;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02319;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02319{font-family:ff3_c02319;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02319{vertical-align:0.000000px;}
.v1_c02319{vertical-align:1.439424px;}
.lsf_c02319{letter-spacing:-1.197504px;}
.ls17_c02319{letter-spacing:-0.817344px;}
.lsa_c02319{letter-spacing:-0.803088px;}
.ls19_c02319{letter-spacing:-0.793584px;}
.ls18_c02319{letter-spacing:-0.774576px;}
.ls1a_c02319{letter-spacing:-0.736560px;}
.lsb_c02319{letter-spacing:-0.574992px;}
.lsc_c02319{letter-spacing:-0.361152px;}
.ls13_c02319{letter-spacing:-0.275616px;}
.ls1b_c02319{letter-spacing:-0.270864px;}
.ls11_c02319{letter-spacing:-0.261360px;}
.ls7_c02319{letter-spacing:-0.242352px;}
.ls4_c02319{letter-spacing:-0.118800px;}
.ls16_c02319{letter-spacing:0.000000px;}
.ls0_c02319{letter-spacing:0.006048px;}
.ls6_c02319{letter-spacing:0.128304px;}
.ls8_c02319{letter-spacing:0.242352px;}
.lse_c02319{letter-spacing:0.508464px;}
.ls15_c02319{letter-spacing:0.514080px;}
.ls12_c02319{letter-spacing:0.536976px;}
.lsd_c02319{letter-spacing:0.579744px;}
.ls14_c02319{letter-spacing:0.594000px;}
.ls9_c02319{letter-spacing:0.598752px;}
.ls2_c02319{letter-spacing:0.613008px;}
.ls1_c02319{letter-spacing:0.651024px;}
.ls10_c02319{letter-spacing:0.684288px;}
.ls5_c02319{letter-spacing:0.717552px;}
.ls3_c02319{letter-spacing:0.722304px;}
.sc__c02319{text-shadow:none;}
.sc0_c02319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02319{-webkit-text-stroke:0px transparent;}
.sc0_c02319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02319{word-spacing:-15.126048px;}
.ws9_c02319{word-spacing:-12.474000px;}
.wse_c02319{word-spacing:-12.459744px;}
.ws8_c02319{word-spacing:-12.416976px;}
.ws2_c02319{word-spacing:-12.122352px;}
.wsd_c02319{word-spacing:-11.105424px;}
.ws19_c02319{word-spacing:-2.159136px;}
.ws16_c02319{word-spacing:-1.045440px;}
.ws1a_c02319{word-spacing:-1.012176px;}
.ws11_c02319{word-spacing:-0.974160px;}
.ws13_c02319{word-spacing:-0.118800px;}
.ws17_c02319{word-spacing:-0.099792px;}
.ws1d_c02319{word-spacing:-0.090288px;}
.ws18_c02319{word-spacing:-0.085536px;}
.ws12_c02319{word-spacing:0.000000px;}
.ws1c_c02319{word-spacing:0.432432px;}
.ws14_c02319{word-spacing:0.441936px;}
.ws1b_c02319{word-spacing:0.456192px;}
.ws15_c02319{word-spacing:0.836352px;}
.wsc_c02319{word-spacing:1.330560px;}
.ws10_c02319{word-spacing:6.629040px;}
.wsa_c02319{word-spacing:33.300288px;}
.wsf_c02319{word-spacing:34.836912px;}
.ws7_c02319{word-spacing:36.143712px;}
.ws5_c02319{word-spacing:36.742464px;}
.ws1_c02319{word-spacing:37.759392px;}
.ws0_c02319{word-spacing:38.020752px;}
.ws3_c02319{word-spacing:39.218256px;}
.ws4_c02319{word-spacing:39.902544px;}
.ws6_c02319{word-spacing:42.026688px;}
._0_c02319{margin-left:-1.948320px;}
._2_c02319{width:1.482624px;}
._5_c02319{width:2.770416px;}
._4_c02319{width:4.267296px;}
._6_c02319{width:14.707872px;}
._8_c02319{width:19.982160px;}
._9_c02319{width:23.451120px;}
._7_c02319{width:24.691392px;}
._1_c02319{width:50.252400px;}
._3_c02319{width:51.530688px;}
.fc0_c02319{color:rgb(0,0,0);}
.fs0_c02319{font-size:47.520000px;}
.fs1_c02319{font-size:60.480000px;}
.y0_c02319{bottom:0.000000px;}
.y1a_c02319{bottom:131.878686px;}
.y19_c02319{bottom:146.998362px;}
.y1c_c02319{bottom:186.600234px;}
.y1b_c02319{bottom:196.320450px;}
.y18_c02319{bottom:275.878542px;}
.y17_c02319{bottom:356.878758px;}
.y15_c02319{bottom:406.559730px;}
.y11_c02319{bottom:424.560306px;}
.y16_c02319{bottom:458.759262px;}
.y14_c02319{bottom:491.879514px;}
.y13_c02319{bottom:509.880090px;}
.y10_c02319{bottom:543.000342px;}
.y12_c02319{bottom:559.559874px;}
.yf_c02319{bottom:577.560450px;}
.y1d_c02319{bottom:614.280450px;}
.yb_c02319{bottom:667.558326px;}
.yd_c02319{bottom:707.160234px;}
.yc_c02319{bottom:716.880450px;}
.ya_c02319{bottom:796.438506px;}
.y9_c02319{bottom:877.438722px;}
.y7_c02319{bottom:926.759730px;}
.y3_c02319{bottom:944.760306px;}
.y8_c02319{bottom:979.319226px;}
.y6_c02319{bottom:1012.439478px;}
.y5_c02319{bottom:1030.440054px;}
.y2_c02319{bottom:1063.560306px;}
.y4_c02319{bottom:1079.759874px;}
.y1_c02319{bottom:1097.760450px;}
.ye_c02319{bottom:1134.840450px;}
.h3_c02319{height:32.530781px;}
.h1_c02319{height:41.696016px;}
.h2_c02319{height:41.812031px;}
.h4_c02319{height:54.654737px;}
.h0_c02319{height:1263.000000px;}
.w1_c02319{width:892.500000px;}
.w0_c02319{width:892.830000px;}
.x0_c02319{left:0.000000px;}
.xd_c02319{left:117.000000px;}
.x8_c02319{left:440.999856px;}
.x4_c02319{left:445.680576px;}
.xb_c02319{left:451.080000px;}
.x7_c02319{left:455.399604px;}
.x5_c02319{left:461.880144px;}
.x1_c02319{left:463.320000px;}
.xa_c02319{left:483.480360px;}
.x9_c02319{left:492.119496px;}
.x6_c02319{left:493.200576px;}
.xc_c02319{left:506.880360px;}
.x3_c02319{left:511.919892px;}
.x2_c02319{left:526.679604px;}
.xe_c02319{left:569.880036px;}
@media print{
.v0_c02319{vertical-align:0.000000pt;}
.v1_c02319{vertical-align:1.279488pt;}
.lsf_c02319{letter-spacing:-1.064448pt;}
.ls17_c02319{letter-spacing:-0.726528pt;}
.lsa_c02319{letter-spacing:-0.713856pt;}
.ls19_c02319{letter-spacing:-0.705408pt;}
.ls18_c02319{letter-spacing:-0.688512pt;}
.ls1a_c02319{letter-spacing:-0.654720pt;}
.lsb_c02319{letter-spacing:-0.511104pt;}
.lsc_c02319{letter-spacing:-0.321024pt;}
.ls13_c02319{letter-spacing:-0.244992pt;}
.ls1b_c02319{letter-spacing:-0.240768pt;}
.ls11_c02319{letter-spacing:-0.232320pt;}
.ls7_c02319{letter-spacing:-0.215424pt;}
.ls4_c02319{letter-spacing:-0.105600pt;}
.ls16_c02319{letter-spacing:0.000000pt;}
.ls0_c02319{letter-spacing:0.005376pt;}
.ls6_c02319{letter-spacing:0.114048pt;}
.ls8_c02319{letter-spacing:0.215424pt;}
.lse_c02319{letter-spacing:0.451968pt;}
.ls15_c02319{letter-spacing:0.456960pt;}
.ls12_c02319{letter-spacing:0.477312pt;}
.lsd_c02319{letter-spacing:0.515328pt;}
.ls14_c02319{letter-spacing:0.528000pt;}
.ls9_c02319{letter-spacing:0.532224pt;}
.ls2_c02319{letter-spacing:0.544896pt;}
.ls1_c02319{letter-spacing:0.578688pt;}
.ls10_c02319{letter-spacing:0.608256pt;}
.ls5_c02319{letter-spacing:0.637824pt;}
.ls3_c02319{letter-spacing:0.642048pt;}
.wsb_c02319{word-spacing:-13.445376pt;}
.ws9_c02319{word-spacing:-11.088000pt;}
.wse_c02319{word-spacing:-11.075328pt;}
.ws8_c02319{word-spacing:-11.037312pt;}
.ws2_c02319{word-spacing:-10.775424pt;}
.wsd_c02319{word-spacing:-9.871488pt;}
.ws19_c02319{word-spacing:-1.919232pt;}
.ws16_c02319{word-spacing:-0.929280pt;}
.ws1a_c02319{word-spacing:-0.899712pt;}
.ws11_c02319{word-spacing:-0.865920pt;}
.ws13_c02319{word-spacing:-0.105600pt;}
.ws17_c02319{word-spacing:-0.088704pt;}
.ws1d_c02319{word-spacing:-0.080256pt;}
.ws18_c02319{word-spacing:-0.076032pt;}
.ws12_c02319{word-spacing:0.000000pt;}
.ws1c_c02319{word-spacing:0.384384pt;}
.ws14_c02319{word-spacing:0.392832pt;}
.ws1b_c02319{word-spacing:0.405504pt;}
.ws15_c02319{word-spacing:0.743424pt;}
.wsc_c02319{word-spacing:1.182720pt;}
.ws10_c02319{word-spacing:5.892480pt;}
.wsa_c02319{word-spacing:29.600256pt;}
.wsf_c02319{word-spacing:30.966144pt;}
.ws7_c02319{word-spacing:32.127744pt;}
.ws5_c02319{word-spacing:32.659968pt;}
.ws1_c02319{word-spacing:33.563904pt;}
.ws0_c02319{word-spacing:33.796224pt;}
.ws3_c02319{word-spacing:34.860672pt;}
.ws4_c02319{word-spacing:35.468928pt;}
.ws6_c02319{word-spacing:37.357056pt;}
._0_c02319{margin-left:-1.731840pt;}
._2_c02319{width:1.317888pt;}
._5_c02319{width:2.462592pt;}
._4_c02319{width:3.793152pt;}
._6_c02319{width:13.073664pt;}
._8_c02319{width:17.761920pt;}
._9_c02319{width:20.845440pt;}
._7_c02319{width:21.947904pt;}
._1_c02319{width:44.668800pt;}
._3_c02319{width:45.805056pt;}
.fs0_c02319{font-size:42.240000pt;}
.fs1_c02319{font-size:53.760000pt;}
.y0_c02319{bottom:0.000000pt;}
.y1a_c02319{bottom:117.225499pt;}
.y19_c02319{bottom:130.665211pt;}
.y1c_c02319{bottom:165.866875pt;}
.y1b_c02319{bottom:174.507067pt;}
.y18_c02319{bottom:245.225371pt;}
.y17_c02319{bottom:317.225563pt;}
.y15_c02319{bottom:361.386427pt;}
.y11_c02319{bottom:377.386939pt;}
.y16_c02319{bottom:407.786011pt;}
.y14_c02319{bottom:437.226235pt;}
.y13_c02319{bottom:453.226747pt;}
.y10_c02319{bottom:482.666971pt;}
.y12_c02319{bottom:497.386555pt;}
.yf_c02319{bottom:513.387067pt;}
.y1d_c02319{bottom:546.027067pt;}
.yb_c02319{bottom:593.385179pt;}
.yd_c02319{bottom:628.586875pt;}
.yc_c02319{bottom:637.227067pt;}
.ya_c02319{bottom:707.945339pt;}
.y9_c02319{bottom:779.945531pt;}
.y7_c02319{bottom:823.786427pt;}
.y3_c02319{bottom:839.786939pt;}
.y8_c02319{bottom:870.505979pt;}
.y6_c02319{bottom:899.946203pt;}
.y5_c02319{bottom:915.946715pt;}
.y2_c02319{bottom:945.386939pt;}
.y4_c02319{bottom:959.786555pt;}
.y1_c02319{bottom:975.787067pt;}
.ye_c02319{bottom:1008.747067pt;}
.h3_c02319{height:28.916250pt;}
.h1_c02319{height:37.063125pt;}
.h2_c02319{height:37.166250pt;}
.h4_c02319{height:48.581988pt;}
.h0_c02319{height:1122.666667pt;}
.w1_c02319{width:793.333333pt;}
.w0_c02319{width:793.626667pt;}
.x0_c02319{left:0.000000pt;}
.xd_c02319{left:104.000000pt;}
.x8_c02319{left:391.999872pt;}
.x4_c02319{left:396.160512pt;}
.xb_c02319{left:400.960000pt;}
.x7_c02319{left:404.799648pt;}
.x5_c02319{left:410.560128pt;}
.x1_c02319{left:411.840000pt;}
.xa_c02319{left:429.760320pt;}
.x9_c02319{left:437.439552pt;}
.x6_c02319{left:438.400512pt;}
.xc_c02319{left:450.560320pt;}
.x3_c02319{left:455.039904pt;}
.x2_c02319{left:468.159648pt;}
.xe_c02319{left:506.560032pt;}
}





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

.ir_c02320:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02320{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02320;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02320{font-family:ff1_c02320;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02320;src:url('chunks/assets/font_4ce12dbf8ef6f07df9905988.woff2')format("woff");}.ff2_c02320{font-family:ff2_c02320;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02320;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02320{font-family:ff3_c02320;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02320{vertical-align:0.000000px;}
.v1_c02320{vertical-align:1.439424px;}
.lse_c02320{letter-spacing:-1.197504px;}
.lsa_c02320{letter-spacing:-0.574992px;}
.lsb_c02320{letter-spacing:-0.361152px;}
.ls11_c02320{letter-spacing:-0.275616px;}
.lsf_c02320{letter-spacing:-0.261360px;}
.ls7_c02320{letter-spacing:-0.242352px;}
.ls4_c02320{letter-spacing:-0.118800px;}
.ls14_c02320{letter-spacing:0.000000px;}
.ls0_c02320{letter-spacing:0.006048px;}
.ls6_c02320{letter-spacing:0.128304px;}
.ls8_c02320{letter-spacing:0.242352px;}
.lsd_c02320{letter-spacing:0.508464px;}
.ls13_c02320{letter-spacing:0.514080px;}
.ls10_c02320{letter-spacing:0.536976px;}
.lsc_c02320{letter-spacing:0.579744px;}
.ls12_c02320{letter-spacing:0.594000px;}
.ls9_c02320{letter-spacing:0.598752px;}
.ls2_c02320{letter-spacing:0.613008px;}
.ls1_c02320{letter-spacing:0.651024px;}
.ls5_c02320{letter-spacing:0.717552px;}
.ls3_c02320{letter-spacing:0.722304px;}
.sc__c02320{text-shadow:none;}
.sc0_c02320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02320{-webkit-text-stroke:0px transparent;}
.sc0_c02320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02320{word-spacing:-15.126048px;}
.wsa_c02320{word-spacing:-12.474000px;}
.ws8_c02320{word-spacing:-12.459744px;}
.ws9_c02320{word-spacing:-12.416976px;}
.ws2_c02320{word-spacing:-12.122352px;}
.ws4_c02320{word-spacing:-11.637648px;}
.ws13_c02320{word-spacing:-2.159136px;}
.ws14_c02320{word-spacing:-1.012176px;}
.wsd_c02320{word-spacing:-0.974160px;}
.wsf_c02320{word-spacing:-0.118800px;}
.ws11_c02320{word-spacing:-0.099792px;}
.ws12_c02320{word-spacing:-0.085536px;}
.wse_c02320{word-spacing:0.000000px;}
.ws10_c02320{word-spacing:0.836352px;}
.wsb_c02320{word-spacing:33.300288px;}
.ws6_c02320{word-spacing:36.742464px;}
.ws1_c02320{word-spacing:37.759392px;}
.ws0_c02320{word-spacing:38.020752px;}
.ws3_c02320{word-spacing:39.218256px;}
.ws5_c02320{word-spacing:39.902544px;}
.ws7_c02320{word-spacing:42.026688px;}
._0_c02320{margin-left:-1.948320px;}
._2_c02320{width:1.482624px;}
._4_c02320{width:3.307392px;}
._5_c02320{width:14.707872px;}
._1_c02320{width:50.252400px;}
._3_c02320{width:51.530688px;}
.fc0_c02320{color:rgb(0,0,0);}
.fs0_c02320{font-size:47.520000px;}
.fs1_c02320{font-size:60.480000px;}
.y0_c02320{bottom:0.000000px;}
.y19_c02320{bottom:146.998362px;}
.y1b_c02320{bottom:186.600234px;}
.y1a_c02320{bottom:196.320450px;}
.y18_c02320{bottom:275.878542px;}
.y17_c02320{bottom:356.878758px;}
.y15_c02320{bottom:406.559730px;}
.y11_c02320{bottom:424.560306px;}
.y16_c02320{bottom:458.759262px;}
.y14_c02320{bottom:491.879514px;}
.y13_c02320{bottom:509.880090px;}
.y10_c02320{bottom:543.000342px;}
.y12_c02320{bottom:559.559874px;}
.yf_c02320{bottom:577.560450px;}
.y1c_c02320{bottom:614.280450px;}
.yb_c02320{bottom:667.558326px;}
.yd_c02320{bottom:707.160234px;}
.yc_c02320{bottom:716.880450px;}
.ya_c02320{bottom:796.438506px;}
.y9_c02320{bottom:877.438722px;}
.y7_c02320{bottom:926.759730px;}
.y3_c02320{bottom:944.760306px;}
.y8_c02320{bottom:979.319226px;}
.y6_c02320{bottom:1012.439478px;}
.y5_c02320{bottom:1030.440054px;}
.y2_c02320{bottom:1063.560306px;}
.y4_c02320{bottom:1079.759874px;}
.y1_c02320{bottom:1097.760450px;}
.ye_c02320{bottom:1134.840450px;}
.h3_c02320{height:32.530781px;}
.h1_c02320{height:41.696016px;}
.h2_c02320{height:41.812031px;}
.h4_c02320{height:54.654737px;}
.h0_c02320{height:1263.000000px;}
.w1_c02320{width:892.500000px;}
.w0_c02320{width:892.830000px;}
.x0_c02320{left:0.000000px;}
.xd_c02320{left:117.000000px;}
.x8_c02320{left:440.999856px;}
.x4_c02320{left:445.680576px;}
.xb_c02320{left:451.080000px;}
.x7_c02320{left:455.399604px;}
.x5_c02320{left:461.880144px;}
.x1_c02320{left:463.320000px;}
.xa_c02320{left:483.480360px;}
.x9_c02320{left:492.119496px;}
.x6_c02320{left:493.200576px;}
.xc_c02320{left:506.880360px;}
.x3_c02320{left:511.919892px;}
.x2_c02320{left:526.679604px;}
@media print{
.v0_c02320{vertical-align:0.000000pt;}
.v1_c02320{vertical-align:1.279488pt;}
.lse_c02320{letter-spacing:-1.064448pt;}
.lsa_c02320{letter-spacing:-0.511104pt;}
.lsb_c02320{letter-spacing:-0.321024pt;}
.ls11_c02320{letter-spacing:-0.244992pt;}
.lsf_c02320{letter-spacing:-0.232320pt;}
.ls7_c02320{letter-spacing:-0.215424pt;}
.ls4_c02320{letter-spacing:-0.105600pt;}
.ls14_c02320{letter-spacing:0.000000pt;}
.ls0_c02320{letter-spacing:0.005376pt;}
.ls6_c02320{letter-spacing:0.114048pt;}
.ls8_c02320{letter-spacing:0.215424pt;}
.lsd_c02320{letter-spacing:0.451968pt;}
.ls13_c02320{letter-spacing:0.456960pt;}
.ls10_c02320{letter-spacing:0.477312pt;}
.lsc_c02320{letter-spacing:0.515328pt;}
.ls12_c02320{letter-spacing:0.528000pt;}
.ls9_c02320{letter-spacing:0.532224pt;}
.ls2_c02320{letter-spacing:0.544896pt;}
.ls1_c02320{letter-spacing:0.578688pt;}
.ls5_c02320{letter-spacing:0.637824pt;}
.ls3_c02320{letter-spacing:0.642048pt;}
.wsc_c02320{word-spacing:-13.445376pt;}
.wsa_c02320{word-spacing:-11.088000pt;}
.ws8_c02320{word-spacing:-11.075328pt;}
.ws9_c02320{word-spacing:-11.037312pt;}
.ws2_c02320{word-spacing:-10.775424pt;}
.ws4_c02320{word-spacing:-10.344576pt;}
.ws13_c02320{word-spacing:-1.919232pt;}
.ws14_c02320{word-spacing:-0.899712pt;}
.wsd_c02320{word-spacing:-0.865920pt;}
.wsf_c02320{word-spacing:-0.105600pt;}
.ws11_c02320{word-spacing:-0.088704pt;}
.ws12_c02320{word-spacing:-0.076032pt;}
.wse_c02320{word-spacing:0.000000pt;}
.ws10_c02320{word-spacing:0.743424pt;}
.wsb_c02320{word-spacing:29.600256pt;}
.ws6_c02320{word-spacing:32.659968pt;}
.ws1_c02320{word-spacing:33.563904pt;}
.ws0_c02320{word-spacing:33.796224pt;}
.ws3_c02320{word-spacing:34.860672pt;}
.ws5_c02320{word-spacing:35.468928pt;}
.ws7_c02320{word-spacing:37.357056pt;}
._0_c02320{margin-left:-1.731840pt;}
._2_c02320{width:1.317888pt;}
._4_c02320{width:2.939904pt;}
._5_c02320{width:13.073664pt;}
._1_c02320{width:44.668800pt;}
._3_c02320{width:45.805056pt;}
.fs0_c02320{font-size:42.240000pt;}
.fs1_c02320{font-size:53.760000pt;}
.y0_c02320{bottom:0.000000pt;}
.y19_c02320{bottom:130.665211pt;}
.y1b_c02320{bottom:165.866875pt;}
.y1a_c02320{bottom:174.507067pt;}
.y18_c02320{bottom:245.225371pt;}
.y17_c02320{bottom:317.225563pt;}
.y15_c02320{bottom:361.386427pt;}
.y11_c02320{bottom:377.386939pt;}
.y16_c02320{bottom:407.786011pt;}
.y14_c02320{bottom:437.226235pt;}
.y13_c02320{bottom:453.226747pt;}
.y10_c02320{bottom:482.666971pt;}
.y12_c02320{bottom:497.386555pt;}
.yf_c02320{bottom:513.387067pt;}
.y1c_c02320{bottom:546.027067pt;}
.yb_c02320{bottom:593.385179pt;}
.yd_c02320{bottom:628.586875pt;}
.yc_c02320{bottom:637.227067pt;}
.ya_c02320{bottom:707.945339pt;}
.y9_c02320{bottom:779.945531pt;}
.y7_c02320{bottom:823.786427pt;}
.y3_c02320{bottom:839.786939pt;}
.y8_c02320{bottom:870.505979pt;}
.y6_c02320{bottom:899.946203pt;}
.y5_c02320{bottom:915.946715pt;}
.y2_c02320{bottom:945.386939pt;}
.y4_c02320{bottom:959.786555pt;}
.y1_c02320{bottom:975.787067pt;}
.ye_c02320{bottom:1008.747067pt;}
.h3_c02320{height:28.916250pt;}
.h1_c02320{height:37.063125pt;}
.h2_c02320{height:37.166250pt;}
.h4_c02320{height:48.581988pt;}
.h0_c02320{height:1122.666667pt;}
.w1_c02320{width:793.333333pt;}
.w0_c02320{width:793.626667pt;}
.x0_c02320{left:0.000000pt;}
.xd_c02320{left:104.000000pt;}
.x8_c02320{left:391.999872pt;}
.x4_c02320{left:396.160512pt;}
.xb_c02320{left:400.960000pt;}
.x7_c02320{left:404.799648pt;}
.x5_c02320{left:410.560128pt;}
.x1_c02320{left:411.840000pt;}
.xa_c02320{left:429.760320pt;}
.x9_c02320{left:437.439552pt;}
.x6_c02320{left:438.400512pt;}
.xc_c02320{left:450.560320pt;}
.x3_c02320{left:455.039904pt;}
.x2_c02320{left:468.159648pt;}
}





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

.ir_c02321:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02321{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02321;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02321{font-family:ff1_c02321;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02321;src:url('chunks/assets/font_e3ebb0636d34112d7d686753.woff2')format("woff");}.ff2_c02321{font-family:ff2_c02321;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02321;src:url('chunks/assets/font_9b8d09c744cefcce21bbbd5b.woff2')format("woff");}.ff3_c02321{font-family:ff3_c02321;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02321{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02321{vertical-align:0.000000px;}
.v2_c02321{vertical-align:1.439424px;}
.v3_c02321{vertical-align:5.759424px;}
.v1_c02321{vertical-align:7.199280px;}
.ls8_c02321{letter-spacing:-0.574992px;}
.ls9_c02321{letter-spacing:-0.361152px;}
.lsf_c02321{letter-spacing:-0.275616px;}
.lsd_c02321{letter-spacing:-0.261360px;}
.ls6_c02321{letter-spacing:-0.242352px;}
.ls3_c02321{letter-spacing:-0.118800px;}
.ls12_c02321{letter-spacing:0.000000px;}
.ls0_c02321{letter-spacing:0.006048px;}
.ls13_c02321{letter-spacing:0.028512px;}
.lsc_c02321{letter-spacing:0.090288px;}
.ls5_c02321{letter-spacing:0.128304px;}
.lsb_c02321{letter-spacing:0.508464px;}
.ls11_c02321{letter-spacing:0.514080px;}
.lse_c02321{letter-spacing:0.536976px;}
.lsa_c02321{letter-spacing:0.579744px;}
.ls10_c02321{letter-spacing:0.594000px;}
.ls7_c02321{letter-spacing:0.598752px;}
.ls1_c02321{letter-spacing:0.613008px;}
.ls14_c02321{letter-spacing:0.651024px;}
.ls4_c02321{letter-spacing:0.717552px;}
.ls2_c02321{letter-spacing:0.722304px;}
.sc__c02321{text-shadow:none;}
.sc0_c02321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02321{-webkit-text-stroke:0px transparent;}
.sc0_c02321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02321{word-spacing:-15.126048px;}
.ws2_c02321{word-spacing:-12.602304px;}
.wsb_c02321{word-spacing:-12.474000px;}
.ws9_c02321{word-spacing:-12.459744px;}
.wsa_c02321{word-spacing:-12.416976px;}
.ws14_c02321{word-spacing:-2.159136px;}
.ws16_c02321{word-spacing:-1.012176px;}
.wsf_c02321{word-spacing:-0.974160px;}
.ws15_c02321{word-spacing:-0.389664px;}
.ws11_c02321{word-spacing:-0.118800px;}
.ws12_c02321{word-spacing:-0.099792px;}
.ws13_c02321{word-spacing:-0.085536px;}
.ws10_c02321{word-spacing:0.000000px;}
.ws8_c02321{word-spacing:2.580336px;}
.ws4_c02321{word-spacing:4.951584px;}
.wsc_c02321{word-spacing:33.300288px;}
.wse_c02321{word-spacing:36.143712px;}
.ws6_c02321{word-spacing:36.742464px;}
.ws1_c02321{word-spacing:37.759392px;}
.ws0_c02321{word-spacing:38.020752px;}
.ws3_c02321{word-spacing:39.218256px;}
.ws5_c02321{word-spacing:39.902544px;}
.ws7_c02321{word-spacing:42.026688px;}
._0_c02321{margin-left:-1.948320px;}
._2_c02321{width:1.482624px;}
._5_c02321{width:14.707872px;}
._4_c02321{width:16.741296px;}
._1_c02321{width:50.252400px;}
._3_c02321{width:51.530688px;}
.fc0_c02321{color:rgb(0,0,0);}
.fs0_c02321{font-size:47.520000px;}
.fs1_c02321{font-size:60.480000px;}
.y0_c02321{bottom:0.000000px;}
.y19_c02321{bottom:146.998362px;}
.y1b_c02321{bottom:186.600234px;}
.y1a_c02321{bottom:196.320450px;}
.y18_c02321{bottom:275.878542px;}
.y17_c02321{bottom:356.878758px;}
.y15_c02321{bottom:406.559730px;}
.y11_c02321{bottom:424.560306px;}
.y16_c02321{bottom:458.759262px;}
.y14_c02321{bottom:491.879514px;}
.y13_c02321{bottom:509.880090px;}
.y10_c02321{bottom:543.000342px;}
.y12_c02321{bottom:559.559874px;}
.yf_c02321{bottom:577.560450px;}
.y1c_c02321{bottom:614.280450px;}
.yb_c02321{bottom:667.558326px;}
.yd_c02321{bottom:707.160234px;}
.yc_c02321{bottom:716.880450px;}
.ya_c02321{bottom:796.438506px;}
.y9_c02321{bottom:877.438722px;}
.y7_c02321{bottom:926.759730px;}
.y3_c02321{bottom:944.760306px;}
.y8_c02321{bottom:979.319226px;}
.y6_c02321{bottom:1012.439478px;}
.y5_c02321{bottom:1030.440054px;}
.y2_c02321{bottom:1063.560306px;}
.y4_c02321{bottom:1079.759874px;}
.y1_c02321{bottom:1097.760450px;}
.ye_c02321{bottom:1134.840450px;}
.h4_c02321{height:32.530781px;}
.h1_c02321{height:41.696016px;}
.h2_c02321{height:41.812031px;}
.h6_c02321{height:47.571455px;}
.h3_c02321{height:49.011311px;}
.h5_c02321{height:54.654737px;}
.h0_c02321{height:1263.000000px;}
.w1_c02321{width:892.500000px;}
.w0_c02321{width:892.830000px;}
.x0_c02321{left:0.000000px;}
.xd_c02321{left:117.000000px;}
.x8_c02321{left:440.999856px;}
.x4_c02321{left:445.680576px;}
.xb_c02321{left:451.080000px;}
.x7_c02321{left:455.399604px;}
.x5_c02321{left:461.880144px;}
.x1_c02321{left:463.320000px;}
.xa_c02321{left:483.480360px;}
.x9_c02321{left:492.119496px;}
.x6_c02321{left:493.200576px;}
.xc_c02321{left:506.880360px;}
.x3_c02321{left:511.919892px;}
.x2_c02321{left:526.679604px;}
@media print{
.v0_c02321{vertical-align:0.000000pt;}
.v2_c02321{vertical-align:1.279488pt;}
.v3_c02321{vertical-align:5.119488pt;}
.v1_c02321{vertical-align:6.399360pt;}
.ls8_c02321{letter-spacing:-0.511104pt;}
.ls9_c02321{letter-spacing:-0.321024pt;}
.lsf_c02321{letter-spacing:-0.244992pt;}
.lsd_c02321{letter-spacing:-0.232320pt;}
.ls6_c02321{letter-spacing:-0.215424pt;}
.ls3_c02321{letter-spacing:-0.105600pt;}
.ls12_c02321{letter-spacing:0.000000pt;}
.ls0_c02321{letter-spacing:0.005376pt;}
.ls13_c02321{letter-spacing:0.025344pt;}
.lsc_c02321{letter-spacing:0.080256pt;}
.ls5_c02321{letter-spacing:0.114048pt;}
.lsb_c02321{letter-spacing:0.451968pt;}
.ls11_c02321{letter-spacing:0.456960pt;}
.lse_c02321{letter-spacing:0.477312pt;}
.lsa_c02321{letter-spacing:0.515328pt;}
.ls10_c02321{letter-spacing:0.528000pt;}
.ls7_c02321{letter-spacing:0.532224pt;}
.ls1_c02321{letter-spacing:0.544896pt;}
.ls14_c02321{letter-spacing:0.578688pt;}
.ls4_c02321{letter-spacing:0.637824pt;}
.ls2_c02321{letter-spacing:0.642048pt;}
.wsd_c02321{word-spacing:-13.445376pt;}
.ws2_c02321{word-spacing:-11.202048pt;}
.wsb_c02321{word-spacing:-11.088000pt;}
.ws9_c02321{word-spacing:-11.075328pt;}
.wsa_c02321{word-spacing:-11.037312pt;}
.ws14_c02321{word-spacing:-1.919232pt;}
.ws16_c02321{word-spacing:-0.899712pt;}
.wsf_c02321{word-spacing:-0.865920pt;}
.ws15_c02321{word-spacing:-0.346368pt;}
.ws11_c02321{word-spacing:-0.105600pt;}
.ws12_c02321{word-spacing:-0.088704pt;}
.ws13_c02321{word-spacing:-0.076032pt;}
.ws10_c02321{word-spacing:0.000000pt;}
.ws8_c02321{word-spacing:2.293632pt;}
.ws4_c02321{word-spacing:4.401408pt;}
.wsc_c02321{word-spacing:29.600256pt;}
.wse_c02321{word-spacing:32.127744pt;}
.ws6_c02321{word-spacing:32.659968pt;}
.ws1_c02321{word-spacing:33.563904pt;}
.ws0_c02321{word-spacing:33.796224pt;}
.ws3_c02321{word-spacing:34.860672pt;}
.ws5_c02321{word-spacing:35.468928pt;}
.ws7_c02321{word-spacing:37.357056pt;}
._0_c02321{margin-left:-1.731840pt;}
._2_c02321{width:1.317888pt;}
._5_c02321{width:13.073664pt;}
._4_c02321{width:14.881152pt;}
._1_c02321{width:44.668800pt;}
._3_c02321{width:45.805056pt;}
.fs0_c02321{font-size:42.240000pt;}
.fs1_c02321{font-size:53.760000pt;}
.y0_c02321{bottom:0.000000pt;}
.y19_c02321{bottom:130.665211pt;}
.y1b_c02321{bottom:165.866875pt;}
.y1a_c02321{bottom:174.507067pt;}
.y18_c02321{bottom:245.225371pt;}
.y17_c02321{bottom:317.225563pt;}
.y15_c02321{bottom:361.386427pt;}
.y11_c02321{bottom:377.386939pt;}
.y16_c02321{bottom:407.786011pt;}
.y14_c02321{bottom:437.226235pt;}
.y13_c02321{bottom:453.226747pt;}
.y10_c02321{bottom:482.666971pt;}
.y12_c02321{bottom:497.386555pt;}
.yf_c02321{bottom:513.387067pt;}
.y1c_c02321{bottom:546.027067pt;}
.yb_c02321{bottom:593.385179pt;}
.yd_c02321{bottom:628.586875pt;}
.yc_c02321{bottom:637.227067pt;}
.ya_c02321{bottom:707.945339pt;}
.y9_c02321{bottom:779.945531pt;}
.y7_c02321{bottom:823.786427pt;}
.y3_c02321{bottom:839.786939pt;}
.y8_c02321{bottom:870.505979pt;}
.y6_c02321{bottom:899.946203pt;}
.y5_c02321{bottom:915.946715pt;}
.y2_c02321{bottom:945.386939pt;}
.y4_c02321{bottom:959.786555pt;}
.y1_c02321{bottom:975.787067pt;}
.ye_c02321{bottom:1008.747067pt;}
.h4_c02321{height:28.916250pt;}
.h1_c02321{height:37.063125pt;}
.h2_c02321{height:37.166250pt;}
.h6_c02321{height:42.285738pt;}
.h3_c02321{height:43.565610pt;}
.h5_c02321{height:48.581988pt;}
.h0_c02321{height:1122.666667pt;}
.w1_c02321{width:793.333333pt;}
.w0_c02321{width:793.626667pt;}
.x0_c02321{left:0.000000pt;}
.xd_c02321{left:104.000000pt;}
.x8_c02321{left:391.999872pt;}
.x4_c02321{left:396.160512pt;}
.xb_c02321{left:400.960000pt;}
.x7_c02321{left:404.799648pt;}
.x5_c02321{left:410.560128pt;}
.x1_c02321{left:411.840000pt;}
.xa_c02321{left:429.760320pt;}
.x9_c02321{left:437.439552pt;}
.x6_c02321{left:438.400512pt;}
.xc_c02321{left:450.560320pt;}
.x3_c02321{left:455.039904pt;}
.x2_c02321{left:468.159648pt;}
}





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

.ir_c02322:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02322{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02322;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02322{font-family:ff1_c02322;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02322;src:url('chunks/assets/font_696f6dc5bfe2e7f0a1ea4c38.woff2')format("woff");}.ff2_c02322{font-family:ff2_c02322;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02322;src:url('chunks/assets/font_9b8d09c744cefcce21bbbd5b.woff2')format("woff");}.ff3_c02322{font-family:ff3_c02322;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02322{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02322{vertical-align:0.000000px;}
.v2_c02322{vertical-align:1.439424px;}
.v3_c02322{vertical-align:5.759424px;}
.v1_c02322{vertical-align:7.199280px;}
.ls10_c02322{letter-spacing:-0.736560px;}
.lsd_c02322{letter-spacing:-0.722304px;}
.ls9_c02322{letter-spacing:-0.574992px;}
.lsa_c02322{letter-spacing:-0.361152px;}
.ls16_c02322{letter-spacing:-0.275616px;}
.ls11_c02322{letter-spacing:-0.270864px;}
.lse_c02322{letter-spacing:-0.261360px;}
.ls7_c02322{letter-spacing:-0.242352px;}
.ls4_c02322{letter-spacing:-0.118800px;}
.ls14_c02322{letter-spacing:0.000000px;}
.ls1_c02322{letter-spacing:0.006048px;}
.ls15_c02322{letter-spacing:0.028512px;}
.ls6_c02322{letter-spacing:0.128304px;}
.lsc_c02322{letter-spacing:0.508464px;}
.ls13_c02322{letter-spacing:0.514080px;}
.lsf_c02322{letter-spacing:0.536976px;}
.lsb_c02322{letter-spacing:0.579744px;}
.ls12_c02322{letter-spacing:0.594000px;}
.ls8_c02322{letter-spacing:0.598752px;}
.ls2_c02322{letter-spacing:0.613008px;}
.ls0_c02322{letter-spacing:0.651024px;}
.ls5_c02322{letter-spacing:0.717552px;}
.ls3_c02322{letter-spacing:0.722304px;}
.sc__c02322{text-shadow:none;}
.sc0_c02322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02322{-webkit-text-stroke:0px transparent;}
.sc0_c02322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02322{word-spacing:-15.126048px;}
.ws2_c02322{word-spacing:-12.602304px;}
.wsb_c02322{word-spacing:-12.474000px;}
.ws6_c02322{word-spacing:-12.459744px;}
.wsf_c02322{word-spacing:-12.416976px;}
.ws18_c02322{word-spacing:-2.159136px;}
.ws12_c02322{word-spacing:-1.012176px;}
.ws10_c02322{word-spacing:-0.974160px;}
.ws19_c02322{word-spacing:-0.389664px;}
.ws13_c02322{word-spacing:-0.118800px;}
.ws15_c02322{word-spacing:-0.099792px;}
.ws16_c02322{word-spacing:-0.090288px;}
.ws17_c02322{word-spacing:-0.085536px;}
.ws11_c02322{word-spacing:0.000000px;}
.ws14_c02322{word-spacing:0.361152px;}
.ws4_c02322{word-spacing:4.951584px;}
.wsa_c02322{word-spacing:6.629040px;}
.wsc_c02322{word-spacing:33.300288px;}
.ws9_c02322{word-spacing:34.836912px;}
.ws8_c02322{word-spacing:36.143712px;}
.wse_c02322{word-spacing:36.742464px;}
.ws1_c02322{word-spacing:37.759392px;}
.ws0_c02322{word-spacing:38.020752px;}
.ws3_c02322{word-spacing:39.218256px;}
.ws5_c02322{word-spacing:39.902544px;}
.ws7_c02322{word-spacing:42.026688px;}
._0_c02322{margin-left:-1.948320px;}
._2_c02322{width:1.482624px;}
._7_c02322{width:14.707872px;}
._5_c02322{width:19.982160px;}
._6_c02322{width:23.451120px;}
._4_c02322{width:24.691392px;}
._1_c02322{width:50.252400px;}
._3_c02322{width:51.530688px;}
.fc0_c02322{color:rgb(0,0,0);}
.fs0_c02322{font-size:47.520000px;}
.fs1_c02322{font-size:60.480000px;}
.y0_c02322{bottom:0.000000px;}
.y1a_c02322{bottom:146.998362px;}
.y1c_c02322{bottom:186.600234px;}
.y1b_c02322{bottom:196.320450px;}
.y19_c02322{bottom:275.878542px;}
.y18_c02322{bottom:356.878758px;}
.y16_c02322{bottom:406.559730px;}
.y12_c02322{bottom:424.560306px;}
.y17_c02322{bottom:458.759262px;}
.y15_c02322{bottom:491.879514px;}
.y14_c02322{bottom:509.880090px;}
.y11_c02322{bottom:543.000342px;}
.y13_c02322{bottom:559.559874px;}
.y10_c02322{bottom:577.560450px;}
.y1d_c02322{bottom:614.280450px;}
.yc_c02322{bottom:652.438650px;}
.yb_c02322{bottom:667.558326px;}
.ye_c02322{bottom:707.160234px;}
.yd_c02322{bottom:716.880450px;}
.ya_c02322{bottom:796.438506px;}
.y9_c02322{bottom:877.438722px;}
.y7_c02322{bottom:926.759730px;}
.y3_c02322{bottom:944.760306px;}
.y8_c02322{bottom:979.319226px;}
.y6_c02322{bottom:1012.439478px;}
.y5_c02322{bottom:1030.440054px;}
.y2_c02322{bottom:1063.560306px;}
.y4_c02322{bottom:1079.759874px;}
.y1_c02322{bottom:1097.760450px;}
.yf_c02322{bottom:1134.840450px;}
.h4_c02322{height:32.530781px;}
.h1_c02322{height:41.696016px;}
.h2_c02322{height:41.812031px;}
.h6_c02322{height:47.571455px;}
.h3_c02322{height:49.011311px;}
.h5_c02322{height:54.654737px;}
.h0_c02322{height:1263.000000px;}
.w1_c02322{width:892.500000px;}
.w0_c02322{width:892.830000px;}
.x0_c02322{left:0.000000px;}
.xe_c02322{left:117.000000px;}
.x8_c02322{left:440.999856px;}
.x4_c02322{left:445.680576px;}
.xc_c02322{left:451.080000px;}
.x7_c02322{left:455.399604px;}
.x5_c02322{left:461.880144px;}
.x1_c02322{left:463.320000px;}
.xa_c02322{left:483.480360px;}
.x9_c02322{left:492.119496px;}
.x6_c02322{left:493.200576px;}
.xd_c02322{left:506.880360px;}
.x3_c02322{left:511.919892px;}
.x2_c02322{left:526.679604px;}
.xb_c02322{left:569.880036px;}
@media print{
.v0_c02322{vertical-align:0.000000pt;}
.v2_c02322{vertical-align:1.279488pt;}
.v3_c02322{vertical-align:5.119488pt;}
.v1_c02322{vertical-align:6.399360pt;}
.ls10_c02322{letter-spacing:-0.654720pt;}
.lsd_c02322{letter-spacing:-0.642048pt;}
.ls9_c02322{letter-spacing:-0.511104pt;}
.lsa_c02322{letter-spacing:-0.321024pt;}
.ls16_c02322{letter-spacing:-0.244992pt;}
.ls11_c02322{letter-spacing:-0.240768pt;}
.lse_c02322{letter-spacing:-0.232320pt;}
.ls7_c02322{letter-spacing:-0.215424pt;}
.ls4_c02322{letter-spacing:-0.105600pt;}
.ls14_c02322{letter-spacing:0.000000pt;}
.ls1_c02322{letter-spacing:0.005376pt;}
.ls15_c02322{letter-spacing:0.025344pt;}
.ls6_c02322{letter-spacing:0.114048pt;}
.lsc_c02322{letter-spacing:0.451968pt;}
.ls13_c02322{letter-spacing:0.456960pt;}
.lsf_c02322{letter-spacing:0.477312pt;}
.lsb_c02322{letter-spacing:0.515328pt;}
.ls12_c02322{letter-spacing:0.528000pt;}
.ls8_c02322{letter-spacing:0.532224pt;}
.ls2_c02322{letter-spacing:0.544896pt;}
.ls0_c02322{letter-spacing:0.578688pt;}
.ls5_c02322{letter-spacing:0.637824pt;}
.ls3_c02322{letter-spacing:0.642048pt;}
.wsd_c02322{word-spacing:-13.445376pt;}
.ws2_c02322{word-spacing:-11.202048pt;}
.wsb_c02322{word-spacing:-11.088000pt;}
.ws6_c02322{word-spacing:-11.075328pt;}
.wsf_c02322{word-spacing:-11.037312pt;}
.ws18_c02322{word-spacing:-1.919232pt;}
.ws12_c02322{word-spacing:-0.899712pt;}
.ws10_c02322{word-spacing:-0.865920pt;}
.ws19_c02322{word-spacing:-0.346368pt;}
.ws13_c02322{word-spacing:-0.105600pt;}
.ws15_c02322{word-spacing:-0.088704pt;}
.ws16_c02322{word-spacing:-0.080256pt;}
.ws17_c02322{word-spacing:-0.076032pt;}
.ws11_c02322{word-spacing:0.000000pt;}
.ws14_c02322{word-spacing:0.321024pt;}
.ws4_c02322{word-spacing:4.401408pt;}
.wsa_c02322{word-spacing:5.892480pt;}
.wsc_c02322{word-spacing:29.600256pt;}
.ws9_c02322{word-spacing:30.966144pt;}
.ws8_c02322{word-spacing:32.127744pt;}
.wse_c02322{word-spacing:32.659968pt;}
.ws1_c02322{word-spacing:33.563904pt;}
.ws0_c02322{word-spacing:33.796224pt;}
.ws3_c02322{word-spacing:34.860672pt;}
.ws5_c02322{word-spacing:35.468928pt;}
.ws7_c02322{word-spacing:37.357056pt;}
._0_c02322{margin-left:-1.731840pt;}
._2_c02322{width:1.317888pt;}
._7_c02322{width:13.073664pt;}
._5_c02322{width:17.761920pt;}
._6_c02322{width:20.845440pt;}
._4_c02322{width:21.947904pt;}
._1_c02322{width:44.668800pt;}
._3_c02322{width:45.805056pt;}
.fs0_c02322{font-size:42.240000pt;}
.fs1_c02322{font-size:53.760000pt;}
.y0_c02322{bottom:0.000000pt;}
.y1a_c02322{bottom:130.665211pt;}
.y1c_c02322{bottom:165.866875pt;}
.y1b_c02322{bottom:174.507067pt;}
.y19_c02322{bottom:245.225371pt;}
.y18_c02322{bottom:317.225563pt;}
.y16_c02322{bottom:361.386427pt;}
.y12_c02322{bottom:377.386939pt;}
.y17_c02322{bottom:407.786011pt;}
.y15_c02322{bottom:437.226235pt;}
.y14_c02322{bottom:453.226747pt;}
.y11_c02322{bottom:482.666971pt;}
.y13_c02322{bottom:497.386555pt;}
.y10_c02322{bottom:513.387067pt;}
.y1d_c02322{bottom:546.027067pt;}
.yc_c02322{bottom:579.945467pt;}
.yb_c02322{bottom:593.385179pt;}
.ye_c02322{bottom:628.586875pt;}
.yd_c02322{bottom:637.227067pt;}
.ya_c02322{bottom:707.945339pt;}
.y9_c02322{bottom:779.945531pt;}
.y7_c02322{bottom:823.786427pt;}
.y3_c02322{bottom:839.786939pt;}
.y8_c02322{bottom:870.505979pt;}
.y6_c02322{bottom:899.946203pt;}
.y5_c02322{bottom:915.946715pt;}
.y2_c02322{bottom:945.386939pt;}
.y4_c02322{bottom:959.786555pt;}
.y1_c02322{bottom:975.787067pt;}
.yf_c02322{bottom:1008.747067pt;}
.h4_c02322{height:28.916250pt;}
.h1_c02322{height:37.063125pt;}
.h2_c02322{height:37.166250pt;}
.h6_c02322{height:42.285738pt;}
.h3_c02322{height:43.565610pt;}
.h5_c02322{height:48.581988pt;}
.h0_c02322{height:1122.666667pt;}
.w1_c02322{width:793.333333pt;}
.w0_c02322{width:793.626667pt;}
.x0_c02322{left:0.000000pt;}
.xe_c02322{left:104.000000pt;}
.x8_c02322{left:391.999872pt;}
.x4_c02322{left:396.160512pt;}
.xc_c02322{left:400.960000pt;}
.x7_c02322{left:404.799648pt;}
.x5_c02322{left:410.560128pt;}
.x1_c02322{left:411.840000pt;}
.xa_c02322{left:429.760320pt;}
.x9_c02322{left:437.439552pt;}
.x6_c02322{left:438.400512pt;}
.xd_c02322{left:450.560320pt;}
.x3_c02322{left:455.039904pt;}
.x2_c02322{left:468.159648pt;}
.xb_c02322{left:506.560032pt;}
}





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

.ir_c02323:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02323{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02323;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02323{font-family:ff1_c02323;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02323;src:url('chunks/assets/font_e3ebb0636d34112d7d686753.woff2')format("woff");}.ff2_c02323{font-family:ff2_c02323;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02323;src:url('chunks/assets/font_9b8d09c744cefcce21bbbd5b.woff2')format("woff");}.ff3_c02323{font-family:ff3_c02323;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02323{vertical-align:0.000000px;}
.v2_c02323{vertical-align:1.439424px;}
.v3_c02323{vertical-align:5.759424px;}
.v1_c02323{vertical-align:7.199280px;}
.ls8_c02323{letter-spacing:-0.574992px;}
.ls9_c02323{letter-spacing:-0.361152px;}
.ls10_c02323{letter-spacing:-0.275616px;}
.lse_c02323{letter-spacing:-0.261360px;}
.ls6_c02323{letter-spacing:-0.242352px;}
.ls3_c02323{letter-spacing:-0.118800px;}
.ls13_c02323{letter-spacing:0.000000px;}
.ls0_c02323{letter-spacing:0.006048px;}
.lsc_c02323{letter-spacing:0.028512px;}
.ls14_c02323{letter-spacing:0.042768px;}
.ls5_c02323{letter-spacing:0.128304px;}
.lsb_c02323{letter-spacing:0.508464px;}
.ls12_c02323{letter-spacing:0.514080px;}
.lsf_c02323{letter-spacing:0.536976px;}
.lsa_c02323{letter-spacing:0.579744px;}
.ls11_c02323{letter-spacing:0.594000px;}
.ls7_c02323{letter-spacing:0.598752px;}
.ls1_c02323{letter-spacing:0.613008px;}
.lsd_c02323{letter-spacing:0.651024px;}
.ls4_c02323{letter-spacing:0.717552px;}
.ls2_c02323{letter-spacing:0.722304px;}
.sc__c02323{text-shadow:none;}
.sc0_c02323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02323{-webkit-text-stroke:0px transparent;}
.sc0_c02323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02323{word-spacing:-15.126048px;}
.ws2_c02323{word-spacing:-12.602304px;}
.wsa_c02323{word-spacing:-12.474000px;}
.wsd_c02323{word-spacing:-12.459744px;}
.ws9_c02323{word-spacing:-12.416976px;}
.ws15_c02323{word-spacing:-2.159136px;}
.ws12_c02323{word-spacing:-1.012176px;}
.wse_c02323{word-spacing:-0.974160px;}
.ws16_c02323{word-spacing:-0.403920px;}
.ws11_c02323{word-spacing:-0.389664px;}
.ws10_c02323{word-spacing:-0.118800px;}
.ws13_c02323{word-spacing:-0.099792px;}
.ws14_c02323{word-spacing:-0.085536px;}
.wsf_c02323{word-spacing:0.000000px;}
.ws4_c02323{word-spacing:4.951584px;}
.wsb_c02323{word-spacing:33.300288px;}
.ws8_c02323{word-spacing:36.143712px;}
.ws6_c02323{word-spacing:36.742464px;}
.ws1_c02323{word-spacing:37.759392px;}
.ws0_c02323{word-spacing:38.020752px;}
.ws3_c02323{word-spacing:39.218256px;}
.ws5_c02323{word-spacing:39.902544px;}
.ws7_c02323{word-spacing:42.026688px;}
._0_c02323{margin-left:-1.948320px;}
._2_c02323{width:1.482624px;}
._4_c02323{width:14.707872px;}
._1_c02323{width:50.252400px;}
._3_c02323{width:51.530688px;}
.fc0_c02323{color:rgb(0,0,0);}
.fs0_c02323{font-size:47.520000px;}
.fs1_c02323{font-size:60.480000px;}
.y0_c02323{bottom:0.000000px;}
.y19_c02323{bottom:146.998362px;}
.y1b_c02323{bottom:186.600234px;}
.y1a_c02323{bottom:196.320450px;}
.y18_c02323{bottom:275.878542px;}
.y17_c02323{bottom:356.878758px;}
.y15_c02323{bottom:406.559730px;}
.y11_c02323{bottom:424.560306px;}
.y16_c02323{bottom:458.759262px;}
.y14_c02323{bottom:491.879514px;}
.y13_c02323{bottom:509.880090px;}
.y10_c02323{bottom:543.000342px;}
.y12_c02323{bottom:559.559874px;}
.yf_c02323{bottom:577.560450px;}
.y1c_c02323{bottom:614.280450px;}
.yb_c02323{bottom:667.558326px;}
.yd_c02323{bottom:707.160234px;}
.yc_c02323{bottom:716.880450px;}
.ya_c02323{bottom:796.438506px;}
.y9_c02323{bottom:877.438722px;}
.y7_c02323{bottom:926.759730px;}
.y3_c02323{bottom:944.760306px;}
.y8_c02323{bottom:979.319226px;}
.y6_c02323{bottom:1012.439478px;}
.y5_c02323{bottom:1030.440054px;}
.y2_c02323{bottom:1063.560306px;}
.y4_c02323{bottom:1079.759874px;}
.y1_c02323{bottom:1097.760450px;}
.ye_c02323{bottom:1134.840450px;}
.h4_c02323{height:32.530781px;}
.h1_c02323{height:41.696016px;}
.h2_c02323{height:41.812031px;}
.h6_c02323{height:47.571455px;}
.h3_c02323{height:49.011311px;}
.h5_c02323{height:54.654737px;}
.h0_c02323{height:1263.000000px;}
.w1_c02323{width:892.500000px;}
.w0_c02323{width:892.830000px;}
.x0_c02323{left:0.000000px;}
.xd_c02323{left:117.000000px;}
.x8_c02323{left:440.999856px;}
.x4_c02323{left:445.680576px;}
.xb_c02323{left:451.080000px;}
.x7_c02323{left:455.399604px;}
.x5_c02323{left:461.880144px;}
.x1_c02323{left:463.320000px;}
.xa_c02323{left:483.480360px;}
.x9_c02323{left:492.119496px;}
.x6_c02323{left:493.200576px;}
.xc_c02323{left:506.880360px;}
.x3_c02323{left:511.919892px;}
.x2_c02323{left:526.679604px;}
@media print{
.v0_c02323{vertical-align:0.000000pt;}
.v2_c02323{vertical-align:1.279488pt;}
.v3_c02323{vertical-align:5.119488pt;}
.v1_c02323{vertical-align:6.399360pt;}
.ls8_c02323{letter-spacing:-0.511104pt;}
.ls9_c02323{letter-spacing:-0.321024pt;}
.ls10_c02323{letter-spacing:-0.244992pt;}
.lse_c02323{letter-spacing:-0.232320pt;}
.ls6_c02323{letter-spacing:-0.215424pt;}
.ls3_c02323{letter-spacing:-0.105600pt;}
.ls13_c02323{letter-spacing:0.000000pt;}
.ls0_c02323{letter-spacing:0.005376pt;}
.lsc_c02323{letter-spacing:0.025344pt;}
.ls14_c02323{letter-spacing:0.038016pt;}
.ls5_c02323{letter-spacing:0.114048pt;}
.lsb_c02323{letter-spacing:0.451968pt;}
.ls12_c02323{letter-spacing:0.456960pt;}
.lsf_c02323{letter-spacing:0.477312pt;}
.lsa_c02323{letter-spacing:0.515328pt;}
.ls11_c02323{letter-spacing:0.528000pt;}
.ls7_c02323{letter-spacing:0.532224pt;}
.ls1_c02323{letter-spacing:0.544896pt;}
.lsd_c02323{letter-spacing:0.578688pt;}
.ls4_c02323{letter-spacing:0.637824pt;}
.ls2_c02323{letter-spacing:0.642048pt;}
.wsc_c02323{word-spacing:-13.445376pt;}
.ws2_c02323{word-spacing:-11.202048pt;}
.wsa_c02323{word-spacing:-11.088000pt;}
.wsd_c02323{word-spacing:-11.075328pt;}
.ws9_c02323{word-spacing:-11.037312pt;}
.ws15_c02323{word-spacing:-1.919232pt;}
.ws12_c02323{word-spacing:-0.899712pt;}
.wse_c02323{word-spacing:-0.865920pt;}
.ws16_c02323{word-spacing:-0.359040pt;}
.ws11_c02323{word-spacing:-0.346368pt;}
.ws10_c02323{word-spacing:-0.105600pt;}
.ws13_c02323{word-spacing:-0.088704pt;}
.ws14_c02323{word-spacing:-0.076032pt;}
.wsf_c02323{word-spacing:0.000000pt;}
.ws4_c02323{word-spacing:4.401408pt;}
.wsb_c02323{word-spacing:29.600256pt;}
.ws8_c02323{word-spacing:32.127744pt;}
.ws6_c02323{word-spacing:32.659968pt;}
.ws1_c02323{word-spacing:33.563904pt;}
.ws0_c02323{word-spacing:33.796224pt;}
.ws3_c02323{word-spacing:34.860672pt;}
.ws5_c02323{word-spacing:35.468928pt;}
.ws7_c02323{word-spacing:37.357056pt;}
._0_c02323{margin-left:-1.731840pt;}
._2_c02323{width:1.317888pt;}
._4_c02323{width:13.073664pt;}
._1_c02323{width:44.668800pt;}
._3_c02323{width:45.805056pt;}
.fs0_c02323{font-size:42.240000pt;}
.fs1_c02323{font-size:53.760000pt;}
.y0_c02323{bottom:0.000000pt;}
.y19_c02323{bottom:130.665211pt;}
.y1b_c02323{bottom:165.866875pt;}
.y1a_c02323{bottom:174.507067pt;}
.y18_c02323{bottom:245.225371pt;}
.y17_c02323{bottom:317.225563pt;}
.y15_c02323{bottom:361.386427pt;}
.y11_c02323{bottom:377.386939pt;}
.y16_c02323{bottom:407.786011pt;}
.y14_c02323{bottom:437.226235pt;}
.y13_c02323{bottom:453.226747pt;}
.y10_c02323{bottom:482.666971pt;}
.y12_c02323{bottom:497.386555pt;}
.yf_c02323{bottom:513.387067pt;}
.y1c_c02323{bottom:546.027067pt;}
.yb_c02323{bottom:593.385179pt;}
.yd_c02323{bottom:628.586875pt;}
.yc_c02323{bottom:637.227067pt;}
.ya_c02323{bottom:707.945339pt;}
.y9_c02323{bottom:779.945531pt;}
.y7_c02323{bottom:823.786427pt;}
.y3_c02323{bottom:839.786939pt;}
.y8_c02323{bottom:870.505979pt;}
.y6_c02323{bottom:899.946203pt;}
.y5_c02323{bottom:915.946715pt;}
.y2_c02323{bottom:945.386939pt;}
.y4_c02323{bottom:959.786555pt;}
.y1_c02323{bottom:975.787067pt;}
.ye_c02323{bottom:1008.747067pt;}
.h4_c02323{height:28.916250pt;}
.h1_c02323{height:37.063125pt;}
.h2_c02323{height:37.166250pt;}
.h6_c02323{height:42.285738pt;}
.h3_c02323{height:43.565610pt;}
.h5_c02323{height:48.581988pt;}
.h0_c02323{height:1122.666667pt;}
.w1_c02323{width:793.333333pt;}
.w0_c02323{width:793.626667pt;}
.x0_c02323{left:0.000000pt;}
.xd_c02323{left:104.000000pt;}
.x8_c02323{left:391.999872pt;}
.x4_c02323{left:396.160512pt;}
.xb_c02323{left:400.960000pt;}
.x7_c02323{left:404.799648pt;}
.x5_c02323{left:410.560128pt;}
.x1_c02323{left:411.840000pt;}
.xa_c02323{left:429.760320pt;}
.x9_c02323{left:437.439552pt;}
.x6_c02323{left:438.400512pt;}
.xc_c02323{left:450.560320pt;}
.x3_c02323{left:455.039904pt;}
.x2_c02323{left:468.159648pt;}
}





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

.ir_c02324:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02324{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02324;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02324{font-family:ff1_c02324;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02324;src:url('chunks/assets/font_3fe40ed8a92461c09efe7cdd.woff2')format("woff");}.ff2_c02324{font-family:ff2_c02324;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02324;src:url('chunks/assets/font_9b8d09c744cefcce21bbbd5b.woff2')format("woff");}.ff3_c02324{font-family:ff3_c02324;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02324{vertical-align:0.000000px;}
.v2_c02324{vertical-align:1.439424px;}
.v3_c02324{vertical-align:5.759424px;}
.v1_c02324{vertical-align:7.199280px;}
.ls8_c02324{letter-spacing:-0.574992px;}
.ls9_c02324{letter-spacing:-0.361152px;}
.lsf_c02324{letter-spacing:-0.275616px;}
.lsd_c02324{letter-spacing:-0.261360px;}
.ls6_c02324{letter-spacing:-0.242352px;}
.ls3_c02324{letter-spacing:-0.118800px;}
.ls12_c02324{letter-spacing:0.000000px;}
.ls0_c02324{letter-spacing:0.006048px;}
.lsc_c02324{letter-spacing:0.028512px;}
.ls5_c02324{letter-spacing:0.128304px;}
.lsb_c02324{letter-spacing:0.508464px;}
.ls11_c02324{letter-spacing:0.514080px;}
.lse_c02324{letter-spacing:0.536976px;}
.lsa_c02324{letter-spacing:0.579744px;}
.ls10_c02324{letter-spacing:0.594000px;}
.ls7_c02324{letter-spacing:0.598752px;}
.ls1_c02324{letter-spacing:0.613008px;}
.ls4_c02324{letter-spacing:0.717552px;}
.ls2_c02324{letter-spacing:0.722304px;}
.sc__c02324{text-shadow:none;}
.sc0_c02324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02324{-webkit-text-stroke:0px transparent;}
.sc0_c02324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02324{word-spacing:-15.126048px;}
.ws2_c02324{word-spacing:-12.602304px;}
.wsa_c02324{word-spacing:-12.474000px;}
.ws8_c02324{word-spacing:-12.459744px;}
.ws9_c02324{word-spacing:-12.416976px;}
.ws13_c02324{word-spacing:-2.159136px;}
.wsd_c02324{word-spacing:-0.974160px;}
.ws10_c02324{word-spacing:-0.389664px;}
.wsf_c02324{word-spacing:-0.118800px;}
.ws11_c02324{word-spacing:-0.099792px;}
.ws12_c02324{word-spacing:-0.085536px;}
.wse_c02324{word-spacing:0.000000px;}
.ws4_c02324{word-spacing:4.951584px;}
.wsb_c02324{word-spacing:33.300288px;}
.ws6_c02324{word-spacing:36.742464px;}
.ws1_c02324{word-spacing:37.759392px;}
.ws0_c02324{word-spacing:38.020752px;}
.ws3_c02324{word-spacing:39.218256px;}
.ws5_c02324{word-spacing:39.902544px;}
.ws7_c02324{word-spacing:42.026688px;}
._0_c02324{margin-left:-1.948320px;}
._2_c02324{width:1.482624px;}
._4_c02324{width:14.707872px;}
._1_c02324{width:50.252400px;}
._3_c02324{width:51.530688px;}
.fc0_c02324{color:rgb(0,0,0);}
.fs0_c02324{font-size:47.520000px;}
.fs1_c02324{font-size:60.480000px;}
.y0_c02324{bottom:0.000000px;}
.y19_c02324{bottom:146.998362px;}
.y1b_c02324{bottom:186.600234px;}
.y1a_c02324{bottom:196.320450px;}
.y18_c02324{bottom:275.878542px;}
.y17_c02324{bottom:356.878758px;}
.y15_c02324{bottom:406.559730px;}
.y11_c02324{bottom:424.560306px;}
.y16_c02324{bottom:458.759262px;}
.y14_c02324{bottom:491.879514px;}
.y13_c02324{bottom:509.880090px;}
.y10_c02324{bottom:543.000342px;}
.y12_c02324{bottom:559.559874px;}
.yf_c02324{bottom:577.560450px;}
.y1c_c02324{bottom:614.280450px;}
.yb_c02324{bottom:667.558326px;}
.yd_c02324{bottom:707.160234px;}
.yc_c02324{bottom:716.880450px;}
.ya_c02324{bottom:796.438506px;}
.y9_c02324{bottom:877.438722px;}
.y7_c02324{bottom:926.759730px;}
.y3_c02324{bottom:944.760306px;}
.y8_c02324{bottom:979.319226px;}
.y6_c02324{bottom:1012.439478px;}
.y5_c02324{bottom:1030.440054px;}
.y2_c02324{bottom:1063.560306px;}
.y4_c02324{bottom:1079.759874px;}
.y1_c02324{bottom:1097.760450px;}
.ye_c02324{bottom:1134.840450px;}
.h4_c02324{height:32.530781px;}
.h1_c02324{height:41.696016px;}
.h2_c02324{height:41.812031px;}
.h6_c02324{height:47.571455px;}
.h3_c02324{height:49.011311px;}
.h5_c02324{height:54.654737px;}
.h0_c02324{height:1263.000000px;}
.w1_c02324{width:892.500000px;}
.w0_c02324{width:892.830000px;}
.x0_c02324{left:0.000000px;}
.xd_c02324{left:117.000000px;}
.x8_c02324{left:440.999856px;}
.x4_c02324{left:445.680576px;}
.xb_c02324{left:451.080000px;}
.x7_c02324{left:455.399604px;}
.x5_c02324{left:461.880144px;}
.x1_c02324{left:463.320000px;}
.xa_c02324{left:483.480360px;}
.x9_c02324{left:492.119496px;}
.x6_c02324{left:493.200576px;}
.xc_c02324{left:506.880360px;}
.x3_c02324{left:511.919892px;}
.x2_c02324{left:526.679604px;}
@media print{
.v0_c02324{vertical-align:0.000000pt;}
.v2_c02324{vertical-align:1.279488pt;}
.v3_c02324{vertical-align:5.119488pt;}
.v1_c02324{vertical-align:6.399360pt;}
.ls8_c02324{letter-spacing:-0.511104pt;}
.ls9_c02324{letter-spacing:-0.321024pt;}
.lsf_c02324{letter-spacing:-0.244992pt;}
.lsd_c02324{letter-spacing:-0.232320pt;}
.ls6_c02324{letter-spacing:-0.215424pt;}
.ls3_c02324{letter-spacing:-0.105600pt;}
.ls12_c02324{letter-spacing:0.000000pt;}
.ls0_c02324{letter-spacing:0.005376pt;}
.lsc_c02324{letter-spacing:0.025344pt;}
.ls5_c02324{letter-spacing:0.114048pt;}
.lsb_c02324{letter-spacing:0.451968pt;}
.ls11_c02324{letter-spacing:0.456960pt;}
.lse_c02324{letter-spacing:0.477312pt;}
.lsa_c02324{letter-spacing:0.515328pt;}
.ls10_c02324{letter-spacing:0.528000pt;}
.ls7_c02324{letter-spacing:0.532224pt;}
.ls1_c02324{letter-spacing:0.544896pt;}
.ls4_c02324{letter-spacing:0.637824pt;}
.ls2_c02324{letter-spacing:0.642048pt;}
.wsc_c02324{word-spacing:-13.445376pt;}
.ws2_c02324{word-spacing:-11.202048pt;}
.wsa_c02324{word-spacing:-11.088000pt;}
.ws8_c02324{word-spacing:-11.075328pt;}
.ws9_c02324{word-spacing:-11.037312pt;}
.ws13_c02324{word-spacing:-1.919232pt;}
.wsd_c02324{word-spacing:-0.865920pt;}
.ws10_c02324{word-spacing:-0.346368pt;}
.wsf_c02324{word-spacing:-0.105600pt;}
.ws11_c02324{word-spacing:-0.088704pt;}
.ws12_c02324{word-spacing:-0.076032pt;}
.wse_c02324{word-spacing:0.000000pt;}
.ws4_c02324{word-spacing:4.401408pt;}
.wsb_c02324{word-spacing:29.600256pt;}
.ws6_c02324{word-spacing:32.659968pt;}
.ws1_c02324{word-spacing:33.563904pt;}
.ws0_c02324{word-spacing:33.796224pt;}
.ws3_c02324{word-spacing:34.860672pt;}
.ws5_c02324{word-spacing:35.468928pt;}
.ws7_c02324{word-spacing:37.357056pt;}
._0_c02324{margin-left:-1.731840pt;}
._2_c02324{width:1.317888pt;}
._4_c02324{width:13.073664pt;}
._1_c02324{width:44.668800pt;}
._3_c02324{width:45.805056pt;}
.fs0_c02324{font-size:42.240000pt;}
.fs1_c02324{font-size:53.760000pt;}
.y0_c02324{bottom:0.000000pt;}
.y19_c02324{bottom:130.665211pt;}
.y1b_c02324{bottom:165.866875pt;}
.y1a_c02324{bottom:174.507067pt;}
.y18_c02324{bottom:245.225371pt;}
.y17_c02324{bottom:317.225563pt;}
.y15_c02324{bottom:361.386427pt;}
.y11_c02324{bottom:377.386939pt;}
.y16_c02324{bottom:407.786011pt;}
.y14_c02324{bottom:437.226235pt;}
.y13_c02324{bottom:453.226747pt;}
.y10_c02324{bottom:482.666971pt;}
.y12_c02324{bottom:497.386555pt;}
.yf_c02324{bottom:513.387067pt;}
.y1c_c02324{bottom:546.027067pt;}
.yb_c02324{bottom:593.385179pt;}
.yd_c02324{bottom:628.586875pt;}
.yc_c02324{bottom:637.227067pt;}
.ya_c02324{bottom:707.945339pt;}
.y9_c02324{bottom:779.945531pt;}
.y7_c02324{bottom:823.786427pt;}
.y3_c02324{bottom:839.786939pt;}
.y8_c02324{bottom:870.505979pt;}
.y6_c02324{bottom:899.946203pt;}
.y5_c02324{bottom:915.946715pt;}
.y2_c02324{bottom:945.386939pt;}
.y4_c02324{bottom:959.786555pt;}
.y1_c02324{bottom:975.787067pt;}
.ye_c02324{bottom:1008.747067pt;}
.h4_c02324{height:28.916250pt;}
.h1_c02324{height:37.063125pt;}
.h2_c02324{height:37.166250pt;}
.h6_c02324{height:42.285738pt;}
.h3_c02324{height:43.565610pt;}
.h5_c02324{height:48.581988pt;}
.h0_c02324{height:1122.666667pt;}
.w1_c02324{width:793.333333pt;}
.w0_c02324{width:793.626667pt;}
.x0_c02324{left:0.000000pt;}
.xd_c02324{left:104.000000pt;}
.x8_c02324{left:391.999872pt;}
.x4_c02324{left:396.160512pt;}
.xb_c02324{left:400.960000pt;}
.x7_c02324{left:404.799648pt;}
.x5_c02324{left:410.560128pt;}
.x1_c02324{left:411.840000pt;}
.xa_c02324{left:429.760320pt;}
.x9_c02324{left:437.439552pt;}
.x6_c02324{left:438.400512pt;}
.xc_c02324{left:450.560320pt;}
.x3_c02324{left:455.039904pt;}
.x2_c02324{left:468.159648pt;}
}





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

.ir_c02325:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02325{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02325;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02325{font-family:ff1_c02325;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02325;src:url('chunks/assets/font_3fe40ed8a92461c09efe7cdd.woff2')format("woff");}.ff2_c02325{font-family:ff2_c02325;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02325;src:url('chunks/assets/font_9b8d09c744cefcce21bbbd5b.woff2')format("woff");}.ff3_c02325{font-family:ff3_c02325;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02325{vertical-align:0.000000px;}
.v2_c02325{vertical-align:1.439424px;}
.v3_c02325{vertical-align:5.759424px;}
.v1_c02325{vertical-align:7.199280px;}
.ls8_c02325{letter-spacing:-0.574992px;}
.ls9_c02325{letter-spacing:-0.361152px;}
.lsf_c02325{letter-spacing:-0.275616px;}
.lsd_c02325{letter-spacing:-0.261360px;}
.ls6_c02325{letter-spacing:-0.242352px;}
.ls3_c02325{letter-spacing:-0.118800px;}
.ls12_c02325{letter-spacing:0.000000px;}
.ls0_c02325{letter-spacing:0.006048px;}
.lsc_c02325{letter-spacing:0.028512px;}
.ls5_c02325{letter-spacing:0.128304px;}
.lsb_c02325{letter-spacing:0.508464px;}
.ls11_c02325{letter-spacing:0.514080px;}
.lse_c02325{letter-spacing:0.536976px;}
.lsa_c02325{letter-spacing:0.579744px;}
.ls10_c02325{letter-spacing:0.594000px;}
.ls7_c02325{letter-spacing:0.598752px;}
.ls1_c02325{letter-spacing:0.613008px;}
.ls4_c02325{letter-spacing:0.717552px;}
.ls2_c02325{letter-spacing:0.722304px;}
.sc__c02325{text-shadow:none;}
.sc0_c02325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02325{-webkit-text-stroke:0px transparent;}
.sc0_c02325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02325{word-spacing:-15.126048px;}
.ws2_c02325{word-spacing:-12.602304px;}
.wsa_c02325{word-spacing:-12.474000px;}
.ws8_c02325{word-spacing:-12.459744px;}
.ws9_c02325{word-spacing:-12.416976px;}
.ws13_c02325{word-spacing:-2.159136px;}
.wsd_c02325{word-spacing:-0.974160px;}
.ws10_c02325{word-spacing:-0.389664px;}
.wsf_c02325{word-spacing:-0.118800px;}
.ws11_c02325{word-spacing:-0.099792px;}
.ws12_c02325{word-spacing:-0.085536px;}
.wse_c02325{word-spacing:0.000000px;}
.ws4_c02325{word-spacing:4.951584px;}
.wsb_c02325{word-spacing:33.300288px;}
.ws6_c02325{word-spacing:36.742464px;}
.ws1_c02325{word-spacing:37.759392px;}
.ws0_c02325{word-spacing:38.020752px;}
.ws3_c02325{word-spacing:39.218256px;}
.ws5_c02325{word-spacing:39.902544px;}
.ws7_c02325{word-spacing:42.026688px;}
._0_c02325{margin-left:-1.948320px;}
._2_c02325{width:1.482624px;}
._4_c02325{width:14.707872px;}
._1_c02325{width:50.252400px;}
._3_c02325{width:51.530688px;}
.fc0_c02325{color:rgb(0,0,0);}
.fs0_c02325{font-size:47.520000px;}
.fs1_c02325{font-size:60.480000px;}
.y0_c02325{bottom:0.000000px;}
.y19_c02325{bottom:146.998362px;}
.y1b_c02325{bottom:186.600234px;}
.y1a_c02325{bottom:196.320450px;}
.y18_c02325{bottom:275.878542px;}
.y17_c02325{bottom:356.878758px;}
.y15_c02325{bottom:406.559730px;}
.y11_c02325{bottom:424.560306px;}
.y16_c02325{bottom:458.759262px;}
.y14_c02325{bottom:491.879514px;}
.y13_c02325{bottom:509.880090px;}
.y10_c02325{bottom:543.000342px;}
.y12_c02325{bottom:559.559874px;}
.yf_c02325{bottom:577.560450px;}
.y1c_c02325{bottom:614.280450px;}
.yb_c02325{bottom:667.558326px;}
.yd_c02325{bottom:707.160234px;}
.yc_c02325{bottom:716.880450px;}
.ya_c02325{bottom:796.438506px;}
.y9_c02325{bottom:877.438722px;}
.y7_c02325{bottom:926.759730px;}
.y3_c02325{bottom:944.760306px;}
.y8_c02325{bottom:979.319226px;}
.y6_c02325{bottom:1012.439478px;}
.y5_c02325{bottom:1030.440054px;}
.y2_c02325{bottom:1063.560306px;}
.y4_c02325{bottom:1079.759874px;}
.y1_c02325{bottom:1097.760450px;}
.ye_c02325{bottom:1134.840450px;}
.h4_c02325{height:32.530781px;}
.h1_c02325{height:41.696016px;}
.h2_c02325{height:41.812031px;}
.h6_c02325{height:47.571455px;}
.h3_c02325{height:49.011311px;}
.h5_c02325{height:54.654737px;}
.h0_c02325{height:1263.000000px;}
.w1_c02325{width:892.500000px;}
.w0_c02325{width:892.830000px;}
.x0_c02325{left:0.000000px;}
.xd_c02325{left:117.000000px;}
.x8_c02325{left:440.999856px;}
.x4_c02325{left:445.680576px;}
.xb_c02325{left:451.080000px;}
.x7_c02325{left:455.399604px;}
.x5_c02325{left:461.880144px;}
.x1_c02325{left:463.320000px;}
.xa_c02325{left:483.480360px;}
.x9_c02325{left:492.119496px;}
.x6_c02325{left:493.200576px;}
.xc_c02325{left:506.880360px;}
.x3_c02325{left:511.919892px;}
.x2_c02325{left:526.679604px;}
@media print{
.v0_c02325{vertical-align:0.000000pt;}
.v2_c02325{vertical-align:1.279488pt;}
.v3_c02325{vertical-align:5.119488pt;}
.v1_c02325{vertical-align:6.399360pt;}
.ls8_c02325{letter-spacing:-0.511104pt;}
.ls9_c02325{letter-spacing:-0.321024pt;}
.lsf_c02325{letter-spacing:-0.244992pt;}
.lsd_c02325{letter-spacing:-0.232320pt;}
.ls6_c02325{letter-spacing:-0.215424pt;}
.ls3_c02325{letter-spacing:-0.105600pt;}
.ls12_c02325{letter-spacing:0.000000pt;}
.ls0_c02325{letter-spacing:0.005376pt;}
.lsc_c02325{letter-spacing:0.025344pt;}
.ls5_c02325{letter-spacing:0.114048pt;}
.lsb_c02325{letter-spacing:0.451968pt;}
.ls11_c02325{letter-spacing:0.456960pt;}
.lse_c02325{letter-spacing:0.477312pt;}
.lsa_c02325{letter-spacing:0.515328pt;}
.ls10_c02325{letter-spacing:0.528000pt;}
.ls7_c02325{letter-spacing:0.532224pt;}
.ls1_c02325{letter-spacing:0.544896pt;}
.ls4_c02325{letter-spacing:0.637824pt;}
.ls2_c02325{letter-spacing:0.642048pt;}
.wsc_c02325{word-spacing:-13.445376pt;}
.ws2_c02325{word-spacing:-11.202048pt;}
.wsa_c02325{word-spacing:-11.088000pt;}
.ws8_c02325{word-spacing:-11.075328pt;}
.ws9_c02325{word-spacing:-11.037312pt;}
.ws13_c02325{word-spacing:-1.919232pt;}
.wsd_c02325{word-spacing:-0.865920pt;}
.ws10_c02325{word-spacing:-0.346368pt;}
.wsf_c02325{word-spacing:-0.105600pt;}
.ws11_c02325{word-spacing:-0.088704pt;}
.ws12_c02325{word-spacing:-0.076032pt;}
.wse_c02325{word-spacing:0.000000pt;}
.ws4_c02325{word-spacing:4.401408pt;}
.wsb_c02325{word-spacing:29.600256pt;}
.ws6_c02325{word-spacing:32.659968pt;}
.ws1_c02325{word-spacing:33.563904pt;}
.ws0_c02325{word-spacing:33.796224pt;}
.ws3_c02325{word-spacing:34.860672pt;}
.ws5_c02325{word-spacing:35.468928pt;}
.ws7_c02325{word-spacing:37.357056pt;}
._0_c02325{margin-left:-1.731840pt;}
._2_c02325{width:1.317888pt;}
._4_c02325{width:13.073664pt;}
._1_c02325{width:44.668800pt;}
._3_c02325{width:45.805056pt;}
.fs0_c02325{font-size:42.240000pt;}
.fs1_c02325{font-size:53.760000pt;}
.y0_c02325{bottom:0.000000pt;}
.y19_c02325{bottom:130.665211pt;}
.y1b_c02325{bottom:165.866875pt;}
.y1a_c02325{bottom:174.507067pt;}
.y18_c02325{bottom:245.225371pt;}
.y17_c02325{bottom:317.225563pt;}
.y15_c02325{bottom:361.386427pt;}
.y11_c02325{bottom:377.386939pt;}
.y16_c02325{bottom:407.786011pt;}
.y14_c02325{bottom:437.226235pt;}
.y13_c02325{bottom:453.226747pt;}
.y10_c02325{bottom:482.666971pt;}
.y12_c02325{bottom:497.386555pt;}
.yf_c02325{bottom:513.387067pt;}
.y1c_c02325{bottom:546.027067pt;}
.yb_c02325{bottom:593.385179pt;}
.yd_c02325{bottom:628.586875pt;}
.yc_c02325{bottom:637.227067pt;}
.ya_c02325{bottom:707.945339pt;}
.y9_c02325{bottom:779.945531pt;}
.y7_c02325{bottom:823.786427pt;}
.y3_c02325{bottom:839.786939pt;}
.y8_c02325{bottom:870.505979pt;}
.y6_c02325{bottom:899.946203pt;}
.y5_c02325{bottom:915.946715pt;}
.y2_c02325{bottom:945.386939pt;}
.y4_c02325{bottom:959.786555pt;}
.y1_c02325{bottom:975.787067pt;}
.ye_c02325{bottom:1008.747067pt;}
.h4_c02325{height:28.916250pt;}
.h1_c02325{height:37.063125pt;}
.h2_c02325{height:37.166250pt;}
.h6_c02325{height:42.285738pt;}
.h3_c02325{height:43.565610pt;}
.h5_c02325{height:48.581988pt;}
.h0_c02325{height:1122.666667pt;}
.w1_c02325{width:793.333333pt;}
.w0_c02325{width:793.626667pt;}
.x0_c02325{left:0.000000pt;}
.xd_c02325{left:104.000000pt;}
.x8_c02325{left:391.999872pt;}
.x4_c02325{left:396.160512pt;}
.xb_c02325{left:400.960000pt;}
.x7_c02325{left:404.799648pt;}
.x5_c02325{left:410.560128pt;}
.x1_c02325{left:411.840000pt;}
.xa_c02325{left:429.760320pt;}
.x9_c02325{left:437.439552pt;}
.x6_c02325{left:438.400512pt;}
.xc_c02325{left:450.560320pt;}
.x3_c02325{left:455.039904pt;}
.x2_c02325{left:468.159648pt;}
}





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

.ir_c02326:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02326{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02326;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02326{font-family:ff1_c02326;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02326;src:url('chunks/assets/font_1cfc5d87dba136b0bf2a8455.woff2')format("woff");}.ff2_c02326{font-family:ff2_c02326;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02326;src:url('chunks/assets/font_9b8d09c744cefcce21bbbd5b.woff2')format("woff");}.ff3_c02326{font-family:ff3_c02326;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02326{vertical-align:0.000000px;}
.v2_c02326{vertical-align:1.439424px;}
.v1_c02326{vertical-align:7.199280px;}
.ls16_c02326{letter-spacing:-0.793584px;}
.ls15_c02326{letter-spacing:-0.774576px;}
.ls18_c02326{letter-spacing:-0.736560px;}
.ls9_c02326{letter-spacing:-0.574992px;}
.lsa_c02326{letter-spacing:-0.361152px;}
.ls10_c02326{letter-spacing:-0.275616px;}
.ls19_c02326{letter-spacing:-0.270864px;}
.ls14_c02326{letter-spacing:-0.266112px;}
.lse_c02326{letter-spacing:-0.261360px;}
.ls7_c02326{letter-spacing:-0.242352px;}
.ls4_c02326{letter-spacing:-0.118800px;}
.ls13_c02326{letter-spacing:0.000000px;}
.ls0_c02326{letter-spacing:0.006048px;}
.lsd_c02326{letter-spacing:0.028512px;}
.ls6_c02326{letter-spacing:0.128304px;}
.lsc_c02326{letter-spacing:0.508464px;}
.ls12_c02326{letter-spacing:0.514080px;}
.lsf_c02326{letter-spacing:0.536976px;}
.lsb_c02326{letter-spacing:0.579744px;}
.ls11_c02326{letter-spacing:0.594000px;}
.ls8_c02326{letter-spacing:0.598752px;}
.ls2_c02326{letter-spacing:0.613008px;}
.ls1_c02326{letter-spacing:0.651024px;}
.ls17_c02326{letter-spacing:0.684288px;}
.ls5_c02326{letter-spacing:0.717552px;}
.ls3_c02326{letter-spacing:0.722304px;}
.sc__c02326{text-shadow:none;}
.sc0_c02326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02326{-webkit-text-stroke:0px transparent;}
.sc0_c02326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02326{word-spacing:-15.126048px;}
.ws2_c02326{word-spacing:-12.602304px;}
.wsa_c02326{word-spacing:-12.474000px;}
.ws8_c02326{word-spacing:-12.459744px;}
.ws9_c02326{word-spacing:-12.416976px;}
.wse_c02326{word-spacing:-11.105424px;}
.ws18_c02326{word-spacing:-2.159136px;}
.ws1c_c02326{word-spacing:-1.045440px;}
.ws19_c02326{word-spacing:-1.012176px;}
.ws12_c02326{word-spacing:-0.974160px;}
.ws15_c02326{word-spacing:-0.389664px;}
.ws14_c02326{word-spacing:-0.118800px;}
.ws16_c02326{word-spacing:-0.099792px;}
.ws1a_c02326{word-spacing:-0.095040px;}
.ws1d_c02326{word-spacing:-0.090288px;}
.ws17_c02326{word-spacing:-0.085536px;}
.ws13_c02326{word-spacing:0.000000px;}
.ws1b_c02326{word-spacing:0.432432px;}
.wsd_c02326{word-spacing:1.330560px;}
.ws4_c02326{word-spacing:4.951584px;}
.ws11_c02326{word-spacing:6.629040px;}
.wsb_c02326{word-spacing:33.300288px;}
.ws10_c02326{word-spacing:34.836912px;}
.wsf_c02326{word-spacing:36.143712px;}
.ws6_c02326{word-spacing:36.742464px;}
.ws1_c02326{word-spacing:37.759392px;}
.ws0_c02326{word-spacing:38.020752px;}
.ws3_c02326{word-spacing:39.218256px;}
.ws5_c02326{word-spacing:39.902544px;}
.ws7_c02326{word-spacing:42.026688px;}
._0_c02326{margin-left:-1.948320px;}
._2_c02326{width:1.482624px;}
._5_c02326{width:4.999104px;}
._4_c02326{width:14.707872px;}
._7_c02326{width:19.982160px;}
._8_c02326{width:23.451120px;}
._6_c02326{width:24.691392px;}
._1_c02326{width:50.252400px;}
._3_c02326{width:51.530688px;}
.fc0_c02326{color:rgb(0,0,0);}
.fs0_c02326{font-size:47.520000px;}
.fs1_c02326{font-size:60.480000px;}
.y0_c02326{bottom:0.000000px;}
.y1a_c02326{bottom:131.878686px;}
.y19_c02326{bottom:146.998362px;}
.y1c_c02326{bottom:186.600234px;}
.y1b_c02326{bottom:196.320450px;}
.y18_c02326{bottom:275.878542px;}
.y17_c02326{bottom:356.878758px;}
.y15_c02326{bottom:406.559730px;}
.y11_c02326{bottom:424.560306px;}
.y16_c02326{bottom:458.759262px;}
.y14_c02326{bottom:491.879514px;}
.y13_c02326{bottom:509.880090px;}
.y10_c02326{bottom:543.000342px;}
.y12_c02326{bottom:559.559874px;}
.yf_c02326{bottom:577.560450px;}
.y1d_c02326{bottom:614.280450px;}
.yb_c02326{bottom:667.558326px;}
.yd_c02326{bottom:707.160234px;}
.yc_c02326{bottom:716.880450px;}
.ya_c02326{bottom:796.438506px;}
.y9_c02326{bottom:877.438722px;}
.y7_c02326{bottom:926.759730px;}
.y3_c02326{bottom:944.760306px;}
.y8_c02326{bottom:979.319226px;}
.y6_c02326{bottom:1012.439478px;}
.y5_c02326{bottom:1030.440054px;}
.y2_c02326{bottom:1063.560306px;}
.y4_c02326{bottom:1079.759874px;}
.y1_c02326{bottom:1097.760450px;}
.ye_c02326{bottom:1134.840450px;}
.h4_c02326{height:32.530781px;}
.h1_c02326{height:41.696016px;}
.h2_c02326{height:41.812031px;}
.h3_c02326{height:49.011311px;}
.h5_c02326{height:54.654737px;}
.h0_c02326{height:1263.000000px;}
.w1_c02326{width:892.500000px;}
.w0_c02326{width:892.830000px;}
.x0_c02326{left:0.000000px;}
.xd_c02326{left:117.000000px;}
.x8_c02326{left:440.999856px;}
.x4_c02326{left:445.680576px;}
.xb_c02326{left:451.080000px;}
.x7_c02326{left:455.399604px;}
.x5_c02326{left:461.880144px;}
.x1_c02326{left:463.320000px;}
.xa_c02326{left:483.480360px;}
.x9_c02326{left:492.119496px;}
.x6_c02326{left:493.200576px;}
.xc_c02326{left:506.880360px;}
.x3_c02326{left:511.919892px;}
.x2_c02326{left:526.679604px;}
.xe_c02326{left:569.880036px;}
@media print{
.v0_c02326{vertical-align:0.000000pt;}
.v2_c02326{vertical-align:1.279488pt;}
.v1_c02326{vertical-align:6.399360pt;}
.ls16_c02326{letter-spacing:-0.705408pt;}
.ls15_c02326{letter-spacing:-0.688512pt;}
.ls18_c02326{letter-spacing:-0.654720pt;}
.ls9_c02326{letter-spacing:-0.511104pt;}
.lsa_c02326{letter-spacing:-0.321024pt;}
.ls10_c02326{letter-spacing:-0.244992pt;}
.ls19_c02326{letter-spacing:-0.240768pt;}
.ls14_c02326{letter-spacing:-0.236544pt;}
.lse_c02326{letter-spacing:-0.232320pt;}
.ls7_c02326{letter-spacing:-0.215424pt;}
.ls4_c02326{letter-spacing:-0.105600pt;}
.ls13_c02326{letter-spacing:0.000000pt;}
.ls0_c02326{letter-spacing:0.005376pt;}
.lsd_c02326{letter-spacing:0.025344pt;}
.ls6_c02326{letter-spacing:0.114048pt;}
.lsc_c02326{letter-spacing:0.451968pt;}
.ls12_c02326{letter-spacing:0.456960pt;}
.lsf_c02326{letter-spacing:0.477312pt;}
.lsb_c02326{letter-spacing:0.515328pt;}
.ls11_c02326{letter-spacing:0.528000pt;}
.ls8_c02326{letter-spacing:0.532224pt;}
.ls2_c02326{letter-spacing:0.544896pt;}
.ls1_c02326{letter-spacing:0.578688pt;}
.ls17_c02326{letter-spacing:0.608256pt;}
.ls5_c02326{letter-spacing:0.637824pt;}
.ls3_c02326{letter-spacing:0.642048pt;}
.wsc_c02326{word-spacing:-13.445376pt;}
.ws2_c02326{word-spacing:-11.202048pt;}
.wsa_c02326{word-spacing:-11.088000pt;}
.ws8_c02326{word-spacing:-11.075328pt;}
.ws9_c02326{word-spacing:-11.037312pt;}
.wse_c02326{word-spacing:-9.871488pt;}
.ws18_c02326{word-spacing:-1.919232pt;}
.ws1c_c02326{word-spacing:-0.929280pt;}
.ws19_c02326{word-spacing:-0.899712pt;}
.ws12_c02326{word-spacing:-0.865920pt;}
.ws15_c02326{word-spacing:-0.346368pt;}
.ws14_c02326{word-spacing:-0.105600pt;}
.ws16_c02326{word-spacing:-0.088704pt;}
.ws1a_c02326{word-spacing:-0.084480pt;}
.ws1d_c02326{word-spacing:-0.080256pt;}
.ws17_c02326{word-spacing:-0.076032pt;}
.ws13_c02326{word-spacing:0.000000pt;}
.ws1b_c02326{word-spacing:0.384384pt;}
.wsd_c02326{word-spacing:1.182720pt;}
.ws4_c02326{word-spacing:4.401408pt;}
.ws11_c02326{word-spacing:5.892480pt;}
.wsb_c02326{word-spacing:29.600256pt;}
.ws10_c02326{word-spacing:30.966144pt;}
.wsf_c02326{word-spacing:32.127744pt;}
.ws6_c02326{word-spacing:32.659968pt;}
.ws1_c02326{word-spacing:33.563904pt;}
.ws0_c02326{word-spacing:33.796224pt;}
.ws3_c02326{word-spacing:34.860672pt;}
.ws5_c02326{word-spacing:35.468928pt;}
.ws7_c02326{word-spacing:37.357056pt;}
._0_c02326{margin-left:-1.731840pt;}
._2_c02326{width:1.317888pt;}
._5_c02326{width:4.443648pt;}
._4_c02326{width:13.073664pt;}
._7_c02326{width:17.761920pt;}
._8_c02326{width:20.845440pt;}
._6_c02326{width:21.947904pt;}
._1_c02326{width:44.668800pt;}
._3_c02326{width:45.805056pt;}
.fs0_c02326{font-size:42.240000pt;}
.fs1_c02326{font-size:53.760000pt;}
.y0_c02326{bottom:0.000000pt;}
.y1a_c02326{bottom:117.225499pt;}
.y19_c02326{bottom:130.665211pt;}
.y1c_c02326{bottom:165.866875pt;}
.y1b_c02326{bottom:174.507067pt;}
.y18_c02326{bottom:245.225371pt;}
.y17_c02326{bottom:317.225563pt;}
.y15_c02326{bottom:361.386427pt;}
.y11_c02326{bottom:377.386939pt;}
.y16_c02326{bottom:407.786011pt;}
.y14_c02326{bottom:437.226235pt;}
.y13_c02326{bottom:453.226747pt;}
.y10_c02326{bottom:482.666971pt;}
.y12_c02326{bottom:497.386555pt;}
.yf_c02326{bottom:513.387067pt;}
.y1d_c02326{bottom:546.027067pt;}
.yb_c02326{bottom:593.385179pt;}
.yd_c02326{bottom:628.586875pt;}
.yc_c02326{bottom:637.227067pt;}
.ya_c02326{bottom:707.945339pt;}
.y9_c02326{bottom:779.945531pt;}
.y7_c02326{bottom:823.786427pt;}
.y3_c02326{bottom:839.786939pt;}
.y8_c02326{bottom:870.505979pt;}
.y6_c02326{bottom:899.946203pt;}
.y5_c02326{bottom:915.946715pt;}
.y2_c02326{bottom:945.386939pt;}
.y4_c02326{bottom:959.786555pt;}
.y1_c02326{bottom:975.787067pt;}
.ye_c02326{bottom:1008.747067pt;}
.h4_c02326{height:28.916250pt;}
.h1_c02326{height:37.063125pt;}
.h2_c02326{height:37.166250pt;}
.h3_c02326{height:43.565610pt;}
.h5_c02326{height:48.581988pt;}
.h0_c02326{height:1122.666667pt;}
.w1_c02326{width:793.333333pt;}
.w0_c02326{width:793.626667pt;}
.x0_c02326{left:0.000000pt;}
.xd_c02326{left:104.000000pt;}
.x8_c02326{left:391.999872pt;}
.x4_c02326{left:396.160512pt;}
.xb_c02326{left:400.960000pt;}
.x7_c02326{left:404.799648pt;}
.x5_c02326{left:410.560128pt;}
.x1_c02326{left:411.840000pt;}
.xa_c02326{left:429.760320pt;}
.x9_c02326{left:437.439552pt;}
.x6_c02326{left:438.400512pt;}
.xc_c02326{left:450.560320pt;}
.x3_c02326{left:455.039904pt;}
.x2_c02326{left:468.159648pt;}
.xe_c02326{left:506.560032pt;}
}





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

.ir_c02327:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02327{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02327;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02327{font-family:ff1_c02327;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02327;src:url('chunks/assets/font_02a961bd4ac564e8db142c62.woff2')format("woff");}.ff2_c02327{font-family:ff2_c02327;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02327;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02327{font-family:ff3_c02327;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02327{vertical-align:0.000000px;}
.v1_c02327{vertical-align:1.439424px;}
.lse_c02327{letter-spacing:-0.793584px;}
.lsb_c02327{letter-spacing:-0.774576px;}
.ls12_c02327{letter-spacing:-0.736560px;}
.lsa_c02327{letter-spacing:-0.574992px;}
.ls13_c02327{letter-spacing:-0.270864px;}
.ls9_c02327{letter-spacing:-0.266112px;}
.ls10_c02327{letter-spacing:-0.261360px;}
.ls7_c02327{letter-spacing:-0.242352px;}
.ls4_c02327{letter-spacing:-0.118800px;}
.ls16_c02327{letter-spacing:0.000000px;}
.ls1_c02327{letter-spacing:0.006048px;}
.ls6_c02327{letter-spacing:0.128304px;}
.lsd_c02327{letter-spacing:0.508464px;}
.ls15_c02327{letter-spacing:0.514080px;}
.ls11_c02327{letter-spacing:0.536976px;}
.lsc_c02327{letter-spacing:0.579744px;}
.ls14_c02327{letter-spacing:0.594000px;}
.ls8_c02327{letter-spacing:0.598752px;}
.ls2_c02327{letter-spacing:0.613008px;}
.ls0_c02327{letter-spacing:0.651024px;}
.lsf_c02327{letter-spacing:0.684288px;}
.ls5_c02327{letter-spacing:0.717552px;}
.ls3_c02327{letter-spacing:0.722304px;}
.sc__c02327{text-shadow:none;}
.sc0_c02327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02327{-webkit-text-stroke:0px transparent;}
.sc0_c02327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02327{word-spacing:-15.126048px;}
.wsb_c02327{word-spacing:-12.474000px;}
.ws6_c02327{word-spacing:-12.459744px;}
.ws5_c02327{word-spacing:-11.105424px;}
.ws18_c02327{word-spacing:-2.159136px;}
.ws14_c02327{word-spacing:-1.045440px;}
.ws10_c02327{word-spacing:-1.012176px;}
.wse_c02327{word-spacing:-0.974160px;}
.ws11_c02327{word-spacing:-0.118800px;}
.ws15_c02327{word-spacing:-0.099792px;}
.ws12_c02327{word-spacing:-0.095040px;}
.ws16_c02327{word-spacing:-0.090288px;}
.ws17_c02327{word-spacing:-0.085536px;}
.wsf_c02327{word-spacing:0.000000px;}
.ws13_c02327{word-spacing:0.432432px;}
.ws2_c02327{word-spacing:1.330560px;}
.wsa_c02327{word-spacing:6.629040px;}
.wsc_c02327{word-spacing:33.300288px;}
.ws9_c02327{word-spacing:34.836912px;}
.ws8_c02327{word-spacing:36.143712px;}
.ws1_c02327{word-spacing:37.759392px;}
.ws0_c02327{word-spacing:38.020752px;}
.ws3_c02327{word-spacing:39.218256px;}
.ws4_c02327{word-spacing:39.902544px;}
.ws7_c02327{word-spacing:42.026688px;}
._0_c02327{margin-left:-1.948320px;}
._2_c02327{width:1.482624px;}
._4_c02327{width:4.999104px;}
._8_c02327{width:14.707872px;}
._6_c02327{width:19.982160px;}
._7_c02327{width:23.451120px;}
._5_c02327{width:24.691392px;}
._1_c02327{width:50.252400px;}
._3_c02327{width:51.530688px;}
.fc0_c02327{color:rgb(0,0,0);}
.fs0_c02327{font-size:47.520000px;}
.fs1_c02327{font-size:60.480000px;}
.y0_c02327{bottom:0.000000px;}
.y1b_c02327{bottom:131.878686px;}
.y1a_c02327{bottom:146.998362px;}
.y1d_c02327{bottom:186.600234px;}
.y1c_c02327{bottom:196.320450px;}
.y19_c02327{bottom:275.878542px;}
.y18_c02327{bottom:356.878758px;}
.y16_c02327{bottom:406.559730px;}
.y12_c02327{bottom:424.560306px;}
.y17_c02327{bottom:458.759262px;}
.y15_c02327{bottom:491.879514px;}
.y14_c02327{bottom:509.880090px;}
.y11_c02327{bottom:543.000342px;}
.y13_c02327{bottom:559.559874px;}
.y10_c02327{bottom:577.560450px;}
.y1e_c02327{bottom:614.280450px;}
.yc_c02327{bottom:652.438650px;}
.yb_c02327{bottom:667.558326px;}
.ye_c02327{bottom:707.160234px;}
.yd_c02327{bottom:716.880450px;}
.ya_c02327{bottom:796.438506px;}
.y9_c02327{bottom:877.438722px;}
.y7_c02327{bottom:926.759730px;}
.y3_c02327{bottom:944.760306px;}
.y8_c02327{bottom:979.319226px;}
.y6_c02327{bottom:1012.439478px;}
.y5_c02327{bottom:1030.440054px;}
.y2_c02327{bottom:1063.560306px;}
.y4_c02327{bottom:1079.759874px;}
.y1_c02327{bottom:1097.760450px;}
.yf_c02327{bottom:1134.840450px;}
.h3_c02327{height:32.530781px;}
.h1_c02327{height:41.696016px;}
.h2_c02327{height:41.812031px;}
.h4_c02327{height:54.654737px;}
.h0_c02327{height:1263.000000px;}
.w1_c02327{width:892.500000px;}
.w0_c02327{width:892.830000px;}
.x0_c02327{left:0.000000px;}
.xe_c02327{left:117.000000px;}
.x8_c02327{left:440.999856px;}
.x4_c02327{left:445.680576px;}
.xc_c02327{left:451.080000px;}
.x7_c02327{left:455.399604px;}
.x5_c02327{left:461.880144px;}
.x1_c02327{left:463.320000px;}
.xa_c02327{left:483.480360px;}
.x9_c02327{left:492.119496px;}
.x6_c02327{left:493.200576px;}
.xd_c02327{left:506.880360px;}
.x3_c02327{left:511.919892px;}
.x2_c02327{left:526.679604px;}
.xb_c02327{left:569.880036px;}
@media print{
.v0_c02327{vertical-align:0.000000pt;}
.v1_c02327{vertical-align:1.279488pt;}
.lse_c02327{letter-spacing:-0.705408pt;}
.lsb_c02327{letter-spacing:-0.688512pt;}
.ls12_c02327{letter-spacing:-0.654720pt;}
.lsa_c02327{letter-spacing:-0.511104pt;}
.ls13_c02327{letter-spacing:-0.240768pt;}
.ls9_c02327{letter-spacing:-0.236544pt;}
.ls10_c02327{letter-spacing:-0.232320pt;}
.ls7_c02327{letter-spacing:-0.215424pt;}
.ls4_c02327{letter-spacing:-0.105600pt;}
.ls16_c02327{letter-spacing:0.000000pt;}
.ls1_c02327{letter-spacing:0.005376pt;}
.ls6_c02327{letter-spacing:0.114048pt;}
.lsd_c02327{letter-spacing:0.451968pt;}
.ls15_c02327{letter-spacing:0.456960pt;}
.ls11_c02327{letter-spacing:0.477312pt;}
.lsc_c02327{letter-spacing:0.515328pt;}
.ls14_c02327{letter-spacing:0.528000pt;}
.ls8_c02327{letter-spacing:0.532224pt;}
.ls2_c02327{letter-spacing:0.544896pt;}
.ls0_c02327{letter-spacing:0.578688pt;}
.lsf_c02327{letter-spacing:0.608256pt;}
.ls5_c02327{letter-spacing:0.637824pt;}
.ls3_c02327{letter-spacing:0.642048pt;}
.wsd_c02327{word-spacing:-13.445376pt;}
.wsb_c02327{word-spacing:-11.088000pt;}
.ws6_c02327{word-spacing:-11.075328pt;}
.ws5_c02327{word-spacing:-9.871488pt;}
.ws18_c02327{word-spacing:-1.919232pt;}
.ws14_c02327{word-spacing:-0.929280pt;}
.ws10_c02327{word-spacing:-0.899712pt;}
.wse_c02327{word-spacing:-0.865920pt;}
.ws11_c02327{word-spacing:-0.105600pt;}
.ws15_c02327{word-spacing:-0.088704pt;}
.ws12_c02327{word-spacing:-0.084480pt;}
.ws16_c02327{word-spacing:-0.080256pt;}
.ws17_c02327{word-spacing:-0.076032pt;}
.wsf_c02327{word-spacing:0.000000pt;}
.ws13_c02327{word-spacing:0.384384pt;}
.ws2_c02327{word-spacing:1.182720pt;}
.wsa_c02327{word-spacing:5.892480pt;}
.wsc_c02327{word-spacing:29.600256pt;}
.ws9_c02327{word-spacing:30.966144pt;}
.ws8_c02327{word-spacing:32.127744pt;}
.ws1_c02327{word-spacing:33.563904pt;}
.ws0_c02327{word-spacing:33.796224pt;}
.ws3_c02327{word-spacing:34.860672pt;}
.ws4_c02327{word-spacing:35.468928pt;}
.ws7_c02327{word-spacing:37.357056pt;}
._0_c02327{margin-left:-1.731840pt;}
._2_c02327{width:1.317888pt;}
._4_c02327{width:4.443648pt;}
._8_c02327{width:13.073664pt;}
._6_c02327{width:17.761920pt;}
._7_c02327{width:20.845440pt;}
._5_c02327{width:21.947904pt;}
._1_c02327{width:44.668800pt;}
._3_c02327{width:45.805056pt;}
.fs0_c02327{font-size:42.240000pt;}
.fs1_c02327{font-size:53.760000pt;}
.y0_c02327{bottom:0.000000pt;}
.y1b_c02327{bottom:117.225499pt;}
.y1a_c02327{bottom:130.665211pt;}
.y1d_c02327{bottom:165.866875pt;}
.y1c_c02327{bottom:174.507067pt;}
.y19_c02327{bottom:245.225371pt;}
.y18_c02327{bottom:317.225563pt;}
.y16_c02327{bottom:361.386427pt;}
.y12_c02327{bottom:377.386939pt;}
.y17_c02327{bottom:407.786011pt;}
.y15_c02327{bottom:437.226235pt;}
.y14_c02327{bottom:453.226747pt;}
.y11_c02327{bottom:482.666971pt;}
.y13_c02327{bottom:497.386555pt;}
.y10_c02327{bottom:513.387067pt;}
.y1e_c02327{bottom:546.027067pt;}
.yc_c02327{bottom:579.945467pt;}
.yb_c02327{bottom:593.385179pt;}
.ye_c02327{bottom:628.586875pt;}
.yd_c02327{bottom:637.227067pt;}
.ya_c02327{bottom:707.945339pt;}
.y9_c02327{bottom:779.945531pt;}
.y7_c02327{bottom:823.786427pt;}
.y3_c02327{bottom:839.786939pt;}
.y8_c02327{bottom:870.505979pt;}
.y6_c02327{bottom:899.946203pt;}
.y5_c02327{bottom:915.946715pt;}
.y2_c02327{bottom:945.386939pt;}
.y4_c02327{bottom:959.786555pt;}
.y1_c02327{bottom:975.787067pt;}
.yf_c02327{bottom:1008.747067pt;}
.h3_c02327{height:28.916250pt;}
.h1_c02327{height:37.063125pt;}
.h2_c02327{height:37.166250pt;}
.h4_c02327{height:48.581988pt;}
.h0_c02327{height:1122.666667pt;}
.w1_c02327{width:793.333333pt;}
.w0_c02327{width:793.626667pt;}
.x0_c02327{left:0.000000pt;}
.xe_c02327{left:104.000000pt;}
.x8_c02327{left:391.999872pt;}
.x4_c02327{left:396.160512pt;}
.xc_c02327{left:400.960000pt;}
.x7_c02327{left:404.799648pt;}
.x5_c02327{left:410.560128pt;}
.x1_c02327{left:411.840000pt;}
.xa_c02327{left:429.760320pt;}
.x9_c02327{left:437.439552pt;}
.x6_c02327{left:438.400512pt;}
.xd_c02327{left:450.560320pt;}
.x3_c02327{left:455.039904pt;}
.x2_c02327{left:468.159648pt;}
.xb_c02327{left:506.560032pt;}
}





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

.ir_c02328:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02328{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02328;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02328{font-family:ff1_c02328;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02328;src:url('chunks/assets/font_3ed68398358068a3622a4bae.woff2')format("woff");}.ff2_c02328{font-family:ff2_c02328;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02328;src:url('chunks/assets/font_7f5a1882d88db7fbfac658fd.woff2')format("woff");}.ff3_c02328{font-family:ff3_c02328;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02328{vertical-align:0.000000px;}
.v1_c02328{vertical-align:1.439424px;}
.ls1b_c02328{letter-spacing:-1.202256px;}
.ls15_c02328{letter-spacing:-1.197504px;}
.ls14_c02328{letter-spacing:-0.807840px;}
.lsa_c02328{letter-spacing:-0.574992px;}
.lsb_c02328{letter-spacing:-0.361152px;}
.ls16_c02328{letter-spacing:-0.275616px;}
.ls9_c02328{letter-spacing:-0.266112px;}
.ls11_c02328{letter-spacing:-0.261360px;}
.ls7_c02328{letter-spacing:-0.242352px;}
.ls13_c02328{letter-spacing:-0.237600px;}
.ls5_c02328{letter-spacing:-0.118800px;}
.ls19_c02328{letter-spacing:0.000000px;}
.ls0_c02328{letter-spacing:0.006048px;}
.lsd_c02328{letter-spacing:0.014256px;}
.lsf_c02328{letter-spacing:0.038016px;}
.ls6_c02328{letter-spacing:0.128304px;}
.lse_c02328{letter-spacing:0.508464px;}
.ls18_c02328{letter-spacing:0.514080px;}
.ls12_c02328{letter-spacing:0.536976px;}
.lsc_c02328{letter-spacing:0.579744px;}
.ls17_c02328{letter-spacing:0.594000px;}
.ls8_c02328{letter-spacing:0.598752px;}
.ls4_c02328{letter-spacing:0.613008px;}
.ls1_c02328{letter-spacing:0.651024px;}
.ls10_c02328{letter-spacing:0.684288px;}
.ls1a_c02328{letter-spacing:0.689040px;}
.ls2_c02328{letter-spacing:0.717552px;}
.ls3_c02328{letter-spacing:0.722304px;}
.sc__c02328{text-shadow:none;}
.sc0_c02328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02328{-webkit-text-stroke:0px transparent;}
.sc0_c02328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02328{word-spacing:-15.126048px;}
.wsc_c02328{word-spacing:-12.474000px;}
.ws11_c02328{word-spacing:-12.459744px;}
.ws17_c02328{word-spacing:-12.416976px;}
.ws12_c02328{word-spacing:-12.388464px;}
.wsf_c02328{word-spacing:-11.761200px;}
.ws10_c02328{word-spacing:-11.642400px;}
.ws16_c02328{word-spacing:-11.637648px;}
.wsb_c02328{word-spacing:-10.682496px;}
.ws21_c02328{word-spacing:-2.159136px;}
.ws24_c02328{word-spacing:-1.083456px;}
.ws23_c02328{word-spacing:-1.078704px;}
.ws1e_c02328{word-spacing:-1.045440px;}
.ws22_c02328{word-spacing:-1.012176px;}
.ws18_c02328{word-spacing:-0.974160px;}
.ws1d_c02328{word-spacing:-0.399168px;}
.ws1c_c02328{word-spacing:-0.375408px;}
.ws1a_c02328{word-spacing:-0.118800px;}
.ws1f_c02328{word-spacing:-0.099792px;}
.ws1b_c02328{word-spacing:-0.095040px;}
.ws20_c02328{word-spacing:-0.085536px;}
.ws19_c02328{word-spacing:0.000000px;}
.ws2_c02328{word-spacing:1.330560px;}
.ws15_c02328{word-spacing:4.566672px;}
.ws9_c02328{word-spacing:15.021072px;}
.wsa_c02328{word-spacing:16.375392px;}
.ws14_c02328{word-spacing:17.995824px;}
.ws13_c02328{word-spacing:19.141056px;}
.wsd_c02328{word-spacing:33.300288px;}
.ws8_c02328{word-spacing:34.836912px;}
.ws7_c02328{word-spacing:36.143712px;}
.ws5_c02328{word-spacing:36.742464px;}
.ws1_c02328{word-spacing:37.759392px;}
.ws0_c02328{word-spacing:38.020752px;}
.ws3_c02328{word-spacing:39.218256px;}
.ws4_c02328{word-spacing:39.902544px;}
.ws6_c02328{word-spacing:42.026688px;}
._0_c02328{margin-left:-1.948320px;}
._2_c02328{width:1.482624px;}
._c_c02328{width:2.855952px;}
._4_c02328{width:4.999104px;}
._a_c02328{width:9.546768px;}
._d_c02328{width:12.801888px;}
._9_c02328{width:14.707872px;}
._b_c02328{width:17.264016px;}
._8_c02328{width:25.684560px;}
._5_c02328{width:27.699408px;}
._6_c02328{width:31.225392px;}
._7_c02328{width:34.432992px;}
._1_c02328{width:50.252400px;}
._3_c02328{width:51.530688px;}
.fc0_c02328{color:rgb(0,0,0);}
.fs0_c02328{font-size:47.520000px;}
.fs1_c02328{font-size:60.480000px;}
.y0_c02328{bottom:0.000000px;}
.y14_c02328{bottom:18.000450px;}
.y1f_c02328{bottom:146.998506px;}
.y21_c02328{bottom:186.600234px;}
.y20_c02328{bottom:196.320450px;}
.y1e_c02328{bottom:260.759010px;}
.y1d_c02328{bottom:275.878686px;}
.y1c_c02328{bottom:341.759226px;}
.y1b_c02328{bottom:356.878902px;}
.y19_c02328{bottom:406.559874px;}
.y15_c02328{bottom:424.560450px;}
.y1a_c02328{bottom:458.759406px;}
.y18_c02328{bottom:491.879658px;}
.y17_c02328{bottom:509.880234px;}
.y13_c02328{bottom:525.000000px;}
.y12_c02328{bottom:543.000342px;}
.y16_c02328{bottom:559.560018px;}
.y11_c02328{bottom:577.560450px;}
.y22_c02328{bottom:614.280450px;}
.yd_c02328{bottom:637.318974px;}
.yc_c02328{bottom:652.438650px;}
.yb_c02328{bottom:667.558326px;}
.yf_c02328{bottom:707.160234px;}
.ye_c02328{bottom:716.880450px;}
.ya_c02328{bottom:796.438506px;}
.y9_c02328{bottom:877.438722px;}
.y7_c02328{bottom:926.759730px;}
.y3_c02328{bottom:944.760306px;}
.y8_c02328{bottom:979.319226px;}
.y6_c02328{bottom:1012.439478px;}
.y5_c02328{bottom:1030.440054px;}
.y2_c02328{bottom:1063.560306px;}
.y4_c02328{bottom:1079.759874px;}
.y1_c02328{bottom:1097.760450px;}
.y10_c02328{bottom:1134.840450px;}
.h5_c02328{height:29.160000px;}
.h3_c02328{height:32.530781px;}
.h1_c02328{height:41.696016px;}
.h2_c02328{height:41.812031px;}
.h4_c02328{height:54.654737px;}
.h0_c02328{height:1263.000000px;}
.w2_c02328{width:215.280000px;}
.w1_c02328{width:892.500000px;}
.w0_c02328{width:892.830000px;}
.x0_c02328{left:0.000000px;}
.xe_c02328{left:117.000000px;}
.x8_c02328{left:440.999856px;}
.x4_c02328{left:445.680576px;}
.xc_c02328{left:451.080000px;}
.x7_c02328{left:455.399604px;}
.x5_c02328{left:461.880144px;}
.x1_c02328{left:463.320000px;}
.xa_c02328{left:483.480360px;}
.x9_c02328{left:492.119496px;}
.x6_c02328{left:493.200576px;}
.xd_c02328{left:506.880360px;}
.x3_c02328{left:511.919892px;}
.x2_c02328{left:526.679604px;}
.xb_c02328{left:569.880036px;}
@media print{
.v0_c02328{vertical-align:0.000000pt;}
.v1_c02328{vertical-align:1.279488pt;}
.ls1b_c02328{letter-spacing:-1.068672pt;}
.ls15_c02328{letter-spacing:-1.064448pt;}
.ls14_c02328{letter-spacing:-0.718080pt;}
.lsa_c02328{letter-spacing:-0.511104pt;}
.lsb_c02328{letter-spacing:-0.321024pt;}
.ls16_c02328{letter-spacing:-0.244992pt;}
.ls9_c02328{letter-spacing:-0.236544pt;}
.ls11_c02328{letter-spacing:-0.232320pt;}
.ls7_c02328{letter-spacing:-0.215424pt;}
.ls13_c02328{letter-spacing:-0.211200pt;}
.ls5_c02328{letter-spacing:-0.105600pt;}
.ls19_c02328{letter-spacing:0.000000pt;}
.ls0_c02328{letter-spacing:0.005376pt;}
.lsd_c02328{letter-spacing:0.012672pt;}
.lsf_c02328{letter-spacing:0.033792pt;}
.ls6_c02328{letter-spacing:0.114048pt;}
.lse_c02328{letter-spacing:0.451968pt;}
.ls18_c02328{letter-spacing:0.456960pt;}
.ls12_c02328{letter-spacing:0.477312pt;}
.lsc_c02328{letter-spacing:0.515328pt;}
.ls17_c02328{letter-spacing:0.528000pt;}
.ls8_c02328{letter-spacing:0.532224pt;}
.ls4_c02328{letter-spacing:0.544896pt;}
.ls1_c02328{letter-spacing:0.578688pt;}
.ls10_c02328{letter-spacing:0.608256pt;}
.ls1a_c02328{letter-spacing:0.612480pt;}
.ls2_c02328{letter-spacing:0.637824pt;}
.ls3_c02328{letter-spacing:0.642048pt;}
.wse_c02328{word-spacing:-13.445376pt;}
.wsc_c02328{word-spacing:-11.088000pt;}
.ws11_c02328{word-spacing:-11.075328pt;}
.ws17_c02328{word-spacing:-11.037312pt;}
.ws12_c02328{word-spacing:-11.011968pt;}
.wsf_c02328{word-spacing:-10.454400pt;}
.ws10_c02328{word-spacing:-10.348800pt;}
.ws16_c02328{word-spacing:-10.344576pt;}
.wsb_c02328{word-spacing:-9.495552pt;}
.ws21_c02328{word-spacing:-1.919232pt;}
.ws24_c02328{word-spacing:-0.963072pt;}
.ws23_c02328{word-spacing:-0.958848pt;}
.ws1e_c02328{word-spacing:-0.929280pt;}
.ws22_c02328{word-spacing:-0.899712pt;}
.ws18_c02328{word-spacing:-0.865920pt;}
.ws1d_c02328{word-spacing:-0.354816pt;}
.ws1c_c02328{word-spacing:-0.333696pt;}
.ws1a_c02328{word-spacing:-0.105600pt;}
.ws1f_c02328{word-spacing:-0.088704pt;}
.ws1b_c02328{word-spacing:-0.084480pt;}
.ws20_c02328{word-spacing:-0.076032pt;}
.ws19_c02328{word-spacing:0.000000pt;}
.ws2_c02328{word-spacing:1.182720pt;}
.ws15_c02328{word-spacing:4.059264pt;}
.ws9_c02328{word-spacing:13.352064pt;}
.wsa_c02328{word-spacing:14.555904pt;}
.ws14_c02328{word-spacing:15.996288pt;}
.ws13_c02328{word-spacing:17.014272pt;}
.wsd_c02328{word-spacing:29.600256pt;}
.ws8_c02328{word-spacing:30.966144pt;}
.ws7_c02328{word-spacing:32.127744pt;}
.ws5_c02328{word-spacing:32.659968pt;}
.ws1_c02328{word-spacing:33.563904pt;}
.ws0_c02328{word-spacing:33.796224pt;}
.ws3_c02328{word-spacing:34.860672pt;}
.ws4_c02328{word-spacing:35.468928pt;}
.ws6_c02328{word-spacing:37.357056pt;}
._0_c02328{margin-left:-1.731840pt;}
._2_c02328{width:1.317888pt;}
._c_c02328{width:2.538624pt;}
._4_c02328{width:4.443648pt;}
._a_c02328{width:8.486016pt;}
._d_c02328{width:11.379456pt;}
._9_c02328{width:13.073664pt;}
._b_c02328{width:15.345792pt;}
._8_c02328{width:22.830720pt;}
._5_c02328{width:24.621696pt;}
._6_c02328{width:27.755904pt;}
._7_c02328{width:30.607104pt;}
._1_c02328{width:44.668800pt;}
._3_c02328{width:45.805056pt;}
.fs0_c02328{font-size:42.240000pt;}
.fs1_c02328{font-size:53.760000pt;}
.y0_c02328{bottom:0.000000pt;}
.y14_c02328{bottom:16.000400pt;}
.y1f_c02328{bottom:130.665339pt;}
.y21_c02328{bottom:165.866875pt;}
.y20_c02328{bottom:174.507067pt;}
.y1e_c02328{bottom:231.785787pt;}
.y1d_c02328{bottom:245.225499pt;}
.y1c_c02328{bottom:303.785979pt;}
.y1b_c02328{bottom:317.225691pt;}
.y19_c02328{bottom:361.386555pt;}
.y15_c02328{bottom:377.387067pt;}
.y1a_c02328{bottom:407.786139pt;}
.y18_c02328{bottom:437.226363pt;}
.y17_c02328{bottom:453.226875pt;}
.y13_c02328{bottom:466.666667pt;}
.y12_c02328{bottom:482.666971pt;}
.y16_c02328{bottom:497.386683pt;}
.y11_c02328{bottom:513.387067pt;}
.y22_c02328{bottom:546.027067pt;}
.yd_c02328{bottom:566.505755pt;}
.yc_c02328{bottom:579.945467pt;}
.yb_c02328{bottom:593.385179pt;}
.yf_c02328{bottom:628.586875pt;}
.ye_c02328{bottom:637.227067pt;}
.ya_c02328{bottom:707.945339pt;}
.y9_c02328{bottom:779.945531pt;}
.y7_c02328{bottom:823.786427pt;}
.y3_c02328{bottom:839.786939pt;}
.y8_c02328{bottom:870.505979pt;}
.y6_c02328{bottom:899.946203pt;}
.y5_c02328{bottom:915.946715pt;}
.y2_c02328{bottom:945.386939pt;}
.y4_c02328{bottom:959.786555pt;}
.y1_c02328{bottom:975.787067pt;}
.y10_c02328{bottom:1008.747067pt;}
.h5_c02328{height:25.920000pt;}
.h3_c02328{height:28.916250pt;}
.h1_c02328{height:37.063125pt;}
.h2_c02328{height:37.166250pt;}
.h4_c02328{height:48.581988pt;}
.h0_c02328{height:1122.666667pt;}
.w2_c02328{width:191.360000pt;}
.w1_c02328{width:793.333333pt;}
.w0_c02328{width:793.626667pt;}
.x0_c02328{left:0.000000pt;}
.xe_c02328{left:104.000000pt;}
.x8_c02328{left:391.999872pt;}
.x4_c02328{left:396.160512pt;}
.xc_c02328{left:400.960000pt;}
.x7_c02328{left:404.799648pt;}
.x5_c02328{left:410.560128pt;}
.x1_c02328{left:411.840000pt;}
.xa_c02328{left:429.760320pt;}
.x9_c02328{left:437.439552pt;}
.x6_c02328{left:438.400512pt;}
.xd_c02328{left:450.560320pt;}
.x3_c02328{left:455.039904pt;}
.x2_c02328{left:468.159648pt;}
.xb_c02328{left:506.560032pt;}
}





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

.ir_c02329:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02329{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02329;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02329{font-family:ff1_c02329;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02329;src:url('chunks/assets/font_b554dd508d942bd3bdb92d8e.woff2')format("woff");}.ff2_c02329{font-family:ff2_c02329;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02329;src:url('chunks/assets/font_d1a4fc6273510d4207bf2bc2.woff2')format("woff");}.ff3_c02329{font-family:ff3_c02329;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02329{vertical-align:0.000000px;}
.v1_c02329{vertical-align:1.439424px;}
.ls11_c02329{letter-spacing:-0.883872px;}
.lsc_c02329{letter-spacing:-0.836352px;}
.ls18_c02329{letter-spacing:-0.774576px;}
.ls17_c02329{letter-spacing:-0.755568px;}
.ls19_c02329{letter-spacing:-0.722304px;}
.ls1a_c02329{letter-spacing:-0.684288px;}
.ls9_c02329{letter-spacing:-0.574992px;}
.ls1b_c02329{letter-spacing:-0.308880px;}
.ls12_c02329{letter-spacing:-0.275616px;}
.ls8_c02329{letter-spacing:-0.266112px;}
.lsf_c02329{letter-spacing:-0.261360px;}
.ls6_c02329{letter-spacing:-0.242352px;}
.ls3_c02329{letter-spacing:-0.118800px;}
.ls15_c02329{letter-spacing:0.000000px;}
.ls0_c02329{letter-spacing:0.006048px;}
.lse_c02329{letter-spacing:0.038016px;}
.ls5_c02329{letter-spacing:0.128304px;}
.ls16_c02329{letter-spacing:0.242352px;}
.lsd_c02329{letter-spacing:0.508464px;}
.ls14_c02329{letter-spacing:0.514080px;}
.ls10_c02329{letter-spacing:0.536976px;}
.lsb_c02329{letter-spacing:0.579744px;}
.ls13_c02329{letter-spacing:0.594000px;}
.ls7_c02329{letter-spacing:0.598752px;}
.ls1_c02329{letter-spacing:0.613008px;}
.lsa_c02329{letter-spacing:0.655776px;}
.ls4_c02329{letter-spacing:0.717552px;}
.ls2_c02329{letter-spacing:0.722304px;}
.sc__c02329{text-shadow:none;}
.sc0_c02329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02329{-webkit-text-stroke:0px transparent;}
.sc0_c02329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02329{word-spacing:-15.126048px;}
.ws9_c02329{word-spacing:-12.474000px;}
.ws7_c02329{word-spacing:-12.459744px;}
.wsc_c02329{word-spacing:-12.122352px;}
.wsd_c02329{word-spacing:-11.124432px;}
.wse_c02329{word-spacing:-11.105424px;}
.ws1a_c02329{word-spacing:-2.159136px;}
.ws14_c02329{word-spacing:-1.016928px;}
.ws10_c02329{word-spacing:-0.974160px;}
.ws16_c02329{word-spacing:-0.399168px;}
.ws12_c02329{word-spacing:-0.118800px;}
.ws17_c02329{word-spacing:-0.099792px;}
.ws13_c02329{word-spacing:-0.095040px;}
.ws19_c02329{word-spacing:-0.085536px;}
.ws1d_c02329{word-spacing:-0.052272px;}
.ws11_c02329{word-spacing:0.000000px;}
.ws1b_c02329{word-spacing:0.361152px;}
.ws1c_c02329{word-spacing:0.413424px;}
.ws15_c02329{word-spacing:0.475200px;}
.ws18_c02329{word-spacing:0.522720px;}
.ws2_c02329{word-spacing:1.330560px;}
.wsf_c02329{word-spacing:8.715168px;}
.wsa_c02329{word-spacing:33.300288px;}
.ws8_c02329{word-spacing:34.836912px;}
.ws5_c02329{word-spacing:36.742464px;}
.ws1_c02329{word-spacing:37.759392px;}
.ws0_c02329{word-spacing:38.020752px;}
.ws3_c02329{word-spacing:39.218256px;}
.ws4_c02329{word-spacing:39.902544px;}
.ws6_c02329{word-spacing:42.026688px;}
._0_c02329{margin-left:-1.948320px;}
._2_c02329{width:1.482624px;}
._6_c02329{width:3.369168px;}
._4_c02329{width:4.999104px;}
._5_c02329{width:14.707872px;}
._8_c02329{width:18.375984px;}
._9_c02329{width:21.460032px;}
._7_c02329{width:23.531904px;}
._1_c02329{width:50.252400px;}
._3_c02329{width:51.530688px;}
.fc0_c02329{color:rgb(0,0,0);}
.fs0_c02329{font-size:47.520000px;}
.fs1_c02329{font-size:60.480000px;}
.y0_c02329{bottom:0.000000px;}
.y1e_c02329{bottom:34.560450px;}
.y1a_c02329{bottom:131.878686px;}
.y19_c02329{bottom:146.998362px;}
.y1d_c02329{bottom:160.320000px;}
.y1c_c02329{bottom:186.600234px;}
.y1f_c02329{bottom:194.880450px;}
.y1b_c02329{bottom:196.320450px;}
.y18_c02329{bottom:275.878542px;}
.y17_c02329{bottom:356.878758px;}
.y15_c02329{bottom:406.559730px;}
.y11_c02329{bottom:424.560306px;}
.y16_c02329{bottom:458.759262px;}
.y14_c02329{bottom:491.879514px;}
.y13_c02329{bottom:509.880090px;}
.y10_c02329{bottom:543.000342px;}
.y12_c02329{bottom:559.559874px;}
.yf_c02329{bottom:577.560450px;}
.y20_c02329{bottom:614.280450px;}
.yb_c02329{bottom:667.558326px;}
.yd_c02329{bottom:707.160234px;}
.yc_c02329{bottom:716.880450px;}
.ya_c02329{bottom:796.438506px;}
.y9_c02329{bottom:877.438722px;}
.y7_c02329{bottom:926.759730px;}
.y3_c02329{bottom:944.760306px;}
.y8_c02329{bottom:979.319226px;}
.y6_c02329{bottom:1012.439478px;}
.y5_c02329{bottom:1030.440054px;}
.y2_c02329{bottom:1063.560306px;}
.y4_c02329{bottom:1079.759874px;}
.y1_c02329{bottom:1097.760450px;}
.ye_c02329{bottom:1134.840450px;}
.h3_c02329{height:32.530781px;}
.h1_c02329{height:41.696016px;}
.h2_c02329{height:41.812031px;}
.h5_c02329{height:47.160000px;}
.h4_c02329{height:54.654737px;}
.h0_c02329{height:1263.000000px;}
.w2_c02329{width:215.280000px;}
.w1_c02329{width:892.500000px;}
.w0_c02329{width:892.830000px;}
.x0_c02329{left:0.000000px;}
.xd_c02329{left:117.000000px;}
.x8_c02329{left:440.999856px;}
.x4_c02329{left:445.680576px;}
.xb_c02329{left:451.080000px;}
.x7_c02329{left:455.399604px;}
.x5_c02329{left:461.880144px;}
.x1_c02329{left:463.320000px;}
.xa_c02329{left:483.480360px;}
.x9_c02329{left:492.119496px;}
.x6_c02329{left:493.200576px;}
.xc_c02329{left:506.880360px;}
.x3_c02329{left:511.919892px;}
.x2_c02329{left:526.679604px;}
.xe_c02329{left:569.880036px;}
.xf_c02329{left:625.320000px;}
@media print{
.v0_c02329{vertical-align:0.000000pt;}
.v1_c02329{vertical-align:1.279488pt;}
.ls11_c02329{letter-spacing:-0.785664pt;}
.lsc_c02329{letter-spacing:-0.743424pt;}
.ls18_c02329{letter-spacing:-0.688512pt;}
.ls17_c02329{letter-spacing:-0.671616pt;}
.ls19_c02329{letter-spacing:-0.642048pt;}
.ls1a_c02329{letter-spacing:-0.608256pt;}
.ls9_c02329{letter-spacing:-0.511104pt;}
.ls1b_c02329{letter-spacing:-0.274560pt;}
.ls12_c02329{letter-spacing:-0.244992pt;}
.ls8_c02329{letter-spacing:-0.236544pt;}
.lsf_c02329{letter-spacing:-0.232320pt;}
.ls6_c02329{letter-spacing:-0.215424pt;}
.ls3_c02329{letter-spacing:-0.105600pt;}
.ls15_c02329{letter-spacing:0.000000pt;}
.ls0_c02329{letter-spacing:0.005376pt;}
.lse_c02329{letter-spacing:0.033792pt;}
.ls5_c02329{letter-spacing:0.114048pt;}
.ls16_c02329{letter-spacing:0.215424pt;}
.lsd_c02329{letter-spacing:0.451968pt;}
.ls14_c02329{letter-spacing:0.456960pt;}
.ls10_c02329{letter-spacing:0.477312pt;}
.lsb_c02329{letter-spacing:0.515328pt;}
.ls13_c02329{letter-spacing:0.528000pt;}
.ls7_c02329{letter-spacing:0.532224pt;}
.ls1_c02329{letter-spacing:0.544896pt;}
.lsa_c02329{letter-spacing:0.582912pt;}
.ls4_c02329{letter-spacing:0.637824pt;}
.ls2_c02329{letter-spacing:0.642048pt;}
.wsb_c02329{word-spacing:-13.445376pt;}
.ws9_c02329{word-spacing:-11.088000pt;}
.ws7_c02329{word-spacing:-11.075328pt;}
.wsc_c02329{word-spacing:-10.775424pt;}
.wsd_c02329{word-spacing:-9.888384pt;}
.wse_c02329{word-spacing:-9.871488pt;}
.ws1a_c02329{word-spacing:-1.919232pt;}
.ws14_c02329{word-spacing:-0.903936pt;}
.ws10_c02329{word-spacing:-0.865920pt;}
.ws16_c02329{word-spacing:-0.354816pt;}
.ws12_c02329{word-spacing:-0.105600pt;}
.ws17_c02329{word-spacing:-0.088704pt;}
.ws13_c02329{word-spacing:-0.084480pt;}
.ws19_c02329{word-spacing:-0.076032pt;}
.ws1d_c02329{word-spacing:-0.046464pt;}
.ws11_c02329{word-spacing:0.000000pt;}
.ws1b_c02329{word-spacing:0.321024pt;}
.ws1c_c02329{word-spacing:0.367488pt;}
.ws15_c02329{word-spacing:0.422400pt;}
.ws18_c02329{word-spacing:0.464640pt;}
.ws2_c02329{word-spacing:1.182720pt;}
.wsf_c02329{word-spacing:7.746816pt;}
.wsa_c02329{word-spacing:29.600256pt;}
.ws8_c02329{word-spacing:30.966144pt;}
.ws5_c02329{word-spacing:32.659968pt;}
.ws1_c02329{word-spacing:33.563904pt;}
.ws0_c02329{word-spacing:33.796224pt;}
.ws3_c02329{word-spacing:34.860672pt;}
.ws4_c02329{word-spacing:35.468928pt;}
.ws6_c02329{word-spacing:37.357056pt;}
._0_c02329{margin-left:-1.731840pt;}
._2_c02329{width:1.317888pt;}
._6_c02329{width:2.994816pt;}
._4_c02329{width:4.443648pt;}
._5_c02329{width:13.073664pt;}
._8_c02329{width:16.334208pt;}
._9_c02329{width:19.075584pt;}
._7_c02329{width:20.917248pt;}
._1_c02329{width:44.668800pt;}
._3_c02329{width:45.805056pt;}
.fs0_c02329{font-size:42.240000pt;}
.fs1_c02329{font-size:53.760000pt;}
.y0_c02329{bottom:0.000000pt;}
.y1e_c02329{bottom:30.720400pt;}
.y1a_c02329{bottom:117.225499pt;}
.y19_c02329{bottom:130.665211pt;}
.y1d_c02329{bottom:142.506667pt;}
.y1c_c02329{bottom:165.866875pt;}
.y1f_c02329{bottom:173.227067pt;}
.y1b_c02329{bottom:174.507067pt;}
.y18_c02329{bottom:245.225371pt;}
.y17_c02329{bottom:317.225563pt;}
.y15_c02329{bottom:361.386427pt;}
.y11_c02329{bottom:377.386939pt;}
.y16_c02329{bottom:407.786011pt;}
.y14_c02329{bottom:437.226235pt;}
.y13_c02329{bottom:453.226747pt;}
.y10_c02329{bottom:482.666971pt;}
.y12_c02329{bottom:497.386555pt;}
.yf_c02329{bottom:513.387067pt;}
.y20_c02329{bottom:546.027067pt;}
.yb_c02329{bottom:593.385179pt;}
.yd_c02329{bottom:628.586875pt;}
.yc_c02329{bottom:637.227067pt;}
.ya_c02329{bottom:707.945339pt;}
.y9_c02329{bottom:779.945531pt;}
.y7_c02329{bottom:823.786427pt;}
.y3_c02329{bottom:839.786939pt;}
.y8_c02329{bottom:870.505979pt;}
.y6_c02329{bottom:899.946203pt;}
.y5_c02329{bottom:915.946715pt;}
.y2_c02329{bottom:945.386939pt;}
.y4_c02329{bottom:959.786555pt;}
.y1_c02329{bottom:975.787067pt;}
.ye_c02329{bottom:1008.747067pt;}
.h3_c02329{height:28.916250pt;}
.h1_c02329{height:37.063125pt;}
.h2_c02329{height:37.166250pt;}
.h5_c02329{height:41.920000pt;}
.h4_c02329{height:48.581988pt;}
.h0_c02329{height:1122.666667pt;}
.w2_c02329{width:191.360000pt;}
.w1_c02329{width:793.333333pt;}
.w0_c02329{width:793.626667pt;}
.x0_c02329{left:0.000000pt;}
.xd_c02329{left:104.000000pt;}
.x8_c02329{left:391.999872pt;}
.x4_c02329{left:396.160512pt;}
.xb_c02329{left:400.960000pt;}
.x7_c02329{left:404.799648pt;}
.x5_c02329{left:410.560128pt;}
.x1_c02329{left:411.840000pt;}
.xa_c02329{left:429.760320pt;}
.x9_c02329{left:437.439552pt;}
.x6_c02329{left:438.400512pt;}
.xc_c02329{left:450.560320pt;}
.x3_c02329{left:455.039904pt;}
.x2_c02329{left:468.159648pt;}
.xe_c02329{left:506.560032pt;}
.xf_c02329{left:555.840000pt;}
}





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

.ir_c02330:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02330{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02330;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02330{font-family:ff1_c02330;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02330;src:url('chunks/assets/font_ac031b1627e164327ba8619e.woff2')format("woff");}.ff2_c02330{font-family:ff2_c02330;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02330;src:url('chunks/assets/font_d1a4fc6273510d4207bf2bc2.woff2')format("woff");}.ff3_c02330{font-family:ff3_c02330;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02330{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02330{vertical-align:0.000000px;}
.v1_c02330{vertical-align:1.439424px;}
.ls19_c02330{letter-spacing:-0.888624px;}
.ls1a_c02330{letter-spacing:-0.793584px;}
.lsc_c02330{letter-spacing:-0.774576px;}
.lsa_c02330{letter-spacing:-0.755568px;}
.ls1b_c02330{letter-spacing:-0.736560px;}
.lsf_c02330{letter-spacing:-0.722304px;}
.ls12_c02330{letter-spacing:-0.684288px;}
.lsb_c02330{letter-spacing:-0.574992px;}
.ls13_c02330{letter-spacing:-0.275616px;}
.ls1c_c02330{letter-spacing:-0.270864px;}
.ls10_c02330{letter-spacing:-0.261360px;}
.ls7_c02330{letter-spacing:-0.242352px;}
.ls18_c02330{letter-spacing:-0.237600px;}
.ls4_c02330{letter-spacing:-0.118800px;}
.ls17_c02330{letter-spacing:0.000000px;}
.ls0_c02330{letter-spacing:0.006048px;}
.ls6_c02330{letter-spacing:0.128304px;}
.ls8_c02330{letter-spacing:0.242352px;}
.lse_c02330{letter-spacing:0.508464px;}
.ls16_c02330{letter-spacing:0.514080px;}
.ls11_c02330{letter-spacing:0.536976px;}
.lsd_c02330{letter-spacing:0.579744px;}
.ls14_c02330{letter-spacing:0.594000px;}
.ls9_c02330{letter-spacing:0.598752px;}
.ls2_c02330{letter-spacing:0.613008px;}
.ls1_c02330{letter-spacing:0.651024px;}
.ls15_c02330{letter-spacing:0.684288px;}
.ls5_c02330{letter-spacing:0.717552px;}
.ls3_c02330{letter-spacing:0.722304px;}
.sc__c02330{text-shadow:none;}
.sc0_c02330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02330{-webkit-text-stroke:0px transparent;}
.sc0_c02330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02330{word-spacing:-15.126048px;}
.wsb_c02330{word-spacing:-12.474000px;}
.ws7_c02330{word-spacing:-12.459744px;}
.ws2_c02330{word-spacing:-12.122352px;}
.wse_c02330{word-spacing:-11.642400px;}
.ws4_c02330{word-spacing:-11.124432px;}
.ws6_c02330{word-spacing:-11.105424px;}
.ws19_c02330{word-spacing:-2.159136px;}
.ws18_c02330{word-spacing:-1.045440px;}
.ws1a_c02330{word-spacing:-1.012176px;}
.ws11_c02330{word-spacing:-0.974160px;}
.ws13_c02330{word-spacing:-0.118800px;}
.ws15_c02330{word-spacing:-0.099792px;}
.ws1d_c02330{word-spacing:-0.090288px;}
.ws17_c02330{word-spacing:-0.085536px;}
.ws12_c02330{word-spacing:0.000000px;}
.ws14_c02330{word-spacing:0.361152px;}
.ws16_c02330{word-spacing:0.413424px;}
.ws1c_c02330{word-spacing:0.432432px;}
.ws1b_c02330{word-spacing:0.527472px;}
.ws10_c02330{word-spacing:6.629040px;}
.wsa_c02330{word-spacing:8.715168px;}
.wsc_c02330{word-spacing:33.300288px;}
.ws9_c02330{word-spacing:34.836912px;}
.wsf_c02330{word-spacing:36.143712px;}
.ws1_c02330{word-spacing:37.759392px;}
.ws0_c02330{word-spacing:38.020752px;}
.ws3_c02330{word-spacing:39.218256px;}
.ws5_c02330{word-spacing:39.902544px;}
.ws8_c02330{word-spacing:42.026688px;}
._0_c02330{margin-left:-1.948320px;}
._2_c02330{width:1.482624px;}
._4_c02330{width:3.369168px;}
._9_c02330{width:4.642704px;}
._8_c02330{width:14.707872px;}
._6_c02330{width:18.375984px;}
._b_c02330{width:19.982160px;}
._7_c02330{width:21.460032px;}
._5_c02330{width:23.531904px;}
._a_c02330{width:24.691392px;}
._c_c02330{width:26.473392px;}
._1_c02330{width:50.252400px;}
._3_c02330{width:51.530688px;}
.fc0_c02330{color:rgb(0,0,0);}
.fs0_c02330{font-size:47.520000px;}
.fs1_c02330{font-size:60.480000px;}
.y0_c02330{bottom:0.000000px;}
.y10_c02330{bottom:34.560450px;}
.y1e_c02330{bottom:131.878686px;}
.y1d_c02330{bottom:146.998362px;}
.y20_c02330{bottom:186.600234px;}
.y1f_c02330{bottom:196.320450px;}
.y1c_c02330{bottom:275.878542px;}
.y1b_c02330{bottom:356.878758px;}
.y19_c02330{bottom:406.559730px;}
.y15_c02330{bottom:424.560306px;}
.y1a_c02330{bottom:458.759262px;}
.y18_c02330{bottom:491.879514px;}
.y17_c02330{bottom:509.880090px;}
.y14_c02330{bottom:543.000342px;}
.y16_c02330{bottom:559.559874px;}
.y13_c02330{bottom:577.560450px;}
.y21_c02330{bottom:614.280450px;}
.yc_c02330{bottom:652.438650px;}
.yb_c02330{bottom:667.558326px;}
.yf_c02330{bottom:680.880000px;}
.ye_c02330{bottom:707.160234px;}
.y11_c02330{bottom:715.440450px;}
.yd_c02330{bottom:716.880450px;}
.ya_c02330{bottom:796.438506px;}
.y9_c02330{bottom:877.438722px;}
.y7_c02330{bottom:926.759730px;}
.y3_c02330{bottom:944.760306px;}
.y8_c02330{bottom:979.319226px;}
.y6_c02330{bottom:1012.439478px;}
.y5_c02330{bottom:1030.440054px;}
.y2_c02330{bottom:1063.560306px;}
.y4_c02330{bottom:1079.759874px;}
.y1_c02330{bottom:1097.760450px;}
.y12_c02330{bottom:1134.840450px;}
.h3_c02330{height:32.530781px;}
.h1_c02330{height:41.696016px;}
.h2_c02330{height:41.812031px;}
.h4_c02330{height:47.160000px;}
.h5_c02330{height:54.654737px;}
.h0_c02330{height:1263.000000px;}
.w2_c02330{width:215.280000px;}
.w1_c02330{width:892.500000px;}
.w0_c02330{width:892.830000px;}
.x0_c02330{left:0.000000px;}
.xf_c02330{left:117.000000px;}
.x8_c02330{left:440.999856px;}
.x4_c02330{left:445.680576px;}
.xc_c02330{left:451.080000px;}
.x7_c02330{left:455.399604px;}
.x5_c02330{left:461.880144px;}
.x1_c02330{left:463.320000px;}
.xa_c02330{left:483.480360px;}
.x9_c02330{left:492.119496px;}
.x6_c02330{left:493.200576px;}
.xd_c02330{left:506.880360px;}
.x3_c02330{left:511.919892px;}
.x2_c02330{left:526.679604px;}
.xb_c02330{left:569.880036px;}
.xe_c02330{left:625.320000px;}
@media print{
.v0_c02330{vertical-align:0.000000pt;}
.v1_c02330{vertical-align:1.279488pt;}
.ls19_c02330{letter-spacing:-0.789888pt;}
.ls1a_c02330{letter-spacing:-0.705408pt;}
.lsc_c02330{letter-spacing:-0.688512pt;}
.lsa_c02330{letter-spacing:-0.671616pt;}
.ls1b_c02330{letter-spacing:-0.654720pt;}
.lsf_c02330{letter-spacing:-0.642048pt;}
.ls12_c02330{letter-spacing:-0.608256pt;}
.lsb_c02330{letter-spacing:-0.511104pt;}
.ls13_c02330{letter-spacing:-0.244992pt;}
.ls1c_c02330{letter-spacing:-0.240768pt;}
.ls10_c02330{letter-spacing:-0.232320pt;}
.ls7_c02330{letter-spacing:-0.215424pt;}
.ls18_c02330{letter-spacing:-0.211200pt;}
.ls4_c02330{letter-spacing:-0.105600pt;}
.ls17_c02330{letter-spacing:0.000000pt;}
.ls0_c02330{letter-spacing:0.005376pt;}
.ls6_c02330{letter-spacing:0.114048pt;}
.ls8_c02330{letter-spacing:0.215424pt;}
.lse_c02330{letter-spacing:0.451968pt;}
.ls16_c02330{letter-spacing:0.456960pt;}
.ls11_c02330{letter-spacing:0.477312pt;}
.lsd_c02330{letter-spacing:0.515328pt;}
.ls14_c02330{letter-spacing:0.528000pt;}
.ls9_c02330{letter-spacing:0.532224pt;}
.ls2_c02330{letter-spacing:0.544896pt;}
.ls1_c02330{letter-spacing:0.578688pt;}
.ls15_c02330{letter-spacing:0.608256pt;}
.ls5_c02330{letter-spacing:0.637824pt;}
.ls3_c02330{letter-spacing:0.642048pt;}
.wsd_c02330{word-spacing:-13.445376pt;}
.wsb_c02330{word-spacing:-11.088000pt;}
.ws7_c02330{word-spacing:-11.075328pt;}
.ws2_c02330{word-spacing:-10.775424pt;}
.wse_c02330{word-spacing:-10.348800pt;}
.ws4_c02330{word-spacing:-9.888384pt;}
.ws6_c02330{word-spacing:-9.871488pt;}
.ws19_c02330{word-spacing:-1.919232pt;}
.ws18_c02330{word-spacing:-0.929280pt;}
.ws1a_c02330{word-spacing:-0.899712pt;}
.ws11_c02330{word-spacing:-0.865920pt;}
.ws13_c02330{word-spacing:-0.105600pt;}
.ws15_c02330{word-spacing:-0.088704pt;}
.ws1d_c02330{word-spacing:-0.080256pt;}
.ws17_c02330{word-spacing:-0.076032pt;}
.ws12_c02330{word-spacing:0.000000pt;}
.ws14_c02330{word-spacing:0.321024pt;}
.ws16_c02330{word-spacing:0.367488pt;}
.ws1c_c02330{word-spacing:0.384384pt;}
.ws1b_c02330{word-spacing:0.468864pt;}
.ws10_c02330{word-spacing:5.892480pt;}
.wsa_c02330{word-spacing:7.746816pt;}
.wsc_c02330{word-spacing:29.600256pt;}
.ws9_c02330{word-spacing:30.966144pt;}
.wsf_c02330{word-spacing:32.127744pt;}
.ws1_c02330{word-spacing:33.563904pt;}
.ws0_c02330{word-spacing:33.796224pt;}
.ws3_c02330{word-spacing:34.860672pt;}
.ws5_c02330{word-spacing:35.468928pt;}
.ws8_c02330{word-spacing:37.357056pt;}
._0_c02330{margin-left:-1.731840pt;}
._2_c02330{width:1.317888pt;}
._4_c02330{width:2.994816pt;}
._9_c02330{width:4.126848pt;}
._8_c02330{width:13.073664pt;}
._6_c02330{width:16.334208pt;}
._b_c02330{width:17.761920pt;}
._7_c02330{width:19.075584pt;}
._5_c02330{width:20.917248pt;}
._a_c02330{width:21.947904pt;}
._c_c02330{width:23.531904pt;}
._1_c02330{width:44.668800pt;}
._3_c02330{width:45.805056pt;}
.fs0_c02330{font-size:42.240000pt;}
.fs1_c02330{font-size:53.760000pt;}
.y0_c02330{bottom:0.000000pt;}
.y10_c02330{bottom:30.720400pt;}
.y1e_c02330{bottom:117.225499pt;}
.y1d_c02330{bottom:130.665211pt;}
.y20_c02330{bottom:165.866875pt;}
.y1f_c02330{bottom:174.507067pt;}
.y1c_c02330{bottom:245.225371pt;}
.y1b_c02330{bottom:317.225563pt;}
.y19_c02330{bottom:361.386427pt;}
.y15_c02330{bottom:377.386939pt;}
.y1a_c02330{bottom:407.786011pt;}
.y18_c02330{bottom:437.226235pt;}
.y17_c02330{bottom:453.226747pt;}
.y14_c02330{bottom:482.666971pt;}
.y16_c02330{bottom:497.386555pt;}
.y13_c02330{bottom:513.387067pt;}
.y21_c02330{bottom:546.027067pt;}
.yc_c02330{bottom:579.945467pt;}
.yb_c02330{bottom:593.385179pt;}
.yf_c02330{bottom:605.226667pt;}
.ye_c02330{bottom:628.586875pt;}
.y11_c02330{bottom:635.947067pt;}
.yd_c02330{bottom:637.227067pt;}
.ya_c02330{bottom:707.945339pt;}
.y9_c02330{bottom:779.945531pt;}
.y7_c02330{bottom:823.786427pt;}
.y3_c02330{bottom:839.786939pt;}
.y8_c02330{bottom:870.505979pt;}
.y6_c02330{bottom:899.946203pt;}
.y5_c02330{bottom:915.946715pt;}
.y2_c02330{bottom:945.386939pt;}
.y4_c02330{bottom:959.786555pt;}
.y1_c02330{bottom:975.787067pt;}
.y12_c02330{bottom:1008.747067pt;}
.h3_c02330{height:28.916250pt;}
.h1_c02330{height:37.063125pt;}
.h2_c02330{height:37.166250pt;}
.h4_c02330{height:41.920000pt;}
.h5_c02330{height:48.581988pt;}
.h0_c02330{height:1122.666667pt;}
.w2_c02330{width:191.360000pt;}
.w1_c02330{width:793.333333pt;}
.w0_c02330{width:793.626667pt;}
.x0_c02330{left:0.000000pt;}
.xf_c02330{left:104.000000pt;}
.x8_c02330{left:391.999872pt;}
.x4_c02330{left:396.160512pt;}
.xc_c02330{left:400.960000pt;}
.x7_c02330{left:404.799648pt;}
.x5_c02330{left:410.560128pt;}
.x1_c02330{left:411.840000pt;}
.xa_c02330{left:429.760320pt;}
.x9_c02330{left:437.439552pt;}
.x6_c02330{left:438.400512pt;}
.xd_c02330{left:450.560320pt;}
.x3_c02330{left:455.039904pt;}
.x2_c02330{left:468.159648pt;}
.xb_c02330{left:506.560032pt;}
.xe_c02330{left:555.840000pt;}
}





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

.ir_c02331:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02331{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02331;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02331{font-family:ff1_c02331;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02331;src:url('chunks/assets/font_228fc33f01b190c3c8e531ce.woff2')format("woff");}.ff2_c02331{font-family:ff2_c02331;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02331;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02331{font-family:ff3_c02331;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02331{vertical-align:0.000000px;}
.v1_c02331{vertical-align:1.439424px;}
.lsa_c02331{letter-spacing:-0.888624px;}
.lsf_c02331{letter-spacing:-0.793584px;}
.lsc_c02331{letter-spacing:-0.774576px;}
.ls13_c02331{letter-spacing:-0.736560px;}
.lsb_c02331{letter-spacing:-0.574992px;}
.ls14_c02331{letter-spacing:-0.270864px;}
.ls11_c02331{letter-spacing:-0.261360px;}
.ls7_c02331{letter-spacing:-0.242352px;}
.ls8_c02331{letter-spacing:-0.237600px;}
.ls4_c02331{letter-spacing:-0.118800px;}
.ls17_c02331{letter-spacing:0.000000px;}
.ls1_c02331{letter-spacing:0.006048px;}
.ls6_c02331{letter-spacing:0.128304px;}
.lse_c02331{letter-spacing:0.508464px;}
.ls16_c02331{letter-spacing:0.514080px;}
.ls12_c02331{letter-spacing:0.536976px;}
.lsd_c02331{letter-spacing:0.579744px;}
.ls15_c02331{letter-spacing:0.594000px;}
.ls9_c02331{letter-spacing:0.598752px;}
.ls2_c02331{letter-spacing:0.613008px;}
.ls0_c02331{letter-spacing:0.651024px;}
.ls10_c02331{letter-spacing:0.684288px;}
.ls5_c02331{letter-spacing:0.717552px;}
.ls3_c02331{letter-spacing:0.722304px;}
.sc__c02331{text-shadow:none;}
.sc0_c02331{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02331{-webkit-text-stroke:0px transparent;}
.sc0_c02331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02331{word-spacing:-15.126048px;}
.wsb_c02331{word-spacing:-12.474000px;}
.ws6_c02331{word-spacing:-12.459744px;}
.ws2_c02331{word-spacing:-11.642400px;}
.ws5_c02331{word-spacing:-11.105424px;}
.ws18_c02331{word-spacing:-2.159136px;}
.ws14_c02331{word-spacing:-1.045440px;}
.ws10_c02331{word-spacing:-1.012176px;}
.wse_c02331{word-spacing:-0.974160px;}
.ws11_c02331{word-spacing:-0.118800px;}
.ws15_c02331{word-spacing:-0.099792px;}
.ws16_c02331{word-spacing:-0.090288px;}
.ws17_c02331{word-spacing:-0.085536px;}
.wsf_c02331{word-spacing:0.000000px;}
.ws13_c02331{word-spacing:0.432432px;}
.ws12_c02331{word-spacing:0.527472px;}
.wsa_c02331{word-spacing:6.629040px;}
.wsc_c02331{word-spacing:33.300288px;}
.ws9_c02331{word-spacing:34.836912px;}
.ws8_c02331{word-spacing:36.143712px;}
.ws1_c02331{word-spacing:37.759392px;}
.ws0_c02331{word-spacing:38.020752px;}
.ws3_c02331{word-spacing:39.218256px;}
.ws4_c02331{word-spacing:39.902544px;}
.ws7_c02331{word-spacing:42.026688px;}
._0_c02331{margin-left:-1.948320px;}
._2_c02331{width:1.482624px;}
._4_c02331{width:4.642704px;}
._8_c02331{width:14.707872px;}
._6_c02331{width:19.982160px;}
._7_c02331{width:23.451120px;}
._5_c02331{width:24.691392px;}
._1_c02331{width:50.252400px;}
._3_c02331{width:51.530688px;}
.fc0_c02331{color:rgb(0,0,0);}
.fs0_c02331{font-size:47.520000px;}
.fs1_c02331{font-size:60.480000px;}
.y0_c02331{bottom:0.000000px;}
.y1b_c02331{bottom:131.878686px;}
.y1a_c02331{bottom:146.998362px;}
.y1d_c02331{bottom:186.600234px;}
.y1c_c02331{bottom:196.320450px;}
.y19_c02331{bottom:275.878542px;}
.y18_c02331{bottom:356.878758px;}
.y16_c02331{bottom:406.559730px;}
.y12_c02331{bottom:424.560306px;}
.y17_c02331{bottom:458.759262px;}
.y15_c02331{bottom:491.879514px;}
.y14_c02331{bottom:509.880090px;}
.y11_c02331{bottom:543.000342px;}
.y13_c02331{bottom:559.559874px;}
.y10_c02331{bottom:577.560450px;}
.y1e_c02331{bottom:614.280450px;}
.yc_c02331{bottom:652.438650px;}
.yb_c02331{bottom:667.558326px;}
.ye_c02331{bottom:707.160234px;}
.yd_c02331{bottom:716.880450px;}
.ya_c02331{bottom:796.438506px;}
.y9_c02331{bottom:877.438722px;}
.y7_c02331{bottom:926.759730px;}
.y3_c02331{bottom:944.760306px;}
.y8_c02331{bottom:979.319226px;}
.y6_c02331{bottom:1012.439478px;}
.y5_c02331{bottom:1030.440054px;}
.y2_c02331{bottom:1063.560306px;}
.y4_c02331{bottom:1079.759874px;}
.y1_c02331{bottom:1097.760450px;}
.yf_c02331{bottom:1134.840450px;}
.h3_c02331{height:32.530781px;}
.h1_c02331{height:41.696016px;}
.h2_c02331{height:41.812031px;}
.h4_c02331{height:54.654737px;}
.h0_c02331{height:1263.000000px;}
.w1_c02331{width:892.500000px;}
.w0_c02331{width:892.830000px;}
.x0_c02331{left:0.000000px;}
.xe_c02331{left:117.000000px;}
.x8_c02331{left:440.999856px;}
.x4_c02331{left:445.680576px;}
.xc_c02331{left:451.080000px;}
.x7_c02331{left:455.399604px;}
.x5_c02331{left:461.880144px;}
.x1_c02331{left:463.320000px;}
.xa_c02331{left:483.480360px;}
.x9_c02331{left:492.119496px;}
.x6_c02331{left:493.200576px;}
.xd_c02331{left:506.880360px;}
.x3_c02331{left:511.919892px;}
.x2_c02331{left:526.679604px;}
.xb_c02331{left:569.880036px;}
@media print{
.v0_c02331{vertical-align:0.000000pt;}
.v1_c02331{vertical-align:1.279488pt;}
.lsa_c02331{letter-spacing:-0.789888pt;}
.lsf_c02331{letter-spacing:-0.705408pt;}
.lsc_c02331{letter-spacing:-0.688512pt;}
.ls13_c02331{letter-spacing:-0.654720pt;}
.lsb_c02331{letter-spacing:-0.511104pt;}
.ls14_c02331{letter-spacing:-0.240768pt;}
.ls11_c02331{letter-spacing:-0.232320pt;}
.ls7_c02331{letter-spacing:-0.215424pt;}
.ls8_c02331{letter-spacing:-0.211200pt;}
.ls4_c02331{letter-spacing:-0.105600pt;}
.ls17_c02331{letter-spacing:0.000000pt;}
.ls1_c02331{letter-spacing:0.005376pt;}
.ls6_c02331{letter-spacing:0.114048pt;}
.lse_c02331{letter-spacing:0.451968pt;}
.ls16_c02331{letter-spacing:0.456960pt;}
.ls12_c02331{letter-spacing:0.477312pt;}
.lsd_c02331{letter-spacing:0.515328pt;}
.ls15_c02331{letter-spacing:0.528000pt;}
.ls9_c02331{letter-spacing:0.532224pt;}
.ls2_c02331{letter-spacing:0.544896pt;}
.ls0_c02331{letter-spacing:0.578688pt;}
.ls10_c02331{letter-spacing:0.608256pt;}
.ls5_c02331{letter-spacing:0.637824pt;}
.ls3_c02331{letter-spacing:0.642048pt;}
.wsd_c02331{word-spacing:-13.445376pt;}
.wsb_c02331{word-spacing:-11.088000pt;}
.ws6_c02331{word-spacing:-11.075328pt;}
.ws2_c02331{word-spacing:-10.348800pt;}
.ws5_c02331{word-spacing:-9.871488pt;}
.ws18_c02331{word-spacing:-1.919232pt;}
.ws14_c02331{word-spacing:-0.929280pt;}
.ws10_c02331{word-spacing:-0.899712pt;}
.wse_c02331{word-spacing:-0.865920pt;}
.ws11_c02331{word-spacing:-0.105600pt;}
.ws15_c02331{word-spacing:-0.088704pt;}
.ws16_c02331{word-spacing:-0.080256pt;}
.ws17_c02331{word-spacing:-0.076032pt;}
.wsf_c02331{word-spacing:0.000000pt;}
.ws13_c02331{word-spacing:0.384384pt;}
.ws12_c02331{word-spacing:0.468864pt;}
.wsa_c02331{word-spacing:5.892480pt;}
.wsc_c02331{word-spacing:29.600256pt;}
.ws9_c02331{word-spacing:30.966144pt;}
.ws8_c02331{word-spacing:32.127744pt;}
.ws1_c02331{word-spacing:33.563904pt;}
.ws0_c02331{word-spacing:33.796224pt;}
.ws3_c02331{word-spacing:34.860672pt;}
.ws4_c02331{word-spacing:35.468928pt;}
.ws7_c02331{word-spacing:37.357056pt;}
._0_c02331{margin-left:-1.731840pt;}
._2_c02331{width:1.317888pt;}
._4_c02331{width:4.126848pt;}
._8_c02331{width:13.073664pt;}
._6_c02331{width:17.761920pt;}
._7_c02331{width:20.845440pt;}
._5_c02331{width:21.947904pt;}
._1_c02331{width:44.668800pt;}
._3_c02331{width:45.805056pt;}
.fs0_c02331{font-size:42.240000pt;}
.fs1_c02331{font-size:53.760000pt;}
.y0_c02331{bottom:0.000000pt;}
.y1b_c02331{bottom:117.225499pt;}
.y1a_c02331{bottom:130.665211pt;}
.y1d_c02331{bottom:165.866875pt;}
.y1c_c02331{bottom:174.507067pt;}
.y19_c02331{bottom:245.225371pt;}
.y18_c02331{bottom:317.225563pt;}
.y16_c02331{bottom:361.386427pt;}
.y12_c02331{bottom:377.386939pt;}
.y17_c02331{bottom:407.786011pt;}
.y15_c02331{bottom:437.226235pt;}
.y14_c02331{bottom:453.226747pt;}
.y11_c02331{bottom:482.666971pt;}
.y13_c02331{bottom:497.386555pt;}
.y10_c02331{bottom:513.387067pt;}
.y1e_c02331{bottom:546.027067pt;}
.yc_c02331{bottom:579.945467pt;}
.yb_c02331{bottom:593.385179pt;}
.ye_c02331{bottom:628.586875pt;}
.yd_c02331{bottom:637.227067pt;}
.ya_c02331{bottom:707.945339pt;}
.y9_c02331{bottom:779.945531pt;}
.y7_c02331{bottom:823.786427pt;}
.y3_c02331{bottom:839.786939pt;}
.y8_c02331{bottom:870.505979pt;}
.y6_c02331{bottom:899.946203pt;}
.y5_c02331{bottom:915.946715pt;}
.y2_c02331{bottom:945.386939pt;}
.y4_c02331{bottom:959.786555pt;}
.y1_c02331{bottom:975.787067pt;}
.yf_c02331{bottom:1008.747067pt;}
.h3_c02331{height:28.916250pt;}
.h1_c02331{height:37.063125pt;}
.h2_c02331{height:37.166250pt;}
.h4_c02331{height:48.581988pt;}
.h0_c02331{height:1122.666667pt;}
.w1_c02331{width:793.333333pt;}
.w0_c02331{width:793.626667pt;}
.x0_c02331{left:0.000000pt;}
.xe_c02331{left:104.000000pt;}
.x8_c02331{left:391.999872pt;}
.x4_c02331{left:396.160512pt;}
.xc_c02331{left:400.960000pt;}
.x7_c02331{left:404.799648pt;}
.x5_c02331{left:410.560128pt;}
.x1_c02331{left:411.840000pt;}
.xa_c02331{left:429.760320pt;}
.x9_c02331{left:437.439552pt;}
.x6_c02331{left:438.400512pt;}
.xd_c02331{left:450.560320pt;}
.x3_c02331{left:455.039904pt;}
.x2_c02331{left:468.159648pt;}
.xb_c02331{left:506.560032pt;}
}





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

.ir_c02332:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02332{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02332;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02332{font-family:ff1_c02332;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02332;src:url('chunks/assets/font_253851c6239ee8d92165c45f.woff2')format("woff");}.ff2_c02332{font-family:ff2_c02332;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02332;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02332{font-family:ff3_c02332;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02332{vertical-align:0.000000px;}
.v1_c02332{vertical-align:1.439424px;}
.lse_c02332{letter-spacing:-1.283040px;}
.ls15_c02332{letter-spacing:-0.755568px;}
.lsa_c02332{letter-spacing:-0.574992px;}
.lsb_c02332{letter-spacing:-0.361152px;}
.ls11_c02332{letter-spacing:-0.275616px;}
.ls9_c02332{letter-spacing:-0.266112px;}
.lsf_c02332{letter-spacing:-0.261360px;}
.ls6_c02332{letter-spacing:-0.242352px;}
.ls3_c02332{letter-spacing:-0.118800px;}
.ls14_c02332{letter-spacing:0.000000px;}
.ls0_c02332{letter-spacing:0.006048px;}
.ls16_c02332{letter-spacing:0.042768px;}
.ls5_c02332{letter-spacing:0.128304px;}
.ls7_c02332{letter-spacing:0.242352px;}
.lsd_c02332{letter-spacing:0.508464px;}
.ls13_c02332{letter-spacing:0.514080px;}
.ls10_c02332{letter-spacing:0.536976px;}
.lsc_c02332{letter-spacing:0.579744px;}
.ls12_c02332{letter-spacing:0.594000px;}
.ls8_c02332{letter-spacing:0.598752px;}
.ls1_c02332{letter-spacing:0.613008px;}
.ls4_c02332{letter-spacing:0.717552px;}
.ls2_c02332{letter-spacing:0.722304px;}
.sc__c02332{text-shadow:none;}
.sc0_c02332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02332{-webkit-text-stroke:0px transparent;}
.sc0_c02332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02332{word-spacing:-15.126048px;}
.ws9_c02332{word-spacing:-12.474000px;}
.ws7_c02332{word-spacing:-12.459744px;}
.ws8_c02332{word-spacing:-12.416976px;}
.ws2_c02332{word-spacing:-12.122352px;}
.wsc_c02332{word-spacing:-11.124432px;}
.ws15_c02332{word-spacing:-2.159136px;}
.wse_c02332{word-spacing:-0.974160px;}
.ws16_c02332{word-spacing:-0.403920px;}
.ws10_c02332{word-spacing:-0.118800px;}
.ws13_c02332{word-spacing:-0.099792px;}
.ws11_c02332{word-spacing:-0.095040px;}
.ws14_c02332{word-spacing:-0.085536px;}
.wsf_c02332{word-spacing:0.000000px;}
.ws12_c02332{word-spacing:0.921888px;}
.wsa_c02332{word-spacing:33.300288px;}
.ws5_c02332{word-spacing:36.742464px;}
.ws1_c02332{word-spacing:37.759392px;}
.ws0_c02332{word-spacing:38.020752px;}
.ws3_c02332{word-spacing:39.218256px;}
.ws4_c02332{word-spacing:39.902544px;}
.wsd_c02332{word-spacing:42.026688px;}
.ws6_c02332{word-spacing:53.545536px;}
._0_c02332{margin-left:-1.948320px;}
._2_c02332{width:1.482624px;}
._5_c02332{width:2.808432px;}
._4_c02332{width:4.495392px;}
._6_c02332{width:14.707872px;}
._1_c02332{width:50.252400px;}
._3_c02332{width:51.530688px;}
.fc0_c02332{color:rgb(0,0,0);}
.fs0_c02332{font-size:47.520000px;}
.fs1_c02332{font-size:60.480000px;}
.y0_c02332{bottom:0.000000px;}
.y19_c02332{bottom:146.998362px;}
.y1b_c02332{bottom:186.600234px;}
.y1a_c02332{bottom:196.320450px;}
.y18_c02332{bottom:275.878542px;}
.y17_c02332{bottom:356.878758px;}
.y15_c02332{bottom:406.559730px;}
.y11_c02332{bottom:424.560306px;}
.y16_c02332{bottom:458.759262px;}
.y14_c02332{bottom:491.879514px;}
.y13_c02332{bottom:509.880090px;}
.y10_c02332{bottom:543.000342px;}
.y12_c02332{bottom:559.559874px;}
.yf_c02332{bottom:577.560450px;}
.y1c_c02332{bottom:614.280450px;}
.yb_c02332{bottom:667.558326px;}
.yd_c02332{bottom:707.160234px;}
.yc_c02332{bottom:716.880450px;}
.ya_c02332{bottom:796.438506px;}
.y9_c02332{bottom:877.438722px;}
.y7_c02332{bottom:926.759730px;}
.y3_c02332{bottom:944.760306px;}
.y8_c02332{bottom:979.319226px;}
.y6_c02332{bottom:1012.439478px;}
.y5_c02332{bottom:1030.440054px;}
.y2_c02332{bottom:1063.560306px;}
.y4_c02332{bottom:1079.759874px;}
.y1_c02332{bottom:1097.760450px;}
.ye_c02332{bottom:1134.840450px;}
.h3_c02332{height:32.530781px;}
.h1_c02332{height:41.696016px;}
.h2_c02332{height:41.812031px;}
.h4_c02332{height:54.654737px;}
.h0_c02332{height:1263.000000px;}
.w1_c02332{width:892.500000px;}
.w0_c02332{width:892.830000px;}
.x0_c02332{left:0.000000px;}
.xd_c02332{left:117.000000px;}
.x8_c02332{left:440.999856px;}
.x4_c02332{left:445.680576px;}
.xb_c02332{left:451.080000px;}
.x7_c02332{left:455.399604px;}
.x5_c02332{left:461.880144px;}
.x1_c02332{left:463.320000px;}
.xa_c02332{left:483.480360px;}
.x9_c02332{left:492.119496px;}
.x6_c02332{left:493.200576px;}
.xc_c02332{left:506.880360px;}
.x3_c02332{left:511.919892px;}
.x2_c02332{left:526.679604px;}
@media print{
.v0_c02332{vertical-align:0.000000pt;}
.v1_c02332{vertical-align:1.279488pt;}
.lse_c02332{letter-spacing:-1.140480pt;}
.ls15_c02332{letter-spacing:-0.671616pt;}
.lsa_c02332{letter-spacing:-0.511104pt;}
.lsb_c02332{letter-spacing:-0.321024pt;}
.ls11_c02332{letter-spacing:-0.244992pt;}
.ls9_c02332{letter-spacing:-0.236544pt;}
.lsf_c02332{letter-spacing:-0.232320pt;}
.ls6_c02332{letter-spacing:-0.215424pt;}
.ls3_c02332{letter-spacing:-0.105600pt;}
.ls14_c02332{letter-spacing:0.000000pt;}
.ls0_c02332{letter-spacing:0.005376pt;}
.ls16_c02332{letter-spacing:0.038016pt;}
.ls5_c02332{letter-spacing:0.114048pt;}
.ls7_c02332{letter-spacing:0.215424pt;}
.lsd_c02332{letter-spacing:0.451968pt;}
.ls13_c02332{letter-spacing:0.456960pt;}
.ls10_c02332{letter-spacing:0.477312pt;}
.lsc_c02332{letter-spacing:0.515328pt;}
.ls12_c02332{letter-spacing:0.528000pt;}
.ls8_c02332{letter-spacing:0.532224pt;}
.ls1_c02332{letter-spacing:0.544896pt;}
.ls4_c02332{letter-spacing:0.637824pt;}
.ls2_c02332{letter-spacing:0.642048pt;}
.wsb_c02332{word-spacing:-13.445376pt;}
.ws9_c02332{word-spacing:-11.088000pt;}
.ws7_c02332{word-spacing:-11.075328pt;}
.ws8_c02332{word-spacing:-11.037312pt;}
.ws2_c02332{word-spacing:-10.775424pt;}
.wsc_c02332{word-spacing:-9.888384pt;}
.ws15_c02332{word-spacing:-1.919232pt;}
.wse_c02332{word-spacing:-0.865920pt;}
.ws16_c02332{word-spacing:-0.359040pt;}
.ws10_c02332{word-spacing:-0.105600pt;}
.ws13_c02332{word-spacing:-0.088704pt;}
.ws11_c02332{word-spacing:-0.084480pt;}
.ws14_c02332{word-spacing:-0.076032pt;}
.wsf_c02332{word-spacing:0.000000pt;}
.ws12_c02332{word-spacing:0.819456pt;}
.wsa_c02332{word-spacing:29.600256pt;}
.ws5_c02332{word-spacing:32.659968pt;}
.ws1_c02332{word-spacing:33.563904pt;}
.ws0_c02332{word-spacing:33.796224pt;}
.ws3_c02332{word-spacing:34.860672pt;}
.ws4_c02332{word-spacing:35.468928pt;}
.wsd_c02332{word-spacing:37.357056pt;}
.ws6_c02332{word-spacing:47.596032pt;}
._0_c02332{margin-left:-1.731840pt;}
._2_c02332{width:1.317888pt;}
._5_c02332{width:2.496384pt;}
._4_c02332{width:3.995904pt;}
._6_c02332{width:13.073664pt;}
._1_c02332{width:44.668800pt;}
._3_c02332{width:45.805056pt;}
.fs0_c02332{font-size:42.240000pt;}
.fs1_c02332{font-size:53.760000pt;}
.y0_c02332{bottom:0.000000pt;}
.y19_c02332{bottom:130.665211pt;}
.y1b_c02332{bottom:165.866875pt;}
.y1a_c02332{bottom:174.507067pt;}
.y18_c02332{bottom:245.225371pt;}
.y17_c02332{bottom:317.225563pt;}
.y15_c02332{bottom:361.386427pt;}
.y11_c02332{bottom:377.386939pt;}
.y16_c02332{bottom:407.786011pt;}
.y14_c02332{bottom:437.226235pt;}
.y13_c02332{bottom:453.226747pt;}
.y10_c02332{bottom:482.666971pt;}
.y12_c02332{bottom:497.386555pt;}
.yf_c02332{bottom:513.387067pt;}
.y1c_c02332{bottom:546.027067pt;}
.yb_c02332{bottom:593.385179pt;}
.yd_c02332{bottom:628.586875pt;}
.yc_c02332{bottom:637.227067pt;}
.ya_c02332{bottom:707.945339pt;}
.y9_c02332{bottom:779.945531pt;}
.y7_c02332{bottom:823.786427pt;}
.y3_c02332{bottom:839.786939pt;}
.y8_c02332{bottom:870.505979pt;}
.y6_c02332{bottom:899.946203pt;}
.y5_c02332{bottom:915.946715pt;}
.y2_c02332{bottom:945.386939pt;}
.y4_c02332{bottom:959.786555pt;}
.y1_c02332{bottom:975.787067pt;}
.ye_c02332{bottom:1008.747067pt;}
.h3_c02332{height:28.916250pt;}
.h1_c02332{height:37.063125pt;}
.h2_c02332{height:37.166250pt;}
.h4_c02332{height:48.581988pt;}
.h0_c02332{height:1122.666667pt;}
.w1_c02332{width:793.333333pt;}
.w0_c02332{width:793.626667pt;}
.x0_c02332{left:0.000000pt;}
.xd_c02332{left:104.000000pt;}
.x8_c02332{left:391.999872pt;}
.x4_c02332{left:396.160512pt;}
.xb_c02332{left:400.960000pt;}
.x7_c02332{left:404.799648pt;}
.x5_c02332{left:410.560128pt;}
.x1_c02332{left:411.840000pt;}
.xa_c02332{left:429.760320pt;}
.x9_c02332{left:437.439552pt;}
.x6_c02332{left:438.400512pt;}
.xc_c02332{left:450.560320pt;}
.x3_c02332{left:455.039904pt;}
.x2_c02332{left:468.159648pt;}
}





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

.ir_c02333:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02333{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02333;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02333{font-family:ff1_c02333;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02333;src:url('chunks/assets/font_c2ff4f28d8fac691be240661.woff2')format("woff");}.ff2_c02333{font-family:ff2_c02333;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02333;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02333{font-family:ff3_c02333;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02333;src:url('chunks/assets/font_7bead9cb968633965bf2cac4.woff2')format("woff");}.ff4_c02333{font-family:ff4_c02333;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02333{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02333{vertical-align:0.000000px;}
.v1_c02333{vertical-align:1.439424px;}
.lsa_c02333{letter-spacing:-0.755568px;}
.lsb_c02333{letter-spacing:-0.574992px;}
.lsc_c02333{letter-spacing:-0.361152px;}
.ls12_c02333{letter-spacing:-0.275616px;}
.ls10_c02333{letter-spacing:-0.261360px;}
.ls7_c02333{letter-spacing:-0.242352px;}
.ls4_c02333{letter-spacing:-0.118800px;}
.ls15_c02333{letter-spacing:0.000000px;}
.ls0_c02333{letter-spacing:0.006048px;}
.ls17_c02333{letter-spacing:0.014256px;}
.ls1_c02333{letter-spacing:0.033264px;}
.lsf_c02333{letter-spacing:0.042768px;}
.ls6_c02333{letter-spacing:0.128304px;}
.ls8_c02333{letter-spacing:0.242352px;}
.lse_c02333{letter-spacing:0.508464px;}
.ls14_c02333{letter-spacing:0.514080px;}
.ls11_c02333{letter-spacing:0.536976px;}
.lsd_c02333{letter-spacing:0.579744px;}
.ls13_c02333{letter-spacing:0.594000px;}
.ls9_c02333{letter-spacing:0.598752px;}
.ls2_c02333{letter-spacing:0.613008px;}
.ls16_c02333{letter-spacing:0.665280px;}
.ls5_c02333{letter-spacing:0.717552px;}
.ls3_c02333{letter-spacing:0.722304px;}
.sc__c02333{text-shadow:none;}
.sc0_c02333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02333{-webkit-text-stroke:0px transparent;}
.sc0_c02333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c02333{word-spacing:-47.520000px;}
.wsc_c02333{word-spacing:-15.126048px;}
.wsa_c02333{word-spacing:-12.474000px;}
.ws8_c02333{word-spacing:-12.459744px;}
.ws9_c02333{word-spacing:-12.416976px;}
.ws2_c02333{word-spacing:-12.122352px;}
.wsd_c02333{word-spacing:-11.761200px;}
.wsf_c02333{word-spacing:-11.637648px;}
.ws4_c02333{word-spacing:-11.124432px;}
.ws17_c02333{word-spacing:-2.159136px;}
.ws18_c02333{word-spacing:-1.026432px;}
.ws11_c02333{word-spacing:-0.974160px;}
.ws14_c02333{word-spacing:-0.403920px;}
.ws1a_c02333{word-spacing:-0.394416px;}
.ws19_c02333{word-spacing:-0.375408px;}
.ws13_c02333{word-spacing:-0.118800px;}
.ws15_c02333{word-spacing:-0.099792px;}
.ws16_c02333{word-spacing:-0.085536px;}
.ws12_c02333{word-spacing:0.000000px;}
.wse_c02333{word-spacing:1.330560px;}
.wsb_c02333{word-spacing:33.300288px;}
.ws6_c02333{word-spacing:36.742464px;}
.ws1_c02333{word-spacing:37.759392px;}
.ws0_c02333{word-spacing:38.020752px;}
.ws3_c02333{word-spacing:39.218256px;}
.ws5_c02333{word-spacing:39.902544px;}
.ws7_c02333{word-spacing:42.026688px;}
._0_c02333{margin-left:-1.948320px;}
._2_c02333{width:1.482624px;}
._4_c02333{width:3.369168px;}
._6_c02333{width:4.785264px;}
._5_c02333{width:14.707872px;}
._1_c02333{width:50.252400px;}
._3_c02333{width:51.530688px;}
.fc0_c02333{color:rgb(0,0,0);}
.fs0_c02333{font-size:47.520000px;}
.fs1_c02333{font-size:60.480000px;}
.y0_c02333{bottom:0.000000px;}
.y19_c02333{bottom:146.998506px;}
.y1b_c02333{bottom:186.600234px;}
.y1a_c02333{bottom:196.320450px;}
.y18_c02333{bottom:275.878686px;}
.y17_c02333{bottom:356.878902px;}
.y15_c02333{bottom:406.559874px;}
.y11_c02333{bottom:424.560450px;}
.y16_c02333{bottom:458.759406px;}
.y14_c02333{bottom:491.879658px;}
.y13_c02333{bottom:509.880234px;}
.y10_c02333{bottom:543.000342px;}
.y12_c02333{bottom:559.560018px;}
.yf_c02333{bottom:577.560450px;}
.y1c_c02333{bottom:614.280450px;}
.yb_c02333{bottom:667.558326px;}
.yd_c02333{bottom:707.160234px;}
.yc_c02333{bottom:716.880450px;}
.ya_c02333{bottom:796.438506px;}
.y9_c02333{bottom:877.438722px;}
.y7_c02333{bottom:926.759730px;}
.y3_c02333{bottom:944.760306px;}
.y8_c02333{bottom:979.319226px;}
.y6_c02333{bottom:1012.439478px;}
.y5_c02333{bottom:1030.440054px;}
.y2_c02333{bottom:1063.560306px;}
.y4_c02333{bottom:1079.759874px;}
.y1_c02333{bottom:1097.760450px;}
.ye_c02333{bottom:1134.840450px;}
.h3_c02333{height:32.530781px;}
.h1_c02333{height:41.696016px;}
.h2_c02333{height:41.812031px;}
.h4_c02333{height:54.654737px;}
.h0_c02333{height:1263.000000px;}
.w1_c02333{width:892.500000px;}
.w0_c02333{width:892.830000px;}
.x0_c02333{left:0.000000px;}
.xd_c02333{left:117.000000px;}
.x8_c02333{left:440.999856px;}
.x4_c02333{left:445.680576px;}
.xb_c02333{left:451.080000px;}
.x7_c02333{left:455.399604px;}
.x5_c02333{left:461.880144px;}
.x1_c02333{left:463.320000px;}
.xa_c02333{left:483.480360px;}
.x9_c02333{left:492.119496px;}
.x6_c02333{left:493.200576px;}
.xc_c02333{left:506.880360px;}
.x3_c02333{left:511.919892px;}
.x2_c02333{left:526.679604px;}
@media print{
.v0_c02333{vertical-align:0.000000pt;}
.v1_c02333{vertical-align:1.279488pt;}
.lsa_c02333{letter-spacing:-0.671616pt;}
.lsb_c02333{letter-spacing:-0.511104pt;}
.lsc_c02333{letter-spacing:-0.321024pt;}
.ls12_c02333{letter-spacing:-0.244992pt;}
.ls10_c02333{letter-spacing:-0.232320pt;}
.ls7_c02333{letter-spacing:-0.215424pt;}
.ls4_c02333{letter-spacing:-0.105600pt;}
.ls15_c02333{letter-spacing:0.000000pt;}
.ls0_c02333{letter-spacing:0.005376pt;}
.ls17_c02333{letter-spacing:0.012672pt;}
.ls1_c02333{letter-spacing:0.029568pt;}
.lsf_c02333{letter-spacing:0.038016pt;}
.ls6_c02333{letter-spacing:0.114048pt;}
.ls8_c02333{letter-spacing:0.215424pt;}
.lse_c02333{letter-spacing:0.451968pt;}
.ls14_c02333{letter-spacing:0.456960pt;}
.ls11_c02333{letter-spacing:0.477312pt;}
.lsd_c02333{letter-spacing:0.515328pt;}
.ls13_c02333{letter-spacing:0.528000pt;}
.ls9_c02333{letter-spacing:0.532224pt;}
.ls2_c02333{letter-spacing:0.544896pt;}
.ls16_c02333{letter-spacing:0.591360pt;}
.ls5_c02333{letter-spacing:0.637824pt;}
.ls3_c02333{letter-spacing:0.642048pt;}
.ws10_c02333{word-spacing:-42.240000pt;}
.wsc_c02333{word-spacing:-13.445376pt;}
.wsa_c02333{word-spacing:-11.088000pt;}
.ws8_c02333{word-spacing:-11.075328pt;}
.ws9_c02333{word-spacing:-11.037312pt;}
.ws2_c02333{word-spacing:-10.775424pt;}
.wsd_c02333{word-spacing:-10.454400pt;}
.wsf_c02333{word-spacing:-10.344576pt;}
.ws4_c02333{word-spacing:-9.888384pt;}
.ws17_c02333{word-spacing:-1.919232pt;}
.ws18_c02333{word-spacing:-0.912384pt;}
.ws11_c02333{word-spacing:-0.865920pt;}
.ws14_c02333{word-spacing:-0.359040pt;}
.ws1a_c02333{word-spacing:-0.350592pt;}
.ws19_c02333{word-spacing:-0.333696pt;}
.ws13_c02333{word-spacing:-0.105600pt;}
.ws15_c02333{word-spacing:-0.088704pt;}
.ws16_c02333{word-spacing:-0.076032pt;}
.ws12_c02333{word-spacing:0.000000pt;}
.wse_c02333{word-spacing:1.182720pt;}
.wsb_c02333{word-spacing:29.600256pt;}
.ws6_c02333{word-spacing:32.659968pt;}
.ws1_c02333{word-spacing:33.563904pt;}
.ws0_c02333{word-spacing:33.796224pt;}
.ws3_c02333{word-spacing:34.860672pt;}
.ws5_c02333{word-spacing:35.468928pt;}
.ws7_c02333{word-spacing:37.357056pt;}
._0_c02333{margin-left:-1.731840pt;}
._2_c02333{width:1.317888pt;}
._4_c02333{width:2.994816pt;}
._6_c02333{width:4.253568pt;}
._5_c02333{width:13.073664pt;}
._1_c02333{width:44.668800pt;}
._3_c02333{width:45.805056pt;}
.fs0_c02333{font-size:42.240000pt;}
.fs1_c02333{font-size:53.760000pt;}
.y0_c02333{bottom:0.000000pt;}
.y19_c02333{bottom:130.665339pt;}
.y1b_c02333{bottom:165.866875pt;}
.y1a_c02333{bottom:174.507067pt;}
.y18_c02333{bottom:245.225499pt;}
.y17_c02333{bottom:317.225691pt;}
.y15_c02333{bottom:361.386555pt;}
.y11_c02333{bottom:377.387067pt;}
.y16_c02333{bottom:407.786139pt;}
.y14_c02333{bottom:437.226363pt;}
.y13_c02333{bottom:453.226875pt;}
.y10_c02333{bottom:482.666971pt;}
.y12_c02333{bottom:497.386683pt;}
.yf_c02333{bottom:513.387067pt;}
.y1c_c02333{bottom:546.027067pt;}
.yb_c02333{bottom:593.385179pt;}
.yd_c02333{bottom:628.586875pt;}
.yc_c02333{bottom:637.227067pt;}
.ya_c02333{bottom:707.945339pt;}
.y9_c02333{bottom:779.945531pt;}
.y7_c02333{bottom:823.786427pt;}
.y3_c02333{bottom:839.786939pt;}
.y8_c02333{bottom:870.505979pt;}
.y6_c02333{bottom:899.946203pt;}
.y5_c02333{bottom:915.946715pt;}
.y2_c02333{bottom:945.386939pt;}
.y4_c02333{bottom:959.786555pt;}
.y1_c02333{bottom:975.787067pt;}
.ye_c02333{bottom:1008.747067pt;}
.h3_c02333{height:28.916250pt;}
.h1_c02333{height:37.063125pt;}
.h2_c02333{height:37.166250pt;}
.h4_c02333{height:48.581988pt;}
.h0_c02333{height:1122.666667pt;}
.w1_c02333{width:793.333333pt;}
.w0_c02333{width:793.626667pt;}
.x0_c02333{left:0.000000pt;}
.xd_c02333{left:104.000000pt;}
.x8_c02333{left:391.999872pt;}
.x4_c02333{left:396.160512pt;}
.xb_c02333{left:400.960000pt;}
.x7_c02333{left:404.799648pt;}
.x5_c02333{left:410.560128pt;}
.x1_c02333{left:411.840000pt;}
.xa_c02333{left:429.760320pt;}
.x9_c02333{left:437.439552pt;}
.x6_c02333{left:438.400512pt;}
.xc_c02333{left:450.560320pt;}
.x3_c02333{left:455.039904pt;}
.x2_c02333{left:468.159648pt;}
}





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

.ir_c02334:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02334{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02334;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02334{font-family:ff1_c02334;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02334;src:url('chunks/assets/font_f9d81c4ab4e9f5d128217a36.woff2')format("woff");}.ff2_c02334{font-family:ff2_c02334;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02334;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02334{font-family:ff3_c02334;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02334{vertical-align:0.000000px;}
.v1_c02334{vertical-align:1.439424px;}
.lsc_c02334{letter-spacing:-1.197504px;}
.ls7_c02334{letter-spacing:-0.613008px;}
.ls9_c02334{letter-spacing:-0.574992px;}
.lsf_c02334{letter-spacing:-0.275616px;}
.lsd_c02334{letter-spacing:-0.261360px;}
.ls6_c02334{letter-spacing:-0.242352px;}
.ls4_c02334{letter-spacing:-0.118800px;}
.ls12_c02334{letter-spacing:0.000000px;}
.ls1_c02334{letter-spacing:0.006048px;}
.ls5_c02334{letter-spacing:0.128304px;}
.lsb_c02334{letter-spacing:0.508464px;}
.ls11_c02334{letter-spacing:0.514080px;}
.lse_c02334{letter-spacing:0.536976px;}
.lsa_c02334{letter-spacing:0.579744px;}
.ls10_c02334{letter-spacing:0.594000px;}
.ls8_c02334{letter-spacing:0.598752px;}
.ls2_c02334{letter-spacing:0.613008px;}
.ls0_c02334{letter-spacing:0.717552px;}
.ls3_c02334{letter-spacing:0.722304px;}
.sc__c02334{text-shadow:none;}
.sc0_c02334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02334{-webkit-text-stroke:0px transparent;}
.sc0_c02334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02334{word-spacing:-15.126048px;}
.wsa_c02334{word-spacing:-12.474000px;}
.ws8_c02334{word-spacing:-12.459744px;}
.ws9_c02334{word-spacing:-12.416976px;}
.ws4_c02334{word-spacing:-11.637648px;}
.ws2_c02334{word-spacing:-11.266992px;}
.ws14_c02334{word-spacing:-2.159136px;}
.ws10_c02334{word-spacing:-1.078704px;}
.wsd_c02334{word-spacing:-0.974160px;}
.wsf_c02334{word-spacing:-0.118800px;}
.ws12_c02334{word-spacing:-0.099792px;}
.ws13_c02334{word-spacing:-0.085536px;}
.wse_c02334{word-spacing:0.000000px;}
.ws11_c02334{word-spacing:0.836352px;}
.wsb_c02334{word-spacing:33.300288px;}
.ws6_c02334{word-spacing:36.742464px;}
.ws1_c02334{word-spacing:37.759392px;}
.ws0_c02334{word-spacing:38.020752px;}
.ws3_c02334{word-spacing:39.218256px;}
.ws5_c02334{word-spacing:39.902544px;}
.ws7_c02334{word-spacing:42.026688px;}
._0_c02334{margin-left:-1.948320px;}
._2_c02334{width:1.482624px;}
._4_c02334{width:3.302640px;}
._5_c02334{width:14.707872px;}
._1_c02334{width:50.252400px;}
._3_c02334{width:51.530688px;}
.fc0_c02334{color:rgb(0,0,0);}
.fs0_c02334{font-size:47.520000px;}
.fs1_c02334{font-size:60.480000px;}
.y0_c02334{bottom:0.000000px;}
.y19_c02334{bottom:146.998362px;}
.y1b_c02334{bottom:186.600234px;}
.y1a_c02334{bottom:196.320450px;}
.y18_c02334{bottom:275.878542px;}
.y17_c02334{bottom:356.878758px;}
.y15_c02334{bottom:406.559730px;}
.y11_c02334{bottom:424.560306px;}
.y16_c02334{bottom:458.759262px;}
.y14_c02334{bottom:491.879514px;}
.y13_c02334{bottom:509.880090px;}
.y10_c02334{bottom:543.000342px;}
.y12_c02334{bottom:559.559874px;}
.yf_c02334{bottom:577.560450px;}
.y1c_c02334{bottom:614.280450px;}
.yb_c02334{bottom:667.558326px;}
.yd_c02334{bottom:707.160234px;}
.yc_c02334{bottom:716.880450px;}
.ya_c02334{bottom:796.438506px;}
.y9_c02334{bottom:877.438722px;}
.y7_c02334{bottom:926.759730px;}
.y3_c02334{bottom:944.760306px;}
.y8_c02334{bottom:979.319226px;}
.y6_c02334{bottom:1012.439478px;}
.y5_c02334{bottom:1030.440054px;}
.y2_c02334{bottom:1063.560306px;}
.y4_c02334{bottom:1079.759874px;}
.y1_c02334{bottom:1097.760450px;}
.ye_c02334{bottom:1134.840450px;}
.h3_c02334{height:32.530781px;}
.h1_c02334{height:41.696016px;}
.h2_c02334{height:41.812031px;}
.h4_c02334{height:54.654737px;}
.h0_c02334{height:1263.000000px;}
.w1_c02334{width:892.500000px;}
.w0_c02334{width:892.830000px;}
.x0_c02334{left:0.000000px;}
.xd_c02334{left:117.000000px;}
.x8_c02334{left:440.999856px;}
.x4_c02334{left:445.680576px;}
.xb_c02334{left:451.080000px;}
.x7_c02334{left:455.399604px;}
.x5_c02334{left:461.880144px;}
.x1_c02334{left:463.320000px;}
.xa_c02334{left:483.480360px;}
.x9_c02334{left:492.119496px;}
.x6_c02334{left:493.200576px;}
.xc_c02334{left:506.880360px;}
.x3_c02334{left:511.919892px;}
.x2_c02334{left:526.679604px;}
@media print{
.v0_c02334{vertical-align:0.000000pt;}
.v1_c02334{vertical-align:1.279488pt;}
.lsc_c02334{letter-spacing:-1.064448pt;}
.ls7_c02334{letter-spacing:-0.544896pt;}
.ls9_c02334{letter-spacing:-0.511104pt;}
.lsf_c02334{letter-spacing:-0.244992pt;}
.lsd_c02334{letter-spacing:-0.232320pt;}
.ls6_c02334{letter-spacing:-0.215424pt;}
.ls4_c02334{letter-spacing:-0.105600pt;}
.ls12_c02334{letter-spacing:0.000000pt;}
.ls1_c02334{letter-spacing:0.005376pt;}
.ls5_c02334{letter-spacing:0.114048pt;}
.lsb_c02334{letter-spacing:0.451968pt;}
.ls11_c02334{letter-spacing:0.456960pt;}
.lse_c02334{letter-spacing:0.477312pt;}
.lsa_c02334{letter-spacing:0.515328pt;}
.ls10_c02334{letter-spacing:0.528000pt;}
.ls8_c02334{letter-spacing:0.532224pt;}
.ls2_c02334{letter-spacing:0.544896pt;}
.ls0_c02334{letter-spacing:0.637824pt;}
.ls3_c02334{letter-spacing:0.642048pt;}
.wsc_c02334{word-spacing:-13.445376pt;}
.wsa_c02334{word-spacing:-11.088000pt;}
.ws8_c02334{word-spacing:-11.075328pt;}
.ws9_c02334{word-spacing:-11.037312pt;}
.ws4_c02334{word-spacing:-10.344576pt;}
.ws2_c02334{word-spacing:-10.015104pt;}
.ws14_c02334{word-spacing:-1.919232pt;}
.ws10_c02334{word-spacing:-0.958848pt;}
.wsd_c02334{word-spacing:-0.865920pt;}
.wsf_c02334{word-spacing:-0.105600pt;}
.ws12_c02334{word-spacing:-0.088704pt;}
.ws13_c02334{word-spacing:-0.076032pt;}
.wse_c02334{word-spacing:0.000000pt;}
.ws11_c02334{word-spacing:0.743424pt;}
.wsb_c02334{word-spacing:29.600256pt;}
.ws6_c02334{word-spacing:32.659968pt;}
.ws1_c02334{word-spacing:33.563904pt;}
.ws0_c02334{word-spacing:33.796224pt;}
.ws3_c02334{word-spacing:34.860672pt;}
.ws5_c02334{word-spacing:35.468928pt;}
.ws7_c02334{word-spacing:37.357056pt;}
._0_c02334{margin-left:-1.731840pt;}
._2_c02334{width:1.317888pt;}
._4_c02334{width:2.935680pt;}
._5_c02334{width:13.073664pt;}
._1_c02334{width:44.668800pt;}
._3_c02334{width:45.805056pt;}
.fs0_c02334{font-size:42.240000pt;}
.fs1_c02334{font-size:53.760000pt;}
.y0_c02334{bottom:0.000000pt;}
.y19_c02334{bottom:130.665211pt;}
.y1b_c02334{bottom:165.866875pt;}
.y1a_c02334{bottom:174.507067pt;}
.y18_c02334{bottom:245.225371pt;}
.y17_c02334{bottom:317.225563pt;}
.y15_c02334{bottom:361.386427pt;}
.y11_c02334{bottom:377.386939pt;}
.y16_c02334{bottom:407.786011pt;}
.y14_c02334{bottom:437.226235pt;}
.y13_c02334{bottom:453.226747pt;}
.y10_c02334{bottom:482.666971pt;}
.y12_c02334{bottom:497.386555pt;}
.yf_c02334{bottom:513.387067pt;}
.y1c_c02334{bottom:546.027067pt;}
.yb_c02334{bottom:593.385179pt;}
.yd_c02334{bottom:628.586875pt;}
.yc_c02334{bottom:637.227067pt;}
.ya_c02334{bottom:707.945339pt;}
.y9_c02334{bottom:779.945531pt;}
.y7_c02334{bottom:823.786427pt;}
.y3_c02334{bottom:839.786939pt;}
.y8_c02334{bottom:870.505979pt;}
.y6_c02334{bottom:899.946203pt;}
.y5_c02334{bottom:915.946715pt;}
.y2_c02334{bottom:945.386939pt;}
.y4_c02334{bottom:959.786555pt;}
.y1_c02334{bottom:975.787067pt;}
.ye_c02334{bottom:1008.747067pt;}
.h3_c02334{height:28.916250pt;}
.h1_c02334{height:37.063125pt;}
.h2_c02334{height:37.166250pt;}
.h4_c02334{height:48.581988pt;}
.h0_c02334{height:1122.666667pt;}
.w1_c02334{width:793.333333pt;}
.w0_c02334{width:793.626667pt;}
.x0_c02334{left:0.000000pt;}
.xd_c02334{left:104.000000pt;}
.x8_c02334{left:391.999872pt;}
.x4_c02334{left:396.160512pt;}
.xb_c02334{left:400.960000pt;}
.x7_c02334{left:404.799648pt;}
.x5_c02334{left:410.560128pt;}
.x1_c02334{left:411.840000pt;}
.xa_c02334{left:429.760320pt;}
.x9_c02334{left:437.439552pt;}
.x6_c02334{left:438.400512pt;}
.xc_c02334{left:450.560320pt;}
.x3_c02334{left:455.039904pt;}
.x2_c02334{left:468.159648pt;}
}





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

.ir_c02335:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02335{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02335;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02335{font-family:ff1_c02335;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02335;src:url('chunks/assets/font_f9d81c4ab4e9f5d128217a36.woff2')format("woff");}.ff2_c02335{font-family:ff2_c02335;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02335;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02335{font-family:ff3_c02335;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02335{vertical-align:0.000000px;}
.v1_c02335{vertical-align:1.439424px;}
.lsc_c02335{letter-spacing:-1.197504px;}
.ls7_c02335{letter-spacing:-0.613008px;}
.ls9_c02335{letter-spacing:-0.574992px;}
.lsf_c02335{letter-spacing:-0.275616px;}
.lsd_c02335{letter-spacing:-0.261360px;}
.ls6_c02335{letter-spacing:-0.242352px;}
.ls4_c02335{letter-spacing:-0.118800px;}
.ls12_c02335{letter-spacing:0.000000px;}
.ls1_c02335{letter-spacing:0.006048px;}
.ls5_c02335{letter-spacing:0.128304px;}
.lsb_c02335{letter-spacing:0.508464px;}
.ls11_c02335{letter-spacing:0.514080px;}
.lse_c02335{letter-spacing:0.536976px;}
.lsa_c02335{letter-spacing:0.579744px;}
.ls10_c02335{letter-spacing:0.594000px;}
.ls8_c02335{letter-spacing:0.598752px;}
.ls2_c02335{letter-spacing:0.613008px;}
.ls0_c02335{letter-spacing:0.717552px;}
.ls3_c02335{letter-spacing:0.722304px;}
.sc__c02335{text-shadow:none;}
.sc0_c02335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02335{-webkit-text-stroke:0px transparent;}
.sc0_c02335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02335{word-spacing:-15.126048px;}
.wsa_c02335{word-spacing:-12.474000px;}
.ws8_c02335{word-spacing:-12.459744px;}
.ws9_c02335{word-spacing:-12.416976px;}
.ws4_c02335{word-spacing:-11.637648px;}
.ws2_c02335{word-spacing:-11.266992px;}
.ws14_c02335{word-spacing:-2.159136px;}
.ws10_c02335{word-spacing:-1.078704px;}
.wsd_c02335{word-spacing:-0.974160px;}
.wsf_c02335{word-spacing:-0.118800px;}
.ws12_c02335{word-spacing:-0.099792px;}
.ws13_c02335{word-spacing:-0.085536px;}
.wse_c02335{word-spacing:0.000000px;}
.ws11_c02335{word-spacing:0.836352px;}
.wsb_c02335{word-spacing:33.300288px;}
.ws6_c02335{word-spacing:36.742464px;}
.ws1_c02335{word-spacing:37.759392px;}
.ws0_c02335{word-spacing:38.020752px;}
.ws3_c02335{word-spacing:39.218256px;}
.ws5_c02335{word-spacing:39.902544px;}
.ws7_c02335{word-spacing:42.026688px;}
._0_c02335{margin-left:-1.948320px;}
._2_c02335{width:1.482624px;}
._4_c02335{width:3.302640px;}
._5_c02335{width:14.707872px;}
._1_c02335{width:50.252400px;}
._3_c02335{width:51.530688px;}
.fc0_c02335{color:rgb(0,0,0);}
.fs0_c02335{font-size:47.520000px;}
.fs1_c02335{font-size:60.480000px;}
.y0_c02335{bottom:0.000000px;}
.y19_c02335{bottom:146.998362px;}
.y1b_c02335{bottom:186.600234px;}
.y1a_c02335{bottom:196.320450px;}
.y18_c02335{bottom:275.878542px;}
.y17_c02335{bottom:356.878758px;}
.y15_c02335{bottom:406.559730px;}
.y11_c02335{bottom:424.560306px;}
.y16_c02335{bottom:458.759262px;}
.y14_c02335{bottom:491.879514px;}
.y13_c02335{bottom:509.880090px;}
.y10_c02335{bottom:543.000342px;}
.y12_c02335{bottom:559.559874px;}
.yf_c02335{bottom:577.560450px;}
.y1c_c02335{bottom:614.280450px;}
.yb_c02335{bottom:667.558326px;}
.yd_c02335{bottom:707.160234px;}
.yc_c02335{bottom:716.880450px;}
.ya_c02335{bottom:796.438506px;}
.y9_c02335{bottom:877.438722px;}
.y7_c02335{bottom:926.759730px;}
.y3_c02335{bottom:944.760306px;}
.y8_c02335{bottom:979.319226px;}
.y6_c02335{bottom:1012.439478px;}
.y5_c02335{bottom:1030.440054px;}
.y2_c02335{bottom:1063.560306px;}
.y4_c02335{bottom:1079.759874px;}
.y1_c02335{bottom:1097.760450px;}
.ye_c02335{bottom:1134.840450px;}
.h3_c02335{height:32.530781px;}
.h1_c02335{height:41.696016px;}
.h2_c02335{height:41.812031px;}
.h4_c02335{height:54.654737px;}
.h0_c02335{height:1263.000000px;}
.w1_c02335{width:892.500000px;}
.w0_c02335{width:892.830000px;}
.x0_c02335{left:0.000000px;}
.xd_c02335{left:117.000000px;}
.x8_c02335{left:440.999856px;}
.x4_c02335{left:445.680576px;}
.xb_c02335{left:451.080000px;}
.x7_c02335{left:455.399604px;}
.x5_c02335{left:461.880144px;}
.x1_c02335{left:463.320000px;}
.xa_c02335{left:483.480360px;}
.x9_c02335{left:492.119496px;}
.x6_c02335{left:493.200576px;}
.xc_c02335{left:506.880360px;}
.x3_c02335{left:511.919892px;}
.x2_c02335{left:526.679604px;}
@media print{
.v0_c02335{vertical-align:0.000000pt;}
.v1_c02335{vertical-align:1.279488pt;}
.lsc_c02335{letter-spacing:-1.064448pt;}
.ls7_c02335{letter-spacing:-0.544896pt;}
.ls9_c02335{letter-spacing:-0.511104pt;}
.lsf_c02335{letter-spacing:-0.244992pt;}
.lsd_c02335{letter-spacing:-0.232320pt;}
.ls6_c02335{letter-spacing:-0.215424pt;}
.ls4_c02335{letter-spacing:-0.105600pt;}
.ls12_c02335{letter-spacing:0.000000pt;}
.ls1_c02335{letter-spacing:0.005376pt;}
.ls5_c02335{letter-spacing:0.114048pt;}
.lsb_c02335{letter-spacing:0.451968pt;}
.ls11_c02335{letter-spacing:0.456960pt;}
.lse_c02335{letter-spacing:0.477312pt;}
.lsa_c02335{letter-spacing:0.515328pt;}
.ls10_c02335{letter-spacing:0.528000pt;}
.ls8_c02335{letter-spacing:0.532224pt;}
.ls2_c02335{letter-spacing:0.544896pt;}
.ls0_c02335{letter-spacing:0.637824pt;}
.ls3_c02335{letter-spacing:0.642048pt;}
.wsc_c02335{word-spacing:-13.445376pt;}
.wsa_c02335{word-spacing:-11.088000pt;}
.ws8_c02335{word-spacing:-11.075328pt;}
.ws9_c02335{word-spacing:-11.037312pt;}
.ws4_c02335{word-spacing:-10.344576pt;}
.ws2_c02335{word-spacing:-10.015104pt;}
.ws14_c02335{word-spacing:-1.919232pt;}
.ws10_c02335{word-spacing:-0.958848pt;}
.wsd_c02335{word-spacing:-0.865920pt;}
.wsf_c02335{word-spacing:-0.105600pt;}
.ws12_c02335{word-spacing:-0.088704pt;}
.ws13_c02335{word-spacing:-0.076032pt;}
.wse_c02335{word-spacing:0.000000pt;}
.ws11_c02335{word-spacing:0.743424pt;}
.wsb_c02335{word-spacing:29.600256pt;}
.ws6_c02335{word-spacing:32.659968pt;}
.ws1_c02335{word-spacing:33.563904pt;}
.ws0_c02335{word-spacing:33.796224pt;}
.ws3_c02335{word-spacing:34.860672pt;}
.ws5_c02335{word-spacing:35.468928pt;}
.ws7_c02335{word-spacing:37.357056pt;}
._0_c02335{margin-left:-1.731840pt;}
._2_c02335{width:1.317888pt;}
._4_c02335{width:2.935680pt;}
._5_c02335{width:13.073664pt;}
._1_c02335{width:44.668800pt;}
._3_c02335{width:45.805056pt;}
.fs0_c02335{font-size:42.240000pt;}
.fs1_c02335{font-size:53.760000pt;}
.y0_c02335{bottom:0.000000pt;}
.y19_c02335{bottom:130.665211pt;}
.y1b_c02335{bottom:165.866875pt;}
.y1a_c02335{bottom:174.507067pt;}
.y18_c02335{bottom:245.225371pt;}
.y17_c02335{bottom:317.225563pt;}
.y15_c02335{bottom:361.386427pt;}
.y11_c02335{bottom:377.386939pt;}
.y16_c02335{bottom:407.786011pt;}
.y14_c02335{bottom:437.226235pt;}
.y13_c02335{bottom:453.226747pt;}
.y10_c02335{bottom:482.666971pt;}
.y12_c02335{bottom:497.386555pt;}
.yf_c02335{bottom:513.387067pt;}
.y1c_c02335{bottom:546.027067pt;}
.yb_c02335{bottom:593.385179pt;}
.yd_c02335{bottom:628.586875pt;}
.yc_c02335{bottom:637.227067pt;}
.ya_c02335{bottom:707.945339pt;}
.y9_c02335{bottom:779.945531pt;}
.y7_c02335{bottom:823.786427pt;}
.y3_c02335{bottom:839.786939pt;}
.y8_c02335{bottom:870.505979pt;}
.y6_c02335{bottom:899.946203pt;}
.y5_c02335{bottom:915.946715pt;}
.y2_c02335{bottom:945.386939pt;}
.y4_c02335{bottom:959.786555pt;}
.y1_c02335{bottom:975.787067pt;}
.ye_c02335{bottom:1008.747067pt;}
.h3_c02335{height:28.916250pt;}
.h1_c02335{height:37.063125pt;}
.h2_c02335{height:37.166250pt;}
.h4_c02335{height:48.581988pt;}
.h0_c02335{height:1122.666667pt;}
.w1_c02335{width:793.333333pt;}
.w0_c02335{width:793.626667pt;}
.x0_c02335{left:0.000000pt;}
.xd_c02335{left:104.000000pt;}
.x8_c02335{left:391.999872pt;}
.x4_c02335{left:396.160512pt;}
.xb_c02335{left:400.960000pt;}
.x7_c02335{left:404.799648pt;}
.x5_c02335{left:410.560128pt;}
.x1_c02335{left:411.840000pt;}
.xa_c02335{left:429.760320pt;}
.x9_c02335{left:437.439552pt;}
.x6_c02335{left:438.400512pt;}
.xc_c02335{left:450.560320pt;}
.x3_c02335{left:455.039904pt;}
.x2_c02335{left:468.159648pt;}
}





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

.ir_c02336:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02336{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02336;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02336{font-family:ff1_c02336;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02336;src:url('chunks/assets/font_f9d81c4ab4e9f5d128217a36.woff2')format("woff");}.ff2_c02336{font-family:ff2_c02336;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02336;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02336{font-family:ff3_c02336;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02336{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02336{vertical-align:0.000000px;}
.v1_c02336{vertical-align:1.439424px;}
.lsc_c02336{letter-spacing:-1.197504px;}
.ls7_c02336{letter-spacing:-0.613008px;}
.ls9_c02336{letter-spacing:-0.574992px;}
.lsf_c02336{letter-spacing:-0.275616px;}
.lsd_c02336{letter-spacing:-0.261360px;}
.ls6_c02336{letter-spacing:-0.242352px;}
.ls4_c02336{letter-spacing:-0.118800px;}
.ls12_c02336{letter-spacing:0.000000px;}
.ls1_c02336{letter-spacing:0.006048px;}
.ls5_c02336{letter-spacing:0.128304px;}
.lsb_c02336{letter-spacing:0.508464px;}
.ls11_c02336{letter-spacing:0.514080px;}
.lse_c02336{letter-spacing:0.536976px;}
.lsa_c02336{letter-spacing:0.579744px;}
.ls10_c02336{letter-spacing:0.594000px;}
.ls8_c02336{letter-spacing:0.598752px;}
.ls2_c02336{letter-spacing:0.613008px;}
.ls0_c02336{letter-spacing:0.717552px;}
.ls3_c02336{letter-spacing:0.722304px;}
.sc__c02336{text-shadow:none;}
.sc0_c02336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02336{-webkit-text-stroke:0px transparent;}
.sc0_c02336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02336{word-spacing:-15.126048px;}
.wsa_c02336{word-spacing:-12.474000px;}
.ws8_c02336{word-spacing:-12.459744px;}
.ws9_c02336{word-spacing:-12.416976px;}
.ws4_c02336{word-spacing:-11.637648px;}
.ws2_c02336{word-spacing:-11.266992px;}
.ws14_c02336{word-spacing:-2.159136px;}
.ws10_c02336{word-spacing:-1.078704px;}
.wsd_c02336{word-spacing:-0.974160px;}
.wsf_c02336{word-spacing:-0.118800px;}
.ws12_c02336{word-spacing:-0.099792px;}
.ws13_c02336{word-spacing:-0.085536px;}
.wse_c02336{word-spacing:0.000000px;}
.ws11_c02336{word-spacing:0.836352px;}
.wsb_c02336{word-spacing:33.300288px;}
.ws6_c02336{word-spacing:36.742464px;}
.ws1_c02336{word-spacing:37.759392px;}
.ws0_c02336{word-spacing:38.020752px;}
.ws3_c02336{word-spacing:39.218256px;}
.ws5_c02336{word-spacing:39.902544px;}
.ws7_c02336{word-spacing:42.026688px;}
._0_c02336{margin-left:-1.948320px;}
._2_c02336{width:1.482624px;}
._4_c02336{width:3.302640px;}
._5_c02336{width:14.707872px;}
._1_c02336{width:50.252400px;}
._3_c02336{width:51.530688px;}
.fc0_c02336{color:rgb(0,0,0);}
.fs0_c02336{font-size:47.520000px;}
.fs1_c02336{font-size:60.480000px;}
.y0_c02336{bottom:0.000000px;}
.y19_c02336{bottom:146.998362px;}
.y1b_c02336{bottom:186.600234px;}
.y1a_c02336{bottom:196.320450px;}
.y18_c02336{bottom:275.878542px;}
.y17_c02336{bottom:356.878758px;}
.y15_c02336{bottom:406.559730px;}
.y11_c02336{bottom:424.560306px;}
.y16_c02336{bottom:458.759262px;}
.y14_c02336{bottom:491.879514px;}
.y13_c02336{bottom:509.880090px;}
.y10_c02336{bottom:543.000342px;}
.y12_c02336{bottom:559.559874px;}
.yf_c02336{bottom:577.560450px;}
.y1c_c02336{bottom:614.280450px;}
.yb_c02336{bottom:667.558326px;}
.yd_c02336{bottom:707.160234px;}
.yc_c02336{bottom:716.880450px;}
.ya_c02336{bottom:796.438506px;}
.y9_c02336{bottom:877.438722px;}
.y7_c02336{bottom:926.759730px;}
.y3_c02336{bottom:944.760306px;}
.y8_c02336{bottom:979.319226px;}
.y6_c02336{bottom:1012.439478px;}
.y5_c02336{bottom:1030.440054px;}
.y2_c02336{bottom:1063.560306px;}
.y4_c02336{bottom:1079.759874px;}
.y1_c02336{bottom:1097.760450px;}
.ye_c02336{bottom:1134.840450px;}
.h3_c02336{height:32.530781px;}
.h1_c02336{height:41.696016px;}
.h2_c02336{height:41.812031px;}
.h4_c02336{height:54.654737px;}
.h0_c02336{height:1263.000000px;}
.w1_c02336{width:892.500000px;}
.w0_c02336{width:892.830000px;}
.x0_c02336{left:0.000000px;}
.xd_c02336{left:117.000000px;}
.x8_c02336{left:440.999856px;}
.x4_c02336{left:445.680576px;}
.xb_c02336{left:451.080000px;}
.x7_c02336{left:455.399604px;}
.x5_c02336{left:461.880144px;}
.x1_c02336{left:463.320000px;}
.xa_c02336{left:483.480360px;}
.x9_c02336{left:492.119496px;}
.x6_c02336{left:493.200576px;}
.xc_c02336{left:506.880360px;}
.x3_c02336{left:511.919892px;}
.x2_c02336{left:526.679604px;}
@media print{
.v0_c02336{vertical-align:0.000000pt;}
.v1_c02336{vertical-align:1.279488pt;}
.lsc_c02336{letter-spacing:-1.064448pt;}
.ls7_c02336{letter-spacing:-0.544896pt;}
.ls9_c02336{letter-spacing:-0.511104pt;}
.lsf_c02336{letter-spacing:-0.244992pt;}
.lsd_c02336{letter-spacing:-0.232320pt;}
.ls6_c02336{letter-spacing:-0.215424pt;}
.ls4_c02336{letter-spacing:-0.105600pt;}
.ls12_c02336{letter-spacing:0.000000pt;}
.ls1_c02336{letter-spacing:0.005376pt;}
.ls5_c02336{letter-spacing:0.114048pt;}
.lsb_c02336{letter-spacing:0.451968pt;}
.ls11_c02336{letter-spacing:0.456960pt;}
.lse_c02336{letter-spacing:0.477312pt;}
.lsa_c02336{letter-spacing:0.515328pt;}
.ls10_c02336{letter-spacing:0.528000pt;}
.ls8_c02336{letter-spacing:0.532224pt;}
.ls2_c02336{letter-spacing:0.544896pt;}
.ls0_c02336{letter-spacing:0.637824pt;}
.ls3_c02336{letter-spacing:0.642048pt;}
.wsc_c02336{word-spacing:-13.445376pt;}
.wsa_c02336{word-spacing:-11.088000pt;}
.ws8_c02336{word-spacing:-11.075328pt;}
.ws9_c02336{word-spacing:-11.037312pt;}
.ws4_c02336{word-spacing:-10.344576pt;}
.ws2_c02336{word-spacing:-10.015104pt;}
.ws14_c02336{word-spacing:-1.919232pt;}
.ws10_c02336{word-spacing:-0.958848pt;}
.wsd_c02336{word-spacing:-0.865920pt;}
.wsf_c02336{word-spacing:-0.105600pt;}
.ws12_c02336{word-spacing:-0.088704pt;}
.ws13_c02336{word-spacing:-0.076032pt;}
.wse_c02336{word-spacing:0.000000pt;}
.ws11_c02336{word-spacing:0.743424pt;}
.wsb_c02336{word-spacing:29.600256pt;}
.ws6_c02336{word-spacing:32.659968pt;}
.ws1_c02336{word-spacing:33.563904pt;}
.ws0_c02336{word-spacing:33.796224pt;}
.ws3_c02336{word-spacing:34.860672pt;}
.ws5_c02336{word-spacing:35.468928pt;}
.ws7_c02336{word-spacing:37.357056pt;}
._0_c02336{margin-left:-1.731840pt;}
._2_c02336{width:1.317888pt;}
._4_c02336{width:2.935680pt;}
._5_c02336{width:13.073664pt;}
._1_c02336{width:44.668800pt;}
._3_c02336{width:45.805056pt;}
.fs0_c02336{font-size:42.240000pt;}
.fs1_c02336{font-size:53.760000pt;}
.y0_c02336{bottom:0.000000pt;}
.y19_c02336{bottom:130.665211pt;}
.y1b_c02336{bottom:165.866875pt;}
.y1a_c02336{bottom:174.507067pt;}
.y18_c02336{bottom:245.225371pt;}
.y17_c02336{bottom:317.225563pt;}
.y15_c02336{bottom:361.386427pt;}
.y11_c02336{bottom:377.386939pt;}
.y16_c02336{bottom:407.786011pt;}
.y14_c02336{bottom:437.226235pt;}
.y13_c02336{bottom:453.226747pt;}
.y10_c02336{bottom:482.666971pt;}
.y12_c02336{bottom:497.386555pt;}
.yf_c02336{bottom:513.387067pt;}
.y1c_c02336{bottom:546.027067pt;}
.yb_c02336{bottom:593.385179pt;}
.yd_c02336{bottom:628.586875pt;}
.yc_c02336{bottom:637.227067pt;}
.ya_c02336{bottom:707.945339pt;}
.y9_c02336{bottom:779.945531pt;}
.y7_c02336{bottom:823.786427pt;}
.y3_c02336{bottom:839.786939pt;}
.y8_c02336{bottom:870.505979pt;}
.y6_c02336{bottom:899.946203pt;}
.y5_c02336{bottom:915.946715pt;}
.y2_c02336{bottom:945.386939pt;}
.y4_c02336{bottom:959.786555pt;}
.y1_c02336{bottom:975.787067pt;}
.ye_c02336{bottom:1008.747067pt;}
.h3_c02336{height:28.916250pt;}
.h1_c02336{height:37.063125pt;}
.h2_c02336{height:37.166250pt;}
.h4_c02336{height:48.581988pt;}
.h0_c02336{height:1122.666667pt;}
.w1_c02336{width:793.333333pt;}
.w0_c02336{width:793.626667pt;}
.x0_c02336{left:0.000000pt;}
.xd_c02336{left:104.000000pt;}
.x8_c02336{left:391.999872pt;}
.x4_c02336{left:396.160512pt;}
.xb_c02336{left:400.960000pt;}
.x7_c02336{left:404.799648pt;}
.x5_c02336{left:410.560128pt;}
.x1_c02336{left:411.840000pt;}
.xa_c02336{left:429.760320pt;}
.x9_c02336{left:437.439552pt;}
.x6_c02336{left:438.400512pt;}
.xc_c02336{left:450.560320pt;}
.x3_c02336{left:455.039904pt;}
.x2_c02336{left:468.159648pt;}
}





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

.ir_c02337:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02337{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02337;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02337{font-family:ff1_c02337;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02337;src:url('chunks/assets/font_49537b33accfc2344966618d.woff2')format("woff");}.ff2_c02337{font-family:ff2_c02337;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02337;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02337{font-family:ff3_c02337;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02337{vertical-align:0.000000px;}
.v1_c02337{vertical-align:1.439424px;}
.lsc_c02337{letter-spacing:-1.197504px;}
.ls7_c02337{letter-spacing:-0.613008px;}
.ls9_c02337{letter-spacing:-0.574992px;}
.lsf_c02337{letter-spacing:-0.275616px;}
.lsd_c02337{letter-spacing:-0.261360px;}
.ls6_c02337{letter-spacing:-0.242352px;}
.ls4_c02337{letter-spacing:-0.118800px;}
.ls12_c02337{letter-spacing:0.000000px;}
.ls1_c02337{letter-spacing:0.006048px;}
.ls5_c02337{letter-spacing:0.128304px;}
.lsb_c02337{letter-spacing:0.508464px;}
.ls11_c02337{letter-spacing:0.514080px;}
.lse_c02337{letter-spacing:0.536976px;}
.lsa_c02337{letter-spacing:0.579744px;}
.ls10_c02337{letter-spacing:0.594000px;}
.ls8_c02337{letter-spacing:0.598752px;}
.ls2_c02337{letter-spacing:0.613008px;}
.ls0_c02337{letter-spacing:0.717552px;}
.ls3_c02337{letter-spacing:0.722304px;}
.sc__c02337{text-shadow:none;}
.sc0_c02337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02337{-webkit-text-stroke:0px transparent;}
.sc0_c02337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02337{word-spacing:-15.126048px;}
.wsa_c02337{word-spacing:-12.474000px;}
.ws8_c02337{word-spacing:-12.459744px;}
.ws9_c02337{word-spacing:-12.416976px;}
.ws4_c02337{word-spacing:-11.637648px;}
.ws2_c02337{word-spacing:-11.266992px;}
.ws14_c02337{word-spacing:-2.159136px;}
.ws10_c02337{word-spacing:-1.078704px;}
.wsd_c02337{word-spacing:-0.974160px;}
.wsf_c02337{word-spacing:-0.118800px;}
.ws12_c02337{word-spacing:-0.099792px;}
.ws13_c02337{word-spacing:-0.085536px;}
.wse_c02337{word-spacing:0.000000px;}
.ws11_c02337{word-spacing:0.836352px;}
.wsb_c02337{word-spacing:33.300288px;}
.ws6_c02337{word-spacing:36.742464px;}
.ws1_c02337{word-spacing:37.759392px;}
.ws0_c02337{word-spacing:38.020752px;}
.ws3_c02337{word-spacing:39.218256px;}
.ws5_c02337{word-spacing:39.902544px;}
.ws7_c02337{word-spacing:42.026688px;}
._0_c02337{margin-left:-1.948320px;}
._2_c02337{width:1.482624px;}
._4_c02337{width:3.302640px;}
._5_c02337{width:14.707872px;}
._1_c02337{width:50.252400px;}
._3_c02337{width:51.530688px;}
.fc0_c02337{color:rgb(0,0,0);}
.fs0_c02337{font-size:47.520000px;}
.fs1_c02337{font-size:60.480000px;}
.y0_c02337{bottom:0.000000px;}
.y19_c02337{bottom:146.998362px;}
.y1b_c02337{bottom:186.600234px;}
.y1a_c02337{bottom:196.320450px;}
.y18_c02337{bottom:275.878542px;}
.y17_c02337{bottom:356.878758px;}
.y15_c02337{bottom:406.559730px;}
.y11_c02337{bottom:424.560306px;}
.y16_c02337{bottom:458.759262px;}
.y14_c02337{bottom:491.879514px;}
.y13_c02337{bottom:509.880090px;}
.y10_c02337{bottom:543.000342px;}
.y12_c02337{bottom:559.559874px;}
.yf_c02337{bottom:577.560450px;}
.y1c_c02337{bottom:614.280450px;}
.yb_c02337{bottom:667.558326px;}
.yd_c02337{bottom:707.160234px;}
.yc_c02337{bottom:716.880450px;}
.ya_c02337{bottom:796.438506px;}
.y9_c02337{bottom:877.438722px;}
.y7_c02337{bottom:926.759730px;}
.y3_c02337{bottom:944.760306px;}
.y8_c02337{bottom:979.319226px;}
.y6_c02337{bottom:1012.439478px;}
.y5_c02337{bottom:1030.440054px;}
.y2_c02337{bottom:1063.560306px;}
.y4_c02337{bottom:1079.759874px;}
.y1_c02337{bottom:1097.760450px;}
.ye_c02337{bottom:1134.840450px;}
.h3_c02337{height:32.530781px;}
.h1_c02337{height:41.696016px;}
.h2_c02337{height:41.812031px;}
.h4_c02337{height:54.654737px;}
.h0_c02337{height:1263.000000px;}
.w1_c02337{width:892.500000px;}
.w0_c02337{width:892.830000px;}
.x0_c02337{left:0.000000px;}
.xd_c02337{left:117.000000px;}
.x8_c02337{left:440.999856px;}
.x4_c02337{left:445.680576px;}
.xb_c02337{left:451.080000px;}
.x7_c02337{left:455.399604px;}
.x5_c02337{left:461.880144px;}
.x1_c02337{left:463.320000px;}
.xa_c02337{left:483.480360px;}
.x9_c02337{left:492.119496px;}
.x6_c02337{left:493.200576px;}
.xc_c02337{left:506.880360px;}
.x3_c02337{left:511.919892px;}
.x2_c02337{left:526.679604px;}
@media print{
.v0_c02337{vertical-align:0.000000pt;}
.v1_c02337{vertical-align:1.279488pt;}
.lsc_c02337{letter-spacing:-1.064448pt;}
.ls7_c02337{letter-spacing:-0.544896pt;}
.ls9_c02337{letter-spacing:-0.511104pt;}
.lsf_c02337{letter-spacing:-0.244992pt;}
.lsd_c02337{letter-spacing:-0.232320pt;}
.ls6_c02337{letter-spacing:-0.215424pt;}
.ls4_c02337{letter-spacing:-0.105600pt;}
.ls12_c02337{letter-spacing:0.000000pt;}
.ls1_c02337{letter-spacing:0.005376pt;}
.ls5_c02337{letter-spacing:0.114048pt;}
.lsb_c02337{letter-spacing:0.451968pt;}
.ls11_c02337{letter-spacing:0.456960pt;}
.lse_c02337{letter-spacing:0.477312pt;}
.lsa_c02337{letter-spacing:0.515328pt;}
.ls10_c02337{letter-spacing:0.528000pt;}
.ls8_c02337{letter-spacing:0.532224pt;}
.ls2_c02337{letter-spacing:0.544896pt;}
.ls0_c02337{letter-spacing:0.637824pt;}
.ls3_c02337{letter-spacing:0.642048pt;}
.wsc_c02337{word-spacing:-13.445376pt;}
.wsa_c02337{word-spacing:-11.088000pt;}
.ws8_c02337{word-spacing:-11.075328pt;}
.ws9_c02337{word-spacing:-11.037312pt;}
.ws4_c02337{word-spacing:-10.344576pt;}
.ws2_c02337{word-spacing:-10.015104pt;}
.ws14_c02337{word-spacing:-1.919232pt;}
.ws10_c02337{word-spacing:-0.958848pt;}
.wsd_c02337{word-spacing:-0.865920pt;}
.wsf_c02337{word-spacing:-0.105600pt;}
.ws12_c02337{word-spacing:-0.088704pt;}
.ws13_c02337{word-spacing:-0.076032pt;}
.wse_c02337{word-spacing:0.000000pt;}
.ws11_c02337{word-spacing:0.743424pt;}
.wsb_c02337{word-spacing:29.600256pt;}
.ws6_c02337{word-spacing:32.659968pt;}
.ws1_c02337{word-spacing:33.563904pt;}
.ws0_c02337{word-spacing:33.796224pt;}
.ws3_c02337{word-spacing:34.860672pt;}
.ws5_c02337{word-spacing:35.468928pt;}
.ws7_c02337{word-spacing:37.357056pt;}
._0_c02337{margin-left:-1.731840pt;}
._2_c02337{width:1.317888pt;}
._4_c02337{width:2.935680pt;}
._5_c02337{width:13.073664pt;}
._1_c02337{width:44.668800pt;}
._3_c02337{width:45.805056pt;}
.fs0_c02337{font-size:42.240000pt;}
.fs1_c02337{font-size:53.760000pt;}
.y0_c02337{bottom:0.000000pt;}
.y19_c02337{bottom:130.665211pt;}
.y1b_c02337{bottom:165.866875pt;}
.y1a_c02337{bottom:174.507067pt;}
.y18_c02337{bottom:245.225371pt;}
.y17_c02337{bottom:317.225563pt;}
.y15_c02337{bottom:361.386427pt;}
.y11_c02337{bottom:377.386939pt;}
.y16_c02337{bottom:407.786011pt;}
.y14_c02337{bottom:437.226235pt;}
.y13_c02337{bottom:453.226747pt;}
.y10_c02337{bottom:482.666971pt;}
.y12_c02337{bottom:497.386555pt;}
.yf_c02337{bottom:513.387067pt;}
.y1c_c02337{bottom:546.027067pt;}
.yb_c02337{bottom:593.385179pt;}
.yd_c02337{bottom:628.586875pt;}
.yc_c02337{bottom:637.227067pt;}
.ya_c02337{bottom:707.945339pt;}
.y9_c02337{bottom:779.945531pt;}
.y7_c02337{bottom:823.786427pt;}
.y3_c02337{bottom:839.786939pt;}
.y8_c02337{bottom:870.505979pt;}
.y6_c02337{bottom:899.946203pt;}
.y5_c02337{bottom:915.946715pt;}
.y2_c02337{bottom:945.386939pt;}
.y4_c02337{bottom:959.786555pt;}
.y1_c02337{bottom:975.787067pt;}
.ye_c02337{bottom:1008.747067pt;}
.h3_c02337{height:28.916250pt;}
.h1_c02337{height:37.063125pt;}
.h2_c02337{height:37.166250pt;}
.h4_c02337{height:48.581988pt;}
.h0_c02337{height:1122.666667pt;}
.w1_c02337{width:793.333333pt;}
.w0_c02337{width:793.626667pt;}
.x0_c02337{left:0.000000pt;}
.xd_c02337{left:104.000000pt;}
.x8_c02337{left:391.999872pt;}
.x4_c02337{left:396.160512pt;}
.xb_c02337{left:400.960000pt;}
.x7_c02337{left:404.799648pt;}
.x5_c02337{left:410.560128pt;}
.x1_c02337{left:411.840000pt;}
.xa_c02337{left:429.760320pt;}
.x9_c02337{left:437.439552pt;}
.x6_c02337{left:438.400512pt;}
.xc_c02337{left:450.560320pt;}
.x3_c02337{left:455.039904pt;}
.x2_c02337{left:468.159648pt;}
}





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

.ir_c02338:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02338{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02338;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02338{font-family:ff1_c02338;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02338;src:url('chunks/assets/font_9cb21d4d7882dddfa9491c71.woff2')format("woff");}.ff2_c02338{font-family:ff2_c02338;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02338;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02338{font-family:ff3_c02338;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02338{vertical-align:0.000000px;}
.v1_c02338{vertical-align:1.439424px;}
.ls14_c02338{letter-spacing:-1.197504px;}
.ls8_c02338{letter-spacing:-0.613008px;}
.lsa_c02338{letter-spacing:-0.574992px;}
.ls10_c02338{letter-spacing:-0.275616px;}
.lse_c02338{letter-spacing:-0.261360px;}
.ls7_c02338{letter-spacing:-0.242352px;}
.ls5_c02338{letter-spacing:-0.118800px;}
.ls13_c02338{letter-spacing:0.000000px;}
.ls2_c02338{letter-spacing:0.006048px;}
.ls6_c02338{letter-spacing:0.128304px;}
.lsd_c02338{letter-spacing:0.242352px;}
.lsc_c02338{letter-spacing:0.508464px;}
.ls12_c02338{letter-spacing:0.514080px;}
.lsf_c02338{letter-spacing:0.536976px;}
.lsb_c02338{letter-spacing:0.579744px;}
.ls11_c02338{letter-spacing:0.594000px;}
.ls9_c02338{letter-spacing:0.598752px;}
.ls3_c02338{letter-spacing:0.613008px;}
.ls0_c02338{letter-spacing:0.651024px;}
.ls1_c02338{letter-spacing:0.717552px;}
.ls4_c02338{letter-spacing:0.722304px;}
.sc__c02338{text-shadow:none;}
.sc0_c02338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02338{-webkit-text-stroke:0px transparent;}
.sc0_c02338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02338{word-spacing:-15.126048px;}
.wsa_c02338{word-spacing:-12.474000px;}
.ws8_c02338{word-spacing:-12.459744px;}
.ws9_c02338{word-spacing:-12.416976px;}
.ws4_c02338{word-spacing:-11.637648px;}
.ws2_c02338{word-spacing:-11.266992px;}
.ws14_c02338{word-spacing:-2.159136px;}
.ws11_c02338{word-spacing:-1.078704px;}
.wsf_c02338{word-spacing:-1.012176px;}
.wsd_c02338{word-spacing:-0.974160px;}
.ws10_c02338{word-spacing:-0.118800px;}
.ws12_c02338{word-spacing:-0.099792px;}
.ws13_c02338{word-spacing:-0.085536px;}
.wse_c02338{word-spacing:0.000000px;}
.ws15_c02338{word-spacing:0.836352px;}
.wsb_c02338{word-spacing:33.300288px;}
.ws6_c02338{word-spacing:36.742464px;}
.ws1_c02338{word-spacing:37.759392px;}
.ws0_c02338{word-spacing:38.020752px;}
.ws3_c02338{word-spacing:39.218256px;}
.ws5_c02338{word-spacing:39.902544px;}
.ws7_c02338{word-spacing:42.026688px;}
._0_c02338{margin-left:-1.948320px;}
._2_c02338{width:1.482624px;}
._4_c02338{width:3.302640px;}
._5_c02338{width:14.707872px;}
._1_c02338{width:50.252400px;}
._3_c02338{width:51.530688px;}
.fc0_c02338{color:rgb(0,0,0);}
.fs0_c02338{font-size:47.520000px;}
.fs1_c02338{font-size:60.480000px;}
.y0_c02338{bottom:0.000000px;}
.y19_c02338{bottom:146.998362px;}
.y1b_c02338{bottom:186.600234px;}
.y1a_c02338{bottom:196.320450px;}
.y18_c02338{bottom:275.878542px;}
.y17_c02338{bottom:356.878758px;}
.y15_c02338{bottom:406.559730px;}
.y11_c02338{bottom:424.560306px;}
.y16_c02338{bottom:458.759262px;}
.y14_c02338{bottom:491.879514px;}
.y13_c02338{bottom:509.880090px;}
.y10_c02338{bottom:543.000342px;}
.y12_c02338{bottom:559.559874px;}
.yf_c02338{bottom:577.560450px;}
.y1c_c02338{bottom:614.280450px;}
.yb_c02338{bottom:667.558326px;}
.yd_c02338{bottom:707.160234px;}
.yc_c02338{bottom:716.880450px;}
.ya_c02338{bottom:796.438506px;}
.y9_c02338{bottom:877.438722px;}
.y7_c02338{bottom:926.759730px;}
.y3_c02338{bottom:944.760306px;}
.y8_c02338{bottom:979.319226px;}
.y6_c02338{bottom:1012.439478px;}
.y5_c02338{bottom:1030.440054px;}
.y2_c02338{bottom:1063.560306px;}
.y4_c02338{bottom:1079.759874px;}
.y1_c02338{bottom:1097.760450px;}
.ye_c02338{bottom:1134.840450px;}
.h3_c02338{height:32.530781px;}
.h1_c02338{height:41.696016px;}
.h2_c02338{height:41.812031px;}
.h4_c02338{height:54.654737px;}
.h0_c02338{height:1263.000000px;}
.w1_c02338{width:892.500000px;}
.w0_c02338{width:892.830000px;}
.x0_c02338{left:0.000000px;}
.xd_c02338{left:117.000000px;}
.x8_c02338{left:440.999856px;}
.x4_c02338{left:445.680576px;}
.xb_c02338{left:451.080000px;}
.x7_c02338{left:455.399604px;}
.x5_c02338{left:461.880144px;}
.x1_c02338{left:463.320000px;}
.xa_c02338{left:483.480360px;}
.x9_c02338{left:492.119496px;}
.x6_c02338{left:493.200576px;}
.xc_c02338{left:506.880360px;}
.x3_c02338{left:511.919892px;}
.x2_c02338{left:526.679604px;}
@media print{
.v0_c02338{vertical-align:0.000000pt;}
.v1_c02338{vertical-align:1.279488pt;}
.ls14_c02338{letter-spacing:-1.064448pt;}
.ls8_c02338{letter-spacing:-0.544896pt;}
.lsa_c02338{letter-spacing:-0.511104pt;}
.ls10_c02338{letter-spacing:-0.244992pt;}
.lse_c02338{letter-spacing:-0.232320pt;}
.ls7_c02338{letter-spacing:-0.215424pt;}
.ls5_c02338{letter-spacing:-0.105600pt;}
.ls13_c02338{letter-spacing:0.000000pt;}
.ls2_c02338{letter-spacing:0.005376pt;}
.ls6_c02338{letter-spacing:0.114048pt;}
.lsd_c02338{letter-spacing:0.215424pt;}
.lsc_c02338{letter-spacing:0.451968pt;}
.ls12_c02338{letter-spacing:0.456960pt;}
.lsf_c02338{letter-spacing:0.477312pt;}
.lsb_c02338{letter-spacing:0.515328pt;}
.ls11_c02338{letter-spacing:0.528000pt;}
.ls9_c02338{letter-spacing:0.532224pt;}
.ls3_c02338{letter-spacing:0.544896pt;}
.ls0_c02338{letter-spacing:0.578688pt;}
.ls1_c02338{letter-spacing:0.637824pt;}
.ls4_c02338{letter-spacing:0.642048pt;}
.wsc_c02338{word-spacing:-13.445376pt;}
.wsa_c02338{word-spacing:-11.088000pt;}
.ws8_c02338{word-spacing:-11.075328pt;}
.ws9_c02338{word-spacing:-11.037312pt;}
.ws4_c02338{word-spacing:-10.344576pt;}
.ws2_c02338{word-spacing:-10.015104pt;}
.ws14_c02338{word-spacing:-1.919232pt;}
.ws11_c02338{word-spacing:-0.958848pt;}
.wsf_c02338{word-spacing:-0.899712pt;}
.wsd_c02338{word-spacing:-0.865920pt;}
.ws10_c02338{word-spacing:-0.105600pt;}
.ws12_c02338{word-spacing:-0.088704pt;}
.ws13_c02338{word-spacing:-0.076032pt;}
.wse_c02338{word-spacing:0.000000pt;}
.ws15_c02338{word-spacing:0.743424pt;}
.wsb_c02338{word-spacing:29.600256pt;}
.ws6_c02338{word-spacing:32.659968pt;}
.ws1_c02338{word-spacing:33.563904pt;}
.ws0_c02338{word-spacing:33.796224pt;}
.ws3_c02338{word-spacing:34.860672pt;}
.ws5_c02338{word-spacing:35.468928pt;}
.ws7_c02338{word-spacing:37.357056pt;}
._0_c02338{margin-left:-1.731840pt;}
._2_c02338{width:1.317888pt;}
._4_c02338{width:2.935680pt;}
._5_c02338{width:13.073664pt;}
._1_c02338{width:44.668800pt;}
._3_c02338{width:45.805056pt;}
.fs0_c02338{font-size:42.240000pt;}
.fs1_c02338{font-size:53.760000pt;}
.y0_c02338{bottom:0.000000pt;}
.y19_c02338{bottom:130.665211pt;}
.y1b_c02338{bottom:165.866875pt;}
.y1a_c02338{bottom:174.507067pt;}
.y18_c02338{bottom:245.225371pt;}
.y17_c02338{bottom:317.225563pt;}
.y15_c02338{bottom:361.386427pt;}
.y11_c02338{bottom:377.386939pt;}
.y16_c02338{bottom:407.786011pt;}
.y14_c02338{bottom:437.226235pt;}
.y13_c02338{bottom:453.226747pt;}
.y10_c02338{bottom:482.666971pt;}
.y12_c02338{bottom:497.386555pt;}
.yf_c02338{bottom:513.387067pt;}
.y1c_c02338{bottom:546.027067pt;}
.yb_c02338{bottom:593.385179pt;}
.yd_c02338{bottom:628.586875pt;}
.yc_c02338{bottom:637.227067pt;}
.ya_c02338{bottom:707.945339pt;}
.y9_c02338{bottom:779.945531pt;}
.y7_c02338{bottom:823.786427pt;}
.y3_c02338{bottom:839.786939pt;}
.y8_c02338{bottom:870.505979pt;}
.y6_c02338{bottom:899.946203pt;}
.y5_c02338{bottom:915.946715pt;}
.y2_c02338{bottom:945.386939pt;}
.y4_c02338{bottom:959.786555pt;}
.y1_c02338{bottom:975.787067pt;}
.ye_c02338{bottom:1008.747067pt;}
.h3_c02338{height:28.916250pt;}
.h1_c02338{height:37.063125pt;}
.h2_c02338{height:37.166250pt;}
.h4_c02338{height:48.581988pt;}
.h0_c02338{height:1122.666667pt;}
.w1_c02338{width:793.333333pt;}
.w0_c02338{width:793.626667pt;}
.x0_c02338{left:0.000000pt;}
.xd_c02338{left:104.000000pt;}
.x8_c02338{left:391.999872pt;}
.x4_c02338{left:396.160512pt;}
.xb_c02338{left:400.960000pt;}
.x7_c02338{left:404.799648pt;}
.x5_c02338{left:410.560128pt;}
.x1_c02338{left:411.840000pt;}
.xa_c02338{left:429.760320pt;}
.x9_c02338{left:437.439552pt;}
.x6_c02338{left:438.400512pt;}
.xc_c02338{left:450.560320pt;}
.x3_c02338{left:455.039904pt;}
.x2_c02338{left:468.159648pt;}
}





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

.ir_c02339:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02339{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02339;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02339{font-family:ff1_c02339;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02339;src:url('chunks/assets/font_c39b46218f2502034ad14154.woff2')format("woff");}.ff2_c02339{font-family:ff2_c02339;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02339;src:url('chunks/assets/font_60377c519732175a6ac2d669.woff2')format("woff");}.ff3_c02339{font-family:ff3_c02339;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02339{vertical-align:0.000000px;}
.v1_c02339{vertical-align:1.439424px;}
.ls14_c02339{letter-spacing:-1.197504px;}
.ls8_c02339{letter-spacing:-0.613008px;}
.lsa_c02339{letter-spacing:-0.574992px;}
.ls10_c02339{letter-spacing:-0.275616px;}
.lse_c02339{letter-spacing:-0.261360px;}
.ls7_c02339{letter-spacing:-0.242352px;}
.ls5_c02339{letter-spacing:-0.118800px;}
.ls13_c02339{letter-spacing:0.000000px;}
.ls2_c02339{letter-spacing:0.006048px;}
.ls6_c02339{letter-spacing:0.128304px;}
.lsd_c02339{letter-spacing:0.242352px;}
.lsc_c02339{letter-spacing:0.508464px;}
.ls12_c02339{letter-spacing:0.514080px;}
.lsf_c02339{letter-spacing:0.536976px;}
.lsb_c02339{letter-spacing:0.579744px;}
.ls11_c02339{letter-spacing:0.594000px;}
.ls9_c02339{letter-spacing:0.598752px;}
.ls3_c02339{letter-spacing:0.613008px;}
.ls0_c02339{letter-spacing:0.651024px;}
.ls1_c02339{letter-spacing:0.717552px;}
.ls4_c02339{letter-spacing:0.722304px;}
.sc__c02339{text-shadow:none;}
.sc0_c02339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02339{-webkit-text-stroke:0px transparent;}
.sc0_c02339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02339{word-spacing:-15.126048px;}
.wsa_c02339{word-spacing:-12.474000px;}
.ws8_c02339{word-spacing:-12.459744px;}
.ws9_c02339{word-spacing:-12.416976px;}
.ws4_c02339{word-spacing:-11.637648px;}
.ws2_c02339{word-spacing:-11.266992px;}
.ws14_c02339{word-spacing:-2.159136px;}
.ws11_c02339{word-spacing:-1.078704px;}
.wsf_c02339{word-spacing:-1.012176px;}
.wsd_c02339{word-spacing:-0.974160px;}
.ws10_c02339{word-spacing:-0.118800px;}
.ws12_c02339{word-spacing:-0.099792px;}
.ws13_c02339{word-spacing:-0.085536px;}
.wse_c02339{word-spacing:0.000000px;}
.ws15_c02339{word-spacing:0.836352px;}
.wsb_c02339{word-spacing:33.300288px;}
.ws6_c02339{word-spacing:36.742464px;}
.ws1_c02339{word-spacing:37.759392px;}
.ws0_c02339{word-spacing:38.020752px;}
.ws3_c02339{word-spacing:39.218256px;}
.ws5_c02339{word-spacing:39.902544px;}
.ws7_c02339{word-spacing:42.026688px;}
._0_c02339{margin-left:-1.948320px;}
._2_c02339{width:1.482624px;}
._4_c02339{width:3.302640px;}
._5_c02339{width:14.707872px;}
._1_c02339{width:50.252400px;}
._3_c02339{width:51.530688px;}
.fc0_c02339{color:rgb(0,0,0);}
.fs0_c02339{font-size:47.520000px;}
.fs1_c02339{font-size:60.480000px;}
.y0_c02339{bottom:0.000000px;}
.y19_c02339{bottom:146.998362px;}
.y1b_c02339{bottom:186.600234px;}
.y1a_c02339{bottom:196.320450px;}
.y18_c02339{bottom:275.878542px;}
.y17_c02339{bottom:356.878758px;}
.y15_c02339{bottom:406.559730px;}
.y11_c02339{bottom:424.560306px;}
.y16_c02339{bottom:458.759262px;}
.y14_c02339{bottom:491.879514px;}
.y13_c02339{bottom:509.880090px;}
.y10_c02339{bottom:543.000342px;}
.y12_c02339{bottom:559.559874px;}
.yf_c02339{bottom:577.560450px;}
.y1c_c02339{bottom:614.280450px;}
.yb_c02339{bottom:667.558326px;}
.yd_c02339{bottom:707.160234px;}
.yc_c02339{bottom:716.880450px;}
.ya_c02339{bottom:796.438506px;}
.y9_c02339{bottom:877.438722px;}
.y7_c02339{bottom:926.759730px;}
.y3_c02339{bottom:944.760306px;}
.y8_c02339{bottom:979.319226px;}
.y6_c02339{bottom:1012.439478px;}
.y5_c02339{bottom:1030.440054px;}
.y2_c02339{bottom:1063.560306px;}
.y4_c02339{bottom:1079.759874px;}
.y1_c02339{bottom:1097.760450px;}
.ye_c02339{bottom:1134.840450px;}
.h3_c02339{height:32.530781px;}
.h1_c02339{height:41.696016px;}
.h2_c02339{height:41.812031px;}
.h4_c02339{height:54.654737px;}
.h0_c02339{height:1263.000000px;}
.w1_c02339{width:892.500000px;}
.w0_c02339{width:892.830000px;}
.x0_c02339{left:0.000000px;}
.xd_c02339{left:117.000000px;}
.x8_c02339{left:440.999856px;}
.x4_c02339{left:445.680576px;}
.xb_c02339{left:451.080000px;}
.x7_c02339{left:455.399604px;}
.x5_c02339{left:461.880144px;}
.x1_c02339{left:463.320000px;}
.xa_c02339{left:483.480360px;}
.x9_c02339{left:492.119496px;}
.x6_c02339{left:493.200576px;}
.xc_c02339{left:506.880360px;}
.x3_c02339{left:511.919892px;}
.x2_c02339{left:526.679604px;}
@media print{
.v0_c02339{vertical-align:0.000000pt;}
.v1_c02339{vertical-align:1.279488pt;}
.ls14_c02339{letter-spacing:-1.064448pt;}
.ls8_c02339{letter-spacing:-0.544896pt;}
.lsa_c02339{letter-spacing:-0.511104pt;}
.ls10_c02339{letter-spacing:-0.244992pt;}
.lse_c02339{letter-spacing:-0.232320pt;}
.ls7_c02339{letter-spacing:-0.215424pt;}
.ls5_c02339{letter-spacing:-0.105600pt;}
.ls13_c02339{letter-spacing:0.000000pt;}
.ls2_c02339{letter-spacing:0.005376pt;}
.ls6_c02339{letter-spacing:0.114048pt;}
.lsd_c02339{letter-spacing:0.215424pt;}
.lsc_c02339{letter-spacing:0.451968pt;}
.ls12_c02339{letter-spacing:0.456960pt;}
.lsf_c02339{letter-spacing:0.477312pt;}
.lsb_c02339{letter-spacing:0.515328pt;}
.ls11_c02339{letter-spacing:0.528000pt;}
.ls9_c02339{letter-spacing:0.532224pt;}
.ls3_c02339{letter-spacing:0.544896pt;}
.ls0_c02339{letter-spacing:0.578688pt;}
.ls1_c02339{letter-spacing:0.637824pt;}
.ls4_c02339{letter-spacing:0.642048pt;}
.wsc_c02339{word-spacing:-13.445376pt;}
.wsa_c02339{word-spacing:-11.088000pt;}
.ws8_c02339{word-spacing:-11.075328pt;}
.ws9_c02339{word-spacing:-11.037312pt;}
.ws4_c02339{word-spacing:-10.344576pt;}
.ws2_c02339{word-spacing:-10.015104pt;}
.ws14_c02339{word-spacing:-1.919232pt;}
.ws11_c02339{word-spacing:-0.958848pt;}
.wsf_c02339{word-spacing:-0.899712pt;}
.wsd_c02339{word-spacing:-0.865920pt;}
.ws10_c02339{word-spacing:-0.105600pt;}
.ws12_c02339{word-spacing:-0.088704pt;}
.ws13_c02339{word-spacing:-0.076032pt;}
.wse_c02339{word-spacing:0.000000pt;}
.ws15_c02339{word-spacing:0.743424pt;}
.wsb_c02339{word-spacing:29.600256pt;}
.ws6_c02339{word-spacing:32.659968pt;}
.ws1_c02339{word-spacing:33.563904pt;}
.ws0_c02339{word-spacing:33.796224pt;}
.ws3_c02339{word-spacing:34.860672pt;}
.ws5_c02339{word-spacing:35.468928pt;}
.ws7_c02339{word-spacing:37.357056pt;}
._0_c02339{margin-left:-1.731840pt;}
._2_c02339{width:1.317888pt;}
._4_c02339{width:2.935680pt;}
._5_c02339{width:13.073664pt;}
._1_c02339{width:44.668800pt;}
._3_c02339{width:45.805056pt;}
.fs0_c02339{font-size:42.240000pt;}
.fs1_c02339{font-size:53.760000pt;}
.y0_c02339{bottom:0.000000pt;}
.y19_c02339{bottom:130.665211pt;}
.y1b_c02339{bottom:165.866875pt;}
.y1a_c02339{bottom:174.507067pt;}
.y18_c02339{bottom:245.225371pt;}
.y17_c02339{bottom:317.225563pt;}
.y15_c02339{bottom:361.386427pt;}
.y11_c02339{bottom:377.386939pt;}
.y16_c02339{bottom:407.786011pt;}
.y14_c02339{bottom:437.226235pt;}
.y13_c02339{bottom:453.226747pt;}
.y10_c02339{bottom:482.666971pt;}
.y12_c02339{bottom:497.386555pt;}
.yf_c02339{bottom:513.387067pt;}
.y1c_c02339{bottom:546.027067pt;}
.yb_c02339{bottom:593.385179pt;}
.yd_c02339{bottom:628.586875pt;}
.yc_c02339{bottom:637.227067pt;}
.ya_c02339{bottom:707.945339pt;}
.y9_c02339{bottom:779.945531pt;}
.y7_c02339{bottom:823.786427pt;}
.y3_c02339{bottom:839.786939pt;}
.y8_c02339{bottom:870.505979pt;}
.y6_c02339{bottom:899.946203pt;}
.y5_c02339{bottom:915.946715pt;}
.y2_c02339{bottom:945.386939pt;}
.y4_c02339{bottom:959.786555pt;}
.y1_c02339{bottom:975.787067pt;}
.ye_c02339{bottom:1008.747067pt;}
.h3_c02339{height:28.916250pt;}
.h1_c02339{height:37.063125pt;}
.h2_c02339{height:37.166250pt;}
.h4_c02339{height:48.581988pt;}
.h0_c02339{height:1122.666667pt;}
.w1_c02339{width:793.333333pt;}
.w0_c02339{width:793.626667pt;}
.x0_c02339{left:0.000000pt;}
.xd_c02339{left:104.000000pt;}
.x8_c02339{left:391.999872pt;}
.x4_c02339{left:396.160512pt;}
.xb_c02339{left:400.960000pt;}
.x7_c02339{left:404.799648pt;}
.x5_c02339{left:410.560128pt;}
.x1_c02339{left:411.840000pt;}
.xa_c02339{left:429.760320pt;}
.x9_c02339{left:437.439552pt;}
.x6_c02339{left:438.400512pt;}
.xc_c02339{left:450.560320pt;}
.x3_c02339{left:455.039904pt;}
.x2_c02339{left:468.159648pt;}
}





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

.ir_c02340:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02340{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02340;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02340{font-family:ff1_c02340;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02340;src:url('chunks/assets/font_53cf0554d2c96825b6e18f5d.woff2')format("woff");}.ff2_c02340{font-family:ff2_c02340;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02340;src:url('chunks/assets/font_b28cd910fb3daab7bc502b59.woff2')format("woff");}.ff3_c02340{font-family:ff3_c02340;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02340{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02340{vertical-align:0.000000px;}
.v1_c02340{vertical-align:1.439424px;}
.ls13_c02340{letter-spacing:-0.679536px;}
.ls8_c02340{letter-spacing:-0.613008px;}
.lsa_c02340{letter-spacing:-0.574992px;}
.lsf_c02340{letter-spacing:-0.275616px;}
.lsd_c02340{letter-spacing:-0.261360px;}
.ls7_c02340{letter-spacing:-0.242352px;}
.ls5_c02340{letter-spacing:-0.118800px;}
.ls12_c02340{letter-spacing:0.000000px;}
.ls1_c02340{letter-spacing:0.006048px;}
.ls6_c02340{letter-spacing:0.128304px;}
.lsc_c02340{letter-spacing:0.508464px;}
.ls11_c02340{letter-spacing:0.514080px;}
.lse_c02340{letter-spacing:0.536976px;}
.lsb_c02340{letter-spacing:0.579744px;}
.ls10_c02340{letter-spacing:0.594000px;}
.ls9_c02340{letter-spacing:0.598752px;}
.ls4_c02340{letter-spacing:0.613008px;}
.ls0_c02340{letter-spacing:0.651024px;}
.ls3_c02340{letter-spacing:0.717552px;}
.ls2_c02340{letter-spacing:0.722304px;}
.sc__c02340{text-shadow:none;}
.sc0_c02340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02340{-webkit-text-stroke:0px transparent;}
.sc0_c02340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02340{word-spacing:-15.126048px;}
.wsd_c02340{word-spacing:-12.602304px;}
.wsa_c02340{word-spacing:-12.474000px;}
.ws8_c02340{word-spacing:-12.459744px;}
.ws9_c02340{word-spacing:-12.416976px;}
.ws7_c02340{word-spacing:-12.388464px;}
.ws4_c02340{word-spacing:-11.637648px;}
.ws5_c02340{word-spacing:-11.305008px;}
.ws2_c02340{word-spacing:-11.266992px;}
.wse_c02340{word-spacing:-11.200464px;}
.ws16_c02340{word-spacing:-2.159136px;}
.ws18_c02340{word-spacing:-1.083456px;}
.ws17_c02340{word-spacing:-1.078704px;}
.ws12_c02340{word-spacing:-1.012176px;}
.ws10_c02340{word-spacing:-0.974160px;}
.ws13_c02340{word-spacing:-0.118800px;}
.ws14_c02340{word-spacing:-0.099792px;}
.ws15_c02340{word-spacing:-0.085536px;}
.ws11_c02340{word-spacing:0.000000px;}
.wsb_c02340{word-spacing:33.300288px;}
.ws6_c02340{word-spacing:36.742464px;}
.ws1_c02340{word-spacing:37.759392px;}
.ws0_c02340{word-spacing:38.020752px;}
.ws3_c02340{word-spacing:39.218256px;}
.wsf_c02340{word-spacing:39.902544px;}
._0_c02340{margin-left:-1.948320px;}
._2_c02340{width:1.482624px;}
._4_c02340{width:3.302640px;}
._6_c02340{width:5.730912px;}
._5_c02340{width:14.707872px;}
._1_c02340{width:50.252400px;}
._3_c02340{width:51.530688px;}
.fc0_c02340{color:rgb(0,0,0);}
.fs0_c02340{font-size:47.520000px;}
.fs1_c02340{font-size:60.480000px;}
.y0_c02340{bottom:0.000000px;}
.y19_c02340{bottom:146.998362px;}
.y1b_c02340{bottom:186.600234px;}
.y1a_c02340{bottom:196.320450px;}
.y18_c02340{bottom:275.878542px;}
.y17_c02340{bottom:356.878758px;}
.y15_c02340{bottom:406.559730px;}
.y11_c02340{bottom:424.560306px;}
.y16_c02340{bottom:458.759262px;}
.y14_c02340{bottom:491.879514px;}
.y13_c02340{bottom:509.880090px;}
.y10_c02340{bottom:543.000342px;}
.y12_c02340{bottom:559.559874px;}
.yf_c02340{bottom:577.560450px;}
.y1c_c02340{bottom:614.280450px;}
.yb_c02340{bottom:667.558326px;}
.yd_c02340{bottom:707.160234px;}
.yc_c02340{bottom:716.880450px;}
.ya_c02340{bottom:796.438506px;}
.y9_c02340{bottom:877.438722px;}
.y7_c02340{bottom:926.759730px;}
.y3_c02340{bottom:944.760306px;}
.y8_c02340{bottom:979.319226px;}
.y6_c02340{bottom:1012.439478px;}
.y5_c02340{bottom:1030.440054px;}
.y2_c02340{bottom:1063.560306px;}
.y4_c02340{bottom:1079.759874px;}
.y1_c02340{bottom:1097.760450px;}
.ye_c02340{bottom:1134.840450px;}
.h3_c02340{height:32.530781px;}
.h1_c02340{height:41.696016px;}
.h2_c02340{height:41.812031px;}
.h4_c02340{height:54.654737px;}
.h0_c02340{height:1263.000000px;}
.w1_c02340{width:892.500000px;}
.w0_c02340{width:892.830000px;}
.x0_c02340{left:0.000000px;}
.xd_c02340{left:117.000000px;}
.x8_c02340{left:441.001044px;}
.x4_c02340{left:445.680576px;}
.xb_c02340{left:451.080000px;}
.x7_c02340{left:455.400792px;}
.x5_c02340{left:461.880144px;}
.x1_c02340{left:463.320000px;}
.xa_c02340{left:483.481548px;}
.x9_c02340{left:492.120684px;}
.x6_c02340{left:493.200576px;}
.xc_c02340{left:506.880360px;}
.x3_c02340{left:511.919892px;}
.x2_c02340{left:526.679604px;}
@media print{
.v0_c02340{vertical-align:0.000000pt;}
.v1_c02340{vertical-align:1.279488pt;}
.ls13_c02340{letter-spacing:-0.604032pt;}
.ls8_c02340{letter-spacing:-0.544896pt;}
.lsa_c02340{letter-spacing:-0.511104pt;}
.lsf_c02340{letter-spacing:-0.244992pt;}
.lsd_c02340{letter-spacing:-0.232320pt;}
.ls7_c02340{letter-spacing:-0.215424pt;}
.ls5_c02340{letter-spacing:-0.105600pt;}
.ls12_c02340{letter-spacing:0.000000pt;}
.ls1_c02340{letter-spacing:0.005376pt;}
.ls6_c02340{letter-spacing:0.114048pt;}
.lsc_c02340{letter-spacing:0.451968pt;}
.ls11_c02340{letter-spacing:0.456960pt;}
.lse_c02340{letter-spacing:0.477312pt;}
.lsb_c02340{letter-spacing:0.515328pt;}
.ls10_c02340{letter-spacing:0.528000pt;}
.ls9_c02340{letter-spacing:0.532224pt;}
.ls4_c02340{letter-spacing:0.544896pt;}
.ls0_c02340{letter-spacing:0.578688pt;}
.ls3_c02340{letter-spacing:0.637824pt;}
.ls2_c02340{letter-spacing:0.642048pt;}
.wsc_c02340{word-spacing:-13.445376pt;}
.wsd_c02340{word-spacing:-11.202048pt;}
.wsa_c02340{word-spacing:-11.088000pt;}
.ws8_c02340{word-spacing:-11.075328pt;}
.ws9_c02340{word-spacing:-11.037312pt;}
.ws7_c02340{word-spacing:-11.011968pt;}
.ws4_c02340{word-spacing:-10.344576pt;}
.ws5_c02340{word-spacing:-10.048896pt;}
.ws2_c02340{word-spacing:-10.015104pt;}
.wse_c02340{word-spacing:-9.955968pt;}
.ws16_c02340{word-spacing:-1.919232pt;}
.ws18_c02340{word-spacing:-0.963072pt;}
.ws17_c02340{word-spacing:-0.958848pt;}
.ws12_c02340{word-spacing:-0.899712pt;}
.ws10_c02340{word-spacing:-0.865920pt;}
.ws13_c02340{word-spacing:-0.105600pt;}
.ws14_c02340{word-spacing:-0.088704pt;}
.ws15_c02340{word-spacing:-0.076032pt;}
.ws11_c02340{word-spacing:0.000000pt;}
.wsb_c02340{word-spacing:29.600256pt;}
.ws6_c02340{word-spacing:32.659968pt;}
.ws1_c02340{word-spacing:33.563904pt;}
.ws0_c02340{word-spacing:33.796224pt;}
.ws3_c02340{word-spacing:34.860672pt;}
.wsf_c02340{word-spacing:35.468928pt;}
._0_c02340{margin-left:-1.731840pt;}
._2_c02340{width:1.317888pt;}
._4_c02340{width:2.935680pt;}
._6_c02340{width:5.094144pt;}
._5_c02340{width:13.073664pt;}
._1_c02340{width:44.668800pt;}
._3_c02340{width:45.805056pt;}
.fs0_c02340{font-size:42.240000pt;}
.fs1_c02340{font-size:53.760000pt;}
.y0_c02340{bottom:0.000000pt;}
.y19_c02340{bottom:130.665211pt;}
.y1b_c02340{bottom:165.866875pt;}
.y1a_c02340{bottom:174.507067pt;}
.y18_c02340{bottom:245.225371pt;}
.y17_c02340{bottom:317.225563pt;}
.y15_c02340{bottom:361.386427pt;}
.y11_c02340{bottom:377.386939pt;}
.y16_c02340{bottom:407.786011pt;}
.y14_c02340{bottom:437.226235pt;}
.y13_c02340{bottom:453.226747pt;}
.y10_c02340{bottom:482.666971pt;}
.y12_c02340{bottom:497.386555pt;}
.yf_c02340{bottom:513.387067pt;}
.y1c_c02340{bottom:546.027067pt;}
.yb_c02340{bottom:593.385179pt;}
.yd_c02340{bottom:628.586875pt;}
.yc_c02340{bottom:637.227067pt;}
.ya_c02340{bottom:707.945339pt;}
.y9_c02340{bottom:779.945531pt;}
.y7_c02340{bottom:823.786427pt;}
.y3_c02340{bottom:839.786939pt;}
.y8_c02340{bottom:870.505979pt;}
.y6_c02340{bottom:899.946203pt;}
.y5_c02340{bottom:915.946715pt;}
.y2_c02340{bottom:945.386939pt;}
.y4_c02340{bottom:959.786555pt;}
.y1_c02340{bottom:975.787067pt;}
.ye_c02340{bottom:1008.747067pt;}
.h3_c02340{height:28.916250pt;}
.h1_c02340{height:37.063125pt;}
.h2_c02340{height:37.166250pt;}
.h4_c02340{height:48.581988pt;}
.h0_c02340{height:1122.666667pt;}
.w1_c02340{width:793.333333pt;}
.w0_c02340{width:793.626667pt;}
.x0_c02340{left:0.000000pt;}
.xd_c02340{left:104.000000pt;}
.x8_c02340{left:392.000928pt;}
.x4_c02340{left:396.160512pt;}
.xb_c02340{left:400.960000pt;}
.x7_c02340{left:404.800704pt;}
.x5_c02340{left:410.560128pt;}
.x1_c02340{left:411.840000pt;}
.xa_c02340{left:429.761376pt;}
.x9_c02340{left:437.440608pt;}
.x6_c02340{left:438.400512pt;}
.xc_c02340{left:450.560320pt;}
.x3_c02340{left:455.039904pt;}
.x2_c02340{left:468.159648pt;}
}





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

.ir_c02341:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02341{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02341;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02341{font-family:ff1_c02341;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02341;src:url('chunks/assets/font_60f1e964944c7f1598cc42f7.woff2')format("woff");}.ff2_c02341{font-family:ff2_c02341;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02341;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02341{font-family:ff3_c02341;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02341{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02341{vertical-align:0.000000px;}
.v1_c02341{vertical-align:1.439424px;}
.ls7_c02341{letter-spacing:-0.679536px;}
.ls9_c02341{letter-spacing:-0.574992px;}
.lse_c02341{letter-spacing:-0.275616px;}
.lsc_c02341{letter-spacing:-0.261360px;}
.ls6_c02341{letter-spacing:-0.242352px;}
.ls4_c02341{letter-spacing:-0.118800px;}
.ls11_c02341{letter-spacing:0.000000px;}
.ls2_c02341{letter-spacing:0.006048px;}
.ls5_c02341{letter-spacing:0.128304px;}
.lsb_c02341{letter-spacing:0.508464px;}
.ls10_c02341{letter-spacing:0.514080px;}
.lsd_c02341{letter-spacing:0.536976px;}
.lsa_c02341{letter-spacing:0.579744px;}
.lsf_c02341{letter-spacing:0.594000px;}
.ls8_c02341{letter-spacing:0.598752px;}
.ls3_c02341{letter-spacing:0.613008px;}
.ls1_c02341{letter-spacing:0.717552px;}
.ls0_c02341{letter-spacing:0.722304px;}
.sc__c02341{text-shadow:none;}
.sc0_c02341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02341{-webkit-text-stroke:0px transparent;}
.sc0_c02341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02341{word-spacing:-15.126048px;}
.ws2_c02341{word-spacing:-12.602304px;}
.wsa_c02341{word-spacing:-12.474000px;}
.ws7_c02341{word-spacing:-12.459744px;}
.ws9_c02341{word-spacing:-12.416976px;}
.ws8_c02341{word-spacing:-12.388464px;}
.ws5_c02341{word-spacing:-11.637648px;}
.ws3_c02341{word-spacing:-11.200464px;}
.ws14_c02341{word-spacing:-2.159136px;}
.ws12_c02341{word-spacing:-1.083456px;}
.ws10_c02341{word-spacing:-1.078704px;}
.wsd_c02341{word-spacing:-0.974160px;}
.wsf_c02341{word-spacing:-0.118800px;}
.ws11_c02341{word-spacing:-0.099792px;}
.ws13_c02341{word-spacing:-0.085536px;}
.wse_c02341{word-spacing:0.000000px;}
.wsb_c02341{word-spacing:33.300288px;}
.ws1_c02341{word-spacing:37.759392px;}
.ws0_c02341{word-spacing:38.020752px;}
.ws4_c02341{word-spacing:39.218256px;}
.ws6_c02341{word-spacing:39.902544px;}
._0_c02341{margin-left:-1.948320px;}
._2_c02341{width:1.482624px;}
._4_c02341{width:5.730912px;}
._1_c02341{width:50.252400px;}
._3_c02341{width:51.530688px;}
.fc0_c02341{color:rgb(0,0,0);}
.fs0_c02341{font-size:47.520000px;}
.fs1_c02341{font-size:60.480000px;}
.y0_c02341{bottom:0.000000px;}
.y19_c02341{bottom:146.998362px;}
.y1b_c02341{bottom:186.600234px;}
.y1a_c02341{bottom:196.320450px;}
.y18_c02341{bottom:275.878542px;}
.y17_c02341{bottom:356.878758px;}
.y15_c02341{bottom:406.559730px;}
.y11_c02341{bottom:424.560306px;}
.y16_c02341{bottom:458.759262px;}
.y14_c02341{bottom:491.879514px;}
.y13_c02341{bottom:509.880090px;}
.y10_c02341{bottom:543.000342px;}
.y12_c02341{bottom:559.559874px;}
.yf_c02341{bottom:577.560450px;}
.y1c_c02341{bottom:614.280450px;}
.yb_c02341{bottom:667.558326px;}
.yd_c02341{bottom:707.160234px;}
.yc_c02341{bottom:716.880450px;}
.ya_c02341{bottom:796.438506px;}
.y9_c02341{bottom:877.438722px;}
.y7_c02341{bottom:926.759730px;}
.y3_c02341{bottom:944.760306px;}
.y8_c02341{bottom:979.319226px;}
.y6_c02341{bottom:1012.439478px;}
.y5_c02341{bottom:1030.440054px;}
.y2_c02341{bottom:1063.560306px;}
.y4_c02341{bottom:1079.759874px;}
.y1_c02341{bottom:1097.760450px;}
.ye_c02341{bottom:1134.840450px;}
.h3_c02341{height:32.530781px;}
.h1_c02341{height:41.696016px;}
.h2_c02341{height:41.812031px;}
.h4_c02341{height:54.654737px;}
.h0_c02341{height:1263.000000px;}
.w1_c02341{width:892.500000px;}
.w0_c02341{width:892.830000px;}
.x0_c02341{left:0.000000px;}
.xd_c02341{left:117.000000px;}
.x8_c02341{left:440.999856px;}
.x4_c02341{left:445.680576px;}
.xb_c02341{left:451.080000px;}
.x7_c02341{left:455.399604px;}
.x5_c02341{left:461.880144px;}
.x1_c02341{left:463.320000px;}
.xa_c02341{left:483.480360px;}
.x9_c02341{left:492.119496px;}
.x6_c02341{left:493.200576px;}
.xc_c02341{left:506.880360px;}
.x3_c02341{left:511.919892px;}
.x2_c02341{left:526.679604px;}
@media print{
.v0_c02341{vertical-align:0.000000pt;}
.v1_c02341{vertical-align:1.279488pt;}
.ls7_c02341{letter-spacing:-0.604032pt;}
.ls9_c02341{letter-spacing:-0.511104pt;}
.lse_c02341{letter-spacing:-0.244992pt;}
.lsc_c02341{letter-spacing:-0.232320pt;}
.ls6_c02341{letter-spacing:-0.215424pt;}
.ls4_c02341{letter-spacing:-0.105600pt;}
.ls11_c02341{letter-spacing:0.000000pt;}
.ls2_c02341{letter-spacing:0.005376pt;}
.ls5_c02341{letter-spacing:0.114048pt;}
.lsb_c02341{letter-spacing:0.451968pt;}
.ls10_c02341{letter-spacing:0.456960pt;}
.lsd_c02341{letter-spacing:0.477312pt;}
.lsa_c02341{letter-spacing:0.515328pt;}
.lsf_c02341{letter-spacing:0.528000pt;}
.ls8_c02341{letter-spacing:0.532224pt;}
.ls3_c02341{letter-spacing:0.544896pt;}
.ls1_c02341{letter-spacing:0.637824pt;}
.ls0_c02341{letter-spacing:0.642048pt;}
.wsc_c02341{word-spacing:-13.445376pt;}
.ws2_c02341{word-spacing:-11.202048pt;}
.wsa_c02341{word-spacing:-11.088000pt;}
.ws7_c02341{word-spacing:-11.075328pt;}
.ws9_c02341{word-spacing:-11.037312pt;}
.ws8_c02341{word-spacing:-11.011968pt;}
.ws5_c02341{word-spacing:-10.344576pt;}
.ws3_c02341{word-spacing:-9.955968pt;}
.ws14_c02341{word-spacing:-1.919232pt;}
.ws12_c02341{word-spacing:-0.963072pt;}
.ws10_c02341{word-spacing:-0.958848pt;}
.wsd_c02341{word-spacing:-0.865920pt;}
.wsf_c02341{word-spacing:-0.105600pt;}
.ws11_c02341{word-spacing:-0.088704pt;}
.ws13_c02341{word-spacing:-0.076032pt;}
.wse_c02341{word-spacing:0.000000pt;}
.wsb_c02341{word-spacing:29.600256pt;}
.ws1_c02341{word-spacing:33.563904pt;}
.ws0_c02341{word-spacing:33.796224pt;}
.ws4_c02341{word-spacing:34.860672pt;}
.ws6_c02341{word-spacing:35.468928pt;}
._0_c02341{margin-left:-1.731840pt;}
._2_c02341{width:1.317888pt;}
._4_c02341{width:5.094144pt;}
._1_c02341{width:44.668800pt;}
._3_c02341{width:45.805056pt;}
.fs0_c02341{font-size:42.240000pt;}
.fs1_c02341{font-size:53.760000pt;}
.y0_c02341{bottom:0.000000pt;}
.y19_c02341{bottom:130.665211pt;}
.y1b_c02341{bottom:165.866875pt;}
.y1a_c02341{bottom:174.507067pt;}
.y18_c02341{bottom:245.225371pt;}
.y17_c02341{bottom:317.225563pt;}
.y15_c02341{bottom:361.386427pt;}
.y11_c02341{bottom:377.386939pt;}
.y16_c02341{bottom:407.786011pt;}
.y14_c02341{bottom:437.226235pt;}
.y13_c02341{bottom:453.226747pt;}
.y10_c02341{bottom:482.666971pt;}
.y12_c02341{bottom:497.386555pt;}
.yf_c02341{bottom:513.387067pt;}
.y1c_c02341{bottom:546.027067pt;}
.yb_c02341{bottom:593.385179pt;}
.yd_c02341{bottom:628.586875pt;}
.yc_c02341{bottom:637.227067pt;}
.ya_c02341{bottom:707.945339pt;}
.y9_c02341{bottom:779.945531pt;}
.y7_c02341{bottom:823.786427pt;}
.y3_c02341{bottom:839.786939pt;}
.y8_c02341{bottom:870.505979pt;}
.y6_c02341{bottom:899.946203pt;}
.y5_c02341{bottom:915.946715pt;}
.y2_c02341{bottom:945.386939pt;}
.y4_c02341{bottom:959.786555pt;}
.y1_c02341{bottom:975.787067pt;}
.ye_c02341{bottom:1008.747067pt;}
.h3_c02341{height:28.916250pt;}
.h1_c02341{height:37.063125pt;}
.h2_c02341{height:37.166250pt;}
.h4_c02341{height:48.581988pt;}
.h0_c02341{height:1122.666667pt;}
.w1_c02341{width:793.333333pt;}
.w0_c02341{width:793.626667pt;}
.x0_c02341{left:0.000000pt;}
.xd_c02341{left:104.000000pt;}
.x8_c02341{left:391.999872pt;}
.x4_c02341{left:396.160512pt;}
.xb_c02341{left:400.960000pt;}
.x7_c02341{left:404.799648pt;}
.x5_c02341{left:410.560128pt;}
.x1_c02341{left:411.840000pt;}
.xa_c02341{left:429.760320pt;}
.x9_c02341{left:437.439552pt;}
.x6_c02341{left:438.400512pt;}
.xc_c02341{left:450.560320pt;}
.x3_c02341{left:455.039904pt;}
.x2_c02341{left:468.159648pt;}
}





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

.ir_c02342:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02342{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02342;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02342{font-family:ff1_c02342;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02342;src:url('chunks/assets/font_60f1e964944c7f1598cc42f7.woff2')format("woff");}.ff2_c02342{font-family:ff2_c02342;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02342;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02342{font-family:ff3_c02342;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02342{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02342{vertical-align:0.000000px;}
.v1_c02342{vertical-align:1.439424px;}
.ls7_c02342{letter-spacing:-0.679536px;}
.ls9_c02342{letter-spacing:-0.574992px;}
.lse_c02342{letter-spacing:-0.275616px;}
.lsc_c02342{letter-spacing:-0.261360px;}
.ls6_c02342{letter-spacing:-0.242352px;}
.ls4_c02342{letter-spacing:-0.118800px;}
.ls11_c02342{letter-spacing:0.000000px;}
.ls2_c02342{letter-spacing:0.006048px;}
.ls5_c02342{letter-spacing:0.128304px;}
.lsb_c02342{letter-spacing:0.508464px;}
.ls10_c02342{letter-spacing:0.514080px;}
.lsd_c02342{letter-spacing:0.536976px;}
.lsa_c02342{letter-spacing:0.579744px;}
.lsf_c02342{letter-spacing:0.594000px;}
.ls8_c02342{letter-spacing:0.598752px;}
.ls3_c02342{letter-spacing:0.613008px;}
.ls1_c02342{letter-spacing:0.717552px;}
.ls0_c02342{letter-spacing:0.722304px;}
.sc__c02342{text-shadow:none;}
.sc0_c02342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02342{-webkit-text-stroke:0px transparent;}
.sc0_c02342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02342{word-spacing:-15.126048px;}
.ws2_c02342{word-spacing:-12.602304px;}
.wsa_c02342{word-spacing:-12.474000px;}
.ws7_c02342{word-spacing:-12.459744px;}
.ws9_c02342{word-spacing:-12.416976px;}
.ws8_c02342{word-spacing:-12.388464px;}
.ws5_c02342{word-spacing:-11.637648px;}
.ws3_c02342{word-spacing:-11.200464px;}
.ws14_c02342{word-spacing:-2.159136px;}
.ws12_c02342{word-spacing:-1.083456px;}
.ws10_c02342{word-spacing:-1.078704px;}
.wsd_c02342{word-spacing:-0.974160px;}
.wsf_c02342{word-spacing:-0.118800px;}
.ws11_c02342{word-spacing:-0.099792px;}
.ws13_c02342{word-spacing:-0.085536px;}
.wse_c02342{word-spacing:0.000000px;}
.wsb_c02342{word-spacing:33.300288px;}
.ws1_c02342{word-spacing:37.759392px;}
.ws0_c02342{word-spacing:38.020752px;}
.ws4_c02342{word-spacing:39.218256px;}
.ws6_c02342{word-spacing:39.902544px;}
._0_c02342{margin-left:-1.948320px;}
._2_c02342{width:1.482624px;}
._4_c02342{width:5.730912px;}
._1_c02342{width:50.252400px;}
._3_c02342{width:51.530688px;}
.fc0_c02342{color:rgb(0,0,0);}
.fs0_c02342{font-size:47.520000px;}
.fs1_c02342{font-size:60.480000px;}
.y0_c02342{bottom:0.000000px;}
.y19_c02342{bottom:146.998362px;}
.y1b_c02342{bottom:186.600234px;}
.y1a_c02342{bottom:196.320450px;}
.y18_c02342{bottom:275.878542px;}
.y17_c02342{bottom:356.878758px;}
.y15_c02342{bottom:406.559730px;}
.y11_c02342{bottom:424.560306px;}
.y16_c02342{bottom:458.759262px;}
.y14_c02342{bottom:491.879514px;}
.y13_c02342{bottom:509.880090px;}
.y10_c02342{bottom:543.000342px;}
.y12_c02342{bottom:559.559874px;}
.yf_c02342{bottom:577.560450px;}
.y1c_c02342{bottom:614.280450px;}
.yb_c02342{bottom:667.558326px;}
.yd_c02342{bottom:707.160234px;}
.yc_c02342{bottom:716.880450px;}
.ya_c02342{bottom:796.438506px;}
.y9_c02342{bottom:877.438722px;}
.y7_c02342{bottom:926.759730px;}
.y3_c02342{bottom:944.760306px;}
.y8_c02342{bottom:979.319226px;}
.y6_c02342{bottom:1012.439478px;}
.y5_c02342{bottom:1030.440054px;}
.y2_c02342{bottom:1063.560306px;}
.y4_c02342{bottom:1079.759874px;}
.y1_c02342{bottom:1097.760450px;}
.ye_c02342{bottom:1134.840450px;}
.h3_c02342{height:32.530781px;}
.h1_c02342{height:41.696016px;}
.h2_c02342{height:41.812031px;}
.h4_c02342{height:54.654737px;}
.h0_c02342{height:1263.000000px;}
.w1_c02342{width:892.500000px;}
.w0_c02342{width:892.830000px;}
.x0_c02342{left:0.000000px;}
.xd_c02342{left:117.000000px;}
.x8_c02342{left:440.999856px;}
.x4_c02342{left:445.680576px;}
.xb_c02342{left:451.080000px;}
.x7_c02342{left:455.399604px;}
.x5_c02342{left:461.880144px;}
.x1_c02342{left:463.320000px;}
.xa_c02342{left:483.480360px;}
.x9_c02342{left:492.119496px;}
.x6_c02342{left:493.200576px;}
.xc_c02342{left:506.880360px;}
.x3_c02342{left:511.919892px;}
.x2_c02342{left:526.679604px;}
@media print{
.v0_c02342{vertical-align:0.000000pt;}
.v1_c02342{vertical-align:1.279488pt;}
.ls7_c02342{letter-spacing:-0.604032pt;}
.ls9_c02342{letter-spacing:-0.511104pt;}
.lse_c02342{letter-spacing:-0.244992pt;}
.lsc_c02342{letter-spacing:-0.232320pt;}
.ls6_c02342{letter-spacing:-0.215424pt;}
.ls4_c02342{letter-spacing:-0.105600pt;}
.ls11_c02342{letter-spacing:0.000000pt;}
.ls2_c02342{letter-spacing:0.005376pt;}
.ls5_c02342{letter-spacing:0.114048pt;}
.lsb_c02342{letter-spacing:0.451968pt;}
.ls10_c02342{letter-spacing:0.456960pt;}
.lsd_c02342{letter-spacing:0.477312pt;}
.lsa_c02342{letter-spacing:0.515328pt;}
.lsf_c02342{letter-spacing:0.528000pt;}
.ls8_c02342{letter-spacing:0.532224pt;}
.ls3_c02342{letter-spacing:0.544896pt;}
.ls1_c02342{letter-spacing:0.637824pt;}
.ls0_c02342{letter-spacing:0.642048pt;}
.wsc_c02342{word-spacing:-13.445376pt;}
.ws2_c02342{word-spacing:-11.202048pt;}
.wsa_c02342{word-spacing:-11.088000pt;}
.ws7_c02342{word-spacing:-11.075328pt;}
.ws9_c02342{word-spacing:-11.037312pt;}
.ws8_c02342{word-spacing:-11.011968pt;}
.ws5_c02342{word-spacing:-10.344576pt;}
.ws3_c02342{word-spacing:-9.955968pt;}
.ws14_c02342{word-spacing:-1.919232pt;}
.ws12_c02342{word-spacing:-0.963072pt;}
.ws10_c02342{word-spacing:-0.958848pt;}
.wsd_c02342{word-spacing:-0.865920pt;}
.wsf_c02342{word-spacing:-0.105600pt;}
.ws11_c02342{word-spacing:-0.088704pt;}
.ws13_c02342{word-spacing:-0.076032pt;}
.wse_c02342{word-spacing:0.000000pt;}
.wsb_c02342{word-spacing:29.600256pt;}
.ws1_c02342{word-spacing:33.563904pt;}
.ws0_c02342{word-spacing:33.796224pt;}
.ws4_c02342{word-spacing:34.860672pt;}
.ws6_c02342{word-spacing:35.468928pt;}
._0_c02342{margin-left:-1.731840pt;}
._2_c02342{width:1.317888pt;}
._4_c02342{width:5.094144pt;}
._1_c02342{width:44.668800pt;}
._3_c02342{width:45.805056pt;}
.fs0_c02342{font-size:42.240000pt;}
.fs1_c02342{font-size:53.760000pt;}
.y0_c02342{bottom:0.000000pt;}
.y19_c02342{bottom:130.665211pt;}
.y1b_c02342{bottom:165.866875pt;}
.y1a_c02342{bottom:174.507067pt;}
.y18_c02342{bottom:245.225371pt;}
.y17_c02342{bottom:317.225563pt;}
.y15_c02342{bottom:361.386427pt;}
.y11_c02342{bottom:377.386939pt;}
.y16_c02342{bottom:407.786011pt;}
.y14_c02342{bottom:437.226235pt;}
.y13_c02342{bottom:453.226747pt;}
.y10_c02342{bottom:482.666971pt;}
.y12_c02342{bottom:497.386555pt;}
.yf_c02342{bottom:513.387067pt;}
.y1c_c02342{bottom:546.027067pt;}
.yb_c02342{bottom:593.385179pt;}
.yd_c02342{bottom:628.586875pt;}
.yc_c02342{bottom:637.227067pt;}
.ya_c02342{bottom:707.945339pt;}
.y9_c02342{bottom:779.945531pt;}
.y7_c02342{bottom:823.786427pt;}
.y3_c02342{bottom:839.786939pt;}
.y8_c02342{bottom:870.505979pt;}
.y6_c02342{bottom:899.946203pt;}
.y5_c02342{bottom:915.946715pt;}
.y2_c02342{bottom:945.386939pt;}
.y4_c02342{bottom:959.786555pt;}
.y1_c02342{bottom:975.787067pt;}
.ye_c02342{bottom:1008.747067pt;}
.h3_c02342{height:28.916250pt;}
.h1_c02342{height:37.063125pt;}
.h2_c02342{height:37.166250pt;}
.h4_c02342{height:48.581988pt;}
.h0_c02342{height:1122.666667pt;}
.w1_c02342{width:793.333333pt;}
.w0_c02342{width:793.626667pt;}
.x0_c02342{left:0.000000pt;}
.xd_c02342{left:104.000000pt;}
.x8_c02342{left:391.999872pt;}
.x4_c02342{left:396.160512pt;}
.xb_c02342{left:400.960000pt;}
.x7_c02342{left:404.799648pt;}
.x5_c02342{left:410.560128pt;}
.x1_c02342{left:411.840000pt;}
.xa_c02342{left:429.760320pt;}
.x9_c02342{left:437.439552pt;}
.x6_c02342{left:438.400512pt;}
.xc_c02342{left:450.560320pt;}
.x3_c02342{left:455.039904pt;}
.x2_c02342{left:468.159648pt;}
}





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

.ir_c02343:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02343{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02343;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02343{font-family:ff1_c02343;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02343;src:url('chunks/assets/font_f8e2a6b48e037f228f1f0712.woff2')format("woff");}.ff2_c02343{font-family:ff2_c02343;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02343;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02343{font-family:ff3_c02343;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02343{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02343{vertical-align:0.000000px;}
.v1_c02343{vertical-align:1.439424px;}
.ls7_c02343{letter-spacing:-0.679536px;}
.ls9_c02343{letter-spacing:-0.574992px;}
.lse_c02343{letter-spacing:-0.275616px;}
.lsc_c02343{letter-spacing:-0.261360px;}
.ls6_c02343{letter-spacing:-0.242352px;}
.ls4_c02343{letter-spacing:-0.118800px;}
.ls11_c02343{letter-spacing:0.000000px;}
.ls2_c02343{letter-spacing:0.006048px;}
.ls5_c02343{letter-spacing:0.128304px;}
.lsb_c02343{letter-spacing:0.508464px;}
.ls10_c02343{letter-spacing:0.514080px;}
.lsd_c02343{letter-spacing:0.536976px;}
.lsa_c02343{letter-spacing:0.579744px;}
.lsf_c02343{letter-spacing:0.594000px;}
.ls8_c02343{letter-spacing:0.598752px;}
.ls3_c02343{letter-spacing:0.613008px;}
.ls1_c02343{letter-spacing:0.717552px;}
.ls0_c02343{letter-spacing:0.722304px;}
.sc__c02343{text-shadow:none;}
.sc0_c02343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02343{-webkit-text-stroke:0px transparent;}
.sc0_c02343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02343{word-spacing:-15.126048px;}
.ws2_c02343{word-spacing:-12.602304px;}
.wsa_c02343{word-spacing:-12.474000px;}
.ws7_c02343{word-spacing:-12.459744px;}
.ws9_c02343{word-spacing:-12.416976px;}
.ws8_c02343{word-spacing:-12.388464px;}
.ws5_c02343{word-spacing:-11.637648px;}
.ws3_c02343{word-spacing:-11.200464px;}
.ws14_c02343{word-spacing:-2.159136px;}
.ws12_c02343{word-spacing:-1.083456px;}
.ws10_c02343{word-spacing:-1.078704px;}
.wsd_c02343{word-spacing:-0.974160px;}
.wsf_c02343{word-spacing:-0.118800px;}
.ws11_c02343{word-spacing:-0.099792px;}
.ws13_c02343{word-spacing:-0.085536px;}
.wse_c02343{word-spacing:0.000000px;}
.wsb_c02343{word-spacing:33.300288px;}
.ws1_c02343{word-spacing:37.759392px;}
.ws0_c02343{word-spacing:38.020752px;}
.ws4_c02343{word-spacing:39.218256px;}
.ws6_c02343{word-spacing:39.902544px;}
._0_c02343{margin-left:-1.948320px;}
._2_c02343{width:1.482624px;}
._4_c02343{width:5.730912px;}
._1_c02343{width:50.252400px;}
._3_c02343{width:51.530688px;}
.fc0_c02343{color:rgb(0,0,0);}
.fs0_c02343{font-size:47.520000px;}
.fs1_c02343{font-size:60.480000px;}
.y0_c02343{bottom:0.000000px;}
.y19_c02343{bottom:146.998362px;}
.y1b_c02343{bottom:186.600234px;}
.y1a_c02343{bottom:196.320450px;}
.y18_c02343{bottom:275.878542px;}
.y17_c02343{bottom:356.878758px;}
.y15_c02343{bottom:406.559730px;}
.y11_c02343{bottom:424.560306px;}
.y16_c02343{bottom:458.759262px;}
.y14_c02343{bottom:491.879514px;}
.y13_c02343{bottom:509.880090px;}
.y10_c02343{bottom:543.000342px;}
.y12_c02343{bottom:559.559874px;}
.yf_c02343{bottom:577.560450px;}
.y1c_c02343{bottom:614.280450px;}
.yb_c02343{bottom:667.558326px;}
.yd_c02343{bottom:707.160234px;}
.yc_c02343{bottom:716.880450px;}
.ya_c02343{bottom:796.438506px;}
.y9_c02343{bottom:877.438722px;}
.y7_c02343{bottom:926.759730px;}
.y3_c02343{bottom:944.760306px;}
.y8_c02343{bottom:979.319226px;}
.y6_c02343{bottom:1012.439478px;}
.y5_c02343{bottom:1030.440054px;}
.y2_c02343{bottom:1063.560306px;}
.y4_c02343{bottom:1079.759874px;}
.y1_c02343{bottom:1097.760450px;}
.ye_c02343{bottom:1134.840450px;}
.h3_c02343{height:32.530781px;}
.h1_c02343{height:41.696016px;}
.h2_c02343{height:41.812031px;}
.h4_c02343{height:54.654737px;}
.h0_c02343{height:1263.000000px;}
.w1_c02343{width:892.500000px;}
.w0_c02343{width:892.830000px;}
.x0_c02343{left:0.000000px;}
.xd_c02343{left:117.000000px;}
.x8_c02343{left:440.999856px;}
.x4_c02343{left:445.680576px;}
.xb_c02343{left:451.080000px;}
.x7_c02343{left:455.399604px;}
.x5_c02343{left:461.880144px;}
.x1_c02343{left:463.320000px;}
.xa_c02343{left:483.480360px;}
.x9_c02343{left:492.119496px;}
.x6_c02343{left:493.200576px;}
.xc_c02343{left:506.880360px;}
.x3_c02343{left:511.919892px;}
.x2_c02343{left:526.679604px;}
@media print{
.v0_c02343{vertical-align:0.000000pt;}
.v1_c02343{vertical-align:1.279488pt;}
.ls7_c02343{letter-spacing:-0.604032pt;}
.ls9_c02343{letter-spacing:-0.511104pt;}
.lse_c02343{letter-spacing:-0.244992pt;}
.lsc_c02343{letter-spacing:-0.232320pt;}
.ls6_c02343{letter-spacing:-0.215424pt;}
.ls4_c02343{letter-spacing:-0.105600pt;}
.ls11_c02343{letter-spacing:0.000000pt;}
.ls2_c02343{letter-spacing:0.005376pt;}
.ls5_c02343{letter-spacing:0.114048pt;}
.lsb_c02343{letter-spacing:0.451968pt;}
.ls10_c02343{letter-spacing:0.456960pt;}
.lsd_c02343{letter-spacing:0.477312pt;}
.lsa_c02343{letter-spacing:0.515328pt;}
.lsf_c02343{letter-spacing:0.528000pt;}
.ls8_c02343{letter-spacing:0.532224pt;}
.ls3_c02343{letter-spacing:0.544896pt;}
.ls1_c02343{letter-spacing:0.637824pt;}
.ls0_c02343{letter-spacing:0.642048pt;}
.wsc_c02343{word-spacing:-13.445376pt;}
.ws2_c02343{word-spacing:-11.202048pt;}
.wsa_c02343{word-spacing:-11.088000pt;}
.ws7_c02343{word-spacing:-11.075328pt;}
.ws9_c02343{word-spacing:-11.037312pt;}
.ws8_c02343{word-spacing:-11.011968pt;}
.ws5_c02343{word-spacing:-10.344576pt;}
.ws3_c02343{word-spacing:-9.955968pt;}
.ws14_c02343{word-spacing:-1.919232pt;}
.ws12_c02343{word-spacing:-0.963072pt;}
.ws10_c02343{word-spacing:-0.958848pt;}
.wsd_c02343{word-spacing:-0.865920pt;}
.wsf_c02343{word-spacing:-0.105600pt;}
.ws11_c02343{word-spacing:-0.088704pt;}
.ws13_c02343{word-spacing:-0.076032pt;}
.wse_c02343{word-spacing:0.000000pt;}
.wsb_c02343{word-spacing:29.600256pt;}
.ws1_c02343{word-spacing:33.563904pt;}
.ws0_c02343{word-spacing:33.796224pt;}
.ws4_c02343{word-spacing:34.860672pt;}
.ws6_c02343{word-spacing:35.468928pt;}
._0_c02343{margin-left:-1.731840pt;}
._2_c02343{width:1.317888pt;}
._4_c02343{width:5.094144pt;}
._1_c02343{width:44.668800pt;}
._3_c02343{width:45.805056pt;}
.fs0_c02343{font-size:42.240000pt;}
.fs1_c02343{font-size:53.760000pt;}
.y0_c02343{bottom:0.000000pt;}
.y19_c02343{bottom:130.665211pt;}
.y1b_c02343{bottom:165.866875pt;}
.y1a_c02343{bottom:174.507067pt;}
.y18_c02343{bottom:245.225371pt;}
.y17_c02343{bottom:317.225563pt;}
.y15_c02343{bottom:361.386427pt;}
.y11_c02343{bottom:377.386939pt;}
.y16_c02343{bottom:407.786011pt;}
.y14_c02343{bottom:437.226235pt;}
.y13_c02343{bottom:453.226747pt;}
.y10_c02343{bottom:482.666971pt;}
.y12_c02343{bottom:497.386555pt;}
.yf_c02343{bottom:513.387067pt;}
.y1c_c02343{bottom:546.027067pt;}
.yb_c02343{bottom:593.385179pt;}
.yd_c02343{bottom:628.586875pt;}
.yc_c02343{bottom:637.227067pt;}
.ya_c02343{bottom:707.945339pt;}
.y9_c02343{bottom:779.945531pt;}
.y7_c02343{bottom:823.786427pt;}
.y3_c02343{bottom:839.786939pt;}
.y8_c02343{bottom:870.505979pt;}
.y6_c02343{bottom:899.946203pt;}
.y5_c02343{bottom:915.946715pt;}
.y2_c02343{bottom:945.386939pt;}
.y4_c02343{bottom:959.786555pt;}
.y1_c02343{bottom:975.787067pt;}
.ye_c02343{bottom:1008.747067pt;}
.h3_c02343{height:28.916250pt;}
.h1_c02343{height:37.063125pt;}
.h2_c02343{height:37.166250pt;}
.h4_c02343{height:48.581988pt;}
.h0_c02343{height:1122.666667pt;}
.w1_c02343{width:793.333333pt;}
.w0_c02343{width:793.626667pt;}
.x0_c02343{left:0.000000pt;}
.xd_c02343{left:104.000000pt;}
.x8_c02343{left:391.999872pt;}
.x4_c02343{left:396.160512pt;}
.xb_c02343{left:400.960000pt;}
.x7_c02343{left:404.799648pt;}
.x5_c02343{left:410.560128pt;}
.x1_c02343{left:411.840000pt;}
.xa_c02343{left:429.760320pt;}
.x9_c02343{left:437.439552pt;}
.x6_c02343{left:438.400512pt;}
.xc_c02343{left:450.560320pt;}
.x3_c02343{left:455.039904pt;}
.x2_c02343{left:468.159648pt;}
}





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

.ir_c02344:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02344{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02344;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02344{font-family:ff1_c02344;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02344;src:url('chunks/assets/font_6fdd01587a414ee0166a8d79.woff2')format("woff");}.ff2_c02344{font-family:ff2_c02344;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02344;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02344{font-family:ff3_c02344;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02344{vertical-align:0.000000px;}
.v1_c02344{vertical-align:1.439424px;}
.ls12_c02344{letter-spacing:-1.197504px;}
.ls7_c02344{letter-spacing:-0.679536px;}
.ls9_c02344{letter-spacing:-0.574992px;}
.lse_c02344{letter-spacing:-0.275616px;}
.lsc_c02344{letter-spacing:-0.261360px;}
.ls6_c02344{letter-spacing:-0.242352px;}
.ls4_c02344{letter-spacing:-0.118800px;}
.ls11_c02344{letter-spacing:0.000000px;}
.ls2_c02344{letter-spacing:0.006048px;}
.ls5_c02344{letter-spacing:0.128304px;}
.lsb_c02344{letter-spacing:0.508464px;}
.ls10_c02344{letter-spacing:0.514080px;}
.lsd_c02344{letter-spacing:0.536976px;}
.lsa_c02344{letter-spacing:0.579744px;}
.lsf_c02344{letter-spacing:0.594000px;}
.ls8_c02344{letter-spacing:0.598752px;}
.ls3_c02344{letter-spacing:0.613008px;}
.ls1_c02344{letter-spacing:0.717552px;}
.ls0_c02344{letter-spacing:0.722304px;}
.sc__c02344{text-shadow:none;}
.sc0_c02344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02344{-webkit-text-stroke:0px transparent;}
.sc0_c02344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02344{word-spacing:-15.126048px;}
.ws2_c02344{word-spacing:-12.602304px;}
.wsa_c02344{word-spacing:-12.474000px;}
.ws7_c02344{word-spacing:-12.459744px;}
.ws9_c02344{word-spacing:-12.416976px;}
.ws8_c02344{word-spacing:-12.388464px;}
.ws5_c02344{word-spacing:-11.637648px;}
.ws3_c02344{word-spacing:-11.200464px;}
.ws15_c02344{word-spacing:-2.159136px;}
.ws13_c02344{word-spacing:-1.083456px;}
.ws11_c02344{word-spacing:-1.078704px;}
.wse_c02344{word-spacing:-0.974160px;}
.ws10_c02344{word-spacing:-0.118800px;}
.ws12_c02344{word-spacing:-0.099792px;}
.ws14_c02344{word-spacing:-0.085536px;}
.wsf_c02344{word-spacing:0.000000px;}
.wsd_c02344{word-spacing:10.316592px;}
.wsb_c02344{word-spacing:33.300288px;}
.ws1_c02344{word-spacing:37.759392px;}
.ws0_c02344{word-spacing:38.020752px;}
.ws4_c02344{word-spacing:39.218256px;}
.ws6_c02344{word-spacing:39.902544px;}
._0_c02344{margin-left:-1.948320px;}
._2_c02344{width:1.482624px;}
._6_c02344{width:2.490048px;}
._4_c02344{width:5.730912px;}
._5_c02344{width:25.599024px;}
._1_c02344{width:50.252400px;}
._3_c02344{width:51.530688px;}
.fc0_c02344{color:rgb(0,0,0);}
.fs0_c02344{font-size:47.520000px;}
.fs1_c02344{font-size:60.480000px;}
.y0_c02344{bottom:0.000000px;}
.y1a_c02344{bottom:146.998362px;}
.y1c_c02344{bottom:186.600234px;}
.y1b_c02344{bottom:196.320450px;}
.y19_c02344{bottom:260.758866px;}
.y18_c02344{bottom:275.878542px;}
.y17_c02344{bottom:356.878758px;}
.y15_c02344{bottom:406.559730px;}
.y11_c02344{bottom:424.560306px;}
.y16_c02344{bottom:458.759262px;}
.y14_c02344{bottom:491.879514px;}
.y13_c02344{bottom:509.880090px;}
.y10_c02344{bottom:543.000342px;}
.y12_c02344{bottom:559.559874px;}
.yf_c02344{bottom:577.560450px;}
.y1d_c02344{bottom:614.280450px;}
.yb_c02344{bottom:667.558326px;}
.yd_c02344{bottom:707.160234px;}
.yc_c02344{bottom:716.880450px;}
.ya_c02344{bottom:796.438506px;}
.y9_c02344{bottom:877.438722px;}
.y7_c02344{bottom:926.759730px;}
.y3_c02344{bottom:944.760306px;}
.y8_c02344{bottom:979.319226px;}
.y6_c02344{bottom:1012.439478px;}
.y5_c02344{bottom:1030.440054px;}
.y2_c02344{bottom:1063.560306px;}
.y4_c02344{bottom:1079.759874px;}
.y1_c02344{bottom:1097.760450px;}
.ye_c02344{bottom:1134.840450px;}
.h3_c02344{height:32.530781px;}
.h1_c02344{height:41.696016px;}
.h2_c02344{height:41.812031px;}
.h4_c02344{height:54.654737px;}
.h0_c02344{height:1263.000000px;}
.w1_c02344{width:892.500000px;}
.w0_c02344{width:892.830000px;}
.x0_c02344{left:0.000000px;}
.xd_c02344{left:117.000000px;}
.x8_c02344{left:440.999856px;}
.x4_c02344{left:445.680576px;}
.xb_c02344{left:451.080000px;}
.x7_c02344{left:455.399604px;}
.x5_c02344{left:461.880144px;}
.x1_c02344{left:463.320000px;}
.xa_c02344{left:483.480360px;}
.x9_c02344{left:492.119496px;}
.x6_c02344{left:493.200576px;}
.xc_c02344{left:506.880360px;}
.x3_c02344{left:511.919892px;}
.x2_c02344{left:526.679604px;}
.xe_c02344{left:569.880036px;}
@media print{
.v0_c02344{vertical-align:0.000000pt;}
.v1_c02344{vertical-align:1.279488pt;}
.ls12_c02344{letter-spacing:-1.064448pt;}
.ls7_c02344{letter-spacing:-0.604032pt;}
.ls9_c02344{letter-spacing:-0.511104pt;}
.lse_c02344{letter-spacing:-0.244992pt;}
.lsc_c02344{letter-spacing:-0.232320pt;}
.ls6_c02344{letter-spacing:-0.215424pt;}
.ls4_c02344{letter-spacing:-0.105600pt;}
.ls11_c02344{letter-spacing:0.000000pt;}
.ls2_c02344{letter-spacing:0.005376pt;}
.ls5_c02344{letter-spacing:0.114048pt;}
.lsb_c02344{letter-spacing:0.451968pt;}
.ls10_c02344{letter-spacing:0.456960pt;}
.lsd_c02344{letter-spacing:0.477312pt;}
.lsa_c02344{letter-spacing:0.515328pt;}
.lsf_c02344{letter-spacing:0.528000pt;}
.ls8_c02344{letter-spacing:0.532224pt;}
.ls3_c02344{letter-spacing:0.544896pt;}
.ls1_c02344{letter-spacing:0.637824pt;}
.ls0_c02344{letter-spacing:0.642048pt;}
.wsc_c02344{word-spacing:-13.445376pt;}
.ws2_c02344{word-spacing:-11.202048pt;}
.wsa_c02344{word-spacing:-11.088000pt;}
.ws7_c02344{word-spacing:-11.075328pt;}
.ws9_c02344{word-spacing:-11.037312pt;}
.ws8_c02344{word-spacing:-11.011968pt;}
.ws5_c02344{word-spacing:-10.344576pt;}
.ws3_c02344{word-spacing:-9.955968pt;}
.ws15_c02344{word-spacing:-1.919232pt;}
.ws13_c02344{word-spacing:-0.963072pt;}
.ws11_c02344{word-spacing:-0.958848pt;}
.wse_c02344{word-spacing:-0.865920pt;}
.ws10_c02344{word-spacing:-0.105600pt;}
.ws12_c02344{word-spacing:-0.088704pt;}
.ws14_c02344{word-spacing:-0.076032pt;}
.wsf_c02344{word-spacing:0.000000pt;}
.wsd_c02344{word-spacing:9.170304pt;}
.wsb_c02344{word-spacing:29.600256pt;}
.ws1_c02344{word-spacing:33.563904pt;}
.ws0_c02344{word-spacing:33.796224pt;}
.ws4_c02344{word-spacing:34.860672pt;}
.ws6_c02344{word-spacing:35.468928pt;}
._0_c02344{margin-left:-1.731840pt;}
._2_c02344{width:1.317888pt;}
._6_c02344{width:2.213376pt;}
._4_c02344{width:5.094144pt;}
._5_c02344{width:22.754688pt;}
._1_c02344{width:44.668800pt;}
._3_c02344{width:45.805056pt;}
.fs0_c02344{font-size:42.240000pt;}
.fs1_c02344{font-size:53.760000pt;}
.y0_c02344{bottom:0.000000pt;}
.y1a_c02344{bottom:130.665211pt;}
.y1c_c02344{bottom:165.866875pt;}
.y1b_c02344{bottom:174.507067pt;}
.y19_c02344{bottom:231.785659pt;}
.y18_c02344{bottom:245.225371pt;}
.y17_c02344{bottom:317.225563pt;}
.y15_c02344{bottom:361.386427pt;}
.y11_c02344{bottom:377.386939pt;}
.y16_c02344{bottom:407.786011pt;}
.y14_c02344{bottom:437.226235pt;}
.y13_c02344{bottom:453.226747pt;}
.y10_c02344{bottom:482.666971pt;}
.y12_c02344{bottom:497.386555pt;}
.yf_c02344{bottom:513.387067pt;}
.y1d_c02344{bottom:546.027067pt;}
.yb_c02344{bottom:593.385179pt;}
.yd_c02344{bottom:628.586875pt;}
.yc_c02344{bottom:637.227067pt;}
.ya_c02344{bottom:707.945339pt;}
.y9_c02344{bottom:779.945531pt;}
.y7_c02344{bottom:823.786427pt;}
.y3_c02344{bottom:839.786939pt;}
.y8_c02344{bottom:870.505979pt;}
.y6_c02344{bottom:899.946203pt;}
.y5_c02344{bottom:915.946715pt;}
.y2_c02344{bottom:945.386939pt;}
.y4_c02344{bottom:959.786555pt;}
.y1_c02344{bottom:975.787067pt;}
.ye_c02344{bottom:1008.747067pt;}
.h3_c02344{height:28.916250pt;}
.h1_c02344{height:37.063125pt;}
.h2_c02344{height:37.166250pt;}
.h4_c02344{height:48.581988pt;}
.h0_c02344{height:1122.666667pt;}
.w1_c02344{width:793.333333pt;}
.w0_c02344{width:793.626667pt;}
.x0_c02344{left:0.000000pt;}
.xd_c02344{left:104.000000pt;}
.x8_c02344{left:391.999872pt;}
.x4_c02344{left:396.160512pt;}
.xb_c02344{left:400.960000pt;}
.x7_c02344{left:404.799648pt;}
.x5_c02344{left:410.560128pt;}
.x1_c02344{left:411.840000pt;}
.xa_c02344{left:429.760320pt;}
.x9_c02344{left:437.439552pt;}
.x6_c02344{left:438.400512pt;}
.xc_c02344{left:450.560320pt;}
.x3_c02344{left:455.039904pt;}
.x2_c02344{left:468.159648pt;}
.xe_c02344{left:506.560032pt;}
}





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

.ir_c02345:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02345{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02345;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02345{font-family:ff1_c02345;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02345;src:url('chunks/assets/font_f8e2a6b48e037f228f1f0712.woff2')format("woff");}.ff2_c02345{font-family:ff2_c02345;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02345;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02345{font-family:ff3_c02345;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02345{vertical-align:0.000000px;}
.v1_c02345{vertical-align:1.439424px;}
.ls7_c02345{letter-spacing:-0.679536px;}
.ls9_c02345{letter-spacing:-0.574992px;}
.lse_c02345{letter-spacing:-0.275616px;}
.lsc_c02345{letter-spacing:-0.261360px;}
.ls6_c02345{letter-spacing:-0.242352px;}
.ls4_c02345{letter-spacing:-0.118800px;}
.ls11_c02345{letter-spacing:0.000000px;}
.ls2_c02345{letter-spacing:0.006048px;}
.ls5_c02345{letter-spacing:0.128304px;}
.lsb_c02345{letter-spacing:0.508464px;}
.ls10_c02345{letter-spacing:0.514080px;}
.lsd_c02345{letter-spacing:0.536976px;}
.lsa_c02345{letter-spacing:0.579744px;}
.lsf_c02345{letter-spacing:0.594000px;}
.ls8_c02345{letter-spacing:0.598752px;}
.ls3_c02345{letter-spacing:0.613008px;}
.ls1_c02345{letter-spacing:0.717552px;}
.ls0_c02345{letter-spacing:0.722304px;}
.sc__c02345{text-shadow:none;}
.sc0_c02345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02345{-webkit-text-stroke:0px transparent;}
.sc0_c02345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02345{word-spacing:-15.126048px;}
.ws2_c02345{word-spacing:-12.602304px;}
.wsa_c02345{word-spacing:-12.474000px;}
.ws7_c02345{word-spacing:-12.459744px;}
.ws9_c02345{word-spacing:-12.416976px;}
.ws8_c02345{word-spacing:-12.388464px;}
.ws5_c02345{word-spacing:-11.637648px;}
.ws3_c02345{word-spacing:-11.200464px;}
.ws14_c02345{word-spacing:-2.159136px;}
.ws12_c02345{word-spacing:-1.083456px;}
.ws10_c02345{word-spacing:-1.078704px;}
.wsd_c02345{word-spacing:-0.974160px;}
.wsf_c02345{word-spacing:-0.118800px;}
.ws11_c02345{word-spacing:-0.099792px;}
.ws13_c02345{word-spacing:-0.085536px;}
.wse_c02345{word-spacing:0.000000px;}
.wsb_c02345{word-spacing:33.300288px;}
.ws1_c02345{word-spacing:37.759392px;}
.ws0_c02345{word-spacing:38.020752px;}
.ws4_c02345{word-spacing:39.218256px;}
.ws6_c02345{word-spacing:39.902544px;}
._0_c02345{margin-left:-1.948320px;}
._2_c02345{width:1.482624px;}
._4_c02345{width:5.730912px;}
._1_c02345{width:50.252400px;}
._3_c02345{width:51.530688px;}
.fc0_c02345{color:rgb(0,0,0);}
.fs0_c02345{font-size:47.520000px;}
.fs1_c02345{font-size:60.480000px;}
.y0_c02345{bottom:0.000000px;}
.y19_c02345{bottom:146.998362px;}
.y1b_c02345{bottom:186.600234px;}
.y1a_c02345{bottom:196.320450px;}
.y18_c02345{bottom:275.878542px;}
.y17_c02345{bottom:356.878758px;}
.y15_c02345{bottom:406.559730px;}
.y11_c02345{bottom:424.560306px;}
.y16_c02345{bottom:458.759262px;}
.y14_c02345{bottom:491.879514px;}
.y13_c02345{bottom:509.880090px;}
.y10_c02345{bottom:543.000342px;}
.y12_c02345{bottom:559.559874px;}
.yf_c02345{bottom:577.560450px;}
.y1c_c02345{bottom:614.280450px;}
.yb_c02345{bottom:667.558326px;}
.yd_c02345{bottom:707.160234px;}
.yc_c02345{bottom:716.880450px;}
.ya_c02345{bottom:796.438506px;}
.y9_c02345{bottom:877.438722px;}
.y7_c02345{bottom:926.759730px;}
.y3_c02345{bottom:944.760306px;}
.y8_c02345{bottom:979.319226px;}
.y6_c02345{bottom:1012.439478px;}
.y5_c02345{bottom:1030.440054px;}
.y2_c02345{bottom:1063.560306px;}
.y4_c02345{bottom:1079.759874px;}
.y1_c02345{bottom:1097.760450px;}
.ye_c02345{bottom:1134.840450px;}
.h3_c02345{height:32.530781px;}
.h1_c02345{height:41.696016px;}
.h2_c02345{height:41.812031px;}
.h4_c02345{height:54.654737px;}
.h0_c02345{height:1263.000000px;}
.w1_c02345{width:892.500000px;}
.w0_c02345{width:892.830000px;}
.x0_c02345{left:0.000000px;}
.xd_c02345{left:117.000000px;}
.x8_c02345{left:440.999856px;}
.x4_c02345{left:445.680576px;}
.xb_c02345{left:451.080000px;}
.x7_c02345{left:455.399604px;}
.x5_c02345{left:461.880144px;}
.x1_c02345{left:463.320000px;}
.xa_c02345{left:483.480360px;}
.x9_c02345{left:492.119496px;}
.x6_c02345{left:493.200576px;}
.xc_c02345{left:506.880360px;}
.x3_c02345{left:511.919892px;}
.x2_c02345{left:526.679604px;}
@media print{
.v0_c02345{vertical-align:0.000000pt;}
.v1_c02345{vertical-align:1.279488pt;}
.ls7_c02345{letter-spacing:-0.604032pt;}
.ls9_c02345{letter-spacing:-0.511104pt;}
.lse_c02345{letter-spacing:-0.244992pt;}
.lsc_c02345{letter-spacing:-0.232320pt;}
.ls6_c02345{letter-spacing:-0.215424pt;}
.ls4_c02345{letter-spacing:-0.105600pt;}
.ls11_c02345{letter-spacing:0.000000pt;}
.ls2_c02345{letter-spacing:0.005376pt;}
.ls5_c02345{letter-spacing:0.114048pt;}
.lsb_c02345{letter-spacing:0.451968pt;}
.ls10_c02345{letter-spacing:0.456960pt;}
.lsd_c02345{letter-spacing:0.477312pt;}
.lsa_c02345{letter-spacing:0.515328pt;}
.lsf_c02345{letter-spacing:0.528000pt;}
.ls8_c02345{letter-spacing:0.532224pt;}
.ls3_c02345{letter-spacing:0.544896pt;}
.ls1_c02345{letter-spacing:0.637824pt;}
.ls0_c02345{letter-spacing:0.642048pt;}
.wsc_c02345{word-spacing:-13.445376pt;}
.ws2_c02345{word-spacing:-11.202048pt;}
.wsa_c02345{word-spacing:-11.088000pt;}
.ws7_c02345{word-spacing:-11.075328pt;}
.ws9_c02345{word-spacing:-11.037312pt;}
.ws8_c02345{word-spacing:-11.011968pt;}
.ws5_c02345{word-spacing:-10.344576pt;}
.ws3_c02345{word-spacing:-9.955968pt;}
.ws14_c02345{word-spacing:-1.919232pt;}
.ws12_c02345{word-spacing:-0.963072pt;}
.ws10_c02345{word-spacing:-0.958848pt;}
.wsd_c02345{word-spacing:-0.865920pt;}
.wsf_c02345{word-spacing:-0.105600pt;}
.ws11_c02345{word-spacing:-0.088704pt;}
.ws13_c02345{word-spacing:-0.076032pt;}
.wse_c02345{word-spacing:0.000000pt;}
.wsb_c02345{word-spacing:29.600256pt;}
.ws1_c02345{word-spacing:33.563904pt;}
.ws0_c02345{word-spacing:33.796224pt;}
.ws4_c02345{word-spacing:34.860672pt;}
.ws6_c02345{word-spacing:35.468928pt;}
._0_c02345{margin-left:-1.731840pt;}
._2_c02345{width:1.317888pt;}
._4_c02345{width:5.094144pt;}
._1_c02345{width:44.668800pt;}
._3_c02345{width:45.805056pt;}
.fs0_c02345{font-size:42.240000pt;}
.fs1_c02345{font-size:53.760000pt;}
.y0_c02345{bottom:0.000000pt;}
.y19_c02345{bottom:130.665211pt;}
.y1b_c02345{bottom:165.866875pt;}
.y1a_c02345{bottom:174.507067pt;}
.y18_c02345{bottom:245.225371pt;}
.y17_c02345{bottom:317.225563pt;}
.y15_c02345{bottom:361.386427pt;}
.y11_c02345{bottom:377.386939pt;}
.y16_c02345{bottom:407.786011pt;}
.y14_c02345{bottom:437.226235pt;}
.y13_c02345{bottom:453.226747pt;}
.y10_c02345{bottom:482.666971pt;}
.y12_c02345{bottom:497.386555pt;}
.yf_c02345{bottom:513.387067pt;}
.y1c_c02345{bottom:546.027067pt;}
.yb_c02345{bottom:593.385179pt;}
.yd_c02345{bottom:628.586875pt;}
.yc_c02345{bottom:637.227067pt;}
.ya_c02345{bottom:707.945339pt;}
.y9_c02345{bottom:779.945531pt;}
.y7_c02345{bottom:823.786427pt;}
.y3_c02345{bottom:839.786939pt;}
.y8_c02345{bottom:870.505979pt;}
.y6_c02345{bottom:899.946203pt;}
.y5_c02345{bottom:915.946715pt;}
.y2_c02345{bottom:945.386939pt;}
.y4_c02345{bottom:959.786555pt;}
.y1_c02345{bottom:975.787067pt;}
.ye_c02345{bottom:1008.747067pt;}
.h3_c02345{height:28.916250pt;}
.h1_c02345{height:37.063125pt;}
.h2_c02345{height:37.166250pt;}
.h4_c02345{height:48.581988pt;}
.h0_c02345{height:1122.666667pt;}
.w1_c02345{width:793.333333pt;}
.w0_c02345{width:793.626667pt;}
.x0_c02345{left:0.000000pt;}
.xd_c02345{left:104.000000pt;}
.x8_c02345{left:391.999872pt;}
.x4_c02345{left:396.160512pt;}
.xb_c02345{left:400.960000pt;}
.x7_c02345{left:404.799648pt;}
.x5_c02345{left:410.560128pt;}
.x1_c02345{left:411.840000pt;}
.xa_c02345{left:429.760320pt;}
.x9_c02345{left:437.439552pt;}
.x6_c02345{left:438.400512pt;}
.xc_c02345{left:450.560320pt;}
.x3_c02345{left:455.039904pt;}
.x2_c02345{left:468.159648pt;}
}





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

.ir_c02346:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02346{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02346;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02346{font-family:ff1_c02346;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02346;src:url('chunks/assets/font_4ae734af45b8c4354fcaaf42.woff2')format("woff");}.ff2_c02346{font-family:ff2_c02346;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02346;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02346{font-family:ff3_c02346;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02346{vertical-align:0.000000px;}
.v1_c02346{vertical-align:1.439424px;}
.ls14_c02346{letter-spacing:-0.793584px;}
.ls13_c02346{letter-spacing:-0.774576px;}
.ls8_c02346{letter-spacing:-0.679536px;}
.lsa_c02346{letter-spacing:-0.574992px;}
.lsf_c02346{letter-spacing:-0.275616px;}
.lsd_c02346{letter-spacing:-0.261360px;}
.ls7_c02346{letter-spacing:-0.242352px;}
.ls5_c02346{letter-spacing:-0.118800px;}
.ls12_c02346{letter-spacing:0.000000px;}
.ls2_c02346{letter-spacing:0.006048px;}
.ls6_c02346{letter-spacing:0.128304px;}
.lsc_c02346{letter-spacing:0.508464px;}
.ls11_c02346{letter-spacing:0.514080px;}
.lse_c02346{letter-spacing:0.536976px;}
.lsb_c02346{letter-spacing:0.579744px;}
.ls10_c02346{letter-spacing:0.594000px;}
.ls9_c02346{letter-spacing:0.598752px;}
.ls4_c02346{letter-spacing:0.613008px;}
.ls3_c02346{letter-spacing:0.674784px;}
.ls15_c02346{letter-spacing:0.684288px;}
.ls1_c02346{letter-spacing:0.717552px;}
.ls0_c02346{letter-spacing:0.722304px;}
.sc__c02346{text-shadow:none;}
.sc0_c02346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02346{-webkit-text-stroke:0px transparent;}
.sc0_c02346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02346{word-spacing:-15.126048px;}
.ws2_c02346{word-spacing:-12.602304px;}
.wsa_c02346{word-spacing:-12.474000px;}
.ws7_c02346{word-spacing:-12.459744px;}
.ws9_c02346{word-spacing:-12.416976px;}
.ws8_c02346{word-spacing:-12.388464px;}
.ws5_c02346{word-spacing:-11.637648px;}
.ws3_c02346{word-spacing:-11.200464px;}
.wsd_c02346{word-spacing:-11.105424px;}
.ws17_c02346{word-spacing:-2.159136px;}
.ws15_c02346{word-spacing:-1.083456px;}
.ws13_c02346{word-spacing:-1.078704px;}
.ws1a_c02346{word-spacing:-1.045440px;}
.ws18_c02346{word-spacing:-1.035936px;}
.ws10_c02346{word-spacing:-0.974160px;}
.ws12_c02346{word-spacing:-0.118800px;}
.ws14_c02346{word-spacing:-0.099792px;}
.ws16_c02346{word-spacing:-0.085536px;}
.ws11_c02346{word-spacing:0.000000px;}
.ws19_c02346{word-spacing:0.432432px;}
.wsb_c02346{word-spacing:33.300288px;}
.wsf_c02346{word-spacing:36.143712px;}
.ws1_c02346{word-spacing:37.759392px;}
.ws0_c02346{word-spacing:38.020752px;}
.ws4_c02346{word-spacing:39.218256px;}
.ws6_c02346{word-spacing:39.902544px;}
.wse_c02346{word-spacing:42.026688px;}
._0_c02346{margin-left:-1.948320px;}
._2_c02346{width:1.482624px;}
._4_c02346{width:5.730912px;}
._1_c02346{width:50.252400px;}
._3_c02346{width:51.530688px;}
.fc0_c02346{color:rgb(0,0,0);}
.fs0_c02346{font-size:47.520000px;}
.fs1_c02346{font-size:60.480000px;}
.y0_c02346{bottom:0.000000px;}
.y19_c02346{bottom:146.998362px;}
.y1b_c02346{bottom:186.600234px;}
.y1a_c02346{bottom:196.320450px;}
.y18_c02346{bottom:275.878542px;}
.y17_c02346{bottom:356.878758px;}
.y15_c02346{bottom:406.559730px;}
.y11_c02346{bottom:424.560306px;}
.y16_c02346{bottom:458.759262px;}
.y14_c02346{bottom:491.879514px;}
.y13_c02346{bottom:509.880090px;}
.y10_c02346{bottom:543.000342px;}
.y12_c02346{bottom:559.559874px;}
.yf_c02346{bottom:577.560450px;}
.y1c_c02346{bottom:614.280450px;}
.yb_c02346{bottom:667.558326px;}
.yd_c02346{bottom:707.160234px;}
.yc_c02346{bottom:716.880450px;}
.ya_c02346{bottom:796.438506px;}
.y9_c02346{bottom:877.438722px;}
.y7_c02346{bottom:926.759730px;}
.y3_c02346{bottom:944.760306px;}
.y8_c02346{bottom:979.319226px;}
.y6_c02346{bottom:1012.439478px;}
.y5_c02346{bottom:1030.440054px;}
.y2_c02346{bottom:1063.560306px;}
.y4_c02346{bottom:1079.759874px;}
.y1_c02346{bottom:1097.760450px;}
.ye_c02346{bottom:1134.840450px;}
.h3_c02346{height:32.530781px;}
.h1_c02346{height:41.696016px;}
.h2_c02346{height:41.812031px;}
.h4_c02346{height:54.654737px;}
.h0_c02346{height:1263.000000px;}
.w1_c02346{width:892.500000px;}
.w0_c02346{width:892.830000px;}
.x0_c02346{left:0.000000px;}
.xd_c02346{left:117.000000px;}
.x8_c02346{left:440.999856px;}
.x4_c02346{left:445.680576px;}
.xb_c02346{left:451.080000px;}
.x7_c02346{left:455.399604px;}
.x5_c02346{left:461.880144px;}
.x1_c02346{left:463.320000px;}
.xa_c02346{left:483.480360px;}
.x9_c02346{left:492.119496px;}
.x6_c02346{left:493.200576px;}
.xc_c02346{left:506.880360px;}
.x3_c02346{left:511.919892px;}
.x2_c02346{left:526.679604px;}
@media print{
.v0_c02346{vertical-align:0.000000pt;}
.v1_c02346{vertical-align:1.279488pt;}
.ls14_c02346{letter-spacing:-0.705408pt;}
.ls13_c02346{letter-spacing:-0.688512pt;}
.ls8_c02346{letter-spacing:-0.604032pt;}
.lsa_c02346{letter-spacing:-0.511104pt;}
.lsf_c02346{letter-spacing:-0.244992pt;}
.lsd_c02346{letter-spacing:-0.232320pt;}
.ls7_c02346{letter-spacing:-0.215424pt;}
.ls5_c02346{letter-spacing:-0.105600pt;}
.ls12_c02346{letter-spacing:0.000000pt;}
.ls2_c02346{letter-spacing:0.005376pt;}
.ls6_c02346{letter-spacing:0.114048pt;}
.lsc_c02346{letter-spacing:0.451968pt;}
.ls11_c02346{letter-spacing:0.456960pt;}
.lse_c02346{letter-spacing:0.477312pt;}
.lsb_c02346{letter-spacing:0.515328pt;}
.ls10_c02346{letter-spacing:0.528000pt;}
.ls9_c02346{letter-spacing:0.532224pt;}
.ls4_c02346{letter-spacing:0.544896pt;}
.ls3_c02346{letter-spacing:0.599808pt;}
.ls15_c02346{letter-spacing:0.608256pt;}
.ls1_c02346{letter-spacing:0.637824pt;}
.ls0_c02346{letter-spacing:0.642048pt;}
.wsc_c02346{word-spacing:-13.445376pt;}
.ws2_c02346{word-spacing:-11.202048pt;}
.wsa_c02346{word-spacing:-11.088000pt;}
.ws7_c02346{word-spacing:-11.075328pt;}
.ws9_c02346{word-spacing:-11.037312pt;}
.ws8_c02346{word-spacing:-11.011968pt;}
.ws5_c02346{word-spacing:-10.344576pt;}
.ws3_c02346{word-spacing:-9.955968pt;}
.wsd_c02346{word-spacing:-9.871488pt;}
.ws17_c02346{word-spacing:-1.919232pt;}
.ws15_c02346{word-spacing:-0.963072pt;}
.ws13_c02346{word-spacing:-0.958848pt;}
.ws1a_c02346{word-spacing:-0.929280pt;}
.ws18_c02346{word-spacing:-0.920832pt;}
.ws10_c02346{word-spacing:-0.865920pt;}
.ws12_c02346{word-spacing:-0.105600pt;}
.ws14_c02346{word-spacing:-0.088704pt;}
.ws16_c02346{word-spacing:-0.076032pt;}
.ws11_c02346{word-spacing:0.000000pt;}
.ws19_c02346{word-spacing:0.384384pt;}
.wsb_c02346{word-spacing:29.600256pt;}
.wsf_c02346{word-spacing:32.127744pt;}
.ws1_c02346{word-spacing:33.563904pt;}
.ws0_c02346{word-spacing:33.796224pt;}
.ws4_c02346{word-spacing:34.860672pt;}
.ws6_c02346{word-spacing:35.468928pt;}
.wse_c02346{word-spacing:37.357056pt;}
._0_c02346{margin-left:-1.731840pt;}
._2_c02346{width:1.317888pt;}
._4_c02346{width:5.094144pt;}
._1_c02346{width:44.668800pt;}
._3_c02346{width:45.805056pt;}
.fs0_c02346{font-size:42.240000pt;}
.fs1_c02346{font-size:53.760000pt;}
.y0_c02346{bottom:0.000000pt;}
.y19_c02346{bottom:130.665211pt;}
.y1b_c02346{bottom:165.866875pt;}
.y1a_c02346{bottom:174.507067pt;}
.y18_c02346{bottom:245.225371pt;}
.y17_c02346{bottom:317.225563pt;}
.y15_c02346{bottom:361.386427pt;}
.y11_c02346{bottom:377.386939pt;}
.y16_c02346{bottom:407.786011pt;}
.y14_c02346{bottom:437.226235pt;}
.y13_c02346{bottom:453.226747pt;}
.y10_c02346{bottom:482.666971pt;}
.y12_c02346{bottom:497.386555pt;}
.yf_c02346{bottom:513.387067pt;}
.y1c_c02346{bottom:546.027067pt;}
.yb_c02346{bottom:593.385179pt;}
.yd_c02346{bottom:628.586875pt;}
.yc_c02346{bottom:637.227067pt;}
.ya_c02346{bottom:707.945339pt;}
.y9_c02346{bottom:779.945531pt;}
.y7_c02346{bottom:823.786427pt;}
.y3_c02346{bottom:839.786939pt;}
.y8_c02346{bottom:870.505979pt;}
.y6_c02346{bottom:899.946203pt;}
.y5_c02346{bottom:915.946715pt;}
.y2_c02346{bottom:945.386939pt;}
.y4_c02346{bottom:959.786555pt;}
.y1_c02346{bottom:975.787067pt;}
.ye_c02346{bottom:1008.747067pt;}
.h3_c02346{height:28.916250pt;}
.h1_c02346{height:37.063125pt;}
.h2_c02346{height:37.166250pt;}
.h4_c02346{height:48.581988pt;}
.h0_c02346{height:1122.666667pt;}
.w1_c02346{width:793.333333pt;}
.w0_c02346{width:793.626667pt;}
.x0_c02346{left:0.000000pt;}
.xd_c02346{left:104.000000pt;}
.x8_c02346{left:391.999872pt;}
.x4_c02346{left:396.160512pt;}
.xb_c02346{left:400.960000pt;}
.x7_c02346{left:404.799648pt;}
.x5_c02346{left:410.560128pt;}
.x1_c02346{left:411.840000pt;}
.xa_c02346{left:429.760320pt;}
.x9_c02346{left:437.439552pt;}
.x6_c02346{left:438.400512pt;}
.xc_c02346{left:450.560320pt;}
.x3_c02346{left:455.039904pt;}
.x2_c02346{left:468.159648pt;}
}





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

.ir_c02347:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02347{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02347;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02347{font-family:ff1_c02347;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02347;src:url('chunks/assets/font_a3c2994bcad555cfb6387b8f.woff2')format("woff");}.ff2_c02347{font-family:ff2_c02347;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02347;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02347{font-family:ff3_c02347;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02347{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02347{vertical-align:0.000000px;}
.v1_c02347{vertical-align:1.439424px;}
.ls8_c02347{letter-spacing:-0.613008px;}
.lsa_c02347{letter-spacing:-0.574992px;}
.ls10_c02347{letter-spacing:-0.275616px;}
.lse_c02347{letter-spacing:-0.261360px;}
.ls7_c02347{letter-spacing:-0.242352px;}
.ls5_c02347{letter-spacing:-0.118800px;}
.ls13_c02347{letter-spacing:0.000000px;}
.ls2_c02347{letter-spacing:0.006048px;}
.ls6_c02347{letter-spacing:0.128304px;}
.lsd_c02347{letter-spacing:0.242352px;}
.lsc_c02347{letter-spacing:0.508464px;}
.ls12_c02347{letter-spacing:0.514080px;}
.lsf_c02347{letter-spacing:0.536976px;}
.lsb_c02347{letter-spacing:0.579744px;}
.ls11_c02347{letter-spacing:0.594000px;}
.ls9_c02347{letter-spacing:0.598752px;}
.ls3_c02347{letter-spacing:0.613008px;}
.ls0_c02347{letter-spacing:0.651024px;}
.ls1_c02347{letter-spacing:0.717552px;}
.ls4_c02347{letter-spacing:0.722304px;}
.sc__c02347{text-shadow:none;}
.sc0_c02347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02347{-webkit-text-stroke:0px transparent;}
.sc0_c02347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02347{word-spacing:-15.126048px;}
.wsa_c02347{word-spacing:-12.474000px;}
.ws8_c02347{word-spacing:-12.459744px;}
.ws9_c02347{word-spacing:-12.416976px;}
.ws4_c02347{word-spacing:-11.637648px;}
.ws2_c02347{word-spacing:-11.266992px;}
.ws14_c02347{word-spacing:-2.159136px;}
.ws11_c02347{word-spacing:-1.078704px;}
.wsf_c02347{word-spacing:-1.012176px;}
.wsd_c02347{word-spacing:-0.974160px;}
.ws10_c02347{word-spacing:-0.118800px;}
.ws12_c02347{word-spacing:-0.099792px;}
.ws13_c02347{word-spacing:-0.085536px;}
.wse_c02347{word-spacing:0.000000px;}
.wsb_c02347{word-spacing:33.300288px;}
.ws6_c02347{word-spacing:36.742464px;}
.ws1_c02347{word-spacing:37.759392px;}
.ws0_c02347{word-spacing:38.020752px;}
.ws3_c02347{word-spacing:39.218256px;}
.ws5_c02347{word-spacing:39.902544px;}
.ws7_c02347{word-spacing:42.026688px;}
._0_c02347{margin-left:-1.948320px;}
._2_c02347{width:1.482624px;}
._4_c02347{width:3.302640px;}
._1_c02347{width:50.252400px;}
._3_c02347{width:51.530688px;}
.fc0_c02347{color:rgb(0,0,0);}
.fs0_c02347{font-size:47.520000px;}
.fs1_c02347{font-size:60.480000px;}
.y0_c02347{bottom:0.000000px;}
.y19_c02347{bottom:146.998362px;}
.y1b_c02347{bottom:186.600234px;}
.y1a_c02347{bottom:196.320450px;}
.y18_c02347{bottom:275.878542px;}
.y17_c02347{bottom:356.878758px;}
.y15_c02347{bottom:406.559730px;}
.y11_c02347{bottom:424.560306px;}
.y16_c02347{bottom:458.759262px;}
.y14_c02347{bottom:491.879514px;}
.y13_c02347{bottom:509.880090px;}
.y10_c02347{bottom:543.000342px;}
.y12_c02347{bottom:559.559874px;}
.yf_c02347{bottom:577.560450px;}
.y1c_c02347{bottom:614.280450px;}
.yb_c02347{bottom:667.558326px;}
.yd_c02347{bottom:707.160234px;}
.yc_c02347{bottom:716.880450px;}
.ya_c02347{bottom:796.438506px;}
.y9_c02347{bottom:877.438722px;}
.y7_c02347{bottom:926.759730px;}
.y3_c02347{bottom:944.760306px;}
.y8_c02347{bottom:979.319226px;}
.y6_c02347{bottom:1012.439478px;}
.y5_c02347{bottom:1030.440054px;}
.y2_c02347{bottom:1063.560306px;}
.y4_c02347{bottom:1079.759874px;}
.y1_c02347{bottom:1097.760450px;}
.ye_c02347{bottom:1134.840450px;}
.h3_c02347{height:32.530781px;}
.h1_c02347{height:41.696016px;}
.h2_c02347{height:41.812031px;}
.h4_c02347{height:54.654737px;}
.h0_c02347{height:1263.000000px;}
.w1_c02347{width:892.500000px;}
.w0_c02347{width:892.830000px;}
.x0_c02347{left:0.000000px;}
.xd_c02347{left:117.000000px;}
.x8_c02347{left:440.999856px;}
.x4_c02347{left:445.680576px;}
.xb_c02347{left:451.080000px;}
.x7_c02347{left:455.399604px;}
.x5_c02347{left:461.880144px;}
.x1_c02347{left:463.320000px;}
.xa_c02347{left:483.480360px;}
.x9_c02347{left:492.119496px;}
.x6_c02347{left:493.200576px;}
.xc_c02347{left:506.880360px;}
.x3_c02347{left:511.919892px;}
.x2_c02347{left:526.679604px;}
@media print{
.v0_c02347{vertical-align:0.000000pt;}
.v1_c02347{vertical-align:1.279488pt;}
.ls8_c02347{letter-spacing:-0.544896pt;}
.lsa_c02347{letter-spacing:-0.511104pt;}
.ls10_c02347{letter-spacing:-0.244992pt;}
.lse_c02347{letter-spacing:-0.232320pt;}
.ls7_c02347{letter-spacing:-0.215424pt;}
.ls5_c02347{letter-spacing:-0.105600pt;}
.ls13_c02347{letter-spacing:0.000000pt;}
.ls2_c02347{letter-spacing:0.005376pt;}
.ls6_c02347{letter-spacing:0.114048pt;}
.lsd_c02347{letter-spacing:0.215424pt;}
.lsc_c02347{letter-spacing:0.451968pt;}
.ls12_c02347{letter-spacing:0.456960pt;}
.lsf_c02347{letter-spacing:0.477312pt;}
.lsb_c02347{letter-spacing:0.515328pt;}
.ls11_c02347{letter-spacing:0.528000pt;}
.ls9_c02347{letter-spacing:0.532224pt;}
.ls3_c02347{letter-spacing:0.544896pt;}
.ls0_c02347{letter-spacing:0.578688pt;}
.ls1_c02347{letter-spacing:0.637824pt;}
.ls4_c02347{letter-spacing:0.642048pt;}
.wsc_c02347{word-spacing:-13.445376pt;}
.wsa_c02347{word-spacing:-11.088000pt;}
.ws8_c02347{word-spacing:-11.075328pt;}
.ws9_c02347{word-spacing:-11.037312pt;}
.ws4_c02347{word-spacing:-10.344576pt;}
.ws2_c02347{word-spacing:-10.015104pt;}
.ws14_c02347{word-spacing:-1.919232pt;}
.ws11_c02347{word-spacing:-0.958848pt;}
.wsf_c02347{word-spacing:-0.899712pt;}
.wsd_c02347{word-spacing:-0.865920pt;}
.ws10_c02347{word-spacing:-0.105600pt;}
.ws12_c02347{word-spacing:-0.088704pt;}
.ws13_c02347{word-spacing:-0.076032pt;}
.wse_c02347{word-spacing:0.000000pt;}
.wsb_c02347{word-spacing:29.600256pt;}
.ws6_c02347{word-spacing:32.659968pt;}
.ws1_c02347{word-spacing:33.563904pt;}
.ws0_c02347{word-spacing:33.796224pt;}
.ws3_c02347{word-spacing:34.860672pt;}
.ws5_c02347{word-spacing:35.468928pt;}
.ws7_c02347{word-spacing:37.357056pt;}
._0_c02347{margin-left:-1.731840pt;}
._2_c02347{width:1.317888pt;}
._4_c02347{width:2.935680pt;}
._1_c02347{width:44.668800pt;}
._3_c02347{width:45.805056pt;}
.fs0_c02347{font-size:42.240000pt;}
.fs1_c02347{font-size:53.760000pt;}
.y0_c02347{bottom:0.000000pt;}
.y19_c02347{bottom:130.665211pt;}
.y1b_c02347{bottom:165.866875pt;}
.y1a_c02347{bottom:174.507067pt;}
.y18_c02347{bottom:245.225371pt;}
.y17_c02347{bottom:317.225563pt;}
.y15_c02347{bottom:361.386427pt;}
.y11_c02347{bottom:377.386939pt;}
.y16_c02347{bottom:407.786011pt;}
.y14_c02347{bottom:437.226235pt;}
.y13_c02347{bottom:453.226747pt;}
.y10_c02347{bottom:482.666971pt;}
.y12_c02347{bottom:497.386555pt;}
.yf_c02347{bottom:513.387067pt;}
.y1c_c02347{bottom:546.027067pt;}
.yb_c02347{bottom:593.385179pt;}
.yd_c02347{bottom:628.586875pt;}
.yc_c02347{bottom:637.227067pt;}
.ya_c02347{bottom:707.945339pt;}
.y9_c02347{bottom:779.945531pt;}
.y7_c02347{bottom:823.786427pt;}
.y3_c02347{bottom:839.786939pt;}
.y8_c02347{bottom:870.505979pt;}
.y6_c02347{bottom:899.946203pt;}
.y5_c02347{bottom:915.946715pt;}
.y2_c02347{bottom:945.386939pt;}
.y4_c02347{bottom:959.786555pt;}
.y1_c02347{bottom:975.787067pt;}
.ye_c02347{bottom:1008.747067pt;}
.h3_c02347{height:28.916250pt;}
.h1_c02347{height:37.063125pt;}
.h2_c02347{height:37.166250pt;}
.h4_c02347{height:48.581988pt;}
.h0_c02347{height:1122.666667pt;}
.w1_c02347{width:793.333333pt;}
.w0_c02347{width:793.626667pt;}
.x0_c02347{left:0.000000pt;}
.xd_c02347{left:104.000000pt;}
.x8_c02347{left:391.999872pt;}
.x4_c02347{left:396.160512pt;}
.xb_c02347{left:400.960000pt;}
.x7_c02347{left:404.799648pt;}
.x5_c02347{left:410.560128pt;}
.x1_c02347{left:411.840000pt;}
.xa_c02347{left:429.760320pt;}
.x9_c02347{left:437.439552pt;}
.x6_c02347{left:438.400512pt;}
.xc_c02347{left:450.560320pt;}
.x3_c02347{left:455.039904pt;}
.x2_c02347{left:468.159648pt;}
}





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

.ir_c02348:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02348{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02348;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02348{font-family:ff1_c02348;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02348;src:url('chunks/assets/font_5cb2cc71a58c3d6967163c49.woff2')format("woff");}.ff2_c02348{font-family:ff2_c02348;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02348;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02348{font-family:ff3_c02348;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02348{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02348{vertical-align:0.000000px;}
.v1_c02348{vertical-align:1.439424px;}
.ls16_c02348{letter-spacing:-1.197504px;}
.lse_c02348{letter-spacing:-0.793584px;}
.lsb_c02348{letter-spacing:-0.774576px;}
.ls11_c02348{letter-spacing:-0.736560px;}
.ls8_c02348{letter-spacing:-0.613008px;}
.lsa_c02348{letter-spacing:-0.574992px;}
.ls17_c02348{letter-spacing:-0.275616px;}
.ls12_c02348{letter-spacing:-0.270864px;}
.lsf_c02348{letter-spacing:-0.261360px;}
.ls7_c02348{letter-spacing:-0.242352px;}
.ls5_c02348{letter-spacing:-0.118800px;}
.ls15_c02348{letter-spacing:0.000000px;}
.ls1_c02348{letter-spacing:0.006048px;}
.ls6_c02348{letter-spacing:0.128304px;}
.lsd_c02348{letter-spacing:0.508464px;}
.ls14_c02348{letter-spacing:0.514080px;}
.ls10_c02348{letter-spacing:0.536976px;}
.lsc_c02348{letter-spacing:0.579744px;}
.ls13_c02348{letter-spacing:0.594000px;}
.ls9_c02348{letter-spacing:0.598752px;}
.ls3_c02348{letter-spacing:0.613008px;}
.ls0_c02348{letter-spacing:0.651024px;}
.ls2_c02348{letter-spacing:0.717552px;}
.ls4_c02348{letter-spacing:0.722304px;}
.sc__c02348{text-shadow:none;}
.sc0_c02348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02348{-webkit-text-stroke:0px transparent;}
.sc0_c02348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02348{word-spacing:-15.126048px;}
.wsb_c02348{word-spacing:-12.474000px;}
.ws7_c02348{word-spacing:-12.459744px;}
.wsf_c02348{word-spacing:-12.416976px;}
.ws4_c02348{word-spacing:-11.637648px;}
.ws2_c02348{word-spacing:-11.266992px;}
.ws6_c02348{word-spacing:-11.105424px;}
.ws18_c02348{word-spacing:-2.159136px;}
.ws19_c02348{word-spacing:-1.078704px;}
.ws12_c02348{word-spacing:-1.012176px;}
.ws10_c02348{word-spacing:-0.974160px;}
.ws13_c02348{word-spacing:-0.118800px;}
.ws15_c02348{word-spacing:-0.099792px;}
.ws16_c02348{word-spacing:-0.090288px;}
.ws17_c02348{word-spacing:-0.085536px;}
.ws11_c02348{word-spacing:0.000000px;}
.ws14_c02348{word-spacing:0.432432px;}
.ws1a_c02348{word-spacing:0.836352px;}
.wsa_c02348{word-spacing:6.629040px;}
.wsc_c02348{word-spacing:33.300288px;}
.ws9_c02348{word-spacing:34.836912px;}
.wse_c02348{word-spacing:36.742464px;}
.ws1_c02348{word-spacing:37.759392px;}
.ws0_c02348{word-spacing:38.020752px;}
.ws3_c02348{word-spacing:39.218256px;}
.ws5_c02348{word-spacing:39.902544px;}
.ws8_c02348{word-spacing:42.026688px;}
._0_c02348{margin-left:-1.948320px;}
._2_c02348{width:1.482624px;}
._4_c02348{width:3.302640px;}
._6_c02348{width:19.982160px;}
._7_c02348{width:23.451120px;}
._5_c02348{width:24.691392px;}
._1_c02348{width:50.252400px;}
._3_c02348{width:51.530688px;}
.fc0_c02348{color:rgb(0,0,0);}
.fs0_c02348{font-size:47.520000px;}
.fs1_c02348{font-size:60.480000px;}
.y0_c02348{bottom:0.000000px;}
.y1a_c02348{bottom:146.998362px;}
.y1c_c02348{bottom:186.600234px;}
.y1b_c02348{bottom:196.320450px;}
.y19_c02348{bottom:275.878542px;}
.y18_c02348{bottom:356.878758px;}
.y16_c02348{bottom:406.559730px;}
.y12_c02348{bottom:424.560306px;}
.y17_c02348{bottom:458.759262px;}
.y15_c02348{bottom:491.879514px;}
.y14_c02348{bottom:509.880090px;}
.y11_c02348{bottom:543.000342px;}
.y13_c02348{bottom:559.559874px;}
.y10_c02348{bottom:577.560450px;}
.y1d_c02348{bottom:614.280450px;}
.yc_c02348{bottom:652.438650px;}
.yb_c02348{bottom:667.558326px;}
.ye_c02348{bottom:707.160234px;}
.yd_c02348{bottom:716.880450px;}
.ya_c02348{bottom:796.438506px;}
.y9_c02348{bottom:877.438722px;}
.y7_c02348{bottom:926.759730px;}
.y3_c02348{bottom:944.760306px;}
.y8_c02348{bottom:979.319226px;}
.y6_c02348{bottom:1012.439478px;}
.y5_c02348{bottom:1030.440054px;}
.y2_c02348{bottom:1063.560306px;}
.y4_c02348{bottom:1079.759874px;}
.y1_c02348{bottom:1097.760450px;}
.yf_c02348{bottom:1134.840450px;}
.h3_c02348{height:32.530781px;}
.h1_c02348{height:41.696016px;}
.h2_c02348{height:41.812031px;}
.h4_c02348{height:54.654737px;}
.h0_c02348{height:1263.000000px;}
.w1_c02348{width:892.500000px;}
.w0_c02348{width:892.830000px;}
.x0_c02348{left:0.000000px;}
.xe_c02348{left:117.000000px;}
.x8_c02348{left:440.999856px;}
.x4_c02348{left:445.680576px;}
.xc_c02348{left:451.080000px;}
.x7_c02348{left:455.399604px;}
.x5_c02348{left:461.880144px;}
.x1_c02348{left:463.320000px;}
.xa_c02348{left:483.480360px;}
.x9_c02348{left:492.119496px;}
.x6_c02348{left:493.200576px;}
.xd_c02348{left:506.880360px;}
.x3_c02348{left:511.919892px;}
.x2_c02348{left:526.679604px;}
.xb_c02348{left:569.880036px;}
@media print{
.v0_c02348{vertical-align:0.000000pt;}
.v1_c02348{vertical-align:1.279488pt;}
.ls16_c02348{letter-spacing:-1.064448pt;}
.lse_c02348{letter-spacing:-0.705408pt;}
.lsb_c02348{letter-spacing:-0.688512pt;}
.ls11_c02348{letter-spacing:-0.654720pt;}
.ls8_c02348{letter-spacing:-0.544896pt;}
.lsa_c02348{letter-spacing:-0.511104pt;}
.ls17_c02348{letter-spacing:-0.244992pt;}
.ls12_c02348{letter-spacing:-0.240768pt;}
.lsf_c02348{letter-spacing:-0.232320pt;}
.ls7_c02348{letter-spacing:-0.215424pt;}
.ls5_c02348{letter-spacing:-0.105600pt;}
.ls15_c02348{letter-spacing:0.000000pt;}
.ls1_c02348{letter-spacing:0.005376pt;}
.ls6_c02348{letter-spacing:0.114048pt;}
.lsd_c02348{letter-spacing:0.451968pt;}
.ls14_c02348{letter-spacing:0.456960pt;}
.ls10_c02348{letter-spacing:0.477312pt;}
.lsc_c02348{letter-spacing:0.515328pt;}
.ls13_c02348{letter-spacing:0.528000pt;}
.ls9_c02348{letter-spacing:0.532224pt;}
.ls3_c02348{letter-spacing:0.544896pt;}
.ls0_c02348{letter-spacing:0.578688pt;}
.ls2_c02348{letter-spacing:0.637824pt;}
.ls4_c02348{letter-spacing:0.642048pt;}
.wsd_c02348{word-spacing:-13.445376pt;}
.wsb_c02348{word-spacing:-11.088000pt;}
.ws7_c02348{word-spacing:-11.075328pt;}
.wsf_c02348{word-spacing:-11.037312pt;}
.ws4_c02348{word-spacing:-10.344576pt;}
.ws2_c02348{word-spacing:-10.015104pt;}
.ws6_c02348{word-spacing:-9.871488pt;}
.ws18_c02348{word-spacing:-1.919232pt;}
.ws19_c02348{word-spacing:-0.958848pt;}
.ws12_c02348{word-spacing:-0.899712pt;}
.ws10_c02348{word-spacing:-0.865920pt;}
.ws13_c02348{word-spacing:-0.105600pt;}
.ws15_c02348{word-spacing:-0.088704pt;}
.ws16_c02348{word-spacing:-0.080256pt;}
.ws17_c02348{word-spacing:-0.076032pt;}
.ws11_c02348{word-spacing:0.000000pt;}
.ws14_c02348{word-spacing:0.384384pt;}
.ws1a_c02348{word-spacing:0.743424pt;}
.wsa_c02348{word-spacing:5.892480pt;}
.wsc_c02348{word-spacing:29.600256pt;}
.ws9_c02348{word-spacing:30.966144pt;}
.wse_c02348{word-spacing:32.659968pt;}
.ws1_c02348{word-spacing:33.563904pt;}
.ws0_c02348{word-spacing:33.796224pt;}
.ws3_c02348{word-spacing:34.860672pt;}
.ws5_c02348{word-spacing:35.468928pt;}
.ws8_c02348{word-spacing:37.357056pt;}
._0_c02348{margin-left:-1.731840pt;}
._2_c02348{width:1.317888pt;}
._4_c02348{width:2.935680pt;}
._6_c02348{width:17.761920pt;}
._7_c02348{width:20.845440pt;}
._5_c02348{width:21.947904pt;}
._1_c02348{width:44.668800pt;}
._3_c02348{width:45.805056pt;}
.fs0_c02348{font-size:42.240000pt;}
.fs1_c02348{font-size:53.760000pt;}
.y0_c02348{bottom:0.000000pt;}
.y1a_c02348{bottom:130.665211pt;}
.y1c_c02348{bottom:165.866875pt;}
.y1b_c02348{bottom:174.507067pt;}
.y19_c02348{bottom:245.225371pt;}
.y18_c02348{bottom:317.225563pt;}
.y16_c02348{bottom:361.386427pt;}
.y12_c02348{bottom:377.386939pt;}
.y17_c02348{bottom:407.786011pt;}
.y15_c02348{bottom:437.226235pt;}
.y14_c02348{bottom:453.226747pt;}
.y11_c02348{bottom:482.666971pt;}
.y13_c02348{bottom:497.386555pt;}
.y10_c02348{bottom:513.387067pt;}
.y1d_c02348{bottom:546.027067pt;}
.yc_c02348{bottom:579.945467pt;}
.yb_c02348{bottom:593.385179pt;}
.ye_c02348{bottom:628.586875pt;}
.yd_c02348{bottom:637.227067pt;}
.ya_c02348{bottom:707.945339pt;}
.y9_c02348{bottom:779.945531pt;}
.y7_c02348{bottom:823.786427pt;}
.y3_c02348{bottom:839.786939pt;}
.y8_c02348{bottom:870.505979pt;}
.y6_c02348{bottom:899.946203pt;}
.y5_c02348{bottom:915.946715pt;}
.y2_c02348{bottom:945.386939pt;}
.y4_c02348{bottom:959.786555pt;}
.y1_c02348{bottom:975.787067pt;}
.yf_c02348{bottom:1008.747067pt;}
.h3_c02348{height:28.916250pt;}
.h1_c02348{height:37.063125pt;}
.h2_c02348{height:37.166250pt;}
.h4_c02348{height:48.581988pt;}
.h0_c02348{height:1122.666667pt;}
.w1_c02348{width:793.333333pt;}
.w0_c02348{width:793.626667pt;}
.x0_c02348{left:0.000000pt;}
.xe_c02348{left:104.000000pt;}
.x8_c02348{left:391.999872pt;}
.x4_c02348{left:396.160512pt;}
.xc_c02348{left:400.960000pt;}
.x7_c02348{left:404.799648pt;}
.x5_c02348{left:410.560128pt;}
.x1_c02348{left:411.840000pt;}
.xa_c02348{left:429.760320pt;}
.x9_c02348{left:437.439552pt;}
.x6_c02348{left:438.400512pt;}
.xd_c02348{left:450.560320pt;}
.x3_c02348{left:455.039904pt;}
.x2_c02348{left:468.159648pt;}
.xb_c02348{left:506.560032pt;}
}





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

.ir_c02349:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02349{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02349;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02349{font-family:ff1_c02349;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02349;src:url('chunks/assets/font_79ea20cdc1b6b37dbcfcd7cb.woff2')format("woff");}.ff2_c02349{font-family:ff2_c02349;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02349;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02349{font-family:ff3_c02349;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02349{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02349{vertical-align:0.000000px;}
.v1_c02349{vertical-align:1.439424px;}
.lse_c02349{letter-spacing:-1.197504px;}
.lsb_c02349{letter-spacing:-0.826848px;}
.ls7_c02349{letter-spacing:-0.613008px;}
.ls9_c02349{letter-spacing:-0.574992px;}
.ls11_c02349{letter-spacing:-0.337392px;}
.ls13_c02349{letter-spacing:-0.275616px;}
.lsf_c02349{letter-spacing:-0.261360px;}
.ls6_c02349{letter-spacing:-0.242352px;}
.ls10_c02349{letter-spacing:-0.156816px;}
.ls4_c02349{letter-spacing:-0.118800px;}
.ls16_c02349{letter-spacing:0.000000px;}
.ls1_c02349{letter-spacing:0.006048px;}
.lsc_c02349{letter-spacing:0.052272px;}
.ls5_c02349{letter-spacing:0.128304px;}
.lsd_c02349{letter-spacing:0.508464px;}
.ls15_c02349{letter-spacing:0.514080px;}
.ls12_c02349{letter-spacing:0.536976px;}
.lsa_c02349{letter-spacing:0.579744px;}
.ls14_c02349{letter-spacing:0.594000px;}
.ls8_c02349{letter-spacing:0.598752px;}
.ls3_c02349{letter-spacing:0.613008px;}
.ls2_c02349{letter-spacing:0.717552px;}
.ls0_c02349{letter-spacing:0.722304px;}
.sc__c02349{text-shadow:none;}
.sc0_c02349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02349{-webkit-text-stroke:0px transparent;}
.sc0_c02349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02349{word-spacing:-15.126048px;}
.wsc_c02349{word-spacing:-12.474000px;}
.ws9_c02349{word-spacing:-12.459744px;}
.wsb_c02349{word-spacing:-12.416976px;}
.ws4_c02349{word-spacing:-11.637648px;}
.ws2_c02349{word-spacing:-11.266992px;}
.ws18_c02349{word-spacing:-2.159136px;}
.ws12_c02349{word-spacing:-1.083456px;}
.ws19_c02349{word-spacing:-1.078704px;}
.wsf_c02349{word-spacing:-0.974160px;}
.ws13_c02349{word-spacing:-0.413424px;}
.ws11_c02349{word-spacing:-0.118800px;}
.ws15_c02349{word-spacing:-0.099792px;}
.ws17_c02349{word-spacing:-0.085536px;}
.ws16_c02349{word-spacing:-0.023760px;}
.ws10_c02349{word-spacing:0.000000px;}
.ws14_c02349{word-spacing:0.836352px;}
.ws7_c02349{word-spacing:7.280064px;}
.wsd_c02349{word-spacing:33.300288px;}
.ws6_c02349{word-spacing:36.742464px;}
.ws1_c02349{word-spacing:37.759392px;}
.ws0_c02349{word-spacing:38.020752px;}
.ws3_c02349{word-spacing:39.218256px;}
.ws5_c02349{word-spacing:39.902544px;}
.ws8_c02349{word-spacing:42.026688px;}
.wsa_c02349{word-spacing:60.074784px;}
._0_c02349{margin-left:-1.948320px;}
._2_c02349{width:1.482624px;}
._4_c02349{width:3.302640px;}
._5_c02349{width:20.210256px;}
._6_c02349{width:22.391424px;}
._7_c02349{width:25.461216px;}
._1_c02349{width:50.252400px;}
._3_c02349{width:51.530688px;}
._8_c02349{width:75.371472px;}
._9_c02349{width:78.113376px;}
.fc0_c02349{color:rgb(0,0,0);}
.fs0_c02349{font-size:47.520000px;}
.fs1_c02349{font-size:60.480000px;}
.y0_c02349{bottom:0.000000px;}
.y1b_c02349{bottom:146.998362px;}
.y1d_c02349{bottom:186.600234px;}
.y1c_c02349{bottom:196.320450px;}
.y1a_c02349{bottom:275.878542px;}
.y19_c02349{bottom:356.878758px;}
.y17_c02349{bottom:406.559730px;}
.y13_c02349{bottom:424.560306px;}
.y18_c02349{bottom:458.759262px;}
.y16_c02349{bottom:491.879514px;}
.y15_c02349{bottom:509.880090px;}
.y12_c02349{bottom:543.000342px;}
.y14_c02349{bottom:559.559874px;}
.y11_c02349{bottom:577.560450px;}
.y1e_c02349{bottom:614.280450px;}
.yd_c02349{bottom:667.559514px;}
.yf_c02349{bottom:707.160234px;}
.ye_c02349{bottom:716.880450px;}
.yc_c02349{bottom:781.320018px;}
.yb_c02349{bottom:796.439694px;}
.ya_c02349{bottom:877.439910px;}
.y8_c02349{bottom:912.000018px;}
.y7_c02349{bottom:926.759730px;}
.y3_c02349{bottom:944.760306px;}
.y9_c02349{bottom:979.320414px;}
.y6_c02349{bottom:1012.439478px;}
.y5_c02349{bottom:1030.440054px;}
.y2_c02349{bottom:1063.560306px;}
.y4_c02349{bottom:1079.759874px;}
.y1_c02349{bottom:1097.760450px;}
.y10_c02349{bottom:1134.840450px;}
.h3_c02349{height:32.530781px;}
.h1_c02349{height:41.696016px;}
.h2_c02349{height:41.812031px;}
.h4_c02349{height:54.654737px;}
.h0_c02349{height:1263.000000px;}
.w1_c02349{width:892.500000px;}
.w0_c02349{width:892.830000px;}
.x0_c02349{left:0.000000px;}
.xe_c02349{left:117.000000px;}
.x9_c02349{left:440.999856px;}
.x4_c02349{left:445.680576px;}
.xc_c02349{left:451.080000px;}
.x7_c02349{left:455.399604px;}
.x5_c02349{left:461.880144px;}
.x1_c02349{left:463.320000px;}
.xb_c02349{left:483.480360px;}
.xa_c02349{left:492.119496px;}
.x6_c02349{left:493.200576px;}
.xd_c02349{left:506.880360px;}
.x3_c02349{left:511.919892px;}
.x2_c02349{left:526.679604px;}
.x8_c02349{left:569.880036px;}
@media print{
.v0_c02349{vertical-align:0.000000pt;}
.v1_c02349{vertical-align:1.279488pt;}
.lse_c02349{letter-spacing:-1.064448pt;}
.lsb_c02349{letter-spacing:-0.734976pt;}
.ls7_c02349{letter-spacing:-0.544896pt;}
.ls9_c02349{letter-spacing:-0.511104pt;}
.ls11_c02349{letter-spacing:-0.299904pt;}
.ls13_c02349{letter-spacing:-0.244992pt;}
.lsf_c02349{letter-spacing:-0.232320pt;}
.ls6_c02349{letter-spacing:-0.215424pt;}
.ls10_c02349{letter-spacing:-0.139392pt;}
.ls4_c02349{letter-spacing:-0.105600pt;}
.ls16_c02349{letter-spacing:0.000000pt;}
.ls1_c02349{letter-spacing:0.005376pt;}
.lsc_c02349{letter-spacing:0.046464pt;}
.ls5_c02349{letter-spacing:0.114048pt;}
.lsd_c02349{letter-spacing:0.451968pt;}
.ls15_c02349{letter-spacing:0.456960pt;}
.ls12_c02349{letter-spacing:0.477312pt;}
.lsa_c02349{letter-spacing:0.515328pt;}
.ls14_c02349{letter-spacing:0.528000pt;}
.ls8_c02349{letter-spacing:0.532224pt;}
.ls3_c02349{letter-spacing:0.544896pt;}
.ls2_c02349{letter-spacing:0.637824pt;}
.ls0_c02349{letter-spacing:0.642048pt;}
.wse_c02349{word-spacing:-13.445376pt;}
.wsc_c02349{word-spacing:-11.088000pt;}
.ws9_c02349{word-spacing:-11.075328pt;}
.wsb_c02349{word-spacing:-11.037312pt;}
.ws4_c02349{word-spacing:-10.344576pt;}
.ws2_c02349{word-spacing:-10.015104pt;}
.ws18_c02349{word-spacing:-1.919232pt;}
.ws12_c02349{word-spacing:-0.963072pt;}
.ws19_c02349{word-spacing:-0.958848pt;}
.wsf_c02349{word-spacing:-0.865920pt;}
.ws13_c02349{word-spacing:-0.367488pt;}
.ws11_c02349{word-spacing:-0.105600pt;}
.ws15_c02349{word-spacing:-0.088704pt;}
.ws17_c02349{word-spacing:-0.076032pt;}
.ws16_c02349{word-spacing:-0.021120pt;}
.ws10_c02349{word-spacing:0.000000pt;}
.ws14_c02349{word-spacing:0.743424pt;}
.ws7_c02349{word-spacing:6.471168pt;}
.wsd_c02349{word-spacing:29.600256pt;}
.ws6_c02349{word-spacing:32.659968pt;}
.ws1_c02349{word-spacing:33.563904pt;}
.ws0_c02349{word-spacing:33.796224pt;}
.ws3_c02349{word-spacing:34.860672pt;}
.ws5_c02349{word-spacing:35.468928pt;}
.ws8_c02349{word-spacing:37.357056pt;}
.wsa_c02349{word-spacing:53.399808pt;}
._0_c02349{margin-left:-1.731840pt;}
._2_c02349{width:1.317888pt;}
._4_c02349{width:2.935680pt;}
._5_c02349{width:17.964672pt;}
._6_c02349{width:19.903488pt;}
._7_c02349{width:22.632192pt;}
._1_c02349{width:44.668800pt;}
._3_c02349{width:45.805056pt;}
._8_c02349{width:66.996864pt;}
._9_c02349{width:69.434112pt;}
.fs0_c02349{font-size:42.240000pt;}
.fs1_c02349{font-size:53.760000pt;}
.y0_c02349{bottom:0.000000pt;}
.y1b_c02349{bottom:130.665211pt;}
.y1d_c02349{bottom:165.866875pt;}
.y1c_c02349{bottom:174.507067pt;}
.y1a_c02349{bottom:245.225371pt;}
.y19_c02349{bottom:317.225563pt;}
.y17_c02349{bottom:361.386427pt;}
.y13_c02349{bottom:377.386939pt;}
.y18_c02349{bottom:407.786011pt;}
.y16_c02349{bottom:437.226235pt;}
.y15_c02349{bottom:453.226747pt;}
.y12_c02349{bottom:482.666971pt;}
.y14_c02349{bottom:497.386555pt;}
.y11_c02349{bottom:513.387067pt;}
.y1e_c02349{bottom:546.027067pt;}
.yd_c02349{bottom:593.386235pt;}
.yf_c02349{bottom:628.586875pt;}
.ye_c02349{bottom:637.227067pt;}
.yc_c02349{bottom:694.506683pt;}
.yb_c02349{bottom:707.946395pt;}
.ya_c02349{bottom:779.946587pt;}
.y8_c02349{bottom:810.666683pt;}
.y7_c02349{bottom:823.786427pt;}
.y3_c02349{bottom:839.786939pt;}
.y9_c02349{bottom:870.507035pt;}
.y6_c02349{bottom:899.946203pt;}
.y5_c02349{bottom:915.946715pt;}
.y2_c02349{bottom:945.386939pt;}
.y4_c02349{bottom:959.786555pt;}
.y1_c02349{bottom:975.787067pt;}
.y10_c02349{bottom:1008.747067pt;}
.h3_c02349{height:28.916250pt;}
.h1_c02349{height:37.063125pt;}
.h2_c02349{height:37.166250pt;}
.h4_c02349{height:48.581988pt;}
.h0_c02349{height:1122.666667pt;}
.w1_c02349{width:793.333333pt;}
.w0_c02349{width:793.626667pt;}
.x0_c02349{left:0.000000pt;}
.xe_c02349{left:104.000000pt;}
.x9_c02349{left:391.999872pt;}
.x4_c02349{left:396.160512pt;}
.xc_c02349{left:400.960000pt;}
.x7_c02349{left:404.799648pt;}
.x5_c02349{left:410.560128pt;}
.x1_c02349{left:411.840000pt;}
.xb_c02349{left:429.760320pt;}
.xa_c02349{left:437.439552pt;}
.x6_c02349{left:438.400512pt;}
.xd_c02349{left:450.560320pt;}
.x3_c02349{left:455.039904pt;}
.x2_c02349{left:468.159648pt;}
.x8_c02349{left:506.560032pt;}
}





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

.ir_c02350:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02350{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02350;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02350{font-family:ff1_c02350;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02350;src:url('chunks/assets/font_681ff6bc049ee484fdf8948f.woff2')format("woff");}.ff2_c02350{font-family:ff2_c02350;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02350;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02350{font-family:ff3_c02350;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02350{vertical-align:0.000000px;}
.v1_c02350{vertical-align:1.439424px;}
.lsc_c02350{letter-spacing:-1.197504px;}
.ls7_c02350{letter-spacing:-0.613008px;}
.ls9_c02350{letter-spacing:-0.574992px;}
.lsf_c02350{letter-spacing:-0.275616px;}
.lsd_c02350{letter-spacing:-0.261360px;}
.ls6_c02350{letter-spacing:-0.242352px;}
.ls4_c02350{letter-spacing:-0.118800px;}
.ls12_c02350{letter-spacing:0.000000px;}
.ls1_c02350{letter-spacing:0.006048px;}
.ls5_c02350{letter-spacing:0.128304px;}
.lsb_c02350{letter-spacing:0.508464px;}
.ls11_c02350{letter-spacing:0.514080px;}
.lse_c02350{letter-spacing:0.536976px;}
.lsa_c02350{letter-spacing:0.579744px;}
.ls10_c02350{letter-spacing:0.594000px;}
.ls8_c02350{letter-spacing:0.598752px;}
.ls2_c02350{letter-spacing:0.613008px;}
.ls0_c02350{letter-spacing:0.717552px;}
.ls3_c02350{letter-spacing:0.722304px;}
.sc__c02350{text-shadow:none;}
.sc0_c02350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02350{-webkit-text-stroke:0px transparent;}
.sc0_c02350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02350{word-spacing:-15.126048px;}
.wsa_c02350{word-spacing:-12.474000px;}
.ws8_c02350{word-spacing:-12.459744px;}
.ws9_c02350{word-spacing:-12.416976px;}
.ws4_c02350{word-spacing:-11.637648px;}
.ws2_c02350{word-spacing:-11.266992px;}
.ws14_c02350{word-spacing:-2.159136px;}
.ws10_c02350{word-spacing:-1.078704px;}
.wsd_c02350{word-spacing:-0.974160px;}
.wsf_c02350{word-spacing:-0.118800px;}
.ws12_c02350{word-spacing:-0.099792px;}
.ws13_c02350{word-spacing:-0.085536px;}
.wse_c02350{word-spacing:0.000000px;}
.ws11_c02350{word-spacing:0.836352px;}
.wsb_c02350{word-spacing:33.300288px;}
.ws6_c02350{word-spacing:36.742464px;}
.ws1_c02350{word-spacing:37.759392px;}
.ws0_c02350{word-spacing:38.020752px;}
.ws3_c02350{word-spacing:39.218256px;}
.ws5_c02350{word-spacing:39.902544px;}
.ws7_c02350{word-spacing:42.026688px;}
._0_c02350{margin-left:-1.948320px;}
._2_c02350{width:1.482624px;}
._4_c02350{width:3.302640px;}
._1_c02350{width:50.252400px;}
._3_c02350{width:51.530688px;}
.fc0_c02350{color:rgb(0,0,0);}
.fs0_c02350{font-size:47.520000px;}
.fs1_c02350{font-size:60.480000px;}
.y0_c02350{bottom:0.000000px;}
.y19_c02350{bottom:146.998362px;}
.y1b_c02350{bottom:186.600234px;}
.y1a_c02350{bottom:196.320450px;}
.y18_c02350{bottom:275.878542px;}
.y17_c02350{bottom:356.878758px;}
.y15_c02350{bottom:406.559730px;}
.y11_c02350{bottom:424.560306px;}
.y16_c02350{bottom:458.759262px;}
.y14_c02350{bottom:491.879514px;}
.y13_c02350{bottom:509.880090px;}
.y10_c02350{bottom:543.000342px;}
.y12_c02350{bottom:559.559874px;}
.yf_c02350{bottom:577.560450px;}
.y1c_c02350{bottom:614.280450px;}
.yb_c02350{bottom:667.558326px;}
.yd_c02350{bottom:707.160234px;}
.yc_c02350{bottom:716.880450px;}
.ya_c02350{bottom:796.438506px;}
.y9_c02350{bottom:877.438722px;}
.y7_c02350{bottom:926.759730px;}
.y3_c02350{bottom:944.760306px;}
.y8_c02350{bottom:979.319226px;}
.y6_c02350{bottom:1012.439478px;}
.y5_c02350{bottom:1030.440054px;}
.y2_c02350{bottom:1063.560306px;}
.y4_c02350{bottom:1079.759874px;}
.y1_c02350{bottom:1097.760450px;}
.ye_c02350{bottom:1134.840450px;}
.h3_c02350{height:32.530781px;}
.h1_c02350{height:41.696016px;}
.h2_c02350{height:41.812031px;}
.h4_c02350{height:54.654737px;}
.h0_c02350{height:1263.000000px;}
.w1_c02350{width:892.500000px;}
.w0_c02350{width:892.830000px;}
.x0_c02350{left:0.000000px;}
.xd_c02350{left:117.000000px;}
.x8_c02350{left:440.999856px;}
.x4_c02350{left:445.680576px;}
.xb_c02350{left:451.080000px;}
.x7_c02350{left:455.399604px;}
.x5_c02350{left:461.880144px;}
.x1_c02350{left:463.320000px;}
.xa_c02350{left:483.480360px;}
.x9_c02350{left:492.119496px;}
.x6_c02350{left:493.200576px;}
.xc_c02350{left:506.880360px;}
.x3_c02350{left:511.919892px;}
.x2_c02350{left:526.679604px;}
@media print{
.v0_c02350{vertical-align:0.000000pt;}
.v1_c02350{vertical-align:1.279488pt;}
.lsc_c02350{letter-spacing:-1.064448pt;}
.ls7_c02350{letter-spacing:-0.544896pt;}
.ls9_c02350{letter-spacing:-0.511104pt;}
.lsf_c02350{letter-spacing:-0.244992pt;}
.lsd_c02350{letter-spacing:-0.232320pt;}
.ls6_c02350{letter-spacing:-0.215424pt;}
.ls4_c02350{letter-spacing:-0.105600pt;}
.ls12_c02350{letter-spacing:0.000000pt;}
.ls1_c02350{letter-spacing:0.005376pt;}
.ls5_c02350{letter-spacing:0.114048pt;}
.lsb_c02350{letter-spacing:0.451968pt;}
.ls11_c02350{letter-spacing:0.456960pt;}
.lse_c02350{letter-spacing:0.477312pt;}
.lsa_c02350{letter-spacing:0.515328pt;}
.ls10_c02350{letter-spacing:0.528000pt;}
.ls8_c02350{letter-spacing:0.532224pt;}
.ls2_c02350{letter-spacing:0.544896pt;}
.ls0_c02350{letter-spacing:0.637824pt;}
.ls3_c02350{letter-spacing:0.642048pt;}
.wsc_c02350{word-spacing:-13.445376pt;}
.wsa_c02350{word-spacing:-11.088000pt;}
.ws8_c02350{word-spacing:-11.075328pt;}
.ws9_c02350{word-spacing:-11.037312pt;}
.ws4_c02350{word-spacing:-10.344576pt;}
.ws2_c02350{word-spacing:-10.015104pt;}
.ws14_c02350{word-spacing:-1.919232pt;}
.ws10_c02350{word-spacing:-0.958848pt;}
.wsd_c02350{word-spacing:-0.865920pt;}
.wsf_c02350{word-spacing:-0.105600pt;}
.ws12_c02350{word-spacing:-0.088704pt;}
.ws13_c02350{word-spacing:-0.076032pt;}
.wse_c02350{word-spacing:0.000000pt;}
.ws11_c02350{word-spacing:0.743424pt;}
.wsb_c02350{word-spacing:29.600256pt;}
.ws6_c02350{word-spacing:32.659968pt;}
.ws1_c02350{word-spacing:33.563904pt;}
.ws0_c02350{word-spacing:33.796224pt;}
.ws3_c02350{word-spacing:34.860672pt;}
.ws5_c02350{word-spacing:35.468928pt;}
.ws7_c02350{word-spacing:37.357056pt;}
._0_c02350{margin-left:-1.731840pt;}
._2_c02350{width:1.317888pt;}
._4_c02350{width:2.935680pt;}
._1_c02350{width:44.668800pt;}
._3_c02350{width:45.805056pt;}
.fs0_c02350{font-size:42.240000pt;}
.fs1_c02350{font-size:53.760000pt;}
.y0_c02350{bottom:0.000000pt;}
.y19_c02350{bottom:130.665211pt;}
.y1b_c02350{bottom:165.866875pt;}
.y1a_c02350{bottom:174.507067pt;}
.y18_c02350{bottom:245.225371pt;}
.y17_c02350{bottom:317.225563pt;}
.y15_c02350{bottom:361.386427pt;}
.y11_c02350{bottom:377.386939pt;}
.y16_c02350{bottom:407.786011pt;}
.y14_c02350{bottom:437.226235pt;}
.y13_c02350{bottom:453.226747pt;}
.y10_c02350{bottom:482.666971pt;}
.y12_c02350{bottom:497.386555pt;}
.yf_c02350{bottom:513.387067pt;}
.y1c_c02350{bottom:546.027067pt;}
.yb_c02350{bottom:593.385179pt;}
.yd_c02350{bottom:628.586875pt;}
.yc_c02350{bottom:637.227067pt;}
.ya_c02350{bottom:707.945339pt;}
.y9_c02350{bottom:779.945531pt;}
.y7_c02350{bottom:823.786427pt;}
.y3_c02350{bottom:839.786939pt;}
.y8_c02350{bottom:870.505979pt;}
.y6_c02350{bottom:899.946203pt;}
.y5_c02350{bottom:915.946715pt;}
.y2_c02350{bottom:945.386939pt;}
.y4_c02350{bottom:959.786555pt;}
.y1_c02350{bottom:975.787067pt;}
.ye_c02350{bottom:1008.747067pt;}
.h3_c02350{height:28.916250pt;}
.h1_c02350{height:37.063125pt;}
.h2_c02350{height:37.166250pt;}
.h4_c02350{height:48.581988pt;}
.h0_c02350{height:1122.666667pt;}
.w1_c02350{width:793.333333pt;}
.w0_c02350{width:793.626667pt;}
.x0_c02350{left:0.000000pt;}
.xd_c02350{left:104.000000pt;}
.x8_c02350{left:391.999872pt;}
.x4_c02350{left:396.160512pt;}
.xb_c02350{left:400.960000pt;}
.x7_c02350{left:404.799648pt;}
.x5_c02350{left:410.560128pt;}
.x1_c02350{left:411.840000pt;}
.xa_c02350{left:429.760320pt;}
.x9_c02350{left:437.439552pt;}
.x6_c02350{left:438.400512pt;}
.xc_c02350{left:450.560320pt;}
.x3_c02350{left:455.039904pt;}
.x2_c02350{left:468.159648pt;}
}





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

.ir_c02351:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02351{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02351;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02351{font-family:ff1_c02351;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02351;src:url('chunks/assets/font_ccd2356517ae6051b4067c23.woff2')format("woff");}.ff2_c02351{font-family:ff2_c02351;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02351;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02351{font-family:ff3_c02351;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02351{vertical-align:0.000000px;}
.v1_c02351{vertical-align:1.439424px;}
.lsc_c02351{letter-spacing:-1.197504px;}
.ls10_c02351{letter-spacing:-0.793584px;}
.ls7_c02351{letter-spacing:-0.613008px;}
.ls9_c02351{letter-spacing:-0.574992px;}
.ls15_c02351{letter-spacing:-0.375408px;}
.ls11_c02351{letter-spacing:-0.275616px;}
.lse_c02351{letter-spacing:-0.261360px;}
.ls6_c02351{letter-spacing:-0.242352px;}
.ls4_c02351{letter-spacing:-0.118800px;}
.ls14_c02351{letter-spacing:0.000000px;}
.ls1_c02351{letter-spacing:0.006048px;}
.ls5_c02351{letter-spacing:0.128304px;}
.lsb_c02351{letter-spacing:0.508464px;}
.ls13_c02351{letter-spacing:0.514080px;}
.lsf_c02351{letter-spacing:0.536976px;}
.lsa_c02351{letter-spacing:0.579744px;}
.ls12_c02351{letter-spacing:0.594000px;}
.ls8_c02351{letter-spacing:0.598752px;}
.ls2_c02351{letter-spacing:0.613008px;}
.lsd_c02351{letter-spacing:0.651024px;}
.ls0_c02351{letter-spacing:0.717552px;}
.ls3_c02351{letter-spacing:0.722304px;}
.sc__c02351{text-shadow:none;}
.sc0_c02351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02351{-webkit-text-stroke:0px transparent;}
.sc0_c02351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02351{word-spacing:-15.126048px;}
.wsb_c02351{word-spacing:-12.474000px;}
.wse_c02351{word-spacing:-12.416976px;}
.ws4_c02351{word-spacing:-11.637648px;}
.ws2_c02351{word-spacing:-11.266992px;}
.ws17_c02351{word-spacing:-2.159136px;}
.ws12_c02351{word-spacing:-1.078704px;}
.ws14_c02351{word-spacing:-1.012176px;}
.wsf_c02351{word-spacing:-0.974160px;}
.ws11_c02351{word-spacing:-0.118800px;}
.ws15_c02351{word-spacing:-0.099792px;}
.ws16_c02351{word-spacing:-0.085536px;}
.ws10_c02351{word-spacing:0.000000px;}
.ws18_c02351{word-spacing:0.014256px;}
.ws13_c02351{word-spacing:0.836352px;}
.wsa_c02351{word-spacing:1.468368px;}
.wsc_c02351{word-spacing:33.300288px;}
.ws9_c02351{word-spacing:34.836912px;}
.ws8_c02351{word-spacing:36.143712px;}
.ws6_c02351{word-spacing:36.742464px;}
.ws1_c02351{word-spacing:37.759392px;}
.ws0_c02351{word-spacing:38.020752px;}
.ws3_c02351{word-spacing:39.218256px;}
.ws5_c02351{word-spacing:39.902544px;}
.ws7_c02351{word-spacing:42.026688px;}
._0_c02351{margin-left:-1.948320px;}
._2_c02351{width:1.482624px;}
._4_c02351{width:3.302640px;}
._6_c02351{width:14.336784px;}
._7_c02351{width:18.908208px;}
._5_c02351{width:20.885040px;}
._1_c02351{width:50.252400px;}
._3_c02351{width:51.530688px;}
.fc0_c02351{color:rgb(0,0,0);}
.fs0_c02351{font-size:47.520000px;}
.fs1_c02351{font-size:60.480000px;}
.y0_c02351{bottom:0.000000px;}
.y1a_c02351{bottom:146.998362px;}
.y1c_c02351{bottom:186.600234px;}
.y1b_c02351{bottom:196.320450px;}
.y19_c02351{bottom:275.878542px;}
.y18_c02351{bottom:356.878758px;}
.y16_c02351{bottom:406.559730px;}
.y12_c02351{bottom:424.560306px;}
.y17_c02351{bottom:458.759262px;}
.y15_c02351{bottom:491.879514px;}
.y14_c02351{bottom:509.880090px;}
.y11_c02351{bottom:543.000342px;}
.y13_c02351{bottom:559.559874px;}
.y10_c02351{bottom:577.560450px;}
.y1d_c02351{bottom:614.280450px;}
.yc_c02351{bottom:652.438650px;}
.yb_c02351{bottom:667.558326px;}
.ye_c02351{bottom:707.160234px;}
.yd_c02351{bottom:716.880450px;}
.ya_c02351{bottom:796.438506px;}
.y9_c02351{bottom:877.438722px;}
.y7_c02351{bottom:926.759730px;}
.y3_c02351{bottom:944.760306px;}
.y8_c02351{bottom:979.319226px;}
.y6_c02351{bottom:1012.439478px;}
.y5_c02351{bottom:1030.440054px;}
.y2_c02351{bottom:1063.560306px;}
.y4_c02351{bottom:1079.759874px;}
.y1_c02351{bottom:1097.760450px;}
.yf_c02351{bottom:1134.840450px;}
.h3_c02351{height:32.530781px;}
.h1_c02351{height:41.696016px;}
.h2_c02351{height:41.812031px;}
.h4_c02351{height:54.654737px;}
.h0_c02351{height:1263.000000px;}
.w1_c02351{width:892.500000px;}
.w0_c02351{width:892.830000px;}
.x0_c02351{left:0.000000px;}
.xe_c02351{left:117.000000px;}
.x8_c02351{left:440.999856px;}
.x4_c02351{left:445.680576px;}
.xc_c02351{left:451.080000px;}
.x7_c02351{left:455.399604px;}
.x5_c02351{left:461.880144px;}
.x1_c02351{left:463.320000px;}
.xa_c02351{left:483.480360px;}
.x9_c02351{left:492.119496px;}
.x6_c02351{left:493.200576px;}
.xd_c02351{left:506.880360px;}
.x3_c02351{left:511.919892px;}
.x2_c02351{left:526.679604px;}
.xb_c02351{left:569.880036px;}
@media print{
.v0_c02351{vertical-align:0.000000pt;}
.v1_c02351{vertical-align:1.279488pt;}
.lsc_c02351{letter-spacing:-1.064448pt;}
.ls10_c02351{letter-spacing:-0.705408pt;}
.ls7_c02351{letter-spacing:-0.544896pt;}
.ls9_c02351{letter-spacing:-0.511104pt;}
.ls15_c02351{letter-spacing:-0.333696pt;}
.ls11_c02351{letter-spacing:-0.244992pt;}
.lse_c02351{letter-spacing:-0.232320pt;}
.ls6_c02351{letter-spacing:-0.215424pt;}
.ls4_c02351{letter-spacing:-0.105600pt;}
.ls14_c02351{letter-spacing:0.000000pt;}
.ls1_c02351{letter-spacing:0.005376pt;}
.ls5_c02351{letter-spacing:0.114048pt;}
.lsb_c02351{letter-spacing:0.451968pt;}
.ls13_c02351{letter-spacing:0.456960pt;}
.lsf_c02351{letter-spacing:0.477312pt;}
.lsa_c02351{letter-spacing:0.515328pt;}
.ls12_c02351{letter-spacing:0.528000pt;}
.ls8_c02351{letter-spacing:0.532224pt;}
.ls2_c02351{letter-spacing:0.544896pt;}
.lsd_c02351{letter-spacing:0.578688pt;}
.ls0_c02351{letter-spacing:0.637824pt;}
.ls3_c02351{letter-spacing:0.642048pt;}
.wsd_c02351{word-spacing:-13.445376pt;}
.wsb_c02351{word-spacing:-11.088000pt;}
.wse_c02351{word-spacing:-11.037312pt;}
.ws4_c02351{word-spacing:-10.344576pt;}
.ws2_c02351{word-spacing:-10.015104pt;}
.ws17_c02351{word-spacing:-1.919232pt;}
.ws12_c02351{word-spacing:-0.958848pt;}
.ws14_c02351{word-spacing:-0.899712pt;}
.wsf_c02351{word-spacing:-0.865920pt;}
.ws11_c02351{word-spacing:-0.105600pt;}
.ws15_c02351{word-spacing:-0.088704pt;}
.ws16_c02351{word-spacing:-0.076032pt;}
.ws10_c02351{word-spacing:0.000000pt;}
.ws18_c02351{word-spacing:0.012672pt;}
.ws13_c02351{word-spacing:0.743424pt;}
.wsa_c02351{word-spacing:1.305216pt;}
.wsc_c02351{word-spacing:29.600256pt;}
.ws9_c02351{word-spacing:30.966144pt;}
.ws8_c02351{word-spacing:32.127744pt;}
.ws6_c02351{word-spacing:32.659968pt;}
.ws1_c02351{word-spacing:33.563904pt;}
.ws0_c02351{word-spacing:33.796224pt;}
.ws3_c02351{word-spacing:34.860672pt;}
.ws5_c02351{word-spacing:35.468928pt;}
.ws7_c02351{word-spacing:37.357056pt;}
._0_c02351{margin-left:-1.731840pt;}
._2_c02351{width:1.317888pt;}
._4_c02351{width:2.935680pt;}
._6_c02351{width:12.743808pt;}
._7_c02351{width:16.807296pt;}
._5_c02351{width:18.564480pt;}
._1_c02351{width:44.668800pt;}
._3_c02351{width:45.805056pt;}
.fs0_c02351{font-size:42.240000pt;}
.fs1_c02351{font-size:53.760000pt;}
.y0_c02351{bottom:0.000000pt;}
.y1a_c02351{bottom:130.665211pt;}
.y1c_c02351{bottom:165.866875pt;}
.y1b_c02351{bottom:174.507067pt;}
.y19_c02351{bottom:245.225371pt;}
.y18_c02351{bottom:317.225563pt;}
.y16_c02351{bottom:361.386427pt;}
.y12_c02351{bottom:377.386939pt;}
.y17_c02351{bottom:407.786011pt;}
.y15_c02351{bottom:437.226235pt;}
.y14_c02351{bottom:453.226747pt;}
.y11_c02351{bottom:482.666971pt;}
.y13_c02351{bottom:497.386555pt;}
.y10_c02351{bottom:513.387067pt;}
.y1d_c02351{bottom:546.027067pt;}
.yc_c02351{bottom:579.945467pt;}
.yb_c02351{bottom:593.385179pt;}
.ye_c02351{bottom:628.586875pt;}
.yd_c02351{bottom:637.227067pt;}
.ya_c02351{bottom:707.945339pt;}
.y9_c02351{bottom:779.945531pt;}
.y7_c02351{bottom:823.786427pt;}
.y3_c02351{bottom:839.786939pt;}
.y8_c02351{bottom:870.505979pt;}
.y6_c02351{bottom:899.946203pt;}
.y5_c02351{bottom:915.946715pt;}
.y2_c02351{bottom:945.386939pt;}
.y4_c02351{bottom:959.786555pt;}
.y1_c02351{bottom:975.787067pt;}
.yf_c02351{bottom:1008.747067pt;}
.h3_c02351{height:28.916250pt;}
.h1_c02351{height:37.063125pt;}
.h2_c02351{height:37.166250pt;}
.h4_c02351{height:48.581988pt;}
.h0_c02351{height:1122.666667pt;}
.w1_c02351{width:793.333333pt;}
.w0_c02351{width:793.626667pt;}
.x0_c02351{left:0.000000pt;}
.xe_c02351{left:104.000000pt;}
.x8_c02351{left:391.999872pt;}
.x4_c02351{left:396.160512pt;}
.xc_c02351{left:400.960000pt;}
.x7_c02351{left:404.799648pt;}
.x5_c02351{left:410.560128pt;}
.x1_c02351{left:411.840000pt;}
.xa_c02351{left:429.760320pt;}
.x9_c02351{left:437.439552pt;}
.x6_c02351{left:438.400512pt;}
.xd_c02351{left:450.560320pt;}
.x3_c02351{left:455.039904pt;}
.x2_c02351{left:468.159648pt;}
.xb_c02351{left:506.560032pt;}
}





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

.ir_c02352:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02352{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02352;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02352{font-family:ff1_c02352;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02352;src:url('chunks/assets/font_51ac54f5099568a5ccb044c0.woff2')format("woff");}.ff2_c02352{font-family:ff2_c02352;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02352;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02352{font-family:ff3_c02352;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02352{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02352{vertical-align:0.000000px;}
.v1_c02352{vertical-align:1.439424px;}
.lsc_c02352{letter-spacing:-1.197504px;}
.ls7_c02352{letter-spacing:-0.613008px;}
.ls9_c02352{letter-spacing:-0.574992px;}
.lsf_c02352{letter-spacing:-0.275616px;}
.lsd_c02352{letter-spacing:-0.261360px;}
.ls6_c02352{letter-spacing:-0.242352px;}
.ls4_c02352{letter-spacing:-0.118800px;}
.ls12_c02352{letter-spacing:0.000000px;}
.ls1_c02352{letter-spacing:0.006048px;}
.ls5_c02352{letter-spacing:0.128304px;}
.lsb_c02352{letter-spacing:0.508464px;}
.ls11_c02352{letter-spacing:0.514080px;}
.lse_c02352{letter-spacing:0.536976px;}
.lsa_c02352{letter-spacing:0.579744px;}
.ls10_c02352{letter-spacing:0.594000px;}
.ls8_c02352{letter-spacing:0.598752px;}
.ls2_c02352{letter-spacing:0.613008px;}
.ls0_c02352{letter-spacing:0.717552px;}
.ls3_c02352{letter-spacing:0.722304px;}
.sc__c02352{text-shadow:none;}
.sc0_c02352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02352{-webkit-text-stroke:0px transparent;}
.sc0_c02352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02352{word-spacing:-15.126048px;}
.wsa_c02352{word-spacing:-12.474000px;}
.ws9_c02352{word-spacing:-12.416976px;}
.ws4_c02352{word-spacing:-11.637648px;}
.ws2_c02352{word-spacing:-11.266992px;}
.ws15_c02352{word-spacing:-2.159136px;}
.ws13_c02352{word-spacing:-1.083456px;}
.ws10_c02352{word-spacing:-1.078704px;}
.wsd_c02352{word-spacing:-0.974160px;}
.wsf_c02352{word-spacing:-0.118800px;}
.ws12_c02352{word-spacing:-0.099792px;}
.ws14_c02352{word-spacing:-0.085536px;}
.wse_c02352{word-spacing:0.000000px;}
.ws11_c02352{word-spacing:0.836352px;}
.wsb_c02352{word-spacing:33.300288px;}
.ws8_c02352{word-spacing:36.143712px;}
.ws6_c02352{word-spacing:36.742464px;}
.ws1_c02352{word-spacing:37.759392px;}
.ws0_c02352{word-spacing:38.020752px;}
.ws3_c02352{word-spacing:39.218256px;}
.ws5_c02352{word-spacing:39.902544px;}
.ws7_c02352{word-spacing:42.026688px;}
._0_c02352{margin-left:-1.948320px;}
._2_c02352{width:1.482624px;}
._4_c02352{width:3.302640px;}
._1_c02352{width:50.252400px;}
._3_c02352{width:51.530688px;}
.fc0_c02352{color:rgb(0,0,0);}
.fs0_c02352{font-size:47.520000px;}
.fs1_c02352{font-size:60.480000px;}
.y0_c02352{bottom:0.000000px;}
.y19_c02352{bottom:146.998362px;}
.y1b_c02352{bottom:186.600234px;}
.y1a_c02352{bottom:196.320450px;}
.y18_c02352{bottom:275.878542px;}
.y17_c02352{bottom:356.878758px;}
.y15_c02352{bottom:406.559730px;}
.y11_c02352{bottom:424.560306px;}
.y16_c02352{bottom:458.759262px;}
.y14_c02352{bottom:491.879514px;}
.y13_c02352{bottom:509.880090px;}
.y10_c02352{bottom:543.000342px;}
.y12_c02352{bottom:559.559874px;}
.yf_c02352{bottom:577.560450px;}
.y1c_c02352{bottom:614.280450px;}
.yb_c02352{bottom:667.558326px;}
.yd_c02352{bottom:707.160234px;}
.yc_c02352{bottom:716.880450px;}
.ya_c02352{bottom:796.438506px;}
.y9_c02352{bottom:877.438722px;}
.y7_c02352{bottom:926.759730px;}
.y3_c02352{bottom:944.760306px;}
.y8_c02352{bottom:979.319226px;}
.y6_c02352{bottom:1012.439478px;}
.y5_c02352{bottom:1030.440054px;}
.y2_c02352{bottom:1063.560306px;}
.y4_c02352{bottom:1079.759874px;}
.y1_c02352{bottom:1097.760450px;}
.ye_c02352{bottom:1134.840450px;}
.h3_c02352{height:32.530781px;}
.h1_c02352{height:41.696016px;}
.h2_c02352{height:41.812031px;}
.h4_c02352{height:54.654737px;}
.h0_c02352{height:1263.000000px;}
.w1_c02352{width:892.500000px;}
.w0_c02352{width:892.830000px;}
.x0_c02352{left:0.000000px;}
.xd_c02352{left:117.000000px;}
.x8_c02352{left:440.999856px;}
.x4_c02352{left:445.680576px;}
.xb_c02352{left:451.080000px;}
.x7_c02352{left:455.399604px;}
.x5_c02352{left:461.880144px;}
.x1_c02352{left:463.320000px;}
.xa_c02352{left:483.480360px;}
.x9_c02352{left:492.119496px;}
.x6_c02352{left:493.200576px;}
.xc_c02352{left:506.880360px;}
.x3_c02352{left:511.919892px;}
.x2_c02352{left:526.679604px;}
@media print{
.v0_c02352{vertical-align:0.000000pt;}
.v1_c02352{vertical-align:1.279488pt;}
.lsc_c02352{letter-spacing:-1.064448pt;}
.ls7_c02352{letter-spacing:-0.544896pt;}
.ls9_c02352{letter-spacing:-0.511104pt;}
.lsf_c02352{letter-spacing:-0.244992pt;}
.lsd_c02352{letter-spacing:-0.232320pt;}
.ls6_c02352{letter-spacing:-0.215424pt;}
.ls4_c02352{letter-spacing:-0.105600pt;}
.ls12_c02352{letter-spacing:0.000000pt;}
.ls1_c02352{letter-spacing:0.005376pt;}
.ls5_c02352{letter-spacing:0.114048pt;}
.lsb_c02352{letter-spacing:0.451968pt;}
.ls11_c02352{letter-spacing:0.456960pt;}
.lse_c02352{letter-spacing:0.477312pt;}
.lsa_c02352{letter-spacing:0.515328pt;}
.ls10_c02352{letter-spacing:0.528000pt;}
.ls8_c02352{letter-spacing:0.532224pt;}
.ls2_c02352{letter-spacing:0.544896pt;}
.ls0_c02352{letter-spacing:0.637824pt;}
.ls3_c02352{letter-spacing:0.642048pt;}
.wsc_c02352{word-spacing:-13.445376pt;}
.wsa_c02352{word-spacing:-11.088000pt;}
.ws9_c02352{word-spacing:-11.037312pt;}
.ws4_c02352{word-spacing:-10.344576pt;}
.ws2_c02352{word-spacing:-10.015104pt;}
.ws15_c02352{word-spacing:-1.919232pt;}
.ws13_c02352{word-spacing:-0.963072pt;}
.ws10_c02352{word-spacing:-0.958848pt;}
.wsd_c02352{word-spacing:-0.865920pt;}
.wsf_c02352{word-spacing:-0.105600pt;}
.ws12_c02352{word-spacing:-0.088704pt;}
.ws14_c02352{word-spacing:-0.076032pt;}
.wse_c02352{word-spacing:0.000000pt;}
.ws11_c02352{word-spacing:0.743424pt;}
.wsb_c02352{word-spacing:29.600256pt;}
.ws8_c02352{word-spacing:32.127744pt;}
.ws6_c02352{word-spacing:32.659968pt;}
.ws1_c02352{word-spacing:33.563904pt;}
.ws0_c02352{word-spacing:33.796224pt;}
.ws3_c02352{word-spacing:34.860672pt;}
.ws5_c02352{word-spacing:35.468928pt;}
.ws7_c02352{word-spacing:37.357056pt;}
._0_c02352{margin-left:-1.731840pt;}
._2_c02352{width:1.317888pt;}
._4_c02352{width:2.935680pt;}
._1_c02352{width:44.668800pt;}
._3_c02352{width:45.805056pt;}
.fs0_c02352{font-size:42.240000pt;}
.fs1_c02352{font-size:53.760000pt;}
.y0_c02352{bottom:0.000000pt;}
.y19_c02352{bottom:130.665211pt;}
.y1b_c02352{bottom:165.866875pt;}
.y1a_c02352{bottom:174.507067pt;}
.y18_c02352{bottom:245.225371pt;}
.y17_c02352{bottom:317.225563pt;}
.y15_c02352{bottom:361.386427pt;}
.y11_c02352{bottom:377.386939pt;}
.y16_c02352{bottom:407.786011pt;}
.y14_c02352{bottom:437.226235pt;}
.y13_c02352{bottom:453.226747pt;}
.y10_c02352{bottom:482.666971pt;}
.y12_c02352{bottom:497.386555pt;}
.yf_c02352{bottom:513.387067pt;}
.y1c_c02352{bottom:546.027067pt;}
.yb_c02352{bottom:593.385179pt;}
.yd_c02352{bottom:628.586875pt;}
.yc_c02352{bottom:637.227067pt;}
.ya_c02352{bottom:707.945339pt;}
.y9_c02352{bottom:779.945531pt;}
.y7_c02352{bottom:823.786427pt;}
.y3_c02352{bottom:839.786939pt;}
.y8_c02352{bottom:870.505979pt;}
.y6_c02352{bottom:899.946203pt;}
.y5_c02352{bottom:915.946715pt;}
.y2_c02352{bottom:945.386939pt;}
.y4_c02352{bottom:959.786555pt;}
.y1_c02352{bottom:975.787067pt;}
.ye_c02352{bottom:1008.747067pt;}
.h3_c02352{height:28.916250pt;}
.h1_c02352{height:37.063125pt;}
.h2_c02352{height:37.166250pt;}
.h4_c02352{height:48.581988pt;}
.h0_c02352{height:1122.666667pt;}
.w1_c02352{width:793.333333pt;}
.w0_c02352{width:793.626667pt;}
.x0_c02352{left:0.000000pt;}
.xd_c02352{left:104.000000pt;}
.x8_c02352{left:391.999872pt;}
.x4_c02352{left:396.160512pt;}
.xb_c02352{left:400.960000pt;}
.x7_c02352{left:404.799648pt;}
.x5_c02352{left:410.560128pt;}
.x1_c02352{left:411.840000pt;}
.xa_c02352{left:429.760320pt;}
.x9_c02352{left:437.439552pt;}
.x6_c02352{left:438.400512pt;}
.xc_c02352{left:450.560320pt;}
.x3_c02352{left:455.039904pt;}
.x2_c02352{left:468.159648pt;}
}





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

.ir_c02353:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02353{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02353;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02353{font-family:ff1_c02353;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02353;src:url('chunks/assets/font_dc2f78c3cab69cb30707dbb6.woff2')format("woff");}.ff2_c02353{font-family:ff2_c02353;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02353;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02353{font-family:ff3_c02353;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02353{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02353{vertical-align:0.000000px;}
.v1_c02353{vertical-align:1.439424px;}
.v2_c02353{vertical-align:33.121440px;}
.lsc_c02353{letter-spacing:-1.197504px;}
.ls7_c02353{letter-spacing:-0.613008px;}
.ls9_c02353{letter-spacing:-0.574992px;}
.ls15_c02353{letter-spacing:-0.389664px;}
.lse_c02353{letter-spacing:-0.375408px;}
.ls10_c02353{letter-spacing:-0.275616px;}
.lsd_c02353{letter-spacing:-0.261360px;}
.ls6_c02353{letter-spacing:-0.242352px;}
.ls4_c02353{letter-spacing:-0.118800px;}
.ls13_c02353{letter-spacing:0.000000px;}
.ls1_c02353{letter-spacing:0.006048px;}
.ls5_c02353{letter-spacing:0.128304px;}
.lsb_c02353{letter-spacing:0.508464px;}
.ls12_c02353{letter-spacing:0.514080px;}
.lsf_c02353{letter-spacing:0.536976px;}
.lsa_c02353{letter-spacing:0.579744px;}
.ls11_c02353{letter-spacing:0.594000px;}
.ls8_c02353{letter-spacing:0.598752px;}
.ls3_c02353{letter-spacing:0.613008px;}
.ls14_c02353{letter-spacing:0.632016px;}
.ls0_c02353{letter-spacing:0.717552px;}
.ls2_c02353{letter-spacing:0.722304px;}
.sc__c02353{text-shadow:none;}
.sc0_c02353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02353{-webkit-text-stroke:0px transparent;}
.sc0_c02353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02353{word-spacing:-15.126048px;}
.wsa_c02353{word-spacing:-12.474000px;}
.ws9_c02353{word-spacing:-12.416976px;}
.ws4_c02353{word-spacing:-11.637648px;}
.ws2_c02353{word-spacing:-11.266992px;}
.ws17_c02353{word-spacing:-2.159136px;}
.ws18_c02353{word-spacing:-1.083456px;}
.ws12_c02353{word-spacing:-1.078704px;}
.ws19_c02353{word-spacing:-0.993168px;}
.wsf_c02353{word-spacing:-0.974160px;}
.ws11_c02353{word-spacing:-0.118800px;}
.ws14_c02353{word-spacing:-0.099792px;}
.ws16_c02353{word-spacing:-0.085536px;}
.ws10_c02353{word-spacing:0.000000px;}
.ws15_c02353{word-spacing:0.014256px;}
.ws1a_c02353{word-spacing:0.028512px;}
.ws13_c02353{word-spacing:0.836352px;}
.wse_c02353{word-spacing:30.298752px;}
.wsb_c02353{word-spacing:33.300288px;}
.wsd_c02353{word-spacing:34.836912px;}
.ws8_c02353{word-spacing:36.143712px;}
.ws6_c02353{word-spacing:36.742464px;}
.ws1_c02353{word-spacing:37.759392px;}
.ws0_c02353{word-spacing:38.020752px;}
.ws3_c02353{word-spacing:39.218256px;}
.ws5_c02353{word-spacing:39.902544px;}
.ws7_c02353{word-spacing:42.026688px;}
._0_c02353{margin-left:-1.948320px;}
._2_c02353{width:1.482624px;}
._4_c02353{width:3.302640px;}
._1_c02353{width:50.252400px;}
._3_c02353{width:51.530688px;}
.fc0_c02353{color:rgb(0,0,0);}
.fs0_c02353{font-size:47.520000px;}
.fs1_c02353{font-size:60.480000px;}
.y0_c02353{bottom:0.000000px;}
.y19_c02353{bottom:146.998362px;}
.y1b_c02353{bottom:186.600234px;}
.y1a_c02353{bottom:196.320450px;}
.y18_c02353{bottom:275.878542px;}
.y17_c02353{bottom:356.878758px;}
.y15_c02353{bottom:406.559730px;}
.y11_c02353{bottom:424.560306px;}
.y16_c02353{bottom:458.759262px;}
.y14_c02353{bottom:491.879514px;}
.y13_c02353{bottom:509.880090px;}
.y10_c02353{bottom:543.000342px;}
.y12_c02353{bottom:559.559874px;}
.yf_c02353{bottom:577.560450px;}
.y1c_c02353{bottom:614.280450px;}
.yb_c02353{bottom:667.558326px;}
.yd_c02353{bottom:707.160234px;}
.yc_c02353{bottom:716.880450px;}
.ya_c02353{bottom:796.438506px;}
.y9_c02353{bottom:877.438722px;}
.y7_c02353{bottom:926.759730px;}
.y3_c02353{bottom:944.760306px;}
.y8_c02353{bottom:979.319226px;}
.y6_c02353{bottom:1012.439478px;}
.y5_c02353{bottom:1030.440054px;}
.y2_c02353{bottom:1063.560306px;}
.y4_c02353{bottom:1079.759874px;}
.y1_c02353{bottom:1097.760450px;}
.ye_c02353{bottom:1134.840450px;}
.h3_c02353{height:32.530781px;}
.h1_c02353{height:41.696016px;}
.h2_c02353{height:41.812031px;}
.h4_c02353{height:54.654737px;}
.h5_c02353{height:74.817456px;}
.h0_c02353{height:1263.000000px;}
.w1_c02353{width:892.500000px;}
.w0_c02353{width:892.830000px;}
.x0_c02353{left:0.000000px;}
.xd_c02353{left:117.000000px;}
.x8_c02353{left:440.999856px;}
.x4_c02353{left:445.680576px;}
.xb_c02353{left:451.080000px;}
.x7_c02353{left:455.399604px;}
.x5_c02353{left:461.880144px;}
.x1_c02353{left:463.320000px;}
.xa_c02353{left:483.480360px;}
.x9_c02353{left:492.119496px;}
.x6_c02353{left:493.200576px;}
.xc_c02353{left:506.880360px;}
.x3_c02353{left:511.919892px;}
.x2_c02353{left:526.679604px;}
@media print{
.v0_c02353{vertical-align:0.000000pt;}
.v1_c02353{vertical-align:1.279488pt;}
.v2_c02353{vertical-align:29.441280pt;}
.lsc_c02353{letter-spacing:-1.064448pt;}
.ls7_c02353{letter-spacing:-0.544896pt;}
.ls9_c02353{letter-spacing:-0.511104pt;}
.ls15_c02353{letter-spacing:-0.346368pt;}
.lse_c02353{letter-spacing:-0.333696pt;}
.ls10_c02353{letter-spacing:-0.244992pt;}
.lsd_c02353{letter-spacing:-0.232320pt;}
.ls6_c02353{letter-spacing:-0.215424pt;}
.ls4_c02353{letter-spacing:-0.105600pt;}
.ls13_c02353{letter-spacing:0.000000pt;}
.ls1_c02353{letter-spacing:0.005376pt;}
.ls5_c02353{letter-spacing:0.114048pt;}
.lsb_c02353{letter-spacing:0.451968pt;}
.ls12_c02353{letter-spacing:0.456960pt;}
.lsf_c02353{letter-spacing:0.477312pt;}
.lsa_c02353{letter-spacing:0.515328pt;}
.ls11_c02353{letter-spacing:0.528000pt;}
.ls8_c02353{letter-spacing:0.532224pt;}
.ls3_c02353{letter-spacing:0.544896pt;}
.ls14_c02353{letter-spacing:0.561792pt;}
.ls0_c02353{letter-spacing:0.637824pt;}
.ls2_c02353{letter-spacing:0.642048pt;}
.wsc_c02353{word-spacing:-13.445376pt;}
.wsa_c02353{word-spacing:-11.088000pt;}
.ws9_c02353{word-spacing:-11.037312pt;}
.ws4_c02353{word-spacing:-10.344576pt;}
.ws2_c02353{word-spacing:-10.015104pt;}
.ws17_c02353{word-spacing:-1.919232pt;}
.ws18_c02353{word-spacing:-0.963072pt;}
.ws12_c02353{word-spacing:-0.958848pt;}
.ws19_c02353{word-spacing:-0.882816pt;}
.wsf_c02353{word-spacing:-0.865920pt;}
.ws11_c02353{word-spacing:-0.105600pt;}
.ws14_c02353{word-spacing:-0.088704pt;}
.ws16_c02353{word-spacing:-0.076032pt;}
.ws10_c02353{word-spacing:0.000000pt;}
.ws15_c02353{word-spacing:0.012672pt;}
.ws1a_c02353{word-spacing:0.025344pt;}
.ws13_c02353{word-spacing:0.743424pt;}
.wse_c02353{word-spacing:26.932224pt;}
.wsb_c02353{word-spacing:29.600256pt;}
.wsd_c02353{word-spacing:30.966144pt;}
.ws8_c02353{word-spacing:32.127744pt;}
.ws6_c02353{word-spacing:32.659968pt;}
.ws1_c02353{word-spacing:33.563904pt;}
.ws0_c02353{word-spacing:33.796224pt;}
.ws3_c02353{word-spacing:34.860672pt;}
.ws5_c02353{word-spacing:35.468928pt;}
.ws7_c02353{word-spacing:37.357056pt;}
._0_c02353{margin-left:-1.731840pt;}
._2_c02353{width:1.317888pt;}
._4_c02353{width:2.935680pt;}
._1_c02353{width:44.668800pt;}
._3_c02353{width:45.805056pt;}
.fs0_c02353{font-size:42.240000pt;}
.fs1_c02353{font-size:53.760000pt;}
.y0_c02353{bottom:0.000000pt;}
.y19_c02353{bottom:130.665211pt;}
.y1b_c02353{bottom:165.866875pt;}
.y1a_c02353{bottom:174.507067pt;}
.y18_c02353{bottom:245.225371pt;}
.y17_c02353{bottom:317.225563pt;}
.y15_c02353{bottom:361.386427pt;}
.y11_c02353{bottom:377.386939pt;}
.y16_c02353{bottom:407.786011pt;}
.y14_c02353{bottom:437.226235pt;}
.y13_c02353{bottom:453.226747pt;}
.y10_c02353{bottom:482.666971pt;}
.y12_c02353{bottom:497.386555pt;}
.yf_c02353{bottom:513.387067pt;}
.y1c_c02353{bottom:546.027067pt;}
.yb_c02353{bottom:593.385179pt;}
.yd_c02353{bottom:628.586875pt;}
.yc_c02353{bottom:637.227067pt;}
.ya_c02353{bottom:707.945339pt;}
.y9_c02353{bottom:779.945531pt;}
.y7_c02353{bottom:823.786427pt;}
.y3_c02353{bottom:839.786939pt;}
.y8_c02353{bottom:870.505979pt;}
.y6_c02353{bottom:899.946203pt;}
.y5_c02353{bottom:915.946715pt;}
.y2_c02353{bottom:945.386939pt;}
.y4_c02353{bottom:959.786555pt;}
.y1_c02353{bottom:975.787067pt;}
.ye_c02353{bottom:1008.747067pt;}
.h3_c02353{height:28.916250pt;}
.h1_c02353{height:37.063125pt;}
.h2_c02353{height:37.166250pt;}
.h4_c02353{height:48.581988pt;}
.h5_c02353{height:66.504405pt;}
.h0_c02353{height:1122.666667pt;}
.w1_c02353{width:793.333333pt;}
.w0_c02353{width:793.626667pt;}
.x0_c02353{left:0.000000pt;}
.xd_c02353{left:104.000000pt;}
.x8_c02353{left:391.999872pt;}
.x4_c02353{left:396.160512pt;}
.xb_c02353{left:400.960000pt;}
.x7_c02353{left:404.799648pt;}
.x5_c02353{left:410.560128pt;}
.x1_c02353{left:411.840000pt;}
.xa_c02353{left:429.760320pt;}
.x9_c02353{left:437.439552pt;}
.x6_c02353{left:438.400512pt;}
.xc_c02353{left:450.560320pt;}
.x3_c02353{left:455.039904pt;}
.x2_c02353{left:468.159648pt;}
}





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

.ir_c02354:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02354{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02354;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02354{font-family:ff1_c02354;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02354;src:url('chunks/assets/font_dc26e04b3ff92980e9b70861.woff2')format("woff");}.ff2_c02354{font-family:ff2_c02354;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02354;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02354{font-family:ff3_c02354;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02354{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02354{vertical-align:0.000000px;}
.v1_c02354{vertical-align:1.439424px;}
.lsd_c02354{letter-spacing:-1.197504px;}
.lsb_c02354{letter-spacing:-0.855360px;}
.ls7_c02354{letter-spacing:-0.613008px;}
.ls9_c02354{letter-spacing:-0.574992px;}
.ls10_c02354{letter-spacing:-0.275616px;}
.lse_c02354{letter-spacing:-0.261360px;}
.ls6_c02354{letter-spacing:-0.242352px;}
.ls4_c02354{letter-spacing:-0.118800px;}
.ls13_c02354{letter-spacing:0.000000px;}
.ls1_c02354{letter-spacing:0.006048px;}
.ls5_c02354{letter-spacing:0.128304px;}
.lsc_c02354{letter-spacing:0.508464px;}
.ls12_c02354{letter-spacing:0.514080px;}
.lsf_c02354{letter-spacing:0.536976px;}
.lsa_c02354{letter-spacing:0.579744px;}
.ls11_c02354{letter-spacing:0.594000px;}
.ls8_c02354{letter-spacing:0.598752px;}
.ls3_c02354{letter-spacing:0.613008px;}
.ls2_c02354{letter-spacing:0.717552px;}
.ls0_c02354{letter-spacing:0.722304px;}
.sc__c02354{text-shadow:none;}
.sc0_c02354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02354{-webkit-text-stroke:0px transparent;}
.sc0_c02354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02354{word-spacing:-15.126048px;}
.wsb_c02354{word-spacing:-12.474000px;}
.wse_c02354{word-spacing:-12.459744px;}
.wsa_c02354{word-spacing:-12.416976px;}
.ws4_c02354{word-spacing:-11.637648px;}
.ws2_c02354{word-spacing:-11.266992px;}
.ws17_c02354{word-spacing:-2.159136px;}
.ws12_c02354{word-spacing:-1.083456px;}
.ws18_c02354{word-spacing:-1.078704px;}
.wsf_c02354{word-spacing:-0.974160px;}
.ws13_c02354{word-spacing:-0.869616px;}
.ws11_c02354{word-spacing:-0.118800px;}
.ws15_c02354{word-spacing:-0.099792px;}
.ws16_c02354{word-spacing:-0.085536px;}
.ws10_c02354{word-spacing:0.000000px;}
.ws14_c02354{word-spacing:0.836352px;}
.ws7_c02354{word-spacing:23.175504px;}
.wsc_c02354{word-spacing:33.300288px;}
.ws9_c02354{word-spacing:36.143712px;}
.ws6_c02354{word-spacing:36.742464px;}
.ws1_c02354{word-spacing:37.759392px;}
.ws0_c02354{word-spacing:38.020752px;}
.ws3_c02354{word-spacing:39.218256px;}
.ws5_c02354{word-spacing:39.902544px;}
.ws8_c02354{word-spacing:42.026688px;}
._0_c02354{margin-left:-1.948320px;}
._2_c02354{width:1.482624px;}
._4_c02354{width:3.302640px;}
._5_c02354{width:35.202816px;}
._7_c02354{width:37.417248px;}
._6_c02354{width:40.453776px;}
._1_c02354{width:50.252400px;}
._3_c02354{width:51.530688px;}
.fc0_c02354{color:rgb(0,0,0);}
.fs0_c02354{font-size:47.520000px;}
.fs1_c02354{font-size:60.480000px;}
.y0_c02354{bottom:0.000000px;}
.y1a_c02354{bottom:146.998362px;}
.y1c_c02354{bottom:186.600234px;}
.y1b_c02354{bottom:196.320450px;}
.y19_c02354{bottom:275.878542px;}
.y18_c02354{bottom:356.878758px;}
.y16_c02354{bottom:406.559730px;}
.y12_c02354{bottom:424.560306px;}
.y17_c02354{bottom:458.759262px;}
.y15_c02354{bottom:491.879514px;}
.y14_c02354{bottom:509.880090px;}
.y11_c02354{bottom:543.000342px;}
.y13_c02354{bottom:559.559874px;}
.y10_c02354{bottom:577.560450px;}
.y1d_c02354{bottom:614.280450px;}
.yc_c02354{bottom:667.559514px;}
.ye_c02354{bottom:707.160234px;}
.yd_c02354{bottom:716.880450px;}
.yb_c02354{bottom:796.439694px;}
.ya_c02354{bottom:877.439910px;}
.y8_c02354{bottom:912.000018px;}
.y7_c02354{bottom:926.759730px;}
.y3_c02354{bottom:944.760306px;}
.y9_c02354{bottom:979.320414px;}
.y6_c02354{bottom:1012.439478px;}
.y5_c02354{bottom:1030.440054px;}
.y2_c02354{bottom:1063.560306px;}
.y4_c02354{bottom:1079.759874px;}
.y1_c02354{bottom:1097.760450px;}
.yf_c02354{bottom:1134.840450px;}
.h3_c02354{height:32.530781px;}
.h1_c02354{height:41.696016px;}
.h2_c02354{height:41.812031px;}
.h4_c02354{height:54.654737px;}
.h0_c02354{height:1263.000000px;}
.w1_c02354{width:892.500000px;}
.w0_c02354{width:892.830000px;}
.x0_c02354{left:0.000000px;}
.xe_c02354{left:117.000000px;}
.x9_c02354{left:440.999856px;}
.x4_c02354{left:445.680576px;}
.xc_c02354{left:451.080000px;}
.x7_c02354{left:455.399604px;}
.x5_c02354{left:461.880144px;}
.x1_c02354{left:463.320000px;}
.xb_c02354{left:483.480360px;}
.xa_c02354{left:492.119496px;}
.x6_c02354{left:493.200576px;}
.xd_c02354{left:506.880360px;}
.x3_c02354{left:511.919892px;}
.x2_c02354{left:526.679604px;}
.x8_c02354{left:569.880036px;}
@media print{
.v0_c02354{vertical-align:0.000000pt;}
.v1_c02354{vertical-align:1.279488pt;}
.lsd_c02354{letter-spacing:-1.064448pt;}
.lsb_c02354{letter-spacing:-0.760320pt;}
.ls7_c02354{letter-spacing:-0.544896pt;}
.ls9_c02354{letter-spacing:-0.511104pt;}
.ls10_c02354{letter-spacing:-0.244992pt;}
.lse_c02354{letter-spacing:-0.232320pt;}
.ls6_c02354{letter-spacing:-0.215424pt;}
.ls4_c02354{letter-spacing:-0.105600pt;}
.ls13_c02354{letter-spacing:0.000000pt;}
.ls1_c02354{letter-spacing:0.005376pt;}
.ls5_c02354{letter-spacing:0.114048pt;}
.lsc_c02354{letter-spacing:0.451968pt;}
.ls12_c02354{letter-spacing:0.456960pt;}
.lsf_c02354{letter-spacing:0.477312pt;}
.lsa_c02354{letter-spacing:0.515328pt;}
.ls11_c02354{letter-spacing:0.528000pt;}
.ls8_c02354{letter-spacing:0.532224pt;}
.ls3_c02354{letter-spacing:0.544896pt;}
.ls2_c02354{letter-spacing:0.637824pt;}
.ls0_c02354{letter-spacing:0.642048pt;}
.wsd_c02354{word-spacing:-13.445376pt;}
.wsb_c02354{word-spacing:-11.088000pt;}
.wse_c02354{word-spacing:-11.075328pt;}
.wsa_c02354{word-spacing:-11.037312pt;}
.ws4_c02354{word-spacing:-10.344576pt;}
.ws2_c02354{word-spacing:-10.015104pt;}
.ws17_c02354{word-spacing:-1.919232pt;}
.ws12_c02354{word-spacing:-0.963072pt;}
.ws18_c02354{word-spacing:-0.958848pt;}
.wsf_c02354{word-spacing:-0.865920pt;}
.ws13_c02354{word-spacing:-0.772992pt;}
.ws11_c02354{word-spacing:-0.105600pt;}
.ws15_c02354{word-spacing:-0.088704pt;}
.ws16_c02354{word-spacing:-0.076032pt;}
.ws10_c02354{word-spacing:0.000000pt;}
.ws14_c02354{word-spacing:0.743424pt;}
.ws7_c02354{word-spacing:20.600448pt;}
.wsc_c02354{word-spacing:29.600256pt;}
.ws9_c02354{word-spacing:32.127744pt;}
.ws6_c02354{word-spacing:32.659968pt;}
.ws1_c02354{word-spacing:33.563904pt;}
.ws0_c02354{word-spacing:33.796224pt;}
.ws3_c02354{word-spacing:34.860672pt;}
.ws5_c02354{word-spacing:35.468928pt;}
.ws8_c02354{word-spacing:37.357056pt;}
._0_c02354{margin-left:-1.731840pt;}
._2_c02354{width:1.317888pt;}
._4_c02354{width:2.935680pt;}
._5_c02354{width:31.291392pt;}
._7_c02354{width:33.259776pt;}
._6_c02354{width:35.958912pt;}
._1_c02354{width:44.668800pt;}
._3_c02354{width:45.805056pt;}
.fs0_c02354{font-size:42.240000pt;}
.fs1_c02354{font-size:53.760000pt;}
.y0_c02354{bottom:0.000000pt;}
.y1a_c02354{bottom:130.665211pt;}
.y1c_c02354{bottom:165.866875pt;}
.y1b_c02354{bottom:174.507067pt;}
.y19_c02354{bottom:245.225371pt;}
.y18_c02354{bottom:317.225563pt;}
.y16_c02354{bottom:361.386427pt;}
.y12_c02354{bottom:377.386939pt;}
.y17_c02354{bottom:407.786011pt;}
.y15_c02354{bottom:437.226235pt;}
.y14_c02354{bottom:453.226747pt;}
.y11_c02354{bottom:482.666971pt;}
.y13_c02354{bottom:497.386555pt;}
.y10_c02354{bottom:513.387067pt;}
.y1d_c02354{bottom:546.027067pt;}
.yc_c02354{bottom:593.386235pt;}
.ye_c02354{bottom:628.586875pt;}
.yd_c02354{bottom:637.227067pt;}
.yb_c02354{bottom:707.946395pt;}
.ya_c02354{bottom:779.946587pt;}
.y8_c02354{bottom:810.666683pt;}
.y7_c02354{bottom:823.786427pt;}
.y3_c02354{bottom:839.786939pt;}
.y9_c02354{bottom:870.507035pt;}
.y6_c02354{bottom:899.946203pt;}
.y5_c02354{bottom:915.946715pt;}
.y2_c02354{bottom:945.386939pt;}
.y4_c02354{bottom:959.786555pt;}
.y1_c02354{bottom:975.787067pt;}
.yf_c02354{bottom:1008.747067pt;}
.h3_c02354{height:28.916250pt;}
.h1_c02354{height:37.063125pt;}
.h2_c02354{height:37.166250pt;}
.h4_c02354{height:48.581988pt;}
.h0_c02354{height:1122.666667pt;}
.w1_c02354{width:793.333333pt;}
.w0_c02354{width:793.626667pt;}
.x0_c02354{left:0.000000pt;}
.xe_c02354{left:104.000000pt;}
.x9_c02354{left:391.999872pt;}
.x4_c02354{left:396.160512pt;}
.xc_c02354{left:400.960000pt;}
.x7_c02354{left:404.799648pt;}
.x5_c02354{left:410.560128pt;}
.x1_c02354{left:411.840000pt;}
.xb_c02354{left:429.760320pt;}
.xa_c02354{left:437.439552pt;}
.x6_c02354{left:438.400512pt;}
.xd_c02354{left:450.560320pt;}
.x3_c02354{left:455.039904pt;}
.x2_c02354{left:468.159648pt;}
.x8_c02354{left:506.560032pt;}
}





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

.ir_c02355:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02355{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02355;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02355{font-family:ff1_c02355;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02355;src:url('chunks/assets/font_523ebad18e6b17a5b61ccb32.woff2')format("woff");}.ff2_c02355{font-family:ff2_c02355;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02355;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02355{font-family:ff3_c02355;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02355{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02355{vertical-align:0.000000px;}
.v1_c02355{vertical-align:1.439424px;}
.ls14_c02355{letter-spacing:-0.803088px;}
.ls8_c02355{letter-spacing:-0.613008px;}
.lsa_c02355{letter-spacing:-0.574992px;}
.ls16_c02355{letter-spacing:-0.375408px;}
.ls10_c02355{letter-spacing:-0.275616px;}
.lse_c02355{letter-spacing:-0.261360px;}
.ls7_c02355{letter-spacing:-0.242352px;}
.ls5_c02355{letter-spacing:-0.118800px;}
.ls13_c02355{letter-spacing:0.000000px;}
.ls2_c02355{letter-spacing:0.006048px;}
.ls6_c02355{letter-spacing:0.128304px;}
.lsd_c02355{letter-spacing:0.242352px;}
.lsc_c02355{letter-spacing:0.508464px;}
.ls12_c02355{letter-spacing:0.514080px;}
.lsf_c02355{letter-spacing:0.536976px;}
.lsb_c02355{letter-spacing:0.579744px;}
.ls11_c02355{letter-spacing:0.594000px;}
.ls9_c02355{letter-spacing:0.598752px;}
.ls4_c02355{letter-spacing:0.613008px;}
.ls0_c02355{letter-spacing:0.651024px;}
.ls15_c02355{letter-spacing:0.684288px;}
.ls1_c02355{letter-spacing:0.717552px;}
.ls3_c02355{letter-spacing:0.722304px;}
.sc__c02355{text-shadow:none;}
.sc0_c02355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02355{-webkit-text-stroke:0px transparent;}
.sc0_c02355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02355{word-spacing:-15.126048px;}
.wsa_c02355{word-spacing:-12.474000px;}
.ws8_c02355{word-spacing:-12.459744px;}
.ws9_c02355{word-spacing:-12.416976px;}
.wsd_c02355{word-spacing:-12.388464px;}
.ws4_c02355{word-spacing:-11.637648px;}
.ws2_c02355{word-spacing:-11.266992px;}
.ws17_c02355{word-spacing:-2.159136px;}
.ws18_c02355{word-spacing:-1.083456px;}
.ws14_c02355{word-spacing:-1.078704px;}
.ws1a_c02355{word-spacing:-1.045440px;}
.ws12_c02355{word-spacing:-1.012176px;}
.ws10_c02355{word-spacing:-0.974160px;}
.ws13_c02355{word-spacing:-0.118800px;}
.ws15_c02355{word-spacing:-0.099792px;}
.ws16_c02355{word-spacing:-0.085536px;}
.ws11_c02355{word-spacing:0.000000px;}
.ws1b_c02355{word-spacing:0.014256px;}
.ws19_c02355{word-spacing:0.441936px;}
.wsb_c02355{word-spacing:33.300288px;}
.wsf_c02355{word-spacing:34.836912px;}
.wse_c02355{word-spacing:36.143712px;}
.ws6_c02355{word-spacing:36.742464px;}
.ws1_c02355{word-spacing:37.759392px;}
.ws0_c02355{word-spacing:38.020752px;}
.ws3_c02355{word-spacing:39.218256px;}
.ws5_c02355{word-spacing:39.902544px;}
.ws7_c02355{word-spacing:42.026688px;}
._0_c02355{margin-left:-1.948320px;}
._2_c02355{width:1.482624px;}
._4_c02355{width:3.302640px;}
._1_c02355{width:50.252400px;}
._3_c02355{width:51.530688px;}
.fc0_c02355{color:rgb(0,0,0);}
.fs0_c02355{font-size:47.520000px;}
.fs1_c02355{font-size:60.480000px;}
.y0_c02355{bottom:0.000000px;}
.y19_c02355{bottom:146.998362px;}
.y1b_c02355{bottom:186.600234px;}
.y1a_c02355{bottom:196.320450px;}
.y18_c02355{bottom:275.878542px;}
.y17_c02355{bottom:356.878758px;}
.y15_c02355{bottom:406.559730px;}
.y11_c02355{bottom:424.560306px;}
.y16_c02355{bottom:458.759262px;}
.y14_c02355{bottom:491.879514px;}
.y13_c02355{bottom:509.880090px;}
.y10_c02355{bottom:543.000342px;}
.y12_c02355{bottom:559.559874px;}
.yf_c02355{bottom:577.560450px;}
.y1c_c02355{bottom:614.280450px;}
.yb_c02355{bottom:667.558326px;}
.yd_c02355{bottom:707.160234px;}
.yc_c02355{bottom:716.880450px;}
.ya_c02355{bottom:796.438506px;}
.y9_c02355{bottom:877.438722px;}
.y7_c02355{bottom:926.759730px;}
.y3_c02355{bottom:944.760306px;}
.y8_c02355{bottom:979.319226px;}
.y6_c02355{bottom:1012.439478px;}
.y5_c02355{bottom:1030.440054px;}
.y2_c02355{bottom:1063.560306px;}
.y4_c02355{bottom:1079.759874px;}
.y1_c02355{bottom:1097.760450px;}
.ye_c02355{bottom:1134.840450px;}
.h3_c02355{height:32.530781px;}
.h1_c02355{height:41.696016px;}
.h2_c02355{height:41.812031px;}
.h4_c02355{height:54.654737px;}
.h0_c02355{height:1263.000000px;}
.w1_c02355{width:892.500000px;}
.w0_c02355{width:892.830000px;}
.x0_c02355{left:0.000000px;}
.xd_c02355{left:117.000000px;}
.x8_c02355{left:440.999856px;}
.x4_c02355{left:445.680576px;}
.xb_c02355{left:451.080000px;}
.x7_c02355{left:455.399604px;}
.x5_c02355{left:461.880144px;}
.x1_c02355{left:463.320000px;}
.xa_c02355{left:483.480360px;}
.x9_c02355{left:492.119496px;}
.x6_c02355{left:493.200576px;}
.xc_c02355{left:506.880360px;}
.x3_c02355{left:511.919892px;}
.x2_c02355{left:526.679604px;}
@media print{
.v0_c02355{vertical-align:0.000000pt;}
.v1_c02355{vertical-align:1.279488pt;}
.ls14_c02355{letter-spacing:-0.713856pt;}
.ls8_c02355{letter-spacing:-0.544896pt;}
.lsa_c02355{letter-spacing:-0.511104pt;}
.ls16_c02355{letter-spacing:-0.333696pt;}
.ls10_c02355{letter-spacing:-0.244992pt;}
.lse_c02355{letter-spacing:-0.232320pt;}
.ls7_c02355{letter-spacing:-0.215424pt;}
.ls5_c02355{letter-spacing:-0.105600pt;}
.ls13_c02355{letter-spacing:0.000000pt;}
.ls2_c02355{letter-spacing:0.005376pt;}
.ls6_c02355{letter-spacing:0.114048pt;}
.lsd_c02355{letter-spacing:0.215424pt;}
.lsc_c02355{letter-spacing:0.451968pt;}
.ls12_c02355{letter-spacing:0.456960pt;}
.lsf_c02355{letter-spacing:0.477312pt;}
.lsb_c02355{letter-spacing:0.515328pt;}
.ls11_c02355{letter-spacing:0.528000pt;}
.ls9_c02355{letter-spacing:0.532224pt;}
.ls4_c02355{letter-spacing:0.544896pt;}
.ls0_c02355{letter-spacing:0.578688pt;}
.ls15_c02355{letter-spacing:0.608256pt;}
.ls1_c02355{letter-spacing:0.637824pt;}
.ls3_c02355{letter-spacing:0.642048pt;}
.wsc_c02355{word-spacing:-13.445376pt;}
.wsa_c02355{word-spacing:-11.088000pt;}
.ws8_c02355{word-spacing:-11.075328pt;}
.ws9_c02355{word-spacing:-11.037312pt;}
.wsd_c02355{word-spacing:-11.011968pt;}
.ws4_c02355{word-spacing:-10.344576pt;}
.ws2_c02355{word-spacing:-10.015104pt;}
.ws17_c02355{word-spacing:-1.919232pt;}
.ws18_c02355{word-spacing:-0.963072pt;}
.ws14_c02355{word-spacing:-0.958848pt;}
.ws1a_c02355{word-spacing:-0.929280pt;}
.ws12_c02355{word-spacing:-0.899712pt;}
.ws10_c02355{word-spacing:-0.865920pt;}
.ws13_c02355{word-spacing:-0.105600pt;}
.ws15_c02355{word-spacing:-0.088704pt;}
.ws16_c02355{word-spacing:-0.076032pt;}
.ws11_c02355{word-spacing:0.000000pt;}
.ws1b_c02355{word-spacing:0.012672pt;}
.ws19_c02355{word-spacing:0.392832pt;}
.wsb_c02355{word-spacing:29.600256pt;}
.wsf_c02355{word-spacing:30.966144pt;}
.wse_c02355{word-spacing:32.127744pt;}
.ws6_c02355{word-spacing:32.659968pt;}
.ws1_c02355{word-spacing:33.563904pt;}
.ws0_c02355{word-spacing:33.796224pt;}
.ws3_c02355{word-spacing:34.860672pt;}
.ws5_c02355{word-spacing:35.468928pt;}
.ws7_c02355{word-spacing:37.357056pt;}
._0_c02355{margin-left:-1.731840pt;}
._2_c02355{width:1.317888pt;}
._4_c02355{width:2.935680pt;}
._1_c02355{width:44.668800pt;}
._3_c02355{width:45.805056pt;}
.fs0_c02355{font-size:42.240000pt;}
.fs1_c02355{font-size:53.760000pt;}
.y0_c02355{bottom:0.000000pt;}
.y19_c02355{bottom:130.665211pt;}
.y1b_c02355{bottom:165.866875pt;}
.y1a_c02355{bottom:174.507067pt;}
.y18_c02355{bottom:245.225371pt;}
.y17_c02355{bottom:317.225563pt;}
.y15_c02355{bottom:361.386427pt;}
.y11_c02355{bottom:377.386939pt;}
.y16_c02355{bottom:407.786011pt;}
.y14_c02355{bottom:437.226235pt;}
.y13_c02355{bottom:453.226747pt;}
.y10_c02355{bottom:482.666971pt;}
.y12_c02355{bottom:497.386555pt;}
.yf_c02355{bottom:513.387067pt;}
.y1c_c02355{bottom:546.027067pt;}
.yb_c02355{bottom:593.385179pt;}
.yd_c02355{bottom:628.586875pt;}
.yc_c02355{bottom:637.227067pt;}
.ya_c02355{bottom:707.945339pt;}
.y9_c02355{bottom:779.945531pt;}
.y7_c02355{bottom:823.786427pt;}
.y3_c02355{bottom:839.786939pt;}
.y8_c02355{bottom:870.505979pt;}
.y6_c02355{bottom:899.946203pt;}
.y5_c02355{bottom:915.946715pt;}
.y2_c02355{bottom:945.386939pt;}
.y4_c02355{bottom:959.786555pt;}
.y1_c02355{bottom:975.787067pt;}
.ye_c02355{bottom:1008.747067pt;}
.h3_c02355{height:28.916250pt;}
.h1_c02355{height:37.063125pt;}
.h2_c02355{height:37.166250pt;}
.h4_c02355{height:48.581988pt;}
.h0_c02355{height:1122.666667pt;}
.w1_c02355{width:793.333333pt;}
.w0_c02355{width:793.626667pt;}
.x0_c02355{left:0.000000pt;}
.xd_c02355{left:104.000000pt;}
.x8_c02355{left:391.999872pt;}
.x4_c02355{left:396.160512pt;}
.xb_c02355{left:400.960000pt;}
.x7_c02355{left:404.799648pt;}
.x5_c02355{left:410.560128pt;}
.x1_c02355{left:411.840000pt;}
.xa_c02355{left:429.760320pt;}
.x9_c02355{left:437.439552pt;}
.x6_c02355{left:438.400512pt;}
.xc_c02355{left:450.560320pt;}
.x3_c02355{left:455.039904pt;}
.x2_c02355{left:468.159648pt;}
}





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

.ir_c02356:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02356{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02356;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02356{font-family:ff1_c02356;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02356;src:url('chunks/assets/font_91128d26c5eac12d08c3b67c.woff2')format("woff");}.ff2_c02356{font-family:ff2_c02356;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02356;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02356{font-family:ff3_c02356;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02356{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02356{vertical-align:0.000000px;}
.v1_c02356{vertical-align:1.439424px;}
.ls14_c02356{letter-spacing:-1.197504px;}
.lsf_c02356{letter-spacing:-0.803088px;}
.ls7_c02356{letter-spacing:-0.613008px;}
.ls9_c02356{letter-spacing:-0.574992px;}
.ls10_c02356{letter-spacing:-0.275616px;}
.lsd_c02356{letter-spacing:-0.261360px;}
.ls6_c02356{letter-spacing:-0.242352px;}
.ls4_c02356{letter-spacing:-0.118800px;}
.ls13_c02356{letter-spacing:0.000000px;}
.ls0_c02356{letter-spacing:0.006048px;}
.ls5_c02356{letter-spacing:0.128304px;}
.lsb_c02356{letter-spacing:0.508464px;}
.ls12_c02356{letter-spacing:0.514080px;}
.lse_c02356{letter-spacing:0.536976px;}
.lsa_c02356{letter-spacing:0.579744px;}
.ls11_c02356{letter-spacing:0.594000px;}
.ls8_c02356{letter-spacing:0.598752px;}
.ls2_c02356{letter-spacing:0.613008px;}
.lsc_c02356{letter-spacing:0.651024px;}
.ls1_c02356{letter-spacing:0.717552px;}
.ls3_c02356{letter-spacing:0.722304px;}
.sc__c02356{text-shadow:none;}
.sc0_c02356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02356{-webkit-text-stroke:0px transparent;}
.sc0_c02356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02356{word-spacing:-15.126048px;}
.wsb_c02356{word-spacing:-12.474000px;}
.ws6_c02356{word-spacing:-12.459744px;}
.ws11_c02356{word-spacing:-12.416976px;}
.ws7_c02356{word-spacing:-12.388464px;}
.ws4_c02356{word-spacing:-11.637648px;}
.ws5_c02356{word-spacing:-11.305008px;}
.ws2_c02356{word-spacing:-11.266992px;}
.ws18_c02356{word-spacing:-2.159136px;}
.ws19_c02356{word-spacing:-1.078704px;}
.ws15_c02356{word-spacing:-1.012176px;}
.ws12_c02356{word-spacing:-0.974160px;}
.ws14_c02356{word-spacing:-0.118800px;}
.ws16_c02356{word-spacing:-0.099792px;}
.ws17_c02356{word-spacing:-0.085536px;}
.ws13_c02356{word-spacing:0.000000px;}
.ws1a_c02356{word-spacing:0.836352px;}
.wsa_c02356{word-spacing:1.487376px;}
.wsc_c02356{word-spacing:33.300288px;}
.ws9_c02356{word-spacing:34.836912px;}
.ws8_c02356{word-spacing:36.143712px;}
.wsf_c02356{word-spacing:36.742464px;}
.ws1_c02356{word-spacing:37.759392px;}
.ws0_c02356{word-spacing:38.020752px;}
.ws3_c02356{word-spacing:39.218256px;}
.wse_c02356{word-spacing:39.902544px;}
.ws10_c02356{word-spacing:42.026688px;}
._0_c02356{margin-left:-1.948320px;}
._2_c02356{width:1.482624px;}
._4_c02356{width:3.302640px;}
._6_c02356{width:14.355792px;}
._7_c02356{width:17.962560px;}
._5_c02356{width:21.184416px;}
._1_c02356{width:50.252400px;}
._3_c02356{width:51.530688px;}
.fc0_c02356{color:rgb(0,0,0);}
.fs0_c02356{font-size:47.520000px;}
.fs1_c02356{font-size:60.480000px;}
.y0_c02356{bottom:0.000000px;}
.y1a_c02356{bottom:146.998362px;}
.y1c_c02356{bottom:186.600234px;}
.y1b_c02356{bottom:196.320450px;}
.y19_c02356{bottom:275.878542px;}
.y18_c02356{bottom:356.878758px;}
.y16_c02356{bottom:406.559730px;}
.y12_c02356{bottom:424.560306px;}
.y17_c02356{bottom:458.759262px;}
.y15_c02356{bottom:491.879514px;}
.y14_c02356{bottom:509.880090px;}
.y11_c02356{bottom:543.000342px;}
.y13_c02356{bottom:559.559874px;}
.y10_c02356{bottom:577.560450px;}
.y1d_c02356{bottom:614.280450px;}
.yc_c02356{bottom:652.438650px;}
.yb_c02356{bottom:667.558326px;}
.ye_c02356{bottom:707.160234px;}
.yd_c02356{bottom:716.880450px;}
.ya_c02356{bottom:796.438506px;}
.y9_c02356{bottom:877.438722px;}
.y7_c02356{bottom:926.759730px;}
.y3_c02356{bottom:944.760306px;}
.y8_c02356{bottom:979.319226px;}
.y6_c02356{bottom:1012.439478px;}
.y5_c02356{bottom:1030.440054px;}
.y2_c02356{bottom:1063.560306px;}
.y4_c02356{bottom:1079.759874px;}
.y1_c02356{bottom:1097.760450px;}
.yf_c02356{bottom:1134.840450px;}
.h3_c02356{height:32.530781px;}
.h1_c02356{height:41.696016px;}
.h2_c02356{height:41.812031px;}
.h4_c02356{height:54.654737px;}
.h0_c02356{height:1263.000000px;}
.w1_c02356{width:892.500000px;}
.w0_c02356{width:892.830000px;}
.x0_c02356{left:0.000000px;}
.xe_c02356{left:117.000000px;}
.x8_c02356{left:441.001044px;}
.x4_c02356{left:445.680576px;}
.xc_c02356{left:451.080000px;}
.x7_c02356{left:455.400792px;}
.x5_c02356{left:461.880144px;}
.x1_c02356{left:463.320000px;}
.xa_c02356{left:483.481548px;}
.x9_c02356{left:492.120684px;}
.x6_c02356{left:493.200576px;}
.xd_c02356{left:506.880360px;}
.x3_c02356{left:511.919892px;}
.x2_c02356{left:526.679604px;}
.xb_c02356{left:569.881224px;}
@media print{
.v0_c02356{vertical-align:0.000000pt;}
.v1_c02356{vertical-align:1.279488pt;}
.ls14_c02356{letter-spacing:-1.064448pt;}
.lsf_c02356{letter-spacing:-0.713856pt;}
.ls7_c02356{letter-spacing:-0.544896pt;}
.ls9_c02356{letter-spacing:-0.511104pt;}
.ls10_c02356{letter-spacing:-0.244992pt;}
.lsd_c02356{letter-spacing:-0.232320pt;}
.ls6_c02356{letter-spacing:-0.215424pt;}
.ls4_c02356{letter-spacing:-0.105600pt;}
.ls13_c02356{letter-spacing:0.000000pt;}
.ls0_c02356{letter-spacing:0.005376pt;}
.ls5_c02356{letter-spacing:0.114048pt;}
.lsb_c02356{letter-spacing:0.451968pt;}
.ls12_c02356{letter-spacing:0.456960pt;}
.lse_c02356{letter-spacing:0.477312pt;}
.lsa_c02356{letter-spacing:0.515328pt;}
.ls11_c02356{letter-spacing:0.528000pt;}
.ls8_c02356{letter-spacing:0.532224pt;}
.ls2_c02356{letter-spacing:0.544896pt;}
.lsc_c02356{letter-spacing:0.578688pt;}
.ls1_c02356{letter-spacing:0.637824pt;}
.ls3_c02356{letter-spacing:0.642048pt;}
.wsd_c02356{word-spacing:-13.445376pt;}
.wsb_c02356{word-spacing:-11.088000pt;}
.ws6_c02356{word-spacing:-11.075328pt;}
.ws11_c02356{word-spacing:-11.037312pt;}
.ws7_c02356{word-spacing:-11.011968pt;}
.ws4_c02356{word-spacing:-10.344576pt;}
.ws5_c02356{word-spacing:-10.048896pt;}
.ws2_c02356{word-spacing:-10.015104pt;}
.ws18_c02356{word-spacing:-1.919232pt;}
.ws19_c02356{word-spacing:-0.958848pt;}
.ws15_c02356{word-spacing:-0.899712pt;}
.ws12_c02356{word-spacing:-0.865920pt;}
.ws14_c02356{word-spacing:-0.105600pt;}
.ws16_c02356{word-spacing:-0.088704pt;}
.ws17_c02356{word-spacing:-0.076032pt;}
.ws13_c02356{word-spacing:0.000000pt;}
.ws1a_c02356{word-spacing:0.743424pt;}
.wsa_c02356{word-spacing:1.322112pt;}
.wsc_c02356{word-spacing:29.600256pt;}
.ws9_c02356{word-spacing:30.966144pt;}
.ws8_c02356{word-spacing:32.127744pt;}
.wsf_c02356{word-spacing:32.659968pt;}
.ws1_c02356{word-spacing:33.563904pt;}
.ws0_c02356{word-spacing:33.796224pt;}
.ws3_c02356{word-spacing:34.860672pt;}
.wse_c02356{word-spacing:35.468928pt;}
.ws10_c02356{word-spacing:37.357056pt;}
._0_c02356{margin-left:-1.731840pt;}
._2_c02356{width:1.317888pt;}
._4_c02356{width:2.935680pt;}
._6_c02356{width:12.760704pt;}
._7_c02356{width:15.966720pt;}
._5_c02356{width:18.830592pt;}
._1_c02356{width:44.668800pt;}
._3_c02356{width:45.805056pt;}
.fs0_c02356{font-size:42.240000pt;}
.fs1_c02356{font-size:53.760000pt;}
.y0_c02356{bottom:0.000000pt;}
.y1a_c02356{bottom:130.665211pt;}
.y1c_c02356{bottom:165.866875pt;}
.y1b_c02356{bottom:174.507067pt;}
.y19_c02356{bottom:245.225371pt;}
.y18_c02356{bottom:317.225563pt;}
.y16_c02356{bottom:361.386427pt;}
.y12_c02356{bottom:377.386939pt;}
.y17_c02356{bottom:407.786011pt;}
.y15_c02356{bottom:437.226235pt;}
.y14_c02356{bottom:453.226747pt;}
.y11_c02356{bottom:482.666971pt;}
.y13_c02356{bottom:497.386555pt;}
.y10_c02356{bottom:513.387067pt;}
.y1d_c02356{bottom:546.027067pt;}
.yc_c02356{bottom:579.945467pt;}
.yb_c02356{bottom:593.385179pt;}
.ye_c02356{bottom:628.586875pt;}
.yd_c02356{bottom:637.227067pt;}
.ya_c02356{bottom:707.945339pt;}
.y9_c02356{bottom:779.945531pt;}
.y7_c02356{bottom:823.786427pt;}
.y3_c02356{bottom:839.786939pt;}
.y8_c02356{bottom:870.505979pt;}
.y6_c02356{bottom:899.946203pt;}
.y5_c02356{bottom:915.946715pt;}
.y2_c02356{bottom:945.386939pt;}
.y4_c02356{bottom:959.786555pt;}
.y1_c02356{bottom:975.787067pt;}
.yf_c02356{bottom:1008.747067pt;}
.h3_c02356{height:28.916250pt;}
.h1_c02356{height:37.063125pt;}
.h2_c02356{height:37.166250pt;}
.h4_c02356{height:48.581988pt;}
.h0_c02356{height:1122.666667pt;}
.w1_c02356{width:793.333333pt;}
.w0_c02356{width:793.626667pt;}
.x0_c02356{left:0.000000pt;}
.xe_c02356{left:104.000000pt;}
.x8_c02356{left:392.000928pt;}
.x4_c02356{left:396.160512pt;}
.xc_c02356{left:400.960000pt;}
.x7_c02356{left:404.800704pt;}
.x5_c02356{left:410.560128pt;}
.x1_c02356{left:411.840000pt;}
.xa_c02356{left:429.761376pt;}
.x9_c02356{left:437.440608pt;}
.x6_c02356{left:438.400512pt;}
.xd_c02356{left:450.560320pt;}
.x3_c02356{left:455.039904pt;}
.x2_c02356{left:468.159648pt;}
.xb_c02356{left:506.561088pt;}
}





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

.ir_c02357:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02357{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02357;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02357{font-family:ff1_c02357;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02357;src:url('chunks/assets/font_3bd9d8db7f647f933fcf45c2.woff2')format("woff");}.ff2_c02357{font-family:ff2_c02357;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02357;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02357{font-family:ff3_c02357;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02357{vertical-align:0.000000px;}
.v1_c02357{vertical-align:1.439424px;}
.lsd_c02357{letter-spacing:-1.197504px;}
.ls8_c02357{letter-spacing:-0.613008px;}
.lsa_c02357{letter-spacing:-0.574992px;}
.ls10_c02357{letter-spacing:-0.275616px;}
.lse_c02357{letter-spacing:-0.261360px;}
.ls7_c02357{letter-spacing:-0.242352px;}
.ls5_c02357{letter-spacing:-0.118800px;}
.ls13_c02357{letter-spacing:0.000000px;}
.ls1_c02357{letter-spacing:0.006048px;}
.ls6_c02357{letter-spacing:0.128304px;}
.ls14_c02357{letter-spacing:0.242352px;}
.lsc_c02357{letter-spacing:0.508464px;}
.ls12_c02357{letter-spacing:0.514080px;}
.lsf_c02357{letter-spacing:0.536976px;}
.lsb_c02357{letter-spacing:0.579744px;}
.ls11_c02357{letter-spacing:0.594000px;}
.ls9_c02357{letter-spacing:0.598752px;}
.ls3_c02357{letter-spacing:0.613008px;}
.ls2_c02357{letter-spacing:0.651024px;}
.ls0_c02357{letter-spacing:0.717552px;}
.ls4_c02357{letter-spacing:0.722304px;}
.sc__c02357{text-shadow:none;}
.sc0_c02357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02357{-webkit-text-stroke:0px transparent;}
.sc0_c02357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02357{word-spacing:-15.126048px;}
.wsa_c02357{word-spacing:-12.474000px;}
.ws8_c02357{word-spacing:-12.459744px;}
.ws9_c02357{word-spacing:-12.416976px;}
.ws4_c02357{word-spacing:-11.637648px;}
.ws2_c02357{word-spacing:-11.266992px;}
.ws14_c02357{word-spacing:-2.159136px;}
.ws10_c02357{word-spacing:-1.078704px;}
.ws15_c02357{word-spacing:-1.012176px;}
.wsd_c02357{word-spacing:-0.974160px;}
.wsf_c02357{word-spacing:-0.118800px;}
.ws12_c02357{word-spacing:-0.099792px;}
.ws13_c02357{word-spacing:-0.085536px;}
.wse_c02357{word-spacing:0.000000px;}
.ws11_c02357{word-spacing:0.836352px;}
.wsb_c02357{word-spacing:33.300288px;}
.ws6_c02357{word-spacing:36.742464px;}
.ws1_c02357{word-spacing:37.759392px;}
.ws0_c02357{word-spacing:38.020752px;}
.ws3_c02357{word-spacing:39.218256px;}
.ws5_c02357{word-spacing:39.902544px;}
.ws7_c02357{word-spacing:42.026688px;}
._0_c02357{margin-left:-1.948320px;}
._2_c02357{width:1.482624px;}
._4_c02357{width:3.302640px;}
._1_c02357{width:50.252400px;}
._3_c02357{width:51.530688px;}
.fc0_c02357{color:rgb(0,0,0);}
.fs0_c02357{font-size:47.520000px;}
.fs1_c02357{font-size:60.480000px;}
.y0_c02357{bottom:0.000000px;}
.y19_c02357{bottom:146.998362px;}
.y1b_c02357{bottom:186.600234px;}
.y1a_c02357{bottom:196.320450px;}
.y18_c02357{bottom:275.878542px;}
.y17_c02357{bottom:356.878758px;}
.y15_c02357{bottom:406.559730px;}
.y11_c02357{bottom:424.560306px;}
.y16_c02357{bottom:458.759262px;}
.y14_c02357{bottom:491.879514px;}
.y13_c02357{bottom:509.880090px;}
.y10_c02357{bottom:543.000342px;}
.y12_c02357{bottom:559.559874px;}
.yf_c02357{bottom:577.560450px;}
.y1c_c02357{bottom:614.280450px;}
.yb_c02357{bottom:667.558326px;}
.yd_c02357{bottom:707.160234px;}
.yc_c02357{bottom:716.880450px;}
.ya_c02357{bottom:796.438506px;}
.y9_c02357{bottom:877.438722px;}
.y7_c02357{bottom:926.759730px;}
.y3_c02357{bottom:944.760306px;}
.y8_c02357{bottom:979.319226px;}
.y6_c02357{bottom:1012.439478px;}
.y5_c02357{bottom:1030.440054px;}
.y2_c02357{bottom:1063.560306px;}
.y4_c02357{bottom:1079.759874px;}
.y1_c02357{bottom:1097.760450px;}
.ye_c02357{bottom:1134.840450px;}
.h3_c02357{height:32.530781px;}
.h1_c02357{height:41.696016px;}
.h2_c02357{height:41.812031px;}
.h4_c02357{height:54.654737px;}
.h0_c02357{height:1263.000000px;}
.w1_c02357{width:892.500000px;}
.w0_c02357{width:892.830000px;}
.x0_c02357{left:0.000000px;}
.xd_c02357{left:117.000000px;}
.x8_c02357{left:440.999856px;}
.x4_c02357{left:445.680576px;}
.xb_c02357{left:451.080000px;}
.x7_c02357{left:455.399604px;}
.x5_c02357{left:461.880144px;}
.x1_c02357{left:463.320000px;}
.xa_c02357{left:483.480360px;}
.x9_c02357{left:492.119496px;}
.x6_c02357{left:493.200576px;}
.xc_c02357{left:506.880360px;}
.x3_c02357{left:511.919892px;}
.x2_c02357{left:526.679604px;}
@media print{
.v0_c02357{vertical-align:0.000000pt;}
.v1_c02357{vertical-align:1.279488pt;}
.lsd_c02357{letter-spacing:-1.064448pt;}
.ls8_c02357{letter-spacing:-0.544896pt;}
.lsa_c02357{letter-spacing:-0.511104pt;}
.ls10_c02357{letter-spacing:-0.244992pt;}
.lse_c02357{letter-spacing:-0.232320pt;}
.ls7_c02357{letter-spacing:-0.215424pt;}
.ls5_c02357{letter-spacing:-0.105600pt;}
.ls13_c02357{letter-spacing:0.000000pt;}
.ls1_c02357{letter-spacing:0.005376pt;}
.ls6_c02357{letter-spacing:0.114048pt;}
.ls14_c02357{letter-spacing:0.215424pt;}
.lsc_c02357{letter-spacing:0.451968pt;}
.ls12_c02357{letter-spacing:0.456960pt;}
.lsf_c02357{letter-spacing:0.477312pt;}
.lsb_c02357{letter-spacing:0.515328pt;}
.ls11_c02357{letter-spacing:0.528000pt;}
.ls9_c02357{letter-spacing:0.532224pt;}
.ls3_c02357{letter-spacing:0.544896pt;}
.ls2_c02357{letter-spacing:0.578688pt;}
.ls0_c02357{letter-spacing:0.637824pt;}
.ls4_c02357{letter-spacing:0.642048pt;}
.wsc_c02357{word-spacing:-13.445376pt;}
.wsa_c02357{word-spacing:-11.088000pt;}
.ws8_c02357{word-spacing:-11.075328pt;}
.ws9_c02357{word-spacing:-11.037312pt;}
.ws4_c02357{word-spacing:-10.344576pt;}
.ws2_c02357{word-spacing:-10.015104pt;}
.ws14_c02357{word-spacing:-1.919232pt;}
.ws10_c02357{word-spacing:-0.958848pt;}
.ws15_c02357{word-spacing:-0.899712pt;}
.wsd_c02357{word-spacing:-0.865920pt;}
.wsf_c02357{word-spacing:-0.105600pt;}
.ws12_c02357{word-spacing:-0.088704pt;}
.ws13_c02357{word-spacing:-0.076032pt;}
.wse_c02357{word-spacing:0.000000pt;}
.ws11_c02357{word-spacing:0.743424pt;}
.wsb_c02357{word-spacing:29.600256pt;}
.ws6_c02357{word-spacing:32.659968pt;}
.ws1_c02357{word-spacing:33.563904pt;}
.ws0_c02357{word-spacing:33.796224pt;}
.ws3_c02357{word-spacing:34.860672pt;}
.ws5_c02357{word-spacing:35.468928pt;}
.ws7_c02357{word-spacing:37.357056pt;}
._0_c02357{margin-left:-1.731840pt;}
._2_c02357{width:1.317888pt;}
._4_c02357{width:2.935680pt;}
._1_c02357{width:44.668800pt;}
._3_c02357{width:45.805056pt;}
.fs0_c02357{font-size:42.240000pt;}
.fs1_c02357{font-size:53.760000pt;}
.y0_c02357{bottom:0.000000pt;}
.y19_c02357{bottom:130.665211pt;}
.y1b_c02357{bottom:165.866875pt;}
.y1a_c02357{bottom:174.507067pt;}
.y18_c02357{bottom:245.225371pt;}
.y17_c02357{bottom:317.225563pt;}
.y15_c02357{bottom:361.386427pt;}
.y11_c02357{bottom:377.386939pt;}
.y16_c02357{bottom:407.786011pt;}
.y14_c02357{bottom:437.226235pt;}
.y13_c02357{bottom:453.226747pt;}
.y10_c02357{bottom:482.666971pt;}
.y12_c02357{bottom:497.386555pt;}
.yf_c02357{bottom:513.387067pt;}
.y1c_c02357{bottom:546.027067pt;}
.yb_c02357{bottom:593.385179pt;}
.yd_c02357{bottom:628.586875pt;}
.yc_c02357{bottom:637.227067pt;}
.ya_c02357{bottom:707.945339pt;}
.y9_c02357{bottom:779.945531pt;}
.y7_c02357{bottom:823.786427pt;}
.y3_c02357{bottom:839.786939pt;}
.y8_c02357{bottom:870.505979pt;}
.y6_c02357{bottom:899.946203pt;}
.y5_c02357{bottom:915.946715pt;}
.y2_c02357{bottom:945.386939pt;}
.y4_c02357{bottom:959.786555pt;}
.y1_c02357{bottom:975.787067pt;}
.ye_c02357{bottom:1008.747067pt;}
.h3_c02357{height:28.916250pt;}
.h1_c02357{height:37.063125pt;}
.h2_c02357{height:37.166250pt;}
.h4_c02357{height:48.581988pt;}
.h0_c02357{height:1122.666667pt;}
.w1_c02357{width:793.333333pt;}
.w0_c02357{width:793.626667pt;}
.x0_c02357{left:0.000000pt;}
.xd_c02357{left:104.000000pt;}
.x8_c02357{left:391.999872pt;}
.x4_c02357{left:396.160512pt;}
.xb_c02357{left:400.960000pt;}
.x7_c02357{left:404.799648pt;}
.x5_c02357{left:410.560128pt;}
.x1_c02357{left:411.840000pt;}
.xa_c02357{left:429.760320pt;}
.x9_c02357{left:437.439552pt;}
.x6_c02357{left:438.400512pt;}
.xc_c02357{left:450.560320pt;}
.x3_c02357{left:455.039904pt;}
.x2_c02357{left:468.159648pt;}
}





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

.ir_c02358:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02358{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02358;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02358{font-family:ff1_c02358;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02358;src:url('chunks/assets/font_259bf76513e582d0372d6017.woff2')format("woff");}.ff2_c02358{font-family:ff2_c02358;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02358;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02358{font-family:ff3_c02358;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02358{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02358{vertical-align:0.000000px;}
.v1_c02358{vertical-align:1.439424px;}
.ls8_c02358{letter-spacing:-0.613008px;}
.lsa_c02358{letter-spacing:-0.574992px;}
.ls10_c02358{letter-spacing:-0.275616px;}
.lse_c02358{letter-spacing:-0.261360px;}
.ls7_c02358{letter-spacing:-0.242352px;}
.ls5_c02358{letter-spacing:-0.118800px;}
.ls13_c02358{letter-spacing:0.000000px;}
.ls2_c02358{letter-spacing:0.006048px;}
.ls6_c02358{letter-spacing:0.128304px;}
.lsd_c02358{letter-spacing:0.242352px;}
.lsc_c02358{letter-spacing:0.508464px;}
.ls12_c02358{letter-spacing:0.514080px;}
.lsf_c02358{letter-spacing:0.536976px;}
.lsb_c02358{letter-spacing:0.579744px;}
.ls11_c02358{letter-spacing:0.594000px;}
.ls9_c02358{letter-spacing:0.598752px;}
.ls3_c02358{letter-spacing:0.613008px;}
.ls0_c02358{letter-spacing:0.651024px;}
.ls1_c02358{letter-spacing:0.717552px;}
.ls4_c02358{letter-spacing:0.722304px;}
.sc__c02358{text-shadow:none;}
.sc0_c02358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02358{-webkit-text-stroke:0px transparent;}
.sc0_c02358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02358{word-spacing:-15.126048px;}
.wsa_c02358{word-spacing:-12.474000px;}
.ws8_c02358{word-spacing:-12.459744px;}
.ws9_c02358{word-spacing:-12.416976px;}
.ws4_c02358{word-spacing:-11.637648px;}
.ws2_c02358{word-spacing:-11.266992px;}
.ws14_c02358{word-spacing:-2.159136px;}
.ws11_c02358{word-spacing:-1.078704px;}
.wsf_c02358{word-spacing:-1.012176px;}
.wsd_c02358{word-spacing:-0.974160px;}
.ws10_c02358{word-spacing:-0.118800px;}
.ws12_c02358{word-spacing:-0.099792px;}
.ws13_c02358{word-spacing:-0.085536px;}
.wse_c02358{word-spacing:0.000000px;}
.wsb_c02358{word-spacing:33.300288px;}
.ws6_c02358{word-spacing:36.742464px;}
.ws1_c02358{word-spacing:37.759392px;}
.ws0_c02358{word-spacing:38.020752px;}
.ws3_c02358{word-spacing:39.218256px;}
.ws5_c02358{word-spacing:39.902544px;}
.ws7_c02358{word-spacing:42.026688px;}
._0_c02358{margin-left:-1.948320px;}
._2_c02358{width:1.482624px;}
._4_c02358{width:3.302640px;}
._1_c02358{width:50.252400px;}
._3_c02358{width:51.530688px;}
.fc0_c02358{color:rgb(0,0,0);}
.fs0_c02358{font-size:47.520000px;}
.fs1_c02358{font-size:60.480000px;}
.y0_c02358{bottom:0.000000px;}
.y19_c02358{bottom:146.998362px;}
.y1b_c02358{bottom:186.600234px;}
.y1a_c02358{bottom:196.320450px;}
.y18_c02358{bottom:275.878542px;}
.y17_c02358{bottom:356.878758px;}
.y15_c02358{bottom:406.559730px;}
.y11_c02358{bottom:424.560306px;}
.y16_c02358{bottom:458.759262px;}
.y14_c02358{bottom:491.879514px;}
.y13_c02358{bottom:509.880090px;}
.y10_c02358{bottom:543.000342px;}
.y12_c02358{bottom:559.559874px;}
.yf_c02358{bottom:577.560450px;}
.y1c_c02358{bottom:614.280450px;}
.yb_c02358{bottom:667.558326px;}
.yd_c02358{bottom:707.160234px;}
.yc_c02358{bottom:716.880450px;}
.ya_c02358{bottom:796.438506px;}
.y9_c02358{bottom:877.438722px;}
.y7_c02358{bottom:926.759730px;}
.y3_c02358{bottom:944.760306px;}
.y8_c02358{bottom:979.319226px;}
.y6_c02358{bottom:1012.439478px;}
.y5_c02358{bottom:1030.440054px;}
.y2_c02358{bottom:1063.560306px;}
.y4_c02358{bottom:1079.759874px;}
.y1_c02358{bottom:1097.760450px;}
.ye_c02358{bottom:1134.840450px;}
.h3_c02358{height:32.530781px;}
.h1_c02358{height:41.696016px;}
.h2_c02358{height:41.812031px;}
.h4_c02358{height:54.654737px;}
.h0_c02358{height:1263.000000px;}
.w1_c02358{width:892.500000px;}
.w0_c02358{width:892.830000px;}
.x0_c02358{left:0.000000px;}
.xd_c02358{left:117.000000px;}
.x8_c02358{left:440.999856px;}
.x4_c02358{left:445.680576px;}
.xb_c02358{left:451.080000px;}
.x7_c02358{left:455.399604px;}
.x5_c02358{left:461.880144px;}
.x1_c02358{left:463.320000px;}
.xa_c02358{left:483.480360px;}
.x9_c02358{left:492.119496px;}
.x6_c02358{left:493.200576px;}
.xc_c02358{left:506.880360px;}
.x3_c02358{left:511.919892px;}
.x2_c02358{left:526.679604px;}
@media print{
.v0_c02358{vertical-align:0.000000pt;}
.v1_c02358{vertical-align:1.279488pt;}
.ls8_c02358{letter-spacing:-0.544896pt;}
.lsa_c02358{letter-spacing:-0.511104pt;}
.ls10_c02358{letter-spacing:-0.244992pt;}
.lse_c02358{letter-spacing:-0.232320pt;}
.ls7_c02358{letter-spacing:-0.215424pt;}
.ls5_c02358{letter-spacing:-0.105600pt;}
.ls13_c02358{letter-spacing:0.000000pt;}
.ls2_c02358{letter-spacing:0.005376pt;}
.ls6_c02358{letter-spacing:0.114048pt;}
.lsd_c02358{letter-spacing:0.215424pt;}
.lsc_c02358{letter-spacing:0.451968pt;}
.ls12_c02358{letter-spacing:0.456960pt;}
.lsf_c02358{letter-spacing:0.477312pt;}
.lsb_c02358{letter-spacing:0.515328pt;}
.ls11_c02358{letter-spacing:0.528000pt;}
.ls9_c02358{letter-spacing:0.532224pt;}
.ls3_c02358{letter-spacing:0.544896pt;}
.ls0_c02358{letter-spacing:0.578688pt;}
.ls1_c02358{letter-spacing:0.637824pt;}
.ls4_c02358{letter-spacing:0.642048pt;}
.wsc_c02358{word-spacing:-13.445376pt;}
.wsa_c02358{word-spacing:-11.088000pt;}
.ws8_c02358{word-spacing:-11.075328pt;}
.ws9_c02358{word-spacing:-11.037312pt;}
.ws4_c02358{word-spacing:-10.344576pt;}
.ws2_c02358{word-spacing:-10.015104pt;}
.ws14_c02358{word-spacing:-1.919232pt;}
.ws11_c02358{word-spacing:-0.958848pt;}
.wsf_c02358{word-spacing:-0.899712pt;}
.wsd_c02358{word-spacing:-0.865920pt;}
.ws10_c02358{word-spacing:-0.105600pt;}
.ws12_c02358{word-spacing:-0.088704pt;}
.ws13_c02358{word-spacing:-0.076032pt;}
.wse_c02358{word-spacing:0.000000pt;}
.wsb_c02358{word-spacing:29.600256pt;}
.ws6_c02358{word-spacing:32.659968pt;}
.ws1_c02358{word-spacing:33.563904pt;}
.ws0_c02358{word-spacing:33.796224pt;}
.ws3_c02358{word-spacing:34.860672pt;}
.ws5_c02358{word-spacing:35.468928pt;}
.ws7_c02358{word-spacing:37.357056pt;}
._0_c02358{margin-left:-1.731840pt;}
._2_c02358{width:1.317888pt;}
._4_c02358{width:2.935680pt;}
._1_c02358{width:44.668800pt;}
._3_c02358{width:45.805056pt;}
.fs0_c02358{font-size:42.240000pt;}
.fs1_c02358{font-size:53.760000pt;}
.y0_c02358{bottom:0.000000pt;}
.y19_c02358{bottom:130.665211pt;}
.y1b_c02358{bottom:165.866875pt;}
.y1a_c02358{bottom:174.507067pt;}
.y18_c02358{bottom:245.225371pt;}
.y17_c02358{bottom:317.225563pt;}
.y15_c02358{bottom:361.386427pt;}
.y11_c02358{bottom:377.386939pt;}
.y16_c02358{bottom:407.786011pt;}
.y14_c02358{bottom:437.226235pt;}
.y13_c02358{bottom:453.226747pt;}
.y10_c02358{bottom:482.666971pt;}
.y12_c02358{bottom:497.386555pt;}
.yf_c02358{bottom:513.387067pt;}
.y1c_c02358{bottom:546.027067pt;}
.yb_c02358{bottom:593.385179pt;}
.yd_c02358{bottom:628.586875pt;}
.yc_c02358{bottom:637.227067pt;}
.ya_c02358{bottom:707.945339pt;}
.y9_c02358{bottom:779.945531pt;}
.y7_c02358{bottom:823.786427pt;}
.y3_c02358{bottom:839.786939pt;}
.y8_c02358{bottom:870.505979pt;}
.y6_c02358{bottom:899.946203pt;}
.y5_c02358{bottom:915.946715pt;}
.y2_c02358{bottom:945.386939pt;}
.y4_c02358{bottom:959.786555pt;}
.y1_c02358{bottom:975.787067pt;}
.ye_c02358{bottom:1008.747067pt;}
.h3_c02358{height:28.916250pt;}
.h1_c02358{height:37.063125pt;}
.h2_c02358{height:37.166250pt;}
.h4_c02358{height:48.581988pt;}
.h0_c02358{height:1122.666667pt;}
.w1_c02358{width:793.333333pt;}
.w0_c02358{width:793.626667pt;}
.x0_c02358{left:0.000000pt;}
.xd_c02358{left:104.000000pt;}
.x8_c02358{left:391.999872pt;}
.x4_c02358{left:396.160512pt;}
.xb_c02358{left:400.960000pt;}
.x7_c02358{left:404.799648pt;}
.x5_c02358{left:410.560128pt;}
.x1_c02358{left:411.840000pt;}
.xa_c02358{left:429.760320pt;}
.x9_c02358{left:437.439552pt;}
.x6_c02358{left:438.400512pt;}
.xc_c02358{left:450.560320pt;}
.x3_c02358{left:455.039904pt;}
.x2_c02358{left:468.159648pt;}
}





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

.ir_c02359:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02359{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02359;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02359{font-family:ff1_c02359;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02359;src:url('chunks/assets/font_c5c724ba3316269cc7f0cb35.woff2')format("woff");}.ff2_c02359{font-family:ff2_c02359;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02359;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02359{font-family:ff3_c02359;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02359{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02359{vertical-align:0.000000px;}
.v1_c02359{vertical-align:1.439424px;}
.ls8_c02359{letter-spacing:-0.613008px;}
.lsa_c02359{letter-spacing:-0.574992px;}
.ls10_c02359{letter-spacing:-0.275616px;}
.lse_c02359{letter-spacing:-0.261360px;}
.ls7_c02359{letter-spacing:-0.242352px;}
.ls5_c02359{letter-spacing:-0.118800px;}
.ls13_c02359{letter-spacing:0.000000px;}
.ls2_c02359{letter-spacing:0.006048px;}
.ls6_c02359{letter-spacing:0.128304px;}
.lsd_c02359{letter-spacing:0.242352px;}
.lsc_c02359{letter-spacing:0.508464px;}
.ls12_c02359{letter-spacing:0.514080px;}
.lsf_c02359{letter-spacing:0.536976px;}
.lsb_c02359{letter-spacing:0.579744px;}
.ls11_c02359{letter-spacing:0.594000px;}
.ls9_c02359{letter-spacing:0.598752px;}
.ls3_c02359{letter-spacing:0.613008px;}
.ls0_c02359{letter-spacing:0.651024px;}
.ls1_c02359{letter-spacing:0.717552px;}
.ls4_c02359{letter-spacing:0.722304px;}
.sc__c02359{text-shadow:none;}
.sc0_c02359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02359{-webkit-text-stroke:0px transparent;}
.sc0_c02359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02359{word-spacing:-15.126048px;}
.wsa_c02359{word-spacing:-12.474000px;}
.ws8_c02359{word-spacing:-12.459744px;}
.ws9_c02359{word-spacing:-12.416976px;}
.ws4_c02359{word-spacing:-11.637648px;}
.ws2_c02359{word-spacing:-11.266992px;}
.ws14_c02359{word-spacing:-2.159136px;}
.ws11_c02359{word-spacing:-1.078704px;}
.wsf_c02359{word-spacing:-1.012176px;}
.wsd_c02359{word-spacing:-0.974160px;}
.ws10_c02359{word-spacing:-0.118800px;}
.ws12_c02359{word-spacing:-0.099792px;}
.ws13_c02359{word-spacing:-0.085536px;}
.wse_c02359{word-spacing:0.000000px;}
.wsb_c02359{word-spacing:33.300288px;}
.ws6_c02359{word-spacing:36.742464px;}
.ws1_c02359{word-spacing:37.759392px;}
.ws0_c02359{word-spacing:38.020752px;}
.ws3_c02359{word-spacing:39.218256px;}
.ws5_c02359{word-spacing:39.902544px;}
.ws7_c02359{word-spacing:42.026688px;}
._0_c02359{margin-left:-1.948320px;}
._2_c02359{width:1.482624px;}
._4_c02359{width:3.302640px;}
._1_c02359{width:50.252400px;}
._3_c02359{width:51.530688px;}
.fc0_c02359{color:rgb(0,0,0);}
.fs0_c02359{font-size:47.520000px;}
.fs1_c02359{font-size:60.480000px;}
.y0_c02359{bottom:0.000000px;}
.y19_c02359{bottom:146.998362px;}
.y1b_c02359{bottom:186.600234px;}
.y1a_c02359{bottom:196.320450px;}
.y18_c02359{bottom:275.878542px;}
.y17_c02359{bottom:356.878758px;}
.y15_c02359{bottom:406.559730px;}
.y11_c02359{bottom:424.560306px;}
.y16_c02359{bottom:458.759262px;}
.y14_c02359{bottom:491.879514px;}
.y13_c02359{bottom:509.880090px;}
.y10_c02359{bottom:543.000342px;}
.y12_c02359{bottom:559.559874px;}
.yf_c02359{bottom:577.560450px;}
.y1c_c02359{bottom:614.280450px;}
.yb_c02359{bottom:667.558326px;}
.yd_c02359{bottom:707.160234px;}
.yc_c02359{bottom:716.880450px;}
.ya_c02359{bottom:796.438506px;}
.y9_c02359{bottom:877.438722px;}
.y7_c02359{bottom:926.759730px;}
.y3_c02359{bottom:944.760306px;}
.y8_c02359{bottom:979.319226px;}
.y6_c02359{bottom:1012.439478px;}
.y5_c02359{bottom:1030.440054px;}
.y2_c02359{bottom:1063.560306px;}
.y4_c02359{bottom:1079.759874px;}
.y1_c02359{bottom:1097.760450px;}
.ye_c02359{bottom:1134.840450px;}
.h3_c02359{height:32.530781px;}
.h1_c02359{height:41.696016px;}
.h2_c02359{height:41.812031px;}
.h4_c02359{height:54.654737px;}
.h0_c02359{height:1263.000000px;}
.w1_c02359{width:892.500000px;}
.w0_c02359{width:892.830000px;}
.x0_c02359{left:0.000000px;}
.xd_c02359{left:117.000000px;}
.x8_c02359{left:440.999856px;}
.x4_c02359{left:445.680576px;}
.xb_c02359{left:451.080000px;}
.x7_c02359{left:455.399604px;}
.x5_c02359{left:461.880144px;}
.x1_c02359{left:463.320000px;}
.xa_c02359{left:483.480360px;}
.x9_c02359{left:492.119496px;}
.x6_c02359{left:493.200576px;}
.xc_c02359{left:506.880360px;}
.x3_c02359{left:511.919892px;}
.x2_c02359{left:526.679604px;}
@media print{
.v0_c02359{vertical-align:0.000000pt;}
.v1_c02359{vertical-align:1.279488pt;}
.ls8_c02359{letter-spacing:-0.544896pt;}
.lsa_c02359{letter-spacing:-0.511104pt;}
.ls10_c02359{letter-spacing:-0.244992pt;}
.lse_c02359{letter-spacing:-0.232320pt;}
.ls7_c02359{letter-spacing:-0.215424pt;}
.ls5_c02359{letter-spacing:-0.105600pt;}
.ls13_c02359{letter-spacing:0.000000pt;}
.ls2_c02359{letter-spacing:0.005376pt;}
.ls6_c02359{letter-spacing:0.114048pt;}
.lsd_c02359{letter-spacing:0.215424pt;}
.lsc_c02359{letter-spacing:0.451968pt;}
.ls12_c02359{letter-spacing:0.456960pt;}
.lsf_c02359{letter-spacing:0.477312pt;}
.lsb_c02359{letter-spacing:0.515328pt;}
.ls11_c02359{letter-spacing:0.528000pt;}
.ls9_c02359{letter-spacing:0.532224pt;}
.ls3_c02359{letter-spacing:0.544896pt;}
.ls0_c02359{letter-spacing:0.578688pt;}
.ls1_c02359{letter-spacing:0.637824pt;}
.ls4_c02359{letter-spacing:0.642048pt;}
.wsc_c02359{word-spacing:-13.445376pt;}
.wsa_c02359{word-spacing:-11.088000pt;}
.ws8_c02359{word-spacing:-11.075328pt;}
.ws9_c02359{word-spacing:-11.037312pt;}
.ws4_c02359{word-spacing:-10.344576pt;}
.ws2_c02359{word-spacing:-10.015104pt;}
.ws14_c02359{word-spacing:-1.919232pt;}
.ws11_c02359{word-spacing:-0.958848pt;}
.wsf_c02359{word-spacing:-0.899712pt;}
.wsd_c02359{word-spacing:-0.865920pt;}
.ws10_c02359{word-spacing:-0.105600pt;}
.ws12_c02359{word-spacing:-0.088704pt;}
.ws13_c02359{word-spacing:-0.076032pt;}
.wse_c02359{word-spacing:0.000000pt;}
.wsb_c02359{word-spacing:29.600256pt;}
.ws6_c02359{word-spacing:32.659968pt;}
.ws1_c02359{word-spacing:33.563904pt;}
.ws0_c02359{word-spacing:33.796224pt;}
.ws3_c02359{word-spacing:34.860672pt;}
.ws5_c02359{word-spacing:35.468928pt;}
.ws7_c02359{word-spacing:37.357056pt;}
._0_c02359{margin-left:-1.731840pt;}
._2_c02359{width:1.317888pt;}
._4_c02359{width:2.935680pt;}
._1_c02359{width:44.668800pt;}
._3_c02359{width:45.805056pt;}
.fs0_c02359{font-size:42.240000pt;}
.fs1_c02359{font-size:53.760000pt;}
.y0_c02359{bottom:0.000000pt;}
.y19_c02359{bottom:130.665211pt;}
.y1b_c02359{bottom:165.866875pt;}
.y1a_c02359{bottom:174.507067pt;}
.y18_c02359{bottom:245.225371pt;}
.y17_c02359{bottom:317.225563pt;}
.y15_c02359{bottom:361.386427pt;}
.y11_c02359{bottom:377.386939pt;}
.y16_c02359{bottom:407.786011pt;}
.y14_c02359{bottom:437.226235pt;}
.y13_c02359{bottom:453.226747pt;}
.y10_c02359{bottom:482.666971pt;}
.y12_c02359{bottom:497.386555pt;}
.yf_c02359{bottom:513.387067pt;}
.y1c_c02359{bottom:546.027067pt;}
.yb_c02359{bottom:593.385179pt;}
.yd_c02359{bottom:628.586875pt;}
.yc_c02359{bottom:637.227067pt;}
.ya_c02359{bottom:707.945339pt;}
.y9_c02359{bottom:779.945531pt;}
.y7_c02359{bottom:823.786427pt;}
.y3_c02359{bottom:839.786939pt;}
.y8_c02359{bottom:870.505979pt;}
.y6_c02359{bottom:899.946203pt;}
.y5_c02359{bottom:915.946715pt;}
.y2_c02359{bottom:945.386939pt;}
.y4_c02359{bottom:959.786555pt;}
.y1_c02359{bottom:975.787067pt;}
.ye_c02359{bottom:1008.747067pt;}
.h3_c02359{height:28.916250pt;}
.h1_c02359{height:37.063125pt;}
.h2_c02359{height:37.166250pt;}
.h4_c02359{height:48.581988pt;}
.h0_c02359{height:1122.666667pt;}
.w1_c02359{width:793.333333pt;}
.w0_c02359{width:793.626667pt;}
.x0_c02359{left:0.000000pt;}
.xd_c02359{left:104.000000pt;}
.x8_c02359{left:391.999872pt;}
.x4_c02359{left:396.160512pt;}
.xb_c02359{left:400.960000pt;}
.x7_c02359{left:404.799648pt;}
.x5_c02359{left:410.560128pt;}
.x1_c02359{left:411.840000pt;}
.xa_c02359{left:429.760320pt;}
.x9_c02359{left:437.439552pt;}
.x6_c02359{left:438.400512pt;}
.xc_c02359{left:450.560320pt;}
.x3_c02359{left:455.039904pt;}
.x2_c02359{left:468.159648pt;}
}





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

.ir_c02360:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02360{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02360;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02360{font-family:ff1_c02360;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02360;src:url('chunks/assets/font_54bdeb6d271e77d561dafac7.woff2')format("woff");}.ff2_c02360{font-family:ff2_c02360;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02360;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02360{font-family:ff3_c02360;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02360{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02360{vertical-align:0.000000px;}
.v1_c02360{vertical-align:1.439424px;}
.lse_c02360{letter-spacing:-0.793584px;}
.lsb_c02360{letter-spacing:-0.774576px;}
.ls11_c02360{letter-spacing:-0.736560px;}
.ls8_c02360{letter-spacing:-0.613008px;}
.lsa_c02360{letter-spacing:-0.574992px;}
.ls12_c02360{letter-spacing:-0.270864px;}
.lsf_c02360{letter-spacing:-0.261360px;}
.ls7_c02360{letter-spacing:-0.242352px;}
.ls4_c02360{letter-spacing:-0.118800px;}
.ls15_c02360{letter-spacing:0.000000px;}
.ls1_c02360{letter-spacing:0.006048px;}
.ls6_c02360{letter-spacing:0.128304px;}
.lsd_c02360{letter-spacing:0.508464px;}
.ls14_c02360{letter-spacing:0.514080px;}
.ls10_c02360{letter-spacing:0.536976px;}
.lsc_c02360{letter-spacing:0.579744px;}
.ls13_c02360{letter-spacing:0.594000px;}
.ls9_c02360{letter-spacing:0.598752px;}
.ls2_c02360{letter-spacing:0.613008px;}
.ls0_c02360{letter-spacing:0.651024px;}
.ls5_c02360{letter-spacing:0.717552px;}
.ls3_c02360{letter-spacing:0.722304px;}
.sc__c02360{text-shadow:none;}
.sc0_c02360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02360{-webkit-text-stroke:0px transparent;}
.sc0_c02360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02360{word-spacing:-15.126048px;}
.wsb_c02360{word-spacing:-12.474000px;}
.ws7_c02360{word-spacing:-12.459744px;}
.ws4_c02360{word-spacing:-11.637648px;}
.ws2_c02360{word-spacing:-11.266992px;}
.ws6_c02360{word-spacing:-11.105424px;}
.ws17_c02360{word-spacing:-2.159136px;}
.ws11_c02360{word-spacing:-1.012176px;}
.wsf_c02360{word-spacing:-0.974160px;}
.ws12_c02360{word-spacing:-0.118800px;}
.ws14_c02360{word-spacing:-0.099792px;}
.ws15_c02360{word-spacing:-0.090288px;}
.ws16_c02360{word-spacing:-0.085536px;}
.ws10_c02360{word-spacing:0.000000px;}
.ws13_c02360{word-spacing:0.432432px;}
.wsa_c02360{word-spacing:6.629040px;}
.wsc_c02360{word-spacing:33.300288px;}
.ws9_c02360{word-spacing:34.836912px;}
.wse_c02360{word-spacing:36.143712px;}
.ws1_c02360{word-spacing:37.759392px;}
.ws0_c02360{word-spacing:38.020752px;}
.ws3_c02360{word-spacing:39.218256px;}
.ws5_c02360{word-spacing:39.902544px;}
.ws8_c02360{word-spacing:42.026688px;}
._0_c02360{margin-left:-1.948320px;}
._2_c02360{width:1.482624px;}
._4_c02360{width:3.302640px;}
._6_c02360{width:19.982160px;}
._7_c02360{width:23.451120px;}
._5_c02360{width:24.691392px;}
._1_c02360{width:50.252400px;}
._3_c02360{width:51.530688px;}
.fc0_c02360{color:rgb(0,0,0);}
.fs0_c02360{font-size:47.520000px;}
.fs1_c02360{font-size:60.480000px;}
.y0_c02360{bottom:0.000000px;}
.y1b_c02360{bottom:131.878686px;}
.y1a_c02360{bottom:146.998362px;}
.y1d_c02360{bottom:186.600234px;}
.y1c_c02360{bottom:196.320450px;}
.y19_c02360{bottom:275.878542px;}
.y18_c02360{bottom:356.878758px;}
.y16_c02360{bottom:406.559730px;}
.y12_c02360{bottom:424.560306px;}
.y17_c02360{bottom:458.759262px;}
.y15_c02360{bottom:491.879514px;}
.y14_c02360{bottom:509.880090px;}
.y11_c02360{bottom:543.000342px;}
.y13_c02360{bottom:559.559874px;}
.y10_c02360{bottom:577.560450px;}
.y1e_c02360{bottom:614.280450px;}
.yc_c02360{bottom:652.438650px;}
.yb_c02360{bottom:667.558326px;}
.ye_c02360{bottom:707.160234px;}
.yd_c02360{bottom:716.880450px;}
.ya_c02360{bottom:796.438506px;}
.y9_c02360{bottom:877.438722px;}
.y7_c02360{bottom:926.759730px;}
.y3_c02360{bottom:944.760306px;}
.y8_c02360{bottom:979.319226px;}
.y6_c02360{bottom:1012.439478px;}
.y5_c02360{bottom:1030.440054px;}
.y2_c02360{bottom:1063.560306px;}
.y4_c02360{bottom:1079.759874px;}
.y1_c02360{bottom:1097.760450px;}
.yf_c02360{bottom:1134.840450px;}
.h3_c02360{height:32.530781px;}
.h1_c02360{height:41.696016px;}
.h2_c02360{height:41.812031px;}
.h4_c02360{height:54.654737px;}
.h0_c02360{height:1263.000000px;}
.w1_c02360{width:892.500000px;}
.w0_c02360{width:892.830000px;}
.x0_c02360{left:0.000000px;}
.xe_c02360{left:117.000000px;}
.x8_c02360{left:440.999856px;}
.x4_c02360{left:445.680576px;}
.xc_c02360{left:451.080000px;}
.x7_c02360{left:455.399604px;}
.x5_c02360{left:461.880144px;}
.x1_c02360{left:463.320000px;}
.xa_c02360{left:483.480360px;}
.x9_c02360{left:492.119496px;}
.x6_c02360{left:493.200576px;}
.xd_c02360{left:506.880360px;}
.x3_c02360{left:511.919892px;}
.x2_c02360{left:526.679604px;}
.xb_c02360{left:569.880036px;}
@media print{
.v0_c02360{vertical-align:0.000000pt;}
.v1_c02360{vertical-align:1.279488pt;}
.lse_c02360{letter-spacing:-0.705408pt;}
.lsb_c02360{letter-spacing:-0.688512pt;}
.ls11_c02360{letter-spacing:-0.654720pt;}
.ls8_c02360{letter-spacing:-0.544896pt;}
.lsa_c02360{letter-spacing:-0.511104pt;}
.ls12_c02360{letter-spacing:-0.240768pt;}
.lsf_c02360{letter-spacing:-0.232320pt;}
.ls7_c02360{letter-spacing:-0.215424pt;}
.ls4_c02360{letter-spacing:-0.105600pt;}
.ls15_c02360{letter-spacing:0.000000pt;}
.ls1_c02360{letter-spacing:0.005376pt;}
.ls6_c02360{letter-spacing:0.114048pt;}
.lsd_c02360{letter-spacing:0.451968pt;}
.ls14_c02360{letter-spacing:0.456960pt;}
.ls10_c02360{letter-spacing:0.477312pt;}
.lsc_c02360{letter-spacing:0.515328pt;}
.ls13_c02360{letter-spacing:0.528000pt;}
.ls9_c02360{letter-spacing:0.532224pt;}
.ls2_c02360{letter-spacing:0.544896pt;}
.ls0_c02360{letter-spacing:0.578688pt;}
.ls5_c02360{letter-spacing:0.637824pt;}
.ls3_c02360{letter-spacing:0.642048pt;}
.wsd_c02360{word-spacing:-13.445376pt;}
.wsb_c02360{word-spacing:-11.088000pt;}
.ws7_c02360{word-spacing:-11.075328pt;}
.ws4_c02360{word-spacing:-10.344576pt;}
.ws2_c02360{word-spacing:-10.015104pt;}
.ws6_c02360{word-spacing:-9.871488pt;}
.ws17_c02360{word-spacing:-1.919232pt;}
.ws11_c02360{word-spacing:-0.899712pt;}
.wsf_c02360{word-spacing:-0.865920pt;}
.ws12_c02360{word-spacing:-0.105600pt;}
.ws14_c02360{word-spacing:-0.088704pt;}
.ws15_c02360{word-spacing:-0.080256pt;}
.ws16_c02360{word-spacing:-0.076032pt;}
.ws10_c02360{word-spacing:0.000000pt;}
.ws13_c02360{word-spacing:0.384384pt;}
.wsa_c02360{word-spacing:5.892480pt;}
.wsc_c02360{word-spacing:29.600256pt;}
.ws9_c02360{word-spacing:30.966144pt;}
.wse_c02360{word-spacing:32.127744pt;}
.ws1_c02360{word-spacing:33.563904pt;}
.ws0_c02360{word-spacing:33.796224pt;}
.ws3_c02360{word-spacing:34.860672pt;}
.ws5_c02360{word-spacing:35.468928pt;}
.ws8_c02360{word-spacing:37.357056pt;}
._0_c02360{margin-left:-1.731840pt;}
._2_c02360{width:1.317888pt;}
._4_c02360{width:2.935680pt;}
._6_c02360{width:17.761920pt;}
._7_c02360{width:20.845440pt;}
._5_c02360{width:21.947904pt;}
._1_c02360{width:44.668800pt;}
._3_c02360{width:45.805056pt;}
.fs0_c02360{font-size:42.240000pt;}
.fs1_c02360{font-size:53.760000pt;}
.y0_c02360{bottom:0.000000pt;}
.y1b_c02360{bottom:117.225499pt;}
.y1a_c02360{bottom:130.665211pt;}
.y1d_c02360{bottom:165.866875pt;}
.y1c_c02360{bottom:174.507067pt;}
.y19_c02360{bottom:245.225371pt;}
.y18_c02360{bottom:317.225563pt;}
.y16_c02360{bottom:361.386427pt;}
.y12_c02360{bottom:377.386939pt;}
.y17_c02360{bottom:407.786011pt;}
.y15_c02360{bottom:437.226235pt;}
.y14_c02360{bottom:453.226747pt;}
.y11_c02360{bottom:482.666971pt;}
.y13_c02360{bottom:497.386555pt;}
.y10_c02360{bottom:513.387067pt;}
.y1e_c02360{bottom:546.027067pt;}
.yc_c02360{bottom:579.945467pt;}
.yb_c02360{bottom:593.385179pt;}
.ye_c02360{bottom:628.586875pt;}
.yd_c02360{bottom:637.227067pt;}
.ya_c02360{bottom:707.945339pt;}
.y9_c02360{bottom:779.945531pt;}
.y7_c02360{bottom:823.786427pt;}
.y3_c02360{bottom:839.786939pt;}
.y8_c02360{bottom:870.505979pt;}
.y6_c02360{bottom:899.946203pt;}
.y5_c02360{bottom:915.946715pt;}
.y2_c02360{bottom:945.386939pt;}
.y4_c02360{bottom:959.786555pt;}
.y1_c02360{bottom:975.787067pt;}
.yf_c02360{bottom:1008.747067pt;}
.h3_c02360{height:28.916250pt;}
.h1_c02360{height:37.063125pt;}
.h2_c02360{height:37.166250pt;}
.h4_c02360{height:48.581988pt;}
.h0_c02360{height:1122.666667pt;}
.w1_c02360{width:793.333333pt;}
.w0_c02360{width:793.626667pt;}
.x0_c02360{left:0.000000pt;}
.xe_c02360{left:104.000000pt;}
.x8_c02360{left:391.999872pt;}
.x4_c02360{left:396.160512pt;}
.xc_c02360{left:400.960000pt;}
.x7_c02360{left:404.799648pt;}
.x5_c02360{left:410.560128pt;}
.x1_c02360{left:411.840000pt;}
.xa_c02360{left:429.760320pt;}
.x9_c02360{left:437.439552pt;}
.x6_c02360{left:438.400512pt;}
.xd_c02360{left:450.560320pt;}
.x3_c02360{left:455.039904pt;}
.x2_c02360{left:468.159648pt;}
.xb_c02360{left:506.560032pt;}
}





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

.ir_c02361:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02361{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02361;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02361{font-family:ff1_c02361;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02361;src:url('chunks/assets/font_633f9819ea868fce2d43d067.woff2')format("woff");}.ff2_c02361{font-family:ff2_c02361;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02361;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02361{font-family:ff3_c02361;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02361{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02361{vertical-align:0.000000px;}
.v1_c02361{vertical-align:1.439424px;}
.ls10_c02361{letter-spacing:-0.793584px;}
.ls15_c02361{letter-spacing:-0.774576px;}
.ls7_c02361{letter-spacing:-0.613008px;}
.ls9_c02361{letter-spacing:-0.574992px;}
.lse_c02361{letter-spacing:-0.375408px;}
.ls16_c02361{letter-spacing:-0.361152px;}
.ls11_c02361{letter-spacing:-0.275616px;}
.lsc_c02361{letter-spacing:-0.270864px;}
.lsd_c02361{letter-spacing:-0.261360px;}
.ls6_c02361{letter-spacing:-0.242352px;}
.ls3_c02361{letter-spacing:-0.118800px;}
.ls14_c02361{letter-spacing:0.000000px;}
.ls1_c02361{letter-spacing:0.006048px;}
.ls5_c02361{letter-spacing:0.128304px;}
.lsb_c02361{letter-spacing:0.508464px;}
.ls13_c02361{letter-spacing:0.514080px;}
.lsf_c02361{letter-spacing:0.536976px;}
.lsa_c02361{letter-spacing:0.579744px;}
.ls12_c02361{letter-spacing:0.594000px;}
.ls8_c02361{letter-spacing:0.598752px;}
.ls2_c02361{letter-spacing:0.613008px;}
.ls4_c02361{letter-spacing:0.717552px;}
.ls0_c02361{letter-spacing:0.722304px;}
.sc__c02361{text-shadow:none;}
.sc0_c02361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02361{-webkit-text-stroke:0px transparent;}
.sc0_c02361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02361{word-spacing:-15.126048px;}
.wsb_c02361{word-spacing:-12.474000px;}
.ws6_c02361{word-spacing:-12.459744px;}
.ws10_c02361{word-spacing:-12.416976px;}
.ws7_c02361{word-spacing:-12.388464px;}
.ws4_c02361{word-spacing:-11.637648px;}
.ws2_c02361{word-spacing:-11.266992px;}
.wse_c02361{word-spacing:-11.105424px;}
.ws19_c02361{word-spacing:-2.159136px;}
.ws14_c02361{word-spacing:-1.083456px;}
.ws11_c02361{word-spacing:-0.974160px;}
.ws13_c02361{word-spacing:-0.118800px;}
.ws16_c02361{word-spacing:-0.099792px;}
.ws15_c02361{word-spacing:-0.090288px;}
.ws18_c02361{word-spacing:-0.085536px;}
.ws12_c02361{word-spacing:0.000000px;}
.ws17_c02361{word-spacing:0.014256px;}
.ws1a_c02361{word-spacing:0.432432px;}
.wsa_c02361{word-spacing:1.468368px;}
.wsc_c02361{word-spacing:33.300288px;}
.ws9_c02361{word-spacing:34.836912px;}
.ws8_c02361{word-spacing:36.143712px;}
.ws1_c02361{word-spacing:37.759392px;}
.ws0_c02361{word-spacing:38.020752px;}
.ws3_c02361{word-spacing:39.218256px;}
.ws5_c02361{word-spacing:39.902544px;}
.wsf_c02361{word-spacing:42.026688px;}
._0_c02361{margin-left:-1.948320px;}
._2_c02361{width:1.482624px;}
._4_c02361{width:3.302640px;}
._6_c02361{width:14.336784px;}
._7_c02361{width:18.908208px;}
._5_c02361{width:20.885040px;}
._1_c02361{width:50.252400px;}
._3_c02361{width:51.530688px;}
.fc0_c02361{color:rgb(0,0,0);}
.fs0_c02361{font-size:47.520000px;}
.fs1_c02361{font-size:60.480000px;}
.y0_c02361{bottom:0.000000px;}
.y1a_c02361{bottom:146.998362px;}
.y1c_c02361{bottom:186.600234px;}
.y1b_c02361{bottom:196.320450px;}
.y19_c02361{bottom:275.878542px;}
.y18_c02361{bottom:356.878758px;}
.y16_c02361{bottom:406.559730px;}
.y12_c02361{bottom:424.560306px;}
.y17_c02361{bottom:458.759262px;}
.y15_c02361{bottom:491.879514px;}
.y14_c02361{bottom:509.880090px;}
.y11_c02361{bottom:543.000342px;}
.y13_c02361{bottom:559.559874px;}
.y10_c02361{bottom:577.560450px;}
.y1d_c02361{bottom:614.280450px;}
.yc_c02361{bottom:652.438650px;}
.yb_c02361{bottom:667.558326px;}
.ye_c02361{bottom:707.160234px;}
.yd_c02361{bottom:716.880450px;}
.ya_c02361{bottom:796.438506px;}
.y9_c02361{bottom:877.438722px;}
.y7_c02361{bottom:926.759730px;}
.y3_c02361{bottom:944.760306px;}
.y8_c02361{bottom:979.319226px;}
.y6_c02361{bottom:1012.439478px;}
.y5_c02361{bottom:1030.440054px;}
.y2_c02361{bottom:1063.560306px;}
.y4_c02361{bottom:1079.759874px;}
.y1_c02361{bottom:1097.760450px;}
.yf_c02361{bottom:1134.840450px;}
.h3_c02361{height:32.530781px;}
.h1_c02361{height:41.696016px;}
.h2_c02361{height:41.812031px;}
.h4_c02361{height:54.654737px;}
.h0_c02361{height:1263.000000px;}
.w1_c02361{width:892.500000px;}
.w0_c02361{width:892.830000px;}
.x0_c02361{left:0.000000px;}
.xe_c02361{left:117.000000px;}
.x8_c02361{left:440.999856px;}
.x4_c02361{left:445.680576px;}
.xc_c02361{left:451.080000px;}
.x7_c02361{left:455.399604px;}
.x5_c02361{left:461.880144px;}
.x1_c02361{left:463.320000px;}
.xa_c02361{left:483.480360px;}
.x9_c02361{left:492.119496px;}
.x6_c02361{left:493.200576px;}
.xd_c02361{left:506.880360px;}
.x3_c02361{left:511.919892px;}
.x2_c02361{left:526.679604px;}
.xb_c02361{left:569.880036px;}
@media print{
.v0_c02361{vertical-align:0.000000pt;}
.v1_c02361{vertical-align:1.279488pt;}
.ls10_c02361{letter-spacing:-0.705408pt;}
.ls15_c02361{letter-spacing:-0.688512pt;}
.ls7_c02361{letter-spacing:-0.544896pt;}
.ls9_c02361{letter-spacing:-0.511104pt;}
.lse_c02361{letter-spacing:-0.333696pt;}
.ls16_c02361{letter-spacing:-0.321024pt;}
.ls11_c02361{letter-spacing:-0.244992pt;}
.lsc_c02361{letter-spacing:-0.240768pt;}
.lsd_c02361{letter-spacing:-0.232320pt;}
.ls6_c02361{letter-spacing:-0.215424pt;}
.ls3_c02361{letter-spacing:-0.105600pt;}
.ls14_c02361{letter-spacing:0.000000pt;}
.ls1_c02361{letter-spacing:0.005376pt;}
.ls5_c02361{letter-spacing:0.114048pt;}
.lsb_c02361{letter-spacing:0.451968pt;}
.ls13_c02361{letter-spacing:0.456960pt;}
.lsf_c02361{letter-spacing:0.477312pt;}
.lsa_c02361{letter-spacing:0.515328pt;}
.ls12_c02361{letter-spacing:0.528000pt;}
.ls8_c02361{letter-spacing:0.532224pt;}
.ls2_c02361{letter-spacing:0.544896pt;}
.ls4_c02361{letter-spacing:0.637824pt;}
.ls0_c02361{letter-spacing:0.642048pt;}
.wsd_c02361{word-spacing:-13.445376pt;}
.wsb_c02361{word-spacing:-11.088000pt;}
.ws6_c02361{word-spacing:-11.075328pt;}
.ws10_c02361{word-spacing:-11.037312pt;}
.ws7_c02361{word-spacing:-11.011968pt;}
.ws4_c02361{word-spacing:-10.344576pt;}
.ws2_c02361{word-spacing:-10.015104pt;}
.wse_c02361{word-spacing:-9.871488pt;}
.ws19_c02361{word-spacing:-1.919232pt;}
.ws14_c02361{word-spacing:-0.963072pt;}
.ws11_c02361{word-spacing:-0.865920pt;}
.ws13_c02361{word-spacing:-0.105600pt;}
.ws16_c02361{word-spacing:-0.088704pt;}
.ws15_c02361{word-spacing:-0.080256pt;}
.ws18_c02361{word-spacing:-0.076032pt;}
.ws12_c02361{word-spacing:0.000000pt;}
.ws17_c02361{word-spacing:0.012672pt;}
.ws1a_c02361{word-spacing:0.384384pt;}
.wsa_c02361{word-spacing:1.305216pt;}
.wsc_c02361{word-spacing:29.600256pt;}
.ws9_c02361{word-spacing:30.966144pt;}
.ws8_c02361{word-spacing:32.127744pt;}
.ws1_c02361{word-spacing:33.563904pt;}
.ws0_c02361{word-spacing:33.796224pt;}
.ws3_c02361{word-spacing:34.860672pt;}
.ws5_c02361{word-spacing:35.468928pt;}
.wsf_c02361{word-spacing:37.357056pt;}
._0_c02361{margin-left:-1.731840pt;}
._2_c02361{width:1.317888pt;}
._4_c02361{width:2.935680pt;}
._6_c02361{width:12.743808pt;}
._7_c02361{width:16.807296pt;}
._5_c02361{width:18.564480pt;}
._1_c02361{width:44.668800pt;}
._3_c02361{width:45.805056pt;}
.fs0_c02361{font-size:42.240000pt;}
.fs1_c02361{font-size:53.760000pt;}
.y0_c02361{bottom:0.000000pt;}
.y1a_c02361{bottom:130.665211pt;}
.y1c_c02361{bottom:165.866875pt;}
.y1b_c02361{bottom:174.507067pt;}
.y19_c02361{bottom:245.225371pt;}
.y18_c02361{bottom:317.225563pt;}
.y16_c02361{bottom:361.386427pt;}
.y12_c02361{bottom:377.386939pt;}
.y17_c02361{bottom:407.786011pt;}
.y15_c02361{bottom:437.226235pt;}
.y14_c02361{bottom:453.226747pt;}
.y11_c02361{bottom:482.666971pt;}
.y13_c02361{bottom:497.386555pt;}
.y10_c02361{bottom:513.387067pt;}
.y1d_c02361{bottom:546.027067pt;}
.yc_c02361{bottom:579.945467pt;}
.yb_c02361{bottom:593.385179pt;}
.ye_c02361{bottom:628.586875pt;}
.yd_c02361{bottom:637.227067pt;}
.ya_c02361{bottom:707.945339pt;}
.y9_c02361{bottom:779.945531pt;}
.y7_c02361{bottom:823.786427pt;}
.y3_c02361{bottom:839.786939pt;}
.y8_c02361{bottom:870.505979pt;}
.y6_c02361{bottom:899.946203pt;}
.y5_c02361{bottom:915.946715pt;}
.y2_c02361{bottom:945.386939pt;}
.y4_c02361{bottom:959.786555pt;}
.y1_c02361{bottom:975.787067pt;}
.yf_c02361{bottom:1008.747067pt;}
.h3_c02361{height:28.916250pt;}
.h1_c02361{height:37.063125pt;}
.h2_c02361{height:37.166250pt;}
.h4_c02361{height:48.581988pt;}
.h0_c02361{height:1122.666667pt;}
.w1_c02361{width:793.333333pt;}
.w0_c02361{width:793.626667pt;}
.x0_c02361{left:0.000000pt;}
.xe_c02361{left:104.000000pt;}
.x8_c02361{left:391.999872pt;}
.x4_c02361{left:396.160512pt;}
.xc_c02361{left:400.960000pt;}
.x7_c02361{left:404.799648pt;}
.x5_c02361{left:410.560128pt;}
.x1_c02361{left:411.840000pt;}
.xa_c02361{left:429.760320pt;}
.x9_c02361{left:437.439552pt;}
.x6_c02361{left:438.400512pt;}
.xd_c02361{left:450.560320pt;}
.x3_c02361{left:455.039904pt;}
.x2_c02361{left:468.159648pt;}
.xb_c02361{left:506.560032pt;}
}





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

.ir_c02362:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02362{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02362;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02362{font-family:ff1_c02362;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02362;src:url('chunks/assets/font_8dfa844a3f9d057e4701de44.woff2')format("woff");}.ff2_c02362{font-family:ff2_c02362;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02362;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02362{font-family:ff3_c02362;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02362{vertical-align:0.000000px;}
.v1_c02362{vertical-align:1.439424px;}
.v2_c02362{vertical-align:33.121440px;}
.lse_c02362{letter-spacing:-0.793584px;}
.lsb_c02362{letter-spacing:-0.774576px;}
.ls11_c02362{letter-spacing:-0.736560px;}
.ls8_c02362{letter-spacing:-0.613008px;}
.lsa_c02362{letter-spacing:-0.574992px;}
.ls18_c02362{letter-spacing:-0.389664px;}
.ls16_c02362{letter-spacing:-0.375408px;}
.ls17_c02362{letter-spacing:-0.275616px;}
.ls12_c02362{letter-spacing:-0.270864px;}
.lsf_c02362{letter-spacing:-0.261360px;}
.ls7_c02362{letter-spacing:-0.242352px;}
.ls4_c02362{letter-spacing:-0.118800px;}
.ls15_c02362{letter-spacing:0.000000px;}
.ls1_c02362{letter-spacing:0.006048px;}
.ls6_c02362{letter-spacing:0.128304px;}
.lsd_c02362{letter-spacing:0.508464px;}
.ls14_c02362{letter-spacing:0.514080px;}
.ls10_c02362{letter-spacing:0.536976px;}
.lsc_c02362{letter-spacing:0.579744px;}
.ls13_c02362{letter-spacing:0.594000px;}
.ls9_c02362{letter-spacing:0.598752px;}
.ls3_c02362{letter-spacing:0.613008px;}
.ls0_c02362{letter-spacing:0.651024px;}
.ls5_c02362{letter-spacing:0.717552px;}
.ls2_c02362{letter-spacing:0.722304px;}
.sc__c02362{text-shadow:none;}
.sc0_c02362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02362{-webkit-text-stroke:0px transparent;}
.sc0_c02362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02362{word-spacing:-15.126048px;}
.wsb_c02362{word-spacing:-12.474000px;}
.ws7_c02362{word-spacing:-12.459744px;}
.wse_c02362{word-spacing:-12.388464px;}
.ws4_c02362{word-spacing:-11.637648px;}
.ws2_c02362{word-spacing:-11.266992px;}
.ws6_c02362{word-spacing:-11.105424px;}
.ws1a_c02362{word-spacing:-2.159136px;}
.ws1b_c02362{word-spacing:-1.083456px;}
.ws14_c02362{word-spacing:-1.012176px;}
.ws12_c02362{word-spacing:-0.974160px;}
.ws15_c02362{word-spacing:-0.118800px;}
.ws17_c02362{word-spacing:-0.099792px;}
.ws18_c02362{word-spacing:-0.090288px;}
.ws19_c02362{word-spacing:-0.085536px;}
.ws13_c02362{word-spacing:0.000000px;}
.ws1c_c02362{word-spacing:0.014256px;}
.ws1d_c02362{word-spacing:0.028512px;}
.ws16_c02362{word-spacing:0.432432px;}
.ws10_c02362{word-spacing:1.468368px;}
.wsa_c02362{word-spacing:6.629040px;}
.ws11_c02362{word-spacing:30.298752px;}
.wsc_c02362{word-spacing:33.300288px;}
.ws9_c02362{word-spacing:34.836912px;}
.wsf_c02362{word-spacing:36.143712px;}
.ws1_c02362{word-spacing:37.759392px;}
.ws0_c02362{word-spacing:38.020752px;}
.ws3_c02362{word-spacing:39.218256px;}
.ws5_c02362{word-spacing:39.902544px;}
.ws8_c02362{word-spacing:42.026688px;}
._0_c02362{margin-left:-1.948320px;}
._2_c02362{width:1.482624px;}
._4_c02362{width:3.302640px;}
._8_c02362{width:15.239664px;}
._9_c02362{width:18.005328px;}
._6_c02362{width:19.982160px;}
._7_c02362{width:23.451120px;}
._5_c02362{width:24.691392px;}
._1_c02362{width:50.252400px;}
._3_c02362{width:51.530688px;}
.fc0_c02362{color:rgb(0,0,0);}
.fs0_c02362{font-size:47.520000px;}
.fs1_c02362{font-size:60.480000px;}
.y0_c02362{bottom:0.000000px;}
.y1b_c02362{bottom:131.878686px;}
.y1a_c02362{bottom:146.998362px;}
.y1d_c02362{bottom:186.600234px;}
.y1c_c02362{bottom:196.320450px;}
.y19_c02362{bottom:275.878542px;}
.y18_c02362{bottom:356.878758px;}
.y16_c02362{bottom:406.559730px;}
.y12_c02362{bottom:424.560306px;}
.y17_c02362{bottom:458.759262px;}
.y15_c02362{bottom:491.879514px;}
.y14_c02362{bottom:509.880090px;}
.y11_c02362{bottom:543.000342px;}
.y13_c02362{bottom:559.559874px;}
.y10_c02362{bottom:577.560450px;}
.y1e_c02362{bottom:614.280450px;}
.yc_c02362{bottom:652.438650px;}
.yb_c02362{bottom:667.558326px;}
.ye_c02362{bottom:707.160234px;}
.yd_c02362{bottom:716.880450px;}
.ya_c02362{bottom:796.438506px;}
.y9_c02362{bottom:877.438722px;}
.y7_c02362{bottom:926.759730px;}
.y3_c02362{bottom:944.760306px;}
.y8_c02362{bottom:979.319226px;}
.y6_c02362{bottom:1012.439478px;}
.y5_c02362{bottom:1030.440054px;}
.y2_c02362{bottom:1063.560306px;}
.y4_c02362{bottom:1079.759874px;}
.y1_c02362{bottom:1097.760450px;}
.yf_c02362{bottom:1134.840450px;}
.h3_c02362{height:32.530781px;}
.h1_c02362{height:41.696016px;}
.h2_c02362{height:41.812031px;}
.h4_c02362{height:54.654737px;}
.h5_c02362{height:74.817456px;}
.h0_c02362{height:1263.000000px;}
.w1_c02362{width:892.500000px;}
.w0_c02362{width:892.830000px;}
.x0_c02362{left:0.000000px;}
.xe_c02362{left:117.000000px;}
.x8_c02362{left:440.999856px;}
.x4_c02362{left:445.680576px;}
.xc_c02362{left:451.080000px;}
.x7_c02362{left:455.399604px;}
.x5_c02362{left:461.880144px;}
.x1_c02362{left:463.320000px;}
.xa_c02362{left:483.480360px;}
.x9_c02362{left:492.119496px;}
.x6_c02362{left:493.200576px;}
.xd_c02362{left:506.880360px;}
.x3_c02362{left:511.919892px;}
.x2_c02362{left:526.679604px;}
.xb_c02362{left:569.880036px;}
@media print{
.v0_c02362{vertical-align:0.000000pt;}
.v1_c02362{vertical-align:1.279488pt;}
.v2_c02362{vertical-align:29.441280pt;}
.lse_c02362{letter-spacing:-0.705408pt;}
.lsb_c02362{letter-spacing:-0.688512pt;}
.ls11_c02362{letter-spacing:-0.654720pt;}
.ls8_c02362{letter-spacing:-0.544896pt;}
.lsa_c02362{letter-spacing:-0.511104pt;}
.ls18_c02362{letter-spacing:-0.346368pt;}
.ls16_c02362{letter-spacing:-0.333696pt;}
.ls17_c02362{letter-spacing:-0.244992pt;}
.ls12_c02362{letter-spacing:-0.240768pt;}
.lsf_c02362{letter-spacing:-0.232320pt;}
.ls7_c02362{letter-spacing:-0.215424pt;}
.ls4_c02362{letter-spacing:-0.105600pt;}
.ls15_c02362{letter-spacing:0.000000pt;}
.ls1_c02362{letter-spacing:0.005376pt;}
.ls6_c02362{letter-spacing:0.114048pt;}
.lsd_c02362{letter-spacing:0.451968pt;}
.ls14_c02362{letter-spacing:0.456960pt;}
.ls10_c02362{letter-spacing:0.477312pt;}
.lsc_c02362{letter-spacing:0.515328pt;}
.ls13_c02362{letter-spacing:0.528000pt;}
.ls9_c02362{letter-spacing:0.532224pt;}
.ls3_c02362{letter-spacing:0.544896pt;}
.ls0_c02362{letter-spacing:0.578688pt;}
.ls5_c02362{letter-spacing:0.637824pt;}
.ls2_c02362{letter-spacing:0.642048pt;}
.wsd_c02362{word-spacing:-13.445376pt;}
.wsb_c02362{word-spacing:-11.088000pt;}
.ws7_c02362{word-spacing:-11.075328pt;}
.wse_c02362{word-spacing:-11.011968pt;}
.ws4_c02362{word-spacing:-10.344576pt;}
.ws2_c02362{word-spacing:-10.015104pt;}
.ws6_c02362{word-spacing:-9.871488pt;}
.ws1a_c02362{word-spacing:-1.919232pt;}
.ws1b_c02362{word-spacing:-0.963072pt;}
.ws14_c02362{word-spacing:-0.899712pt;}
.ws12_c02362{word-spacing:-0.865920pt;}
.ws15_c02362{word-spacing:-0.105600pt;}
.ws17_c02362{word-spacing:-0.088704pt;}
.ws18_c02362{word-spacing:-0.080256pt;}
.ws19_c02362{word-spacing:-0.076032pt;}
.ws13_c02362{word-spacing:0.000000pt;}
.ws1c_c02362{word-spacing:0.012672pt;}
.ws1d_c02362{word-spacing:0.025344pt;}
.ws16_c02362{word-spacing:0.384384pt;}
.ws10_c02362{word-spacing:1.305216pt;}
.wsa_c02362{word-spacing:5.892480pt;}
.ws11_c02362{word-spacing:26.932224pt;}
.wsc_c02362{word-spacing:29.600256pt;}
.ws9_c02362{word-spacing:30.966144pt;}
.wsf_c02362{word-spacing:32.127744pt;}
.ws1_c02362{word-spacing:33.563904pt;}
.ws0_c02362{word-spacing:33.796224pt;}
.ws3_c02362{word-spacing:34.860672pt;}
.ws5_c02362{word-spacing:35.468928pt;}
.ws8_c02362{word-spacing:37.357056pt;}
._0_c02362{margin-left:-1.731840pt;}
._2_c02362{width:1.317888pt;}
._4_c02362{width:2.935680pt;}
._8_c02362{width:13.546368pt;}
._9_c02362{width:16.004736pt;}
._6_c02362{width:17.761920pt;}
._7_c02362{width:20.845440pt;}
._5_c02362{width:21.947904pt;}
._1_c02362{width:44.668800pt;}
._3_c02362{width:45.805056pt;}
.fs0_c02362{font-size:42.240000pt;}
.fs1_c02362{font-size:53.760000pt;}
.y0_c02362{bottom:0.000000pt;}
.y1b_c02362{bottom:117.225499pt;}
.y1a_c02362{bottom:130.665211pt;}
.y1d_c02362{bottom:165.866875pt;}
.y1c_c02362{bottom:174.507067pt;}
.y19_c02362{bottom:245.225371pt;}
.y18_c02362{bottom:317.225563pt;}
.y16_c02362{bottom:361.386427pt;}
.y12_c02362{bottom:377.386939pt;}
.y17_c02362{bottom:407.786011pt;}
.y15_c02362{bottom:437.226235pt;}
.y14_c02362{bottom:453.226747pt;}
.y11_c02362{bottom:482.666971pt;}
.y13_c02362{bottom:497.386555pt;}
.y10_c02362{bottom:513.387067pt;}
.y1e_c02362{bottom:546.027067pt;}
.yc_c02362{bottom:579.945467pt;}
.yb_c02362{bottom:593.385179pt;}
.ye_c02362{bottom:628.586875pt;}
.yd_c02362{bottom:637.227067pt;}
.ya_c02362{bottom:707.945339pt;}
.y9_c02362{bottom:779.945531pt;}
.y7_c02362{bottom:823.786427pt;}
.y3_c02362{bottom:839.786939pt;}
.y8_c02362{bottom:870.505979pt;}
.y6_c02362{bottom:899.946203pt;}
.y5_c02362{bottom:915.946715pt;}
.y2_c02362{bottom:945.386939pt;}
.y4_c02362{bottom:959.786555pt;}
.y1_c02362{bottom:975.787067pt;}
.yf_c02362{bottom:1008.747067pt;}
.h3_c02362{height:28.916250pt;}
.h1_c02362{height:37.063125pt;}
.h2_c02362{height:37.166250pt;}
.h4_c02362{height:48.581988pt;}
.h5_c02362{height:66.504405pt;}
.h0_c02362{height:1122.666667pt;}
.w1_c02362{width:793.333333pt;}
.w0_c02362{width:793.626667pt;}
.x0_c02362{left:0.000000pt;}
.xe_c02362{left:104.000000pt;}
.x8_c02362{left:391.999872pt;}
.x4_c02362{left:396.160512pt;}
.xc_c02362{left:400.960000pt;}
.x7_c02362{left:404.799648pt;}
.x5_c02362{left:410.560128pt;}
.x1_c02362{left:411.840000pt;}
.xa_c02362{left:429.760320pt;}
.x9_c02362{left:437.439552pt;}
.x6_c02362{left:438.400512pt;}
.xd_c02362{left:450.560320pt;}
.x3_c02362{left:455.039904pt;}
.x2_c02362{left:468.159648pt;}
.xb_c02362{left:506.560032pt;}
}





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

.ir_c02363:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02363{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02363;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02363{font-family:ff1_c02363;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02363;src:url('chunks/assets/font_984c7101045f000e315b868a.woff2')format("woff");}.ff2_c02363{font-family:ff2_c02363;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02363;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02363{font-family:ff3_c02363;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02363{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02363{vertical-align:0.000000px;}
.v1_c02363{vertical-align:1.439424px;}
.ls14_c02363{letter-spacing:-0.793584px;}
.ls13_c02363{letter-spacing:-0.774576px;}
.ls15_c02363{letter-spacing:-0.736560px;}
.ls8_c02363{letter-spacing:-0.613008px;}
.lsa_c02363{letter-spacing:-0.574992px;}
.lsf_c02363{letter-spacing:-0.275616px;}
.ls16_c02363{letter-spacing:-0.270864px;}
.lsd_c02363{letter-spacing:-0.261360px;}
.ls7_c02363{letter-spacing:-0.242352px;}
.ls4_c02363{letter-spacing:-0.118800px;}
.ls12_c02363{letter-spacing:0.000000px;}
.ls1_c02363{letter-spacing:0.006048px;}
.ls6_c02363{letter-spacing:0.128304px;}
.lsc_c02363{letter-spacing:0.508464px;}
.ls11_c02363{letter-spacing:0.514080px;}
.lse_c02363{letter-spacing:0.536976px;}
.lsb_c02363{letter-spacing:0.579744px;}
.ls10_c02363{letter-spacing:0.594000px;}
.ls9_c02363{letter-spacing:0.598752px;}
.ls3_c02363{letter-spacing:0.613008px;}
.ls2_c02363{letter-spacing:0.651024px;}
.ls5_c02363{letter-spacing:0.717552px;}
.ls0_c02363{letter-spacing:0.722304px;}
.sc__c02363{text-shadow:none;}
.sc0_c02363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02363{-webkit-text-stroke:0px transparent;}
.sc0_c02363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02363{word-spacing:-15.126048px;}
.wsa_c02363{word-spacing:-12.474000px;}
.ws6_c02363{word-spacing:-12.459744px;}
.ws9_c02363{word-spacing:-12.416976px;}
.ws7_c02363{word-spacing:-12.388464px;}
.ws4_c02363{word-spacing:-11.637648px;}
.ws2_c02363{word-spacing:-11.266992px;}
.wsd_c02363{word-spacing:-11.105424px;}
.ws17_c02363{word-spacing:-2.159136px;}
.ws14_c02363{word-spacing:-1.083456px;}
.ws18_c02363{word-spacing:-1.012176px;}
.ws11_c02363{word-spacing:-0.974160px;}
.ws13_c02363{word-spacing:-0.118800px;}
.ws15_c02363{word-spacing:-0.099792px;}
.ws1a_c02363{word-spacing:-0.090288px;}
.ws16_c02363{word-spacing:-0.085536px;}
.ws12_c02363{word-spacing:0.000000px;}
.ws19_c02363{word-spacing:0.432432px;}
.ws10_c02363{word-spacing:6.629040px;}
.wsb_c02363{word-spacing:33.300288px;}
.wsf_c02363{word-spacing:34.836912px;}
.ws8_c02363{word-spacing:36.143712px;}
.ws1_c02363{word-spacing:37.759392px;}
.ws0_c02363{word-spacing:38.020752px;}
.ws3_c02363{word-spacing:39.218256px;}
.ws5_c02363{word-spacing:39.902544px;}
.wse_c02363{word-spacing:42.026688px;}
._0_c02363{margin-left:-1.948320px;}
._2_c02363{width:1.482624px;}
._4_c02363{width:3.302640px;}
._6_c02363{width:19.982160px;}
._7_c02363{width:23.451120px;}
._5_c02363{width:24.691392px;}
._1_c02363{width:50.252400px;}
._3_c02363{width:51.530688px;}
.fc0_c02363{color:rgb(0,0,0);}
.fs0_c02363{font-size:47.520000px;}
.fs1_c02363{font-size:60.480000px;}
.y0_c02363{bottom:0.000000px;}
.y1a_c02363{bottom:131.878686px;}
.y19_c02363{bottom:146.998362px;}
.y1c_c02363{bottom:186.600234px;}
.y1b_c02363{bottom:196.320450px;}
.y18_c02363{bottom:275.878542px;}
.y17_c02363{bottom:356.878758px;}
.y15_c02363{bottom:406.559730px;}
.y11_c02363{bottom:424.560306px;}
.y16_c02363{bottom:458.759262px;}
.y14_c02363{bottom:491.879514px;}
.y13_c02363{bottom:509.880090px;}
.y10_c02363{bottom:543.000342px;}
.y12_c02363{bottom:559.559874px;}
.yf_c02363{bottom:577.560450px;}
.y1d_c02363{bottom:614.280450px;}
.yb_c02363{bottom:667.558326px;}
.yd_c02363{bottom:707.160234px;}
.yc_c02363{bottom:716.880450px;}
.ya_c02363{bottom:796.438506px;}
.y9_c02363{bottom:877.438722px;}
.y7_c02363{bottom:926.759730px;}
.y3_c02363{bottom:944.760306px;}
.y8_c02363{bottom:979.319226px;}
.y6_c02363{bottom:1012.439478px;}
.y5_c02363{bottom:1030.440054px;}
.y2_c02363{bottom:1063.560306px;}
.y4_c02363{bottom:1079.759874px;}
.y1_c02363{bottom:1097.760450px;}
.ye_c02363{bottom:1134.840450px;}
.h3_c02363{height:32.530781px;}
.h1_c02363{height:41.696016px;}
.h2_c02363{height:41.812031px;}
.h4_c02363{height:54.654737px;}
.h0_c02363{height:1263.000000px;}
.w1_c02363{width:892.500000px;}
.w0_c02363{width:892.830000px;}
.x0_c02363{left:0.000000px;}
.xd_c02363{left:117.000000px;}
.x8_c02363{left:440.999856px;}
.x4_c02363{left:445.680576px;}
.xb_c02363{left:451.080000px;}
.x7_c02363{left:455.399604px;}
.x5_c02363{left:461.880144px;}
.x1_c02363{left:463.320000px;}
.xa_c02363{left:483.480360px;}
.x9_c02363{left:492.119496px;}
.x6_c02363{left:493.200576px;}
.xc_c02363{left:506.880360px;}
.x3_c02363{left:511.919892px;}
.x2_c02363{left:526.679604px;}
.xe_c02363{left:569.880036px;}
@media print{
.v0_c02363{vertical-align:0.000000pt;}
.v1_c02363{vertical-align:1.279488pt;}
.ls14_c02363{letter-spacing:-0.705408pt;}
.ls13_c02363{letter-spacing:-0.688512pt;}
.ls15_c02363{letter-spacing:-0.654720pt;}
.ls8_c02363{letter-spacing:-0.544896pt;}
.lsa_c02363{letter-spacing:-0.511104pt;}
.lsf_c02363{letter-spacing:-0.244992pt;}
.ls16_c02363{letter-spacing:-0.240768pt;}
.lsd_c02363{letter-spacing:-0.232320pt;}
.ls7_c02363{letter-spacing:-0.215424pt;}
.ls4_c02363{letter-spacing:-0.105600pt;}
.ls12_c02363{letter-spacing:0.000000pt;}
.ls1_c02363{letter-spacing:0.005376pt;}
.ls6_c02363{letter-spacing:0.114048pt;}
.lsc_c02363{letter-spacing:0.451968pt;}
.ls11_c02363{letter-spacing:0.456960pt;}
.lse_c02363{letter-spacing:0.477312pt;}
.lsb_c02363{letter-spacing:0.515328pt;}
.ls10_c02363{letter-spacing:0.528000pt;}
.ls9_c02363{letter-spacing:0.532224pt;}
.ls3_c02363{letter-spacing:0.544896pt;}
.ls2_c02363{letter-spacing:0.578688pt;}
.ls5_c02363{letter-spacing:0.637824pt;}
.ls0_c02363{letter-spacing:0.642048pt;}
.wsc_c02363{word-spacing:-13.445376pt;}
.wsa_c02363{word-spacing:-11.088000pt;}
.ws6_c02363{word-spacing:-11.075328pt;}
.ws9_c02363{word-spacing:-11.037312pt;}
.ws7_c02363{word-spacing:-11.011968pt;}
.ws4_c02363{word-spacing:-10.344576pt;}
.ws2_c02363{word-spacing:-10.015104pt;}
.wsd_c02363{word-spacing:-9.871488pt;}
.ws17_c02363{word-spacing:-1.919232pt;}
.ws14_c02363{word-spacing:-0.963072pt;}
.ws18_c02363{word-spacing:-0.899712pt;}
.ws11_c02363{word-spacing:-0.865920pt;}
.ws13_c02363{word-spacing:-0.105600pt;}
.ws15_c02363{word-spacing:-0.088704pt;}
.ws1a_c02363{word-spacing:-0.080256pt;}
.ws16_c02363{word-spacing:-0.076032pt;}
.ws12_c02363{word-spacing:0.000000pt;}
.ws19_c02363{word-spacing:0.384384pt;}
.ws10_c02363{word-spacing:5.892480pt;}
.wsb_c02363{word-spacing:29.600256pt;}
.wsf_c02363{word-spacing:30.966144pt;}
.ws8_c02363{word-spacing:32.127744pt;}
.ws1_c02363{word-spacing:33.563904pt;}
.ws0_c02363{word-spacing:33.796224pt;}
.ws3_c02363{word-spacing:34.860672pt;}
.ws5_c02363{word-spacing:35.468928pt;}
.wse_c02363{word-spacing:37.357056pt;}
._0_c02363{margin-left:-1.731840pt;}
._2_c02363{width:1.317888pt;}
._4_c02363{width:2.935680pt;}
._6_c02363{width:17.761920pt;}
._7_c02363{width:20.845440pt;}
._5_c02363{width:21.947904pt;}
._1_c02363{width:44.668800pt;}
._3_c02363{width:45.805056pt;}
.fs0_c02363{font-size:42.240000pt;}
.fs1_c02363{font-size:53.760000pt;}
.y0_c02363{bottom:0.000000pt;}
.y1a_c02363{bottom:117.225499pt;}
.y19_c02363{bottom:130.665211pt;}
.y1c_c02363{bottom:165.866875pt;}
.y1b_c02363{bottom:174.507067pt;}
.y18_c02363{bottom:245.225371pt;}
.y17_c02363{bottom:317.225563pt;}
.y15_c02363{bottom:361.386427pt;}
.y11_c02363{bottom:377.386939pt;}
.y16_c02363{bottom:407.786011pt;}
.y14_c02363{bottom:437.226235pt;}
.y13_c02363{bottom:453.226747pt;}
.y10_c02363{bottom:482.666971pt;}
.y12_c02363{bottom:497.386555pt;}
.yf_c02363{bottom:513.387067pt;}
.y1d_c02363{bottom:546.027067pt;}
.yb_c02363{bottom:593.385179pt;}
.yd_c02363{bottom:628.586875pt;}
.yc_c02363{bottom:637.227067pt;}
.ya_c02363{bottom:707.945339pt;}
.y9_c02363{bottom:779.945531pt;}
.y7_c02363{bottom:823.786427pt;}
.y3_c02363{bottom:839.786939pt;}
.y8_c02363{bottom:870.505979pt;}
.y6_c02363{bottom:899.946203pt;}
.y5_c02363{bottom:915.946715pt;}
.y2_c02363{bottom:945.386939pt;}
.y4_c02363{bottom:959.786555pt;}
.y1_c02363{bottom:975.787067pt;}
.ye_c02363{bottom:1008.747067pt;}
.h3_c02363{height:28.916250pt;}
.h1_c02363{height:37.063125pt;}
.h2_c02363{height:37.166250pt;}
.h4_c02363{height:48.581988pt;}
.h0_c02363{height:1122.666667pt;}
.w1_c02363{width:793.333333pt;}
.w0_c02363{width:793.626667pt;}
.x0_c02363{left:0.000000pt;}
.xd_c02363{left:104.000000pt;}
.x8_c02363{left:391.999872pt;}
.x4_c02363{left:396.160512pt;}
.xb_c02363{left:400.960000pt;}
.x7_c02363{left:404.799648pt;}
.x5_c02363{left:410.560128pt;}
.x1_c02363{left:411.840000pt;}
.xa_c02363{left:429.760320pt;}
.x9_c02363{left:437.439552pt;}
.x6_c02363{left:438.400512pt;}
.xc_c02363{left:450.560320pt;}
.x3_c02363{left:455.039904pt;}
.x2_c02363{left:468.159648pt;}
.xe_c02363{left:506.560032pt;}
}





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

.ir_c02364:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02364{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02364;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02364{font-family:ff1_c02364;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02364;src:url('chunks/assets/font_61ffad9d5f8f50d84863b1ed.woff2')format("woff");}.ff2_c02364{font-family:ff2_c02364;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02364;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02364{font-family:ff3_c02364;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02364{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02364{vertical-align:0.000000px;}
.v1_c02364{vertical-align:1.439424px;}
.lsd_c02364{letter-spacing:-0.793584px;}
.lsa_c02364{letter-spacing:-0.774576px;}
.ls11_c02364{letter-spacing:-0.736560px;}
.ls7_c02364{letter-spacing:-0.613008px;}
.ls9_c02364{letter-spacing:-0.574992px;}
.ls16_c02364{letter-spacing:-0.275616px;}
.ls12_c02364{letter-spacing:-0.270864px;}
.lsf_c02364{letter-spacing:-0.261360px;}
.ls6_c02364{letter-spacing:-0.242352px;}
.ls3_c02364{letter-spacing:-0.118800px;}
.ls15_c02364{letter-spacing:0.000000px;}
.ls0_c02364{letter-spacing:0.006048px;}
.ls5_c02364{letter-spacing:0.128304px;}
.lsc_c02364{letter-spacing:0.508464px;}
.ls14_c02364{letter-spacing:0.514080px;}
.ls10_c02364{letter-spacing:0.536976px;}
.lsb_c02364{letter-spacing:0.579744px;}
.ls13_c02364{letter-spacing:0.594000px;}
.ls8_c02364{letter-spacing:0.598752px;}
.ls1_c02364{letter-spacing:0.613008px;}
.lse_c02364{letter-spacing:0.651024px;}
.ls4_c02364{letter-spacing:0.717552px;}
.ls2_c02364{letter-spacing:0.722304px;}
.sc__c02364{text-shadow:none;}
.sc0_c02364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02364{-webkit-text-stroke:0px transparent;}
.sc0_c02364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02364{word-spacing:-15.126048px;}
.wsc_c02364{word-spacing:-12.474000px;}
.ws7_c02364{word-spacing:-12.459744px;}
.ws4_c02364{word-spacing:-11.637648px;}
.ws2_c02364{word-spacing:-11.266992px;}
.ws6_c02364{word-spacing:-11.105424px;}
.ws18_c02364{word-spacing:-2.159136px;}
.ws14_c02364{word-spacing:-1.012176px;}
.ws10_c02364{word-spacing:-0.974160px;}
.ws12_c02364{word-spacing:-0.118800px;}
.ws15_c02364{word-spacing:-0.099792px;}
.ws16_c02364{word-spacing:-0.090288px;}
.ws17_c02364{word-spacing:-0.085536px;}
.ws11_c02364{word-spacing:0.000000px;}
.ws13_c02364{word-spacing:0.432432px;}
.wsf_c02364{word-spacing:1.468368px;}
.wsb_c02364{word-spacing:6.629040px;}
.wsd_c02364{word-spacing:33.300288px;}
.wsa_c02364{word-spacing:34.836912px;}
.ws9_c02364{word-spacing:36.143712px;}
.ws1_c02364{word-spacing:37.759392px;}
.ws0_c02364{word-spacing:38.020752px;}
.ws3_c02364{word-spacing:39.218256px;}
.ws5_c02364{word-spacing:39.902544px;}
.ws8_c02364{word-spacing:42.026688px;}
._0_c02364{margin-left:-1.948320px;}
._2_c02364{width:1.482624px;}
._4_c02364{width:3.302640px;}
._8_c02364{width:15.239664px;}
._9_c02364{width:18.005328px;}
._6_c02364{width:19.982160px;}
._7_c02364{width:23.451120px;}
._5_c02364{width:24.691392px;}
._1_c02364{width:50.252400px;}
._3_c02364{width:51.530688px;}
.fc0_c02364{color:rgb(0,0,0);}
.fs0_c02364{font-size:47.520000px;}
.fs1_c02364{font-size:60.480000px;}
.y0_c02364{bottom:0.000000px;}
.y1b_c02364{bottom:131.878686px;}
.y1a_c02364{bottom:146.998362px;}
.y1d_c02364{bottom:186.600234px;}
.y1c_c02364{bottom:196.320450px;}
.y19_c02364{bottom:275.878542px;}
.y18_c02364{bottom:356.878758px;}
.y16_c02364{bottom:406.559730px;}
.y12_c02364{bottom:424.560306px;}
.y17_c02364{bottom:458.759262px;}
.y15_c02364{bottom:491.879514px;}
.y14_c02364{bottom:509.880090px;}
.y11_c02364{bottom:543.000342px;}
.y13_c02364{bottom:559.559874px;}
.y10_c02364{bottom:577.560450px;}
.y1e_c02364{bottom:614.280450px;}
.yc_c02364{bottom:652.438650px;}
.yb_c02364{bottom:667.558326px;}
.ye_c02364{bottom:707.160234px;}
.yd_c02364{bottom:716.880450px;}
.ya_c02364{bottom:796.438506px;}
.y9_c02364{bottom:877.438722px;}
.y7_c02364{bottom:926.759730px;}
.y3_c02364{bottom:944.760306px;}
.y8_c02364{bottom:979.319226px;}
.y6_c02364{bottom:1012.439478px;}
.y5_c02364{bottom:1030.440054px;}
.y2_c02364{bottom:1063.560306px;}
.y4_c02364{bottom:1079.759874px;}
.y1_c02364{bottom:1097.760450px;}
.yf_c02364{bottom:1134.840450px;}
.h3_c02364{height:32.530781px;}
.h1_c02364{height:41.696016px;}
.h2_c02364{height:41.812031px;}
.h4_c02364{height:54.654737px;}
.h0_c02364{height:1263.000000px;}
.w1_c02364{width:892.500000px;}
.w0_c02364{width:892.830000px;}
.x0_c02364{left:0.000000px;}
.xe_c02364{left:117.000000px;}
.x8_c02364{left:440.999856px;}
.x4_c02364{left:445.680576px;}
.xc_c02364{left:451.080000px;}
.x7_c02364{left:455.399604px;}
.x5_c02364{left:461.880144px;}
.x1_c02364{left:463.320000px;}
.xa_c02364{left:483.480360px;}
.x9_c02364{left:492.119496px;}
.x6_c02364{left:493.200576px;}
.xd_c02364{left:506.880360px;}
.x3_c02364{left:511.919892px;}
.x2_c02364{left:526.679604px;}
.xb_c02364{left:569.880036px;}
@media print{
.v0_c02364{vertical-align:0.000000pt;}
.v1_c02364{vertical-align:1.279488pt;}
.lsd_c02364{letter-spacing:-0.705408pt;}
.lsa_c02364{letter-spacing:-0.688512pt;}
.ls11_c02364{letter-spacing:-0.654720pt;}
.ls7_c02364{letter-spacing:-0.544896pt;}
.ls9_c02364{letter-spacing:-0.511104pt;}
.ls16_c02364{letter-spacing:-0.244992pt;}
.ls12_c02364{letter-spacing:-0.240768pt;}
.lsf_c02364{letter-spacing:-0.232320pt;}
.ls6_c02364{letter-spacing:-0.215424pt;}
.ls3_c02364{letter-spacing:-0.105600pt;}
.ls15_c02364{letter-spacing:0.000000pt;}
.ls0_c02364{letter-spacing:0.005376pt;}
.ls5_c02364{letter-spacing:0.114048pt;}
.lsc_c02364{letter-spacing:0.451968pt;}
.ls14_c02364{letter-spacing:0.456960pt;}
.ls10_c02364{letter-spacing:0.477312pt;}
.lsb_c02364{letter-spacing:0.515328pt;}
.ls13_c02364{letter-spacing:0.528000pt;}
.ls8_c02364{letter-spacing:0.532224pt;}
.ls1_c02364{letter-spacing:0.544896pt;}
.lse_c02364{letter-spacing:0.578688pt;}
.ls4_c02364{letter-spacing:0.637824pt;}
.ls2_c02364{letter-spacing:0.642048pt;}
.wse_c02364{word-spacing:-13.445376pt;}
.wsc_c02364{word-spacing:-11.088000pt;}
.ws7_c02364{word-spacing:-11.075328pt;}
.ws4_c02364{word-spacing:-10.344576pt;}
.ws2_c02364{word-spacing:-10.015104pt;}
.ws6_c02364{word-spacing:-9.871488pt;}
.ws18_c02364{word-spacing:-1.919232pt;}
.ws14_c02364{word-spacing:-0.899712pt;}
.ws10_c02364{word-spacing:-0.865920pt;}
.ws12_c02364{word-spacing:-0.105600pt;}
.ws15_c02364{word-spacing:-0.088704pt;}
.ws16_c02364{word-spacing:-0.080256pt;}
.ws17_c02364{word-spacing:-0.076032pt;}
.ws11_c02364{word-spacing:0.000000pt;}
.ws13_c02364{word-spacing:0.384384pt;}
.wsf_c02364{word-spacing:1.305216pt;}
.wsb_c02364{word-spacing:5.892480pt;}
.wsd_c02364{word-spacing:29.600256pt;}
.wsa_c02364{word-spacing:30.966144pt;}
.ws9_c02364{word-spacing:32.127744pt;}
.ws1_c02364{word-spacing:33.563904pt;}
.ws0_c02364{word-spacing:33.796224pt;}
.ws3_c02364{word-spacing:34.860672pt;}
.ws5_c02364{word-spacing:35.468928pt;}
.ws8_c02364{word-spacing:37.357056pt;}
._0_c02364{margin-left:-1.731840pt;}
._2_c02364{width:1.317888pt;}
._4_c02364{width:2.935680pt;}
._8_c02364{width:13.546368pt;}
._9_c02364{width:16.004736pt;}
._6_c02364{width:17.761920pt;}
._7_c02364{width:20.845440pt;}
._5_c02364{width:21.947904pt;}
._1_c02364{width:44.668800pt;}
._3_c02364{width:45.805056pt;}
.fs0_c02364{font-size:42.240000pt;}
.fs1_c02364{font-size:53.760000pt;}
.y0_c02364{bottom:0.000000pt;}
.y1b_c02364{bottom:117.225499pt;}
.y1a_c02364{bottom:130.665211pt;}
.y1d_c02364{bottom:165.866875pt;}
.y1c_c02364{bottom:174.507067pt;}
.y19_c02364{bottom:245.225371pt;}
.y18_c02364{bottom:317.225563pt;}
.y16_c02364{bottom:361.386427pt;}
.y12_c02364{bottom:377.386939pt;}
.y17_c02364{bottom:407.786011pt;}
.y15_c02364{bottom:437.226235pt;}
.y14_c02364{bottom:453.226747pt;}
.y11_c02364{bottom:482.666971pt;}
.y13_c02364{bottom:497.386555pt;}
.y10_c02364{bottom:513.387067pt;}
.y1e_c02364{bottom:546.027067pt;}
.yc_c02364{bottom:579.945467pt;}
.yb_c02364{bottom:593.385179pt;}
.ye_c02364{bottom:628.586875pt;}
.yd_c02364{bottom:637.227067pt;}
.ya_c02364{bottom:707.945339pt;}
.y9_c02364{bottom:779.945531pt;}
.y7_c02364{bottom:823.786427pt;}
.y3_c02364{bottom:839.786939pt;}
.y8_c02364{bottom:870.505979pt;}
.y6_c02364{bottom:899.946203pt;}
.y5_c02364{bottom:915.946715pt;}
.y2_c02364{bottom:945.386939pt;}
.y4_c02364{bottom:959.786555pt;}
.y1_c02364{bottom:975.787067pt;}
.yf_c02364{bottom:1008.747067pt;}
.h3_c02364{height:28.916250pt;}
.h1_c02364{height:37.063125pt;}
.h2_c02364{height:37.166250pt;}
.h4_c02364{height:48.581988pt;}
.h0_c02364{height:1122.666667pt;}
.w1_c02364{width:793.333333pt;}
.w0_c02364{width:793.626667pt;}
.x0_c02364{left:0.000000pt;}
.xe_c02364{left:104.000000pt;}
.x8_c02364{left:391.999872pt;}
.x4_c02364{left:396.160512pt;}
.xc_c02364{left:400.960000pt;}
.x7_c02364{left:404.799648pt;}
.x5_c02364{left:410.560128pt;}
.x1_c02364{left:411.840000pt;}
.xa_c02364{left:429.760320pt;}
.x9_c02364{left:437.439552pt;}
.x6_c02364{left:438.400512pt;}
.xd_c02364{left:450.560320pt;}
.x3_c02364{left:455.039904pt;}
.x2_c02364{left:468.159648pt;}
.xb_c02364{left:506.560032pt;}
}





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

.ir_c02365:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02365{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02365;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02365{font-family:ff1_c02365;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02365;src:url('chunks/assets/font_68976d798405d3c259530942.woff2')format("woff");}.ff2_c02365{font-family:ff2_c02365;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02365;src:url('chunks/assets/font_04573edf415d036e911f81c9.woff2')format("woff");}.ff3_c02365{font-family:ff3_c02365;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02365{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02365{vertical-align:0.000000px;}
.v1_c02365{vertical-align:1.439424px;}
.ls14_c02365{letter-spacing:-1.197504px;}
.ls13_c02365{letter-spacing:-0.722304px;}
.ls7_c02365{letter-spacing:-0.613008px;}
.ls9_c02365{letter-spacing:-0.574992px;}
.ls17_c02365{letter-spacing:-0.380160px;}
.lsf_c02365{letter-spacing:-0.275616px;}
.lsc_c02365{letter-spacing:-0.261360px;}
.ls6_c02365{letter-spacing:-0.242352px;}
.ls3_c02365{letter-spacing:-0.118800px;}
.lsd_c02365{letter-spacing:-0.047520px;}
.ls12_c02365{letter-spacing:0.000000px;}
.ls1_c02365{letter-spacing:0.006048px;}
.ls5_c02365{letter-spacing:0.128304px;}
.ls16_c02365{letter-spacing:0.228096px;}
.lsb_c02365{letter-spacing:0.508464px;}
.ls11_c02365{letter-spacing:0.514080px;}
.lse_c02365{letter-spacing:0.536976px;}
.lsa_c02365{letter-spacing:0.579744px;}
.ls10_c02365{letter-spacing:0.594000px;}
.ls8_c02365{letter-spacing:0.598752px;}
.ls2_c02365{letter-spacing:0.613008px;}
.ls15_c02365{letter-spacing:0.632016px;}
.ls4_c02365{letter-spacing:0.717552px;}
.ls0_c02365{letter-spacing:0.722304px;}
.sc__c02365{text-shadow:none;}
.sc0_c02365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02365{-webkit-text-stroke:0px transparent;}
.sc0_c02365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02365{word-spacing:-15.126048px;}
.wsb_c02365{word-spacing:-12.474000px;}
.wsa_c02365{word-spacing:-12.416976px;}
.ws7_c02365{word-spacing:-12.388464px;}
.ws4_c02365{word-spacing:-11.637648px;}
.ws2_c02365{word-spacing:-11.266992px;}
.ws11_c02365{word-spacing:-2.642112px;}
.ws19_c02365{word-spacing:-2.159136px;}
.ws15_c02365{word-spacing:-1.083456px;}
.ws12_c02365{word-spacing:-0.974160px;}
.ws17_c02365{word-spacing:-0.313632px;}
.ws14_c02365{word-spacing:-0.118800px;}
.ws16_c02365{word-spacing:-0.099792px;}
.ws18_c02365{word-spacing:-0.085536px;}
.ws13_c02365{word-spacing:0.000000px;}
.ws1c_c02365{word-spacing:0.019008px;}
.ws1a_c02365{word-spacing:0.361152px;}
.ws1b_c02365{word-spacing:0.836352px;}
.wsf_c02365{word-spacing:15.676848px;}
.ws10_c02365{word-spacing:15.881184px;}
.wsc_c02365{word-spacing:33.300288px;}
.ws8_c02365{word-spacing:36.143712px;}
.ws6_c02365{word-spacing:36.742464px;}
.ws1_c02365{word-spacing:37.759392px;}
.ws0_c02365{word-spacing:38.020752px;}
.ws3_c02365{word-spacing:39.218256px;}
.ws9_c02365{word-spacing:39.593664px;}
.ws5_c02365{word-spacing:39.902544px;}
.wse_c02365{word-spacing:42.026688px;}
._0_c02365{margin-left:-1.948320px;}
._2_c02365{width:1.482624px;}
._4_c02365{width:3.302640px;}
._7_c02365{width:34.499520px;}
._8_c02365{width:35.996400px;}
._1_c02365{width:50.252400px;}
._3_c02365{width:51.530688px;}
._5_c02365{width:55.816992px;}
._6_c02365{width:112.132944px;}
.fc0_c02365{color:rgb(0,0,0);}
.fs0_c02365{font-size:47.520000px;}
.fs1_c02365{font-size:60.480000px;}
.y0_c02365{bottom:0.000000px;}
.y1c_c02365{bottom:146.998362px;}
.y1e_c02365{bottom:186.600234px;}
.y1d_c02365{bottom:196.320450px;}
.y1b_c02365{bottom:260.758866px;}
.y1a_c02365{bottom:275.878542px;}
.y19_c02365{bottom:341.759082px;}
.y18_c02365{bottom:356.878758px;}
.y16_c02365{bottom:406.559730px;}
.y12_c02365{bottom:424.560306px;}
.y17_c02365{bottom:458.759262px;}
.y15_c02365{bottom:491.879514px;}
.y14_c02365{bottom:509.880090px;}
.y11_c02365{bottom:543.000342px;}
.y13_c02365{bottom:559.559874px;}
.y10_c02365{bottom:577.560450px;}
.y1f_c02365{bottom:614.280450px;}
.yc_c02365{bottom:667.558326px;}
.ye_c02365{bottom:707.160234px;}
.yd_c02365{bottom:716.880450px;}
.yb_c02365{bottom:781.318830px;}
.ya_c02365{bottom:796.438506px;}
.y9_c02365{bottom:877.438722px;}
.y7_c02365{bottom:926.759730px;}
.y3_c02365{bottom:944.760306px;}
.y8_c02365{bottom:979.319226px;}
.y6_c02365{bottom:1012.439478px;}
.y5_c02365{bottom:1030.440054px;}
.y2_c02365{bottom:1063.560306px;}
.y4_c02365{bottom:1079.759874px;}
.y1_c02365{bottom:1097.760450px;}
.yf_c02365{bottom:1134.840450px;}
.h3_c02365{height:32.530781px;}
.h1_c02365{height:41.696016px;}
.h2_c02365{height:41.812031px;}
.h4_c02365{height:54.654737px;}
.h0_c02365{height:1263.000000px;}
.w1_c02365{width:892.500000px;}
.w0_c02365{width:892.830000px;}
.x0_c02365{left:0.000000px;}
.xe_c02365{left:117.000000px;}
.x8_c02365{left:440.999856px;}
.x4_c02365{left:445.680576px;}
.xc_c02365{left:451.080000px;}
.x7_c02365{left:455.399604px;}
.x5_c02365{left:461.880144px;}
.x1_c02365{left:463.320000px;}
.xb_c02365{left:483.480360px;}
.x9_c02365{left:492.119496px;}
.x6_c02365{left:493.200576px;}
.xd_c02365{left:506.880360px;}
.x3_c02365{left:511.919892px;}
.x2_c02365{left:526.679604px;}
.xa_c02365{left:569.880036px;}
@media print{
.v0_c02365{vertical-align:0.000000pt;}
.v1_c02365{vertical-align:1.279488pt;}
.ls14_c02365{letter-spacing:-1.064448pt;}
.ls13_c02365{letter-spacing:-0.642048pt;}
.ls7_c02365{letter-spacing:-0.544896pt;}
.ls9_c02365{letter-spacing:-0.511104pt;}
.ls17_c02365{letter-spacing:-0.337920pt;}
.lsf_c02365{letter-spacing:-0.244992pt;}
.lsc_c02365{letter-spacing:-0.232320pt;}
.ls6_c02365{letter-spacing:-0.215424pt;}
.ls3_c02365{letter-spacing:-0.105600pt;}
.lsd_c02365{letter-spacing:-0.042240pt;}
.ls12_c02365{letter-spacing:0.000000pt;}
.ls1_c02365{letter-spacing:0.005376pt;}
.ls5_c02365{letter-spacing:0.114048pt;}
.ls16_c02365{letter-spacing:0.202752pt;}
.lsb_c02365{letter-spacing:0.451968pt;}
.ls11_c02365{letter-spacing:0.456960pt;}
.lse_c02365{letter-spacing:0.477312pt;}
.lsa_c02365{letter-spacing:0.515328pt;}
.ls10_c02365{letter-spacing:0.528000pt;}
.ls8_c02365{letter-spacing:0.532224pt;}
.ls2_c02365{letter-spacing:0.544896pt;}
.ls15_c02365{letter-spacing:0.561792pt;}
.ls4_c02365{letter-spacing:0.637824pt;}
.ls0_c02365{letter-spacing:0.642048pt;}
.wsd_c02365{word-spacing:-13.445376pt;}
.wsb_c02365{word-spacing:-11.088000pt;}
.wsa_c02365{word-spacing:-11.037312pt;}
.ws7_c02365{word-spacing:-11.011968pt;}
.ws4_c02365{word-spacing:-10.344576pt;}
.ws2_c02365{word-spacing:-10.015104pt;}
.ws11_c02365{word-spacing:-2.348544pt;}
.ws19_c02365{word-spacing:-1.919232pt;}
.ws15_c02365{word-spacing:-0.963072pt;}
.ws12_c02365{word-spacing:-0.865920pt;}
.ws17_c02365{word-spacing:-0.278784pt;}
.ws14_c02365{word-spacing:-0.105600pt;}
.ws16_c02365{word-spacing:-0.088704pt;}
.ws18_c02365{word-spacing:-0.076032pt;}
.ws13_c02365{word-spacing:0.000000pt;}
.ws1c_c02365{word-spacing:0.016896pt;}
.ws1a_c02365{word-spacing:0.321024pt;}
.ws1b_c02365{word-spacing:0.743424pt;}
.wsf_c02365{word-spacing:13.934976pt;}
.ws10_c02365{word-spacing:14.116608pt;}
.wsc_c02365{word-spacing:29.600256pt;}
.ws8_c02365{word-spacing:32.127744pt;}
.ws6_c02365{word-spacing:32.659968pt;}
.ws1_c02365{word-spacing:33.563904pt;}
.ws0_c02365{word-spacing:33.796224pt;}
.ws3_c02365{word-spacing:34.860672pt;}
.ws9_c02365{word-spacing:35.194368pt;}
.ws5_c02365{word-spacing:35.468928pt;}
.wse_c02365{word-spacing:37.357056pt;}
._0_c02365{margin-left:-1.731840pt;}
._2_c02365{width:1.317888pt;}
._4_c02365{width:2.935680pt;}
._7_c02365{width:30.666240pt;}
._8_c02365{width:31.996800pt;}
._1_c02365{width:44.668800pt;}
._3_c02365{width:45.805056pt;}
._5_c02365{width:49.615104pt;}
._6_c02365{width:99.673728pt;}
.fs0_c02365{font-size:42.240000pt;}
.fs1_c02365{font-size:53.760000pt;}
.y0_c02365{bottom:0.000000pt;}
.y1c_c02365{bottom:130.665211pt;}
.y1e_c02365{bottom:165.866875pt;}
.y1d_c02365{bottom:174.507067pt;}
.y1b_c02365{bottom:231.785659pt;}
.y1a_c02365{bottom:245.225371pt;}
.y19_c02365{bottom:303.785851pt;}
.y18_c02365{bottom:317.225563pt;}
.y16_c02365{bottom:361.386427pt;}
.y12_c02365{bottom:377.386939pt;}
.y17_c02365{bottom:407.786011pt;}
.y15_c02365{bottom:437.226235pt;}
.y14_c02365{bottom:453.226747pt;}
.y11_c02365{bottom:482.666971pt;}
.y13_c02365{bottom:497.386555pt;}
.y10_c02365{bottom:513.387067pt;}
.y1f_c02365{bottom:546.027067pt;}
.yc_c02365{bottom:593.385179pt;}
.ye_c02365{bottom:628.586875pt;}
.yd_c02365{bottom:637.227067pt;}
.yb_c02365{bottom:694.505627pt;}
.ya_c02365{bottom:707.945339pt;}
.y9_c02365{bottom:779.945531pt;}
.y7_c02365{bottom:823.786427pt;}
.y3_c02365{bottom:839.786939pt;}
.y8_c02365{bottom:870.505979pt;}
.y6_c02365{bottom:899.946203pt;}
.y5_c02365{bottom:915.946715pt;}
.y2_c02365{bottom:945.386939pt;}
.y4_c02365{bottom:959.786555pt;}
.y1_c02365{bottom:975.787067pt;}
.yf_c02365{bottom:1008.747067pt;}
.h3_c02365{height:28.916250pt;}
.h1_c02365{height:37.063125pt;}
.h2_c02365{height:37.166250pt;}
.h4_c02365{height:48.581988pt;}
.h0_c02365{height:1122.666667pt;}
.w1_c02365{width:793.333333pt;}
.w0_c02365{width:793.626667pt;}
.x0_c02365{left:0.000000pt;}
.xe_c02365{left:104.000000pt;}
.x8_c02365{left:391.999872pt;}
.x4_c02365{left:396.160512pt;}
.xc_c02365{left:400.960000pt;}
.x7_c02365{left:404.799648pt;}
.x5_c02365{left:410.560128pt;}
.x1_c02365{left:411.840000pt;}
.xb_c02365{left:429.760320pt;}
.x9_c02365{left:437.439552pt;}
.x6_c02365{left:438.400512pt;}
.xd_c02365{left:450.560320pt;}
.x3_c02365{left:455.039904pt;}
.x2_c02365{left:468.159648pt;}
.xa_c02365{left:506.560032pt;}
}





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

.ir_c02366:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02366{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02366;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02366{font-family:ff1_c02366;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02366;src:url('chunks/assets/font_cf5ebfaf167a2e0febaafe71.woff2')format("woff");}.ff2_c02366{font-family:ff2_c02366;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02366;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02366{font-family:ff3_c02366;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02366{vertical-align:0.000000px;}
.v1_c02366{vertical-align:1.439424px;}
.ls14_c02366{letter-spacing:-0.793584px;}
.ls13_c02366{letter-spacing:-0.774576px;}
.ls8_c02366{letter-spacing:-0.613008px;}
.lsa_c02366{letter-spacing:-0.574992px;}
.ls15_c02366{letter-spacing:-0.375408px;}
.lsf_c02366{letter-spacing:-0.275616px;}
.lsd_c02366{letter-spacing:-0.261360px;}
.ls7_c02366{letter-spacing:-0.242352px;}
.ls4_c02366{letter-spacing:-0.118800px;}
.ls12_c02366{letter-spacing:0.000000px;}
.ls1_c02366{letter-spacing:0.006048px;}
.ls6_c02366{letter-spacing:0.128304px;}
.lsc_c02366{letter-spacing:0.508464px;}
.ls11_c02366{letter-spacing:0.514080px;}
.lse_c02366{letter-spacing:0.536976px;}
.lsb_c02366{letter-spacing:0.579744px;}
.ls10_c02366{letter-spacing:0.594000px;}
.ls9_c02366{letter-spacing:0.598752px;}
.ls3_c02366{letter-spacing:0.613008px;}
.ls2_c02366{letter-spacing:0.651024px;}
.ls5_c02366{letter-spacing:0.717552px;}
.ls0_c02366{letter-spacing:0.722304px;}
.sc__c02366{text-shadow:none;}
.sc0_c02366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02366{-webkit-text-stroke:0px transparent;}
.sc0_c02366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02366{word-spacing:-15.126048px;}
.wsa_c02366{word-spacing:-12.474000px;}
.wse_c02366{word-spacing:-12.459744px;}
.ws9_c02366{word-spacing:-12.416976px;}
.ws7_c02366{word-spacing:-12.388464px;}
.ws4_c02366{word-spacing:-11.637648px;}
.ws2_c02366{word-spacing:-11.266992px;}
.wsd_c02366{word-spacing:-11.105424px;}
.ws16_c02366{word-spacing:-2.159136px;}
.ws13_c02366{word-spacing:-1.083456px;}
.ws17_c02366{word-spacing:-1.012176px;}
.ws10_c02366{word-spacing:-0.974160px;}
.ws12_c02366{word-spacing:-0.118800px;}
.ws14_c02366{word-spacing:-0.099792px;}
.ws15_c02366{word-spacing:-0.085536px;}
.ws11_c02366{word-spacing:0.000000px;}
.ws19_c02366{word-spacing:0.014256px;}
.ws18_c02366{word-spacing:0.432432px;}
.wsb_c02366{word-spacing:33.300288px;}
.ws8_c02366{word-spacing:36.143712px;}
.ws6_c02366{word-spacing:36.742464px;}
.ws1_c02366{word-spacing:37.759392px;}
.ws0_c02366{word-spacing:38.020752px;}
.ws3_c02366{word-spacing:39.218256px;}
.ws5_c02366{word-spacing:39.902544px;}
.wsf_c02366{word-spacing:42.026688px;}
._0_c02366{margin-left:-1.948320px;}
._2_c02366{width:1.482624px;}
._4_c02366{width:3.302640px;}
._1_c02366{width:50.252400px;}
._3_c02366{width:51.530688px;}
.fc0_c02366{color:rgb(0,0,0);}
.fs0_c02366{font-size:47.520000px;}
.fs1_c02366{font-size:60.480000px;}
.y0_c02366{bottom:0.000000px;}
.y19_c02366{bottom:146.998362px;}
.y1b_c02366{bottom:186.600234px;}
.y1a_c02366{bottom:196.320450px;}
.y18_c02366{bottom:275.878542px;}
.y17_c02366{bottom:356.878758px;}
.y15_c02366{bottom:406.559730px;}
.y11_c02366{bottom:424.560306px;}
.y16_c02366{bottom:458.759262px;}
.y14_c02366{bottom:491.879514px;}
.y13_c02366{bottom:509.880090px;}
.y10_c02366{bottom:543.000342px;}
.y12_c02366{bottom:559.559874px;}
.yf_c02366{bottom:577.560450px;}
.y1c_c02366{bottom:614.280450px;}
.yb_c02366{bottom:667.558326px;}
.yd_c02366{bottom:707.160234px;}
.yc_c02366{bottom:716.880450px;}
.ya_c02366{bottom:796.438506px;}
.y9_c02366{bottom:877.438722px;}
.y7_c02366{bottom:926.759730px;}
.y3_c02366{bottom:944.760306px;}
.y8_c02366{bottom:979.319226px;}
.y6_c02366{bottom:1012.439478px;}
.y5_c02366{bottom:1030.440054px;}
.y2_c02366{bottom:1063.560306px;}
.y4_c02366{bottom:1079.759874px;}
.y1_c02366{bottom:1097.760450px;}
.ye_c02366{bottom:1134.840450px;}
.h3_c02366{height:32.530781px;}
.h1_c02366{height:41.696016px;}
.h2_c02366{height:41.812031px;}
.h4_c02366{height:54.654737px;}
.h0_c02366{height:1263.000000px;}
.w1_c02366{width:892.500000px;}
.w0_c02366{width:892.830000px;}
.x0_c02366{left:0.000000px;}
.xd_c02366{left:117.000000px;}
.x8_c02366{left:440.999856px;}
.x4_c02366{left:445.680576px;}
.xb_c02366{left:451.080000px;}
.x7_c02366{left:455.399604px;}
.x5_c02366{left:461.880144px;}
.x1_c02366{left:463.320000px;}
.xa_c02366{left:483.480360px;}
.x9_c02366{left:492.119496px;}
.x6_c02366{left:493.200576px;}
.xc_c02366{left:506.880360px;}
.x3_c02366{left:511.919892px;}
.x2_c02366{left:526.679604px;}
@media print{
.v0_c02366{vertical-align:0.000000pt;}
.v1_c02366{vertical-align:1.279488pt;}
.ls14_c02366{letter-spacing:-0.705408pt;}
.ls13_c02366{letter-spacing:-0.688512pt;}
.ls8_c02366{letter-spacing:-0.544896pt;}
.lsa_c02366{letter-spacing:-0.511104pt;}
.ls15_c02366{letter-spacing:-0.333696pt;}
.lsf_c02366{letter-spacing:-0.244992pt;}
.lsd_c02366{letter-spacing:-0.232320pt;}
.ls7_c02366{letter-spacing:-0.215424pt;}
.ls4_c02366{letter-spacing:-0.105600pt;}
.ls12_c02366{letter-spacing:0.000000pt;}
.ls1_c02366{letter-spacing:0.005376pt;}
.ls6_c02366{letter-spacing:0.114048pt;}
.lsc_c02366{letter-spacing:0.451968pt;}
.ls11_c02366{letter-spacing:0.456960pt;}
.lse_c02366{letter-spacing:0.477312pt;}
.lsb_c02366{letter-spacing:0.515328pt;}
.ls10_c02366{letter-spacing:0.528000pt;}
.ls9_c02366{letter-spacing:0.532224pt;}
.ls3_c02366{letter-spacing:0.544896pt;}
.ls2_c02366{letter-spacing:0.578688pt;}
.ls5_c02366{letter-spacing:0.637824pt;}
.ls0_c02366{letter-spacing:0.642048pt;}
.wsc_c02366{word-spacing:-13.445376pt;}
.wsa_c02366{word-spacing:-11.088000pt;}
.wse_c02366{word-spacing:-11.075328pt;}
.ws9_c02366{word-spacing:-11.037312pt;}
.ws7_c02366{word-spacing:-11.011968pt;}
.ws4_c02366{word-spacing:-10.344576pt;}
.ws2_c02366{word-spacing:-10.015104pt;}
.wsd_c02366{word-spacing:-9.871488pt;}
.ws16_c02366{word-spacing:-1.919232pt;}
.ws13_c02366{word-spacing:-0.963072pt;}
.ws17_c02366{word-spacing:-0.899712pt;}
.ws10_c02366{word-spacing:-0.865920pt;}
.ws12_c02366{word-spacing:-0.105600pt;}
.ws14_c02366{word-spacing:-0.088704pt;}
.ws15_c02366{word-spacing:-0.076032pt;}
.ws11_c02366{word-spacing:0.000000pt;}
.ws19_c02366{word-spacing:0.012672pt;}
.ws18_c02366{word-spacing:0.384384pt;}
.wsb_c02366{word-spacing:29.600256pt;}
.ws8_c02366{word-spacing:32.127744pt;}
.ws6_c02366{word-spacing:32.659968pt;}
.ws1_c02366{word-spacing:33.563904pt;}
.ws0_c02366{word-spacing:33.796224pt;}
.ws3_c02366{word-spacing:34.860672pt;}
.ws5_c02366{word-spacing:35.468928pt;}
.wsf_c02366{word-spacing:37.357056pt;}
._0_c02366{margin-left:-1.731840pt;}
._2_c02366{width:1.317888pt;}
._4_c02366{width:2.935680pt;}
._1_c02366{width:44.668800pt;}
._3_c02366{width:45.805056pt;}
.fs0_c02366{font-size:42.240000pt;}
.fs1_c02366{font-size:53.760000pt;}
.y0_c02366{bottom:0.000000pt;}
.y19_c02366{bottom:130.665211pt;}
.y1b_c02366{bottom:165.866875pt;}
.y1a_c02366{bottom:174.507067pt;}
.y18_c02366{bottom:245.225371pt;}
.y17_c02366{bottom:317.225563pt;}
.y15_c02366{bottom:361.386427pt;}
.y11_c02366{bottom:377.386939pt;}
.y16_c02366{bottom:407.786011pt;}
.y14_c02366{bottom:437.226235pt;}
.y13_c02366{bottom:453.226747pt;}
.y10_c02366{bottom:482.666971pt;}
.y12_c02366{bottom:497.386555pt;}
.yf_c02366{bottom:513.387067pt;}
.y1c_c02366{bottom:546.027067pt;}
.yb_c02366{bottom:593.385179pt;}
.yd_c02366{bottom:628.586875pt;}
.yc_c02366{bottom:637.227067pt;}
.ya_c02366{bottom:707.945339pt;}
.y9_c02366{bottom:779.945531pt;}
.y7_c02366{bottom:823.786427pt;}
.y3_c02366{bottom:839.786939pt;}
.y8_c02366{bottom:870.505979pt;}
.y6_c02366{bottom:899.946203pt;}
.y5_c02366{bottom:915.946715pt;}
.y2_c02366{bottom:945.386939pt;}
.y4_c02366{bottom:959.786555pt;}
.y1_c02366{bottom:975.787067pt;}
.ye_c02366{bottom:1008.747067pt;}
.h3_c02366{height:28.916250pt;}
.h1_c02366{height:37.063125pt;}
.h2_c02366{height:37.166250pt;}
.h4_c02366{height:48.581988pt;}
.h0_c02366{height:1122.666667pt;}
.w1_c02366{width:793.333333pt;}
.w0_c02366{width:793.626667pt;}
.x0_c02366{left:0.000000pt;}
.xd_c02366{left:104.000000pt;}
.x8_c02366{left:391.999872pt;}
.x4_c02366{left:396.160512pt;}
.xb_c02366{left:400.960000pt;}
.x7_c02366{left:404.799648pt;}
.x5_c02366{left:410.560128pt;}
.x1_c02366{left:411.840000pt;}
.xa_c02366{left:429.760320pt;}
.x9_c02366{left:437.439552pt;}
.x6_c02366{left:438.400512pt;}
.xc_c02366{left:450.560320pt;}
.x3_c02366{left:455.039904pt;}
.x2_c02366{left:468.159648pt;}
}





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

.ir_c02367:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02367{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02367;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02367{font-family:ff1_c02367;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02367;src:url('chunks/assets/font_dc4766f08953e97b44b5b560.woff2')format("woff");}.ff2_c02367{font-family:ff2_c02367;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02367;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02367{font-family:ff3_c02367;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02367{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02367{vertical-align:0.000000px;}
.v1_c02367{vertical-align:1.439424px;}
.ls14_c02367{letter-spacing:-0.793584px;}
.ls13_c02367{letter-spacing:-0.774576px;}
.ls7_c02367{letter-spacing:-0.613008px;}
.ls9_c02367{letter-spacing:-0.574992px;}
.lsd_c02367{letter-spacing:-0.375408px;}
.lsf_c02367{letter-spacing:-0.275616px;}
.lsc_c02367{letter-spacing:-0.261360px;}
.ls6_c02367{letter-spacing:-0.242352px;}
.ls3_c02367{letter-spacing:-0.118800px;}
.ls12_c02367{letter-spacing:0.000000px;}
.ls1_c02367{letter-spacing:0.006048px;}
.ls5_c02367{letter-spacing:0.128304px;}
.lsb_c02367{letter-spacing:0.508464px;}
.ls11_c02367{letter-spacing:0.514080px;}
.lse_c02367{letter-spacing:0.536976px;}
.lsa_c02367{letter-spacing:0.579744px;}
.ls10_c02367{letter-spacing:0.594000px;}
.ls8_c02367{letter-spacing:0.598752px;}
.ls2_c02367{letter-spacing:0.613008px;}
.ls15_c02367{letter-spacing:0.651024px;}
.ls4_c02367{letter-spacing:0.717552px;}
.ls0_c02367{letter-spacing:0.722304px;}
.sc__c02367{text-shadow:none;}
.sc0_c02367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02367{-webkit-text-stroke:0px transparent;}
.sc0_c02367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02367{word-spacing:-15.126048px;}
.wsa_c02367{word-spacing:-12.474000px;}
.wse_c02367{word-spacing:-12.459744px;}
.ws9_c02367{word-spacing:-12.416976px;}
.ws4_c02367{word-spacing:-11.637648px;}
.ws2_c02367{word-spacing:-11.266992px;}
.wsd_c02367{word-spacing:-11.105424px;}
.ws18_c02367{word-spacing:-2.159136px;}
.ws14_c02367{word-spacing:-1.083456px;}
.ws1a_c02367{word-spacing:-1.012176px;}
.ws11_c02367{word-spacing:-0.974160px;}
.ws13_c02367{word-spacing:-0.118800px;}
.ws15_c02367{word-spacing:-0.099792px;}
.ws17_c02367{word-spacing:-0.085536px;}
.ws12_c02367{word-spacing:0.000000px;}
.ws16_c02367{word-spacing:0.014256px;}
.ws19_c02367{word-spacing:0.432432px;}
.ws10_c02367{word-spacing:1.468368px;}
.wsb_c02367{word-spacing:33.300288px;}
.wsf_c02367{word-spacing:34.836912px;}
.ws8_c02367{word-spacing:36.143712px;}
.ws6_c02367{word-spacing:36.742464px;}
.ws1_c02367{word-spacing:37.759392px;}
.ws0_c02367{word-spacing:38.020752px;}
.ws3_c02367{word-spacing:39.218256px;}
.ws5_c02367{word-spacing:39.902544px;}
.ws7_c02367{word-spacing:42.026688px;}
._0_c02367{margin-left:-1.948320px;}
._2_c02367{width:1.482624px;}
._4_c02367{width:3.302640px;}
._6_c02367{width:14.336784px;}
._7_c02367{width:18.908208px;}
._5_c02367{width:20.885040px;}
._1_c02367{width:50.252400px;}
._3_c02367{width:51.530688px;}
.fc0_c02367{color:rgb(0,0,0);}
.fs0_c02367{font-size:47.520000px;}
.fs1_c02367{font-size:60.480000px;}
.y0_c02367{bottom:0.000000px;}
.y1a_c02367{bottom:131.878686px;}
.y19_c02367{bottom:146.998362px;}
.y1c_c02367{bottom:186.600234px;}
.y1b_c02367{bottom:196.320450px;}
.y18_c02367{bottom:275.878542px;}
.y17_c02367{bottom:356.878758px;}
.y15_c02367{bottom:406.559730px;}
.y11_c02367{bottom:424.560306px;}
.y16_c02367{bottom:458.759262px;}
.y14_c02367{bottom:491.879514px;}
.y13_c02367{bottom:509.880090px;}
.y10_c02367{bottom:543.000342px;}
.y12_c02367{bottom:559.559874px;}
.yf_c02367{bottom:577.560450px;}
.y1d_c02367{bottom:614.280450px;}
.yb_c02367{bottom:667.558326px;}
.yd_c02367{bottom:707.160234px;}
.yc_c02367{bottom:716.880450px;}
.ya_c02367{bottom:796.438506px;}
.y9_c02367{bottom:877.438722px;}
.y7_c02367{bottom:926.759730px;}
.y3_c02367{bottom:944.760306px;}
.y8_c02367{bottom:979.319226px;}
.y6_c02367{bottom:1012.439478px;}
.y5_c02367{bottom:1030.440054px;}
.y2_c02367{bottom:1063.560306px;}
.y4_c02367{bottom:1079.759874px;}
.y1_c02367{bottom:1097.760450px;}
.ye_c02367{bottom:1134.840450px;}
.h3_c02367{height:32.530781px;}
.h1_c02367{height:41.696016px;}
.h2_c02367{height:41.812031px;}
.h4_c02367{height:54.654737px;}
.h0_c02367{height:1263.000000px;}
.w1_c02367{width:892.500000px;}
.w0_c02367{width:892.830000px;}
.x0_c02367{left:0.000000px;}
.xd_c02367{left:117.000000px;}
.x8_c02367{left:440.999856px;}
.x4_c02367{left:445.680576px;}
.xb_c02367{left:451.080000px;}
.x7_c02367{left:455.399604px;}
.x5_c02367{left:461.880144px;}
.x1_c02367{left:463.320000px;}
.xa_c02367{left:483.480360px;}
.x9_c02367{left:492.119496px;}
.x6_c02367{left:493.200576px;}
.xc_c02367{left:506.880360px;}
.x3_c02367{left:511.919892px;}
.x2_c02367{left:526.679604px;}
.xe_c02367{left:569.880036px;}
@media print{
.v0_c02367{vertical-align:0.000000pt;}
.v1_c02367{vertical-align:1.279488pt;}
.ls14_c02367{letter-spacing:-0.705408pt;}
.ls13_c02367{letter-spacing:-0.688512pt;}
.ls7_c02367{letter-spacing:-0.544896pt;}
.ls9_c02367{letter-spacing:-0.511104pt;}
.lsd_c02367{letter-spacing:-0.333696pt;}
.lsf_c02367{letter-spacing:-0.244992pt;}
.lsc_c02367{letter-spacing:-0.232320pt;}
.ls6_c02367{letter-spacing:-0.215424pt;}
.ls3_c02367{letter-spacing:-0.105600pt;}
.ls12_c02367{letter-spacing:0.000000pt;}
.ls1_c02367{letter-spacing:0.005376pt;}
.ls5_c02367{letter-spacing:0.114048pt;}
.lsb_c02367{letter-spacing:0.451968pt;}
.ls11_c02367{letter-spacing:0.456960pt;}
.lse_c02367{letter-spacing:0.477312pt;}
.lsa_c02367{letter-spacing:0.515328pt;}
.ls10_c02367{letter-spacing:0.528000pt;}
.ls8_c02367{letter-spacing:0.532224pt;}
.ls2_c02367{letter-spacing:0.544896pt;}
.ls15_c02367{letter-spacing:0.578688pt;}
.ls4_c02367{letter-spacing:0.637824pt;}
.ls0_c02367{letter-spacing:0.642048pt;}
.wsc_c02367{word-spacing:-13.445376pt;}
.wsa_c02367{word-spacing:-11.088000pt;}
.wse_c02367{word-spacing:-11.075328pt;}
.ws9_c02367{word-spacing:-11.037312pt;}
.ws4_c02367{word-spacing:-10.344576pt;}
.ws2_c02367{word-spacing:-10.015104pt;}
.wsd_c02367{word-spacing:-9.871488pt;}
.ws18_c02367{word-spacing:-1.919232pt;}
.ws14_c02367{word-spacing:-0.963072pt;}
.ws1a_c02367{word-spacing:-0.899712pt;}
.ws11_c02367{word-spacing:-0.865920pt;}
.ws13_c02367{word-spacing:-0.105600pt;}
.ws15_c02367{word-spacing:-0.088704pt;}
.ws17_c02367{word-spacing:-0.076032pt;}
.ws12_c02367{word-spacing:0.000000pt;}
.ws16_c02367{word-spacing:0.012672pt;}
.ws19_c02367{word-spacing:0.384384pt;}
.ws10_c02367{word-spacing:1.305216pt;}
.wsb_c02367{word-spacing:29.600256pt;}
.wsf_c02367{word-spacing:30.966144pt;}
.ws8_c02367{word-spacing:32.127744pt;}
.ws6_c02367{word-spacing:32.659968pt;}
.ws1_c02367{word-spacing:33.563904pt;}
.ws0_c02367{word-spacing:33.796224pt;}
.ws3_c02367{word-spacing:34.860672pt;}
.ws5_c02367{word-spacing:35.468928pt;}
.ws7_c02367{word-spacing:37.357056pt;}
._0_c02367{margin-left:-1.731840pt;}
._2_c02367{width:1.317888pt;}
._4_c02367{width:2.935680pt;}
._6_c02367{width:12.743808pt;}
._7_c02367{width:16.807296pt;}
._5_c02367{width:18.564480pt;}
._1_c02367{width:44.668800pt;}
._3_c02367{width:45.805056pt;}
.fs0_c02367{font-size:42.240000pt;}
.fs1_c02367{font-size:53.760000pt;}
.y0_c02367{bottom:0.000000pt;}
.y1a_c02367{bottom:117.225499pt;}
.y19_c02367{bottom:130.665211pt;}
.y1c_c02367{bottom:165.866875pt;}
.y1b_c02367{bottom:174.507067pt;}
.y18_c02367{bottom:245.225371pt;}
.y17_c02367{bottom:317.225563pt;}
.y15_c02367{bottom:361.386427pt;}
.y11_c02367{bottom:377.386939pt;}
.y16_c02367{bottom:407.786011pt;}
.y14_c02367{bottom:437.226235pt;}
.y13_c02367{bottom:453.226747pt;}
.y10_c02367{bottom:482.666971pt;}
.y12_c02367{bottom:497.386555pt;}
.yf_c02367{bottom:513.387067pt;}
.y1d_c02367{bottom:546.027067pt;}
.yb_c02367{bottom:593.385179pt;}
.yd_c02367{bottom:628.586875pt;}
.yc_c02367{bottom:637.227067pt;}
.ya_c02367{bottom:707.945339pt;}
.y9_c02367{bottom:779.945531pt;}
.y7_c02367{bottom:823.786427pt;}
.y3_c02367{bottom:839.786939pt;}
.y8_c02367{bottom:870.505979pt;}
.y6_c02367{bottom:899.946203pt;}
.y5_c02367{bottom:915.946715pt;}
.y2_c02367{bottom:945.386939pt;}
.y4_c02367{bottom:959.786555pt;}
.y1_c02367{bottom:975.787067pt;}
.ye_c02367{bottom:1008.747067pt;}
.h3_c02367{height:28.916250pt;}
.h1_c02367{height:37.063125pt;}
.h2_c02367{height:37.166250pt;}
.h4_c02367{height:48.581988pt;}
.h0_c02367{height:1122.666667pt;}
.w1_c02367{width:793.333333pt;}
.w0_c02367{width:793.626667pt;}
.x0_c02367{left:0.000000pt;}
.xd_c02367{left:104.000000pt;}
.x8_c02367{left:391.999872pt;}
.x4_c02367{left:396.160512pt;}
.xb_c02367{left:400.960000pt;}
.x7_c02367{left:404.799648pt;}
.x5_c02367{left:410.560128pt;}
.x1_c02367{left:411.840000pt;}
.xa_c02367{left:429.760320pt;}
.x9_c02367{left:437.439552pt;}
.x6_c02367{left:438.400512pt;}
.xc_c02367{left:450.560320pt;}
.x3_c02367{left:455.039904pt;}
.x2_c02367{left:468.159648pt;}
.xe_c02367{left:506.560032pt;}
}





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

.ir_c02368:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02368{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02368;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02368{font-family:ff1_c02368;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02368;src:url('chunks/assets/font_6a56b2cf3b14ca92e02d7785.woff2')format("woff");}.ff2_c02368{font-family:ff2_c02368;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02368;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02368{font-family:ff3_c02368;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02368{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02368{vertical-align:0.000000px;}
.v1_c02368{vertical-align:1.439424px;}
.lsf_c02368{letter-spacing:-0.803088px;}
.ls14_c02368{letter-spacing:-0.793584px;}
.ls7_c02368{letter-spacing:-0.613008px;}
.ls9_c02368{letter-spacing:-0.574992px;}
.ls15_c02368{letter-spacing:-0.375408px;}
.ls10_c02368{letter-spacing:-0.275616px;}
.lsd_c02368{letter-spacing:-0.261360px;}
.ls6_c02368{letter-spacing:-0.242352px;}
.ls3_c02368{letter-spacing:-0.118800px;}
.ls13_c02368{letter-spacing:0.000000px;}
.ls0_c02368{letter-spacing:0.006048px;}
.ls5_c02368{letter-spacing:0.128304px;}
.lsb_c02368{letter-spacing:0.508464px;}
.ls12_c02368{letter-spacing:0.514080px;}
.lse_c02368{letter-spacing:0.536976px;}
.lsa_c02368{letter-spacing:0.579744px;}
.ls11_c02368{letter-spacing:0.594000px;}
.ls8_c02368{letter-spacing:0.598752px;}
.ls2_c02368{letter-spacing:0.613008px;}
.lsc_c02368{letter-spacing:0.651024px;}
.ls4_c02368{letter-spacing:0.717552px;}
.ls1_c02368{letter-spacing:0.722304px;}
.sc__c02368{text-shadow:none;}
.sc0_c02368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02368{-webkit-text-stroke:0px transparent;}
.sc0_c02368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02368{word-spacing:-15.126048px;}
.wsb_c02368{word-spacing:-12.474000px;}
.ws6_c02368{word-spacing:-12.459744px;}
.ws10_c02368{word-spacing:-12.416976px;}
.ws7_c02368{word-spacing:-12.388464px;}
.ws4_c02368{word-spacing:-11.637648px;}
.ws5_c02368{word-spacing:-11.305008px;}
.ws2_c02368{word-spacing:-11.266992px;}
.ws17_c02368{word-spacing:-2.159136px;}
.ws18_c02368{word-spacing:-1.083456px;}
.ws14_c02368{word-spacing:-1.012176px;}
.ws11_c02368{word-spacing:-0.974160px;}
.ws13_c02368{word-spacing:-0.118800px;}
.ws15_c02368{word-spacing:-0.099792px;}
.ws16_c02368{word-spacing:-0.085536px;}
.ws12_c02368{word-spacing:0.000000px;}
.ws1a_c02368{word-spacing:0.014256px;}
.ws19_c02368{word-spacing:0.432432px;}
.wsa_c02368{word-spacing:1.487376px;}
.wsc_c02368{word-spacing:33.300288px;}
.ws9_c02368{word-spacing:34.836912px;}
.ws8_c02368{word-spacing:36.143712px;}
.ws1_c02368{word-spacing:37.759392px;}
.ws0_c02368{word-spacing:38.020752px;}
.ws3_c02368{word-spacing:39.218256px;}
.wse_c02368{word-spacing:39.902544px;}
.wsf_c02368{word-spacing:42.026688px;}
._0_c02368{margin-left:-1.948320px;}
._2_c02368{width:1.482624px;}
._4_c02368{width:3.302640px;}
._6_c02368{width:14.355792px;}
._7_c02368{width:17.962560px;}
._5_c02368{width:21.184416px;}
._1_c02368{width:50.252400px;}
._3_c02368{width:51.530688px;}
.fc0_c02368{color:rgb(0,0,0);}
.fs0_c02368{font-size:47.520000px;}
.fs1_c02368{font-size:60.480000px;}
.y0_c02368{bottom:0.000000px;}
.y1a_c02368{bottom:146.998362px;}
.y1c_c02368{bottom:186.600234px;}
.y1b_c02368{bottom:196.320450px;}
.y19_c02368{bottom:275.878542px;}
.y18_c02368{bottom:356.878758px;}
.y16_c02368{bottom:406.559730px;}
.y12_c02368{bottom:424.560306px;}
.y17_c02368{bottom:458.759262px;}
.y15_c02368{bottom:491.879514px;}
.y14_c02368{bottom:509.880090px;}
.y11_c02368{bottom:543.000342px;}
.y13_c02368{bottom:559.559874px;}
.y10_c02368{bottom:577.560450px;}
.y1d_c02368{bottom:614.280450px;}
.yc_c02368{bottom:652.438650px;}
.yb_c02368{bottom:667.558326px;}
.ye_c02368{bottom:707.160234px;}
.yd_c02368{bottom:716.880450px;}
.ya_c02368{bottom:796.438506px;}
.y9_c02368{bottom:877.438722px;}
.y7_c02368{bottom:926.759730px;}
.y3_c02368{bottom:944.760306px;}
.y8_c02368{bottom:979.319226px;}
.y6_c02368{bottom:1012.439478px;}
.y5_c02368{bottom:1030.440054px;}
.y2_c02368{bottom:1063.560306px;}
.y4_c02368{bottom:1079.759874px;}
.y1_c02368{bottom:1097.760450px;}
.yf_c02368{bottom:1134.840450px;}
.h3_c02368{height:32.530781px;}
.h1_c02368{height:41.696016px;}
.h2_c02368{height:41.812031px;}
.h4_c02368{height:54.654737px;}
.h0_c02368{height:1263.000000px;}
.w1_c02368{width:892.500000px;}
.w0_c02368{width:892.830000px;}
.x0_c02368{left:0.000000px;}
.xe_c02368{left:117.000000px;}
.x8_c02368{left:441.001044px;}
.x4_c02368{left:445.680576px;}
.xc_c02368{left:451.080000px;}
.x7_c02368{left:455.400792px;}
.x5_c02368{left:461.880144px;}
.x1_c02368{left:463.320000px;}
.xa_c02368{left:483.481548px;}
.x9_c02368{left:492.120684px;}
.x6_c02368{left:493.200576px;}
.xd_c02368{left:506.880360px;}
.x3_c02368{left:511.919892px;}
.x2_c02368{left:526.679604px;}
.xb_c02368{left:569.881224px;}
@media print{
.v0_c02368{vertical-align:0.000000pt;}
.v1_c02368{vertical-align:1.279488pt;}
.lsf_c02368{letter-spacing:-0.713856pt;}
.ls14_c02368{letter-spacing:-0.705408pt;}
.ls7_c02368{letter-spacing:-0.544896pt;}
.ls9_c02368{letter-spacing:-0.511104pt;}
.ls15_c02368{letter-spacing:-0.333696pt;}
.ls10_c02368{letter-spacing:-0.244992pt;}
.lsd_c02368{letter-spacing:-0.232320pt;}
.ls6_c02368{letter-spacing:-0.215424pt;}
.ls3_c02368{letter-spacing:-0.105600pt;}
.ls13_c02368{letter-spacing:0.000000pt;}
.ls0_c02368{letter-spacing:0.005376pt;}
.ls5_c02368{letter-spacing:0.114048pt;}
.lsb_c02368{letter-spacing:0.451968pt;}
.ls12_c02368{letter-spacing:0.456960pt;}
.lse_c02368{letter-spacing:0.477312pt;}
.lsa_c02368{letter-spacing:0.515328pt;}
.ls11_c02368{letter-spacing:0.528000pt;}
.ls8_c02368{letter-spacing:0.532224pt;}
.ls2_c02368{letter-spacing:0.544896pt;}
.lsc_c02368{letter-spacing:0.578688pt;}
.ls4_c02368{letter-spacing:0.637824pt;}
.ls1_c02368{letter-spacing:0.642048pt;}
.wsd_c02368{word-spacing:-13.445376pt;}
.wsb_c02368{word-spacing:-11.088000pt;}
.ws6_c02368{word-spacing:-11.075328pt;}
.ws10_c02368{word-spacing:-11.037312pt;}
.ws7_c02368{word-spacing:-11.011968pt;}
.ws4_c02368{word-spacing:-10.344576pt;}
.ws5_c02368{word-spacing:-10.048896pt;}
.ws2_c02368{word-spacing:-10.015104pt;}
.ws17_c02368{word-spacing:-1.919232pt;}
.ws18_c02368{word-spacing:-0.963072pt;}
.ws14_c02368{word-spacing:-0.899712pt;}
.ws11_c02368{word-spacing:-0.865920pt;}
.ws13_c02368{word-spacing:-0.105600pt;}
.ws15_c02368{word-spacing:-0.088704pt;}
.ws16_c02368{word-spacing:-0.076032pt;}
.ws12_c02368{word-spacing:0.000000pt;}
.ws1a_c02368{word-spacing:0.012672pt;}
.ws19_c02368{word-spacing:0.384384pt;}
.wsa_c02368{word-spacing:1.322112pt;}
.wsc_c02368{word-spacing:29.600256pt;}
.ws9_c02368{word-spacing:30.966144pt;}
.ws8_c02368{word-spacing:32.127744pt;}
.ws1_c02368{word-spacing:33.563904pt;}
.ws0_c02368{word-spacing:33.796224pt;}
.ws3_c02368{word-spacing:34.860672pt;}
.wse_c02368{word-spacing:35.468928pt;}
.wsf_c02368{word-spacing:37.357056pt;}
._0_c02368{margin-left:-1.731840pt;}
._2_c02368{width:1.317888pt;}
._4_c02368{width:2.935680pt;}
._6_c02368{width:12.760704pt;}
._7_c02368{width:15.966720pt;}
._5_c02368{width:18.830592pt;}
._1_c02368{width:44.668800pt;}
._3_c02368{width:45.805056pt;}
.fs0_c02368{font-size:42.240000pt;}
.fs1_c02368{font-size:53.760000pt;}
.y0_c02368{bottom:0.000000pt;}
.y1a_c02368{bottom:130.665211pt;}
.y1c_c02368{bottom:165.866875pt;}
.y1b_c02368{bottom:174.507067pt;}
.y19_c02368{bottom:245.225371pt;}
.y18_c02368{bottom:317.225563pt;}
.y16_c02368{bottom:361.386427pt;}
.y12_c02368{bottom:377.386939pt;}
.y17_c02368{bottom:407.786011pt;}
.y15_c02368{bottom:437.226235pt;}
.y14_c02368{bottom:453.226747pt;}
.y11_c02368{bottom:482.666971pt;}
.y13_c02368{bottom:497.386555pt;}
.y10_c02368{bottom:513.387067pt;}
.y1d_c02368{bottom:546.027067pt;}
.yc_c02368{bottom:579.945467pt;}
.yb_c02368{bottom:593.385179pt;}
.ye_c02368{bottom:628.586875pt;}
.yd_c02368{bottom:637.227067pt;}
.ya_c02368{bottom:707.945339pt;}
.y9_c02368{bottom:779.945531pt;}
.y7_c02368{bottom:823.786427pt;}
.y3_c02368{bottom:839.786939pt;}
.y8_c02368{bottom:870.505979pt;}
.y6_c02368{bottom:899.946203pt;}
.y5_c02368{bottom:915.946715pt;}
.y2_c02368{bottom:945.386939pt;}
.y4_c02368{bottom:959.786555pt;}
.y1_c02368{bottom:975.787067pt;}
.yf_c02368{bottom:1008.747067pt;}
.h3_c02368{height:28.916250pt;}
.h1_c02368{height:37.063125pt;}
.h2_c02368{height:37.166250pt;}
.h4_c02368{height:48.581988pt;}
.h0_c02368{height:1122.666667pt;}
.w1_c02368{width:793.333333pt;}
.w0_c02368{width:793.626667pt;}
.x0_c02368{left:0.000000pt;}
.xe_c02368{left:104.000000pt;}
.x8_c02368{left:392.000928pt;}
.x4_c02368{left:396.160512pt;}
.xc_c02368{left:400.960000pt;}
.x7_c02368{left:404.800704pt;}
.x5_c02368{left:410.560128pt;}
.x1_c02368{left:411.840000pt;}
.xa_c02368{left:429.761376pt;}
.x9_c02368{left:437.440608pt;}
.x6_c02368{left:438.400512pt;}
.xd_c02368{left:450.560320pt;}
.x3_c02368{left:455.039904pt;}
.x2_c02368{left:468.159648pt;}
.xb_c02368{left:506.561088pt;}
}





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

.ir_c02369:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02369{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02369;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02369{font-family:ff1_c02369;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02369;src:url('chunks/assets/font_54b03fd93b75edb4f29ae40f.woff2')format("woff");}.ff2_c02369{font-family:ff2_c02369;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02369;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02369{font-family:ff3_c02369;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02369{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02369{vertical-align:0.000000px;}
.v1_c02369{vertical-align:1.439424px;}
.ls15_c02369{letter-spacing:-0.793584px;}
.ls14_c02369{letter-spacing:-0.722304px;}
.ls7_c02369{letter-spacing:-0.613008px;}
.ls9_c02369{letter-spacing:-0.574992px;}
.ls10_c02369{letter-spacing:-0.275616px;}
.lsc_c02369{letter-spacing:-0.261360px;}
.ls6_c02369{letter-spacing:-0.242352px;}
.ls3_c02369{letter-spacing:-0.118800px;}
.lse_c02369{letter-spacing:-0.047520px;}
.ls13_c02369{letter-spacing:0.000000px;}
.ls1_c02369{letter-spacing:0.006048px;}
.ls5_c02369{letter-spacing:0.128304px;}
.lsd_c02369{letter-spacing:0.209088px;}
.lsb_c02369{letter-spacing:0.508464px;}
.ls12_c02369{letter-spacing:0.514080px;}
.lsf_c02369{letter-spacing:0.536976px;}
.lsa_c02369{letter-spacing:0.579744px;}
.ls11_c02369{letter-spacing:0.594000px;}
.ls8_c02369{letter-spacing:0.598752px;}
.ls2_c02369{letter-spacing:0.613008px;}
.ls4_c02369{letter-spacing:0.717552px;}
.ls0_c02369{letter-spacing:0.722304px;}
.sc__c02369{text-shadow:none;}
.sc0_c02369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02369{-webkit-text-stroke:0px transparent;}
.sc0_c02369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02369{word-spacing:-15.126048px;}
.wsb_c02369{word-spacing:-12.474000px;}
.wsf_c02369{word-spacing:-12.459744px;}
.wsa_c02369{word-spacing:-12.416976px;}
.ws7_c02369{word-spacing:-12.388464px;}
.ws4_c02369{word-spacing:-11.637648px;}
.ws2_c02369{word-spacing:-11.266992px;}
.ws17_c02369{word-spacing:-2.159136px;}
.ws13_c02369{word-spacing:-1.083456px;}
.ws10_c02369{word-spacing:-0.974160px;}
.ws15_c02369{word-spacing:-0.313632px;}
.ws12_c02369{word-spacing:-0.118800px;}
.ws14_c02369{word-spacing:-0.099792px;}
.ws16_c02369{word-spacing:-0.085536px;}
.ws11_c02369{word-spacing:0.000000px;}
.ws18_c02369{word-spacing:0.361152px;}
.ws19_c02369{word-spacing:0.432432px;}
.wsc_c02369{word-spacing:33.300288px;}
.ws8_c02369{word-spacing:36.143712px;}
.ws6_c02369{word-spacing:36.742464px;}
.ws1_c02369{word-spacing:37.759392px;}
.ws0_c02369{word-spacing:38.020752px;}
.ws3_c02369{word-spacing:39.218256px;}
.ws5_c02369{word-spacing:39.902544px;}
.wse_c02369{word-spacing:42.026688px;}
.ws9_c02369{word-spacing:57.903120px;}
._0_c02369{margin-left:-1.948320px;}
._2_c02369{width:1.482624px;}
._4_c02369{width:3.302640px;}
._1_c02369{width:50.252400px;}
._3_c02369{width:51.530688px;}
._6_c02369{width:66.204864px;}
._5_c02369{width:72.030816px;}
.fc0_c02369{color:rgb(0,0,0);}
.fs0_c02369{font-size:47.520000px;}
.fs1_c02369{font-size:60.480000px;}
.y0_c02369{bottom:0.000000px;}
.y1a_c02369{bottom:146.998362px;}
.y1c_c02369{bottom:186.600234px;}
.y1b_c02369{bottom:196.320450px;}
.y19_c02369{bottom:275.878542px;}
.y18_c02369{bottom:356.878758px;}
.y16_c02369{bottom:406.559730px;}
.y12_c02369{bottom:424.560306px;}
.y17_c02369{bottom:458.759262px;}
.y15_c02369{bottom:491.879514px;}
.y14_c02369{bottom:509.880090px;}
.y11_c02369{bottom:543.000342px;}
.y13_c02369{bottom:559.559874px;}
.y10_c02369{bottom:577.560450px;}
.y1d_c02369{bottom:614.280450px;}
.yc_c02369{bottom:667.558326px;}
.ye_c02369{bottom:707.160234px;}
.yd_c02369{bottom:716.880450px;}
.yb_c02369{bottom:781.318830px;}
.ya_c02369{bottom:796.438506px;}
.y9_c02369{bottom:877.438722px;}
.y7_c02369{bottom:926.759730px;}
.y3_c02369{bottom:944.760306px;}
.y8_c02369{bottom:979.319226px;}
.y6_c02369{bottom:1012.439478px;}
.y5_c02369{bottom:1030.440054px;}
.y2_c02369{bottom:1063.560306px;}
.y4_c02369{bottom:1079.759874px;}
.y1_c02369{bottom:1097.760450px;}
.yf_c02369{bottom:1134.840450px;}
.h3_c02369{height:32.530781px;}
.h1_c02369{height:41.696016px;}
.h2_c02369{height:41.812031px;}
.h4_c02369{height:54.654737px;}
.h0_c02369{height:1263.000000px;}
.w1_c02369{width:892.500000px;}
.w0_c02369{width:892.830000px;}
.x0_c02369{left:0.000000px;}
.xe_c02369{left:117.000000px;}
.x8_c02369{left:440.999856px;}
.x4_c02369{left:445.680576px;}
.xc_c02369{left:451.080000px;}
.x7_c02369{left:455.399604px;}
.x5_c02369{left:461.880144px;}
.x1_c02369{left:463.320000px;}
.xb_c02369{left:483.480360px;}
.x9_c02369{left:492.119496px;}
.x6_c02369{left:493.200576px;}
.xd_c02369{left:506.880360px;}
.x3_c02369{left:511.919892px;}
.x2_c02369{left:526.679604px;}
.xa_c02369{left:569.880036px;}
@media print{
.v0_c02369{vertical-align:0.000000pt;}
.v1_c02369{vertical-align:1.279488pt;}
.ls15_c02369{letter-spacing:-0.705408pt;}
.ls14_c02369{letter-spacing:-0.642048pt;}
.ls7_c02369{letter-spacing:-0.544896pt;}
.ls9_c02369{letter-spacing:-0.511104pt;}
.ls10_c02369{letter-spacing:-0.244992pt;}
.lsc_c02369{letter-spacing:-0.232320pt;}
.ls6_c02369{letter-spacing:-0.215424pt;}
.ls3_c02369{letter-spacing:-0.105600pt;}
.lse_c02369{letter-spacing:-0.042240pt;}
.ls13_c02369{letter-spacing:0.000000pt;}
.ls1_c02369{letter-spacing:0.005376pt;}
.ls5_c02369{letter-spacing:0.114048pt;}
.lsd_c02369{letter-spacing:0.185856pt;}
.lsb_c02369{letter-spacing:0.451968pt;}
.ls12_c02369{letter-spacing:0.456960pt;}
.lsf_c02369{letter-spacing:0.477312pt;}
.lsa_c02369{letter-spacing:0.515328pt;}
.ls11_c02369{letter-spacing:0.528000pt;}
.ls8_c02369{letter-spacing:0.532224pt;}
.ls2_c02369{letter-spacing:0.544896pt;}
.ls4_c02369{letter-spacing:0.637824pt;}
.ls0_c02369{letter-spacing:0.642048pt;}
.wsd_c02369{word-spacing:-13.445376pt;}
.wsb_c02369{word-spacing:-11.088000pt;}
.wsf_c02369{word-spacing:-11.075328pt;}
.wsa_c02369{word-spacing:-11.037312pt;}
.ws7_c02369{word-spacing:-11.011968pt;}
.ws4_c02369{word-spacing:-10.344576pt;}
.ws2_c02369{word-spacing:-10.015104pt;}
.ws17_c02369{word-spacing:-1.919232pt;}
.ws13_c02369{word-spacing:-0.963072pt;}
.ws10_c02369{word-spacing:-0.865920pt;}
.ws15_c02369{word-spacing:-0.278784pt;}
.ws12_c02369{word-spacing:-0.105600pt;}
.ws14_c02369{word-spacing:-0.088704pt;}
.ws16_c02369{word-spacing:-0.076032pt;}
.ws11_c02369{word-spacing:0.000000pt;}
.ws18_c02369{word-spacing:0.321024pt;}
.ws19_c02369{word-spacing:0.384384pt;}
.wsc_c02369{word-spacing:29.600256pt;}
.ws8_c02369{word-spacing:32.127744pt;}
.ws6_c02369{word-spacing:32.659968pt;}
.ws1_c02369{word-spacing:33.563904pt;}
.ws0_c02369{word-spacing:33.796224pt;}
.ws3_c02369{word-spacing:34.860672pt;}
.ws5_c02369{word-spacing:35.468928pt;}
.wse_c02369{word-spacing:37.357056pt;}
.ws9_c02369{word-spacing:51.469440pt;}
._0_c02369{margin-left:-1.731840pt;}
._2_c02369{width:1.317888pt;}
._4_c02369{width:2.935680pt;}
._1_c02369{width:44.668800pt;}
._3_c02369{width:45.805056pt;}
._6_c02369{width:58.848768pt;}
._5_c02369{width:64.027392pt;}
.fs0_c02369{font-size:42.240000pt;}
.fs1_c02369{font-size:53.760000pt;}
.y0_c02369{bottom:0.000000pt;}
.y1a_c02369{bottom:130.665211pt;}
.y1c_c02369{bottom:165.866875pt;}
.y1b_c02369{bottom:174.507067pt;}
.y19_c02369{bottom:245.225371pt;}
.y18_c02369{bottom:317.225563pt;}
.y16_c02369{bottom:361.386427pt;}
.y12_c02369{bottom:377.386939pt;}
.y17_c02369{bottom:407.786011pt;}
.y15_c02369{bottom:437.226235pt;}
.y14_c02369{bottom:453.226747pt;}
.y11_c02369{bottom:482.666971pt;}
.y13_c02369{bottom:497.386555pt;}
.y10_c02369{bottom:513.387067pt;}
.y1d_c02369{bottom:546.027067pt;}
.yc_c02369{bottom:593.385179pt;}
.ye_c02369{bottom:628.586875pt;}
.yd_c02369{bottom:637.227067pt;}
.yb_c02369{bottom:694.505627pt;}
.ya_c02369{bottom:707.945339pt;}
.y9_c02369{bottom:779.945531pt;}
.y7_c02369{bottom:823.786427pt;}
.y3_c02369{bottom:839.786939pt;}
.y8_c02369{bottom:870.505979pt;}
.y6_c02369{bottom:899.946203pt;}
.y5_c02369{bottom:915.946715pt;}
.y2_c02369{bottom:945.386939pt;}
.y4_c02369{bottom:959.786555pt;}
.y1_c02369{bottom:975.787067pt;}
.yf_c02369{bottom:1008.747067pt;}
.h3_c02369{height:28.916250pt;}
.h1_c02369{height:37.063125pt;}
.h2_c02369{height:37.166250pt;}
.h4_c02369{height:48.581988pt;}
.h0_c02369{height:1122.666667pt;}
.w1_c02369{width:793.333333pt;}
.w0_c02369{width:793.626667pt;}
.x0_c02369{left:0.000000pt;}
.xe_c02369{left:104.000000pt;}
.x8_c02369{left:391.999872pt;}
.x4_c02369{left:396.160512pt;}
.xc_c02369{left:400.960000pt;}
.x7_c02369{left:404.799648pt;}
.x5_c02369{left:410.560128pt;}
.x1_c02369{left:411.840000pt;}
.xb_c02369{left:429.760320pt;}
.x9_c02369{left:437.439552pt;}
.x6_c02369{left:438.400512pt;}
.xd_c02369{left:450.560320pt;}
.x3_c02369{left:455.039904pt;}
.x2_c02369{left:468.159648pt;}
.xa_c02369{left:506.560032pt;}
}





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

.ir_c02370:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02370{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02370;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02370{font-family:ff1_c02370;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02370;src:url('chunks/assets/font_6341df0f4b85a52769bf9f67.woff2')format("woff");}.ff2_c02370{font-family:ff2_c02370;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02370;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02370{font-family:ff3_c02370;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02370{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02370{vertical-align:0.000000px;}
.v1_c02370{vertical-align:1.439424px;}
.ls8_c02370{letter-spacing:-0.841104px;}
.ls11_c02370{letter-spacing:-0.793584px;}
.ls16_c02370{letter-spacing:-0.613008px;}
.ls9_c02370{letter-spacing:-0.574992px;}
.lsf_c02370{letter-spacing:-0.361152px;}
.ls12_c02370{letter-spacing:-0.275616px;}
.lse_c02370{letter-spacing:-0.261360px;}
.ls6_c02370{letter-spacing:-0.242352px;}
.ls3_c02370{letter-spacing:-0.118800px;}
.ls15_c02370{letter-spacing:0.000000px;}
.ls1_c02370{letter-spacing:0.006048px;}
.ls5_c02370{letter-spacing:0.128304px;}
.lsc_c02370{letter-spacing:0.242352px;}
.lsb_c02370{letter-spacing:0.508464px;}
.ls14_c02370{letter-spacing:0.514080px;}
.ls10_c02370{letter-spacing:0.536976px;}
.lsa_c02370{letter-spacing:0.579744px;}
.ls13_c02370{letter-spacing:0.594000px;}
.ls7_c02370{letter-spacing:0.598752px;}
.ls2_c02370{letter-spacing:0.613008px;}
.ls17_c02370{letter-spacing:0.651024px;}
.lsd_c02370{letter-spacing:0.684288px;}
.ls4_c02370{letter-spacing:0.717552px;}
.ls0_c02370{letter-spacing:0.722304px;}
.sc__c02370{text-shadow:none;}
.sc0_c02370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02370{-webkit-text-stroke:0px transparent;}
.sc0_c02370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02370{word-spacing:-15.126048px;}
.wsa_c02370{word-spacing:-12.474000px;}
.wsf_c02370{word-spacing:-12.388464px;}
.wse_c02370{word-spacing:-11.305008px;}
.wsd_c02370{word-spacing:-11.266992px;}
.ws18_c02370{word-spacing:-2.159136px;}
.ws14_c02370{word-spacing:-1.083456px;}
.ws15_c02370{word-spacing:-1.045440px;}
.ws19_c02370{word-spacing:-1.012176px;}
.ws10_c02370{word-spacing:-0.974160px;}
.ws12_c02370{word-spacing:-0.118800px;}
.ws16_c02370{word-spacing:-0.099792px;}
.ws17_c02370{word-spacing:-0.085536px;}
.ws11_c02370{word-spacing:0.000000px;}
.ws13_c02370{word-spacing:0.479952px;}
.ws9_c02370{word-spacing:1.468368px;}
.ws2_c02370{word-spacing:8.045136px;}
.wsb_c02370{word-spacing:33.300288px;}
.ws8_c02370{word-spacing:34.836912px;}
.ws7_c02370{word-spacing:36.143712px;}
.ws5_c02370{word-spacing:36.742464px;}
.ws1_c02370{word-spacing:37.759392px;}
.ws0_c02370{word-spacing:38.020752px;}
.ws3_c02370{word-spacing:39.218256px;}
.ws4_c02370{word-spacing:39.902544px;}
.ws6_c02370{word-spacing:42.026688px;}
._0_c02370{margin-left:-1.948320px;}
._2_c02370{width:1.482624px;}
._8_c02370{width:2.523312px;}
._4_c02370{width:3.839616px;}
._6_c02370{width:14.336784px;}
._7_c02370{width:18.908208px;}
._5_c02370{width:20.885040px;}
._1_c02370{width:50.252400px;}
._3_c02370{width:51.530688px;}
.fc0_c02370{color:rgb(0,0,0);}
.fs0_c02370{font-size:47.520000px;}
.fs1_c02370{font-size:60.480000px;}
.y0_c02370{bottom:0.000000px;}
.y1b_c02370{bottom:131.878686px;}
.y1a_c02370{bottom:146.998362px;}
.y1d_c02370{bottom:186.600234px;}
.y1c_c02370{bottom:196.320450px;}
.y19_c02370{bottom:275.878542px;}
.y18_c02370{bottom:356.878758px;}
.y16_c02370{bottom:406.559730px;}
.y12_c02370{bottom:424.560306px;}
.y17_c02370{bottom:458.759262px;}
.y15_c02370{bottom:491.879514px;}
.y14_c02370{bottom:509.880090px;}
.y11_c02370{bottom:543.000342px;}
.y13_c02370{bottom:559.559874px;}
.y10_c02370{bottom:577.560450px;}
.y1e_c02370{bottom:614.280450px;}
.yc_c02370{bottom:652.438650px;}
.yb_c02370{bottom:667.558326px;}
.ye_c02370{bottom:707.160234px;}
.yd_c02370{bottom:716.880450px;}
.ya_c02370{bottom:796.438506px;}
.y9_c02370{bottom:877.438722px;}
.y7_c02370{bottom:926.759730px;}
.y3_c02370{bottom:944.760306px;}
.y8_c02370{bottom:979.319226px;}
.y6_c02370{bottom:1012.439478px;}
.y5_c02370{bottom:1030.440054px;}
.y2_c02370{bottom:1063.560306px;}
.y4_c02370{bottom:1079.759874px;}
.y1_c02370{bottom:1097.760450px;}
.yf_c02370{bottom:1134.840450px;}
.h3_c02370{height:32.530781px;}
.h1_c02370{height:41.696016px;}
.h2_c02370{height:41.812031px;}
.h4_c02370{height:54.654737px;}
.h0_c02370{height:1263.000000px;}
.w1_c02370{width:892.500000px;}
.w0_c02370{width:892.830000px;}
.x0_c02370{left:0.000000px;}
.xe_c02370{left:117.000000px;}
.x8_c02370{left:440.999856px;}
.x4_c02370{left:445.680576px;}
.xc_c02370{left:451.080000px;}
.x7_c02370{left:455.399604px;}
.x5_c02370{left:461.880144px;}
.x1_c02370{left:463.320000px;}
.xa_c02370{left:483.480360px;}
.x9_c02370{left:492.119496px;}
.x6_c02370{left:493.200576px;}
.xd_c02370{left:506.880360px;}
.x3_c02370{left:511.919892px;}
.x2_c02370{left:526.679604px;}
.xb_c02370{left:569.880036px;}
@media print{
.v0_c02370{vertical-align:0.000000pt;}
.v1_c02370{vertical-align:1.279488pt;}
.ls8_c02370{letter-spacing:-0.747648pt;}
.ls11_c02370{letter-spacing:-0.705408pt;}
.ls16_c02370{letter-spacing:-0.544896pt;}
.ls9_c02370{letter-spacing:-0.511104pt;}
.lsf_c02370{letter-spacing:-0.321024pt;}
.ls12_c02370{letter-spacing:-0.244992pt;}
.lse_c02370{letter-spacing:-0.232320pt;}
.ls6_c02370{letter-spacing:-0.215424pt;}
.ls3_c02370{letter-spacing:-0.105600pt;}
.ls15_c02370{letter-spacing:0.000000pt;}
.ls1_c02370{letter-spacing:0.005376pt;}
.ls5_c02370{letter-spacing:0.114048pt;}
.lsc_c02370{letter-spacing:0.215424pt;}
.lsb_c02370{letter-spacing:0.451968pt;}
.ls14_c02370{letter-spacing:0.456960pt;}
.ls10_c02370{letter-spacing:0.477312pt;}
.lsa_c02370{letter-spacing:0.515328pt;}
.ls13_c02370{letter-spacing:0.528000pt;}
.ls7_c02370{letter-spacing:0.532224pt;}
.ls2_c02370{letter-spacing:0.544896pt;}
.ls17_c02370{letter-spacing:0.578688pt;}
.lsd_c02370{letter-spacing:0.608256pt;}
.ls4_c02370{letter-spacing:0.637824pt;}
.ls0_c02370{letter-spacing:0.642048pt;}
.wsc_c02370{word-spacing:-13.445376pt;}
.wsa_c02370{word-spacing:-11.088000pt;}
.wsf_c02370{word-spacing:-11.011968pt;}
.wse_c02370{word-spacing:-10.048896pt;}
.wsd_c02370{word-spacing:-10.015104pt;}
.ws18_c02370{word-spacing:-1.919232pt;}
.ws14_c02370{word-spacing:-0.963072pt;}
.ws15_c02370{word-spacing:-0.929280pt;}
.ws19_c02370{word-spacing:-0.899712pt;}
.ws10_c02370{word-spacing:-0.865920pt;}
.ws12_c02370{word-spacing:-0.105600pt;}
.ws16_c02370{word-spacing:-0.088704pt;}
.ws17_c02370{word-spacing:-0.076032pt;}
.ws11_c02370{word-spacing:0.000000pt;}
.ws13_c02370{word-spacing:0.426624pt;}
.ws9_c02370{word-spacing:1.305216pt;}
.ws2_c02370{word-spacing:7.151232pt;}
.wsb_c02370{word-spacing:29.600256pt;}
.ws8_c02370{word-spacing:30.966144pt;}
.ws7_c02370{word-spacing:32.127744pt;}
.ws5_c02370{word-spacing:32.659968pt;}
.ws1_c02370{word-spacing:33.563904pt;}
.ws0_c02370{word-spacing:33.796224pt;}
.ws3_c02370{word-spacing:34.860672pt;}
.ws4_c02370{word-spacing:35.468928pt;}
.ws6_c02370{word-spacing:37.357056pt;}
._0_c02370{margin-left:-1.731840pt;}
._2_c02370{width:1.317888pt;}
._8_c02370{width:2.242944pt;}
._4_c02370{width:3.412992pt;}
._6_c02370{width:12.743808pt;}
._7_c02370{width:16.807296pt;}
._5_c02370{width:18.564480pt;}
._1_c02370{width:44.668800pt;}
._3_c02370{width:45.805056pt;}
.fs0_c02370{font-size:42.240000pt;}
.fs1_c02370{font-size:53.760000pt;}
.y0_c02370{bottom:0.000000pt;}
.y1b_c02370{bottom:117.225499pt;}
.y1a_c02370{bottom:130.665211pt;}
.y1d_c02370{bottom:165.866875pt;}
.y1c_c02370{bottom:174.507067pt;}
.y19_c02370{bottom:245.225371pt;}
.y18_c02370{bottom:317.225563pt;}
.y16_c02370{bottom:361.386427pt;}
.y12_c02370{bottom:377.386939pt;}
.y17_c02370{bottom:407.786011pt;}
.y15_c02370{bottom:437.226235pt;}
.y14_c02370{bottom:453.226747pt;}
.y11_c02370{bottom:482.666971pt;}
.y13_c02370{bottom:497.386555pt;}
.y10_c02370{bottom:513.387067pt;}
.y1e_c02370{bottom:546.027067pt;}
.yc_c02370{bottom:579.945467pt;}
.yb_c02370{bottom:593.385179pt;}
.ye_c02370{bottom:628.586875pt;}
.yd_c02370{bottom:637.227067pt;}
.ya_c02370{bottom:707.945339pt;}
.y9_c02370{bottom:779.945531pt;}
.y7_c02370{bottom:823.786427pt;}
.y3_c02370{bottom:839.786939pt;}
.y8_c02370{bottom:870.505979pt;}
.y6_c02370{bottom:899.946203pt;}
.y5_c02370{bottom:915.946715pt;}
.y2_c02370{bottom:945.386939pt;}
.y4_c02370{bottom:959.786555pt;}
.y1_c02370{bottom:975.787067pt;}
.yf_c02370{bottom:1008.747067pt;}
.h3_c02370{height:28.916250pt;}
.h1_c02370{height:37.063125pt;}
.h2_c02370{height:37.166250pt;}
.h4_c02370{height:48.581988pt;}
.h0_c02370{height:1122.666667pt;}
.w1_c02370{width:793.333333pt;}
.w0_c02370{width:793.626667pt;}
.x0_c02370{left:0.000000pt;}
.xe_c02370{left:104.000000pt;}
.x8_c02370{left:391.999872pt;}
.x4_c02370{left:396.160512pt;}
.xc_c02370{left:400.960000pt;}
.x7_c02370{left:404.799648pt;}
.x5_c02370{left:410.560128pt;}
.x1_c02370{left:411.840000pt;}
.xa_c02370{left:429.760320pt;}
.x9_c02370{left:437.439552pt;}
.x6_c02370{left:438.400512pt;}
.xd_c02370{left:450.560320pt;}
.x3_c02370{left:455.039904pt;}
.x2_c02370{left:468.159648pt;}
.xb_c02370{left:506.560032pt;}
}





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

.ir_c02371:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02371{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02371;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02371{font-family:ff1_c02371;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02371;src:url('chunks/assets/font_d41354ed1b59265b2af87214.woff2')format("woff");}.ff2_c02371{font-family:ff2_c02371;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02371;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02371{font-family:ff3_c02371;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02371{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02371{vertical-align:0.000000px;}
.v1_c02371{vertical-align:1.439424px;}
.lsd_c02371{letter-spacing:-1.197504px;}
.ls9_c02371{letter-spacing:-0.784080px;}
.ls14_c02371{letter-spacing:-0.755568px;}
.lsa_c02371{letter-spacing:-0.574992px;}
.ls10_c02371{letter-spacing:-0.275616px;}
.lse_c02371{letter-spacing:-0.261360px;}
.ls6_c02371{letter-spacing:-0.242352px;}
.ls3_c02371{letter-spacing:-0.118800px;}
.ls13_c02371{letter-spacing:0.000000px;}
.ls1_c02371{letter-spacing:0.006048px;}
.ls5_c02371{letter-spacing:0.128304px;}
.ls7_c02371{letter-spacing:0.242352px;}
.lsc_c02371{letter-spacing:0.508464px;}
.ls12_c02371{letter-spacing:0.514080px;}
.lsf_c02371{letter-spacing:0.536976px;}
.lsb_c02371{letter-spacing:0.579744px;}
.ls11_c02371{letter-spacing:0.594000px;}
.ls8_c02371{letter-spacing:0.598752px;}
.ls2_c02371{letter-spacing:0.613008px;}
.ls4_c02371{letter-spacing:0.717552px;}
.ls0_c02371{letter-spacing:0.722304px;}
.sc__c02371{text-shadow:none;}
.sc0_c02371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02371{-webkit-text-stroke:0px transparent;}
.sc0_c02371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02371{word-spacing:-15.126048px;}
.ws9_c02371{word-spacing:-12.474000px;}
.ws7_c02371{word-spacing:-12.459744px;}
.ws8_c02371{word-spacing:-12.416976px;}
.ws2_c02371{word-spacing:-12.122352px;}
.wsc_c02371{word-spacing:-11.124432px;}
.ws15_c02371{word-spacing:-2.159136px;}
.ws11_c02371{word-spacing:-1.083456px;}
.wsd_c02371{word-spacing:-0.974160px;}
.wsf_c02371{word-spacing:-0.118800px;}
.ws13_c02371{word-spacing:-0.099792px;}
.ws14_c02371{word-spacing:-0.085536px;}
.wse_c02371{word-spacing:0.000000px;}
.ws10_c02371{word-spacing:0.422928px;}
.ws12_c02371{word-spacing:0.836352px;}
.wsa_c02371{word-spacing:33.300288px;}
.ws5_c02371{word-spacing:36.742464px;}
.ws1_c02371{word-spacing:37.759392px;}
.ws0_c02371{word-spacing:38.020752px;}
.ws3_c02371{word-spacing:39.218256px;}
.ws4_c02371{word-spacing:39.902544px;}
.ws6_c02371{word-spacing:42.026688px;}
._0_c02371{margin-left:-1.948320px;}
._2_c02371{width:1.482624px;}
._4_c02371{width:3.483216px;}
._1_c02371{width:50.252400px;}
._3_c02371{width:51.530688px;}
.fc0_c02371{color:rgb(0,0,0);}
.fs0_c02371{font-size:47.520000px;}
.fs1_c02371{font-size:60.480000px;}
.y0_c02371{bottom:0.000000px;}
.y19_c02371{bottom:146.998362px;}
.y1b_c02371{bottom:186.600234px;}
.y1a_c02371{bottom:196.320450px;}
.y18_c02371{bottom:275.878542px;}
.y17_c02371{bottom:356.878758px;}
.y15_c02371{bottom:406.559730px;}
.y11_c02371{bottom:424.560306px;}
.y16_c02371{bottom:458.759262px;}
.y14_c02371{bottom:491.879514px;}
.y13_c02371{bottom:509.880090px;}
.y10_c02371{bottom:543.000342px;}
.y12_c02371{bottom:559.559874px;}
.yf_c02371{bottom:577.560450px;}
.y1c_c02371{bottom:614.280450px;}
.yb_c02371{bottom:667.558326px;}
.yd_c02371{bottom:707.160234px;}
.yc_c02371{bottom:716.880450px;}
.ya_c02371{bottom:796.438506px;}
.y9_c02371{bottom:877.438722px;}
.y7_c02371{bottom:926.759730px;}
.y3_c02371{bottom:944.760306px;}
.y8_c02371{bottom:979.319226px;}
.y6_c02371{bottom:1012.439478px;}
.y5_c02371{bottom:1030.440054px;}
.y2_c02371{bottom:1063.560306px;}
.y4_c02371{bottom:1079.759874px;}
.y1_c02371{bottom:1097.760450px;}
.ye_c02371{bottom:1134.840450px;}
.h3_c02371{height:32.530781px;}
.h1_c02371{height:41.696016px;}
.h2_c02371{height:41.812031px;}
.h4_c02371{height:54.654737px;}
.h0_c02371{height:1263.000000px;}
.w1_c02371{width:892.500000px;}
.w0_c02371{width:892.830000px;}
.x0_c02371{left:0.000000px;}
.xd_c02371{left:117.000000px;}
.x8_c02371{left:440.999856px;}
.x4_c02371{left:445.680576px;}
.xb_c02371{left:451.080000px;}
.x7_c02371{left:455.399604px;}
.x5_c02371{left:461.880144px;}
.x1_c02371{left:463.320000px;}
.xa_c02371{left:483.480360px;}
.x9_c02371{left:492.119496px;}
.x6_c02371{left:493.200576px;}
.xc_c02371{left:506.880360px;}
.x3_c02371{left:511.919892px;}
.x2_c02371{left:526.679604px;}
@media print{
.v0_c02371{vertical-align:0.000000pt;}
.v1_c02371{vertical-align:1.279488pt;}
.lsd_c02371{letter-spacing:-1.064448pt;}
.ls9_c02371{letter-spacing:-0.696960pt;}
.ls14_c02371{letter-spacing:-0.671616pt;}
.lsa_c02371{letter-spacing:-0.511104pt;}
.ls10_c02371{letter-spacing:-0.244992pt;}
.lse_c02371{letter-spacing:-0.232320pt;}
.ls6_c02371{letter-spacing:-0.215424pt;}
.ls3_c02371{letter-spacing:-0.105600pt;}
.ls13_c02371{letter-spacing:0.000000pt;}
.ls1_c02371{letter-spacing:0.005376pt;}
.ls5_c02371{letter-spacing:0.114048pt;}
.ls7_c02371{letter-spacing:0.215424pt;}
.lsc_c02371{letter-spacing:0.451968pt;}
.ls12_c02371{letter-spacing:0.456960pt;}
.lsf_c02371{letter-spacing:0.477312pt;}
.lsb_c02371{letter-spacing:0.515328pt;}
.ls11_c02371{letter-spacing:0.528000pt;}
.ls8_c02371{letter-spacing:0.532224pt;}
.ls2_c02371{letter-spacing:0.544896pt;}
.ls4_c02371{letter-spacing:0.637824pt;}
.ls0_c02371{letter-spacing:0.642048pt;}
.wsb_c02371{word-spacing:-13.445376pt;}
.ws9_c02371{word-spacing:-11.088000pt;}
.ws7_c02371{word-spacing:-11.075328pt;}
.ws8_c02371{word-spacing:-11.037312pt;}
.ws2_c02371{word-spacing:-10.775424pt;}
.wsc_c02371{word-spacing:-9.888384pt;}
.ws15_c02371{word-spacing:-1.919232pt;}
.ws11_c02371{word-spacing:-0.963072pt;}
.wsd_c02371{word-spacing:-0.865920pt;}
.wsf_c02371{word-spacing:-0.105600pt;}
.ws13_c02371{word-spacing:-0.088704pt;}
.ws14_c02371{word-spacing:-0.076032pt;}
.wse_c02371{word-spacing:0.000000pt;}
.ws10_c02371{word-spacing:0.375936pt;}
.ws12_c02371{word-spacing:0.743424pt;}
.wsa_c02371{word-spacing:29.600256pt;}
.ws5_c02371{word-spacing:32.659968pt;}
.ws1_c02371{word-spacing:33.563904pt;}
.ws0_c02371{word-spacing:33.796224pt;}
.ws3_c02371{word-spacing:34.860672pt;}
.ws4_c02371{word-spacing:35.468928pt;}
.ws6_c02371{word-spacing:37.357056pt;}
._0_c02371{margin-left:-1.731840pt;}
._2_c02371{width:1.317888pt;}
._4_c02371{width:3.096192pt;}
._1_c02371{width:44.668800pt;}
._3_c02371{width:45.805056pt;}
.fs0_c02371{font-size:42.240000pt;}
.fs1_c02371{font-size:53.760000pt;}
.y0_c02371{bottom:0.000000pt;}
.y19_c02371{bottom:130.665211pt;}
.y1b_c02371{bottom:165.866875pt;}
.y1a_c02371{bottom:174.507067pt;}
.y18_c02371{bottom:245.225371pt;}
.y17_c02371{bottom:317.225563pt;}
.y15_c02371{bottom:361.386427pt;}
.y11_c02371{bottom:377.386939pt;}
.y16_c02371{bottom:407.786011pt;}
.y14_c02371{bottom:437.226235pt;}
.y13_c02371{bottom:453.226747pt;}
.y10_c02371{bottom:482.666971pt;}
.y12_c02371{bottom:497.386555pt;}
.yf_c02371{bottom:513.387067pt;}
.y1c_c02371{bottom:546.027067pt;}
.yb_c02371{bottom:593.385179pt;}
.yd_c02371{bottom:628.586875pt;}
.yc_c02371{bottom:637.227067pt;}
.ya_c02371{bottom:707.945339pt;}
.y9_c02371{bottom:779.945531pt;}
.y7_c02371{bottom:823.786427pt;}
.y3_c02371{bottom:839.786939pt;}
.y8_c02371{bottom:870.505979pt;}
.y6_c02371{bottom:899.946203pt;}
.y5_c02371{bottom:915.946715pt;}
.y2_c02371{bottom:945.386939pt;}
.y4_c02371{bottom:959.786555pt;}
.y1_c02371{bottom:975.787067pt;}
.ye_c02371{bottom:1008.747067pt;}
.h3_c02371{height:28.916250pt;}
.h1_c02371{height:37.063125pt;}
.h2_c02371{height:37.166250pt;}
.h4_c02371{height:48.581988pt;}
.h0_c02371{height:1122.666667pt;}
.w1_c02371{width:793.333333pt;}
.w0_c02371{width:793.626667pt;}
.x0_c02371{left:0.000000pt;}
.xd_c02371{left:104.000000pt;}
.x8_c02371{left:391.999872pt;}
.x4_c02371{left:396.160512pt;}
.xb_c02371{left:400.960000pt;}
.x7_c02371{left:404.799648pt;}
.x5_c02371{left:410.560128pt;}
.x1_c02371{left:411.840000pt;}
.xa_c02371{left:429.760320pt;}
.x9_c02371{left:437.439552pt;}
.x6_c02371{left:438.400512pt;}
.xc_c02371{left:450.560320pt;}
.x3_c02371{left:455.039904pt;}
.x2_c02371{left:468.159648pt;}
}





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

.ir_c02372:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02372{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02372;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02372{font-family:ff1_c02372;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02372;src:url('chunks/assets/font_7790d99a419e2fadfa8d9571.woff2')format("woff");}.ff2_c02372{font-family:ff2_c02372;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02372;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02372{font-family:ff3_c02372;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02372{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02372{vertical-align:0.000000px;}
.v1_c02372{vertical-align:1.439424px;}
.lsd_c02372{letter-spacing:-1.197504px;}
.ls9_c02372{letter-spacing:-0.755568px;}
.lsa_c02372{letter-spacing:-0.574992px;}
.ls10_c02372{letter-spacing:-0.275616px;}
.lse_c02372{letter-spacing:-0.261360px;}
.ls6_c02372{letter-spacing:-0.242352px;}
.ls3_c02372{letter-spacing:-0.118800px;}
.ls13_c02372{letter-spacing:0.000000px;}
.ls1_c02372{letter-spacing:0.006048px;}
.ls5_c02372{letter-spacing:0.128304px;}
.ls7_c02372{letter-spacing:0.242352px;}
.lsc_c02372{letter-spacing:0.508464px;}
.ls12_c02372{letter-spacing:0.514080px;}
.lsf_c02372{letter-spacing:0.536976px;}
.lsb_c02372{letter-spacing:0.579744px;}
.ls11_c02372{letter-spacing:0.594000px;}
.ls8_c02372{letter-spacing:0.598752px;}
.ls2_c02372{letter-spacing:0.613008px;}
.ls4_c02372{letter-spacing:0.717552px;}
.ls0_c02372{letter-spacing:0.722304px;}
.sc__c02372{text-shadow:none;}
.sc0_c02372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02372{-webkit-text-stroke:0px transparent;}
.sc0_c02372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02372{word-spacing:-15.126048px;}
.wsa_c02372{word-spacing:-12.474000px;}
.ws8_c02372{word-spacing:-12.459744px;}
.ws9_c02372{word-spacing:-12.416976px;}
.ws2_c02372{word-spacing:-12.122352px;}
.ws4_c02372{word-spacing:-11.124432px;}
.ws14_c02372{word-spacing:-2.159136px;}
.ws10_c02372{word-spacing:-1.083456px;}
.wsd_c02372{word-spacing:-0.974160px;}
.wsf_c02372{word-spacing:-0.118800px;}
.ws12_c02372{word-spacing:-0.099792px;}
.ws13_c02372{word-spacing:-0.085536px;}
.wse_c02372{word-spacing:0.000000px;}
.ws11_c02372{word-spacing:0.836352px;}
.wsb_c02372{word-spacing:33.300288px;}
.ws6_c02372{word-spacing:36.742464px;}
.ws1_c02372{word-spacing:37.759392px;}
.ws0_c02372{word-spacing:38.020752px;}
.ws3_c02372{word-spacing:39.218256px;}
.ws5_c02372{word-spacing:39.902544px;}
.ws7_c02372{word-spacing:42.026688px;}
._0_c02372{margin-left:-1.948320px;}
._2_c02372{width:1.482624px;}
._4_c02372{width:3.369168px;}
._1_c02372{width:50.252400px;}
._3_c02372{width:51.530688px;}
.fc0_c02372{color:rgb(0,0,0);}
.fs0_c02372{font-size:47.520000px;}
.fs1_c02372{font-size:60.480000px;}
.y0_c02372{bottom:0.000000px;}
.y19_c02372{bottom:146.998362px;}
.y1b_c02372{bottom:186.600234px;}
.y1a_c02372{bottom:196.320450px;}
.y18_c02372{bottom:275.878542px;}
.y17_c02372{bottom:356.878758px;}
.y15_c02372{bottom:406.559730px;}
.y11_c02372{bottom:424.560306px;}
.y16_c02372{bottom:458.759262px;}
.y14_c02372{bottom:491.879514px;}
.y13_c02372{bottom:509.880090px;}
.y10_c02372{bottom:543.000342px;}
.y12_c02372{bottom:559.559874px;}
.yf_c02372{bottom:577.560450px;}
.y1c_c02372{bottom:614.280450px;}
.yb_c02372{bottom:667.558326px;}
.yd_c02372{bottom:707.160234px;}
.yc_c02372{bottom:716.880450px;}
.ya_c02372{bottom:796.438506px;}
.y9_c02372{bottom:877.438722px;}
.y7_c02372{bottom:926.759730px;}
.y3_c02372{bottom:944.760306px;}
.y8_c02372{bottom:979.319226px;}
.y6_c02372{bottom:1012.439478px;}
.y5_c02372{bottom:1030.440054px;}
.y2_c02372{bottom:1063.560306px;}
.y4_c02372{bottom:1079.759874px;}
.y1_c02372{bottom:1097.760450px;}
.ye_c02372{bottom:1134.840450px;}
.h3_c02372{height:32.530781px;}
.h1_c02372{height:41.696016px;}
.h2_c02372{height:41.812031px;}
.h4_c02372{height:54.654737px;}
.h0_c02372{height:1263.000000px;}
.w1_c02372{width:892.500000px;}
.w0_c02372{width:892.830000px;}
.x0_c02372{left:0.000000px;}
.xd_c02372{left:117.000000px;}
.x8_c02372{left:440.999856px;}
.x4_c02372{left:445.680576px;}
.xb_c02372{left:451.080000px;}
.x7_c02372{left:455.399604px;}
.x5_c02372{left:461.880144px;}
.x1_c02372{left:463.320000px;}
.xa_c02372{left:483.480360px;}
.x9_c02372{left:492.119496px;}
.x6_c02372{left:493.200576px;}
.xc_c02372{left:506.880360px;}
.x3_c02372{left:511.919892px;}
.x2_c02372{left:526.679604px;}
@media print{
.v0_c02372{vertical-align:0.000000pt;}
.v1_c02372{vertical-align:1.279488pt;}
.lsd_c02372{letter-spacing:-1.064448pt;}
.ls9_c02372{letter-spacing:-0.671616pt;}
.lsa_c02372{letter-spacing:-0.511104pt;}
.ls10_c02372{letter-spacing:-0.244992pt;}
.lse_c02372{letter-spacing:-0.232320pt;}
.ls6_c02372{letter-spacing:-0.215424pt;}
.ls3_c02372{letter-spacing:-0.105600pt;}
.ls13_c02372{letter-spacing:0.000000pt;}
.ls1_c02372{letter-spacing:0.005376pt;}
.ls5_c02372{letter-spacing:0.114048pt;}
.ls7_c02372{letter-spacing:0.215424pt;}
.lsc_c02372{letter-spacing:0.451968pt;}
.ls12_c02372{letter-spacing:0.456960pt;}
.lsf_c02372{letter-spacing:0.477312pt;}
.lsb_c02372{letter-spacing:0.515328pt;}
.ls11_c02372{letter-spacing:0.528000pt;}
.ls8_c02372{letter-spacing:0.532224pt;}
.ls2_c02372{letter-spacing:0.544896pt;}
.ls4_c02372{letter-spacing:0.637824pt;}
.ls0_c02372{letter-spacing:0.642048pt;}
.wsc_c02372{word-spacing:-13.445376pt;}
.wsa_c02372{word-spacing:-11.088000pt;}
.ws8_c02372{word-spacing:-11.075328pt;}
.ws9_c02372{word-spacing:-11.037312pt;}
.ws2_c02372{word-spacing:-10.775424pt;}
.ws4_c02372{word-spacing:-9.888384pt;}
.ws14_c02372{word-spacing:-1.919232pt;}
.ws10_c02372{word-spacing:-0.963072pt;}
.wsd_c02372{word-spacing:-0.865920pt;}
.wsf_c02372{word-spacing:-0.105600pt;}
.ws12_c02372{word-spacing:-0.088704pt;}
.ws13_c02372{word-spacing:-0.076032pt;}
.wse_c02372{word-spacing:0.000000pt;}
.ws11_c02372{word-spacing:0.743424pt;}
.wsb_c02372{word-spacing:29.600256pt;}
.ws6_c02372{word-spacing:32.659968pt;}
.ws1_c02372{word-spacing:33.563904pt;}
.ws0_c02372{word-spacing:33.796224pt;}
.ws3_c02372{word-spacing:34.860672pt;}
.ws5_c02372{word-spacing:35.468928pt;}
.ws7_c02372{word-spacing:37.357056pt;}
._0_c02372{margin-left:-1.731840pt;}
._2_c02372{width:1.317888pt;}
._4_c02372{width:2.994816pt;}
._1_c02372{width:44.668800pt;}
._3_c02372{width:45.805056pt;}
.fs0_c02372{font-size:42.240000pt;}
.fs1_c02372{font-size:53.760000pt;}
.y0_c02372{bottom:0.000000pt;}
.y19_c02372{bottom:130.665211pt;}
.y1b_c02372{bottom:165.866875pt;}
.y1a_c02372{bottom:174.507067pt;}
.y18_c02372{bottom:245.225371pt;}
.y17_c02372{bottom:317.225563pt;}
.y15_c02372{bottom:361.386427pt;}
.y11_c02372{bottom:377.386939pt;}
.y16_c02372{bottom:407.786011pt;}
.y14_c02372{bottom:437.226235pt;}
.y13_c02372{bottom:453.226747pt;}
.y10_c02372{bottom:482.666971pt;}
.y12_c02372{bottom:497.386555pt;}
.yf_c02372{bottom:513.387067pt;}
.y1c_c02372{bottom:546.027067pt;}
.yb_c02372{bottom:593.385179pt;}
.yd_c02372{bottom:628.586875pt;}
.yc_c02372{bottom:637.227067pt;}
.ya_c02372{bottom:707.945339pt;}
.y9_c02372{bottom:779.945531pt;}
.y7_c02372{bottom:823.786427pt;}
.y3_c02372{bottom:839.786939pt;}
.y8_c02372{bottom:870.505979pt;}
.y6_c02372{bottom:899.946203pt;}
.y5_c02372{bottom:915.946715pt;}
.y2_c02372{bottom:945.386939pt;}
.y4_c02372{bottom:959.786555pt;}
.y1_c02372{bottom:975.787067pt;}
.ye_c02372{bottom:1008.747067pt;}
.h3_c02372{height:28.916250pt;}
.h1_c02372{height:37.063125pt;}
.h2_c02372{height:37.166250pt;}
.h4_c02372{height:48.581988pt;}
.h0_c02372{height:1122.666667pt;}
.w1_c02372{width:793.333333pt;}
.w0_c02372{width:793.626667pt;}
.x0_c02372{left:0.000000pt;}
.xd_c02372{left:104.000000pt;}
.x8_c02372{left:391.999872pt;}
.x4_c02372{left:396.160512pt;}
.xb_c02372{left:400.960000pt;}
.x7_c02372{left:404.799648pt;}
.x5_c02372{left:410.560128pt;}
.x1_c02372{left:411.840000pt;}
.xa_c02372{left:429.760320pt;}
.x9_c02372{left:437.439552pt;}
.x6_c02372{left:438.400512pt;}
.xc_c02372{left:450.560320pt;}
.x3_c02372{left:455.039904pt;}
.x2_c02372{left:468.159648pt;}
}





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

.ir_c02373:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02373{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02373;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02373{font-family:ff1_c02373;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02373;src:url('chunks/assets/font_9ca05c009251b227514f7330.woff2')format("woff");}.ff2_c02373{font-family:ff2_c02373;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02373;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02373{font-family:ff3_c02373;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02373{vertical-align:0.000000px;}
.v1_c02373{vertical-align:1.439424px;}
.lsd_c02373{letter-spacing:-1.197504px;}
.ls9_c02373{letter-spacing:-0.755568px;}
.lsa_c02373{letter-spacing:-0.574992px;}
.ls10_c02373{letter-spacing:-0.275616px;}
.lse_c02373{letter-spacing:-0.261360px;}
.ls6_c02373{letter-spacing:-0.242352px;}
.ls4_c02373{letter-spacing:-0.118800px;}
.ls13_c02373{letter-spacing:0.000000px;}
.ls1_c02373{letter-spacing:0.006048px;}
.ls5_c02373{letter-spacing:0.128304px;}
.ls7_c02373{letter-spacing:0.242352px;}
.lsc_c02373{letter-spacing:0.508464px;}
.ls12_c02373{letter-spacing:0.514080px;}
.lsf_c02373{letter-spacing:0.536976px;}
.lsb_c02373{letter-spacing:0.579744px;}
.ls11_c02373{letter-spacing:0.594000px;}
.ls8_c02373{letter-spacing:0.598752px;}
.ls2_c02373{letter-spacing:0.613008px;}
.ls0_c02373{letter-spacing:0.717552px;}
.ls3_c02373{letter-spacing:0.722304px;}
.sc__c02373{text-shadow:none;}
.sc0_c02373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02373{-webkit-text-stroke:0px transparent;}
.sc0_c02373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02373{word-spacing:-15.126048px;}
.wsa_c02373{word-spacing:-12.474000px;}
.ws8_c02373{word-spacing:-12.459744px;}
.ws9_c02373{word-spacing:-12.416976px;}
.ws2_c02373{word-spacing:-12.122352px;}
.ws4_c02373{word-spacing:-11.124432px;}
.ws14_c02373{word-spacing:-2.159136px;}
.ws10_c02373{word-spacing:-1.078704px;}
.wsd_c02373{word-spacing:-0.974160px;}
.wsf_c02373{word-spacing:-0.118800px;}
.ws12_c02373{word-spacing:-0.099792px;}
.ws13_c02373{word-spacing:-0.085536px;}
.wse_c02373{word-spacing:0.000000px;}
.ws11_c02373{word-spacing:0.836352px;}
.wsb_c02373{word-spacing:33.300288px;}
.ws6_c02373{word-spacing:36.742464px;}
.ws1_c02373{word-spacing:37.759392px;}
.ws0_c02373{word-spacing:38.020752px;}
.ws3_c02373{word-spacing:39.218256px;}
.ws5_c02373{word-spacing:39.902544px;}
.ws7_c02373{word-spacing:42.026688px;}
._0_c02373{margin-left:-1.948320px;}
._2_c02373{width:1.482624px;}
._4_c02373{width:3.369168px;}
._1_c02373{width:50.252400px;}
._3_c02373{width:51.530688px;}
.fc0_c02373{color:rgb(0,0,0);}
.fs0_c02373{font-size:47.520000px;}
.fs1_c02373{font-size:60.480000px;}
.y0_c02373{bottom:0.000000px;}
.y19_c02373{bottom:146.998362px;}
.y1b_c02373{bottom:186.600234px;}
.y1a_c02373{bottom:196.320450px;}
.y18_c02373{bottom:275.878542px;}
.y17_c02373{bottom:356.878758px;}
.y15_c02373{bottom:406.559730px;}
.y11_c02373{bottom:424.560306px;}
.y16_c02373{bottom:458.759262px;}
.y14_c02373{bottom:491.879514px;}
.y13_c02373{bottom:509.880090px;}
.y10_c02373{bottom:543.000342px;}
.y12_c02373{bottom:559.559874px;}
.yf_c02373{bottom:577.560450px;}
.y1c_c02373{bottom:614.280450px;}
.yb_c02373{bottom:667.558326px;}
.yd_c02373{bottom:707.160234px;}
.yc_c02373{bottom:716.880450px;}
.ya_c02373{bottom:796.438506px;}
.y9_c02373{bottom:877.438722px;}
.y7_c02373{bottom:926.759730px;}
.y3_c02373{bottom:944.760306px;}
.y8_c02373{bottom:979.319226px;}
.y6_c02373{bottom:1012.439478px;}
.y5_c02373{bottom:1030.440054px;}
.y2_c02373{bottom:1063.560306px;}
.y4_c02373{bottom:1079.759874px;}
.y1_c02373{bottom:1097.760450px;}
.ye_c02373{bottom:1134.840450px;}
.h3_c02373{height:32.530781px;}
.h1_c02373{height:41.696016px;}
.h2_c02373{height:41.812031px;}
.h4_c02373{height:54.654737px;}
.h0_c02373{height:1263.000000px;}
.w1_c02373{width:892.500000px;}
.w0_c02373{width:892.830000px;}
.x0_c02373{left:0.000000px;}
.xd_c02373{left:117.000000px;}
.x8_c02373{left:440.999856px;}
.x4_c02373{left:445.680576px;}
.xb_c02373{left:451.080000px;}
.x7_c02373{left:455.399604px;}
.x5_c02373{left:461.880144px;}
.x1_c02373{left:463.320000px;}
.xa_c02373{left:483.480360px;}
.x9_c02373{left:492.119496px;}
.x6_c02373{left:493.200576px;}
.xc_c02373{left:506.880360px;}
.x3_c02373{left:511.919892px;}
.x2_c02373{left:526.679604px;}
@media print{
.v0_c02373{vertical-align:0.000000pt;}
.v1_c02373{vertical-align:1.279488pt;}
.lsd_c02373{letter-spacing:-1.064448pt;}
.ls9_c02373{letter-spacing:-0.671616pt;}
.lsa_c02373{letter-spacing:-0.511104pt;}
.ls10_c02373{letter-spacing:-0.244992pt;}
.lse_c02373{letter-spacing:-0.232320pt;}
.ls6_c02373{letter-spacing:-0.215424pt;}
.ls4_c02373{letter-spacing:-0.105600pt;}
.ls13_c02373{letter-spacing:0.000000pt;}
.ls1_c02373{letter-spacing:0.005376pt;}
.ls5_c02373{letter-spacing:0.114048pt;}
.ls7_c02373{letter-spacing:0.215424pt;}
.lsc_c02373{letter-spacing:0.451968pt;}
.ls12_c02373{letter-spacing:0.456960pt;}
.lsf_c02373{letter-spacing:0.477312pt;}
.lsb_c02373{letter-spacing:0.515328pt;}
.ls11_c02373{letter-spacing:0.528000pt;}
.ls8_c02373{letter-spacing:0.532224pt;}
.ls2_c02373{letter-spacing:0.544896pt;}
.ls0_c02373{letter-spacing:0.637824pt;}
.ls3_c02373{letter-spacing:0.642048pt;}
.wsc_c02373{word-spacing:-13.445376pt;}
.wsa_c02373{word-spacing:-11.088000pt;}
.ws8_c02373{word-spacing:-11.075328pt;}
.ws9_c02373{word-spacing:-11.037312pt;}
.ws2_c02373{word-spacing:-10.775424pt;}
.ws4_c02373{word-spacing:-9.888384pt;}
.ws14_c02373{word-spacing:-1.919232pt;}
.ws10_c02373{word-spacing:-0.958848pt;}
.wsd_c02373{word-spacing:-0.865920pt;}
.wsf_c02373{word-spacing:-0.105600pt;}
.ws12_c02373{word-spacing:-0.088704pt;}
.ws13_c02373{word-spacing:-0.076032pt;}
.wse_c02373{word-spacing:0.000000pt;}
.ws11_c02373{word-spacing:0.743424pt;}
.wsb_c02373{word-spacing:29.600256pt;}
.ws6_c02373{word-spacing:32.659968pt;}
.ws1_c02373{word-spacing:33.563904pt;}
.ws0_c02373{word-spacing:33.796224pt;}
.ws3_c02373{word-spacing:34.860672pt;}
.ws5_c02373{word-spacing:35.468928pt;}
.ws7_c02373{word-spacing:37.357056pt;}
._0_c02373{margin-left:-1.731840pt;}
._2_c02373{width:1.317888pt;}
._4_c02373{width:2.994816pt;}
._1_c02373{width:44.668800pt;}
._3_c02373{width:45.805056pt;}
.fs0_c02373{font-size:42.240000pt;}
.fs1_c02373{font-size:53.760000pt;}
.y0_c02373{bottom:0.000000pt;}
.y19_c02373{bottom:130.665211pt;}
.y1b_c02373{bottom:165.866875pt;}
.y1a_c02373{bottom:174.507067pt;}
.y18_c02373{bottom:245.225371pt;}
.y17_c02373{bottom:317.225563pt;}
.y15_c02373{bottom:361.386427pt;}
.y11_c02373{bottom:377.386939pt;}
.y16_c02373{bottom:407.786011pt;}
.y14_c02373{bottom:437.226235pt;}
.y13_c02373{bottom:453.226747pt;}
.y10_c02373{bottom:482.666971pt;}
.y12_c02373{bottom:497.386555pt;}
.yf_c02373{bottom:513.387067pt;}
.y1c_c02373{bottom:546.027067pt;}
.yb_c02373{bottom:593.385179pt;}
.yd_c02373{bottom:628.586875pt;}
.yc_c02373{bottom:637.227067pt;}
.ya_c02373{bottom:707.945339pt;}
.y9_c02373{bottom:779.945531pt;}
.y7_c02373{bottom:823.786427pt;}
.y3_c02373{bottom:839.786939pt;}
.y8_c02373{bottom:870.505979pt;}
.y6_c02373{bottom:899.946203pt;}
.y5_c02373{bottom:915.946715pt;}
.y2_c02373{bottom:945.386939pt;}
.y4_c02373{bottom:959.786555pt;}
.y1_c02373{bottom:975.787067pt;}
.ye_c02373{bottom:1008.747067pt;}
.h3_c02373{height:28.916250pt;}
.h1_c02373{height:37.063125pt;}
.h2_c02373{height:37.166250pt;}
.h4_c02373{height:48.581988pt;}
.h0_c02373{height:1122.666667pt;}
.w1_c02373{width:793.333333pt;}
.w0_c02373{width:793.626667pt;}
.x0_c02373{left:0.000000pt;}
.xd_c02373{left:104.000000pt;}
.x8_c02373{left:391.999872pt;}
.x4_c02373{left:396.160512pt;}
.xb_c02373{left:400.960000pt;}
.x7_c02373{left:404.799648pt;}
.x5_c02373{left:410.560128pt;}
.x1_c02373{left:411.840000pt;}
.xa_c02373{left:429.760320pt;}
.x9_c02373{left:437.439552pt;}
.x6_c02373{left:438.400512pt;}
.xc_c02373{left:450.560320pt;}
.x3_c02373{left:455.039904pt;}
.x2_c02373{left:468.159648pt;}
}





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

.ir_c02374:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02374{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02374;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02374{font-family:ff1_c02374;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02374;src:url('chunks/assets/font_9ca05c009251b227514f7330.woff2')format("woff");}.ff2_c02374{font-family:ff2_c02374;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02374;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02374{font-family:ff3_c02374;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02374{vertical-align:0.000000px;}
.v1_c02374{vertical-align:1.439424px;}
.lsd_c02374{letter-spacing:-1.197504px;}
.ls9_c02374{letter-spacing:-0.755568px;}
.lsa_c02374{letter-spacing:-0.574992px;}
.ls10_c02374{letter-spacing:-0.275616px;}
.lse_c02374{letter-spacing:-0.261360px;}
.ls6_c02374{letter-spacing:-0.242352px;}
.ls4_c02374{letter-spacing:-0.118800px;}
.ls13_c02374{letter-spacing:0.000000px;}
.ls1_c02374{letter-spacing:0.006048px;}
.ls5_c02374{letter-spacing:0.128304px;}
.ls7_c02374{letter-spacing:0.242352px;}
.lsc_c02374{letter-spacing:0.508464px;}
.ls12_c02374{letter-spacing:0.514080px;}
.lsf_c02374{letter-spacing:0.536976px;}
.lsb_c02374{letter-spacing:0.579744px;}
.ls11_c02374{letter-spacing:0.594000px;}
.ls8_c02374{letter-spacing:0.598752px;}
.ls2_c02374{letter-spacing:0.613008px;}
.ls0_c02374{letter-spacing:0.717552px;}
.ls3_c02374{letter-spacing:0.722304px;}
.sc__c02374{text-shadow:none;}
.sc0_c02374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02374{-webkit-text-stroke:0px transparent;}
.sc0_c02374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02374{word-spacing:-15.126048px;}
.wsa_c02374{word-spacing:-12.474000px;}
.ws8_c02374{word-spacing:-12.459744px;}
.ws9_c02374{word-spacing:-12.416976px;}
.ws2_c02374{word-spacing:-12.122352px;}
.ws4_c02374{word-spacing:-11.124432px;}
.ws14_c02374{word-spacing:-2.159136px;}
.ws10_c02374{word-spacing:-1.078704px;}
.wsd_c02374{word-spacing:-0.974160px;}
.wsf_c02374{word-spacing:-0.118800px;}
.ws12_c02374{word-spacing:-0.099792px;}
.ws13_c02374{word-spacing:-0.085536px;}
.wse_c02374{word-spacing:0.000000px;}
.ws11_c02374{word-spacing:0.836352px;}
.wsb_c02374{word-spacing:33.300288px;}
.ws6_c02374{word-spacing:36.742464px;}
.ws1_c02374{word-spacing:37.759392px;}
.ws0_c02374{word-spacing:38.020752px;}
.ws3_c02374{word-spacing:39.218256px;}
.ws5_c02374{word-spacing:39.902544px;}
.ws7_c02374{word-spacing:42.026688px;}
._0_c02374{margin-left:-1.948320px;}
._2_c02374{width:1.482624px;}
._4_c02374{width:3.369168px;}
._1_c02374{width:50.252400px;}
._3_c02374{width:51.530688px;}
.fc0_c02374{color:rgb(0,0,0);}
.fs0_c02374{font-size:47.520000px;}
.fs1_c02374{font-size:60.480000px;}
.y0_c02374{bottom:0.000000px;}
.y19_c02374{bottom:146.998362px;}
.y1b_c02374{bottom:186.600234px;}
.y1a_c02374{bottom:196.320450px;}
.y18_c02374{bottom:275.878542px;}
.y17_c02374{bottom:356.878758px;}
.y15_c02374{bottom:406.559730px;}
.y11_c02374{bottom:424.560306px;}
.y16_c02374{bottom:458.759262px;}
.y14_c02374{bottom:491.879514px;}
.y13_c02374{bottom:509.880090px;}
.y10_c02374{bottom:543.000342px;}
.y12_c02374{bottom:559.559874px;}
.yf_c02374{bottom:577.560450px;}
.y1c_c02374{bottom:614.280450px;}
.yb_c02374{bottom:667.558326px;}
.yd_c02374{bottom:707.160234px;}
.yc_c02374{bottom:716.880450px;}
.ya_c02374{bottom:796.438506px;}
.y9_c02374{bottom:877.438722px;}
.y7_c02374{bottom:926.759730px;}
.y3_c02374{bottom:944.760306px;}
.y8_c02374{bottom:979.319226px;}
.y6_c02374{bottom:1012.439478px;}
.y5_c02374{bottom:1030.440054px;}
.y2_c02374{bottom:1063.560306px;}
.y4_c02374{bottom:1079.759874px;}
.y1_c02374{bottom:1097.760450px;}
.ye_c02374{bottom:1134.840450px;}
.h3_c02374{height:32.530781px;}
.h1_c02374{height:41.696016px;}
.h2_c02374{height:41.812031px;}
.h4_c02374{height:54.654737px;}
.h0_c02374{height:1263.000000px;}
.w1_c02374{width:892.500000px;}
.w0_c02374{width:892.830000px;}
.x0_c02374{left:0.000000px;}
.xd_c02374{left:117.000000px;}
.x8_c02374{left:440.999856px;}
.x4_c02374{left:445.680576px;}
.xb_c02374{left:451.080000px;}
.x7_c02374{left:455.399604px;}
.x5_c02374{left:461.880144px;}
.x1_c02374{left:463.320000px;}
.xa_c02374{left:483.480360px;}
.x9_c02374{left:492.119496px;}
.x6_c02374{left:493.200576px;}
.xc_c02374{left:506.880360px;}
.x3_c02374{left:511.919892px;}
.x2_c02374{left:526.679604px;}
@media print{
.v0_c02374{vertical-align:0.000000pt;}
.v1_c02374{vertical-align:1.279488pt;}
.lsd_c02374{letter-spacing:-1.064448pt;}
.ls9_c02374{letter-spacing:-0.671616pt;}
.lsa_c02374{letter-spacing:-0.511104pt;}
.ls10_c02374{letter-spacing:-0.244992pt;}
.lse_c02374{letter-spacing:-0.232320pt;}
.ls6_c02374{letter-spacing:-0.215424pt;}
.ls4_c02374{letter-spacing:-0.105600pt;}
.ls13_c02374{letter-spacing:0.000000pt;}
.ls1_c02374{letter-spacing:0.005376pt;}
.ls5_c02374{letter-spacing:0.114048pt;}
.ls7_c02374{letter-spacing:0.215424pt;}
.lsc_c02374{letter-spacing:0.451968pt;}
.ls12_c02374{letter-spacing:0.456960pt;}
.lsf_c02374{letter-spacing:0.477312pt;}
.lsb_c02374{letter-spacing:0.515328pt;}
.ls11_c02374{letter-spacing:0.528000pt;}
.ls8_c02374{letter-spacing:0.532224pt;}
.ls2_c02374{letter-spacing:0.544896pt;}
.ls0_c02374{letter-spacing:0.637824pt;}
.ls3_c02374{letter-spacing:0.642048pt;}
.wsc_c02374{word-spacing:-13.445376pt;}
.wsa_c02374{word-spacing:-11.088000pt;}
.ws8_c02374{word-spacing:-11.075328pt;}
.ws9_c02374{word-spacing:-11.037312pt;}
.ws2_c02374{word-spacing:-10.775424pt;}
.ws4_c02374{word-spacing:-9.888384pt;}
.ws14_c02374{word-spacing:-1.919232pt;}
.ws10_c02374{word-spacing:-0.958848pt;}
.wsd_c02374{word-spacing:-0.865920pt;}
.wsf_c02374{word-spacing:-0.105600pt;}
.ws12_c02374{word-spacing:-0.088704pt;}
.ws13_c02374{word-spacing:-0.076032pt;}
.wse_c02374{word-spacing:0.000000pt;}
.ws11_c02374{word-spacing:0.743424pt;}
.wsb_c02374{word-spacing:29.600256pt;}
.ws6_c02374{word-spacing:32.659968pt;}
.ws1_c02374{word-spacing:33.563904pt;}
.ws0_c02374{word-spacing:33.796224pt;}
.ws3_c02374{word-spacing:34.860672pt;}
.ws5_c02374{word-spacing:35.468928pt;}
.ws7_c02374{word-spacing:37.357056pt;}
._0_c02374{margin-left:-1.731840pt;}
._2_c02374{width:1.317888pt;}
._4_c02374{width:2.994816pt;}
._1_c02374{width:44.668800pt;}
._3_c02374{width:45.805056pt;}
.fs0_c02374{font-size:42.240000pt;}
.fs1_c02374{font-size:53.760000pt;}
.y0_c02374{bottom:0.000000pt;}
.y19_c02374{bottom:130.665211pt;}
.y1b_c02374{bottom:165.866875pt;}
.y1a_c02374{bottom:174.507067pt;}
.y18_c02374{bottom:245.225371pt;}
.y17_c02374{bottom:317.225563pt;}
.y15_c02374{bottom:361.386427pt;}
.y11_c02374{bottom:377.386939pt;}
.y16_c02374{bottom:407.786011pt;}
.y14_c02374{bottom:437.226235pt;}
.y13_c02374{bottom:453.226747pt;}
.y10_c02374{bottom:482.666971pt;}
.y12_c02374{bottom:497.386555pt;}
.yf_c02374{bottom:513.387067pt;}
.y1c_c02374{bottom:546.027067pt;}
.yb_c02374{bottom:593.385179pt;}
.yd_c02374{bottom:628.586875pt;}
.yc_c02374{bottom:637.227067pt;}
.ya_c02374{bottom:707.945339pt;}
.y9_c02374{bottom:779.945531pt;}
.y7_c02374{bottom:823.786427pt;}
.y3_c02374{bottom:839.786939pt;}
.y8_c02374{bottom:870.505979pt;}
.y6_c02374{bottom:899.946203pt;}
.y5_c02374{bottom:915.946715pt;}
.y2_c02374{bottom:945.386939pt;}
.y4_c02374{bottom:959.786555pt;}
.y1_c02374{bottom:975.787067pt;}
.ye_c02374{bottom:1008.747067pt;}
.h3_c02374{height:28.916250pt;}
.h1_c02374{height:37.063125pt;}
.h2_c02374{height:37.166250pt;}
.h4_c02374{height:48.581988pt;}
.h0_c02374{height:1122.666667pt;}
.w1_c02374{width:793.333333pt;}
.w0_c02374{width:793.626667pt;}
.x0_c02374{left:0.000000pt;}
.xd_c02374{left:104.000000pt;}
.x8_c02374{left:391.999872pt;}
.x4_c02374{left:396.160512pt;}
.xb_c02374{left:400.960000pt;}
.x7_c02374{left:404.799648pt;}
.x5_c02374{left:410.560128pt;}
.x1_c02374{left:411.840000pt;}
.xa_c02374{left:429.760320pt;}
.x9_c02374{left:437.439552pt;}
.x6_c02374{left:438.400512pt;}
.xc_c02374{left:450.560320pt;}
.x3_c02374{left:455.039904pt;}
.x2_c02374{left:468.159648pt;}
}





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

.ir_c02375:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02375{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02375;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02375{font-family:ff1_c02375;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02375;src:url('chunks/assets/font_9ca05c009251b227514f7330.woff2')format("woff");}.ff2_c02375{font-family:ff2_c02375;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02375;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02375{font-family:ff3_c02375;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02375{vertical-align:0.000000px;}
.v1_c02375{vertical-align:1.439424px;}
.lsd_c02375{letter-spacing:-1.197504px;}
.ls9_c02375{letter-spacing:-0.755568px;}
.lsa_c02375{letter-spacing:-0.574992px;}
.ls10_c02375{letter-spacing:-0.275616px;}
.lse_c02375{letter-spacing:-0.261360px;}
.ls6_c02375{letter-spacing:-0.242352px;}
.ls4_c02375{letter-spacing:-0.118800px;}
.ls13_c02375{letter-spacing:0.000000px;}
.ls1_c02375{letter-spacing:0.006048px;}
.ls5_c02375{letter-spacing:0.128304px;}
.ls7_c02375{letter-spacing:0.242352px;}
.lsc_c02375{letter-spacing:0.508464px;}
.ls12_c02375{letter-spacing:0.514080px;}
.lsf_c02375{letter-spacing:0.536976px;}
.lsb_c02375{letter-spacing:0.579744px;}
.ls11_c02375{letter-spacing:0.594000px;}
.ls8_c02375{letter-spacing:0.598752px;}
.ls2_c02375{letter-spacing:0.613008px;}
.ls0_c02375{letter-spacing:0.717552px;}
.ls3_c02375{letter-spacing:0.722304px;}
.sc__c02375{text-shadow:none;}
.sc0_c02375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02375{-webkit-text-stroke:0px transparent;}
.sc0_c02375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02375{word-spacing:-15.126048px;}
.wsa_c02375{word-spacing:-12.474000px;}
.ws8_c02375{word-spacing:-12.459744px;}
.ws9_c02375{word-spacing:-12.416976px;}
.ws2_c02375{word-spacing:-12.122352px;}
.ws4_c02375{word-spacing:-11.124432px;}
.ws14_c02375{word-spacing:-2.159136px;}
.ws10_c02375{word-spacing:-1.078704px;}
.wsd_c02375{word-spacing:-0.974160px;}
.wsf_c02375{word-spacing:-0.118800px;}
.ws12_c02375{word-spacing:-0.099792px;}
.ws13_c02375{word-spacing:-0.085536px;}
.wse_c02375{word-spacing:0.000000px;}
.ws11_c02375{word-spacing:0.836352px;}
.wsb_c02375{word-spacing:33.300288px;}
.ws6_c02375{word-spacing:36.742464px;}
.ws1_c02375{word-spacing:37.759392px;}
.ws0_c02375{word-spacing:38.020752px;}
.ws3_c02375{word-spacing:39.218256px;}
.ws5_c02375{word-spacing:39.902544px;}
.ws7_c02375{word-spacing:42.026688px;}
._0_c02375{margin-left:-1.948320px;}
._2_c02375{width:1.482624px;}
._4_c02375{width:3.369168px;}
._1_c02375{width:50.252400px;}
._3_c02375{width:51.530688px;}
.fc0_c02375{color:rgb(0,0,0);}
.fs0_c02375{font-size:47.520000px;}
.fs1_c02375{font-size:60.480000px;}
.y0_c02375{bottom:0.000000px;}
.y19_c02375{bottom:146.998362px;}
.y1b_c02375{bottom:186.600234px;}
.y1a_c02375{bottom:196.320450px;}
.y18_c02375{bottom:275.878542px;}
.y17_c02375{bottom:356.878758px;}
.y15_c02375{bottom:406.559730px;}
.y11_c02375{bottom:424.560306px;}
.y16_c02375{bottom:458.759262px;}
.y14_c02375{bottom:491.879514px;}
.y13_c02375{bottom:509.880090px;}
.y10_c02375{bottom:543.000342px;}
.y12_c02375{bottom:559.559874px;}
.yf_c02375{bottom:577.560450px;}
.y1c_c02375{bottom:614.280450px;}
.yb_c02375{bottom:667.558326px;}
.yd_c02375{bottom:707.160234px;}
.yc_c02375{bottom:716.880450px;}
.ya_c02375{bottom:796.438506px;}
.y9_c02375{bottom:877.438722px;}
.y7_c02375{bottom:926.759730px;}
.y3_c02375{bottom:944.760306px;}
.y8_c02375{bottom:979.319226px;}
.y6_c02375{bottom:1012.439478px;}
.y5_c02375{bottom:1030.440054px;}
.y2_c02375{bottom:1063.560306px;}
.y4_c02375{bottom:1079.759874px;}
.y1_c02375{bottom:1097.760450px;}
.ye_c02375{bottom:1134.840450px;}
.h3_c02375{height:32.530781px;}
.h1_c02375{height:41.696016px;}
.h2_c02375{height:41.812031px;}
.h4_c02375{height:54.654737px;}
.h0_c02375{height:1263.000000px;}
.w1_c02375{width:892.500000px;}
.w0_c02375{width:892.830000px;}
.x0_c02375{left:0.000000px;}
.xd_c02375{left:117.000000px;}
.x8_c02375{left:440.999856px;}
.x4_c02375{left:445.680576px;}
.xb_c02375{left:451.080000px;}
.x7_c02375{left:455.399604px;}
.x5_c02375{left:461.880144px;}
.x1_c02375{left:463.320000px;}
.xa_c02375{left:483.480360px;}
.x9_c02375{left:492.119496px;}
.x6_c02375{left:493.200576px;}
.xc_c02375{left:506.880360px;}
.x3_c02375{left:511.919892px;}
.x2_c02375{left:526.679604px;}
@media print{
.v0_c02375{vertical-align:0.000000pt;}
.v1_c02375{vertical-align:1.279488pt;}
.lsd_c02375{letter-spacing:-1.064448pt;}
.ls9_c02375{letter-spacing:-0.671616pt;}
.lsa_c02375{letter-spacing:-0.511104pt;}
.ls10_c02375{letter-spacing:-0.244992pt;}
.lse_c02375{letter-spacing:-0.232320pt;}
.ls6_c02375{letter-spacing:-0.215424pt;}
.ls4_c02375{letter-spacing:-0.105600pt;}
.ls13_c02375{letter-spacing:0.000000pt;}
.ls1_c02375{letter-spacing:0.005376pt;}
.ls5_c02375{letter-spacing:0.114048pt;}
.ls7_c02375{letter-spacing:0.215424pt;}
.lsc_c02375{letter-spacing:0.451968pt;}
.ls12_c02375{letter-spacing:0.456960pt;}
.lsf_c02375{letter-spacing:0.477312pt;}
.lsb_c02375{letter-spacing:0.515328pt;}
.ls11_c02375{letter-spacing:0.528000pt;}
.ls8_c02375{letter-spacing:0.532224pt;}
.ls2_c02375{letter-spacing:0.544896pt;}
.ls0_c02375{letter-spacing:0.637824pt;}
.ls3_c02375{letter-spacing:0.642048pt;}
.wsc_c02375{word-spacing:-13.445376pt;}
.wsa_c02375{word-spacing:-11.088000pt;}
.ws8_c02375{word-spacing:-11.075328pt;}
.ws9_c02375{word-spacing:-11.037312pt;}
.ws2_c02375{word-spacing:-10.775424pt;}
.ws4_c02375{word-spacing:-9.888384pt;}
.ws14_c02375{word-spacing:-1.919232pt;}
.ws10_c02375{word-spacing:-0.958848pt;}
.wsd_c02375{word-spacing:-0.865920pt;}
.wsf_c02375{word-spacing:-0.105600pt;}
.ws12_c02375{word-spacing:-0.088704pt;}
.ws13_c02375{word-spacing:-0.076032pt;}
.wse_c02375{word-spacing:0.000000pt;}
.ws11_c02375{word-spacing:0.743424pt;}
.wsb_c02375{word-spacing:29.600256pt;}
.ws6_c02375{word-spacing:32.659968pt;}
.ws1_c02375{word-spacing:33.563904pt;}
.ws0_c02375{word-spacing:33.796224pt;}
.ws3_c02375{word-spacing:34.860672pt;}
.ws5_c02375{word-spacing:35.468928pt;}
.ws7_c02375{word-spacing:37.357056pt;}
._0_c02375{margin-left:-1.731840pt;}
._2_c02375{width:1.317888pt;}
._4_c02375{width:2.994816pt;}
._1_c02375{width:44.668800pt;}
._3_c02375{width:45.805056pt;}
.fs0_c02375{font-size:42.240000pt;}
.fs1_c02375{font-size:53.760000pt;}
.y0_c02375{bottom:0.000000pt;}
.y19_c02375{bottom:130.665211pt;}
.y1b_c02375{bottom:165.866875pt;}
.y1a_c02375{bottom:174.507067pt;}
.y18_c02375{bottom:245.225371pt;}
.y17_c02375{bottom:317.225563pt;}
.y15_c02375{bottom:361.386427pt;}
.y11_c02375{bottom:377.386939pt;}
.y16_c02375{bottom:407.786011pt;}
.y14_c02375{bottom:437.226235pt;}
.y13_c02375{bottom:453.226747pt;}
.y10_c02375{bottom:482.666971pt;}
.y12_c02375{bottom:497.386555pt;}
.yf_c02375{bottom:513.387067pt;}
.y1c_c02375{bottom:546.027067pt;}
.yb_c02375{bottom:593.385179pt;}
.yd_c02375{bottom:628.586875pt;}
.yc_c02375{bottom:637.227067pt;}
.ya_c02375{bottom:707.945339pt;}
.y9_c02375{bottom:779.945531pt;}
.y7_c02375{bottom:823.786427pt;}
.y3_c02375{bottom:839.786939pt;}
.y8_c02375{bottom:870.505979pt;}
.y6_c02375{bottom:899.946203pt;}
.y5_c02375{bottom:915.946715pt;}
.y2_c02375{bottom:945.386939pt;}
.y4_c02375{bottom:959.786555pt;}
.y1_c02375{bottom:975.787067pt;}
.ye_c02375{bottom:1008.747067pt;}
.h3_c02375{height:28.916250pt;}
.h1_c02375{height:37.063125pt;}
.h2_c02375{height:37.166250pt;}
.h4_c02375{height:48.581988pt;}
.h0_c02375{height:1122.666667pt;}
.w1_c02375{width:793.333333pt;}
.w0_c02375{width:793.626667pt;}
.x0_c02375{left:0.000000pt;}
.xd_c02375{left:104.000000pt;}
.x8_c02375{left:391.999872pt;}
.x4_c02375{left:396.160512pt;}
.xb_c02375{left:400.960000pt;}
.x7_c02375{left:404.799648pt;}
.x5_c02375{left:410.560128pt;}
.x1_c02375{left:411.840000pt;}
.xa_c02375{left:429.760320pt;}
.x9_c02375{left:437.439552pt;}
.x6_c02375{left:438.400512pt;}
.xc_c02375{left:450.560320pt;}
.x3_c02375{left:455.039904pt;}
.x2_c02375{left:468.159648pt;}
}





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

.ir_c02376:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02376{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02376;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02376{font-family:ff1_c02376;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02376;src:url('chunks/assets/font_9ca05c009251b227514f7330.woff2')format("woff");}.ff2_c02376{font-family:ff2_c02376;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02376;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02376{font-family:ff3_c02376;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02376{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02376{vertical-align:0.000000px;}
.v1_c02376{vertical-align:1.439424px;}
.lsd_c02376{letter-spacing:-1.197504px;}
.ls9_c02376{letter-spacing:-0.755568px;}
.lsa_c02376{letter-spacing:-0.574992px;}
.ls10_c02376{letter-spacing:-0.275616px;}
.lse_c02376{letter-spacing:-0.261360px;}
.ls6_c02376{letter-spacing:-0.242352px;}
.ls4_c02376{letter-spacing:-0.118800px;}
.ls13_c02376{letter-spacing:0.000000px;}
.ls1_c02376{letter-spacing:0.006048px;}
.ls5_c02376{letter-spacing:0.128304px;}
.ls7_c02376{letter-spacing:0.242352px;}
.lsc_c02376{letter-spacing:0.508464px;}
.ls12_c02376{letter-spacing:0.514080px;}
.lsf_c02376{letter-spacing:0.536976px;}
.lsb_c02376{letter-spacing:0.579744px;}
.ls11_c02376{letter-spacing:0.594000px;}
.ls8_c02376{letter-spacing:0.598752px;}
.ls2_c02376{letter-spacing:0.613008px;}
.ls0_c02376{letter-spacing:0.717552px;}
.ls3_c02376{letter-spacing:0.722304px;}
.sc__c02376{text-shadow:none;}
.sc0_c02376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02376{-webkit-text-stroke:0px transparent;}
.sc0_c02376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02376{word-spacing:-15.126048px;}
.wsa_c02376{word-spacing:-12.474000px;}
.ws8_c02376{word-spacing:-12.459744px;}
.ws9_c02376{word-spacing:-12.416976px;}
.ws2_c02376{word-spacing:-12.122352px;}
.ws4_c02376{word-spacing:-11.124432px;}
.ws14_c02376{word-spacing:-2.159136px;}
.ws10_c02376{word-spacing:-1.078704px;}
.wsd_c02376{word-spacing:-0.974160px;}
.wsf_c02376{word-spacing:-0.118800px;}
.ws12_c02376{word-spacing:-0.099792px;}
.ws13_c02376{word-spacing:-0.085536px;}
.wse_c02376{word-spacing:0.000000px;}
.ws11_c02376{word-spacing:0.836352px;}
.wsb_c02376{word-spacing:33.300288px;}
.ws6_c02376{word-spacing:36.742464px;}
.ws1_c02376{word-spacing:37.759392px;}
.ws0_c02376{word-spacing:38.020752px;}
.ws3_c02376{word-spacing:39.218256px;}
.ws5_c02376{word-spacing:39.902544px;}
.ws7_c02376{word-spacing:42.026688px;}
._0_c02376{margin-left:-1.948320px;}
._2_c02376{width:1.482624px;}
._4_c02376{width:3.369168px;}
._1_c02376{width:50.252400px;}
._3_c02376{width:51.530688px;}
.fc0_c02376{color:rgb(0,0,0);}
.fs0_c02376{font-size:47.520000px;}
.fs1_c02376{font-size:60.480000px;}
.y0_c02376{bottom:0.000000px;}
.y19_c02376{bottom:146.998362px;}
.y1b_c02376{bottom:186.600234px;}
.y1a_c02376{bottom:196.320450px;}
.y18_c02376{bottom:275.878542px;}
.y17_c02376{bottom:356.878758px;}
.y15_c02376{bottom:406.559730px;}
.y11_c02376{bottom:424.560306px;}
.y16_c02376{bottom:458.759262px;}
.y14_c02376{bottom:491.879514px;}
.y13_c02376{bottom:509.880090px;}
.y10_c02376{bottom:543.000342px;}
.y12_c02376{bottom:559.559874px;}
.yf_c02376{bottom:577.560450px;}
.y1c_c02376{bottom:614.280450px;}
.yb_c02376{bottom:667.558326px;}
.yd_c02376{bottom:707.160234px;}
.yc_c02376{bottom:716.880450px;}
.ya_c02376{bottom:796.438506px;}
.y9_c02376{bottom:877.438722px;}
.y7_c02376{bottom:926.759730px;}
.y3_c02376{bottom:944.760306px;}
.y8_c02376{bottom:979.319226px;}
.y6_c02376{bottom:1012.439478px;}
.y5_c02376{bottom:1030.440054px;}
.y2_c02376{bottom:1063.560306px;}
.y4_c02376{bottom:1079.759874px;}
.y1_c02376{bottom:1097.760450px;}
.ye_c02376{bottom:1134.840450px;}
.h3_c02376{height:32.530781px;}
.h1_c02376{height:41.696016px;}
.h2_c02376{height:41.812031px;}
.h4_c02376{height:54.654737px;}
.h0_c02376{height:1263.000000px;}
.w1_c02376{width:892.500000px;}
.w0_c02376{width:892.830000px;}
.x0_c02376{left:0.000000px;}
.xd_c02376{left:117.000000px;}
.x8_c02376{left:440.999856px;}
.x4_c02376{left:445.680576px;}
.xb_c02376{left:451.080000px;}
.x7_c02376{left:455.399604px;}
.x5_c02376{left:461.880144px;}
.x1_c02376{left:463.320000px;}
.xa_c02376{left:483.480360px;}
.x9_c02376{left:492.119496px;}
.x6_c02376{left:493.200576px;}
.xc_c02376{left:506.880360px;}
.x3_c02376{left:511.919892px;}
.x2_c02376{left:526.679604px;}
@media print{
.v0_c02376{vertical-align:0.000000pt;}
.v1_c02376{vertical-align:1.279488pt;}
.lsd_c02376{letter-spacing:-1.064448pt;}
.ls9_c02376{letter-spacing:-0.671616pt;}
.lsa_c02376{letter-spacing:-0.511104pt;}
.ls10_c02376{letter-spacing:-0.244992pt;}
.lse_c02376{letter-spacing:-0.232320pt;}
.ls6_c02376{letter-spacing:-0.215424pt;}
.ls4_c02376{letter-spacing:-0.105600pt;}
.ls13_c02376{letter-spacing:0.000000pt;}
.ls1_c02376{letter-spacing:0.005376pt;}
.ls5_c02376{letter-spacing:0.114048pt;}
.ls7_c02376{letter-spacing:0.215424pt;}
.lsc_c02376{letter-spacing:0.451968pt;}
.ls12_c02376{letter-spacing:0.456960pt;}
.lsf_c02376{letter-spacing:0.477312pt;}
.lsb_c02376{letter-spacing:0.515328pt;}
.ls11_c02376{letter-spacing:0.528000pt;}
.ls8_c02376{letter-spacing:0.532224pt;}
.ls2_c02376{letter-spacing:0.544896pt;}
.ls0_c02376{letter-spacing:0.637824pt;}
.ls3_c02376{letter-spacing:0.642048pt;}
.wsc_c02376{word-spacing:-13.445376pt;}
.wsa_c02376{word-spacing:-11.088000pt;}
.ws8_c02376{word-spacing:-11.075328pt;}
.ws9_c02376{word-spacing:-11.037312pt;}
.ws2_c02376{word-spacing:-10.775424pt;}
.ws4_c02376{word-spacing:-9.888384pt;}
.ws14_c02376{word-spacing:-1.919232pt;}
.ws10_c02376{word-spacing:-0.958848pt;}
.wsd_c02376{word-spacing:-0.865920pt;}
.wsf_c02376{word-spacing:-0.105600pt;}
.ws12_c02376{word-spacing:-0.088704pt;}
.ws13_c02376{word-spacing:-0.076032pt;}
.wse_c02376{word-spacing:0.000000pt;}
.ws11_c02376{word-spacing:0.743424pt;}
.wsb_c02376{word-spacing:29.600256pt;}
.ws6_c02376{word-spacing:32.659968pt;}
.ws1_c02376{word-spacing:33.563904pt;}
.ws0_c02376{word-spacing:33.796224pt;}
.ws3_c02376{word-spacing:34.860672pt;}
.ws5_c02376{word-spacing:35.468928pt;}
.ws7_c02376{word-spacing:37.357056pt;}
._0_c02376{margin-left:-1.731840pt;}
._2_c02376{width:1.317888pt;}
._4_c02376{width:2.994816pt;}
._1_c02376{width:44.668800pt;}
._3_c02376{width:45.805056pt;}
.fs0_c02376{font-size:42.240000pt;}
.fs1_c02376{font-size:53.760000pt;}
.y0_c02376{bottom:0.000000pt;}
.y19_c02376{bottom:130.665211pt;}
.y1b_c02376{bottom:165.866875pt;}
.y1a_c02376{bottom:174.507067pt;}
.y18_c02376{bottom:245.225371pt;}
.y17_c02376{bottom:317.225563pt;}
.y15_c02376{bottom:361.386427pt;}
.y11_c02376{bottom:377.386939pt;}
.y16_c02376{bottom:407.786011pt;}
.y14_c02376{bottom:437.226235pt;}
.y13_c02376{bottom:453.226747pt;}
.y10_c02376{bottom:482.666971pt;}
.y12_c02376{bottom:497.386555pt;}
.yf_c02376{bottom:513.387067pt;}
.y1c_c02376{bottom:546.027067pt;}
.yb_c02376{bottom:593.385179pt;}
.yd_c02376{bottom:628.586875pt;}
.yc_c02376{bottom:637.227067pt;}
.ya_c02376{bottom:707.945339pt;}
.y9_c02376{bottom:779.945531pt;}
.y7_c02376{bottom:823.786427pt;}
.y3_c02376{bottom:839.786939pt;}
.y8_c02376{bottom:870.505979pt;}
.y6_c02376{bottom:899.946203pt;}
.y5_c02376{bottom:915.946715pt;}
.y2_c02376{bottom:945.386939pt;}
.y4_c02376{bottom:959.786555pt;}
.y1_c02376{bottom:975.787067pt;}
.ye_c02376{bottom:1008.747067pt;}
.h3_c02376{height:28.916250pt;}
.h1_c02376{height:37.063125pt;}
.h2_c02376{height:37.166250pt;}
.h4_c02376{height:48.581988pt;}
.h0_c02376{height:1122.666667pt;}
.w1_c02376{width:793.333333pt;}
.w0_c02376{width:793.626667pt;}
.x0_c02376{left:0.000000pt;}
.xd_c02376{left:104.000000pt;}
.x8_c02376{left:391.999872pt;}
.x4_c02376{left:396.160512pt;}
.xb_c02376{left:400.960000pt;}
.x7_c02376{left:404.799648pt;}
.x5_c02376{left:410.560128pt;}
.x1_c02376{left:411.840000pt;}
.xa_c02376{left:429.760320pt;}
.x9_c02376{left:437.439552pt;}
.x6_c02376{left:438.400512pt;}
.xc_c02376{left:450.560320pt;}
.x3_c02376{left:455.039904pt;}
.x2_c02376{left:468.159648pt;}
}





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

.ir_c02377:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02377{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02377;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02377{font-family:ff1_c02377;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02377;src:url('chunks/assets/font_2264c232e94e77505118249f.woff2')format("woff");}.ff2_c02377{font-family:ff2_c02377;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02377;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02377{font-family:ff3_c02377;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02377{vertical-align:0.000000px;}
.v1_c02377{vertical-align:1.439424px;}
.lsd_c02377{letter-spacing:-1.197504px;}
.ls9_c02377{letter-spacing:-0.717552px;}
.lsa_c02377{letter-spacing:-0.574992px;}
.ls10_c02377{letter-spacing:-0.275616px;}
.lse_c02377{letter-spacing:-0.261360px;}
.ls6_c02377{letter-spacing:-0.242352px;}
.ls7_c02377{letter-spacing:-0.237600px;}
.ls3_c02377{letter-spacing:-0.118800px;}
.ls13_c02377{letter-spacing:0.000000px;}
.ls1_c02377{letter-spacing:0.006048px;}
.ls5_c02377{letter-spacing:0.128304px;}
.lsc_c02377{letter-spacing:0.508464px;}
.ls12_c02377{letter-spacing:0.514080px;}
.lsf_c02377{letter-spacing:0.536976px;}
.lsb_c02377{letter-spacing:0.579744px;}
.ls11_c02377{letter-spacing:0.594000px;}
.ls8_c02377{letter-spacing:0.598752px;}
.ls2_c02377{letter-spacing:0.613008px;}
.ls4_c02377{letter-spacing:0.717552px;}
.ls0_c02377{letter-spacing:0.722304px;}
.sc__c02377{text-shadow:none;}
.sc0_c02377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02377{-webkit-text-stroke:0px transparent;}
.sc0_c02377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02377{word-spacing:-15.126048px;}
.ws9_c02377{word-spacing:-12.474000px;}
.ws7_c02377{word-spacing:-12.459744px;}
.ws8_c02377{word-spacing:-12.416976px;}
.ws2_c02377{word-spacing:-11.642400px;}
.ws14_c02377{word-spacing:-2.159136px;}
.ws10_c02377{word-spacing:-1.083456px;}
.wsc_c02377{word-spacing:-0.974160px;}
.wse_c02377{word-spacing:-0.118800px;}
.ws12_c02377{word-spacing:-0.099792px;}
.ws13_c02377{word-spacing:-0.085536px;}
.wsd_c02377{word-spacing:0.000000px;}
.wsf_c02377{word-spacing:0.356400px;}
.ws11_c02377{word-spacing:0.836352px;}
.wsa_c02377{word-spacing:33.300288px;}
.ws5_c02377{word-spacing:36.742464px;}
.ws1_c02377{word-spacing:37.759392px;}
.ws0_c02377{word-spacing:38.020752px;}
.ws3_c02377{word-spacing:39.218256px;}
.ws4_c02377{word-spacing:39.902544px;}
.ws6_c02377{word-spacing:42.026688px;}
._0_c02377{margin-left:-1.948320px;}
._2_c02377{width:1.482624px;}
._4_c02377{width:3.735072px;}
._1_c02377{width:50.252400px;}
._3_c02377{width:51.530688px;}
.fc0_c02377{color:rgb(0,0,0);}
.fs0_c02377{font-size:47.520000px;}
.fs1_c02377{font-size:60.480000px;}
.y0_c02377{bottom:0.000000px;}
.y19_c02377{bottom:146.998362px;}
.y1b_c02377{bottom:186.600234px;}
.y1a_c02377{bottom:196.320450px;}
.y18_c02377{bottom:275.878542px;}
.y17_c02377{bottom:356.878758px;}
.y15_c02377{bottom:406.559730px;}
.y11_c02377{bottom:424.560306px;}
.y16_c02377{bottom:458.759262px;}
.y14_c02377{bottom:491.879514px;}
.y13_c02377{bottom:509.880090px;}
.y10_c02377{bottom:543.000342px;}
.y12_c02377{bottom:559.559874px;}
.yf_c02377{bottom:577.560450px;}
.y1c_c02377{bottom:614.280450px;}
.yb_c02377{bottom:667.558326px;}
.yd_c02377{bottom:707.160234px;}
.yc_c02377{bottom:716.880450px;}
.ya_c02377{bottom:796.438506px;}
.y9_c02377{bottom:877.438722px;}
.y7_c02377{bottom:926.759730px;}
.y3_c02377{bottom:944.760306px;}
.y8_c02377{bottom:979.319226px;}
.y6_c02377{bottom:1012.439478px;}
.y5_c02377{bottom:1030.440054px;}
.y2_c02377{bottom:1063.560306px;}
.y4_c02377{bottom:1079.759874px;}
.y1_c02377{bottom:1097.760450px;}
.ye_c02377{bottom:1134.840450px;}
.h3_c02377{height:32.530781px;}
.h1_c02377{height:41.696016px;}
.h2_c02377{height:41.812031px;}
.h4_c02377{height:54.654737px;}
.h0_c02377{height:1263.000000px;}
.w1_c02377{width:892.500000px;}
.w0_c02377{width:892.830000px;}
.x0_c02377{left:0.000000px;}
.xd_c02377{left:117.000000px;}
.x8_c02377{left:440.999856px;}
.x4_c02377{left:445.680576px;}
.xb_c02377{left:451.080000px;}
.x7_c02377{left:455.399604px;}
.x5_c02377{left:461.880144px;}
.x1_c02377{left:463.320000px;}
.xa_c02377{left:483.480360px;}
.x9_c02377{left:492.119496px;}
.x6_c02377{left:493.200576px;}
.xc_c02377{left:506.880360px;}
.x3_c02377{left:511.919892px;}
.x2_c02377{left:526.679604px;}
@media print{
.v0_c02377{vertical-align:0.000000pt;}
.v1_c02377{vertical-align:1.279488pt;}
.lsd_c02377{letter-spacing:-1.064448pt;}
.ls9_c02377{letter-spacing:-0.637824pt;}
.lsa_c02377{letter-spacing:-0.511104pt;}
.ls10_c02377{letter-spacing:-0.244992pt;}
.lse_c02377{letter-spacing:-0.232320pt;}
.ls6_c02377{letter-spacing:-0.215424pt;}
.ls7_c02377{letter-spacing:-0.211200pt;}
.ls3_c02377{letter-spacing:-0.105600pt;}
.ls13_c02377{letter-spacing:0.000000pt;}
.ls1_c02377{letter-spacing:0.005376pt;}
.ls5_c02377{letter-spacing:0.114048pt;}
.lsc_c02377{letter-spacing:0.451968pt;}
.ls12_c02377{letter-spacing:0.456960pt;}
.lsf_c02377{letter-spacing:0.477312pt;}
.lsb_c02377{letter-spacing:0.515328pt;}
.ls11_c02377{letter-spacing:0.528000pt;}
.ls8_c02377{letter-spacing:0.532224pt;}
.ls2_c02377{letter-spacing:0.544896pt;}
.ls4_c02377{letter-spacing:0.637824pt;}
.ls0_c02377{letter-spacing:0.642048pt;}
.wsb_c02377{word-spacing:-13.445376pt;}
.ws9_c02377{word-spacing:-11.088000pt;}
.ws7_c02377{word-spacing:-11.075328pt;}
.ws8_c02377{word-spacing:-11.037312pt;}
.ws2_c02377{word-spacing:-10.348800pt;}
.ws14_c02377{word-spacing:-1.919232pt;}
.ws10_c02377{word-spacing:-0.963072pt;}
.wsc_c02377{word-spacing:-0.865920pt;}
.wse_c02377{word-spacing:-0.105600pt;}
.ws12_c02377{word-spacing:-0.088704pt;}
.ws13_c02377{word-spacing:-0.076032pt;}
.wsd_c02377{word-spacing:0.000000pt;}
.wsf_c02377{word-spacing:0.316800pt;}
.ws11_c02377{word-spacing:0.743424pt;}
.wsa_c02377{word-spacing:29.600256pt;}
.ws5_c02377{word-spacing:32.659968pt;}
.ws1_c02377{word-spacing:33.563904pt;}
.ws0_c02377{word-spacing:33.796224pt;}
.ws3_c02377{word-spacing:34.860672pt;}
.ws4_c02377{word-spacing:35.468928pt;}
.ws6_c02377{word-spacing:37.357056pt;}
._0_c02377{margin-left:-1.731840pt;}
._2_c02377{width:1.317888pt;}
._4_c02377{width:3.320064pt;}
._1_c02377{width:44.668800pt;}
._3_c02377{width:45.805056pt;}
.fs0_c02377{font-size:42.240000pt;}
.fs1_c02377{font-size:53.760000pt;}
.y0_c02377{bottom:0.000000pt;}
.y19_c02377{bottom:130.665211pt;}
.y1b_c02377{bottom:165.866875pt;}
.y1a_c02377{bottom:174.507067pt;}
.y18_c02377{bottom:245.225371pt;}
.y17_c02377{bottom:317.225563pt;}
.y15_c02377{bottom:361.386427pt;}
.y11_c02377{bottom:377.386939pt;}
.y16_c02377{bottom:407.786011pt;}
.y14_c02377{bottom:437.226235pt;}
.y13_c02377{bottom:453.226747pt;}
.y10_c02377{bottom:482.666971pt;}
.y12_c02377{bottom:497.386555pt;}
.yf_c02377{bottom:513.387067pt;}
.y1c_c02377{bottom:546.027067pt;}
.yb_c02377{bottom:593.385179pt;}
.yd_c02377{bottom:628.586875pt;}
.yc_c02377{bottom:637.227067pt;}
.ya_c02377{bottom:707.945339pt;}
.y9_c02377{bottom:779.945531pt;}
.y7_c02377{bottom:823.786427pt;}
.y3_c02377{bottom:839.786939pt;}
.y8_c02377{bottom:870.505979pt;}
.y6_c02377{bottom:899.946203pt;}
.y5_c02377{bottom:915.946715pt;}
.y2_c02377{bottom:945.386939pt;}
.y4_c02377{bottom:959.786555pt;}
.y1_c02377{bottom:975.787067pt;}
.ye_c02377{bottom:1008.747067pt;}
.h3_c02377{height:28.916250pt;}
.h1_c02377{height:37.063125pt;}
.h2_c02377{height:37.166250pt;}
.h4_c02377{height:48.581988pt;}
.h0_c02377{height:1122.666667pt;}
.w1_c02377{width:793.333333pt;}
.w0_c02377{width:793.626667pt;}
.x0_c02377{left:0.000000pt;}
.xd_c02377{left:104.000000pt;}
.x8_c02377{left:391.999872pt;}
.x4_c02377{left:396.160512pt;}
.xb_c02377{left:400.960000pt;}
.x7_c02377{left:404.799648pt;}
.x5_c02377{left:410.560128pt;}
.x1_c02377{left:411.840000pt;}
.xa_c02377{left:429.760320pt;}
.x9_c02377{left:437.439552pt;}
.x6_c02377{left:438.400512pt;}
.xc_c02377{left:450.560320pt;}
.x3_c02377{left:455.039904pt;}
.x2_c02377{left:468.159648pt;}
}





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

.ir_c02378:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02378{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02378;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02378{font-family:ff1_c02378;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02378;src:url('chunks/assets/font_eb7bce46843657c81ac8264d.woff2')format("woff");}.ff2_c02378{font-family:ff2_c02378;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02378;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02378{font-family:ff3_c02378;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02378{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02378{vertical-align:0.000000px;}
.v1_c02378{vertical-align:1.439424px;}
.lsd_c02378{letter-spacing:-1.197504px;}
.ls9_c02378{letter-spacing:-0.717552px;}
.lsa_c02378{letter-spacing:-0.574992px;}
.ls10_c02378{letter-spacing:-0.275616px;}
.lse_c02378{letter-spacing:-0.261360px;}
.ls6_c02378{letter-spacing:-0.242352px;}
.ls7_c02378{letter-spacing:-0.237600px;}
.ls4_c02378{letter-spacing:-0.118800px;}
.ls13_c02378{letter-spacing:0.000000px;}
.ls1_c02378{letter-spacing:0.006048px;}
.ls5_c02378{letter-spacing:0.128304px;}
.lsc_c02378{letter-spacing:0.508464px;}
.ls12_c02378{letter-spacing:0.514080px;}
.lsf_c02378{letter-spacing:0.536976px;}
.lsb_c02378{letter-spacing:0.579744px;}
.ls11_c02378{letter-spacing:0.594000px;}
.ls8_c02378{letter-spacing:0.598752px;}
.ls3_c02378{letter-spacing:0.613008px;}
.ls2_c02378{letter-spacing:0.717552px;}
.ls0_c02378{letter-spacing:0.722304px;}
.sc__c02378{text-shadow:none;}
.sc0_c02378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02378{-webkit-text-stroke:0px transparent;}
.sc0_c02378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02378{word-spacing:-15.126048px;}
.ws9_c02378{word-spacing:-12.474000px;}
.ws7_c02378{word-spacing:-12.459744px;}
.ws8_c02378{word-spacing:-12.416976px;}
.ws2_c02378{word-spacing:-11.642400px;}
.ws14_c02378{word-spacing:-2.159136px;}
.ws10_c02378{word-spacing:-1.083456px;}
.ws15_c02378{word-spacing:-1.078704px;}
.wsc_c02378{word-spacing:-0.974160px;}
.wse_c02378{word-spacing:-0.118800px;}
.ws12_c02378{word-spacing:-0.099792px;}
.ws13_c02378{word-spacing:-0.085536px;}
.wsd_c02378{word-spacing:0.000000px;}
.wsf_c02378{word-spacing:0.356400px;}
.ws11_c02378{word-spacing:0.836352px;}
.wsa_c02378{word-spacing:33.300288px;}
.ws5_c02378{word-spacing:36.742464px;}
.ws1_c02378{word-spacing:37.759392px;}
.ws0_c02378{word-spacing:38.020752px;}
.ws3_c02378{word-spacing:39.218256px;}
.ws4_c02378{word-spacing:39.902544px;}
.ws6_c02378{word-spacing:42.026688px;}
._0_c02378{margin-left:-1.948320px;}
._2_c02378{width:1.482624px;}
._4_c02378{width:3.735072px;}
._1_c02378{width:50.252400px;}
._3_c02378{width:51.530688px;}
.fc0_c02378{color:rgb(0,0,0);}
.fs0_c02378{font-size:47.520000px;}
.fs1_c02378{font-size:60.480000px;}
.y0_c02378{bottom:0.000000px;}
.y19_c02378{bottom:146.998362px;}
.y1b_c02378{bottom:186.600234px;}
.y1a_c02378{bottom:196.320450px;}
.y18_c02378{bottom:275.878542px;}
.y17_c02378{bottom:356.878758px;}
.y15_c02378{bottom:406.559730px;}
.y11_c02378{bottom:424.560306px;}
.y16_c02378{bottom:458.759262px;}
.y14_c02378{bottom:491.879514px;}
.y13_c02378{bottom:509.880090px;}
.y10_c02378{bottom:543.000342px;}
.y12_c02378{bottom:559.559874px;}
.yf_c02378{bottom:577.560450px;}
.y1c_c02378{bottom:614.280450px;}
.yb_c02378{bottom:667.558326px;}
.yd_c02378{bottom:707.160234px;}
.yc_c02378{bottom:716.880450px;}
.ya_c02378{bottom:796.438506px;}
.y9_c02378{bottom:877.438722px;}
.y7_c02378{bottom:926.759730px;}
.y3_c02378{bottom:944.760306px;}
.y8_c02378{bottom:979.319226px;}
.y6_c02378{bottom:1012.439478px;}
.y5_c02378{bottom:1030.440054px;}
.y2_c02378{bottom:1063.560306px;}
.y4_c02378{bottom:1079.759874px;}
.y1_c02378{bottom:1097.760450px;}
.ye_c02378{bottom:1134.840450px;}
.h3_c02378{height:32.530781px;}
.h1_c02378{height:41.696016px;}
.h2_c02378{height:41.812031px;}
.h4_c02378{height:54.654737px;}
.h0_c02378{height:1263.000000px;}
.w1_c02378{width:892.500000px;}
.w0_c02378{width:892.830000px;}
.x0_c02378{left:0.000000px;}
.xd_c02378{left:117.000000px;}
.x8_c02378{left:440.999856px;}
.x4_c02378{left:445.680576px;}
.xb_c02378{left:451.080000px;}
.x7_c02378{left:455.399604px;}
.x5_c02378{left:461.880144px;}
.x1_c02378{left:463.320000px;}
.xa_c02378{left:483.480360px;}
.x9_c02378{left:492.119496px;}
.x6_c02378{left:493.200576px;}
.xc_c02378{left:506.880360px;}
.x3_c02378{left:511.919892px;}
.x2_c02378{left:526.679604px;}
@media print{
.v0_c02378{vertical-align:0.000000pt;}
.v1_c02378{vertical-align:1.279488pt;}
.lsd_c02378{letter-spacing:-1.064448pt;}
.ls9_c02378{letter-spacing:-0.637824pt;}
.lsa_c02378{letter-spacing:-0.511104pt;}
.ls10_c02378{letter-spacing:-0.244992pt;}
.lse_c02378{letter-spacing:-0.232320pt;}
.ls6_c02378{letter-spacing:-0.215424pt;}
.ls7_c02378{letter-spacing:-0.211200pt;}
.ls4_c02378{letter-spacing:-0.105600pt;}
.ls13_c02378{letter-spacing:0.000000pt;}
.ls1_c02378{letter-spacing:0.005376pt;}
.ls5_c02378{letter-spacing:0.114048pt;}
.lsc_c02378{letter-spacing:0.451968pt;}
.ls12_c02378{letter-spacing:0.456960pt;}
.lsf_c02378{letter-spacing:0.477312pt;}
.lsb_c02378{letter-spacing:0.515328pt;}
.ls11_c02378{letter-spacing:0.528000pt;}
.ls8_c02378{letter-spacing:0.532224pt;}
.ls3_c02378{letter-spacing:0.544896pt;}
.ls2_c02378{letter-spacing:0.637824pt;}
.ls0_c02378{letter-spacing:0.642048pt;}
.wsb_c02378{word-spacing:-13.445376pt;}
.ws9_c02378{word-spacing:-11.088000pt;}
.ws7_c02378{word-spacing:-11.075328pt;}
.ws8_c02378{word-spacing:-11.037312pt;}
.ws2_c02378{word-spacing:-10.348800pt;}
.ws14_c02378{word-spacing:-1.919232pt;}
.ws10_c02378{word-spacing:-0.963072pt;}
.ws15_c02378{word-spacing:-0.958848pt;}
.wsc_c02378{word-spacing:-0.865920pt;}
.wse_c02378{word-spacing:-0.105600pt;}
.ws12_c02378{word-spacing:-0.088704pt;}
.ws13_c02378{word-spacing:-0.076032pt;}
.wsd_c02378{word-spacing:0.000000pt;}
.wsf_c02378{word-spacing:0.316800pt;}
.ws11_c02378{word-spacing:0.743424pt;}
.wsa_c02378{word-spacing:29.600256pt;}
.ws5_c02378{word-spacing:32.659968pt;}
.ws1_c02378{word-spacing:33.563904pt;}
.ws0_c02378{word-spacing:33.796224pt;}
.ws3_c02378{word-spacing:34.860672pt;}
.ws4_c02378{word-spacing:35.468928pt;}
.ws6_c02378{word-spacing:37.357056pt;}
._0_c02378{margin-left:-1.731840pt;}
._2_c02378{width:1.317888pt;}
._4_c02378{width:3.320064pt;}
._1_c02378{width:44.668800pt;}
._3_c02378{width:45.805056pt;}
.fs0_c02378{font-size:42.240000pt;}
.fs1_c02378{font-size:53.760000pt;}
.y0_c02378{bottom:0.000000pt;}
.y19_c02378{bottom:130.665211pt;}
.y1b_c02378{bottom:165.866875pt;}
.y1a_c02378{bottom:174.507067pt;}
.y18_c02378{bottom:245.225371pt;}
.y17_c02378{bottom:317.225563pt;}
.y15_c02378{bottom:361.386427pt;}
.y11_c02378{bottom:377.386939pt;}
.y16_c02378{bottom:407.786011pt;}
.y14_c02378{bottom:437.226235pt;}
.y13_c02378{bottom:453.226747pt;}
.y10_c02378{bottom:482.666971pt;}
.y12_c02378{bottom:497.386555pt;}
.yf_c02378{bottom:513.387067pt;}
.y1c_c02378{bottom:546.027067pt;}
.yb_c02378{bottom:593.385179pt;}
.yd_c02378{bottom:628.586875pt;}
.yc_c02378{bottom:637.227067pt;}
.ya_c02378{bottom:707.945339pt;}
.y9_c02378{bottom:779.945531pt;}
.y7_c02378{bottom:823.786427pt;}
.y3_c02378{bottom:839.786939pt;}
.y8_c02378{bottom:870.505979pt;}
.y6_c02378{bottom:899.946203pt;}
.y5_c02378{bottom:915.946715pt;}
.y2_c02378{bottom:945.386939pt;}
.y4_c02378{bottom:959.786555pt;}
.y1_c02378{bottom:975.787067pt;}
.ye_c02378{bottom:1008.747067pt;}
.h3_c02378{height:28.916250pt;}
.h1_c02378{height:37.063125pt;}
.h2_c02378{height:37.166250pt;}
.h4_c02378{height:48.581988pt;}
.h0_c02378{height:1122.666667pt;}
.w1_c02378{width:793.333333pt;}
.w0_c02378{width:793.626667pt;}
.x0_c02378{left:0.000000pt;}
.xd_c02378{left:104.000000pt;}
.x8_c02378{left:391.999872pt;}
.x4_c02378{left:396.160512pt;}
.xb_c02378{left:400.960000pt;}
.x7_c02378{left:404.799648pt;}
.x5_c02378{left:410.560128pt;}
.x1_c02378{left:411.840000pt;}
.xa_c02378{left:429.760320pt;}
.x9_c02378{left:437.439552pt;}
.x6_c02378{left:438.400512pt;}
.xc_c02378{left:450.560320pt;}
.x3_c02378{left:455.039904pt;}
.x2_c02378{left:468.159648pt;}
}





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

.ir_c02379:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02379{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02379;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02379{font-family:ff1_c02379;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02379;src:url('chunks/assets/font_02e9f1ceeac13d2a51c249e2.woff2')format("woff");}.ff2_c02379{font-family:ff2_c02379;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02379;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02379{font-family:ff3_c02379;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02379{vertical-align:0.000000px;}
.v1_c02379{vertical-align:1.439424px;}
.lse_c02379{letter-spacing:-1.197504px;}
.lsa_c02379{letter-spacing:-0.888624px;}
.ls16_c02379{letter-spacing:-0.774576px;}
.ls18_c02379{letter-spacing:-0.736560px;}
.ls17_c02379{letter-spacing:-0.722304px;}
.ls15_c02379{letter-spacing:-0.608256px;}
.lsb_c02379{letter-spacing:-0.574992px;}
.ls11_c02379{letter-spacing:-0.275616px;}
.ls19_c02379{letter-spacing:-0.270864px;}
.lsf_c02379{letter-spacing:-0.261360px;}
.ls7_c02379{letter-spacing:-0.242352px;}
.ls8_c02379{letter-spacing:-0.237600px;}
.ls4_c02379{letter-spacing:-0.118800px;}
.ls14_c02379{letter-spacing:0.000000px;}
.ls1_c02379{letter-spacing:0.006048px;}
.ls6_c02379{letter-spacing:0.128304px;}
.lsd_c02379{letter-spacing:0.508464px;}
.ls13_c02379{letter-spacing:0.514080px;}
.ls10_c02379{letter-spacing:0.536976px;}
.lsc_c02379{letter-spacing:0.579744px;}
.ls12_c02379{letter-spacing:0.594000px;}
.ls9_c02379{letter-spacing:0.598752px;}
.ls3_c02379{letter-spacing:0.613008px;}
.ls2_c02379{letter-spacing:0.651024px;}
.ls5_c02379{letter-spacing:0.717552px;}
.ls0_c02379{letter-spacing:0.722304px;}
.sc__c02379{text-shadow:none;}
.sc0_c02379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02379{-webkit-text-stroke:0px transparent;}
.sc0_c02379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02379{word-spacing:-15.126048px;}
.ws9_c02379{word-spacing:-12.474000px;}
.ws7_c02379{word-spacing:-12.459744px;}
.ws8_c02379{word-spacing:-12.416976px;}
.ws2_c02379{word-spacing:-11.642400px;}
.wsc_c02379{word-spacing:-11.271744px;}
.wsd_c02379{word-spacing:-11.105424px;}
.ws18_c02379{word-spacing:-2.159136px;}
.ws14_c02379{word-spacing:-1.083456px;}
.ws19_c02379{word-spacing:-1.012176px;}
.ws10_c02379{word-spacing:-0.974160px;}
.ws12_c02379{word-spacing:-0.118800px;}
.ws16_c02379{word-spacing:-0.099792px;}
.ws1b_c02379{word-spacing:-0.090288px;}
.ws17_c02379{word-spacing:-0.085536px;}
.ws11_c02379{word-spacing:0.000000px;}
.ws1a_c02379{word-spacing:0.361152px;}
.ws13_c02379{word-spacing:0.527472px;}
.ws15_c02379{word-spacing:0.836352px;}
.wsf_c02379{word-spacing:6.629040px;}
.wsa_c02379{word-spacing:33.300288px;}
.wse_c02379{word-spacing:34.836912px;}
.ws5_c02379{word-spacing:36.742464px;}
.ws1_c02379{word-spacing:37.759392px;}
.ws0_c02379{word-spacing:38.020752px;}
.ws3_c02379{word-spacing:39.218256px;}
.ws4_c02379{word-spacing:39.902544px;}
.ws6_c02379{word-spacing:42.026688px;}
._0_c02379{margin-left:-1.948320px;}
._2_c02379{width:1.482624px;}
._5_c02379{width:2.770416px;}
._4_c02379{width:4.642704px;}
._7_c02379{width:19.982160px;}
._8_c02379{width:23.451120px;}
._6_c02379{width:24.691392px;}
._1_c02379{width:50.252400px;}
._3_c02379{width:51.530688px;}
.fc0_c02379{color:rgb(0,0,0);}
.fs0_c02379{font-size:47.520000px;}
.fs1_c02379{font-size:60.480000px;}
.y0_c02379{bottom:0.000000px;}
.y1a_c02379{bottom:131.878686px;}
.y19_c02379{bottom:146.998362px;}
.y1c_c02379{bottom:186.600234px;}
.y1b_c02379{bottom:196.320450px;}
.y18_c02379{bottom:275.878542px;}
.y17_c02379{bottom:356.878758px;}
.y15_c02379{bottom:406.559730px;}
.y11_c02379{bottom:424.560306px;}
.y16_c02379{bottom:458.759262px;}
.y14_c02379{bottom:491.879514px;}
.y13_c02379{bottom:509.880090px;}
.y10_c02379{bottom:543.000342px;}
.y12_c02379{bottom:559.559874px;}
.yf_c02379{bottom:577.560450px;}
.y1d_c02379{bottom:614.280450px;}
.yb_c02379{bottom:667.558326px;}
.yd_c02379{bottom:707.160234px;}
.yc_c02379{bottom:716.880450px;}
.ya_c02379{bottom:796.438506px;}
.y9_c02379{bottom:877.438722px;}
.y7_c02379{bottom:926.759730px;}
.y3_c02379{bottom:944.760306px;}
.y8_c02379{bottom:979.319226px;}
.y6_c02379{bottom:1012.439478px;}
.y5_c02379{bottom:1030.440054px;}
.y2_c02379{bottom:1063.560306px;}
.y4_c02379{bottom:1079.759874px;}
.y1_c02379{bottom:1097.760450px;}
.ye_c02379{bottom:1134.840450px;}
.h3_c02379{height:32.530781px;}
.h1_c02379{height:41.696016px;}
.h2_c02379{height:41.812031px;}
.h4_c02379{height:54.654737px;}
.h0_c02379{height:1263.000000px;}
.w1_c02379{width:892.500000px;}
.w0_c02379{width:892.830000px;}
.x0_c02379{left:0.000000px;}
.xd_c02379{left:117.000000px;}
.x8_c02379{left:440.999856px;}
.x4_c02379{left:445.680576px;}
.xb_c02379{left:451.080000px;}
.x7_c02379{left:455.399604px;}
.x5_c02379{left:461.880144px;}
.x1_c02379{left:463.320000px;}
.xa_c02379{left:483.480360px;}
.x9_c02379{left:492.119496px;}
.x6_c02379{left:493.200576px;}
.xc_c02379{left:506.880360px;}
.x3_c02379{left:511.919892px;}
.x2_c02379{left:526.679604px;}
.xe_c02379{left:569.880036px;}
@media print{
.v0_c02379{vertical-align:0.000000pt;}
.v1_c02379{vertical-align:1.279488pt;}
.lse_c02379{letter-spacing:-1.064448pt;}
.lsa_c02379{letter-spacing:-0.789888pt;}
.ls16_c02379{letter-spacing:-0.688512pt;}
.ls18_c02379{letter-spacing:-0.654720pt;}
.ls17_c02379{letter-spacing:-0.642048pt;}
.ls15_c02379{letter-spacing:-0.540672pt;}
.lsb_c02379{letter-spacing:-0.511104pt;}
.ls11_c02379{letter-spacing:-0.244992pt;}
.ls19_c02379{letter-spacing:-0.240768pt;}
.lsf_c02379{letter-spacing:-0.232320pt;}
.ls7_c02379{letter-spacing:-0.215424pt;}
.ls8_c02379{letter-spacing:-0.211200pt;}
.ls4_c02379{letter-spacing:-0.105600pt;}
.ls14_c02379{letter-spacing:0.000000pt;}
.ls1_c02379{letter-spacing:0.005376pt;}
.ls6_c02379{letter-spacing:0.114048pt;}
.lsd_c02379{letter-spacing:0.451968pt;}
.ls13_c02379{letter-spacing:0.456960pt;}
.ls10_c02379{letter-spacing:0.477312pt;}
.lsc_c02379{letter-spacing:0.515328pt;}
.ls12_c02379{letter-spacing:0.528000pt;}
.ls9_c02379{letter-spacing:0.532224pt;}
.ls3_c02379{letter-spacing:0.544896pt;}
.ls2_c02379{letter-spacing:0.578688pt;}
.ls5_c02379{letter-spacing:0.637824pt;}
.ls0_c02379{letter-spacing:0.642048pt;}
.wsb_c02379{word-spacing:-13.445376pt;}
.ws9_c02379{word-spacing:-11.088000pt;}
.ws7_c02379{word-spacing:-11.075328pt;}
.ws8_c02379{word-spacing:-11.037312pt;}
.ws2_c02379{word-spacing:-10.348800pt;}
.wsc_c02379{word-spacing:-10.019328pt;}
.wsd_c02379{word-spacing:-9.871488pt;}
.ws18_c02379{word-spacing:-1.919232pt;}
.ws14_c02379{word-spacing:-0.963072pt;}
.ws19_c02379{word-spacing:-0.899712pt;}
.ws10_c02379{word-spacing:-0.865920pt;}
.ws12_c02379{word-spacing:-0.105600pt;}
.ws16_c02379{word-spacing:-0.088704pt;}
.ws1b_c02379{word-spacing:-0.080256pt;}
.ws17_c02379{word-spacing:-0.076032pt;}
.ws11_c02379{word-spacing:0.000000pt;}
.ws1a_c02379{word-spacing:0.321024pt;}
.ws13_c02379{word-spacing:0.468864pt;}
.ws15_c02379{word-spacing:0.743424pt;}
.wsf_c02379{word-spacing:5.892480pt;}
.wsa_c02379{word-spacing:29.600256pt;}
.wse_c02379{word-spacing:30.966144pt;}
.ws5_c02379{word-spacing:32.659968pt;}
.ws1_c02379{word-spacing:33.563904pt;}
.ws0_c02379{word-spacing:33.796224pt;}
.ws3_c02379{word-spacing:34.860672pt;}
.ws4_c02379{word-spacing:35.468928pt;}
.ws6_c02379{word-spacing:37.357056pt;}
._0_c02379{margin-left:-1.731840pt;}
._2_c02379{width:1.317888pt;}
._5_c02379{width:2.462592pt;}
._4_c02379{width:4.126848pt;}
._7_c02379{width:17.761920pt;}
._8_c02379{width:20.845440pt;}
._6_c02379{width:21.947904pt;}
._1_c02379{width:44.668800pt;}
._3_c02379{width:45.805056pt;}
.fs0_c02379{font-size:42.240000pt;}
.fs1_c02379{font-size:53.760000pt;}
.y0_c02379{bottom:0.000000pt;}
.y1a_c02379{bottom:117.225499pt;}
.y19_c02379{bottom:130.665211pt;}
.y1c_c02379{bottom:165.866875pt;}
.y1b_c02379{bottom:174.507067pt;}
.y18_c02379{bottom:245.225371pt;}
.y17_c02379{bottom:317.225563pt;}
.y15_c02379{bottom:361.386427pt;}
.y11_c02379{bottom:377.386939pt;}
.y16_c02379{bottom:407.786011pt;}
.y14_c02379{bottom:437.226235pt;}
.y13_c02379{bottom:453.226747pt;}
.y10_c02379{bottom:482.666971pt;}
.y12_c02379{bottom:497.386555pt;}
.yf_c02379{bottom:513.387067pt;}
.y1d_c02379{bottom:546.027067pt;}
.yb_c02379{bottom:593.385179pt;}
.yd_c02379{bottom:628.586875pt;}
.yc_c02379{bottom:637.227067pt;}
.ya_c02379{bottom:707.945339pt;}
.y9_c02379{bottom:779.945531pt;}
.y7_c02379{bottom:823.786427pt;}
.y3_c02379{bottom:839.786939pt;}
.y8_c02379{bottom:870.505979pt;}
.y6_c02379{bottom:899.946203pt;}
.y5_c02379{bottom:915.946715pt;}
.y2_c02379{bottom:945.386939pt;}
.y4_c02379{bottom:959.786555pt;}
.y1_c02379{bottom:975.787067pt;}
.ye_c02379{bottom:1008.747067pt;}
.h3_c02379{height:28.916250pt;}
.h1_c02379{height:37.063125pt;}
.h2_c02379{height:37.166250pt;}
.h4_c02379{height:48.581988pt;}
.h0_c02379{height:1122.666667pt;}
.w1_c02379{width:793.333333pt;}
.w0_c02379{width:793.626667pt;}
.x0_c02379{left:0.000000pt;}
.xd_c02379{left:104.000000pt;}
.x8_c02379{left:391.999872pt;}
.x4_c02379{left:396.160512pt;}
.xb_c02379{left:400.960000pt;}
.x7_c02379{left:404.799648pt;}
.x5_c02379{left:410.560128pt;}
.x1_c02379{left:411.840000pt;}
.xa_c02379{left:429.760320pt;}
.x9_c02379{left:437.439552pt;}
.x6_c02379{left:438.400512pt;}
.xc_c02379{left:450.560320pt;}
.x3_c02379{left:455.039904pt;}
.x2_c02379{left:468.159648pt;}
.xe_c02379{left:506.560032pt;}
}





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

.ir_c02380:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02380{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02380;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02380{font-family:ff1_c02380;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02380;src:url('chunks/assets/font_53ed15497d70990d8a6b2ebb.woff2')format("woff");}.ff2_c02380{font-family:ff2_c02380;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02380;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02380{font-family:ff3_c02380;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02380{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02380{vertical-align:0.000000px;}
.v1_c02380{vertical-align:1.439424px;}
.v2_c02380{vertical-align:33.121440px;}
.lsd_c02380{letter-spacing:-1.197504px;}
.ls9_c02380{letter-spacing:-0.888624px;}
.ls15_c02380{letter-spacing:-0.722304px;}
.lsa_c02380{letter-spacing:-0.574992px;}
.ls16_c02380{letter-spacing:-0.361152px;}
.ls10_c02380{letter-spacing:-0.275616px;}
.lse_c02380{letter-spacing:-0.261360px;}
.ls6_c02380{letter-spacing:-0.242352px;}
.ls7_c02380{letter-spacing:-0.237600px;}
.ls3_c02380{letter-spacing:-0.118800px;}
.ls17_c02380{letter-spacing:-0.076032px;}
.ls13_c02380{letter-spacing:0.000000px;}
.ls0_c02380{letter-spacing:0.006048px;}
.ls14_c02380{letter-spacing:0.014256px;}
.ls5_c02380{letter-spacing:0.128304px;}
.lsc_c02380{letter-spacing:0.508464px;}
.ls12_c02380{letter-spacing:0.514080px;}
.lsf_c02380{letter-spacing:0.536976px;}
.lsb_c02380{letter-spacing:0.579744px;}
.ls11_c02380{letter-spacing:0.594000px;}
.ls8_c02380{letter-spacing:0.598752px;}
.ls2_c02380{letter-spacing:0.613008px;}
.ls4_c02380{letter-spacing:0.717552px;}
.ls1_c02380{letter-spacing:0.722304px;}
.sc__c02380{text-shadow:none;}
.sc0_c02380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02380{-webkit-text-stroke:0px transparent;}
.sc0_c02380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02380{word-spacing:-15.126048px;}
.ws9_c02380{word-spacing:-12.474000px;}
.ws7_c02380{word-spacing:-12.459744px;}
.ws8_c02380{word-spacing:-12.416976px;}
.ws2_c02380{word-spacing:-11.642400px;}
.wsc_c02380{word-spacing:-10.682496px;}
.ws17_c02380{word-spacing:-2.159136px;}
.ws13_c02380{word-spacing:-1.083456px;}
.wsf_c02380{word-spacing:-0.974160px;}
.ws18_c02380{word-spacing:-0.375408px;}
.ws1a_c02380{word-spacing:-0.285120px;}
.ws11_c02380{word-spacing:-0.118800px;}
.ws15_c02380{word-spacing:-0.099792px;}
.ws16_c02380{word-spacing:-0.085536px;}
.ws10_c02380{word-spacing:0.000000px;}
.ws19_c02380{word-spacing:0.361152px;}
.ws12_c02380{word-spacing:0.527472px;}
.ws14_c02380{word-spacing:0.836352px;}
.wse_c02380{word-spacing:30.298752px;}
.wsa_c02380{word-spacing:33.300288px;}
.wsd_c02380{word-spacing:36.143712px;}
.ws5_c02380{word-spacing:36.742464px;}
.ws1_c02380{word-spacing:37.759392px;}
.ws0_c02380{word-spacing:38.020752px;}
.ws3_c02380{word-spacing:39.218256px;}
.ws4_c02380{word-spacing:39.902544px;}
.ws6_c02380{word-spacing:42.026688px;}
._0_c02380{margin-left:-1.948320px;}
._2_c02380{width:1.482624px;}
._5_c02380{width:2.770416px;}
._4_c02380{width:4.642704px;}
._1_c02380{width:50.252400px;}
._3_c02380{width:51.530688px;}
.fc0_c02380{color:rgb(0,0,0);}
.fs0_c02380{font-size:47.520000px;}
.fs1_c02380{font-size:60.480000px;}
.y0_c02380{bottom:0.000000px;}
.y19_c02380{bottom:146.998362px;}
.y1b_c02380{bottom:186.600234px;}
.y1a_c02380{bottom:196.320450px;}
.y18_c02380{bottom:275.878542px;}
.y17_c02380{bottom:356.878758px;}
.y15_c02380{bottom:406.559730px;}
.y11_c02380{bottom:424.560306px;}
.y16_c02380{bottom:458.759262px;}
.y14_c02380{bottom:491.879514px;}
.y13_c02380{bottom:509.880090px;}
.y10_c02380{bottom:543.000342px;}
.y12_c02380{bottom:559.559874px;}
.yf_c02380{bottom:577.560450px;}
.y1c_c02380{bottom:614.280450px;}
.yb_c02380{bottom:667.558326px;}
.yd_c02380{bottom:707.160234px;}
.yc_c02380{bottom:716.880450px;}
.ya_c02380{bottom:796.438506px;}
.y9_c02380{bottom:877.438722px;}
.y7_c02380{bottom:926.759730px;}
.y3_c02380{bottom:944.760306px;}
.y8_c02380{bottom:979.319226px;}
.y6_c02380{bottom:1012.439478px;}
.y5_c02380{bottom:1030.440054px;}
.y2_c02380{bottom:1063.560306px;}
.y4_c02380{bottom:1079.759874px;}
.y1_c02380{bottom:1097.760450px;}
.ye_c02380{bottom:1134.840450px;}
.h3_c02380{height:32.530781px;}
.h1_c02380{height:41.696016px;}
.h2_c02380{height:41.812031px;}
.h4_c02380{height:54.654737px;}
.h5_c02380{height:74.817456px;}
.h0_c02380{height:1263.000000px;}
.w1_c02380{width:892.500000px;}
.w0_c02380{width:892.830000px;}
.x0_c02380{left:0.000000px;}
.xd_c02380{left:117.000000px;}
.x8_c02380{left:440.999856px;}
.x4_c02380{left:445.680576px;}
.xb_c02380{left:451.080000px;}
.x7_c02380{left:455.399604px;}
.x5_c02380{left:461.880144px;}
.x1_c02380{left:463.320000px;}
.xa_c02380{left:483.480360px;}
.x9_c02380{left:492.119496px;}
.x6_c02380{left:493.200576px;}
.xc_c02380{left:506.880360px;}
.x3_c02380{left:511.919892px;}
.x2_c02380{left:526.679604px;}
@media print{
.v0_c02380{vertical-align:0.000000pt;}
.v1_c02380{vertical-align:1.279488pt;}
.v2_c02380{vertical-align:29.441280pt;}
.lsd_c02380{letter-spacing:-1.064448pt;}
.ls9_c02380{letter-spacing:-0.789888pt;}
.ls15_c02380{letter-spacing:-0.642048pt;}
.lsa_c02380{letter-spacing:-0.511104pt;}
.ls16_c02380{letter-spacing:-0.321024pt;}
.ls10_c02380{letter-spacing:-0.244992pt;}
.lse_c02380{letter-spacing:-0.232320pt;}
.ls6_c02380{letter-spacing:-0.215424pt;}
.ls7_c02380{letter-spacing:-0.211200pt;}
.ls3_c02380{letter-spacing:-0.105600pt;}
.ls17_c02380{letter-spacing:-0.067584pt;}
.ls13_c02380{letter-spacing:0.000000pt;}
.ls0_c02380{letter-spacing:0.005376pt;}
.ls14_c02380{letter-spacing:0.012672pt;}
.ls5_c02380{letter-spacing:0.114048pt;}
.lsc_c02380{letter-spacing:0.451968pt;}
.ls12_c02380{letter-spacing:0.456960pt;}
.lsf_c02380{letter-spacing:0.477312pt;}
.lsb_c02380{letter-spacing:0.515328pt;}
.ls11_c02380{letter-spacing:0.528000pt;}
.ls8_c02380{letter-spacing:0.532224pt;}
.ls2_c02380{letter-spacing:0.544896pt;}
.ls4_c02380{letter-spacing:0.637824pt;}
.ls1_c02380{letter-spacing:0.642048pt;}
.wsb_c02380{word-spacing:-13.445376pt;}
.ws9_c02380{word-spacing:-11.088000pt;}
.ws7_c02380{word-spacing:-11.075328pt;}
.ws8_c02380{word-spacing:-11.037312pt;}
.ws2_c02380{word-spacing:-10.348800pt;}
.wsc_c02380{word-spacing:-9.495552pt;}
.ws17_c02380{word-spacing:-1.919232pt;}
.ws13_c02380{word-spacing:-0.963072pt;}
.wsf_c02380{word-spacing:-0.865920pt;}
.ws18_c02380{word-spacing:-0.333696pt;}
.ws1a_c02380{word-spacing:-0.253440pt;}
.ws11_c02380{word-spacing:-0.105600pt;}
.ws15_c02380{word-spacing:-0.088704pt;}
.ws16_c02380{word-spacing:-0.076032pt;}
.ws10_c02380{word-spacing:0.000000pt;}
.ws19_c02380{word-spacing:0.321024pt;}
.ws12_c02380{word-spacing:0.468864pt;}
.ws14_c02380{word-spacing:0.743424pt;}
.wse_c02380{word-spacing:26.932224pt;}
.wsa_c02380{word-spacing:29.600256pt;}
.wsd_c02380{word-spacing:32.127744pt;}
.ws5_c02380{word-spacing:32.659968pt;}
.ws1_c02380{word-spacing:33.563904pt;}
.ws0_c02380{word-spacing:33.796224pt;}
.ws3_c02380{word-spacing:34.860672pt;}
.ws4_c02380{word-spacing:35.468928pt;}
.ws6_c02380{word-spacing:37.357056pt;}
._0_c02380{margin-left:-1.731840pt;}
._2_c02380{width:1.317888pt;}
._5_c02380{width:2.462592pt;}
._4_c02380{width:4.126848pt;}
._1_c02380{width:44.668800pt;}
._3_c02380{width:45.805056pt;}
.fs0_c02380{font-size:42.240000pt;}
.fs1_c02380{font-size:53.760000pt;}
.y0_c02380{bottom:0.000000pt;}
.y19_c02380{bottom:130.665211pt;}
.y1b_c02380{bottom:165.866875pt;}
.y1a_c02380{bottom:174.507067pt;}
.y18_c02380{bottom:245.225371pt;}
.y17_c02380{bottom:317.225563pt;}
.y15_c02380{bottom:361.386427pt;}
.y11_c02380{bottom:377.386939pt;}
.y16_c02380{bottom:407.786011pt;}
.y14_c02380{bottom:437.226235pt;}
.y13_c02380{bottom:453.226747pt;}
.y10_c02380{bottom:482.666971pt;}
.y12_c02380{bottom:497.386555pt;}
.yf_c02380{bottom:513.387067pt;}
.y1c_c02380{bottom:546.027067pt;}
.yb_c02380{bottom:593.385179pt;}
.yd_c02380{bottom:628.586875pt;}
.yc_c02380{bottom:637.227067pt;}
.ya_c02380{bottom:707.945339pt;}
.y9_c02380{bottom:779.945531pt;}
.y7_c02380{bottom:823.786427pt;}
.y3_c02380{bottom:839.786939pt;}
.y8_c02380{bottom:870.505979pt;}
.y6_c02380{bottom:899.946203pt;}
.y5_c02380{bottom:915.946715pt;}
.y2_c02380{bottom:945.386939pt;}
.y4_c02380{bottom:959.786555pt;}
.y1_c02380{bottom:975.787067pt;}
.ye_c02380{bottom:1008.747067pt;}
.h3_c02380{height:28.916250pt;}
.h1_c02380{height:37.063125pt;}
.h2_c02380{height:37.166250pt;}
.h4_c02380{height:48.581988pt;}
.h5_c02380{height:66.504405pt;}
.h0_c02380{height:1122.666667pt;}
.w1_c02380{width:793.333333pt;}
.w0_c02380{width:793.626667pt;}
.x0_c02380{left:0.000000pt;}
.xd_c02380{left:104.000000pt;}
.x8_c02380{left:391.999872pt;}
.x4_c02380{left:396.160512pt;}
.xb_c02380{left:400.960000pt;}
.x7_c02380{left:404.799648pt;}
.x5_c02380{left:410.560128pt;}
.x1_c02380{left:411.840000pt;}
.xa_c02380{left:429.760320pt;}
.x9_c02380{left:437.439552pt;}
.x6_c02380{left:438.400512pt;}
.xc_c02380{left:450.560320pt;}
.x3_c02380{left:455.039904pt;}
.x2_c02380{left:468.159648pt;}
}





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

.ir_c02381:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02381{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02381;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02381{font-family:ff1_c02381;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02381;src:url('chunks/assets/font_775388ba9c84651da2caa133.woff2')format("woff");}.ff2_c02381{font-family:ff2_c02381;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02381;src:url('chunks/assets/font_415e12515a5e297aea5afaad.woff2')format("woff");}.ff3_c02381{font-family:ff3_c02381;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02381{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02381{vertical-align:0.000000px;}
.v1_c02381{vertical-align:1.439424px;}
.ls17_c02381{letter-spacing:-0.888624px;}
.lsf_c02381{letter-spacing:-0.793584px;}
.lsc_c02381{letter-spacing:-0.774576px;}
.ls12_c02381{letter-spacing:-0.736560px;}
.lsa_c02381{letter-spacing:-0.608256px;}
.lsb_c02381{letter-spacing:-0.574992px;}
.ls19_c02381{letter-spacing:-0.323136px;}
.ls1a_c02381{letter-spacing:-0.275616px;}
.ls13_c02381{letter-spacing:-0.270864px;}
.ls10_c02381{letter-spacing:-0.261360px;}
.ls7_c02381{letter-spacing:-0.242352px;}
.ls8_c02381{letter-spacing:-0.237600px;}
.ls5_c02381{letter-spacing:-0.118800px;}
.ls16_c02381{letter-spacing:0.000000px;}
.ls1_c02381{letter-spacing:0.006048px;}
.ls6_c02381{letter-spacing:0.128304px;}
.lse_c02381{letter-spacing:0.508464px;}
.ls15_c02381{letter-spacing:0.514080px;}
.ls11_c02381{letter-spacing:0.536976px;}
.lsd_c02381{letter-spacing:0.579744px;}
.ls14_c02381{letter-spacing:0.594000px;}
.ls9_c02381{letter-spacing:0.598752px;}
.ls4_c02381{letter-spacing:0.613008px;}
.ls0_c02381{letter-spacing:0.651024px;}
.ls18_c02381{letter-spacing:0.684288px;}
.ls3_c02381{letter-spacing:0.717552px;}
.ls2_c02381{letter-spacing:0.722304px;}
.sc__c02381{text-shadow:none;}
.sc0_c02381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02381{-webkit-text-stroke:0px transparent;}
.sc0_c02381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02381{word-spacing:-15.126048px;}
.wsf_c02381{word-spacing:-12.602304px;}
.ws12_c02381{word-spacing:-12.564288px;}
.wsb_c02381{word-spacing:-12.474000px;}
.ws7_c02381{word-spacing:-12.459744px;}
.ws13_c02381{word-spacing:-12.416976px;}
.ws10_c02381{word-spacing:-12.388464px;}
.wse_c02381{word-spacing:-11.761200px;}
.ws2_c02381{word-spacing:-11.642400px;}
.ws4_c02381{word-spacing:-11.271744px;}
.ws6_c02381{word-spacing:-11.105424px;}
.ws1c_c02381{word-spacing:-2.159136px;}
.ws1d_c02381{word-spacing:-1.083456px;}
.ws1f_c02381{word-spacing:-1.078704px;}
.ws16_c02381{word-spacing:-1.012176px;}
.ws14_c02381{word-spacing:-0.974160px;}
.ws17_c02381{word-spacing:-0.118800px;}
.ws19_c02381{word-spacing:-0.099792px;}
.ws1a_c02381{word-spacing:-0.090288px;}
.ws1b_c02381{word-spacing:-0.085536px;}
.ws20_c02381{word-spacing:-0.038016px;}
.ws15_c02381{word-spacing:0.000000px;}
.ws18_c02381{word-spacing:0.432432px;}
.ws1e_c02381{word-spacing:0.527472px;}
.wsa_c02381{word-spacing:6.629040px;}
.wsc_c02381{word-spacing:33.300288px;}
.ws9_c02381{word-spacing:34.836912px;}
.ws11_c02381{word-spacing:36.143712px;}
.ws1_c02381{word-spacing:37.759392px;}
.ws0_c02381{word-spacing:38.020752px;}
.ws3_c02381{word-spacing:39.218256px;}
.ws5_c02381{word-spacing:39.902544px;}
.ws8_c02381{word-spacing:42.026688px;}
._0_c02381{margin-left:-1.948320px;}
._2_c02381{width:1.482624px;}
._7_c02381{width:4.642704px;}
._5_c02381{width:19.982160px;}
._6_c02381{width:23.451120px;}
._4_c02381{width:24.691392px;}
._1_c02381{width:50.252400px;}
._3_c02381{width:51.530688px;}
.fc0_c02381{color:rgb(0,0,0);}
.fs0_c02381{font-size:47.520000px;}
.fs1_c02381{font-size:60.480000px;}
.y0_c02381{bottom:0.000000px;}
.y13_c02381{bottom:18.000450px;}
.y1c_c02381{bottom:146.998506px;}
.y1e_c02381{bottom:186.600234px;}
.y1d_c02381{bottom:196.320450px;}
.y1b_c02381{bottom:275.878686px;}
.y1a_c02381{bottom:356.878902px;}
.y18_c02381{bottom:406.559874px;}
.y14_c02381{bottom:424.560450px;}
.y19_c02381{bottom:458.759406px;}
.y17_c02381{bottom:491.879658px;}
.y16_c02381{bottom:509.880234px;}
.y12_c02381{bottom:525.000000px;}
.y11_c02381{bottom:543.000342px;}
.y15_c02381{bottom:559.560018px;}
.y10_c02381{bottom:577.560450px;}
.y1f_c02381{bottom:614.280450px;}
.yc_c02381{bottom:652.438650px;}
.yb_c02381{bottom:667.558326px;}
.ye_c02381{bottom:707.160234px;}
.yd_c02381{bottom:716.880450px;}
.ya_c02381{bottom:796.438506px;}
.y9_c02381{bottom:877.438722px;}
.y7_c02381{bottom:926.759730px;}
.y3_c02381{bottom:944.760306px;}
.y8_c02381{bottom:979.319226px;}
.y6_c02381{bottom:1012.439478px;}
.y5_c02381{bottom:1030.440054px;}
.y2_c02381{bottom:1063.560306px;}
.y4_c02381{bottom:1079.759874px;}
.y1_c02381{bottom:1097.760450px;}
.yf_c02381{bottom:1134.840450px;}
.h5_c02381{height:29.160000px;}
.h3_c02381{height:32.530781px;}
.h1_c02381{height:41.696016px;}
.h2_c02381{height:41.812031px;}
.h4_c02381{height:54.654737px;}
.h0_c02381{height:1263.000000px;}
.w2_c02381{width:215.280000px;}
.w1_c02381{width:892.500000px;}
.w0_c02381{width:892.830000px;}
.x0_c02381{left:0.000000px;}
.xe_c02381{left:117.000000px;}
.x8_c02381{left:440.999856px;}
.x4_c02381{left:445.680576px;}
.xc_c02381{left:451.080000px;}
.x7_c02381{left:455.399604px;}
.x5_c02381{left:461.880144px;}
.x1_c02381{left:463.320000px;}
.xa_c02381{left:483.480360px;}
.x9_c02381{left:492.119496px;}
.x6_c02381{left:493.200576px;}
.xd_c02381{left:506.880360px;}
.x3_c02381{left:511.919892px;}
.x2_c02381{left:526.679604px;}
.xb_c02381{left:569.880036px;}
@media print{
.v0_c02381{vertical-align:0.000000pt;}
.v1_c02381{vertical-align:1.279488pt;}
.ls17_c02381{letter-spacing:-0.789888pt;}
.lsf_c02381{letter-spacing:-0.705408pt;}
.lsc_c02381{letter-spacing:-0.688512pt;}
.ls12_c02381{letter-spacing:-0.654720pt;}
.lsa_c02381{letter-spacing:-0.540672pt;}
.lsb_c02381{letter-spacing:-0.511104pt;}
.ls19_c02381{letter-spacing:-0.287232pt;}
.ls1a_c02381{letter-spacing:-0.244992pt;}
.ls13_c02381{letter-spacing:-0.240768pt;}
.ls10_c02381{letter-spacing:-0.232320pt;}
.ls7_c02381{letter-spacing:-0.215424pt;}
.ls8_c02381{letter-spacing:-0.211200pt;}
.ls5_c02381{letter-spacing:-0.105600pt;}
.ls16_c02381{letter-spacing:0.000000pt;}
.ls1_c02381{letter-spacing:0.005376pt;}
.ls6_c02381{letter-spacing:0.114048pt;}
.lse_c02381{letter-spacing:0.451968pt;}
.ls15_c02381{letter-spacing:0.456960pt;}
.ls11_c02381{letter-spacing:0.477312pt;}
.lsd_c02381{letter-spacing:0.515328pt;}
.ls14_c02381{letter-spacing:0.528000pt;}
.ls9_c02381{letter-spacing:0.532224pt;}
.ls4_c02381{letter-spacing:0.544896pt;}
.ls0_c02381{letter-spacing:0.578688pt;}
.ls18_c02381{letter-spacing:0.608256pt;}
.ls3_c02381{letter-spacing:0.637824pt;}
.ls2_c02381{letter-spacing:0.642048pt;}
.wsd_c02381{word-spacing:-13.445376pt;}
.wsf_c02381{word-spacing:-11.202048pt;}
.ws12_c02381{word-spacing:-11.168256pt;}
.wsb_c02381{word-spacing:-11.088000pt;}
.ws7_c02381{word-spacing:-11.075328pt;}
.ws13_c02381{word-spacing:-11.037312pt;}
.ws10_c02381{word-spacing:-11.011968pt;}
.wse_c02381{word-spacing:-10.454400pt;}
.ws2_c02381{word-spacing:-10.348800pt;}
.ws4_c02381{word-spacing:-10.019328pt;}
.ws6_c02381{word-spacing:-9.871488pt;}
.ws1c_c02381{word-spacing:-1.919232pt;}
.ws1d_c02381{word-spacing:-0.963072pt;}
.ws1f_c02381{word-spacing:-0.958848pt;}
.ws16_c02381{word-spacing:-0.899712pt;}
.ws14_c02381{word-spacing:-0.865920pt;}
.ws17_c02381{word-spacing:-0.105600pt;}
.ws19_c02381{word-spacing:-0.088704pt;}
.ws1a_c02381{word-spacing:-0.080256pt;}
.ws1b_c02381{word-spacing:-0.076032pt;}
.ws20_c02381{word-spacing:-0.033792pt;}
.ws15_c02381{word-spacing:0.000000pt;}
.ws18_c02381{word-spacing:0.384384pt;}
.ws1e_c02381{word-spacing:0.468864pt;}
.wsa_c02381{word-spacing:5.892480pt;}
.wsc_c02381{word-spacing:29.600256pt;}
.ws9_c02381{word-spacing:30.966144pt;}
.ws11_c02381{word-spacing:32.127744pt;}
.ws1_c02381{word-spacing:33.563904pt;}
.ws0_c02381{word-spacing:33.796224pt;}
.ws3_c02381{word-spacing:34.860672pt;}
.ws5_c02381{word-spacing:35.468928pt;}
.ws8_c02381{word-spacing:37.357056pt;}
._0_c02381{margin-left:-1.731840pt;}
._2_c02381{width:1.317888pt;}
._7_c02381{width:4.126848pt;}
._5_c02381{width:17.761920pt;}
._6_c02381{width:20.845440pt;}
._4_c02381{width:21.947904pt;}
._1_c02381{width:44.668800pt;}
._3_c02381{width:45.805056pt;}
.fs0_c02381{font-size:42.240000pt;}
.fs1_c02381{font-size:53.760000pt;}
.y0_c02381{bottom:0.000000pt;}
.y13_c02381{bottom:16.000400pt;}
.y1c_c02381{bottom:130.665339pt;}
.y1e_c02381{bottom:165.866875pt;}
.y1d_c02381{bottom:174.507067pt;}
.y1b_c02381{bottom:245.225499pt;}
.y1a_c02381{bottom:317.225691pt;}
.y18_c02381{bottom:361.386555pt;}
.y14_c02381{bottom:377.387067pt;}
.y19_c02381{bottom:407.786139pt;}
.y17_c02381{bottom:437.226363pt;}
.y16_c02381{bottom:453.226875pt;}
.y12_c02381{bottom:466.666667pt;}
.y11_c02381{bottom:482.666971pt;}
.y15_c02381{bottom:497.386683pt;}
.y10_c02381{bottom:513.387067pt;}
.y1f_c02381{bottom:546.027067pt;}
.yc_c02381{bottom:579.945467pt;}
.yb_c02381{bottom:593.385179pt;}
.ye_c02381{bottom:628.586875pt;}
.yd_c02381{bottom:637.227067pt;}
.ya_c02381{bottom:707.945339pt;}
.y9_c02381{bottom:779.945531pt;}
.y7_c02381{bottom:823.786427pt;}
.y3_c02381{bottom:839.786939pt;}
.y8_c02381{bottom:870.505979pt;}
.y6_c02381{bottom:899.946203pt;}
.y5_c02381{bottom:915.946715pt;}
.y2_c02381{bottom:945.386939pt;}
.y4_c02381{bottom:959.786555pt;}
.y1_c02381{bottom:975.787067pt;}
.yf_c02381{bottom:1008.747067pt;}
.h5_c02381{height:25.920000pt;}
.h3_c02381{height:28.916250pt;}
.h1_c02381{height:37.063125pt;}
.h2_c02381{height:37.166250pt;}
.h4_c02381{height:48.581988pt;}
.h0_c02381{height:1122.666667pt;}
.w2_c02381{width:191.360000pt;}
.w1_c02381{width:793.333333pt;}
.w0_c02381{width:793.626667pt;}
.x0_c02381{left:0.000000pt;}
.xe_c02381{left:104.000000pt;}
.x8_c02381{left:391.999872pt;}
.x4_c02381{left:396.160512pt;}
.xc_c02381{left:400.960000pt;}
.x7_c02381{left:404.799648pt;}
.x5_c02381{left:410.560128pt;}
.x1_c02381{left:411.840000pt;}
.xa_c02381{left:429.760320pt;}
.x9_c02381{left:437.439552pt;}
.x6_c02381{left:438.400512pt;}
.xd_c02381{left:450.560320pt;}
.x3_c02381{left:455.039904pt;}
.x2_c02381{left:468.159648pt;}
.xb_c02381{left:506.560032pt;}
}





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

.ir_c02382:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02382{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02382;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02382{font-family:ff1_c02382;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02382;src:url('chunks/assets/font_8df765946934fcc24b161a0a.woff2')format("woff");}.ff2_c02382{font-family:ff2_c02382;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02382;src:url('chunks/assets/font_d2663e1001410b9e56c649c0.woff2')format("woff");}.ff3_c02382{font-family:ff3_c02382;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02382{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02382{vertical-align:0.000000px;}
.v1_c02382{vertical-align:1.439424px;}
.lsd_c02382{letter-spacing:-1.197504px;}
.ls16_c02382{letter-spacing:-0.869616px;}
.lsa_c02382{letter-spacing:-0.774576px;}
.lsb_c02382{letter-spacing:-0.574992px;}
.ls12_c02382{letter-spacing:-0.275616px;}
.ls10_c02382{letter-spacing:-0.261360px;}
.ls7_c02382{letter-spacing:-0.242352px;}
.ls8_c02382{letter-spacing:-0.237600px;}
.ls4_c02382{letter-spacing:-0.118800px;}
.ls15_c02382{letter-spacing:0.000000px;}
.ls2_c02382{letter-spacing:0.006048px;}
.ls6_c02382{letter-spacing:0.128304px;}
.lsf_c02382{letter-spacing:0.242352px;}
.lse_c02382{letter-spacing:0.508464px;}
.ls14_c02382{letter-spacing:0.514080px;}
.ls11_c02382{letter-spacing:0.536976px;}
.lsc_c02382{letter-spacing:0.579744px;}
.ls13_c02382{letter-spacing:0.594000px;}
.ls9_c02382{letter-spacing:0.598752px;}
.ls3_c02382{letter-spacing:0.613008px;}
.ls1_c02382{letter-spacing:0.684288px;}
.ls5_c02382{letter-spacing:0.717552px;}
.ls0_c02382{letter-spacing:0.722304px;}
.sc__c02382{text-shadow:none;}
.sc0_c02382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02382{-webkit-text-stroke:0px transparent;}
.sc0_c02382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02382{word-spacing:-15.126048px;}
.ws9_c02382{word-spacing:-12.602304px;}
.wsb_c02382{word-spacing:-12.474000px;}
.ws8_c02382{word-spacing:-12.459744px;}
.wsa_c02382{word-spacing:-12.416976px;}
.wse_c02382{word-spacing:-12.388464px;}
.ws2_c02382{word-spacing:-11.642400px;}
.ws6_c02382{word-spacing:-10.682496px;}
.ws18_c02382{word-spacing:-2.159136px;}
.ws13_c02382{word-spacing:-1.083456px;}
.ws14_c02382{word-spacing:-1.045440px;}
.wsf_c02382{word-spacing:-0.974160px;}
.ws11_c02382{word-spacing:-0.118800px;}
.ws15_c02382{word-spacing:-0.099792px;}
.ws17_c02382{word-spacing:-0.085536px;}
.ws10_c02382{word-spacing:0.000000px;}
.ws12_c02382{word-spacing:0.413424px;}
.ws19_c02382{word-spacing:0.508464px;}
.ws16_c02382{word-spacing:0.836352px;}
.wsc_c02382{word-spacing:33.300288px;}
.ws5_c02382{word-spacing:36.742464px;}
.ws1_c02382{word-spacing:37.759392px;}
.ws0_c02382{word-spacing:38.020752px;}
.ws3_c02382{word-spacing:39.218256px;}
.ws4_c02382{word-spacing:39.902544px;}
.ws7_c02382{word-spacing:42.026688px;}
._0_c02382{margin-left:-1.948320px;}
._2_c02382{width:1.482624px;}
._4_c02382{width:3.906144px;}
._5_c02382{width:21.445776px;}
._1_c02382{width:50.252400px;}
._3_c02382{width:51.530688px;}
.fc0_c02382{color:rgb(0,0,0);}
.fs0_c02382{font-size:47.520000px;}
.fs1_c02382{font-size:60.480000px;}
.y0_c02382{bottom:0.000000px;}
.yb_c02382{bottom:66.240450px;}
.y1c_c02382{bottom:146.998362px;}
.y1e_c02382{bottom:186.600234px;}
.y1d_c02382{bottom:196.320450px;}
.y1b_c02382{bottom:275.878542px;}
.y1a_c02382{bottom:356.878758px;}
.y18_c02382{bottom:406.559730px;}
.y14_c02382{bottom:424.560306px;}
.y19_c02382{bottom:458.759262px;}
.y17_c02382{bottom:491.879514px;}
.y16_c02382{bottom:509.880090px;}
.y13_c02382{bottom:543.000342px;}
.y15_c02382{bottom:559.559874px;}
.y12_c02382{bottom:577.560450px;}
.y1f_c02382{bottom:614.280450px;}
.ye_c02382{bottom:667.560054px;}
.y10_c02382{bottom:707.160234px;}
.yf_c02382{bottom:716.880450px;}
.yd_c02382{bottom:796.440234px;}
.ya_c02382{bottom:811.200000px;}
.y9_c02382{bottom:877.438722px;}
.yc_c02382{bottom:877.440450px;}
.y7_c02382{bottom:926.759730px;}
.y3_c02382{bottom:944.760306px;}
.y8_c02382{bottom:979.319226px;}
.y6_c02382{bottom:1012.439478px;}
.y5_c02382{bottom:1030.440054px;}
.y2_c02382{bottom:1063.560306px;}
.y4_c02382{bottom:1079.759874px;}
.y1_c02382{bottom:1097.760450px;}
.y11_c02382{bottom:1134.840450px;}
.h3_c02382{height:32.530781px;}
.h1_c02382{height:41.696016px;}
.h2_c02382{height:41.812031px;}
.h5_c02382{height:54.654737px;}
.h4_c02382{height:78.840000px;}
.h0_c02382{height:1263.000000px;}
.w2_c02382{width:215.280000px;}
.w1_c02382{width:892.500000px;}
.w0_c02382{width:892.830000px;}
.x0_c02382{left:0.000000px;}
.xf_c02382{left:117.000000px;}
.x8_c02382{left:440.999856px;}
.x4_c02382{left:445.680576px;}
.xd_c02382{left:451.080000px;}
.x7_c02382{left:455.399604px;}
.x5_c02382{left:461.880144px;}
.x1_c02382{left:463.320000px;}
.xc_c02382{left:483.480936px;}
.x9_c02382{left:492.119496px;}
.x6_c02382{left:493.200576px;}
.xe_c02382{left:506.880360px;}
.x3_c02382{left:511.919892px;}
.x2_c02382{left:526.679604px;}
.xa_c02382{left:569.520000px;}
.xb_c02382{left:659.160000px;}
@media print{
.v0_c02382{vertical-align:0.000000pt;}
.v1_c02382{vertical-align:1.279488pt;}
.lsd_c02382{letter-spacing:-1.064448pt;}
.ls16_c02382{letter-spacing:-0.772992pt;}
.lsa_c02382{letter-spacing:-0.688512pt;}
.lsb_c02382{letter-spacing:-0.511104pt;}
.ls12_c02382{letter-spacing:-0.244992pt;}
.ls10_c02382{letter-spacing:-0.232320pt;}
.ls7_c02382{letter-spacing:-0.215424pt;}
.ls8_c02382{letter-spacing:-0.211200pt;}
.ls4_c02382{letter-spacing:-0.105600pt;}
.ls15_c02382{letter-spacing:0.000000pt;}
.ls2_c02382{letter-spacing:0.005376pt;}
.ls6_c02382{letter-spacing:0.114048pt;}
.lsf_c02382{letter-spacing:0.215424pt;}
.lse_c02382{letter-spacing:0.451968pt;}
.ls14_c02382{letter-spacing:0.456960pt;}
.ls11_c02382{letter-spacing:0.477312pt;}
.lsc_c02382{letter-spacing:0.515328pt;}
.ls13_c02382{letter-spacing:0.528000pt;}
.ls9_c02382{letter-spacing:0.532224pt;}
.ls3_c02382{letter-spacing:0.544896pt;}
.ls1_c02382{letter-spacing:0.608256pt;}
.ls5_c02382{letter-spacing:0.637824pt;}
.ls0_c02382{letter-spacing:0.642048pt;}
.wsd_c02382{word-spacing:-13.445376pt;}
.ws9_c02382{word-spacing:-11.202048pt;}
.wsb_c02382{word-spacing:-11.088000pt;}
.ws8_c02382{word-spacing:-11.075328pt;}
.wsa_c02382{word-spacing:-11.037312pt;}
.wse_c02382{word-spacing:-11.011968pt;}
.ws2_c02382{word-spacing:-10.348800pt;}
.ws6_c02382{word-spacing:-9.495552pt;}
.ws18_c02382{word-spacing:-1.919232pt;}
.ws13_c02382{word-spacing:-0.963072pt;}
.ws14_c02382{word-spacing:-0.929280pt;}
.wsf_c02382{word-spacing:-0.865920pt;}
.ws11_c02382{word-spacing:-0.105600pt;}
.ws15_c02382{word-spacing:-0.088704pt;}
.ws17_c02382{word-spacing:-0.076032pt;}
.ws10_c02382{word-spacing:0.000000pt;}
.ws12_c02382{word-spacing:0.367488pt;}
.ws19_c02382{word-spacing:0.451968pt;}
.ws16_c02382{word-spacing:0.743424pt;}
.wsc_c02382{word-spacing:29.600256pt;}
.ws5_c02382{word-spacing:32.659968pt;}
.ws1_c02382{word-spacing:33.563904pt;}
.ws0_c02382{word-spacing:33.796224pt;}
.ws3_c02382{word-spacing:34.860672pt;}
.ws4_c02382{word-spacing:35.468928pt;}
.ws7_c02382{word-spacing:37.357056pt;}
._0_c02382{margin-left:-1.731840pt;}
._2_c02382{width:1.317888pt;}
._4_c02382{width:3.472128pt;}
._5_c02382{width:19.062912pt;}
._1_c02382{width:44.668800pt;}
._3_c02382{width:45.805056pt;}
.fs0_c02382{font-size:42.240000pt;}
.fs1_c02382{font-size:53.760000pt;}
.y0_c02382{bottom:0.000000pt;}
.yb_c02382{bottom:58.880400pt;}
.y1c_c02382{bottom:130.665211pt;}
.y1e_c02382{bottom:165.866875pt;}
.y1d_c02382{bottom:174.507067pt;}
.y1b_c02382{bottom:245.225371pt;}
.y1a_c02382{bottom:317.225563pt;}
.y18_c02382{bottom:361.386427pt;}
.y14_c02382{bottom:377.386939pt;}
.y19_c02382{bottom:407.786011pt;}
.y17_c02382{bottom:437.226235pt;}
.y16_c02382{bottom:453.226747pt;}
.y13_c02382{bottom:482.666971pt;}
.y15_c02382{bottom:497.386555pt;}
.y12_c02382{bottom:513.387067pt;}
.y1f_c02382{bottom:546.027067pt;}
.ye_c02382{bottom:593.386715pt;}
.y10_c02382{bottom:628.586875pt;}
.yf_c02382{bottom:637.227067pt;}
.yd_c02382{bottom:707.946875pt;}
.ya_c02382{bottom:721.066667pt;}
.y9_c02382{bottom:779.945531pt;}
.yc_c02382{bottom:779.947067pt;}
.y7_c02382{bottom:823.786427pt;}
.y3_c02382{bottom:839.786939pt;}
.y8_c02382{bottom:870.505979pt;}
.y6_c02382{bottom:899.946203pt;}
.y5_c02382{bottom:915.946715pt;}
.y2_c02382{bottom:945.386939pt;}
.y4_c02382{bottom:959.786555pt;}
.y1_c02382{bottom:975.787067pt;}
.y11_c02382{bottom:1008.747067pt;}
.h3_c02382{height:28.916250pt;}
.h1_c02382{height:37.063125pt;}
.h2_c02382{height:37.166250pt;}
.h5_c02382{height:48.581988pt;}
.h4_c02382{height:70.080000pt;}
.h0_c02382{height:1122.666667pt;}
.w2_c02382{width:191.360000pt;}
.w1_c02382{width:793.333333pt;}
.w0_c02382{width:793.626667pt;}
.x0_c02382{left:0.000000pt;}
.xf_c02382{left:104.000000pt;}
.x8_c02382{left:391.999872pt;}
.x4_c02382{left:396.160512pt;}
.xd_c02382{left:400.960000pt;}
.x7_c02382{left:404.799648pt;}
.x5_c02382{left:410.560128pt;}
.x1_c02382{left:411.840000pt;}
.xc_c02382{left:429.760832pt;}
.x9_c02382{left:437.439552pt;}
.x6_c02382{left:438.400512pt;}
.xe_c02382{left:450.560320pt;}
.x3_c02382{left:455.039904pt;}
.x2_c02382{left:468.159648pt;}
.xa_c02382{left:506.240000pt;}
.xb_c02382{left:585.920000pt;}
}





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

.ir_c02383:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02383{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02383;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02383{font-family:ff1_c02383;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02383;src:url('chunks/assets/font_2264c232e94e77505118249f.woff2')format("woff");}.ff2_c02383{font-family:ff2_c02383;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02383;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02383{font-family:ff3_c02383;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02383{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02383{vertical-align:0.000000px;}
.v1_c02383{vertical-align:1.439424px;}
.lsd_c02383{letter-spacing:-1.197504px;}
.ls9_c02383{letter-spacing:-0.869616px;}
.ls14_c02383{letter-spacing:-0.608256px;}
.lsa_c02383{letter-spacing:-0.574992px;}
.ls10_c02383{letter-spacing:-0.275616px;}
.lse_c02383{letter-spacing:-0.261360px;}
.ls6_c02383{letter-spacing:-0.242352px;}
.ls7_c02383{letter-spacing:-0.237600px;}
.ls3_c02383{letter-spacing:-0.118800px;}
.ls13_c02383{letter-spacing:0.000000px;}
.ls1_c02383{letter-spacing:0.006048px;}
.ls5_c02383{letter-spacing:0.128304px;}
.lsc_c02383{letter-spacing:0.508464px;}
.ls12_c02383{letter-spacing:0.514080px;}
.lsf_c02383{letter-spacing:0.536976px;}
.lsb_c02383{letter-spacing:0.579744px;}
.ls11_c02383{letter-spacing:0.594000px;}
.ls8_c02383{letter-spacing:0.598752px;}
.ls2_c02383{letter-spacing:0.613008px;}
.ls4_c02383{letter-spacing:0.717552px;}
.ls0_c02383{letter-spacing:0.722304px;}
.sc__c02383{text-shadow:none;}
.sc0_c02383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02383{-webkit-text-stroke:0px transparent;}
.sc0_c02383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02383{word-spacing:-15.126048px;}
.ws9_c02383{word-spacing:-12.474000px;}
.ws7_c02383{word-spacing:-12.459744px;}
.ws8_c02383{word-spacing:-12.416976px;}
.ws2_c02383{word-spacing:-11.642400px;}
.wsc_c02383{word-spacing:-11.271744px;}
.ws15_c02383{word-spacing:-2.159136px;}
.ws11_c02383{word-spacing:-1.083456px;}
.wsd_c02383{word-spacing:-0.974160px;}
.wsf_c02383{word-spacing:-0.118800px;}
.ws13_c02383{word-spacing:-0.099792px;}
.ws14_c02383{word-spacing:-0.085536px;}
.wse_c02383{word-spacing:0.000000px;}
.ws10_c02383{word-spacing:0.508464px;}
.ws12_c02383{word-spacing:0.836352px;}
.wsa_c02383{word-spacing:33.300288px;}
.ws5_c02383{word-spacing:36.742464px;}
.ws1_c02383{word-spacing:37.759392px;}
.ws0_c02383{word-spacing:38.020752px;}
.ws3_c02383{word-spacing:39.218256px;}
.ws4_c02383{word-spacing:39.902544px;}
.ws6_c02383{word-spacing:42.026688px;}
._0_c02383{margin-left:-1.948320px;}
._2_c02383{width:1.482624px;}
._5_c02383{width:2.532816px;}
._4_c02383{width:4.566672px;}
._1_c02383{width:50.252400px;}
._3_c02383{width:51.530688px;}
.fc0_c02383{color:rgb(0,0,0);}
.fs0_c02383{font-size:47.520000px;}
.fs1_c02383{font-size:60.480000px;}
.y0_c02383{bottom:0.000000px;}
.y19_c02383{bottom:146.998362px;}
.y1b_c02383{bottom:186.600234px;}
.y1a_c02383{bottom:196.320450px;}
.y18_c02383{bottom:275.878542px;}
.y17_c02383{bottom:356.878758px;}
.y15_c02383{bottom:406.559730px;}
.y11_c02383{bottom:424.560306px;}
.y16_c02383{bottom:458.759262px;}
.y14_c02383{bottom:491.879514px;}
.y13_c02383{bottom:509.880090px;}
.y10_c02383{bottom:543.000342px;}
.y12_c02383{bottom:559.559874px;}
.yf_c02383{bottom:577.560450px;}
.y1c_c02383{bottom:614.280450px;}
.yb_c02383{bottom:667.558326px;}
.yd_c02383{bottom:707.160234px;}
.yc_c02383{bottom:716.880450px;}
.ya_c02383{bottom:796.438506px;}
.y9_c02383{bottom:877.438722px;}
.y7_c02383{bottom:926.759730px;}
.y3_c02383{bottom:944.760306px;}
.y8_c02383{bottom:979.319226px;}
.y6_c02383{bottom:1012.439478px;}
.y5_c02383{bottom:1030.440054px;}
.y2_c02383{bottom:1063.560306px;}
.y4_c02383{bottom:1079.759874px;}
.y1_c02383{bottom:1097.760450px;}
.ye_c02383{bottom:1134.840450px;}
.h3_c02383{height:32.530781px;}
.h1_c02383{height:41.696016px;}
.h2_c02383{height:41.812031px;}
.h4_c02383{height:54.654737px;}
.h0_c02383{height:1263.000000px;}
.w1_c02383{width:892.500000px;}
.w0_c02383{width:892.830000px;}
.x0_c02383{left:0.000000px;}
.xd_c02383{left:117.000000px;}
.x8_c02383{left:440.999856px;}
.x4_c02383{left:445.680576px;}
.xb_c02383{left:451.080000px;}
.x7_c02383{left:455.399604px;}
.x5_c02383{left:461.880144px;}
.x1_c02383{left:463.320000px;}
.xa_c02383{left:483.480360px;}
.x9_c02383{left:492.119496px;}
.x6_c02383{left:493.200576px;}
.xc_c02383{left:506.880360px;}
.x3_c02383{left:511.919892px;}
.x2_c02383{left:526.679604px;}
@media print{
.v0_c02383{vertical-align:0.000000pt;}
.v1_c02383{vertical-align:1.279488pt;}
.lsd_c02383{letter-spacing:-1.064448pt;}
.ls9_c02383{letter-spacing:-0.772992pt;}
.ls14_c02383{letter-spacing:-0.540672pt;}
.lsa_c02383{letter-spacing:-0.511104pt;}
.ls10_c02383{letter-spacing:-0.244992pt;}
.lse_c02383{letter-spacing:-0.232320pt;}
.ls6_c02383{letter-spacing:-0.215424pt;}
.ls7_c02383{letter-spacing:-0.211200pt;}
.ls3_c02383{letter-spacing:-0.105600pt;}
.ls13_c02383{letter-spacing:0.000000pt;}
.ls1_c02383{letter-spacing:0.005376pt;}
.ls5_c02383{letter-spacing:0.114048pt;}
.lsc_c02383{letter-spacing:0.451968pt;}
.ls12_c02383{letter-spacing:0.456960pt;}
.lsf_c02383{letter-spacing:0.477312pt;}
.lsb_c02383{letter-spacing:0.515328pt;}
.ls11_c02383{letter-spacing:0.528000pt;}
.ls8_c02383{letter-spacing:0.532224pt;}
.ls2_c02383{letter-spacing:0.544896pt;}
.ls4_c02383{letter-spacing:0.637824pt;}
.ls0_c02383{letter-spacing:0.642048pt;}
.wsb_c02383{word-spacing:-13.445376pt;}
.ws9_c02383{word-spacing:-11.088000pt;}
.ws7_c02383{word-spacing:-11.075328pt;}
.ws8_c02383{word-spacing:-11.037312pt;}
.ws2_c02383{word-spacing:-10.348800pt;}
.wsc_c02383{word-spacing:-10.019328pt;}
.ws15_c02383{word-spacing:-1.919232pt;}
.ws11_c02383{word-spacing:-0.963072pt;}
.wsd_c02383{word-spacing:-0.865920pt;}
.wsf_c02383{word-spacing:-0.105600pt;}
.ws13_c02383{word-spacing:-0.088704pt;}
.ws14_c02383{word-spacing:-0.076032pt;}
.wse_c02383{word-spacing:0.000000pt;}
.ws10_c02383{word-spacing:0.451968pt;}
.ws12_c02383{word-spacing:0.743424pt;}
.wsa_c02383{word-spacing:29.600256pt;}
.ws5_c02383{word-spacing:32.659968pt;}
.ws1_c02383{word-spacing:33.563904pt;}
.ws0_c02383{word-spacing:33.796224pt;}
.ws3_c02383{word-spacing:34.860672pt;}
.ws4_c02383{word-spacing:35.468928pt;}
.ws6_c02383{word-spacing:37.357056pt;}
._0_c02383{margin-left:-1.731840pt;}
._2_c02383{width:1.317888pt;}
._5_c02383{width:2.251392pt;}
._4_c02383{width:4.059264pt;}
._1_c02383{width:44.668800pt;}
._3_c02383{width:45.805056pt;}
.fs0_c02383{font-size:42.240000pt;}
.fs1_c02383{font-size:53.760000pt;}
.y0_c02383{bottom:0.000000pt;}
.y19_c02383{bottom:130.665211pt;}
.y1b_c02383{bottom:165.866875pt;}
.y1a_c02383{bottom:174.507067pt;}
.y18_c02383{bottom:245.225371pt;}
.y17_c02383{bottom:317.225563pt;}
.y15_c02383{bottom:361.386427pt;}
.y11_c02383{bottom:377.386939pt;}
.y16_c02383{bottom:407.786011pt;}
.y14_c02383{bottom:437.226235pt;}
.y13_c02383{bottom:453.226747pt;}
.y10_c02383{bottom:482.666971pt;}
.y12_c02383{bottom:497.386555pt;}
.yf_c02383{bottom:513.387067pt;}
.y1c_c02383{bottom:546.027067pt;}
.yb_c02383{bottom:593.385179pt;}
.yd_c02383{bottom:628.586875pt;}
.yc_c02383{bottom:637.227067pt;}
.ya_c02383{bottom:707.945339pt;}
.y9_c02383{bottom:779.945531pt;}
.y7_c02383{bottom:823.786427pt;}
.y3_c02383{bottom:839.786939pt;}
.y8_c02383{bottom:870.505979pt;}
.y6_c02383{bottom:899.946203pt;}
.y5_c02383{bottom:915.946715pt;}
.y2_c02383{bottom:945.386939pt;}
.y4_c02383{bottom:959.786555pt;}
.y1_c02383{bottom:975.787067pt;}
.ye_c02383{bottom:1008.747067pt;}
.h3_c02383{height:28.916250pt;}
.h1_c02383{height:37.063125pt;}
.h2_c02383{height:37.166250pt;}
.h4_c02383{height:48.581988pt;}
.h0_c02383{height:1122.666667pt;}
.w1_c02383{width:793.333333pt;}
.w0_c02383{width:793.626667pt;}
.x0_c02383{left:0.000000pt;}
.xd_c02383{left:104.000000pt;}
.x8_c02383{left:391.999872pt;}
.x4_c02383{left:396.160512pt;}
.xb_c02383{left:400.960000pt;}
.x7_c02383{left:404.799648pt;}
.x5_c02383{left:410.560128pt;}
.x1_c02383{left:411.840000pt;}
.xa_c02383{left:429.760320pt;}
.x9_c02383{left:437.439552pt;}
.x6_c02383{left:438.400512pt;}
.xc_c02383{left:450.560320pt;}
.x3_c02383{left:455.039904pt;}
.x2_c02383{left:468.159648pt;}
}





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

.ir_c02384:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02384{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02384;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02384{font-family:ff1_c02384;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02384;src:url('chunks/assets/font_e917d022a6af245da5b75814.woff2')format("woff");}.ff2_c02384{font-family:ff2_c02384;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02384;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02384{font-family:ff3_c02384;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02384{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02384{vertical-align:0.000000px;}
.v1_c02384{vertical-align:1.439424px;}
.lsd_c02384{letter-spacing:-1.197504px;}
.ls14_c02384{letter-spacing:-0.888624px;}
.ls15_c02384{letter-spacing:-0.774576px;}
.ls17_c02384{letter-spacing:-0.736560px;}
.ls16_c02384{letter-spacing:-0.722304px;}
.ls9_c02384{letter-spacing:-0.608256px;}
.lsa_c02384{letter-spacing:-0.574992px;}
.ls10_c02384{letter-spacing:-0.275616px;}
.ls18_c02384{letter-spacing:-0.270864px;}
.lse_c02384{letter-spacing:-0.261360px;}
.ls6_c02384{letter-spacing:-0.242352px;}
.ls7_c02384{letter-spacing:-0.237600px;}
.ls3_c02384{letter-spacing:-0.118800px;}
.ls13_c02384{letter-spacing:0.000000px;}
.ls1_c02384{letter-spacing:0.006048px;}
.ls5_c02384{letter-spacing:0.128304px;}
.lsc_c02384{letter-spacing:0.508464px;}
.ls12_c02384{letter-spacing:0.514080px;}
.lsf_c02384{letter-spacing:0.536976px;}
.lsb_c02384{letter-spacing:0.579744px;}
.ls11_c02384{letter-spacing:0.594000px;}
.ls8_c02384{letter-spacing:0.598752px;}
.ls2_c02384{letter-spacing:0.613008px;}
.ls4_c02384{letter-spacing:0.717552px;}
.ls0_c02384{letter-spacing:0.722304px;}
.sc__c02384{text-shadow:none;}
.sc0_c02384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02384{-webkit-text-stroke:0px transparent;}
.sc0_c02384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02384{word-spacing:-15.126048px;}
.wsa_c02384{word-spacing:-12.474000px;}
.ws8_c02384{word-spacing:-12.459744px;}
.ws9_c02384{word-spacing:-12.416976px;}
.ws2_c02384{word-spacing:-11.642400px;}
.ws4_c02384{word-spacing:-11.271744px;}
.wsd_c02384{word-spacing:-11.105424px;}
.ws17_c02384{word-spacing:-2.159136px;}
.ws13_c02384{word-spacing:-1.083456px;}
.ws10_c02384{word-spacing:-0.974160px;}
.ws12_c02384{word-spacing:-0.118800px;}
.ws15_c02384{word-spacing:-0.099792px;}
.ws1a_c02384{word-spacing:-0.090288px;}
.ws16_c02384{word-spacing:-0.085536px;}
.ws11_c02384{word-spacing:0.000000px;}
.ws19_c02384{word-spacing:0.361152px;}
.ws18_c02384{word-spacing:0.527472px;}
.ws14_c02384{word-spacing:0.836352px;}
.wsf_c02384{word-spacing:6.629040px;}
.wsb_c02384{word-spacing:33.300288px;}
.wse_c02384{word-spacing:34.836912px;}
.ws6_c02384{word-spacing:36.742464px;}
.ws1_c02384{word-spacing:37.759392px;}
.ws0_c02384{word-spacing:38.020752px;}
.ws3_c02384{word-spacing:39.218256px;}
.ws5_c02384{word-spacing:39.902544px;}
.ws7_c02384{word-spacing:42.026688px;}
._0_c02384{margin-left:-1.948320px;}
._2_c02384{width:1.482624px;}
._4_c02384{width:2.770416px;}
._5_c02384{width:4.642704px;}
._7_c02384{width:19.982160px;}
._8_c02384{width:23.451120px;}
._6_c02384{width:24.691392px;}
._1_c02384{width:50.252400px;}
._3_c02384{width:51.530688px;}
.fc0_c02384{color:rgb(0,0,0);}
.fs0_c02384{font-size:47.520000px;}
.fs1_c02384{font-size:60.480000px;}
.y0_c02384{bottom:0.000000px;}
.y1a_c02384{bottom:131.878686px;}
.y19_c02384{bottom:146.998362px;}
.y1c_c02384{bottom:186.600234px;}
.y1b_c02384{bottom:196.320450px;}
.y18_c02384{bottom:275.878542px;}
.y17_c02384{bottom:356.878758px;}
.y15_c02384{bottom:406.559730px;}
.y11_c02384{bottom:424.560306px;}
.y16_c02384{bottom:458.759262px;}
.y14_c02384{bottom:491.879514px;}
.y13_c02384{bottom:509.880090px;}
.y10_c02384{bottom:543.000342px;}
.y12_c02384{bottom:559.559874px;}
.yf_c02384{bottom:577.560450px;}
.y1d_c02384{bottom:614.280450px;}
.yb_c02384{bottom:667.558326px;}
.yd_c02384{bottom:707.160234px;}
.yc_c02384{bottom:716.880450px;}
.ya_c02384{bottom:796.438506px;}
.y9_c02384{bottom:877.438722px;}
.y7_c02384{bottom:926.759730px;}
.y3_c02384{bottom:944.760306px;}
.y8_c02384{bottom:979.319226px;}
.y6_c02384{bottom:1012.439478px;}
.y5_c02384{bottom:1030.440054px;}
.y2_c02384{bottom:1063.560306px;}
.y4_c02384{bottom:1079.759874px;}
.y1_c02384{bottom:1097.760450px;}
.ye_c02384{bottom:1134.840450px;}
.h3_c02384{height:32.530781px;}
.h1_c02384{height:41.696016px;}
.h2_c02384{height:41.812031px;}
.h4_c02384{height:54.654737px;}
.h0_c02384{height:1263.000000px;}
.w1_c02384{width:892.500000px;}
.w0_c02384{width:892.830000px;}
.x0_c02384{left:0.000000px;}
.xd_c02384{left:117.000000px;}
.x8_c02384{left:440.999856px;}
.x4_c02384{left:445.680576px;}
.xb_c02384{left:451.080000px;}
.x7_c02384{left:455.399604px;}
.x5_c02384{left:461.880144px;}
.x1_c02384{left:463.320000px;}
.xa_c02384{left:483.480360px;}
.x9_c02384{left:492.119496px;}
.x6_c02384{left:493.200576px;}
.xc_c02384{left:506.880360px;}
.x3_c02384{left:511.919892px;}
.x2_c02384{left:526.679604px;}
.xe_c02384{left:569.880036px;}
@media print{
.v0_c02384{vertical-align:0.000000pt;}
.v1_c02384{vertical-align:1.279488pt;}
.lsd_c02384{letter-spacing:-1.064448pt;}
.ls14_c02384{letter-spacing:-0.789888pt;}
.ls15_c02384{letter-spacing:-0.688512pt;}
.ls17_c02384{letter-spacing:-0.654720pt;}
.ls16_c02384{letter-spacing:-0.642048pt;}
.ls9_c02384{letter-spacing:-0.540672pt;}
.lsa_c02384{letter-spacing:-0.511104pt;}
.ls10_c02384{letter-spacing:-0.244992pt;}
.ls18_c02384{letter-spacing:-0.240768pt;}
.lse_c02384{letter-spacing:-0.232320pt;}
.ls6_c02384{letter-spacing:-0.215424pt;}
.ls7_c02384{letter-spacing:-0.211200pt;}
.ls3_c02384{letter-spacing:-0.105600pt;}
.ls13_c02384{letter-spacing:0.000000pt;}
.ls1_c02384{letter-spacing:0.005376pt;}
.ls5_c02384{letter-spacing:0.114048pt;}
.lsc_c02384{letter-spacing:0.451968pt;}
.ls12_c02384{letter-spacing:0.456960pt;}
.lsf_c02384{letter-spacing:0.477312pt;}
.lsb_c02384{letter-spacing:0.515328pt;}
.ls11_c02384{letter-spacing:0.528000pt;}
.ls8_c02384{letter-spacing:0.532224pt;}
.ls2_c02384{letter-spacing:0.544896pt;}
.ls4_c02384{letter-spacing:0.637824pt;}
.ls0_c02384{letter-spacing:0.642048pt;}
.wsc_c02384{word-spacing:-13.445376pt;}
.wsa_c02384{word-spacing:-11.088000pt;}
.ws8_c02384{word-spacing:-11.075328pt;}
.ws9_c02384{word-spacing:-11.037312pt;}
.ws2_c02384{word-spacing:-10.348800pt;}
.ws4_c02384{word-spacing:-10.019328pt;}
.wsd_c02384{word-spacing:-9.871488pt;}
.ws17_c02384{word-spacing:-1.919232pt;}
.ws13_c02384{word-spacing:-0.963072pt;}
.ws10_c02384{word-spacing:-0.865920pt;}
.ws12_c02384{word-spacing:-0.105600pt;}
.ws15_c02384{word-spacing:-0.088704pt;}
.ws1a_c02384{word-spacing:-0.080256pt;}
.ws16_c02384{word-spacing:-0.076032pt;}
.ws11_c02384{word-spacing:0.000000pt;}
.ws19_c02384{word-spacing:0.321024pt;}
.ws18_c02384{word-spacing:0.468864pt;}
.ws14_c02384{word-spacing:0.743424pt;}
.wsf_c02384{word-spacing:5.892480pt;}
.wsb_c02384{word-spacing:29.600256pt;}
.wse_c02384{word-spacing:30.966144pt;}
.ws6_c02384{word-spacing:32.659968pt;}
.ws1_c02384{word-spacing:33.563904pt;}
.ws0_c02384{word-spacing:33.796224pt;}
.ws3_c02384{word-spacing:34.860672pt;}
.ws5_c02384{word-spacing:35.468928pt;}
.ws7_c02384{word-spacing:37.357056pt;}
._0_c02384{margin-left:-1.731840pt;}
._2_c02384{width:1.317888pt;}
._4_c02384{width:2.462592pt;}
._5_c02384{width:4.126848pt;}
._7_c02384{width:17.761920pt;}
._8_c02384{width:20.845440pt;}
._6_c02384{width:21.947904pt;}
._1_c02384{width:44.668800pt;}
._3_c02384{width:45.805056pt;}
.fs0_c02384{font-size:42.240000pt;}
.fs1_c02384{font-size:53.760000pt;}
.y0_c02384{bottom:0.000000pt;}
.y1a_c02384{bottom:117.225499pt;}
.y19_c02384{bottom:130.665211pt;}
.y1c_c02384{bottom:165.866875pt;}
.y1b_c02384{bottom:174.507067pt;}
.y18_c02384{bottom:245.225371pt;}
.y17_c02384{bottom:317.225563pt;}
.y15_c02384{bottom:361.386427pt;}
.y11_c02384{bottom:377.386939pt;}
.y16_c02384{bottom:407.786011pt;}
.y14_c02384{bottom:437.226235pt;}
.y13_c02384{bottom:453.226747pt;}
.y10_c02384{bottom:482.666971pt;}
.y12_c02384{bottom:497.386555pt;}
.yf_c02384{bottom:513.387067pt;}
.y1d_c02384{bottom:546.027067pt;}
.yb_c02384{bottom:593.385179pt;}
.yd_c02384{bottom:628.586875pt;}
.yc_c02384{bottom:637.227067pt;}
.ya_c02384{bottom:707.945339pt;}
.y9_c02384{bottom:779.945531pt;}
.y7_c02384{bottom:823.786427pt;}
.y3_c02384{bottom:839.786939pt;}
.y8_c02384{bottom:870.505979pt;}
.y6_c02384{bottom:899.946203pt;}
.y5_c02384{bottom:915.946715pt;}
.y2_c02384{bottom:945.386939pt;}
.y4_c02384{bottom:959.786555pt;}
.y1_c02384{bottom:975.787067pt;}
.ye_c02384{bottom:1008.747067pt;}
.h3_c02384{height:28.916250pt;}
.h1_c02384{height:37.063125pt;}
.h2_c02384{height:37.166250pt;}
.h4_c02384{height:48.581988pt;}
.h0_c02384{height:1122.666667pt;}
.w1_c02384{width:793.333333pt;}
.w0_c02384{width:793.626667pt;}
.x0_c02384{left:0.000000pt;}
.xd_c02384{left:104.000000pt;}
.x8_c02384{left:391.999872pt;}
.x4_c02384{left:396.160512pt;}
.xb_c02384{left:400.960000pt;}
.x7_c02384{left:404.799648pt;}
.x5_c02384{left:410.560128pt;}
.x1_c02384{left:411.840000pt;}
.xa_c02384{left:429.760320pt;}
.x9_c02384{left:437.439552pt;}
.x6_c02384{left:438.400512pt;}
.xc_c02384{left:450.560320pt;}
.x3_c02384{left:455.039904pt;}
.x2_c02384{left:468.159648pt;}
.xe_c02384{left:506.560032pt;}
}





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

.ir_c02385:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02385{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02385;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02385{font-family:ff1_c02385;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02385;src:url('chunks/assets/font_1d7a4fcc9be8cfab75c63d05.woff2')format("woff");}.ff2_c02385{font-family:ff2_c02385;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02385;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02385{font-family:ff3_c02385;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02385{vertical-align:0.000000px;}
.v1_c02385{vertical-align:1.439424px;}
.lsd_c02385{letter-spacing:-1.197504px;}
.ls9_c02385{letter-spacing:-0.869616px;}
.ls14_c02385{letter-spacing:-0.608256px;}
.lsa_c02385{letter-spacing:-0.574992px;}
.ls15_c02385{letter-spacing:-0.361152px;}
.ls10_c02385{letter-spacing:-0.275616px;}
.lse_c02385{letter-spacing:-0.261360px;}
.ls6_c02385{letter-spacing:-0.242352px;}
.ls7_c02385{letter-spacing:-0.237600px;}
.ls3_c02385{letter-spacing:-0.118800px;}
.ls13_c02385{letter-spacing:0.000000px;}
.ls1_c02385{letter-spacing:0.006048px;}
.ls5_c02385{letter-spacing:0.128304px;}
.lsc_c02385{letter-spacing:0.508464px;}
.ls12_c02385{letter-spacing:0.514080px;}
.lsf_c02385{letter-spacing:0.536976px;}
.lsb_c02385{letter-spacing:0.579744px;}
.ls11_c02385{letter-spacing:0.594000px;}
.ls8_c02385{letter-spacing:0.598752px;}
.ls2_c02385{letter-spacing:0.613008px;}
.ls4_c02385{letter-spacing:0.717552px;}
.ls0_c02385{letter-spacing:0.722304px;}
.sc__c02385{text-shadow:none;}
.sc0_c02385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02385{-webkit-text-stroke:0px transparent;}
.sc0_c02385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02385{word-spacing:-15.126048px;}
.ws9_c02385{word-spacing:-12.474000px;}
.ws7_c02385{word-spacing:-12.459744px;}
.ws8_c02385{word-spacing:-12.416976px;}
.wsd_c02385{word-spacing:-12.388464px;}
.ws2_c02385{word-spacing:-11.642400px;}
.wsc_c02385{word-spacing:-11.271744px;}
.ws17_c02385{word-spacing:-2.159136px;}
.ws13_c02385{word-spacing:-1.083456px;}
.wsf_c02385{word-spacing:-0.974160px;}
.ws11_c02385{word-spacing:-0.118800px;}
.ws15_c02385{word-spacing:-0.099792px;}
.ws16_c02385{word-spacing:-0.085536px;}
.ws10_c02385{word-spacing:0.000000px;}
.ws12_c02385{word-spacing:0.508464px;}
.ws14_c02385{word-spacing:0.836352px;}
.wsa_c02385{word-spacing:33.300288px;}
.wse_c02385{word-spacing:36.143712px;}
.ws5_c02385{word-spacing:36.742464px;}
.ws1_c02385{word-spacing:37.759392px;}
.ws0_c02385{word-spacing:38.020752px;}
.ws3_c02385{word-spacing:39.218256px;}
.ws4_c02385{word-spacing:39.902544px;}
.ws6_c02385{word-spacing:42.026688px;}
._0_c02385{margin-left:-1.948320px;}
._2_c02385{width:1.482624px;}
._5_c02385{width:2.532816px;}
._4_c02385{width:4.566672px;}
._1_c02385{width:50.252400px;}
._3_c02385{width:51.530688px;}
.fc0_c02385{color:rgb(0,0,0);}
.fs0_c02385{font-size:47.520000px;}
.fs1_c02385{font-size:60.480000px;}
.y0_c02385{bottom:0.000000px;}
.y19_c02385{bottom:146.998362px;}
.y1b_c02385{bottom:186.600234px;}
.y1a_c02385{bottom:196.320450px;}
.y18_c02385{bottom:275.878542px;}
.y17_c02385{bottom:356.878758px;}
.y15_c02385{bottom:406.559730px;}
.y11_c02385{bottom:424.560306px;}
.y16_c02385{bottom:458.759262px;}
.y14_c02385{bottom:491.879514px;}
.y13_c02385{bottom:509.880090px;}
.y10_c02385{bottom:543.000342px;}
.y12_c02385{bottom:559.559874px;}
.yf_c02385{bottom:577.560450px;}
.y1c_c02385{bottom:614.280450px;}
.yb_c02385{bottom:667.558326px;}
.yd_c02385{bottom:707.160234px;}
.yc_c02385{bottom:716.880450px;}
.ya_c02385{bottom:796.438506px;}
.y9_c02385{bottom:877.438722px;}
.y7_c02385{bottom:926.759730px;}
.y3_c02385{bottom:944.760306px;}
.y8_c02385{bottom:979.319226px;}
.y6_c02385{bottom:1012.439478px;}
.y5_c02385{bottom:1030.440054px;}
.y2_c02385{bottom:1063.560306px;}
.y4_c02385{bottom:1079.759874px;}
.y1_c02385{bottom:1097.760450px;}
.ye_c02385{bottom:1134.840450px;}
.h3_c02385{height:32.530781px;}
.h1_c02385{height:41.696016px;}
.h2_c02385{height:41.812031px;}
.h4_c02385{height:54.654737px;}
.h0_c02385{height:1263.000000px;}
.w1_c02385{width:892.500000px;}
.w0_c02385{width:892.830000px;}
.x0_c02385{left:0.000000px;}
.xd_c02385{left:117.000000px;}
.x8_c02385{left:440.999856px;}
.x4_c02385{left:445.680576px;}
.xb_c02385{left:451.080000px;}
.x7_c02385{left:455.399604px;}
.x5_c02385{left:461.880144px;}
.x1_c02385{left:463.320000px;}
.xa_c02385{left:483.480360px;}
.x9_c02385{left:492.119496px;}
.x6_c02385{left:493.200576px;}
.xc_c02385{left:506.880360px;}
.x3_c02385{left:511.919892px;}
.x2_c02385{left:526.679604px;}
@media print{
.v0_c02385{vertical-align:0.000000pt;}
.v1_c02385{vertical-align:1.279488pt;}
.lsd_c02385{letter-spacing:-1.064448pt;}
.ls9_c02385{letter-spacing:-0.772992pt;}
.ls14_c02385{letter-spacing:-0.540672pt;}
.lsa_c02385{letter-spacing:-0.511104pt;}
.ls15_c02385{letter-spacing:-0.321024pt;}
.ls10_c02385{letter-spacing:-0.244992pt;}
.lse_c02385{letter-spacing:-0.232320pt;}
.ls6_c02385{letter-spacing:-0.215424pt;}
.ls7_c02385{letter-spacing:-0.211200pt;}
.ls3_c02385{letter-spacing:-0.105600pt;}
.ls13_c02385{letter-spacing:0.000000pt;}
.ls1_c02385{letter-spacing:0.005376pt;}
.ls5_c02385{letter-spacing:0.114048pt;}
.lsc_c02385{letter-spacing:0.451968pt;}
.ls12_c02385{letter-spacing:0.456960pt;}
.lsf_c02385{letter-spacing:0.477312pt;}
.lsb_c02385{letter-spacing:0.515328pt;}
.ls11_c02385{letter-spacing:0.528000pt;}
.ls8_c02385{letter-spacing:0.532224pt;}
.ls2_c02385{letter-spacing:0.544896pt;}
.ls4_c02385{letter-spacing:0.637824pt;}
.ls0_c02385{letter-spacing:0.642048pt;}
.wsb_c02385{word-spacing:-13.445376pt;}
.ws9_c02385{word-spacing:-11.088000pt;}
.ws7_c02385{word-spacing:-11.075328pt;}
.ws8_c02385{word-spacing:-11.037312pt;}
.wsd_c02385{word-spacing:-11.011968pt;}
.ws2_c02385{word-spacing:-10.348800pt;}
.wsc_c02385{word-spacing:-10.019328pt;}
.ws17_c02385{word-spacing:-1.919232pt;}
.ws13_c02385{word-spacing:-0.963072pt;}
.wsf_c02385{word-spacing:-0.865920pt;}
.ws11_c02385{word-spacing:-0.105600pt;}
.ws15_c02385{word-spacing:-0.088704pt;}
.ws16_c02385{word-spacing:-0.076032pt;}
.ws10_c02385{word-spacing:0.000000pt;}
.ws12_c02385{word-spacing:0.451968pt;}
.ws14_c02385{word-spacing:0.743424pt;}
.wsa_c02385{word-spacing:29.600256pt;}
.wse_c02385{word-spacing:32.127744pt;}
.ws5_c02385{word-spacing:32.659968pt;}
.ws1_c02385{word-spacing:33.563904pt;}
.ws0_c02385{word-spacing:33.796224pt;}
.ws3_c02385{word-spacing:34.860672pt;}
.ws4_c02385{word-spacing:35.468928pt;}
.ws6_c02385{word-spacing:37.357056pt;}
._0_c02385{margin-left:-1.731840pt;}
._2_c02385{width:1.317888pt;}
._5_c02385{width:2.251392pt;}
._4_c02385{width:4.059264pt;}
._1_c02385{width:44.668800pt;}
._3_c02385{width:45.805056pt;}
.fs0_c02385{font-size:42.240000pt;}
.fs1_c02385{font-size:53.760000pt;}
.y0_c02385{bottom:0.000000pt;}
.y19_c02385{bottom:130.665211pt;}
.y1b_c02385{bottom:165.866875pt;}
.y1a_c02385{bottom:174.507067pt;}
.y18_c02385{bottom:245.225371pt;}
.y17_c02385{bottom:317.225563pt;}
.y15_c02385{bottom:361.386427pt;}
.y11_c02385{bottom:377.386939pt;}
.y16_c02385{bottom:407.786011pt;}
.y14_c02385{bottom:437.226235pt;}
.y13_c02385{bottom:453.226747pt;}
.y10_c02385{bottom:482.666971pt;}
.y12_c02385{bottom:497.386555pt;}
.yf_c02385{bottom:513.387067pt;}
.y1c_c02385{bottom:546.027067pt;}
.yb_c02385{bottom:593.385179pt;}
.yd_c02385{bottom:628.586875pt;}
.yc_c02385{bottom:637.227067pt;}
.ya_c02385{bottom:707.945339pt;}
.y9_c02385{bottom:779.945531pt;}
.y7_c02385{bottom:823.786427pt;}
.y3_c02385{bottom:839.786939pt;}
.y8_c02385{bottom:870.505979pt;}
.y6_c02385{bottom:899.946203pt;}
.y5_c02385{bottom:915.946715pt;}
.y2_c02385{bottom:945.386939pt;}
.y4_c02385{bottom:959.786555pt;}
.y1_c02385{bottom:975.787067pt;}
.ye_c02385{bottom:1008.747067pt;}
.h3_c02385{height:28.916250pt;}
.h1_c02385{height:37.063125pt;}
.h2_c02385{height:37.166250pt;}
.h4_c02385{height:48.581988pt;}
.h0_c02385{height:1122.666667pt;}
.w1_c02385{width:793.333333pt;}
.w0_c02385{width:793.626667pt;}
.x0_c02385{left:0.000000pt;}
.xd_c02385{left:104.000000pt;}
.x8_c02385{left:391.999872pt;}
.x4_c02385{left:396.160512pt;}
.xb_c02385{left:400.960000pt;}
.x7_c02385{left:404.799648pt;}
.x5_c02385{left:410.560128pt;}
.x1_c02385{left:411.840000pt;}
.xa_c02385{left:429.760320pt;}
.x9_c02385{left:437.439552pt;}
.x6_c02385{left:438.400512pt;}
.xc_c02385{left:450.560320pt;}
.x3_c02385{left:455.039904pt;}
.x2_c02385{left:468.159648pt;}
}





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

.ir_c02386:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02386{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02386;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02386{font-family:ff1_c02386;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02386;src:url('chunks/assets/font_d615dabf1c4078110b85864d.woff2')format("woff");}.ff2_c02386{font-family:ff2_c02386;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02386;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02386{font-family:ff3_c02386;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02386{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02386{vertical-align:0.000000px;}
.v1_c02386{vertical-align:1.439424px;}
.ls15_c02386{letter-spacing:-1.197504px;}
.ls14_c02386{letter-spacing:-0.717552px;}
.ls9_c02386{letter-spacing:-0.608256px;}
.lsa_c02386{letter-spacing:-0.574992px;}
.lse_c02386{letter-spacing:-0.361152px;}
.ls10_c02386{letter-spacing:-0.275616px;}
.lsd_c02386{letter-spacing:-0.261360px;}
.ls6_c02386{letter-spacing:-0.242352px;}
.ls7_c02386{letter-spacing:-0.237600px;}
.ls3_c02386{letter-spacing:-0.118800px;}
.ls13_c02386{letter-spacing:0.000000px;}
.ls1_c02386{letter-spacing:0.006048px;}
.ls5_c02386{letter-spacing:0.128304px;}
.lsc_c02386{letter-spacing:0.508464px;}
.ls12_c02386{letter-spacing:0.514080px;}
.lsf_c02386{letter-spacing:0.536976px;}
.lsb_c02386{letter-spacing:0.579744px;}
.ls11_c02386{letter-spacing:0.594000px;}
.ls8_c02386{letter-spacing:0.598752px;}
.ls2_c02386{letter-spacing:0.613008px;}
.ls4_c02386{letter-spacing:0.717552px;}
.ls0_c02386{letter-spacing:0.722304px;}
.sc__c02386{text-shadow:none;}
.sc0_c02386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02386{-webkit-text-stroke:0px transparent;}
.sc0_c02386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02386{word-spacing:-15.126048px;}
.wsa_c02386{word-spacing:-12.474000px;}
.ws6_c02386{word-spacing:-12.459744px;}
.ws9_c02386{word-spacing:-12.416976px;}
.ws7_c02386{word-spacing:-12.388464px;}
.ws2_c02386{word-spacing:-11.642400px;}
.ws4_c02386{word-spacing:-11.271744px;}
.ws14_c02386{word-spacing:-2.159136px;}
.ws11_c02386{word-spacing:-1.083456px;}
.wse_c02386{word-spacing:-0.974160px;}
.ws10_c02386{word-spacing:-0.118800px;}
.ws12_c02386{word-spacing:-0.099792px;}
.ws13_c02386{word-spacing:-0.085536px;}
.wsf_c02386{word-spacing:0.000000px;}
.ws15_c02386{word-spacing:0.356400px;}
.ws16_c02386{word-spacing:0.836352px;}
.wsb_c02386{word-spacing:33.300288px;}
.ws8_c02386{word-spacing:36.143712px;}
.ws1_c02386{word-spacing:37.759392px;}
.ws0_c02386{word-spacing:38.020752px;}
.ws3_c02386{word-spacing:39.218256px;}
.ws5_c02386{word-spacing:39.902544px;}
.wsd_c02386{word-spacing:42.026688px;}
._0_c02386{margin-left:-1.948320px;}
._2_c02386{width:1.482624px;}
._4_c02386{width:3.735072px;}
._1_c02386{width:50.252400px;}
._3_c02386{width:51.530688px;}
.fc0_c02386{color:rgb(0,0,0);}
.fs0_c02386{font-size:47.520000px;}
.fs1_c02386{font-size:60.480000px;}
.y0_c02386{bottom:0.000000px;}
.y19_c02386{bottom:146.998362px;}
.y1b_c02386{bottom:186.600234px;}
.y1a_c02386{bottom:196.320450px;}
.y18_c02386{bottom:275.878542px;}
.y17_c02386{bottom:356.878758px;}
.y15_c02386{bottom:406.559730px;}
.y11_c02386{bottom:424.560306px;}
.y16_c02386{bottom:458.759262px;}
.y14_c02386{bottom:491.879514px;}
.y13_c02386{bottom:509.880090px;}
.y10_c02386{bottom:543.000342px;}
.y12_c02386{bottom:559.559874px;}
.yf_c02386{bottom:577.560450px;}
.y1c_c02386{bottom:614.280450px;}
.yb_c02386{bottom:667.558326px;}
.yd_c02386{bottom:707.160234px;}
.yc_c02386{bottom:716.880450px;}
.ya_c02386{bottom:796.438506px;}
.y9_c02386{bottom:877.438722px;}
.y7_c02386{bottom:926.759730px;}
.y3_c02386{bottom:944.760306px;}
.y8_c02386{bottom:979.319226px;}
.y6_c02386{bottom:1012.439478px;}
.y5_c02386{bottom:1030.440054px;}
.y2_c02386{bottom:1063.560306px;}
.y4_c02386{bottom:1079.759874px;}
.y1_c02386{bottom:1097.760450px;}
.ye_c02386{bottom:1134.840450px;}
.h3_c02386{height:32.530781px;}
.h1_c02386{height:41.696016px;}
.h2_c02386{height:41.812031px;}
.h4_c02386{height:54.654737px;}
.h0_c02386{height:1263.000000px;}
.w1_c02386{width:892.500000px;}
.w0_c02386{width:892.830000px;}
.x0_c02386{left:0.000000px;}
.xd_c02386{left:117.000000px;}
.x8_c02386{left:440.999856px;}
.x4_c02386{left:445.680576px;}
.xb_c02386{left:451.080000px;}
.x7_c02386{left:455.399604px;}
.x5_c02386{left:461.880144px;}
.x1_c02386{left:463.320000px;}
.xa_c02386{left:483.480360px;}
.x9_c02386{left:492.119496px;}
.x6_c02386{left:493.200576px;}
.xc_c02386{left:506.880360px;}
.x3_c02386{left:511.919892px;}
.x2_c02386{left:526.679604px;}
@media print{
.v0_c02386{vertical-align:0.000000pt;}
.v1_c02386{vertical-align:1.279488pt;}
.ls15_c02386{letter-spacing:-1.064448pt;}
.ls14_c02386{letter-spacing:-0.637824pt;}
.ls9_c02386{letter-spacing:-0.540672pt;}
.lsa_c02386{letter-spacing:-0.511104pt;}
.lse_c02386{letter-spacing:-0.321024pt;}
.ls10_c02386{letter-spacing:-0.244992pt;}
.lsd_c02386{letter-spacing:-0.232320pt;}
.ls6_c02386{letter-spacing:-0.215424pt;}
.ls7_c02386{letter-spacing:-0.211200pt;}
.ls3_c02386{letter-spacing:-0.105600pt;}
.ls13_c02386{letter-spacing:0.000000pt;}
.ls1_c02386{letter-spacing:0.005376pt;}
.ls5_c02386{letter-spacing:0.114048pt;}
.lsc_c02386{letter-spacing:0.451968pt;}
.ls12_c02386{letter-spacing:0.456960pt;}
.lsf_c02386{letter-spacing:0.477312pt;}
.lsb_c02386{letter-spacing:0.515328pt;}
.ls11_c02386{letter-spacing:0.528000pt;}
.ls8_c02386{letter-spacing:0.532224pt;}
.ls2_c02386{letter-spacing:0.544896pt;}
.ls4_c02386{letter-spacing:0.637824pt;}
.ls0_c02386{letter-spacing:0.642048pt;}
.wsc_c02386{word-spacing:-13.445376pt;}
.wsa_c02386{word-spacing:-11.088000pt;}
.ws6_c02386{word-spacing:-11.075328pt;}
.ws9_c02386{word-spacing:-11.037312pt;}
.ws7_c02386{word-spacing:-11.011968pt;}
.ws2_c02386{word-spacing:-10.348800pt;}
.ws4_c02386{word-spacing:-10.019328pt;}
.ws14_c02386{word-spacing:-1.919232pt;}
.ws11_c02386{word-spacing:-0.963072pt;}
.wse_c02386{word-spacing:-0.865920pt;}
.ws10_c02386{word-spacing:-0.105600pt;}
.ws12_c02386{word-spacing:-0.088704pt;}
.ws13_c02386{word-spacing:-0.076032pt;}
.wsf_c02386{word-spacing:0.000000pt;}
.ws15_c02386{word-spacing:0.316800pt;}
.ws16_c02386{word-spacing:0.743424pt;}
.wsb_c02386{word-spacing:29.600256pt;}
.ws8_c02386{word-spacing:32.127744pt;}
.ws1_c02386{word-spacing:33.563904pt;}
.ws0_c02386{word-spacing:33.796224pt;}
.ws3_c02386{word-spacing:34.860672pt;}
.ws5_c02386{word-spacing:35.468928pt;}
.wsd_c02386{word-spacing:37.357056pt;}
._0_c02386{margin-left:-1.731840pt;}
._2_c02386{width:1.317888pt;}
._4_c02386{width:3.320064pt;}
._1_c02386{width:44.668800pt;}
._3_c02386{width:45.805056pt;}
.fs0_c02386{font-size:42.240000pt;}
.fs1_c02386{font-size:53.760000pt;}
.y0_c02386{bottom:0.000000pt;}
.y19_c02386{bottom:130.665211pt;}
.y1b_c02386{bottom:165.866875pt;}
.y1a_c02386{bottom:174.507067pt;}
.y18_c02386{bottom:245.225371pt;}
.y17_c02386{bottom:317.225563pt;}
.y15_c02386{bottom:361.386427pt;}
.y11_c02386{bottom:377.386939pt;}
.y16_c02386{bottom:407.786011pt;}
.y14_c02386{bottom:437.226235pt;}
.y13_c02386{bottom:453.226747pt;}
.y10_c02386{bottom:482.666971pt;}
.y12_c02386{bottom:497.386555pt;}
.yf_c02386{bottom:513.387067pt;}
.y1c_c02386{bottom:546.027067pt;}
.yb_c02386{bottom:593.385179pt;}
.yd_c02386{bottom:628.586875pt;}
.yc_c02386{bottom:637.227067pt;}
.ya_c02386{bottom:707.945339pt;}
.y9_c02386{bottom:779.945531pt;}
.y7_c02386{bottom:823.786427pt;}
.y3_c02386{bottom:839.786939pt;}
.y8_c02386{bottom:870.505979pt;}
.y6_c02386{bottom:899.946203pt;}
.y5_c02386{bottom:915.946715pt;}
.y2_c02386{bottom:945.386939pt;}
.y4_c02386{bottom:959.786555pt;}
.y1_c02386{bottom:975.787067pt;}
.ye_c02386{bottom:1008.747067pt;}
.h3_c02386{height:28.916250pt;}
.h1_c02386{height:37.063125pt;}
.h2_c02386{height:37.166250pt;}
.h4_c02386{height:48.581988pt;}
.h0_c02386{height:1122.666667pt;}
.w1_c02386{width:793.333333pt;}
.w0_c02386{width:793.626667pt;}
.x0_c02386{left:0.000000pt;}
.xd_c02386{left:104.000000pt;}
.x8_c02386{left:391.999872pt;}
.x4_c02386{left:396.160512pt;}
.xb_c02386{left:400.960000pt;}
.x7_c02386{left:404.799648pt;}
.x5_c02386{left:410.560128pt;}
.x1_c02386{left:411.840000pt;}
.xa_c02386{left:429.760320pt;}
.x9_c02386{left:437.439552pt;}
.x6_c02386{left:438.400512pt;}
.xc_c02386{left:450.560320pt;}
.x3_c02386{left:455.039904pt;}
.x2_c02386{left:468.159648pt;}
}





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

.ir_c02387:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02387{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02387;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02387{font-family:ff1_c02387;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02387;src:url('chunks/assets/font_1831c9a4cdb8c5fb862bd5d3.woff2')format("woff");}.ff2_c02387{font-family:ff2_c02387;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02387;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02387{font-family:ff3_c02387;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02387{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02387{vertical-align:0.000000px;}
.v1_c02387{vertical-align:1.439424px;}
.ls15_c02387{letter-spacing:-1.197504px;}
.lse_c02387{letter-spacing:-0.793584px;}
.lsc_c02387{letter-spacing:-0.722304px;}
.ls9_c02387{letter-spacing:-0.717552px;}
.lsa_c02387{letter-spacing:-0.574992px;}
.ls11_c02387{letter-spacing:-0.275616px;}
.lsf_c02387{letter-spacing:-0.261360px;}
.ls6_c02387{letter-spacing:-0.242352px;}
.ls7_c02387{letter-spacing:-0.237600px;}
.ls4_c02387{letter-spacing:-0.118800px;}
.ls14_c02387{letter-spacing:0.000000px;}
.ls1_c02387{letter-spacing:0.006048px;}
.ls5_c02387{letter-spacing:0.128304px;}
.lsd_c02387{letter-spacing:0.508464px;}
.ls13_c02387{letter-spacing:0.514080px;}
.ls10_c02387{letter-spacing:0.536976px;}
.lsb_c02387{letter-spacing:0.579744px;}
.ls12_c02387{letter-spacing:0.594000px;}
.ls8_c02387{letter-spacing:0.598752px;}
.ls2_c02387{letter-spacing:0.613008px;}
.ls0_c02387{letter-spacing:0.717552px;}
.ls3_c02387{letter-spacing:0.722304px;}
.sc__c02387{text-shadow:none;}
.sc0_c02387{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02387{-webkit-text-stroke:0px transparent;}
.sc0_c02387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02387{word-spacing:-15.126048px;}
.ws9_c02387{word-spacing:-12.474000px;}
.ws7_c02387{word-spacing:-12.459744px;}
.ws8_c02387{word-spacing:-12.416976px;}
.ws2_c02387{word-spacing:-11.642400px;}
.ws15_c02387{word-spacing:-2.159136px;}
.ws10_c02387{word-spacing:-1.078704px;}
.wsc_c02387{word-spacing:-0.974160px;}
.wse_c02387{word-spacing:-0.118800px;}
.ws13_c02387{word-spacing:-0.099792px;}
.ws14_c02387{word-spacing:-0.085536px;}
.wsd_c02387{word-spacing:0.000000px;}
.wsf_c02387{word-spacing:0.356400px;}
.ws11_c02387{word-spacing:0.361152px;}
.ws12_c02387{word-spacing:0.432432px;}
.ws16_c02387{word-spacing:0.836352px;}
.wsa_c02387{word-spacing:33.300288px;}
.ws5_c02387{word-spacing:36.742464px;}
.ws1_c02387{word-spacing:37.759392px;}
.ws0_c02387{word-spacing:38.020752px;}
.ws3_c02387{word-spacing:39.218256px;}
.ws4_c02387{word-spacing:39.902544px;}
.ws6_c02387{word-spacing:42.026688px;}
._0_c02387{margin-left:-1.948320px;}
._2_c02387{width:1.482624px;}
._4_c02387{width:3.735072px;}
._1_c02387{width:50.252400px;}
._3_c02387{width:51.530688px;}
.fc0_c02387{color:rgb(0,0,0);}
.fs0_c02387{font-size:47.520000px;}
.fs1_c02387{font-size:60.480000px;}
.y0_c02387{bottom:0.000000px;}
.y19_c02387{bottom:146.998362px;}
.y1b_c02387{bottom:186.600234px;}
.y1a_c02387{bottom:196.320450px;}
.y18_c02387{bottom:275.878542px;}
.y17_c02387{bottom:356.878758px;}
.y15_c02387{bottom:406.559730px;}
.y11_c02387{bottom:424.560306px;}
.y16_c02387{bottom:458.759262px;}
.y14_c02387{bottom:491.879514px;}
.y13_c02387{bottom:509.880090px;}
.y10_c02387{bottom:543.000342px;}
.y12_c02387{bottom:559.559874px;}
.yf_c02387{bottom:577.560450px;}
.y1c_c02387{bottom:614.280450px;}
.yb_c02387{bottom:667.558326px;}
.yd_c02387{bottom:707.160234px;}
.yc_c02387{bottom:716.880450px;}
.ya_c02387{bottom:796.438506px;}
.y9_c02387{bottom:877.438722px;}
.y7_c02387{bottom:926.759730px;}
.y3_c02387{bottom:944.760306px;}
.y8_c02387{bottom:979.319226px;}
.y6_c02387{bottom:1012.439478px;}
.y5_c02387{bottom:1030.440054px;}
.y2_c02387{bottom:1063.560306px;}
.y4_c02387{bottom:1079.759874px;}
.y1_c02387{bottom:1097.760450px;}
.ye_c02387{bottom:1134.840450px;}
.h3_c02387{height:32.530781px;}
.h1_c02387{height:41.696016px;}
.h2_c02387{height:41.812031px;}
.h4_c02387{height:54.654737px;}
.h0_c02387{height:1263.000000px;}
.w1_c02387{width:892.500000px;}
.w0_c02387{width:892.830000px;}
.x0_c02387{left:0.000000px;}
.xd_c02387{left:117.000000px;}
.x8_c02387{left:440.999856px;}
.x4_c02387{left:445.680576px;}
.xb_c02387{left:451.080000px;}
.x7_c02387{left:455.399604px;}
.x5_c02387{left:461.880144px;}
.x1_c02387{left:463.320000px;}
.xa_c02387{left:483.480360px;}
.x9_c02387{left:492.119496px;}
.x6_c02387{left:493.200576px;}
.xc_c02387{left:506.880360px;}
.x3_c02387{left:511.919892px;}
.x2_c02387{left:526.679604px;}
@media print{
.v0_c02387{vertical-align:0.000000pt;}
.v1_c02387{vertical-align:1.279488pt;}
.ls15_c02387{letter-spacing:-1.064448pt;}
.lse_c02387{letter-spacing:-0.705408pt;}
.lsc_c02387{letter-spacing:-0.642048pt;}
.ls9_c02387{letter-spacing:-0.637824pt;}
.lsa_c02387{letter-spacing:-0.511104pt;}
.ls11_c02387{letter-spacing:-0.244992pt;}
.lsf_c02387{letter-spacing:-0.232320pt;}
.ls6_c02387{letter-spacing:-0.215424pt;}
.ls7_c02387{letter-spacing:-0.211200pt;}
.ls4_c02387{letter-spacing:-0.105600pt;}
.ls14_c02387{letter-spacing:0.000000pt;}
.ls1_c02387{letter-spacing:0.005376pt;}
.ls5_c02387{letter-spacing:0.114048pt;}
.lsd_c02387{letter-spacing:0.451968pt;}
.ls13_c02387{letter-spacing:0.456960pt;}
.ls10_c02387{letter-spacing:0.477312pt;}
.lsb_c02387{letter-spacing:0.515328pt;}
.ls12_c02387{letter-spacing:0.528000pt;}
.ls8_c02387{letter-spacing:0.532224pt;}
.ls2_c02387{letter-spacing:0.544896pt;}
.ls0_c02387{letter-spacing:0.637824pt;}
.ls3_c02387{letter-spacing:0.642048pt;}
.wsb_c02387{word-spacing:-13.445376pt;}
.ws9_c02387{word-spacing:-11.088000pt;}
.ws7_c02387{word-spacing:-11.075328pt;}
.ws8_c02387{word-spacing:-11.037312pt;}
.ws2_c02387{word-spacing:-10.348800pt;}
.ws15_c02387{word-spacing:-1.919232pt;}
.ws10_c02387{word-spacing:-0.958848pt;}
.wsc_c02387{word-spacing:-0.865920pt;}
.wse_c02387{word-spacing:-0.105600pt;}
.ws13_c02387{word-spacing:-0.088704pt;}
.ws14_c02387{word-spacing:-0.076032pt;}
.wsd_c02387{word-spacing:0.000000pt;}
.wsf_c02387{word-spacing:0.316800pt;}
.ws11_c02387{word-spacing:0.321024pt;}
.ws12_c02387{word-spacing:0.384384pt;}
.ws16_c02387{word-spacing:0.743424pt;}
.wsa_c02387{word-spacing:29.600256pt;}
.ws5_c02387{word-spacing:32.659968pt;}
.ws1_c02387{word-spacing:33.563904pt;}
.ws0_c02387{word-spacing:33.796224pt;}
.ws3_c02387{word-spacing:34.860672pt;}
.ws4_c02387{word-spacing:35.468928pt;}
.ws6_c02387{word-spacing:37.357056pt;}
._0_c02387{margin-left:-1.731840pt;}
._2_c02387{width:1.317888pt;}
._4_c02387{width:3.320064pt;}
._1_c02387{width:44.668800pt;}
._3_c02387{width:45.805056pt;}
.fs0_c02387{font-size:42.240000pt;}
.fs1_c02387{font-size:53.760000pt;}
.y0_c02387{bottom:0.000000pt;}
.y19_c02387{bottom:130.665211pt;}
.y1b_c02387{bottom:165.866875pt;}
.y1a_c02387{bottom:174.507067pt;}
.y18_c02387{bottom:245.225371pt;}
.y17_c02387{bottom:317.225563pt;}
.y15_c02387{bottom:361.386427pt;}
.y11_c02387{bottom:377.386939pt;}
.y16_c02387{bottom:407.786011pt;}
.y14_c02387{bottom:437.226235pt;}
.y13_c02387{bottom:453.226747pt;}
.y10_c02387{bottom:482.666971pt;}
.y12_c02387{bottom:497.386555pt;}
.yf_c02387{bottom:513.387067pt;}
.y1c_c02387{bottom:546.027067pt;}
.yb_c02387{bottom:593.385179pt;}
.yd_c02387{bottom:628.586875pt;}
.yc_c02387{bottom:637.227067pt;}
.ya_c02387{bottom:707.945339pt;}
.y9_c02387{bottom:779.945531pt;}
.y7_c02387{bottom:823.786427pt;}
.y3_c02387{bottom:839.786939pt;}
.y8_c02387{bottom:870.505979pt;}
.y6_c02387{bottom:899.946203pt;}
.y5_c02387{bottom:915.946715pt;}
.y2_c02387{bottom:945.386939pt;}
.y4_c02387{bottom:959.786555pt;}
.y1_c02387{bottom:975.787067pt;}
.ye_c02387{bottom:1008.747067pt;}
.h3_c02387{height:28.916250pt;}
.h1_c02387{height:37.063125pt;}
.h2_c02387{height:37.166250pt;}
.h4_c02387{height:48.581988pt;}
.h0_c02387{height:1122.666667pt;}
.w1_c02387{width:793.333333pt;}
.w0_c02387{width:793.626667pt;}
.x0_c02387{left:0.000000pt;}
.xd_c02387{left:104.000000pt;}
.x8_c02387{left:391.999872pt;}
.x4_c02387{left:396.160512pt;}
.xb_c02387{left:400.960000pt;}
.x7_c02387{left:404.799648pt;}
.x5_c02387{left:410.560128pt;}
.x1_c02387{left:411.840000pt;}
.xa_c02387{left:429.760320pt;}
.x9_c02387{left:437.439552pt;}
.x6_c02387{left:438.400512pt;}
.xc_c02387{left:450.560320pt;}
.x3_c02387{left:455.039904pt;}
.x2_c02387{left:468.159648pt;}
}





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

.ir_c02388:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02388{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02388;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02388{font-family:ff1_c02388;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02388;src:url('chunks/assets/font_02dca323598a5b70098963d5.woff2')format("woff");}.ff2_c02388{font-family:ff2_c02388;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02388;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02388{font-family:ff3_c02388;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02388{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02388{vertical-align:0.000000px;}
.v1_c02388{vertical-align:1.439424px;}
.lsf_c02388{letter-spacing:-0.793584px;}
.lsc_c02388{letter-spacing:-0.774576px;}
.ls12_c02388{letter-spacing:-0.736560px;}
.ls17_c02388{letter-spacing:-0.722304px;}
.lsa_c02388{letter-spacing:-0.608256px;}
.lsb_c02388{letter-spacing:-0.574992px;}
.ls13_c02388{letter-spacing:-0.270864px;}
.ls10_c02388{letter-spacing:-0.261360px;}
.ls7_c02388{letter-spacing:-0.242352px;}
.ls8_c02388{letter-spacing:-0.237600px;}
.ls4_c02388{letter-spacing:-0.118800px;}
.ls16_c02388{letter-spacing:0.000000px;}
.ls1_c02388{letter-spacing:0.006048px;}
.ls6_c02388{letter-spacing:0.128304px;}
.lse_c02388{letter-spacing:0.508464px;}
.ls15_c02388{letter-spacing:0.514080px;}
.ls11_c02388{letter-spacing:0.536976px;}
.lsd_c02388{letter-spacing:0.579744px;}
.ls14_c02388{letter-spacing:0.594000px;}
.ls9_c02388{letter-spacing:0.598752px;}
.ls2_c02388{letter-spacing:0.613008px;}
.ls0_c02388{letter-spacing:0.651024px;}
.ls5_c02388{letter-spacing:0.717552px;}
.ls3_c02388{letter-spacing:0.722304px;}
.sc__c02388{text-shadow:none;}
.sc0_c02388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02388{-webkit-text-stroke:0px transparent;}
.sc0_c02388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02388{word-spacing:-15.126048px;}
.wsb_c02388{word-spacing:-12.474000px;}
.ws7_c02388{word-spacing:-12.459744px;}
.ws2_c02388{word-spacing:-11.642400px;}
.ws4_c02388{word-spacing:-11.271744px;}
.ws6_c02388{word-spacing:-11.105424px;}
.ws16_c02388{word-spacing:-2.159136px;}
.ws10_c02388{word-spacing:-1.012176px;}
.wse_c02388{word-spacing:-0.974160px;}
.ws11_c02388{word-spacing:-0.118800px;}
.ws13_c02388{word-spacing:-0.099792px;}
.ws14_c02388{word-spacing:-0.090288px;}
.ws15_c02388{word-spacing:-0.085536px;}
.wsf_c02388{word-spacing:0.000000px;}
.ws17_c02388{word-spacing:0.361152px;}
.ws12_c02388{word-spacing:0.432432px;}
.wsa_c02388{word-spacing:6.629040px;}
.wsc_c02388{word-spacing:33.300288px;}
.ws9_c02388{word-spacing:34.836912px;}
.ws1_c02388{word-spacing:37.759392px;}
.ws0_c02388{word-spacing:38.020752px;}
.ws3_c02388{word-spacing:39.218256px;}
.ws5_c02388{word-spacing:39.902544px;}
.ws8_c02388{word-spacing:42.026688px;}
._0_c02388{margin-left:-1.948320px;}
._2_c02388{width:1.482624px;}
._5_c02388{width:19.982160px;}
._6_c02388{width:23.451120px;}
._4_c02388{width:24.691392px;}
._1_c02388{width:50.252400px;}
._3_c02388{width:51.530688px;}
.fc0_c02388{color:rgb(0,0,0);}
.fs0_c02388{font-size:47.520000px;}
.fs1_c02388{font-size:60.480000px;}
.y0_c02388{bottom:0.000000px;}
.y1b_c02388{bottom:131.878686px;}
.y1a_c02388{bottom:146.998362px;}
.y1d_c02388{bottom:186.600234px;}
.y1c_c02388{bottom:196.320450px;}
.y19_c02388{bottom:275.878542px;}
.y18_c02388{bottom:356.878758px;}
.y16_c02388{bottom:406.559730px;}
.y12_c02388{bottom:424.560306px;}
.y17_c02388{bottom:458.759262px;}
.y15_c02388{bottom:491.879514px;}
.y14_c02388{bottom:509.880090px;}
.y11_c02388{bottom:543.000342px;}
.y13_c02388{bottom:559.559874px;}
.y10_c02388{bottom:577.560450px;}
.y1e_c02388{bottom:614.280450px;}
.yc_c02388{bottom:652.438650px;}
.yb_c02388{bottom:667.558326px;}
.ye_c02388{bottom:707.160234px;}
.yd_c02388{bottom:716.880450px;}
.ya_c02388{bottom:796.438506px;}
.y9_c02388{bottom:877.438722px;}
.y7_c02388{bottom:926.759730px;}
.y3_c02388{bottom:944.760306px;}
.y8_c02388{bottom:979.319226px;}
.y6_c02388{bottom:1012.439478px;}
.y5_c02388{bottom:1030.440054px;}
.y2_c02388{bottom:1063.560306px;}
.y4_c02388{bottom:1079.759874px;}
.y1_c02388{bottom:1097.760450px;}
.yf_c02388{bottom:1134.840450px;}
.h3_c02388{height:32.530781px;}
.h1_c02388{height:41.696016px;}
.h2_c02388{height:41.812031px;}
.h4_c02388{height:54.654737px;}
.h0_c02388{height:1263.000000px;}
.w1_c02388{width:892.500000px;}
.w0_c02388{width:892.830000px;}
.x0_c02388{left:0.000000px;}
.xe_c02388{left:117.000000px;}
.x8_c02388{left:440.999856px;}
.x4_c02388{left:445.680576px;}
.xc_c02388{left:451.080000px;}
.x7_c02388{left:455.399604px;}
.x5_c02388{left:461.880144px;}
.x1_c02388{left:463.320000px;}
.xa_c02388{left:483.480360px;}
.x9_c02388{left:492.119496px;}
.x6_c02388{left:493.200576px;}
.xd_c02388{left:506.880360px;}
.x3_c02388{left:511.919892px;}
.x2_c02388{left:526.679604px;}
.xb_c02388{left:569.880036px;}
@media print{
.v0_c02388{vertical-align:0.000000pt;}
.v1_c02388{vertical-align:1.279488pt;}
.lsf_c02388{letter-spacing:-0.705408pt;}
.lsc_c02388{letter-spacing:-0.688512pt;}
.ls12_c02388{letter-spacing:-0.654720pt;}
.ls17_c02388{letter-spacing:-0.642048pt;}
.lsa_c02388{letter-spacing:-0.540672pt;}
.lsb_c02388{letter-spacing:-0.511104pt;}
.ls13_c02388{letter-spacing:-0.240768pt;}
.ls10_c02388{letter-spacing:-0.232320pt;}
.ls7_c02388{letter-spacing:-0.215424pt;}
.ls8_c02388{letter-spacing:-0.211200pt;}
.ls4_c02388{letter-spacing:-0.105600pt;}
.ls16_c02388{letter-spacing:0.000000pt;}
.ls1_c02388{letter-spacing:0.005376pt;}
.ls6_c02388{letter-spacing:0.114048pt;}
.lse_c02388{letter-spacing:0.451968pt;}
.ls15_c02388{letter-spacing:0.456960pt;}
.ls11_c02388{letter-spacing:0.477312pt;}
.lsd_c02388{letter-spacing:0.515328pt;}
.ls14_c02388{letter-spacing:0.528000pt;}
.ls9_c02388{letter-spacing:0.532224pt;}
.ls2_c02388{letter-spacing:0.544896pt;}
.ls0_c02388{letter-spacing:0.578688pt;}
.ls5_c02388{letter-spacing:0.637824pt;}
.ls3_c02388{letter-spacing:0.642048pt;}
.wsd_c02388{word-spacing:-13.445376pt;}
.wsb_c02388{word-spacing:-11.088000pt;}
.ws7_c02388{word-spacing:-11.075328pt;}
.ws2_c02388{word-spacing:-10.348800pt;}
.ws4_c02388{word-spacing:-10.019328pt;}
.ws6_c02388{word-spacing:-9.871488pt;}
.ws16_c02388{word-spacing:-1.919232pt;}
.ws10_c02388{word-spacing:-0.899712pt;}
.wse_c02388{word-spacing:-0.865920pt;}
.ws11_c02388{word-spacing:-0.105600pt;}
.ws13_c02388{word-spacing:-0.088704pt;}
.ws14_c02388{word-spacing:-0.080256pt;}
.ws15_c02388{word-spacing:-0.076032pt;}
.wsf_c02388{word-spacing:0.000000pt;}
.ws17_c02388{word-spacing:0.321024pt;}
.ws12_c02388{word-spacing:0.384384pt;}
.wsa_c02388{word-spacing:5.892480pt;}
.wsc_c02388{word-spacing:29.600256pt;}
.ws9_c02388{word-spacing:30.966144pt;}
.ws1_c02388{word-spacing:33.563904pt;}
.ws0_c02388{word-spacing:33.796224pt;}
.ws3_c02388{word-spacing:34.860672pt;}
.ws5_c02388{word-spacing:35.468928pt;}
.ws8_c02388{word-spacing:37.357056pt;}
._0_c02388{margin-left:-1.731840pt;}
._2_c02388{width:1.317888pt;}
._5_c02388{width:17.761920pt;}
._6_c02388{width:20.845440pt;}
._4_c02388{width:21.947904pt;}
._1_c02388{width:44.668800pt;}
._3_c02388{width:45.805056pt;}
.fs0_c02388{font-size:42.240000pt;}
.fs1_c02388{font-size:53.760000pt;}
.y0_c02388{bottom:0.000000pt;}
.y1b_c02388{bottom:117.225499pt;}
.y1a_c02388{bottom:130.665211pt;}
.y1d_c02388{bottom:165.866875pt;}
.y1c_c02388{bottom:174.507067pt;}
.y19_c02388{bottom:245.225371pt;}
.y18_c02388{bottom:317.225563pt;}
.y16_c02388{bottom:361.386427pt;}
.y12_c02388{bottom:377.386939pt;}
.y17_c02388{bottom:407.786011pt;}
.y15_c02388{bottom:437.226235pt;}
.y14_c02388{bottom:453.226747pt;}
.y11_c02388{bottom:482.666971pt;}
.y13_c02388{bottom:497.386555pt;}
.y10_c02388{bottom:513.387067pt;}
.y1e_c02388{bottom:546.027067pt;}
.yc_c02388{bottom:579.945467pt;}
.yb_c02388{bottom:593.385179pt;}
.ye_c02388{bottom:628.586875pt;}
.yd_c02388{bottom:637.227067pt;}
.ya_c02388{bottom:707.945339pt;}
.y9_c02388{bottom:779.945531pt;}
.y7_c02388{bottom:823.786427pt;}
.y3_c02388{bottom:839.786939pt;}
.y8_c02388{bottom:870.505979pt;}
.y6_c02388{bottom:899.946203pt;}
.y5_c02388{bottom:915.946715pt;}
.y2_c02388{bottom:945.386939pt;}
.y4_c02388{bottom:959.786555pt;}
.y1_c02388{bottom:975.787067pt;}
.yf_c02388{bottom:1008.747067pt;}
.h3_c02388{height:28.916250pt;}
.h1_c02388{height:37.063125pt;}
.h2_c02388{height:37.166250pt;}
.h4_c02388{height:48.581988pt;}
.h0_c02388{height:1122.666667pt;}
.w1_c02388{width:793.333333pt;}
.w0_c02388{width:793.626667pt;}
.x0_c02388{left:0.000000pt;}
.xe_c02388{left:104.000000pt;}
.x8_c02388{left:391.999872pt;}
.x4_c02388{left:396.160512pt;}
.xc_c02388{left:400.960000pt;}
.x7_c02388{left:404.799648pt;}
.x5_c02388{left:410.560128pt;}
.x1_c02388{left:411.840000pt;}
.xa_c02388{left:429.760320pt;}
.x9_c02388{left:437.439552pt;}
.x6_c02388{left:438.400512pt;}
.xd_c02388{left:450.560320pt;}
.x3_c02388{left:455.039904pt;}
.x2_c02388{left:468.159648pt;}
.xb_c02388{left:506.560032pt;}
}





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

.ir_c02389:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02389{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02389;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02389{font-family:ff1_c02389;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02389;src:url('chunks/assets/font_8d00a41b7f1c37f620aac3a3.woff2')format("woff");}.ff2_c02389{font-family:ff2_c02389;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02389;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02389{font-family:ff3_c02389;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02389{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02389{vertical-align:0.000000px;}
.v1_c02389{vertical-align:1.439424px;}
.lsc_c02389{letter-spacing:-0.774576px;}
.ls12_c02389{letter-spacing:-0.736560px;}
.lsf_c02389{letter-spacing:-0.722304px;}
.lsa_c02389{letter-spacing:-0.608256px;}
.lsb_c02389{letter-spacing:-0.574992px;}
.ls13_c02389{letter-spacing:-0.270864px;}
.ls10_c02389{letter-spacing:-0.261360px;}
.ls7_c02389{letter-spacing:-0.242352px;}
.ls8_c02389{letter-spacing:-0.237600px;}
.ls4_c02389{letter-spacing:-0.118800px;}
.ls16_c02389{letter-spacing:0.000000px;}
.ls1_c02389{letter-spacing:0.006048px;}
.ls6_c02389{letter-spacing:0.128304px;}
.lse_c02389{letter-spacing:0.508464px;}
.ls15_c02389{letter-spacing:0.514080px;}
.ls11_c02389{letter-spacing:0.536976px;}
.lsd_c02389{letter-spacing:0.579744px;}
.ls14_c02389{letter-spacing:0.594000px;}
.ls9_c02389{letter-spacing:0.598752px;}
.ls2_c02389{letter-spacing:0.613008px;}
.ls0_c02389{letter-spacing:0.651024px;}
.ls5_c02389{letter-spacing:0.717552px;}
.ls3_c02389{letter-spacing:0.722304px;}
.sc__c02389{text-shadow:none;}
.sc0_c02389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02389{-webkit-text-stroke:0px transparent;}
.sc0_c02389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02389{word-spacing:-15.126048px;}
.wsb_c02389{word-spacing:-12.474000px;}
.ws7_c02389{word-spacing:-12.459744px;}
.ws2_c02389{word-spacing:-11.642400px;}
.ws4_c02389{word-spacing:-11.271744px;}
.ws6_c02389{word-spacing:-11.105424px;}
.ws16_c02389{word-spacing:-2.159136px;}
.ws10_c02389{word-spacing:-1.012176px;}
.wse_c02389{word-spacing:-0.974160px;}
.ws11_c02389{word-spacing:-0.118800px;}
.ws13_c02389{word-spacing:-0.099792px;}
.ws14_c02389{word-spacing:-0.090288px;}
.ws15_c02389{word-spacing:-0.085536px;}
.wsf_c02389{word-spacing:0.000000px;}
.ws12_c02389{word-spacing:0.361152px;}
.wsa_c02389{word-spacing:6.629040px;}
.wsc_c02389{word-spacing:33.300288px;}
.ws9_c02389{word-spacing:34.836912px;}
.ws1_c02389{word-spacing:37.759392px;}
.ws0_c02389{word-spacing:38.020752px;}
.ws3_c02389{word-spacing:39.218256px;}
.ws5_c02389{word-spacing:39.902544px;}
.ws8_c02389{word-spacing:42.026688px;}
._0_c02389{margin-left:-1.948320px;}
._2_c02389{width:1.482624px;}
._5_c02389{width:19.982160px;}
._6_c02389{width:23.451120px;}
._4_c02389{width:24.691392px;}
._1_c02389{width:50.252400px;}
._3_c02389{width:51.530688px;}
.fc0_c02389{color:rgb(0,0,0);}
.fs0_c02389{font-size:47.520000px;}
.fs1_c02389{font-size:60.480000px;}
.y0_c02389{bottom:0.000000px;}
.y1b_c02389{bottom:131.878686px;}
.y1a_c02389{bottom:146.998362px;}
.y1d_c02389{bottom:186.600234px;}
.y1c_c02389{bottom:196.320450px;}
.y19_c02389{bottom:275.878542px;}
.y18_c02389{bottom:356.878758px;}
.y16_c02389{bottom:406.559730px;}
.y12_c02389{bottom:424.560306px;}
.y17_c02389{bottom:458.759262px;}
.y15_c02389{bottom:491.879514px;}
.y14_c02389{bottom:509.880090px;}
.y11_c02389{bottom:543.000342px;}
.y13_c02389{bottom:559.559874px;}
.y10_c02389{bottom:577.560450px;}
.y1e_c02389{bottom:614.280450px;}
.yc_c02389{bottom:652.438650px;}
.yb_c02389{bottom:667.558326px;}
.ye_c02389{bottom:707.160234px;}
.yd_c02389{bottom:716.880450px;}
.ya_c02389{bottom:796.438506px;}
.y9_c02389{bottom:877.438722px;}
.y7_c02389{bottom:926.759730px;}
.y3_c02389{bottom:944.760306px;}
.y8_c02389{bottom:979.319226px;}
.y6_c02389{bottom:1012.439478px;}
.y5_c02389{bottom:1030.440054px;}
.y2_c02389{bottom:1063.560306px;}
.y4_c02389{bottom:1079.759874px;}
.y1_c02389{bottom:1097.760450px;}
.yf_c02389{bottom:1134.840450px;}
.h3_c02389{height:32.530781px;}
.h1_c02389{height:41.696016px;}
.h2_c02389{height:41.812031px;}
.h4_c02389{height:54.654737px;}
.h0_c02389{height:1263.000000px;}
.w1_c02389{width:892.500000px;}
.w0_c02389{width:892.830000px;}
.x0_c02389{left:0.000000px;}
.xe_c02389{left:117.000000px;}
.x8_c02389{left:440.999856px;}
.x4_c02389{left:445.680576px;}
.xc_c02389{left:451.080000px;}
.x7_c02389{left:455.399604px;}
.x5_c02389{left:461.880144px;}
.x1_c02389{left:463.320000px;}
.xa_c02389{left:483.480360px;}
.x9_c02389{left:492.119496px;}
.x6_c02389{left:493.200576px;}
.xd_c02389{left:506.880360px;}
.x3_c02389{left:511.919892px;}
.x2_c02389{left:526.679604px;}
.xb_c02389{left:569.880036px;}
@media print{
.v0_c02389{vertical-align:0.000000pt;}
.v1_c02389{vertical-align:1.279488pt;}
.lsc_c02389{letter-spacing:-0.688512pt;}
.ls12_c02389{letter-spacing:-0.654720pt;}
.lsf_c02389{letter-spacing:-0.642048pt;}
.lsa_c02389{letter-spacing:-0.540672pt;}
.lsb_c02389{letter-spacing:-0.511104pt;}
.ls13_c02389{letter-spacing:-0.240768pt;}
.ls10_c02389{letter-spacing:-0.232320pt;}
.ls7_c02389{letter-spacing:-0.215424pt;}
.ls8_c02389{letter-spacing:-0.211200pt;}
.ls4_c02389{letter-spacing:-0.105600pt;}
.ls16_c02389{letter-spacing:0.000000pt;}
.ls1_c02389{letter-spacing:0.005376pt;}
.ls6_c02389{letter-spacing:0.114048pt;}
.lse_c02389{letter-spacing:0.451968pt;}
.ls15_c02389{letter-spacing:0.456960pt;}
.ls11_c02389{letter-spacing:0.477312pt;}
.lsd_c02389{letter-spacing:0.515328pt;}
.ls14_c02389{letter-spacing:0.528000pt;}
.ls9_c02389{letter-spacing:0.532224pt;}
.ls2_c02389{letter-spacing:0.544896pt;}
.ls0_c02389{letter-spacing:0.578688pt;}
.ls5_c02389{letter-spacing:0.637824pt;}
.ls3_c02389{letter-spacing:0.642048pt;}
.wsd_c02389{word-spacing:-13.445376pt;}
.wsb_c02389{word-spacing:-11.088000pt;}
.ws7_c02389{word-spacing:-11.075328pt;}
.ws2_c02389{word-spacing:-10.348800pt;}
.ws4_c02389{word-spacing:-10.019328pt;}
.ws6_c02389{word-spacing:-9.871488pt;}
.ws16_c02389{word-spacing:-1.919232pt;}
.ws10_c02389{word-spacing:-0.899712pt;}
.wse_c02389{word-spacing:-0.865920pt;}
.ws11_c02389{word-spacing:-0.105600pt;}
.ws13_c02389{word-spacing:-0.088704pt;}
.ws14_c02389{word-spacing:-0.080256pt;}
.ws15_c02389{word-spacing:-0.076032pt;}
.wsf_c02389{word-spacing:0.000000pt;}
.ws12_c02389{word-spacing:0.321024pt;}
.wsa_c02389{word-spacing:5.892480pt;}
.wsc_c02389{word-spacing:29.600256pt;}
.ws9_c02389{word-spacing:30.966144pt;}
.ws1_c02389{word-spacing:33.563904pt;}
.ws0_c02389{word-spacing:33.796224pt;}
.ws3_c02389{word-spacing:34.860672pt;}
.ws5_c02389{word-spacing:35.468928pt;}
.ws8_c02389{word-spacing:37.357056pt;}
._0_c02389{margin-left:-1.731840pt;}
._2_c02389{width:1.317888pt;}
._5_c02389{width:17.761920pt;}
._6_c02389{width:20.845440pt;}
._4_c02389{width:21.947904pt;}
._1_c02389{width:44.668800pt;}
._3_c02389{width:45.805056pt;}
.fs0_c02389{font-size:42.240000pt;}
.fs1_c02389{font-size:53.760000pt;}
.y0_c02389{bottom:0.000000pt;}
.y1b_c02389{bottom:117.225499pt;}
.y1a_c02389{bottom:130.665211pt;}
.y1d_c02389{bottom:165.866875pt;}
.y1c_c02389{bottom:174.507067pt;}
.y19_c02389{bottom:245.225371pt;}
.y18_c02389{bottom:317.225563pt;}
.y16_c02389{bottom:361.386427pt;}
.y12_c02389{bottom:377.386939pt;}
.y17_c02389{bottom:407.786011pt;}
.y15_c02389{bottom:437.226235pt;}
.y14_c02389{bottom:453.226747pt;}
.y11_c02389{bottom:482.666971pt;}
.y13_c02389{bottom:497.386555pt;}
.y10_c02389{bottom:513.387067pt;}
.y1e_c02389{bottom:546.027067pt;}
.yc_c02389{bottom:579.945467pt;}
.yb_c02389{bottom:593.385179pt;}
.ye_c02389{bottom:628.586875pt;}
.yd_c02389{bottom:637.227067pt;}
.ya_c02389{bottom:707.945339pt;}
.y9_c02389{bottom:779.945531pt;}
.y7_c02389{bottom:823.786427pt;}
.y3_c02389{bottom:839.786939pt;}
.y8_c02389{bottom:870.505979pt;}
.y6_c02389{bottom:899.946203pt;}
.y5_c02389{bottom:915.946715pt;}
.y2_c02389{bottom:945.386939pt;}
.y4_c02389{bottom:959.786555pt;}
.y1_c02389{bottom:975.787067pt;}
.yf_c02389{bottom:1008.747067pt;}
.h3_c02389{height:28.916250pt;}
.h1_c02389{height:37.063125pt;}
.h2_c02389{height:37.166250pt;}
.h4_c02389{height:48.581988pt;}
.h0_c02389{height:1122.666667pt;}
.w1_c02389{width:793.333333pt;}
.w0_c02389{width:793.626667pt;}
.x0_c02389{left:0.000000pt;}
.xe_c02389{left:104.000000pt;}
.x8_c02389{left:391.999872pt;}
.x4_c02389{left:396.160512pt;}
.xc_c02389{left:400.960000pt;}
.x7_c02389{left:404.799648pt;}
.x5_c02389{left:410.560128pt;}
.x1_c02389{left:411.840000pt;}
.xa_c02389{left:429.760320pt;}
.x9_c02389{left:437.439552pt;}
.x6_c02389{left:438.400512pt;}
.xd_c02389{left:450.560320pt;}
.x3_c02389{left:455.039904pt;}
.x2_c02389{left:468.159648pt;}
.xb_c02389{left:506.560032pt;}
}





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

.ir_c02390:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02390{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02390;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02390{font-family:ff1_c02390;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02390;src:url('chunks/assets/font_16da09858370f4a30c887dc5.woff2')format("woff");}.ff2_c02390{font-family:ff2_c02390;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02390;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02390{font-family:ff3_c02390;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02390{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02390{vertical-align:0.000000px;}
.v1_c02390{vertical-align:1.439424px;}
.ls9_c02390{letter-spacing:-0.574992px;}
.lsf_c02390{letter-spacing:-0.275616px;}
.lsd_c02390{letter-spacing:-0.261360px;}
.lsc_c02390{letter-spacing:-0.256608px;}
.ls6_c02390{letter-spacing:-0.242352px;}
.ls4_c02390{letter-spacing:-0.118800px;}
.ls12_c02390{letter-spacing:0.000000px;}
.ls1_c02390{letter-spacing:0.006048px;}
.ls5_c02390{letter-spacing:0.128304px;}
.ls7_c02390{letter-spacing:0.242352px;}
.lsb_c02390{letter-spacing:0.508464px;}
.ls11_c02390{letter-spacing:0.514080px;}
.lse_c02390{letter-spacing:0.536976px;}
.lsa_c02390{letter-spacing:0.579744px;}
.ls10_c02390{letter-spacing:0.594000px;}
.ls8_c02390{letter-spacing:0.598752px;}
.ls2_c02390{letter-spacing:0.613008px;}
.ls0_c02390{letter-spacing:0.717552px;}
.ls3_c02390{letter-spacing:0.722304px;}
.sc__c02390{text-shadow:none;}
.sc0_c02390{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02390{-webkit-text-stroke:0px transparent;}
.sc0_c02390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02390{word-spacing:-15.126048px;}
.wsa_c02390{word-spacing:-12.474000px;}
.ws8_c02390{word-spacing:-12.459744px;}
.ws9_c02390{word-spacing:-12.416976px;}
.ws2_c02390{word-spacing:-12.122352px;}
.ws4_c02390{word-spacing:-11.637648px;}
.ws14_c02390{word-spacing:-2.159136px;}
.ws10_c02390{word-spacing:-1.078704px;}
.wsd_c02390{word-spacing:-0.974160px;}
.wsf_c02390{word-spacing:-0.118800px;}
.ws11_c02390{word-spacing:-0.104544px;}
.ws12_c02390{word-spacing:-0.099792px;}
.ws13_c02390{word-spacing:-0.085536px;}
.wse_c02390{word-spacing:0.000000px;}
.wsb_c02390{word-spacing:33.300288px;}
.ws6_c02390{word-spacing:36.742464px;}
.ws1_c02390{word-spacing:37.759392px;}
.ws0_c02390{word-spacing:38.020752px;}
.ws3_c02390{word-spacing:39.218256px;}
.ws5_c02390{word-spacing:39.902544px;}
.ws7_c02390{word-spacing:42.026688px;}
._0_c02390{margin-left:-1.948320px;}
._2_c02390{width:1.482624px;}
._4_c02390{width:3.307392px;}
._1_c02390{width:50.252400px;}
._3_c02390{width:51.530688px;}
.fc0_c02390{color:rgb(0,0,0);}
.fs0_c02390{font-size:47.520000px;}
.fs1_c02390{font-size:60.480000px;}
.y0_c02390{bottom:0.000000px;}
.y19_c02390{bottom:146.998362px;}
.y1b_c02390{bottom:186.600234px;}
.y1a_c02390{bottom:196.320450px;}
.y18_c02390{bottom:275.878542px;}
.y17_c02390{bottom:356.878758px;}
.y15_c02390{bottom:406.559730px;}
.y11_c02390{bottom:424.560306px;}
.y16_c02390{bottom:458.759262px;}
.y14_c02390{bottom:491.879514px;}
.y13_c02390{bottom:509.880090px;}
.y10_c02390{bottom:543.000342px;}
.y12_c02390{bottom:559.559874px;}
.yf_c02390{bottom:577.560450px;}
.y1c_c02390{bottom:614.280450px;}
.yb_c02390{bottom:667.558326px;}
.yd_c02390{bottom:707.160234px;}
.yc_c02390{bottom:716.880450px;}
.ya_c02390{bottom:796.438506px;}
.y9_c02390{bottom:877.438722px;}
.y7_c02390{bottom:926.759730px;}
.y3_c02390{bottom:944.760306px;}
.y8_c02390{bottom:979.319226px;}
.y6_c02390{bottom:1012.439478px;}
.y5_c02390{bottom:1030.440054px;}
.y2_c02390{bottom:1063.560306px;}
.y4_c02390{bottom:1079.759874px;}
.y1_c02390{bottom:1097.760450px;}
.ye_c02390{bottom:1134.840450px;}
.h3_c02390{height:32.530781px;}
.h1_c02390{height:41.696016px;}
.h2_c02390{height:41.812031px;}
.h4_c02390{height:54.654737px;}
.h0_c02390{height:1263.000000px;}
.w1_c02390{width:892.500000px;}
.w0_c02390{width:892.830000px;}
.x0_c02390{left:0.000000px;}
.xd_c02390{left:117.000000px;}
.x8_c02390{left:440.999856px;}
.x4_c02390{left:445.680576px;}
.xb_c02390{left:451.080000px;}
.x7_c02390{left:455.399604px;}
.x5_c02390{left:461.880144px;}
.x1_c02390{left:463.320000px;}
.xa_c02390{left:483.480360px;}
.x9_c02390{left:492.119496px;}
.x6_c02390{left:493.200576px;}
.xc_c02390{left:506.880360px;}
.x3_c02390{left:511.919892px;}
.x2_c02390{left:526.679604px;}
@media print{
.v0_c02390{vertical-align:0.000000pt;}
.v1_c02390{vertical-align:1.279488pt;}
.ls9_c02390{letter-spacing:-0.511104pt;}
.lsf_c02390{letter-spacing:-0.244992pt;}
.lsd_c02390{letter-spacing:-0.232320pt;}
.lsc_c02390{letter-spacing:-0.228096pt;}
.ls6_c02390{letter-spacing:-0.215424pt;}
.ls4_c02390{letter-spacing:-0.105600pt;}
.ls12_c02390{letter-spacing:0.000000pt;}
.ls1_c02390{letter-spacing:0.005376pt;}
.ls5_c02390{letter-spacing:0.114048pt;}
.ls7_c02390{letter-spacing:0.215424pt;}
.lsb_c02390{letter-spacing:0.451968pt;}
.ls11_c02390{letter-spacing:0.456960pt;}
.lse_c02390{letter-spacing:0.477312pt;}
.lsa_c02390{letter-spacing:0.515328pt;}
.ls10_c02390{letter-spacing:0.528000pt;}
.ls8_c02390{letter-spacing:0.532224pt;}
.ls2_c02390{letter-spacing:0.544896pt;}
.ls0_c02390{letter-spacing:0.637824pt;}
.ls3_c02390{letter-spacing:0.642048pt;}
.wsc_c02390{word-spacing:-13.445376pt;}
.wsa_c02390{word-spacing:-11.088000pt;}
.ws8_c02390{word-spacing:-11.075328pt;}
.ws9_c02390{word-spacing:-11.037312pt;}
.ws2_c02390{word-spacing:-10.775424pt;}
.ws4_c02390{word-spacing:-10.344576pt;}
.ws14_c02390{word-spacing:-1.919232pt;}
.ws10_c02390{word-spacing:-0.958848pt;}
.wsd_c02390{word-spacing:-0.865920pt;}
.wsf_c02390{word-spacing:-0.105600pt;}
.ws11_c02390{word-spacing:-0.092928pt;}
.ws12_c02390{word-spacing:-0.088704pt;}
.ws13_c02390{word-spacing:-0.076032pt;}
.wse_c02390{word-spacing:0.000000pt;}
.wsb_c02390{word-spacing:29.600256pt;}
.ws6_c02390{word-spacing:32.659968pt;}
.ws1_c02390{word-spacing:33.563904pt;}
.ws0_c02390{word-spacing:33.796224pt;}
.ws3_c02390{word-spacing:34.860672pt;}
.ws5_c02390{word-spacing:35.468928pt;}
.ws7_c02390{word-spacing:37.357056pt;}
._0_c02390{margin-left:-1.731840pt;}
._2_c02390{width:1.317888pt;}
._4_c02390{width:2.939904pt;}
._1_c02390{width:44.668800pt;}
._3_c02390{width:45.805056pt;}
.fs0_c02390{font-size:42.240000pt;}
.fs1_c02390{font-size:53.760000pt;}
.y0_c02390{bottom:0.000000pt;}
.y19_c02390{bottom:130.665211pt;}
.y1b_c02390{bottom:165.866875pt;}
.y1a_c02390{bottom:174.507067pt;}
.y18_c02390{bottom:245.225371pt;}
.y17_c02390{bottom:317.225563pt;}
.y15_c02390{bottom:361.386427pt;}
.y11_c02390{bottom:377.386939pt;}
.y16_c02390{bottom:407.786011pt;}
.y14_c02390{bottom:437.226235pt;}
.y13_c02390{bottom:453.226747pt;}
.y10_c02390{bottom:482.666971pt;}
.y12_c02390{bottom:497.386555pt;}
.yf_c02390{bottom:513.387067pt;}
.y1c_c02390{bottom:546.027067pt;}
.yb_c02390{bottom:593.385179pt;}
.yd_c02390{bottom:628.586875pt;}
.yc_c02390{bottom:637.227067pt;}
.ya_c02390{bottom:707.945339pt;}
.y9_c02390{bottom:779.945531pt;}
.y7_c02390{bottom:823.786427pt;}
.y3_c02390{bottom:839.786939pt;}
.y8_c02390{bottom:870.505979pt;}
.y6_c02390{bottom:899.946203pt;}
.y5_c02390{bottom:915.946715pt;}
.y2_c02390{bottom:945.386939pt;}
.y4_c02390{bottom:959.786555pt;}
.y1_c02390{bottom:975.787067pt;}
.ye_c02390{bottom:1008.747067pt;}
.h3_c02390{height:28.916250pt;}
.h1_c02390{height:37.063125pt;}
.h2_c02390{height:37.166250pt;}
.h4_c02390{height:48.581988pt;}
.h0_c02390{height:1122.666667pt;}
.w1_c02390{width:793.333333pt;}
.w0_c02390{width:793.626667pt;}
.x0_c02390{left:0.000000pt;}
.xd_c02390{left:104.000000pt;}
.x8_c02390{left:391.999872pt;}
.x4_c02390{left:396.160512pt;}
.xb_c02390{left:400.960000pt;}
.x7_c02390{left:404.799648pt;}
.x5_c02390{left:410.560128pt;}
.x1_c02390{left:411.840000pt;}
.xa_c02390{left:429.760320pt;}
.x9_c02390{left:437.439552pt;}
.x6_c02390{left:438.400512pt;}
.xc_c02390{left:450.560320pt;}
.x3_c02390{left:455.039904pt;}
.x2_c02390{left:468.159648pt;}
}





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

.ir_c02391:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02391{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02391;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02391{font-family:ff1_c02391;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02391;src:url('chunks/assets/font_16da09858370f4a30c887dc5.woff2')format("woff");}.ff2_c02391{font-family:ff2_c02391;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02391;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02391{font-family:ff3_c02391;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02391{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02391{vertical-align:0.000000px;}
.v1_c02391{vertical-align:1.439424px;}
.ls9_c02391{letter-spacing:-0.574992px;}
.lsf_c02391{letter-spacing:-0.275616px;}
.lsd_c02391{letter-spacing:-0.261360px;}
.lsc_c02391{letter-spacing:-0.256608px;}
.ls6_c02391{letter-spacing:-0.242352px;}
.ls4_c02391{letter-spacing:-0.118800px;}
.ls12_c02391{letter-spacing:0.000000px;}
.ls1_c02391{letter-spacing:0.006048px;}
.ls5_c02391{letter-spacing:0.128304px;}
.ls7_c02391{letter-spacing:0.242352px;}
.lsb_c02391{letter-spacing:0.508464px;}
.ls11_c02391{letter-spacing:0.514080px;}
.lse_c02391{letter-spacing:0.536976px;}
.lsa_c02391{letter-spacing:0.579744px;}
.ls10_c02391{letter-spacing:0.594000px;}
.ls8_c02391{letter-spacing:0.598752px;}
.ls2_c02391{letter-spacing:0.613008px;}
.ls0_c02391{letter-spacing:0.717552px;}
.ls3_c02391{letter-spacing:0.722304px;}
.sc__c02391{text-shadow:none;}
.sc0_c02391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02391{-webkit-text-stroke:0px transparent;}
.sc0_c02391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02391{word-spacing:-15.126048px;}
.wsa_c02391{word-spacing:-12.474000px;}
.ws8_c02391{word-spacing:-12.459744px;}
.ws9_c02391{word-spacing:-12.416976px;}
.ws2_c02391{word-spacing:-12.122352px;}
.ws4_c02391{word-spacing:-11.637648px;}
.ws14_c02391{word-spacing:-2.159136px;}
.ws10_c02391{word-spacing:-1.078704px;}
.wsd_c02391{word-spacing:-0.974160px;}
.wsf_c02391{word-spacing:-0.118800px;}
.ws11_c02391{word-spacing:-0.104544px;}
.ws12_c02391{word-spacing:-0.099792px;}
.ws13_c02391{word-spacing:-0.085536px;}
.wse_c02391{word-spacing:0.000000px;}
.wsb_c02391{word-spacing:33.300288px;}
.ws6_c02391{word-spacing:36.742464px;}
.ws1_c02391{word-spacing:37.759392px;}
.ws0_c02391{word-spacing:38.020752px;}
.ws3_c02391{word-spacing:39.218256px;}
.ws5_c02391{word-spacing:39.902544px;}
.ws7_c02391{word-spacing:42.026688px;}
._0_c02391{margin-left:-1.948320px;}
._2_c02391{width:1.482624px;}
._4_c02391{width:3.307392px;}
._1_c02391{width:50.252400px;}
._3_c02391{width:51.530688px;}
.fc0_c02391{color:rgb(0,0,0);}
.fs0_c02391{font-size:47.520000px;}
.fs1_c02391{font-size:60.480000px;}
.y0_c02391{bottom:0.000000px;}
.y19_c02391{bottom:146.998362px;}
.y1b_c02391{bottom:186.600234px;}
.y1a_c02391{bottom:196.320450px;}
.y18_c02391{bottom:275.878542px;}
.y17_c02391{bottom:356.878758px;}
.y15_c02391{bottom:406.559730px;}
.y11_c02391{bottom:424.560306px;}
.y16_c02391{bottom:458.759262px;}
.y14_c02391{bottom:491.879514px;}
.y13_c02391{bottom:509.880090px;}
.y10_c02391{bottom:543.000342px;}
.y12_c02391{bottom:559.559874px;}
.yf_c02391{bottom:577.560450px;}
.y1c_c02391{bottom:614.280450px;}
.yb_c02391{bottom:667.558326px;}
.yd_c02391{bottom:707.160234px;}
.yc_c02391{bottom:716.880450px;}
.ya_c02391{bottom:796.438506px;}
.y9_c02391{bottom:877.438722px;}
.y7_c02391{bottom:926.759730px;}
.y3_c02391{bottom:944.760306px;}
.y8_c02391{bottom:979.319226px;}
.y6_c02391{bottom:1012.439478px;}
.y5_c02391{bottom:1030.440054px;}
.y2_c02391{bottom:1063.560306px;}
.y4_c02391{bottom:1079.759874px;}
.y1_c02391{bottom:1097.760450px;}
.ye_c02391{bottom:1134.840450px;}
.h3_c02391{height:32.530781px;}
.h1_c02391{height:41.696016px;}
.h2_c02391{height:41.812031px;}
.h4_c02391{height:54.654737px;}
.h0_c02391{height:1263.000000px;}
.w1_c02391{width:892.500000px;}
.w0_c02391{width:892.830000px;}
.x0_c02391{left:0.000000px;}
.xd_c02391{left:117.000000px;}
.x8_c02391{left:440.999856px;}
.x4_c02391{left:445.680576px;}
.xb_c02391{left:451.080000px;}
.x7_c02391{left:455.399604px;}
.x5_c02391{left:461.880144px;}
.x1_c02391{left:463.320000px;}
.xa_c02391{left:483.480360px;}
.x9_c02391{left:492.119496px;}
.x6_c02391{left:493.200576px;}
.xc_c02391{left:506.880360px;}
.x3_c02391{left:511.919892px;}
.x2_c02391{left:526.679604px;}
@media print{
.v0_c02391{vertical-align:0.000000pt;}
.v1_c02391{vertical-align:1.279488pt;}
.ls9_c02391{letter-spacing:-0.511104pt;}
.lsf_c02391{letter-spacing:-0.244992pt;}
.lsd_c02391{letter-spacing:-0.232320pt;}
.lsc_c02391{letter-spacing:-0.228096pt;}
.ls6_c02391{letter-spacing:-0.215424pt;}
.ls4_c02391{letter-spacing:-0.105600pt;}
.ls12_c02391{letter-spacing:0.000000pt;}
.ls1_c02391{letter-spacing:0.005376pt;}
.ls5_c02391{letter-spacing:0.114048pt;}
.ls7_c02391{letter-spacing:0.215424pt;}
.lsb_c02391{letter-spacing:0.451968pt;}
.ls11_c02391{letter-spacing:0.456960pt;}
.lse_c02391{letter-spacing:0.477312pt;}
.lsa_c02391{letter-spacing:0.515328pt;}
.ls10_c02391{letter-spacing:0.528000pt;}
.ls8_c02391{letter-spacing:0.532224pt;}
.ls2_c02391{letter-spacing:0.544896pt;}
.ls0_c02391{letter-spacing:0.637824pt;}
.ls3_c02391{letter-spacing:0.642048pt;}
.wsc_c02391{word-spacing:-13.445376pt;}
.wsa_c02391{word-spacing:-11.088000pt;}
.ws8_c02391{word-spacing:-11.075328pt;}
.ws9_c02391{word-spacing:-11.037312pt;}
.ws2_c02391{word-spacing:-10.775424pt;}
.ws4_c02391{word-spacing:-10.344576pt;}
.ws14_c02391{word-spacing:-1.919232pt;}
.ws10_c02391{word-spacing:-0.958848pt;}
.wsd_c02391{word-spacing:-0.865920pt;}
.wsf_c02391{word-spacing:-0.105600pt;}
.ws11_c02391{word-spacing:-0.092928pt;}
.ws12_c02391{word-spacing:-0.088704pt;}
.ws13_c02391{word-spacing:-0.076032pt;}
.wse_c02391{word-spacing:0.000000pt;}
.wsb_c02391{word-spacing:29.600256pt;}
.ws6_c02391{word-spacing:32.659968pt;}
.ws1_c02391{word-spacing:33.563904pt;}
.ws0_c02391{word-spacing:33.796224pt;}
.ws3_c02391{word-spacing:34.860672pt;}
.ws5_c02391{word-spacing:35.468928pt;}
.ws7_c02391{word-spacing:37.357056pt;}
._0_c02391{margin-left:-1.731840pt;}
._2_c02391{width:1.317888pt;}
._4_c02391{width:2.939904pt;}
._1_c02391{width:44.668800pt;}
._3_c02391{width:45.805056pt;}
.fs0_c02391{font-size:42.240000pt;}
.fs1_c02391{font-size:53.760000pt;}
.y0_c02391{bottom:0.000000pt;}
.y19_c02391{bottom:130.665211pt;}
.y1b_c02391{bottom:165.866875pt;}
.y1a_c02391{bottom:174.507067pt;}
.y18_c02391{bottom:245.225371pt;}
.y17_c02391{bottom:317.225563pt;}
.y15_c02391{bottom:361.386427pt;}
.y11_c02391{bottom:377.386939pt;}
.y16_c02391{bottom:407.786011pt;}
.y14_c02391{bottom:437.226235pt;}
.y13_c02391{bottom:453.226747pt;}
.y10_c02391{bottom:482.666971pt;}
.y12_c02391{bottom:497.386555pt;}
.yf_c02391{bottom:513.387067pt;}
.y1c_c02391{bottom:546.027067pt;}
.yb_c02391{bottom:593.385179pt;}
.yd_c02391{bottom:628.586875pt;}
.yc_c02391{bottom:637.227067pt;}
.ya_c02391{bottom:707.945339pt;}
.y9_c02391{bottom:779.945531pt;}
.y7_c02391{bottom:823.786427pt;}
.y3_c02391{bottom:839.786939pt;}
.y8_c02391{bottom:870.505979pt;}
.y6_c02391{bottom:899.946203pt;}
.y5_c02391{bottom:915.946715pt;}
.y2_c02391{bottom:945.386939pt;}
.y4_c02391{bottom:959.786555pt;}
.y1_c02391{bottom:975.787067pt;}
.ye_c02391{bottom:1008.747067pt;}
.h3_c02391{height:28.916250pt;}
.h1_c02391{height:37.063125pt;}
.h2_c02391{height:37.166250pt;}
.h4_c02391{height:48.581988pt;}
.h0_c02391{height:1122.666667pt;}
.w1_c02391{width:793.333333pt;}
.w0_c02391{width:793.626667pt;}
.x0_c02391{left:0.000000pt;}
.xd_c02391{left:104.000000pt;}
.x8_c02391{left:391.999872pt;}
.x4_c02391{left:396.160512pt;}
.xb_c02391{left:400.960000pt;}
.x7_c02391{left:404.799648pt;}
.x5_c02391{left:410.560128pt;}
.x1_c02391{left:411.840000pt;}
.xa_c02391{left:429.760320pt;}
.x9_c02391{left:437.439552pt;}
.x6_c02391{left:438.400512pt;}
.xc_c02391{left:450.560320pt;}
.x3_c02391{left:455.039904pt;}
.x2_c02391{left:468.159648pt;}
}





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

.ir_c02392:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02392{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02392;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02392{font-family:ff1_c02392;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02392;src:url('chunks/assets/font_16da09858370f4a30c887dc5.woff2')format("woff");}.ff2_c02392{font-family:ff2_c02392;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02392;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02392{font-family:ff3_c02392;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02392{vertical-align:0.000000px;}
.v1_c02392{vertical-align:1.439424px;}
.ls9_c02392{letter-spacing:-0.574992px;}
.lsf_c02392{letter-spacing:-0.275616px;}
.lsd_c02392{letter-spacing:-0.261360px;}
.lsc_c02392{letter-spacing:-0.256608px;}
.ls6_c02392{letter-spacing:-0.242352px;}
.ls4_c02392{letter-spacing:-0.118800px;}
.ls12_c02392{letter-spacing:0.000000px;}
.ls1_c02392{letter-spacing:0.006048px;}
.ls5_c02392{letter-spacing:0.128304px;}
.ls7_c02392{letter-spacing:0.242352px;}
.lsb_c02392{letter-spacing:0.508464px;}
.ls11_c02392{letter-spacing:0.514080px;}
.lse_c02392{letter-spacing:0.536976px;}
.lsa_c02392{letter-spacing:0.579744px;}
.ls10_c02392{letter-spacing:0.594000px;}
.ls8_c02392{letter-spacing:0.598752px;}
.ls2_c02392{letter-spacing:0.613008px;}
.ls0_c02392{letter-spacing:0.717552px;}
.ls3_c02392{letter-spacing:0.722304px;}
.sc__c02392{text-shadow:none;}
.sc0_c02392{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02392{-webkit-text-stroke:0px transparent;}
.sc0_c02392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02392{word-spacing:-15.126048px;}
.wsa_c02392{word-spacing:-12.474000px;}
.ws8_c02392{word-spacing:-12.459744px;}
.ws9_c02392{word-spacing:-12.416976px;}
.ws2_c02392{word-spacing:-12.122352px;}
.ws4_c02392{word-spacing:-11.637648px;}
.ws14_c02392{word-spacing:-2.159136px;}
.ws10_c02392{word-spacing:-1.078704px;}
.wsd_c02392{word-spacing:-0.974160px;}
.wsf_c02392{word-spacing:-0.118800px;}
.ws11_c02392{word-spacing:-0.104544px;}
.ws12_c02392{word-spacing:-0.099792px;}
.ws13_c02392{word-spacing:-0.085536px;}
.wse_c02392{word-spacing:0.000000px;}
.wsb_c02392{word-spacing:33.300288px;}
.ws6_c02392{word-spacing:36.742464px;}
.ws1_c02392{word-spacing:37.759392px;}
.ws0_c02392{word-spacing:38.020752px;}
.ws3_c02392{word-spacing:39.218256px;}
.ws5_c02392{word-spacing:39.902544px;}
.ws7_c02392{word-spacing:42.026688px;}
._0_c02392{margin-left:-1.948320px;}
._2_c02392{width:1.482624px;}
._4_c02392{width:3.307392px;}
._1_c02392{width:50.252400px;}
._3_c02392{width:51.530688px;}
.fc0_c02392{color:rgb(0,0,0);}
.fs0_c02392{font-size:47.520000px;}
.fs1_c02392{font-size:60.480000px;}
.y0_c02392{bottom:0.000000px;}
.y19_c02392{bottom:146.998362px;}
.y1b_c02392{bottom:186.600234px;}
.y1a_c02392{bottom:196.320450px;}
.y18_c02392{bottom:275.878542px;}
.y17_c02392{bottom:356.878758px;}
.y15_c02392{bottom:406.559730px;}
.y11_c02392{bottom:424.560306px;}
.y16_c02392{bottom:458.759262px;}
.y14_c02392{bottom:491.879514px;}
.y13_c02392{bottom:509.880090px;}
.y10_c02392{bottom:543.000342px;}
.y12_c02392{bottom:559.559874px;}
.yf_c02392{bottom:577.560450px;}
.y1c_c02392{bottom:614.280450px;}
.yb_c02392{bottom:667.558326px;}
.yd_c02392{bottom:707.160234px;}
.yc_c02392{bottom:716.880450px;}
.ya_c02392{bottom:796.438506px;}
.y9_c02392{bottom:877.438722px;}
.y7_c02392{bottom:926.759730px;}
.y3_c02392{bottom:944.760306px;}
.y8_c02392{bottom:979.319226px;}
.y6_c02392{bottom:1012.439478px;}
.y5_c02392{bottom:1030.440054px;}
.y2_c02392{bottom:1063.560306px;}
.y4_c02392{bottom:1079.759874px;}
.y1_c02392{bottom:1097.760450px;}
.ye_c02392{bottom:1134.840450px;}
.h3_c02392{height:32.530781px;}
.h1_c02392{height:41.696016px;}
.h2_c02392{height:41.812031px;}
.h4_c02392{height:54.654737px;}
.h0_c02392{height:1263.000000px;}
.w1_c02392{width:892.500000px;}
.w0_c02392{width:892.830000px;}
.x0_c02392{left:0.000000px;}
.xd_c02392{left:117.000000px;}
.x8_c02392{left:440.999856px;}
.x4_c02392{left:445.680576px;}
.xb_c02392{left:451.080000px;}
.x7_c02392{left:455.399604px;}
.x5_c02392{left:461.880144px;}
.x1_c02392{left:463.320000px;}
.xa_c02392{left:483.480360px;}
.x9_c02392{left:492.119496px;}
.x6_c02392{left:493.200576px;}
.xc_c02392{left:506.880360px;}
.x3_c02392{left:511.919892px;}
.x2_c02392{left:526.679604px;}
@media print{
.v0_c02392{vertical-align:0.000000pt;}
.v1_c02392{vertical-align:1.279488pt;}
.ls9_c02392{letter-spacing:-0.511104pt;}
.lsf_c02392{letter-spacing:-0.244992pt;}
.lsd_c02392{letter-spacing:-0.232320pt;}
.lsc_c02392{letter-spacing:-0.228096pt;}
.ls6_c02392{letter-spacing:-0.215424pt;}
.ls4_c02392{letter-spacing:-0.105600pt;}
.ls12_c02392{letter-spacing:0.000000pt;}
.ls1_c02392{letter-spacing:0.005376pt;}
.ls5_c02392{letter-spacing:0.114048pt;}
.ls7_c02392{letter-spacing:0.215424pt;}
.lsb_c02392{letter-spacing:0.451968pt;}
.ls11_c02392{letter-spacing:0.456960pt;}
.lse_c02392{letter-spacing:0.477312pt;}
.lsa_c02392{letter-spacing:0.515328pt;}
.ls10_c02392{letter-spacing:0.528000pt;}
.ls8_c02392{letter-spacing:0.532224pt;}
.ls2_c02392{letter-spacing:0.544896pt;}
.ls0_c02392{letter-spacing:0.637824pt;}
.ls3_c02392{letter-spacing:0.642048pt;}
.wsc_c02392{word-spacing:-13.445376pt;}
.wsa_c02392{word-spacing:-11.088000pt;}
.ws8_c02392{word-spacing:-11.075328pt;}
.ws9_c02392{word-spacing:-11.037312pt;}
.ws2_c02392{word-spacing:-10.775424pt;}
.ws4_c02392{word-spacing:-10.344576pt;}
.ws14_c02392{word-spacing:-1.919232pt;}
.ws10_c02392{word-spacing:-0.958848pt;}
.wsd_c02392{word-spacing:-0.865920pt;}
.wsf_c02392{word-spacing:-0.105600pt;}
.ws11_c02392{word-spacing:-0.092928pt;}
.ws12_c02392{word-spacing:-0.088704pt;}
.ws13_c02392{word-spacing:-0.076032pt;}
.wse_c02392{word-spacing:0.000000pt;}
.wsb_c02392{word-spacing:29.600256pt;}
.ws6_c02392{word-spacing:32.659968pt;}
.ws1_c02392{word-spacing:33.563904pt;}
.ws0_c02392{word-spacing:33.796224pt;}
.ws3_c02392{word-spacing:34.860672pt;}
.ws5_c02392{word-spacing:35.468928pt;}
.ws7_c02392{word-spacing:37.357056pt;}
._0_c02392{margin-left:-1.731840pt;}
._2_c02392{width:1.317888pt;}
._4_c02392{width:2.939904pt;}
._1_c02392{width:44.668800pt;}
._3_c02392{width:45.805056pt;}
.fs0_c02392{font-size:42.240000pt;}
.fs1_c02392{font-size:53.760000pt;}
.y0_c02392{bottom:0.000000pt;}
.y19_c02392{bottom:130.665211pt;}
.y1b_c02392{bottom:165.866875pt;}
.y1a_c02392{bottom:174.507067pt;}
.y18_c02392{bottom:245.225371pt;}
.y17_c02392{bottom:317.225563pt;}
.y15_c02392{bottom:361.386427pt;}
.y11_c02392{bottom:377.386939pt;}
.y16_c02392{bottom:407.786011pt;}
.y14_c02392{bottom:437.226235pt;}
.y13_c02392{bottom:453.226747pt;}
.y10_c02392{bottom:482.666971pt;}
.y12_c02392{bottom:497.386555pt;}
.yf_c02392{bottom:513.387067pt;}
.y1c_c02392{bottom:546.027067pt;}
.yb_c02392{bottom:593.385179pt;}
.yd_c02392{bottom:628.586875pt;}
.yc_c02392{bottom:637.227067pt;}
.ya_c02392{bottom:707.945339pt;}
.y9_c02392{bottom:779.945531pt;}
.y7_c02392{bottom:823.786427pt;}
.y3_c02392{bottom:839.786939pt;}
.y8_c02392{bottom:870.505979pt;}
.y6_c02392{bottom:899.946203pt;}
.y5_c02392{bottom:915.946715pt;}
.y2_c02392{bottom:945.386939pt;}
.y4_c02392{bottom:959.786555pt;}
.y1_c02392{bottom:975.787067pt;}
.ye_c02392{bottom:1008.747067pt;}
.h3_c02392{height:28.916250pt;}
.h1_c02392{height:37.063125pt;}
.h2_c02392{height:37.166250pt;}
.h4_c02392{height:48.581988pt;}
.h0_c02392{height:1122.666667pt;}
.w1_c02392{width:793.333333pt;}
.w0_c02392{width:793.626667pt;}
.x0_c02392{left:0.000000pt;}
.xd_c02392{left:104.000000pt;}
.x8_c02392{left:391.999872pt;}
.x4_c02392{left:396.160512pt;}
.xb_c02392{left:400.960000pt;}
.x7_c02392{left:404.799648pt;}
.x5_c02392{left:410.560128pt;}
.x1_c02392{left:411.840000pt;}
.xa_c02392{left:429.760320pt;}
.x9_c02392{left:437.439552pt;}
.x6_c02392{left:438.400512pt;}
.xc_c02392{left:450.560320pt;}
.x3_c02392{left:455.039904pt;}
.x2_c02392{left:468.159648pt;}
}





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

.ir_c02393:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02393{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02393;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02393{font-family:ff1_c02393;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02393;src:url('chunks/assets/font_b6d1fe7ed6a53083eecfeabc.woff2')format("woff");}.ff2_c02393{font-family:ff2_c02393;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02393;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02393{font-family:ff3_c02393;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02393{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02393{vertical-align:0.000000px;}
.v1_c02393{vertical-align:1.439424px;}
.ls9_c02393{letter-spacing:-0.574992px;}
.lsf_c02393{letter-spacing:-0.275616px;}
.lsd_c02393{letter-spacing:-0.261360px;}
.lsc_c02393{letter-spacing:-0.256608px;}
.ls6_c02393{letter-spacing:-0.242352px;}
.ls4_c02393{letter-spacing:-0.118800px;}
.ls12_c02393{letter-spacing:0.000000px;}
.ls1_c02393{letter-spacing:0.006048px;}
.ls5_c02393{letter-spacing:0.128304px;}
.ls7_c02393{letter-spacing:0.242352px;}
.lsb_c02393{letter-spacing:0.508464px;}
.ls11_c02393{letter-spacing:0.514080px;}
.lse_c02393{letter-spacing:0.536976px;}
.lsa_c02393{letter-spacing:0.579744px;}
.ls10_c02393{letter-spacing:0.594000px;}
.ls8_c02393{letter-spacing:0.598752px;}
.ls2_c02393{letter-spacing:0.613008px;}
.ls0_c02393{letter-spacing:0.717552px;}
.ls3_c02393{letter-spacing:0.722304px;}
.sc__c02393{text-shadow:none;}
.sc0_c02393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02393{-webkit-text-stroke:0px transparent;}
.sc0_c02393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02393{word-spacing:-15.126048px;}
.wsa_c02393{word-spacing:-12.474000px;}
.ws8_c02393{word-spacing:-12.459744px;}
.ws9_c02393{word-spacing:-12.416976px;}
.ws2_c02393{word-spacing:-12.122352px;}
.ws4_c02393{word-spacing:-11.637648px;}
.ws14_c02393{word-spacing:-2.159136px;}
.ws10_c02393{word-spacing:-1.078704px;}
.wsd_c02393{word-spacing:-0.974160px;}
.wsf_c02393{word-spacing:-0.118800px;}
.ws11_c02393{word-spacing:-0.104544px;}
.ws12_c02393{word-spacing:-0.099792px;}
.ws13_c02393{word-spacing:-0.085536px;}
.wse_c02393{word-spacing:0.000000px;}
.wsb_c02393{word-spacing:33.300288px;}
.ws6_c02393{word-spacing:36.742464px;}
.ws1_c02393{word-spacing:37.759392px;}
.ws0_c02393{word-spacing:38.020752px;}
.ws3_c02393{word-spacing:39.218256px;}
.ws5_c02393{word-spacing:39.902544px;}
.ws7_c02393{word-spacing:42.026688px;}
._0_c02393{margin-left:-1.948320px;}
._2_c02393{width:1.482624px;}
._4_c02393{width:3.307392px;}
._1_c02393{width:50.252400px;}
._3_c02393{width:51.530688px;}
.fc0_c02393{color:rgb(0,0,0);}
.fs0_c02393{font-size:47.520000px;}
.fs1_c02393{font-size:60.480000px;}
.y0_c02393{bottom:0.000000px;}
.y19_c02393{bottom:146.998362px;}
.y1b_c02393{bottom:186.600234px;}
.y1a_c02393{bottom:196.320450px;}
.y18_c02393{bottom:275.878542px;}
.y17_c02393{bottom:356.878758px;}
.y15_c02393{bottom:406.559730px;}
.y11_c02393{bottom:424.560306px;}
.y16_c02393{bottom:458.759262px;}
.y14_c02393{bottom:491.879514px;}
.y13_c02393{bottom:509.880090px;}
.y10_c02393{bottom:543.000342px;}
.y12_c02393{bottom:559.559874px;}
.yf_c02393{bottom:577.560450px;}
.y1c_c02393{bottom:614.280450px;}
.yb_c02393{bottom:667.558326px;}
.yd_c02393{bottom:707.160234px;}
.yc_c02393{bottom:716.880450px;}
.ya_c02393{bottom:796.438506px;}
.y9_c02393{bottom:877.438722px;}
.y7_c02393{bottom:926.759730px;}
.y3_c02393{bottom:944.760306px;}
.y8_c02393{bottom:979.319226px;}
.y6_c02393{bottom:1012.439478px;}
.y5_c02393{bottom:1030.440054px;}
.y2_c02393{bottom:1063.560306px;}
.y4_c02393{bottom:1079.759874px;}
.y1_c02393{bottom:1097.760450px;}
.ye_c02393{bottom:1134.840450px;}
.h3_c02393{height:32.530781px;}
.h1_c02393{height:41.696016px;}
.h2_c02393{height:41.812031px;}
.h4_c02393{height:54.654737px;}
.h0_c02393{height:1263.000000px;}
.w1_c02393{width:892.500000px;}
.w0_c02393{width:892.830000px;}
.x0_c02393{left:0.000000px;}
.xd_c02393{left:117.000000px;}
.x8_c02393{left:440.999856px;}
.x4_c02393{left:445.680576px;}
.xb_c02393{left:451.080000px;}
.x7_c02393{left:455.399604px;}
.x5_c02393{left:461.880144px;}
.x1_c02393{left:463.320000px;}
.xa_c02393{left:483.480360px;}
.x9_c02393{left:492.119496px;}
.x6_c02393{left:493.200576px;}
.xc_c02393{left:506.880360px;}
.x3_c02393{left:511.919892px;}
.x2_c02393{left:526.679604px;}
@media print{
.v0_c02393{vertical-align:0.000000pt;}
.v1_c02393{vertical-align:1.279488pt;}
.ls9_c02393{letter-spacing:-0.511104pt;}
.lsf_c02393{letter-spacing:-0.244992pt;}
.lsd_c02393{letter-spacing:-0.232320pt;}
.lsc_c02393{letter-spacing:-0.228096pt;}
.ls6_c02393{letter-spacing:-0.215424pt;}
.ls4_c02393{letter-spacing:-0.105600pt;}
.ls12_c02393{letter-spacing:0.000000pt;}
.ls1_c02393{letter-spacing:0.005376pt;}
.ls5_c02393{letter-spacing:0.114048pt;}
.ls7_c02393{letter-spacing:0.215424pt;}
.lsb_c02393{letter-spacing:0.451968pt;}
.ls11_c02393{letter-spacing:0.456960pt;}
.lse_c02393{letter-spacing:0.477312pt;}
.lsa_c02393{letter-spacing:0.515328pt;}
.ls10_c02393{letter-spacing:0.528000pt;}
.ls8_c02393{letter-spacing:0.532224pt;}
.ls2_c02393{letter-spacing:0.544896pt;}
.ls0_c02393{letter-spacing:0.637824pt;}
.ls3_c02393{letter-spacing:0.642048pt;}
.wsc_c02393{word-spacing:-13.445376pt;}
.wsa_c02393{word-spacing:-11.088000pt;}
.ws8_c02393{word-spacing:-11.075328pt;}
.ws9_c02393{word-spacing:-11.037312pt;}
.ws2_c02393{word-spacing:-10.775424pt;}
.ws4_c02393{word-spacing:-10.344576pt;}
.ws14_c02393{word-spacing:-1.919232pt;}
.ws10_c02393{word-spacing:-0.958848pt;}
.wsd_c02393{word-spacing:-0.865920pt;}
.wsf_c02393{word-spacing:-0.105600pt;}
.ws11_c02393{word-spacing:-0.092928pt;}
.ws12_c02393{word-spacing:-0.088704pt;}
.ws13_c02393{word-spacing:-0.076032pt;}
.wse_c02393{word-spacing:0.000000pt;}
.wsb_c02393{word-spacing:29.600256pt;}
.ws6_c02393{word-spacing:32.659968pt;}
.ws1_c02393{word-spacing:33.563904pt;}
.ws0_c02393{word-spacing:33.796224pt;}
.ws3_c02393{word-spacing:34.860672pt;}
.ws5_c02393{word-spacing:35.468928pt;}
.ws7_c02393{word-spacing:37.357056pt;}
._0_c02393{margin-left:-1.731840pt;}
._2_c02393{width:1.317888pt;}
._4_c02393{width:2.939904pt;}
._1_c02393{width:44.668800pt;}
._3_c02393{width:45.805056pt;}
.fs0_c02393{font-size:42.240000pt;}
.fs1_c02393{font-size:53.760000pt;}
.y0_c02393{bottom:0.000000pt;}
.y19_c02393{bottom:130.665211pt;}
.y1b_c02393{bottom:165.866875pt;}
.y1a_c02393{bottom:174.507067pt;}
.y18_c02393{bottom:245.225371pt;}
.y17_c02393{bottom:317.225563pt;}
.y15_c02393{bottom:361.386427pt;}
.y11_c02393{bottom:377.386939pt;}
.y16_c02393{bottom:407.786011pt;}
.y14_c02393{bottom:437.226235pt;}
.y13_c02393{bottom:453.226747pt;}
.y10_c02393{bottom:482.666971pt;}
.y12_c02393{bottom:497.386555pt;}
.yf_c02393{bottom:513.387067pt;}
.y1c_c02393{bottom:546.027067pt;}
.yb_c02393{bottom:593.385179pt;}
.yd_c02393{bottom:628.586875pt;}
.yc_c02393{bottom:637.227067pt;}
.ya_c02393{bottom:707.945339pt;}
.y9_c02393{bottom:779.945531pt;}
.y7_c02393{bottom:823.786427pt;}
.y3_c02393{bottom:839.786939pt;}
.y8_c02393{bottom:870.505979pt;}
.y6_c02393{bottom:899.946203pt;}
.y5_c02393{bottom:915.946715pt;}
.y2_c02393{bottom:945.386939pt;}
.y4_c02393{bottom:959.786555pt;}
.y1_c02393{bottom:975.787067pt;}
.ye_c02393{bottom:1008.747067pt;}
.h3_c02393{height:28.916250pt;}
.h1_c02393{height:37.063125pt;}
.h2_c02393{height:37.166250pt;}
.h4_c02393{height:48.581988pt;}
.h0_c02393{height:1122.666667pt;}
.w1_c02393{width:793.333333pt;}
.w0_c02393{width:793.626667pt;}
.x0_c02393{left:0.000000pt;}
.xd_c02393{left:104.000000pt;}
.x8_c02393{left:391.999872pt;}
.x4_c02393{left:396.160512pt;}
.xb_c02393{left:400.960000pt;}
.x7_c02393{left:404.799648pt;}
.x5_c02393{left:410.560128pt;}
.x1_c02393{left:411.840000pt;}
.xa_c02393{left:429.760320pt;}
.x9_c02393{left:437.439552pt;}
.x6_c02393{left:438.400512pt;}
.xc_c02393{left:450.560320pt;}
.x3_c02393{left:455.039904pt;}
.x2_c02393{left:468.159648pt;}
}





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

.ir_c02394:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02394{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02394;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02394{font-family:ff1_c02394;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02394;src:url('chunks/assets/font_bce36c41cc9e734f5bf1583c.woff2')format("woff");}.ff2_c02394{font-family:ff2_c02394;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02394;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02394{font-family:ff3_c02394;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02394{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02394{vertical-align:0.000000px;}
.v1_c02394{vertical-align:1.439424px;}
.ls19_c02394{letter-spacing:-0.779328px;}
.ls16_c02394{letter-spacing:-0.736560px;}
.ls9_c02394{letter-spacing:-0.574992px;}
.lsf_c02394{letter-spacing:-0.275616px;}
.lsd_c02394{letter-spacing:-0.261360px;}
.lsc_c02394{letter-spacing:-0.256608px;}
.ls6_c02394{letter-spacing:-0.242352px;}
.ls14_c02394{letter-spacing:-0.204336px;}
.ls4_c02394{letter-spacing:-0.118800px;}
.ls12_c02394{letter-spacing:0.000000px;}
.ls1_c02394{letter-spacing:0.006048px;}
.ls15_c02394{letter-spacing:0.014256px;}
.ls17_c02394{letter-spacing:0.038016px;}
.ls5_c02394{letter-spacing:0.128304px;}
.ls7_c02394{letter-spacing:0.242352px;}
.lsb_c02394{letter-spacing:0.508464px;}
.ls11_c02394{letter-spacing:0.514080px;}
.lse_c02394{letter-spacing:0.536976px;}
.lsa_c02394{letter-spacing:0.579744px;}
.ls10_c02394{letter-spacing:0.594000px;}
.ls8_c02394{letter-spacing:0.598752px;}
.ls2_c02394{letter-spacing:0.613008px;}
.ls13_c02394{letter-spacing:0.622512px;}
.ls18_c02394{letter-spacing:0.660528px;}
.ls0_c02394{letter-spacing:0.717552px;}
.ls3_c02394{letter-spacing:0.722304px;}
.sc__c02394{text-shadow:none;}
.sc0_c02394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02394{-webkit-text-stroke:0px transparent;}
.sc0_c02394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02394{word-spacing:-15.126048px;}
.wsa_c02394{word-spacing:-12.474000px;}
.ws8_c02394{word-spacing:-12.459744px;}
.ws9_c02394{word-spacing:-12.416976px;}
.ws2_c02394{word-spacing:-12.122352px;}
.ws4_c02394{word-spacing:-11.637648px;}
.ws18_c02394{word-spacing:-2.159136px;}
.ws1e_c02394{word-spacing:-1.083456px;}
.ws14_c02394{word-spacing:-1.078704px;}
.ws1c_c02394{word-spacing:-1.021680px;}
.ws19_c02394{word-spacing:-0.983664px;}
.ws11_c02394{word-spacing:-0.974160px;}
.ws1b_c02394{word-spacing:-0.399168px;}
.ws13_c02394{word-spacing:-0.118800px;}
.ws15_c02394{word-spacing:-0.104544px;}
.ws16_c02394{word-spacing:-0.099792px;}
.ws17_c02394{word-spacing:-0.085536px;}
.ws12_c02394{word-spacing:0.000000px;}
.ws1a_c02394{word-spacing:0.375408px;}
.ws1d_c02394{word-spacing:0.418176px;}
.wsd_c02394{word-spacing:1.330560px;}
.wse_c02394{word-spacing:17.088192px;}
.wsb_c02394{word-spacing:33.300288px;}
.ws10_c02394{word-spacing:36.143712px;}
.ws6_c02394{word-spacing:36.742464px;}
.ws1_c02394{word-spacing:37.759392px;}
.ws0_c02394{word-spacing:38.020752px;}
.ws3_c02394{word-spacing:39.218256px;}
.ws5_c02394{word-spacing:39.902544px;}
.ws7_c02394{word-spacing:42.026688px;}
.wsf_c02394{word-spacing:54.087264px;}
._0_c02394{margin-left:-1.948320px;}
._2_c02394{width:1.482624px;}
._4_c02394{width:3.307392px;}
._5_c02394{width:4.785264px;}
._8_c02394{width:29.899584px;}
._7_c02394{width:31.857408px;}
._6_c02394{width:35.863344px;}
._1_c02394{width:50.252400px;}
._3_c02394{width:51.530688px;}
._9_c02394{width:69.312672px;}
.fc0_c02394{color:rgb(0,0,0);}
.fs0_c02394{font-size:47.520000px;}
.fs1_c02394{font-size:60.480000px;}
.y0_c02394{bottom:0.000000px;}
.y1c_c02394{bottom:146.999550px;}
.y1e_c02394{bottom:186.600234px;}
.y1d_c02394{bottom:196.320450px;}
.y1b_c02394{bottom:275.879730px;}
.y1a_c02394{bottom:341.760270px;}
.y19_c02394{bottom:356.879946px;}
.y17_c02394{bottom:376.320378px;}
.y16_c02394{bottom:391.440054px;}
.y15_c02394{bottom:406.559730px;}
.y11_c02394{bottom:424.560306px;}
.y18_c02394{bottom:458.760450px;}
.y14_c02394{bottom:491.879514px;}
.y13_c02394{bottom:509.880090px;}
.y10_c02394{bottom:543.000342px;}
.y12_c02394{bottom:559.559874px;}
.yf_c02394{bottom:577.560450px;}
.y1f_c02394{bottom:614.280450px;}
.yb_c02394{bottom:667.558326px;}
.yd_c02394{bottom:707.160234px;}
.yc_c02394{bottom:716.880450px;}
.ya_c02394{bottom:796.438506px;}
.y9_c02394{bottom:877.438722px;}
.y7_c02394{bottom:926.759730px;}
.y3_c02394{bottom:944.760306px;}
.y8_c02394{bottom:979.319226px;}
.y6_c02394{bottom:1012.439478px;}
.y5_c02394{bottom:1030.440054px;}
.y2_c02394{bottom:1063.560306px;}
.y4_c02394{bottom:1079.759874px;}
.y1_c02394{bottom:1097.760450px;}
.ye_c02394{bottom:1134.840450px;}
.h3_c02394{height:32.530781px;}
.h1_c02394{height:41.696016px;}
.h2_c02394{height:41.812031px;}
.h4_c02394{height:54.654737px;}
.h0_c02394{height:1263.000000px;}
.w1_c02394{width:892.500000px;}
.w0_c02394{width:892.830000px;}
.x0_c02394{left:0.000000px;}
.xd_c02394{left:117.000000px;}
.x8_c02394{left:440.999856px;}
.x4_c02394{left:445.680576px;}
.xb_c02394{left:451.080000px;}
.x7_c02394{left:455.399604px;}
.x5_c02394{left:461.880144px;}
.x1_c02394{left:463.320000px;}
.xa_c02394{left:483.480360px;}
.x9_c02394{left:492.119496px;}
.x6_c02394{left:493.200576px;}
.xc_c02394{left:506.880360px;}
.x3_c02394{left:511.919892px;}
.x2_c02394{left:526.679604px;}
.xe_c02394{left:569.880036px;}
@media print{
.v0_c02394{vertical-align:0.000000pt;}
.v1_c02394{vertical-align:1.279488pt;}
.ls19_c02394{letter-spacing:-0.692736pt;}
.ls16_c02394{letter-spacing:-0.654720pt;}
.ls9_c02394{letter-spacing:-0.511104pt;}
.lsf_c02394{letter-spacing:-0.244992pt;}
.lsd_c02394{letter-spacing:-0.232320pt;}
.lsc_c02394{letter-spacing:-0.228096pt;}
.ls6_c02394{letter-spacing:-0.215424pt;}
.ls14_c02394{letter-spacing:-0.181632pt;}
.ls4_c02394{letter-spacing:-0.105600pt;}
.ls12_c02394{letter-spacing:0.000000pt;}
.ls1_c02394{letter-spacing:0.005376pt;}
.ls15_c02394{letter-spacing:0.012672pt;}
.ls17_c02394{letter-spacing:0.033792pt;}
.ls5_c02394{letter-spacing:0.114048pt;}
.ls7_c02394{letter-spacing:0.215424pt;}
.lsb_c02394{letter-spacing:0.451968pt;}
.ls11_c02394{letter-spacing:0.456960pt;}
.lse_c02394{letter-spacing:0.477312pt;}
.lsa_c02394{letter-spacing:0.515328pt;}
.ls10_c02394{letter-spacing:0.528000pt;}
.ls8_c02394{letter-spacing:0.532224pt;}
.ls2_c02394{letter-spacing:0.544896pt;}
.ls13_c02394{letter-spacing:0.553344pt;}
.ls18_c02394{letter-spacing:0.587136pt;}
.ls0_c02394{letter-spacing:0.637824pt;}
.ls3_c02394{letter-spacing:0.642048pt;}
.wsc_c02394{word-spacing:-13.445376pt;}
.wsa_c02394{word-spacing:-11.088000pt;}
.ws8_c02394{word-spacing:-11.075328pt;}
.ws9_c02394{word-spacing:-11.037312pt;}
.ws2_c02394{word-spacing:-10.775424pt;}
.ws4_c02394{word-spacing:-10.344576pt;}
.ws18_c02394{word-spacing:-1.919232pt;}
.ws1e_c02394{word-spacing:-0.963072pt;}
.ws14_c02394{word-spacing:-0.958848pt;}
.ws1c_c02394{word-spacing:-0.908160pt;}
.ws19_c02394{word-spacing:-0.874368pt;}
.ws11_c02394{word-spacing:-0.865920pt;}
.ws1b_c02394{word-spacing:-0.354816pt;}
.ws13_c02394{word-spacing:-0.105600pt;}
.ws15_c02394{word-spacing:-0.092928pt;}
.ws16_c02394{word-spacing:-0.088704pt;}
.ws17_c02394{word-spacing:-0.076032pt;}
.ws12_c02394{word-spacing:0.000000pt;}
.ws1a_c02394{word-spacing:0.333696pt;}
.ws1d_c02394{word-spacing:0.371712pt;}
.wsd_c02394{word-spacing:1.182720pt;}
.wse_c02394{word-spacing:15.189504pt;}
.wsb_c02394{word-spacing:29.600256pt;}
.ws10_c02394{word-spacing:32.127744pt;}
.ws6_c02394{word-spacing:32.659968pt;}
.ws1_c02394{word-spacing:33.563904pt;}
.ws0_c02394{word-spacing:33.796224pt;}
.ws3_c02394{word-spacing:34.860672pt;}
.ws5_c02394{word-spacing:35.468928pt;}
.ws7_c02394{word-spacing:37.357056pt;}
.wsf_c02394{word-spacing:48.077568pt;}
._0_c02394{margin-left:-1.731840pt;}
._2_c02394{width:1.317888pt;}
._4_c02394{width:2.939904pt;}
._5_c02394{width:4.253568pt;}
._8_c02394{width:26.577408pt;}
._7_c02394{width:28.317696pt;}
._6_c02394{width:31.878528pt;}
._1_c02394{width:44.668800pt;}
._3_c02394{width:45.805056pt;}
._9_c02394{width:61.611264pt;}
.fs0_c02394{font-size:42.240000pt;}
.fs1_c02394{font-size:53.760000pt;}
.y0_c02394{bottom:0.000000pt;}
.y1c_c02394{bottom:130.666267pt;}
.y1e_c02394{bottom:165.866875pt;}
.y1d_c02394{bottom:174.507067pt;}
.y1b_c02394{bottom:245.226427pt;}
.y1a_c02394{bottom:303.786907pt;}
.y19_c02394{bottom:317.226619pt;}
.y17_c02394{bottom:334.507003pt;}
.y16_c02394{bottom:347.946715pt;}
.y15_c02394{bottom:361.386427pt;}
.y11_c02394{bottom:377.386939pt;}
.y18_c02394{bottom:407.787067pt;}
.y14_c02394{bottom:437.226235pt;}
.y13_c02394{bottom:453.226747pt;}
.y10_c02394{bottom:482.666971pt;}
.y12_c02394{bottom:497.386555pt;}
.yf_c02394{bottom:513.387067pt;}
.y1f_c02394{bottom:546.027067pt;}
.yb_c02394{bottom:593.385179pt;}
.yd_c02394{bottom:628.586875pt;}
.yc_c02394{bottom:637.227067pt;}
.ya_c02394{bottom:707.945339pt;}
.y9_c02394{bottom:779.945531pt;}
.y7_c02394{bottom:823.786427pt;}
.y3_c02394{bottom:839.786939pt;}
.y8_c02394{bottom:870.505979pt;}
.y6_c02394{bottom:899.946203pt;}
.y5_c02394{bottom:915.946715pt;}
.y2_c02394{bottom:945.386939pt;}
.y4_c02394{bottom:959.786555pt;}
.y1_c02394{bottom:975.787067pt;}
.ye_c02394{bottom:1008.747067pt;}
.h3_c02394{height:28.916250pt;}
.h1_c02394{height:37.063125pt;}
.h2_c02394{height:37.166250pt;}
.h4_c02394{height:48.581988pt;}
.h0_c02394{height:1122.666667pt;}
.w1_c02394{width:793.333333pt;}
.w0_c02394{width:793.626667pt;}
.x0_c02394{left:0.000000pt;}
.xd_c02394{left:104.000000pt;}
.x8_c02394{left:391.999872pt;}
.x4_c02394{left:396.160512pt;}
.xb_c02394{left:400.960000pt;}
.x7_c02394{left:404.799648pt;}
.x5_c02394{left:410.560128pt;}
.x1_c02394{left:411.840000pt;}
.xa_c02394{left:429.760320pt;}
.x9_c02394{left:437.439552pt;}
.x6_c02394{left:438.400512pt;}
.xc_c02394{left:450.560320pt;}
.x3_c02394{left:455.039904pt;}
.x2_c02394{left:468.159648pt;}
.xe_c02394{left:506.560032pt;}
}





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

.ir_c02395:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02395{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02395;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02395{font-family:ff1_c02395;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02395;src:url('chunks/assets/font_7f140187398e4320ebd4d16b.woff2')format("woff");}.ff2_c02395{font-family:ff2_c02395;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02395;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02395{font-family:ff3_c02395;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02395{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02395{vertical-align:0.000000px;}
.v1_c02395{vertical-align:1.439424px;}
.ls16_c02395{letter-spacing:-0.826848px;}
.ls14_c02395{letter-spacing:-0.807840px;}
.ls17_c02395{letter-spacing:-0.617760px;}
.ls9_c02395{letter-spacing:-0.574992px;}
.ls10_c02395{letter-spacing:-0.275616px;}
.lse_c02395{letter-spacing:-0.261360px;}
.ls7_c02395{letter-spacing:-0.242352px;}
.ls4_c02395{letter-spacing:-0.118800px;}
.ls13_c02395{letter-spacing:0.000000px;}
.ls1_c02395{letter-spacing:0.006048px;}
.lsb_c02395{letter-spacing:0.014256px;}
.lsd_c02395{letter-spacing:0.038016px;}
.ls6_c02395{letter-spacing:0.128304px;}
.lsc_c02395{letter-spacing:0.508464px;}
.ls12_c02395{letter-spacing:0.514080px;}
.lsf_c02395{letter-spacing:0.536976px;}
.lsa_c02395{letter-spacing:0.579744px;}
.ls11_c02395{letter-spacing:0.594000px;}
.ls8_c02395{letter-spacing:0.598752px;}
.ls2_c02395{letter-spacing:0.613008px;}
.ls0_c02395{letter-spacing:0.622512px;}
.ls15_c02395{letter-spacing:0.660528px;}
.ls5_c02395{letter-spacing:0.717552px;}
.ls3_c02395{letter-spacing:0.722304px;}
.sc__c02395{text-shadow:none;}
.sc0_c02395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02395{-webkit-text-stroke:0px transparent;}
.sc0_c02395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02395{word-spacing:-15.126048px;}
.wsc_c02395{word-spacing:-12.474000px;}
.ws13_c02395{word-spacing:-12.459744px;}
.wsb_c02395{word-spacing:-12.416976px;}
.ws10_c02395{word-spacing:-12.388464px;}
.ws8_c02395{word-spacing:-11.894256px;}
.ws4_c02395{word-spacing:-11.637648px;}
.ws12_c02395{word-spacing:-11.262240px;}
.ws1c_c02395{word-spacing:-2.159136px;}
.ws1a_c02395{word-spacing:-1.083456px;}
.ws17_c02395{word-spacing:-0.983664px;}
.ws14_c02395{word-spacing:-0.974160px;}
.ws18_c02395{word-spacing:-0.399168px;}
.ws16_c02395{word-spacing:-0.118800px;}
.ws19_c02395{word-spacing:-0.099792px;}
.ws1b_c02395{word-spacing:-0.085536px;}
.ws15_c02395{word-spacing:0.000000px;}
.ws1d_c02395{word-spacing:0.446688px;}
.ws2_c02395{word-spacing:1.330560px;}
.wsf_c02395{word-spacing:24.957504px;}
.wsd_c02395{word-spacing:33.300288px;}
.ws11_c02395{word-spacing:33.691680px;}
.wsa_c02395{word-spacing:36.143712px;}
.ws6_c02395{word-spacing:36.742464px;}
.ws1_c02395{word-spacing:37.759392px;}
.ws0_c02395{word-spacing:38.020752px;}
.ws3_c02395{word-spacing:39.218256px;}
.ws5_c02395{word-spacing:39.902544px;}
.ws9_c02395{word-spacing:42.026688px;}
.ws7_c02395{word-spacing:58.920048px;}
._0_c02395{margin-left:-1.948320px;}
._2_c02395{width:1.482624px;}
._4_c02395{width:4.785264px;}
._6_c02395{width:39.683952px;}
._8_c02395{width:41.052528px;}
._7_c02395{width:44.469216px;}
._1_c02395{width:50.252400px;}
._3_c02395{width:51.530688px;}
._5_c02395{width:73.617984px;}
.fc0_c02395{color:rgb(0,0,0);}
.fs0_c02395{font-size:47.520000px;}
.fs1_c02395{font-size:60.480000px;}
.y0_c02395{bottom:0.000000px;}
.y1c_c02395{bottom:146.999550px;}
.y1e_c02395{bottom:186.600234px;}
.y1d_c02395{bottom:196.320450px;}
.y1b_c02395{bottom:275.879730px;}
.y1a_c02395{bottom:356.879946px;}
.y18_c02395{bottom:391.440054px;}
.y17_c02395{bottom:406.559730px;}
.y12_c02395{bottom:424.560306px;}
.y19_c02395{bottom:458.760450px;}
.y16_c02395{bottom:476.759838px;}
.y15_c02395{bottom:491.879514px;}
.y14_c02395{bottom:509.880090px;}
.y11_c02395{bottom:543.000342px;}
.y13_c02395{bottom:559.559874px;}
.y10_c02395{bottom:577.560450px;}
.y1f_c02395{bottom:614.280450px;}
.yc_c02395{bottom:667.559514px;}
.ye_c02395{bottom:707.160234px;}
.yd_c02395{bottom:716.880450px;}
.yb_c02395{bottom:796.439694px;}
.ya_c02395{bottom:877.439910px;}
.y8_c02395{bottom:912.000018px;}
.y7_c02395{bottom:926.759730px;}
.y3_c02395{bottom:944.760306px;}
.y9_c02395{bottom:979.320414px;}
.y6_c02395{bottom:1012.439478px;}
.y5_c02395{bottom:1030.440054px;}
.y2_c02395{bottom:1063.560306px;}
.y4_c02395{bottom:1079.759874px;}
.y1_c02395{bottom:1097.760450px;}
.yf_c02395{bottom:1134.840450px;}
.h3_c02395{height:32.530781px;}
.h1_c02395{height:41.696016px;}
.h2_c02395{height:41.812031px;}
.h4_c02395{height:54.654737px;}
.h0_c02395{height:1263.000000px;}
.w1_c02395{width:892.500000px;}
.w0_c02395{width:892.830000px;}
.x0_c02395{left:0.000000px;}
.xe_c02395{left:117.000000px;}
.x9_c02395{left:440.999856px;}
.x4_c02395{left:445.680576px;}
.xc_c02395{left:451.080000px;}
.x7_c02395{left:455.399604px;}
.x5_c02395{left:461.880144px;}
.x1_c02395{left:463.320000px;}
.xb_c02395{left:483.480360px;}
.xa_c02395{left:492.119496px;}
.x6_c02395{left:493.200576px;}
.xd_c02395{left:506.880360px;}
.x3_c02395{left:511.919892px;}
.x2_c02395{left:526.679604px;}
.x8_c02395{left:569.880036px;}
@media print{
.v0_c02395{vertical-align:0.000000pt;}
.v1_c02395{vertical-align:1.279488pt;}
.ls16_c02395{letter-spacing:-0.734976pt;}
.ls14_c02395{letter-spacing:-0.718080pt;}
.ls17_c02395{letter-spacing:-0.549120pt;}
.ls9_c02395{letter-spacing:-0.511104pt;}
.ls10_c02395{letter-spacing:-0.244992pt;}
.lse_c02395{letter-spacing:-0.232320pt;}
.ls7_c02395{letter-spacing:-0.215424pt;}
.ls4_c02395{letter-spacing:-0.105600pt;}
.ls13_c02395{letter-spacing:0.000000pt;}
.ls1_c02395{letter-spacing:0.005376pt;}
.lsb_c02395{letter-spacing:0.012672pt;}
.lsd_c02395{letter-spacing:0.033792pt;}
.ls6_c02395{letter-spacing:0.114048pt;}
.lsc_c02395{letter-spacing:0.451968pt;}
.ls12_c02395{letter-spacing:0.456960pt;}
.lsf_c02395{letter-spacing:0.477312pt;}
.lsa_c02395{letter-spacing:0.515328pt;}
.ls11_c02395{letter-spacing:0.528000pt;}
.ls8_c02395{letter-spacing:0.532224pt;}
.ls2_c02395{letter-spacing:0.544896pt;}
.ls0_c02395{letter-spacing:0.553344pt;}
.ls15_c02395{letter-spacing:0.587136pt;}
.ls5_c02395{letter-spacing:0.637824pt;}
.ls3_c02395{letter-spacing:0.642048pt;}
.wse_c02395{word-spacing:-13.445376pt;}
.wsc_c02395{word-spacing:-11.088000pt;}
.ws13_c02395{word-spacing:-11.075328pt;}
.wsb_c02395{word-spacing:-11.037312pt;}
.ws10_c02395{word-spacing:-11.011968pt;}
.ws8_c02395{word-spacing:-10.572672pt;}
.ws4_c02395{word-spacing:-10.344576pt;}
.ws12_c02395{word-spacing:-10.010880pt;}
.ws1c_c02395{word-spacing:-1.919232pt;}
.ws1a_c02395{word-spacing:-0.963072pt;}
.ws17_c02395{word-spacing:-0.874368pt;}
.ws14_c02395{word-spacing:-0.865920pt;}
.ws18_c02395{word-spacing:-0.354816pt;}
.ws16_c02395{word-spacing:-0.105600pt;}
.ws19_c02395{word-spacing:-0.088704pt;}
.ws1b_c02395{word-spacing:-0.076032pt;}
.ws15_c02395{word-spacing:0.000000pt;}
.ws1d_c02395{word-spacing:0.397056pt;}
.ws2_c02395{word-spacing:1.182720pt;}
.wsf_c02395{word-spacing:22.184448pt;}
.wsd_c02395{word-spacing:29.600256pt;}
.ws11_c02395{word-spacing:29.948160pt;}
.wsa_c02395{word-spacing:32.127744pt;}
.ws6_c02395{word-spacing:32.659968pt;}
.ws1_c02395{word-spacing:33.563904pt;}
.ws0_c02395{word-spacing:33.796224pt;}
.ws3_c02395{word-spacing:34.860672pt;}
.ws5_c02395{word-spacing:35.468928pt;}
.ws9_c02395{word-spacing:37.357056pt;}
.ws7_c02395{word-spacing:52.373376pt;}
._0_c02395{margin-left:-1.731840pt;}
._2_c02395{width:1.317888pt;}
._4_c02395{width:4.253568pt;}
._6_c02395{width:35.274624pt;}
._8_c02395{width:36.491136pt;}
._7_c02395{width:39.528192pt;}
._1_c02395{width:44.668800pt;}
._3_c02395{width:45.805056pt;}
._5_c02395{width:65.438208pt;}
.fs0_c02395{font-size:42.240000pt;}
.fs1_c02395{font-size:53.760000pt;}
.y0_c02395{bottom:0.000000pt;}
.y1c_c02395{bottom:130.666267pt;}
.y1e_c02395{bottom:165.866875pt;}
.y1d_c02395{bottom:174.507067pt;}
.y1b_c02395{bottom:245.226427pt;}
.y1a_c02395{bottom:317.226619pt;}
.y18_c02395{bottom:347.946715pt;}
.y17_c02395{bottom:361.386427pt;}
.y12_c02395{bottom:377.386939pt;}
.y19_c02395{bottom:407.787067pt;}
.y16_c02395{bottom:423.786523pt;}
.y15_c02395{bottom:437.226235pt;}
.y14_c02395{bottom:453.226747pt;}
.y11_c02395{bottom:482.666971pt;}
.y13_c02395{bottom:497.386555pt;}
.y10_c02395{bottom:513.387067pt;}
.y1f_c02395{bottom:546.027067pt;}
.yc_c02395{bottom:593.386235pt;}
.ye_c02395{bottom:628.586875pt;}
.yd_c02395{bottom:637.227067pt;}
.yb_c02395{bottom:707.946395pt;}
.ya_c02395{bottom:779.946587pt;}
.y8_c02395{bottom:810.666683pt;}
.y7_c02395{bottom:823.786427pt;}
.y3_c02395{bottom:839.786939pt;}
.y9_c02395{bottom:870.507035pt;}
.y6_c02395{bottom:899.946203pt;}
.y5_c02395{bottom:915.946715pt;}
.y2_c02395{bottom:945.386939pt;}
.y4_c02395{bottom:959.786555pt;}
.y1_c02395{bottom:975.787067pt;}
.yf_c02395{bottom:1008.747067pt;}
.h3_c02395{height:28.916250pt;}
.h1_c02395{height:37.063125pt;}
.h2_c02395{height:37.166250pt;}
.h4_c02395{height:48.581988pt;}
.h0_c02395{height:1122.666667pt;}
.w1_c02395{width:793.333333pt;}
.w0_c02395{width:793.626667pt;}
.x0_c02395{left:0.000000pt;}
.xe_c02395{left:104.000000pt;}
.x9_c02395{left:391.999872pt;}
.x4_c02395{left:396.160512pt;}
.xc_c02395{left:400.960000pt;}
.x7_c02395{left:404.799648pt;}
.x5_c02395{left:410.560128pt;}
.x1_c02395{left:411.840000pt;}
.xb_c02395{left:429.760320pt;}
.xa_c02395{left:437.439552pt;}
.x6_c02395{left:438.400512pt;}
.xd_c02395{left:450.560320pt;}
.x3_c02395{left:455.039904pt;}
.x2_c02395{left:468.159648pt;}
.x8_c02395{left:506.560032pt;}
}





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

.ir_c02396:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02396{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02396;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02396{font-family:ff1_c02396;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02396;src:url('chunks/assets/font_a32d31b74718d12f46314763.woff2')format("woff");}.ff2_c02396{font-family:ff2_c02396;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02396;src:url('chunks/assets/font_ea045cd1189b5fd5b702309e.woff2')format("woff");}.ff3_c02396{font-family:ff3_c02396;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02396{vertical-align:0.000000px;}
.v1_c02396{vertical-align:1.439424px;}
.lsa_c02396{letter-spacing:-0.717552px;}
.lsb_c02396{letter-spacing:-0.574992px;}
.ls19_c02396{letter-spacing:-0.508464px;}
.ls1a_c02396{letter-spacing:-0.375408px;}
.ls12_c02396{letter-spacing:-0.275616px;}
.ls10_c02396{letter-spacing:-0.261360px;}
.ls7_c02396{letter-spacing:-0.242352px;}
.ls8_c02396{letter-spacing:-0.237600px;}
.ls17_c02396{letter-spacing:-0.228096px;}
.ls4_c02396{letter-spacing:-0.118800px;}
.ls15_c02396{letter-spacing:0.000000px;}
.ls1_c02396{letter-spacing:0.006048px;}
.ls16_c02396{letter-spacing:0.009504px;}
.ls18_c02396{letter-spacing:0.014256px;}
.lsd_c02396{letter-spacing:0.080784px;}
.ls6_c02396{letter-spacing:0.128304px;}
.lsf_c02396{letter-spacing:0.242352px;}
.lse_c02396{letter-spacing:0.508464px;}
.ls14_c02396{letter-spacing:0.514080px;}
.ls11_c02396{letter-spacing:0.536976px;}
.lsc_c02396{letter-spacing:0.579744px;}
.ls13_c02396{letter-spacing:0.594000px;}
.ls9_c02396{letter-spacing:0.598752px;}
.ls3_c02396{letter-spacing:0.613008px;}
.ls2_c02396{letter-spacing:0.693792px;}
.ls5_c02396{letter-spacing:0.717552px;}
.ls0_c02396{letter-spacing:0.722304px;}
.sc__c02396{text-shadow:none;}
.sc0_c02396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02396{-webkit-text-stroke:0px transparent;}
.sc0_c02396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02396{word-spacing:-15.126048px;}
.wsa_c02396{word-spacing:-12.474000px;}
.wse_c02396{word-spacing:-12.459744px;}
.ws9_c02396{word-spacing:-12.416976px;}
.wsd_c02396{word-spacing:-12.388464px;}
.ws2_c02396{word-spacing:-11.642400px;}
.ws12_c02396{word-spacing:-11.637648px;}
.ws11_c02396{word-spacing:-11.371536px;}
.ws1c_c02396{word-spacing:-2.159136px;}
.ws17_c02396{word-spacing:-1.083456px;}
.ws19_c02396{word-spacing:-1.054944px;}
.ws13_c02396{word-spacing:-0.974160px;}
.ws18_c02396{word-spacing:-0.441936px;}
.ws1d_c02396{word-spacing:-0.370656px;}
.ws15_c02396{word-spacing:-0.118800px;}
.ws1a_c02396{word-spacing:-0.099792px;}
.ws1b_c02396{word-spacing:-0.085536px;}
.ws14_c02396{word-spacing:0.000000px;}
.ws1e_c02396{word-spacing:0.014256px;}
.ws16_c02396{word-spacing:0.356400px;}
.ws10_c02396{word-spacing:20.490624px;}
.wsf_c02396{word-spacing:21.949488px;}
.ws8_c02396{word-spacing:29.514672px;}
.wsb_c02396{word-spacing:33.300288px;}
.ws7_c02396{word-spacing:36.143712px;}
.ws5_c02396{word-spacing:36.742464px;}
.ws1_c02396{word-spacing:37.759392px;}
.ws0_c02396{word-spacing:38.020752px;}
.ws3_c02396{word-spacing:39.218256px;}
.ws4_c02396{word-spacing:39.902544px;}
.ws6_c02396{word-spacing:42.026688px;}
._0_c02396{margin-left:-1.948320px;}
._2_c02396{width:1.482624px;}
._4_c02396{width:3.735072px;}
._6_c02396{width:35.240832px;}
._5_c02396{width:40.073616px;}
._1_c02396{width:50.252400px;}
._3_c02396{width:51.530688px;}
.fc0_c02396{color:rgb(0,0,0);}
.fs0_c02396{font-size:47.520000px;}
.fs1_c02396{font-size:60.480000px;}
.y0_c02396{bottom:0.000000px;}
.y1a_c02396{bottom:65.880450px;}
.y1e_c02396{bottom:147.000054px;}
.y20_c02396{bottom:186.600234px;}
.y1f_c02396{bottom:196.320450px;}
.y1d_c02396{bottom:275.880234px;}
.y19_c02396{bottom:291.000000px;}
.y1c_c02396{bottom:341.760774px;}
.y18_c02396{bottom:356.878758px;}
.y1b_c02396{bottom:356.880450px;}
.y16_c02396{bottom:406.559730px;}
.y12_c02396{bottom:424.560306px;}
.y17_c02396{bottom:458.759262px;}
.y15_c02396{bottom:491.879514px;}
.y14_c02396{bottom:509.880090px;}
.y11_c02396{bottom:543.000342px;}
.y13_c02396{bottom:559.559874px;}
.y10_c02396{bottom:577.560450px;}
.y21_c02396{bottom:614.280450px;}
.yc_c02396{bottom:667.558326px;}
.ye_c02396{bottom:707.160234px;}
.yd_c02396{bottom:716.880450px;}
.yb_c02396{bottom:781.318830px;}
.ya_c02396{bottom:796.438506px;}
.y9_c02396{bottom:877.438722px;}
.y7_c02396{bottom:926.759730px;}
.y3_c02396{bottom:944.760306px;}
.y8_c02396{bottom:979.319226px;}
.y6_c02396{bottom:1012.439478px;}
.y5_c02396{bottom:1030.440054px;}
.y2_c02396{bottom:1063.560306px;}
.y4_c02396{bottom:1079.759874px;}
.y1_c02396{bottom:1097.760450px;}
.yf_c02396{bottom:1134.840450px;}
.h3_c02396{height:32.530781px;}
.h1_c02396{height:41.696016px;}
.h2_c02396{height:41.812031px;}
.h4_c02396{height:54.654737px;}
.h5_c02396{height:78.480000px;}
.h0_c02396{height:1263.000000px;}
.w2_c02396{width:215.280000px;}
.w1_c02396{width:892.500000px;}
.w0_c02396{width:892.830000px;}
.x0_c02396{left:0.000000px;}
.xe_c02396{left:117.000000px;}
.x8_c02396{left:440.999856px;}
.x4_c02396{left:445.680576px;}
.xc_c02396{left:451.080000px;}
.x7_c02396{left:455.399604px;}
.x5_c02396{left:461.880144px;}
.x1_c02396{left:463.320000px;}
.xb_c02396{left:483.480360px;}
.x9_c02396{left:492.119496px;}
.x6_c02396{left:493.200576px;}
.xd_c02396{left:506.880360px;}
.x3_c02396{left:511.919892px;}
.x2_c02396{left:526.679604px;}
.xa_c02396{left:569.880036px;}
.xf_c02396{left:591.480000px;}
@media print{
.v0_c02396{vertical-align:0.000000pt;}
.v1_c02396{vertical-align:1.279488pt;}
.lsa_c02396{letter-spacing:-0.637824pt;}
.lsb_c02396{letter-spacing:-0.511104pt;}
.ls19_c02396{letter-spacing:-0.451968pt;}
.ls1a_c02396{letter-spacing:-0.333696pt;}
.ls12_c02396{letter-spacing:-0.244992pt;}
.ls10_c02396{letter-spacing:-0.232320pt;}
.ls7_c02396{letter-spacing:-0.215424pt;}
.ls8_c02396{letter-spacing:-0.211200pt;}
.ls17_c02396{letter-spacing:-0.202752pt;}
.ls4_c02396{letter-spacing:-0.105600pt;}
.ls15_c02396{letter-spacing:0.000000pt;}
.ls1_c02396{letter-spacing:0.005376pt;}
.ls16_c02396{letter-spacing:0.008448pt;}
.ls18_c02396{letter-spacing:0.012672pt;}
.lsd_c02396{letter-spacing:0.071808pt;}
.ls6_c02396{letter-spacing:0.114048pt;}
.lsf_c02396{letter-spacing:0.215424pt;}
.lse_c02396{letter-spacing:0.451968pt;}
.ls14_c02396{letter-spacing:0.456960pt;}
.ls11_c02396{letter-spacing:0.477312pt;}
.lsc_c02396{letter-spacing:0.515328pt;}
.ls13_c02396{letter-spacing:0.528000pt;}
.ls9_c02396{letter-spacing:0.532224pt;}
.ls3_c02396{letter-spacing:0.544896pt;}
.ls2_c02396{letter-spacing:0.616704pt;}
.ls5_c02396{letter-spacing:0.637824pt;}
.ls0_c02396{letter-spacing:0.642048pt;}
.wsc_c02396{word-spacing:-13.445376pt;}
.wsa_c02396{word-spacing:-11.088000pt;}
.wse_c02396{word-spacing:-11.075328pt;}
.ws9_c02396{word-spacing:-11.037312pt;}
.wsd_c02396{word-spacing:-11.011968pt;}
.ws2_c02396{word-spacing:-10.348800pt;}
.ws12_c02396{word-spacing:-10.344576pt;}
.ws11_c02396{word-spacing:-10.108032pt;}
.ws1c_c02396{word-spacing:-1.919232pt;}
.ws17_c02396{word-spacing:-0.963072pt;}
.ws19_c02396{word-spacing:-0.937728pt;}
.ws13_c02396{word-spacing:-0.865920pt;}
.ws18_c02396{word-spacing:-0.392832pt;}
.ws1d_c02396{word-spacing:-0.329472pt;}
.ws15_c02396{word-spacing:-0.105600pt;}
.ws1a_c02396{word-spacing:-0.088704pt;}
.ws1b_c02396{word-spacing:-0.076032pt;}
.ws14_c02396{word-spacing:0.000000pt;}
.ws1e_c02396{word-spacing:0.012672pt;}
.ws16_c02396{word-spacing:0.316800pt;}
.ws10_c02396{word-spacing:18.213888pt;}
.wsf_c02396{word-spacing:19.510656pt;}
.ws8_c02396{word-spacing:26.235264pt;}
.wsb_c02396{word-spacing:29.600256pt;}
.ws7_c02396{word-spacing:32.127744pt;}
.ws5_c02396{word-spacing:32.659968pt;}
.ws1_c02396{word-spacing:33.563904pt;}
.ws0_c02396{word-spacing:33.796224pt;}
.ws3_c02396{word-spacing:34.860672pt;}
.ws4_c02396{word-spacing:35.468928pt;}
.ws6_c02396{word-spacing:37.357056pt;}
._0_c02396{margin-left:-1.731840pt;}
._2_c02396{width:1.317888pt;}
._4_c02396{width:3.320064pt;}
._6_c02396{width:31.325184pt;}
._5_c02396{width:35.620992pt;}
._1_c02396{width:44.668800pt;}
._3_c02396{width:45.805056pt;}
.fs0_c02396{font-size:42.240000pt;}
.fs1_c02396{font-size:53.760000pt;}
.y0_c02396{bottom:0.000000pt;}
.y1a_c02396{bottom:58.560400pt;}
.y1e_c02396{bottom:130.666715pt;}
.y20_c02396{bottom:165.866875pt;}
.y1f_c02396{bottom:174.507067pt;}
.y1d_c02396{bottom:245.226875pt;}
.y19_c02396{bottom:258.666667pt;}
.y1c_c02396{bottom:303.787355pt;}
.y18_c02396{bottom:317.225563pt;}
.y1b_c02396{bottom:317.227067pt;}
.y16_c02396{bottom:361.386427pt;}
.y12_c02396{bottom:377.386939pt;}
.y17_c02396{bottom:407.786011pt;}
.y15_c02396{bottom:437.226235pt;}
.y14_c02396{bottom:453.226747pt;}
.y11_c02396{bottom:482.666971pt;}
.y13_c02396{bottom:497.386555pt;}
.y10_c02396{bottom:513.387067pt;}
.y21_c02396{bottom:546.027067pt;}
.yc_c02396{bottom:593.385179pt;}
.ye_c02396{bottom:628.586875pt;}
.yd_c02396{bottom:637.227067pt;}
.yb_c02396{bottom:694.505627pt;}
.ya_c02396{bottom:707.945339pt;}
.y9_c02396{bottom:779.945531pt;}
.y7_c02396{bottom:823.786427pt;}
.y3_c02396{bottom:839.786939pt;}
.y8_c02396{bottom:870.505979pt;}
.y6_c02396{bottom:899.946203pt;}
.y5_c02396{bottom:915.946715pt;}
.y2_c02396{bottom:945.386939pt;}
.y4_c02396{bottom:959.786555pt;}
.y1_c02396{bottom:975.787067pt;}
.yf_c02396{bottom:1008.747067pt;}
.h3_c02396{height:28.916250pt;}
.h1_c02396{height:37.063125pt;}
.h2_c02396{height:37.166250pt;}
.h4_c02396{height:48.581988pt;}
.h5_c02396{height:69.760000pt;}
.h0_c02396{height:1122.666667pt;}
.w2_c02396{width:191.360000pt;}
.w1_c02396{width:793.333333pt;}
.w0_c02396{width:793.626667pt;}
.x0_c02396{left:0.000000pt;}
.xe_c02396{left:104.000000pt;}
.x8_c02396{left:391.999872pt;}
.x4_c02396{left:396.160512pt;}
.xc_c02396{left:400.960000pt;}
.x7_c02396{left:404.799648pt;}
.x5_c02396{left:410.560128pt;}
.x1_c02396{left:411.840000pt;}
.xb_c02396{left:429.760320pt;}
.x9_c02396{left:437.439552pt;}
.x6_c02396{left:438.400512pt;}
.xd_c02396{left:450.560320pt;}
.x3_c02396{left:455.039904pt;}
.x2_c02396{left:468.159648pt;}
.xa_c02396{left:506.560032pt;}
.xf_c02396{left:525.760000pt;}
}





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

.ir_c02397:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02397{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02397;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02397{font-family:ff1_c02397;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02397;src:url('chunks/assets/font_eb3502865550ec516d39d930.woff2')format("woff");}.ff2_c02397{font-family:ff2_c02397;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02397;src:url('chunks/assets/font_277bf65eaa3e9a2e24fbc604.woff2')format("woff");}.ff3_c02397{font-family:ff3_c02397;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02397{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02397{vertical-align:0.000000px;}
.v1_c02397{vertical-align:1.439424px;}
.lsa_c02397{letter-spacing:-0.774576px;}
.lsd_c02397{letter-spacing:-0.722304px;}
.ls17_c02397{letter-spacing:-0.717552px;}
.lsb_c02397{letter-spacing:-0.574992px;}
.ls18_c02397{letter-spacing:-0.304128px;}
.ls13_c02397{letter-spacing:-0.275616px;}
.ls11_c02397{letter-spacing:-0.261360px;}
.ls7_c02397{letter-spacing:-0.242352px;}
.ls8_c02397{letter-spacing:-0.237600px;}
.ls4_c02397{letter-spacing:-0.118800px;}
.ls16_c02397{letter-spacing:0.000000px;}
.ls2_c02397{letter-spacing:0.006048px;}
.ls6_c02397{letter-spacing:0.128304px;}
.ls10_c02397{letter-spacing:0.242352px;}
.lse_c02397{letter-spacing:0.508464px;}
.ls15_c02397{letter-spacing:0.514080px;}
.ls12_c02397{letter-spacing:0.536976px;}
.lsc_c02397{letter-spacing:0.579744px;}
.ls14_c02397{letter-spacing:0.594000px;}
.ls9_c02397{letter-spacing:0.598752px;}
.ls3_c02397{letter-spacing:0.613008px;}
.lsf_c02397{letter-spacing:0.646272px;}
.ls1_c02397{letter-spacing:0.679536px;}
.ls5_c02397{letter-spacing:0.717552px;}
.ls0_c02397{letter-spacing:0.722304px;}
.sc__c02397{text-shadow:none;}
.sc0_c02397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02397{-webkit-text-stroke:0px transparent;}
.sc0_c02397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c02397{word-spacing:-15.126048px;}
.wse_c02397{word-spacing:-12.474000px;}
.wsd_c02397{word-spacing:-12.416976px;}
.ws6_c02397{word-spacing:-12.388464px;}
.ws2_c02397{word-spacing:-11.642400px;}
.ws1a_c02397{word-spacing:-2.159136px;}
.wsa_c02397{word-spacing:-2.062368px;}
.ws15_c02397{word-spacing:-1.083456px;}
.ws17_c02397{word-spacing:-1.040688px;}
.ws11_c02397{word-spacing:-0.974160px;}
.ws13_c02397{word-spacing:-0.118800px;}
.ws18_c02397{word-spacing:-0.099792px;}
.ws19_c02397{word-spacing:-0.085536px;}
.ws1c_c02397{word-spacing:-0.057024px;}
.ws12_c02397{word-spacing:0.000000px;}
.ws1b_c02397{word-spacing:0.356400px;}
.ws16_c02397{word-spacing:0.361152px;}
.ws14_c02397{word-spacing:0.413424px;}
.wsb_c02397{word-spacing:0.717552px;}
.wsc_c02397{word-spacing:7.916832px;}
.ws8_c02397{word-spacing:19.597248px;}
.ws9_c02397{word-spacing:20.975328px;}
.wsf_c02397{word-spacing:33.300288px;}
.ws7_c02397{word-spacing:36.143712px;}
.ws5_c02397{word-spacing:36.742464px;}
.ws1_c02397{word-spacing:37.759392px;}
.ws0_c02397{word-spacing:38.020752px;}
.ws3_c02397{word-spacing:39.218256px;}
.ws4_c02397{word-spacing:39.902544px;}
._0_c02397{margin-left:-1.948320px;}
._2_c02397{width:1.482624px;}
._4_c02397{width:3.906144px;}
._7_c02397{width:8.182944px;}
._c_c02397{width:13.068000px;}
._9_c02397{width:15.847920px;}
._a_c02397{width:18.585072px;}
._8_c02397{width:20.343312px;}
._b_c02397{width:21.607344px;}
._5_c02397{width:33.492096px;}
._6_c02397{width:34.494768px;}
._1_c02397{width:50.252400px;}
._3_c02397{width:51.530688px;}
.fc0_c02397{color:rgb(0,0,0);}
.fs0_c02397{font-size:47.520000px;}
.fs1_c02397{font-size:60.480000px;}
.y0_c02397{bottom:0.000000px;}
.y1c_c02397{bottom:146.998362px;}
.y1e_c02397{bottom:186.600234px;}
.y1d_c02397{bottom:196.320450px;}
.y1b_c02397{bottom:275.878542px;}
.y1a_c02397{bottom:356.878758px;}
.y18_c02397{bottom:406.559730px;}
.y14_c02397{bottom:424.560306px;}
.y19_c02397{bottom:458.759262px;}
.y17_c02397{bottom:491.879514px;}
.y16_c02397{bottom:509.880090px;}
.y13_c02397{bottom:543.000342px;}
.y15_c02397{bottom:559.559874px;}
.y12_c02397{bottom:577.560450px;}
.y1f_c02397{bottom:614.280450px;}
.ye_c02397{bottom:667.560702px;}
.y10_c02397{bottom:707.160234px;}
.yf_c02397{bottom:716.880450px;}
.yd_c02397{bottom:766.560306px;}
.yc_c02397{bottom:781.320018px;}
.yb_c02397{bottom:796.439694px;}
.ya_c02397{bottom:862.319046px;}
.y9_c02397{bottom:877.438722px;}
.y7_c02397{bottom:926.759730px;}
.y3_c02397{bottom:944.760306px;}
.y8_c02397{bottom:979.319226px;}
.y6_c02397{bottom:1012.439478px;}
.y5_c02397{bottom:1030.440054px;}
.y2_c02397{bottom:1063.560306px;}
.y4_c02397{bottom:1079.759874px;}
.y1_c02397{bottom:1097.760450px;}
.y11_c02397{bottom:1134.840450px;}
.h3_c02397{height:32.530781px;}
.h1_c02397{height:41.696016px;}
.h2_c02397{height:41.812031px;}
.h4_c02397{height:54.654737px;}
.h0_c02397{height:1263.000000px;}
.w1_c02397{width:892.500000px;}
.w0_c02397{width:892.830000px;}
.x0_c02397{left:0.000000px;}
.xe_c02397{left:117.000000px;}
.x8_c02397{left:440.999856px;}
.x4_c02397{left:445.680576px;}
.xc_c02397{left:451.080000px;}
.x7_c02397{left:455.399604px;}
.x5_c02397{left:461.880144px;}
.x1_c02397{left:463.320000px;}
.xb_c02397{left:483.480360px;}
.x9_c02397{left:492.119496px;}
.x6_c02397{left:493.200576px;}
.xd_c02397{left:506.880360px;}
.x3_c02397{left:511.919892px;}
.x2_c02397{left:526.679604px;}
.xa_c02397{left:569.880036px;}
@media print{
.v0_c02397{vertical-align:0.000000pt;}
.v1_c02397{vertical-align:1.279488pt;}
.lsa_c02397{letter-spacing:-0.688512pt;}
.lsd_c02397{letter-spacing:-0.642048pt;}
.ls17_c02397{letter-spacing:-0.637824pt;}
.lsb_c02397{letter-spacing:-0.511104pt;}
.ls18_c02397{letter-spacing:-0.270336pt;}
.ls13_c02397{letter-spacing:-0.244992pt;}
.ls11_c02397{letter-spacing:-0.232320pt;}
.ls7_c02397{letter-spacing:-0.215424pt;}
.ls8_c02397{letter-spacing:-0.211200pt;}
.ls4_c02397{letter-spacing:-0.105600pt;}
.ls16_c02397{letter-spacing:0.000000pt;}
.ls2_c02397{letter-spacing:0.005376pt;}
.ls6_c02397{letter-spacing:0.114048pt;}
.ls10_c02397{letter-spacing:0.215424pt;}
.lse_c02397{letter-spacing:0.451968pt;}
.ls15_c02397{letter-spacing:0.456960pt;}
.ls12_c02397{letter-spacing:0.477312pt;}
.lsc_c02397{letter-spacing:0.515328pt;}
.ls14_c02397{letter-spacing:0.528000pt;}
.ls9_c02397{letter-spacing:0.532224pt;}
.ls3_c02397{letter-spacing:0.544896pt;}
.lsf_c02397{letter-spacing:0.574464pt;}
.ls1_c02397{letter-spacing:0.604032pt;}
.ls5_c02397{letter-spacing:0.637824pt;}
.ls0_c02397{letter-spacing:0.642048pt;}
.ws10_c02397{word-spacing:-13.445376pt;}
.wse_c02397{word-spacing:-11.088000pt;}
.wsd_c02397{word-spacing:-11.037312pt;}
.ws6_c02397{word-spacing:-11.011968pt;}
.ws2_c02397{word-spacing:-10.348800pt;}
.ws1a_c02397{word-spacing:-1.919232pt;}
.wsa_c02397{word-spacing:-1.833216pt;}
.ws15_c02397{word-spacing:-0.963072pt;}
.ws17_c02397{word-spacing:-0.925056pt;}
.ws11_c02397{word-spacing:-0.865920pt;}
.ws13_c02397{word-spacing:-0.105600pt;}
.ws18_c02397{word-spacing:-0.088704pt;}
.ws19_c02397{word-spacing:-0.076032pt;}
.ws1c_c02397{word-spacing:-0.050688pt;}
.ws12_c02397{word-spacing:0.000000pt;}
.ws1b_c02397{word-spacing:0.316800pt;}
.ws16_c02397{word-spacing:0.321024pt;}
.ws14_c02397{word-spacing:0.367488pt;}
.wsb_c02397{word-spacing:0.637824pt;}
.wsc_c02397{word-spacing:7.037184pt;}
.ws8_c02397{word-spacing:17.419776pt;}
.ws9_c02397{word-spacing:18.644736pt;}
.wsf_c02397{word-spacing:29.600256pt;}
.ws7_c02397{word-spacing:32.127744pt;}
.ws5_c02397{word-spacing:32.659968pt;}
.ws1_c02397{word-spacing:33.563904pt;}
.ws0_c02397{word-spacing:33.796224pt;}
.ws3_c02397{word-spacing:34.860672pt;}
.ws4_c02397{word-spacing:35.468928pt;}
._0_c02397{margin-left:-1.731840pt;}
._2_c02397{width:1.317888pt;}
._4_c02397{width:3.472128pt;}
._7_c02397{width:7.273728pt;}
._c_c02397{width:11.616000pt;}
._9_c02397{width:14.087040pt;}
._a_c02397{width:16.520064pt;}
._8_c02397{width:18.082944pt;}
._b_c02397{width:19.206528pt;}
._5_c02397{width:29.770752pt;}
._6_c02397{width:30.662016pt;}
._1_c02397{width:44.668800pt;}
._3_c02397{width:45.805056pt;}
.fs0_c02397{font-size:42.240000pt;}
.fs1_c02397{font-size:53.760000pt;}
.y0_c02397{bottom:0.000000pt;}
.y1c_c02397{bottom:130.665211pt;}
.y1e_c02397{bottom:165.866875pt;}
.y1d_c02397{bottom:174.507067pt;}
.y1b_c02397{bottom:245.225371pt;}
.y1a_c02397{bottom:317.225563pt;}
.y18_c02397{bottom:361.386427pt;}
.y14_c02397{bottom:377.386939pt;}
.y19_c02397{bottom:407.786011pt;}
.y17_c02397{bottom:437.226235pt;}
.y16_c02397{bottom:453.226747pt;}
.y13_c02397{bottom:482.666971pt;}
.y15_c02397{bottom:497.386555pt;}
.y12_c02397{bottom:513.387067pt;}
.y1f_c02397{bottom:546.027067pt;}
.ye_c02397{bottom:593.387291pt;}
.y10_c02397{bottom:628.586875pt;}
.yf_c02397{bottom:637.227067pt;}
.yd_c02397{bottom:681.386939pt;}
.yc_c02397{bottom:694.506683pt;}
.yb_c02397{bottom:707.946395pt;}
.ya_c02397{bottom:766.505819pt;}
.y9_c02397{bottom:779.945531pt;}
.y7_c02397{bottom:823.786427pt;}
.y3_c02397{bottom:839.786939pt;}
.y8_c02397{bottom:870.505979pt;}
.y6_c02397{bottom:899.946203pt;}
.y5_c02397{bottom:915.946715pt;}
.y2_c02397{bottom:945.386939pt;}
.y4_c02397{bottom:959.786555pt;}
.y1_c02397{bottom:975.787067pt;}
.y11_c02397{bottom:1008.747067pt;}
.h3_c02397{height:28.916250pt;}
.h1_c02397{height:37.063125pt;}
.h2_c02397{height:37.166250pt;}
.h4_c02397{height:48.581988pt;}
.h0_c02397{height:1122.666667pt;}
.w1_c02397{width:793.333333pt;}
.w0_c02397{width:793.626667pt;}
.x0_c02397{left:0.000000pt;}
.xe_c02397{left:104.000000pt;}
.x8_c02397{left:391.999872pt;}
.x4_c02397{left:396.160512pt;}
.xc_c02397{left:400.960000pt;}
.x7_c02397{left:404.799648pt;}
.x5_c02397{left:410.560128pt;}
.x1_c02397{left:411.840000pt;}
.xb_c02397{left:429.760320pt;}
.x9_c02397{left:437.439552pt;}
.x6_c02397{left:438.400512pt;}
.xd_c02397{left:450.560320pt;}
.x3_c02397{left:455.039904pt;}
.x2_c02397{left:468.159648pt;}
.xa_c02397{left:506.560032pt;}
}





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

.ir_c02398:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02398{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02398;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02398{font-family:ff1_c02398;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02398;src:url('chunks/assets/font_4d21995419be8f05b7d1d7d7.woff2')format("woff");}.ff2_c02398{font-family:ff2_c02398;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02398;src:url('chunks/assets/font_7e273acd42174bbec13f5c8f.woff2')format("woff");}.ff3_c02398{font-family:ff3_c02398;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02398{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02398{vertical-align:0.000000px;}
.v1_c02398{vertical-align:1.439424px;}
.ls17_c02398{letter-spacing:-1.197504px;}
.lse_c02398{letter-spacing:-0.722304px;}
.ls9_c02398{letter-spacing:-0.717552px;}
.lsa_c02398{letter-spacing:-0.574992px;}
.lsf_c02398{letter-spacing:-0.294624px;}
.ls12_c02398{letter-spacing:-0.275616px;}
.ls10_c02398{letter-spacing:-0.261360px;}
.ls6_c02398{letter-spacing:-0.242352px;}
.ls7_c02398{letter-spacing:-0.237600px;}
.lsd_c02398{letter-spacing:-0.228096px;}
.ls3_c02398{letter-spacing:-0.118800px;}
.ls15_c02398{letter-spacing:0.000000px;}
.ls1_c02398{letter-spacing:0.006048px;}
.ls16_c02398{letter-spacing:0.009504px;}
.ls5_c02398{letter-spacing:0.128304px;}
.lsc_c02398{letter-spacing:0.508464px;}
.ls14_c02398{letter-spacing:0.514080px;}
.ls11_c02398{letter-spacing:0.536976px;}
.lsb_c02398{letter-spacing:0.579744px;}
.ls13_c02398{letter-spacing:0.594000px;}
.ls8_c02398{letter-spacing:0.598752px;}
.ls2_c02398{letter-spacing:0.613008px;}
.ls4_c02398{letter-spacing:0.717552px;}
.ls0_c02398{letter-spacing:0.722304px;}
.sc__c02398{text-shadow:none;}
.sc0_c02398{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02398{-webkit-text-stroke:0px transparent;}
.sc0_c02398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02398{word-spacing:-15.126048px;}
.wsc_c02398{word-spacing:-12.474000px;}
.ws7_c02398{word-spacing:-12.459744px;}
.wsb_c02398{word-spacing:-12.416976px;}
.ws6_c02398{word-spacing:-12.388464px;}
.ws2_c02398{word-spacing:-11.642400px;}
.ws17_c02398{word-spacing:-2.159136px;}
.ws14_c02398{word-spacing:-1.083456px;}
.ws10_c02398{word-spacing:-0.974160px;}
.ws18_c02398{word-spacing:-0.370656px;}
.ws12_c02398{word-spacing:-0.118800px;}
.ws15_c02398{word-spacing:-0.099792px;}
.ws16_c02398{word-spacing:-0.085536px;}
.ws11_c02398{word-spacing:0.000000px;}
.ws13_c02398{word-spacing:0.356400px;}
.ws19_c02398{word-spacing:0.836352px;}
.wsa_c02398{word-spacing:2.703888px;}
.ws9_c02398{word-spacing:24.843456px;}
.ws8_c02398{word-spacing:26.273808px;}
.wsd_c02398{word-spacing:33.300288px;}
.ws5_c02398{word-spacing:36.742464px;}
.ws1_c02398{word-spacing:37.759392px;}
.ws0_c02398{word-spacing:38.020752px;}
.ws3_c02398{word-spacing:39.218256px;}
.ws4_c02398{word-spacing:39.902544px;}
.wsf_c02398{word-spacing:42.026688px;}
._0_c02398{margin-left:-1.948320px;}
._2_c02398{width:1.482624px;}
._4_c02398{width:3.735072px;}
._5_c02398{width:42.663456px;}
._1_c02398{width:50.252400px;}
._3_c02398{width:51.530688px;}
.fc0_c02398{color:rgb(0,0,0);}
.fs0_c02398{font-size:47.520000px;}
.fs1_c02398{font-size:60.480000px;}
.y0_c02398{bottom:0.000000px;}
.yb_c02398{bottom:66.240450px;}
.y1d_c02398{bottom:146.998362px;}
.y1f_c02398{bottom:186.600234px;}
.y1e_c02398{bottom:196.320450px;}
.y1c_c02398{bottom:275.878542px;}
.y1b_c02398{bottom:356.878758px;}
.y19_c02398{bottom:406.559730px;}
.y15_c02398{bottom:424.560306px;}
.y1a_c02398{bottom:458.759262px;}
.y18_c02398{bottom:491.879514px;}
.y17_c02398{bottom:509.880090px;}
.y14_c02398{bottom:543.000342px;}
.y16_c02398{bottom:559.559874px;}
.y13_c02398{bottom:577.560450px;}
.y20_c02398{bottom:614.280450px;}
.yf_c02398{bottom:667.561242px;}
.y11_c02398{bottom:707.160234px;}
.y10_c02398{bottom:716.880450px;}
.ye_c02398{bottom:796.441422px;}
.ya_c02398{bottom:811.200000px;}
.yd_c02398{bottom:862.320774px;}
.y9_c02398{bottom:877.438722px;}
.yc_c02398{bottom:877.440450px;}
.y7_c02398{bottom:926.759730px;}
.y3_c02398{bottom:944.760306px;}
.y8_c02398{bottom:979.319226px;}
.y6_c02398{bottom:1012.439478px;}
.y5_c02398{bottom:1030.440054px;}
.y2_c02398{bottom:1063.560306px;}
.y4_c02398{bottom:1079.759874px;}
.y1_c02398{bottom:1097.760450px;}
.y12_c02398{bottom:1134.840450px;}
.h3_c02398{height:32.530781px;}
.h1_c02398{height:41.696016px;}
.h2_c02398{height:41.812031px;}
.h5_c02398{height:54.654737px;}
.h4_c02398{height:78.840000px;}
.h0_c02398{height:1263.000000px;}
.w2_c02398{width:215.280000px;}
.w1_c02398{width:892.500000px;}
.w0_c02398{width:892.830000px;}
.x0_c02398{left:0.000000px;}
.xf_c02398{left:117.000000px;}
.x8_c02398{left:440.999856px;}
.x4_c02398{left:445.680576px;}
.xd_c02398{left:451.080000px;}
.x7_c02398{left:455.399604px;}
.x5_c02398{left:461.880144px;}
.x1_c02398{left:463.320000px;}
.xc_c02398{left:483.480216px;}
.x9_c02398{left:492.119496px;}
.x6_c02398{left:493.200576px;}
.xe_c02398{left:506.880360px;}
.x3_c02398{left:511.919892px;}
.x2_c02398{left:526.679604px;}
.xa_c02398{left:569.520000px;}
.xb_c02398{left:592.560000px;}
@media print{
.v0_c02398{vertical-align:0.000000pt;}
.v1_c02398{vertical-align:1.279488pt;}
.ls17_c02398{letter-spacing:-1.064448pt;}
.lse_c02398{letter-spacing:-0.642048pt;}
.ls9_c02398{letter-spacing:-0.637824pt;}
.lsa_c02398{letter-spacing:-0.511104pt;}
.lsf_c02398{letter-spacing:-0.261888pt;}
.ls12_c02398{letter-spacing:-0.244992pt;}
.ls10_c02398{letter-spacing:-0.232320pt;}
.ls6_c02398{letter-spacing:-0.215424pt;}
.ls7_c02398{letter-spacing:-0.211200pt;}
.lsd_c02398{letter-spacing:-0.202752pt;}
.ls3_c02398{letter-spacing:-0.105600pt;}
.ls15_c02398{letter-spacing:0.000000pt;}
.ls1_c02398{letter-spacing:0.005376pt;}
.ls16_c02398{letter-spacing:0.008448pt;}
.ls5_c02398{letter-spacing:0.114048pt;}
.lsc_c02398{letter-spacing:0.451968pt;}
.ls14_c02398{letter-spacing:0.456960pt;}
.ls11_c02398{letter-spacing:0.477312pt;}
.lsb_c02398{letter-spacing:0.515328pt;}
.ls13_c02398{letter-spacing:0.528000pt;}
.ls8_c02398{letter-spacing:0.532224pt;}
.ls2_c02398{letter-spacing:0.544896pt;}
.ls4_c02398{letter-spacing:0.637824pt;}
.ls0_c02398{letter-spacing:0.642048pt;}
.wse_c02398{word-spacing:-13.445376pt;}
.wsc_c02398{word-spacing:-11.088000pt;}
.ws7_c02398{word-spacing:-11.075328pt;}
.wsb_c02398{word-spacing:-11.037312pt;}
.ws6_c02398{word-spacing:-11.011968pt;}
.ws2_c02398{word-spacing:-10.348800pt;}
.ws17_c02398{word-spacing:-1.919232pt;}
.ws14_c02398{word-spacing:-0.963072pt;}
.ws10_c02398{word-spacing:-0.865920pt;}
.ws18_c02398{word-spacing:-0.329472pt;}
.ws12_c02398{word-spacing:-0.105600pt;}
.ws15_c02398{word-spacing:-0.088704pt;}
.ws16_c02398{word-spacing:-0.076032pt;}
.ws11_c02398{word-spacing:0.000000pt;}
.ws13_c02398{word-spacing:0.316800pt;}
.ws19_c02398{word-spacing:0.743424pt;}
.wsa_c02398{word-spacing:2.403456pt;}
.ws9_c02398{word-spacing:22.083072pt;}
.ws8_c02398{word-spacing:23.354496pt;}
.wsd_c02398{word-spacing:29.600256pt;}
.ws5_c02398{word-spacing:32.659968pt;}
.ws1_c02398{word-spacing:33.563904pt;}
.ws0_c02398{word-spacing:33.796224pt;}
.ws3_c02398{word-spacing:34.860672pt;}
.ws4_c02398{word-spacing:35.468928pt;}
.wsf_c02398{word-spacing:37.357056pt;}
._0_c02398{margin-left:-1.731840pt;}
._2_c02398{width:1.317888pt;}
._4_c02398{width:3.320064pt;}
._5_c02398{width:37.923072pt;}
._1_c02398{width:44.668800pt;}
._3_c02398{width:45.805056pt;}
.fs0_c02398{font-size:42.240000pt;}
.fs1_c02398{font-size:53.760000pt;}
.y0_c02398{bottom:0.000000pt;}
.yb_c02398{bottom:58.880400pt;}
.y1d_c02398{bottom:130.665211pt;}
.y1f_c02398{bottom:165.866875pt;}
.y1e_c02398{bottom:174.507067pt;}
.y1c_c02398{bottom:245.225371pt;}
.y1b_c02398{bottom:317.225563pt;}
.y19_c02398{bottom:361.386427pt;}
.y15_c02398{bottom:377.386939pt;}
.y1a_c02398{bottom:407.786011pt;}
.y18_c02398{bottom:437.226235pt;}
.y17_c02398{bottom:453.226747pt;}
.y14_c02398{bottom:482.666971pt;}
.y16_c02398{bottom:497.386555pt;}
.y13_c02398{bottom:513.387067pt;}
.y20_c02398{bottom:546.027067pt;}
.yf_c02398{bottom:593.387771pt;}
.y11_c02398{bottom:628.586875pt;}
.y10_c02398{bottom:637.227067pt;}
.ye_c02398{bottom:707.947931pt;}
.ya_c02398{bottom:721.066667pt;}
.yd_c02398{bottom:766.507355pt;}
.y9_c02398{bottom:779.945531pt;}
.yc_c02398{bottom:779.947067pt;}
.y7_c02398{bottom:823.786427pt;}
.y3_c02398{bottom:839.786939pt;}
.y8_c02398{bottom:870.505979pt;}
.y6_c02398{bottom:899.946203pt;}
.y5_c02398{bottom:915.946715pt;}
.y2_c02398{bottom:945.386939pt;}
.y4_c02398{bottom:959.786555pt;}
.y1_c02398{bottom:975.787067pt;}
.y12_c02398{bottom:1008.747067pt;}
.h3_c02398{height:28.916250pt;}
.h1_c02398{height:37.063125pt;}
.h2_c02398{height:37.166250pt;}
.h5_c02398{height:48.581988pt;}
.h4_c02398{height:70.080000pt;}
.h0_c02398{height:1122.666667pt;}
.w2_c02398{width:191.360000pt;}
.w1_c02398{width:793.333333pt;}
.w0_c02398{width:793.626667pt;}
.x0_c02398{left:0.000000pt;}
.xf_c02398{left:104.000000pt;}
.x8_c02398{left:391.999872pt;}
.x4_c02398{left:396.160512pt;}
.xd_c02398{left:400.960000pt;}
.x7_c02398{left:404.799648pt;}
.x5_c02398{left:410.560128pt;}
.x1_c02398{left:411.840000pt;}
.xc_c02398{left:429.760192pt;}
.x9_c02398{left:437.439552pt;}
.x6_c02398{left:438.400512pt;}
.xe_c02398{left:450.560320pt;}
.x3_c02398{left:455.039904pt;}
.x2_c02398{left:468.159648pt;}
.xa_c02398{left:506.240000pt;}
.xb_c02398{left:526.720000pt;}
}





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

.ir_c02399:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02399{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02399;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02399{font-family:ff1_c02399;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02399;src:url('chunks/assets/font_d2541bfe05c3a0eae6b8c9c5.woff2')format("woff");}.ff2_c02399{font-family:ff2_c02399;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02399;src:url('chunks/assets/font_e01a0b8f127a1aa39d60fbb4.woff2')format("woff");}.ff3_c02399{font-family:ff3_c02399;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02399{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02399{vertical-align:0.000000px;}
.v1_c02399{vertical-align:1.439424px;}
.v2_c02399{vertical-align:33.121440px;}
.ls15_c02399{letter-spacing:-0.774576px;}
.ls16_c02399{letter-spacing:-0.722304px;}
.lsa_c02399{letter-spacing:-0.717552px;}
.lsb_c02399{letter-spacing:-0.574992px;}
.ls17_c02399{letter-spacing:-0.323136px;}
.ls10_c02399{letter-spacing:-0.275616px;}
.lse_c02399{letter-spacing:-0.261360px;}
.ls7_c02399{letter-spacing:-0.242352px;}
.ls8_c02399{letter-spacing:-0.237600px;}
.ls5_c02399{letter-spacing:-0.118800px;}
.ls13_c02399{letter-spacing:0.000000px;}
.ls2_c02399{letter-spacing:0.006048px;}
.ls18_c02399{letter-spacing:0.061776px;}
.ls6_c02399{letter-spacing:0.128304px;}
.ls14_c02399{letter-spacing:0.242352px;}
.lsd_c02399{letter-spacing:0.508464px;}
.ls12_c02399{letter-spacing:0.514080px;}
.lsf_c02399{letter-spacing:0.536976px;}
.lsc_c02399{letter-spacing:0.579744px;}
.ls11_c02399{letter-spacing:0.594000px;}
.ls9_c02399{letter-spacing:0.598752px;}
.ls4_c02399{letter-spacing:0.613008px;}
.ls1_c02399{letter-spacing:0.684288px;}
.ls3_c02399{letter-spacing:0.717552px;}
.ls0_c02399{letter-spacing:0.722304px;}
.sc__c02399{text-shadow:none;}
.sc0_c02399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02399{-webkit-text-stroke:0px transparent;}
.sc0_c02399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02399{word-spacing:-15.126048px;}
.ws2_c02399{word-spacing:-12.602304px;}
.ws9_c02399{word-spacing:-12.564288px;}
.wsc_c02399{word-spacing:-12.474000px;}
.ws6_c02399{word-spacing:-12.459744px;}
.wsb_c02399{word-spacing:-12.416976px;}
.ws7_c02399{word-spacing:-12.388464px;}
.ws3_c02399{word-spacing:-11.642400px;}
.ws17_c02399{word-spacing:-2.159136px;}
.ws14_c02399{word-spacing:-1.083456px;}
.ws1b_c02399{word-spacing:-1.078704px;}
.ws10_c02399{word-spacing:-0.974160px;}
.ws18_c02399{word-spacing:-0.603504px;}
.ws1d_c02399{word-spacing:-0.422928px;}
.ws12_c02399{word-spacing:-0.118800px;}
.ws15_c02399{word-spacing:-0.099792px;}
.ws16_c02399{word-spacing:-0.085536px;}
.ws1c_c02399{word-spacing:-0.038016px;}
.ws11_c02399{word-spacing:0.000000px;}
.ws13_c02399{word-spacing:0.356400px;}
.ws1a_c02399{word-spacing:0.361152px;}
.ws19_c02399{word-spacing:0.413424px;}
.wsa_c02399{word-spacing:15.116112px;}
.wsf_c02399{word-spacing:30.298752px;}
.wsd_c02399{word-spacing:33.300288px;}
.ws8_c02399{word-spacing:36.143712px;}
.ws1_c02399{word-spacing:37.759392px;}
.ws0_c02399{word-spacing:38.020752px;}
.ws4_c02399{word-spacing:39.218256px;}
.ws5_c02399{word-spacing:39.902544px;}
._0_c02399{margin-left:-1.948320px;}
._2_c02399{width:1.482624px;}
._4_c02399{width:3.735072px;}
._5_c02399{width:15.192144px;}
._8_c02399{width:20.633184px;}
._6_c02399{width:22.030272px;}
._7_c02399{width:25.732080px;}
._1_c02399{width:50.252400px;}
._3_c02399{width:51.530688px;}
.fc0_c02399{color:rgb(0,0,0);}
.fs0_c02399{font-size:47.520000px;}
.fs1_c02399{font-size:60.480000px;}
.y0_c02399{bottom:0.000000px;}
.y1a_c02399{bottom:146.998362px;}
.y1c_c02399{bottom:186.600234px;}
.y1b_c02399{bottom:196.320450px;}
.y19_c02399{bottom:275.878542px;}
.y18_c02399{bottom:356.878758px;}
.y16_c02399{bottom:406.559730px;}
.y12_c02399{bottom:424.560306px;}
.y17_c02399{bottom:458.759262px;}
.y15_c02399{bottom:491.879514px;}
.y14_c02399{bottom:509.880090px;}
.y11_c02399{bottom:543.000342px;}
.y13_c02399{bottom:559.559874px;}
.y10_c02399{bottom:577.560450px;}
.y1d_c02399{bottom:614.280450px;}
.yc_c02399{bottom:667.558326px;}
.ye_c02399{bottom:707.160234px;}
.yd_c02399{bottom:716.880450px;}
.yb_c02399{bottom:781.318830px;}
.ya_c02399{bottom:796.438506px;}
.y9_c02399{bottom:877.438722px;}
.y7_c02399{bottom:926.759730px;}
.y3_c02399{bottom:944.760306px;}
.y8_c02399{bottom:979.319226px;}
.y6_c02399{bottom:1012.439478px;}
.y5_c02399{bottom:1030.440054px;}
.y2_c02399{bottom:1063.560306px;}
.y4_c02399{bottom:1079.759874px;}
.y1_c02399{bottom:1097.760450px;}
.yf_c02399{bottom:1134.840450px;}
.h3_c02399{height:32.530781px;}
.h1_c02399{height:41.696016px;}
.h2_c02399{height:41.812031px;}
.h4_c02399{height:54.654737px;}
.h5_c02399{height:74.817456px;}
.h0_c02399{height:1263.000000px;}
.w1_c02399{width:892.500000px;}
.w0_c02399{width:892.830000px;}
.x0_c02399{left:0.000000px;}
.xe_c02399{left:117.000000px;}
.x8_c02399{left:440.999856px;}
.x4_c02399{left:445.680576px;}
.xc_c02399{left:451.080000px;}
.x7_c02399{left:455.399604px;}
.x5_c02399{left:461.880144px;}
.x1_c02399{left:463.320000px;}
.xb_c02399{left:483.480360px;}
.x9_c02399{left:492.119496px;}
.x6_c02399{left:493.200576px;}
.xd_c02399{left:506.880360px;}
.x3_c02399{left:511.919892px;}
.x2_c02399{left:526.679604px;}
.xa_c02399{left:569.880036px;}
@media print{
.v0_c02399{vertical-align:0.000000pt;}
.v1_c02399{vertical-align:1.279488pt;}
.v2_c02399{vertical-align:29.441280pt;}
.ls15_c02399{letter-spacing:-0.688512pt;}
.ls16_c02399{letter-spacing:-0.642048pt;}
.lsa_c02399{letter-spacing:-0.637824pt;}
.lsb_c02399{letter-spacing:-0.511104pt;}
.ls17_c02399{letter-spacing:-0.287232pt;}
.ls10_c02399{letter-spacing:-0.244992pt;}
.lse_c02399{letter-spacing:-0.232320pt;}
.ls7_c02399{letter-spacing:-0.215424pt;}
.ls8_c02399{letter-spacing:-0.211200pt;}
.ls5_c02399{letter-spacing:-0.105600pt;}
.ls13_c02399{letter-spacing:0.000000pt;}
.ls2_c02399{letter-spacing:0.005376pt;}
.ls18_c02399{letter-spacing:0.054912pt;}
.ls6_c02399{letter-spacing:0.114048pt;}
.ls14_c02399{letter-spacing:0.215424pt;}
.lsd_c02399{letter-spacing:0.451968pt;}
.ls12_c02399{letter-spacing:0.456960pt;}
.lsf_c02399{letter-spacing:0.477312pt;}
.lsc_c02399{letter-spacing:0.515328pt;}
.ls11_c02399{letter-spacing:0.528000pt;}
.ls9_c02399{letter-spacing:0.532224pt;}
.ls4_c02399{letter-spacing:0.544896pt;}
.ls1_c02399{letter-spacing:0.608256pt;}
.ls3_c02399{letter-spacing:0.637824pt;}
.ls0_c02399{letter-spacing:0.642048pt;}
.wse_c02399{word-spacing:-13.445376pt;}
.ws2_c02399{word-spacing:-11.202048pt;}
.ws9_c02399{word-spacing:-11.168256pt;}
.wsc_c02399{word-spacing:-11.088000pt;}
.ws6_c02399{word-spacing:-11.075328pt;}
.wsb_c02399{word-spacing:-11.037312pt;}
.ws7_c02399{word-spacing:-11.011968pt;}
.ws3_c02399{word-spacing:-10.348800pt;}
.ws17_c02399{word-spacing:-1.919232pt;}
.ws14_c02399{word-spacing:-0.963072pt;}
.ws1b_c02399{word-spacing:-0.958848pt;}
.ws10_c02399{word-spacing:-0.865920pt;}
.ws18_c02399{word-spacing:-0.536448pt;}
.ws1d_c02399{word-spacing:-0.375936pt;}
.ws12_c02399{word-spacing:-0.105600pt;}
.ws15_c02399{word-spacing:-0.088704pt;}
.ws16_c02399{word-spacing:-0.076032pt;}
.ws1c_c02399{word-spacing:-0.033792pt;}
.ws11_c02399{word-spacing:0.000000pt;}
.ws13_c02399{word-spacing:0.316800pt;}
.ws1a_c02399{word-spacing:0.321024pt;}
.ws19_c02399{word-spacing:0.367488pt;}
.wsa_c02399{word-spacing:13.436544pt;}
.wsf_c02399{word-spacing:26.932224pt;}
.wsd_c02399{word-spacing:29.600256pt;}
.ws8_c02399{word-spacing:32.127744pt;}
.ws1_c02399{word-spacing:33.563904pt;}
.ws0_c02399{word-spacing:33.796224pt;}
.ws4_c02399{word-spacing:34.860672pt;}
.ws5_c02399{word-spacing:35.468928pt;}
._0_c02399{margin-left:-1.731840pt;}
._2_c02399{width:1.317888pt;}
._4_c02399{width:3.320064pt;}
._5_c02399{width:13.504128pt;}
._8_c02399{width:18.340608pt;}
._6_c02399{width:19.582464pt;}
._7_c02399{width:22.872960pt;}
._1_c02399{width:44.668800pt;}
._3_c02399{width:45.805056pt;}
.fs0_c02399{font-size:42.240000pt;}
.fs1_c02399{font-size:53.760000pt;}
.y0_c02399{bottom:0.000000pt;}
.y1a_c02399{bottom:130.665211pt;}
.y1c_c02399{bottom:165.866875pt;}
.y1b_c02399{bottom:174.507067pt;}
.y19_c02399{bottom:245.225371pt;}
.y18_c02399{bottom:317.225563pt;}
.y16_c02399{bottom:361.386427pt;}
.y12_c02399{bottom:377.386939pt;}
.y17_c02399{bottom:407.786011pt;}
.y15_c02399{bottom:437.226235pt;}
.y14_c02399{bottom:453.226747pt;}
.y11_c02399{bottom:482.666971pt;}
.y13_c02399{bottom:497.386555pt;}
.y10_c02399{bottom:513.387067pt;}
.y1d_c02399{bottom:546.027067pt;}
.yc_c02399{bottom:593.385179pt;}
.ye_c02399{bottom:628.586875pt;}
.yd_c02399{bottom:637.227067pt;}
.yb_c02399{bottom:694.505627pt;}
.ya_c02399{bottom:707.945339pt;}
.y9_c02399{bottom:779.945531pt;}
.y7_c02399{bottom:823.786427pt;}
.y3_c02399{bottom:839.786939pt;}
.y8_c02399{bottom:870.505979pt;}
.y6_c02399{bottom:899.946203pt;}
.y5_c02399{bottom:915.946715pt;}
.y2_c02399{bottom:945.386939pt;}
.y4_c02399{bottom:959.786555pt;}
.y1_c02399{bottom:975.787067pt;}
.yf_c02399{bottom:1008.747067pt;}
.h3_c02399{height:28.916250pt;}
.h1_c02399{height:37.063125pt;}
.h2_c02399{height:37.166250pt;}
.h4_c02399{height:48.581988pt;}
.h5_c02399{height:66.504405pt;}
.h0_c02399{height:1122.666667pt;}
.w1_c02399{width:793.333333pt;}
.w0_c02399{width:793.626667pt;}
.x0_c02399{left:0.000000pt;}
.xe_c02399{left:104.000000pt;}
.x8_c02399{left:391.999872pt;}
.x4_c02399{left:396.160512pt;}
.xc_c02399{left:400.960000pt;}
.x7_c02399{left:404.799648pt;}
.x5_c02399{left:410.560128pt;}
.x1_c02399{left:411.840000pt;}
.xb_c02399{left:429.760320pt;}
.x9_c02399{left:437.439552pt;}
.x6_c02399{left:438.400512pt;}
.xd_c02399{left:450.560320pt;}
.x3_c02399{left:455.039904pt;}
.x2_c02399{left:468.159648pt;}
.xa_c02399{left:506.560032pt;}
}





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

.ir_c02400:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02400{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02400;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02400{font-family:ff1_c02400;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02400;src:url('chunks/assets/font_ca4ca71fe2ff08d12dce4d0c.woff2')format("woff");}.ff2_c02400{font-family:ff2_c02400;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02400;src:url('chunks/assets/font_2178ad5614d9b816f3b9ecfb.woff2')format("woff");}.ff3_c02400{font-family:ff3_c02400;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02400{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02400{vertical-align:0.000000px;}
.v2_c02400{vertical-align:1.439424px;}
.v1_c02400{vertical-align:33.121440px;}
.ls19_c02400{letter-spacing:-1.197504px;}
.lsa_c02400{letter-spacing:-0.774576px;}
.lsc_c02400{letter-spacing:-0.722304px;}
.ls18_c02400{letter-spacing:-0.717552px;}
.lsb_c02400{letter-spacing:-0.574992px;}
.ls1a_c02400{letter-spacing:-0.361152px;}
.ls11_c02400{letter-spacing:-0.323136px;}
.ls13_c02400{letter-spacing:-0.275616px;}
.ls10_c02400{letter-spacing:-0.261360px;}
.ls7_c02400{letter-spacing:-0.242352px;}
.ls8_c02400{letter-spacing:-0.237600px;}
.ls4_c02400{letter-spacing:-0.118800px;}
.ls17_c02400{letter-spacing:0.000000px;}
.ls2_c02400{letter-spacing:0.006048px;}
.ls15_c02400{letter-spacing:0.061776px;}
.ls6_c02400{letter-spacing:0.128304px;}
.ls5_c02400{letter-spacing:0.242352px;}
.lse_c02400{letter-spacing:0.508464px;}
.ls16_c02400{letter-spacing:0.514080px;}
.ls12_c02400{letter-spacing:0.536976px;}
.lsd_c02400{letter-spacing:0.579744px;}
.ls14_c02400{letter-spacing:0.594000px;}
.ls9_c02400{letter-spacing:0.598752px;}
.ls3_c02400{letter-spacing:0.613008px;}
.lsf_c02400{letter-spacing:0.684288px;}
.ls1_c02400{letter-spacing:0.717552px;}
.ls0_c02400{letter-spacing:0.722304px;}
.sc__c02400{text-shadow:none;}
.sc0_c02400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02400{-webkit-text-stroke:0px transparent;}
.sc0_c02400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02400{word-spacing:-15.126048px;}
.ws2_c02400{word-spacing:-12.602304px;}
.ws9_c02400{word-spacing:-12.564288px;}
.ws10_c02400{word-spacing:-12.474000px;}
.ws6_c02400{word-spacing:-12.459744px;}
.wsa_c02400{word-spacing:-12.416976px;}
.ws7_c02400{word-spacing:-12.388464px;}
.ws3_c02400{word-spacing:-11.642400px;}
.wsf_c02400{word-spacing:-11.637648px;}
.ws1c_c02400{word-spacing:-2.159136px;}
.ws1d_c02400{word-spacing:-1.083456px;}
.ws17_c02400{word-spacing:-1.078704px;}
.ws11_c02400{word-spacing:-0.974160px;}
.ws13_c02400{word-spacing:-0.603504px;}
.ws1b_c02400{word-spacing:-0.422928px;}
.ws14_c02400{word-spacing:-0.118800px;}
.ws18_c02400{word-spacing:-0.099792px;}
.ws1a_c02400{word-spacing:-0.085536px;}
.ws19_c02400{word-spacing:-0.038016px;}
.ws12_c02400{word-spacing:0.000000px;}
.ws1e_c02400{word-spacing:0.356400px;}
.ws16_c02400{word-spacing:0.361152px;}
.ws15_c02400{word-spacing:0.413424px;}
.ws1f_c02400{word-spacing:0.836352px;}
.wsb_c02400{word-spacing:30.298752px;}
.wsc_c02400{word-spacing:33.300288px;}
.ws8_c02400{word-spacing:36.143712px;}
.ws1_c02400{word-spacing:37.759392px;}
.ws0_c02400{word-spacing:38.020752px;}
.ws4_c02400{word-spacing:39.218256px;}
.ws5_c02400{word-spacing:39.902544px;}
.wse_c02400{word-spacing:42.026688px;}
._0_c02400{margin-left:-1.948320px;}
._2_c02400{width:1.482624px;}
._4_c02400{width:3.906144px;}
._5_c02400{width:21.445776px;}
._1_c02400{width:50.252400px;}
._3_c02400{width:51.530688px;}
.fc0_c02400{color:rgb(0,0,0);}
.fs0_c02400{font-size:47.520000px;}
.fs1_c02400{font-size:60.480000px;}
.y0_c02400{bottom:0.000000px;}
.y19_c02400{bottom:65.880450px;}
.y1c_c02400{bottom:147.000054px;}
.y1e_c02400{bottom:186.600234px;}
.y1d_c02400{bottom:196.320450px;}
.y1b_c02400{bottom:275.880234px;}
.y18_c02400{bottom:291.000000px;}
.y17_c02400{bottom:356.878758px;}
.y1a_c02400{bottom:356.880450px;}
.y15_c02400{bottom:406.559730px;}
.y11_c02400{bottom:424.560306px;}
.y16_c02400{bottom:458.759262px;}
.y14_c02400{bottom:491.879514px;}
.y13_c02400{bottom:509.880090px;}
.y10_c02400{bottom:543.000342px;}
.y12_c02400{bottom:559.559874px;}
.yf_c02400{bottom:577.560450px;}
.y1f_c02400{bottom:614.280450px;}
.yb_c02400{bottom:667.558326px;}
.yd_c02400{bottom:707.160234px;}
.yc_c02400{bottom:716.880450px;}
.ya_c02400{bottom:796.438506px;}
.y9_c02400{bottom:877.438722px;}
.y7_c02400{bottom:926.759730px;}
.y3_c02400{bottom:944.760306px;}
.y8_c02400{bottom:979.319226px;}
.y6_c02400{bottom:1012.439478px;}
.y5_c02400{bottom:1030.440054px;}
.y2_c02400{bottom:1063.560306px;}
.y4_c02400{bottom:1079.759874px;}
.y1_c02400{bottom:1097.760450px;}
.ye_c02400{bottom:1134.840450px;}
.h3_c02400{height:32.530781px;}
.h1_c02400{height:41.696016px;}
.h2_c02400{height:41.812031px;}
.h5_c02400{height:54.654737px;}
.h4_c02400{height:74.817456px;}
.h6_c02400{height:78.480000px;}
.h0_c02400{height:1263.000000px;}
.w2_c02400{width:215.280000px;}
.w1_c02400{width:892.500000px;}
.w0_c02400{width:892.830000px;}
.x0_c02400{left:0.000000px;}
.xd_c02400{left:117.000000px;}
.x8_c02400{left:440.999856px;}
.x4_c02400{left:445.680576px;}
.xb_c02400{left:451.080000px;}
.x7_c02400{left:455.399604px;}
.x5_c02400{left:461.880144px;}
.x1_c02400{left:463.320000px;}
.xa_c02400{left:483.480360px;}
.x9_c02400{left:492.119496px;}
.x6_c02400{left:493.200576px;}
.xc_c02400{left:506.880360px;}
.x3_c02400{left:511.919892px;}
.x2_c02400{left:526.679604px;}
.xe_c02400{left:569.520000px;}
.xf_c02400{left:622.800000px;}
@media print{
.v0_c02400{vertical-align:0.000000pt;}
.v2_c02400{vertical-align:1.279488pt;}
.v1_c02400{vertical-align:29.441280pt;}
.ls19_c02400{letter-spacing:-1.064448pt;}
.lsa_c02400{letter-spacing:-0.688512pt;}
.lsc_c02400{letter-spacing:-0.642048pt;}
.ls18_c02400{letter-spacing:-0.637824pt;}
.lsb_c02400{letter-spacing:-0.511104pt;}
.ls1a_c02400{letter-spacing:-0.321024pt;}
.ls11_c02400{letter-spacing:-0.287232pt;}
.ls13_c02400{letter-spacing:-0.244992pt;}
.ls10_c02400{letter-spacing:-0.232320pt;}
.ls7_c02400{letter-spacing:-0.215424pt;}
.ls8_c02400{letter-spacing:-0.211200pt;}
.ls4_c02400{letter-spacing:-0.105600pt;}
.ls17_c02400{letter-spacing:0.000000pt;}
.ls2_c02400{letter-spacing:0.005376pt;}
.ls15_c02400{letter-spacing:0.054912pt;}
.ls6_c02400{letter-spacing:0.114048pt;}
.ls5_c02400{letter-spacing:0.215424pt;}
.lse_c02400{letter-spacing:0.451968pt;}
.ls16_c02400{letter-spacing:0.456960pt;}
.ls12_c02400{letter-spacing:0.477312pt;}
.lsd_c02400{letter-spacing:0.515328pt;}
.ls14_c02400{letter-spacing:0.528000pt;}
.ls9_c02400{letter-spacing:0.532224pt;}
.ls3_c02400{letter-spacing:0.544896pt;}
.lsf_c02400{letter-spacing:0.608256pt;}
.ls1_c02400{letter-spacing:0.637824pt;}
.ls0_c02400{letter-spacing:0.642048pt;}
.wsd_c02400{word-spacing:-13.445376pt;}
.ws2_c02400{word-spacing:-11.202048pt;}
.ws9_c02400{word-spacing:-11.168256pt;}
.ws10_c02400{word-spacing:-11.088000pt;}
.ws6_c02400{word-spacing:-11.075328pt;}
.wsa_c02400{word-spacing:-11.037312pt;}
.ws7_c02400{word-spacing:-11.011968pt;}
.ws3_c02400{word-spacing:-10.348800pt;}
.wsf_c02400{word-spacing:-10.344576pt;}
.ws1c_c02400{word-spacing:-1.919232pt;}
.ws1d_c02400{word-spacing:-0.963072pt;}
.ws17_c02400{word-spacing:-0.958848pt;}
.ws11_c02400{word-spacing:-0.865920pt;}
.ws13_c02400{word-spacing:-0.536448pt;}
.ws1b_c02400{word-spacing:-0.375936pt;}
.ws14_c02400{word-spacing:-0.105600pt;}
.ws18_c02400{word-spacing:-0.088704pt;}
.ws1a_c02400{word-spacing:-0.076032pt;}
.ws19_c02400{word-spacing:-0.033792pt;}
.ws12_c02400{word-spacing:0.000000pt;}
.ws1e_c02400{word-spacing:0.316800pt;}
.ws16_c02400{word-spacing:0.321024pt;}
.ws15_c02400{word-spacing:0.367488pt;}
.ws1f_c02400{word-spacing:0.743424pt;}
.wsb_c02400{word-spacing:26.932224pt;}
.wsc_c02400{word-spacing:29.600256pt;}
.ws8_c02400{word-spacing:32.127744pt;}
.ws1_c02400{word-spacing:33.563904pt;}
.ws0_c02400{word-spacing:33.796224pt;}
.ws4_c02400{word-spacing:34.860672pt;}
.ws5_c02400{word-spacing:35.468928pt;}
.wse_c02400{word-spacing:37.357056pt;}
._0_c02400{margin-left:-1.731840pt;}
._2_c02400{width:1.317888pt;}
._4_c02400{width:3.472128pt;}
._5_c02400{width:19.062912pt;}
._1_c02400{width:44.668800pt;}
._3_c02400{width:45.805056pt;}
.fs0_c02400{font-size:42.240000pt;}
.fs1_c02400{font-size:53.760000pt;}
.y0_c02400{bottom:0.000000pt;}
.y19_c02400{bottom:58.560400pt;}
.y1c_c02400{bottom:130.666715pt;}
.y1e_c02400{bottom:165.866875pt;}
.y1d_c02400{bottom:174.507067pt;}
.y1b_c02400{bottom:245.226875pt;}
.y18_c02400{bottom:258.666667pt;}
.y17_c02400{bottom:317.225563pt;}
.y1a_c02400{bottom:317.227067pt;}
.y15_c02400{bottom:361.386427pt;}
.y11_c02400{bottom:377.386939pt;}
.y16_c02400{bottom:407.786011pt;}
.y14_c02400{bottom:437.226235pt;}
.y13_c02400{bottom:453.226747pt;}
.y10_c02400{bottom:482.666971pt;}
.y12_c02400{bottom:497.386555pt;}
.yf_c02400{bottom:513.387067pt;}
.y1f_c02400{bottom:546.027067pt;}
.yb_c02400{bottom:593.385179pt;}
.yd_c02400{bottom:628.586875pt;}
.yc_c02400{bottom:637.227067pt;}
.ya_c02400{bottom:707.945339pt;}
.y9_c02400{bottom:779.945531pt;}
.y7_c02400{bottom:823.786427pt;}
.y3_c02400{bottom:839.786939pt;}
.y8_c02400{bottom:870.505979pt;}
.y6_c02400{bottom:899.946203pt;}
.y5_c02400{bottom:915.946715pt;}
.y2_c02400{bottom:945.386939pt;}
.y4_c02400{bottom:959.786555pt;}
.y1_c02400{bottom:975.787067pt;}
.ye_c02400{bottom:1008.747067pt;}
.h3_c02400{height:28.916250pt;}
.h1_c02400{height:37.063125pt;}
.h2_c02400{height:37.166250pt;}
.h5_c02400{height:48.581988pt;}
.h4_c02400{height:66.504405pt;}
.h6_c02400{height:69.760000pt;}
.h0_c02400{height:1122.666667pt;}
.w2_c02400{width:191.360000pt;}
.w1_c02400{width:793.333333pt;}
.w0_c02400{width:793.626667pt;}
.x0_c02400{left:0.000000pt;}
.xd_c02400{left:104.000000pt;}
.x8_c02400{left:391.999872pt;}
.x4_c02400{left:396.160512pt;}
.xb_c02400{left:400.960000pt;}
.x7_c02400{left:404.799648pt;}
.x5_c02400{left:410.560128pt;}
.x1_c02400{left:411.840000pt;}
.xa_c02400{left:429.760320pt;}
.x9_c02400{left:437.439552pt;}
.x6_c02400{left:438.400512pt;}
.xc_c02400{left:450.560320pt;}
.x3_c02400{left:455.039904pt;}
.x2_c02400{left:468.159648pt;}
.xe_c02400{left:506.240000pt;}
.xf_c02400{left:553.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_c02401 {
    display:none;
  }
  .loading-indicator_c02401.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02401 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02401 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02401" -> "#page-container .classname_c02401")
 */
.pf_c02401 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02401 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02401 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02401 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02401 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02401 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02401 {overflow:visible;}
  }
}
.c_c02401 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02401 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02401:after { /* webkit #35443 */
  content: '';
}
.t_c02401:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02401 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02401 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02401 { /* info for Javascript */
  display:none;
}
.l_c02401 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02401 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02401 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02401:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02401 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02401.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02401 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02401{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02401;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02401{font-family:ff1_c02401;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02401;src:url('chunks/assets/font_f8902b4d1bee1b19ec598f52.woff2')format("woff");}.ff2_c02401{font-family:ff2_c02401;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02401;src:url('chunks/assets/font_e8a70605252bbf80d28fd236.woff2')format("woff");}.ff3_c02401{font-family:ff3_c02401;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02401{vertical-align:0.000000px;}
.v1_c02401{vertical-align:1.439424px;}
.lse_c02401{letter-spacing:-1.197504px;}
.lsc_c02401{letter-spacing:-0.722304px;}
.ls8_c02401{letter-spacing:-0.717552px;}
.ls9_c02401{letter-spacing:-0.574992px;}
.lsf_c02401{letter-spacing:-0.361152px;}
.ls11_c02401{letter-spacing:-0.275616px;}
.lsd_c02401{letter-spacing:-0.261360px;}
.ls5_c02401{letter-spacing:-0.242352px;}
.ls6_c02401{letter-spacing:-0.237600px;}
.ls3_c02401{letter-spacing:-0.118800px;}
.ls14_c02401{letter-spacing:0.000000px;}
.ls1_c02401{letter-spacing:0.006048px;}
.ls4_c02401{letter-spacing:0.128304px;}
.lsb_c02401{letter-spacing:0.508464px;}
.ls13_c02401{letter-spacing:0.514080px;}
.ls10_c02401{letter-spacing:0.536976px;}
.lsa_c02401{letter-spacing:0.579744px;}
.ls12_c02401{letter-spacing:0.594000px;}
.ls7_c02401{letter-spacing:0.598752px;}
.ls2_c02401{letter-spacing:0.613008px;}
.ls0_c02401{letter-spacing:0.722304px;}
.sc__c02401{text-shadow:none;}
.sc0_c02401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02401{-webkit-text-stroke:0px transparent;}
.sc0_c02401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02401{word-spacing:-15.126048px;}
.ws2_c02401{word-spacing:-12.602304px;}
.wsa_c02401{word-spacing:-12.474000px;}
.ws6_c02401{word-spacing:-12.459744px;}
.ws9_c02401{word-spacing:-12.416976px;}
.wsd_c02401{word-spacing:-12.388464px;}
.ws3_c02401{word-spacing:-11.642400px;}
.ws8_c02401{word-spacing:-11.637648px;}
.ws17_c02401{word-spacing:-2.159136px;}
.ws10_c02401{word-spacing:-1.083456px;}
.wse_c02401{word-spacing:-0.974160px;}
.ws11_c02401{word-spacing:-0.118800px;}
.ws14_c02401{word-spacing:-0.099792px;}
.ws16_c02401{word-spacing:-0.085536px;}
.wsf_c02401{word-spacing:0.000000px;}
.ws12_c02401{word-spacing:0.356400px;}
.ws13_c02401{word-spacing:0.361152px;}
.ws15_c02401{word-spacing:0.836352px;}
.wsb_c02401{word-spacing:33.300288px;}
.ws1_c02401{word-spacing:37.759392px;}
.ws0_c02401{word-spacing:38.020752px;}
.ws4_c02401{word-spacing:39.218256px;}
.ws5_c02401{word-spacing:39.902544px;}
.ws7_c02401{word-spacing:42.026688px;}
._0_c02401{margin-left:-1.948320px;}
._2_c02401{width:1.482624px;}
._4_c02401{width:3.735072px;}
._5_c02401{width:21.445776px;}
._1_c02401{width:50.252400px;}
._3_c02401{width:51.530688px;}
.fc0_c02401{color:rgb(0,0,0);}
.fs0_c02401{font-size:47.520000px;}
.fs1_c02401{font-size:60.480000px;}
.y0_c02401{bottom:0.000000px;}
.y1c_c02401{bottom:65.880450px;}
.yb_c02401{bottom:66.240450px;}
.y1f_c02401{bottom:147.000054px;}
.y21_c02401{bottom:186.600234px;}
.y20_c02401{bottom:196.320450px;}
.y1e_c02401{bottom:275.880234px;}
.y1b_c02401{bottom:291.000000px;}
.y1a_c02401{bottom:356.878758px;}
.y1d_c02401{bottom:356.880450px;}
.y18_c02401{bottom:406.559730px;}
.y14_c02401{bottom:424.560306px;}
.y19_c02401{bottom:458.759262px;}
.y17_c02401{bottom:491.879514px;}
.y16_c02401{bottom:509.880090px;}
.y13_c02401{bottom:543.000342px;}
.y15_c02401{bottom:559.559874px;}
.y12_c02401{bottom:577.560450px;}
.y22_c02401{bottom:614.280450px;}
.ye_c02401{bottom:667.560054px;}
.y10_c02401{bottom:707.160234px;}
.yf_c02401{bottom:716.880450px;}
.yd_c02401{bottom:796.440234px;}
.ya_c02401{bottom:811.200000px;}
.y9_c02401{bottom:877.438722px;}
.yc_c02401{bottom:877.440450px;}
.y7_c02401{bottom:926.759730px;}
.y3_c02401{bottom:944.760306px;}
.y8_c02401{bottom:979.319226px;}
.y6_c02401{bottom:1012.439478px;}
.y5_c02401{bottom:1030.440054px;}
.y2_c02401{bottom:1063.560306px;}
.y4_c02401{bottom:1079.759874px;}
.y1_c02401{bottom:1097.760450px;}
.y11_c02401{bottom:1134.840450px;}
.h3_c02401{height:32.530781px;}
.h1_c02401{height:41.696016px;}
.h2_c02401{height:41.812031px;}
.h5_c02401{height:54.654737px;}
.h6_c02401{height:78.480000px;}
.h4_c02401{height:78.840000px;}
.h0_c02401{height:1263.000000px;}
.w2_c02401{width:215.280000px;}
.w1_c02401{width:892.500000px;}
.w0_c02401{width:892.830000px;}
.x0_c02401{left:0.000000px;}
.xf_c02401{left:117.000000px;}
.x8_c02401{left:440.999856px;}
.x4_c02401{left:445.680576px;}
.xd_c02401{left:451.080000px;}
.x7_c02401{left:455.399604px;}
.x5_c02401{left:461.880144px;}
.x1_c02401{left:463.320000px;}
.xc_c02401{left:483.479676px;}
.x9_c02401{left:492.119496px;}
.x6_c02401{left:493.200576px;}
.xe_c02401{left:506.880360px;}
.x3_c02401{left:511.919892px;}
.x2_c02401{left:526.679604px;}
.xa_c02401{left:569.520000px;}
.xb_c02401{left:622.800000px;}
@media print{
.v0_c02401{vertical-align:0.000000pt;}
.v1_c02401{vertical-align:1.279488pt;}
.lse_c02401{letter-spacing:-1.064448pt;}
.lsc_c02401{letter-spacing:-0.642048pt;}
.ls8_c02401{letter-spacing:-0.637824pt;}
.ls9_c02401{letter-spacing:-0.511104pt;}
.lsf_c02401{letter-spacing:-0.321024pt;}
.ls11_c02401{letter-spacing:-0.244992pt;}
.lsd_c02401{letter-spacing:-0.232320pt;}
.ls5_c02401{letter-spacing:-0.215424pt;}
.ls6_c02401{letter-spacing:-0.211200pt;}
.ls3_c02401{letter-spacing:-0.105600pt;}
.ls14_c02401{letter-spacing:0.000000pt;}
.ls1_c02401{letter-spacing:0.005376pt;}
.ls4_c02401{letter-spacing:0.114048pt;}
.lsb_c02401{letter-spacing:0.451968pt;}
.ls13_c02401{letter-spacing:0.456960pt;}
.ls10_c02401{letter-spacing:0.477312pt;}
.lsa_c02401{letter-spacing:0.515328pt;}
.ls12_c02401{letter-spacing:0.528000pt;}
.ls7_c02401{letter-spacing:0.532224pt;}
.ls2_c02401{letter-spacing:0.544896pt;}
.ls0_c02401{letter-spacing:0.642048pt;}
.wsc_c02401{word-spacing:-13.445376pt;}
.ws2_c02401{word-spacing:-11.202048pt;}
.wsa_c02401{word-spacing:-11.088000pt;}
.ws6_c02401{word-spacing:-11.075328pt;}
.ws9_c02401{word-spacing:-11.037312pt;}
.wsd_c02401{word-spacing:-11.011968pt;}
.ws3_c02401{word-spacing:-10.348800pt;}
.ws8_c02401{word-spacing:-10.344576pt;}
.ws17_c02401{word-spacing:-1.919232pt;}
.ws10_c02401{word-spacing:-0.963072pt;}
.wse_c02401{word-spacing:-0.865920pt;}
.ws11_c02401{word-spacing:-0.105600pt;}
.ws14_c02401{word-spacing:-0.088704pt;}
.ws16_c02401{word-spacing:-0.076032pt;}
.wsf_c02401{word-spacing:0.000000pt;}
.ws12_c02401{word-spacing:0.316800pt;}
.ws13_c02401{word-spacing:0.321024pt;}
.ws15_c02401{word-spacing:0.743424pt;}
.wsb_c02401{word-spacing:29.600256pt;}
.ws1_c02401{word-spacing:33.563904pt;}
.ws0_c02401{word-spacing:33.796224pt;}
.ws4_c02401{word-spacing:34.860672pt;}
.ws5_c02401{word-spacing:35.468928pt;}
.ws7_c02401{word-spacing:37.357056pt;}
._0_c02401{margin-left:-1.731840pt;}
._2_c02401{width:1.317888pt;}
._4_c02401{width:3.320064pt;}
._5_c02401{width:19.062912pt;}
._1_c02401{width:44.668800pt;}
._3_c02401{width:45.805056pt;}
.fs0_c02401{font-size:42.240000pt;}
.fs1_c02401{font-size:53.760000pt;}
.y0_c02401{bottom:0.000000pt;}
.y1c_c02401{bottom:58.560400pt;}
.yb_c02401{bottom:58.880400pt;}
.y1f_c02401{bottom:130.666715pt;}
.y21_c02401{bottom:165.866875pt;}
.y20_c02401{bottom:174.507067pt;}
.y1e_c02401{bottom:245.226875pt;}
.y1b_c02401{bottom:258.666667pt;}
.y1a_c02401{bottom:317.225563pt;}
.y1d_c02401{bottom:317.227067pt;}
.y18_c02401{bottom:361.386427pt;}
.y14_c02401{bottom:377.386939pt;}
.y19_c02401{bottom:407.786011pt;}
.y17_c02401{bottom:437.226235pt;}
.y16_c02401{bottom:453.226747pt;}
.y13_c02401{bottom:482.666971pt;}
.y15_c02401{bottom:497.386555pt;}
.y12_c02401{bottom:513.387067pt;}
.y22_c02401{bottom:546.027067pt;}
.ye_c02401{bottom:593.386715pt;}
.y10_c02401{bottom:628.586875pt;}
.yf_c02401{bottom:637.227067pt;}
.yd_c02401{bottom:707.946875pt;}
.ya_c02401{bottom:721.066667pt;}
.y9_c02401{bottom:779.945531pt;}
.yc_c02401{bottom:779.947067pt;}
.y7_c02401{bottom:823.786427pt;}
.y3_c02401{bottom:839.786939pt;}
.y8_c02401{bottom:870.505979pt;}
.y6_c02401{bottom:899.946203pt;}
.y5_c02401{bottom:915.946715pt;}
.y2_c02401{bottom:945.386939pt;}
.y4_c02401{bottom:959.786555pt;}
.y1_c02401{bottom:975.787067pt;}
.y11_c02401{bottom:1008.747067pt;}
.h3_c02401{height:28.916250pt;}
.h1_c02401{height:37.063125pt;}
.h2_c02401{height:37.166250pt;}
.h5_c02401{height:48.581988pt;}
.h6_c02401{height:69.760000pt;}
.h4_c02401{height:70.080000pt;}
.h0_c02401{height:1122.666667pt;}
.w2_c02401{width:191.360000pt;}
.w1_c02401{width:793.333333pt;}
.w0_c02401{width:793.626667pt;}
.x0_c02401{left:0.000000pt;}
.xf_c02401{left:104.000000pt;}
.x8_c02401{left:391.999872pt;}
.x4_c02401{left:396.160512pt;}
.xd_c02401{left:400.960000pt;}
.x7_c02401{left:404.799648pt;}
.x5_c02401{left:410.560128pt;}
.x1_c02401{left:411.840000pt;}
.xc_c02401{left:429.759712pt;}
.x9_c02401{left:437.439552pt;}
.x6_c02401{left:438.400512pt;}
.xe_c02401{left:450.560320pt;}
.x3_c02401{left:455.039904pt;}
.x2_c02401{left:468.159648pt;}
.xa_c02401{left:506.240000pt;}
.xb_c02401{left:553.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_c02402 {
    display:none;
  }
  .loading-indicator_c02402.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02402 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02402 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02402" -> "#page-container .classname_c02402")
 */
.pf_c02402 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02402 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02402 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02402 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02402 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02402 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02402 {overflow:visible;}
  }
}
.c_c02402 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02402 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02402:after { /* webkit #35443 */
  content: '';
}
.t_c02402:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02402 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02402 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02402 { /* info for Javascript */
  display:none;
}
.l_c02402 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02402 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02402 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02402:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02402 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02402.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02402 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02402{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02402;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02402{font-family:ff1_c02402;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02402;src:url('chunks/assets/font_b8b1ff5d50a8e6e9ad7b9de6.woff2')format("woff");}.ff2_c02402{font-family:ff2_c02402;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02402;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02402{font-family:ff3_c02402;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02402{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02402{vertical-align:0.000000px;}
.v1_c02402{vertical-align:1.439424px;}
.lse_c02402{letter-spacing:-0.793584px;}
.lsc_c02402{letter-spacing:-0.722304px;}
.ls9_c02402{letter-spacing:-0.717552px;}
.lsa_c02402{letter-spacing:-0.574992px;}
.ls11_c02402{letter-spacing:-0.275616px;}
.lsf_c02402{letter-spacing:-0.261360px;}
.ls6_c02402{letter-spacing:-0.242352px;}
.ls7_c02402{letter-spacing:-0.237600px;}
.ls3_c02402{letter-spacing:-0.118800px;}
.ls14_c02402{letter-spacing:0.000000px;}
.ls1_c02402{letter-spacing:0.006048px;}
.ls5_c02402{letter-spacing:0.128304px;}
.lsd_c02402{letter-spacing:0.508464px;}
.ls13_c02402{letter-spacing:0.514080px;}
.ls10_c02402{letter-spacing:0.536976px;}
.lsb_c02402{letter-spacing:0.579744px;}
.ls12_c02402{letter-spacing:0.594000px;}
.ls8_c02402{letter-spacing:0.598752px;}
.ls2_c02402{letter-spacing:0.613008px;}
.ls4_c02402{letter-spacing:0.717552px;}
.ls0_c02402{letter-spacing:0.722304px;}
.sc__c02402{text-shadow:none;}
.sc0_c02402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02402{-webkit-text-stroke:0px transparent;}
.sc0_c02402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02402{word-spacing:-15.126048px;}
.ws2_c02402{word-spacing:-12.602304px;}
.wsa_c02402{word-spacing:-12.474000px;}
.ws8_c02402{word-spacing:-12.459744px;}
.ws9_c02402{word-spacing:-12.416976px;}
.ws3_c02402{word-spacing:-11.642400px;}
.ws16_c02402{word-spacing:-2.159136px;}
.ws11_c02402{word-spacing:-1.083456px;}
.wsd_c02402{word-spacing:-0.974160px;}
.wsf_c02402{word-spacing:-0.118800px;}
.ws14_c02402{word-spacing:-0.099792px;}
.ws15_c02402{word-spacing:-0.085536px;}
.wse_c02402{word-spacing:0.000000px;}
.ws10_c02402{word-spacing:0.356400px;}
.ws12_c02402{word-spacing:0.361152px;}
.ws13_c02402{word-spacing:0.432432px;}
.wsb_c02402{word-spacing:33.300288px;}
.ws6_c02402{word-spacing:36.742464px;}
.ws1_c02402{word-spacing:37.759392px;}
.ws0_c02402{word-spacing:38.020752px;}
.ws4_c02402{word-spacing:39.218256px;}
.ws5_c02402{word-spacing:39.902544px;}
.ws7_c02402{word-spacing:42.026688px;}
._0_c02402{margin-left:-1.948320px;}
._2_c02402{width:1.482624px;}
._4_c02402{width:3.735072px;}
._1_c02402{width:50.252400px;}
._3_c02402{width:51.530688px;}
.fc0_c02402{color:rgb(0,0,0);}
.fs0_c02402{font-size:47.520000px;}
.fs1_c02402{font-size:60.480000px;}
.y0_c02402{bottom:0.000000px;}
.y19_c02402{bottom:146.998362px;}
.y1b_c02402{bottom:186.600234px;}
.y1a_c02402{bottom:196.320450px;}
.y18_c02402{bottom:275.878542px;}
.y17_c02402{bottom:356.878758px;}
.y15_c02402{bottom:406.559730px;}
.y11_c02402{bottom:424.560306px;}
.y16_c02402{bottom:458.759262px;}
.y14_c02402{bottom:491.879514px;}
.y13_c02402{bottom:509.880090px;}
.y10_c02402{bottom:543.000342px;}
.y12_c02402{bottom:559.559874px;}
.yf_c02402{bottom:577.560450px;}
.y1c_c02402{bottom:614.280450px;}
.yb_c02402{bottom:667.558326px;}
.yd_c02402{bottom:707.160234px;}
.yc_c02402{bottom:716.880450px;}
.ya_c02402{bottom:796.438506px;}
.y9_c02402{bottom:877.438722px;}
.y7_c02402{bottom:926.759730px;}
.y3_c02402{bottom:944.760306px;}
.y8_c02402{bottom:979.319226px;}
.y6_c02402{bottom:1012.439478px;}
.y5_c02402{bottom:1030.440054px;}
.y2_c02402{bottom:1063.560306px;}
.y4_c02402{bottom:1079.759874px;}
.y1_c02402{bottom:1097.760450px;}
.ye_c02402{bottom:1134.840450px;}
.h3_c02402{height:32.530781px;}
.h1_c02402{height:41.696016px;}
.h2_c02402{height:41.812031px;}
.h4_c02402{height:54.654737px;}
.h0_c02402{height:1263.000000px;}
.w1_c02402{width:892.500000px;}
.w0_c02402{width:892.830000px;}
.x0_c02402{left:0.000000px;}
.xd_c02402{left:117.000000px;}
.x8_c02402{left:440.999856px;}
.x4_c02402{left:445.680576px;}
.xb_c02402{left:451.080000px;}
.x7_c02402{left:455.399604px;}
.x5_c02402{left:461.880144px;}
.x1_c02402{left:463.320000px;}
.xa_c02402{left:483.480360px;}
.x9_c02402{left:492.119496px;}
.x6_c02402{left:493.200576px;}
.xc_c02402{left:506.880360px;}
.x3_c02402{left:511.919892px;}
.x2_c02402{left:526.679604px;}
@media print{
.v0_c02402{vertical-align:0.000000pt;}
.v1_c02402{vertical-align:1.279488pt;}
.lse_c02402{letter-spacing:-0.705408pt;}
.lsc_c02402{letter-spacing:-0.642048pt;}
.ls9_c02402{letter-spacing:-0.637824pt;}
.lsa_c02402{letter-spacing:-0.511104pt;}
.ls11_c02402{letter-spacing:-0.244992pt;}
.lsf_c02402{letter-spacing:-0.232320pt;}
.ls6_c02402{letter-spacing:-0.215424pt;}
.ls7_c02402{letter-spacing:-0.211200pt;}
.ls3_c02402{letter-spacing:-0.105600pt;}
.ls14_c02402{letter-spacing:0.000000pt;}
.ls1_c02402{letter-spacing:0.005376pt;}
.ls5_c02402{letter-spacing:0.114048pt;}
.lsd_c02402{letter-spacing:0.451968pt;}
.ls13_c02402{letter-spacing:0.456960pt;}
.ls10_c02402{letter-spacing:0.477312pt;}
.lsb_c02402{letter-spacing:0.515328pt;}
.ls12_c02402{letter-spacing:0.528000pt;}
.ls8_c02402{letter-spacing:0.532224pt;}
.ls2_c02402{letter-spacing:0.544896pt;}
.ls4_c02402{letter-spacing:0.637824pt;}
.ls0_c02402{letter-spacing:0.642048pt;}
.wsc_c02402{word-spacing:-13.445376pt;}
.ws2_c02402{word-spacing:-11.202048pt;}
.wsa_c02402{word-spacing:-11.088000pt;}
.ws8_c02402{word-spacing:-11.075328pt;}
.ws9_c02402{word-spacing:-11.037312pt;}
.ws3_c02402{word-spacing:-10.348800pt;}
.ws16_c02402{word-spacing:-1.919232pt;}
.ws11_c02402{word-spacing:-0.963072pt;}
.wsd_c02402{word-spacing:-0.865920pt;}
.wsf_c02402{word-spacing:-0.105600pt;}
.ws14_c02402{word-spacing:-0.088704pt;}
.ws15_c02402{word-spacing:-0.076032pt;}
.wse_c02402{word-spacing:0.000000pt;}
.ws10_c02402{word-spacing:0.316800pt;}
.ws12_c02402{word-spacing:0.321024pt;}
.ws13_c02402{word-spacing:0.384384pt;}
.wsb_c02402{word-spacing:29.600256pt;}
.ws6_c02402{word-spacing:32.659968pt;}
.ws1_c02402{word-spacing:33.563904pt;}
.ws0_c02402{word-spacing:33.796224pt;}
.ws4_c02402{word-spacing:34.860672pt;}
.ws5_c02402{word-spacing:35.468928pt;}
.ws7_c02402{word-spacing:37.357056pt;}
._0_c02402{margin-left:-1.731840pt;}
._2_c02402{width:1.317888pt;}
._4_c02402{width:3.320064pt;}
._1_c02402{width:44.668800pt;}
._3_c02402{width:45.805056pt;}
.fs0_c02402{font-size:42.240000pt;}
.fs1_c02402{font-size:53.760000pt;}
.y0_c02402{bottom:0.000000pt;}
.y19_c02402{bottom:130.665211pt;}
.y1b_c02402{bottom:165.866875pt;}
.y1a_c02402{bottom:174.507067pt;}
.y18_c02402{bottom:245.225371pt;}
.y17_c02402{bottom:317.225563pt;}
.y15_c02402{bottom:361.386427pt;}
.y11_c02402{bottom:377.386939pt;}
.y16_c02402{bottom:407.786011pt;}
.y14_c02402{bottom:437.226235pt;}
.y13_c02402{bottom:453.226747pt;}
.y10_c02402{bottom:482.666971pt;}
.y12_c02402{bottom:497.386555pt;}
.yf_c02402{bottom:513.387067pt;}
.y1c_c02402{bottom:546.027067pt;}
.yb_c02402{bottom:593.385179pt;}
.yd_c02402{bottom:628.586875pt;}
.yc_c02402{bottom:637.227067pt;}
.ya_c02402{bottom:707.945339pt;}
.y9_c02402{bottom:779.945531pt;}
.y7_c02402{bottom:823.786427pt;}
.y3_c02402{bottom:839.786939pt;}
.y8_c02402{bottom:870.505979pt;}
.y6_c02402{bottom:899.946203pt;}
.y5_c02402{bottom:915.946715pt;}
.y2_c02402{bottom:945.386939pt;}
.y4_c02402{bottom:959.786555pt;}
.y1_c02402{bottom:975.787067pt;}
.ye_c02402{bottom:1008.747067pt;}
.h3_c02402{height:28.916250pt;}
.h1_c02402{height:37.063125pt;}
.h2_c02402{height:37.166250pt;}
.h4_c02402{height:48.581988pt;}
.h0_c02402{height:1122.666667pt;}
.w1_c02402{width:793.333333pt;}
.w0_c02402{width:793.626667pt;}
.x0_c02402{left:0.000000pt;}
.xd_c02402{left:104.000000pt;}
.x8_c02402{left:391.999872pt;}
.x4_c02402{left:396.160512pt;}
.xb_c02402{left:400.960000pt;}
.x7_c02402{left:404.799648pt;}
.x5_c02402{left:410.560128pt;}
.x1_c02402{left:411.840000pt;}
.xa_c02402{left:429.760320pt;}
.x9_c02402{left:437.439552pt;}
.x6_c02402{left:438.400512pt;}
.xc_c02402{left:450.560320pt;}
.x3_c02402{left:455.039904pt;}
.x2_c02402{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02403 {
    display:none;
  }
  .loading-indicator_c02403.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02403 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02403 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02403" -> "#page-container .classname_c02403")
 */
.pf_c02403 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02403 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02403 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02403 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02403 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02403 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02403 {overflow:visible;}
  }
}
.c_c02403 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02403 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02403:after { /* webkit #35443 */
  content: '';
}
.t_c02403:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02403 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02403 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02403 { /* info for Javascript */
  display:none;
}
.l_c02403 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02403 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02403 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02403:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02403 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02403.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02403 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02403{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02403;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02403{font-family:ff1_c02403;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02403;src:url('chunks/assets/font_464990599169d24258b2ea4f.woff2')format("woff");}.ff2_c02403{font-family:ff2_c02403;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02403;src:url('chunks/assets/font_113936d2c8f3a34d8b4f9e88.woff2')format("woff");}.ff3_c02403{font-family:ff3_c02403;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02403{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02403{vertical-align:0.000000px;}
.v1_c02403{vertical-align:1.439424px;}
.ls14_c02403{letter-spacing:-1.197504px;}
.ls13_c02403{letter-spacing:-0.722304px;}
.ls9_c02403{letter-spacing:-0.717552px;}
.lsa_c02403{letter-spacing:-0.574992px;}
.ls15_c02403{letter-spacing:-0.380160px;}
.lsf_c02403{letter-spacing:-0.275616px;}
.lsd_c02403{letter-spacing:-0.261360px;}
.ls6_c02403{letter-spacing:-0.242352px;}
.ls7_c02403{letter-spacing:-0.237600px;}
.ls4_c02403{letter-spacing:-0.118800px;}
.ls12_c02403{letter-spacing:0.000000px;}
.ls2_c02403{letter-spacing:0.006048px;}
.ls5_c02403{letter-spacing:0.128304px;}
.lsc_c02403{letter-spacing:0.508464px;}
.ls11_c02403{letter-spacing:0.514080px;}
.lse_c02403{letter-spacing:0.536976px;}
.lsb_c02403{letter-spacing:0.579744px;}
.ls10_c02403{letter-spacing:0.594000px;}
.ls8_c02403{letter-spacing:0.598752px;}
.ls3_c02403{letter-spacing:0.613008px;}
.ls1_c02403{letter-spacing:0.717552px;}
.ls0_c02403{letter-spacing:0.722304px;}
.sc__c02403{text-shadow:none;}
.sc0_c02403{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02403{-webkit-text-stroke:0px transparent;}
.sc0_c02403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02403{word-spacing:-15.126048px;}
.ws2_c02403{word-spacing:-12.602304px;}
.wsa_c02403{word-spacing:-12.474000px;}
.ws6_c02403{word-spacing:-12.459744px;}
.ws9_c02403{word-spacing:-12.416976px;}
.ws7_c02403{word-spacing:-12.388464px;}
.ws3_c02403{word-spacing:-11.642400px;}
.ws17_c02403{word-spacing:-2.159136px;}
.ws15_c02403{word-spacing:-1.083456px;}
.ws13_c02403{word-spacing:-1.078704px;}
.wsf_c02403{word-spacing:-0.974160px;}
.ws11_c02403{word-spacing:-0.118800px;}
.ws14_c02403{word-spacing:-0.099792px;}
.ws16_c02403{word-spacing:-0.085536px;}
.ws10_c02403{word-spacing:0.000000px;}
.ws1a_c02403{word-spacing:0.019008px;}
.ws12_c02403{word-spacing:0.356400px;}
.ws18_c02403{word-spacing:0.361152px;}
.ws19_c02403{word-spacing:0.836352px;}
.wsb_c02403{word-spacing:33.300288px;}
.ws8_c02403{word-spacing:36.143712px;}
.wsd_c02403{word-spacing:36.742464px;}
.ws1_c02403{word-spacing:37.759392px;}
.ws0_c02403{word-spacing:38.020752px;}
.ws4_c02403{word-spacing:39.218256px;}
.ws5_c02403{word-spacing:39.902544px;}
.wse_c02403{word-spacing:42.026688px;}
._0_c02403{margin-left:-1.948320px;}
._2_c02403{width:1.482624px;}
._4_c02403{width:3.735072px;}
._1_c02403{width:50.252400px;}
._3_c02403{width:51.530688px;}
.fc0_c02403{color:rgb(0,0,0);}
.fs0_c02403{font-size:47.520000px;}
.fs1_c02403{font-size:60.480000px;}
.y0_c02403{bottom:0.000000px;}
.y19_c02403{bottom:65.880450px;}
.y1c_c02403{bottom:147.000054px;}
.y1e_c02403{bottom:186.600234px;}
.y1d_c02403{bottom:196.320450px;}
.y1b_c02403{bottom:275.880234px;}
.y18_c02403{bottom:291.000000px;}
.y17_c02403{bottom:356.878758px;}
.y1a_c02403{bottom:356.880450px;}
.y15_c02403{bottom:406.559730px;}
.y11_c02403{bottom:424.560306px;}
.y16_c02403{bottom:458.759262px;}
.y14_c02403{bottom:491.879514px;}
.y13_c02403{bottom:509.880090px;}
.y10_c02403{bottom:543.000342px;}
.y12_c02403{bottom:559.559874px;}
.yf_c02403{bottom:577.560450px;}
.y1f_c02403{bottom:614.280450px;}
.yb_c02403{bottom:667.558326px;}
.yd_c02403{bottom:707.160234px;}
.yc_c02403{bottom:716.880450px;}
.ya_c02403{bottom:796.438506px;}
.y9_c02403{bottom:877.438722px;}
.y7_c02403{bottom:926.759730px;}
.y3_c02403{bottom:944.760306px;}
.y8_c02403{bottom:979.319226px;}
.y6_c02403{bottom:1012.439478px;}
.y5_c02403{bottom:1030.440054px;}
.y2_c02403{bottom:1063.560306px;}
.y4_c02403{bottom:1079.759874px;}
.y1_c02403{bottom:1097.760450px;}
.ye_c02403{bottom:1134.840450px;}
.h3_c02403{height:32.530781px;}
.h1_c02403{height:41.696016px;}
.h2_c02403{height:41.812031px;}
.h4_c02403{height:54.654737px;}
.h5_c02403{height:78.480000px;}
.h0_c02403{height:1263.000000px;}
.w2_c02403{width:215.280000px;}
.w1_c02403{width:892.500000px;}
.w0_c02403{width:892.830000px;}
.x0_c02403{left:0.000000px;}
.xd_c02403{left:117.000000px;}
.x8_c02403{left:440.999856px;}
.x4_c02403{left:445.680576px;}
.xb_c02403{left:451.080000px;}
.x7_c02403{left:455.399604px;}
.x5_c02403{left:461.880144px;}
.x1_c02403{left:463.320000px;}
.xa_c02403{left:483.480360px;}
.x9_c02403{left:492.119496px;}
.x6_c02403{left:493.200576px;}
.xc_c02403{left:506.880360px;}
.x3_c02403{left:511.919892px;}
.x2_c02403{left:526.679604px;}
.xe_c02403{left:569.520000px;}
.xf_c02403{left:650.880000px;}
@media print{
.v0_c02403{vertical-align:0.000000pt;}
.v1_c02403{vertical-align:1.279488pt;}
.ls14_c02403{letter-spacing:-1.064448pt;}
.ls13_c02403{letter-spacing:-0.642048pt;}
.ls9_c02403{letter-spacing:-0.637824pt;}
.lsa_c02403{letter-spacing:-0.511104pt;}
.ls15_c02403{letter-spacing:-0.337920pt;}
.lsf_c02403{letter-spacing:-0.244992pt;}
.lsd_c02403{letter-spacing:-0.232320pt;}
.ls6_c02403{letter-spacing:-0.215424pt;}
.ls7_c02403{letter-spacing:-0.211200pt;}
.ls4_c02403{letter-spacing:-0.105600pt;}
.ls12_c02403{letter-spacing:0.000000pt;}
.ls2_c02403{letter-spacing:0.005376pt;}
.ls5_c02403{letter-spacing:0.114048pt;}
.lsc_c02403{letter-spacing:0.451968pt;}
.ls11_c02403{letter-spacing:0.456960pt;}
.lse_c02403{letter-spacing:0.477312pt;}
.lsb_c02403{letter-spacing:0.515328pt;}
.ls10_c02403{letter-spacing:0.528000pt;}
.ls8_c02403{letter-spacing:0.532224pt;}
.ls3_c02403{letter-spacing:0.544896pt;}
.ls1_c02403{letter-spacing:0.637824pt;}
.ls0_c02403{letter-spacing:0.642048pt;}
.wsc_c02403{word-spacing:-13.445376pt;}
.ws2_c02403{word-spacing:-11.202048pt;}
.wsa_c02403{word-spacing:-11.088000pt;}
.ws6_c02403{word-spacing:-11.075328pt;}
.ws9_c02403{word-spacing:-11.037312pt;}
.ws7_c02403{word-spacing:-11.011968pt;}
.ws3_c02403{word-spacing:-10.348800pt;}
.ws17_c02403{word-spacing:-1.919232pt;}
.ws15_c02403{word-spacing:-0.963072pt;}
.ws13_c02403{word-spacing:-0.958848pt;}
.wsf_c02403{word-spacing:-0.865920pt;}
.ws11_c02403{word-spacing:-0.105600pt;}
.ws14_c02403{word-spacing:-0.088704pt;}
.ws16_c02403{word-spacing:-0.076032pt;}
.ws10_c02403{word-spacing:0.000000pt;}
.ws1a_c02403{word-spacing:0.016896pt;}
.ws12_c02403{word-spacing:0.316800pt;}
.ws18_c02403{word-spacing:0.321024pt;}
.ws19_c02403{word-spacing:0.743424pt;}
.wsb_c02403{word-spacing:29.600256pt;}
.ws8_c02403{word-spacing:32.127744pt;}
.wsd_c02403{word-spacing:32.659968pt;}
.ws1_c02403{word-spacing:33.563904pt;}
.ws0_c02403{word-spacing:33.796224pt;}
.ws4_c02403{word-spacing:34.860672pt;}
.ws5_c02403{word-spacing:35.468928pt;}
.wse_c02403{word-spacing:37.357056pt;}
._0_c02403{margin-left:-1.731840pt;}
._2_c02403{width:1.317888pt;}
._4_c02403{width:3.320064pt;}
._1_c02403{width:44.668800pt;}
._3_c02403{width:45.805056pt;}
.fs0_c02403{font-size:42.240000pt;}
.fs1_c02403{font-size:53.760000pt;}
.y0_c02403{bottom:0.000000pt;}
.y19_c02403{bottom:58.560400pt;}
.y1c_c02403{bottom:130.666715pt;}
.y1e_c02403{bottom:165.866875pt;}
.y1d_c02403{bottom:174.507067pt;}
.y1b_c02403{bottom:245.226875pt;}
.y18_c02403{bottom:258.666667pt;}
.y17_c02403{bottom:317.225563pt;}
.y1a_c02403{bottom:317.227067pt;}
.y15_c02403{bottom:361.386427pt;}
.y11_c02403{bottom:377.386939pt;}
.y16_c02403{bottom:407.786011pt;}
.y14_c02403{bottom:437.226235pt;}
.y13_c02403{bottom:453.226747pt;}
.y10_c02403{bottom:482.666971pt;}
.y12_c02403{bottom:497.386555pt;}
.yf_c02403{bottom:513.387067pt;}
.y1f_c02403{bottom:546.027067pt;}
.yb_c02403{bottom:593.385179pt;}
.yd_c02403{bottom:628.586875pt;}
.yc_c02403{bottom:637.227067pt;}
.ya_c02403{bottom:707.945339pt;}
.y9_c02403{bottom:779.945531pt;}
.y7_c02403{bottom:823.786427pt;}
.y3_c02403{bottom:839.786939pt;}
.y8_c02403{bottom:870.505979pt;}
.y6_c02403{bottom:899.946203pt;}
.y5_c02403{bottom:915.946715pt;}
.y2_c02403{bottom:945.386939pt;}
.y4_c02403{bottom:959.786555pt;}
.y1_c02403{bottom:975.787067pt;}
.ye_c02403{bottom:1008.747067pt;}
.h3_c02403{height:28.916250pt;}
.h1_c02403{height:37.063125pt;}
.h2_c02403{height:37.166250pt;}
.h4_c02403{height:48.581988pt;}
.h5_c02403{height:69.760000pt;}
.h0_c02403{height:1122.666667pt;}
.w2_c02403{width:191.360000pt;}
.w1_c02403{width:793.333333pt;}
.w0_c02403{width:793.626667pt;}
.x0_c02403{left:0.000000pt;}
.xd_c02403{left:104.000000pt;}
.x8_c02403{left:391.999872pt;}
.x4_c02403{left:396.160512pt;}
.xb_c02403{left:400.960000pt;}
.x7_c02403{left:404.799648pt;}
.x5_c02403{left:410.560128pt;}
.x1_c02403{left:411.840000pt;}
.xa_c02403{left:429.760320pt;}
.x9_c02403{left:437.439552pt;}
.x6_c02403{left:438.400512pt;}
.xc_c02403{left:450.560320pt;}
.x3_c02403{left:455.039904pt;}
.x2_c02403{left:468.159648pt;}
.xe_c02403{left:506.240000pt;}
.xf_c02403{left:578.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02404 {
    display:none;
  }
  .loading-indicator_c02404.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02404 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02404 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02404" -> "#page-container .classname_c02404")
 */
.pf_c02404 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02404 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02404 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02404 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02404 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02404 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02404 {overflow:visible;}
  }
}
.c_c02404 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02404 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02404:after { /* webkit #35443 */
  content: '';
}
.t_c02404:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02404 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02404 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02404 { /* info for Javascript */
  display:none;
}
.l_c02404 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02404 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02404 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02404:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02404 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02404.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02404 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02404{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02404;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02404{font-family:ff1_c02404;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02404;src:url('chunks/assets/font_e4ac2d85aed7b84565331176.woff2')format("woff");}.ff2_c02404{font-family:ff2_c02404;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02404;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02404{font-family:ff3_c02404;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02404{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02404{vertical-align:0.000000px;}
.v1_c02404{vertical-align:1.439424px;}
.v2_c02404{vertical-align:33.121440px;}
.ls14_c02404{letter-spacing:-0.736560px;}
.ls9_c02404{letter-spacing:-0.717552px;}
.lsa_c02404{letter-spacing:-0.574992px;}
.ls15_c02404{letter-spacing:-0.389664px;}
.ls10_c02404{letter-spacing:-0.275616px;}
.lsd_c02404{letter-spacing:-0.261360px;}
.ls6_c02404{letter-spacing:-0.242352px;}
.ls7_c02404{letter-spacing:-0.237600px;}
.ls4_c02404{letter-spacing:-0.118800px;}
.lse_c02404{letter-spacing:-0.047520px;}
.ls13_c02404{letter-spacing:0.000000px;}
.ls2_c02404{letter-spacing:0.006048px;}
.ls5_c02404{letter-spacing:0.128304px;}
.lsc_c02404{letter-spacing:0.508464px;}
.ls12_c02404{letter-spacing:0.514080px;}
.lsf_c02404{letter-spacing:0.536976px;}
.lsb_c02404{letter-spacing:0.579744px;}
.ls11_c02404{letter-spacing:0.594000px;}
.ls8_c02404{letter-spacing:0.598752px;}
.ls3_c02404{letter-spacing:0.613008px;}
.ls1_c02404{letter-spacing:0.717552px;}
.ls0_c02404{letter-spacing:0.722304px;}
.sc__c02404{text-shadow:none;}
.sc0_c02404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02404{-webkit-text-stroke:0px transparent;}
.sc0_c02404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02404{word-spacing:-15.126048px;}
.ws2_c02404{word-spacing:-12.602304px;}
.wsb_c02404{word-spacing:-12.474000px;}
.ws6_c02404{word-spacing:-12.459744px;}
.wsa_c02404{word-spacing:-12.416976px;}
.ws7_c02404{word-spacing:-12.388464px;}
.ws3_c02404{word-spacing:-11.642400px;}
.ws18_c02404{word-spacing:-2.159136px;}
.ws1a_c02404{word-spacing:-1.083456px;}
.ws14_c02404{word-spacing:-1.078704px;}
.ws10_c02404{word-spacing:-0.974160px;}
.ws16_c02404{word-spacing:-0.313632px;}
.ws12_c02404{word-spacing:-0.118800px;}
.ws15_c02404{word-spacing:-0.099792px;}
.ws17_c02404{word-spacing:-0.085536px;}
.ws11_c02404{word-spacing:0.000000px;}
.ws1b_c02404{word-spacing:0.028512px;}
.ws13_c02404{word-spacing:0.356400px;}
.ws19_c02404{word-spacing:0.375408px;}
.wsf_c02404{word-spacing:30.298752px;}
.wsc_c02404{word-spacing:33.300288px;}
.ws8_c02404{word-spacing:36.143712px;}
.wse_c02404{word-spacing:36.742464px;}
.ws1_c02404{word-spacing:37.759392px;}
.ws0_c02404{word-spacing:38.020752px;}
.ws4_c02404{word-spacing:39.218256px;}
.ws9_c02404{word-spacing:39.593664px;}
.ws5_c02404{word-spacing:39.902544px;}
._0_c02404{margin-left:-1.948320px;}
._2_c02404{width:1.482624px;}
._4_c02404{width:3.735072px;}
._1_c02404{width:50.252400px;}
._3_c02404{width:51.530688px;}
._5_c02404{width:55.816992px;}
._6_c02404{width:112.132944px;}
.fc0_c02404{color:rgb(0,0,0);}
.fs0_c02404{font-size:47.520000px;}
.fs1_c02404{font-size:60.480000px;}
.y0_c02404{bottom:0.000000px;}
.y1a_c02404{bottom:146.998362px;}
.y1c_c02404{bottom:186.600234px;}
.y1b_c02404{bottom:196.320450px;}
.y19_c02404{bottom:275.878542px;}
.y18_c02404{bottom:356.878758px;}
.y16_c02404{bottom:406.559730px;}
.y12_c02404{bottom:424.560306px;}
.y17_c02404{bottom:458.759262px;}
.y15_c02404{bottom:491.879514px;}
.y14_c02404{bottom:509.880090px;}
.y11_c02404{bottom:543.000342px;}
.y13_c02404{bottom:559.559874px;}
.y10_c02404{bottom:577.560450px;}
.y1d_c02404{bottom:614.280450px;}
.yc_c02404{bottom:667.558326px;}
.ye_c02404{bottom:707.160234px;}
.yd_c02404{bottom:716.880450px;}
.yb_c02404{bottom:781.318830px;}
.ya_c02404{bottom:796.438506px;}
.y9_c02404{bottom:877.438722px;}
.y7_c02404{bottom:926.759730px;}
.y3_c02404{bottom:944.760306px;}
.y8_c02404{bottom:979.319226px;}
.y6_c02404{bottom:1012.439478px;}
.y5_c02404{bottom:1030.440054px;}
.y2_c02404{bottom:1063.560306px;}
.y4_c02404{bottom:1079.759874px;}
.y1_c02404{bottom:1097.760450px;}
.yf_c02404{bottom:1134.840450px;}
.h3_c02404{height:32.530781px;}
.h1_c02404{height:41.696016px;}
.h2_c02404{height:41.812031px;}
.h4_c02404{height:54.654737px;}
.h5_c02404{height:74.817456px;}
.h0_c02404{height:1263.000000px;}
.w1_c02404{width:892.500000px;}
.w0_c02404{width:892.830000px;}
.x0_c02404{left:0.000000px;}
.xe_c02404{left:117.000000px;}
.x8_c02404{left:440.999856px;}
.x4_c02404{left:445.680576px;}
.xc_c02404{left:451.080000px;}
.x7_c02404{left:455.399604px;}
.x5_c02404{left:461.880144px;}
.x1_c02404{left:463.320000px;}
.xb_c02404{left:483.480360px;}
.x9_c02404{left:492.119496px;}
.x6_c02404{left:493.200576px;}
.xd_c02404{left:506.880360px;}
.x3_c02404{left:511.919892px;}
.x2_c02404{left:526.679604px;}
.xa_c02404{left:569.880036px;}
@media print{
.v0_c02404{vertical-align:0.000000pt;}
.v1_c02404{vertical-align:1.279488pt;}
.v2_c02404{vertical-align:29.441280pt;}
.ls14_c02404{letter-spacing:-0.654720pt;}
.ls9_c02404{letter-spacing:-0.637824pt;}
.lsa_c02404{letter-spacing:-0.511104pt;}
.ls15_c02404{letter-spacing:-0.346368pt;}
.ls10_c02404{letter-spacing:-0.244992pt;}
.lsd_c02404{letter-spacing:-0.232320pt;}
.ls6_c02404{letter-spacing:-0.215424pt;}
.ls7_c02404{letter-spacing:-0.211200pt;}
.ls4_c02404{letter-spacing:-0.105600pt;}
.lse_c02404{letter-spacing:-0.042240pt;}
.ls13_c02404{letter-spacing:0.000000pt;}
.ls2_c02404{letter-spacing:0.005376pt;}
.ls5_c02404{letter-spacing:0.114048pt;}
.lsc_c02404{letter-spacing:0.451968pt;}
.ls12_c02404{letter-spacing:0.456960pt;}
.lsf_c02404{letter-spacing:0.477312pt;}
.lsb_c02404{letter-spacing:0.515328pt;}
.ls11_c02404{letter-spacing:0.528000pt;}
.ls8_c02404{letter-spacing:0.532224pt;}
.ls3_c02404{letter-spacing:0.544896pt;}
.ls1_c02404{letter-spacing:0.637824pt;}
.ls0_c02404{letter-spacing:0.642048pt;}
.wsd_c02404{word-spacing:-13.445376pt;}
.ws2_c02404{word-spacing:-11.202048pt;}
.wsb_c02404{word-spacing:-11.088000pt;}
.ws6_c02404{word-spacing:-11.075328pt;}
.wsa_c02404{word-spacing:-11.037312pt;}
.ws7_c02404{word-spacing:-11.011968pt;}
.ws3_c02404{word-spacing:-10.348800pt;}
.ws18_c02404{word-spacing:-1.919232pt;}
.ws1a_c02404{word-spacing:-0.963072pt;}
.ws14_c02404{word-spacing:-0.958848pt;}
.ws10_c02404{word-spacing:-0.865920pt;}
.ws16_c02404{word-spacing:-0.278784pt;}
.ws12_c02404{word-spacing:-0.105600pt;}
.ws15_c02404{word-spacing:-0.088704pt;}
.ws17_c02404{word-spacing:-0.076032pt;}
.ws11_c02404{word-spacing:0.000000pt;}
.ws1b_c02404{word-spacing:0.025344pt;}
.ws13_c02404{word-spacing:0.316800pt;}
.ws19_c02404{word-spacing:0.333696pt;}
.wsf_c02404{word-spacing:26.932224pt;}
.wsc_c02404{word-spacing:29.600256pt;}
.ws8_c02404{word-spacing:32.127744pt;}
.wse_c02404{word-spacing:32.659968pt;}
.ws1_c02404{word-spacing:33.563904pt;}
.ws0_c02404{word-spacing:33.796224pt;}
.ws4_c02404{word-spacing:34.860672pt;}
.ws9_c02404{word-spacing:35.194368pt;}
.ws5_c02404{word-spacing:35.468928pt;}
._0_c02404{margin-left:-1.731840pt;}
._2_c02404{width:1.317888pt;}
._4_c02404{width:3.320064pt;}
._1_c02404{width:44.668800pt;}
._3_c02404{width:45.805056pt;}
._5_c02404{width:49.615104pt;}
._6_c02404{width:99.673728pt;}
.fs0_c02404{font-size:42.240000pt;}
.fs1_c02404{font-size:53.760000pt;}
.y0_c02404{bottom:0.000000pt;}
.y1a_c02404{bottom:130.665211pt;}
.y1c_c02404{bottom:165.866875pt;}
.y1b_c02404{bottom:174.507067pt;}
.y19_c02404{bottom:245.225371pt;}
.y18_c02404{bottom:317.225563pt;}
.y16_c02404{bottom:361.386427pt;}
.y12_c02404{bottom:377.386939pt;}
.y17_c02404{bottom:407.786011pt;}
.y15_c02404{bottom:437.226235pt;}
.y14_c02404{bottom:453.226747pt;}
.y11_c02404{bottom:482.666971pt;}
.y13_c02404{bottom:497.386555pt;}
.y10_c02404{bottom:513.387067pt;}
.y1d_c02404{bottom:546.027067pt;}
.yc_c02404{bottom:593.385179pt;}
.ye_c02404{bottom:628.586875pt;}
.yd_c02404{bottom:637.227067pt;}
.yb_c02404{bottom:694.505627pt;}
.ya_c02404{bottom:707.945339pt;}
.y9_c02404{bottom:779.945531pt;}
.y7_c02404{bottom:823.786427pt;}
.y3_c02404{bottom:839.786939pt;}
.y8_c02404{bottom:870.505979pt;}
.y6_c02404{bottom:899.946203pt;}
.y5_c02404{bottom:915.946715pt;}
.y2_c02404{bottom:945.386939pt;}
.y4_c02404{bottom:959.786555pt;}
.y1_c02404{bottom:975.787067pt;}
.yf_c02404{bottom:1008.747067pt;}
.h3_c02404{height:28.916250pt;}
.h1_c02404{height:37.063125pt;}
.h2_c02404{height:37.166250pt;}
.h4_c02404{height:48.581988pt;}
.h5_c02404{height:66.504405pt;}
.h0_c02404{height:1122.666667pt;}
.w1_c02404{width:793.333333pt;}
.w0_c02404{width:793.626667pt;}
.x0_c02404{left:0.000000pt;}
.xe_c02404{left:104.000000pt;}
.x8_c02404{left:391.999872pt;}
.x4_c02404{left:396.160512pt;}
.xc_c02404{left:400.960000pt;}
.x7_c02404{left:404.799648pt;}
.x5_c02404{left:410.560128pt;}
.x1_c02404{left:411.840000pt;}
.xb_c02404{left:429.760320pt;}
.x9_c02404{left:437.439552pt;}
.x6_c02404{left:438.400512pt;}
.xd_c02404{left:450.560320pt;}
.x3_c02404{left:455.039904pt;}
.x2_c02404{left:468.159648pt;}
.xa_c02404{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02405 {
    display:none;
  }
  .loading-indicator_c02405.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02405 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02405 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02405" -> "#page-container .classname_c02405")
 */
.pf_c02405 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02405 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02405.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02405 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02405 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02405 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02405 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02405 {overflow:visible;}
  }
}
.c_c02405 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02405 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02405:after { /* webkit #35443 */
  content: '';
}
.t_c02405:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02405 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02405 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02405 { /* info for Javascript */
  display:none;
}
.l_c02405 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02405 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02405 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02405:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02405 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02405.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02405.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02405 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02405{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02405;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02405{font-family:ff1_c02405;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02405;src:url('chunks/assets/font_8427a0c70a14ca0adb572bf0.woff2')format("woff");}.ff2_c02405{font-family:ff2_c02405;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02405;src:url('chunks/assets/font_c55013d67d3f9833d2a02fbb.woff2')format("woff");}.ff3_c02405{font-family:ff3_c02405;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02405{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02405{vertical-align:0.000000px;}
.v1_c02405{vertical-align:1.439424px;}
.lsf_c02405{letter-spacing:-1.197504px;}
.lsb_c02405{letter-spacing:-0.722304px;}
.ls9_c02405{letter-spacing:-0.717552px;}
.lsa_c02405{letter-spacing:-0.574992px;}
.ls13_c02405{letter-spacing:-0.275616px;}
.ls11_c02405{letter-spacing:-0.261360px;}
.ls6_c02405{letter-spacing:-0.242352px;}
.ls7_c02405{letter-spacing:-0.237600px;}
.ls3_c02405{letter-spacing:-0.118800px;}
.ls16_c02405{letter-spacing:0.000000px;}
.ls1_c02405{letter-spacing:0.006048px;}
.lsd_c02405{letter-spacing:0.009504px;}
.ls5_c02405{letter-spacing:0.128304px;}
.lse_c02405{letter-spacing:0.508464px;}
.ls15_c02405{letter-spacing:0.514080px;}
.ls12_c02405{letter-spacing:0.536976px;}
.lsc_c02405{letter-spacing:0.579744px;}
.ls14_c02405{letter-spacing:0.594000px;}
.ls8_c02405{letter-spacing:0.598752px;}
.ls2_c02405{letter-spacing:0.613008px;}
.ls10_c02405{letter-spacing:0.674784px;}
.ls4_c02405{letter-spacing:0.717552px;}
.ls0_c02405{letter-spacing:0.722304px;}
.sc__c02405{text-shadow:none;}
.sc0_c02405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02405{-webkit-text-stroke:0px transparent;}
.sc0_c02405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02405{word-spacing:-15.126048px;}
.ws9_c02405{word-spacing:-12.474000px;}
.ws7_c02405{word-spacing:-12.459744px;}
.ws8_c02405{word-spacing:-12.416976px;}
.ws2_c02405{word-spacing:-11.642400px;}
.ws13_c02405{word-spacing:-2.475792px;}
.ws17_c02405{word-spacing:-2.159136px;}
.ws14_c02405{word-spacing:-1.083456px;}
.wsc_c02405{word-spacing:-0.974160px;}
.ws11_c02405{word-spacing:-0.370656px;}
.wse_c02405{word-spacing:-0.118800px;}
.ws15_c02405{word-spacing:-0.099792px;}
.ws16_c02405{word-spacing:-0.085536px;}
.wsd_c02405{word-spacing:0.000000px;}
.wsf_c02405{word-spacing:0.356400px;}
.ws10_c02405{word-spacing:0.361152px;}
.ws12_c02405{word-spacing:0.836352px;}
.wsa_c02405{word-spacing:33.300288px;}
.ws5_c02405{word-spacing:36.742464px;}
.ws1_c02405{word-spacing:37.759392px;}
.ws0_c02405{word-spacing:38.020752px;}
.ws3_c02405{word-spacing:39.218256px;}
.ws4_c02405{word-spacing:39.902544px;}
.ws6_c02405{word-spacing:42.026688px;}
._0_c02405{margin-left:-1.948320px;}
._2_c02405{width:1.482624px;}
._4_c02405{width:3.735072px;}
._1_c02405{width:50.252400px;}
._3_c02405{width:51.530688px;}
.fc0_c02405{color:rgb(0,0,0);}
.fs0_c02405{font-size:47.520000px;}
.fs1_c02405{font-size:60.480000px;}
.y0_c02405{bottom:0.000000px;}
.y1c_c02405{bottom:65.880450px;}
.yb_c02405{bottom:66.240450px;}
.y1f_c02405{bottom:147.000054px;}
.y21_c02405{bottom:186.600234px;}
.y20_c02405{bottom:196.320450px;}
.y1e_c02405{bottom:275.880234px;}
.y1b_c02405{bottom:291.000000px;}
.y1a_c02405{bottom:356.878758px;}
.y1d_c02405{bottom:356.880450px;}
.y18_c02405{bottom:406.559730px;}
.y14_c02405{bottom:424.560306px;}
.y19_c02405{bottom:458.759262px;}
.y17_c02405{bottom:491.879514px;}
.y16_c02405{bottom:509.880090px;}
.y13_c02405{bottom:543.000342px;}
.y15_c02405{bottom:559.559874px;}
.y12_c02405{bottom:577.560450px;}
.y22_c02405{bottom:614.280450px;}
.ye_c02405{bottom:667.560054px;}
.y10_c02405{bottom:707.160234px;}
.yf_c02405{bottom:716.880450px;}
.yd_c02405{bottom:796.440234px;}
.ya_c02405{bottom:811.200000px;}
.y9_c02405{bottom:877.438722px;}
.yc_c02405{bottom:877.440450px;}
.y7_c02405{bottom:926.759730px;}
.y3_c02405{bottom:944.760306px;}
.y8_c02405{bottom:979.319226px;}
.y6_c02405{bottom:1012.439478px;}
.y5_c02405{bottom:1030.440054px;}
.y2_c02405{bottom:1063.560306px;}
.y4_c02405{bottom:1079.759874px;}
.y1_c02405{bottom:1097.760450px;}
.y11_c02405{bottom:1134.840450px;}
.h3_c02405{height:32.530781px;}
.h1_c02405{height:41.696016px;}
.h2_c02405{height:41.812031px;}
.h5_c02405{height:54.654737px;}
.h6_c02405{height:78.480000px;}
.h4_c02405{height:78.840000px;}
.h0_c02405{height:1263.000000px;}
.w2_c02405{width:215.280000px;}
.w1_c02405{width:892.500000px;}
.w0_c02405{width:892.830000px;}
.x0_c02405{left:0.000000px;}
.xf_c02405{left:117.000000px;}
.x8_c02405{left:440.999856px;}
.x4_c02405{left:445.680576px;}
.xd_c02405{left:451.080000px;}
.x7_c02405{left:455.399604px;}
.x5_c02405{left:461.880144px;}
.x1_c02405{left:463.320000px;}
.xc_c02405{left:483.480540px;}
.x9_c02405{left:492.119496px;}
.x6_c02405{left:493.200576px;}
.xe_c02405{left:506.880360px;}
.x3_c02405{left:511.919892px;}
.x2_c02405{left:526.679604px;}
.xa_c02405{left:569.520000px;}
.xb_c02405{left:678.960000px;}
@media print{
.v0_c02405{vertical-align:0.000000pt;}
.v1_c02405{vertical-align:1.279488pt;}
.lsf_c02405{letter-spacing:-1.064448pt;}
.lsb_c02405{letter-spacing:-0.642048pt;}
.ls9_c02405{letter-spacing:-0.637824pt;}
.lsa_c02405{letter-spacing:-0.511104pt;}
.ls13_c02405{letter-spacing:-0.244992pt;}
.ls11_c02405{letter-spacing:-0.232320pt;}
.ls6_c02405{letter-spacing:-0.215424pt;}
.ls7_c02405{letter-spacing:-0.211200pt;}
.ls3_c02405{letter-spacing:-0.105600pt;}
.ls16_c02405{letter-spacing:0.000000pt;}
.ls1_c02405{letter-spacing:0.005376pt;}
.lsd_c02405{letter-spacing:0.008448pt;}
.ls5_c02405{letter-spacing:0.114048pt;}
.lse_c02405{letter-spacing:0.451968pt;}
.ls15_c02405{letter-spacing:0.456960pt;}
.ls12_c02405{letter-spacing:0.477312pt;}
.lsc_c02405{letter-spacing:0.515328pt;}
.ls14_c02405{letter-spacing:0.528000pt;}
.ls8_c02405{letter-spacing:0.532224pt;}
.ls2_c02405{letter-spacing:0.544896pt;}
.ls10_c02405{letter-spacing:0.599808pt;}
.ls4_c02405{letter-spacing:0.637824pt;}
.ls0_c02405{letter-spacing:0.642048pt;}
.wsb_c02405{word-spacing:-13.445376pt;}
.ws9_c02405{word-spacing:-11.088000pt;}
.ws7_c02405{word-spacing:-11.075328pt;}
.ws8_c02405{word-spacing:-11.037312pt;}
.ws2_c02405{word-spacing:-10.348800pt;}
.ws13_c02405{word-spacing:-2.200704pt;}
.ws17_c02405{word-spacing:-1.919232pt;}
.ws14_c02405{word-spacing:-0.963072pt;}
.wsc_c02405{word-spacing:-0.865920pt;}
.ws11_c02405{word-spacing:-0.329472pt;}
.wse_c02405{word-spacing:-0.105600pt;}
.ws15_c02405{word-spacing:-0.088704pt;}
.ws16_c02405{word-spacing:-0.076032pt;}
.wsd_c02405{word-spacing:0.000000pt;}
.wsf_c02405{word-spacing:0.316800pt;}
.ws10_c02405{word-spacing:0.321024pt;}
.ws12_c02405{word-spacing:0.743424pt;}
.wsa_c02405{word-spacing:29.600256pt;}
.ws5_c02405{word-spacing:32.659968pt;}
.ws1_c02405{word-spacing:33.563904pt;}
.ws0_c02405{word-spacing:33.796224pt;}
.ws3_c02405{word-spacing:34.860672pt;}
.ws4_c02405{word-spacing:35.468928pt;}
.ws6_c02405{word-spacing:37.357056pt;}
._0_c02405{margin-left:-1.731840pt;}
._2_c02405{width:1.317888pt;}
._4_c02405{width:3.320064pt;}
._1_c02405{width:44.668800pt;}
._3_c02405{width:45.805056pt;}
.fs0_c02405{font-size:42.240000pt;}
.fs1_c02405{font-size:53.760000pt;}
.y0_c02405{bottom:0.000000pt;}
.y1c_c02405{bottom:58.560400pt;}
.yb_c02405{bottom:58.880400pt;}
.y1f_c02405{bottom:130.666715pt;}
.y21_c02405{bottom:165.866875pt;}
.y20_c02405{bottom:174.507067pt;}
.y1e_c02405{bottom:245.226875pt;}
.y1b_c02405{bottom:258.666667pt;}
.y1a_c02405{bottom:317.225563pt;}
.y1d_c02405{bottom:317.227067pt;}
.y18_c02405{bottom:361.386427pt;}
.y14_c02405{bottom:377.386939pt;}
.y19_c02405{bottom:407.786011pt;}
.y17_c02405{bottom:437.226235pt;}
.y16_c02405{bottom:453.226747pt;}
.y13_c02405{bottom:482.666971pt;}
.y15_c02405{bottom:497.386555pt;}
.y12_c02405{bottom:513.387067pt;}
.y22_c02405{bottom:546.027067pt;}
.ye_c02405{bottom:593.386715pt;}
.y10_c02405{bottom:628.586875pt;}
.yf_c02405{bottom:637.227067pt;}
.yd_c02405{bottom:707.946875pt;}
.ya_c02405{bottom:721.066667pt;}
.y9_c02405{bottom:779.945531pt;}
.yc_c02405{bottom:779.947067pt;}
.y7_c02405{bottom:823.786427pt;}
.y3_c02405{bottom:839.786939pt;}
.y8_c02405{bottom:870.505979pt;}
.y6_c02405{bottom:899.946203pt;}
.y5_c02405{bottom:915.946715pt;}
.y2_c02405{bottom:945.386939pt;}
.y4_c02405{bottom:959.786555pt;}
.y1_c02405{bottom:975.787067pt;}
.y11_c02405{bottom:1008.747067pt;}
.h3_c02405{height:28.916250pt;}
.h1_c02405{height:37.063125pt;}
.h2_c02405{height:37.166250pt;}
.h5_c02405{height:48.581988pt;}
.h6_c02405{height:69.760000pt;}
.h4_c02405{height:70.080000pt;}
.h0_c02405{height:1122.666667pt;}
.w2_c02405{width:191.360000pt;}
.w1_c02405{width:793.333333pt;}
.w0_c02405{width:793.626667pt;}
.x0_c02405{left:0.000000pt;}
.xf_c02405{left:104.000000pt;}
.x8_c02405{left:391.999872pt;}
.x4_c02405{left:396.160512pt;}
.xd_c02405{left:400.960000pt;}
.x7_c02405{left:404.799648pt;}
.x5_c02405{left:410.560128pt;}
.x1_c02405{left:411.840000pt;}
.xc_c02405{left:429.760480pt;}
.x9_c02405{left:437.439552pt;}
.x6_c02405{left:438.400512pt;}
.xe_c02405{left:450.560320pt;}
.x3_c02405{left:455.039904pt;}
.x2_c02405{left:468.159648pt;}
.xa_c02405{left:506.240000pt;}
.xb_c02405{left:603.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02406 {
    display:none;
  }
  .loading-indicator_c02406.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02406 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02406 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02406" -> "#page-container .classname_c02406")
 */
.pf_c02406 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02406 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02406.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02406 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02406 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02406 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02406 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02406 {overflow:visible;}
  }
}
.c_c02406 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02406 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02406:after { /* webkit #35443 */
  content: '';
}
.t_c02406:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02406 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02406 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02406 { /* info for Javascript */
  display:none;
}
.l_c02406 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02406 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02406 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02406:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02406 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02406.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02406.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02406 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02406{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02406;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02406{font-family:ff1_c02406;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02406;src:url('chunks/assets/font_86d4293cadf104faf8d98e7e.woff2')format("woff");}.ff2_c02406{font-family:ff2_c02406;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02406;src:url('chunks/assets/font_c55013d67d3f9833d2a02fbb.woff2')format("woff");}.ff3_c02406{font-family:ff3_c02406;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02406{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02406{vertical-align:0.000000px;}
.v1_c02406{vertical-align:1.439424px;}
.lsf_c02406{letter-spacing:-1.197504px;}
.lsb_c02406{letter-spacing:-0.722304px;}
.ls9_c02406{letter-spacing:-0.717552px;}
.lsa_c02406{letter-spacing:-0.574992px;}
.ls13_c02406{letter-spacing:-0.275616px;}
.ls11_c02406{letter-spacing:-0.261360px;}
.ls6_c02406{letter-spacing:-0.242352px;}
.ls7_c02406{letter-spacing:-0.237600px;}
.ls3_c02406{letter-spacing:-0.118800px;}
.ls16_c02406{letter-spacing:0.000000px;}
.ls1_c02406{letter-spacing:0.006048px;}
.lsd_c02406{letter-spacing:0.009504px;}
.ls5_c02406{letter-spacing:0.128304px;}
.lse_c02406{letter-spacing:0.508464px;}
.ls15_c02406{letter-spacing:0.514080px;}
.ls12_c02406{letter-spacing:0.536976px;}
.lsc_c02406{letter-spacing:0.579744px;}
.ls14_c02406{letter-spacing:0.594000px;}
.ls8_c02406{letter-spacing:0.598752px;}
.ls2_c02406{letter-spacing:0.613008px;}
.ls10_c02406{letter-spacing:0.674784px;}
.ls4_c02406{letter-spacing:0.717552px;}
.ls0_c02406{letter-spacing:0.722304px;}
.sc__c02406{text-shadow:none;}
.sc0_c02406{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02406{-webkit-text-stroke:0px transparent;}
.sc0_c02406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02406{word-spacing:-15.126048px;}
.ws9_c02406{word-spacing:-12.474000px;}
.ws7_c02406{word-spacing:-12.459744px;}
.ws8_c02406{word-spacing:-12.416976px;}
.ws2_c02406{word-spacing:-11.642400px;}
.ws13_c02406{word-spacing:-2.475792px;}
.ws17_c02406{word-spacing:-2.159136px;}
.ws14_c02406{word-spacing:-1.083456px;}
.wsc_c02406{word-spacing:-0.974160px;}
.ws11_c02406{word-spacing:-0.370656px;}
.wse_c02406{word-spacing:-0.118800px;}
.ws15_c02406{word-spacing:-0.099792px;}
.ws16_c02406{word-spacing:-0.085536px;}
.wsd_c02406{word-spacing:0.000000px;}
.wsf_c02406{word-spacing:0.356400px;}
.ws10_c02406{word-spacing:0.361152px;}
.ws12_c02406{word-spacing:0.836352px;}
.wsa_c02406{word-spacing:33.300288px;}
.ws5_c02406{word-spacing:36.742464px;}
.ws1_c02406{word-spacing:37.759392px;}
.ws0_c02406{word-spacing:38.020752px;}
.ws3_c02406{word-spacing:39.218256px;}
.ws4_c02406{word-spacing:39.902544px;}
.ws6_c02406{word-spacing:42.026688px;}
._0_c02406{margin-left:-1.948320px;}
._2_c02406{width:1.482624px;}
._4_c02406{width:3.735072px;}
._1_c02406{width:50.252400px;}
._3_c02406{width:51.530688px;}
.fc0_c02406{color:rgb(0,0,0);}
.fs0_c02406{font-size:47.520000px;}
.fs1_c02406{font-size:60.480000px;}
.y0_c02406{bottom:0.000000px;}
.yb_c02406{bottom:66.240450px;}
.y1c_c02406{bottom:146.998362px;}
.y1e_c02406{bottom:186.600234px;}
.y1d_c02406{bottom:196.320450px;}
.y1b_c02406{bottom:275.878542px;}
.y1a_c02406{bottom:356.878758px;}
.y18_c02406{bottom:406.559730px;}
.y14_c02406{bottom:424.560306px;}
.y19_c02406{bottom:458.759262px;}
.y17_c02406{bottom:491.879514px;}
.y16_c02406{bottom:509.880090px;}
.y13_c02406{bottom:543.000342px;}
.y15_c02406{bottom:559.559874px;}
.y12_c02406{bottom:577.560450px;}
.y1f_c02406{bottom:614.280450px;}
.ye_c02406{bottom:667.560054px;}
.y10_c02406{bottom:707.160234px;}
.yf_c02406{bottom:716.880450px;}
.yd_c02406{bottom:796.440234px;}
.ya_c02406{bottom:811.200000px;}
.y9_c02406{bottom:877.438722px;}
.yc_c02406{bottom:877.440450px;}
.y7_c02406{bottom:926.759730px;}
.y3_c02406{bottom:944.760306px;}
.y8_c02406{bottom:979.319226px;}
.y6_c02406{bottom:1012.439478px;}
.y5_c02406{bottom:1030.440054px;}
.y2_c02406{bottom:1063.560306px;}
.y4_c02406{bottom:1079.759874px;}
.y1_c02406{bottom:1097.760450px;}
.y11_c02406{bottom:1134.840450px;}
.h3_c02406{height:32.530781px;}
.h1_c02406{height:41.696016px;}
.h2_c02406{height:41.812031px;}
.h5_c02406{height:54.654737px;}
.h4_c02406{height:78.840000px;}
.h0_c02406{height:1263.000000px;}
.w2_c02406{width:215.280000px;}
.w1_c02406{width:892.500000px;}
.w0_c02406{width:892.830000px;}
.x0_c02406{left:0.000000px;}
.xf_c02406{left:117.000000px;}
.x8_c02406{left:440.999856px;}
.x4_c02406{left:445.680576px;}
.xd_c02406{left:451.080000px;}
.x7_c02406{left:455.399604px;}
.x5_c02406{left:461.880144px;}
.x1_c02406{left:463.320000px;}
.xc_c02406{left:483.480540px;}
.x9_c02406{left:492.119496px;}
.x6_c02406{left:493.200576px;}
.xe_c02406{left:506.880360px;}
.x3_c02406{left:511.919892px;}
.x2_c02406{left:526.679604px;}
.xa_c02406{left:569.520000px;}
.xb_c02406{left:678.960000px;}
@media print{
.v0_c02406{vertical-align:0.000000pt;}
.v1_c02406{vertical-align:1.279488pt;}
.lsf_c02406{letter-spacing:-1.064448pt;}
.lsb_c02406{letter-spacing:-0.642048pt;}
.ls9_c02406{letter-spacing:-0.637824pt;}
.lsa_c02406{letter-spacing:-0.511104pt;}
.ls13_c02406{letter-spacing:-0.244992pt;}
.ls11_c02406{letter-spacing:-0.232320pt;}
.ls6_c02406{letter-spacing:-0.215424pt;}
.ls7_c02406{letter-spacing:-0.211200pt;}
.ls3_c02406{letter-spacing:-0.105600pt;}
.ls16_c02406{letter-spacing:0.000000pt;}
.ls1_c02406{letter-spacing:0.005376pt;}
.lsd_c02406{letter-spacing:0.008448pt;}
.ls5_c02406{letter-spacing:0.114048pt;}
.lse_c02406{letter-spacing:0.451968pt;}
.ls15_c02406{letter-spacing:0.456960pt;}
.ls12_c02406{letter-spacing:0.477312pt;}
.lsc_c02406{letter-spacing:0.515328pt;}
.ls14_c02406{letter-spacing:0.528000pt;}
.ls8_c02406{letter-spacing:0.532224pt;}
.ls2_c02406{letter-spacing:0.544896pt;}
.ls10_c02406{letter-spacing:0.599808pt;}
.ls4_c02406{letter-spacing:0.637824pt;}
.ls0_c02406{letter-spacing:0.642048pt;}
.wsb_c02406{word-spacing:-13.445376pt;}
.ws9_c02406{word-spacing:-11.088000pt;}
.ws7_c02406{word-spacing:-11.075328pt;}
.ws8_c02406{word-spacing:-11.037312pt;}
.ws2_c02406{word-spacing:-10.348800pt;}
.ws13_c02406{word-spacing:-2.200704pt;}
.ws17_c02406{word-spacing:-1.919232pt;}
.ws14_c02406{word-spacing:-0.963072pt;}
.wsc_c02406{word-spacing:-0.865920pt;}
.ws11_c02406{word-spacing:-0.329472pt;}
.wse_c02406{word-spacing:-0.105600pt;}
.ws15_c02406{word-spacing:-0.088704pt;}
.ws16_c02406{word-spacing:-0.076032pt;}
.wsd_c02406{word-spacing:0.000000pt;}
.wsf_c02406{word-spacing:0.316800pt;}
.ws10_c02406{word-spacing:0.321024pt;}
.ws12_c02406{word-spacing:0.743424pt;}
.wsa_c02406{word-spacing:29.600256pt;}
.ws5_c02406{word-spacing:32.659968pt;}
.ws1_c02406{word-spacing:33.563904pt;}
.ws0_c02406{word-spacing:33.796224pt;}
.ws3_c02406{word-spacing:34.860672pt;}
.ws4_c02406{word-spacing:35.468928pt;}
.ws6_c02406{word-spacing:37.357056pt;}
._0_c02406{margin-left:-1.731840pt;}
._2_c02406{width:1.317888pt;}
._4_c02406{width:3.320064pt;}
._1_c02406{width:44.668800pt;}
._3_c02406{width:45.805056pt;}
.fs0_c02406{font-size:42.240000pt;}
.fs1_c02406{font-size:53.760000pt;}
.y0_c02406{bottom:0.000000pt;}
.yb_c02406{bottom:58.880400pt;}
.y1c_c02406{bottom:130.665211pt;}
.y1e_c02406{bottom:165.866875pt;}
.y1d_c02406{bottom:174.507067pt;}
.y1b_c02406{bottom:245.225371pt;}
.y1a_c02406{bottom:317.225563pt;}
.y18_c02406{bottom:361.386427pt;}
.y14_c02406{bottom:377.386939pt;}
.y19_c02406{bottom:407.786011pt;}
.y17_c02406{bottom:437.226235pt;}
.y16_c02406{bottom:453.226747pt;}
.y13_c02406{bottom:482.666971pt;}
.y15_c02406{bottom:497.386555pt;}
.y12_c02406{bottom:513.387067pt;}
.y1f_c02406{bottom:546.027067pt;}
.ye_c02406{bottom:593.386715pt;}
.y10_c02406{bottom:628.586875pt;}
.yf_c02406{bottom:637.227067pt;}
.yd_c02406{bottom:707.946875pt;}
.ya_c02406{bottom:721.066667pt;}
.y9_c02406{bottom:779.945531pt;}
.yc_c02406{bottom:779.947067pt;}
.y7_c02406{bottom:823.786427pt;}
.y3_c02406{bottom:839.786939pt;}
.y8_c02406{bottom:870.505979pt;}
.y6_c02406{bottom:899.946203pt;}
.y5_c02406{bottom:915.946715pt;}
.y2_c02406{bottom:945.386939pt;}
.y4_c02406{bottom:959.786555pt;}
.y1_c02406{bottom:975.787067pt;}
.y11_c02406{bottom:1008.747067pt;}
.h3_c02406{height:28.916250pt;}
.h1_c02406{height:37.063125pt;}
.h2_c02406{height:37.166250pt;}
.h5_c02406{height:48.581988pt;}
.h4_c02406{height:70.080000pt;}
.h0_c02406{height:1122.666667pt;}
.w2_c02406{width:191.360000pt;}
.w1_c02406{width:793.333333pt;}
.w0_c02406{width:793.626667pt;}
.x0_c02406{left:0.000000pt;}
.xf_c02406{left:104.000000pt;}
.x8_c02406{left:391.999872pt;}
.x4_c02406{left:396.160512pt;}
.xd_c02406{left:400.960000pt;}
.x7_c02406{left:404.799648pt;}
.x5_c02406{left:410.560128pt;}
.x1_c02406{left:411.840000pt;}
.xc_c02406{left:429.760480pt;}
.x9_c02406{left:437.439552pt;}
.x6_c02406{left:438.400512pt;}
.xe_c02406{left:450.560320pt;}
.x3_c02406{left:455.039904pt;}
.x2_c02406{left:468.159648pt;}
.xa_c02406{left:506.240000pt;}
.xb_c02406{left:603.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02407 {
    display:none;
  }
  .loading-indicator_c02407.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02407 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02407 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02407" -> "#page-container .classname_c02407")
 */
.pf_c02407 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02407 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02407 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02407 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02407 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02407 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02407 {overflow:visible;}
  }
}
.c_c02407 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02407 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02407:after { /* webkit #35443 */
  content: '';
}
.t_c02407:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02407 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02407 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02407 { /* info for Javascript */
  display:none;
}
.l_c02407 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02407 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02407 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02407:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02407 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02407.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02407 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02407{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02407;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02407{font-family:ff1_c02407;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02407;src:url('chunks/assets/font_163f0f84c0ee2c96fbfa5288.woff2')format("woff");}.ff2_c02407{font-family:ff2_c02407;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02407;src:url('chunks/assets/font_42a43475a0b6a85b34e1764d.woff2')format("woff");}.ff3_c02407{font-family:ff3_c02407;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02407{vertical-align:0.000000px;}
.v1_c02407{vertical-align:1.439424px;}
.v2_c02407{vertical-align:33.121440px;}
.lsc_c02407{letter-spacing:-0.774576px;}
.ls12_c02407{letter-spacing:-0.736560px;}
.lsf_c02407{letter-spacing:-0.722304px;}
.lsa_c02407{letter-spacing:-0.608256px;}
.lsb_c02407{letter-spacing:-0.574992px;}
.ls1a_c02407{letter-spacing:-0.275616px;}
.ls13_c02407{letter-spacing:-0.270864px;}
.ls10_c02407{letter-spacing:-0.261360px;}
.ls7_c02407{letter-spacing:-0.242352px;}
.ls8_c02407{letter-spacing:-0.237600px;}
.ls18_c02407{letter-spacing:-0.228096px;}
.ls4_c02407{letter-spacing:-0.118800px;}
.ls16_c02407{letter-spacing:0.000000px;}
.ls1_c02407{letter-spacing:0.006048px;}
.ls1c_c02407{letter-spacing:0.014256px;}
.ls6_c02407{letter-spacing:0.128304px;}
.ls1b_c02407{letter-spacing:0.137808px;}
.lse_c02407{letter-spacing:0.508464px;}
.ls15_c02407{letter-spacing:0.514080px;}
.ls11_c02407{letter-spacing:0.536976px;}
.lsd_c02407{letter-spacing:0.579744px;}
.ls14_c02407{letter-spacing:0.594000px;}
.ls9_c02407{letter-spacing:0.598752px;}
.ls3_c02407{letter-spacing:0.613008px;}
.ls19_c02407{letter-spacing:0.641520px;}
.ls0_c02407{letter-spacing:0.651024px;}
.ls17_c02407{letter-spacing:0.679536px;}
.ls5_c02407{letter-spacing:0.717552px;}
.ls2_c02407{letter-spacing:0.722304px;}
.sc__c02407{text-shadow:none;}
.sc0_c02407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02407{-webkit-text-stroke:0px transparent;}
.sc0_c02407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02407{word-spacing:-15.126048px;}
.wse_c02407{word-spacing:-12.602304px;}
.ws12_c02407{word-spacing:-12.559536px;}
.wsb_c02407{word-spacing:-12.474000px;}
.ws7_c02407{word-spacing:-12.459744px;}
.ws15_c02407{word-spacing:-12.416976px;}
.wsf_c02407{word-spacing:-12.388464px;}
.ws2_c02407{word-spacing:-11.642400px;}
.ws4_c02407{word-spacing:-11.271744px;}
.ws6_c02407{word-spacing:-11.105424px;}
.ws21_c02407{word-spacing:-2.159136px;}
.ws22_c02407{word-spacing:-1.083456px;}
.ws1b_c02407{word-spacing:-1.012176px;}
.ws23_c02407{word-spacing:-1.002672px;}
.ws19_c02407{word-spacing:-0.974160px;}
.ws1c_c02407{word-spacing:-0.118800px;}
.ws1e_c02407{word-spacing:-0.099792px;}
.ws1f_c02407{word-spacing:-0.090288px;}
.ws20_c02407{word-spacing:-0.085536px;}
.ws1a_c02407{word-spacing:0.000000px;}
.ws1d_c02407{word-spacing:0.361152px;}
.ws13_c02407{word-spacing:2.252448px;}
.wsa_c02407{word-spacing:6.629040px;}
.ws11_c02407{word-spacing:9.356688px;}
.ws14_c02407{word-spacing:15.116112px;}
.ws16_c02407{word-spacing:30.298752px;}
.ws18_c02407{word-spacing:32.394384px;}
.wsc_c02407{word-spacing:33.300288px;}
.ws17_c02407{word-spacing:33.563376px;}
.ws9_c02407{word-spacing:34.836912px;}
.ws10_c02407{word-spacing:36.143712px;}
.ws1_c02407{word-spacing:37.759392px;}
.ws0_c02407{word-spacing:38.020752px;}
.ws3_c02407{word-spacing:39.218256px;}
.ws5_c02407{word-spacing:39.902544px;}
.ws8_c02407{word-spacing:42.026688px;}
._0_c02407{margin-left:-1.948320px;}
._2_c02407{width:1.482624px;}
._9_c02407{width:9.613296px;}
._8_c02407{width:17.183232px;}
._5_c02407{width:19.982160px;}
._a_c02407{width:22.030272px;}
._6_c02407{width:23.451120px;}
._4_c02407{width:24.691392px;}
._7_c02407{width:33.045408px;}
._b_c02407{width:46.360512px;}
._1_c02407{width:50.252400px;}
._3_c02407{width:51.530688px;}
.fc0_c02407{color:rgb(0,0,0);}
.fs0_c02407{font-size:47.520000px;}
.fs1_c02407{font-size:60.480000px;}
.y0_c02407{bottom:0.000000px;}
.y1c_c02407{bottom:146.998362px;}
.y1f_c02407{bottom:179.760918px;}
.y1e_c02407{bottom:186.600234px;}
.y1d_c02407{bottom:196.320450px;}
.y1b_c02407{bottom:260.758866px;}
.y1a_c02407{bottom:275.878542px;}
.y19_c02407{bottom:341.759082px;}
.y18_c02407{bottom:356.878758px;}
.y16_c02407{bottom:406.559730px;}
.y12_c02407{bottom:424.560306px;}
.y17_c02407{bottom:458.759262px;}
.y15_c02407{bottom:491.879514px;}
.y14_c02407{bottom:509.880090px;}
.y11_c02407{bottom:543.000342px;}
.y13_c02407{bottom:559.559874px;}
.y10_c02407{bottom:577.560450px;}
.y20_c02407{bottom:614.280450px;}
.yc_c02407{bottom:652.438650px;}
.yb_c02407{bottom:667.558326px;}
.ye_c02407{bottom:707.160234px;}
.yd_c02407{bottom:716.880450px;}
.ya_c02407{bottom:796.438506px;}
.y9_c02407{bottom:877.438722px;}
.y7_c02407{bottom:926.759730px;}
.y3_c02407{bottom:944.760306px;}
.y8_c02407{bottom:979.319226px;}
.y6_c02407{bottom:1012.439478px;}
.y5_c02407{bottom:1030.440054px;}
.y2_c02407{bottom:1063.560306px;}
.y4_c02407{bottom:1079.759874px;}
.y1_c02407{bottom:1097.760450px;}
.yf_c02407{bottom:1134.840450px;}
.h3_c02407{height:32.530781px;}
.h1_c02407{height:41.696016px;}
.h2_c02407{height:41.812031px;}
.h4_c02407{height:54.654737px;}
.h5_c02407{height:74.817456px;}
.h0_c02407{height:1263.000000px;}
.w1_c02407{width:892.500000px;}
.w0_c02407{width:892.830000px;}
.x0_c02407{left:0.000000px;}
.xe_c02407{left:117.000000px;}
.x8_c02407{left:440.999856px;}
.x4_c02407{left:445.680576px;}
.xc_c02407{left:451.080000px;}
.x7_c02407{left:455.399604px;}
.x5_c02407{left:461.880144px;}
.x1_c02407{left:463.320000px;}
.xa_c02407{left:483.480360px;}
.x9_c02407{left:492.119496px;}
.x6_c02407{left:493.200576px;}
.xd_c02407{left:506.880360px;}
.x3_c02407{left:511.919892px;}
.x2_c02407{left:526.679604px;}
.xb_c02407{left:569.880036px;}
@media print{
.v0_c02407{vertical-align:0.000000pt;}
.v1_c02407{vertical-align:1.279488pt;}
.v2_c02407{vertical-align:29.441280pt;}
.lsc_c02407{letter-spacing:-0.688512pt;}
.ls12_c02407{letter-spacing:-0.654720pt;}
.lsf_c02407{letter-spacing:-0.642048pt;}
.lsa_c02407{letter-spacing:-0.540672pt;}
.lsb_c02407{letter-spacing:-0.511104pt;}
.ls1a_c02407{letter-spacing:-0.244992pt;}
.ls13_c02407{letter-spacing:-0.240768pt;}
.ls10_c02407{letter-spacing:-0.232320pt;}
.ls7_c02407{letter-spacing:-0.215424pt;}
.ls8_c02407{letter-spacing:-0.211200pt;}
.ls18_c02407{letter-spacing:-0.202752pt;}
.ls4_c02407{letter-spacing:-0.105600pt;}
.ls16_c02407{letter-spacing:0.000000pt;}
.ls1_c02407{letter-spacing:0.005376pt;}
.ls1c_c02407{letter-spacing:0.012672pt;}
.ls6_c02407{letter-spacing:0.114048pt;}
.ls1b_c02407{letter-spacing:0.122496pt;}
.lse_c02407{letter-spacing:0.451968pt;}
.ls15_c02407{letter-spacing:0.456960pt;}
.ls11_c02407{letter-spacing:0.477312pt;}
.lsd_c02407{letter-spacing:0.515328pt;}
.ls14_c02407{letter-spacing:0.528000pt;}
.ls9_c02407{letter-spacing:0.532224pt;}
.ls3_c02407{letter-spacing:0.544896pt;}
.ls19_c02407{letter-spacing:0.570240pt;}
.ls0_c02407{letter-spacing:0.578688pt;}
.ls17_c02407{letter-spacing:0.604032pt;}
.ls5_c02407{letter-spacing:0.637824pt;}
.ls2_c02407{letter-spacing:0.642048pt;}
.wsd_c02407{word-spacing:-13.445376pt;}
.wse_c02407{word-spacing:-11.202048pt;}
.ws12_c02407{word-spacing:-11.164032pt;}
.wsb_c02407{word-spacing:-11.088000pt;}
.ws7_c02407{word-spacing:-11.075328pt;}
.ws15_c02407{word-spacing:-11.037312pt;}
.wsf_c02407{word-spacing:-11.011968pt;}
.ws2_c02407{word-spacing:-10.348800pt;}
.ws4_c02407{word-spacing:-10.019328pt;}
.ws6_c02407{word-spacing:-9.871488pt;}
.ws21_c02407{word-spacing:-1.919232pt;}
.ws22_c02407{word-spacing:-0.963072pt;}
.ws1b_c02407{word-spacing:-0.899712pt;}
.ws23_c02407{word-spacing:-0.891264pt;}
.ws19_c02407{word-spacing:-0.865920pt;}
.ws1c_c02407{word-spacing:-0.105600pt;}
.ws1e_c02407{word-spacing:-0.088704pt;}
.ws1f_c02407{word-spacing:-0.080256pt;}
.ws20_c02407{word-spacing:-0.076032pt;}
.ws1a_c02407{word-spacing:0.000000pt;}
.ws1d_c02407{word-spacing:0.321024pt;}
.ws13_c02407{word-spacing:2.002176pt;}
.wsa_c02407{word-spacing:5.892480pt;}
.ws11_c02407{word-spacing:8.317056pt;}
.ws14_c02407{word-spacing:13.436544pt;}
.ws16_c02407{word-spacing:26.932224pt;}
.ws18_c02407{word-spacing:28.795008pt;}
.wsc_c02407{word-spacing:29.600256pt;}
.ws17_c02407{word-spacing:29.834112pt;}
.ws9_c02407{word-spacing:30.966144pt;}
.ws10_c02407{word-spacing:32.127744pt;}
.ws1_c02407{word-spacing:33.563904pt;}
.ws0_c02407{word-spacing:33.796224pt;}
.ws3_c02407{word-spacing:34.860672pt;}
.ws5_c02407{word-spacing:35.468928pt;}
.ws8_c02407{word-spacing:37.357056pt;}
._0_c02407{margin-left:-1.731840pt;}
._2_c02407{width:1.317888pt;}
._9_c02407{width:8.545152pt;}
._8_c02407{width:15.273984pt;}
._5_c02407{width:17.761920pt;}
._a_c02407{width:19.582464pt;}
._6_c02407{width:20.845440pt;}
._4_c02407{width:21.947904pt;}
._7_c02407{width:29.373696pt;}
._b_c02407{width:41.209344pt;}
._1_c02407{width:44.668800pt;}
._3_c02407{width:45.805056pt;}
.fs0_c02407{font-size:42.240000pt;}
.fs1_c02407{font-size:53.760000pt;}
.y0_c02407{bottom:0.000000pt;}
.y1c_c02407{bottom:130.665211pt;}
.y1f_c02407{bottom:159.787483pt;}
.y1e_c02407{bottom:165.866875pt;}
.y1d_c02407{bottom:174.507067pt;}
.y1b_c02407{bottom:231.785659pt;}
.y1a_c02407{bottom:245.225371pt;}
.y19_c02407{bottom:303.785851pt;}
.y18_c02407{bottom:317.225563pt;}
.y16_c02407{bottom:361.386427pt;}
.y12_c02407{bottom:377.386939pt;}
.y17_c02407{bottom:407.786011pt;}
.y15_c02407{bottom:437.226235pt;}
.y14_c02407{bottom:453.226747pt;}
.y11_c02407{bottom:482.666971pt;}
.y13_c02407{bottom:497.386555pt;}
.y10_c02407{bottom:513.387067pt;}
.y20_c02407{bottom:546.027067pt;}
.yc_c02407{bottom:579.945467pt;}
.yb_c02407{bottom:593.385179pt;}
.ye_c02407{bottom:628.586875pt;}
.yd_c02407{bottom:637.227067pt;}
.ya_c02407{bottom:707.945339pt;}
.y9_c02407{bottom:779.945531pt;}
.y7_c02407{bottom:823.786427pt;}
.y3_c02407{bottom:839.786939pt;}
.y8_c02407{bottom:870.505979pt;}
.y6_c02407{bottom:899.946203pt;}
.y5_c02407{bottom:915.946715pt;}
.y2_c02407{bottom:945.386939pt;}
.y4_c02407{bottom:959.786555pt;}
.y1_c02407{bottom:975.787067pt;}
.yf_c02407{bottom:1008.747067pt;}
.h3_c02407{height:28.916250pt;}
.h1_c02407{height:37.063125pt;}
.h2_c02407{height:37.166250pt;}
.h4_c02407{height:48.581988pt;}
.h5_c02407{height:66.504405pt;}
.h0_c02407{height:1122.666667pt;}
.w1_c02407{width:793.333333pt;}
.w0_c02407{width:793.626667pt;}
.x0_c02407{left:0.000000pt;}
.xe_c02407{left:104.000000pt;}
.x8_c02407{left:391.999872pt;}
.x4_c02407{left:396.160512pt;}
.xc_c02407{left:400.960000pt;}
.x7_c02407{left:404.799648pt;}
.x5_c02407{left:410.560128pt;}
.x1_c02407{left:411.840000pt;}
.xa_c02407{left:429.760320pt;}
.x9_c02407{left:437.439552pt;}
.x6_c02407{left:438.400512pt;}
.xd_c02407{left:450.560320pt;}
.x3_c02407{left:455.039904pt;}
.x2_c02407{left:468.159648pt;}
.xb_c02407{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02408 {
    display:none;
  }
  .loading-indicator_c02408.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02408 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02408 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02408" -> "#page-container .classname_c02408")
 */
.pf_c02408 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02408 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02408 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02408 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02408 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02408 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02408 {overflow:visible;}
  }
}
.c_c02408 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02408 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02408:after { /* webkit #35443 */
  content: '';
}
.t_c02408:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02408 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02408 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02408 { /* info for Javascript */
  display:none;
}
.l_c02408 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02408 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02408 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02408:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02408 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02408.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02408 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02408{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02408;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02408{font-family:ff1_c02408;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02408;src:url('chunks/assets/font_969511472cc66e831db205f6.woff2')format("woff");}.ff2_c02408{font-family:ff2_c02408;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02408;src:url('chunks/assets/font_93faf6ac1ffaddca6449ba17.woff2')format("woff");}.ff3_c02408{font-family:ff3_c02408;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02408{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02408{vertical-align:0.000000px;}
.v1_c02408{vertical-align:1.439424px;}
.lsf_c02408{letter-spacing:-0.793584px;}
.lsc_c02408{letter-spacing:-0.774576px;}
.ls19_c02408{letter-spacing:-0.765072px;}
.ls12_c02408{letter-spacing:-0.736560px;}
.ls17_c02408{letter-spacing:-0.722304px;}
.lsa_c02408{letter-spacing:-0.608256px;}
.lsb_c02408{letter-spacing:-0.574992px;}
.ls1b_c02408{letter-spacing:-0.375408px;}
.ls1c_c02408{letter-spacing:-0.275616px;}
.ls13_c02408{letter-spacing:-0.270864px;}
.ls10_c02408{letter-spacing:-0.261360px;}
.ls7_c02408{letter-spacing:-0.242352px;}
.ls8_c02408{letter-spacing:-0.237600px;}
.ls4_c02408{letter-spacing:-0.118800px;}
.ls16_c02408{letter-spacing:0.000000px;}
.ls1_c02408{letter-spacing:0.006048px;}
.ls6_c02408{letter-spacing:0.128304px;}
.ls1a_c02408{letter-spacing:0.242352px;}
.lse_c02408{letter-spacing:0.508464px;}
.ls15_c02408{letter-spacing:0.514080px;}
.ls11_c02408{letter-spacing:0.536976px;}
.lsd_c02408{letter-spacing:0.579744px;}
.ls14_c02408{letter-spacing:0.594000px;}
.ls9_c02408{letter-spacing:0.598752px;}
.ls3_c02408{letter-spacing:0.613008px;}
.ls0_c02408{letter-spacing:0.651024px;}
.ls5_c02408{letter-spacing:0.717552px;}
.ls2_c02408{letter-spacing:0.722304px;}
.ls18_c02408{letter-spacing:28.412208px;}
.sc__c02408{text-shadow:none;}
.sc0_c02408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02408{-webkit-text-stroke:0px transparent;}
.sc0_c02408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11_c02408{word-spacing:-40.292208px;}
.wsd_c02408{word-spacing:-15.126048px;}
.ws10_c02408{word-spacing:-12.602304px;}
.wsb_c02408{word-spacing:-12.474000px;}
.ws7_c02408{word-spacing:-12.459744px;}
.wsf_c02408{word-spacing:-12.388464px;}
.ws2_c02408{word-spacing:-11.642400px;}
.ws4_c02408{word-spacing:-11.271744px;}
.ws6_c02408{word-spacing:-11.105424px;}
.ws1d_c02408{word-spacing:-2.159136px;}
.ws1e_c02408{word-spacing:-1.083456px;}
.ws17_c02408{word-spacing:-1.012176px;}
.ws15_c02408{word-spacing:-0.974160px;}
.ws18_c02408{word-spacing:-0.118800px;}
.ws1a_c02408{word-spacing:-0.099792px;}
.ws1b_c02408{word-spacing:-0.090288px;}
.ws1c_c02408{word-spacing:-0.085536px;}
.ws16_c02408{word-spacing:0.000000px;}
.ws20_c02408{word-spacing:0.014256px;}
.ws1f_c02408{word-spacing:0.361152px;}
.ws19_c02408{word-spacing:0.432432px;}
.wsa_c02408{word-spacing:6.629040px;}
.ws12_c02408{word-spacing:16.769808px;}
.wsc_c02408{word-spacing:33.300288px;}
.ws9_c02408{word-spacing:34.836912px;}
.wse_c02408{word-spacing:36.742464px;}
.ws1_c02408{word-spacing:37.759392px;}
.ws0_c02408{word-spacing:38.020752px;}
.ws3_c02408{word-spacing:39.218256px;}
.ws5_c02408{word-spacing:39.902544px;}
.ws8_c02408{word-spacing:42.026688px;}
.ws14_c02408{word-spacing:69.835392px;}
.ws13_c02408{word-spacing:73.675008px;}
._7_c02408{margin-left:-28.654560px;}
._8_c02408{margin-left:-27.219456px;}
._b_c02408{margin-left:-3.060288px;}
._0_c02408{margin-left:-1.948320px;}
._2_c02408{width:1.482624px;}
._5_c02408{width:19.982160px;}
._6_c02408{width:23.451120px;}
._4_c02408{width:24.691392px;}
._9_c02408{width:35.145792px;}
._1_c02408{width:50.252400px;}
._3_c02408{width:51.530688px;}
._a_c02408{width:85.939920px;}
.fc0_c02408{color:rgb(0,0,0);}
.fs0_c02408{font-size:47.520000px;}
.fs1_c02408{font-size:60.480000px;}
.y0_c02408{bottom:0.000000px;}
.y1a_c02408{bottom:65.880450px;}
.y1f_c02408{bottom:147.000054px;}
.y21_c02408{bottom:186.600234px;}
.y20_c02408{bottom:196.320450px;}
.y1e_c02408{bottom:260.760558px;}
.y1d_c02408{bottom:275.880234px;}
.y19_c02408{bottom:291.000000px;}
.y1c_c02408{bottom:341.760774px;}
.y18_c02408{bottom:356.878758px;}
.y1b_c02408{bottom:356.880450px;}
.y16_c02408{bottom:406.559730px;}
.y12_c02408{bottom:424.560306px;}
.y17_c02408{bottom:458.759262px;}
.y15_c02408{bottom:491.879514px;}
.y14_c02408{bottom:509.880090px;}
.y11_c02408{bottom:543.000342px;}
.y13_c02408{bottom:559.559874px;}
.y10_c02408{bottom:577.560450px;}
.y22_c02408{bottom:614.280450px;}
.yc_c02408{bottom:652.438650px;}
.yb_c02408{bottom:667.558326px;}
.ye_c02408{bottom:707.160234px;}
.yd_c02408{bottom:716.880450px;}
.ya_c02408{bottom:796.438506px;}
.y9_c02408{bottom:877.438722px;}
.y7_c02408{bottom:926.759730px;}
.y3_c02408{bottom:944.760306px;}
.y8_c02408{bottom:979.319226px;}
.y6_c02408{bottom:1012.439478px;}
.y5_c02408{bottom:1030.440054px;}
.y2_c02408{bottom:1063.560306px;}
.y4_c02408{bottom:1079.759874px;}
.y1_c02408{bottom:1097.760450px;}
.yf_c02408{bottom:1134.840450px;}
.h3_c02408{height:32.530781px;}
.h1_c02408{height:41.696016px;}
.h2_c02408{height:41.812031px;}
.h4_c02408{height:54.654737px;}
.h5_c02408{height:78.480000px;}
.h0_c02408{height:1263.000000px;}
.w2_c02408{width:215.280000px;}
.w1_c02408{width:892.500000px;}
.w0_c02408{width:892.830000px;}
.x0_c02408{left:0.000000px;}
.xe_c02408{left:117.000000px;}
.x8_c02408{left:440.999856px;}
.x4_c02408{left:445.680576px;}
.xc_c02408{left:451.080000px;}
.x7_c02408{left:455.399604px;}
.x5_c02408{left:461.880144px;}
.x1_c02408{left:463.320000px;}
.xa_c02408{left:483.480360px;}
.x9_c02408{left:492.119496px;}
.x6_c02408{left:493.200576px;}
.xd_c02408{left:506.880360px;}
.x3_c02408{left:511.919892px;}
.x2_c02408{left:526.679604px;}
.xb_c02408{left:569.880036px;}
.xf_c02408{left:613.440000px;}
@media print{
.v0_c02408{vertical-align:0.000000pt;}
.v1_c02408{vertical-align:1.279488pt;}
.lsf_c02408{letter-spacing:-0.705408pt;}
.lsc_c02408{letter-spacing:-0.688512pt;}
.ls19_c02408{letter-spacing:-0.680064pt;}
.ls12_c02408{letter-spacing:-0.654720pt;}
.ls17_c02408{letter-spacing:-0.642048pt;}
.lsa_c02408{letter-spacing:-0.540672pt;}
.lsb_c02408{letter-spacing:-0.511104pt;}
.ls1b_c02408{letter-spacing:-0.333696pt;}
.ls1c_c02408{letter-spacing:-0.244992pt;}
.ls13_c02408{letter-spacing:-0.240768pt;}
.ls10_c02408{letter-spacing:-0.232320pt;}
.ls7_c02408{letter-spacing:-0.215424pt;}
.ls8_c02408{letter-spacing:-0.211200pt;}
.ls4_c02408{letter-spacing:-0.105600pt;}
.ls16_c02408{letter-spacing:0.000000pt;}
.ls1_c02408{letter-spacing:0.005376pt;}
.ls6_c02408{letter-spacing:0.114048pt;}
.ls1a_c02408{letter-spacing:0.215424pt;}
.lse_c02408{letter-spacing:0.451968pt;}
.ls15_c02408{letter-spacing:0.456960pt;}
.ls11_c02408{letter-spacing:0.477312pt;}
.lsd_c02408{letter-spacing:0.515328pt;}
.ls14_c02408{letter-spacing:0.528000pt;}
.ls9_c02408{letter-spacing:0.532224pt;}
.ls3_c02408{letter-spacing:0.544896pt;}
.ls0_c02408{letter-spacing:0.578688pt;}
.ls5_c02408{letter-spacing:0.637824pt;}
.ls2_c02408{letter-spacing:0.642048pt;}
.ls18_c02408{letter-spacing:25.255296pt;}
.ws11_c02408{word-spacing:-35.815296pt;}
.wsd_c02408{word-spacing:-13.445376pt;}
.ws10_c02408{word-spacing:-11.202048pt;}
.wsb_c02408{word-spacing:-11.088000pt;}
.ws7_c02408{word-spacing:-11.075328pt;}
.wsf_c02408{word-spacing:-11.011968pt;}
.ws2_c02408{word-spacing:-10.348800pt;}
.ws4_c02408{word-spacing:-10.019328pt;}
.ws6_c02408{word-spacing:-9.871488pt;}
.ws1d_c02408{word-spacing:-1.919232pt;}
.ws1e_c02408{word-spacing:-0.963072pt;}
.ws17_c02408{word-spacing:-0.899712pt;}
.ws15_c02408{word-spacing:-0.865920pt;}
.ws18_c02408{word-spacing:-0.105600pt;}
.ws1a_c02408{word-spacing:-0.088704pt;}
.ws1b_c02408{word-spacing:-0.080256pt;}
.ws1c_c02408{word-spacing:-0.076032pt;}
.ws16_c02408{word-spacing:0.000000pt;}
.ws20_c02408{word-spacing:0.012672pt;}
.ws1f_c02408{word-spacing:0.321024pt;}
.ws19_c02408{word-spacing:0.384384pt;}
.wsa_c02408{word-spacing:5.892480pt;}
.ws12_c02408{word-spacing:14.906496pt;}
.wsc_c02408{word-spacing:29.600256pt;}
.ws9_c02408{word-spacing:30.966144pt;}
.wse_c02408{word-spacing:32.659968pt;}
.ws1_c02408{word-spacing:33.563904pt;}
.ws0_c02408{word-spacing:33.796224pt;}
.ws3_c02408{word-spacing:34.860672pt;}
.ws5_c02408{word-spacing:35.468928pt;}
.ws8_c02408{word-spacing:37.357056pt;}
.ws14_c02408{word-spacing:62.075904pt;}
.ws13_c02408{word-spacing:65.488896pt;}
._7_c02408{margin-left:-25.470720pt;}
._8_c02408{margin-left:-24.195072pt;}
._b_c02408{margin-left:-2.720256pt;}
._0_c02408{margin-left:-1.731840pt;}
._2_c02408{width:1.317888pt;}
._5_c02408{width:17.761920pt;}
._6_c02408{width:20.845440pt;}
._4_c02408{width:21.947904pt;}
._9_c02408{width:31.240704pt;}
._1_c02408{width:44.668800pt;}
._3_c02408{width:45.805056pt;}
._a_c02408{width:76.391040pt;}
.fs0_c02408{font-size:42.240000pt;}
.fs1_c02408{font-size:53.760000pt;}
.y0_c02408{bottom:0.000000pt;}
.y1a_c02408{bottom:58.560400pt;}
.y1f_c02408{bottom:130.666715pt;}
.y21_c02408{bottom:165.866875pt;}
.y20_c02408{bottom:174.507067pt;}
.y1e_c02408{bottom:231.787163pt;}
.y1d_c02408{bottom:245.226875pt;}
.y19_c02408{bottom:258.666667pt;}
.y1c_c02408{bottom:303.787355pt;}
.y18_c02408{bottom:317.225563pt;}
.y1b_c02408{bottom:317.227067pt;}
.y16_c02408{bottom:361.386427pt;}
.y12_c02408{bottom:377.386939pt;}
.y17_c02408{bottom:407.786011pt;}
.y15_c02408{bottom:437.226235pt;}
.y14_c02408{bottom:453.226747pt;}
.y11_c02408{bottom:482.666971pt;}
.y13_c02408{bottom:497.386555pt;}
.y10_c02408{bottom:513.387067pt;}
.y22_c02408{bottom:546.027067pt;}
.yc_c02408{bottom:579.945467pt;}
.yb_c02408{bottom:593.385179pt;}
.ye_c02408{bottom:628.586875pt;}
.yd_c02408{bottom:637.227067pt;}
.ya_c02408{bottom:707.945339pt;}
.y9_c02408{bottom:779.945531pt;}
.y7_c02408{bottom:823.786427pt;}
.y3_c02408{bottom:839.786939pt;}
.y8_c02408{bottom:870.505979pt;}
.y6_c02408{bottom:899.946203pt;}
.y5_c02408{bottom:915.946715pt;}
.y2_c02408{bottom:945.386939pt;}
.y4_c02408{bottom:959.786555pt;}
.y1_c02408{bottom:975.787067pt;}
.yf_c02408{bottom:1008.747067pt;}
.h3_c02408{height:28.916250pt;}
.h1_c02408{height:37.063125pt;}
.h2_c02408{height:37.166250pt;}
.h4_c02408{height:48.581988pt;}
.h5_c02408{height:69.760000pt;}
.h0_c02408{height:1122.666667pt;}
.w2_c02408{width:191.360000pt;}
.w1_c02408{width:793.333333pt;}
.w0_c02408{width:793.626667pt;}
.x0_c02408{left:0.000000pt;}
.xe_c02408{left:104.000000pt;}
.x8_c02408{left:391.999872pt;}
.x4_c02408{left:396.160512pt;}
.xc_c02408{left:400.960000pt;}
.x7_c02408{left:404.799648pt;}
.x5_c02408{left:410.560128pt;}
.x1_c02408{left:411.840000pt;}
.xa_c02408{left:429.760320pt;}
.x9_c02408{left:437.439552pt;}
.x6_c02408{left:438.400512pt;}
.xd_c02408{left:450.560320pt;}
.x3_c02408{left:455.039904pt;}
.x2_c02408{left:468.159648pt;}
.xb_c02408{left:506.560032pt;}
.xf_c02408{left:545.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02409 {
    display:none;
  }
  .loading-indicator_c02409.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02409 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02409 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02409" -> "#page-container .classname_c02409")
 */
.pf_c02409 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02409 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02409 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02409 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02409 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02409 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02409 {overflow:visible;}
  }
}
.c_c02409 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02409 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02409:after { /* webkit #35443 */
  content: '';
}
.t_c02409:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02409 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02409 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02409 { /* info for Javascript */
  display:none;
}
.l_c02409 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02409 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02409 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02409:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02409 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02409.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02409 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02409{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02409;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02409{font-family:ff1_c02409;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02409;src:url('chunks/assets/font_fd9a763b7a1c00e4df577527.woff2')format("woff");}.ff2_c02409{font-family:ff2_c02409;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02409;src:url('chunks/assets/font_57d90e486fce6d66dfbb536b.woff2')format("woff");}.ff3_c02409{font-family:ff3_c02409;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02409{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02409{vertical-align:0.000000px;}
.v2_c02409{vertical-align:1.439424px;}
.v1_c02409{vertical-align:33.121440px;}
.ls15_c02409{letter-spacing:-1.197504px;}
.ls18_c02409{letter-spacing:-0.817344px;}
.ls1e_c02409{letter-spacing:-0.774576px;}
.ls1f_c02409{letter-spacing:-0.736560px;}
.ls16_c02409{letter-spacing:-0.722304px;}
.lsa_c02409{letter-spacing:-0.608256px;}
.lsb_c02409{letter-spacing:-0.574992px;}
.ls1b_c02409{letter-spacing:-0.361152px;}
.ls19_c02409{letter-spacing:-0.275616px;}
.lsd_c02409{letter-spacing:-0.270864px;}
.ls13_c02409{letter-spacing:-0.261360px;}
.ls7_c02409{letter-spacing:-0.242352px;}
.ls8_c02409{letter-spacing:-0.237600px;}
.lsf_c02409{letter-spacing:-0.228096px;}
.ls4_c02409{letter-spacing:-0.118800px;}
.ls1d_c02409{letter-spacing:0.000000px;}
.ls1_c02409{letter-spacing:0.006048px;}
.ls10_c02409{letter-spacing:0.014256px;}
.ls6_c02409{letter-spacing:0.128304px;}
.ls14_c02409{letter-spacing:0.242352px;}
.lse_c02409{letter-spacing:0.508464px;}
.ls1c_c02409{letter-spacing:0.514080px;}
.ls17_c02409{letter-spacing:0.536976px;}
.lsc_c02409{letter-spacing:0.579744px;}
.ls1a_c02409{letter-spacing:0.594000px;}
.ls9_c02409{letter-spacing:0.598752px;}
.ls3_c02409{letter-spacing:0.613008px;}
.ls2_c02409{letter-spacing:0.651024px;}
.ls12_c02409{letter-spacing:0.674784px;}
.ls5_c02409{letter-spacing:0.717552px;}
.ls0_c02409{letter-spacing:0.722304px;}
.ls11_c02409{letter-spacing:34.171632px;}
.sc__c02409{text-shadow:none;}
.sc0_c02409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02409{-webkit-text-stroke:0px transparent;}
.sc0_c02409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02409{word-spacing:-46.051632px;}
.ws16_c02409{word-spacing:-15.126048px;}
.ws1a_c02409{word-spacing:-12.474000px;}
.ws8_c02409{word-spacing:-12.459744px;}
.ws7_c02409{word-spacing:-12.388464px;}
.ws2_c02409{word-spacing:-11.642400px;}
.ws4_c02409{word-spacing:-11.271744px;}
.ws17_c02409{word-spacing:-11.105424px;}
.ws24_c02409{word-spacing:-2.159136px;}
.ws1e_c02409{word-spacing:-1.083456px;}
.ws25_c02409{word-spacing:-1.012176px;}
.ws1b_c02409{word-spacing:-0.974160px;}
.ws1d_c02409{word-spacing:-0.118800px;}
.ws20_c02409{word-spacing:-0.099792px;}
.ws1f_c02409{word-spacing:-0.090288px;}
.ws23_c02409{word-spacing:-0.085536px;}
.ws1c_c02409{word-spacing:0.000000px;}
.ws11_c02409{word-spacing:0.356400px;}
.ws21_c02409{word-spacing:0.361152px;}
.ws22_c02409{word-spacing:0.456192px;}
.ws12_c02409{word-spacing:0.717552px;}
.ws9_c02409{word-spacing:2.280960px;}
.wsb_c02409{word-spacing:3.972672px;}
.wsa_c02409{word-spacing:4.652208px;}
.ws19_c02409{word-spacing:6.629040px;}
.ws10_c02409{word-spacing:7.436880px;}
.wsf_c02409{word-spacing:7.916832px;}
.wse_c02409{word-spacing:11.756448px;}
.wsd_c02409{word-spacing:18.209664px;}
.ws14_c02409{word-spacing:30.298752px;}
.ws15_c02409{word-spacing:33.300288px;}
.ws13_c02409{word-spacing:34.836912px;}
.ws6_c02409{word-spacing:36.742464px;}
.ws1_c02409{word-spacing:37.759392px;}
.ws0_c02409{word-spacing:38.020752px;}
.ws3_c02409{word-spacing:39.218256px;}
.ws5_c02409{word-spacing:39.902544px;}
.ws18_c02409{word-spacing:42.026688px;}
._5_c02409{margin-left:-34.413984px;}
._6_c02409{margin-left:-32.978880px;}
._0_c02409{margin-left:-1.948320px;}
._2_c02409{width:1.482624px;}
._c_c02409{width:2.756160px;}
._d_c02409{width:12.388464px;}
._4_c02409{width:18.927216px;}
._10_c02409{width:19.982160px;}
._a_c02409{width:22.576752px;}
._f_c02409{width:24.691392px;}
._11_c02409{width:25.945920px;}
._e_c02409{width:28.431216px;}
._8_c02409{width:32.204304px;}
._7_c02409{width:34.751376px;}
._9_c02409{width:36.067680px;}
._b_c02409{width:42.235776px;}
._1_c02409{width:50.252400px;}
._3_c02409{width:51.530688px;}
.fc0_c02409{color:rgb(0,0,0);}
.fs0_c02409{font-size:47.520000px;}
.fs1_c02409{font-size:60.480000px;}
.y0_c02409{bottom:0.000000px;}
.yb_c02409{bottom:66.240450px;}
.y21_c02409{bottom:131.878686px;}
.y20_c02409{bottom:146.998362px;}
.y23_c02409{bottom:186.600234px;}
.y22_c02409{bottom:196.320450px;}
.y1f_c02409{bottom:275.878542px;}
.y1e_c02409{bottom:356.878758px;}
.y1c_c02409{bottom:406.559730px;}
.y18_c02409{bottom:424.560306px;}
.y1d_c02409{bottom:458.759262px;}
.y1b_c02409{bottom:491.879514px;}
.y1a_c02409{bottom:509.880090px;}
.y17_c02409{bottom:543.000342px;}
.y19_c02409{bottom:559.559874px;}
.y16_c02409{bottom:577.560450px;}
.y24_c02409{bottom:614.280450px;}
.y12_c02409{bottom:667.562430px;}
.y14_c02409{bottom:707.160234px;}
.y13_c02409{bottom:716.880450px;}
.y11_c02409{bottom:766.562034px;}
.y10_c02409{bottom:781.321746px;}
.yf_c02409{bottom:796.441422px;}
.ya_c02409{bottom:811.200000px;}
.ye_c02409{bottom:847.561062px;}
.yd_c02409{bottom:862.320774px;}
.y9_c02409{bottom:877.438722px;}
.yc_c02409{bottom:877.440450px;}
.y7_c02409{bottom:926.759730px;}
.y3_c02409{bottom:944.760306px;}
.y8_c02409{bottom:979.319226px;}
.y6_c02409{bottom:1012.439478px;}
.y5_c02409{bottom:1030.440054px;}
.y2_c02409{bottom:1063.560306px;}
.y4_c02409{bottom:1079.759874px;}
.y1_c02409{bottom:1097.760450px;}
.y15_c02409{bottom:1134.840450px;}
.h3_c02409{height:32.530781px;}
.h1_c02409{height:41.696016px;}
.h2_c02409{height:41.812031px;}
.h6_c02409{height:54.654737px;}
.h5_c02409{height:74.817456px;}
.h4_c02409{height:78.840000px;}
.h0_c02409{height:1263.000000px;}
.w2_c02409{width:215.280000px;}
.w1_c02409{width:892.500000px;}
.w0_c02409{width:892.830000px;}
.x0_c02409{left:0.000000px;}
.xf_c02409{left:117.000000px;}
.x8_c02409{left:440.999856px;}
.x4_c02409{left:445.680576px;}
.xd_c02409{left:451.080000px;}
.x7_c02409{left:455.399604px;}
.x5_c02409{left:461.880144px;}
.x1_c02409{left:463.320000px;}
.xc_c02409{left:483.480900px;}
.x9_c02409{left:492.119496px;}
.x6_c02409{left:493.200576px;}
.xe_c02409{left:506.880360px;}
.x3_c02409{left:511.919892px;}
.x2_c02409{left:526.679604px;}
.xa_c02409{left:569.520000px;}
.xb_c02409{left:587.520000px;}
@media print{
.v0_c02409{vertical-align:0.000000pt;}
.v2_c02409{vertical-align:1.279488pt;}
.v1_c02409{vertical-align:29.441280pt;}
.ls15_c02409{letter-spacing:-1.064448pt;}
.ls18_c02409{letter-spacing:-0.726528pt;}
.ls1e_c02409{letter-spacing:-0.688512pt;}
.ls1f_c02409{letter-spacing:-0.654720pt;}
.ls16_c02409{letter-spacing:-0.642048pt;}
.lsa_c02409{letter-spacing:-0.540672pt;}
.lsb_c02409{letter-spacing:-0.511104pt;}
.ls1b_c02409{letter-spacing:-0.321024pt;}
.ls19_c02409{letter-spacing:-0.244992pt;}
.lsd_c02409{letter-spacing:-0.240768pt;}
.ls13_c02409{letter-spacing:-0.232320pt;}
.ls7_c02409{letter-spacing:-0.215424pt;}
.ls8_c02409{letter-spacing:-0.211200pt;}
.lsf_c02409{letter-spacing:-0.202752pt;}
.ls4_c02409{letter-spacing:-0.105600pt;}
.ls1d_c02409{letter-spacing:0.000000pt;}
.ls1_c02409{letter-spacing:0.005376pt;}
.ls10_c02409{letter-spacing:0.012672pt;}
.ls6_c02409{letter-spacing:0.114048pt;}
.ls14_c02409{letter-spacing:0.215424pt;}
.lse_c02409{letter-spacing:0.451968pt;}
.ls1c_c02409{letter-spacing:0.456960pt;}
.ls17_c02409{letter-spacing:0.477312pt;}
.lsc_c02409{letter-spacing:0.515328pt;}
.ls1a_c02409{letter-spacing:0.528000pt;}
.ls9_c02409{letter-spacing:0.532224pt;}
.ls3_c02409{letter-spacing:0.544896pt;}
.ls2_c02409{letter-spacing:0.578688pt;}
.ls12_c02409{letter-spacing:0.599808pt;}
.ls5_c02409{letter-spacing:0.637824pt;}
.ls0_c02409{letter-spacing:0.642048pt;}
.ls11_c02409{letter-spacing:30.374784pt;}
.wsc_c02409{word-spacing:-40.934784pt;}
.ws16_c02409{word-spacing:-13.445376pt;}
.ws1a_c02409{word-spacing:-11.088000pt;}
.ws8_c02409{word-spacing:-11.075328pt;}
.ws7_c02409{word-spacing:-11.011968pt;}
.ws2_c02409{word-spacing:-10.348800pt;}
.ws4_c02409{word-spacing:-10.019328pt;}
.ws17_c02409{word-spacing:-9.871488pt;}
.ws24_c02409{word-spacing:-1.919232pt;}
.ws1e_c02409{word-spacing:-0.963072pt;}
.ws25_c02409{word-spacing:-0.899712pt;}
.ws1b_c02409{word-spacing:-0.865920pt;}
.ws1d_c02409{word-spacing:-0.105600pt;}
.ws20_c02409{word-spacing:-0.088704pt;}
.ws1f_c02409{word-spacing:-0.080256pt;}
.ws23_c02409{word-spacing:-0.076032pt;}
.ws1c_c02409{word-spacing:0.000000pt;}
.ws11_c02409{word-spacing:0.316800pt;}
.ws21_c02409{word-spacing:0.321024pt;}
.ws22_c02409{word-spacing:0.405504pt;}
.ws12_c02409{word-spacing:0.637824pt;}
.ws9_c02409{word-spacing:2.027520pt;}
.wsb_c02409{word-spacing:3.531264pt;}
.wsa_c02409{word-spacing:4.135296pt;}
.ws19_c02409{word-spacing:5.892480pt;}
.ws10_c02409{word-spacing:6.610560pt;}
.wsf_c02409{word-spacing:7.037184pt;}
.wse_c02409{word-spacing:10.450176pt;}
.wsd_c02409{word-spacing:16.186368pt;}
.ws14_c02409{word-spacing:26.932224pt;}
.ws15_c02409{word-spacing:29.600256pt;}
.ws13_c02409{word-spacing:30.966144pt;}
.ws6_c02409{word-spacing:32.659968pt;}
.ws1_c02409{word-spacing:33.563904pt;}
.ws0_c02409{word-spacing:33.796224pt;}
.ws3_c02409{word-spacing:34.860672pt;}
.ws5_c02409{word-spacing:35.468928pt;}
.ws18_c02409{word-spacing:37.357056pt;}
._5_c02409{margin-left:-30.590208pt;}
._6_c02409{margin-left:-29.314560pt;}
._0_c02409{margin-left:-1.731840pt;}
._2_c02409{width:1.317888pt;}
._c_c02409{width:2.449920pt;}
._d_c02409{width:11.011968pt;}
._4_c02409{width:16.824192pt;}
._10_c02409{width:17.761920pt;}
._a_c02409{width:20.068224pt;}
._f_c02409{width:21.947904pt;}
._11_c02409{width:23.063040pt;}
._e_c02409{width:25.272192pt;}
._8_c02409{width:28.626048pt;}
._7_c02409{width:30.890112pt;}
._9_c02409{width:32.060160pt;}
._b_c02409{width:37.542912pt;}
._1_c02409{width:44.668800pt;}
._3_c02409{width:45.805056pt;}
.fs0_c02409{font-size:42.240000pt;}
.fs1_c02409{font-size:53.760000pt;}
.y0_c02409{bottom:0.000000pt;}
.yb_c02409{bottom:58.880400pt;}
.y21_c02409{bottom:117.225499pt;}
.y20_c02409{bottom:130.665211pt;}
.y23_c02409{bottom:165.866875pt;}
.y22_c02409{bottom:174.507067pt;}
.y1f_c02409{bottom:245.225371pt;}
.y1e_c02409{bottom:317.225563pt;}
.y1c_c02409{bottom:361.386427pt;}
.y18_c02409{bottom:377.386939pt;}
.y1d_c02409{bottom:407.786011pt;}
.y1b_c02409{bottom:437.226235pt;}
.y1a_c02409{bottom:453.226747pt;}
.y17_c02409{bottom:482.666971pt;}
.y19_c02409{bottom:497.386555pt;}
.y16_c02409{bottom:513.387067pt;}
.y24_c02409{bottom:546.027067pt;}
.y12_c02409{bottom:593.388827pt;}
.y14_c02409{bottom:628.586875pt;}
.y13_c02409{bottom:637.227067pt;}
.y11_c02409{bottom:681.388475pt;}
.y10_c02409{bottom:694.508219pt;}
.yf_c02409{bottom:707.947931pt;}
.ya_c02409{bottom:721.066667pt;}
.ye_c02409{bottom:753.387611pt;}
.yd_c02409{bottom:766.507355pt;}
.y9_c02409{bottom:779.945531pt;}
.yc_c02409{bottom:779.947067pt;}
.y7_c02409{bottom:823.786427pt;}
.y3_c02409{bottom:839.786939pt;}
.y8_c02409{bottom:870.505979pt;}
.y6_c02409{bottom:899.946203pt;}
.y5_c02409{bottom:915.946715pt;}
.y2_c02409{bottom:945.386939pt;}
.y4_c02409{bottom:959.786555pt;}
.y1_c02409{bottom:975.787067pt;}
.y15_c02409{bottom:1008.747067pt;}
.h3_c02409{height:28.916250pt;}
.h1_c02409{height:37.063125pt;}
.h2_c02409{height:37.166250pt;}
.h6_c02409{height:48.581988pt;}
.h5_c02409{height:66.504405pt;}
.h4_c02409{height:70.080000pt;}
.h0_c02409{height:1122.666667pt;}
.w2_c02409{width:191.360000pt;}
.w1_c02409{width:793.333333pt;}
.w0_c02409{width:793.626667pt;}
.x0_c02409{left:0.000000pt;}
.xf_c02409{left:104.000000pt;}
.x8_c02409{left:391.999872pt;}
.x4_c02409{left:396.160512pt;}
.xd_c02409{left:400.960000pt;}
.x7_c02409{left:404.799648pt;}
.x5_c02409{left:410.560128pt;}
.x1_c02409{left:411.840000pt;}
.xc_c02409{left:429.760800pt;}
.x9_c02409{left:437.439552pt;}
.x6_c02409{left:438.400512pt;}
.xe_c02409{left:450.560320pt;}
.x3_c02409{left:455.039904pt;}
.x2_c02409{left:468.159648pt;}
.xa_c02409{left:506.240000pt;}
.xb_c02409{left:522.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02410 {
    display:none;
  }
  .loading-indicator_c02410.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02410 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02410 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02410" -> "#page-container .classname_c02410")
 */
.pf_c02410 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02410 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02410 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02410 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02410 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02410 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02410 {overflow:visible;}
  }
}
.c_c02410 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02410 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02410:after { /* webkit #35443 */
  content: '';
}
.t_c02410:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02410 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02410 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02410 { /* info for Javascript */
  display:none;
}
.l_c02410 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02410 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02410 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02410:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02410 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02410.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02410 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02410{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02410;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02410{font-family:ff1_c02410;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02410;src:url('chunks/assets/font_c487e59324c41a923ce90b50.woff2')format("woff");}.ff2_c02410{font-family:ff2_c02410;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02410;src:url('chunks/assets/font_ab39b409ed0e4af9d243005f.woff2')format("woff");}.ff3_c02410{font-family:ff3_c02410;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02410{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02410{vertical-align:0.000000px;}
.v1_c02410{vertical-align:1.439424px;}
.ls18_c02410{letter-spacing:-0.793584px;}
.ls17_c02410{letter-spacing:-0.774576px;}
.ls19_c02410{letter-spacing:-0.736560px;}
.ls10_c02410{letter-spacing:-0.703296px;}
.lsb_c02410{letter-spacing:-0.608256px;}
.lsc_c02410{letter-spacing:-0.574992px;}
.ls14_c02410{letter-spacing:-0.275616px;}
.ls1a_c02410{letter-spacing:-0.270864px;}
.ls12_c02410{letter-spacing:-0.261360px;}
.ls8_c02410{letter-spacing:-0.242352px;}
.ls9_c02410{letter-spacing:-0.237600px;}
.lsf_c02410{letter-spacing:-0.228096px;}
.ls6_c02410{letter-spacing:-0.118800px;}
.ls11_c02410{letter-spacing:0.000000px;}
.ls3_c02410{letter-spacing:0.006048px;}
.ls7_c02410{letter-spacing:0.128304px;}
.ls1_c02410{letter-spacing:0.242352px;}
.lse_c02410{letter-spacing:0.508464px;}
.ls16_c02410{letter-spacing:0.514080px;}
.ls13_c02410{letter-spacing:0.536976px;}
.lsd_c02410{letter-spacing:0.579744px;}
.ls15_c02410{letter-spacing:0.594000px;}
.lsa_c02410{letter-spacing:0.598752px;}
.ls5_c02410{letter-spacing:0.613008px;}
.ls4_c02410{letter-spacing:0.651024px;}
.ls2_c02410{letter-spacing:0.717552px;}
.ls0_c02410{letter-spacing:0.722304px;}
.sc__c02410{text-shadow:none;}
.sc0_c02410{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02410{-webkit-text-stroke:0px transparent;}
.sc0_c02410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c02410{word-spacing:-15.126048px;}
.wse_c02410{word-spacing:-12.474000px;}
.ws6_c02410{word-spacing:-12.459744px;}
.wsd_c02410{word-spacing:-12.416976px;}
.ws7_c02410{word-spacing:-12.388464px;}
.ws2_c02410{word-spacing:-11.642400px;}
.ws4_c02410{word-spacing:-11.271744px;}
.ws11_c02410{word-spacing:-11.105424px;}
.ws1c_c02410{word-spacing:-2.159136px;}
.ws18_c02410{word-spacing:-1.083456px;}
.ws1a_c02410{word-spacing:-1.078704px;}
.ws1d_c02410{word-spacing:-1.012176px;}
.ws15_c02410{word-spacing:-0.974160px;}
.ws17_c02410{word-spacing:-0.118800px;}
.ws19_c02410{word-spacing:-0.099792px;}
.ws1f_c02410{word-spacing:-0.090288px;}
.ws1b_c02410{word-spacing:-0.085536px;}
.ws16_c02410{word-spacing:0.000000px;}
.ws1e_c02410{word-spacing:0.432432px;}
.ws9_c02410{word-spacing:2.157408px;}
.ws8_c02410{word-spacing:2.884464px;}
.wsb_c02410{word-spacing:3.597264px;}
.wsc_c02410{word-spacing:4.557168px;}
.wsa_c02410{word-spacing:6.087312px;}
.ws14_c02410{word-spacing:6.629040px;}
.wsf_c02410{word-spacing:33.300288px;}
.ws13_c02410{word-spacing:34.836912px;}
.ws1_c02410{word-spacing:37.759392px;}
.ws0_c02410{word-spacing:38.020752px;}
.ws3_c02410{word-spacing:39.218256px;}
.ws5_c02410{word-spacing:39.902544px;}
.ws12_c02410{word-spacing:42.026688px;}
._0_c02410{margin-left:-1.948320px;}
._2_c02410{width:1.482624px;}
._5_c02410{width:13.700016px;}
._4_c02410{width:19.844352px;}
._7_c02410{width:23.588928px;}
._6_c02410{width:24.691392px;}
._1_c02410{width:50.252400px;}
._3_c02410{width:51.530688px;}
.fc0_c02410{color:rgb(0,0,0);}
.fs0_c02410{font-size:47.520000px;}
.fs1_c02410{font-size:60.480000px;}
.y0_c02410{bottom:0.000000px;}
.yb_c02410{bottom:66.240450px;}
.y1f_c02410{bottom:131.878686px;}
.y1e_c02410{bottom:146.998362px;}
.y21_c02410{bottom:186.600234px;}
.y20_c02410{bottom:196.320450px;}
.y1d_c02410{bottom:275.878542px;}
.y1c_c02410{bottom:356.878758px;}
.y1a_c02410{bottom:406.559730px;}
.y16_c02410{bottom:424.560306px;}
.y1b_c02410{bottom:458.759262px;}
.y19_c02410{bottom:491.879514px;}
.y18_c02410{bottom:509.880090px;}
.y15_c02410{bottom:543.000342px;}
.y17_c02410{bottom:559.559874px;}
.y14_c02410{bottom:577.560450px;}
.y22_c02410{bottom:614.280450px;}
.y10_c02410{bottom:667.561242px;}
.y12_c02410{bottom:707.160234px;}
.y11_c02410{bottom:716.880450px;}
.yf_c02410{bottom:781.321746px;}
.ye_c02410{bottom:796.441422px;}
.ya_c02410{bottom:811.200000px;}
.yd_c02410{bottom:862.320774px;}
.y9_c02410{bottom:877.438722px;}
.yc_c02410{bottom:877.440450px;}
.y7_c02410{bottom:926.759730px;}
.y3_c02410{bottom:944.760306px;}
.y8_c02410{bottom:979.319226px;}
.y6_c02410{bottom:1012.439478px;}
.y5_c02410{bottom:1030.440054px;}
.y2_c02410{bottom:1063.560306px;}
.y4_c02410{bottom:1079.759874px;}
.y1_c02410{bottom:1097.760450px;}
.y13_c02410{bottom:1134.840450px;}
.h3_c02410{height:32.530781px;}
.h1_c02410{height:41.696016px;}
.h2_c02410{height:41.812031px;}
.h5_c02410{height:54.654737px;}
.h4_c02410{height:78.840000px;}
.h0_c02410{height:1263.000000px;}
.w2_c02410{width:215.280000px;}
.w1_c02410{width:892.500000px;}
.w0_c02410{width:892.830000px;}
.x0_c02410{left:0.000000px;}
.xf_c02410{left:117.000000px;}
.x8_c02410{left:440.999856px;}
.x4_c02410{left:445.680576px;}
.xd_c02410{left:451.080000px;}
.x7_c02410{left:455.399604px;}
.x5_c02410{left:461.880144px;}
.x1_c02410{left:463.320000px;}
.xc_c02410{left:483.479712px;}
.x9_c02410{left:492.119496px;}
.x6_c02410{left:493.200576px;}
.xe_c02410{left:506.880360px;}
.x3_c02410{left:511.919892px;}
.x2_c02410{left:526.679604px;}
.xa_c02410{left:569.520000px;}
.xb_c02410{left:587.520000px;}
@media print{
.v0_c02410{vertical-align:0.000000pt;}
.v1_c02410{vertical-align:1.279488pt;}
.ls18_c02410{letter-spacing:-0.705408pt;}
.ls17_c02410{letter-spacing:-0.688512pt;}
.ls19_c02410{letter-spacing:-0.654720pt;}
.ls10_c02410{letter-spacing:-0.625152pt;}
.lsb_c02410{letter-spacing:-0.540672pt;}
.lsc_c02410{letter-spacing:-0.511104pt;}
.ls14_c02410{letter-spacing:-0.244992pt;}
.ls1a_c02410{letter-spacing:-0.240768pt;}
.ls12_c02410{letter-spacing:-0.232320pt;}
.ls8_c02410{letter-spacing:-0.215424pt;}
.ls9_c02410{letter-spacing:-0.211200pt;}
.lsf_c02410{letter-spacing:-0.202752pt;}
.ls6_c02410{letter-spacing:-0.105600pt;}
.ls11_c02410{letter-spacing:0.000000pt;}
.ls3_c02410{letter-spacing:0.005376pt;}
.ls7_c02410{letter-spacing:0.114048pt;}
.ls1_c02410{letter-spacing:0.215424pt;}
.lse_c02410{letter-spacing:0.451968pt;}
.ls16_c02410{letter-spacing:0.456960pt;}
.ls13_c02410{letter-spacing:0.477312pt;}
.lsd_c02410{letter-spacing:0.515328pt;}
.ls15_c02410{letter-spacing:0.528000pt;}
.lsa_c02410{letter-spacing:0.532224pt;}
.ls5_c02410{letter-spacing:0.544896pt;}
.ls4_c02410{letter-spacing:0.578688pt;}
.ls2_c02410{letter-spacing:0.637824pt;}
.ls0_c02410{letter-spacing:0.642048pt;}
.ws10_c02410{word-spacing:-13.445376pt;}
.wse_c02410{word-spacing:-11.088000pt;}
.ws6_c02410{word-spacing:-11.075328pt;}
.wsd_c02410{word-spacing:-11.037312pt;}
.ws7_c02410{word-spacing:-11.011968pt;}
.ws2_c02410{word-spacing:-10.348800pt;}
.ws4_c02410{word-spacing:-10.019328pt;}
.ws11_c02410{word-spacing:-9.871488pt;}
.ws1c_c02410{word-spacing:-1.919232pt;}
.ws18_c02410{word-spacing:-0.963072pt;}
.ws1a_c02410{word-spacing:-0.958848pt;}
.ws1d_c02410{word-spacing:-0.899712pt;}
.ws15_c02410{word-spacing:-0.865920pt;}
.ws17_c02410{word-spacing:-0.105600pt;}
.ws19_c02410{word-spacing:-0.088704pt;}
.ws1f_c02410{word-spacing:-0.080256pt;}
.ws1b_c02410{word-spacing:-0.076032pt;}
.ws16_c02410{word-spacing:0.000000pt;}
.ws1e_c02410{word-spacing:0.384384pt;}
.ws9_c02410{word-spacing:1.917696pt;}
.ws8_c02410{word-spacing:2.563968pt;}
.wsb_c02410{word-spacing:3.197568pt;}
.wsc_c02410{word-spacing:4.050816pt;}
.wsa_c02410{word-spacing:5.410944pt;}
.ws14_c02410{word-spacing:5.892480pt;}
.wsf_c02410{word-spacing:29.600256pt;}
.ws13_c02410{word-spacing:30.966144pt;}
.ws1_c02410{word-spacing:33.563904pt;}
.ws0_c02410{word-spacing:33.796224pt;}
.ws3_c02410{word-spacing:34.860672pt;}
.ws5_c02410{word-spacing:35.468928pt;}
.ws12_c02410{word-spacing:37.357056pt;}
._0_c02410{margin-left:-1.731840pt;}
._2_c02410{width:1.317888pt;}
._5_c02410{width:12.177792pt;}
._4_c02410{width:17.639424pt;}
._7_c02410{width:20.967936pt;}
._6_c02410{width:21.947904pt;}
._1_c02410{width:44.668800pt;}
._3_c02410{width:45.805056pt;}
.fs0_c02410{font-size:42.240000pt;}
.fs1_c02410{font-size:53.760000pt;}
.y0_c02410{bottom:0.000000pt;}
.yb_c02410{bottom:58.880400pt;}
.y1f_c02410{bottom:117.225499pt;}
.y1e_c02410{bottom:130.665211pt;}
.y21_c02410{bottom:165.866875pt;}
.y20_c02410{bottom:174.507067pt;}
.y1d_c02410{bottom:245.225371pt;}
.y1c_c02410{bottom:317.225563pt;}
.y1a_c02410{bottom:361.386427pt;}
.y16_c02410{bottom:377.386939pt;}
.y1b_c02410{bottom:407.786011pt;}
.y19_c02410{bottom:437.226235pt;}
.y18_c02410{bottom:453.226747pt;}
.y15_c02410{bottom:482.666971pt;}
.y17_c02410{bottom:497.386555pt;}
.y14_c02410{bottom:513.387067pt;}
.y22_c02410{bottom:546.027067pt;}
.y10_c02410{bottom:593.387771pt;}
.y12_c02410{bottom:628.586875pt;}
.y11_c02410{bottom:637.227067pt;}
.yf_c02410{bottom:694.508219pt;}
.ye_c02410{bottom:707.947931pt;}
.ya_c02410{bottom:721.066667pt;}
.yd_c02410{bottom:766.507355pt;}
.y9_c02410{bottom:779.945531pt;}
.yc_c02410{bottom:779.947067pt;}
.y7_c02410{bottom:823.786427pt;}
.y3_c02410{bottom:839.786939pt;}
.y8_c02410{bottom:870.505979pt;}
.y6_c02410{bottom:899.946203pt;}
.y5_c02410{bottom:915.946715pt;}
.y2_c02410{bottom:945.386939pt;}
.y4_c02410{bottom:959.786555pt;}
.y1_c02410{bottom:975.787067pt;}
.y13_c02410{bottom:1008.747067pt;}
.h3_c02410{height:28.916250pt;}
.h1_c02410{height:37.063125pt;}
.h2_c02410{height:37.166250pt;}
.h5_c02410{height:48.581988pt;}
.h4_c02410{height:70.080000pt;}
.h0_c02410{height:1122.666667pt;}
.w2_c02410{width:191.360000pt;}
.w1_c02410{width:793.333333pt;}
.w0_c02410{width:793.626667pt;}
.x0_c02410{left:0.000000pt;}
.xf_c02410{left:104.000000pt;}
.x8_c02410{left:391.999872pt;}
.x4_c02410{left:396.160512pt;}
.xd_c02410{left:400.960000pt;}
.x7_c02410{left:404.799648pt;}
.x5_c02410{left:410.560128pt;}
.x1_c02410{left:411.840000pt;}
.xc_c02410{left:429.759744pt;}
.x9_c02410{left:437.439552pt;}
.x6_c02410{left:438.400512pt;}
.xe_c02410{left:450.560320pt;}
.x3_c02410{left:455.039904pt;}
.x2_c02410{left:468.159648pt;}
.xa_c02410{left:506.240000pt;}
.xb_c02410{left:522.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02411 {
    display:none;
  }
  .loading-indicator_c02411.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02411 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02411 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02411" -> "#page-container .classname_c02411")
 */
.pf_c02411 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02411 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02411 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02411 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02411 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02411 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02411 {overflow:visible;}
  }
}
.c_c02411 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02411 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02411:after { /* webkit #35443 */
  content: '';
}
.t_c02411:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02411 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02411 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02411 { /* info for Javascript */
  display:none;
}
.l_c02411 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02411 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02411 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02411:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02411 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02411.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02411 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02411{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02411;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02411{font-family:ff1_c02411;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02411;src:url('chunks/assets/font_a312d8f3331edbc0b69e4682.woff2')format("woff");}.ff2_c02411{font-family:ff2_c02411;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02411;src:url('chunks/assets/font_636da7201ae398b263ca913c.woff2')format("woff");}.ff3_c02411{font-family:ff3_c02411;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02411{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02411{vertical-align:0.000000px;}
.v1_c02411{vertical-align:1.439424px;}
.lsd_c02411{letter-spacing:-0.793584px;}
.ls11_c02411{letter-spacing:-0.736560px;}
.ls9_c02411{letter-spacing:-0.608256px;}
.lsa_c02411{letter-spacing:-0.574992px;}
.lse_c02411{letter-spacing:-0.270864px;}
.lsf_c02411{letter-spacing:-0.261360px;}
.ls6_c02411{letter-spacing:-0.242352px;}
.ls7_c02411{letter-spacing:-0.237600px;}
.ls3_c02411{letter-spacing:-0.118800px;}
.ls14_c02411{letter-spacing:0.000000px;}
.ls1_c02411{letter-spacing:0.006048px;}
.ls5_c02411{letter-spacing:0.128304px;}
.lsc_c02411{letter-spacing:0.508464px;}
.ls13_c02411{letter-spacing:0.514080px;}
.ls10_c02411{letter-spacing:0.536976px;}
.lsb_c02411{letter-spacing:0.579744px;}
.ls12_c02411{letter-spacing:0.594000px;}
.ls8_c02411{letter-spacing:0.598752px;}
.ls2_c02411{letter-spacing:0.613008px;}
.ls4_c02411{letter-spacing:0.717552px;}
.ls0_c02411{letter-spacing:0.722304px;}
.sc__c02411{text-shadow:none;}
.sc0_c02411{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02411{-webkit-text-stroke:0px transparent;}
.sc0_c02411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02411{word-spacing:-15.126048px;}
.wsa_c02411{word-spacing:-12.474000px;}
.ws6_c02411{word-spacing:-12.459744px;}
.ws2_c02411{word-spacing:-11.642400px;}
.ws4_c02411{word-spacing:-11.271744px;}
.ws15_c02411{word-spacing:-2.159136px;}
.ws10_c02411{word-spacing:-1.083456px;}
.wsd_c02411{word-spacing:-0.974160px;}
.wsf_c02411{word-spacing:-0.118800px;}
.ws13_c02411{word-spacing:-0.099792px;}
.ws12_c02411{word-spacing:-0.090288px;}
.ws14_c02411{word-spacing:-0.085536px;}
.wse_c02411{word-spacing:0.000000px;}
.ws11_c02411{word-spacing:0.432432px;}
.ws9_c02411{word-spacing:6.629040px;}
.wsb_c02411{word-spacing:33.300288px;}
.ws8_c02411{word-spacing:34.836912px;}
.ws1_c02411{word-spacing:37.759392px;}
.ws0_c02411{word-spacing:38.020752px;}
.ws3_c02411{word-spacing:39.218256px;}
.ws5_c02411{word-spacing:39.902544px;}
.ws7_c02411{word-spacing:42.026688px;}
._0_c02411{margin-left:-1.948320px;}
._2_c02411{width:1.482624px;}
._5_c02411{width:19.982160px;}
._6_c02411{width:23.451120px;}
._4_c02411{width:24.691392px;}
._1_c02411{width:50.252400px;}
._3_c02411{width:51.530688px;}
.fc0_c02411{color:rgb(0,0,0);}
.fs0_c02411{font-size:47.520000px;}
.fs1_c02411{font-size:60.480000px;}
.y0_c02411{bottom:0.000000px;}
.y1d_c02411{bottom:65.880450px;}
.yb_c02411{bottom:66.240450px;}
.y21_c02411{bottom:131.880378px;}
.y20_c02411{bottom:147.000054px;}
.y23_c02411{bottom:186.600234px;}
.y22_c02411{bottom:196.320450px;}
.y1f_c02411{bottom:275.880234px;}
.y1c_c02411{bottom:291.000000px;}
.y1b_c02411{bottom:356.878758px;}
.y1e_c02411{bottom:356.880450px;}
.y19_c02411{bottom:406.559730px;}
.y15_c02411{bottom:424.560306px;}
.y1a_c02411{bottom:458.759262px;}
.y18_c02411{bottom:491.879514px;}
.y17_c02411{bottom:509.880090px;}
.y14_c02411{bottom:543.000342px;}
.y16_c02411{bottom:559.559874px;}
.y13_c02411{bottom:577.560450px;}
.y24_c02411{bottom:614.280450px;}
.yf_c02411{bottom:652.440378px;}
.ye_c02411{bottom:667.560054px;}
.y11_c02411{bottom:707.160234px;}
.y10_c02411{bottom:716.880450px;}
.yd_c02411{bottom:796.440234px;}
.ya_c02411{bottom:811.200000px;}
.y9_c02411{bottom:877.438722px;}
.yc_c02411{bottom:877.440450px;}
.y7_c02411{bottom:926.759730px;}
.y3_c02411{bottom:944.760306px;}
.y8_c02411{bottom:979.319226px;}
.y6_c02411{bottom:1012.439478px;}
.y5_c02411{bottom:1030.440054px;}
.y2_c02411{bottom:1063.560306px;}
.y4_c02411{bottom:1079.759874px;}
.y1_c02411{bottom:1097.760450px;}
.y12_c02411{bottom:1134.840450px;}
.h3_c02411{height:32.530781px;}
.h1_c02411{height:41.696016px;}
.h2_c02411{height:41.812031px;}
.h5_c02411{height:54.654737px;}
.h6_c02411{height:78.480000px;}
.h4_c02411{height:78.840000px;}
.h0_c02411{height:1263.000000px;}
.w2_c02411{width:215.280000px;}
.w1_c02411{width:892.500000px;}
.w0_c02411{width:892.830000px;}
.x0_c02411{left:0.000000px;}
.xf_c02411{left:117.000000px;}
.x8_c02411{left:440.999856px;}
.x4_c02411{left:445.680576px;}
.xd_c02411{left:451.080000px;}
.x7_c02411{left:455.399604px;}
.x5_c02411{left:461.880144px;}
.x1_c02411{left:463.320000px;}
.xc_c02411{left:483.480504px;}
.x9_c02411{left:492.119496px;}
.x6_c02411{left:493.200576px;}
.xe_c02411{left:506.880360px;}
.x3_c02411{left:511.919892px;}
.x2_c02411{left:526.679604px;}
.xa_c02411{left:569.520000px;}
.xb_c02411{left:666.720000px;}
@media print{
.v0_c02411{vertical-align:0.000000pt;}
.v1_c02411{vertical-align:1.279488pt;}
.lsd_c02411{letter-spacing:-0.705408pt;}
.ls11_c02411{letter-spacing:-0.654720pt;}
.ls9_c02411{letter-spacing:-0.540672pt;}
.lsa_c02411{letter-spacing:-0.511104pt;}
.lse_c02411{letter-spacing:-0.240768pt;}
.lsf_c02411{letter-spacing:-0.232320pt;}
.ls6_c02411{letter-spacing:-0.215424pt;}
.ls7_c02411{letter-spacing:-0.211200pt;}
.ls3_c02411{letter-spacing:-0.105600pt;}
.ls14_c02411{letter-spacing:0.000000pt;}
.ls1_c02411{letter-spacing:0.005376pt;}
.ls5_c02411{letter-spacing:0.114048pt;}
.lsc_c02411{letter-spacing:0.451968pt;}
.ls13_c02411{letter-spacing:0.456960pt;}
.ls10_c02411{letter-spacing:0.477312pt;}
.lsb_c02411{letter-spacing:0.515328pt;}
.ls12_c02411{letter-spacing:0.528000pt;}
.ls8_c02411{letter-spacing:0.532224pt;}
.ls2_c02411{letter-spacing:0.544896pt;}
.ls4_c02411{letter-spacing:0.637824pt;}
.ls0_c02411{letter-spacing:0.642048pt;}
.wsc_c02411{word-spacing:-13.445376pt;}
.wsa_c02411{word-spacing:-11.088000pt;}
.ws6_c02411{word-spacing:-11.075328pt;}
.ws2_c02411{word-spacing:-10.348800pt;}
.ws4_c02411{word-spacing:-10.019328pt;}
.ws15_c02411{word-spacing:-1.919232pt;}
.ws10_c02411{word-spacing:-0.963072pt;}
.wsd_c02411{word-spacing:-0.865920pt;}
.wsf_c02411{word-spacing:-0.105600pt;}
.ws13_c02411{word-spacing:-0.088704pt;}
.ws12_c02411{word-spacing:-0.080256pt;}
.ws14_c02411{word-spacing:-0.076032pt;}
.wse_c02411{word-spacing:0.000000pt;}
.ws11_c02411{word-spacing:0.384384pt;}
.ws9_c02411{word-spacing:5.892480pt;}
.wsb_c02411{word-spacing:29.600256pt;}
.ws8_c02411{word-spacing:30.966144pt;}
.ws1_c02411{word-spacing:33.563904pt;}
.ws0_c02411{word-spacing:33.796224pt;}
.ws3_c02411{word-spacing:34.860672pt;}
.ws5_c02411{word-spacing:35.468928pt;}
.ws7_c02411{word-spacing:37.357056pt;}
._0_c02411{margin-left:-1.731840pt;}
._2_c02411{width:1.317888pt;}
._5_c02411{width:17.761920pt;}
._6_c02411{width:20.845440pt;}
._4_c02411{width:21.947904pt;}
._1_c02411{width:44.668800pt;}
._3_c02411{width:45.805056pt;}
.fs0_c02411{font-size:42.240000pt;}
.fs1_c02411{font-size:53.760000pt;}
.y0_c02411{bottom:0.000000pt;}
.y1d_c02411{bottom:58.560400pt;}
.yb_c02411{bottom:58.880400pt;}
.y21_c02411{bottom:117.227003pt;}
.y20_c02411{bottom:130.666715pt;}
.y23_c02411{bottom:165.866875pt;}
.y22_c02411{bottom:174.507067pt;}
.y1f_c02411{bottom:245.226875pt;}
.y1c_c02411{bottom:258.666667pt;}
.y1b_c02411{bottom:317.225563pt;}
.y1e_c02411{bottom:317.227067pt;}
.y19_c02411{bottom:361.386427pt;}
.y15_c02411{bottom:377.386939pt;}
.y1a_c02411{bottom:407.786011pt;}
.y18_c02411{bottom:437.226235pt;}
.y17_c02411{bottom:453.226747pt;}
.y14_c02411{bottom:482.666971pt;}
.y16_c02411{bottom:497.386555pt;}
.y13_c02411{bottom:513.387067pt;}
.y24_c02411{bottom:546.027067pt;}
.yf_c02411{bottom:579.947003pt;}
.ye_c02411{bottom:593.386715pt;}
.y11_c02411{bottom:628.586875pt;}
.y10_c02411{bottom:637.227067pt;}
.yd_c02411{bottom:707.946875pt;}
.ya_c02411{bottom:721.066667pt;}
.y9_c02411{bottom:779.945531pt;}
.yc_c02411{bottom:779.947067pt;}
.y7_c02411{bottom:823.786427pt;}
.y3_c02411{bottom:839.786939pt;}
.y8_c02411{bottom:870.505979pt;}
.y6_c02411{bottom:899.946203pt;}
.y5_c02411{bottom:915.946715pt;}
.y2_c02411{bottom:945.386939pt;}
.y4_c02411{bottom:959.786555pt;}
.y1_c02411{bottom:975.787067pt;}
.y12_c02411{bottom:1008.747067pt;}
.h3_c02411{height:28.916250pt;}
.h1_c02411{height:37.063125pt;}
.h2_c02411{height:37.166250pt;}
.h5_c02411{height:48.581988pt;}
.h6_c02411{height:69.760000pt;}
.h4_c02411{height:70.080000pt;}
.h0_c02411{height:1122.666667pt;}
.w2_c02411{width:191.360000pt;}
.w1_c02411{width:793.333333pt;}
.w0_c02411{width:793.626667pt;}
.x0_c02411{left:0.000000pt;}
.xf_c02411{left:104.000000pt;}
.x8_c02411{left:391.999872pt;}
.x4_c02411{left:396.160512pt;}
.xd_c02411{left:400.960000pt;}
.x7_c02411{left:404.799648pt;}
.x5_c02411{left:410.560128pt;}
.x1_c02411{left:411.840000pt;}
.xc_c02411{left:429.760448pt;}
.x9_c02411{left:437.439552pt;}
.x6_c02411{left:438.400512pt;}
.xe_c02411{left:450.560320pt;}
.x3_c02411{left:455.039904pt;}
.x2_c02411{left:468.159648pt;}
.xa_c02411{left:506.240000pt;}
.xb_c02411{left:592.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02412 {
    display:none;
  }
  .loading-indicator_c02412.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02412 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02412 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02412" -> "#page-container .classname_c02412")
 */
.pf_c02412 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02412 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02412 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02412 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02412 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02412 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02412 {overflow:visible;}
  }
}
.c_c02412 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02412 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02412:after { /* webkit #35443 */
  content: '';
}
.t_c02412:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02412 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02412 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02412 { /* info for Javascript */
  display:none;
}
.l_c02412 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02412 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02412 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02412:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02412 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02412.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02412 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02412{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02412;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02412{font-family:ff1_c02412;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02412;src:url('chunks/assets/font_e14026b9fd90bd6c64144018.woff2')format("woff");}.ff2_c02412{font-family:ff2_c02412;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02412;src:url('chunks/assets/font_636da7201ae398b263ca913c.woff2')format("woff");}.ff3_c02412{font-family:ff3_c02412;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02412{vertical-align:0.000000px;}
.v1_c02412{vertical-align:1.439424px;}
.lse_c02412{letter-spacing:-0.793584px;}
.ls16_c02412{letter-spacing:-0.774576px;}
.ls12_c02412{letter-spacing:-0.736560px;}
.lsa_c02412{letter-spacing:-0.608256px;}
.lsb_c02412{letter-spacing:-0.574992px;}
.ls18_c02412{letter-spacing:-0.275616px;}
.lsf_c02412{letter-spacing:-0.270864px;}
.ls10_c02412{letter-spacing:-0.261360px;}
.ls7_c02412{letter-spacing:-0.242352px;}
.ls8_c02412{letter-spacing:-0.237600px;}
.ls4_c02412{letter-spacing:-0.118800px;}
.ls17_c02412{letter-spacing:-0.014256px;}
.ls15_c02412{letter-spacing:0.000000px;}
.ls1_c02412{letter-spacing:0.006048px;}
.ls6_c02412{letter-spacing:0.128304px;}
.lsd_c02412{letter-spacing:0.508464px;}
.ls14_c02412{letter-spacing:0.514080px;}
.ls11_c02412{letter-spacing:0.536976px;}
.lsc_c02412{letter-spacing:0.579744px;}
.ls13_c02412{letter-spacing:0.594000px;}
.ls9_c02412{letter-spacing:0.598752px;}
.ls3_c02412{letter-spacing:0.613008px;}
.ls2_c02412{letter-spacing:0.651024px;}
.ls5_c02412{letter-spacing:0.717552px;}
.ls0_c02412{letter-spacing:0.722304px;}
.sc__c02412{text-shadow:none;}
.sc0_c02412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02412{-webkit-text-stroke:0px transparent;}
.sc0_c02412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02412{word-spacing:-15.126048px;}
.wsa_c02412{word-spacing:-12.474000px;}
.ws6_c02412{word-spacing:-12.459744px;}
.wsf_c02412{word-spacing:-12.416976px;}
.ws2_c02412{word-spacing:-11.642400px;}
.ws4_c02412{word-spacing:-11.271744px;}
.wsd_c02412{word-spacing:-11.105424px;}
.ws18_c02412{word-spacing:-2.159136px;}
.ws13_c02412{word-spacing:-1.083456px;}
.ws19_c02412{word-spacing:-1.012176px;}
.ws10_c02412{word-spacing:-0.974160px;}
.ws1a_c02412{word-spacing:-0.346896px;}
.ws12_c02412{word-spacing:-0.118800px;}
.ws16_c02412{word-spacing:-0.099792px;}
.ws15_c02412{word-spacing:-0.090288px;}
.ws17_c02412{word-spacing:-0.085536px;}
.ws11_c02412{word-spacing:0.000000px;}
.ws14_c02412{word-spacing:0.432432px;}
.ws9_c02412{word-spacing:6.629040px;}
.wsb_c02412{word-spacing:33.300288px;}
.ws8_c02412{word-spacing:34.836912px;}
.wse_c02412{word-spacing:36.143712px;}
.ws1_c02412{word-spacing:37.759392px;}
.ws0_c02412{word-spacing:38.020752px;}
.ws3_c02412{word-spacing:39.218256px;}
.ws5_c02412{word-spacing:39.902544px;}
.ws7_c02412{word-spacing:42.026688px;}
._0_c02412{margin-left:-1.948320px;}
._2_c02412{width:1.482624px;}
._5_c02412{width:19.982160px;}
._6_c02412{width:23.451120px;}
._4_c02412{width:24.691392px;}
._1_c02412{width:50.252400px;}
._3_c02412{width:51.530688px;}
.fc0_c02412{color:rgb(0,0,0);}
.fs0_c02412{font-size:47.520000px;}
.fs1_c02412{font-size:60.480000px;}
.y0_c02412{bottom:0.000000px;}
.yb_c02412{bottom:66.240450px;}
.y1d_c02412{bottom:146.998362px;}
.y1f_c02412{bottom:186.600234px;}
.y1e_c02412{bottom:196.320450px;}
.y1c_c02412{bottom:275.878542px;}
.y1b_c02412{bottom:356.878758px;}
.y19_c02412{bottom:406.559730px;}
.y15_c02412{bottom:424.560306px;}
.y1a_c02412{bottom:458.759262px;}
.y18_c02412{bottom:491.879514px;}
.y17_c02412{bottom:509.880090px;}
.y14_c02412{bottom:543.000342px;}
.y16_c02412{bottom:559.559874px;}
.y13_c02412{bottom:577.560450px;}
.y20_c02412{bottom:614.280450px;}
.yf_c02412{bottom:652.440378px;}
.ye_c02412{bottom:667.560054px;}
.y11_c02412{bottom:707.160234px;}
.y10_c02412{bottom:716.880450px;}
.yd_c02412{bottom:796.440234px;}
.ya_c02412{bottom:811.200000px;}
.y9_c02412{bottom:877.438722px;}
.yc_c02412{bottom:877.440450px;}
.y7_c02412{bottom:926.759730px;}
.y3_c02412{bottom:944.760306px;}
.y8_c02412{bottom:979.319226px;}
.y6_c02412{bottom:1012.439478px;}
.y5_c02412{bottom:1030.440054px;}
.y2_c02412{bottom:1063.560306px;}
.y4_c02412{bottom:1079.759874px;}
.y1_c02412{bottom:1097.760450px;}
.y12_c02412{bottom:1134.840450px;}
.h3_c02412{height:32.530781px;}
.h1_c02412{height:41.696016px;}
.h2_c02412{height:41.812031px;}
.h5_c02412{height:54.654737px;}
.h4_c02412{height:78.840000px;}
.h0_c02412{height:1263.000000px;}
.w2_c02412{width:215.280000px;}
.w1_c02412{width:892.500000px;}
.w0_c02412{width:892.830000px;}
.x0_c02412{left:0.000000px;}
.xf_c02412{left:117.000000px;}
.x8_c02412{left:440.999856px;}
.x4_c02412{left:445.680576px;}
.xd_c02412{left:451.080000px;}
.x7_c02412{left:455.399604px;}
.x5_c02412{left:461.880144px;}
.x1_c02412{left:463.320000px;}
.xc_c02412{left:483.480504px;}
.x9_c02412{left:492.119496px;}
.x6_c02412{left:493.200576px;}
.xe_c02412{left:506.880360px;}
.x3_c02412{left:511.919892px;}
.x2_c02412{left:526.679604px;}
.xa_c02412{left:569.520000px;}
.xb_c02412{left:666.720000px;}
@media print{
.v0_c02412{vertical-align:0.000000pt;}
.v1_c02412{vertical-align:1.279488pt;}
.lse_c02412{letter-spacing:-0.705408pt;}
.ls16_c02412{letter-spacing:-0.688512pt;}
.ls12_c02412{letter-spacing:-0.654720pt;}
.lsa_c02412{letter-spacing:-0.540672pt;}
.lsb_c02412{letter-spacing:-0.511104pt;}
.ls18_c02412{letter-spacing:-0.244992pt;}
.lsf_c02412{letter-spacing:-0.240768pt;}
.ls10_c02412{letter-spacing:-0.232320pt;}
.ls7_c02412{letter-spacing:-0.215424pt;}
.ls8_c02412{letter-spacing:-0.211200pt;}
.ls4_c02412{letter-spacing:-0.105600pt;}
.ls17_c02412{letter-spacing:-0.012672pt;}
.ls15_c02412{letter-spacing:0.000000pt;}
.ls1_c02412{letter-spacing:0.005376pt;}
.ls6_c02412{letter-spacing:0.114048pt;}
.lsd_c02412{letter-spacing:0.451968pt;}
.ls14_c02412{letter-spacing:0.456960pt;}
.ls11_c02412{letter-spacing:0.477312pt;}
.lsc_c02412{letter-spacing:0.515328pt;}
.ls13_c02412{letter-spacing:0.528000pt;}
.ls9_c02412{letter-spacing:0.532224pt;}
.ls3_c02412{letter-spacing:0.544896pt;}
.ls2_c02412{letter-spacing:0.578688pt;}
.ls5_c02412{letter-spacing:0.637824pt;}
.ls0_c02412{letter-spacing:0.642048pt;}
.wsc_c02412{word-spacing:-13.445376pt;}
.wsa_c02412{word-spacing:-11.088000pt;}
.ws6_c02412{word-spacing:-11.075328pt;}
.wsf_c02412{word-spacing:-11.037312pt;}
.ws2_c02412{word-spacing:-10.348800pt;}
.ws4_c02412{word-spacing:-10.019328pt;}
.wsd_c02412{word-spacing:-9.871488pt;}
.ws18_c02412{word-spacing:-1.919232pt;}
.ws13_c02412{word-spacing:-0.963072pt;}
.ws19_c02412{word-spacing:-0.899712pt;}
.ws10_c02412{word-spacing:-0.865920pt;}
.ws1a_c02412{word-spacing:-0.308352pt;}
.ws12_c02412{word-spacing:-0.105600pt;}
.ws16_c02412{word-spacing:-0.088704pt;}
.ws15_c02412{word-spacing:-0.080256pt;}
.ws17_c02412{word-spacing:-0.076032pt;}
.ws11_c02412{word-spacing:0.000000pt;}
.ws14_c02412{word-spacing:0.384384pt;}
.ws9_c02412{word-spacing:5.892480pt;}
.wsb_c02412{word-spacing:29.600256pt;}
.ws8_c02412{word-spacing:30.966144pt;}
.wse_c02412{word-spacing:32.127744pt;}
.ws1_c02412{word-spacing:33.563904pt;}
.ws0_c02412{word-spacing:33.796224pt;}
.ws3_c02412{word-spacing:34.860672pt;}
.ws5_c02412{word-spacing:35.468928pt;}
.ws7_c02412{word-spacing:37.357056pt;}
._0_c02412{margin-left:-1.731840pt;}
._2_c02412{width:1.317888pt;}
._5_c02412{width:17.761920pt;}
._6_c02412{width:20.845440pt;}
._4_c02412{width:21.947904pt;}
._1_c02412{width:44.668800pt;}
._3_c02412{width:45.805056pt;}
.fs0_c02412{font-size:42.240000pt;}
.fs1_c02412{font-size:53.760000pt;}
.y0_c02412{bottom:0.000000pt;}
.yb_c02412{bottom:58.880400pt;}
.y1d_c02412{bottom:130.665211pt;}
.y1f_c02412{bottom:165.866875pt;}
.y1e_c02412{bottom:174.507067pt;}
.y1c_c02412{bottom:245.225371pt;}
.y1b_c02412{bottom:317.225563pt;}
.y19_c02412{bottom:361.386427pt;}
.y15_c02412{bottom:377.386939pt;}
.y1a_c02412{bottom:407.786011pt;}
.y18_c02412{bottom:437.226235pt;}
.y17_c02412{bottom:453.226747pt;}
.y14_c02412{bottom:482.666971pt;}
.y16_c02412{bottom:497.386555pt;}
.y13_c02412{bottom:513.387067pt;}
.y20_c02412{bottom:546.027067pt;}
.yf_c02412{bottom:579.947003pt;}
.ye_c02412{bottom:593.386715pt;}
.y11_c02412{bottom:628.586875pt;}
.y10_c02412{bottom:637.227067pt;}
.yd_c02412{bottom:707.946875pt;}
.ya_c02412{bottom:721.066667pt;}
.y9_c02412{bottom:779.945531pt;}
.yc_c02412{bottom:779.947067pt;}
.y7_c02412{bottom:823.786427pt;}
.y3_c02412{bottom:839.786939pt;}
.y8_c02412{bottom:870.505979pt;}
.y6_c02412{bottom:899.946203pt;}
.y5_c02412{bottom:915.946715pt;}
.y2_c02412{bottom:945.386939pt;}
.y4_c02412{bottom:959.786555pt;}
.y1_c02412{bottom:975.787067pt;}
.y12_c02412{bottom:1008.747067pt;}
.h3_c02412{height:28.916250pt;}
.h1_c02412{height:37.063125pt;}
.h2_c02412{height:37.166250pt;}
.h5_c02412{height:48.581988pt;}
.h4_c02412{height:70.080000pt;}
.h0_c02412{height:1122.666667pt;}
.w2_c02412{width:191.360000pt;}
.w1_c02412{width:793.333333pt;}
.w0_c02412{width:793.626667pt;}
.x0_c02412{left:0.000000pt;}
.xf_c02412{left:104.000000pt;}
.x8_c02412{left:391.999872pt;}
.x4_c02412{left:396.160512pt;}
.xd_c02412{left:400.960000pt;}
.x7_c02412{left:404.799648pt;}
.x5_c02412{left:410.560128pt;}
.x1_c02412{left:411.840000pt;}
.xc_c02412{left:429.760448pt;}
.x9_c02412{left:437.439552pt;}
.x6_c02412{left:438.400512pt;}
.xe_c02412{left:450.560320pt;}
.x3_c02412{left:455.039904pt;}
.x2_c02412{left:468.159648pt;}
.xa_c02412{left:506.240000pt;}
.xb_c02412{left:592.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02413 {
    display:none;
  }
  .loading-indicator_c02413.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02413 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02413 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02413" -> "#page-container .classname_c02413")
 */
.pf_c02413 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02413 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02413 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02413 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02413 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02413 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02413 {overflow:visible;}
  }
}
.c_c02413 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02413 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02413:after { /* webkit #35443 */
  content: '';
}
.t_c02413:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02413 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02413 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02413 { /* info for Javascript */
  display:none;
}
.l_c02413 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02413 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02413 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02413:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02413 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02413.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02413 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02413{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02413;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02413{font-family:ff1_c02413;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02413;src:url('chunks/assets/font_1ad988a451d1406474edf8a9.woff2')format("woff");}.ff2_c02413{font-family:ff2_c02413;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02413;src:url('chunks/assets/font_d59b9c39358906648c24efde.woff2')format("woff");}.ff3_c02413{font-family:ff3_c02413;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02413{vertical-align:0.000000px;}
.v1_c02413{vertical-align:1.439424px;}
.ls9_c02413{letter-spacing:-0.608256px;}
.lsa_c02413{letter-spacing:-0.574992px;}
.ls10_c02413{letter-spacing:-0.275616px;}
.lse_c02413{letter-spacing:-0.261360px;}
.ls6_c02413{letter-spacing:-0.242352px;}
.ls7_c02413{letter-spacing:-0.237600px;}
.ls3_c02413{letter-spacing:-0.118800px;}
.ls13_c02413{letter-spacing:0.000000px;}
.ls1_c02413{letter-spacing:0.006048px;}
.ls5_c02413{letter-spacing:0.128304px;}
.ls15_c02413{letter-spacing:0.242352px;}
.lsc_c02413{letter-spacing:0.508464px;}
.ls12_c02413{letter-spacing:0.514080px;}
.lsf_c02413{letter-spacing:0.536976px;}
.lsb_c02413{letter-spacing:0.579744px;}
.ls11_c02413{letter-spacing:0.594000px;}
.ls8_c02413{letter-spacing:0.598752px;}
.ls2_c02413{letter-spacing:0.613008px;}
.lsd_c02413{letter-spacing:0.674784px;}
.ls4_c02413{letter-spacing:0.717552px;}
.ls0_c02413{letter-spacing:0.722304px;}
.ls14_c02413{letter-spacing:28.412208px;}
.sc__c02413{text-shadow:none;}
.sc0_c02413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02413{-webkit-text-stroke:0px transparent;}
.sc0_c02413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02413{word-spacing:-40.292208px;}
.wsc_c02413{word-spacing:-15.126048px;}
.ws2_c02413{word-spacing:-12.602304px;}
.wsa_c02413{word-spacing:-12.474000px;}
.ws7_c02413{word-spacing:-12.459744px;}
.ws9_c02413{word-spacing:-12.416976px;}
.ws8_c02413{word-spacing:-12.388464px;}
.ws3_c02413{word-spacing:-11.642400px;}
.ws5_c02413{word-spacing:-11.271744px;}
.ws14_c02413{word-spacing:-2.475792px;}
.ws17_c02413{word-spacing:-2.159136px;}
.ws13_c02413{word-spacing:-1.083456px;}
.ws10_c02413{word-spacing:-0.974160px;}
.ws18_c02413{word-spacing:-0.603504px;}
.ws12_c02413{word-spacing:-0.118800px;}
.ws15_c02413{word-spacing:-0.099792px;}
.ws16_c02413{word-spacing:-0.085536px;}
.ws11_c02413{word-spacing:0.000000px;}
.wse_c02413{word-spacing:12.336192px;}
.wsf_c02413{word-spacing:17.629920px;}
.wsb_c02413{word-spacing:33.300288px;}
.ws1_c02413{word-spacing:37.759392px;}
.ws0_c02413{word-spacing:38.020752px;}
.ws4_c02413{word-spacing:39.218256px;}
.ws6_c02413{word-spacing:39.902544px;}
._4_c02413{margin-left:-28.654560px;}
._5_c02413{margin-left:-27.219456px;}
._0_c02413{margin-left:-1.948320px;}
._2_c02413{width:1.482624px;}
._1_c02413{width:50.252400px;}
._3_c02413{width:51.530688px;}
.fc0_c02413{color:rgb(0,0,0);}
.fs0_c02413{font-size:47.520000px;}
.fs1_c02413{font-size:60.480000px;}
.y0_c02413{bottom:0.000000px;}
.y1c_c02413{bottom:65.880450px;}
.yb_c02413{bottom:66.240450px;}
.y20_c02413{bottom:147.000054px;}
.y22_c02413{bottom:186.600234px;}
.y21_c02413{bottom:196.320450px;}
.y1f_c02413{bottom:275.880234px;}
.y1b_c02413{bottom:291.000000px;}
.y1e_c02413{bottom:341.760774px;}
.y1a_c02413{bottom:356.878758px;}
.y1d_c02413{bottom:356.880450px;}
.y18_c02413{bottom:406.559730px;}
.y14_c02413{bottom:424.560306px;}
.y19_c02413{bottom:458.759262px;}
.y17_c02413{bottom:491.879514px;}
.y16_c02413{bottom:509.880090px;}
.y13_c02413{bottom:543.000342px;}
.y15_c02413{bottom:559.559874px;}
.y12_c02413{bottom:577.560450px;}
.y23_c02413{bottom:614.280450px;}
.ye_c02413{bottom:667.560054px;}
.y10_c02413{bottom:707.160234px;}
.yf_c02413{bottom:716.880450px;}
.yd_c02413{bottom:796.440234px;}
.ya_c02413{bottom:811.200000px;}
.y9_c02413{bottom:877.438722px;}
.yc_c02413{bottom:877.440450px;}
.y7_c02413{bottom:926.759730px;}
.y3_c02413{bottom:944.760306px;}
.y8_c02413{bottom:979.319226px;}
.y6_c02413{bottom:1012.439478px;}
.y5_c02413{bottom:1030.440054px;}
.y2_c02413{bottom:1063.560306px;}
.y4_c02413{bottom:1079.759874px;}
.y1_c02413{bottom:1097.760450px;}
.y11_c02413{bottom:1134.840450px;}
.h3_c02413{height:32.530781px;}
.h1_c02413{height:41.696016px;}
.h2_c02413{height:41.812031px;}
.h5_c02413{height:54.654737px;}
.h6_c02413{height:78.480000px;}
.h4_c02413{height:78.840000px;}
.h0_c02413{height:1263.000000px;}
.w2_c02413{width:215.280000px;}
.w1_c02413{width:892.500000px;}
.w0_c02413{width:892.830000px;}
.x0_c02413{left:0.000000px;}
.xf_c02413{left:117.000000px;}
.x8_c02413{left:440.999856px;}
.x4_c02413{left:445.680576px;}
.xd_c02413{left:451.080000px;}
.x7_c02413{left:455.399604px;}
.x5_c02413{left:461.880144px;}
.x1_c02413{left:463.320000px;}
.xc_c02413{left:483.480540px;}
.x9_c02413{left:492.119496px;}
.x6_c02413{left:493.200576px;}
.xe_c02413{left:506.880360px;}
.x3_c02413{left:511.919892px;}
.x2_c02413{left:526.679604px;}
.xa_c02413{left:569.520000px;}
.x10_c02413{left:613.080000px;}
.xb_c02413{left:678.960000px;}
@media print{
.v0_c02413{vertical-align:0.000000pt;}
.v1_c02413{vertical-align:1.279488pt;}
.ls9_c02413{letter-spacing:-0.540672pt;}
.lsa_c02413{letter-spacing:-0.511104pt;}
.ls10_c02413{letter-spacing:-0.244992pt;}
.lse_c02413{letter-spacing:-0.232320pt;}
.ls6_c02413{letter-spacing:-0.215424pt;}
.ls7_c02413{letter-spacing:-0.211200pt;}
.ls3_c02413{letter-spacing:-0.105600pt;}
.ls13_c02413{letter-spacing:0.000000pt;}
.ls1_c02413{letter-spacing:0.005376pt;}
.ls5_c02413{letter-spacing:0.114048pt;}
.ls15_c02413{letter-spacing:0.215424pt;}
.lsc_c02413{letter-spacing:0.451968pt;}
.ls12_c02413{letter-spacing:0.456960pt;}
.lsf_c02413{letter-spacing:0.477312pt;}
.lsb_c02413{letter-spacing:0.515328pt;}
.ls11_c02413{letter-spacing:0.528000pt;}
.ls8_c02413{letter-spacing:0.532224pt;}
.ls2_c02413{letter-spacing:0.544896pt;}
.lsd_c02413{letter-spacing:0.599808pt;}
.ls4_c02413{letter-spacing:0.637824pt;}
.ls0_c02413{letter-spacing:0.642048pt;}
.ls14_c02413{letter-spacing:25.255296pt;}
.wsd_c02413{word-spacing:-35.815296pt;}
.wsc_c02413{word-spacing:-13.445376pt;}
.ws2_c02413{word-spacing:-11.202048pt;}
.wsa_c02413{word-spacing:-11.088000pt;}
.ws7_c02413{word-spacing:-11.075328pt;}
.ws9_c02413{word-spacing:-11.037312pt;}
.ws8_c02413{word-spacing:-11.011968pt;}
.ws3_c02413{word-spacing:-10.348800pt;}
.ws5_c02413{word-spacing:-10.019328pt;}
.ws14_c02413{word-spacing:-2.200704pt;}
.ws17_c02413{word-spacing:-1.919232pt;}
.ws13_c02413{word-spacing:-0.963072pt;}
.ws10_c02413{word-spacing:-0.865920pt;}
.ws18_c02413{word-spacing:-0.536448pt;}
.ws12_c02413{word-spacing:-0.105600pt;}
.ws15_c02413{word-spacing:-0.088704pt;}
.ws16_c02413{word-spacing:-0.076032pt;}
.ws11_c02413{word-spacing:0.000000pt;}
.wse_c02413{word-spacing:10.965504pt;}
.wsf_c02413{word-spacing:15.671040pt;}
.wsb_c02413{word-spacing:29.600256pt;}
.ws1_c02413{word-spacing:33.563904pt;}
.ws0_c02413{word-spacing:33.796224pt;}
.ws4_c02413{word-spacing:34.860672pt;}
.ws6_c02413{word-spacing:35.468928pt;}
._4_c02413{margin-left:-25.470720pt;}
._5_c02413{margin-left:-24.195072pt;}
._0_c02413{margin-left:-1.731840pt;}
._2_c02413{width:1.317888pt;}
._1_c02413{width:44.668800pt;}
._3_c02413{width:45.805056pt;}
.fs0_c02413{font-size:42.240000pt;}
.fs1_c02413{font-size:53.760000pt;}
.y0_c02413{bottom:0.000000pt;}
.y1c_c02413{bottom:58.560400pt;}
.yb_c02413{bottom:58.880400pt;}
.y20_c02413{bottom:130.666715pt;}
.y22_c02413{bottom:165.866875pt;}
.y21_c02413{bottom:174.507067pt;}
.y1f_c02413{bottom:245.226875pt;}
.y1b_c02413{bottom:258.666667pt;}
.y1e_c02413{bottom:303.787355pt;}
.y1a_c02413{bottom:317.225563pt;}
.y1d_c02413{bottom:317.227067pt;}
.y18_c02413{bottom:361.386427pt;}
.y14_c02413{bottom:377.386939pt;}
.y19_c02413{bottom:407.786011pt;}
.y17_c02413{bottom:437.226235pt;}
.y16_c02413{bottom:453.226747pt;}
.y13_c02413{bottom:482.666971pt;}
.y15_c02413{bottom:497.386555pt;}
.y12_c02413{bottom:513.387067pt;}
.y23_c02413{bottom:546.027067pt;}
.ye_c02413{bottom:593.386715pt;}
.y10_c02413{bottom:628.586875pt;}
.yf_c02413{bottom:637.227067pt;}
.yd_c02413{bottom:707.946875pt;}
.ya_c02413{bottom:721.066667pt;}
.y9_c02413{bottom:779.945531pt;}
.yc_c02413{bottom:779.947067pt;}
.y7_c02413{bottom:823.786427pt;}
.y3_c02413{bottom:839.786939pt;}
.y8_c02413{bottom:870.505979pt;}
.y6_c02413{bottom:899.946203pt;}
.y5_c02413{bottom:915.946715pt;}
.y2_c02413{bottom:945.386939pt;}
.y4_c02413{bottom:959.786555pt;}
.y1_c02413{bottom:975.787067pt;}
.y11_c02413{bottom:1008.747067pt;}
.h3_c02413{height:28.916250pt;}
.h1_c02413{height:37.063125pt;}
.h2_c02413{height:37.166250pt;}
.h5_c02413{height:48.581988pt;}
.h6_c02413{height:69.760000pt;}
.h4_c02413{height:70.080000pt;}
.h0_c02413{height:1122.666667pt;}
.w2_c02413{width:191.360000pt;}
.w1_c02413{width:793.333333pt;}
.w0_c02413{width:793.626667pt;}
.x0_c02413{left:0.000000pt;}
.xf_c02413{left:104.000000pt;}
.x8_c02413{left:391.999872pt;}
.x4_c02413{left:396.160512pt;}
.xd_c02413{left:400.960000pt;}
.x7_c02413{left:404.799648pt;}
.x5_c02413{left:410.560128pt;}
.x1_c02413{left:411.840000pt;}
.xc_c02413{left:429.760480pt;}
.x9_c02413{left:437.439552pt;}
.x6_c02413{left:438.400512pt;}
.xe_c02413{left:450.560320pt;}
.x3_c02413{left:455.039904pt;}
.x2_c02413{left:468.159648pt;}
.xa_c02413{left:506.240000pt;}
.x10_c02413{left:544.960000pt;}
.xb_c02413{left:603.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02414 {
    display:none;
  }
  .loading-indicator_c02414.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02414 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02414 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02414" -> "#page-container .classname_c02414")
 */
.pf_c02414 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02414 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02414.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02414 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02414 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02414 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02414 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02414 {overflow:visible;}
  }
}
.c_c02414 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02414 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02414:after { /* webkit #35443 */
  content: '';
}
.t_c02414:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02414 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02414 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02414 { /* info for Javascript */
  display:none;
}
.l_c02414 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02414 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02414 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02414:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02414 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02414.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02414.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02414 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02414{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02414;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02414{font-family:ff1_c02414;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02414;src:url('chunks/assets/font_6eb5671771a88940d11c8028.woff2')format("woff");}.ff2_c02414{font-family:ff2_c02414;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02414;src:url('chunks/assets/font_1dff91961e4c1e4695f27086.woff2')format("woff");}.ff3_c02414{font-family:ff3_c02414;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02414{vertical-align:0.000000px;}
.v1_c02414{vertical-align:1.439424px;}
.lsf_c02414{letter-spacing:-0.793584px;}
.lsc_c02414{letter-spacing:-0.774576px;}
.lsa_c02414{letter-spacing:-0.741312px;}
.ls12_c02414{letter-spacing:-0.736560px;}
.ls18_c02414{letter-spacing:-0.722304px;}
.ls17_c02414{letter-spacing:-0.608256px;}
.lsb_c02414{letter-spacing:-0.574992px;}
.ls19_c02414{letter-spacing:-0.275616px;}
.ls13_c02414{letter-spacing:-0.270864px;}
.ls10_c02414{letter-spacing:-0.261360px;}
.ls7_c02414{letter-spacing:-0.242352px;}
.ls8_c02414{letter-spacing:-0.237600px;}
.ls4_c02414{letter-spacing:-0.118800px;}
.ls1b_c02414{letter-spacing:-0.047520px;}
.ls16_c02414{letter-spacing:0.000000px;}
.ls1_c02414{letter-spacing:0.006048px;}
.ls6_c02414{letter-spacing:0.128304px;}
.ls1a_c02414{letter-spacing:0.209088px;}
.lse_c02414{letter-spacing:0.508464px;}
.ls15_c02414{letter-spacing:0.514080px;}
.ls11_c02414{letter-spacing:0.536976px;}
.lsd_c02414{letter-spacing:0.579744px;}
.ls14_c02414{letter-spacing:0.594000px;}
.ls9_c02414{letter-spacing:0.598752px;}
.ls3_c02414{letter-spacing:0.613008px;}
.ls0_c02414{letter-spacing:0.651024px;}
.ls5_c02414{letter-spacing:0.717552px;}
.ls2_c02414{letter-spacing:0.722304px;}
.sc__c02414{text-shadow:none;}
.sc0_c02414{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02414{-webkit-text-stroke:0px transparent;}
.sc0_c02414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02414{word-spacing:-15.126048px;}
.ws12_c02414{word-spacing:-12.602304px;}
.wsa_c02414{word-spacing:-12.474000px;}
.ws6_c02414{word-spacing:-12.459744px;}
.ws18_c02414{word-spacing:-12.416976px;}
.ws2_c02414{word-spacing:-11.642400px;}
.wsd_c02414{word-spacing:-11.271744px;}
.ws5_c02414{word-spacing:-11.105424px;}
.ws22_c02414{word-spacing:-2.159136px;}
.ws23_c02414{word-spacing:-1.083456px;}
.ws1b_c02414{word-spacing:-1.012176px;}
.ws19_c02414{word-spacing:-0.974160px;}
.ws25_c02414{word-spacing:-0.313632px;}
.ws1c_c02414{word-spacing:-0.118800px;}
.ws1f_c02414{word-spacing:-0.099792px;}
.ws20_c02414{word-spacing:-0.090288px;}
.ws21_c02414{word-spacing:-0.085536px;}
.ws1a_c02414{word-spacing:0.000000px;}
.ws24_c02414{word-spacing:0.361152px;}
.ws1d_c02414{word-spacing:0.380160px;}
.ws1e_c02414{word-spacing:0.432432px;}
.ws15_c02414{word-spacing:2.157408px;}
.ws9_c02414{word-spacing:6.629040px;}
.ws13_c02414{word-spacing:18.095616px;}
.ws11_c02414{word-spacing:20.514384px;}
.ws14_c02414{word-spacing:20.576160px;}
.ws10_c02414{word-spacing:22.876128px;}
.wsb_c02414{word-spacing:33.300288px;}
.ws8_c02414{word-spacing:34.836912px;}
.wsf_c02414{word-spacing:36.143712px;}
.wse_c02414{word-spacing:36.742464px;}
.ws1_c02414{word-spacing:37.759392px;}
.ws0_c02414{word-spacing:38.020752px;}
.ws3_c02414{word-spacing:39.218256px;}
.ws4_c02414{word-spacing:39.902544px;}
.ws7_c02414{word-spacing:42.026688px;}
.ws17_c02414{word-spacing:46.797696px;}
.ws16_c02414{word-spacing:57.903120px;}
._0_c02414{margin-left:-1.948320px;}
._2_c02414{width:1.482624px;}
._4_c02414{width:3.806352px;}
._b_c02414{width:15.809904px;}
._d_c02414{width:18.133632px;}
._6_c02414{width:19.982160px;}
._c_c02414{width:21.517056px;}
._7_c02414{width:23.451120px;}
._5_c02414{width:24.691392px;}
._a_c02414{width:33.382800px;}
._9_c02414{width:34.822656px;}
._8_c02414{width:40.258944px;}
._1_c02414{width:50.252400px;}
._3_c02414{width:51.530688px;}
._11_c02414{width:55.669680px;}
._10_c02414{width:61.590672px;}
._f_c02414{width:66.204864px;}
._e_c02414{width:71.807472px;}
.fc0_c02414{color:rgb(0,0,0);}
.fs0_c02414{font-size:47.520000px;}
.fs1_c02414{font-size:60.480000px;}
.y0_c02414{bottom:0.000000px;}
.y1f_c02414{bottom:147.000738px;}
.y21_c02414{bottom:186.600234px;}
.y20_c02414{bottom:196.320450px;}
.y1e_c02414{bottom:230.880666px;}
.y1d_c02414{bottom:246.000342px;}
.y1c_c02414{bottom:260.760054px;}
.y1b_c02414{bottom:275.879730px;}
.y1a_c02414{bottom:326.999370px;}
.y19_c02414{bottom:341.759082px;}
.y18_c02414{bottom:356.878758px;}
.y16_c02414{bottom:406.559730px;}
.y12_c02414{bottom:424.560306px;}
.y17_c02414{bottom:458.759262px;}
.y15_c02414{bottom:491.879514px;}
.y14_c02414{bottom:509.880090px;}
.y11_c02414{bottom:543.000342px;}
.y13_c02414{bottom:559.559874px;}
.y10_c02414{bottom:577.560450px;}
.y22_c02414{bottom:614.280450px;}
.yc_c02414{bottom:652.438650px;}
.yb_c02414{bottom:667.558326px;}
.ye_c02414{bottom:707.160234px;}
.yd_c02414{bottom:716.880450px;}
.ya_c02414{bottom:796.438506px;}
.y9_c02414{bottom:877.438722px;}
.y7_c02414{bottom:926.759730px;}
.y3_c02414{bottom:944.760306px;}
.y8_c02414{bottom:979.319226px;}
.y6_c02414{bottom:1012.439478px;}
.y5_c02414{bottom:1030.440054px;}
.y2_c02414{bottom:1063.560306px;}
.y4_c02414{bottom:1079.759874px;}
.y1_c02414{bottom:1097.760450px;}
.yf_c02414{bottom:1134.840450px;}
.h3_c02414{height:32.530781px;}
.h1_c02414{height:41.696016px;}
.h2_c02414{height:41.812031px;}
.h4_c02414{height:54.654737px;}
.h0_c02414{height:1263.000000px;}
.w1_c02414{width:892.500000px;}
.w0_c02414{width:892.830000px;}
.x0_c02414{left:0.000000px;}
.xe_c02414{left:117.000000px;}
.x8_c02414{left:440.999856px;}
.x4_c02414{left:445.680576px;}
.xc_c02414{left:451.080000px;}
.x7_c02414{left:455.399604px;}
.x5_c02414{left:461.880144px;}
.x1_c02414{left:463.320000px;}
.xa_c02414{left:483.480360px;}
.x9_c02414{left:492.119496px;}
.x6_c02414{left:493.200576px;}
.xd_c02414{left:506.880360px;}
.x3_c02414{left:511.919892px;}
.x2_c02414{left:526.679604px;}
.xb_c02414{left:569.880036px;}
@media print{
.v0_c02414{vertical-align:0.000000pt;}
.v1_c02414{vertical-align:1.279488pt;}
.lsf_c02414{letter-spacing:-0.705408pt;}
.lsc_c02414{letter-spacing:-0.688512pt;}
.lsa_c02414{letter-spacing:-0.658944pt;}
.ls12_c02414{letter-spacing:-0.654720pt;}
.ls18_c02414{letter-spacing:-0.642048pt;}
.ls17_c02414{letter-spacing:-0.540672pt;}
.lsb_c02414{letter-spacing:-0.511104pt;}
.ls19_c02414{letter-spacing:-0.244992pt;}
.ls13_c02414{letter-spacing:-0.240768pt;}
.ls10_c02414{letter-spacing:-0.232320pt;}
.ls7_c02414{letter-spacing:-0.215424pt;}
.ls8_c02414{letter-spacing:-0.211200pt;}
.ls4_c02414{letter-spacing:-0.105600pt;}
.ls1b_c02414{letter-spacing:-0.042240pt;}
.ls16_c02414{letter-spacing:0.000000pt;}
.ls1_c02414{letter-spacing:0.005376pt;}
.ls6_c02414{letter-spacing:0.114048pt;}
.ls1a_c02414{letter-spacing:0.185856pt;}
.lse_c02414{letter-spacing:0.451968pt;}
.ls15_c02414{letter-spacing:0.456960pt;}
.ls11_c02414{letter-spacing:0.477312pt;}
.lsd_c02414{letter-spacing:0.515328pt;}
.ls14_c02414{letter-spacing:0.528000pt;}
.ls9_c02414{letter-spacing:0.532224pt;}
.ls3_c02414{letter-spacing:0.544896pt;}
.ls0_c02414{letter-spacing:0.578688pt;}
.ls5_c02414{letter-spacing:0.637824pt;}
.ls2_c02414{letter-spacing:0.642048pt;}
.wsc_c02414{word-spacing:-13.445376pt;}
.ws12_c02414{word-spacing:-11.202048pt;}
.wsa_c02414{word-spacing:-11.088000pt;}
.ws6_c02414{word-spacing:-11.075328pt;}
.ws18_c02414{word-spacing:-11.037312pt;}
.ws2_c02414{word-spacing:-10.348800pt;}
.wsd_c02414{word-spacing:-10.019328pt;}
.ws5_c02414{word-spacing:-9.871488pt;}
.ws22_c02414{word-spacing:-1.919232pt;}
.ws23_c02414{word-spacing:-0.963072pt;}
.ws1b_c02414{word-spacing:-0.899712pt;}
.ws19_c02414{word-spacing:-0.865920pt;}
.ws25_c02414{word-spacing:-0.278784pt;}
.ws1c_c02414{word-spacing:-0.105600pt;}
.ws1f_c02414{word-spacing:-0.088704pt;}
.ws20_c02414{word-spacing:-0.080256pt;}
.ws21_c02414{word-spacing:-0.076032pt;}
.ws1a_c02414{word-spacing:0.000000pt;}
.ws24_c02414{word-spacing:0.321024pt;}
.ws1d_c02414{word-spacing:0.337920pt;}
.ws1e_c02414{word-spacing:0.384384pt;}
.ws15_c02414{word-spacing:1.917696pt;}
.ws9_c02414{word-spacing:5.892480pt;}
.ws13_c02414{word-spacing:16.084992pt;}
.ws11_c02414{word-spacing:18.235008pt;}
.ws14_c02414{word-spacing:18.289920pt;}
.ws10_c02414{word-spacing:20.334336pt;}
.wsb_c02414{word-spacing:29.600256pt;}
.ws8_c02414{word-spacing:30.966144pt;}
.wsf_c02414{word-spacing:32.127744pt;}
.wse_c02414{word-spacing:32.659968pt;}
.ws1_c02414{word-spacing:33.563904pt;}
.ws0_c02414{word-spacing:33.796224pt;}
.ws3_c02414{word-spacing:34.860672pt;}
.ws4_c02414{word-spacing:35.468928pt;}
.ws7_c02414{word-spacing:37.357056pt;}
.ws17_c02414{word-spacing:41.597952pt;}
.ws16_c02414{word-spacing:51.469440pt;}
._0_c02414{margin-left:-1.731840pt;}
._2_c02414{width:1.317888pt;}
._4_c02414{width:3.383424pt;}
._b_c02414{width:14.053248pt;}
._d_c02414{width:16.118784pt;}
._6_c02414{width:17.761920pt;}
._c_c02414{width:19.126272pt;}
._7_c02414{width:20.845440pt;}
._5_c02414{width:21.947904pt;}
._a_c02414{width:29.673600pt;}
._9_c02414{width:30.953472pt;}
._8_c02414{width:35.785728pt;}
._1_c02414{width:44.668800pt;}
._3_c02414{width:45.805056pt;}
._11_c02414{width:49.484160pt;}
._10_c02414{width:54.747264pt;}
._f_c02414{width:58.848768pt;}
._e_c02414{width:63.828864pt;}
.fs0_c02414{font-size:42.240000pt;}
.fs1_c02414{font-size:53.760000pt;}
.y0_c02414{bottom:0.000000pt;}
.y1f_c02414{bottom:130.667323pt;}
.y21_c02414{bottom:165.866875pt;}
.y20_c02414{bottom:174.507067pt;}
.y1e_c02414{bottom:205.227259pt;}
.y1d_c02414{bottom:218.666971pt;}
.y1c_c02414{bottom:231.786715pt;}
.y1b_c02414{bottom:245.226427pt;}
.y1a_c02414{bottom:290.666107pt;}
.y19_c02414{bottom:303.785851pt;}
.y18_c02414{bottom:317.225563pt;}
.y16_c02414{bottom:361.386427pt;}
.y12_c02414{bottom:377.386939pt;}
.y17_c02414{bottom:407.786011pt;}
.y15_c02414{bottom:437.226235pt;}
.y14_c02414{bottom:453.226747pt;}
.y11_c02414{bottom:482.666971pt;}
.y13_c02414{bottom:497.386555pt;}
.y10_c02414{bottom:513.387067pt;}
.y22_c02414{bottom:546.027067pt;}
.yc_c02414{bottom:579.945467pt;}
.yb_c02414{bottom:593.385179pt;}
.ye_c02414{bottom:628.586875pt;}
.yd_c02414{bottom:637.227067pt;}
.ya_c02414{bottom:707.945339pt;}
.y9_c02414{bottom:779.945531pt;}
.y7_c02414{bottom:823.786427pt;}
.y3_c02414{bottom:839.786939pt;}
.y8_c02414{bottom:870.505979pt;}
.y6_c02414{bottom:899.946203pt;}
.y5_c02414{bottom:915.946715pt;}
.y2_c02414{bottom:945.386939pt;}
.y4_c02414{bottom:959.786555pt;}
.y1_c02414{bottom:975.787067pt;}
.yf_c02414{bottom:1008.747067pt;}
.h3_c02414{height:28.916250pt;}
.h1_c02414{height:37.063125pt;}
.h2_c02414{height:37.166250pt;}
.h4_c02414{height:48.581988pt;}
.h0_c02414{height:1122.666667pt;}
.w1_c02414{width:793.333333pt;}
.w0_c02414{width:793.626667pt;}
.x0_c02414{left:0.000000pt;}
.xe_c02414{left:104.000000pt;}
.x8_c02414{left:391.999872pt;}
.x4_c02414{left:396.160512pt;}
.xc_c02414{left:400.960000pt;}
.x7_c02414{left:404.799648pt;}
.x5_c02414{left:410.560128pt;}
.x1_c02414{left:411.840000pt;}
.xa_c02414{left:429.760320pt;}
.x9_c02414{left:437.439552pt;}
.x6_c02414{left:438.400512pt;}
.xd_c02414{left:450.560320pt;}
.x3_c02414{left:455.039904pt;}
.x2_c02414{left:468.159648pt;}
.xb_c02414{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02415 {
    display:none;
  }
  .loading-indicator_c02415.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02415 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02415 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02415" -> "#page-container .classname_c02415")
 */
.pf_c02415 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02415 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02415.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02415 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02415 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02415 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02415 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02415 {overflow:visible;}
  }
}
.c_c02415 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02415 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02415:after { /* webkit #35443 */
  content: '';
}
.t_c02415:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02415 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02415 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02415 { /* info for Javascript */
  display:none;
}
.l_c02415 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02415 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02415 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02415:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02415 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02415.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02415.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02415 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02415{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02415;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02415{font-family:ff1_c02415;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02415;src:url('chunks/assets/font_4ffa15d6a1897e4271a7af5a.woff2')format("woff");}.ff2_c02415{font-family:ff2_c02415;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02415;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02415{font-family:ff3_c02415;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02415{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02415{vertical-align:0.000000px;}
.v1_c02415{vertical-align:1.439424px;}
.ls9_c02415{letter-spacing:-0.574992px;}
.lsf_c02415{letter-spacing:-0.275616px;}
.lsd_c02415{letter-spacing:-0.261360px;}
.lsc_c02415{letter-spacing:-0.256608px;}
.ls6_c02415{letter-spacing:-0.242352px;}
.ls4_c02415{letter-spacing:-0.118800px;}
.ls12_c02415{letter-spacing:0.000000px;}
.ls1_c02415{letter-spacing:0.006048px;}
.ls5_c02415{letter-spacing:0.128304px;}
.ls7_c02415{letter-spacing:0.242352px;}
.lsb_c02415{letter-spacing:0.508464px;}
.ls11_c02415{letter-spacing:0.514080px;}
.lse_c02415{letter-spacing:0.536976px;}
.lsa_c02415{letter-spacing:0.579744px;}
.ls10_c02415{letter-spacing:0.594000px;}
.ls8_c02415{letter-spacing:0.598752px;}
.ls2_c02415{letter-spacing:0.613008px;}
.ls0_c02415{letter-spacing:0.717552px;}
.ls3_c02415{letter-spacing:0.722304px;}
.sc__c02415{text-shadow:none;}
.sc0_c02415{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02415{-webkit-text-stroke:0px transparent;}
.sc0_c02415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02415{word-spacing:-15.126048px;}
.wsa_c02415{word-spacing:-12.474000px;}
.ws8_c02415{word-spacing:-12.459744px;}
.ws9_c02415{word-spacing:-12.416976px;}
.ws2_c02415{word-spacing:-12.122352px;}
.ws4_c02415{word-spacing:-11.637648px;}
.ws14_c02415{word-spacing:-2.159136px;}
.ws10_c02415{word-spacing:-1.078704px;}
.wsd_c02415{word-spacing:-0.974160px;}
.wsf_c02415{word-spacing:-0.118800px;}
.ws11_c02415{word-spacing:-0.104544px;}
.ws12_c02415{word-spacing:-0.099792px;}
.ws13_c02415{word-spacing:-0.085536px;}
.wse_c02415{word-spacing:0.000000px;}
.wsb_c02415{word-spacing:33.300288px;}
.ws6_c02415{word-spacing:36.742464px;}
.ws1_c02415{word-spacing:37.759392px;}
.ws0_c02415{word-spacing:38.020752px;}
.ws3_c02415{word-spacing:39.218256px;}
.ws5_c02415{word-spacing:39.902544px;}
.ws7_c02415{word-spacing:42.026688px;}
._0_c02415{margin-left:-1.948320px;}
._2_c02415{width:1.482624px;}
._4_c02415{width:3.307392px;}
._1_c02415{width:50.252400px;}
._3_c02415{width:51.530688px;}
.fc0_c02415{color:rgb(0,0,0);}
.fs0_c02415{font-size:47.520000px;}
.fs1_c02415{font-size:60.480000px;}
.y0_c02415{bottom:0.000000px;}
.y19_c02415{bottom:146.998362px;}
.y1b_c02415{bottom:186.600234px;}
.y1a_c02415{bottom:196.320450px;}
.y18_c02415{bottom:275.878542px;}
.y17_c02415{bottom:356.878758px;}
.y15_c02415{bottom:406.559730px;}
.y11_c02415{bottom:424.560306px;}
.y16_c02415{bottom:458.759262px;}
.y14_c02415{bottom:491.879514px;}
.y13_c02415{bottom:509.880090px;}
.y10_c02415{bottom:543.000342px;}
.y12_c02415{bottom:559.559874px;}
.yf_c02415{bottom:577.560450px;}
.y1c_c02415{bottom:614.280450px;}
.yb_c02415{bottom:667.558326px;}
.yd_c02415{bottom:707.160234px;}
.yc_c02415{bottom:716.880450px;}
.ya_c02415{bottom:796.438506px;}
.y9_c02415{bottom:877.438722px;}
.y7_c02415{bottom:926.759730px;}
.y3_c02415{bottom:944.760306px;}
.y8_c02415{bottom:979.319226px;}
.y6_c02415{bottom:1012.439478px;}
.y5_c02415{bottom:1030.440054px;}
.y2_c02415{bottom:1063.560306px;}
.y4_c02415{bottom:1079.759874px;}
.y1_c02415{bottom:1097.760450px;}
.ye_c02415{bottom:1134.840450px;}
.h3_c02415{height:32.530781px;}
.h1_c02415{height:41.696016px;}
.h2_c02415{height:41.812031px;}
.h4_c02415{height:54.654737px;}
.h0_c02415{height:1263.000000px;}
.w1_c02415{width:892.500000px;}
.w0_c02415{width:892.830000px;}
.x0_c02415{left:0.000000px;}
.xd_c02415{left:117.000000px;}
.x8_c02415{left:440.999856px;}
.x4_c02415{left:445.680576px;}
.xb_c02415{left:451.080000px;}
.x7_c02415{left:455.399604px;}
.x5_c02415{left:461.880144px;}
.x1_c02415{left:463.320000px;}
.xa_c02415{left:483.480360px;}
.x9_c02415{left:492.119496px;}
.x6_c02415{left:493.200576px;}
.xc_c02415{left:506.880360px;}
.x3_c02415{left:511.919892px;}
.x2_c02415{left:526.679604px;}
@media print{
.v0_c02415{vertical-align:0.000000pt;}
.v1_c02415{vertical-align:1.279488pt;}
.ls9_c02415{letter-spacing:-0.511104pt;}
.lsf_c02415{letter-spacing:-0.244992pt;}
.lsd_c02415{letter-spacing:-0.232320pt;}
.lsc_c02415{letter-spacing:-0.228096pt;}
.ls6_c02415{letter-spacing:-0.215424pt;}
.ls4_c02415{letter-spacing:-0.105600pt;}
.ls12_c02415{letter-spacing:0.000000pt;}
.ls1_c02415{letter-spacing:0.005376pt;}
.ls5_c02415{letter-spacing:0.114048pt;}
.ls7_c02415{letter-spacing:0.215424pt;}
.lsb_c02415{letter-spacing:0.451968pt;}
.ls11_c02415{letter-spacing:0.456960pt;}
.lse_c02415{letter-spacing:0.477312pt;}
.lsa_c02415{letter-spacing:0.515328pt;}
.ls10_c02415{letter-spacing:0.528000pt;}
.ls8_c02415{letter-spacing:0.532224pt;}
.ls2_c02415{letter-spacing:0.544896pt;}
.ls0_c02415{letter-spacing:0.637824pt;}
.ls3_c02415{letter-spacing:0.642048pt;}
.wsc_c02415{word-spacing:-13.445376pt;}
.wsa_c02415{word-spacing:-11.088000pt;}
.ws8_c02415{word-spacing:-11.075328pt;}
.ws9_c02415{word-spacing:-11.037312pt;}
.ws2_c02415{word-spacing:-10.775424pt;}
.ws4_c02415{word-spacing:-10.344576pt;}
.ws14_c02415{word-spacing:-1.919232pt;}
.ws10_c02415{word-spacing:-0.958848pt;}
.wsd_c02415{word-spacing:-0.865920pt;}
.wsf_c02415{word-spacing:-0.105600pt;}
.ws11_c02415{word-spacing:-0.092928pt;}
.ws12_c02415{word-spacing:-0.088704pt;}
.ws13_c02415{word-spacing:-0.076032pt;}
.wse_c02415{word-spacing:0.000000pt;}
.wsb_c02415{word-spacing:29.600256pt;}
.ws6_c02415{word-spacing:32.659968pt;}
.ws1_c02415{word-spacing:33.563904pt;}
.ws0_c02415{word-spacing:33.796224pt;}
.ws3_c02415{word-spacing:34.860672pt;}
.ws5_c02415{word-spacing:35.468928pt;}
.ws7_c02415{word-spacing:37.357056pt;}
._0_c02415{margin-left:-1.731840pt;}
._2_c02415{width:1.317888pt;}
._4_c02415{width:2.939904pt;}
._1_c02415{width:44.668800pt;}
._3_c02415{width:45.805056pt;}
.fs0_c02415{font-size:42.240000pt;}
.fs1_c02415{font-size:53.760000pt;}
.y0_c02415{bottom:0.000000pt;}
.y19_c02415{bottom:130.665211pt;}
.y1b_c02415{bottom:165.866875pt;}
.y1a_c02415{bottom:174.507067pt;}
.y18_c02415{bottom:245.225371pt;}
.y17_c02415{bottom:317.225563pt;}
.y15_c02415{bottom:361.386427pt;}
.y11_c02415{bottom:377.386939pt;}
.y16_c02415{bottom:407.786011pt;}
.y14_c02415{bottom:437.226235pt;}
.y13_c02415{bottom:453.226747pt;}
.y10_c02415{bottom:482.666971pt;}
.y12_c02415{bottom:497.386555pt;}
.yf_c02415{bottom:513.387067pt;}
.y1c_c02415{bottom:546.027067pt;}
.yb_c02415{bottom:593.385179pt;}
.yd_c02415{bottom:628.586875pt;}
.yc_c02415{bottom:637.227067pt;}
.ya_c02415{bottom:707.945339pt;}
.y9_c02415{bottom:779.945531pt;}
.y7_c02415{bottom:823.786427pt;}
.y3_c02415{bottom:839.786939pt;}
.y8_c02415{bottom:870.505979pt;}
.y6_c02415{bottom:899.946203pt;}
.y5_c02415{bottom:915.946715pt;}
.y2_c02415{bottom:945.386939pt;}
.y4_c02415{bottom:959.786555pt;}
.y1_c02415{bottom:975.787067pt;}
.ye_c02415{bottom:1008.747067pt;}
.h3_c02415{height:28.916250pt;}
.h1_c02415{height:37.063125pt;}
.h2_c02415{height:37.166250pt;}
.h4_c02415{height:48.581988pt;}
.h0_c02415{height:1122.666667pt;}
.w1_c02415{width:793.333333pt;}
.w0_c02415{width:793.626667pt;}
.x0_c02415{left:0.000000pt;}
.xd_c02415{left:104.000000pt;}
.x8_c02415{left:391.999872pt;}
.x4_c02415{left:396.160512pt;}
.xb_c02415{left:400.960000pt;}
.x7_c02415{left:404.799648pt;}
.x5_c02415{left:410.560128pt;}
.x1_c02415{left:411.840000pt;}
.xa_c02415{left:429.760320pt;}
.x9_c02415{left:437.439552pt;}
.x6_c02415{left:438.400512pt;}
.xc_c02415{left:450.560320pt;}
.x3_c02415{left:455.039904pt;}
.x2_c02415{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02416 {
    display:none;
  }
  .loading-indicator_c02416.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02416 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02416 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02416" -> "#page-container .classname_c02416")
 */
.pf_c02416 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02416 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02416 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02416 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02416 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02416 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02416 {overflow:visible;}
  }
}
.c_c02416 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02416 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02416:after { /* webkit #35443 */
  content: '';
}
.t_c02416:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02416 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02416 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02416 { /* info for Javascript */
  display:none;
}
.l_c02416 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02416 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02416 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02416:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02416 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02416.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02416 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02416{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02416;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02416{font-family:ff1_c02416;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02416;src:url('chunks/assets/font_3285e9e6ddc1ac5cce09d62c.woff2')format("woff");}.ff2_c02416{font-family:ff2_c02416;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02416;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02416{font-family:ff3_c02416;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02416{vertical-align:0.000000px;}
.v1_c02416{vertical-align:1.439424px;}
.v2_c02416{vertical-align:33.121440px;}
.lsa_c02416{letter-spacing:-0.774576px;}
.ls11_c02416{letter-spacing:-0.736560px;}
.lsd_c02416{letter-spacing:-0.722304px;}
.ls9_c02416{letter-spacing:-0.574992px;}
.ls16_c02416{letter-spacing:-0.375408px;}
.ls17_c02416{letter-spacing:-0.275616px;}
.ls12_c02416{letter-spacing:-0.270864px;}
.lsf_c02416{letter-spacing:-0.261360px;}
.ls6_c02416{letter-spacing:-0.242352px;}
.ls4_c02416{letter-spacing:-0.118800px;}
.ls18_c02416{letter-spacing:-0.076032px;}
.ls15_c02416{letter-spacing:0.000000px;}
.ls0_c02416{letter-spacing:0.006048px;}
.ls5_c02416{letter-spacing:0.128304px;}
.ls7_c02416{letter-spacing:0.242352px;}
.lsc_c02416{letter-spacing:0.508464px;}
.ls14_c02416{letter-spacing:0.514080px;}
.ls10_c02416{letter-spacing:0.536976px;}
.lsb_c02416{letter-spacing:0.579744px;}
.ls13_c02416{letter-spacing:0.594000px;}
.ls8_c02416{letter-spacing:0.598752px;}
.ls3_c02416{letter-spacing:0.613008px;}
.lse_c02416{letter-spacing:0.651024px;}
.ls1_c02416{letter-spacing:0.717552px;}
.ls2_c02416{letter-spacing:0.722304px;}
.sc__c02416{text-shadow:none;}
.sc0_c02416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02416{-webkit-text-stroke:0px transparent;}
.sc0_c02416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c02416{word-spacing:-15.126048px;}
.wsd_c02416{word-spacing:-12.474000px;}
.ws7_c02416{word-spacing:-12.459744px;}
.ws11_c02416{word-spacing:-12.416976px;}
.ws2_c02416{word-spacing:-12.122352px;}
.ws4_c02416{word-spacing:-11.637648px;}
.ws6_c02416{word-spacing:-11.105424px;}
.ws1b_c02416{word-spacing:-2.159136px;}
.ws16_c02416{word-spacing:-1.083456px;}
.ws1c_c02416{word-spacing:-1.078704px;}
.ws17_c02416{word-spacing:-1.012176px;}
.ws13_c02416{word-spacing:-0.974160px;}
.ws1e_c02416{word-spacing:-0.285120px;}
.ws15_c02416{word-spacing:-0.118800px;}
.ws18_c02416{word-spacing:-0.099792px;}
.ws19_c02416{word-spacing:-0.090288px;}
.ws1a_c02416{word-spacing:-0.085536px;}
.ws14_c02416{word-spacing:0.000000px;}
.ws1d_c02416{word-spacing:0.014256px;}
.wsc_c02416{word-spacing:6.629040px;}
.ws10_c02416{word-spacing:12.236400px;}
.ws12_c02416{word-spacing:30.298752px;}
.wse_c02416{word-spacing:33.300288px;}
.wsb_c02416{word-spacing:34.836912px;}
.ws9_c02416{word-spacing:36.143712px;}
.ws1_c02416{word-spacing:37.759392px;}
.ws0_c02416{word-spacing:38.020752px;}
.ws3_c02416{word-spacing:39.218256px;}
.ws5_c02416{word-spacing:39.902544px;}
.ws8_c02416{word-spacing:42.026688px;}
.wsa_c02416{word-spacing:50.765616px;}
._0_c02416{margin-left:-1.948320px;}
._2_c02416{width:1.482624px;}
._4_c02416{width:3.307392px;}
._9_c02416{width:19.982160px;}
._a_c02416{width:23.451120px;}
._8_c02416{width:24.691392px;}
._1_c02416{width:50.252400px;}
._3_c02416{width:51.530688px;}
._5_c02416{width:63.819360px;}
._6_c02416{width:66.537504px;}
._7_c02416{width:69.127344px;}
.fc0_c02416{color:rgb(0,0,0);}
.fs0_c02416{font-size:47.520000px;}
.fs1_c02416{font-size:60.480000px;}
.y0_c02416{bottom:0.000000px;}
.y1c_c02416{bottom:146.998362px;}
.y1e_c02416{bottom:186.600234px;}
.y1d_c02416{bottom:196.320450px;}
.y1b_c02416{bottom:275.878542px;}
.y1a_c02416{bottom:341.759082px;}
.y19_c02416{bottom:356.878758px;}
.y17_c02416{bottom:406.559730px;}
.y13_c02416{bottom:424.560306px;}
.y18_c02416{bottom:458.759262px;}
.y16_c02416{bottom:491.879514px;}
.y15_c02416{bottom:509.880090px;}
.y12_c02416{bottom:543.000342px;}
.y14_c02416{bottom:559.559874px;}
.y11_c02416{bottom:577.560450px;}
.y1f_c02416{bottom:614.280450px;}
.yd_c02416{bottom:652.439838px;}
.yc_c02416{bottom:667.559514px;}
.yf_c02416{bottom:707.160234px;}
.ye_c02416{bottom:716.880450px;}
.yb_c02416{bottom:796.439694px;}
.ya_c02416{bottom:862.319046px;}
.y9_c02416{bottom:877.438722px;}
.y7_c02416{bottom:926.759730px;}
.y3_c02416{bottom:944.760306px;}
.y8_c02416{bottom:979.319226px;}
.y6_c02416{bottom:1012.439478px;}
.y5_c02416{bottom:1030.440054px;}
.y2_c02416{bottom:1063.560306px;}
.y4_c02416{bottom:1079.759874px;}
.y1_c02416{bottom:1097.760450px;}
.y10_c02416{bottom:1134.840450px;}
.h3_c02416{height:32.530781px;}
.h1_c02416{height:41.696016px;}
.h2_c02416{height:41.812031px;}
.h4_c02416{height:54.654737px;}
.h5_c02416{height:74.817456px;}
.h0_c02416{height:1263.000000px;}
.w1_c02416{width:892.500000px;}
.w0_c02416{width:892.830000px;}
.x0_c02416{left:0.000000px;}
.xe_c02416{left:117.000000px;}
.x8_c02416{left:440.999856px;}
.x4_c02416{left:445.680576px;}
.xc_c02416{left:451.080000px;}
.x7_c02416{left:455.399604px;}
.x5_c02416{left:461.880144px;}
.x1_c02416{left:463.320000px;}
.xb_c02416{left:483.480360px;}
.x9_c02416{left:492.119496px;}
.x6_c02416{left:493.200576px;}
.xd_c02416{left:506.880360px;}
.x3_c02416{left:511.919892px;}
.x2_c02416{left:526.679604px;}
.xa_c02416{left:569.880036px;}
@media print{
.v0_c02416{vertical-align:0.000000pt;}
.v1_c02416{vertical-align:1.279488pt;}
.v2_c02416{vertical-align:29.441280pt;}
.lsa_c02416{letter-spacing:-0.688512pt;}
.ls11_c02416{letter-spacing:-0.654720pt;}
.lsd_c02416{letter-spacing:-0.642048pt;}
.ls9_c02416{letter-spacing:-0.511104pt;}
.ls16_c02416{letter-spacing:-0.333696pt;}
.ls17_c02416{letter-spacing:-0.244992pt;}
.ls12_c02416{letter-spacing:-0.240768pt;}
.lsf_c02416{letter-spacing:-0.232320pt;}
.ls6_c02416{letter-spacing:-0.215424pt;}
.ls4_c02416{letter-spacing:-0.105600pt;}
.ls18_c02416{letter-spacing:-0.067584pt;}
.ls15_c02416{letter-spacing:0.000000pt;}
.ls0_c02416{letter-spacing:0.005376pt;}
.ls5_c02416{letter-spacing:0.114048pt;}
.ls7_c02416{letter-spacing:0.215424pt;}
.lsc_c02416{letter-spacing:0.451968pt;}
.ls14_c02416{letter-spacing:0.456960pt;}
.ls10_c02416{letter-spacing:0.477312pt;}
.lsb_c02416{letter-spacing:0.515328pt;}
.ls13_c02416{letter-spacing:0.528000pt;}
.ls8_c02416{letter-spacing:0.532224pt;}
.ls3_c02416{letter-spacing:0.544896pt;}
.lse_c02416{letter-spacing:0.578688pt;}
.ls1_c02416{letter-spacing:0.637824pt;}
.ls2_c02416{letter-spacing:0.642048pt;}
.wsf_c02416{word-spacing:-13.445376pt;}
.wsd_c02416{word-spacing:-11.088000pt;}
.ws7_c02416{word-spacing:-11.075328pt;}
.ws11_c02416{word-spacing:-11.037312pt;}
.ws2_c02416{word-spacing:-10.775424pt;}
.ws4_c02416{word-spacing:-10.344576pt;}
.ws6_c02416{word-spacing:-9.871488pt;}
.ws1b_c02416{word-spacing:-1.919232pt;}
.ws16_c02416{word-spacing:-0.963072pt;}
.ws1c_c02416{word-spacing:-0.958848pt;}
.ws17_c02416{word-spacing:-0.899712pt;}
.ws13_c02416{word-spacing:-0.865920pt;}
.ws1e_c02416{word-spacing:-0.253440pt;}
.ws15_c02416{word-spacing:-0.105600pt;}
.ws18_c02416{word-spacing:-0.088704pt;}
.ws19_c02416{word-spacing:-0.080256pt;}
.ws1a_c02416{word-spacing:-0.076032pt;}
.ws14_c02416{word-spacing:0.000000pt;}
.ws1d_c02416{word-spacing:0.012672pt;}
.wsc_c02416{word-spacing:5.892480pt;}
.ws10_c02416{word-spacing:10.876800pt;}
.ws12_c02416{word-spacing:26.932224pt;}
.wse_c02416{word-spacing:29.600256pt;}
.wsb_c02416{word-spacing:30.966144pt;}
.ws9_c02416{word-spacing:32.127744pt;}
.ws1_c02416{word-spacing:33.563904pt;}
.ws0_c02416{word-spacing:33.796224pt;}
.ws3_c02416{word-spacing:34.860672pt;}
.ws5_c02416{word-spacing:35.468928pt;}
.ws8_c02416{word-spacing:37.357056pt;}
.wsa_c02416{word-spacing:45.124992pt;}
._0_c02416{margin-left:-1.731840pt;}
._2_c02416{width:1.317888pt;}
._4_c02416{width:2.939904pt;}
._9_c02416{width:17.761920pt;}
._a_c02416{width:20.845440pt;}
._8_c02416{width:21.947904pt;}
._1_c02416{width:44.668800pt;}
._3_c02416{width:45.805056pt;}
._5_c02416{width:56.728320pt;}
._6_c02416{width:59.144448pt;}
._7_c02416{width:61.446528pt;}
.fs0_c02416{font-size:42.240000pt;}
.fs1_c02416{font-size:53.760000pt;}
.y0_c02416{bottom:0.000000pt;}
.y1c_c02416{bottom:130.665211pt;}
.y1e_c02416{bottom:165.866875pt;}
.y1d_c02416{bottom:174.507067pt;}
.y1b_c02416{bottom:245.225371pt;}
.y1a_c02416{bottom:303.785851pt;}
.y19_c02416{bottom:317.225563pt;}
.y17_c02416{bottom:361.386427pt;}
.y13_c02416{bottom:377.386939pt;}
.y18_c02416{bottom:407.786011pt;}
.y16_c02416{bottom:437.226235pt;}
.y15_c02416{bottom:453.226747pt;}
.y12_c02416{bottom:482.666971pt;}
.y14_c02416{bottom:497.386555pt;}
.y11_c02416{bottom:513.387067pt;}
.y1f_c02416{bottom:546.027067pt;}
.yd_c02416{bottom:579.946523pt;}
.yc_c02416{bottom:593.386235pt;}
.yf_c02416{bottom:628.586875pt;}
.ye_c02416{bottom:637.227067pt;}
.yb_c02416{bottom:707.946395pt;}
.ya_c02416{bottom:766.505819pt;}
.y9_c02416{bottom:779.945531pt;}
.y7_c02416{bottom:823.786427pt;}
.y3_c02416{bottom:839.786939pt;}
.y8_c02416{bottom:870.505979pt;}
.y6_c02416{bottom:899.946203pt;}
.y5_c02416{bottom:915.946715pt;}
.y2_c02416{bottom:945.386939pt;}
.y4_c02416{bottom:959.786555pt;}
.y1_c02416{bottom:975.787067pt;}
.y10_c02416{bottom:1008.747067pt;}
.h3_c02416{height:28.916250pt;}
.h1_c02416{height:37.063125pt;}
.h2_c02416{height:37.166250pt;}
.h4_c02416{height:48.581988pt;}
.h5_c02416{height:66.504405pt;}
.h0_c02416{height:1122.666667pt;}
.w1_c02416{width:793.333333pt;}
.w0_c02416{width:793.626667pt;}
.x0_c02416{left:0.000000pt;}
.xe_c02416{left:104.000000pt;}
.x8_c02416{left:391.999872pt;}
.x4_c02416{left:396.160512pt;}
.xc_c02416{left:400.960000pt;}
.x7_c02416{left:404.799648pt;}
.x5_c02416{left:410.560128pt;}
.x1_c02416{left:411.840000pt;}
.xb_c02416{left:429.760320pt;}
.x9_c02416{left:437.439552pt;}
.x6_c02416{left:438.400512pt;}
.xd_c02416{left:450.560320pt;}
.x3_c02416{left:455.039904pt;}
.x2_c02416{left:468.159648pt;}
.xa_c02416{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02417 {
    display:none;
  }
  .loading-indicator_c02417.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02417 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02417 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02417" -> "#page-container .classname_c02417")
 */
.pf_c02417 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02417 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02417 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02417 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02417 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02417 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02417 {overflow:visible;}
  }
}
.c_c02417 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02417 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02417:after { /* webkit #35443 */
  content: '';
}
.t_c02417:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02417 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02417 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02417 { /* info for Javascript */
  display:none;
}
.l_c02417 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02417 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02417 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02417:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02417 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02417.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02417 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02417{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02417;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02417{font-family:ff1_c02417;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02417;src:url('chunks/assets/font_0cac8e2c2178a79a33c82c09.woff2')format("woff");}.ff2_c02417{font-family:ff2_c02417;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02417;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02417{font-family:ff3_c02417;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02417{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02417{vertical-align:0.000000px;}
.v2_c02417{vertical-align:1.439424px;}
.v1_c02417{vertical-align:33.121440px;}
.lsa_c02417{letter-spacing:-0.774576px;}
.ls10_c02417{letter-spacing:-0.736560px;}
.ls9_c02417{letter-spacing:-0.574992px;}
.ls11_c02417{letter-spacing:-0.270864px;}
.lse_c02417{letter-spacing:-0.261360px;}
.ls6_c02417{letter-spacing:-0.242352px;}
.ls3_c02417{letter-spacing:-0.118800px;}
.ls13_c02417{letter-spacing:-0.076032px;}
.ls15_c02417{letter-spacing:0.000000px;}
.ls1_c02417{letter-spacing:0.006048px;}
.lsd_c02417{letter-spacing:0.061776px;}
.ls5_c02417{letter-spacing:0.128304px;}
.ls7_c02417{letter-spacing:0.242352px;}
.lsc_c02417{letter-spacing:0.508464px;}
.ls14_c02417{letter-spacing:0.514080px;}
.lsf_c02417{letter-spacing:0.536976px;}
.lsb_c02417{letter-spacing:0.579744px;}
.ls12_c02417{letter-spacing:0.594000px;}
.ls8_c02417{letter-spacing:0.598752px;}
.ls2_c02417{letter-spacing:0.613008px;}
.ls4_c02417{letter-spacing:0.717552px;}
.ls0_c02417{letter-spacing:0.722304px;}
.sc__c02417{text-shadow:none;}
.sc0_c02417{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02417{-webkit-text-stroke:0px transparent;}
.sc0_c02417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02417{word-spacing:-15.126048px;}
.ws7_c02417{word-spacing:-12.459744px;}
.ws2_c02417{word-spacing:-12.122352px;}
.ws4_c02417{word-spacing:-11.637648px;}
.ws6_c02417{word-spacing:-11.105424px;}
.ws18_c02417{word-spacing:-2.159136px;}
.ws12_c02417{word-spacing:-1.083456px;}
.wsf_c02417{word-spacing:-0.974160px;}
.ws13_c02417{word-spacing:-0.422928px;}
.ws17_c02417{word-spacing:-0.285120px;}
.ws11_c02417{word-spacing:-0.118800px;}
.ws14_c02417{word-spacing:-0.099792px;}
.ws15_c02417{word-spacing:-0.090288px;}
.ws16_c02417{word-spacing:-0.085536px;}
.ws10_c02417{word-spacing:0.000000px;}
.wsb_c02417{word-spacing:6.629040px;}
.wsc_c02417{word-spacing:30.298752px;}
.wsd_c02417{word-spacing:33.300288px;}
.wsa_c02417{word-spacing:34.836912px;}
.ws9_c02417{word-spacing:36.143712px;}
.ws1_c02417{word-spacing:37.759392px;}
.ws0_c02417{word-spacing:38.020752px;}
.ws3_c02417{word-spacing:39.218256px;}
.ws5_c02417{word-spacing:39.902544px;}
.ws8_c02417{word-spacing:42.026688px;}
._0_c02417{margin-left:-1.948320px;}
._2_c02417{width:1.482624px;}
._4_c02417{width:3.307392px;}
._6_c02417{width:19.982160px;}
._7_c02417{width:23.451120px;}
._5_c02417{width:24.691392px;}
._1_c02417{width:50.252400px;}
._3_c02417{width:51.530688px;}
.fc0_c02417{color:rgb(0,0,0);}
.fs0_c02417{font-size:47.520000px;}
.fs1_c02417{font-size:60.480000px;}
.y0_c02417{bottom:0.000000px;}
.y1b_c02417{bottom:131.878686px;}
.y1a_c02417{bottom:146.998362px;}
.y1d_c02417{bottom:186.600234px;}
.y1c_c02417{bottom:196.320450px;}
.y19_c02417{bottom:275.878542px;}
.y18_c02417{bottom:356.878758px;}
.y16_c02417{bottom:406.559730px;}
.y12_c02417{bottom:424.560306px;}
.y17_c02417{bottom:458.759262px;}
.y15_c02417{bottom:491.879514px;}
.y14_c02417{bottom:509.880090px;}
.y11_c02417{bottom:543.000342px;}
.y13_c02417{bottom:559.559874px;}
.y10_c02417{bottom:577.560450px;}
.y1e_c02417{bottom:614.280450px;}
.yc_c02417{bottom:652.438650px;}
.yb_c02417{bottom:667.558326px;}
.ye_c02417{bottom:707.160234px;}
.yd_c02417{bottom:716.880450px;}
.ya_c02417{bottom:796.438506px;}
.y9_c02417{bottom:877.438722px;}
.y7_c02417{bottom:926.759730px;}
.y3_c02417{bottom:944.760306px;}
.y8_c02417{bottom:979.319226px;}
.y6_c02417{bottom:1012.439478px;}
.y5_c02417{bottom:1030.440054px;}
.y2_c02417{bottom:1063.560306px;}
.y4_c02417{bottom:1079.759874px;}
.y1_c02417{bottom:1097.760450px;}
.yf_c02417{bottom:1134.840450px;}
.h3_c02417{height:32.530781px;}
.h1_c02417{height:41.696016px;}
.h2_c02417{height:41.812031px;}
.h5_c02417{height:54.654737px;}
.h4_c02417{height:74.817456px;}
.h0_c02417{height:1263.000000px;}
.w1_c02417{width:892.500000px;}
.w0_c02417{width:892.830000px;}
.x0_c02417{left:0.000000px;}
.xe_c02417{left:117.000000px;}
.x8_c02417{left:440.999856px;}
.x4_c02417{left:445.680576px;}
.xc_c02417{left:451.080000px;}
.x7_c02417{left:455.399604px;}
.x5_c02417{left:461.880144px;}
.x1_c02417{left:463.320000px;}
.xa_c02417{left:483.480360px;}
.x9_c02417{left:492.119496px;}
.x6_c02417{left:493.200576px;}
.xd_c02417{left:506.880360px;}
.x3_c02417{left:511.919892px;}
.x2_c02417{left:526.679604px;}
.xb_c02417{left:569.880036px;}
@media print{
.v0_c02417{vertical-align:0.000000pt;}
.v2_c02417{vertical-align:1.279488pt;}
.v1_c02417{vertical-align:29.441280pt;}
.lsa_c02417{letter-spacing:-0.688512pt;}
.ls10_c02417{letter-spacing:-0.654720pt;}
.ls9_c02417{letter-spacing:-0.511104pt;}
.ls11_c02417{letter-spacing:-0.240768pt;}
.lse_c02417{letter-spacing:-0.232320pt;}
.ls6_c02417{letter-spacing:-0.215424pt;}
.ls3_c02417{letter-spacing:-0.105600pt;}
.ls13_c02417{letter-spacing:-0.067584pt;}
.ls15_c02417{letter-spacing:0.000000pt;}
.ls1_c02417{letter-spacing:0.005376pt;}
.lsd_c02417{letter-spacing:0.054912pt;}
.ls5_c02417{letter-spacing:0.114048pt;}
.ls7_c02417{letter-spacing:0.215424pt;}
.lsc_c02417{letter-spacing:0.451968pt;}
.ls14_c02417{letter-spacing:0.456960pt;}
.lsf_c02417{letter-spacing:0.477312pt;}
.lsb_c02417{letter-spacing:0.515328pt;}
.ls12_c02417{letter-spacing:0.528000pt;}
.ls8_c02417{letter-spacing:0.532224pt;}
.ls2_c02417{letter-spacing:0.544896pt;}
.ls4_c02417{letter-spacing:0.637824pt;}
.ls0_c02417{letter-spacing:0.642048pt;}
.wse_c02417{word-spacing:-13.445376pt;}
.ws7_c02417{word-spacing:-11.075328pt;}
.ws2_c02417{word-spacing:-10.775424pt;}
.ws4_c02417{word-spacing:-10.344576pt;}
.ws6_c02417{word-spacing:-9.871488pt;}
.ws18_c02417{word-spacing:-1.919232pt;}
.ws12_c02417{word-spacing:-0.963072pt;}
.wsf_c02417{word-spacing:-0.865920pt;}
.ws13_c02417{word-spacing:-0.375936pt;}
.ws17_c02417{word-spacing:-0.253440pt;}
.ws11_c02417{word-spacing:-0.105600pt;}
.ws14_c02417{word-spacing:-0.088704pt;}
.ws15_c02417{word-spacing:-0.080256pt;}
.ws16_c02417{word-spacing:-0.076032pt;}
.ws10_c02417{word-spacing:0.000000pt;}
.wsb_c02417{word-spacing:5.892480pt;}
.wsc_c02417{word-spacing:26.932224pt;}
.wsd_c02417{word-spacing:29.600256pt;}
.wsa_c02417{word-spacing:30.966144pt;}
.ws9_c02417{word-spacing:32.127744pt;}
.ws1_c02417{word-spacing:33.563904pt;}
.ws0_c02417{word-spacing:33.796224pt;}
.ws3_c02417{word-spacing:34.860672pt;}
.ws5_c02417{word-spacing:35.468928pt;}
.ws8_c02417{word-spacing:37.357056pt;}
._0_c02417{margin-left:-1.731840pt;}
._2_c02417{width:1.317888pt;}
._4_c02417{width:2.939904pt;}
._6_c02417{width:17.761920pt;}
._7_c02417{width:20.845440pt;}
._5_c02417{width:21.947904pt;}
._1_c02417{width:44.668800pt;}
._3_c02417{width:45.805056pt;}
.fs0_c02417{font-size:42.240000pt;}
.fs1_c02417{font-size:53.760000pt;}
.y0_c02417{bottom:0.000000pt;}
.y1b_c02417{bottom:117.225499pt;}
.y1a_c02417{bottom:130.665211pt;}
.y1d_c02417{bottom:165.866875pt;}
.y1c_c02417{bottom:174.507067pt;}
.y19_c02417{bottom:245.225371pt;}
.y18_c02417{bottom:317.225563pt;}
.y16_c02417{bottom:361.386427pt;}
.y12_c02417{bottom:377.386939pt;}
.y17_c02417{bottom:407.786011pt;}
.y15_c02417{bottom:437.226235pt;}
.y14_c02417{bottom:453.226747pt;}
.y11_c02417{bottom:482.666971pt;}
.y13_c02417{bottom:497.386555pt;}
.y10_c02417{bottom:513.387067pt;}
.y1e_c02417{bottom:546.027067pt;}
.yc_c02417{bottom:579.945467pt;}
.yb_c02417{bottom:593.385179pt;}
.ye_c02417{bottom:628.586875pt;}
.yd_c02417{bottom:637.227067pt;}
.ya_c02417{bottom:707.945339pt;}
.y9_c02417{bottom:779.945531pt;}
.y7_c02417{bottom:823.786427pt;}
.y3_c02417{bottom:839.786939pt;}
.y8_c02417{bottom:870.505979pt;}
.y6_c02417{bottom:899.946203pt;}
.y5_c02417{bottom:915.946715pt;}
.y2_c02417{bottom:945.386939pt;}
.y4_c02417{bottom:959.786555pt;}
.y1_c02417{bottom:975.787067pt;}
.yf_c02417{bottom:1008.747067pt;}
.h3_c02417{height:28.916250pt;}
.h1_c02417{height:37.063125pt;}
.h2_c02417{height:37.166250pt;}
.h5_c02417{height:48.581988pt;}
.h4_c02417{height:66.504405pt;}
.h0_c02417{height:1122.666667pt;}
.w1_c02417{width:793.333333pt;}
.w0_c02417{width:793.626667pt;}
.x0_c02417{left:0.000000pt;}
.xe_c02417{left:104.000000pt;}
.x8_c02417{left:391.999872pt;}
.x4_c02417{left:396.160512pt;}
.xc_c02417{left:400.960000pt;}
.x7_c02417{left:404.799648pt;}
.x5_c02417{left:410.560128pt;}
.x1_c02417{left:411.840000pt;}
.xa_c02417{left:429.760320pt;}
.x9_c02417{left:437.439552pt;}
.x6_c02417{left:438.400512pt;}
.xd_c02417{left:450.560320pt;}
.x3_c02417{left:455.039904pt;}
.x2_c02417{left:468.159648pt;}
.xb_c02417{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02418 {
    display:none;
  }
  .loading-indicator_c02418.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02418 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02418 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02418" -> "#page-container .classname_c02418")
 */
.pf_c02418 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02418 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02418 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02418 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02418 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02418 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02418 {overflow:visible;}
  }
}
.c_c02418 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02418 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02418:after { /* webkit #35443 */
  content: '';
}
.t_c02418:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02418 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02418 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02418 { /* info for Javascript */
  display:none;
}
.l_c02418 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02418 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02418 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02418:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02418 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02418.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02418 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02418{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02418;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02418{font-family:ff1_c02418;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02418;src:url('chunks/assets/font_e2bdb2c6b082125e322096d6.woff2')format("woff");}.ff2_c02418{font-family:ff2_c02418;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02418;src:url('chunks/assets/font_7b6efee5370e460da57ac30a.woff2')format("woff");}.ff3_c02418{font-family:ff3_c02418;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02418{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02418{vertical-align:0.000000px;}
.v2_c02418{vertical-align:1.439424px;}
.v1_c02418{vertical-align:33.121440px;}
.ls15_c02418{letter-spacing:-0.722304px;}
.lsa_c02418{letter-spacing:-0.574992px;}
.ls17_c02418{letter-spacing:-0.380160px;}
.lse_c02418{letter-spacing:-0.375408px;}
.ls10_c02418{letter-spacing:-0.275616px;}
.lsd_c02418{letter-spacing:-0.261360px;}
.ls7_c02418{letter-spacing:-0.242352px;}
.ls5_c02418{letter-spacing:-0.118800px;}
.ls16_c02418{letter-spacing:-0.080784px;}
.ls12_c02418{letter-spacing:-0.076032px;}
.ls14_c02418{letter-spacing:0.000000px;}
.ls2_c02418{letter-spacing:0.006048px;}
.ls6_c02418{letter-spacing:0.128304px;}
.ls8_c02418{letter-spacing:0.242352px;}
.lsc_c02418{letter-spacing:0.508464px;}
.ls13_c02418{letter-spacing:0.514080px;}
.lsf_c02418{letter-spacing:0.536976px;}
.lsb_c02418{letter-spacing:0.579744px;}
.ls11_c02418{letter-spacing:0.594000px;}
.ls9_c02418{letter-spacing:0.598752px;}
.ls4_c02418{letter-spacing:0.613008px;}
.ls3_c02418{letter-spacing:0.693792px;}
.ls0_c02418{letter-spacing:0.717552px;}
.ls1_c02418{letter-spacing:0.722304px;}
.sc__c02418{text-shadow:none;}
.sc0_c02418{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02418{-webkit-text-stroke:0px transparent;}
.sc0_c02418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02418{word-spacing:-15.126048px;}
.wse_c02418{word-spacing:-12.573792px;}
.ws12_c02418{word-spacing:-12.474000px;}
.ws6_c02418{word-spacing:-12.459744px;}
.wsa_c02418{word-spacing:-12.416976px;}
.ws2_c02418{word-spacing:-12.122352px;}
.ws11_c02418{word-spacing:-11.799216px;}
.ws4_c02418{word-spacing:-11.637648px;}
.ws1c_c02418{word-spacing:-2.159136px;}
.ws17_c02418{word-spacing:-1.083456px;}
.ws16_c02418{word-spacing:-1.078704px;}
.ws13_c02418{word-spacing:-0.974160px;}
.ws1b_c02418{word-spacing:-0.285120px;}
.ws15_c02418{word-spacing:-0.118800px;}
.ws18_c02418{word-spacing:-0.099792px;}
.ws1a_c02418{word-spacing:-0.085536px;}
.ws14_c02418{word-spacing:0.000000px;}
.ws19_c02418{word-spacing:0.014256px;}
.ws1d_c02418{word-spacing:0.019008px;}
.ws10_c02418{word-spacing:10.435392px;}
.wsf_c02418{word-spacing:10.444896px;}
.ws9_c02418{word-spacing:12.236400px;}
.wsb_c02418{word-spacing:30.298752px;}
.wsc_c02418{word-spacing:33.300288px;}
.ws8_c02418{word-spacing:36.143712px;}
.ws1_c02418{word-spacing:37.759392px;}
.ws0_c02418{word-spacing:38.020752px;}
.ws3_c02418{word-spacing:39.218256px;}
.ws5_c02418{word-spacing:39.902544px;}
.ws7_c02418{word-spacing:42.026688px;}
._0_c02418{margin-left:-1.948320px;}
._2_c02418{width:1.482624px;}
._4_c02418{width:3.307392px;}
._6_c02418{width:20.276784px;}
._5_c02418{width:22.633776px;}
._7_c02418{width:25.299648px;}
._8_c02418{width:27.347760px;}
._1_c02418{width:50.252400px;}
._3_c02418{width:51.530688px;}
.fc0_c02418{color:rgb(0,0,0);}
.fs0_c02418{font-size:47.520000px;}
.fs1_c02418{font-size:60.480000px;}
.y0_c02418{bottom:0.000000px;}
.y1b_c02418{bottom:146.998362px;}
.y1d_c02418{bottom:186.600234px;}
.y1c_c02418{bottom:196.320450px;}
.y1a_c02418{bottom:275.878542px;}
.y19_c02418{bottom:341.759082px;}
.y18_c02418{bottom:356.878758px;}
.y16_c02418{bottom:406.559730px;}
.y12_c02418{bottom:424.560306px;}
.y17_c02418{bottom:458.759262px;}
.y15_c02418{bottom:491.879514px;}
.y14_c02418{bottom:509.880090px;}
.y11_c02418{bottom:543.000342px;}
.y13_c02418{bottom:559.559874px;}
.y10_c02418{bottom:577.560450px;}
.y1e_c02418{bottom:614.280450px;}
.yc_c02418{bottom:667.559514px;}
.ye_c02418{bottom:707.160234px;}
.yd_c02418{bottom:716.880450px;}
.yb_c02418{bottom:796.439694px;}
.ya_c02418{bottom:862.319046px;}
.y9_c02418{bottom:877.438722px;}
.y7_c02418{bottom:926.759730px;}
.y3_c02418{bottom:944.760306px;}
.y8_c02418{bottom:979.319226px;}
.y6_c02418{bottom:1012.439478px;}
.y5_c02418{bottom:1030.440054px;}
.y2_c02418{bottom:1063.560306px;}
.y4_c02418{bottom:1079.759874px;}
.y1_c02418{bottom:1097.760450px;}
.yf_c02418{bottom:1134.840450px;}
.h3_c02418{height:32.530781px;}
.h1_c02418{height:41.696016px;}
.h2_c02418{height:41.812031px;}
.h5_c02418{height:54.654737px;}
.h4_c02418{height:74.817456px;}
.h0_c02418{height:1263.000000px;}
.w1_c02418{width:892.500000px;}
.w0_c02418{width:892.830000px;}
.x0_c02418{left:0.000000px;}
.xe_c02418{left:117.000000px;}
.x8_c02418{left:440.999856px;}
.x4_c02418{left:445.680576px;}
.xc_c02418{left:451.080000px;}
.x7_c02418{left:455.399604px;}
.x5_c02418{left:461.880144px;}
.x1_c02418{left:463.320000px;}
.xb_c02418{left:483.480360px;}
.x9_c02418{left:492.119496px;}
.x6_c02418{left:493.200576px;}
.xd_c02418{left:506.880360px;}
.x3_c02418{left:511.919892px;}
.x2_c02418{left:526.679604px;}
.xa_c02418{left:569.880036px;}
@media print{
.v0_c02418{vertical-align:0.000000pt;}
.v2_c02418{vertical-align:1.279488pt;}
.v1_c02418{vertical-align:29.441280pt;}
.ls15_c02418{letter-spacing:-0.642048pt;}
.lsa_c02418{letter-spacing:-0.511104pt;}
.ls17_c02418{letter-spacing:-0.337920pt;}
.lse_c02418{letter-spacing:-0.333696pt;}
.ls10_c02418{letter-spacing:-0.244992pt;}
.lsd_c02418{letter-spacing:-0.232320pt;}
.ls7_c02418{letter-spacing:-0.215424pt;}
.ls5_c02418{letter-spacing:-0.105600pt;}
.ls16_c02418{letter-spacing:-0.071808pt;}
.ls12_c02418{letter-spacing:-0.067584pt;}
.ls14_c02418{letter-spacing:0.000000pt;}
.ls2_c02418{letter-spacing:0.005376pt;}
.ls6_c02418{letter-spacing:0.114048pt;}
.ls8_c02418{letter-spacing:0.215424pt;}
.lsc_c02418{letter-spacing:0.451968pt;}
.ls13_c02418{letter-spacing:0.456960pt;}
.lsf_c02418{letter-spacing:0.477312pt;}
.lsb_c02418{letter-spacing:0.515328pt;}
.ls11_c02418{letter-spacing:0.528000pt;}
.ls9_c02418{letter-spacing:0.532224pt;}
.ls4_c02418{letter-spacing:0.544896pt;}
.ls3_c02418{letter-spacing:0.616704pt;}
.ls0_c02418{letter-spacing:0.637824pt;}
.ls1_c02418{letter-spacing:0.642048pt;}
.wsd_c02418{word-spacing:-13.445376pt;}
.wse_c02418{word-spacing:-11.176704pt;}
.ws12_c02418{word-spacing:-11.088000pt;}
.ws6_c02418{word-spacing:-11.075328pt;}
.wsa_c02418{word-spacing:-11.037312pt;}
.ws2_c02418{word-spacing:-10.775424pt;}
.ws11_c02418{word-spacing:-10.488192pt;}
.ws4_c02418{word-spacing:-10.344576pt;}
.ws1c_c02418{word-spacing:-1.919232pt;}
.ws17_c02418{word-spacing:-0.963072pt;}
.ws16_c02418{word-spacing:-0.958848pt;}
.ws13_c02418{word-spacing:-0.865920pt;}
.ws1b_c02418{word-spacing:-0.253440pt;}
.ws15_c02418{word-spacing:-0.105600pt;}
.ws18_c02418{word-spacing:-0.088704pt;}
.ws1a_c02418{word-spacing:-0.076032pt;}
.ws14_c02418{word-spacing:0.000000pt;}
.ws19_c02418{word-spacing:0.012672pt;}
.ws1d_c02418{word-spacing:0.016896pt;}
.ws10_c02418{word-spacing:9.275904pt;}
.wsf_c02418{word-spacing:9.284352pt;}
.ws9_c02418{word-spacing:10.876800pt;}
.wsb_c02418{word-spacing:26.932224pt;}
.wsc_c02418{word-spacing:29.600256pt;}
.ws8_c02418{word-spacing:32.127744pt;}
.ws1_c02418{word-spacing:33.563904pt;}
.ws0_c02418{word-spacing:33.796224pt;}
.ws3_c02418{word-spacing:34.860672pt;}
.ws5_c02418{word-spacing:35.468928pt;}
.ws7_c02418{word-spacing:37.357056pt;}
._0_c02418{margin-left:-1.731840pt;}
._2_c02418{width:1.317888pt;}
._4_c02418{width:2.939904pt;}
._6_c02418{width:18.023808pt;}
._5_c02418{width:20.118912pt;}
._7_c02418{width:22.488576pt;}
._8_c02418{width:24.309120pt;}
._1_c02418{width:44.668800pt;}
._3_c02418{width:45.805056pt;}
.fs0_c02418{font-size:42.240000pt;}
.fs1_c02418{font-size:53.760000pt;}
.y0_c02418{bottom:0.000000pt;}
.y1b_c02418{bottom:130.665211pt;}
.y1d_c02418{bottom:165.866875pt;}
.y1c_c02418{bottom:174.507067pt;}
.y1a_c02418{bottom:245.225371pt;}
.y19_c02418{bottom:303.785851pt;}
.y18_c02418{bottom:317.225563pt;}
.y16_c02418{bottom:361.386427pt;}
.y12_c02418{bottom:377.386939pt;}
.y17_c02418{bottom:407.786011pt;}
.y15_c02418{bottom:437.226235pt;}
.y14_c02418{bottom:453.226747pt;}
.y11_c02418{bottom:482.666971pt;}
.y13_c02418{bottom:497.386555pt;}
.y10_c02418{bottom:513.387067pt;}
.y1e_c02418{bottom:546.027067pt;}
.yc_c02418{bottom:593.386235pt;}
.ye_c02418{bottom:628.586875pt;}
.yd_c02418{bottom:637.227067pt;}
.yb_c02418{bottom:707.946395pt;}
.ya_c02418{bottom:766.505819pt;}
.y9_c02418{bottom:779.945531pt;}
.y7_c02418{bottom:823.786427pt;}
.y3_c02418{bottom:839.786939pt;}
.y8_c02418{bottom:870.505979pt;}
.y6_c02418{bottom:899.946203pt;}
.y5_c02418{bottom:915.946715pt;}
.y2_c02418{bottom:945.386939pt;}
.y4_c02418{bottom:959.786555pt;}
.y1_c02418{bottom:975.787067pt;}
.yf_c02418{bottom:1008.747067pt;}
.h3_c02418{height:28.916250pt;}
.h1_c02418{height:37.063125pt;}
.h2_c02418{height:37.166250pt;}
.h5_c02418{height:48.581988pt;}
.h4_c02418{height:66.504405pt;}
.h0_c02418{height:1122.666667pt;}
.w1_c02418{width:793.333333pt;}
.w0_c02418{width:793.626667pt;}
.x0_c02418{left:0.000000pt;}
.xe_c02418{left:104.000000pt;}
.x8_c02418{left:391.999872pt;}
.x4_c02418{left:396.160512pt;}
.xc_c02418{left:400.960000pt;}
.x7_c02418{left:404.799648pt;}
.x5_c02418{left:410.560128pt;}
.x1_c02418{left:411.840000pt;}
.xb_c02418{left:429.760320pt;}
.x9_c02418{left:437.439552pt;}
.x6_c02418{left:438.400512pt;}
.xd_c02418{left:450.560320pt;}
.x3_c02418{left:455.039904pt;}
.x2_c02418{left:468.159648pt;}
.xa_c02418{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02419 {
    display:none;
  }
  .loading-indicator_c02419.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02419 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02419 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02419" -> "#page-container .classname_c02419")
 */
.pf_c02419 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02419 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02419 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02419 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02419 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02419 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02419 {overflow:visible;}
  }
}
.c_c02419 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02419 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02419:after { /* webkit #35443 */
  content: '';
}
.t_c02419:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02419 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02419 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02419 { /* info for Javascript */
  display:none;
}
.l_c02419 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02419 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02419 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02419:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02419 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02419.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02419 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02419{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02419;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02419{font-family:ff1_c02419;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02419;src:url('chunks/assets/font_24faee021c7b00c30bc8b68f.woff2')format("woff");}.ff2_c02419{font-family:ff2_c02419;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02419;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02419{font-family:ff3_c02419;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02419{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02419{vertical-align:0.000000px;}
.v1_c02419{vertical-align:1.439424px;}
.lsa_c02419{letter-spacing:-0.774576px;}
.ls10_c02419{letter-spacing:-0.736560px;}
.ls9_c02419{letter-spacing:-0.574992px;}
.ls11_c02419{letter-spacing:-0.270864px;}
.lse_c02419{letter-spacing:-0.261360px;}
.ls6_c02419{letter-spacing:-0.242352px;}
.ls3_c02419{letter-spacing:-0.118800px;}
.ls14_c02419{letter-spacing:0.000000px;}
.ls0_c02419{letter-spacing:0.006048px;}
.lsd_c02419{letter-spacing:0.071280px;}
.ls5_c02419{letter-spacing:0.128304px;}
.ls7_c02419{letter-spacing:0.242352px;}
.lsc_c02419{letter-spacing:0.508464px;}
.ls13_c02419{letter-spacing:0.514080px;}
.lsf_c02419{letter-spacing:0.536976px;}
.lsb_c02419{letter-spacing:0.579744px;}
.ls12_c02419{letter-spacing:0.594000px;}
.ls8_c02419{letter-spacing:0.598752px;}
.ls1_c02419{letter-spacing:0.613008px;}
.ls4_c02419{letter-spacing:0.717552px;}
.ls2_c02419{letter-spacing:0.722304px;}
.sc__c02419{text-shadow:none;}
.sc0_c02419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02419{-webkit-text-stroke:0px transparent;}
.sc0_c02419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02419{word-spacing:-15.126048px;}
.wsc_c02419{word-spacing:-12.474000px;}
.ws7_c02419{word-spacing:-12.459744px;}
.ws2_c02419{word-spacing:-12.122352px;}
.ws4_c02419{word-spacing:-11.637648px;}
.ws6_c02419{word-spacing:-11.105424px;}
.ws17_c02419{word-spacing:-2.159136px;}
.ws12_c02419{word-spacing:-1.083456px;}
.wsf_c02419{word-spacing:-0.974160px;}
.ws13_c02419{word-spacing:-0.432432px;}
.ws11_c02419{word-spacing:-0.118800px;}
.ws14_c02419{word-spacing:-0.099792px;}
.ws15_c02419{word-spacing:-0.090288px;}
.ws16_c02419{word-spacing:-0.085536px;}
.ws10_c02419{word-spacing:0.000000px;}
.wsb_c02419{word-spacing:6.629040px;}
.wsd_c02419{word-spacing:33.300288px;}
.wsa_c02419{word-spacing:34.836912px;}
.ws9_c02419{word-spacing:36.143712px;}
.ws1_c02419{word-spacing:37.759392px;}
.ws0_c02419{word-spacing:38.020752px;}
.ws3_c02419{word-spacing:39.218256px;}
.ws5_c02419{word-spacing:39.902544px;}
.ws8_c02419{word-spacing:42.026688px;}
._0_c02419{margin-left:-1.948320px;}
._2_c02419{width:1.482624px;}
._4_c02419{width:3.307392px;}
._6_c02419{width:19.982160px;}
._7_c02419{width:23.451120px;}
._5_c02419{width:24.691392px;}
._1_c02419{width:50.252400px;}
._3_c02419{width:51.530688px;}
.fc0_c02419{color:rgb(0,0,0);}
.fs0_c02419{font-size:47.520000px;}
.fs1_c02419{font-size:60.480000px;}
.y0_c02419{bottom:0.000000px;}
.y1b_c02419{bottom:131.878686px;}
.y1a_c02419{bottom:146.998362px;}
.y1d_c02419{bottom:186.600234px;}
.y1c_c02419{bottom:196.320450px;}
.y19_c02419{bottom:275.878542px;}
.y18_c02419{bottom:356.878758px;}
.y16_c02419{bottom:406.559730px;}
.y12_c02419{bottom:424.560306px;}
.y17_c02419{bottom:458.759262px;}
.y15_c02419{bottom:491.879514px;}
.y14_c02419{bottom:509.880090px;}
.y11_c02419{bottom:543.000342px;}
.y13_c02419{bottom:559.559874px;}
.y10_c02419{bottom:577.560450px;}
.y1e_c02419{bottom:614.280450px;}
.yc_c02419{bottom:652.438650px;}
.yb_c02419{bottom:667.558326px;}
.ye_c02419{bottom:707.160234px;}
.yd_c02419{bottom:716.880450px;}
.ya_c02419{bottom:796.438506px;}
.y9_c02419{bottom:877.438722px;}
.y7_c02419{bottom:926.759730px;}
.y3_c02419{bottom:944.760306px;}
.y8_c02419{bottom:979.319226px;}
.y6_c02419{bottom:1012.439478px;}
.y5_c02419{bottom:1030.440054px;}
.y2_c02419{bottom:1063.560306px;}
.y4_c02419{bottom:1079.759874px;}
.y1_c02419{bottom:1097.760450px;}
.yf_c02419{bottom:1134.840450px;}
.h3_c02419{height:32.530781px;}
.h1_c02419{height:41.696016px;}
.h2_c02419{height:41.812031px;}
.h4_c02419{height:54.654737px;}
.h0_c02419{height:1263.000000px;}
.w1_c02419{width:892.500000px;}
.w0_c02419{width:892.830000px;}
.x0_c02419{left:0.000000px;}
.xe_c02419{left:117.000000px;}
.x8_c02419{left:440.999856px;}
.x4_c02419{left:445.680576px;}
.xc_c02419{left:451.080000px;}
.x7_c02419{left:455.399604px;}
.x5_c02419{left:461.880144px;}
.x1_c02419{left:463.320000px;}
.xa_c02419{left:483.480360px;}
.x9_c02419{left:492.119496px;}
.x6_c02419{left:493.200576px;}
.xd_c02419{left:506.880360px;}
.x3_c02419{left:511.919892px;}
.x2_c02419{left:526.679604px;}
.xb_c02419{left:569.880036px;}
@media print{
.v0_c02419{vertical-align:0.000000pt;}
.v1_c02419{vertical-align:1.279488pt;}
.lsa_c02419{letter-spacing:-0.688512pt;}
.ls10_c02419{letter-spacing:-0.654720pt;}
.ls9_c02419{letter-spacing:-0.511104pt;}
.ls11_c02419{letter-spacing:-0.240768pt;}
.lse_c02419{letter-spacing:-0.232320pt;}
.ls6_c02419{letter-spacing:-0.215424pt;}
.ls3_c02419{letter-spacing:-0.105600pt;}
.ls14_c02419{letter-spacing:0.000000pt;}
.ls0_c02419{letter-spacing:0.005376pt;}
.lsd_c02419{letter-spacing:0.063360pt;}
.ls5_c02419{letter-spacing:0.114048pt;}
.ls7_c02419{letter-spacing:0.215424pt;}
.lsc_c02419{letter-spacing:0.451968pt;}
.ls13_c02419{letter-spacing:0.456960pt;}
.lsf_c02419{letter-spacing:0.477312pt;}
.lsb_c02419{letter-spacing:0.515328pt;}
.ls12_c02419{letter-spacing:0.528000pt;}
.ls8_c02419{letter-spacing:0.532224pt;}
.ls1_c02419{letter-spacing:0.544896pt;}
.ls4_c02419{letter-spacing:0.637824pt;}
.ls2_c02419{letter-spacing:0.642048pt;}
.wse_c02419{word-spacing:-13.445376pt;}
.wsc_c02419{word-spacing:-11.088000pt;}
.ws7_c02419{word-spacing:-11.075328pt;}
.ws2_c02419{word-spacing:-10.775424pt;}
.ws4_c02419{word-spacing:-10.344576pt;}
.ws6_c02419{word-spacing:-9.871488pt;}
.ws17_c02419{word-spacing:-1.919232pt;}
.ws12_c02419{word-spacing:-0.963072pt;}
.wsf_c02419{word-spacing:-0.865920pt;}
.ws13_c02419{word-spacing:-0.384384pt;}
.ws11_c02419{word-spacing:-0.105600pt;}
.ws14_c02419{word-spacing:-0.088704pt;}
.ws15_c02419{word-spacing:-0.080256pt;}
.ws16_c02419{word-spacing:-0.076032pt;}
.ws10_c02419{word-spacing:0.000000pt;}
.wsb_c02419{word-spacing:5.892480pt;}
.wsd_c02419{word-spacing:29.600256pt;}
.wsa_c02419{word-spacing:30.966144pt;}
.ws9_c02419{word-spacing:32.127744pt;}
.ws1_c02419{word-spacing:33.563904pt;}
.ws0_c02419{word-spacing:33.796224pt;}
.ws3_c02419{word-spacing:34.860672pt;}
.ws5_c02419{word-spacing:35.468928pt;}
.ws8_c02419{word-spacing:37.357056pt;}
._0_c02419{margin-left:-1.731840pt;}
._2_c02419{width:1.317888pt;}
._4_c02419{width:2.939904pt;}
._6_c02419{width:17.761920pt;}
._7_c02419{width:20.845440pt;}
._5_c02419{width:21.947904pt;}
._1_c02419{width:44.668800pt;}
._3_c02419{width:45.805056pt;}
.fs0_c02419{font-size:42.240000pt;}
.fs1_c02419{font-size:53.760000pt;}
.y0_c02419{bottom:0.000000pt;}
.y1b_c02419{bottom:117.225499pt;}
.y1a_c02419{bottom:130.665211pt;}
.y1d_c02419{bottom:165.866875pt;}
.y1c_c02419{bottom:174.507067pt;}
.y19_c02419{bottom:245.225371pt;}
.y18_c02419{bottom:317.225563pt;}
.y16_c02419{bottom:361.386427pt;}
.y12_c02419{bottom:377.386939pt;}
.y17_c02419{bottom:407.786011pt;}
.y15_c02419{bottom:437.226235pt;}
.y14_c02419{bottom:453.226747pt;}
.y11_c02419{bottom:482.666971pt;}
.y13_c02419{bottom:497.386555pt;}
.y10_c02419{bottom:513.387067pt;}
.y1e_c02419{bottom:546.027067pt;}
.yc_c02419{bottom:579.945467pt;}
.yb_c02419{bottom:593.385179pt;}
.ye_c02419{bottom:628.586875pt;}
.yd_c02419{bottom:637.227067pt;}
.ya_c02419{bottom:707.945339pt;}
.y9_c02419{bottom:779.945531pt;}
.y7_c02419{bottom:823.786427pt;}
.y3_c02419{bottom:839.786939pt;}
.y8_c02419{bottom:870.505979pt;}
.y6_c02419{bottom:899.946203pt;}
.y5_c02419{bottom:915.946715pt;}
.y2_c02419{bottom:945.386939pt;}
.y4_c02419{bottom:959.786555pt;}
.y1_c02419{bottom:975.787067pt;}
.yf_c02419{bottom:1008.747067pt;}
.h3_c02419{height:28.916250pt;}
.h1_c02419{height:37.063125pt;}
.h2_c02419{height:37.166250pt;}
.h4_c02419{height:48.581988pt;}
.h0_c02419{height:1122.666667pt;}
.w1_c02419{width:793.333333pt;}
.w0_c02419{width:793.626667pt;}
.x0_c02419{left:0.000000pt;}
.xe_c02419{left:104.000000pt;}
.x8_c02419{left:391.999872pt;}
.x4_c02419{left:396.160512pt;}
.xc_c02419{left:400.960000pt;}
.x7_c02419{left:404.799648pt;}
.x5_c02419{left:410.560128pt;}
.x1_c02419{left:411.840000pt;}
.xa_c02419{left:429.760320pt;}
.x9_c02419{left:437.439552pt;}
.x6_c02419{left:438.400512pt;}
.xd_c02419{left:450.560320pt;}
.x3_c02419{left:455.039904pt;}
.x2_c02419{left:468.159648pt;}
.xb_c02419{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02420 {
    display:none;
  }
  .loading-indicator_c02420.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02420 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02420 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02420" -> "#page-container .classname_c02420")
 */
.pf_c02420 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02420 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02420 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02420 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02420 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02420 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02420 {overflow:visible;}
  }
}
.c_c02420 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02420 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02420:after { /* webkit #35443 */
  content: '';
}
.t_c02420:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02420 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02420 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02420 { /* info for Javascript */
  display:none;
}
.l_c02420 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02420 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02420 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02420:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02420 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02420.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02420 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02420{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02420;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02420{font-family:ff1_c02420;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02420;src:url('chunks/assets/font_111bba52ccbc5687a18be4f1.woff2')format("woff");}.ff2_c02420{font-family:ff2_c02420;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02420;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02420{font-family:ff3_c02420;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02420{vertical-align:0.000000px;}
.v1_c02420{vertical-align:1.439424px;}
.lsa_c02420{letter-spacing:-0.774576px;}
.ls10_c02420{letter-spacing:-0.736560px;}
.ls15_c02420{letter-spacing:-0.722304px;}
.ls9_c02420{letter-spacing:-0.574992px;}
.ls17_c02420{letter-spacing:-0.375408px;}
.ls18_c02420{letter-spacing:-0.275616px;}
.ls11_c02420{letter-spacing:-0.270864px;}
.lse_c02420{letter-spacing:-0.261360px;}
.ls6_c02420{letter-spacing:-0.242352px;}
.ls4_c02420{letter-spacing:-0.118800px;}
.ls14_c02420{letter-spacing:0.000000px;}
.ls0_c02420{letter-spacing:0.006048px;}
.lsd_c02420{letter-spacing:0.071280px;}
.ls5_c02420{letter-spacing:0.128304px;}
.ls7_c02420{letter-spacing:0.242352px;}
.lsc_c02420{letter-spacing:0.508464px;}
.ls13_c02420{letter-spacing:0.514080px;}
.lsf_c02420{letter-spacing:0.536976px;}
.lsb_c02420{letter-spacing:0.579744px;}
.ls12_c02420{letter-spacing:0.594000px;}
.ls8_c02420{letter-spacing:0.598752px;}
.ls2_c02420{letter-spacing:0.613008px;}
.ls16_c02420{letter-spacing:0.651024px;}
.ls1_c02420{letter-spacing:0.717552px;}
.ls3_c02420{letter-spacing:0.722304px;}
.sc__c02420{text-shadow:none;}
.sc0_c02420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02420{-webkit-text-stroke:0px transparent;}
.sc0_c02420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02420{word-spacing:-15.126048px;}
.wsc_c02420{word-spacing:-12.474000px;}
.ws7_c02420{word-spacing:-12.459744px;}
.ws11_c02420{word-spacing:-12.416976px;}
.ws2_c02420{word-spacing:-12.122352px;}
.ws4_c02420{word-spacing:-11.637648px;}
.ws6_c02420{word-spacing:-11.105424px;}
.ws1a_c02420{word-spacing:-2.159136px;}
.ws15_c02420{word-spacing:-1.083456px;}
.ws1b_c02420{word-spacing:-1.078704px;}
.ws1c_c02420{word-spacing:-1.012176px;}
.ws12_c02420{word-spacing:-0.974160px;}
.ws16_c02420{word-spacing:-0.432432px;}
.ws14_c02420{word-spacing:-0.118800px;}
.ws17_c02420{word-spacing:-0.099792px;}
.ws18_c02420{word-spacing:-0.090288px;}
.ws19_c02420{word-spacing:-0.085536px;}
.ws13_c02420{word-spacing:0.000000px;}
.ws1d_c02420{word-spacing:0.014256px;}
.wsb_c02420{word-spacing:6.629040px;}
.wsd_c02420{word-spacing:33.300288px;}
.wsa_c02420{word-spacing:34.836912px;}
.ws9_c02420{word-spacing:36.143712px;}
.wsf_c02420{word-spacing:36.742464px;}
.ws1_c02420{word-spacing:37.759392px;}
.ws0_c02420{word-spacing:38.020752px;}
.ws3_c02420{word-spacing:39.218256px;}
.ws5_c02420{word-spacing:39.902544px;}
.ws8_c02420{word-spacing:42.026688px;}
.ws10_c02420{word-spacing:50.765616px;}
._0_c02420{margin-left:-1.948320px;}
._2_c02420{width:1.482624px;}
._4_c02420{width:3.307392px;}
._6_c02420{width:19.982160px;}
._7_c02420{width:23.451120px;}
._5_c02420{width:24.691392px;}
._1_c02420{width:50.252400px;}
._3_c02420{width:51.530688px;}
._8_c02420{width:63.819360px;}
._9_c02420{width:66.537504px;}
._a_c02420{width:69.127344px;}
.fc0_c02420{color:rgb(0,0,0);}
.fs0_c02420{font-size:47.520000px;}
.fs1_c02420{font-size:60.480000px;}
.y0_c02420{bottom:0.000000px;}
.y1b_c02420{bottom:146.998362px;}
.y1d_c02420{bottom:186.600234px;}
.y1c_c02420{bottom:196.320450px;}
.y1a_c02420{bottom:275.878542px;}
.y19_c02420{bottom:341.759082px;}
.y18_c02420{bottom:356.878758px;}
.y16_c02420{bottom:406.559730px;}
.y12_c02420{bottom:424.560306px;}
.y17_c02420{bottom:458.759262px;}
.y15_c02420{bottom:491.879514px;}
.y14_c02420{bottom:509.880090px;}
.y11_c02420{bottom:543.000342px;}
.y13_c02420{bottom:559.559874px;}
.y10_c02420{bottom:577.560450px;}
.y1e_c02420{bottom:614.280450px;}
.yc_c02420{bottom:652.438650px;}
.yb_c02420{bottom:667.558326px;}
.ye_c02420{bottom:707.160234px;}
.yd_c02420{bottom:716.880450px;}
.ya_c02420{bottom:796.438506px;}
.y9_c02420{bottom:877.438722px;}
.y7_c02420{bottom:926.759730px;}
.y3_c02420{bottom:944.760306px;}
.y8_c02420{bottom:979.319226px;}
.y6_c02420{bottom:1012.439478px;}
.y5_c02420{bottom:1030.440054px;}
.y2_c02420{bottom:1063.560306px;}
.y4_c02420{bottom:1079.759874px;}
.y1_c02420{bottom:1097.760450px;}
.yf_c02420{bottom:1134.840450px;}
.h3_c02420{height:32.530781px;}
.h1_c02420{height:41.696016px;}
.h2_c02420{height:41.812031px;}
.h4_c02420{height:54.654737px;}
.h0_c02420{height:1263.000000px;}
.w1_c02420{width:892.500000px;}
.w0_c02420{width:892.830000px;}
.x0_c02420{left:0.000000px;}
.xe_c02420{left:117.000000px;}
.x8_c02420{left:440.999856px;}
.x4_c02420{left:445.680576px;}
.xc_c02420{left:451.080000px;}
.x7_c02420{left:455.399604px;}
.x5_c02420{left:461.880144px;}
.x1_c02420{left:463.320000px;}
.xa_c02420{left:483.480360px;}
.x9_c02420{left:492.119496px;}
.x6_c02420{left:493.200576px;}
.xd_c02420{left:506.880360px;}
.x3_c02420{left:511.919892px;}
.x2_c02420{left:526.679604px;}
.xb_c02420{left:569.880036px;}
@media print{
.v0_c02420{vertical-align:0.000000pt;}
.v1_c02420{vertical-align:1.279488pt;}
.lsa_c02420{letter-spacing:-0.688512pt;}
.ls10_c02420{letter-spacing:-0.654720pt;}
.ls15_c02420{letter-spacing:-0.642048pt;}
.ls9_c02420{letter-spacing:-0.511104pt;}
.ls17_c02420{letter-spacing:-0.333696pt;}
.ls18_c02420{letter-spacing:-0.244992pt;}
.ls11_c02420{letter-spacing:-0.240768pt;}
.lse_c02420{letter-spacing:-0.232320pt;}
.ls6_c02420{letter-spacing:-0.215424pt;}
.ls4_c02420{letter-spacing:-0.105600pt;}
.ls14_c02420{letter-spacing:0.000000pt;}
.ls0_c02420{letter-spacing:0.005376pt;}
.lsd_c02420{letter-spacing:0.063360pt;}
.ls5_c02420{letter-spacing:0.114048pt;}
.ls7_c02420{letter-spacing:0.215424pt;}
.lsc_c02420{letter-spacing:0.451968pt;}
.ls13_c02420{letter-spacing:0.456960pt;}
.lsf_c02420{letter-spacing:0.477312pt;}
.lsb_c02420{letter-spacing:0.515328pt;}
.ls12_c02420{letter-spacing:0.528000pt;}
.ls8_c02420{letter-spacing:0.532224pt;}
.ls2_c02420{letter-spacing:0.544896pt;}
.ls16_c02420{letter-spacing:0.578688pt;}
.ls1_c02420{letter-spacing:0.637824pt;}
.ls3_c02420{letter-spacing:0.642048pt;}
.wse_c02420{word-spacing:-13.445376pt;}
.wsc_c02420{word-spacing:-11.088000pt;}
.ws7_c02420{word-spacing:-11.075328pt;}
.ws11_c02420{word-spacing:-11.037312pt;}
.ws2_c02420{word-spacing:-10.775424pt;}
.ws4_c02420{word-spacing:-10.344576pt;}
.ws6_c02420{word-spacing:-9.871488pt;}
.ws1a_c02420{word-spacing:-1.919232pt;}
.ws15_c02420{word-spacing:-0.963072pt;}
.ws1b_c02420{word-spacing:-0.958848pt;}
.ws1c_c02420{word-spacing:-0.899712pt;}
.ws12_c02420{word-spacing:-0.865920pt;}
.ws16_c02420{word-spacing:-0.384384pt;}
.ws14_c02420{word-spacing:-0.105600pt;}
.ws17_c02420{word-spacing:-0.088704pt;}
.ws18_c02420{word-spacing:-0.080256pt;}
.ws19_c02420{word-spacing:-0.076032pt;}
.ws13_c02420{word-spacing:0.000000pt;}
.ws1d_c02420{word-spacing:0.012672pt;}
.wsb_c02420{word-spacing:5.892480pt;}
.wsd_c02420{word-spacing:29.600256pt;}
.wsa_c02420{word-spacing:30.966144pt;}
.ws9_c02420{word-spacing:32.127744pt;}
.wsf_c02420{word-spacing:32.659968pt;}
.ws1_c02420{word-spacing:33.563904pt;}
.ws0_c02420{word-spacing:33.796224pt;}
.ws3_c02420{word-spacing:34.860672pt;}
.ws5_c02420{word-spacing:35.468928pt;}
.ws8_c02420{word-spacing:37.357056pt;}
.ws10_c02420{word-spacing:45.124992pt;}
._0_c02420{margin-left:-1.731840pt;}
._2_c02420{width:1.317888pt;}
._4_c02420{width:2.939904pt;}
._6_c02420{width:17.761920pt;}
._7_c02420{width:20.845440pt;}
._5_c02420{width:21.947904pt;}
._1_c02420{width:44.668800pt;}
._3_c02420{width:45.805056pt;}
._8_c02420{width:56.728320pt;}
._9_c02420{width:59.144448pt;}
._a_c02420{width:61.446528pt;}
.fs0_c02420{font-size:42.240000pt;}
.fs1_c02420{font-size:53.760000pt;}
.y0_c02420{bottom:0.000000pt;}
.y1b_c02420{bottom:130.665211pt;}
.y1d_c02420{bottom:165.866875pt;}
.y1c_c02420{bottom:174.507067pt;}
.y1a_c02420{bottom:245.225371pt;}
.y19_c02420{bottom:303.785851pt;}
.y18_c02420{bottom:317.225563pt;}
.y16_c02420{bottom:361.386427pt;}
.y12_c02420{bottom:377.386939pt;}
.y17_c02420{bottom:407.786011pt;}
.y15_c02420{bottom:437.226235pt;}
.y14_c02420{bottom:453.226747pt;}
.y11_c02420{bottom:482.666971pt;}
.y13_c02420{bottom:497.386555pt;}
.y10_c02420{bottom:513.387067pt;}
.y1e_c02420{bottom:546.027067pt;}
.yc_c02420{bottom:579.945467pt;}
.yb_c02420{bottom:593.385179pt;}
.ye_c02420{bottom:628.586875pt;}
.yd_c02420{bottom:637.227067pt;}
.ya_c02420{bottom:707.945339pt;}
.y9_c02420{bottom:779.945531pt;}
.y7_c02420{bottom:823.786427pt;}
.y3_c02420{bottom:839.786939pt;}
.y8_c02420{bottom:870.505979pt;}
.y6_c02420{bottom:899.946203pt;}
.y5_c02420{bottom:915.946715pt;}
.y2_c02420{bottom:945.386939pt;}
.y4_c02420{bottom:959.786555pt;}
.y1_c02420{bottom:975.787067pt;}
.yf_c02420{bottom:1008.747067pt;}
.h3_c02420{height:28.916250pt;}
.h1_c02420{height:37.063125pt;}
.h2_c02420{height:37.166250pt;}
.h4_c02420{height:48.581988pt;}
.h0_c02420{height:1122.666667pt;}
.w1_c02420{width:793.333333pt;}
.w0_c02420{width:793.626667pt;}
.x0_c02420{left:0.000000pt;}
.xe_c02420{left:104.000000pt;}
.x8_c02420{left:391.999872pt;}
.x4_c02420{left:396.160512pt;}
.xc_c02420{left:400.960000pt;}
.x7_c02420{left:404.799648pt;}
.x5_c02420{left:410.560128pt;}
.x1_c02420{left:411.840000pt;}
.xa_c02420{left:429.760320pt;}
.x9_c02420{left:437.439552pt;}
.x6_c02420{left:438.400512pt;}
.xd_c02420{left:450.560320pt;}
.x3_c02420{left:455.039904pt;}
.x2_c02420{left:468.159648pt;}
.xb_c02420{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02421 {
    display:none;
  }
  .loading-indicator_c02421.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02421 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02421 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02421" -> "#page-container .classname_c02421")
 */
.pf_c02421 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02421 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02421 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02421 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02421 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02421 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02421 {overflow:visible;}
  }
}
.c_c02421 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02421 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02421:after { /* webkit #35443 */
  content: '';
}
.t_c02421:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02421 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02421 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02421 { /* info for Javascript */
  display:none;
}
.l_c02421 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02421 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02421 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02421:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02421 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02421.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02421 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02421{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02421;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02421{font-family:ff1_c02421;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02421;src:url('chunks/assets/font_99b717e6cc3e33da71473271.woff2')format("woff");}.ff2_c02421{font-family:ff2_c02421;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02421;src:url('chunks/assets/font_7b6efee5370e460da57ac30a.woff2')format("woff");}.ff3_c02421{font-family:ff3_c02421;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02421{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02421{vertical-align:0.000000px;}
.v1_c02421{vertical-align:1.439424px;}
.lsb_c02421{letter-spacing:-0.774576px;}
.ls10_c02421{letter-spacing:-0.736560px;}
.ls15_c02421{letter-spacing:-0.722304px;}
.lsa_c02421{letter-spacing:-0.574992px;}
.ls17_c02421{letter-spacing:-0.380160px;}
.ls18_c02421{letter-spacing:-0.275616px;}
.ls11_c02421{letter-spacing:-0.270864px;}
.lse_c02421{letter-spacing:-0.261360px;}
.ls7_c02421{letter-spacing:-0.242352px;}
.ls5_c02421{letter-spacing:-0.118800px;}
.ls16_c02421{letter-spacing:-0.080784px;}
.ls14_c02421{letter-spacing:0.000000px;}
.ls0_c02421{letter-spacing:0.006048px;}
.ls6_c02421{letter-spacing:0.128304px;}
.ls8_c02421{letter-spacing:0.242352px;}
.lsd_c02421{letter-spacing:0.508464px;}
.ls13_c02421{letter-spacing:0.514080px;}
.lsf_c02421{letter-spacing:0.536976px;}
.lsc_c02421{letter-spacing:0.579744px;}
.ls12_c02421{letter-spacing:0.594000px;}
.ls9_c02421{letter-spacing:0.598752px;}
.ls4_c02421{letter-spacing:0.613008px;}
.ls1_c02421{letter-spacing:0.693792px;}
.ls2_c02421{letter-spacing:0.717552px;}
.ls3_c02421{letter-spacing:0.722304px;}
.sc__c02421{text-shadow:none;}
.sc0_c02421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02421{-webkit-text-stroke:0px transparent;}
.sc0_c02421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02421{word-spacing:-15.126048px;}
.wse_c02421{word-spacing:-12.573792px;}
.wsb_c02421{word-spacing:-12.474000px;}
.ws7_c02421{word-spacing:-12.459744px;}
.ws13_c02421{word-spacing:-12.416976px;}
.ws2_c02421{word-spacing:-12.122352px;}
.ws12_c02421{word-spacing:-11.799216px;}
.ws4_c02421{word-spacing:-11.637648px;}
.ws6_c02421{word-spacing:-11.105424px;}
.ws1b_c02421{word-spacing:-2.159136px;}
.ws17_c02421{word-spacing:-1.083456px;}
.ws1c_c02421{word-spacing:-1.078704px;}
.ws14_c02421{word-spacing:-0.974160px;}
.ws16_c02421{word-spacing:-0.118800px;}
.ws18_c02421{word-spacing:-0.099792px;}
.ws19_c02421{word-spacing:-0.090288px;}
.ws1a_c02421{word-spacing:-0.085536px;}
.ws15_c02421{word-spacing:0.000000px;}
.ws1d_c02421{word-spacing:0.019008px;}
.wsa_c02421{word-spacing:6.629040px;}
.ws11_c02421{word-spacing:10.435392px;}
.ws10_c02421{word-spacing:10.444896px;}
.wsc_c02421{word-spacing:33.300288px;}
.ws9_c02421{word-spacing:34.836912px;}
.wsf_c02421{word-spacing:36.143712px;}
.ws1_c02421{word-spacing:37.759392px;}
.ws0_c02421{word-spacing:38.020752px;}
.ws3_c02421{word-spacing:39.218256px;}
.ws5_c02421{word-spacing:39.902544px;}
.ws8_c02421{word-spacing:42.026688px;}
._0_c02421{margin-left:-1.948320px;}
._2_c02421{width:1.482624px;}
._4_c02421{width:3.307392px;}
._6_c02421{width:19.982160px;}
._7_c02421{width:23.451120px;}
._5_c02421{width:24.691392px;}
._8_c02421{width:25.998192px;}
._1_c02421{width:50.252400px;}
._3_c02421{width:51.530688px;}
.fc0_c02421{color:rgb(0,0,0);}
.fs0_c02421{font-size:47.520000px;}
.fs1_c02421{font-size:60.480000px;}
.y0_c02421{bottom:0.000000px;}
.y1b_c02421{bottom:146.998362px;}
.y1d_c02421{bottom:186.600234px;}
.y1c_c02421{bottom:196.320450px;}
.y1a_c02421{bottom:275.878542px;}
.y19_c02421{bottom:341.759082px;}
.y18_c02421{bottom:356.878758px;}
.y16_c02421{bottom:406.559730px;}
.y12_c02421{bottom:424.560306px;}
.y17_c02421{bottom:458.759262px;}
.y15_c02421{bottom:491.879514px;}
.y14_c02421{bottom:509.880090px;}
.y11_c02421{bottom:543.000342px;}
.y13_c02421{bottom:559.559874px;}
.y10_c02421{bottom:577.560450px;}
.y1e_c02421{bottom:614.280450px;}
.yc_c02421{bottom:652.438650px;}
.yb_c02421{bottom:667.558326px;}
.ye_c02421{bottom:707.160234px;}
.yd_c02421{bottom:716.880450px;}
.ya_c02421{bottom:796.438506px;}
.y9_c02421{bottom:877.438722px;}
.y7_c02421{bottom:926.759730px;}
.y3_c02421{bottom:944.760306px;}
.y8_c02421{bottom:979.319226px;}
.y6_c02421{bottom:1012.439478px;}
.y5_c02421{bottom:1030.440054px;}
.y2_c02421{bottom:1063.560306px;}
.y4_c02421{bottom:1079.759874px;}
.y1_c02421{bottom:1097.760450px;}
.yf_c02421{bottom:1134.840450px;}
.h3_c02421{height:32.530781px;}
.h1_c02421{height:41.696016px;}
.h2_c02421{height:41.812031px;}
.h4_c02421{height:54.654737px;}
.h0_c02421{height:1263.000000px;}
.w1_c02421{width:892.500000px;}
.w0_c02421{width:892.830000px;}
.x0_c02421{left:0.000000px;}
.xe_c02421{left:117.000000px;}
.x8_c02421{left:440.999856px;}
.x4_c02421{left:445.680576px;}
.xc_c02421{left:451.080000px;}
.x7_c02421{left:455.399604px;}
.x5_c02421{left:461.880144px;}
.x1_c02421{left:463.320000px;}
.xa_c02421{left:483.480360px;}
.x9_c02421{left:492.119496px;}
.x6_c02421{left:493.200576px;}
.xd_c02421{left:506.880360px;}
.x3_c02421{left:511.919892px;}
.x2_c02421{left:526.679604px;}
.xb_c02421{left:569.880036px;}
@media print{
.v0_c02421{vertical-align:0.000000pt;}
.v1_c02421{vertical-align:1.279488pt;}
.lsb_c02421{letter-spacing:-0.688512pt;}
.ls10_c02421{letter-spacing:-0.654720pt;}
.ls15_c02421{letter-spacing:-0.642048pt;}
.lsa_c02421{letter-spacing:-0.511104pt;}
.ls17_c02421{letter-spacing:-0.337920pt;}
.ls18_c02421{letter-spacing:-0.244992pt;}
.ls11_c02421{letter-spacing:-0.240768pt;}
.lse_c02421{letter-spacing:-0.232320pt;}
.ls7_c02421{letter-spacing:-0.215424pt;}
.ls5_c02421{letter-spacing:-0.105600pt;}
.ls16_c02421{letter-spacing:-0.071808pt;}
.ls14_c02421{letter-spacing:0.000000pt;}
.ls0_c02421{letter-spacing:0.005376pt;}
.ls6_c02421{letter-spacing:0.114048pt;}
.ls8_c02421{letter-spacing:0.215424pt;}
.lsd_c02421{letter-spacing:0.451968pt;}
.ls13_c02421{letter-spacing:0.456960pt;}
.lsf_c02421{letter-spacing:0.477312pt;}
.lsc_c02421{letter-spacing:0.515328pt;}
.ls12_c02421{letter-spacing:0.528000pt;}
.ls9_c02421{letter-spacing:0.532224pt;}
.ls4_c02421{letter-spacing:0.544896pt;}
.ls1_c02421{letter-spacing:0.616704pt;}
.ls2_c02421{letter-spacing:0.637824pt;}
.ls3_c02421{letter-spacing:0.642048pt;}
.wsd_c02421{word-spacing:-13.445376pt;}
.wse_c02421{word-spacing:-11.176704pt;}
.wsb_c02421{word-spacing:-11.088000pt;}
.ws7_c02421{word-spacing:-11.075328pt;}
.ws13_c02421{word-spacing:-11.037312pt;}
.ws2_c02421{word-spacing:-10.775424pt;}
.ws12_c02421{word-spacing:-10.488192pt;}
.ws4_c02421{word-spacing:-10.344576pt;}
.ws6_c02421{word-spacing:-9.871488pt;}
.ws1b_c02421{word-spacing:-1.919232pt;}
.ws17_c02421{word-spacing:-0.963072pt;}
.ws1c_c02421{word-spacing:-0.958848pt;}
.ws14_c02421{word-spacing:-0.865920pt;}
.ws16_c02421{word-spacing:-0.105600pt;}
.ws18_c02421{word-spacing:-0.088704pt;}
.ws19_c02421{word-spacing:-0.080256pt;}
.ws1a_c02421{word-spacing:-0.076032pt;}
.ws15_c02421{word-spacing:0.000000pt;}
.ws1d_c02421{word-spacing:0.016896pt;}
.wsa_c02421{word-spacing:5.892480pt;}
.ws11_c02421{word-spacing:9.275904pt;}
.ws10_c02421{word-spacing:9.284352pt;}
.wsc_c02421{word-spacing:29.600256pt;}
.ws9_c02421{word-spacing:30.966144pt;}
.wsf_c02421{word-spacing:32.127744pt;}
.ws1_c02421{word-spacing:33.563904pt;}
.ws0_c02421{word-spacing:33.796224pt;}
.ws3_c02421{word-spacing:34.860672pt;}
.ws5_c02421{word-spacing:35.468928pt;}
.ws8_c02421{word-spacing:37.357056pt;}
._0_c02421{margin-left:-1.731840pt;}
._2_c02421{width:1.317888pt;}
._4_c02421{width:2.939904pt;}
._6_c02421{width:17.761920pt;}
._7_c02421{width:20.845440pt;}
._5_c02421{width:21.947904pt;}
._8_c02421{width:23.109504pt;}
._1_c02421{width:44.668800pt;}
._3_c02421{width:45.805056pt;}
.fs0_c02421{font-size:42.240000pt;}
.fs1_c02421{font-size:53.760000pt;}
.y0_c02421{bottom:0.000000pt;}
.y1b_c02421{bottom:130.665211pt;}
.y1d_c02421{bottom:165.866875pt;}
.y1c_c02421{bottom:174.507067pt;}
.y1a_c02421{bottom:245.225371pt;}
.y19_c02421{bottom:303.785851pt;}
.y18_c02421{bottom:317.225563pt;}
.y16_c02421{bottom:361.386427pt;}
.y12_c02421{bottom:377.386939pt;}
.y17_c02421{bottom:407.786011pt;}
.y15_c02421{bottom:437.226235pt;}
.y14_c02421{bottom:453.226747pt;}
.y11_c02421{bottom:482.666971pt;}
.y13_c02421{bottom:497.386555pt;}
.y10_c02421{bottom:513.387067pt;}
.y1e_c02421{bottom:546.027067pt;}
.yc_c02421{bottom:579.945467pt;}
.yb_c02421{bottom:593.385179pt;}
.ye_c02421{bottom:628.586875pt;}
.yd_c02421{bottom:637.227067pt;}
.ya_c02421{bottom:707.945339pt;}
.y9_c02421{bottom:779.945531pt;}
.y7_c02421{bottom:823.786427pt;}
.y3_c02421{bottom:839.786939pt;}
.y8_c02421{bottom:870.505979pt;}
.y6_c02421{bottom:899.946203pt;}
.y5_c02421{bottom:915.946715pt;}
.y2_c02421{bottom:945.386939pt;}
.y4_c02421{bottom:959.786555pt;}
.y1_c02421{bottom:975.787067pt;}
.yf_c02421{bottom:1008.747067pt;}
.h3_c02421{height:28.916250pt;}
.h1_c02421{height:37.063125pt;}
.h2_c02421{height:37.166250pt;}
.h4_c02421{height:48.581988pt;}
.h0_c02421{height:1122.666667pt;}
.w1_c02421{width:793.333333pt;}
.w0_c02421{width:793.626667pt;}
.x0_c02421{left:0.000000pt;}
.xe_c02421{left:104.000000pt;}
.x8_c02421{left:391.999872pt;}
.x4_c02421{left:396.160512pt;}
.xc_c02421{left:400.960000pt;}
.x7_c02421{left:404.799648pt;}
.x5_c02421{left:410.560128pt;}
.x1_c02421{left:411.840000pt;}
.xa_c02421{left:429.760320pt;}
.x9_c02421{left:437.439552pt;}
.x6_c02421{left:438.400512pt;}
.xd_c02421{left:450.560320pt;}
.x3_c02421{left:455.039904pt;}
.x2_c02421{left:468.159648pt;}
.xb_c02421{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02422 {
    display:none;
  }
  .loading-indicator_c02422.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02422 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02422 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02422" -> "#page-container .classname_c02422")
 */
.pf_c02422 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02422 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02422 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02422 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02422 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02422 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02422 {overflow:visible;}
  }
}
.c_c02422 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02422 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02422:after { /* webkit #35443 */
  content: '';
}
.t_c02422:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02422 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02422 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02422 { /* info for Javascript */
  display:none;
}
.l_c02422 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02422 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02422 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02422:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02422 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02422.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02422 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02422{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02422;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02422{font-family:ff1_c02422;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02422;src:url('chunks/assets/font_72f6ed222f864f902c5848b0.woff2')format("woff");}.ff2_c02422{font-family:ff2_c02422;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02422;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02422{font-family:ff3_c02422;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02422{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02422{vertical-align:0.000000px;}
.v1_c02422{vertical-align:1.439424px;}
.lsc_c02422{letter-spacing:-0.722304px;}
.ls9_c02422{letter-spacing:-0.574992px;}
.ls14_c02422{letter-spacing:-0.375408px;}
.ls10_c02422{letter-spacing:-0.275616px;}
.lse_c02422{letter-spacing:-0.261360px;}
.ls6_c02422{letter-spacing:-0.242352px;}
.ls4_c02422{letter-spacing:-0.118800px;}
.ls13_c02422{letter-spacing:0.000000px;}
.ls2_c02422{letter-spacing:0.006048px;}
.ls5_c02422{letter-spacing:0.128304px;}
.ls7_c02422{letter-spacing:0.242352px;}
.lsb_c02422{letter-spacing:0.508464px;}
.ls12_c02422{letter-spacing:0.514080px;}
.lsf_c02422{letter-spacing:0.536976px;}
.lsa_c02422{letter-spacing:0.579744px;}
.ls11_c02422{letter-spacing:0.594000px;}
.ls8_c02422{letter-spacing:0.598752px;}
.ls3_c02422{letter-spacing:0.613008px;}
.lsd_c02422{letter-spacing:0.651024px;}
.ls0_c02422{letter-spacing:0.717552px;}
.ls1_c02422{letter-spacing:0.722304px;}
.sc__c02422{text-shadow:none;}
.sc0_c02422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02422{-webkit-text-stroke:0px transparent;}
.sc0_c02422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02422{word-spacing:-15.126048px;}
.wsc_c02422{word-spacing:-12.474000px;}
.ws6_c02422{word-spacing:-12.459744px;}
.wsb_c02422{word-spacing:-12.416976px;}
.ws2_c02422{word-spacing:-12.122352px;}
.ws4_c02422{word-spacing:-11.637648px;}
.ws18_c02422{word-spacing:-2.159136px;}
.ws14_c02422{word-spacing:-1.083456px;}
.ws13_c02422{word-spacing:-1.078704px;}
.ws15_c02422{word-spacing:-1.012176px;}
.ws10_c02422{word-spacing:-0.974160px;}
.wsa_c02422{word-spacing:-0.722304px;}
.ws12_c02422{word-spacing:-0.118800px;}
.ws16_c02422{word-spacing:-0.099792px;}
.ws17_c02422{word-spacing:-0.085536px;}
.ws11_c02422{word-spacing:0.000000px;}
.ws19_c02422{word-spacing:0.014256px;}
.wsd_c02422{word-spacing:33.300288px;}
.ws8_c02422{word-spacing:36.143712px;}
.wsf_c02422{word-spacing:36.742464px;}
.ws1_c02422{word-spacing:37.759392px;}
.ws0_c02422{word-spacing:38.020752px;}
.ws3_c02422{word-spacing:39.218256px;}
.ws5_c02422{word-spacing:39.902544px;}
.ws7_c02422{word-spacing:42.026688px;}
.ws9_c02422{word-spacing:50.765616px;}
._0_c02422{margin-left:-1.948320px;}
._2_c02422{width:1.482624px;}
._4_c02422{width:3.307392px;}
._9_c02422{width:13.975632px;}
._8_c02422{width:15.501024px;}
._1_c02422{width:50.252400px;}
._3_c02422{width:51.530688px;}
._5_c02422{width:63.819360px;}
._6_c02422{width:66.537504px;}
._7_c02422{width:69.127344px;}
.fc0_c02422{color:rgb(0,0,0);}
.fs0_c02422{font-size:47.520000px;}
.fs1_c02422{font-size:60.480000px;}
.y0_c02422{bottom:0.000000px;}
.y1c_c02422{bottom:146.998362px;}
.y1e_c02422{bottom:186.600234px;}
.y1d_c02422{bottom:196.320450px;}
.y1b_c02422{bottom:275.878542px;}
.y1a_c02422{bottom:341.759082px;}
.y19_c02422{bottom:356.878758px;}
.y17_c02422{bottom:406.559730px;}
.y13_c02422{bottom:424.560306px;}
.y18_c02422{bottom:458.759262px;}
.y16_c02422{bottom:491.879514px;}
.y15_c02422{bottom:509.880090px;}
.y12_c02422{bottom:543.000342px;}
.y14_c02422{bottom:559.559874px;}
.y11_c02422{bottom:577.560450px;}
.y1f_c02422{bottom:614.280450px;}
.yd_c02422{bottom:667.559514px;}
.yf_c02422{bottom:707.160234px;}
.ye_c02422{bottom:716.880450px;}
.yc_c02422{bottom:781.320018px;}
.yb_c02422{bottom:796.439694px;}
.ya_c02422{bottom:862.319046px;}
.y9_c02422{bottom:877.438722px;}
.y7_c02422{bottom:926.759730px;}
.y3_c02422{bottom:944.760306px;}
.y8_c02422{bottom:979.319226px;}
.y6_c02422{bottom:1012.439478px;}
.y5_c02422{bottom:1030.440054px;}
.y2_c02422{bottom:1063.560306px;}
.y4_c02422{bottom:1079.759874px;}
.y1_c02422{bottom:1097.760450px;}
.y10_c02422{bottom:1134.840450px;}
.h3_c02422{height:32.530781px;}
.h1_c02422{height:41.696016px;}
.h2_c02422{height:41.812031px;}
.h4_c02422{height:54.654737px;}
.h0_c02422{height:1263.000000px;}
.w1_c02422{width:892.500000px;}
.w0_c02422{width:892.830000px;}
.x0_c02422{left:0.000000px;}
.xe_c02422{left:117.000000px;}
.x8_c02422{left:440.999856px;}
.x4_c02422{left:445.680576px;}
.xc_c02422{left:451.080000px;}
.x7_c02422{left:455.399604px;}
.x5_c02422{left:461.880144px;}
.x1_c02422{left:463.320000px;}
.xb_c02422{left:483.480360px;}
.x9_c02422{left:492.119496px;}
.x6_c02422{left:493.200576px;}
.xd_c02422{left:506.880360px;}
.x3_c02422{left:511.919892px;}
.x2_c02422{left:526.679604px;}
.xa_c02422{left:569.880036px;}
@media print{
.v0_c02422{vertical-align:0.000000pt;}
.v1_c02422{vertical-align:1.279488pt;}
.lsc_c02422{letter-spacing:-0.642048pt;}
.ls9_c02422{letter-spacing:-0.511104pt;}
.ls14_c02422{letter-spacing:-0.333696pt;}
.ls10_c02422{letter-spacing:-0.244992pt;}
.lse_c02422{letter-spacing:-0.232320pt;}
.ls6_c02422{letter-spacing:-0.215424pt;}
.ls4_c02422{letter-spacing:-0.105600pt;}
.ls13_c02422{letter-spacing:0.000000pt;}
.ls2_c02422{letter-spacing:0.005376pt;}
.ls5_c02422{letter-spacing:0.114048pt;}
.ls7_c02422{letter-spacing:0.215424pt;}
.lsb_c02422{letter-spacing:0.451968pt;}
.ls12_c02422{letter-spacing:0.456960pt;}
.lsf_c02422{letter-spacing:0.477312pt;}
.lsa_c02422{letter-spacing:0.515328pt;}
.ls11_c02422{letter-spacing:0.528000pt;}
.ls8_c02422{letter-spacing:0.532224pt;}
.ls3_c02422{letter-spacing:0.544896pt;}
.lsd_c02422{letter-spacing:0.578688pt;}
.ls0_c02422{letter-spacing:0.637824pt;}
.ls1_c02422{letter-spacing:0.642048pt;}
.wse_c02422{word-spacing:-13.445376pt;}
.wsc_c02422{word-spacing:-11.088000pt;}
.ws6_c02422{word-spacing:-11.075328pt;}
.wsb_c02422{word-spacing:-11.037312pt;}
.ws2_c02422{word-spacing:-10.775424pt;}
.ws4_c02422{word-spacing:-10.344576pt;}
.ws18_c02422{word-spacing:-1.919232pt;}
.ws14_c02422{word-spacing:-0.963072pt;}
.ws13_c02422{word-spacing:-0.958848pt;}
.ws15_c02422{word-spacing:-0.899712pt;}
.ws10_c02422{word-spacing:-0.865920pt;}
.wsa_c02422{word-spacing:-0.642048pt;}
.ws12_c02422{word-spacing:-0.105600pt;}
.ws16_c02422{word-spacing:-0.088704pt;}
.ws17_c02422{word-spacing:-0.076032pt;}
.ws11_c02422{word-spacing:0.000000pt;}
.ws19_c02422{word-spacing:0.012672pt;}
.wsd_c02422{word-spacing:29.600256pt;}
.ws8_c02422{word-spacing:32.127744pt;}
.wsf_c02422{word-spacing:32.659968pt;}
.ws1_c02422{word-spacing:33.563904pt;}
.ws0_c02422{word-spacing:33.796224pt;}
.ws3_c02422{word-spacing:34.860672pt;}
.ws5_c02422{word-spacing:35.468928pt;}
.ws7_c02422{word-spacing:37.357056pt;}
.ws9_c02422{word-spacing:45.124992pt;}
._0_c02422{margin-left:-1.731840pt;}
._2_c02422{width:1.317888pt;}
._4_c02422{width:2.939904pt;}
._9_c02422{width:12.422784pt;}
._8_c02422{width:13.778688pt;}
._1_c02422{width:44.668800pt;}
._3_c02422{width:45.805056pt;}
._5_c02422{width:56.728320pt;}
._6_c02422{width:59.144448pt;}
._7_c02422{width:61.446528pt;}
.fs0_c02422{font-size:42.240000pt;}
.fs1_c02422{font-size:53.760000pt;}
.y0_c02422{bottom:0.000000pt;}
.y1c_c02422{bottom:130.665211pt;}
.y1e_c02422{bottom:165.866875pt;}
.y1d_c02422{bottom:174.507067pt;}
.y1b_c02422{bottom:245.225371pt;}
.y1a_c02422{bottom:303.785851pt;}
.y19_c02422{bottom:317.225563pt;}
.y17_c02422{bottom:361.386427pt;}
.y13_c02422{bottom:377.386939pt;}
.y18_c02422{bottom:407.786011pt;}
.y16_c02422{bottom:437.226235pt;}
.y15_c02422{bottom:453.226747pt;}
.y12_c02422{bottom:482.666971pt;}
.y14_c02422{bottom:497.386555pt;}
.y11_c02422{bottom:513.387067pt;}
.y1f_c02422{bottom:546.027067pt;}
.yd_c02422{bottom:593.386235pt;}
.yf_c02422{bottom:628.586875pt;}
.ye_c02422{bottom:637.227067pt;}
.yc_c02422{bottom:694.506683pt;}
.yb_c02422{bottom:707.946395pt;}
.ya_c02422{bottom:766.505819pt;}
.y9_c02422{bottom:779.945531pt;}
.y7_c02422{bottom:823.786427pt;}
.y3_c02422{bottom:839.786939pt;}
.y8_c02422{bottom:870.505979pt;}
.y6_c02422{bottom:899.946203pt;}
.y5_c02422{bottom:915.946715pt;}
.y2_c02422{bottom:945.386939pt;}
.y4_c02422{bottom:959.786555pt;}
.y1_c02422{bottom:975.787067pt;}
.y10_c02422{bottom:1008.747067pt;}
.h3_c02422{height:28.916250pt;}
.h1_c02422{height:37.063125pt;}
.h2_c02422{height:37.166250pt;}
.h4_c02422{height:48.581988pt;}
.h0_c02422{height:1122.666667pt;}
.w1_c02422{width:793.333333pt;}
.w0_c02422{width:793.626667pt;}
.x0_c02422{left:0.000000pt;}
.xe_c02422{left:104.000000pt;}
.x8_c02422{left:391.999872pt;}
.x4_c02422{left:396.160512pt;}
.xc_c02422{left:400.960000pt;}
.x7_c02422{left:404.799648pt;}
.x5_c02422{left:410.560128pt;}
.x1_c02422{left:411.840000pt;}
.xb_c02422{left:429.760320pt;}
.x9_c02422{left:437.439552pt;}
.x6_c02422{left:438.400512pt;}
.xd_c02422{left:450.560320pt;}
.x3_c02422{left:455.039904pt;}
.x2_c02422{left:468.159648pt;}
.xa_c02422{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02423 {
    display:none;
  }
  .loading-indicator_c02423.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02423 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02423 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02423" -> "#page-container .classname_c02423")
 */
.pf_c02423 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02423 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02423 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02423 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02423 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02423 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02423 {overflow:visible;}
  }
}
.c_c02423 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02423 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02423:after { /* webkit #35443 */
  content: '';
}
.t_c02423:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02423 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02423 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02423 { /* info for Javascript */
  display:none;
}
.l_c02423 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02423 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02423 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02423:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02423 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02423.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02423 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02423{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02423;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02423{font-family:ff1_c02423;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02423;src:url('chunks/assets/font_72f6ed222f864f902c5848b0.woff2')format("woff");}.ff2_c02423{font-family:ff2_c02423;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02423;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02423{font-family:ff3_c02423;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02423{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02423{vertical-align:0.000000px;}
.v1_c02423{vertical-align:1.439424px;}
.lsc_c02423{letter-spacing:-0.722304px;}
.ls9_c02423{letter-spacing:-0.574992px;}
.ls14_c02423{letter-spacing:-0.375408px;}
.ls10_c02423{letter-spacing:-0.275616px;}
.lse_c02423{letter-spacing:-0.261360px;}
.ls6_c02423{letter-spacing:-0.242352px;}
.ls4_c02423{letter-spacing:-0.118800px;}
.ls13_c02423{letter-spacing:0.000000px;}
.ls2_c02423{letter-spacing:0.006048px;}
.ls5_c02423{letter-spacing:0.128304px;}
.ls7_c02423{letter-spacing:0.242352px;}
.lsb_c02423{letter-spacing:0.508464px;}
.ls12_c02423{letter-spacing:0.514080px;}
.lsf_c02423{letter-spacing:0.536976px;}
.lsa_c02423{letter-spacing:0.579744px;}
.ls11_c02423{letter-spacing:0.594000px;}
.ls8_c02423{letter-spacing:0.598752px;}
.ls3_c02423{letter-spacing:0.613008px;}
.lsd_c02423{letter-spacing:0.651024px;}
.ls0_c02423{letter-spacing:0.717552px;}
.ls1_c02423{letter-spacing:0.722304px;}
.sc__c02423{text-shadow:none;}
.sc0_c02423{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02423{-webkit-text-stroke:0px transparent;}
.sc0_c02423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02423{word-spacing:-15.126048px;}
.wsc_c02423{word-spacing:-12.474000px;}
.wsb_c02423{word-spacing:-12.416976px;}
.ws2_c02423{word-spacing:-12.122352px;}
.ws4_c02423{word-spacing:-11.637648px;}
.ws17_c02423{word-spacing:-2.159136px;}
.ws13_c02423{word-spacing:-1.083456px;}
.ws12_c02423{word-spacing:-1.078704px;}
.ws14_c02423{word-spacing:-1.012176px;}
.wsf_c02423{word-spacing:-0.974160px;}
.wsa_c02423{word-spacing:-0.722304px;}
.ws11_c02423{word-spacing:-0.118800px;}
.ws15_c02423{word-spacing:-0.099792px;}
.ws16_c02423{word-spacing:-0.085536px;}
.ws10_c02423{word-spacing:0.000000px;}
.ws18_c02423{word-spacing:0.014256px;}
.wsd_c02423{word-spacing:33.300288px;}
.ws8_c02423{word-spacing:36.143712px;}
.ws6_c02423{word-spacing:36.742464px;}
.ws1_c02423{word-spacing:37.759392px;}
.ws0_c02423{word-spacing:38.020752px;}
.ws3_c02423{word-spacing:39.218256px;}
.ws5_c02423{word-spacing:39.902544px;}
.ws7_c02423{word-spacing:42.026688px;}
.ws9_c02423{word-spacing:50.765616px;}
._0_c02423{margin-left:-1.948320px;}
._2_c02423{width:1.482624px;}
._4_c02423{width:3.307392px;}
._9_c02423{width:13.975632px;}
._8_c02423{width:15.501024px;}
._1_c02423{width:50.252400px;}
._3_c02423{width:51.530688px;}
._5_c02423{width:63.819360px;}
._6_c02423{width:66.537504px;}
._7_c02423{width:69.127344px;}
.fc0_c02423{color:rgb(0,0,0);}
.fs0_c02423{font-size:47.520000px;}
.fs1_c02423{font-size:60.480000px;}
.y0_c02423{bottom:0.000000px;}
.y1c_c02423{bottom:146.998362px;}
.y1e_c02423{bottom:186.600234px;}
.y1d_c02423{bottom:196.320450px;}
.y1b_c02423{bottom:275.878542px;}
.y1a_c02423{bottom:341.759082px;}
.y19_c02423{bottom:356.878758px;}
.y17_c02423{bottom:406.559730px;}
.y13_c02423{bottom:424.560306px;}
.y18_c02423{bottom:458.759262px;}
.y16_c02423{bottom:491.879514px;}
.y15_c02423{bottom:509.880090px;}
.y12_c02423{bottom:543.000342px;}
.y14_c02423{bottom:559.559874px;}
.y11_c02423{bottom:577.560450px;}
.y1f_c02423{bottom:614.280450px;}
.yd_c02423{bottom:667.559514px;}
.yf_c02423{bottom:707.160234px;}
.ye_c02423{bottom:716.880450px;}
.yc_c02423{bottom:781.320018px;}
.yb_c02423{bottom:796.439694px;}
.ya_c02423{bottom:862.319046px;}
.y9_c02423{bottom:877.438722px;}
.y7_c02423{bottom:926.759730px;}
.y3_c02423{bottom:944.760306px;}
.y8_c02423{bottom:979.319226px;}
.y6_c02423{bottom:1012.439478px;}
.y5_c02423{bottom:1030.440054px;}
.y2_c02423{bottom:1063.560306px;}
.y4_c02423{bottom:1079.759874px;}
.y1_c02423{bottom:1097.760450px;}
.y10_c02423{bottom:1134.840450px;}
.h3_c02423{height:32.530781px;}
.h1_c02423{height:41.696016px;}
.h2_c02423{height:41.812031px;}
.h4_c02423{height:54.654737px;}
.h0_c02423{height:1263.000000px;}
.w1_c02423{width:892.500000px;}
.w0_c02423{width:892.830000px;}
.x0_c02423{left:0.000000px;}
.xe_c02423{left:117.000000px;}
.x8_c02423{left:440.999856px;}
.x4_c02423{left:445.680576px;}
.xc_c02423{left:451.080000px;}
.x7_c02423{left:455.399604px;}
.x5_c02423{left:461.880144px;}
.x1_c02423{left:463.320000px;}
.xb_c02423{left:483.480360px;}
.x9_c02423{left:492.119496px;}
.x6_c02423{left:493.200576px;}
.xd_c02423{left:506.880360px;}
.x3_c02423{left:511.919892px;}
.x2_c02423{left:526.679604px;}
.xa_c02423{left:569.880036px;}
@media print{
.v0_c02423{vertical-align:0.000000pt;}
.v1_c02423{vertical-align:1.279488pt;}
.lsc_c02423{letter-spacing:-0.642048pt;}
.ls9_c02423{letter-spacing:-0.511104pt;}
.ls14_c02423{letter-spacing:-0.333696pt;}
.ls10_c02423{letter-spacing:-0.244992pt;}
.lse_c02423{letter-spacing:-0.232320pt;}
.ls6_c02423{letter-spacing:-0.215424pt;}
.ls4_c02423{letter-spacing:-0.105600pt;}
.ls13_c02423{letter-spacing:0.000000pt;}
.ls2_c02423{letter-spacing:0.005376pt;}
.ls5_c02423{letter-spacing:0.114048pt;}
.ls7_c02423{letter-spacing:0.215424pt;}
.lsb_c02423{letter-spacing:0.451968pt;}
.ls12_c02423{letter-spacing:0.456960pt;}
.lsf_c02423{letter-spacing:0.477312pt;}
.lsa_c02423{letter-spacing:0.515328pt;}
.ls11_c02423{letter-spacing:0.528000pt;}
.ls8_c02423{letter-spacing:0.532224pt;}
.ls3_c02423{letter-spacing:0.544896pt;}
.lsd_c02423{letter-spacing:0.578688pt;}
.ls0_c02423{letter-spacing:0.637824pt;}
.ls1_c02423{letter-spacing:0.642048pt;}
.wse_c02423{word-spacing:-13.445376pt;}
.wsc_c02423{word-spacing:-11.088000pt;}
.wsb_c02423{word-spacing:-11.037312pt;}
.ws2_c02423{word-spacing:-10.775424pt;}
.ws4_c02423{word-spacing:-10.344576pt;}
.ws17_c02423{word-spacing:-1.919232pt;}
.ws13_c02423{word-spacing:-0.963072pt;}
.ws12_c02423{word-spacing:-0.958848pt;}
.ws14_c02423{word-spacing:-0.899712pt;}
.wsf_c02423{word-spacing:-0.865920pt;}
.wsa_c02423{word-spacing:-0.642048pt;}
.ws11_c02423{word-spacing:-0.105600pt;}
.ws15_c02423{word-spacing:-0.088704pt;}
.ws16_c02423{word-spacing:-0.076032pt;}
.ws10_c02423{word-spacing:0.000000pt;}
.ws18_c02423{word-spacing:0.012672pt;}
.wsd_c02423{word-spacing:29.600256pt;}
.ws8_c02423{word-spacing:32.127744pt;}
.ws6_c02423{word-spacing:32.659968pt;}
.ws1_c02423{word-spacing:33.563904pt;}
.ws0_c02423{word-spacing:33.796224pt;}
.ws3_c02423{word-spacing:34.860672pt;}
.ws5_c02423{word-spacing:35.468928pt;}
.ws7_c02423{word-spacing:37.357056pt;}
.ws9_c02423{word-spacing:45.124992pt;}
._0_c02423{margin-left:-1.731840pt;}
._2_c02423{width:1.317888pt;}
._4_c02423{width:2.939904pt;}
._9_c02423{width:12.422784pt;}
._8_c02423{width:13.778688pt;}
._1_c02423{width:44.668800pt;}
._3_c02423{width:45.805056pt;}
._5_c02423{width:56.728320pt;}
._6_c02423{width:59.144448pt;}
._7_c02423{width:61.446528pt;}
.fs0_c02423{font-size:42.240000pt;}
.fs1_c02423{font-size:53.760000pt;}
.y0_c02423{bottom:0.000000pt;}
.y1c_c02423{bottom:130.665211pt;}
.y1e_c02423{bottom:165.866875pt;}
.y1d_c02423{bottom:174.507067pt;}
.y1b_c02423{bottom:245.225371pt;}
.y1a_c02423{bottom:303.785851pt;}
.y19_c02423{bottom:317.225563pt;}
.y17_c02423{bottom:361.386427pt;}
.y13_c02423{bottom:377.386939pt;}
.y18_c02423{bottom:407.786011pt;}
.y16_c02423{bottom:437.226235pt;}
.y15_c02423{bottom:453.226747pt;}
.y12_c02423{bottom:482.666971pt;}
.y14_c02423{bottom:497.386555pt;}
.y11_c02423{bottom:513.387067pt;}
.y1f_c02423{bottom:546.027067pt;}
.yd_c02423{bottom:593.386235pt;}
.yf_c02423{bottom:628.586875pt;}
.ye_c02423{bottom:637.227067pt;}
.yc_c02423{bottom:694.506683pt;}
.yb_c02423{bottom:707.946395pt;}
.ya_c02423{bottom:766.505819pt;}
.y9_c02423{bottom:779.945531pt;}
.y7_c02423{bottom:823.786427pt;}
.y3_c02423{bottom:839.786939pt;}
.y8_c02423{bottom:870.505979pt;}
.y6_c02423{bottom:899.946203pt;}
.y5_c02423{bottom:915.946715pt;}
.y2_c02423{bottom:945.386939pt;}
.y4_c02423{bottom:959.786555pt;}
.y1_c02423{bottom:975.787067pt;}
.y10_c02423{bottom:1008.747067pt;}
.h3_c02423{height:28.916250pt;}
.h1_c02423{height:37.063125pt;}
.h2_c02423{height:37.166250pt;}
.h4_c02423{height:48.581988pt;}
.h0_c02423{height:1122.666667pt;}
.w1_c02423{width:793.333333pt;}
.w0_c02423{width:793.626667pt;}
.x0_c02423{left:0.000000pt;}
.xe_c02423{left:104.000000pt;}
.x8_c02423{left:391.999872pt;}
.x4_c02423{left:396.160512pt;}
.xc_c02423{left:400.960000pt;}
.x7_c02423{left:404.799648pt;}
.x5_c02423{left:410.560128pt;}
.x1_c02423{left:411.840000pt;}
.xb_c02423{left:429.760320pt;}
.x9_c02423{left:437.439552pt;}
.x6_c02423{left:438.400512pt;}
.xd_c02423{left:450.560320pt;}
.x3_c02423{left:455.039904pt;}
.x2_c02423{left:468.159648pt;}
.xa_c02423{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02424 {
    display:none;
  }
  .loading-indicator_c02424.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02424 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02424 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02424" -> "#page-container .classname_c02424")
 */
.pf_c02424 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02424 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02424 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02424 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02424 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02424 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02424 {overflow:visible;}
  }
}
.c_c02424 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02424 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02424:after { /* webkit #35443 */
  content: '';
}
.t_c02424:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02424 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02424 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02424 { /* info for Javascript */
  display:none;
}
.l_c02424 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02424 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02424 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02424:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02424 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02424.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02424 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02424{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02424;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02424{font-family:ff1_c02424;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02424;src:url('chunks/assets/font_95c44cc7c9e89c688691f424.woff2')format("woff");}.ff2_c02424{font-family:ff2_c02424;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02424;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02424{font-family:ff3_c02424;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02424{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02424{vertical-align:0.000000px;}
.v1_c02424{vertical-align:1.439424px;}
.v2_c02424{vertical-align:33.121440px;}
.ls16_c02424{letter-spacing:-1.283040px;}
.ls14_c02424{letter-spacing:-0.793584px;}
.lsa_c02424{letter-spacing:-0.774576px;}
.lsf_c02424{letter-spacing:-0.736560px;}
.ls9_c02424{letter-spacing:-0.574992px;}
.ls15_c02424{letter-spacing:-0.275616px;}
.ls10_c02424{letter-spacing:-0.270864px;}
.lsd_c02424{letter-spacing:-0.261360px;}
.ls6_c02424{letter-spacing:-0.242352px;}
.ls3_c02424{letter-spacing:-0.118800px;}
.ls13_c02424{letter-spacing:0.000000px;}
.ls0_c02424{letter-spacing:0.006048px;}
.ls5_c02424{letter-spacing:0.128304px;}
.ls7_c02424{letter-spacing:0.242352px;}
.lsc_c02424{letter-spacing:0.508464px;}
.ls12_c02424{letter-spacing:0.514080px;}
.lse_c02424{letter-spacing:0.536976px;}
.lsb_c02424{letter-spacing:0.579744px;}
.ls11_c02424{letter-spacing:0.594000px;}
.ls8_c02424{letter-spacing:0.598752px;}
.ls1_c02424{letter-spacing:0.613008px;}
.ls4_c02424{letter-spacing:0.717552px;}
.ls2_c02424{letter-spacing:0.722304px;}
.sc__c02424{text-shadow:none;}
.sc0_c02424{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02424{-webkit-text-stroke:0px transparent;}
.sc0_c02424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02424{word-spacing:-15.126048px;}
.wsb_c02424{word-spacing:-12.474000px;}
.ws7_c02424{word-spacing:-12.459744px;}
.wsf_c02424{word-spacing:-12.416976px;}
.ws2_c02424{word-spacing:-12.122352px;}
.ws4_c02424{word-spacing:-11.637648px;}
.ws6_c02424{word-spacing:-11.105424px;}
.ws18_c02424{word-spacing:-2.159136px;}
.ws14_c02424{word-spacing:-1.083456px;}
.ws11_c02424{word-spacing:-0.974160px;}
.ws13_c02424{word-spacing:-0.118800px;}
.ws15_c02424{word-spacing:-0.099792px;}
.ws16_c02424{word-spacing:-0.090288px;}
.ws17_c02424{word-spacing:-0.085536px;}
.ws12_c02424{word-spacing:0.000000px;}
.ws19_c02424{word-spacing:0.432432px;}
.ws1a_c02424{word-spacing:0.921888px;}
.wsa_c02424{word-spacing:6.629040px;}
.ws10_c02424{word-spacing:30.298752px;}
.wsc_c02424{word-spacing:33.300288px;}
.ws9_c02424{word-spacing:34.836912px;}
.wse_c02424{word-spacing:36.143712px;}
.ws1_c02424{word-spacing:37.759392px;}
.ws0_c02424{word-spacing:38.020752px;}
.ws3_c02424{word-spacing:39.218256px;}
.ws5_c02424{word-spacing:39.902544px;}
.ws8_c02424{word-spacing:42.026688px;}
._0_c02424{margin-left:-1.948320px;}
._2_c02424{width:1.482624px;}
._4_c02424{width:3.307392px;}
._6_c02424{width:19.982160px;}
._7_c02424{width:23.451120px;}
._5_c02424{width:24.691392px;}
._1_c02424{width:50.252400px;}
._3_c02424{width:51.530688px;}
.fc0_c02424{color:rgb(0,0,0);}
.fs0_c02424{font-size:47.520000px;}
.fs1_c02424{font-size:60.480000px;}
.y0_c02424{bottom:0.000000px;}
.y1a_c02424{bottom:146.998362px;}
.y1c_c02424{bottom:186.600234px;}
.y1b_c02424{bottom:196.320450px;}
.y19_c02424{bottom:275.878542px;}
.y18_c02424{bottom:356.878758px;}
.y16_c02424{bottom:406.559730px;}
.y12_c02424{bottom:424.560306px;}
.y17_c02424{bottom:458.759262px;}
.y15_c02424{bottom:491.879514px;}
.y14_c02424{bottom:509.880090px;}
.y11_c02424{bottom:543.000342px;}
.y13_c02424{bottom:559.559874px;}
.y10_c02424{bottom:577.560450px;}
.y1d_c02424{bottom:614.280450px;}
.yc_c02424{bottom:652.438650px;}
.yb_c02424{bottom:667.558326px;}
.ye_c02424{bottom:707.160234px;}
.yd_c02424{bottom:716.880450px;}
.ya_c02424{bottom:796.438506px;}
.y9_c02424{bottom:877.438722px;}
.y7_c02424{bottom:926.759730px;}
.y3_c02424{bottom:944.760306px;}
.y8_c02424{bottom:979.319226px;}
.y6_c02424{bottom:1012.439478px;}
.y5_c02424{bottom:1030.440054px;}
.y2_c02424{bottom:1063.560306px;}
.y4_c02424{bottom:1079.759874px;}
.y1_c02424{bottom:1097.760450px;}
.yf_c02424{bottom:1134.840450px;}
.h3_c02424{height:32.530781px;}
.h1_c02424{height:41.696016px;}
.h2_c02424{height:41.812031px;}
.h4_c02424{height:54.654737px;}
.h5_c02424{height:74.817456px;}
.h0_c02424{height:1263.000000px;}
.w1_c02424{width:892.500000px;}
.w0_c02424{width:892.830000px;}
.x0_c02424{left:0.000000px;}
.xe_c02424{left:117.000000px;}
.x8_c02424{left:440.999856px;}
.x4_c02424{left:445.680576px;}
.xc_c02424{left:451.080000px;}
.x7_c02424{left:455.399604px;}
.x5_c02424{left:461.880144px;}
.x1_c02424{left:463.320000px;}
.xa_c02424{left:483.480360px;}
.x9_c02424{left:492.119496px;}
.x6_c02424{left:493.200576px;}
.xd_c02424{left:506.880360px;}
.x3_c02424{left:511.919892px;}
.x2_c02424{left:526.679604px;}
.xb_c02424{left:569.880036px;}
@media print{
.v0_c02424{vertical-align:0.000000pt;}
.v1_c02424{vertical-align:1.279488pt;}
.v2_c02424{vertical-align:29.441280pt;}
.ls16_c02424{letter-spacing:-1.140480pt;}
.ls14_c02424{letter-spacing:-0.705408pt;}
.lsa_c02424{letter-spacing:-0.688512pt;}
.lsf_c02424{letter-spacing:-0.654720pt;}
.ls9_c02424{letter-spacing:-0.511104pt;}
.ls15_c02424{letter-spacing:-0.244992pt;}
.ls10_c02424{letter-spacing:-0.240768pt;}
.lsd_c02424{letter-spacing:-0.232320pt;}
.ls6_c02424{letter-spacing:-0.215424pt;}
.ls3_c02424{letter-spacing:-0.105600pt;}
.ls13_c02424{letter-spacing:0.000000pt;}
.ls0_c02424{letter-spacing:0.005376pt;}
.ls5_c02424{letter-spacing:0.114048pt;}
.ls7_c02424{letter-spacing:0.215424pt;}
.lsc_c02424{letter-spacing:0.451968pt;}
.ls12_c02424{letter-spacing:0.456960pt;}
.lse_c02424{letter-spacing:0.477312pt;}
.lsb_c02424{letter-spacing:0.515328pt;}
.ls11_c02424{letter-spacing:0.528000pt;}
.ls8_c02424{letter-spacing:0.532224pt;}
.ls1_c02424{letter-spacing:0.544896pt;}
.ls4_c02424{letter-spacing:0.637824pt;}
.ls2_c02424{letter-spacing:0.642048pt;}
.wsd_c02424{word-spacing:-13.445376pt;}
.wsb_c02424{word-spacing:-11.088000pt;}
.ws7_c02424{word-spacing:-11.075328pt;}
.wsf_c02424{word-spacing:-11.037312pt;}
.ws2_c02424{word-spacing:-10.775424pt;}
.ws4_c02424{word-spacing:-10.344576pt;}
.ws6_c02424{word-spacing:-9.871488pt;}
.ws18_c02424{word-spacing:-1.919232pt;}
.ws14_c02424{word-spacing:-0.963072pt;}
.ws11_c02424{word-spacing:-0.865920pt;}
.ws13_c02424{word-spacing:-0.105600pt;}
.ws15_c02424{word-spacing:-0.088704pt;}
.ws16_c02424{word-spacing:-0.080256pt;}
.ws17_c02424{word-spacing:-0.076032pt;}
.ws12_c02424{word-spacing:0.000000pt;}
.ws19_c02424{word-spacing:0.384384pt;}
.ws1a_c02424{word-spacing:0.819456pt;}
.wsa_c02424{word-spacing:5.892480pt;}
.ws10_c02424{word-spacing:26.932224pt;}
.wsc_c02424{word-spacing:29.600256pt;}
.ws9_c02424{word-spacing:30.966144pt;}
.wse_c02424{word-spacing:32.127744pt;}
.ws1_c02424{word-spacing:33.563904pt;}
.ws0_c02424{word-spacing:33.796224pt;}
.ws3_c02424{word-spacing:34.860672pt;}
.ws5_c02424{word-spacing:35.468928pt;}
.ws8_c02424{word-spacing:37.357056pt;}
._0_c02424{margin-left:-1.731840pt;}
._2_c02424{width:1.317888pt;}
._4_c02424{width:2.939904pt;}
._6_c02424{width:17.761920pt;}
._7_c02424{width:20.845440pt;}
._5_c02424{width:21.947904pt;}
._1_c02424{width:44.668800pt;}
._3_c02424{width:45.805056pt;}
.fs0_c02424{font-size:42.240000pt;}
.fs1_c02424{font-size:53.760000pt;}
.y0_c02424{bottom:0.000000pt;}
.y1a_c02424{bottom:130.665211pt;}
.y1c_c02424{bottom:165.866875pt;}
.y1b_c02424{bottom:174.507067pt;}
.y19_c02424{bottom:245.225371pt;}
.y18_c02424{bottom:317.225563pt;}
.y16_c02424{bottom:361.386427pt;}
.y12_c02424{bottom:377.386939pt;}
.y17_c02424{bottom:407.786011pt;}
.y15_c02424{bottom:437.226235pt;}
.y14_c02424{bottom:453.226747pt;}
.y11_c02424{bottom:482.666971pt;}
.y13_c02424{bottom:497.386555pt;}
.y10_c02424{bottom:513.387067pt;}
.y1d_c02424{bottom:546.027067pt;}
.yc_c02424{bottom:579.945467pt;}
.yb_c02424{bottom:593.385179pt;}
.ye_c02424{bottom:628.586875pt;}
.yd_c02424{bottom:637.227067pt;}
.ya_c02424{bottom:707.945339pt;}
.y9_c02424{bottom:779.945531pt;}
.y7_c02424{bottom:823.786427pt;}
.y3_c02424{bottom:839.786939pt;}
.y8_c02424{bottom:870.505979pt;}
.y6_c02424{bottom:899.946203pt;}
.y5_c02424{bottom:915.946715pt;}
.y2_c02424{bottom:945.386939pt;}
.y4_c02424{bottom:959.786555pt;}
.y1_c02424{bottom:975.787067pt;}
.yf_c02424{bottom:1008.747067pt;}
.h3_c02424{height:28.916250pt;}
.h1_c02424{height:37.063125pt;}
.h2_c02424{height:37.166250pt;}
.h4_c02424{height:48.581988pt;}
.h5_c02424{height:66.504405pt;}
.h0_c02424{height:1122.666667pt;}
.w1_c02424{width:793.333333pt;}
.w0_c02424{width:793.626667pt;}
.x0_c02424{left:0.000000pt;}
.xe_c02424{left:104.000000pt;}
.x8_c02424{left:391.999872pt;}
.x4_c02424{left:396.160512pt;}
.xc_c02424{left:400.960000pt;}
.x7_c02424{left:404.799648pt;}
.x5_c02424{left:410.560128pt;}
.x1_c02424{left:411.840000pt;}
.xa_c02424{left:429.760320pt;}
.x9_c02424{left:437.439552pt;}
.x6_c02424{left:438.400512pt;}
.xd_c02424{left:450.560320pt;}
.x3_c02424{left:455.039904pt;}
.x2_c02424{left:468.159648pt;}
.xb_c02424{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02425 {
    display:none;
  }
  .loading-indicator_c02425.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02425 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02425 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02425" -> "#page-container .classname_c02425")
 */
.pf_c02425 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02425 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02425.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02425 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02425 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02425 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02425 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02425 {overflow:visible;}
  }
}
.c_c02425 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02425 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02425:after { /* webkit #35443 */
  content: '';
}
.t_c02425:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02425 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02425 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02425 { /* info for Javascript */
  display:none;
}
.l_c02425 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02425 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02425 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02425:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02425 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02425.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02425.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02425 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02425{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02425;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02425{font-family:ff1_c02425;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02425;src:url('chunks/assets/font_cba5997ed7a077c2076f701a.woff2')format("woff");}.ff2_c02425{font-family:ff2_c02425;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02425;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02425{font-family:ff3_c02425;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02425{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02425{vertical-align:0.000000px;}
.v1_c02425{vertical-align:1.439424px;}
.lse_c02425{letter-spacing:-0.793584px;}
.lsb_c02425{letter-spacing:-0.774576px;}
.ls11_c02425{letter-spacing:-0.736560px;}
.lsa_c02425{letter-spacing:-0.574992px;}
.ls12_c02425{letter-spacing:-0.270864px;}
.lsf_c02425{letter-spacing:-0.261360px;}
.ls7_c02425{letter-spacing:-0.242352px;}
.ls4_c02425{letter-spacing:-0.118800px;}
.ls15_c02425{letter-spacing:0.000000px;}
.ls1_c02425{letter-spacing:0.006048px;}
.ls6_c02425{letter-spacing:0.128304px;}
.ls8_c02425{letter-spacing:0.242352px;}
.lsd_c02425{letter-spacing:0.508464px;}
.ls14_c02425{letter-spacing:0.514080px;}
.ls10_c02425{letter-spacing:0.536976px;}
.lsc_c02425{letter-spacing:0.579744px;}
.ls13_c02425{letter-spacing:0.594000px;}
.ls9_c02425{letter-spacing:0.598752px;}
.ls2_c02425{letter-spacing:0.613008px;}
.ls0_c02425{letter-spacing:0.651024px;}
.ls5_c02425{letter-spacing:0.717552px;}
.ls3_c02425{letter-spacing:0.722304px;}
.sc__c02425{text-shadow:none;}
.sc0_c02425{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02425{-webkit-text-stroke:0px transparent;}
.sc0_c02425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02425{word-spacing:-15.126048px;}
.wsb_c02425{word-spacing:-12.474000px;}
.ws7_c02425{word-spacing:-12.459744px;}
.ws2_c02425{word-spacing:-12.122352px;}
.ws4_c02425{word-spacing:-11.637648px;}
.ws6_c02425{word-spacing:-11.105424px;}
.ws16_c02425{word-spacing:-2.159136px;}
.ws10_c02425{word-spacing:-1.012176px;}
.wse_c02425{word-spacing:-0.974160px;}
.ws11_c02425{word-spacing:-0.118800px;}
.ws13_c02425{word-spacing:-0.099792px;}
.ws14_c02425{word-spacing:-0.090288px;}
.ws15_c02425{word-spacing:-0.085536px;}
.wsf_c02425{word-spacing:0.000000px;}
.ws12_c02425{word-spacing:0.432432px;}
.wsa_c02425{word-spacing:6.629040px;}
.wsc_c02425{word-spacing:33.300288px;}
.ws9_c02425{word-spacing:34.836912px;}
.ws1_c02425{word-spacing:37.759392px;}
.ws0_c02425{word-spacing:38.020752px;}
.ws3_c02425{word-spacing:39.218256px;}
.ws5_c02425{word-spacing:39.902544px;}
.ws8_c02425{word-spacing:42.026688px;}
._0_c02425{margin-left:-1.948320px;}
._2_c02425{width:1.482624px;}
._4_c02425{width:3.307392px;}
._6_c02425{width:19.982160px;}
._7_c02425{width:23.451120px;}
._5_c02425{width:24.691392px;}
._1_c02425{width:50.252400px;}
._3_c02425{width:51.530688px;}
.fc0_c02425{color:rgb(0,0,0);}
.fs0_c02425{font-size:47.520000px;}
.fs1_c02425{font-size:60.480000px;}
.y0_c02425{bottom:0.000000px;}
.y1b_c02425{bottom:131.878686px;}
.y1a_c02425{bottom:146.998362px;}
.y1d_c02425{bottom:186.600234px;}
.y1c_c02425{bottom:196.320450px;}
.y19_c02425{bottom:275.878542px;}
.y18_c02425{bottom:356.878758px;}
.y16_c02425{bottom:406.559730px;}
.y12_c02425{bottom:424.560306px;}
.y17_c02425{bottom:458.759262px;}
.y15_c02425{bottom:491.879514px;}
.y14_c02425{bottom:509.880090px;}
.y11_c02425{bottom:543.000342px;}
.y13_c02425{bottom:559.559874px;}
.y10_c02425{bottom:577.560450px;}
.y1e_c02425{bottom:614.280450px;}
.yc_c02425{bottom:652.438650px;}
.yb_c02425{bottom:667.558326px;}
.ye_c02425{bottom:707.160234px;}
.yd_c02425{bottom:716.880450px;}
.ya_c02425{bottom:796.438506px;}
.y9_c02425{bottom:877.438722px;}
.y7_c02425{bottom:926.759730px;}
.y3_c02425{bottom:944.760306px;}
.y8_c02425{bottom:979.319226px;}
.y6_c02425{bottom:1012.439478px;}
.y5_c02425{bottom:1030.440054px;}
.y2_c02425{bottom:1063.560306px;}
.y4_c02425{bottom:1079.759874px;}
.y1_c02425{bottom:1097.760450px;}
.yf_c02425{bottom:1134.840450px;}
.h3_c02425{height:32.530781px;}
.h1_c02425{height:41.696016px;}
.h2_c02425{height:41.812031px;}
.h4_c02425{height:54.654737px;}
.h0_c02425{height:1263.000000px;}
.w1_c02425{width:892.500000px;}
.w0_c02425{width:892.830000px;}
.x0_c02425{left:0.000000px;}
.xe_c02425{left:117.000000px;}
.x8_c02425{left:440.999856px;}
.x4_c02425{left:445.680576px;}
.xc_c02425{left:451.080000px;}
.x7_c02425{left:455.399604px;}
.x5_c02425{left:461.880144px;}
.x1_c02425{left:463.320000px;}
.xa_c02425{left:483.480360px;}
.x9_c02425{left:492.119496px;}
.x6_c02425{left:493.200576px;}
.xd_c02425{left:506.880360px;}
.x3_c02425{left:511.919892px;}
.x2_c02425{left:526.679604px;}
.xb_c02425{left:569.880036px;}
@media print{
.v0_c02425{vertical-align:0.000000pt;}
.v1_c02425{vertical-align:1.279488pt;}
.lse_c02425{letter-spacing:-0.705408pt;}
.lsb_c02425{letter-spacing:-0.688512pt;}
.ls11_c02425{letter-spacing:-0.654720pt;}
.lsa_c02425{letter-spacing:-0.511104pt;}
.ls12_c02425{letter-spacing:-0.240768pt;}
.lsf_c02425{letter-spacing:-0.232320pt;}
.ls7_c02425{letter-spacing:-0.215424pt;}
.ls4_c02425{letter-spacing:-0.105600pt;}
.ls15_c02425{letter-spacing:0.000000pt;}
.ls1_c02425{letter-spacing:0.005376pt;}
.ls6_c02425{letter-spacing:0.114048pt;}
.ls8_c02425{letter-spacing:0.215424pt;}
.lsd_c02425{letter-spacing:0.451968pt;}
.ls14_c02425{letter-spacing:0.456960pt;}
.ls10_c02425{letter-spacing:0.477312pt;}
.lsc_c02425{letter-spacing:0.515328pt;}
.ls13_c02425{letter-spacing:0.528000pt;}
.ls9_c02425{letter-spacing:0.532224pt;}
.ls2_c02425{letter-spacing:0.544896pt;}
.ls0_c02425{letter-spacing:0.578688pt;}
.ls5_c02425{letter-spacing:0.637824pt;}
.ls3_c02425{letter-spacing:0.642048pt;}
.wsd_c02425{word-spacing:-13.445376pt;}
.wsb_c02425{word-spacing:-11.088000pt;}
.ws7_c02425{word-spacing:-11.075328pt;}
.ws2_c02425{word-spacing:-10.775424pt;}
.ws4_c02425{word-spacing:-10.344576pt;}
.ws6_c02425{word-spacing:-9.871488pt;}
.ws16_c02425{word-spacing:-1.919232pt;}
.ws10_c02425{word-spacing:-0.899712pt;}
.wse_c02425{word-spacing:-0.865920pt;}
.ws11_c02425{word-spacing:-0.105600pt;}
.ws13_c02425{word-spacing:-0.088704pt;}
.ws14_c02425{word-spacing:-0.080256pt;}
.ws15_c02425{word-spacing:-0.076032pt;}
.wsf_c02425{word-spacing:0.000000pt;}
.ws12_c02425{word-spacing:0.384384pt;}
.wsa_c02425{word-spacing:5.892480pt;}
.wsc_c02425{word-spacing:29.600256pt;}
.ws9_c02425{word-spacing:30.966144pt;}
.ws1_c02425{word-spacing:33.563904pt;}
.ws0_c02425{word-spacing:33.796224pt;}
.ws3_c02425{word-spacing:34.860672pt;}
.ws5_c02425{word-spacing:35.468928pt;}
.ws8_c02425{word-spacing:37.357056pt;}
._0_c02425{margin-left:-1.731840pt;}
._2_c02425{width:1.317888pt;}
._4_c02425{width:2.939904pt;}
._6_c02425{width:17.761920pt;}
._7_c02425{width:20.845440pt;}
._5_c02425{width:21.947904pt;}
._1_c02425{width:44.668800pt;}
._3_c02425{width:45.805056pt;}
.fs0_c02425{font-size:42.240000pt;}
.fs1_c02425{font-size:53.760000pt;}
.y0_c02425{bottom:0.000000pt;}
.y1b_c02425{bottom:117.225499pt;}
.y1a_c02425{bottom:130.665211pt;}
.y1d_c02425{bottom:165.866875pt;}
.y1c_c02425{bottom:174.507067pt;}
.y19_c02425{bottom:245.225371pt;}
.y18_c02425{bottom:317.225563pt;}
.y16_c02425{bottom:361.386427pt;}
.y12_c02425{bottom:377.386939pt;}
.y17_c02425{bottom:407.786011pt;}
.y15_c02425{bottom:437.226235pt;}
.y14_c02425{bottom:453.226747pt;}
.y11_c02425{bottom:482.666971pt;}
.y13_c02425{bottom:497.386555pt;}
.y10_c02425{bottom:513.387067pt;}
.y1e_c02425{bottom:546.027067pt;}
.yc_c02425{bottom:579.945467pt;}
.yb_c02425{bottom:593.385179pt;}
.ye_c02425{bottom:628.586875pt;}
.yd_c02425{bottom:637.227067pt;}
.ya_c02425{bottom:707.945339pt;}
.y9_c02425{bottom:779.945531pt;}
.y7_c02425{bottom:823.786427pt;}
.y3_c02425{bottom:839.786939pt;}
.y8_c02425{bottom:870.505979pt;}
.y6_c02425{bottom:899.946203pt;}
.y5_c02425{bottom:915.946715pt;}
.y2_c02425{bottom:945.386939pt;}
.y4_c02425{bottom:959.786555pt;}
.y1_c02425{bottom:975.787067pt;}
.yf_c02425{bottom:1008.747067pt;}
.h3_c02425{height:28.916250pt;}
.h1_c02425{height:37.063125pt;}
.h2_c02425{height:37.166250pt;}
.h4_c02425{height:48.581988pt;}
.h0_c02425{height:1122.666667pt;}
.w1_c02425{width:793.333333pt;}
.w0_c02425{width:793.626667pt;}
.x0_c02425{left:0.000000pt;}
.xe_c02425{left:104.000000pt;}
.x8_c02425{left:391.999872pt;}
.x4_c02425{left:396.160512pt;}
.xc_c02425{left:400.960000pt;}
.x7_c02425{left:404.799648pt;}
.x5_c02425{left:410.560128pt;}
.x1_c02425{left:411.840000pt;}
.xa_c02425{left:429.760320pt;}
.x9_c02425{left:437.439552pt;}
.x6_c02425{left:438.400512pt;}
.xd_c02425{left:450.560320pt;}
.x3_c02425{left:455.039904pt;}
.x2_c02425{left:468.159648pt;}
.xb_c02425{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02426 {
    display:none;
  }
  .loading-indicator_c02426.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02426 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02426 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02426" -> "#page-container .classname_c02426")
 */
.pf_c02426 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02426 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02426 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02426 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02426 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02426 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02426 {overflow:visible;}
  }
}
.c_c02426 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02426 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02426:after { /* webkit #35443 */
  content: '';
}
.t_c02426:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02426 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02426 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02426 { /* info for Javascript */
  display:none;
}
.l_c02426 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02426 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02426 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02426:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02426 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02426.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02426 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02426{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02426;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02426{font-family:ff1_c02426;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02426;src:url('chunks/assets/font_da3d8bc65c8ffe84b8e00c44.woff2')format("woff");}.ff2_c02426{font-family:ff2_c02426;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02426;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02426{font-family:ff3_c02426;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02426{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02426{vertical-align:0.000000px;}
.v1_c02426{vertical-align:1.439424px;}
.lse_c02426{letter-spacing:-0.793584px;}
.lsb_c02426{letter-spacing:-0.774576px;}
.ls11_c02426{letter-spacing:-0.736560px;}
.lsa_c02426{letter-spacing:-0.574992px;}
.ls12_c02426{letter-spacing:-0.270864px;}
.lsf_c02426{letter-spacing:-0.261360px;}
.ls7_c02426{letter-spacing:-0.242352px;}
.ls4_c02426{letter-spacing:-0.118800px;}
.ls15_c02426{letter-spacing:0.000000px;}
.ls1_c02426{letter-spacing:0.006048px;}
.ls6_c02426{letter-spacing:0.128304px;}
.ls8_c02426{letter-spacing:0.242352px;}
.lsd_c02426{letter-spacing:0.508464px;}
.ls14_c02426{letter-spacing:0.514080px;}
.ls10_c02426{letter-spacing:0.536976px;}
.lsc_c02426{letter-spacing:0.579744px;}
.ls13_c02426{letter-spacing:0.594000px;}
.ls9_c02426{letter-spacing:0.598752px;}
.ls2_c02426{letter-spacing:0.613008px;}
.ls0_c02426{letter-spacing:0.651024px;}
.ls5_c02426{letter-spacing:0.717552px;}
.ls3_c02426{letter-spacing:0.722304px;}
.sc__c02426{text-shadow:none;}
.sc0_c02426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02426{-webkit-text-stroke:0px transparent;}
.sc0_c02426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02426{word-spacing:-15.126048px;}
.wsb_c02426{word-spacing:-12.474000px;}
.ws7_c02426{word-spacing:-12.459744px;}
.ws2_c02426{word-spacing:-12.122352px;}
.ws4_c02426{word-spacing:-11.637648px;}
.ws6_c02426{word-spacing:-11.105424px;}
.ws16_c02426{word-spacing:-2.159136px;}
.ws10_c02426{word-spacing:-1.012176px;}
.wse_c02426{word-spacing:-0.974160px;}
.ws11_c02426{word-spacing:-0.118800px;}
.ws13_c02426{word-spacing:-0.099792px;}
.ws14_c02426{word-spacing:-0.090288px;}
.ws15_c02426{word-spacing:-0.085536px;}
.wsf_c02426{word-spacing:0.000000px;}
.ws12_c02426{word-spacing:0.432432px;}
.wsa_c02426{word-spacing:6.629040px;}
.wsc_c02426{word-spacing:33.300288px;}
.ws9_c02426{word-spacing:34.836912px;}
.ws1_c02426{word-spacing:37.759392px;}
.ws0_c02426{word-spacing:38.020752px;}
.ws3_c02426{word-spacing:39.218256px;}
.ws5_c02426{word-spacing:39.902544px;}
.ws8_c02426{word-spacing:42.026688px;}
._0_c02426{margin-left:-1.948320px;}
._2_c02426{width:1.482624px;}
._4_c02426{width:3.307392px;}
._6_c02426{width:19.982160px;}
._7_c02426{width:23.451120px;}
._5_c02426{width:24.691392px;}
._1_c02426{width:50.252400px;}
._3_c02426{width:51.530688px;}
.fc0_c02426{color:rgb(0,0,0);}
.fs0_c02426{font-size:47.520000px;}
.fs1_c02426{font-size:60.480000px;}
.y0_c02426{bottom:0.000000px;}
.y1b_c02426{bottom:131.878686px;}
.y1a_c02426{bottom:146.998362px;}
.y1d_c02426{bottom:186.600234px;}
.y1c_c02426{bottom:196.320450px;}
.y19_c02426{bottom:275.878542px;}
.y18_c02426{bottom:356.878758px;}
.y16_c02426{bottom:406.559730px;}
.y12_c02426{bottom:424.560306px;}
.y17_c02426{bottom:458.759262px;}
.y15_c02426{bottom:491.879514px;}
.y14_c02426{bottom:509.880090px;}
.y11_c02426{bottom:543.000342px;}
.y13_c02426{bottom:559.559874px;}
.y10_c02426{bottom:577.560450px;}
.y1e_c02426{bottom:614.280450px;}
.yc_c02426{bottom:652.438650px;}
.yb_c02426{bottom:667.558326px;}
.ye_c02426{bottom:707.160234px;}
.yd_c02426{bottom:716.880450px;}
.ya_c02426{bottom:796.438506px;}
.y9_c02426{bottom:877.438722px;}
.y7_c02426{bottom:926.759730px;}
.y3_c02426{bottom:944.760306px;}
.y8_c02426{bottom:979.319226px;}
.y6_c02426{bottom:1012.439478px;}
.y5_c02426{bottom:1030.440054px;}
.y2_c02426{bottom:1063.560306px;}
.y4_c02426{bottom:1079.759874px;}
.y1_c02426{bottom:1097.760450px;}
.yf_c02426{bottom:1134.840450px;}
.h3_c02426{height:32.530781px;}
.h1_c02426{height:41.696016px;}
.h2_c02426{height:41.812031px;}
.h4_c02426{height:54.654737px;}
.h0_c02426{height:1263.000000px;}
.w1_c02426{width:892.500000px;}
.w0_c02426{width:892.830000px;}
.x0_c02426{left:0.000000px;}
.xe_c02426{left:117.000000px;}
.x8_c02426{left:440.999856px;}
.x4_c02426{left:445.680576px;}
.xc_c02426{left:451.080000px;}
.x7_c02426{left:455.399604px;}
.x5_c02426{left:461.880144px;}
.x1_c02426{left:463.320000px;}
.xa_c02426{left:483.480360px;}
.x9_c02426{left:492.119496px;}
.x6_c02426{left:493.200576px;}
.xd_c02426{left:506.880360px;}
.x3_c02426{left:511.919892px;}
.x2_c02426{left:526.679604px;}
.xb_c02426{left:569.880036px;}
@media print{
.v0_c02426{vertical-align:0.000000pt;}
.v1_c02426{vertical-align:1.279488pt;}
.lse_c02426{letter-spacing:-0.705408pt;}
.lsb_c02426{letter-spacing:-0.688512pt;}
.ls11_c02426{letter-spacing:-0.654720pt;}
.lsa_c02426{letter-spacing:-0.511104pt;}
.ls12_c02426{letter-spacing:-0.240768pt;}
.lsf_c02426{letter-spacing:-0.232320pt;}
.ls7_c02426{letter-spacing:-0.215424pt;}
.ls4_c02426{letter-spacing:-0.105600pt;}
.ls15_c02426{letter-spacing:0.000000pt;}
.ls1_c02426{letter-spacing:0.005376pt;}
.ls6_c02426{letter-spacing:0.114048pt;}
.ls8_c02426{letter-spacing:0.215424pt;}
.lsd_c02426{letter-spacing:0.451968pt;}
.ls14_c02426{letter-spacing:0.456960pt;}
.ls10_c02426{letter-spacing:0.477312pt;}
.lsc_c02426{letter-spacing:0.515328pt;}
.ls13_c02426{letter-spacing:0.528000pt;}
.ls9_c02426{letter-spacing:0.532224pt;}
.ls2_c02426{letter-spacing:0.544896pt;}
.ls0_c02426{letter-spacing:0.578688pt;}
.ls5_c02426{letter-spacing:0.637824pt;}
.ls3_c02426{letter-spacing:0.642048pt;}
.wsd_c02426{word-spacing:-13.445376pt;}
.wsb_c02426{word-spacing:-11.088000pt;}
.ws7_c02426{word-spacing:-11.075328pt;}
.ws2_c02426{word-spacing:-10.775424pt;}
.ws4_c02426{word-spacing:-10.344576pt;}
.ws6_c02426{word-spacing:-9.871488pt;}
.ws16_c02426{word-spacing:-1.919232pt;}
.ws10_c02426{word-spacing:-0.899712pt;}
.wse_c02426{word-spacing:-0.865920pt;}
.ws11_c02426{word-spacing:-0.105600pt;}
.ws13_c02426{word-spacing:-0.088704pt;}
.ws14_c02426{word-spacing:-0.080256pt;}
.ws15_c02426{word-spacing:-0.076032pt;}
.wsf_c02426{word-spacing:0.000000pt;}
.ws12_c02426{word-spacing:0.384384pt;}
.wsa_c02426{word-spacing:5.892480pt;}
.wsc_c02426{word-spacing:29.600256pt;}
.ws9_c02426{word-spacing:30.966144pt;}
.ws1_c02426{word-spacing:33.563904pt;}
.ws0_c02426{word-spacing:33.796224pt;}
.ws3_c02426{word-spacing:34.860672pt;}
.ws5_c02426{word-spacing:35.468928pt;}
.ws8_c02426{word-spacing:37.357056pt;}
._0_c02426{margin-left:-1.731840pt;}
._2_c02426{width:1.317888pt;}
._4_c02426{width:2.939904pt;}
._6_c02426{width:17.761920pt;}
._7_c02426{width:20.845440pt;}
._5_c02426{width:21.947904pt;}
._1_c02426{width:44.668800pt;}
._3_c02426{width:45.805056pt;}
.fs0_c02426{font-size:42.240000pt;}
.fs1_c02426{font-size:53.760000pt;}
.y0_c02426{bottom:0.000000pt;}
.y1b_c02426{bottom:117.225499pt;}
.y1a_c02426{bottom:130.665211pt;}
.y1d_c02426{bottom:165.866875pt;}
.y1c_c02426{bottom:174.507067pt;}
.y19_c02426{bottom:245.225371pt;}
.y18_c02426{bottom:317.225563pt;}
.y16_c02426{bottom:361.386427pt;}
.y12_c02426{bottom:377.386939pt;}
.y17_c02426{bottom:407.786011pt;}
.y15_c02426{bottom:437.226235pt;}
.y14_c02426{bottom:453.226747pt;}
.y11_c02426{bottom:482.666971pt;}
.y13_c02426{bottom:497.386555pt;}
.y10_c02426{bottom:513.387067pt;}
.y1e_c02426{bottom:546.027067pt;}
.yc_c02426{bottom:579.945467pt;}
.yb_c02426{bottom:593.385179pt;}
.ye_c02426{bottom:628.586875pt;}
.yd_c02426{bottom:637.227067pt;}
.ya_c02426{bottom:707.945339pt;}
.y9_c02426{bottom:779.945531pt;}
.y7_c02426{bottom:823.786427pt;}
.y3_c02426{bottom:839.786939pt;}
.y8_c02426{bottom:870.505979pt;}
.y6_c02426{bottom:899.946203pt;}
.y5_c02426{bottom:915.946715pt;}
.y2_c02426{bottom:945.386939pt;}
.y4_c02426{bottom:959.786555pt;}
.y1_c02426{bottom:975.787067pt;}
.yf_c02426{bottom:1008.747067pt;}
.h3_c02426{height:28.916250pt;}
.h1_c02426{height:37.063125pt;}
.h2_c02426{height:37.166250pt;}
.h4_c02426{height:48.581988pt;}
.h0_c02426{height:1122.666667pt;}
.w1_c02426{width:793.333333pt;}
.w0_c02426{width:793.626667pt;}
.x0_c02426{left:0.000000pt;}
.xe_c02426{left:104.000000pt;}
.x8_c02426{left:391.999872pt;}
.x4_c02426{left:396.160512pt;}
.xc_c02426{left:400.960000pt;}
.x7_c02426{left:404.799648pt;}
.x5_c02426{left:410.560128pt;}
.x1_c02426{left:411.840000pt;}
.xa_c02426{left:429.760320pt;}
.x9_c02426{left:437.439552pt;}
.x6_c02426{left:438.400512pt;}
.xd_c02426{left:450.560320pt;}
.x3_c02426{left:455.039904pt;}
.x2_c02426{left:468.159648pt;}
.xb_c02426{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02427 {
    display:none;
  }
  .loading-indicator_c02427.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02427 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02427 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02427" -> "#page-container .classname_c02427")
 */
.pf_c02427 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02427 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02427 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02427 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02427 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02427 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02427 {overflow:visible;}
  }
}
.c_c02427 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02427 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02427:after { /* webkit #35443 */
  content: '';
}
.t_c02427:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02427 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02427 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02427 { /* info for Javascript */
  display:none;
}
.l_c02427 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02427 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02427 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02427:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02427 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02427.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02427 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02427{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02427;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02427{font-family:ff1_c02427;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02427;src:url('chunks/assets/font_1ce6ddf7e0a4e84b1b4574a6.woff2')format("woff");}.ff2_c02427{font-family:ff2_c02427;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02427;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02427{font-family:ff3_c02427;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02427{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02427{vertical-align:0.000000px;}
.v1_c02427{vertical-align:1.439424px;}
.lse_c02427{letter-spacing:-0.793584px;}
.lsb_c02427{letter-spacing:-0.774576px;}
.ls11_c02427{letter-spacing:-0.736560px;}
.lsa_c02427{letter-spacing:-0.574992px;}
.ls17_c02427{letter-spacing:-0.394416px;}
.ls18_c02427{letter-spacing:-0.275616px;}
.ls12_c02427{letter-spacing:-0.270864px;}
.ls16_c02427{letter-spacing:-0.266112px;}
.lsf_c02427{letter-spacing:-0.261360px;}
.ls7_c02427{letter-spacing:-0.242352px;}
.ls5_c02427{letter-spacing:-0.118800px;}
.ls15_c02427{letter-spacing:0.000000px;}
.ls1_c02427{letter-spacing:0.006048px;}
.ls6_c02427{letter-spacing:0.128304px;}
.ls8_c02427{letter-spacing:0.242352px;}
.lsd_c02427{letter-spacing:0.508464px;}
.ls14_c02427{letter-spacing:0.514080px;}
.ls10_c02427{letter-spacing:0.536976px;}
.lsc_c02427{letter-spacing:0.579744px;}
.ls13_c02427{letter-spacing:0.594000px;}
.ls9_c02427{letter-spacing:0.598752px;}
.ls3_c02427{letter-spacing:0.613008px;}
.ls0_c02427{letter-spacing:0.651024px;}
.ls2_c02427{letter-spacing:0.717552px;}
.ls4_c02427{letter-spacing:0.722304px;}
.sc__c02427{text-shadow:none;}
.sc0_c02427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02427{-webkit-text-stroke:0px transparent;}
.sc0_c02427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02427{word-spacing:-15.126048px;}
.wsb_c02427{word-spacing:-12.474000px;}
.ws7_c02427{word-spacing:-12.459744px;}
.wsf_c02427{word-spacing:-12.416976px;}
.ws2_c02427{word-spacing:-12.122352px;}
.ws4_c02427{word-spacing:-11.637648px;}
.ws6_c02427{word-spacing:-11.105424px;}
.ws18_c02427{word-spacing:-2.159136px;}
.ws1a_c02427{word-spacing:-1.078704px;}
.ws12_c02427{word-spacing:-1.012176px;}
.ws10_c02427{word-spacing:-0.974160px;}
.ws13_c02427{word-spacing:-0.118800px;}
.ws15_c02427{word-spacing:-0.099792px;}
.ws19_c02427{word-spacing:-0.095040px;}
.ws16_c02427{word-spacing:-0.090288px;}
.ws17_c02427{word-spacing:-0.085536px;}
.ws11_c02427{word-spacing:0.000000px;}
.ws1b_c02427{word-spacing:0.033264px;}
.ws14_c02427{word-spacing:0.432432px;}
.wsa_c02427{word-spacing:6.629040px;}
.wse_c02427{word-spacing:7.080480px;}
.wsc_c02427{word-spacing:33.300288px;}
.ws9_c02427{word-spacing:34.836912px;}
.ws1_c02427{word-spacing:37.759392px;}
.ws0_c02427{word-spacing:38.020752px;}
.ws3_c02427{word-spacing:39.218256px;}
.ws5_c02427{word-spacing:39.902544px;}
.ws8_c02427{word-spacing:42.026688px;}
._0_c02427{margin-left:-1.948320px;}
._2_c02427{width:1.482624px;}
._4_c02427{width:3.307392px;}
._6_c02427{width:19.982160px;}
._7_c02427{width:23.451120px;}
._5_c02427{width:24.691392px;}
._1_c02427{width:50.252400px;}
._3_c02427{width:51.530688px;}
.fc0_c02427{color:rgb(0,0,0);}
.fs0_c02427{font-size:47.520000px;}
.fs1_c02427{font-size:60.480000px;}
.y0_c02427{bottom:0.000000px;}
.y1a_c02427{bottom:146.998362px;}
.y1c_c02427{bottom:186.600234px;}
.y1b_c02427{bottom:196.320450px;}
.y19_c02427{bottom:275.878542px;}
.y18_c02427{bottom:356.878758px;}
.y16_c02427{bottom:406.559730px;}
.y12_c02427{bottom:424.560306px;}
.y17_c02427{bottom:458.759262px;}
.y15_c02427{bottom:491.879514px;}
.y14_c02427{bottom:509.880090px;}
.y11_c02427{bottom:543.000342px;}
.y13_c02427{bottom:559.559874px;}
.y10_c02427{bottom:577.560450px;}
.y1d_c02427{bottom:614.280450px;}
.yc_c02427{bottom:652.438650px;}
.yb_c02427{bottom:667.558326px;}
.ye_c02427{bottom:707.160234px;}
.yd_c02427{bottom:716.880450px;}
.ya_c02427{bottom:796.438506px;}
.y9_c02427{bottom:877.438722px;}
.y7_c02427{bottom:926.759730px;}
.y3_c02427{bottom:944.760306px;}
.y8_c02427{bottom:979.319226px;}
.y6_c02427{bottom:1012.439478px;}
.y5_c02427{bottom:1030.440054px;}
.y2_c02427{bottom:1063.560306px;}
.y4_c02427{bottom:1079.759874px;}
.y1_c02427{bottom:1097.760450px;}
.yf_c02427{bottom:1134.840450px;}
.h3_c02427{height:32.530781px;}
.h1_c02427{height:41.696016px;}
.h2_c02427{height:41.812031px;}
.h4_c02427{height:54.654737px;}
.h0_c02427{height:1263.000000px;}
.w1_c02427{width:892.500000px;}
.w0_c02427{width:892.830000px;}
.x0_c02427{left:0.000000px;}
.xe_c02427{left:117.000000px;}
.x8_c02427{left:440.999856px;}
.x4_c02427{left:445.680576px;}
.xc_c02427{left:451.080000px;}
.x7_c02427{left:455.399604px;}
.x5_c02427{left:461.880144px;}
.x1_c02427{left:463.320000px;}
.xa_c02427{left:483.480360px;}
.x9_c02427{left:492.119496px;}
.x6_c02427{left:493.200576px;}
.xd_c02427{left:506.880360px;}
.x3_c02427{left:511.919892px;}
.x2_c02427{left:526.679604px;}
.xb_c02427{left:569.880036px;}
@media print{
.v0_c02427{vertical-align:0.000000pt;}
.v1_c02427{vertical-align:1.279488pt;}
.lse_c02427{letter-spacing:-0.705408pt;}
.lsb_c02427{letter-spacing:-0.688512pt;}
.ls11_c02427{letter-spacing:-0.654720pt;}
.lsa_c02427{letter-spacing:-0.511104pt;}
.ls17_c02427{letter-spacing:-0.350592pt;}
.ls18_c02427{letter-spacing:-0.244992pt;}
.ls12_c02427{letter-spacing:-0.240768pt;}
.ls16_c02427{letter-spacing:-0.236544pt;}
.lsf_c02427{letter-spacing:-0.232320pt;}
.ls7_c02427{letter-spacing:-0.215424pt;}
.ls5_c02427{letter-spacing:-0.105600pt;}
.ls15_c02427{letter-spacing:0.000000pt;}
.ls1_c02427{letter-spacing:0.005376pt;}
.ls6_c02427{letter-spacing:0.114048pt;}
.ls8_c02427{letter-spacing:0.215424pt;}
.lsd_c02427{letter-spacing:0.451968pt;}
.ls14_c02427{letter-spacing:0.456960pt;}
.ls10_c02427{letter-spacing:0.477312pt;}
.lsc_c02427{letter-spacing:0.515328pt;}
.ls13_c02427{letter-spacing:0.528000pt;}
.ls9_c02427{letter-spacing:0.532224pt;}
.ls3_c02427{letter-spacing:0.544896pt;}
.ls0_c02427{letter-spacing:0.578688pt;}
.ls2_c02427{letter-spacing:0.637824pt;}
.ls4_c02427{letter-spacing:0.642048pt;}
.wsd_c02427{word-spacing:-13.445376pt;}
.wsb_c02427{word-spacing:-11.088000pt;}
.ws7_c02427{word-spacing:-11.075328pt;}
.wsf_c02427{word-spacing:-11.037312pt;}
.ws2_c02427{word-spacing:-10.775424pt;}
.ws4_c02427{word-spacing:-10.344576pt;}
.ws6_c02427{word-spacing:-9.871488pt;}
.ws18_c02427{word-spacing:-1.919232pt;}
.ws1a_c02427{word-spacing:-0.958848pt;}
.ws12_c02427{word-spacing:-0.899712pt;}
.ws10_c02427{word-spacing:-0.865920pt;}
.ws13_c02427{word-spacing:-0.105600pt;}
.ws15_c02427{word-spacing:-0.088704pt;}
.ws19_c02427{word-spacing:-0.084480pt;}
.ws16_c02427{word-spacing:-0.080256pt;}
.ws17_c02427{word-spacing:-0.076032pt;}
.ws11_c02427{word-spacing:0.000000pt;}
.ws1b_c02427{word-spacing:0.029568pt;}
.ws14_c02427{word-spacing:0.384384pt;}
.wsa_c02427{word-spacing:5.892480pt;}
.wse_c02427{word-spacing:6.293760pt;}
.wsc_c02427{word-spacing:29.600256pt;}
.ws9_c02427{word-spacing:30.966144pt;}
.ws1_c02427{word-spacing:33.563904pt;}
.ws0_c02427{word-spacing:33.796224pt;}
.ws3_c02427{word-spacing:34.860672pt;}
.ws5_c02427{word-spacing:35.468928pt;}
.ws8_c02427{word-spacing:37.357056pt;}
._0_c02427{margin-left:-1.731840pt;}
._2_c02427{width:1.317888pt;}
._4_c02427{width:2.939904pt;}
._6_c02427{width:17.761920pt;}
._7_c02427{width:20.845440pt;}
._5_c02427{width:21.947904pt;}
._1_c02427{width:44.668800pt;}
._3_c02427{width:45.805056pt;}
.fs0_c02427{font-size:42.240000pt;}
.fs1_c02427{font-size:53.760000pt;}
.y0_c02427{bottom:0.000000pt;}
.y1a_c02427{bottom:130.665211pt;}
.y1c_c02427{bottom:165.866875pt;}
.y1b_c02427{bottom:174.507067pt;}
.y19_c02427{bottom:245.225371pt;}
.y18_c02427{bottom:317.225563pt;}
.y16_c02427{bottom:361.386427pt;}
.y12_c02427{bottom:377.386939pt;}
.y17_c02427{bottom:407.786011pt;}
.y15_c02427{bottom:437.226235pt;}
.y14_c02427{bottom:453.226747pt;}
.y11_c02427{bottom:482.666971pt;}
.y13_c02427{bottom:497.386555pt;}
.y10_c02427{bottom:513.387067pt;}
.y1d_c02427{bottom:546.027067pt;}
.yc_c02427{bottom:579.945467pt;}
.yb_c02427{bottom:593.385179pt;}
.ye_c02427{bottom:628.586875pt;}
.yd_c02427{bottom:637.227067pt;}
.ya_c02427{bottom:707.945339pt;}
.y9_c02427{bottom:779.945531pt;}
.y7_c02427{bottom:823.786427pt;}
.y3_c02427{bottom:839.786939pt;}
.y8_c02427{bottom:870.505979pt;}
.y6_c02427{bottom:899.946203pt;}
.y5_c02427{bottom:915.946715pt;}
.y2_c02427{bottom:945.386939pt;}
.y4_c02427{bottom:959.786555pt;}
.y1_c02427{bottom:975.787067pt;}
.yf_c02427{bottom:1008.747067pt;}
.h3_c02427{height:28.916250pt;}
.h1_c02427{height:37.063125pt;}
.h2_c02427{height:37.166250pt;}
.h4_c02427{height:48.581988pt;}
.h0_c02427{height:1122.666667pt;}
.w1_c02427{width:793.333333pt;}
.w0_c02427{width:793.626667pt;}
.x0_c02427{left:0.000000pt;}
.xe_c02427{left:104.000000pt;}
.x8_c02427{left:391.999872pt;}
.x4_c02427{left:396.160512pt;}
.xc_c02427{left:400.960000pt;}
.x7_c02427{left:404.799648pt;}
.x5_c02427{left:410.560128pt;}
.x1_c02427{left:411.840000pt;}
.xa_c02427{left:429.760320pt;}
.x9_c02427{left:437.439552pt;}
.x6_c02427{left:438.400512pt;}
.xd_c02427{left:450.560320pt;}
.x3_c02427{left:455.039904pt;}
.x2_c02427{left:468.159648pt;}
.xb_c02427{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02428 {
    display:none;
  }
  .loading-indicator_c02428.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02428 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02428 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02428" -> "#page-container .classname_c02428")
 */
.pf_c02428 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02428 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02428 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02428 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02428 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02428 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02428 {overflow:visible;}
  }
}
.c_c02428 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02428 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02428:after { /* webkit #35443 */
  content: '';
}
.t_c02428:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02428 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02428 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02428 { /* info for Javascript */
  display:none;
}
.l_c02428 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02428 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02428 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02428:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02428 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02428.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02428 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02428{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02428;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02428{font-family:ff1_c02428;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02428;src:url('chunks/assets/font_41089d5ed20825d43fd5b834.woff2')format("woff");}.ff2_c02428{font-family:ff2_c02428;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02428;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02428{font-family:ff3_c02428;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02428{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02428{vertical-align:0.000000px;}
.v2_c02428{vertical-align:1.439424px;}
.v1_c02428{vertical-align:33.121440px;}
.ls15_c02428{letter-spacing:-1.197504px;}
.ls8_c02428{letter-spacing:-0.793584px;}
.lsd_c02428{letter-spacing:-0.774576px;}
.lsa_c02428{letter-spacing:-0.574992px;}
.ls17_c02428{letter-spacing:-0.380160px;}
.ls16_c02428{letter-spacing:-0.375408px;}
.ls12_c02428{letter-spacing:-0.323136px;}
.ls10_c02428{letter-spacing:-0.275616px;}
.ls9_c02428{letter-spacing:-0.266112px;}
.lse_c02428{letter-spacing:-0.261360px;}
.ls6_c02428{letter-spacing:-0.242352px;}
.ls4_c02428{letter-spacing:-0.118800px;}
.ls14_c02428{letter-spacing:0.000000px;}
.ls2_c02428{letter-spacing:0.006048px;}
.ls5_c02428{letter-spacing:0.128304px;}
.lsc_c02428{letter-spacing:0.508464px;}
.ls13_c02428{letter-spacing:0.514080px;}
.lsf_c02428{letter-spacing:0.536976px;}
.lsb_c02428{letter-spacing:0.579744px;}
.ls11_c02428{letter-spacing:0.594000px;}
.ls7_c02428{letter-spacing:0.598752px;}
.ls3_c02428{letter-spacing:0.613008px;}
.ls0_c02428{letter-spacing:0.717552px;}
.ls1_c02428{letter-spacing:0.722304px;}
.sc__c02428{text-shadow:none;}
.sc0_c02428{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02428{-webkit-text-stroke:0px transparent;}
.sc0_c02428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02428{word-spacing:-15.126048px;}
.ws5_c02428{word-spacing:-12.459744px;}
.ws9_c02428{word-spacing:-12.416976px;}
.ws18_c02428{word-spacing:-2.159136px;}
.ws15_c02428{word-spacing:-1.083456px;}
.ws12_c02428{word-spacing:-1.078704px;}
.wsd_c02428{word-spacing:-0.974160px;}
.wsf_c02428{word-spacing:-0.118800px;}
.ws14_c02428{word-spacing:-0.099792px;}
.ws11_c02428{word-spacing:-0.095040px;}
.ws16_c02428{word-spacing:-0.085536px;}
.ws17_c02428{word-spacing:-0.038016px;}
.wse_c02428{word-spacing:0.000000px;}
.ws1a_c02428{word-spacing:0.014256px;}
.ws1b_c02428{word-spacing:0.019008px;}
.ws13_c02428{word-spacing:0.413424px;}
.ws10_c02428{word-spacing:0.432432px;}
.ws19_c02428{word-spacing:0.836352px;}
.ws2_c02428{word-spacing:7.080480px;}
.ws8_c02428{word-spacing:12.150864px;}
.wsa_c02428{word-spacing:30.298752px;}
.wsb_c02428{word-spacing:33.300288px;}
.ws7_c02428{word-spacing:36.143712px;}
.ws1_c02428{word-spacing:37.759392px;}
.ws0_c02428{word-spacing:38.020752px;}
.ws3_c02428{word-spacing:39.218256px;}
.ws4_c02428{word-spacing:39.902544px;}
.ws6_c02428{word-spacing:42.026688px;}
._0_c02428{margin-left:-1.948320px;}
._2_c02428{width:1.482624px;}
._7_c02428{width:2.770416px;}
._4_c02428{width:4.200768px;}
._6_c02428{width:21.179664px;}
._5_c02428{width:27.105408px;}
._1_c02428{width:50.252400px;}
._3_c02428{width:51.530688px;}
.fc0_c02428{color:rgb(0,0,0);}
.fs0_c02428{font-size:47.520000px;}
.fs1_c02428{font-size:60.480000px;}
.y0_c02428{bottom:0.000000px;}
.y1a_c02428{bottom:146.998362px;}
.y1c_c02428{bottom:186.600234px;}
.y1b_c02428{bottom:196.320450px;}
.y19_c02428{bottom:275.878542px;}
.y18_c02428{bottom:356.878758px;}
.y16_c02428{bottom:406.559730px;}
.y12_c02428{bottom:424.560306px;}
.y17_c02428{bottom:458.759262px;}
.y15_c02428{bottom:491.879514px;}
.y14_c02428{bottom:509.880090px;}
.y11_c02428{bottom:543.000342px;}
.y13_c02428{bottom:559.559874px;}
.y10_c02428{bottom:577.560450px;}
.y1d_c02428{bottom:614.280450px;}
.yc_c02428{bottom:667.559514px;}
.ye_c02428{bottom:707.160234px;}
.yd_c02428{bottom:716.880450px;}
.yb_c02428{bottom:796.439694px;}
.ya_c02428{bottom:862.319046px;}
.y9_c02428{bottom:877.438722px;}
.y7_c02428{bottom:926.759730px;}
.y3_c02428{bottom:944.760306px;}
.y8_c02428{bottom:979.319226px;}
.y6_c02428{bottom:1012.439478px;}
.y5_c02428{bottom:1030.440054px;}
.y2_c02428{bottom:1063.560306px;}
.y4_c02428{bottom:1079.759874px;}
.y1_c02428{bottom:1097.760450px;}
.yf_c02428{bottom:1134.840450px;}
.h3_c02428{height:32.530781px;}
.h1_c02428{height:41.696016px;}
.h2_c02428{height:41.812031px;}
.h5_c02428{height:54.654737px;}
.h4_c02428{height:74.817456px;}
.h0_c02428{height:1263.000000px;}
.w1_c02428{width:892.500000px;}
.w0_c02428{width:892.830000px;}
.x0_c02428{left:0.000000px;}
.xe_c02428{left:117.000000px;}
.x8_c02428{left:440.999856px;}
.x4_c02428{left:445.680576px;}
.xc_c02428{left:451.080000px;}
.x7_c02428{left:455.399604px;}
.x5_c02428{left:461.880144px;}
.x1_c02428{left:463.320000px;}
.xb_c02428{left:483.480360px;}
.x9_c02428{left:492.119496px;}
.x6_c02428{left:493.200576px;}
.xd_c02428{left:506.880360px;}
.x3_c02428{left:511.919892px;}
.x2_c02428{left:526.679604px;}
.xa_c02428{left:569.880036px;}
@media print{
.v0_c02428{vertical-align:0.000000pt;}
.v2_c02428{vertical-align:1.279488pt;}
.v1_c02428{vertical-align:29.441280pt;}
.ls15_c02428{letter-spacing:-1.064448pt;}
.ls8_c02428{letter-spacing:-0.705408pt;}
.lsd_c02428{letter-spacing:-0.688512pt;}
.lsa_c02428{letter-spacing:-0.511104pt;}
.ls17_c02428{letter-spacing:-0.337920pt;}
.ls16_c02428{letter-spacing:-0.333696pt;}
.ls12_c02428{letter-spacing:-0.287232pt;}
.ls10_c02428{letter-spacing:-0.244992pt;}
.ls9_c02428{letter-spacing:-0.236544pt;}
.lse_c02428{letter-spacing:-0.232320pt;}
.ls6_c02428{letter-spacing:-0.215424pt;}
.ls4_c02428{letter-spacing:-0.105600pt;}
.ls14_c02428{letter-spacing:0.000000pt;}
.ls2_c02428{letter-spacing:0.005376pt;}
.ls5_c02428{letter-spacing:0.114048pt;}
.lsc_c02428{letter-spacing:0.451968pt;}
.ls13_c02428{letter-spacing:0.456960pt;}
.lsf_c02428{letter-spacing:0.477312pt;}
.lsb_c02428{letter-spacing:0.515328pt;}
.ls11_c02428{letter-spacing:0.528000pt;}
.ls7_c02428{letter-spacing:0.532224pt;}
.ls3_c02428{letter-spacing:0.544896pt;}
.ls0_c02428{letter-spacing:0.637824pt;}
.ls1_c02428{letter-spacing:0.642048pt;}
.wsc_c02428{word-spacing:-13.445376pt;}
.ws5_c02428{word-spacing:-11.075328pt;}
.ws9_c02428{word-spacing:-11.037312pt;}
.ws18_c02428{word-spacing:-1.919232pt;}
.ws15_c02428{word-spacing:-0.963072pt;}
.ws12_c02428{word-spacing:-0.958848pt;}
.wsd_c02428{word-spacing:-0.865920pt;}
.wsf_c02428{word-spacing:-0.105600pt;}
.ws14_c02428{word-spacing:-0.088704pt;}
.ws11_c02428{word-spacing:-0.084480pt;}
.ws16_c02428{word-spacing:-0.076032pt;}
.ws17_c02428{word-spacing:-0.033792pt;}
.wse_c02428{word-spacing:0.000000pt;}
.ws1a_c02428{word-spacing:0.012672pt;}
.ws1b_c02428{word-spacing:0.016896pt;}
.ws13_c02428{word-spacing:0.367488pt;}
.ws10_c02428{word-spacing:0.384384pt;}
.ws19_c02428{word-spacing:0.743424pt;}
.ws2_c02428{word-spacing:6.293760pt;}
.ws8_c02428{word-spacing:10.800768pt;}
.wsa_c02428{word-spacing:26.932224pt;}
.wsb_c02428{word-spacing:29.600256pt;}
.ws7_c02428{word-spacing:32.127744pt;}
.ws1_c02428{word-spacing:33.563904pt;}
.ws0_c02428{word-spacing:33.796224pt;}
.ws3_c02428{word-spacing:34.860672pt;}
.ws4_c02428{word-spacing:35.468928pt;}
.ws6_c02428{word-spacing:37.357056pt;}
._0_c02428{margin-left:-1.731840pt;}
._2_c02428{width:1.317888pt;}
._7_c02428{width:2.462592pt;}
._4_c02428{width:3.734016pt;}
._6_c02428{width:18.826368pt;}
._5_c02428{width:24.093696pt;}
._1_c02428{width:44.668800pt;}
._3_c02428{width:45.805056pt;}
.fs0_c02428{font-size:42.240000pt;}
.fs1_c02428{font-size:53.760000pt;}
.y0_c02428{bottom:0.000000pt;}
.y1a_c02428{bottom:130.665211pt;}
.y1c_c02428{bottom:165.866875pt;}
.y1b_c02428{bottom:174.507067pt;}
.y19_c02428{bottom:245.225371pt;}
.y18_c02428{bottom:317.225563pt;}
.y16_c02428{bottom:361.386427pt;}
.y12_c02428{bottom:377.386939pt;}
.y17_c02428{bottom:407.786011pt;}
.y15_c02428{bottom:437.226235pt;}
.y14_c02428{bottom:453.226747pt;}
.y11_c02428{bottom:482.666971pt;}
.y13_c02428{bottom:497.386555pt;}
.y10_c02428{bottom:513.387067pt;}
.y1d_c02428{bottom:546.027067pt;}
.yc_c02428{bottom:593.386235pt;}
.ye_c02428{bottom:628.586875pt;}
.yd_c02428{bottom:637.227067pt;}
.yb_c02428{bottom:707.946395pt;}
.ya_c02428{bottom:766.505819pt;}
.y9_c02428{bottom:779.945531pt;}
.y7_c02428{bottom:823.786427pt;}
.y3_c02428{bottom:839.786939pt;}
.y8_c02428{bottom:870.505979pt;}
.y6_c02428{bottom:899.946203pt;}
.y5_c02428{bottom:915.946715pt;}
.y2_c02428{bottom:945.386939pt;}
.y4_c02428{bottom:959.786555pt;}
.y1_c02428{bottom:975.787067pt;}
.yf_c02428{bottom:1008.747067pt;}
.h3_c02428{height:28.916250pt;}
.h1_c02428{height:37.063125pt;}
.h2_c02428{height:37.166250pt;}
.h5_c02428{height:48.581988pt;}
.h4_c02428{height:66.504405pt;}
.h0_c02428{height:1122.666667pt;}
.w1_c02428{width:793.333333pt;}
.w0_c02428{width:793.626667pt;}
.x0_c02428{left:0.000000pt;}
.xe_c02428{left:104.000000pt;}
.x8_c02428{left:391.999872pt;}
.x4_c02428{left:396.160512pt;}
.xc_c02428{left:400.960000pt;}
.x7_c02428{left:404.799648pt;}
.x5_c02428{left:410.560128pt;}
.x1_c02428{left:411.840000pt;}
.xb_c02428{left:429.760320pt;}
.x9_c02428{left:437.439552pt;}
.x6_c02428{left:438.400512pt;}
.xd_c02428{left:450.560320pt;}
.x3_c02428{left:455.039904pt;}
.x2_c02428{left:468.159648pt;}
.xa_c02428{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02429 {
    display:none;
  }
  .loading-indicator_c02429.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02429 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02429 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02429" -> "#page-container .classname_c02429")
 */
.pf_c02429 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02429 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02429 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02429 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02429 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02429 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02429 {overflow:visible;}
  }
}
.c_c02429 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02429 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02429:after { /* webkit #35443 */
  content: '';
}
.t_c02429:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02429 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02429 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02429 { /* info for Javascript */
  display:none;
}
.l_c02429 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02429 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02429 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02429:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02429 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02429.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02429 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02429{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02429;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02429{font-family:ff1_c02429;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02429;src:url('chunks/assets/font_080ba02cbba5fa70b4ed5abc.woff2')format("woff");}.ff2_c02429{font-family:ff2_c02429;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02429;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02429{font-family:ff3_c02429;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02429{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02429{vertical-align:0.000000px;}
.v2_c02429{vertical-align:1.439424px;}
.v1_c02429{vertical-align:33.121440px;}
.ls15_c02429{letter-spacing:-1.197504px;}
.ls8_c02429{letter-spacing:-0.793584px;}
.lsa_c02429{letter-spacing:-0.574992px;}
.lsf_c02429{letter-spacing:-0.375408px;}
.ls11_c02429{letter-spacing:-0.275616px;}
.ls9_c02429{letter-spacing:-0.266112px;}
.lse_c02429{letter-spacing:-0.261360px;}
.ls6_c02429{letter-spacing:-0.242352px;}
.ls4_c02429{letter-spacing:-0.118800px;}
.ls14_c02429{letter-spacing:0.000000px;}
.ls1_c02429{letter-spacing:0.006048px;}
.ls5_c02429{letter-spacing:0.128304px;}
.lsc_c02429{letter-spacing:0.508464px;}
.ls13_c02429{letter-spacing:0.514080px;}
.ls10_c02429{letter-spacing:0.536976px;}
.lsb_c02429{letter-spacing:0.579744px;}
.ls12_c02429{letter-spacing:0.594000px;}
.ls7_c02429{letter-spacing:0.598752px;}
.ls2_c02429{letter-spacing:0.613008px;}
.lsd_c02429{letter-spacing:0.684288px;}
.ls0_c02429{letter-spacing:0.717552px;}
.ls3_c02429{letter-spacing:0.722304px;}
.sc__c02429{text-shadow:none;}
.sc0_c02429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02429{-webkit-text-stroke:0px transparent;}
.sc0_c02429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02429{word-spacing:-15.126048px;}
.wsd_c02429{word-spacing:-12.474000px;}
.ws5_c02429{word-spacing:-12.459744px;}
.ws8_c02429{word-spacing:-12.416976px;}
.ws19_c02429{word-spacing:-2.159136px;}
.ws18_c02429{word-spacing:-1.083456px;}
.ws13_c02429{word-spacing:-1.078704px;}
.ws14_c02429{word-spacing:-1.045440px;}
.wse_c02429{word-spacing:-0.974160px;}
.ws10_c02429{word-spacing:-0.118800px;}
.ws15_c02429{word-spacing:-0.099792px;}
.ws12_c02429{word-spacing:-0.095040px;}
.ws17_c02429{word-spacing:-0.085536px;}
.wsf_c02429{word-spacing:0.000000px;}
.ws16_c02429{word-spacing:0.014256px;}
.ws11_c02429{word-spacing:0.432432px;}
.ws1a_c02429{word-spacing:0.836352px;}
.ws2_c02429{word-spacing:7.080480px;}
.ws9_c02429{word-spacing:30.298752px;}
.wsa_c02429{word-spacing:33.300288px;}
.ws7_c02429{word-spacing:36.143712px;}
.wsc_c02429{word-spacing:36.742464px;}
.ws1_c02429{word-spacing:37.759392px;}
.ws0_c02429{word-spacing:38.020752px;}
.ws3_c02429{word-spacing:39.218256px;}
.ws4_c02429{word-spacing:39.902544px;}
.ws6_c02429{word-spacing:42.026688px;}
._0_c02429{margin-left:-1.948320px;}
._2_c02429{width:1.482624px;}
._5_c02429{width:2.770416px;}
._4_c02429{width:4.200768px;}
._1_c02429{width:50.252400px;}
._3_c02429{width:51.530688px;}
.fc0_c02429{color:rgb(0,0,0);}
.fs0_c02429{font-size:47.520000px;}
.fs1_c02429{font-size:60.480000px;}
.y0_c02429{bottom:0.000000px;}
.y19_c02429{bottom:146.998362px;}
.y1b_c02429{bottom:186.600234px;}
.y1a_c02429{bottom:196.320450px;}
.y18_c02429{bottom:275.878542px;}
.y17_c02429{bottom:356.878758px;}
.y15_c02429{bottom:406.559730px;}
.y11_c02429{bottom:424.560306px;}
.y16_c02429{bottom:458.759262px;}
.y14_c02429{bottom:491.879514px;}
.y13_c02429{bottom:509.880090px;}
.y10_c02429{bottom:543.000342px;}
.y12_c02429{bottom:559.559874px;}
.yf_c02429{bottom:577.560450px;}
.y1c_c02429{bottom:614.280450px;}
.yb_c02429{bottom:667.558326px;}
.yd_c02429{bottom:707.160234px;}
.yc_c02429{bottom:716.880450px;}
.ya_c02429{bottom:796.438506px;}
.y9_c02429{bottom:877.438722px;}
.y7_c02429{bottom:926.759730px;}
.y3_c02429{bottom:944.760306px;}
.y8_c02429{bottom:979.319226px;}
.y6_c02429{bottom:1012.439478px;}
.y5_c02429{bottom:1030.440054px;}
.y2_c02429{bottom:1063.560306px;}
.y4_c02429{bottom:1079.759874px;}
.y1_c02429{bottom:1097.760450px;}
.ye_c02429{bottom:1134.840450px;}
.h3_c02429{height:32.530781px;}
.h1_c02429{height:41.696016px;}
.h2_c02429{height:41.812031px;}
.h5_c02429{height:54.654737px;}
.h4_c02429{height:74.817456px;}
.h0_c02429{height:1263.000000px;}
.w1_c02429{width:892.500000px;}
.w0_c02429{width:892.830000px;}
.x0_c02429{left:0.000000px;}
.xd_c02429{left:117.000000px;}
.x8_c02429{left:440.999856px;}
.x4_c02429{left:445.680576px;}
.xb_c02429{left:451.080000px;}
.x7_c02429{left:455.399604px;}
.x5_c02429{left:461.880144px;}
.x1_c02429{left:463.320000px;}
.xa_c02429{left:483.480360px;}
.x9_c02429{left:492.119496px;}
.x6_c02429{left:493.200576px;}
.xc_c02429{left:506.880360px;}
.x3_c02429{left:511.919892px;}
.x2_c02429{left:526.679604px;}
@media print{
.v0_c02429{vertical-align:0.000000pt;}
.v2_c02429{vertical-align:1.279488pt;}
.v1_c02429{vertical-align:29.441280pt;}
.ls15_c02429{letter-spacing:-1.064448pt;}
.ls8_c02429{letter-spacing:-0.705408pt;}
.lsa_c02429{letter-spacing:-0.511104pt;}
.lsf_c02429{letter-spacing:-0.333696pt;}
.ls11_c02429{letter-spacing:-0.244992pt;}
.ls9_c02429{letter-spacing:-0.236544pt;}
.lse_c02429{letter-spacing:-0.232320pt;}
.ls6_c02429{letter-spacing:-0.215424pt;}
.ls4_c02429{letter-spacing:-0.105600pt;}
.ls14_c02429{letter-spacing:0.000000pt;}
.ls1_c02429{letter-spacing:0.005376pt;}
.ls5_c02429{letter-spacing:0.114048pt;}
.lsc_c02429{letter-spacing:0.451968pt;}
.ls13_c02429{letter-spacing:0.456960pt;}
.ls10_c02429{letter-spacing:0.477312pt;}
.lsb_c02429{letter-spacing:0.515328pt;}
.ls12_c02429{letter-spacing:0.528000pt;}
.ls7_c02429{letter-spacing:0.532224pt;}
.ls2_c02429{letter-spacing:0.544896pt;}
.lsd_c02429{letter-spacing:0.608256pt;}
.ls0_c02429{letter-spacing:0.637824pt;}
.ls3_c02429{letter-spacing:0.642048pt;}
.wsb_c02429{word-spacing:-13.445376pt;}
.wsd_c02429{word-spacing:-11.088000pt;}
.ws5_c02429{word-spacing:-11.075328pt;}
.ws8_c02429{word-spacing:-11.037312pt;}
.ws19_c02429{word-spacing:-1.919232pt;}
.ws18_c02429{word-spacing:-0.963072pt;}
.ws13_c02429{word-spacing:-0.958848pt;}
.ws14_c02429{word-spacing:-0.929280pt;}
.wse_c02429{word-spacing:-0.865920pt;}
.ws10_c02429{word-spacing:-0.105600pt;}
.ws15_c02429{word-spacing:-0.088704pt;}
.ws12_c02429{word-spacing:-0.084480pt;}
.ws17_c02429{word-spacing:-0.076032pt;}
.wsf_c02429{word-spacing:0.000000pt;}
.ws16_c02429{word-spacing:0.012672pt;}
.ws11_c02429{word-spacing:0.384384pt;}
.ws1a_c02429{word-spacing:0.743424pt;}
.ws2_c02429{word-spacing:6.293760pt;}
.ws9_c02429{word-spacing:26.932224pt;}
.wsa_c02429{word-spacing:29.600256pt;}
.ws7_c02429{word-spacing:32.127744pt;}
.wsc_c02429{word-spacing:32.659968pt;}
.ws1_c02429{word-spacing:33.563904pt;}
.ws0_c02429{word-spacing:33.796224pt;}
.ws3_c02429{word-spacing:34.860672pt;}
.ws4_c02429{word-spacing:35.468928pt;}
.ws6_c02429{word-spacing:37.357056pt;}
._0_c02429{margin-left:-1.731840pt;}
._2_c02429{width:1.317888pt;}
._5_c02429{width:2.462592pt;}
._4_c02429{width:3.734016pt;}
._1_c02429{width:44.668800pt;}
._3_c02429{width:45.805056pt;}
.fs0_c02429{font-size:42.240000pt;}
.fs1_c02429{font-size:53.760000pt;}
.y0_c02429{bottom:0.000000pt;}
.y19_c02429{bottom:130.665211pt;}
.y1b_c02429{bottom:165.866875pt;}
.y1a_c02429{bottom:174.507067pt;}
.y18_c02429{bottom:245.225371pt;}
.y17_c02429{bottom:317.225563pt;}
.y15_c02429{bottom:361.386427pt;}
.y11_c02429{bottom:377.386939pt;}
.y16_c02429{bottom:407.786011pt;}
.y14_c02429{bottom:437.226235pt;}
.y13_c02429{bottom:453.226747pt;}
.y10_c02429{bottom:482.666971pt;}
.y12_c02429{bottom:497.386555pt;}
.yf_c02429{bottom:513.387067pt;}
.y1c_c02429{bottom:546.027067pt;}
.yb_c02429{bottom:593.385179pt;}
.yd_c02429{bottom:628.586875pt;}
.yc_c02429{bottom:637.227067pt;}
.ya_c02429{bottom:707.945339pt;}
.y9_c02429{bottom:779.945531pt;}
.y7_c02429{bottom:823.786427pt;}
.y3_c02429{bottom:839.786939pt;}
.y8_c02429{bottom:870.505979pt;}
.y6_c02429{bottom:899.946203pt;}
.y5_c02429{bottom:915.946715pt;}
.y2_c02429{bottom:945.386939pt;}
.y4_c02429{bottom:959.786555pt;}
.y1_c02429{bottom:975.787067pt;}
.ye_c02429{bottom:1008.747067pt;}
.h3_c02429{height:28.916250pt;}
.h1_c02429{height:37.063125pt;}
.h2_c02429{height:37.166250pt;}
.h5_c02429{height:48.581988pt;}
.h4_c02429{height:66.504405pt;}
.h0_c02429{height:1122.666667pt;}
.w1_c02429{width:793.333333pt;}
.w0_c02429{width:793.626667pt;}
.x0_c02429{left:0.000000pt;}
.xd_c02429{left:104.000000pt;}
.x8_c02429{left:391.999872pt;}
.x4_c02429{left:396.160512pt;}
.xb_c02429{left:400.960000pt;}
.x7_c02429{left:404.799648pt;}
.x5_c02429{left:410.560128pt;}
.x1_c02429{left:411.840000pt;}
.xa_c02429{left:429.760320pt;}
.x9_c02429{left:437.439552pt;}
.x6_c02429{left:438.400512pt;}
.xc_c02429{left:450.560320pt;}
.x3_c02429{left:455.039904pt;}
.x2_c02429{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02430 {
    display:none;
  }
  .loading-indicator_c02430.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02430 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02430 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02430" -> "#page-container .classname_c02430")
 */
.pf_c02430 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02430 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02430 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02430 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02430 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02430 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02430 {overflow:visible;}
  }
}
.c_c02430 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02430 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02430:after { /* webkit #35443 */
  content: '';
}
.t_c02430:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02430 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02430 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02430 { /* info for Javascript */
  display:none;
}
.l_c02430 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02430 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02430 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02430:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02430 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02430.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02430 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02430{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02430;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02430{font-family:ff1_c02430;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02430;src:url('chunks/assets/font_3865fd15831f8b1ced4bb9b1.woff2')format("woff");}.ff2_c02430{font-family:ff2_c02430;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02430;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02430{font-family:ff3_c02430;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02430{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02430{vertical-align:0.000000px;}
.v1_c02430{vertical-align:1.439424px;}
.lsd_c02430{letter-spacing:-1.197504px;}
.ls8_c02430{letter-spacing:-0.793584px;}
.lsa_c02430{letter-spacing:-0.574992px;}
.ls14_c02430{letter-spacing:-0.375408px;}
.ls10_c02430{letter-spacing:-0.275616px;}
.ls9_c02430{letter-spacing:-0.266112px;}
.lse_c02430{letter-spacing:-0.261360px;}
.ls6_c02430{letter-spacing:-0.242352px;}
.ls4_c02430{letter-spacing:-0.118800px;}
.ls13_c02430{letter-spacing:0.000000px;}
.ls1_c02430{letter-spacing:0.006048px;}
.ls5_c02430{letter-spacing:0.128304px;}
.lsc_c02430{letter-spacing:0.508464px;}
.ls12_c02430{letter-spacing:0.514080px;}
.lsf_c02430{letter-spacing:0.536976px;}
.lsb_c02430{letter-spacing:0.579744px;}
.ls11_c02430{letter-spacing:0.594000px;}
.ls7_c02430{letter-spacing:0.598752px;}
.ls3_c02430{letter-spacing:0.613008px;}
.ls0_c02430{letter-spacing:0.717552px;}
.ls2_c02430{letter-spacing:0.722304px;}
.sc__c02430{text-shadow:none;}
.sc0_c02430{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02430{-webkit-text-stroke:0px transparent;}
.sc0_c02430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02430{word-spacing:-15.126048px;}
.ws9_c02430{word-spacing:-12.474000px;}
.ws7_c02430{word-spacing:-12.459744px;}
.ws8_c02430{word-spacing:-12.416976px;}
.ws16_c02430{word-spacing:-2.159136px;}
.ws17_c02430{word-spacing:-1.083456px;}
.ws12_c02430{word-spacing:-1.078704px;}
.wsd_c02430{word-spacing:-0.974160px;}
.wsf_c02430{word-spacing:-0.118800px;}
.ws14_c02430{word-spacing:-0.099792px;}
.ws11_c02430{word-spacing:-0.095040px;}
.ws15_c02430{word-spacing:-0.085536px;}
.wse_c02430{word-spacing:0.000000px;}
.ws18_c02430{word-spacing:0.014256px;}
.ws10_c02430{word-spacing:0.432432px;}
.ws13_c02430{word-spacing:0.836352px;}
.ws2_c02430{word-spacing:7.080480px;}
.wsa_c02430{word-spacing:33.300288px;}
.wsc_c02430{word-spacing:36.143712px;}
.ws5_c02430{word-spacing:36.742464px;}
.ws1_c02430{word-spacing:37.759392px;}
.ws0_c02430{word-spacing:38.020752px;}
.ws3_c02430{word-spacing:39.218256px;}
.ws4_c02430{word-spacing:39.902544px;}
.ws6_c02430{word-spacing:42.026688px;}
._0_c02430{margin-left:-1.948320px;}
._2_c02430{width:1.482624px;}
._5_c02430{width:2.770416px;}
._4_c02430{width:4.200768px;}
._1_c02430{width:50.252400px;}
._3_c02430{width:51.530688px;}
.fc0_c02430{color:rgb(0,0,0);}
.fs0_c02430{font-size:47.520000px;}
.fs1_c02430{font-size:60.480000px;}
.y0_c02430{bottom:0.000000px;}
.y19_c02430{bottom:146.998362px;}
.y1b_c02430{bottom:186.600234px;}
.y1a_c02430{bottom:196.320450px;}
.y18_c02430{bottom:275.878542px;}
.y17_c02430{bottom:356.878758px;}
.y15_c02430{bottom:406.559730px;}
.y11_c02430{bottom:424.560306px;}
.y16_c02430{bottom:458.759262px;}
.y14_c02430{bottom:491.879514px;}
.y13_c02430{bottom:509.880090px;}
.y10_c02430{bottom:543.000342px;}
.y12_c02430{bottom:559.559874px;}
.yf_c02430{bottom:577.560450px;}
.y1c_c02430{bottom:614.280450px;}
.yb_c02430{bottom:667.558326px;}
.yd_c02430{bottom:707.160234px;}
.yc_c02430{bottom:716.880450px;}
.ya_c02430{bottom:796.438506px;}
.y9_c02430{bottom:877.438722px;}
.y7_c02430{bottom:926.759730px;}
.y3_c02430{bottom:944.760306px;}
.y8_c02430{bottom:979.319226px;}
.y6_c02430{bottom:1012.439478px;}
.y5_c02430{bottom:1030.440054px;}
.y2_c02430{bottom:1063.560306px;}
.y4_c02430{bottom:1079.759874px;}
.y1_c02430{bottom:1097.760450px;}
.ye_c02430{bottom:1134.840450px;}
.h3_c02430{height:32.530781px;}
.h1_c02430{height:41.696016px;}
.h2_c02430{height:41.812031px;}
.h4_c02430{height:54.654737px;}
.h0_c02430{height:1263.000000px;}
.w1_c02430{width:892.500000px;}
.w0_c02430{width:892.830000px;}
.x0_c02430{left:0.000000px;}
.xd_c02430{left:117.000000px;}
.x8_c02430{left:440.999856px;}
.x4_c02430{left:445.680576px;}
.xb_c02430{left:451.080000px;}
.x7_c02430{left:455.399604px;}
.x5_c02430{left:461.880144px;}
.x1_c02430{left:463.320000px;}
.xa_c02430{left:483.480360px;}
.x9_c02430{left:492.119496px;}
.x6_c02430{left:493.200576px;}
.xc_c02430{left:506.880360px;}
.x3_c02430{left:511.919892px;}
.x2_c02430{left:526.679604px;}
@media print{
.v0_c02430{vertical-align:0.000000pt;}
.v1_c02430{vertical-align:1.279488pt;}
.lsd_c02430{letter-spacing:-1.064448pt;}
.ls8_c02430{letter-spacing:-0.705408pt;}
.lsa_c02430{letter-spacing:-0.511104pt;}
.ls14_c02430{letter-spacing:-0.333696pt;}
.ls10_c02430{letter-spacing:-0.244992pt;}
.ls9_c02430{letter-spacing:-0.236544pt;}
.lse_c02430{letter-spacing:-0.232320pt;}
.ls6_c02430{letter-spacing:-0.215424pt;}
.ls4_c02430{letter-spacing:-0.105600pt;}
.ls13_c02430{letter-spacing:0.000000pt;}
.ls1_c02430{letter-spacing:0.005376pt;}
.ls5_c02430{letter-spacing:0.114048pt;}
.lsc_c02430{letter-spacing:0.451968pt;}
.ls12_c02430{letter-spacing:0.456960pt;}
.lsf_c02430{letter-spacing:0.477312pt;}
.lsb_c02430{letter-spacing:0.515328pt;}
.ls11_c02430{letter-spacing:0.528000pt;}
.ls7_c02430{letter-spacing:0.532224pt;}
.ls3_c02430{letter-spacing:0.544896pt;}
.ls0_c02430{letter-spacing:0.637824pt;}
.ls2_c02430{letter-spacing:0.642048pt;}
.wsb_c02430{word-spacing:-13.445376pt;}
.ws9_c02430{word-spacing:-11.088000pt;}
.ws7_c02430{word-spacing:-11.075328pt;}
.ws8_c02430{word-spacing:-11.037312pt;}
.ws16_c02430{word-spacing:-1.919232pt;}
.ws17_c02430{word-spacing:-0.963072pt;}
.ws12_c02430{word-spacing:-0.958848pt;}
.wsd_c02430{word-spacing:-0.865920pt;}
.wsf_c02430{word-spacing:-0.105600pt;}
.ws14_c02430{word-spacing:-0.088704pt;}
.ws11_c02430{word-spacing:-0.084480pt;}
.ws15_c02430{word-spacing:-0.076032pt;}
.wse_c02430{word-spacing:0.000000pt;}
.ws18_c02430{word-spacing:0.012672pt;}
.ws10_c02430{word-spacing:0.384384pt;}
.ws13_c02430{word-spacing:0.743424pt;}
.ws2_c02430{word-spacing:6.293760pt;}
.wsa_c02430{word-spacing:29.600256pt;}
.wsc_c02430{word-spacing:32.127744pt;}
.ws5_c02430{word-spacing:32.659968pt;}
.ws1_c02430{word-spacing:33.563904pt;}
.ws0_c02430{word-spacing:33.796224pt;}
.ws3_c02430{word-spacing:34.860672pt;}
.ws4_c02430{word-spacing:35.468928pt;}
.ws6_c02430{word-spacing:37.357056pt;}
._0_c02430{margin-left:-1.731840pt;}
._2_c02430{width:1.317888pt;}
._5_c02430{width:2.462592pt;}
._4_c02430{width:3.734016pt;}
._1_c02430{width:44.668800pt;}
._3_c02430{width:45.805056pt;}
.fs0_c02430{font-size:42.240000pt;}
.fs1_c02430{font-size:53.760000pt;}
.y0_c02430{bottom:0.000000pt;}
.y19_c02430{bottom:130.665211pt;}
.y1b_c02430{bottom:165.866875pt;}
.y1a_c02430{bottom:174.507067pt;}
.y18_c02430{bottom:245.225371pt;}
.y17_c02430{bottom:317.225563pt;}
.y15_c02430{bottom:361.386427pt;}
.y11_c02430{bottom:377.386939pt;}
.y16_c02430{bottom:407.786011pt;}
.y14_c02430{bottom:437.226235pt;}
.y13_c02430{bottom:453.226747pt;}
.y10_c02430{bottom:482.666971pt;}
.y12_c02430{bottom:497.386555pt;}
.yf_c02430{bottom:513.387067pt;}
.y1c_c02430{bottom:546.027067pt;}
.yb_c02430{bottom:593.385179pt;}
.yd_c02430{bottom:628.586875pt;}
.yc_c02430{bottom:637.227067pt;}
.ya_c02430{bottom:707.945339pt;}
.y9_c02430{bottom:779.945531pt;}
.y7_c02430{bottom:823.786427pt;}
.y3_c02430{bottom:839.786939pt;}
.y8_c02430{bottom:870.505979pt;}
.y6_c02430{bottom:899.946203pt;}
.y5_c02430{bottom:915.946715pt;}
.y2_c02430{bottom:945.386939pt;}
.y4_c02430{bottom:959.786555pt;}
.y1_c02430{bottom:975.787067pt;}
.ye_c02430{bottom:1008.747067pt;}
.h3_c02430{height:28.916250pt;}
.h1_c02430{height:37.063125pt;}
.h2_c02430{height:37.166250pt;}
.h4_c02430{height:48.581988pt;}
.h0_c02430{height:1122.666667pt;}
.w1_c02430{width:793.333333pt;}
.w0_c02430{width:793.626667pt;}
.x0_c02430{left:0.000000pt;}
.xd_c02430{left:104.000000pt;}
.x8_c02430{left:391.999872pt;}
.x4_c02430{left:396.160512pt;}
.xb_c02430{left:400.960000pt;}
.x7_c02430{left:404.799648pt;}
.x5_c02430{left:410.560128pt;}
.x1_c02430{left:411.840000pt;}
.xa_c02430{left:429.760320pt;}
.x9_c02430{left:437.439552pt;}
.x6_c02430{left:438.400512pt;}
.xc_c02430{left:450.560320pt;}
.x3_c02430{left:455.039904pt;}
.x2_c02430{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02431 {
    display:none;
  }
  .loading-indicator_c02431.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02431 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02431 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02431" -> "#page-container .classname_c02431")
 */
.pf_c02431 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02431 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02431.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02431 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02431 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02431 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02431 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02431 {overflow:visible;}
  }
}
.c_c02431 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02431 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02431:after { /* webkit #35443 */
  content: '';
}
.t_c02431:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02431 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02431 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02431 { /* info for Javascript */
  display:none;
}
.l_c02431 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02431 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02431 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02431:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02431 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02431.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02431.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02431 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02431{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02431;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02431{font-family:ff1_c02431;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02431;src:url('chunks/assets/font_c3dd82c60b5c724823948c3e.woff2')format("woff");}.ff2_c02431{font-family:ff2_c02431;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02431;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02431{font-family:ff3_c02431;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02431{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02431{vertical-align:0.000000px;}
.v1_c02431{vertical-align:1.439424px;}
.lsd_c02431{letter-spacing:-1.197504px;}
.ls8_c02431{letter-spacing:-0.793584px;}
.lsa_c02431{letter-spacing:-0.574992px;}
.ls14_c02431{letter-spacing:-0.375408px;}
.ls10_c02431{letter-spacing:-0.275616px;}
.ls9_c02431{letter-spacing:-0.266112px;}
.lse_c02431{letter-spacing:-0.261360px;}
.ls6_c02431{letter-spacing:-0.242352px;}
.ls4_c02431{letter-spacing:-0.118800px;}
.ls13_c02431{letter-spacing:0.000000px;}
.ls1_c02431{letter-spacing:0.006048px;}
.ls5_c02431{letter-spacing:0.128304px;}
.lsc_c02431{letter-spacing:0.508464px;}
.ls12_c02431{letter-spacing:0.514080px;}
.lsf_c02431{letter-spacing:0.536976px;}
.lsb_c02431{letter-spacing:0.579744px;}
.ls11_c02431{letter-spacing:0.594000px;}
.ls7_c02431{letter-spacing:0.598752px;}
.ls3_c02431{letter-spacing:0.613008px;}
.ls0_c02431{letter-spacing:0.717552px;}
.ls2_c02431{letter-spacing:0.722304px;}
.sc__c02431{text-shadow:none;}
.sc0_c02431{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02431{-webkit-text-stroke:0px transparent;}
.sc0_c02431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02431{word-spacing:-15.126048px;}
.ws9_c02431{word-spacing:-12.474000px;}
.ws7_c02431{word-spacing:-12.459744px;}
.ws8_c02431{word-spacing:-12.416976px;}
.ws16_c02431{word-spacing:-2.159136px;}
.ws17_c02431{word-spacing:-1.083456px;}
.ws12_c02431{word-spacing:-1.078704px;}
.wsd_c02431{word-spacing:-0.974160px;}
.wsf_c02431{word-spacing:-0.118800px;}
.ws14_c02431{word-spacing:-0.099792px;}
.ws11_c02431{word-spacing:-0.095040px;}
.ws15_c02431{word-spacing:-0.085536px;}
.wse_c02431{word-spacing:0.000000px;}
.ws18_c02431{word-spacing:0.014256px;}
.ws10_c02431{word-spacing:0.432432px;}
.ws13_c02431{word-spacing:0.836352px;}
.ws2_c02431{word-spacing:7.080480px;}
.wsa_c02431{word-spacing:33.300288px;}
.wsc_c02431{word-spacing:36.143712px;}
.ws5_c02431{word-spacing:36.742464px;}
.ws1_c02431{word-spacing:37.759392px;}
.ws0_c02431{word-spacing:38.020752px;}
.ws3_c02431{word-spacing:39.218256px;}
.ws4_c02431{word-spacing:39.902544px;}
.ws6_c02431{word-spacing:42.026688px;}
._0_c02431{margin-left:-1.948320px;}
._2_c02431{width:1.482624px;}
._5_c02431{width:2.770416px;}
._4_c02431{width:4.200768px;}
._1_c02431{width:50.252400px;}
._3_c02431{width:51.530688px;}
.fc0_c02431{color:rgb(0,0,0);}
.fs0_c02431{font-size:47.520000px;}
.fs1_c02431{font-size:60.480000px;}
.y0_c02431{bottom:0.000000px;}
.y19_c02431{bottom:146.998362px;}
.y1b_c02431{bottom:186.600234px;}
.y1a_c02431{bottom:196.320450px;}
.y18_c02431{bottom:275.878542px;}
.y17_c02431{bottom:356.878758px;}
.y15_c02431{bottom:406.559730px;}
.y11_c02431{bottom:424.560306px;}
.y16_c02431{bottom:458.759262px;}
.y14_c02431{bottom:491.879514px;}
.y13_c02431{bottom:509.880090px;}
.y10_c02431{bottom:543.000342px;}
.y12_c02431{bottom:559.559874px;}
.yf_c02431{bottom:577.560450px;}
.y1c_c02431{bottom:614.280450px;}
.yb_c02431{bottom:667.558326px;}
.yd_c02431{bottom:707.160234px;}
.yc_c02431{bottom:716.880450px;}
.ya_c02431{bottom:796.438506px;}
.y9_c02431{bottom:877.438722px;}
.y7_c02431{bottom:926.759730px;}
.y3_c02431{bottom:944.760306px;}
.y8_c02431{bottom:979.319226px;}
.y6_c02431{bottom:1012.439478px;}
.y5_c02431{bottom:1030.440054px;}
.y2_c02431{bottom:1063.560306px;}
.y4_c02431{bottom:1079.759874px;}
.y1_c02431{bottom:1097.760450px;}
.ye_c02431{bottom:1134.840450px;}
.h3_c02431{height:32.530781px;}
.h1_c02431{height:41.696016px;}
.h2_c02431{height:41.812031px;}
.h4_c02431{height:54.654737px;}
.h0_c02431{height:1263.000000px;}
.w1_c02431{width:892.500000px;}
.w0_c02431{width:892.830000px;}
.x0_c02431{left:0.000000px;}
.xd_c02431{left:117.000000px;}
.x8_c02431{left:440.999856px;}
.x4_c02431{left:445.680576px;}
.xb_c02431{left:451.080000px;}
.x7_c02431{left:455.399604px;}
.x5_c02431{left:461.880144px;}
.x1_c02431{left:463.320000px;}
.xa_c02431{left:483.480360px;}
.x9_c02431{left:492.119496px;}
.x6_c02431{left:493.200576px;}
.xc_c02431{left:506.880360px;}
.x3_c02431{left:511.919892px;}
.x2_c02431{left:526.679604px;}
@media print{
.v0_c02431{vertical-align:0.000000pt;}
.v1_c02431{vertical-align:1.279488pt;}
.lsd_c02431{letter-spacing:-1.064448pt;}
.ls8_c02431{letter-spacing:-0.705408pt;}
.lsa_c02431{letter-spacing:-0.511104pt;}
.ls14_c02431{letter-spacing:-0.333696pt;}
.ls10_c02431{letter-spacing:-0.244992pt;}
.ls9_c02431{letter-spacing:-0.236544pt;}
.lse_c02431{letter-spacing:-0.232320pt;}
.ls6_c02431{letter-spacing:-0.215424pt;}
.ls4_c02431{letter-spacing:-0.105600pt;}
.ls13_c02431{letter-spacing:0.000000pt;}
.ls1_c02431{letter-spacing:0.005376pt;}
.ls5_c02431{letter-spacing:0.114048pt;}
.lsc_c02431{letter-spacing:0.451968pt;}
.ls12_c02431{letter-spacing:0.456960pt;}
.lsf_c02431{letter-spacing:0.477312pt;}
.lsb_c02431{letter-spacing:0.515328pt;}
.ls11_c02431{letter-spacing:0.528000pt;}
.ls7_c02431{letter-spacing:0.532224pt;}
.ls3_c02431{letter-spacing:0.544896pt;}
.ls0_c02431{letter-spacing:0.637824pt;}
.ls2_c02431{letter-spacing:0.642048pt;}
.wsb_c02431{word-spacing:-13.445376pt;}
.ws9_c02431{word-spacing:-11.088000pt;}
.ws7_c02431{word-spacing:-11.075328pt;}
.ws8_c02431{word-spacing:-11.037312pt;}
.ws16_c02431{word-spacing:-1.919232pt;}
.ws17_c02431{word-spacing:-0.963072pt;}
.ws12_c02431{word-spacing:-0.958848pt;}
.wsd_c02431{word-spacing:-0.865920pt;}
.wsf_c02431{word-spacing:-0.105600pt;}
.ws14_c02431{word-spacing:-0.088704pt;}
.ws11_c02431{word-spacing:-0.084480pt;}
.ws15_c02431{word-spacing:-0.076032pt;}
.wse_c02431{word-spacing:0.000000pt;}
.ws18_c02431{word-spacing:0.012672pt;}
.ws10_c02431{word-spacing:0.384384pt;}
.ws13_c02431{word-spacing:0.743424pt;}
.ws2_c02431{word-spacing:6.293760pt;}
.wsa_c02431{word-spacing:29.600256pt;}
.wsc_c02431{word-spacing:32.127744pt;}
.ws5_c02431{word-spacing:32.659968pt;}
.ws1_c02431{word-spacing:33.563904pt;}
.ws0_c02431{word-spacing:33.796224pt;}
.ws3_c02431{word-spacing:34.860672pt;}
.ws4_c02431{word-spacing:35.468928pt;}
.ws6_c02431{word-spacing:37.357056pt;}
._0_c02431{margin-left:-1.731840pt;}
._2_c02431{width:1.317888pt;}
._5_c02431{width:2.462592pt;}
._4_c02431{width:3.734016pt;}
._1_c02431{width:44.668800pt;}
._3_c02431{width:45.805056pt;}
.fs0_c02431{font-size:42.240000pt;}
.fs1_c02431{font-size:53.760000pt;}
.y0_c02431{bottom:0.000000pt;}
.y19_c02431{bottom:130.665211pt;}
.y1b_c02431{bottom:165.866875pt;}
.y1a_c02431{bottom:174.507067pt;}
.y18_c02431{bottom:245.225371pt;}
.y17_c02431{bottom:317.225563pt;}
.y15_c02431{bottom:361.386427pt;}
.y11_c02431{bottom:377.386939pt;}
.y16_c02431{bottom:407.786011pt;}
.y14_c02431{bottom:437.226235pt;}
.y13_c02431{bottom:453.226747pt;}
.y10_c02431{bottom:482.666971pt;}
.y12_c02431{bottom:497.386555pt;}
.yf_c02431{bottom:513.387067pt;}
.y1c_c02431{bottom:546.027067pt;}
.yb_c02431{bottom:593.385179pt;}
.yd_c02431{bottom:628.586875pt;}
.yc_c02431{bottom:637.227067pt;}
.ya_c02431{bottom:707.945339pt;}
.y9_c02431{bottom:779.945531pt;}
.y7_c02431{bottom:823.786427pt;}
.y3_c02431{bottom:839.786939pt;}
.y8_c02431{bottom:870.505979pt;}
.y6_c02431{bottom:899.946203pt;}
.y5_c02431{bottom:915.946715pt;}
.y2_c02431{bottom:945.386939pt;}
.y4_c02431{bottom:959.786555pt;}
.y1_c02431{bottom:975.787067pt;}
.ye_c02431{bottom:1008.747067pt;}
.h3_c02431{height:28.916250pt;}
.h1_c02431{height:37.063125pt;}
.h2_c02431{height:37.166250pt;}
.h4_c02431{height:48.581988pt;}
.h0_c02431{height:1122.666667pt;}
.w1_c02431{width:793.333333pt;}
.w0_c02431{width:793.626667pt;}
.x0_c02431{left:0.000000pt;}
.xd_c02431{left:104.000000pt;}
.x8_c02431{left:391.999872pt;}
.x4_c02431{left:396.160512pt;}
.xb_c02431{left:400.960000pt;}
.x7_c02431{left:404.799648pt;}
.x5_c02431{left:410.560128pt;}
.x1_c02431{left:411.840000pt;}
.xa_c02431{left:429.760320pt;}
.x9_c02431{left:437.439552pt;}
.x6_c02431{left:438.400512pt;}
.xc_c02431{left:450.560320pt;}
.x3_c02431{left:455.039904pt;}
.x2_c02431{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02432 {
    display:none;
  }
  .loading-indicator_c02432.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02432 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02432 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02432" -> "#page-container .classname_c02432")
 */
.pf_c02432 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02432 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02432.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02432 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02432 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02432 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02432 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02432 {overflow:visible;}
  }
}
.c_c02432 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02432 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02432:after { /* webkit #35443 */
  content: '';
}
.t_c02432:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02432 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02432 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02432 { /* info for Javascript */
  display:none;
}
.l_c02432 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02432 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02432 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02432:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02432 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02432.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02432.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02432 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02432{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02432;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02432{font-family:ff1_c02432;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02432;src:url('chunks/assets/font_5753c2fa6edb8c5d0b1b7cc2.woff2')format("woff");}.ff2_c02432{font-family:ff2_c02432;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02432;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02432{font-family:ff3_c02432;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02432{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02432{vertical-align:0.000000px;}
.v2_c02432{vertical-align:1.439424px;}
.v1_c02432{vertical-align:33.121440px;}
.ls8_c02432{letter-spacing:-0.793584px;}
.lsd_c02432{letter-spacing:-0.774576px;}
.lsa_c02432{letter-spacing:-0.574992px;}
.ls15_c02432{letter-spacing:-0.375408px;}
.ls12_c02432{letter-spacing:-0.323136px;}
.ls10_c02432{letter-spacing:-0.275616px;}
.ls9_c02432{letter-spacing:-0.266112px;}
.lse_c02432{letter-spacing:-0.261360px;}
.ls6_c02432{letter-spacing:-0.242352px;}
.ls4_c02432{letter-spacing:-0.118800px;}
.ls14_c02432{letter-spacing:0.000000px;}
.ls2_c02432{letter-spacing:0.006048px;}
.ls5_c02432{letter-spacing:0.128304px;}
.lsc_c02432{letter-spacing:0.508464px;}
.ls13_c02432{letter-spacing:0.514080px;}
.lsf_c02432{letter-spacing:0.536976px;}
.lsb_c02432{letter-spacing:0.579744px;}
.ls11_c02432{letter-spacing:0.594000px;}
.ls7_c02432{letter-spacing:0.598752px;}
.ls3_c02432{letter-spacing:0.613008px;}
.ls0_c02432{letter-spacing:0.717552px;}
.ls1_c02432{letter-spacing:0.722304px;}
.sc__c02432{text-shadow:none;}
.sc0_c02432{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02432{-webkit-text-stroke:0px transparent;}
.sc0_c02432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02432{word-spacing:-15.126048px;}
.wsd_c02432{word-spacing:-12.474000px;}
.ws5_c02432{word-spacing:-12.459744px;}
.ws9_c02432{word-spacing:-12.416976px;}
.ws19_c02432{word-spacing:-2.159136px;}
.ws16_c02432{word-spacing:-1.083456px;}
.ws13_c02432{word-spacing:-1.078704px;}
.wse_c02432{word-spacing:-0.974160px;}
.ws10_c02432{word-spacing:-0.118800px;}
.ws15_c02432{word-spacing:-0.099792px;}
.ws12_c02432{word-spacing:-0.095040px;}
.ws17_c02432{word-spacing:-0.085536px;}
.ws18_c02432{word-spacing:-0.038016px;}
.wsf_c02432{word-spacing:0.000000px;}
.ws1a_c02432{word-spacing:0.014256px;}
.ws14_c02432{word-spacing:0.413424px;}
.ws11_c02432{word-spacing:0.432432px;}
.ws2_c02432{word-spacing:7.080480px;}
.ws8_c02432{word-spacing:12.150864px;}
.wsa_c02432{word-spacing:30.298752px;}
.wsb_c02432{word-spacing:33.300288px;}
.ws7_c02432{word-spacing:36.143712px;}
.ws1_c02432{word-spacing:37.759392px;}
.ws0_c02432{word-spacing:38.020752px;}
.ws3_c02432{word-spacing:39.218256px;}
.ws4_c02432{word-spacing:39.902544px;}
.ws6_c02432{word-spacing:42.026688px;}
._0_c02432{margin-left:-1.948320px;}
._2_c02432{width:1.482624px;}
._4_c02432{width:4.200768px;}
._6_c02432{width:21.179664px;}
._5_c02432{width:27.105408px;}
._1_c02432{width:50.252400px;}
._3_c02432{width:51.530688px;}
.fc0_c02432{color:rgb(0,0,0);}
.fs0_c02432{font-size:47.520000px;}
.fs1_c02432{font-size:60.480000px;}
.y0_c02432{bottom:0.000000px;}
.y1a_c02432{bottom:146.998362px;}
.y1c_c02432{bottom:186.600234px;}
.y1b_c02432{bottom:196.320450px;}
.y19_c02432{bottom:275.878542px;}
.y18_c02432{bottom:356.878758px;}
.y16_c02432{bottom:406.559730px;}
.y12_c02432{bottom:424.560306px;}
.y17_c02432{bottom:458.759262px;}
.y15_c02432{bottom:491.879514px;}
.y14_c02432{bottom:509.880090px;}
.y11_c02432{bottom:543.000342px;}
.y13_c02432{bottom:559.559874px;}
.y10_c02432{bottom:577.560450px;}
.y1d_c02432{bottom:614.280450px;}
.yc_c02432{bottom:667.559514px;}
.ye_c02432{bottom:707.160234px;}
.yd_c02432{bottom:716.880450px;}
.yb_c02432{bottom:796.439694px;}
.ya_c02432{bottom:862.319046px;}
.y9_c02432{bottom:877.438722px;}
.y7_c02432{bottom:926.759730px;}
.y3_c02432{bottom:944.760306px;}
.y8_c02432{bottom:979.319226px;}
.y6_c02432{bottom:1012.439478px;}
.y5_c02432{bottom:1030.440054px;}
.y2_c02432{bottom:1063.560306px;}
.y4_c02432{bottom:1079.759874px;}
.y1_c02432{bottom:1097.760450px;}
.yf_c02432{bottom:1134.840450px;}
.h3_c02432{height:32.530781px;}
.h1_c02432{height:41.696016px;}
.h2_c02432{height:41.812031px;}
.h5_c02432{height:54.654737px;}
.h4_c02432{height:74.817456px;}
.h0_c02432{height:1263.000000px;}
.w1_c02432{width:892.500000px;}
.w0_c02432{width:892.830000px;}
.x0_c02432{left:0.000000px;}
.xe_c02432{left:117.000000px;}
.x8_c02432{left:440.999856px;}
.x4_c02432{left:445.680576px;}
.xc_c02432{left:451.080000px;}
.x7_c02432{left:455.399604px;}
.x5_c02432{left:461.880144px;}
.x1_c02432{left:463.320000px;}
.xb_c02432{left:483.480360px;}
.x9_c02432{left:492.119496px;}
.x6_c02432{left:493.200576px;}
.xd_c02432{left:506.880360px;}
.x3_c02432{left:511.919892px;}
.x2_c02432{left:526.679604px;}
.xa_c02432{left:569.880036px;}
@media print{
.v0_c02432{vertical-align:0.000000pt;}
.v2_c02432{vertical-align:1.279488pt;}
.v1_c02432{vertical-align:29.441280pt;}
.ls8_c02432{letter-spacing:-0.705408pt;}
.lsd_c02432{letter-spacing:-0.688512pt;}
.lsa_c02432{letter-spacing:-0.511104pt;}
.ls15_c02432{letter-spacing:-0.333696pt;}
.ls12_c02432{letter-spacing:-0.287232pt;}
.ls10_c02432{letter-spacing:-0.244992pt;}
.ls9_c02432{letter-spacing:-0.236544pt;}
.lse_c02432{letter-spacing:-0.232320pt;}
.ls6_c02432{letter-spacing:-0.215424pt;}
.ls4_c02432{letter-spacing:-0.105600pt;}
.ls14_c02432{letter-spacing:0.000000pt;}
.ls2_c02432{letter-spacing:0.005376pt;}
.ls5_c02432{letter-spacing:0.114048pt;}
.lsc_c02432{letter-spacing:0.451968pt;}
.ls13_c02432{letter-spacing:0.456960pt;}
.lsf_c02432{letter-spacing:0.477312pt;}
.lsb_c02432{letter-spacing:0.515328pt;}
.ls11_c02432{letter-spacing:0.528000pt;}
.ls7_c02432{letter-spacing:0.532224pt;}
.ls3_c02432{letter-spacing:0.544896pt;}
.ls0_c02432{letter-spacing:0.637824pt;}
.ls1_c02432{letter-spacing:0.642048pt;}
.wsc_c02432{word-spacing:-13.445376pt;}
.wsd_c02432{word-spacing:-11.088000pt;}
.ws5_c02432{word-spacing:-11.075328pt;}
.ws9_c02432{word-spacing:-11.037312pt;}
.ws19_c02432{word-spacing:-1.919232pt;}
.ws16_c02432{word-spacing:-0.963072pt;}
.ws13_c02432{word-spacing:-0.958848pt;}
.wse_c02432{word-spacing:-0.865920pt;}
.ws10_c02432{word-spacing:-0.105600pt;}
.ws15_c02432{word-spacing:-0.088704pt;}
.ws12_c02432{word-spacing:-0.084480pt;}
.ws17_c02432{word-spacing:-0.076032pt;}
.ws18_c02432{word-spacing:-0.033792pt;}
.wsf_c02432{word-spacing:0.000000pt;}
.ws1a_c02432{word-spacing:0.012672pt;}
.ws14_c02432{word-spacing:0.367488pt;}
.ws11_c02432{word-spacing:0.384384pt;}
.ws2_c02432{word-spacing:6.293760pt;}
.ws8_c02432{word-spacing:10.800768pt;}
.wsa_c02432{word-spacing:26.932224pt;}
.wsb_c02432{word-spacing:29.600256pt;}
.ws7_c02432{word-spacing:32.127744pt;}
.ws1_c02432{word-spacing:33.563904pt;}
.ws0_c02432{word-spacing:33.796224pt;}
.ws3_c02432{word-spacing:34.860672pt;}
.ws4_c02432{word-spacing:35.468928pt;}
.ws6_c02432{word-spacing:37.357056pt;}
._0_c02432{margin-left:-1.731840pt;}
._2_c02432{width:1.317888pt;}
._4_c02432{width:3.734016pt;}
._6_c02432{width:18.826368pt;}
._5_c02432{width:24.093696pt;}
._1_c02432{width:44.668800pt;}
._3_c02432{width:45.805056pt;}
.fs0_c02432{font-size:42.240000pt;}
.fs1_c02432{font-size:53.760000pt;}
.y0_c02432{bottom:0.000000pt;}
.y1a_c02432{bottom:130.665211pt;}
.y1c_c02432{bottom:165.866875pt;}
.y1b_c02432{bottom:174.507067pt;}
.y19_c02432{bottom:245.225371pt;}
.y18_c02432{bottom:317.225563pt;}
.y16_c02432{bottom:361.386427pt;}
.y12_c02432{bottom:377.386939pt;}
.y17_c02432{bottom:407.786011pt;}
.y15_c02432{bottom:437.226235pt;}
.y14_c02432{bottom:453.226747pt;}
.y11_c02432{bottom:482.666971pt;}
.y13_c02432{bottom:497.386555pt;}
.y10_c02432{bottom:513.387067pt;}
.y1d_c02432{bottom:546.027067pt;}
.yc_c02432{bottom:593.386235pt;}
.ye_c02432{bottom:628.586875pt;}
.yd_c02432{bottom:637.227067pt;}
.yb_c02432{bottom:707.946395pt;}
.ya_c02432{bottom:766.505819pt;}
.y9_c02432{bottom:779.945531pt;}
.y7_c02432{bottom:823.786427pt;}
.y3_c02432{bottom:839.786939pt;}
.y8_c02432{bottom:870.505979pt;}
.y6_c02432{bottom:899.946203pt;}
.y5_c02432{bottom:915.946715pt;}
.y2_c02432{bottom:945.386939pt;}
.y4_c02432{bottom:959.786555pt;}
.y1_c02432{bottom:975.787067pt;}
.yf_c02432{bottom:1008.747067pt;}
.h3_c02432{height:28.916250pt;}
.h1_c02432{height:37.063125pt;}
.h2_c02432{height:37.166250pt;}
.h5_c02432{height:48.581988pt;}
.h4_c02432{height:66.504405pt;}
.h0_c02432{height:1122.666667pt;}
.w1_c02432{width:793.333333pt;}
.w0_c02432{width:793.626667pt;}
.x0_c02432{left:0.000000pt;}
.xe_c02432{left:104.000000pt;}
.x8_c02432{left:391.999872pt;}
.x4_c02432{left:396.160512pt;}
.xc_c02432{left:400.960000pt;}
.x7_c02432{left:404.799648pt;}
.x5_c02432{left:410.560128pt;}
.x1_c02432{left:411.840000pt;}
.xb_c02432{left:429.760320pt;}
.x9_c02432{left:437.439552pt;}
.x6_c02432{left:438.400512pt;}
.xd_c02432{left:450.560320pt;}
.x3_c02432{left:455.039904pt;}
.x2_c02432{left:468.159648pt;}
.xa_c02432{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02433 {
    display:none;
  }
  .loading-indicator_c02433.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02433 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02433 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02433" -> "#page-container .classname_c02433")
 */
.pf_c02433 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02433 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02433.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02433 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02433 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02433 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02433 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02433 {overflow:visible;}
  }
}
.c_c02433 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02433 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02433:after { /* webkit #35443 */
  content: '';
}
.t_c02433:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02433 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02433 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02433 { /* info for Javascript */
  display:none;
}
.l_c02433 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02433 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02433 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02433:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02433 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02433.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02433.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02433 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02433{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02433;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02433{font-family:ff1_c02433;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02433;src:url('chunks/assets/font_6a641b236d313b527f676a03.woff2')format("woff");}.ff2_c02433{font-family:ff2_c02433;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02433;src:url('chunks/assets/font_113936d2c8f3a34d8b4f9e88.woff2')format("woff");}.ff3_c02433{font-family:ff3_c02433;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02433{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02433{vertical-align:0.000000px;}
.v1_c02433{vertical-align:1.439424px;}
.ls8_c02433{letter-spacing:-0.793584px;}
.lsa_c02433{letter-spacing:-0.574992px;}
.lse_c02433{letter-spacing:-0.380160px;}
.ls14_c02433{letter-spacing:-0.375408px;}
.ls10_c02433{letter-spacing:-0.275616px;}
.ls9_c02433{letter-spacing:-0.266112px;}
.lsd_c02433{letter-spacing:-0.261360px;}
.ls6_c02433{letter-spacing:-0.242352px;}
.ls4_c02433{letter-spacing:-0.118800px;}
.ls13_c02433{letter-spacing:0.000000px;}
.ls2_c02433{letter-spacing:0.006048px;}
.ls5_c02433{letter-spacing:0.128304px;}
.lsc_c02433{letter-spacing:0.508464px;}
.ls12_c02433{letter-spacing:0.514080px;}
.lsf_c02433{letter-spacing:0.536976px;}
.lsb_c02433{letter-spacing:0.579744px;}
.ls11_c02433{letter-spacing:0.594000px;}
.ls7_c02433{letter-spacing:0.598752px;}
.ls3_c02433{letter-spacing:0.613008px;}
.ls0_c02433{letter-spacing:0.717552px;}
.ls1_c02433{letter-spacing:0.722304px;}
.sc__c02433{text-shadow:none;}
.sc0_c02433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02433{-webkit-text-stroke:0px transparent;}
.sc0_c02433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c02433{word-spacing:-15.126048px;}
.ws8_c02433{word-spacing:-12.474000px;}
.ws5_c02433{word-spacing:-12.459744px;}
.ws7_c02433{word-spacing:-12.416976px;}
.ws16_c02433{word-spacing:-2.159136px;}
.ws12_c02433{word-spacing:-1.083456px;}
.ws11_c02433{word-spacing:-1.078704px;}
.wsc_c02433{word-spacing:-0.974160px;}
.wse_c02433{word-spacing:-0.118800px;}
.ws13_c02433{word-spacing:-0.099792px;}
.ws10_c02433{word-spacing:-0.095040px;}
.ws15_c02433{word-spacing:-0.085536px;}
.wsd_c02433{word-spacing:0.000000px;}
.ws17_c02433{word-spacing:0.014256px;}
.ws14_c02433{word-spacing:0.019008px;}
.wsf_c02433{word-spacing:0.432432px;}
.ws2_c02433{word-spacing:7.080480px;}
.ws9_c02433{word-spacing:33.300288px;}
.wsb_c02433{word-spacing:36.143712px;}
.ws1_c02433{word-spacing:37.759392px;}
.ws0_c02433{word-spacing:38.020752px;}
.ws3_c02433{word-spacing:39.218256px;}
.ws4_c02433{word-spacing:39.902544px;}
.ws6_c02433{word-spacing:42.026688px;}
._0_c02433{margin-left:-1.948320px;}
._2_c02433{width:1.482624px;}
._4_c02433{width:4.200768px;}
._1_c02433{width:50.252400px;}
._3_c02433{width:51.530688px;}
.fc0_c02433{color:rgb(0,0,0);}
.fs0_c02433{font-size:47.520000px;}
.fs1_c02433{font-size:60.480000px;}
.y0_c02433{bottom:0.000000px;}
.yb_c02433{bottom:66.240450px;}
.y1c_c02433{bottom:146.998362px;}
.y1e_c02433{bottom:186.600234px;}
.y1d_c02433{bottom:196.320450px;}
.y1b_c02433{bottom:275.878542px;}
.y1a_c02433{bottom:356.878758px;}
.y18_c02433{bottom:406.559730px;}
.y14_c02433{bottom:424.560306px;}
.y19_c02433{bottom:458.759262px;}
.y17_c02433{bottom:491.879514px;}
.y16_c02433{bottom:509.880090px;}
.y13_c02433{bottom:543.000342px;}
.y15_c02433{bottom:559.559874px;}
.y12_c02433{bottom:577.560450px;}
.y1f_c02433{bottom:614.280450px;}
.ye_c02433{bottom:667.560054px;}
.y10_c02433{bottom:707.160234px;}
.yf_c02433{bottom:716.880450px;}
.yd_c02433{bottom:796.440234px;}
.ya_c02433{bottom:811.200000px;}
.y9_c02433{bottom:877.438722px;}
.yc_c02433{bottom:877.440450px;}
.y7_c02433{bottom:926.759730px;}
.y3_c02433{bottom:944.760306px;}
.y8_c02433{bottom:979.319226px;}
.y6_c02433{bottom:1012.439478px;}
.y5_c02433{bottom:1030.440054px;}
.y2_c02433{bottom:1063.560306px;}
.y4_c02433{bottom:1079.759874px;}
.y1_c02433{bottom:1097.760450px;}
.y11_c02433{bottom:1134.840450px;}
.h3_c02433{height:32.530781px;}
.h1_c02433{height:41.696016px;}
.h2_c02433{height:41.812031px;}
.h5_c02433{height:54.654737px;}
.h4_c02433{height:78.840000px;}
.h0_c02433{height:1263.000000px;}
.w2_c02433{width:215.280000px;}
.w1_c02433{width:892.500000px;}
.w0_c02433{width:892.830000px;}
.x0_c02433{left:0.000000px;}
.xf_c02433{left:117.000000px;}
.x8_c02433{left:440.999856px;}
.x4_c02433{left:445.680576px;}
.xd_c02433{left:451.080000px;}
.x7_c02433{left:455.399604px;}
.x5_c02433{left:461.880144px;}
.x1_c02433{left:463.320000px;}
.xc_c02433{left:483.480108px;}
.x9_c02433{left:492.119496px;}
.x6_c02433{left:493.200576px;}
.xe_c02433{left:506.880360px;}
.x3_c02433{left:511.919892px;}
.x2_c02433{left:526.679604px;}
.xa_c02433{left:569.520000px;}
.xb_c02433{left:650.880000px;}
@media print{
.v0_c02433{vertical-align:0.000000pt;}
.v1_c02433{vertical-align:1.279488pt;}
.ls8_c02433{letter-spacing:-0.705408pt;}
.lsa_c02433{letter-spacing:-0.511104pt;}
.lse_c02433{letter-spacing:-0.337920pt;}
.ls14_c02433{letter-spacing:-0.333696pt;}
.ls10_c02433{letter-spacing:-0.244992pt;}
.ls9_c02433{letter-spacing:-0.236544pt;}
.lsd_c02433{letter-spacing:-0.232320pt;}
.ls6_c02433{letter-spacing:-0.215424pt;}
.ls4_c02433{letter-spacing:-0.105600pt;}
.ls13_c02433{letter-spacing:0.000000pt;}
.ls2_c02433{letter-spacing:0.005376pt;}
.ls5_c02433{letter-spacing:0.114048pt;}
.lsc_c02433{letter-spacing:0.451968pt;}
.ls12_c02433{letter-spacing:0.456960pt;}
.lsf_c02433{letter-spacing:0.477312pt;}
.lsb_c02433{letter-spacing:0.515328pt;}
.ls11_c02433{letter-spacing:0.528000pt;}
.ls7_c02433{letter-spacing:0.532224pt;}
.ls3_c02433{letter-spacing:0.544896pt;}
.ls0_c02433{letter-spacing:0.637824pt;}
.ls1_c02433{letter-spacing:0.642048pt;}
.wsa_c02433{word-spacing:-13.445376pt;}
.ws8_c02433{word-spacing:-11.088000pt;}
.ws5_c02433{word-spacing:-11.075328pt;}
.ws7_c02433{word-spacing:-11.037312pt;}
.ws16_c02433{word-spacing:-1.919232pt;}
.ws12_c02433{word-spacing:-0.963072pt;}
.ws11_c02433{word-spacing:-0.958848pt;}
.wsc_c02433{word-spacing:-0.865920pt;}
.wse_c02433{word-spacing:-0.105600pt;}
.ws13_c02433{word-spacing:-0.088704pt;}
.ws10_c02433{word-spacing:-0.084480pt;}
.ws15_c02433{word-spacing:-0.076032pt;}
.wsd_c02433{word-spacing:0.000000pt;}
.ws17_c02433{word-spacing:0.012672pt;}
.ws14_c02433{word-spacing:0.016896pt;}
.wsf_c02433{word-spacing:0.384384pt;}
.ws2_c02433{word-spacing:6.293760pt;}
.ws9_c02433{word-spacing:29.600256pt;}
.wsb_c02433{word-spacing:32.127744pt;}
.ws1_c02433{word-spacing:33.563904pt;}
.ws0_c02433{word-spacing:33.796224pt;}
.ws3_c02433{word-spacing:34.860672pt;}
.ws4_c02433{word-spacing:35.468928pt;}
.ws6_c02433{word-spacing:37.357056pt;}
._0_c02433{margin-left:-1.731840pt;}
._2_c02433{width:1.317888pt;}
._4_c02433{width:3.734016pt;}
._1_c02433{width:44.668800pt;}
._3_c02433{width:45.805056pt;}
.fs0_c02433{font-size:42.240000pt;}
.fs1_c02433{font-size:53.760000pt;}
.y0_c02433{bottom:0.000000pt;}
.yb_c02433{bottom:58.880400pt;}
.y1c_c02433{bottom:130.665211pt;}
.y1e_c02433{bottom:165.866875pt;}
.y1d_c02433{bottom:174.507067pt;}
.y1b_c02433{bottom:245.225371pt;}
.y1a_c02433{bottom:317.225563pt;}
.y18_c02433{bottom:361.386427pt;}
.y14_c02433{bottom:377.386939pt;}
.y19_c02433{bottom:407.786011pt;}
.y17_c02433{bottom:437.226235pt;}
.y16_c02433{bottom:453.226747pt;}
.y13_c02433{bottom:482.666971pt;}
.y15_c02433{bottom:497.386555pt;}
.y12_c02433{bottom:513.387067pt;}
.y1f_c02433{bottom:546.027067pt;}
.ye_c02433{bottom:593.386715pt;}
.y10_c02433{bottom:628.586875pt;}
.yf_c02433{bottom:637.227067pt;}
.yd_c02433{bottom:707.946875pt;}
.ya_c02433{bottom:721.066667pt;}
.y9_c02433{bottom:779.945531pt;}
.yc_c02433{bottom:779.947067pt;}
.y7_c02433{bottom:823.786427pt;}
.y3_c02433{bottom:839.786939pt;}
.y8_c02433{bottom:870.505979pt;}
.y6_c02433{bottom:899.946203pt;}
.y5_c02433{bottom:915.946715pt;}
.y2_c02433{bottom:945.386939pt;}
.y4_c02433{bottom:959.786555pt;}
.y1_c02433{bottom:975.787067pt;}
.y11_c02433{bottom:1008.747067pt;}
.h3_c02433{height:28.916250pt;}
.h1_c02433{height:37.063125pt;}
.h2_c02433{height:37.166250pt;}
.h5_c02433{height:48.581988pt;}
.h4_c02433{height:70.080000pt;}
.h0_c02433{height:1122.666667pt;}
.w2_c02433{width:191.360000pt;}
.w1_c02433{width:793.333333pt;}
.w0_c02433{width:793.626667pt;}
.x0_c02433{left:0.000000pt;}
.xf_c02433{left:104.000000pt;}
.x8_c02433{left:391.999872pt;}
.x4_c02433{left:396.160512pt;}
.xd_c02433{left:400.960000pt;}
.x7_c02433{left:404.799648pt;}
.x5_c02433{left:410.560128pt;}
.x1_c02433{left:411.840000pt;}
.xc_c02433{left:429.760096pt;}
.x9_c02433{left:437.439552pt;}
.x6_c02433{left:438.400512pt;}
.xe_c02433{left:450.560320pt;}
.x3_c02433{left:455.039904pt;}
.x2_c02433{left:468.159648pt;}
.xa_c02433{left:506.240000pt;}
.xb_c02433{left:578.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02434 {
    display:none;
  }
  .loading-indicator_c02434.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02434 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02434 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02434" -> "#page-container .classname_c02434")
 */
.pf_c02434 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02434 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02434 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02434 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02434 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02434 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02434 {overflow:visible;}
  }
}
.c_c02434 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02434 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02434:after { /* webkit #35443 */
  content: '';
}
.t_c02434:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02434 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02434 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02434 { /* info for Javascript */
  display:none;
}
.l_c02434 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02434 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02434 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02434:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02434 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02434.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02434 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02434{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02434;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02434{font-family:ff1_c02434;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02434;src:url('chunks/assets/font_9ee2acbb27e2498893245232.woff2')format("woff");}.ff2_c02434{font-family:ff2_c02434;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02434;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02434{font-family:ff3_c02434;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02434{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02434{vertical-align:0.000000px;}
.v1_c02434{vertical-align:1.439424px;}
.ls9_c02434{letter-spacing:-0.574992px;}
.lsf_c02434{letter-spacing:-0.275616px;}
.ls13_c02434{letter-spacing:-0.266112px;}
.lsd_c02434{letter-spacing:-0.261360px;}
.ls16_c02434{letter-spacing:-0.251856px;}
.ls7_c02434{letter-spacing:-0.242352px;}
.ls5_c02434{letter-spacing:-0.118800px;}
.ls12_c02434{letter-spacing:0.000000px;}
.ls2_c02434{letter-spacing:0.006048px;}
.ls14_c02434{letter-spacing:0.014256px;}
.ls15_c02434{letter-spacing:0.038016px;}
.ls6_c02434{letter-spacing:0.128304px;}
.lsc_c02434{letter-spacing:0.242352px;}
.lsb_c02434{letter-spacing:0.508464px;}
.ls11_c02434{letter-spacing:0.514080px;}
.lse_c02434{letter-spacing:0.536976px;}
.lsa_c02434{letter-spacing:0.579744px;}
.ls10_c02434{letter-spacing:0.594000px;}
.ls8_c02434{letter-spacing:0.598752px;}
.ls3_c02434{letter-spacing:0.613008px;}
.ls0_c02434{letter-spacing:0.651024px;}
.ls1_c02434{letter-spacing:0.717552px;}
.ls4_c02434{letter-spacing:0.722304px;}
.sc__c02434{text-shadow:none;}
.sc0_c02434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02434{-webkit-text-stroke:0px transparent;}
.sc0_c02434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02434{word-spacing:-15.126048px;}
.wsa_c02434{word-spacing:-12.474000px;}
.ws8_c02434{word-spacing:-12.459744px;}
.ws9_c02434{word-spacing:-12.416976px;}
.ws4_c02434{word-spacing:-11.637648px;}
.ws15_c02434{word-spacing:-2.159136px;}
.ws12_c02434{word-spacing:-1.078704px;}
.ws10_c02434{word-spacing:-1.012176px;}
.wse_c02434{word-spacing:-0.974160px;}
.ws18_c02434{word-spacing:-0.399168px;}
.ws17_c02434{word-spacing:-0.375408px;}
.ws11_c02434{word-spacing:-0.118800px;}
.ws19_c02434{word-spacing:-0.109296px;}
.ws13_c02434{word-spacing:-0.099792px;}
.ws16_c02434{word-spacing:-0.095040px;}
.ws14_c02434{word-spacing:-0.085536px;}
.wsf_c02434{word-spacing:0.000000px;}
.ws2_c02434{word-spacing:1.330560px;}
.wsb_c02434{word-spacing:33.300288px;}
.wsd_c02434{word-spacing:34.836912px;}
.ws6_c02434{word-spacing:36.742464px;}
.ws1_c02434{word-spacing:37.759392px;}
.ws0_c02434{word-spacing:38.020752px;}
.ws3_c02434{word-spacing:39.218256px;}
.ws5_c02434{word-spacing:39.902544px;}
.ws7_c02434{word-spacing:42.026688px;}
._0_c02434{margin-left:-1.948320px;}
._2_c02434{width:1.482624px;}
._5_c02434{width:4.999104px;}
._4_c02434{width:6.263136px;}
._1_c02434{width:50.252400px;}
._3_c02434{width:51.530688px;}
.fc0_c02434{color:rgb(0,0,0);}
.fs0_c02434{font-size:47.520000px;}
.fs1_c02434{font-size:60.480000px;}
.y0_c02434{bottom:0.000000px;}
.y19_c02434{bottom:146.998362px;}
.y1b_c02434{bottom:186.600234px;}
.y1a_c02434{bottom:196.320450px;}
.y18_c02434{bottom:275.878542px;}
.y17_c02434{bottom:356.878758px;}
.y15_c02434{bottom:406.559730px;}
.y11_c02434{bottom:424.560306px;}
.y16_c02434{bottom:458.759262px;}
.y14_c02434{bottom:491.879514px;}
.y13_c02434{bottom:509.880090px;}
.y10_c02434{bottom:543.000342px;}
.y12_c02434{bottom:559.559874px;}
.yf_c02434{bottom:577.560450px;}
.y1c_c02434{bottom:614.280450px;}
.yb_c02434{bottom:667.558326px;}
.yd_c02434{bottom:707.160234px;}
.yc_c02434{bottom:716.880450px;}
.ya_c02434{bottom:796.438506px;}
.y9_c02434{bottom:877.438722px;}
.y7_c02434{bottom:926.759730px;}
.y3_c02434{bottom:944.760306px;}
.y8_c02434{bottom:979.319226px;}
.y6_c02434{bottom:1012.439478px;}
.y5_c02434{bottom:1030.440054px;}
.y2_c02434{bottom:1063.560306px;}
.y4_c02434{bottom:1079.759874px;}
.y1_c02434{bottom:1097.760450px;}
.ye_c02434{bottom:1134.840450px;}
.h3_c02434{height:32.530781px;}
.h1_c02434{height:41.696016px;}
.h2_c02434{height:41.812031px;}
.h4_c02434{height:54.654737px;}
.h0_c02434{height:1263.000000px;}
.w1_c02434{width:892.500000px;}
.w0_c02434{width:892.830000px;}
.x0_c02434{left:0.000000px;}
.xd_c02434{left:117.000000px;}
.x8_c02434{left:440.999856px;}
.x4_c02434{left:445.680576px;}
.xb_c02434{left:451.080000px;}
.x7_c02434{left:455.399604px;}
.x5_c02434{left:461.880144px;}
.x1_c02434{left:463.320000px;}
.xa_c02434{left:483.480360px;}
.x9_c02434{left:492.119496px;}
.x6_c02434{left:493.200576px;}
.xc_c02434{left:506.880360px;}
.x3_c02434{left:511.919892px;}
.x2_c02434{left:526.679604px;}
@media print{
.v0_c02434{vertical-align:0.000000pt;}
.v1_c02434{vertical-align:1.279488pt;}
.ls9_c02434{letter-spacing:-0.511104pt;}
.lsf_c02434{letter-spacing:-0.244992pt;}
.ls13_c02434{letter-spacing:-0.236544pt;}
.lsd_c02434{letter-spacing:-0.232320pt;}
.ls16_c02434{letter-spacing:-0.223872pt;}
.ls7_c02434{letter-spacing:-0.215424pt;}
.ls5_c02434{letter-spacing:-0.105600pt;}
.ls12_c02434{letter-spacing:0.000000pt;}
.ls2_c02434{letter-spacing:0.005376pt;}
.ls14_c02434{letter-spacing:0.012672pt;}
.ls15_c02434{letter-spacing:0.033792pt;}
.ls6_c02434{letter-spacing:0.114048pt;}
.lsc_c02434{letter-spacing:0.215424pt;}
.lsb_c02434{letter-spacing:0.451968pt;}
.ls11_c02434{letter-spacing:0.456960pt;}
.lse_c02434{letter-spacing:0.477312pt;}
.lsa_c02434{letter-spacing:0.515328pt;}
.ls10_c02434{letter-spacing:0.528000pt;}
.ls8_c02434{letter-spacing:0.532224pt;}
.ls3_c02434{letter-spacing:0.544896pt;}
.ls0_c02434{letter-spacing:0.578688pt;}
.ls1_c02434{letter-spacing:0.637824pt;}
.ls4_c02434{letter-spacing:0.642048pt;}
.wsc_c02434{word-spacing:-13.445376pt;}
.wsa_c02434{word-spacing:-11.088000pt;}
.ws8_c02434{word-spacing:-11.075328pt;}
.ws9_c02434{word-spacing:-11.037312pt;}
.ws4_c02434{word-spacing:-10.344576pt;}
.ws15_c02434{word-spacing:-1.919232pt;}
.ws12_c02434{word-spacing:-0.958848pt;}
.ws10_c02434{word-spacing:-0.899712pt;}
.wse_c02434{word-spacing:-0.865920pt;}
.ws18_c02434{word-spacing:-0.354816pt;}
.ws17_c02434{word-spacing:-0.333696pt;}
.ws11_c02434{word-spacing:-0.105600pt;}
.ws19_c02434{word-spacing:-0.097152pt;}
.ws13_c02434{word-spacing:-0.088704pt;}
.ws16_c02434{word-spacing:-0.084480pt;}
.ws14_c02434{word-spacing:-0.076032pt;}
.wsf_c02434{word-spacing:0.000000pt;}
.ws2_c02434{word-spacing:1.182720pt;}
.wsb_c02434{word-spacing:29.600256pt;}
.wsd_c02434{word-spacing:30.966144pt;}
.ws6_c02434{word-spacing:32.659968pt;}
.ws1_c02434{word-spacing:33.563904pt;}
.ws0_c02434{word-spacing:33.796224pt;}
.ws3_c02434{word-spacing:34.860672pt;}
.ws5_c02434{word-spacing:35.468928pt;}
.ws7_c02434{word-spacing:37.357056pt;}
._0_c02434{margin-left:-1.731840pt;}
._2_c02434{width:1.317888pt;}
._5_c02434{width:4.443648pt;}
._4_c02434{width:5.567232pt;}
._1_c02434{width:44.668800pt;}
._3_c02434{width:45.805056pt;}
.fs0_c02434{font-size:42.240000pt;}
.fs1_c02434{font-size:53.760000pt;}
.y0_c02434{bottom:0.000000pt;}
.y19_c02434{bottom:130.665211pt;}
.y1b_c02434{bottom:165.866875pt;}
.y1a_c02434{bottom:174.507067pt;}
.y18_c02434{bottom:245.225371pt;}
.y17_c02434{bottom:317.225563pt;}
.y15_c02434{bottom:361.386427pt;}
.y11_c02434{bottom:377.386939pt;}
.y16_c02434{bottom:407.786011pt;}
.y14_c02434{bottom:437.226235pt;}
.y13_c02434{bottom:453.226747pt;}
.y10_c02434{bottom:482.666971pt;}
.y12_c02434{bottom:497.386555pt;}
.yf_c02434{bottom:513.387067pt;}
.y1c_c02434{bottom:546.027067pt;}
.yb_c02434{bottom:593.385179pt;}
.yd_c02434{bottom:628.586875pt;}
.yc_c02434{bottom:637.227067pt;}
.ya_c02434{bottom:707.945339pt;}
.y9_c02434{bottom:779.945531pt;}
.y7_c02434{bottom:823.786427pt;}
.y3_c02434{bottom:839.786939pt;}
.y8_c02434{bottom:870.505979pt;}
.y6_c02434{bottom:899.946203pt;}
.y5_c02434{bottom:915.946715pt;}
.y2_c02434{bottom:945.386939pt;}
.y4_c02434{bottom:959.786555pt;}
.y1_c02434{bottom:975.787067pt;}
.ye_c02434{bottom:1008.747067pt;}
.h3_c02434{height:28.916250pt;}
.h1_c02434{height:37.063125pt;}
.h2_c02434{height:37.166250pt;}
.h4_c02434{height:48.581988pt;}
.h0_c02434{height:1122.666667pt;}
.w1_c02434{width:793.333333pt;}
.w0_c02434{width:793.626667pt;}
.x0_c02434{left:0.000000pt;}
.xd_c02434{left:104.000000pt;}
.x8_c02434{left:391.999872pt;}
.x4_c02434{left:396.160512pt;}
.xb_c02434{left:400.960000pt;}
.x7_c02434{left:404.799648pt;}
.x5_c02434{left:410.560128pt;}
.x1_c02434{left:411.840000pt;}
.xa_c02434{left:429.760320pt;}
.x9_c02434{left:437.439552pt;}
.x6_c02434{left:438.400512pt;}
.xc_c02434{left:450.560320pt;}
.x3_c02434{left:455.039904pt;}
.x2_c02434{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02435 {
    display:none;
  }
  .loading-indicator_c02435.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02435 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02435 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02435" -> "#page-container .classname_c02435")
 */
.pf_c02435 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02435 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02435 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02435 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02435 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02435 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02435 {overflow:visible;}
  }
}
.c_c02435 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02435 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02435:after { /* webkit #35443 */
  content: '';
}
.t_c02435:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02435 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02435 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02435 { /* info for Javascript */
  display:none;
}
.l_c02435 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02435 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02435 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02435:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02435 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02435.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02435 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02435{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02435;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02435{font-family:ff1_c02435;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02435;src:url('chunks/assets/font_c2bf62fb872a5f498a3ae4c6.woff2')format("woff");}.ff2_c02435{font-family:ff2_c02435;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02435;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02435{font-family:ff3_c02435;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02435{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02435{vertical-align:0.000000px;}
.v1_c02435{vertical-align:1.439424px;}
.ls17_c02435{letter-spacing:-0.736560px;}
.ls9_c02435{letter-spacing:-0.574992px;}
.ls12_c02435{letter-spacing:-0.275616px;}
.ls18_c02435{letter-spacing:-0.270864px;}
.ls8_c02435{letter-spacing:-0.266112px;}
.lse_c02435{letter-spacing:-0.261360px;}
.ls11_c02435{letter-spacing:-0.251856px;}
.ls6_c02435{letter-spacing:-0.242352px;}
.ls4_c02435{letter-spacing:-0.118800px;}
.ls15_c02435{letter-spacing:0.000000px;}
.ls1_c02435{letter-spacing:0.006048px;}
.lsb_c02435{letter-spacing:0.014256px;}
.lsd_c02435{letter-spacing:0.038016px;}
.ls5_c02435{letter-spacing:0.128304px;}
.lsc_c02435{letter-spacing:0.508464px;}
.ls14_c02435{letter-spacing:0.514080px;}
.lsf_c02435{letter-spacing:0.536976px;}
.lsa_c02435{letter-spacing:0.579744px;}
.ls13_c02435{letter-spacing:0.594000px;}
.ls7_c02435{letter-spacing:0.598752px;}
.ls2_c02435{letter-spacing:0.613008px;}
.ls10_c02435{letter-spacing:0.651024px;}
.ls16_c02435{letter-spacing:0.655776px;}
.ls0_c02435{letter-spacing:0.717552px;}
.ls3_c02435{letter-spacing:0.722304px;}
.sc__c02435{text-shadow:none;}
.sc0_c02435{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02435{-webkit-text-stroke:0px transparent;}
.sc0_c02435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02435{word-spacing:-15.126048px;}
.ws9_c02435{word-spacing:-12.474000px;}
.ws7_c02435{word-spacing:-12.459744px;}
.ws18_c02435{word-spacing:-2.159136px;}
.ws11_c02435{word-spacing:-1.078704px;}
.ws19_c02435{word-spacing:-1.016928px;}
.ws15_c02435{word-spacing:-1.012176px;}
.wsd_c02435{word-spacing:-0.974160px;}
.ws13_c02435{word-spacing:-0.399168px;}
.ws12_c02435{word-spacing:-0.375408px;}
.wsf_c02435{word-spacing:-0.118800px;}
.ws16_c02435{word-spacing:-0.109296px;}
.ws14_c02435{word-spacing:-0.099792px;}
.ws10_c02435{word-spacing:-0.095040px;}
.ws1a_c02435{word-spacing:-0.090288px;}
.ws17_c02435{word-spacing:-0.085536px;}
.wse_c02435{word-spacing:0.000000px;}
.ws2_c02435{word-spacing:1.330560px;}
.wsc_c02435{word-spacing:6.629040px;}
.wsa_c02435{word-spacing:33.300288px;}
.ws8_c02435{word-spacing:34.836912px;}
.ws5_c02435{word-spacing:36.742464px;}
.ws1_c02435{word-spacing:37.759392px;}
.ws0_c02435{word-spacing:38.020752px;}
.ws3_c02435{word-spacing:39.218256px;}
.ws4_c02435{word-spacing:39.902544px;}
.ws6_c02435{word-spacing:42.026688px;}
._0_c02435{margin-left:-1.948320px;}
._2_c02435{width:1.482624px;}
._4_c02435{width:4.999104px;}
._6_c02435{width:19.982160px;}
._7_c02435{width:23.451120px;}
._5_c02435{width:24.691392px;}
._1_c02435{width:50.252400px;}
._3_c02435{width:51.530688px;}
.fc0_c02435{color:rgb(0,0,0);}
.fs0_c02435{font-size:47.520000px;}
.fs1_c02435{font-size:60.480000px;}
.y0_c02435{bottom:0.000000px;}
.y1b_c02435{bottom:131.878686px;}
.y1a_c02435{bottom:146.998362px;}
.y1d_c02435{bottom:186.600234px;}
.y1c_c02435{bottom:196.320450px;}
.y19_c02435{bottom:275.878542px;}
.y18_c02435{bottom:356.878758px;}
.y16_c02435{bottom:406.559730px;}
.y12_c02435{bottom:424.560306px;}
.y17_c02435{bottom:458.759262px;}
.y15_c02435{bottom:491.879514px;}
.y14_c02435{bottom:509.880090px;}
.y11_c02435{bottom:543.000342px;}
.y13_c02435{bottom:559.559874px;}
.y10_c02435{bottom:577.560450px;}
.y1e_c02435{bottom:614.280450px;}
.yc_c02435{bottom:652.438650px;}
.yb_c02435{bottom:667.558326px;}
.ye_c02435{bottom:707.160234px;}
.yd_c02435{bottom:716.880450px;}
.ya_c02435{bottom:796.438506px;}
.y9_c02435{bottom:877.438722px;}
.y7_c02435{bottom:926.759730px;}
.y3_c02435{bottom:944.760306px;}
.y8_c02435{bottom:979.319226px;}
.y6_c02435{bottom:1012.439478px;}
.y5_c02435{bottom:1030.440054px;}
.y2_c02435{bottom:1063.560306px;}
.y4_c02435{bottom:1079.759874px;}
.y1_c02435{bottom:1097.760450px;}
.yf_c02435{bottom:1134.840450px;}
.h3_c02435{height:32.530781px;}
.h1_c02435{height:41.696016px;}
.h2_c02435{height:41.812031px;}
.h4_c02435{height:54.654737px;}
.h0_c02435{height:1263.000000px;}
.w1_c02435{width:892.500000px;}
.w0_c02435{width:892.830000px;}
.x0_c02435{left:0.000000px;}
.xe_c02435{left:117.000000px;}
.x8_c02435{left:440.999856px;}
.x4_c02435{left:445.680576px;}
.xc_c02435{left:451.080000px;}
.x7_c02435{left:455.399604px;}
.x5_c02435{left:461.880144px;}
.x1_c02435{left:463.320000px;}
.xa_c02435{left:483.480360px;}
.x9_c02435{left:492.119496px;}
.x6_c02435{left:493.200576px;}
.xd_c02435{left:506.880360px;}
.x3_c02435{left:511.919892px;}
.x2_c02435{left:526.679604px;}
.xb_c02435{left:569.880036px;}
@media print{
.v0_c02435{vertical-align:0.000000pt;}
.v1_c02435{vertical-align:1.279488pt;}
.ls17_c02435{letter-spacing:-0.654720pt;}
.ls9_c02435{letter-spacing:-0.511104pt;}
.ls12_c02435{letter-spacing:-0.244992pt;}
.ls18_c02435{letter-spacing:-0.240768pt;}
.ls8_c02435{letter-spacing:-0.236544pt;}
.lse_c02435{letter-spacing:-0.232320pt;}
.ls11_c02435{letter-spacing:-0.223872pt;}
.ls6_c02435{letter-spacing:-0.215424pt;}
.ls4_c02435{letter-spacing:-0.105600pt;}
.ls15_c02435{letter-spacing:0.000000pt;}
.ls1_c02435{letter-spacing:0.005376pt;}
.lsb_c02435{letter-spacing:0.012672pt;}
.lsd_c02435{letter-spacing:0.033792pt;}
.ls5_c02435{letter-spacing:0.114048pt;}
.lsc_c02435{letter-spacing:0.451968pt;}
.ls14_c02435{letter-spacing:0.456960pt;}
.lsf_c02435{letter-spacing:0.477312pt;}
.lsa_c02435{letter-spacing:0.515328pt;}
.ls13_c02435{letter-spacing:0.528000pt;}
.ls7_c02435{letter-spacing:0.532224pt;}
.ls2_c02435{letter-spacing:0.544896pt;}
.ls10_c02435{letter-spacing:0.578688pt;}
.ls16_c02435{letter-spacing:0.582912pt;}
.ls0_c02435{letter-spacing:0.637824pt;}
.ls3_c02435{letter-spacing:0.642048pt;}
.wsb_c02435{word-spacing:-13.445376pt;}
.ws9_c02435{word-spacing:-11.088000pt;}
.ws7_c02435{word-spacing:-11.075328pt;}
.ws18_c02435{word-spacing:-1.919232pt;}
.ws11_c02435{word-spacing:-0.958848pt;}
.ws19_c02435{word-spacing:-0.903936pt;}
.ws15_c02435{word-spacing:-0.899712pt;}
.wsd_c02435{word-spacing:-0.865920pt;}
.ws13_c02435{word-spacing:-0.354816pt;}
.ws12_c02435{word-spacing:-0.333696pt;}
.wsf_c02435{word-spacing:-0.105600pt;}
.ws16_c02435{word-spacing:-0.097152pt;}
.ws14_c02435{word-spacing:-0.088704pt;}
.ws10_c02435{word-spacing:-0.084480pt;}
.ws1a_c02435{word-spacing:-0.080256pt;}
.ws17_c02435{word-spacing:-0.076032pt;}
.wse_c02435{word-spacing:0.000000pt;}
.ws2_c02435{word-spacing:1.182720pt;}
.wsc_c02435{word-spacing:5.892480pt;}
.wsa_c02435{word-spacing:29.600256pt;}
.ws8_c02435{word-spacing:30.966144pt;}
.ws5_c02435{word-spacing:32.659968pt;}
.ws1_c02435{word-spacing:33.563904pt;}
.ws0_c02435{word-spacing:33.796224pt;}
.ws3_c02435{word-spacing:34.860672pt;}
.ws4_c02435{word-spacing:35.468928pt;}
.ws6_c02435{word-spacing:37.357056pt;}
._0_c02435{margin-left:-1.731840pt;}
._2_c02435{width:1.317888pt;}
._4_c02435{width:4.443648pt;}
._6_c02435{width:17.761920pt;}
._7_c02435{width:20.845440pt;}
._5_c02435{width:21.947904pt;}
._1_c02435{width:44.668800pt;}
._3_c02435{width:45.805056pt;}
.fs0_c02435{font-size:42.240000pt;}
.fs1_c02435{font-size:53.760000pt;}
.y0_c02435{bottom:0.000000pt;}
.y1b_c02435{bottom:117.225499pt;}
.y1a_c02435{bottom:130.665211pt;}
.y1d_c02435{bottom:165.866875pt;}
.y1c_c02435{bottom:174.507067pt;}
.y19_c02435{bottom:245.225371pt;}
.y18_c02435{bottom:317.225563pt;}
.y16_c02435{bottom:361.386427pt;}
.y12_c02435{bottom:377.386939pt;}
.y17_c02435{bottom:407.786011pt;}
.y15_c02435{bottom:437.226235pt;}
.y14_c02435{bottom:453.226747pt;}
.y11_c02435{bottom:482.666971pt;}
.y13_c02435{bottom:497.386555pt;}
.y10_c02435{bottom:513.387067pt;}
.y1e_c02435{bottom:546.027067pt;}
.yc_c02435{bottom:579.945467pt;}
.yb_c02435{bottom:593.385179pt;}
.ye_c02435{bottom:628.586875pt;}
.yd_c02435{bottom:637.227067pt;}
.ya_c02435{bottom:707.945339pt;}
.y9_c02435{bottom:779.945531pt;}
.y7_c02435{bottom:823.786427pt;}
.y3_c02435{bottom:839.786939pt;}
.y8_c02435{bottom:870.505979pt;}
.y6_c02435{bottom:899.946203pt;}
.y5_c02435{bottom:915.946715pt;}
.y2_c02435{bottom:945.386939pt;}
.y4_c02435{bottom:959.786555pt;}
.y1_c02435{bottom:975.787067pt;}
.yf_c02435{bottom:1008.747067pt;}
.h3_c02435{height:28.916250pt;}
.h1_c02435{height:37.063125pt;}
.h2_c02435{height:37.166250pt;}
.h4_c02435{height:48.581988pt;}
.h0_c02435{height:1122.666667pt;}
.w1_c02435{width:793.333333pt;}
.w0_c02435{width:793.626667pt;}
.x0_c02435{left:0.000000pt;}
.xe_c02435{left:104.000000pt;}
.x8_c02435{left:391.999872pt;}
.x4_c02435{left:396.160512pt;}
.xc_c02435{left:400.960000pt;}
.x7_c02435{left:404.799648pt;}
.x5_c02435{left:410.560128pt;}
.x1_c02435{left:411.840000pt;}
.xa_c02435{left:429.760320pt;}
.x9_c02435{left:437.439552pt;}
.x6_c02435{left:438.400512pt;}
.xd_c02435{left:450.560320pt;}
.x3_c02435{left:455.039904pt;}
.x2_c02435{left:468.159648pt;}
.xb_c02435{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02436 {
    display:none;
  }
  .loading-indicator_c02436.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02436 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02436 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02436" -> "#page-container .classname_c02436")
 */
.pf_c02436 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02436 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02436 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02436 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02436 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02436 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02436 {overflow:visible;}
  }
}
.c_c02436 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02436 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02436:after { /* webkit #35443 */
  content: '';
}
.t_c02436:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02436 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02436 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02436 { /* info for Javascript */
  display:none;
}
.l_c02436 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02436 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02436 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02436:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02436 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02436.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02436 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02436{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02436;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02436{font-family:ff1_c02436;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02436;src:url('chunks/assets/font_c956b81072efe89cf84eeaf7.woff2')format("woff");}.ff2_c02436{font-family:ff2_c02436;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02436;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02436{font-family:ff3_c02436;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02436{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02436{vertical-align:0.000000px;}
.v1_c02436{vertical-align:1.439424px;}
.lsa_c02436{letter-spacing:-0.750816px;}
.ls9_c02436{letter-spacing:-0.574992px;}
.ls10_c02436{letter-spacing:-0.275616px;}
.ls8_c02436{letter-spacing:-0.266112px;}
.lse_c02436{letter-spacing:-0.261360px;}
.ls6_c02436{letter-spacing:-0.242352px;}
.ls3_c02436{letter-spacing:-0.118800px;}
.ls13_c02436{letter-spacing:0.000000px;}
.ls0_c02436{letter-spacing:0.006048px;}
.lsd_c02436{letter-spacing:0.038016px;}
.ls5_c02436{letter-spacing:0.128304px;}
.lsc_c02436{letter-spacing:0.508464px;}
.ls12_c02436{letter-spacing:0.514080px;}
.lsf_c02436{letter-spacing:0.536976px;}
.lsb_c02436{letter-spacing:0.579744px;}
.ls11_c02436{letter-spacing:0.594000px;}
.ls7_c02436{letter-spacing:0.598752px;}
.ls1_c02436{letter-spacing:0.613008px;}
.ls4_c02436{letter-spacing:0.717552px;}
.ls2_c02436{letter-spacing:0.722304px;}
.sc__c02436{text-shadow:none;}
.sc0_c02436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02436{-webkit-text-stroke:0px transparent;}
.sc0_c02436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02436{word-spacing:-15.126048px;}
.ws9_c02436{word-spacing:-12.474000px;}
.ws7_c02436{word-spacing:-12.459744px;}
.ws8_c02436{word-spacing:-12.416976px;}
.ws14_c02436{word-spacing:-2.159136px;}
.wsc_c02436{word-spacing:-0.974160px;}
.ws11_c02436{word-spacing:-0.399168px;}
.wse_c02436{word-spacing:-0.118800px;}
.ws12_c02436{word-spacing:-0.099792px;}
.wsf_c02436{word-spacing:-0.095040px;}
.ws13_c02436{word-spacing:-0.085536px;}
.wsd_c02436{word-spacing:0.000000px;}
.ws10_c02436{word-spacing:0.389664px;}
.ws2_c02436{word-spacing:1.330560px;}
.wsa_c02436{word-spacing:33.300288px;}
.ws5_c02436{word-spacing:36.742464px;}
.ws1_c02436{word-spacing:37.759392px;}
.ws0_c02436{word-spacing:38.020752px;}
.ws3_c02436{word-spacing:39.218256px;}
.ws4_c02436{word-spacing:39.902544px;}
.ws6_c02436{word-spacing:42.026688px;}
._0_c02436{margin-left:-1.948320px;}
._2_c02436{width:1.482624px;}
._4_c02436{width:4.999104px;}
._1_c02436{width:50.252400px;}
._3_c02436{width:51.530688px;}
.fc0_c02436{color:rgb(0,0,0);}
.fs0_c02436{font-size:47.520000px;}
.fs1_c02436{font-size:60.480000px;}
.y0_c02436{bottom:0.000000px;}
.y19_c02436{bottom:146.998362px;}
.y1b_c02436{bottom:186.600234px;}
.y1a_c02436{bottom:196.320450px;}
.y18_c02436{bottom:275.878542px;}
.y17_c02436{bottom:356.878758px;}
.y15_c02436{bottom:406.559730px;}
.y11_c02436{bottom:424.560306px;}
.y16_c02436{bottom:458.759262px;}
.y14_c02436{bottom:491.879514px;}
.y13_c02436{bottom:509.880090px;}
.y10_c02436{bottom:543.000342px;}
.y12_c02436{bottom:559.559874px;}
.yf_c02436{bottom:577.560450px;}
.y1c_c02436{bottom:614.280450px;}
.yb_c02436{bottom:667.558326px;}
.yd_c02436{bottom:707.160234px;}
.yc_c02436{bottom:716.880450px;}
.ya_c02436{bottom:796.438506px;}
.y9_c02436{bottom:877.438722px;}
.y7_c02436{bottom:926.759730px;}
.y3_c02436{bottom:944.760306px;}
.y8_c02436{bottom:979.319226px;}
.y6_c02436{bottom:1012.439478px;}
.y5_c02436{bottom:1030.440054px;}
.y2_c02436{bottom:1063.560306px;}
.y4_c02436{bottom:1079.759874px;}
.y1_c02436{bottom:1097.760450px;}
.ye_c02436{bottom:1134.840450px;}
.h3_c02436{height:32.530781px;}
.h1_c02436{height:41.696016px;}
.h2_c02436{height:41.812031px;}
.h4_c02436{height:54.654737px;}
.h0_c02436{height:1263.000000px;}
.w1_c02436{width:892.500000px;}
.w0_c02436{width:892.830000px;}
.x0_c02436{left:0.000000px;}
.xd_c02436{left:117.000000px;}
.x8_c02436{left:440.999856px;}
.x4_c02436{left:445.680576px;}
.xb_c02436{left:451.080000px;}
.x7_c02436{left:455.399604px;}
.x5_c02436{left:461.880144px;}
.x1_c02436{left:463.320000px;}
.xa_c02436{left:483.480360px;}
.x9_c02436{left:492.119496px;}
.x6_c02436{left:493.200576px;}
.xc_c02436{left:506.880360px;}
.x3_c02436{left:511.919892px;}
.x2_c02436{left:526.679604px;}
@media print{
.v0_c02436{vertical-align:0.000000pt;}
.v1_c02436{vertical-align:1.279488pt;}
.lsa_c02436{letter-spacing:-0.667392pt;}
.ls9_c02436{letter-spacing:-0.511104pt;}
.ls10_c02436{letter-spacing:-0.244992pt;}
.ls8_c02436{letter-spacing:-0.236544pt;}
.lse_c02436{letter-spacing:-0.232320pt;}
.ls6_c02436{letter-spacing:-0.215424pt;}
.ls3_c02436{letter-spacing:-0.105600pt;}
.ls13_c02436{letter-spacing:0.000000pt;}
.ls0_c02436{letter-spacing:0.005376pt;}
.lsd_c02436{letter-spacing:0.033792pt;}
.ls5_c02436{letter-spacing:0.114048pt;}
.lsc_c02436{letter-spacing:0.451968pt;}
.ls12_c02436{letter-spacing:0.456960pt;}
.lsf_c02436{letter-spacing:0.477312pt;}
.lsb_c02436{letter-spacing:0.515328pt;}
.ls11_c02436{letter-spacing:0.528000pt;}
.ls7_c02436{letter-spacing:0.532224pt;}
.ls1_c02436{letter-spacing:0.544896pt;}
.ls4_c02436{letter-spacing:0.637824pt;}
.ls2_c02436{letter-spacing:0.642048pt;}
.wsb_c02436{word-spacing:-13.445376pt;}
.ws9_c02436{word-spacing:-11.088000pt;}
.ws7_c02436{word-spacing:-11.075328pt;}
.ws8_c02436{word-spacing:-11.037312pt;}
.ws14_c02436{word-spacing:-1.919232pt;}
.wsc_c02436{word-spacing:-0.865920pt;}
.ws11_c02436{word-spacing:-0.354816pt;}
.wse_c02436{word-spacing:-0.105600pt;}
.ws12_c02436{word-spacing:-0.088704pt;}
.wsf_c02436{word-spacing:-0.084480pt;}
.ws13_c02436{word-spacing:-0.076032pt;}
.wsd_c02436{word-spacing:0.000000pt;}
.ws10_c02436{word-spacing:0.346368pt;}
.ws2_c02436{word-spacing:1.182720pt;}
.wsa_c02436{word-spacing:29.600256pt;}
.ws5_c02436{word-spacing:32.659968pt;}
.ws1_c02436{word-spacing:33.563904pt;}
.ws0_c02436{word-spacing:33.796224pt;}
.ws3_c02436{word-spacing:34.860672pt;}
.ws4_c02436{word-spacing:35.468928pt;}
.ws6_c02436{word-spacing:37.357056pt;}
._0_c02436{margin-left:-1.731840pt;}
._2_c02436{width:1.317888pt;}
._4_c02436{width:4.443648pt;}
._1_c02436{width:44.668800pt;}
._3_c02436{width:45.805056pt;}
.fs0_c02436{font-size:42.240000pt;}
.fs1_c02436{font-size:53.760000pt;}
.y0_c02436{bottom:0.000000pt;}
.y19_c02436{bottom:130.665211pt;}
.y1b_c02436{bottom:165.866875pt;}
.y1a_c02436{bottom:174.507067pt;}
.y18_c02436{bottom:245.225371pt;}
.y17_c02436{bottom:317.225563pt;}
.y15_c02436{bottom:361.386427pt;}
.y11_c02436{bottom:377.386939pt;}
.y16_c02436{bottom:407.786011pt;}
.y14_c02436{bottom:437.226235pt;}
.y13_c02436{bottom:453.226747pt;}
.y10_c02436{bottom:482.666971pt;}
.y12_c02436{bottom:497.386555pt;}
.yf_c02436{bottom:513.387067pt;}
.y1c_c02436{bottom:546.027067pt;}
.yb_c02436{bottom:593.385179pt;}
.yd_c02436{bottom:628.586875pt;}
.yc_c02436{bottom:637.227067pt;}
.ya_c02436{bottom:707.945339pt;}
.y9_c02436{bottom:779.945531pt;}
.y7_c02436{bottom:823.786427pt;}
.y3_c02436{bottom:839.786939pt;}
.y8_c02436{bottom:870.505979pt;}
.y6_c02436{bottom:899.946203pt;}
.y5_c02436{bottom:915.946715pt;}
.y2_c02436{bottom:945.386939pt;}
.y4_c02436{bottom:959.786555pt;}
.y1_c02436{bottom:975.787067pt;}
.ye_c02436{bottom:1008.747067pt;}
.h3_c02436{height:28.916250pt;}
.h1_c02436{height:37.063125pt;}
.h2_c02436{height:37.166250pt;}
.h4_c02436{height:48.581988pt;}
.h0_c02436{height:1122.666667pt;}
.w1_c02436{width:793.333333pt;}
.w0_c02436{width:793.626667pt;}
.x0_c02436{left:0.000000pt;}
.xd_c02436{left:104.000000pt;}
.x8_c02436{left:391.999872pt;}
.x4_c02436{left:396.160512pt;}
.xb_c02436{left:400.960000pt;}
.x7_c02436{left:404.799648pt;}
.x5_c02436{left:410.560128pt;}
.x1_c02436{left:411.840000pt;}
.xa_c02436{left:429.760320pt;}
.x9_c02436{left:437.439552pt;}
.x6_c02436{left:438.400512pt;}
.xc_c02436{left:450.560320pt;}
.x3_c02436{left:455.039904pt;}
.x2_c02436{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02437 {
    display:none;
  }
  .loading-indicator_c02437.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02437 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02437 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02437" -> "#page-container .classname_c02437")
 */
.pf_c02437 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02437 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02437 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02437 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02437 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02437 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02437 {overflow:visible;}
  }
}
.c_c02437 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02437 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02437:after { /* webkit #35443 */
  content: '';
}
.t_c02437:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02437 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02437 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02437 { /* info for Javascript */
  display:none;
}
.l_c02437 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02437 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02437 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02437:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02437 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02437.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02437 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02437{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02437;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02437{font-family:ff1_c02437;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02437;src:url('chunks/assets/font_b9970d26f96467912415bba8.woff2')format("woff");}.ff2_c02437{font-family:ff2_c02437;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02437;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02437{font-family:ff3_c02437;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02437{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02437{vertical-align:0.000000px;}
.v1_c02437{vertical-align:1.439424px;}
.ls16_c02437{letter-spacing:-1.197504px;}
.lsd_c02437{letter-spacing:-0.793584px;}
.lsa_c02437{letter-spacing:-0.774576px;}
.ls10_c02437{letter-spacing:-0.736560px;}
.ls15_c02437{letter-spacing:-0.613008px;}
.ls9_c02437{letter-spacing:-0.574992px;}
.ls11_c02437{letter-spacing:-0.270864px;}
.lse_c02437{letter-spacing:-0.261360px;}
.ls7_c02437{letter-spacing:-0.242352px;}
.ls5_c02437{letter-spacing:-0.118800px;}
.ls14_c02437{letter-spacing:0.000000px;}
.ls1_c02437{letter-spacing:0.006048px;}
.ls6_c02437{letter-spacing:0.128304px;}
.lsc_c02437{letter-spacing:0.508464px;}
.ls13_c02437{letter-spacing:0.514080px;}
.lsf_c02437{letter-spacing:0.536976px;}
.lsb_c02437{letter-spacing:0.579744px;}
.ls12_c02437{letter-spacing:0.594000px;}
.ls8_c02437{letter-spacing:0.598752px;}
.ls3_c02437{letter-spacing:0.613008px;}
.ls0_c02437{letter-spacing:0.651024px;}
.ls2_c02437{letter-spacing:0.717552px;}
.ls4_c02437{letter-spacing:0.722304px;}
.sc__c02437{text-shadow:none;}
.sc0_c02437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02437{-webkit-text-stroke:0px transparent;}
.sc0_c02437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02437{word-spacing:-15.126048px;}
.wsb_c02437{word-spacing:-12.474000px;}
.ws7_c02437{word-spacing:-12.459744px;}
.ws4_c02437{word-spacing:-11.637648px;}
.wse_c02437{word-spacing:-11.266992px;}
.ws6_c02437{word-spacing:-11.105424px;}
.ws17_c02437{word-spacing:-2.159136px;}
.ws18_c02437{word-spacing:-1.078704px;}
.ws11_c02437{word-spacing:-1.012176px;}
.wsf_c02437{word-spacing:-0.974160px;}
.ws12_c02437{word-spacing:-0.118800px;}
.ws14_c02437{word-spacing:-0.099792px;}
.ws15_c02437{word-spacing:-0.090288px;}
.ws16_c02437{word-spacing:-0.085536px;}
.ws10_c02437{word-spacing:0.000000px;}
.ws13_c02437{word-spacing:0.432432px;}
.ws19_c02437{word-spacing:0.836352px;}
.ws2_c02437{word-spacing:1.330560px;}
.wsa_c02437{word-spacing:6.629040px;}
.wsc_c02437{word-spacing:33.300288px;}
.ws9_c02437{word-spacing:34.836912px;}
.ws1_c02437{word-spacing:37.759392px;}
.ws0_c02437{word-spacing:38.020752px;}
.ws3_c02437{word-spacing:39.218256px;}
.ws5_c02437{word-spacing:39.902544px;}
.ws8_c02437{word-spacing:42.026688px;}
._0_c02437{margin-left:-1.948320px;}
._2_c02437{width:1.482624px;}
._8_c02437{width:2.770416px;}
._4_c02437{width:4.785264px;}
._6_c02437{width:19.982160px;}
._7_c02437{width:23.451120px;}
._5_c02437{width:24.691392px;}
._1_c02437{width:50.252400px;}
._3_c02437{width:51.530688px;}
.fc0_c02437{color:rgb(0,0,0);}
.fs0_c02437{font-size:47.520000px;}
.fs1_c02437{font-size:60.480000px;}
.y0_c02437{bottom:0.000000px;}
.y1b_c02437{bottom:131.878686px;}
.y1a_c02437{bottom:146.998362px;}
.y1d_c02437{bottom:186.600234px;}
.y1c_c02437{bottom:196.320450px;}
.y19_c02437{bottom:275.878542px;}
.y18_c02437{bottom:356.878758px;}
.y16_c02437{bottom:406.559730px;}
.y12_c02437{bottom:424.560306px;}
.y17_c02437{bottom:458.759262px;}
.y15_c02437{bottom:491.879514px;}
.y14_c02437{bottom:509.880090px;}
.y11_c02437{bottom:543.000342px;}
.y13_c02437{bottom:559.559874px;}
.y10_c02437{bottom:577.560450px;}
.y1e_c02437{bottom:614.280450px;}
.yc_c02437{bottom:652.438650px;}
.yb_c02437{bottom:667.558326px;}
.ye_c02437{bottom:707.160234px;}
.yd_c02437{bottom:716.880450px;}
.ya_c02437{bottom:796.438506px;}
.y9_c02437{bottom:877.438722px;}
.y7_c02437{bottom:926.759730px;}
.y3_c02437{bottom:944.760306px;}
.y8_c02437{bottom:979.319226px;}
.y6_c02437{bottom:1012.439478px;}
.y5_c02437{bottom:1030.440054px;}
.y2_c02437{bottom:1063.560306px;}
.y4_c02437{bottom:1079.759874px;}
.y1_c02437{bottom:1097.760450px;}
.yf_c02437{bottom:1134.840450px;}
.h3_c02437{height:32.530781px;}
.h1_c02437{height:41.696016px;}
.h2_c02437{height:41.812031px;}
.h4_c02437{height:54.654737px;}
.h0_c02437{height:1263.000000px;}
.w1_c02437{width:892.500000px;}
.w0_c02437{width:892.830000px;}
.x0_c02437{left:0.000000px;}
.xe_c02437{left:117.000000px;}
.x8_c02437{left:440.999856px;}
.x4_c02437{left:445.680576px;}
.xc_c02437{left:451.080000px;}
.x7_c02437{left:455.399604px;}
.x5_c02437{left:461.880144px;}
.x1_c02437{left:463.320000px;}
.xa_c02437{left:483.480360px;}
.x9_c02437{left:492.119496px;}
.x6_c02437{left:493.200576px;}
.xd_c02437{left:506.880360px;}
.x3_c02437{left:511.919892px;}
.x2_c02437{left:526.679604px;}
.xb_c02437{left:569.880036px;}
@media print{
.v0_c02437{vertical-align:0.000000pt;}
.v1_c02437{vertical-align:1.279488pt;}
.ls16_c02437{letter-spacing:-1.064448pt;}
.lsd_c02437{letter-spacing:-0.705408pt;}
.lsa_c02437{letter-spacing:-0.688512pt;}
.ls10_c02437{letter-spacing:-0.654720pt;}
.ls15_c02437{letter-spacing:-0.544896pt;}
.ls9_c02437{letter-spacing:-0.511104pt;}
.ls11_c02437{letter-spacing:-0.240768pt;}
.lse_c02437{letter-spacing:-0.232320pt;}
.ls7_c02437{letter-spacing:-0.215424pt;}
.ls5_c02437{letter-spacing:-0.105600pt;}
.ls14_c02437{letter-spacing:0.000000pt;}
.ls1_c02437{letter-spacing:0.005376pt;}
.ls6_c02437{letter-spacing:0.114048pt;}
.lsc_c02437{letter-spacing:0.451968pt;}
.ls13_c02437{letter-spacing:0.456960pt;}
.lsf_c02437{letter-spacing:0.477312pt;}
.lsb_c02437{letter-spacing:0.515328pt;}
.ls12_c02437{letter-spacing:0.528000pt;}
.ls8_c02437{letter-spacing:0.532224pt;}
.ls3_c02437{letter-spacing:0.544896pt;}
.ls0_c02437{letter-spacing:0.578688pt;}
.ls2_c02437{letter-spacing:0.637824pt;}
.ls4_c02437{letter-spacing:0.642048pt;}
.wsd_c02437{word-spacing:-13.445376pt;}
.wsb_c02437{word-spacing:-11.088000pt;}
.ws7_c02437{word-spacing:-11.075328pt;}
.ws4_c02437{word-spacing:-10.344576pt;}
.wse_c02437{word-spacing:-10.015104pt;}
.ws6_c02437{word-spacing:-9.871488pt;}
.ws17_c02437{word-spacing:-1.919232pt;}
.ws18_c02437{word-spacing:-0.958848pt;}
.ws11_c02437{word-spacing:-0.899712pt;}
.wsf_c02437{word-spacing:-0.865920pt;}
.ws12_c02437{word-spacing:-0.105600pt;}
.ws14_c02437{word-spacing:-0.088704pt;}
.ws15_c02437{word-spacing:-0.080256pt;}
.ws16_c02437{word-spacing:-0.076032pt;}
.ws10_c02437{word-spacing:0.000000pt;}
.ws13_c02437{word-spacing:0.384384pt;}
.ws19_c02437{word-spacing:0.743424pt;}
.ws2_c02437{word-spacing:1.182720pt;}
.wsa_c02437{word-spacing:5.892480pt;}
.wsc_c02437{word-spacing:29.600256pt;}
.ws9_c02437{word-spacing:30.966144pt;}
.ws1_c02437{word-spacing:33.563904pt;}
.ws0_c02437{word-spacing:33.796224pt;}
.ws3_c02437{word-spacing:34.860672pt;}
.ws5_c02437{word-spacing:35.468928pt;}
.ws8_c02437{word-spacing:37.357056pt;}
._0_c02437{margin-left:-1.731840pt;}
._2_c02437{width:1.317888pt;}
._8_c02437{width:2.462592pt;}
._4_c02437{width:4.253568pt;}
._6_c02437{width:17.761920pt;}
._7_c02437{width:20.845440pt;}
._5_c02437{width:21.947904pt;}
._1_c02437{width:44.668800pt;}
._3_c02437{width:45.805056pt;}
.fs0_c02437{font-size:42.240000pt;}
.fs1_c02437{font-size:53.760000pt;}
.y0_c02437{bottom:0.000000pt;}
.y1b_c02437{bottom:117.225499pt;}
.y1a_c02437{bottom:130.665211pt;}
.y1d_c02437{bottom:165.866875pt;}
.y1c_c02437{bottom:174.507067pt;}
.y19_c02437{bottom:245.225371pt;}
.y18_c02437{bottom:317.225563pt;}
.y16_c02437{bottom:361.386427pt;}
.y12_c02437{bottom:377.386939pt;}
.y17_c02437{bottom:407.786011pt;}
.y15_c02437{bottom:437.226235pt;}
.y14_c02437{bottom:453.226747pt;}
.y11_c02437{bottom:482.666971pt;}
.y13_c02437{bottom:497.386555pt;}
.y10_c02437{bottom:513.387067pt;}
.y1e_c02437{bottom:546.027067pt;}
.yc_c02437{bottom:579.945467pt;}
.yb_c02437{bottom:593.385179pt;}
.ye_c02437{bottom:628.586875pt;}
.yd_c02437{bottom:637.227067pt;}
.ya_c02437{bottom:707.945339pt;}
.y9_c02437{bottom:779.945531pt;}
.y7_c02437{bottom:823.786427pt;}
.y3_c02437{bottom:839.786939pt;}
.y8_c02437{bottom:870.505979pt;}
.y6_c02437{bottom:899.946203pt;}
.y5_c02437{bottom:915.946715pt;}
.y2_c02437{bottom:945.386939pt;}
.y4_c02437{bottom:959.786555pt;}
.y1_c02437{bottom:975.787067pt;}
.yf_c02437{bottom:1008.747067pt;}
.h3_c02437{height:28.916250pt;}
.h1_c02437{height:37.063125pt;}
.h2_c02437{height:37.166250pt;}
.h4_c02437{height:48.581988pt;}
.h0_c02437{height:1122.666667pt;}
.w1_c02437{width:793.333333pt;}
.w0_c02437{width:793.626667pt;}
.x0_c02437{left:0.000000pt;}
.xe_c02437{left:104.000000pt;}
.x8_c02437{left:391.999872pt;}
.x4_c02437{left:396.160512pt;}
.xc_c02437{left:400.960000pt;}
.x7_c02437{left:404.799648pt;}
.x5_c02437{left:410.560128pt;}
.x1_c02437{left:411.840000pt;}
.xa_c02437{left:429.760320pt;}
.x9_c02437{left:437.439552pt;}
.x6_c02437{left:438.400512pt;}
.xd_c02437{left:450.560320pt;}
.x3_c02437{left:455.039904pt;}
.x2_c02437{left:468.159648pt;}
.xb_c02437{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02438 {
    display:none;
  }
  .loading-indicator_c02438.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02438 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02438 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02438" -> "#page-container .classname_c02438")
 */
.pf_c02438 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02438 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02438.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02438 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02438 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02438 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02438 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02438 {overflow:visible;}
  }
}
.c_c02438 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02438 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02438:after { /* webkit #35443 */
  content: '';
}
.t_c02438:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02438 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02438 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02438 { /* info for Javascript */
  display:none;
}
.l_c02438 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02438 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02438 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02438:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02438 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02438.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02438.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02438 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02438{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02438;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02438{font-family:ff1_c02438;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02438;src:url('chunks/assets/font_d283928179b6030b3ddddfe3.woff2')format("woff");}.ff2_c02438{font-family:ff2_c02438;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02438;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02438{font-family:ff3_c02438;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02438{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02438{vertical-align:0.000000px;}
.v1_c02438{vertical-align:1.439424px;}
.lsd_c02438{letter-spacing:-1.197504px;}
.ls15_c02438{letter-spacing:-0.793584px;}
.lsa_c02438{letter-spacing:-0.774576px;}
.ls10_c02438{letter-spacing:-0.736560px;}
.ls7_c02438{letter-spacing:-0.613008px;}
.ls9_c02438{letter-spacing:-0.574992px;}
.ls11_c02438{letter-spacing:-0.270864px;}
.lse_c02438{letter-spacing:-0.261360px;}
.ls6_c02438{letter-spacing:-0.242352px;}
.ls4_c02438{letter-spacing:-0.118800px;}
.ls14_c02438{letter-spacing:0.000000px;}
.ls0_c02438{letter-spacing:0.006048px;}
.ls5_c02438{letter-spacing:0.128304px;}
.lsc_c02438{letter-spacing:0.508464px;}
.ls13_c02438{letter-spacing:0.514080px;}
.lsf_c02438{letter-spacing:0.536976px;}
.lsb_c02438{letter-spacing:0.579744px;}
.ls12_c02438{letter-spacing:0.594000px;}
.ls8_c02438{letter-spacing:0.598752px;}
.ls2_c02438{letter-spacing:0.613008px;}
.ls1_c02438{letter-spacing:0.717552px;}
.ls3_c02438{letter-spacing:0.722304px;}
.sc__c02438{text-shadow:none;}
.sc0_c02438{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02438{-webkit-text-stroke:0px transparent;}
.sc0_c02438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02438{word-spacing:-15.126048px;}
.wsb_c02438{word-spacing:-12.474000px;}
.ws7_c02438{word-spacing:-12.459744px;}
.ws4_c02438{word-spacing:-11.637648px;}
.ws2_c02438{word-spacing:-11.266992px;}
.ws6_c02438{word-spacing:-11.105424px;}
.ws15_c02438{word-spacing:-2.159136px;}
.ws16_c02438{word-spacing:-1.078704px;}
.wse_c02438{word-spacing:-0.974160px;}
.ws10_c02438{word-spacing:-0.118800px;}
.ws12_c02438{word-spacing:-0.099792px;}
.ws13_c02438{word-spacing:-0.090288px;}
.ws14_c02438{word-spacing:-0.085536px;}
.wsf_c02438{word-spacing:0.000000px;}
.ws17_c02438{word-spacing:0.432432px;}
.ws11_c02438{word-spacing:0.836352px;}
.wsa_c02438{word-spacing:6.629040px;}
.wsc_c02438{word-spacing:33.300288px;}
.ws9_c02438{word-spacing:34.836912px;}
.ws1_c02438{word-spacing:37.759392px;}
.ws0_c02438{word-spacing:38.020752px;}
.ws3_c02438{word-spacing:39.218256px;}
.ws5_c02438{word-spacing:39.902544px;}
.ws8_c02438{word-spacing:42.026688px;}
._0_c02438{margin-left:-1.948320px;}
._2_c02438{width:1.482624px;}
._5_c02438{width:2.770416px;}
._4_c02438{width:4.257792px;}
._7_c02438{width:19.982160px;}
._8_c02438{width:23.451120px;}
._6_c02438{width:24.691392px;}
._1_c02438{width:50.252400px;}
._3_c02438{width:51.530688px;}
.fc0_c02438{color:rgb(0,0,0);}
.fs0_c02438{font-size:47.520000px;}
.fs1_c02438{font-size:60.480000px;}
.y0_c02438{bottom:0.000000px;}
.y1b_c02438{bottom:131.878686px;}
.y1a_c02438{bottom:146.998362px;}
.y1d_c02438{bottom:186.600234px;}
.y1c_c02438{bottom:196.320450px;}
.y19_c02438{bottom:275.878542px;}
.y18_c02438{bottom:356.878758px;}
.y16_c02438{bottom:406.559730px;}
.y12_c02438{bottom:424.560306px;}
.y17_c02438{bottom:458.759262px;}
.y15_c02438{bottom:491.879514px;}
.y14_c02438{bottom:509.880090px;}
.y11_c02438{bottom:543.000342px;}
.y13_c02438{bottom:559.559874px;}
.y10_c02438{bottom:577.560450px;}
.y1e_c02438{bottom:614.280450px;}
.yc_c02438{bottom:652.438650px;}
.yb_c02438{bottom:667.558326px;}
.ye_c02438{bottom:707.160234px;}
.yd_c02438{bottom:716.880450px;}
.ya_c02438{bottom:796.438506px;}
.y9_c02438{bottom:877.438722px;}
.y7_c02438{bottom:926.759730px;}
.y3_c02438{bottom:944.760306px;}
.y8_c02438{bottom:979.319226px;}
.y6_c02438{bottom:1012.439478px;}
.y5_c02438{bottom:1030.440054px;}
.y2_c02438{bottom:1063.560306px;}
.y4_c02438{bottom:1079.759874px;}
.y1_c02438{bottom:1097.760450px;}
.yf_c02438{bottom:1134.840450px;}
.h3_c02438{height:32.530781px;}
.h1_c02438{height:41.696016px;}
.h2_c02438{height:41.812031px;}
.h4_c02438{height:54.654737px;}
.h0_c02438{height:1263.000000px;}
.w1_c02438{width:892.500000px;}
.w0_c02438{width:892.830000px;}
.x0_c02438{left:0.000000px;}
.xe_c02438{left:117.000000px;}
.x8_c02438{left:440.999856px;}
.x4_c02438{left:445.680576px;}
.xc_c02438{left:451.080000px;}
.x7_c02438{left:455.399604px;}
.x5_c02438{left:461.880144px;}
.x1_c02438{left:463.320000px;}
.xa_c02438{left:483.480360px;}
.x9_c02438{left:492.119496px;}
.x6_c02438{left:493.200576px;}
.xd_c02438{left:506.880360px;}
.x3_c02438{left:511.919892px;}
.x2_c02438{left:526.679604px;}
.xb_c02438{left:569.880036px;}
@media print{
.v0_c02438{vertical-align:0.000000pt;}
.v1_c02438{vertical-align:1.279488pt;}
.lsd_c02438{letter-spacing:-1.064448pt;}
.ls15_c02438{letter-spacing:-0.705408pt;}
.lsa_c02438{letter-spacing:-0.688512pt;}
.ls10_c02438{letter-spacing:-0.654720pt;}
.ls7_c02438{letter-spacing:-0.544896pt;}
.ls9_c02438{letter-spacing:-0.511104pt;}
.ls11_c02438{letter-spacing:-0.240768pt;}
.lse_c02438{letter-spacing:-0.232320pt;}
.ls6_c02438{letter-spacing:-0.215424pt;}
.ls4_c02438{letter-spacing:-0.105600pt;}
.ls14_c02438{letter-spacing:0.000000pt;}
.ls0_c02438{letter-spacing:0.005376pt;}
.ls5_c02438{letter-spacing:0.114048pt;}
.lsc_c02438{letter-spacing:0.451968pt;}
.ls13_c02438{letter-spacing:0.456960pt;}
.lsf_c02438{letter-spacing:0.477312pt;}
.lsb_c02438{letter-spacing:0.515328pt;}
.ls12_c02438{letter-spacing:0.528000pt;}
.ls8_c02438{letter-spacing:0.532224pt;}
.ls2_c02438{letter-spacing:0.544896pt;}
.ls1_c02438{letter-spacing:0.637824pt;}
.ls3_c02438{letter-spacing:0.642048pt;}
.wsd_c02438{word-spacing:-13.445376pt;}
.wsb_c02438{word-spacing:-11.088000pt;}
.ws7_c02438{word-spacing:-11.075328pt;}
.ws4_c02438{word-spacing:-10.344576pt;}
.ws2_c02438{word-spacing:-10.015104pt;}
.ws6_c02438{word-spacing:-9.871488pt;}
.ws15_c02438{word-spacing:-1.919232pt;}
.ws16_c02438{word-spacing:-0.958848pt;}
.wse_c02438{word-spacing:-0.865920pt;}
.ws10_c02438{word-spacing:-0.105600pt;}
.ws12_c02438{word-spacing:-0.088704pt;}
.ws13_c02438{word-spacing:-0.080256pt;}
.ws14_c02438{word-spacing:-0.076032pt;}
.wsf_c02438{word-spacing:0.000000pt;}
.ws17_c02438{word-spacing:0.384384pt;}
.ws11_c02438{word-spacing:0.743424pt;}
.wsa_c02438{word-spacing:5.892480pt;}
.wsc_c02438{word-spacing:29.600256pt;}
.ws9_c02438{word-spacing:30.966144pt;}
.ws1_c02438{word-spacing:33.563904pt;}
.ws0_c02438{word-spacing:33.796224pt;}
.ws3_c02438{word-spacing:34.860672pt;}
.ws5_c02438{word-spacing:35.468928pt;}
.ws8_c02438{word-spacing:37.357056pt;}
._0_c02438{margin-left:-1.731840pt;}
._2_c02438{width:1.317888pt;}
._5_c02438{width:2.462592pt;}
._4_c02438{width:3.784704pt;}
._7_c02438{width:17.761920pt;}
._8_c02438{width:20.845440pt;}
._6_c02438{width:21.947904pt;}
._1_c02438{width:44.668800pt;}
._3_c02438{width:45.805056pt;}
.fs0_c02438{font-size:42.240000pt;}
.fs1_c02438{font-size:53.760000pt;}
.y0_c02438{bottom:0.000000pt;}
.y1b_c02438{bottom:117.225499pt;}
.y1a_c02438{bottom:130.665211pt;}
.y1d_c02438{bottom:165.866875pt;}
.y1c_c02438{bottom:174.507067pt;}
.y19_c02438{bottom:245.225371pt;}
.y18_c02438{bottom:317.225563pt;}
.y16_c02438{bottom:361.386427pt;}
.y12_c02438{bottom:377.386939pt;}
.y17_c02438{bottom:407.786011pt;}
.y15_c02438{bottom:437.226235pt;}
.y14_c02438{bottom:453.226747pt;}
.y11_c02438{bottom:482.666971pt;}
.y13_c02438{bottom:497.386555pt;}
.y10_c02438{bottom:513.387067pt;}
.y1e_c02438{bottom:546.027067pt;}
.yc_c02438{bottom:579.945467pt;}
.yb_c02438{bottom:593.385179pt;}
.ye_c02438{bottom:628.586875pt;}
.yd_c02438{bottom:637.227067pt;}
.ya_c02438{bottom:707.945339pt;}
.y9_c02438{bottom:779.945531pt;}
.y7_c02438{bottom:823.786427pt;}
.y3_c02438{bottom:839.786939pt;}
.y8_c02438{bottom:870.505979pt;}
.y6_c02438{bottom:899.946203pt;}
.y5_c02438{bottom:915.946715pt;}
.y2_c02438{bottom:945.386939pt;}
.y4_c02438{bottom:959.786555pt;}
.y1_c02438{bottom:975.787067pt;}
.yf_c02438{bottom:1008.747067pt;}
.h3_c02438{height:28.916250pt;}
.h1_c02438{height:37.063125pt;}
.h2_c02438{height:37.166250pt;}
.h4_c02438{height:48.581988pt;}
.h0_c02438{height:1122.666667pt;}
.w1_c02438{width:793.333333pt;}
.w0_c02438{width:793.626667pt;}
.x0_c02438{left:0.000000pt;}
.xe_c02438{left:104.000000pt;}
.x8_c02438{left:391.999872pt;}
.x4_c02438{left:396.160512pt;}
.xc_c02438{left:400.960000pt;}
.x7_c02438{left:404.799648pt;}
.x5_c02438{left:410.560128pt;}
.x1_c02438{left:411.840000pt;}
.xa_c02438{left:429.760320pt;}
.x9_c02438{left:437.439552pt;}
.x6_c02438{left:438.400512pt;}
.xd_c02438{left:450.560320pt;}
.x3_c02438{left:455.039904pt;}
.x2_c02438{left:468.159648pt;}
.xb_c02438{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02439 {
    display:none;
  }
  .loading-indicator_c02439.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02439 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02439 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02439" -> "#page-container .classname_c02439")
 */
.pf_c02439 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02439 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02439 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02439 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02439 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02439 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02439 {overflow:visible;}
  }
}
.c_c02439 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02439 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02439:after { /* webkit #35443 */
  content: '';
}
.t_c02439:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02439 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02439 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02439 { /* info for Javascript */
  display:none;
}
.l_c02439 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02439 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02439 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02439:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02439 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02439.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02439 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02439{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02439;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02439{font-family:ff1_c02439;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02439;src:url('chunks/assets/font_d714c17f79b7b42318cb392a.woff2')format("woff");}.ff2_c02439{font-family:ff2_c02439;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02439;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02439{font-family:ff3_c02439;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02439{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02439{vertical-align:0.000000px;}
.v1_c02439{vertical-align:1.439424px;}
.lse_c02439{letter-spacing:-0.793584px;}
.lsb_c02439{letter-spacing:-0.774576px;}
.ls11_c02439{letter-spacing:-0.736560px;}
.ls8_c02439{letter-spacing:-0.613008px;}
.lsa_c02439{letter-spacing:-0.574992px;}
.ls12_c02439{letter-spacing:-0.270864px;}
.lsf_c02439{letter-spacing:-0.261360px;}
.ls7_c02439{letter-spacing:-0.242352px;}
.ls4_c02439{letter-spacing:-0.118800px;}
.ls15_c02439{letter-spacing:0.000000px;}
.ls1_c02439{letter-spacing:0.006048px;}
.ls6_c02439{letter-spacing:0.128304px;}
.lsd_c02439{letter-spacing:0.508464px;}
.ls14_c02439{letter-spacing:0.514080px;}
.ls10_c02439{letter-spacing:0.536976px;}
.lsc_c02439{letter-spacing:0.579744px;}
.ls13_c02439{letter-spacing:0.594000px;}
.ls9_c02439{letter-spacing:0.598752px;}
.ls2_c02439{letter-spacing:0.613008px;}
.ls0_c02439{letter-spacing:0.651024px;}
.ls5_c02439{letter-spacing:0.717552px;}
.ls3_c02439{letter-spacing:0.722304px;}
.sc__c02439{text-shadow:none;}
.sc0_c02439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02439{-webkit-text-stroke:0px transparent;}
.sc0_c02439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02439{word-spacing:-15.126048px;}
.wsb_c02439{word-spacing:-12.474000px;}
.ws7_c02439{word-spacing:-12.459744px;}
.ws4_c02439{word-spacing:-11.637648px;}
.ws2_c02439{word-spacing:-11.266992px;}
.ws6_c02439{word-spacing:-11.105424px;}
.ws16_c02439{word-spacing:-2.159136px;}
.ws10_c02439{word-spacing:-1.012176px;}
.wse_c02439{word-spacing:-0.974160px;}
.ws11_c02439{word-spacing:-0.118800px;}
.ws13_c02439{word-spacing:-0.099792px;}
.ws14_c02439{word-spacing:-0.090288px;}
.ws15_c02439{word-spacing:-0.085536px;}
.wsf_c02439{word-spacing:0.000000px;}
.ws12_c02439{word-spacing:0.432432px;}
.wsa_c02439{word-spacing:6.629040px;}
.wsc_c02439{word-spacing:33.300288px;}
.ws9_c02439{word-spacing:34.836912px;}
.ws1_c02439{word-spacing:37.759392px;}
.ws0_c02439{word-spacing:38.020752px;}
.ws3_c02439{word-spacing:39.218256px;}
.ws5_c02439{word-spacing:39.902544px;}
.ws8_c02439{word-spacing:42.026688px;}
._0_c02439{margin-left:-1.948320px;}
._2_c02439{width:1.482624px;}
._4_c02439{width:4.257792px;}
._6_c02439{width:19.982160px;}
._7_c02439{width:23.451120px;}
._5_c02439{width:24.691392px;}
._1_c02439{width:50.252400px;}
._3_c02439{width:51.530688px;}
.fc0_c02439{color:rgb(0,0,0);}
.fs0_c02439{font-size:47.520000px;}
.fs1_c02439{font-size:60.480000px;}
.y0_c02439{bottom:0.000000px;}
.y1b_c02439{bottom:131.878686px;}
.y1a_c02439{bottom:146.998362px;}
.y1d_c02439{bottom:186.600234px;}
.y1c_c02439{bottom:196.320450px;}
.y19_c02439{bottom:275.878542px;}
.y18_c02439{bottom:356.878758px;}
.y16_c02439{bottom:406.559730px;}
.y12_c02439{bottom:424.560306px;}
.y17_c02439{bottom:458.759262px;}
.y15_c02439{bottom:491.879514px;}
.y14_c02439{bottom:509.880090px;}
.y11_c02439{bottom:543.000342px;}
.y13_c02439{bottom:559.559874px;}
.y10_c02439{bottom:577.560450px;}
.y1e_c02439{bottom:614.280450px;}
.yc_c02439{bottom:652.438650px;}
.yb_c02439{bottom:667.558326px;}
.ye_c02439{bottom:707.160234px;}
.yd_c02439{bottom:716.880450px;}
.ya_c02439{bottom:796.438506px;}
.y9_c02439{bottom:877.438722px;}
.y7_c02439{bottom:926.759730px;}
.y3_c02439{bottom:944.760306px;}
.y8_c02439{bottom:979.319226px;}
.y6_c02439{bottom:1012.439478px;}
.y5_c02439{bottom:1030.440054px;}
.y2_c02439{bottom:1063.560306px;}
.y4_c02439{bottom:1079.759874px;}
.y1_c02439{bottom:1097.760450px;}
.yf_c02439{bottom:1134.840450px;}
.h3_c02439{height:32.530781px;}
.h1_c02439{height:41.696016px;}
.h2_c02439{height:41.812031px;}
.h4_c02439{height:54.654737px;}
.h0_c02439{height:1263.000000px;}
.w1_c02439{width:892.500000px;}
.w0_c02439{width:892.830000px;}
.x0_c02439{left:0.000000px;}
.xe_c02439{left:117.000000px;}
.x8_c02439{left:440.999856px;}
.x4_c02439{left:445.680576px;}
.xc_c02439{left:451.080000px;}
.x7_c02439{left:455.399604px;}
.x5_c02439{left:461.880144px;}
.x1_c02439{left:463.320000px;}
.xa_c02439{left:483.480360px;}
.x9_c02439{left:492.119496px;}
.x6_c02439{left:493.200576px;}
.xd_c02439{left:506.880360px;}
.x3_c02439{left:511.919892px;}
.x2_c02439{left:526.679604px;}
.xb_c02439{left:569.880036px;}
@media print{
.v0_c02439{vertical-align:0.000000pt;}
.v1_c02439{vertical-align:1.279488pt;}
.lse_c02439{letter-spacing:-0.705408pt;}
.lsb_c02439{letter-spacing:-0.688512pt;}
.ls11_c02439{letter-spacing:-0.654720pt;}
.ls8_c02439{letter-spacing:-0.544896pt;}
.lsa_c02439{letter-spacing:-0.511104pt;}
.ls12_c02439{letter-spacing:-0.240768pt;}
.lsf_c02439{letter-spacing:-0.232320pt;}
.ls7_c02439{letter-spacing:-0.215424pt;}
.ls4_c02439{letter-spacing:-0.105600pt;}
.ls15_c02439{letter-spacing:0.000000pt;}
.ls1_c02439{letter-spacing:0.005376pt;}
.ls6_c02439{letter-spacing:0.114048pt;}
.lsd_c02439{letter-spacing:0.451968pt;}
.ls14_c02439{letter-spacing:0.456960pt;}
.ls10_c02439{letter-spacing:0.477312pt;}
.lsc_c02439{letter-spacing:0.515328pt;}
.ls13_c02439{letter-spacing:0.528000pt;}
.ls9_c02439{letter-spacing:0.532224pt;}
.ls2_c02439{letter-spacing:0.544896pt;}
.ls0_c02439{letter-spacing:0.578688pt;}
.ls5_c02439{letter-spacing:0.637824pt;}
.ls3_c02439{letter-spacing:0.642048pt;}
.wsd_c02439{word-spacing:-13.445376pt;}
.wsb_c02439{word-spacing:-11.088000pt;}
.ws7_c02439{word-spacing:-11.075328pt;}
.ws4_c02439{word-spacing:-10.344576pt;}
.ws2_c02439{word-spacing:-10.015104pt;}
.ws6_c02439{word-spacing:-9.871488pt;}
.ws16_c02439{word-spacing:-1.919232pt;}
.ws10_c02439{word-spacing:-0.899712pt;}
.wse_c02439{word-spacing:-0.865920pt;}
.ws11_c02439{word-spacing:-0.105600pt;}
.ws13_c02439{word-spacing:-0.088704pt;}
.ws14_c02439{word-spacing:-0.080256pt;}
.ws15_c02439{word-spacing:-0.076032pt;}
.wsf_c02439{word-spacing:0.000000pt;}
.ws12_c02439{word-spacing:0.384384pt;}
.wsa_c02439{word-spacing:5.892480pt;}
.wsc_c02439{word-spacing:29.600256pt;}
.ws9_c02439{word-spacing:30.966144pt;}
.ws1_c02439{word-spacing:33.563904pt;}
.ws0_c02439{word-spacing:33.796224pt;}
.ws3_c02439{word-spacing:34.860672pt;}
.ws5_c02439{word-spacing:35.468928pt;}
.ws8_c02439{word-spacing:37.357056pt;}
._0_c02439{margin-left:-1.731840pt;}
._2_c02439{width:1.317888pt;}
._4_c02439{width:3.784704pt;}
._6_c02439{width:17.761920pt;}
._7_c02439{width:20.845440pt;}
._5_c02439{width:21.947904pt;}
._1_c02439{width:44.668800pt;}
._3_c02439{width:45.805056pt;}
.fs0_c02439{font-size:42.240000pt;}
.fs1_c02439{font-size:53.760000pt;}
.y0_c02439{bottom:0.000000pt;}
.y1b_c02439{bottom:117.225499pt;}
.y1a_c02439{bottom:130.665211pt;}
.y1d_c02439{bottom:165.866875pt;}
.y1c_c02439{bottom:174.507067pt;}
.y19_c02439{bottom:245.225371pt;}
.y18_c02439{bottom:317.225563pt;}
.y16_c02439{bottom:361.386427pt;}
.y12_c02439{bottom:377.386939pt;}
.y17_c02439{bottom:407.786011pt;}
.y15_c02439{bottom:437.226235pt;}
.y14_c02439{bottom:453.226747pt;}
.y11_c02439{bottom:482.666971pt;}
.y13_c02439{bottom:497.386555pt;}
.y10_c02439{bottom:513.387067pt;}
.y1e_c02439{bottom:546.027067pt;}
.yc_c02439{bottom:579.945467pt;}
.yb_c02439{bottom:593.385179pt;}
.ye_c02439{bottom:628.586875pt;}
.yd_c02439{bottom:637.227067pt;}
.ya_c02439{bottom:707.945339pt;}
.y9_c02439{bottom:779.945531pt;}
.y7_c02439{bottom:823.786427pt;}
.y3_c02439{bottom:839.786939pt;}
.y8_c02439{bottom:870.505979pt;}
.y6_c02439{bottom:899.946203pt;}
.y5_c02439{bottom:915.946715pt;}
.y2_c02439{bottom:945.386939pt;}
.y4_c02439{bottom:959.786555pt;}
.y1_c02439{bottom:975.787067pt;}
.yf_c02439{bottom:1008.747067pt;}
.h3_c02439{height:28.916250pt;}
.h1_c02439{height:37.063125pt;}
.h2_c02439{height:37.166250pt;}
.h4_c02439{height:48.581988pt;}
.h0_c02439{height:1122.666667pt;}
.w1_c02439{width:793.333333pt;}
.w0_c02439{width:793.626667pt;}
.x0_c02439{left:0.000000pt;}
.xe_c02439{left:104.000000pt;}
.x8_c02439{left:391.999872pt;}
.x4_c02439{left:396.160512pt;}
.xc_c02439{left:400.960000pt;}
.x7_c02439{left:404.799648pt;}
.x5_c02439{left:410.560128pt;}
.x1_c02439{left:411.840000pt;}
.xa_c02439{left:429.760320pt;}
.x9_c02439{left:437.439552pt;}
.x6_c02439{left:438.400512pt;}
.xd_c02439{left:450.560320pt;}
.x3_c02439{left:455.039904pt;}
.x2_c02439{left:468.159648pt;}
.xb_c02439{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02440 {
    display:none;
  }
  .loading-indicator_c02440.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02440 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02440 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02440" -> "#page-container .classname_c02440")
 */
.pf_c02440 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02440 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02440 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02440 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02440 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02440 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02440 {overflow:visible;}
  }
}
.c_c02440 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02440 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02440:after { /* webkit #35443 */
  content: '';
}
.t_c02440:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02440 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02440 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02440 { /* info for Javascript */
  display:none;
}
.l_c02440 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02440 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02440 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02440:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02440 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02440.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02440 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02440{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02440;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02440{font-family:ff1_c02440;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02440;src:url('chunks/assets/font_6f41372cddd052d11be0e4ee.woff2')format("woff");}.ff2_c02440{font-family:ff2_c02440;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02440;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02440{font-family:ff3_c02440;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02440{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02440{vertical-align:0.000000px;}
.v1_c02440{vertical-align:1.439424px;}
.lse_c02440{letter-spacing:-0.793584px;}
.lsb_c02440{letter-spacing:-0.774576px;}
.ls11_c02440{letter-spacing:-0.736560px;}
.ls8_c02440{letter-spacing:-0.613008px;}
.lsa_c02440{letter-spacing:-0.574992px;}
.ls12_c02440{letter-spacing:-0.270864px;}
.lsf_c02440{letter-spacing:-0.261360px;}
.ls7_c02440{letter-spacing:-0.242352px;}
.ls5_c02440{letter-spacing:-0.118800px;}
.ls15_c02440{letter-spacing:0.000000px;}
.ls1_c02440{letter-spacing:0.006048px;}
.ls6_c02440{letter-spacing:0.128304px;}
.lsd_c02440{letter-spacing:0.508464px;}
.ls14_c02440{letter-spacing:0.514080px;}
.ls10_c02440{letter-spacing:0.536976px;}
.lsc_c02440{letter-spacing:0.579744px;}
.ls13_c02440{letter-spacing:0.594000px;}
.ls9_c02440{letter-spacing:0.598752px;}
.ls3_c02440{letter-spacing:0.613008px;}
.ls0_c02440{letter-spacing:0.651024px;}
.ls2_c02440{letter-spacing:0.717552px;}
.ls4_c02440{letter-spacing:0.722304px;}
.sc__c02440{text-shadow:none;}
.sc0_c02440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02440{-webkit-text-stroke:0px transparent;}
.sc0_c02440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02440{word-spacing:-15.126048px;}
.wsb_c02440{word-spacing:-12.474000px;}
.ws7_c02440{word-spacing:-12.459744px;}
.ws4_c02440{word-spacing:-11.637648px;}
.ws2_c02440{word-spacing:-11.266992px;}
.ws6_c02440{word-spacing:-11.105424px;}
.ws16_c02440{word-spacing:-2.159136px;}
.ws17_c02440{word-spacing:-1.078704px;}
.ws10_c02440{word-spacing:-1.012176px;}
.wse_c02440{word-spacing:-0.974160px;}
.ws11_c02440{word-spacing:-0.118800px;}
.ws13_c02440{word-spacing:-0.099792px;}
.ws14_c02440{word-spacing:-0.090288px;}
.ws15_c02440{word-spacing:-0.085536px;}
.wsf_c02440{word-spacing:0.000000px;}
.ws12_c02440{word-spacing:0.432432px;}
.wsa_c02440{word-spacing:6.629040px;}
.wsc_c02440{word-spacing:33.300288px;}
.ws9_c02440{word-spacing:34.836912px;}
.ws1_c02440{word-spacing:37.759392px;}
.ws0_c02440{word-spacing:38.020752px;}
.ws3_c02440{word-spacing:39.218256px;}
.ws5_c02440{word-spacing:39.902544px;}
.ws8_c02440{word-spacing:42.026688px;}
._0_c02440{margin-left:-1.948320px;}
._2_c02440{width:1.482624px;}
._4_c02440{width:4.257792px;}
._6_c02440{width:19.982160px;}
._7_c02440{width:23.451120px;}
._5_c02440{width:24.691392px;}
._1_c02440{width:50.252400px;}
._3_c02440{width:51.530688px;}
.fc0_c02440{color:rgb(0,0,0);}
.fs0_c02440{font-size:47.520000px;}
.fs1_c02440{font-size:60.480000px;}
.y0_c02440{bottom:0.000000px;}
.y1b_c02440{bottom:131.878686px;}
.y1a_c02440{bottom:146.998362px;}
.y1d_c02440{bottom:186.600234px;}
.y1c_c02440{bottom:196.320450px;}
.y19_c02440{bottom:275.878542px;}
.y18_c02440{bottom:356.878758px;}
.y16_c02440{bottom:406.559730px;}
.y12_c02440{bottom:424.560306px;}
.y17_c02440{bottom:458.759262px;}
.y15_c02440{bottom:491.879514px;}
.y14_c02440{bottom:509.880090px;}
.y11_c02440{bottom:543.000342px;}
.y13_c02440{bottom:559.559874px;}
.y10_c02440{bottom:577.560450px;}
.y1e_c02440{bottom:614.280450px;}
.yc_c02440{bottom:652.438650px;}
.yb_c02440{bottom:667.558326px;}
.ye_c02440{bottom:707.160234px;}
.yd_c02440{bottom:716.880450px;}
.ya_c02440{bottom:796.438506px;}
.y9_c02440{bottom:877.438722px;}
.y7_c02440{bottom:926.759730px;}
.y3_c02440{bottom:944.760306px;}
.y8_c02440{bottom:979.319226px;}
.y6_c02440{bottom:1012.439478px;}
.y5_c02440{bottom:1030.440054px;}
.y2_c02440{bottom:1063.560306px;}
.y4_c02440{bottom:1079.759874px;}
.y1_c02440{bottom:1097.760450px;}
.yf_c02440{bottom:1134.840450px;}
.h3_c02440{height:32.530781px;}
.h1_c02440{height:41.696016px;}
.h2_c02440{height:41.812031px;}
.h4_c02440{height:54.654737px;}
.h0_c02440{height:1263.000000px;}
.w1_c02440{width:892.500000px;}
.w0_c02440{width:892.830000px;}
.x0_c02440{left:0.000000px;}
.xe_c02440{left:117.000000px;}
.x8_c02440{left:440.999856px;}
.x4_c02440{left:445.680576px;}
.xc_c02440{left:451.080000px;}
.x7_c02440{left:455.399604px;}
.x5_c02440{left:461.880144px;}
.x1_c02440{left:463.320000px;}
.xa_c02440{left:483.480360px;}
.x9_c02440{left:492.119496px;}
.x6_c02440{left:493.200576px;}
.xd_c02440{left:506.880360px;}
.x3_c02440{left:511.919892px;}
.x2_c02440{left:526.679604px;}
.xb_c02440{left:569.880036px;}
@media print{
.v0_c02440{vertical-align:0.000000pt;}
.v1_c02440{vertical-align:1.279488pt;}
.lse_c02440{letter-spacing:-0.705408pt;}
.lsb_c02440{letter-spacing:-0.688512pt;}
.ls11_c02440{letter-spacing:-0.654720pt;}
.ls8_c02440{letter-spacing:-0.544896pt;}
.lsa_c02440{letter-spacing:-0.511104pt;}
.ls12_c02440{letter-spacing:-0.240768pt;}
.lsf_c02440{letter-spacing:-0.232320pt;}
.ls7_c02440{letter-spacing:-0.215424pt;}
.ls5_c02440{letter-spacing:-0.105600pt;}
.ls15_c02440{letter-spacing:0.000000pt;}
.ls1_c02440{letter-spacing:0.005376pt;}
.ls6_c02440{letter-spacing:0.114048pt;}
.lsd_c02440{letter-spacing:0.451968pt;}
.ls14_c02440{letter-spacing:0.456960pt;}
.ls10_c02440{letter-spacing:0.477312pt;}
.lsc_c02440{letter-spacing:0.515328pt;}
.ls13_c02440{letter-spacing:0.528000pt;}
.ls9_c02440{letter-spacing:0.532224pt;}
.ls3_c02440{letter-spacing:0.544896pt;}
.ls0_c02440{letter-spacing:0.578688pt;}
.ls2_c02440{letter-spacing:0.637824pt;}
.ls4_c02440{letter-spacing:0.642048pt;}
.wsd_c02440{word-spacing:-13.445376pt;}
.wsb_c02440{word-spacing:-11.088000pt;}
.ws7_c02440{word-spacing:-11.075328pt;}
.ws4_c02440{word-spacing:-10.344576pt;}
.ws2_c02440{word-spacing:-10.015104pt;}
.ws6_c02440{word-spacing:-9.871488pt;}
.ws16_c02440{word-spacing:-1.919232pt;}
.ws17_c02440{word-spacing:-0.958848pt;}
.ws10_c02440{word-spacing:-0.899712pt;}
.wse_c02440{word-spacing:-0.865920pt;}
.ws11_c02440{word-spacing:-0.105600pt;}
.ws13_c02440{word-spacing:-0.088704pt;}
.ws14_c02440{word-spacing:-0.080256pt;}
.ws15_c02440{word-spacing:-0.076032pt;}
.wsf_c02440{word-spacing:0.000000pt;}
.ws12_c02440{word-spacing:0.384384pt;}
.wsa_c02440{word-spacing:5.892480pt;}
.wsc_c02440{word-spacing:29.600256pt;}
.ws9_c02440{word-spacing:30.966144pt;}
.ws1_c02440{word-spacing:33.563904pt;}
.ws0_c02440{word-spacing:33.796224pt;}
.ws3_c02440{word-spacing:34.860672pt;}
.ws5_c02440{word-spacing:35.468928pt;}
.ws8_c02440{word-spacing:37.357056pt;}
._0_c02440{margin-left:-1.731840pt;}
._2_c02440{width:1.317888pt;}
._4_c02440{width:3.784704pt;}
._6_c02440{width:17.761920pt;}
._7_c02440{width:20.845440pt;}
._5_c02440{width:21.947904pt;}
._1_c02440{width:44.668800pt;}
._3_c02440{width:45.805056pt;}
.fs0_c02440{font-size:42.240000pt;}
.fs1_c02440{font-size:53.760000pt;}
.y0_c02440{bottom:0.000000pt;}
.y1b_c02440{bottom:117.225499pt;}
.y1a_c02440{bottom:130.665211pt;}
.y1d_c02440{bottom:165.866875pt;}
.y1c_c02440{bottom:174.507067pt;}
.y19_c02440{bottom:245.225371pt;}
.y18_c02440{bottom:317.225563pt;}
.y16_c02440{bottom:361.386427pt;}
.y12_c02440{bottom:377.386939pt;}
.y17_c02440{bottom:407.786011pt;}
.y15_c02440{bottom:437.226235pt;}
.y14_c02440{bottom:453.226747pt;}
.y11_c02440{bottom:482.666971pt;}
.y13_c02440{bottom:497.386555pt;}
.y10_c02440{bottom:513.387067pt;}
.y1e_c02440{bottom:546.027067pt;}
.yc_c02440{bottom:579.945467pt;}
.yb_c02440{bottom:593.385179pt;}
.ye_c02440{bottom:628.586875pt;}
.yd_c02440{bottom:637.227067pt;}
.ya_c02440{bottom:707.945339pt;}
.y9_c02440{bottom:779.945531pt;}
.y7_c02440{bottom:823.786427pt;}
.y3_c02440{bottom:839.786939pt;}
.y8_c02440{bottom:870.505979pt;}
.y6_c02440{bottom:899.946203pt;}
.y5_c02440{bottom:915.946715pt;}
.y2_c02440{bottom:945.386939pt;}
.y4_c02440{bottom:959.786555pt;}
.y1_c02440{bottom:975.787067pt;}
.yf_c02440{bottom:1008.747067pt;}
.h3_c02440{height:28.916250pt;}
.h1_c02440{height:37.063125pt;}
.h2_c02440{height:37.166250pt;}
.h4_c02440{height:48.581988pt;}
.h0_c02440{height:1122.666667pt;}
.w1_c02440{width:793.333333pt;}
.w0_c02440{width:793.626667pt;}
.x0_c02440{left:0.000000pt;}
.xe_c02440{left:104.000000pt;}
.x8_c02440{left:391.999872pt;}
.x4_c02440{left:396.160512pt;}
.xc_c02440{left:400.960000pt;}
.x7_c02440{left:404.799648pt;}
.x5_c02440{left:410.560128pt;}
.x1_c02440{left:411.840000pt;}
.xa_c02440{left:429.760320pt;}
.x9_c02440{left:437.439552pt;}
.x6_c02440{left:438.400512pt;}
.xd_c02440{left:450.560320pt;}
.x3_c02440{left:455.039904pt;}
.x2_c02440{left:468.159648pt;}
.xb_c02440{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02441 {
    display:none;
  }
  .loading-indicator_c02441.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02441 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02441 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02441" -> "#page-container .classname_c02441")
 */
.pf_c02441 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02441 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02441 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02441 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02441 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02441 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02441 {overflow:visible;}
  }
}
.c_c02441 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02441 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02441:after { /* webkit #35443 */
  content: '';
}
.t_c02441:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02441 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02441 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02441 { /* info for Javascript */
  display:none;
}
.l_c02441 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02441 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02441 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02441:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02441 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02441.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02441 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02441{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02441;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02441{font-family:ff1_c02441;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02441;src:url('chunks/assets/font_cbb5492c63f6a55a09b4e320.woff2')format("woff");}.ff2_c02441{font-family:ff2_c02441;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02441;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02441{font-family:ff3_c02441;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02441{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02441{vertical-align:0.000000px;}
.v1_c02441{vertical-align:1.439424px;}
.lse_c02441{letter-spacing:-0.793584px;}
.lsb_c02441{letter-spacing:-0.774576px;}
.ls11_c02441{letter-spacing:-0.736560px;}
.ls8_c02441{letter-spacing:-0.613008px;}
.lsa_c02441{letter-spacing:-0.574992px;}
.ls12_c02441{letter-spacing:-0.270864px;}
.lsf_c02441{letter-spacing:-0.261360px;}
.ls7_c02441{letter-spacing:-0.242352px;}
.ls4_c02441{letter-spacing:-0.118800px;}
.ls15_c02441{letter-spacing:0.000000px;}
.ls1_c02441{letter-spacing:0.006048px;}
.ls6_c02441{letter-spacing:0.128304px;}
.lsd_c02441{letter-spacing:0.508464px;}
.ls14_c02441{letter-spacing:0.514080px;}
.ls10_c02441{letter-spacing:0.536976px;}
.lsc_c02441{letter-spacing:0.579744px;}
.ls13_c02441{letter-spacing:0.594000px;}
.ls9_c02441{letter-spacing:0.598752px;}
.ls2_c02441{letter-spacing:0.613008px;}
.ls0_c02441{letter-spacing:0.651024px;}
.ls5_c02441{letter-spacing:0.717552px;}
.ls3_c02441{letter-spacing:0.722304px;}
.sc__c02441{text-shadow:none;}
.sc0_c02441{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02441{-webkit-text-stroke:0px transparent;}
.sc0_c02441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02441{word-spacing:-15.126048px;}
.wsb_c02441{word-spacing:-12.474000px;}
.ws7_c02441{word-spacing:-12.459744px;}
.ws4_c02441{word-spacing:-11.637648px;}
.ws2_c02441{word-spacing:-11.266992px;}
.ws6_c02441{word-spacing:-11.105424px;}
.ws16_c02441{word-spacing:-2.159136px;}
.ws10_c02441{word-spacing:-1.012176px;}
.wse_c02441{word-spacing:-0.974160px;}
.ws11_c02441{word-spacing:-0.118800px;}
.ws13_c02441{word-spacing:-0.099792px;}
.ws14_c02441{word-spacing:-0.090288px;}
.ws15_c02441{word-spacing:-0.085536px;}
.wsf_c02441{word-spacing:0.000000px;}
.ws12_c02441{word-spacing:0.432432px;}
.wsa_c02441{word-spacing:6.629040px;}
.wsc_c02441{word-spacing:33.300288px;}
.ws9_c02441{word-spacing:34.836912px;}
.ws1_c02441{word-spacing:37.759392px;}
.ws0_c02441{word-spacing:38.020752px;}
.ws3_c02441{word-spacing:39.218256px;}
.ws5_c02441{word-spacing:39.902544px;}
.ws8_c02441{word-spacing:42.026688px;}
._0_c02441{margin-left:-1.948320px;}
._2_c02441{width:1.482624px;}
._4_c02441{width:4.257792px;}
._6_c02441{width:19.982160px;}
._7_c02441{width:23.451120px;}
._5_c02441{width:24.691392px;}
._1_c02441{width:50.252400px;}
._3_c02441{width:51.530688px;}
.fc0_c02441{color:rgb(0,0,0);}
.fs0_c02441{font-size:47.520000px;}
.fs1_c02441{font-size:60.480000px;}
.y0_c02441{bottom:0.000000px;}
.y1b_c02441{bottom:131.878686px;}
.y1a_c02441{bottom:146.998362px;}
.y1d_c02441{bottom:186.600234px;}
.y1c_c02441{bottom:196.320450px;}
.y19_c02441{bottom:275.878542px;}
.y18_c02441{bottom:356.878758px;}
.y16_c02441{bottom:406.559730px;}
.y12_c02441{bottom:424.560306px;}
.y17_c02441{bottom:458.759262px;}
.y15_c02441{bottom:491.879514px;}
.y14_c02441{bottom:509.880090px;}
.y11_c02441{bottom:543.000342px;}
.y13_c02441{bottom:559.559874px;}
.y10_c02441{bottom:577.560450px;}
.y1e_c02441{bottom:614.280450px;}
.yc_c02441{bottom:652.438650px;}
.yb_c02441{bottom:667.558326px;}
.ye_c02441{bottom:707.160234px;}
.yd_c02441{bottom:716.880450px;}
.ya_c02441{bottom:796.438506px;}
.y9_c02441{bottom:877.438722px;}
.y7_c02441{bottom:926.759730px;}
.y3_c02441{bottom:944.760306px;}
.y8_c02441{bottom:979.319226px;}
.y6_c02441{bottom:1012.439478px;}
.y5_c02441{bottom:1030.440054px;}
.y2_c02441{bottom:1063.560306px;}
.y4_c02441{bottom:1079.759874px;}
.y1_c02441{bottom:1097.760450px;}
.yf_c02441{bottom:1134.840450px;}
.h3_c02441{height:32.530781px;}
.h1_c02441{height:41.696016px;}
.h2_c02441{height:41.812031px;}
.h4_c02441{height:54.654737px;}
.h0_c02441{height:1263.000000px;}
.w1_c02441{width:892.500000px;}
.w0_c02441{width:892.830000px;}
.x0_c02441{left:0.000000px;}
.xe_c02441{left:117.000000px;}
.x8_c02441{left:440.999856px;}
.x4_c02441{left:445.680576px;}
.xc_c02441{left:451.080000px;}
.x7_c02441{left:455.399604px;}
.x5_c02441{left:461.880144px;}
.x1_c02441{left:463.320000px;}
.xa_c02441{left:483.480360px;}
.x9_c02441{left:492.119496px;}
.x6_c02441{left:493.200576px;}
.xd_c02441{left:506.880360px;}
.x3_c02441{left:511.919892px;}
.x2_c02441{left:526.679604px;}
.xb_c02441{left:569.880036px;}
@media print{
.v0_c02441{vertical-align:0.000000pt;}
.v1_c02441{vertical-align:1.279488pt;}
.lse_c02441{letter-spacing:-0.705408pt;}
.lsb_c02441{letter-spacing:-0.688512pt;}
.ls11_c02441{letter-spacing:-0.654720pt;}
.ls8_c02441{letter-spacing:-0.544896pt;}
.lsa_c02441{letter-spacing:-0.511104pt;}
.ls12_c02441{letter-spacing:-0.240768pt;}
.lsf_c02441{letter-spacing:-0.232320pt;}
.ls7_c02441{letter-spacing:-0.215424pt;}
.ls4_c02441{letter-spacing:-0.105600pt;}
.ls15_c02441{letter-spacing:0.000000pt;}
.ls1_c02441{letter-spacing:0.005376pt;}
.ls6_c02441{letter-spacing:0.114048pt;}
.lsd_c02441{letter-spacing:0.451968pt;}
.ls14_c02441{letter-spacing:0.456960pt;}
.ls10_c02441{letter-spacing:0.477312pt;}
.lsc_c02441{letter-spacing:0.515328pt;}
.ls13_c02441{letter-spacing:0.528000pt;}
.ls9_c02441{letter-spacing:0.532224pt;}
.ls2_c02441{letter-spacing:0.544896pt;}
.ls0_c02441{letter-spacing:0.578688pt;}
.ls5_c02441{letter-spacing:0.637824pt;}
.ls3_c02441{letter-spacing:0.642048pt;}
.wsd_c02441{word-spacing:-13.445376pt;}
.wsb_c02441{word-spacing:-11.088000pt;}
.ws7_c02441{word-spacing:-11.075328pt;}
.ws4_c02441{word-spacing:-10.344576pt;}
.ws2_c02441{word-spacing:-10.015104pt;}
.ws6_c02441{word-spacing:-9.871488pt;}
.ws16_c02441{word-spacing:-1.919232pt;}
.ws10_c02441{word-spacing:-0.899712pt;}
.wse_c02441{word-spacing:-0.865920pt;}
.ws11_c02441{word-spacing:-0.105600pt;}
.ws13_c02441{word-spacing:-0.088704pt;}
.ws14_c02441{word-spacing:-0.080256pt;}
.ws15_c02441{word-spacing:-0.076032pt;}
.wsf_c02441{word-spacing:0.000000pt;}
.ws12_c02441{word-spacing:0.384384pt;}
.wsa_c02441{word-spacing:5.892480pt;}
.wsc_c02441{word-spacing:29.600256pt;}
.ws9_c02441{word-spacing:30.966144pt;}
.ws1_c02441{word-spacing:33.563904pt;}
.ws0_c02441{word-spacing:33.796224pt;}
.ws3_c02441{word-spacing:34.860672pt;}
.ws5_c02441{word-spacing:35.468928pt;}
.ws8_c02441{word-spacing:37.357056pt;}
._0_c02441{margin-left:-1.731840pt;}
._2_c02441{width:1.317888pt;}
._4_c02441{width:3.784704pt;}
._6_c02441{width:17.761920pt;}
._7_c02441{width:20.845440pt;}
._5_c02441{width:21.947904pt;}
._1_c02441{width:44.668800pt;}
._3_c02441{width:45.805056pt;}
.fs0_c02441{font-size:42.240000pt;}
.fs1_c02441{font-size:53.760000pt;}
.y0_c02441{bottom:0.000000pt;}
.y1b_c02441{bottom:117.225499pt;}
.y1a_c02441{bottom:130.665211pt;}
.y1d_c02441{bottom:165.866875pt;}
.y1c_c02441{bottom:174.507067pt;}
.y19_c02441{bottom:245.225371pt;}
.y18_c02441{bottom:317.225563pt;}
.y16_c02441{bottom:361.386427pt;}
.y12_c02441{bottom:377.386939pt;}
.y17_c02441{bottom:407.786011pt;}
.y15_c02441{bottom:437.226235pt;}
.y14_c02441{bottom:453.226747pt;}
.y11_c02441{bottom:482.666971pt;}
.y13_c02441{bottom:497.386555pt;}
.y10_c02441{bottom:513.387067pt;}
.y1e_c02441{bottom:546.027067pt;}
.yc_c02441{bottom:579.945467pt;}
.yb_c02441{bottom:593.385179pt;}
.ye_c02441{bottom:628.586875pt;}
.yd_c02441{bottom:637.227067pt;}
.ya_c02441{bottom:707.945339pt;}
.y9_c02441{bottom:779.945531pt;}
.y7_c02441{bottom:823.786427pt;}
.y3_c02441{bottom:839.786939pt;}
.y8_c02441{bottom:870.505979pt;}
.y6_c02441{bottom:899.946203pt;}
.y5_c02441{bottom:915.946715pt;}
.y2_c02441{bottom:945.386939pt;}
.y4_c02441{bottom:959.786555pt;}
.y1_c02441{bottom:975.787067pt;}
.yf_c02441{bottom:1008.747067pt;}
.h3_c02441{height:28.916250pt;}
.h1_c02441{height:37.063125pt;}
.h2_c02441{height:37.166250pt;}
.h4_c02441{height:48.581988pt;}
.h0_c02441{height:1122.666667pt;}
.w1_c02441{width:793.333333pt;}
.w0_c02441{width:793.626667pt;}
.x0_c02441{left:0.000000pt;}
.xe_c02441{left:104.000000pt;}
.x8_c02441{left:391.999872pt;}
.x4_c02441{left:396.160512pt;}
.xc_c02441{left:400.960000pt;}
.x7_c02441{left:404.799648pt;}
.x5_c02441{left:410.560128pt;}
.x1_c02441{left:411.840000pt;}
.xa_c02441{left:429.760320pt;}
.x9_c02441{left:437.439552pt;}
.x6_c02441{left:438.400512pt;}
.xd_c02441{left:450.560320pt;}
.x3_c02441{left:455.039904pt;}
.x2_c02441{left:468.159648pt;}
.xb_c02441{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02442 {
    display:none;
  }
  .loading-indicator_c02442.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02442 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02442 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02442" -> "#page-container .classname_c02442")
 */
.pf_c02442 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02442 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02442.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02442 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02442 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02442 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02442 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02442 {overflow:visible;}
  }
}
.c_c02442 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02442 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02442:after { /* webkit #35443 */
  content: '';
}
.t_c02442:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02442 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02442 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02442 { /* info for Javascript */
  display:none;
}
.l_c02442 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02442 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02442 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02442:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02442 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02442.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02442.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02442 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02442{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02442;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02442{font-family:ff1_c02442;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02442;src:url('chunks/assets/font_cbb5492c63f6a55a09b4e320.woff2')format("woff");}.ff2_c02442{font-family:ff2_c02442;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02442;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02442{font-family:ff3_c02442;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02442{vertical-align:0.000000px;}
.v1_c02442{vertical-align:1.439424px;}
.lse_c02442{letter-spacing:-0.793584px;}
.lsb_c02442{letter-spacing:-0.774576px;}
.ls11_c02442{letter-spacing:-0.736560px;}
.ls8_c02442{letter-spacing:-0.613008px;}
.lsa_c02442{letter-spacing:-0.574992px;}
.ls12_c02442{letter-spacing:-0.270864px;}
.lsf_c02442{letter-spacing:-0.261360px;}
.ls7_c02442{letter-spacing:-0.242352px;}
.ls4_c02442{letter-spacing:-0.118800px;}
.ls15_c02442{letter-spacing:0.000000px;}
.ls1_c02442{letter-spacing:0.006048px;}
.ls6_c02442{letter-spacing:0.128304px;}
.lsd_c02442{letter-spacing:0.508464px;}
.ls14_c02442{letter-spacing:0.514080px;}
.ls10_c02442{letter-spacing:0.536976px;}
.lsc_c02442{letter-spacing:0.579744px;}
.ls13_c02442{letter-spacing:0.594000px;}
.ls9_c02442{letter-spacing:0.598752px;}
.ls2_c02442{letter-spacing:0.613008px;}
.ls0_c02442{letter-spacing:0.651024px;}
.ls5_c02442{letter-spacing:0.717552px;}
.ls3_c02442{letter-spacing:0.722304px;}
.sc__c02442{text-shadow:none;}
.sc0_c02442{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02442{-webkit-text-stroke:0px transparent;}
.sc0_c02442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02442{word-spacing:-15.126048px;}
.wsb_c02442{word-spacing:-12.474000px;}
.ws7_c02442{word-spacing:-12.459744px;}
.ws4_c02442{word-spacing:-11.637648px;}
.ws2_c02442{word-spacing:-11.266992px;}
.ws6_c02442{word-spacing:-11.105424px;}
.ws16_c02442{word-spacing:-2.159136px;}
.ws10_c02442{word-spacing:-1.012176px;}
.wse_c02442{word-spacing:-0.974160px;}
.ws11_c02442{word-spacing:-0.118800px;}
.ws13_c02442{word-spacing:-0.099792px;}
.ws14_c02442{word-spacing:-0.090288px;}
.ws15_c02442{word-spacing:-0.085536px;}
.wsf_c02442{word-spacing:0.000000px;}
.ws12_c02442{word-spacing:0.432432px;}
.wsa_c02442{word-spacing:6.629040px;}
.wsc_c02442{word-spacing:33.300288px;}
.ws9_c02442{word-spacing:34.836912px;}
.ws1_c02442{word-spacing:37.759392px;}
.ws0_c02442{word-spacing:38.020752px;}
.ws3_c02442{word-spacing:39.218256px;}
.ws5_c02442{word-spacing:39.902544px;}
.ws8_c02442{word-spacing:42.026688px;}
._0_c02442{margin-left:-1.948320px;}
._2_c02442{width:1.482624px;}
._4_c02442{width:4.257792px;}
._6_c02442{width:19.982160px;}
._7_c02442{width:23.451120px;}
._5_c02442{width:24.691392px;}
._1_c02442{width:50.252400px;}
._3_c02442{width:51.530688px;}
.fc0_c02442{color:rgb(0,0,0);}
.fs0_c02442{font-size:47.520000px;}
.fs1_c02442{font-size:60.480000px;}
.y0_c02442{bottom:0.000000px;}
.y1b_c02442{bottom:131.878686px;}
.y1a_c02442{bottom:146.998362px;}
.y1d_c02442{bottom:186.600234px;}
.y1c_c02442{bottom:196.320450px;}
.y19_c02442{bottom:275.878542px;}
.y18_c02442{bottom:356.878758px;}
.y16_c02442{bottom:406.559730px;}
.y12_c02442{bottom:424.560306px;}
.y17_c02442{bottom:458.759262px;}
.y15_c02442{bottom:491.879514px;}
.y14_c02442{bottom:509.880090px;}
.y11_c02442{bottom:543.000342px;}
.y13_c02442{bottom:559.559874px;}
.y10_c02442{bottom:577.560450px;}
.y1e_c02442{bottom:614.280450px;}
.yc_c02442{bottom:652.438650px;}
.yb_c02442{bottom:667.558326px;}
.ye_c02442{bottom:707.160234px;}
.yd_c02442{bottom:716.880450px;}
.ya_c02442{bottom:796.438506px;}
.y9_c02442{bottom:877.438722px;}
.y7_c02442{bottom:926.759730px;}
.y3_c02442{bottom:944.760306px;}
.y8_c02442{bottom:979.319226px;}
.y6_c02442{bottom:1012.439478px;}
.y5_c02442{bottom:1030.440054px;}
.y2_c02442{bottom:1063.560306px;}
.y4_c02442{bottom:1079.759874px;}
.y1_c02442{bottom:1097.760450px;}
.yf_c02442{bottom:1134.840450px;}
.h3_c02442{height:32.530781px;}
.h1_c02442{height:41.696016px;}
.h2_c02442{height:41.812031px;}
.h4_c02442{height:54.654737px;}
.h0_c02442{height:1263.000000px;}
.w1_c02442{width:892.500000px;}
.w0_c02442{width:892.830000px;}
.x0_c02442{left:0.000000px;}
.xe_c02442{left:117.000000px;}
.x8_c02442{left:440.999856px;}
.x4_c02442{left:445.680576px;}
.xc_c02442{left:451.080000px;}
.x7_c02442{left:455.399604px;}
.x5_c02442{left:461.880144px;}
.x1_c02442{left:463.320000px;}
.xa_c02442{left:483.480360px;}
.x9_c02442{left:492.119496px;}
.x6_c02442{left:493.200576px;}
.xd_c02442{left:506.880360px;}
.x3_c02442{left:511.919892px;}
.x2_c02442{left:526.679604px;}
.xb_c02442{left:569.880036px;}
@media print{
.v0_c02442{vertical-align:0.000000pt;}
.v1_c02442{vertical-align:1.279488pt;}
.lse_c02442{letter-spacing:-0.705408pt;}
.lsb_c02442{letter-spacing:-0.688512pt;}
.ls11_c02442{letter-spacing:-0.654720pt;}
.ls8_c02442{letter-spacing:-0.544896pt;}
.lsa_c02442{letter-spacing:-0.511104pt;}
.ls12_c02442{letter-spacing:-0.240768pt;}
.lsf_c02442{letter-spacing:-0.232320pt;}
.ls7_c02442{letter-spacing:-0.215424pt;}
.ls4_c02442{letter-spacing:-0.105600pt;}
.ls15_c02442{letter-spacing:0.000000pt;}
.ls1_c02442{letter-spacing:0.005376pt;}
.ls6_c02442{letter-spacing:0.114048pt;}
.lsd_c02442{letter-spacing:0.451968pt;}
.ls14_c02442{letter-spacing:0.456960pt;}
.ls10_c02442{letter-spacing:0.477312pt;}
.lsc_c02442{letter-spacing:0.515328pt;}
.ls13_c02442{letter-spacing:0.528000pt;}
.ls9_c02442{letter-spacing:0.532224pt;}
.ls2_c02442{letter-spacing:0.544896pt;}
.ls0_c02442{letter-spacing:0.578688pt;}
.ls5_c02442{letter-spacing:0.637824pt;}
.ls3_c02442{letter-spacing:0.642048pt;}
.wsd_c02442{word-spacing:-13.445376pt;}
.wsb_c02442{word-spacing:-11.088000pt;}
.ws7_c02442{word-spacing:-11.075328pt;}
.ws4_c02442{word-spacing:-10.344576pt;}
.ws2_c02442{word-spacing:-10.015104pt;}
.ws6_c02442{word-spacing:-9.871488pt;}
.ws16_c02442{word-spacing:-1.919232pt;}
.ws10_c02442{word-spacing:-0.899712pt;}
.wse_c02442{word-spacing:-0.865920pt;}
.ws11_c02442{word-spacing:-0.105600pt;}
.ws13_c02442{word-spacing:-0.088704pt;}
.ws14_c02442{word-spacing:-0.080256pt;}
.ws15_c02442{word-spacing:-0.076032pt;}
.wsf_c02442{word-spacing:0.000000pt;}
.ws12_c02442{word-spacing:0.384384pt;}
.wsa_c02442{word-spacing:5.892480pt;}
.wsc_c02442{word-spacing:29.600256pt;}
.ws9_c02442{word-spacing:30.966144pt;}
.ws1_c02442{word-spacing:33.563904pt;}
.ws0_c02442{word-spacing:33.796224pt;}
.ws3_c02442{word-spacing:34.860672pt;}
.ws5_c02442{word-spacing:35.468928pt;}
.ws8_c02442{word-spacing:37.357056pt;}
._0_c02442{margin-left:-1.731840pt;}
._2_c02442{width:1.317888pt;}
._4_c02442{width:3.784704pt;}
._6_c02442{width:17.761920pt;}
._7_c02442{width:20.845440pt;}
._5_c02442{width:21.947904pt;}
._1_c02442{width:44.668800pt;}
._3_c02442{width:45.805056pt;}
.fs0_c02442{font-size:42.240000pt;}
.fs1_c02442{font-size:53.760000pt;}
.y0_c02442{bottom:0.000000pt;}
.y1b_c02442{bottom:117.225499pt;}
.y1a_c02442{bottom:130.665211pt;}
.y1d_c02442{bottom:165.866875pt;}
.y1c_c02442{bottom:174.507067pt;}
.y19_c02442{bottom:245.225371pt;}
.y18_c02442{bottom:317.225563pt;}
.y16_c02442{bottom:361.386427pt;}
.y12_c02442{bottom:377.386939pt;}
.y17_c02442{bottom:407.786011pt;}
.y15_c02442{bottom:437.226235pt;}
.y14_c02442{bottom:453.226747pt;}
.y11_c02442{bottom:482.666971pt;}
.y13_c02442{bottom:497.386555pt;}
.y10_c02442{bottom:513.387067pt;}
.y1e_c02442{bottom:546.027067pt;}
.yc_c02442{bottom:579.945467pt;}
.yb_c02442{bottom:593.385179pt;}
.ye_c02442{bottom:628.586875pt;}
.yd_c02442{bottom:637.227067pt;}
.ya_c02442{bottom:707.945339pt;}
.y9_c02442{bottom:779.945531pt;}
.y7_c02442{bottom:823.786427pt;}
.y3_c02442{bottom:839.786939pt;}
.y8_c02442{bottom:870.505979pt;}
.y6_c02442{bottom:899.946203pt;}
.y5_c02442{bottom:915.946715pt;}
.y2_c02442{bottom:945.386939pt;}
.y4_c02442{bottom:959.786555pt;}
.y1_c02442{bottom:975.787067pt;}
.yf_c02442{bottom:1008.747067pt;}
.h3_c02442{height:28.916250pt;}
.h1_c02442{height:37.063125pt;}
.h2_c02442{height:37.166250pt;}
.h4_c02442{height:48.581988pt;}
.h0_c02442{height:1122.666667pt;}
.w1_c02442{width:793.333333pt;}
.w0_c02442{width:793.626667pt;}
.x0_c02442{left:0.000000pt;}
.xe_c02442{left:104.000000pt;}
.x8_c02442{left:391.999872pt;}
.x4_c02442{left:396.160512pt;}
.xc_c02442{left:400.960000pt;}
.x7_c02442{left:404.799648pt;}
.x5_c02442{left:410.560128pt;}
.x1_c02442{left:411.840000pt;}
.xa_c02442{left:429.760320pt;}
.x9_c02442{left:437.439552pt;}
.x6_c02442{left:438.400512pt;}
.xd_c02442{left:450.560320pt;}
.x3_c02442{left:455.039904pt;}
.x2_c02442{left:468.159648pt;}
.xb_c02442{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02443 {
    display:none;
  }
  .loading-indicator_c02443.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02443 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02443 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02443" -> "#page-container .classname_c02443")
 */
.pf_c02443 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02443 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02443.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02443 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02443 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02443 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02443 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02443 {overflow:visible;}
  }
}
.c_c02443 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02443 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02443:after { /* webkit #35443 */
  content: '';
}
.t_c02443:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02443 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02443 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02443 { /* info for Javascript */
  display:none;
}
.l_c02443 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02443 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02443 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02443:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02443 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02443.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02443.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02443 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02443{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02443;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02443{font-family:ff1_c02443;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02443;src:url('chunks/assets/font_3b60b1ec1182e3c70dc98083.woff2')format("woff");}.ff2_c02443{font-family:ff2_c02443;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02443;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02443{font-family:ff3_c02443;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02443{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02443{vertical-align:0.000000px;}
.v1_c02443{vertical-align:1.439424px;}
.lse_c02443{letter-spacing:-0.793584px;}
.lsb_c02443{letter-spacing:-0.774576px;}
.ls11_c02443{letter-spacing:-0.736560px;}
.ls8_c02443{letter-spacing:-0.613008px;}
.lsa_c02443{letter-spacing:-0.574992px;}
.ls12_c02443{letter-spacing:-0.270864px;}
.lsf_c02443{letter-spacing:-0.261360px;}
.ls7_c02443{letter-spacing:-0.242352px;}
.ls4_c02443{letter-spacing:-0.118800px;}
.ls15_c02443{letter-spacing:0.000000px;}
.ls1_c02443{letter-spacing:0.006048px;}
.ls6_c02443{letter-spacing:0.128304px;}
.lsd_c02443{letter-spacing:0.508464px;}
.ls14_c02443{letter-spacing:0.514080px;}
.ls10_c02443{letter-spacing:0.536976px;}
.lsc_c02443{letter-spacing:0.579744px;}
.ls13_c02443{letter-spacing:0.594000px;}
.ls9_c02443{letter-spacing:0.598752px;}
.ls2_c02443{letter-spacing:0.613008px;}
.ls0_c02443{letter-spacing:0.651024px;}
.ls5_c02443{letter-spacing:0.717552px;}
.ls3_c02443{letter-spacing:0.722304px;}
.sc__c02443{text-shadow:none;}
.sc0_c02443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02443{-webkit-text-stroke:0px transparent;}
.sc0_c02443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02443{word-spacing:-15.126048px;}
.wsb_c02443{word-spacing:-12.474000px;}
.ws7_c02443{word-spacing:-12.459744px;}
.ws4_c02443{word-spacing:-11.637648px;}
.ws2_c02443{word-spacing:-11.266992px;}
.ws6_c02443{word-spacing:-11.105424px;}
.ws16_c02443{word-spacing:-2.159136px;}
.ws10_c02443{word-spacing:-1.012176px;}
.wse_c02443{word-spacing:-0.974160px;}
.ws11_c02443{word-spacing:-0.118800px;}
.ws13_c02443{word-spacing:-0.099792px;}
.ws14_c02443{word-spacing:-0.090288px;}
.ws15_c02443{word-spacing:-0.085536px;}
.wsf_c02443{word-spacing:0.000000px;}
.ws12_c02443{word-spacing:0.432432px;}
.wsa_c02443{word-spacing:6.629040px;}
.wsc_c02443{word-spacing:33.300288px;}
.ws9_c02443{word-spacing:34.836912px;}
.ws1_c02443{word-spacing:37.759392px;}
.ws0_c02443{word-spacing:38.020752px;}
.ws3_c02443{word-spacing:39.218256px;}
.ws5_c02443{word-spacing:39.902544px;}
.ws8_c02443{word-spacing:42.026688px;}
._0_c02443{margin-left:-1.948320px;}
._2_c02443{width:1.482624px;}
._4_c02443{width:4.257792px;}
._6_c02443{width:19.982160px;}
._7_c02443{width:23.451120px;}
._5_c02443{width:24.691392px;}
._1_c02443{width:50.252400px;}
._3_c02443{width:51.530688px;}
.fc0_c02443{color:rgb(0,0,0);}
.fs0_c02443{font-size:47.520000px;}
.fs1_c02443{font-size:60.480000px;}
.y0_c02443{bottom:0.000000px;}
.y1b_c02443{bottom:131.878686px;}
.y1a_c02443{bottom:146.998362px;}
.y1d_c02443{bottom:186.600234px;}
.y1c_c02443{bottom:196.320450px;}
.y19_c02443{bottom:275.878542px;}
.y18_c02443{bottom:356.878758px;}
.y16_c02443{bottom:406.559730px;}
.y12_c02443{bottom:424.560306px;}
.y17_c02443{bottom:458.759262px;}
.y15_c02443{bottom:491.879514px;}
.y14_c02443{bottom:509.880090px;}
.y11_c02443{bottom:543.000342px;}
.y13_c02443{bottom:559.559874px;}
.y10_c02443{bottom:577.560450px;}
.y1e_c02443{bottom:614.280450px;}
.yc_c02443{bottom:652.438650px;}
.yb_c02443{bottom:667.558326px;}
.ye_c02443{bottom:707.160234px;}
.yd_c02443{bottom:716.880450px;}
.ya_c02443{bottom:796.438506px;}
.y9_c02443{bottom:877.438722px;}
.y7_c02443{bottom:926.759730px;}
.y3_c02443{bottom:944.760306px;}
.y8_c02443{bottom:979.319226px;}
.y6_c02443{bottom:1012.439478px;}
.y5_c02443{bottom:1030.440054px;}
.y2_c02443{bottom:1063.560306px;}
.y4_c02443{bottom:1079.759874px;}
.y1_c02443{bottom:1097.760450px;}
.yf_c02443{bottom:1134.840450px;}
.h3_c02443{height:32.530781px;}
.h1_c02443{height:41.696016px;}
.h2_c02443{height:41.812031px;}
.h4_c02443{height:54.654737px;}
.h0_c02443{height:1263.000000px;}
.w1_c02443{width:892.500000px;}
.w0_c02443{width:892.830000px;}
.x0_c02443{left:0.000000px;}
.xe_c02443{left:117.000000px;}
.x8_c02443{left:440.999856px;}
.x4_c02443{left:445.680576px;}
.xc_c02443{left:451.080000px;}
.x7_c02443{left:455.399604px;}
.x5_c02443{left:461.880144px;}
.x1_c02443{left:463.320000px;}
.xa_c02443{left:483.480360px;}
.x9_c02443{left:492.119496px;}
.x6_c02443{left:493.200576px;}
.xd_c02443{left:506.880360px;}
.x3_c02443{left:511.919892px;}
.x2_c02443{left:526.679604px;}
.xb_c02443{left:569.880036px;}
@media print{
.v0_c02443{vertical-align:0.000000pt;}
.v1_c02443{vertical-align:1.279488pt;}
.lse_c02443{letter-spacing:-0.705408pt;}
.lsb_c02443{letter-spacing:-0.688512pt;}
.ls11_c02443{letter-spacing:-0.654720pt;}
.ls8_c02443{letter-spacing:-0.544896pt;}
.lsa_c02443{letter-spacing:-0.511104pt;}
.ls12_c02443{letter-spacing:-0.240768pt;}
.lsf_c02443{letter-spacing:-0.232320pt;}
.ls7_c02443{letter-spacing:-0.215424pt;}
.ls4_c02443{letter-spacing:-0.105600pt;}
.ls15_c02443{letter-spacing:0.000000pt;}
.ls1_c02443{letter-spacing:0.005376pt;}
.ls6_c02443{letter-spacing:0.114048pt;}
.lsd_c02443{letter-spacing:0.451968pt;}
.ls14_c02443{letter-spacing:0.456960pt;}
.ls10_c02443{letter-spacing:0.477312pt;}
.lsc_c02443{letter-spacing:0.515328pt;}
.ls13_c02443{letter-spacing:0.528000pt;}
.ls9_c02443{letter-spacing:0.532224pt;}
.ls2_c02443{letter-spacing:0.544896pt;}
.ls0_c02443{letter-spacing:0.578688pt;}
.ls5_c02443{letter-spacing:0.637824pt;}
.ls3_c02443{letter-spacing:0.642048pt;}
.wsd_c02443{word-spacing:-13.445376pt;}
.wsb_c02443{word-spacing:-11.088000pt;}
.ws7_c02443{word-spacing:-11.075328pt;}
.ws4_c02443{word-spacing:-10.344576pt;}
.ws2_c02443{word-spacing:-10.015104pt;}
.ws6_c02443{word-spacing:-9.871488pt;}
.ws16_c02443{word-spacing:-1.919232pt;}
.ws10_c02443{word-spacing:-0.899712pt;}
.wse_c02443{word-spacing:-0.865920pt;}
.ws11_c02443{word-spacing:-0.105600pt;}
.ws13_c02443{word-spacing:-0.088704pt;}
.ws14_c02443{word-spacing:-0.080256pt;}
.ws15_c02443{word-spacing:-0.076032pt;}
.wsf_c02443{word-spacing:0.000000pt;}
.ws12_c02443{word-spacing:0.384384pt;}
.wsa_c02443{word-spacing:5.892480pt;}
.wsc_c02443{word-spacing:29.600256pt;}
.ws9_c02443{word-spacing:30.966144pt;}
.ws1_c02443{word-spacing:33.563904pt;}
.ws0_c02443{word-spacing:33.796224pt;}
.ws3_c02443{word-spacing:34.860672pt;}
.ws5_c02443{word-spacing:35.468928pt;}
.ws8_c02443{word-spacing:37.357056pt;}
._0_c02443{margin-left:-1.731840pt;}
._2_c02443{width:1.317888pt;}
._4_c02443{width:3.784704pt;}
._6_c02443{width:17.761920pt;}
._7_c02443{width:20.845440pt;}
._5_c02443{width:21.947904pt;}
._1_c02443{width:44.668800pt;}
._3_c02443{width:45.805056pt;}
.fs0_c02443{font-size:42.240000pt;}
.fs1_c02443{font-size:53.760000pt;}
.y0_c02443{bottom:0.000000pt;}
.y1b_c02443{bottom:117.225499pt;}
.y1a_c02443{bottom:130.665211pt;}
.y1d_c02443{bottom:165.866875pt;}
.y1c_c02443{bottom:174.507067pt;}
.y19_c02443{bottom:245.225371pt;}
.y18_c02443{bottom:317.225563pt;}
.y16_c02443{bottom:361.386427pt;}
.y12_c02443{bottom:377.386939pt;}
.y17_c02443{bottom:407.786011pt;}
.y15_c02443{bottom:437.226235pt;}
.y14_c02443{bottom:453.226747pt;}
.y11_c02443{bottom:482.666971pt;}
.y13_c02443{bottom:497.386555pt;}
.y10_c02443{bottom:513.387067pt;}
.y1e_c02443{bottom:546.027067pt;}
.yc_c02443{bottom:579.945467pt;}
.yb_c02443{bottom:593.385179pt;}
.ye_c02443{bottom:628.586875pt;}
.yd_c02443{bottom:637.227067pt;}
.ya_c02443{bottom:707.945339pt;}
.y9_c02443{bottom:779.945531pt;}
.y7_c02443{bottom:823.786427pt;}
.y3_c02443{bottom:839.786939pt;}
.y8_c02443{bottom:870.505979pt;}
.y6_c02443{bottom:899.946203pt;}
.y5_c02443{bottom:915.946715pt;}
.y2_c02443{bottom:945.386939pt;}
.y4_c02443{bottom:959.786555pt;}
.y1_c02443{bottom:975.787067pt;}
.yf_c02443{bottom:1008.747067pt;}
.h3_c02443{height:28.916250pt;}
.h1_c02443{height:37.063125pt;}
.h2_c02443{height:37.166250pt;}
.h4_c02443{height:48.581988pt;}
.h0_c02443{height:1122.666667pt;}
.w1_c02443{width:793.333333pt;}
.w0_c02443{width:793.626667pt;}
.x0_c02443{left:0.000000pt;}
.xe_c02443{left:104.000000pt;}
.x8_c02443{left:391.999872pt;}
.x4_c02443{left:396.160512pt;}
.xc_c02443{left:400.960000pt;}
.x7_c02443{left:404.799648pt;}
.x5_c02443{left:410.560128pt;}
.x1_c02443{left:411.840000pt;}
.xa_c02443{left:429.760320pt;}
.x9_c02443{left:437.439552pt;}
.x6_c02443{left:438.400512pt;}
.xd_c02443{left:450.560320pt;}
.x3_c02443{left:455.039904pt;}
.x2_c02443{left:468.159648pt;}
.xb_c02443{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02444 {
    display:none;
  }
  .loading-indicator_c02444.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02444 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02444 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02444" -> "#page-container .classname_c02444")
 */
.pf_c02444 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02444 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02444.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02444 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02444 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02444 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02444 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02444 {overflow:visible;}
  }
}
.c_c02444 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02444 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02444:after { /* webkit #35443 */
  content: '';
}
.t_c02444:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02444 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02444 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02444 { /* info for Javascript */
  display:none;
}
.l_c02444 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02444 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02444 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02444:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02444 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02444.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02444.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02444 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02444{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02444;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02444{font-family:ff1_c02444;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02444;src:url('chunks/assets/font_0b6d5f9e3f44e7ef8c6a0e8b.woff2')format("woff");}.ff2_c02444{font-family:ff2_c02444;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02444;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02444{font-family:ff3_c02444;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02444{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02444{vertical-align:0.000000px;}
.v1_c02444{vertical-align:1.439424px;}
.lse_c02444{letter-spacing:-0.793584px;}
.lsb_c02444{letter-spacing:-0.774576px;}
.ls11_c02444{letter-spacing:-0.736560px;}
.ls8_c02444{letter-spacing:-0.613008px;}
.lsa_c02444{letter-spacing:-0.574992px;}
.ls12_c02444{letter-spacing:-0.270864px;}
.lsf_c02444{letter-spacing:-0.261360px;}
.ls7_c02444{letter-spacing:-0.242352px;}
.ls4_c02444{letter-spacing:-0.118800px;}
.ls15_c02444{letter-spacing:0.000000px;}
.ls1_c02444{letter-spacing:0.006048px;}
.ls6_c02444{letter-spacing:0.128304px;}
.lsd_c02444{letter-spacing:0.508464px;}
.ls14_c02444{letter-spacing:0.514080px;}
.ls10_c02444{letter-spacing:0.536976px;}
.lsc_c02444{letter-spacing:0.579744px;}
.ls13_c02444{letter-spacing:0.594000px;}
.ls9_c02444{letter-spacing:0.598752px;}
.ls2_c02444{letter-spacing:0.613008px;}
.ls0_c02444{letter-spacing:0.651024px;}
.ls5_c02444{letter-spacing:0.717552px;}
.ls3_c02444{letter-spacing:0.722304px;}
.sc__c02444{text-shadow:none;}
.sc0_c02444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02444{-webkit-text-stroke:0px transparent;}
.sc0_c02444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02444{word-spacing:-15.126048px;}
.wsb_c02444{word-spacing:-12.474000px;}
.ws7_c02444{word-spacing:-12.459744px;}
.ws4_c02444{word-spacing:-11.637648px;}
.ws2_c02444{word-spacing:-11.266992px;}
.ws6_c02444{word-spacing:-11.105424px;}
.ws16_c02444{word-spacing:-2.159136px;}
.ws10_c02444{word-spacing:-1.012176px;}
.wse_c02444{word-spacing:-0.974160px;}
.ws11_c02444{word-spacing:-0.118800px;}
.ws13_c02444{word-spacing:-0.099792px;}
.ws14_c02444{word-spacing:-0.090288px;}
.ws15_c02444{word-spacing:-0.085536px;}
.wsf_c02444{word-spacing:0.000000px;}
.ws12_c02444{word-spacing:0.432432px;}
.wsa_c02444{word-spacing:6.629040px;}
.wsc_c02444{word-spacing:33.300288px;}
.ws9_c02444{word-spacing:34.836912px;}
.ws1_c02444{word-spacing:37.759392px;}
.ws0_c02444{word-spacing:38.020752px;}
.ws3_c02444{word-spacing:39.218256px;}
.ws5_c02444{word-spacing:39.902544px;}
.ws8_c02444{word-spacing:42.026688px;}
._0_c02444{margin-left:-1.948320px;}
._2_c02444{width:1.482624px;}
._4_c02444{width:4.257792px;}
._6_c02444{width:19.982160px;}
._7_c02444{width:23.451120px;}
._5_c02444{width:24.691392px;}
._1_c02444{width:50.252400px;}
._3_c02444{width:51.530688px;}
.fc0_c02444{color:rgb(0,0,0);}
.fs0_c02444{font-size:47.520000px;}
.fs1_c02444{font-size:60.480000px;}
.y0_c02444{bottom:0.000000px;}
.y1b_c02444{bottom:131.878686px;}
.y1a_c02444{bottom:146.998362px;}
.y1d_c02444{bottom:186.600234px;}
.y1c_c02444{bottom:196.320450px;}
.y19_c02444{bottom:275.878542px;}
.y18_c02444{bottom:356.878758px;}
.y16_c02444{bottom:406.559730px;}
.y12_c02444{bottom:424.560306px;}
.y17_c02444{bottom:458.759262px;}
.y15_c02444{bottom:491.879514px;}
.y14_c02444{bottom:509.880090px;}
.y11_c02444{bottom:543.000342px;}
.y13_c02444{bottom:559.559874px;}
.y10_c02444{bottom:577.560450px;}
.y1e_c02444{bottom:614.280450px;}
.yc_c02444{bottom:652.438650px;}
.yb_c02444{bottom:667.558326px;}
.ye_c02444{bottom:707.160234px;}
.yd_c02444{bottom:716.880450px;}
.ya_c02444{bottom:796.438506px;}
.y9_c02444{bottom:877.438722px;}
.y7_c02444{bottom:926.759730px;}
.y3_c02444{bottom:944.760306px;}
.y8_c02444{bottom:979.319226px;}
.y6_c02444{bottom:1012.439478px;}
.y5_c02444{bottom:1030.440054px;}
.y2_c02444{bottom:1063.560306px;}
.y4_c02444{bottom:1079.759874px;}
.y1_c02444{bottom:1097.760450px;}
.yf_c02444{bottom:1134.840450px;}
.h3_c02444{height:32.530781px;}
.h1_c02444{height:41.696016px;}
.h2_c02444{height:41.812031px;}
.h4_c02444{height:54.654737px;}
.h0_c02444{height:1263.000000px;}
.w1_c02444{width:892.500000px;}
.w0_c02444{width:892.830000px;}
.x0_c02444{left:0.000000px;}
.xe_c02444{left:117.000000px;}
.x8_c02444{left:440.999856px;}
.x4_c02444{left:445.680576px;}
.xc_c02444{left:451.080000px;}
.x7_c02444{left:455.399604px;}
.x5_c02444{left:461.880144px;}
.x1_c02444{left:463.320000px;}
.xa_c02444{left:483.480360px;}
.x9_c02444{left:492.119496px;}
.x6_c02444{left:493.200576px;}
.xd_c02444{left:506.880360px;}
.x3_c02444{left:511.919892px;}
.x2_c02444{left:526.679604px;}
.xb_c02444{left:569.880036px;}
@media print{
.v0_c02444{vertical-align:0.000000pt;}
.v1_c02444{vertical-align:1.279488pt;}
.lse_c02444{letter-spacing:-0.705408pt;}
.lsb_c02444{letter-spacing:-0.688512pt;}
.ls11_c02444{letter-spacing:-0.654720pt;}
.ls8_c02444{letter-spacing:-0.544896pt;}
.lsa_c02444{letter-spacing:-0.511104pt;}
.ls12_c02444{letter-spacing:-0.240768pt;}
.lsf_c02444{letter-spacing:-0.232320pt;}
.ls7_c02444{letter-spacing:-0.215424pt;}
.ls4_c02444{letter-spacing:-0.105600pt;}
.ls15_c02444{letter-spacing:0.000000pt;}
.ls1_c02444{letter-spacing:0.005376pt;}
.ls6_c02444{letter-spacing:0.114048pt;}
.lsd_c02444{letter-spacing:0.451968pt;}
.ls14_c02444{letter-spacing:0.456960pt;}
.ls10_c02444{letter-spacing:0.477312pt;}
.lsc_c02444{letter-spacing:0.515328pt;}
.ls13_c02444{letter-spacing:0.528000pt;}
.ls9_c02444{letter-spacing:0.532224pt;}
.ls2_c02444{letter-spacing:0.544896pt;}
.ls0_c02444{letter-spacing:0.578688pt;}
.ls5_c02444{letter-spacing:0.637824pt;}
.ls3_c02444{letter-spacing:0.642048pt;}
.wsd_c02444{word-spacing:-13.445376pt;}
.wsb_c02444{word-spacing:-11.088000pt;}
.ws7_c02444{word-spacing:-11.075328pt;}
.ws4_c02444{word-spacing:-10.344576pt;}
.ws2_c02444{word-spacing:-10.015104pt;}
.ws6_c02444{word-spacing:-9.871488pt;}
.ws16_c02444{word-spacing:-1.919232pt;}
.ws10_c02444{word-spacing:-0.899712pt;}
.wse_c02444{word-spacing:-0.865920pt;}
.ws11_c02444{word-spacing:-0.105600pt;}
.ws13_c02444{word-spacing:-0.088704pt;}
.ws14_c02444{word-spacing:-0.080256pt;}
.ws15_c02444{word-spacing:-0.076032pt;}
.wsf_c02444{word-spacing:0.000000pt;}
.ws12_c02444{word-spacing:0.384384pt;}
.wsa_c02444{word-spacing:5.892480pt;}
.wsc_c02444{word-spacing:29.600256pt;}
.ws9_c02444{word-spacing:30.966144pt;}
.ws1_c02444{word-spacing:33.563904pt;}
.ws0_c02444{word-spacing:33.796224pt;}
.ws3_c02444{word-spacing:34.860672pt;}
.ws5_c02444{word-spacing:35.468928pt;}
.ws8_c02444{word-spacing:37.357056pt;}
._0_c02444{margin-left:-1.731840pt;}
._2_c02444{width:1.317888pt;}
._4_c02444{width:3.784704pt;}
._6_c02444{width:17.761920pt;}
._7_c02444{width:20.845440pt;}
._5_c02444{width:21.947904pt;}
._1_c02444{width:44.668800pt;}
._3_c02444{width:45.805056pt;}
.fs0_c02444{font-size:42.240000pt;}
.fs1_c02444{font-size:53.760000pt;}
.y0_c02444{bottom:0.000000pt;}
.y1b_c02444{bottom:117.225499pt;}
.y1a_c02444{bottom:130.665211pt;}
.y1d_c02444{bottom:165.866875pt;}
.y1c_c02444{bottom:174.507067pt;}
.y19_c02444{bottom:245.225371pt;}
.y18_c02444{bottom:317.225563pt;}
.y16_c02444{bottom:361.386427pt;}
.y12_c02444{bottom:377.386939pt;}
.y17_c02444{bottom:407.786011pt;}
.y15_c02444{bottom:437.226235pt;}
.y14_c02444{bottom:453.226747pt;}
.y11_c02444{bottom:482.666971pt;}
.y13_c02444{bottom:497.386555pt;}
.y10_c02444{bottom:513.387067pt;}
.y1e_c02444{bottom:546.027067pt;}
.yc_c02444{bottom:579.945467pt;}
.yb_c02444{bottom:593.385179pt;}
.ye_c02444{bottom:628.586875pt;}
.yd_c02444{bottom:637.227067pt;}
.ya_c02444{bottom:707.945339pt;}
.y9_c02444{bottom:779.945531pt;}
.y7_c02444{bottom:823.786427pt;}
.y3_c02444{bottom:839.786939pt;}
.y8_c02444{bottom:870.505979pt;}
.y6_c02444{bottom:899.946203pt;}
.y5_c02444{bottom:915.946715pt;}
.y2_c02444{bottom:945.386939pt;}
.y4_c02444{bottom:959.786555pt;}
.y1_c02444{bottom:975.787067pt;}
.yf_c02444{bottom:1008.747067pt;}
.h3_c02444{height:28.916250pt;}
.h1_c02444{height:37.063125pt;}
.h2_c02444{height:37.166250pt;}
.h4_c02444{height:48.581988pt;}
.h0_c02444{height:1122.666667pt;}
.w1_c02444{width:793.333333pt;}
.w0_c02444{width:793.626667pt;}
.x0_c02444{left:0.000000pt;}
.xe_c02444{left:104.000000pt;}
.x8_c02444{left:391.999872pt;}
.x4_c02444{left:396.160512pt;}
.xc_c02444{left:400.960000pt;}
.x7_c02444{left:404.799648pt;}
.x5_c02444{left:410.560128pt;}
.x1_c02444{left:411.840000pt;}
.xa_c02444{left:429.760320pt;}
.x9_c02444{left:437.439552pt;}
.x6_c02444{left:438.400512pt;}
.xd_c02444{left:450.560320pt;}
.x3_c02444{left:455.039904pt;}
.x2_c02444{left:468.159648pt;}
.xb_c02444{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02445 {
    display:none;
  }
  .loading-indicator_c02445.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02445 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02445 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02445" -> "#page-container .classname_c02445")
 */
.pf_c02445 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02445 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02445 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02445 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02445 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02445 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02445 {overflow:visible;}
  }
}
.c_c02445 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02445 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02445:after { /* webkit #35443 */
  content: '';
}
.t_c02445:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02445 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02445 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02445 { /* info for Javascript */
  display:none;
}
.l_c02445 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02445 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02445 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02445:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02445 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02445.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02445 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02445{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02445;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02445{font-family:ff1_c02445;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02445;src:url('chunks/assets/font_b7e6d0f72e70f7a32d892ceb.woff2')format("woff");}.ff2_c02445{font-family:ff2_c02445;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02445;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02445{font-family:ff3_c02445;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02445{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02445{vertical-align:0.000000px;}
.v1_c02445{vertical-align:1.439424px;}
.lse_c02445{letter-spacing:-0.793584px;}
.lsb_c02445{letter-spacing:-0.774576px;}
.ls11_c02445{letter-spacing:-0.736560px;}
.ls8_c02445{letter-spacing:-0.613008px;}
.lsa_c02445{letter-spacing:-0.574992px;}
.ls12_c02445{letter-spacing:-0.270864px;}
.lsf_c02445{letter-spacing:-0.261360px;}
.ls7_c02445{letter-spacing:-0.242352px;}
.ls4_c02445{letter-spacing:-0.118800px;}
.ls15_c02445{letter-spacing:0.000000px;}
.ls1_c02445{letter-spacing:0.006048px;}
.ls6_c02445{letter-spacing:0.128304px;}
.lsd_c02445{letter-spacing:0.508464px;}
.ls14_c02445{letter-spacing:0.514080px;}
.ls10_c02445{letter-spacing:0.536976px;}
.lsc_c02445{letter-spacing:0.579744px;}
.ls13_c02445{letter-spacing:0.594000px;}
.ls9_c02445{letter-spacing:0.598752px;}
.ls2_c02445{letter-spacing:0.613008px;}
.ls0_c02445{letter-spacing:0.651024px;}
.ls5_c02445{letter-spacing:0.717552px;}
.ls3_c02445{letter-spacing:0.722304px;}
.sc__c02445{text-shadow:none;}
.sc0_c02445{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02445{-webkit-text-stroke:0px transparent;}
.sc0_c02445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02445{word-spacing:-15.126048px;}
.wsb_c02445{word-spacing:-12.474000px;}
.ws7_c02445{word-spacing:-12.459744px;}
.ws4_c02445{word-spacing:-11.637648px;}
.ws2_c02445{word-spacing:-11.266992px;}
.ws6_c02445{word-spacing:-11.105424px;}
.ws16_c02445{word-spacing:-2.159136px;}
.ws10_c02445{word-spacing:-1.012176px;}
.wse_c02445{word-spacing:-0.974160px;}
.ws11_c02445{word-spacing:-0.118800px;}
.ws13_c02445{word-spacing:-0.099792px;}
.ws14_c02445{word-spacing:-0.090288px;}
.ws15_c02445{word-spacing:-0.085536px;}
.wsf_c02445{word-spacing:0.000000px;}
.ws12_c02445{word-spacing:0.432432px;}
.wsa_c02445{word-spacing:6.629040px;}
.wsc_c02445{word-spacing:33.300288px;}
.ws9_c02445{word-spacing:34.836912px;}
.ws1_c02445{word-spacing:37.759392px;}
.ws0_c02445{word-spacing:38.020752px;}
.ws3_c02445{word-spacing:39.218256px;}
.ws5_c02445{word-spacing:39.902544px;}
.ws8_c02445{word-spacing:42.026688px;}
._0_c02445{margin-left:-1.948320px;}
._2_c02445{width:1.482624px;}
._4_c02445{width:4.257792px;}
._6_c02445{width:19.982160px;}
._7_c02445{width:23.451120px;}
._5_c02445{width:24.691392px;}
._1_c02445{width:50.252400px;}
._3_c02445{width:51.530688px;}
.fc0_c02445{color:rgb(0,0,0);}
.fs0_c02445{font-size:47.520000px;}
.fs1_c02445{font-size:60.480000px;}
.y0_c02445{bottom:0.000000px;}
.y1b_c02445{bottom:131.878686px;}
.y1a_c02445{bottom:146.998362px;}
.y1d_c02445{bottom:186.600234px;}
.y1c_c02445{bottom:196.320450px;}
.y19_c02445{bottom:275.878542px;}
.y18_c02445{bottom:356.878758px;}
.y16_c02445{bottom:406.559730px;}
.y12_c02445{bottom:424.560306px;}
.y17_c02445{bottom:458.759262px;}
.y15_c02445{bottom:491.879514px;}
.y14_c02445{bottom:509.880090px;}
.y11_c02445{bottom:543.000342px;}
.y13_c02445{bottom:559.559874px;}
.y10_c02445{bottom:577.560450px;}
.y1e_c02445{bottom:614.280450px;}
.yc_c02445{bottom:652.438650px;}
.yb_c02445{bottom:667.558326px;}
.ye_c02445{bottom:707.160234px;}
.yd_c02445{bottom:716.880450px;}
.ya_c02445{bottom:796.438506px;}
.y9_c02445{bottom:877.438722px;}
.y7_c02445{bottom:926.759730px;}
.y3_c02445{bottom:944.760306px;}
.y8_c02445{bottom:979.319226px;}
.y6_c02445{bottom:1012.439478px;}
.y5_c02445{bottom:1030.440054px;}
.y2_c02445{bottom:1063.560306px;}
.y4_c02445{bottom:1079.759874px;}
.y1_c02445{bottom:1097.760450px;}
.yf_c02445{bottom:1134.840450px;}
.h3_c02445{height:32.530781px;}
.h1_c02445{height:41.696016px;}
.h2_c02445{height:41.812031px;}
.h4_c02445{height:54.654737px;}
.h0_c02445{height:1263.000000px;}
.w1_c02445{width:892.500000px;}
.w0_c02445{width:892.830000px;}
.x0_c02445{left:0.000000px;}
.xe_c02445{left:117.000000px;}
.x8_c02445{left:440.999856px;}
.x4_c02445{left:445.680576px;}
.xc_c02445{left:451.080000px;}
.x7_c02445{left:455.399604px;}
.x5_c02445{left:461.880144px;}
.x1_c02445{left:463.320000px;}
.xa_c02445{left:483.480360px;}
.x9_c02445{left:492.119496px;}
.x6_c02445{left:493.200576px;}
.xd_c02445{left:506.880360px;}
.x3_c02445{left:511.919892px;}
.x2_c02445{left:526.679604px;}
.xb_c02445{left:569.880036px;}
@media print{
.v0_c02445{vertical-align:0.000000pt;}
.v1_c02445{vertical-align:1.279488pt;}
.lse_c02445{letter-spacing:-0.705408pt;}
.lsb_c02445{letter-spacing:-0.688512pt;}
.ls11_c02445{letter-spacing:-0.654720pt;}
.ls8_c02445{letter-spacing:-0.544896pt;}
.lsa_c02445{letter-spacing:-0.511104pt;}
.ls12_c02445{letter-spacing:-0.240768pt;}
.lsf_c02445{letter-spacing:-0.232320pt;}
.ls7_c02445{letter-spacing:-0.215424pt;}
.ls4_c02445{letter-spacing:-0.105600pt;}
.ls15_c02445{letter-spacing:0.000000pt;}
.ls1_c02445{letter-spacing:0.005376pt;}
.ls6_c02445{letter-spacing:0.114048pt;}
.lsd_c02445{letter-spacing:0.451968pt;}
.ls14_c02445{letter-spacing:0.456960pt;}
.ls10_c02445{letter-spacing:0.477312pt;}
.lsc_c02445{letter-spacing:0.515328pt;}
.ls13_c02445{letter-spacing:0.528000pt;}
.ls9_c02445{letter-spacing:0.532224pt;}
.ls2_c02445{letter-spacing:0.544896pt;}
.ls0_c02445{letter-spacing:0.578688pt;}
.ls5_c02445{letter-spacing:0.637824pt;}
.ls3_c02445{letter-spacing:0.642048pt;}
.wsd_c02445{word-spacing:-13.445376pt;}
.wsb_c02445{word-spacing:-11.088000pt;}
.ws7_c02445{word-spacing:-11.075328pt;}
.ws4_c02445{word-spacing:-10.344576pt;}
.ws2_c02445{word-spacing:-10.015104pt;}
.ws6_c02445{word-spacing:-9.871488pt;}
.ws16_c02445{word-spacing:-1.919232pt;}
.ws10_c02445{word-spacing:-0.899712pt;}
.wse_c02445{word-spacing:-0.865920pt;}
.ws11_c02445{word-spacing:-0.105600pt;}
.ws13_c02445{word-spacing:-0.088704pt;}
.ws14_c02445{word-spacing:-0.080256pt;}
.ws15_c02445{word-spacing:-0.076032pt;}
.wsf_c02445{word-spacing:0.000000pt;}
.ws12_c02445{word-spacing:0.384384pt;}
.wsa_c02445{word-spacing:5.892480pt;}
.wsc_c02445{word-spacing:29.600256pt;}
.ws9_c02445{word-spacing:30.966144pt;}
.ws1_c02445{word-spacing:33.563904pt;}
.ws0_c02445{word-spacing:33.796224pt;}
.ws3_c02445{word-spacing:34.860672pt;}
.ws5_c02445{word-spacing:35.468928pt;}
.ws8_c02445{word-spacing:37.357056pt;}
._0_c02445{margin-left:-1.731840pt;}
._2_c02445{width:1.317888pt;}
._4_c02445{width:3.784704pt;}
._6_c02445{width:17.761920pt;}
._7_c02445{width:20.845440pt;}
._5_c02445{width:21.947904pt;}
._1_c02445{width:44.668800pt;}
._3_c02445{width:45.805056pt;}
.fs0_c02445{font-size:42.240000pt;}
.fs1_c02445{font-size:53.760000pt;}
.y0_c02445{bottom:0.000000pt;}
.y1b_c02445{bottom:117.225499pt;}
.y1a_c02445{bottom:130.665211pt;}
.y1d_c02445{bottom:165.866875pt;}
.y1c_c02445{bottom:174.507067pt;}
.y19_c02445{bottom:245.225371pt;}
.y18_c02445{bottom:317.225563pt;}
.y16_c02445{bottom:361.386427pt;}
.y12_c02445{bottom:377.386939pt;}
.y17_c02445{bottom:407.786011pt;}
.y15_c02445{bottom:437.226235pt;}
.y14_c02445{bottom:453.226747pt;}
.y11_c02445{bottom:482.666971pt;}
.y13_c02445{bottom:497.386555pt;}
.y10_c02445{bottom:513.387067pt;}
.y1e_c02445{bottom:546.027067pt;}
.yc_c02445{bottom:579.945467pt;}
.yb_c02445{bottom:593.385179pt;}
.ye_c02445{bottom:628.586875pt;}
.yd_c02445{bottom:637.227067pt;}
.ya_c02445{bottom:707.945339pt;}
.y9_c02445{bottom:779.945531pt;}
.y7_c02445{bottom:823.786427pt;}
.y3_c02445{bottom:839.786939pt;}
.y8_c02445{bottom:870.505979pt;}
.y6_c02445{bottom:899.946203pt;}
.y5_c02445{bottom:915.946715pt;}
.y2_c02445{bottom:945.386939pt;}
.y4_c02445{bottom:959.786555pt;}
.y1_c02445{bottom:975.787067pt;}
.yf_c02445{bottom:1008.747067pt;}
.h3_c02445{height:28.916250pt;}
.h1_c02445{height:37.063125pt;}
.h2_c02445{height:37.166250pt;}
.h4_c02445{height:48.581988pt;}
.h0_c02445{height:1122.666667pt;}
.w1_c02445{width:793.333333pt;}
.w0_c02445{width:793.626667pt;}
.x0_c02445{left:0.000000pt;}
.xe_c02445{left:104.000000pt;}
.x8_c02445{left:391.999872pt;}
.x4_c02445{left:396.160512pt;}
.xc_c02445{left:400.960000pt;}
.x7_c02445{left:404.799648pt;}
.x5_c02445{left:410.560128pt;}
.x1_c02445{left:411.840000pt;}
.xa_c02445{left:429.760320pt;}
.x9_c02445{left:437.439552pt;}
.x6_c02445{left:438.400512pt;}
.xd_c02445{left:450.560320pt;}
.x3_c02445{left:455.039904pt;}
.x2_c02445{left:468.159648pt;}
.xb_c02445{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02446 {
    display:none;
  }
  .loading-indicator_c02446.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02446 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02446 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02446" -> "#page-container .classname_c02446")
 */
.pf_c02446 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02446 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02446 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02446 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02446 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02446 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02446 {overflow:visible;}
  }
}
.c_c02446 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02446 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02446:after { /* webkit #35443 */
  content: '';
}
.t_c02446:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02446 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02446 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02446 { /* info for Javascript */
  display:none;
}
.l_c02446 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02446 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02446 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02446:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02446 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02446.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02446 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02446{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02446;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02446{font-family:ff1_c02446;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02446;src:url('chunks/assets/font_f66e81603f900a1ea6628bd4.woff2')format("woff");}.ff2_c02446{font-family:ff2_c02446;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02446;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02446{font-family:ff3_c02446;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02446{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02446{vertical-align:0.000000px;}
.v1_c02446{vertical-align:1.439424px;}
.lse_c02446{letter-spacing:-0.793584px;}
.lsb_c02446{letter-spacing:-0.774576px;}
.ls11_c02446{letter-spacing:-0.736560px;}
.ls8_c02446{letter-spacing:-0.613008px;}
.lsa_c02446{letter-spacing:-0.574992px;}
.ls12_c02446{letter-spacing:-0.270864px;}
.lsf_c02446{letter-spacing:-0.261360px;}
.ls7_c02446{letter-spacing:-0.242352px;}
.ls4_c02446{letter-spacing:-0.118800px;}
.ls15_c02446{letter-spacing:0.000000px;}
.ls1_c02446{letter-spacing:0.006048px;}
.ls6_c02446{letter-spacing:0.128304px;}
.lsd_c02446{letter-spacing:0.508464px;}
.ls14_c02446{letter-spacing:0.514080px;}
.ls10_c02446{letter-spacing:0.536976px;}
.lsc_c02446{letter-spacing:0.579744px;}
.ls13_c02446{letter-spacing:0.594000px;}
.ls9_c02446{letter-spacing:0.598752px;}
.ls2_c02446{letter-spacing:0.613008px;}
.ls0_c02446{letter-spacing:0.651024px;}
.ls5_c02446{letter-spacing:0.717552px;}
.ls3_c02446{letter-spacing:0.722304px;}
.sc__c02446{text-shadow:none;}
.sc0_c02446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02446{-webkit-text-stroke:0px transparent;}
.sc0_c02446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02446{word-spacing:-15.126048px;}
.wsb_c02446{word-spacing:-12.474000px;}
.ws7_c02446{word-spacing:-12.459744px;}
.ws4_c02446{word-spacing:-11.637648px;}
.ws2_c02446{word-spacing:-11.266992px;}
.ws6_c02446{word-spacing:-11.105424px;}
.ws16_c02446{word-spacing:-2.159136px;}
.ws10_c02446{word-spacing:-1.012176px;}
.wse_c02446{word-spacing:-0.974160px;}
.ws11_c02446{word-spacing:-0.118800px;}
.ws13_c02446{word-spacing:-0.099792px;}
.ws14_c02446{word-spacing:-0.090288px;}
.ws15_c02446{word-spacing:-0.085536px;}
.wsf_c02446{word-spacing:0.000000px;}
.ws12_c02446{word-spacing:0.432432px;}
.wsa_c02446{word-spacing:6.629040px;}
.wsc_c02446{word-spacing:33.300288px;}
.ws9_c02446{word-spacing:34.836912px;}
.ws1_c02446{word-spacing:37.759392px;}
.ws0_c02446{word-spacing:38.020752px;}
.ws3_c02446{word-spacing:39.218256px;}
.ws5_c02446{word-spacing:39.902544px;}
.ws8_c02446{word-spacing:42.026688px;}
._0_c02446{margin-left:-1.948320px;}
._2_c02446{width:1.482624px;}
._4_c02446{width:4.257792px;}
._6_c02446{width:19.982160px;}
._7_c02446{width:23.451120px;}
._5_c02446{width:24.691392px;}
._1_c02446{width:50.252400px;}
._3_c02446{width:51.530688px;}
.fc0_c02446{color:rgb(0,0,0);}
.fs0_c02446{font-size:47.520000px;}
.fs1_c02446{font-size:60.480000px;}
.y0_c02446{bottom:0.000000px;}
.y1b_c02446{bottom:131.878686px;}
.y1a_c02446{bottom:146.998362px;}
.y1d_c02446{bottom:186.600234px;}
.y1c_c02446{bottom:196.320450px;}
.y19_c02446{bottom:275.878542px;}
.y18_c02446{bottom:356.878758px;}
.y16_c02446{bottom:406.559730px;}
.y12_c02446{bottom:424.560306px;}
.y17_c02446{bottom:458.759262px;}
.y15_c02446{bottom:491.879514px;}
.y14_c02446{bottom:509.880090px;}
.y11_c02446{bottom:543.000342px;}
.y13_c02446{bottom:559.559874px;}
.y10_c02446{bottom:577.560450px;}
.y1e_c02446{bottom:614.280450px;}
.yc_c02446{bottom:652.438650px;}
.yb_c02446{bottom:667.558326px;}
.ye_c02446{bottom:707.160234px;}
.yd_c02446{bottom:716.880450px;}
.ya_c02446{bottom:796.438506px;}
.y9_c02446{bottom:877.438722px;}
.y7_c02446{bottom:926.759730px;}
.y3_c02446{bottom:944.760306px;}
.y8_c02446{bottom:979.319226px;}
.y6_c02446{bottom:1012.439478px;}
.y5_c02446{bottom:1030.440054px;}
.y2_c02446{bottom:1063.560306px;}
.y4_c02446{bottom:1079.759874px;}
.y1_c02446{bottom:1097.760450px;}
.yf_c02446{bottom:1134.840450px;}
.h3_c02446{height:32.530781px;}
.h1_c02446{height:41.696016px;}
.h2_c02446{height:41.812031px;}
.h4_c02446{height:54.654737px;}
.h0_c02446{height:1263.000000px;}
.w1_c02446{width:892.500000px;}
.w0_c02446{width:892.830000px;}
.x0_c02446{left:0.000000px;}
.xe_c02446{left:117.000000px;}
.x8_c02446{left:440.999856px;}
.x4_c02446{left:445.680576px;}
.xc_c02446{left:451.080000px;}
.x7_c02446{left:455.399604px;}
.x5_c02446{left:461.880144px;}
.x1_c02446{left:463.320000px;}
.xa_c02446{left:483.480360px;}
.x9_c02446{left:492.119496px;}
.x6_c02446{left:493.200576px;}
.xd_c02446{left:506.880360px;}
.x3_c02446{left:511.919892px;}
.x2_c02446{left:526.679604px;}
.xb_c02446{left:569.880036px;}
@media print{
.v0_c02446{vertical-align:0.000000pt;}
.v1_c02446{vertical-align:1.279488pt;}
.lse_c02446{letter-spacing:-0.705408pt;}
.lsb_c02446{letter-spacing:-0.688512pt;}
.ls11_c02446{letter-spacing:-0.654720pt;}
.ls8_c02446{letter-spacing:-0.544896pt;}
.lsa_c02446{letter-spacing:-0.511104pt;}
.ls12_c02446{letter-spacing:-0.240768pt;}
.lsf_c02446{letter-spacing:-0.232320pt;}
.ls7_c02446{letter-spacing:-0.215424pt;}
.ls4_c02446{letter-spacing:-0.105600pt;}
.ls15_c02446{letter-spacing:0.000000pt;}
.ls1_c02446{letter-spacing:0.005376pt;}
.ls6_c02446{letter-spacing:0.114048pt;}
.lsd_c02446{letter-spacing:0.451968pt;}
.ls14_c02446{letter-spacing:0.456960pt;}
.ls10_c02446{letter-spacing:0.477312pt;}
.lsc_c02446{letter-spacing:0.515328pt;}
.ls13_c02446{letter-spacing:0.528000pt;}
.ls9_c02446{letter-spacing:0.532224pt;}
.ls2_c02446{letter-spacing:0.544896pt;}
.ls0_c02446{letter-spacing:0.578688pt;}
.ls5_c02446{letter-spacing:0.637824pt;}
.ls3_c02446{letter-spacing:0.642048pt;}
.wsd_c02446{word-spacing:-13.445376pt;}
.wsb_c02446{word-spacing:-11.088000pt;}
.ws7_c02446{word-spacing:-11.075328pt;}
.ws4_c02446{word-spacing:-10.344576pt;}
.ws2_c02446{word-spacing:-10.015104pt;}
.ws6_c02446{word-spacing:-9.871488pt;}
.ws16_c02446{word-spacing:-1.919232pt;}
.ws10_c02446{word-spacing:-0.899712pt;}
.wse_c02446{word-spacing:-0.865920pt;}
.ws11_c02446{word-spacing:-0.105600pt;}
.ws13_c02446{word-spacing:-0.088704pt;}
.ws14_c02446{word-spacing:-0.080256pt;}
.ws15_c02446{word-spacing:-0.076032pt;}
.wsf_c02446{word-spacing:0.000000pt;}
.ws12_c02446{word-spacing:0.384384pt;}
.wsa_c02446{word-spacing:5.892480pt;}
.wsc_c02446{word-spacing:29.600256pt;}
.ws9_c02446{word-spacing:30.966144pt;}
.ws1_c02446{word-spacing:33.563904pt;}
.ws0_c02446{word-spacing:33.796224pt;}
.ws3_c02446{word-spacing:34.860672pt;}
.ws5_c02446{word-spacing:35.468928pt;}
.ws8_c02446{word-spacing:37.357056pt;}
._0_c02446{margin-left:-1.731840pt;}
._2_c02446{width:1.317888pt;}
._4_c02446{width:3.784704pt;}
._6_c02446{width:17.761920pt;}
._7_c02446{width:20.845440pt;}
._5_c02446{width:21.947904pt;}
._1_c02446{width:44.668800pt;}
._3_c02446{width:45.805056pt;}
.fs0_c02446{font-size:42.240000pt;}
.fs1_c02446{font-size:53.760000pt;}
.y0_c02446{bottom:0.000000pt;}
.y1b_c02446{bottom:117.225499pt;}
.y1a_c02446{bottom:130.665211pt;}
.y1d_c02446{bottom:165.866875pt;}
.y1c_c02446{bottom:174.507067pt;}
.y19_c02446{bottom:245.225371pt;}
.y18_c02446{bottom:317.225563pt;}
.y16_c02446{bottom:361.386427pt;}
.y12_c02446{bottom:377.386939pt;}
.y17_c02446{bottom:407.786011pt;}
.y15_c02446{bottom:437.226235pt;}
.y14_c02446{bottom:453.226747pt;}
.y11_c02446{bottom:482.666971pt;}
.y13_c02446{bottom:497.386555pt;}
.y10_c02446{bottom:513.387067pt;}
.y1e_c02446{bottom:546.027067pt;}
.yc_c02446{bottom:579.945467pt;}
.yb_c02446{bottom:593.385179pt;}
.ye_c02446{bottom:628.586875pt;}
.yd_c02446{bottom:637.227067pt;}
.ya_c02446{bottom:707.945339pt;}
.y9_c02446{bottom:779.945531pt;}
.y7_c02446{bottom:823.786427pt;}
.y3_c02446{bottom:839.786939pt;}
.y8_c02446{bottom:870.505979pt;}
.y6_c02446{bottom:899.946203pt;}
.y5_c02446{bottom:915.946715pt;}
.y2_c02446{bottom:945.386939pt;}
.y4_c02446{bottom:959.786555pt;}
.y1_c02446{bottom:975.787067pt;}
.yf_c02446{bottom:1008.747067pt;}
.h3_c02446{height:28.916250pt;}
.h1_c02446{height:37.063125pt;}
.h2_c02446{height:37.166250pt;}
.h4_c02446{height:48.581988pt;}
.h0_c02446{height:1122.666667pt;}
.w1_c02446{width:793.333333pt;}
.w0_c02446{width:793.626667pt;}
.x0_c02446{left:0.000000pt;}
.xe_c02446{left:104.000000pt;}
.x8_c02446{left:391.999872pt;}
.x4_c02446{left:396.160512pt;}
.xc_c02446{left:400.960000pt;}
.x7_c02446{left:404.799648pt;}
.x5_c02446{left:410.560128pt;}
.x1_c02446{left:411.840000pt;}
.xa_c02446{left:429.760320pt;}
.x9_c02446{left:437.439552pt;}
.x6_c02446{left:438.400512pt;}
.xd_c02446{left:450.560320pt;}
.x3_c02446{left:455.039904pt;}
.x2_c02446{left:468.159648pt;}
.xb_c02446{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02447 {
    display:none;
  }
  .loading-indicator_c02447.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02447 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02447 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02447" -> "#page-container .classname_c02447")
 */
.pf_c02447 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02447 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02447 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02447 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02447 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02447 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02447 {overflow:visible;}
  }
}
.c_c02447 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02447 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02447:after { /* webkit #35443 */
  content: '';
}
.t_c02447:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02447 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02447 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02447 { /* info for Javascript */
  display:none;
}
.l_c02447 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02447 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02447 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02447:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02447 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02447.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02447 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02447{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02447;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02447{font-family:ff1_c02447;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02447;src:url('chunks/assets/font_f66e81603f900a1ea6628bd4.woff2')format("woff");}.ff2_c02447{font-family:ff2_c02447;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02447;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02447{font-family:ff3_c02447;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02447{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02447{vertical-align:0.000000px;}
.v1_c02447{vertical-align:1.439424px;}
.lse_c02447{letter-spacing:-0.793584px;}
.lsb_c02447{letter-spacing:-0.774576px;}
.ls11_c02447{letter-spacing:-0.736560px;}
.ls8_c02447{letter-spacing:-0.613008px;}
.lsa_c02447{letter-spacing:-0.574992px;}
.ls12_c02447{letter-spacing:-0.270864px;}
.lsf_c02447{letter-spacing:-0.261360px;}
.ls7_c02447{letter-spacing:-0.242352px;}
.ls4_c02447{letter-spacing:-0.118800px;}
.ls15_c02447{letter-spacing:0.000000px;}
.ls1_c02447{letter-spacing:0.006048px;}
.ls6_c02447{letter-spacing:0.128304px;}
.lsd_c02447{letter-spacing:0.508464px;}
.ls14_c02447{letter-spacing:0.514080px;}
.ls10_c02447{letter-spacing:0.536976px;}
.lsc_c02447{letter-spacing:0.579744px;}
.ls13_c02447{letter-spacing:0.594000px;}
.ls9_c02447{letter-spacing:0.598752px;}
.ls2_c02447{letter-spacing:0.613008px;}
.ls0_c02447{letter-spacing:0.651024px;}
.ls5_c02447{letter-spacing:0.717552px;}
.ls3_c02447{letter-spacing:0.722304px;}
.sc__c02447{text-shadow:none;}
.sc0_c02447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02447{-webkit-text-stroke:0px transparent;}
.sc0_c02447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02447{word-spacing:-15.126048px;}
.wsb_c02447{word-spacing:-12.474000px;}
.ws7_c02447{word-spacing:-12.459744px;}
.ws4_c02447{word-spacing:-11.637648px;}
.ws2_c02447{word-spacing:-11.266992px;}
.ws6_c02447{word-spacing:-11.105424px;}
.ws16_c02447{word-spacing:-2.159136px;}
.ws10_c02447{word-spacing:-1.012176px;}
.wse_c02447{word-spacing:-0.974160px;}
.ws11_c02447{word-spacing:-0.118800px;}
.ws13_c02447{word-spacing:-0.099792px;}
.ws14_c02447{word-spacing:-0.090288px;}
.ws15_c02447{word-spacing:-0.085536px;}
.wsf_c02447{word-spacing:0.000000px;}
.ws12_c02447{word-spacing:0.432432px;}
.wsa_c02447{word-spacing:6.629040px;}
.wsc_c02447{word-spacing:33.300288px;}
.ws9_c02447{word-spacing:34.836912px;}
.ws1_c02447{word-spacing:37.759392px;}
.ws0_c02447{word-spacing:38.020752px;}
.ws3_c02447{word-spacing:39.218256px;}
.ws5_c02447{word-spacing:39.902544px;}
.ws8_c02447{word-spacing:42.026688px;}
._0_c02447{margin-left:-1.948320px;}
._2_c02447{width:1.482624px;}
._4_c02447{width:4.257792px;}
._6_c02447{width:19.982160px;}
._7_c02447{width:23.451120px;}
._5_c02447{width:24.691392px;}
._1_c02447{width:50.252400px;}
._3_c02447{width:51.530688px;}
.fc0_c02447{color:rgb(0,0,0);}
.fs0_c02447{font-size:47.520000px;}
.fs1_c02447{font-size:60.480000px;}
.y0_c02447{bottom:0.000000px;}
.y1b_c02447{bottom:131.878686px;}
.y1a_c02447{bottom:146.998362px;}
.y1d_c02447{bottom:186.600234px;}
.y1c_c02447{bottom:196.320450px;}
.y19_c02447{bottom:275.878542px;}
.y18_c02447{bottom:356.878758px;}
.y16_c02447{bottom:406.559730px;}
.y12_c02447{bottom:424.560306px;}
.y17_c02447{bottom:458.759262px;}
.y15_c02447{bottom:491.879514px;}
.y14_c02447{bottom:509.880090px;}
.y11_c02447{bottom:543.000342px;}
.y13_c02447{bottom:559.559874px;}
.y10_c02447{bottom:577.560450px;}
.y1e_c02447{bottom:614.280450px;}
.yc_c02447{bottom:652.438650px;}
.yb_c02447{bottom:667.558326px;}
.ye_c02447{bottom:707.160234px;}
.yd_c02447{bottom:716.880450px;}
.ya_c02447{bottom:796.438506px;}
.y9_c02447{bottom:877.438722px;}
.y7_c02447{bottom:926.759730px;}
.y3_c02447{bottom:944.760306px;}
.y8_c02447{bottom:979.319226px;}
.y6_c02447{bottom:1012.439478px;}
.y5_c02447{bottom:1030.440054px;}
.y2_c02447{bottom:1063.560306px;}
.y4_c02447{bottom:1079.759874px;}
.y1_c02447{bottom:1097.760450px;}
.yf_c02447{bottom:1134.840450px;}
.h3_c02447{height:32.530781px;}
.h1_c02447{height:41.696016px;}
.h2_c02447{height:41.812031px;}
.h4_c02447{height:54.654737px;}
.h0_c02447{height:1263.000000px;}
.w1_c02447{width:892.500000px;}
.w0_c02447{width:892.830000px;}
.x0_c02447{left:0.000000px;}
.xe_c02447{left:117.000000px;}
.x8_c02447{left:440.999856px;}
.x4_c02447{left:445.680576px;}
.xc_c02447{left:451.080000px;}
.x7_c02447{left:455.399604px;}
.x5_c02447{left:461.880144px;}
.x1_c02447{left:463.320000px;}
.xa_c02447{left:483.480360px;}
.x9_c02447{left:492.119496px;}
.x6_c02447{left:493.200576px;}
.xd_c02447{left:506.880360px;}
.x3_c02447{left:511.919892px;}
.x2_c02447{left:526.679604px;}
.xb_c02447{left:569.880036px;}
@media print{
.v0_c02447{vertical-align:0.000000pt;}
.v1_c02447{vertical-align:1.279488pt;}
.lse_c02447{letter-spacing:-0.705408pt;}
.lsb_c02447{letter-spacing:-0.688512pt;}
.ls11_c02447{letter-spacing:-0.654720pt;}
.ls8_c02447{letter-spacing:-0.544896pt;}
.lsa_c02447{letter-spacing:-0.511104pt;}
.ls12_c02447{letter-spacing:-0.240768pt;}
.lsf_c02447{letter-spacing:-0.232320pt;}
.ls7_c02447{letter-spacing:-0.215424pt;}
.ls4_c02447{letter-spacing:-0.105600pt;}
.ls15_c02447{letter-spacing:0.000000pt;}
.ls1_c02447{letter-spacing:0.005376pt;}
.ls6_c02447{letter-spacing:0.114048pt;}
.lsd_c02447{letter-spacing:0.451968pt;}
.ls14_c02447{letter-spacing:0.456960pt;}
.ls10_c02447{letter-spacing:0.477312pt;}
.lsc_c02447{letter-spacing:0.515328pt;}
.ls13_c02447{letter-spacing:0.528000pt;}
.ls9_c02447{letter-spacing:0.532224pt;}
.ls2_c02447{letter-spacing:0.544896pt;}
.ls0_c02447{letter-spacing:0.578688pt;}
.ls5_c02447{letter-spacing:0.637824pt;}
.ls3_c02447{letter-spacing:0.642048pt;}
.wsd_c02447{word-spacing:-13.445376pt;}
.wsb_c02447{word-spacing:-11.088000pt;}
.ws7_c02447{word-spacing:-11.075328pt;}
.ws4_c02447{word-spacing:-10.344576pt;}
.ws2_c02447{word-spacing:-10.015104pt;}
.ws6_c02447{word-spacing:-9.871488pt;}
.ws16_c02447{word-spacing:-1.919232pt;}
.ws10_c02447{word-spacing:-0.899712pt;}
.wse_c02447{word-spacing:-0.865920pt;}
.ws11_c02447{word-spacing:-0.105600pt;}
.ws13_c02447{word-spacing:-0.088704pt;}
.ws14_c02447{word-spacing:-0.080256pt;}
.ws15_c02447{word-spacing:-0.076032pt;}
.wsf_c02447{word-spacing:0.000000pt;}
.ws12_c02447{word-spacing:0.384384pt;}
.wsa_c02447{word-spacing:5.892480pt;}
.wsc_c02447{word-spacing:29.600256pt;}
.ws9_c02447{word-spacing:30.966144pt;}
.ws1_c02447{word-spacing:33.563904pt;}
.ws0_c02447{word-spacing:33.796224pt;}
.ws3_c02447{word-spacing:34.860672pt;}
.ws5_c02447{word-spacing:35.468928pt;}
.ws8_c02447{word-spacing:37.357056pt;}
._0_c02447{margin-left:-1.731840pt;}
._2_c02447{width:1.317888pt;}
._4_c02447{width:3.784704pt;}
._6_c02447{width:17.761920pt;}
._7_c02447{width:20.845440pt;}
._5_c02447{width:21.947904pt;}
._1_c02447{width:44.668800pt;}
._3_c02447{width:45.805056pt;}
.fs0_c02447{font-size:42.240000pt;}
.fs1_c02447{font-size:53.760000pt;}
.y0_c02447{bottom:0.000000pt;}
.y1b_c02447{bottom:117.225499pt;}
.y1a_c02447{bottom:130.665211pt;}
.y1d_c02447{bottom:165.866875pt;}
.y1c_c02447{bottom:174.507067pt;}
.y19_c02447{bottom:245.225371pt;}
.y18_c02447{bottom:317.225563pt;}
.y16_c02447{bottom:361.386427pt;}
.y12_c02447{bottom:377.386939pt;}
.y17_c02447{bottom:407.786011pt;}
.y15_c02447{bottom:437.226235pt;}
.y14_c02447{bottom:453.226747pt;}
.y11_c02447{bottom:482.666971pt;}
.y13_c02447{bottom:497.386555pt;}
.y10_c02447{bottom:513.387067pt;}
.y1e_c02447{bottom:546.027067pt;}
.yc_c02447{bottom:579.945467pt;}
.yb_c02447{bottom:593.385179pt;}
.ye_c02447{bottom:628.586875pt;}
.yd_c02447{bottom:637.227067pt;}
.ya_c02447{bottom:707.945339pt;}
.y9_c02447{bottom:779.945531pt;}
.y7_c02447{bottom:823.786427pt;}
.y3_c02447{bottom:839.786939pt;}
.y8_c02447{bottom:870.505979pt;}
.y6_c02447{bottom:899.946203pt;}
.y5_c02447{bottom:915.946715pt;}
.y2_c02447{bottom:945.386939pt;}
.y4_c02447{bottom:959.786555pt;}
.y1_c02447{bottom:975.787067pt;}
.yf_c02447{bottom:1008.747067pt;}
.h3_c02447{height:28.916250pt;}
.h1_c02447{height:37.063125pt;}
.h2_c02447{height:37.166250pt;}
.h4_c02447{height:48.581988pt;}
.h0_c02447{height:1122.666667pt;}
.w1_c02447{width:793.333333pt;}
.w0_c02447{width:793.626667pt;}
.x0_c02447{left:0.000000pt;}
.xe_c02447{left:104.000000pt;}
.x8_c02447{left:391.999872pt;}
.x4_c02447{left:396.160512pt;}
.xc_c02447{left:400.960000pt;}
.x7_c02447{left:404.799648pt;}
.x5_c02447{left:410.560128pt;}
.x1_c02447{left:411.840000pt;}
.xa_c02447{left:429.760320pt;}
.x9_c02447{left:437.439552pt;}
.x6_c02447{left:438.400512pt;}
.xd_c02447{left:450.560320pt;}
.x3_c02447{left:455.039904pt;}
.x2_c02447{left:468.159648pt;}
.xb_c02447{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02448 {
    display:none;
  }
  .loading-indicator_c02448.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02448 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02448 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02448" -> "#page-container .classname_c02448")
 */
.pf_c02448 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02448 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02448 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02448 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02448 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02448 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02448 {overflow:visible;}
  }
}
.c_c02448 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02448 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02448:after { /* webkit #35443 */
  content: '';
}
.t_c02448:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02448 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02448 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02448 { /* info for Javascript */
  display:none;
}
.l_c02448 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02448 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02448 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02448:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02448 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02448.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02448 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02448{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02448;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02448{font-family:ff1_c02448;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02448;src:url('chunks/assets/font_5aeb4a52972b51f862b48079.woff2')format("woff");}.ff2_c02448{font-family:ff2_c02448;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02448;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02448{font-family:ff3_c02448;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02448{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02448{vertical-align:0.000000px;}
.v1_c02448{vertical-align:1.439424px;}
.lse_c02448{letter-spacing:-0.793584px;}
.lsb_c02448{letter-spacing:-0.774576px;}
.ls11_c02448{letter-spacing:-0.736560px;}
.ls8_c02448{letter-spacing:-0.613008px;}
.lsa_c02448{letter-spacing:-0.574992px;}
.ls12_c02448{letter-spacing:-0.270864px;}
.lsf_c02448{letter-spacing:-0.261360px;}
.ls7_c02448{letter-spacing:-0.242352px;}
.ls5_c02448{letter-spacing:-0.118800px;}
.ls15_c02448{letter-spacing:0.000000px;}
.ls1_c02448{letter-spacing:0.006048px;}
.ls6_c02448{letter-spacing:0.128304px;}
.lsd_c02448{letter-spacing:0.508464px;}
.ls14_c02448{letter-spacing:0.514080px;}
.ls10_c02448{letter-spacing:0.536976px;}
.lsc_c02448{letter-spacing:0.579744px;}
.ls13_c02448{letter-spacing:0.594000px;}
.ls9_c02448{letter-spacing:0.598752px;}
.ls3_c02448{letter-spacing:0.613008px;}
.ls0_c02448{letter-spacing:0.651024px;}
.ls2_c02448{letter-spacing:0.717552px;}
.ls4_c02448{letter-spacing:0.722304px;}
.sc__c02448{text-shadow:none;}
.sc0_c02448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02448{-webkit-text-stroke:0px transparent;}
.sc0_c02448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02448{word-spacing:-15.126048px;}
.wsb_c02448{word-spacing:-12.474000px;}
.ws7_c02448{word-spacing:-12.459744px;}
.ws4_c02448{word-spacing:-11.637648px;}
.ws2_c02448{word-spacing:-11.266992px;}
.ws6_c02448{word-spacing:-11.105424px;}
.ws16_c02448{word-spacing:-2.159136px;}
.ws17_c02448{word-spacing:-1.078704px;}
.ws10_c02448{word-spacing:-1.012176px;}
.wse_c02448{word-spacing:-0.974160px;}
.ws11_c02448{word-spacing:-0.118800px;}
.ws13_c02448{word-spacing:-0.099792px;}
.ws14_c02448{word-spacing:-0.090288px;}
.ws15_c02448{word-spacing:-0.085536px;}
.wsf_c02448{word-spacing:0.000000px;}
.ws12_c02448{word-spacing:0.432432px;}
.wsa_c02448{word-spacing:6.629040px;}
.wsc_c02448{word-spacing:33.300288px;}
.ws9_c02448{word-spacing:34.836912px;}
.ws1_c02448{word-spacing:37.759392px;}
.ws0_c02448{word-spacing:38.020752px;}
.ws3_c02448{word-spacing:39.218256px;}
.ws5_c02448{word-spacing:39.902544px;}
.ws8_c02448{word-spacing:42.026688px;}
._0_c02448{margin-left:-1.948320px;}
._2_c02448{width:1.482624px;}
._4_c02448{width:4.257792px;}
._6_c02448{width:19.982160px;}
._7_c02448{width:23.451120px;}
._5_c02448{width:24.691392px;}
._1_c02448{width:50.252400px;}
._3_c02448{width:51.530688px;}
.fc0_c02448{color:rgb(0,0,0);}
.fs0_c02448{font-size:47.520000px;}
.fs1_c02448{font-size:60.480000px;}
.y0_c02448{bottom:0.000000px;}
.y1b_c02448{bottom:131.878686px;}
.y1a_c02448{bottom:146.998362px;}
.y1d_c02448{bottom:186.600234px;}
.y1c_c02448{bottom:196.320450px;}
.y19_c02448{bottom:275.878542px;}
.y18_c02448{bottom:356.878758px;}
.y16_c02448{bottom:406.559730px;}
.y12_c02448{bottom:424.560306px;}
.y17_c02448{bottom:458.759262px;}
.y15_c02448{bottom:491.879514px;}
.y14_c02448{bottom:509.880090px;}
.y11_c02448{bottom:543.000342px;}
.y13_c02448{bottom:559.559874px;}
.y10_c02448{bottom:577.560450px;}
.y1e_c02448{bottom:614.280450px;}
.yc_c02448{bottom:652.438650px;}
.yb_c02448{bottom:667.558326px;}
.ye_c02448{bottom:707.160234px;}
.yd_c02448{bottom:716.880450px;}
.ya_c02448{bottom:796.438506px;}
.y9_c02448{bottom:877.438722px;}
.y7_c02448{bottom:926.759730px;}
.y3_c02448{bottom:944.760306px;}
.y8_c02448{bottom:979.319226px;}
.y6_c02448{bottom:1012.439478px;}
.y5_c02448{bottom:1030.440054px;}
.y2_c02448{bottom:1063.560306px;}
.y4_c02448{bottom:1079.759874px;}
.y1_c02448{bottom:1097.760450px;}
.yf_c02448{bottom:1134.840450px;}
.h3_c02448{height:32.530781px;}
.h1_c02448{height:41.696016px;}
.h2_c02448{height:41.812031px;}
.h4_c02448{height:54.654737px;}
.h0_c02448{height:1263.000000px;}
.w1_c02448{width:892.500000px;}
.w0_c02448{width:892.830000px;}
.x0_c02448{left:0.000000px;}
.xe_c02448{left:117.000000px;}
.x8_c02448{left:440.999856px;}
.x4_c02448{left:445.680576px;}
.xc_c02448{left:451.080000px;}
.x7_c02448{left:455.399604px;}
.x5_c02448{left:461.880144px;}
.x1_c02448{left:463.320000px;}
.xa_c02448{left:483.480360px;}
.x9_c02448{left:492.119496px;}
.x6_c02448{left:493.200576px;}
.xd_c02448{left:506.880360px;}
.x3_c02448{left:511.919892px;}
.x2_c02448{left:526.679604px;}
.xb_c02448{left:569.880036px;}
@media print{
.v0_c02448{vertical-align:0.000000pt;}
.v1_c02448{vertical-align:1.279488pt;}
.lse_c02448{letter-spacing:-0.705408pt;}
.lsb_c02448{letter-spacing:-0.688512pt;}
.ls11_c02448{letter-spacing:-0.654720pt;}
.ls8_c02448{letter-spacing:-0.544896pt;}
.lsa_c02448{letter-spacing:-0.511104pt;}
.ls12_c02448{letter-spacing:-0.240768pt;}
.lsf_c02448{letter-spacing:-0.232320pt;}
.ls7_c02448{letter-spacing:-0.215424pt;}
.ls5_c02448{letter-spacing:-0.105600pt;}
.ls15_c02448{letter-spacing:0.000000pt;}
.ls1_c02448{letter-spacing:0.005376pt;}
.ls6_c02448{letter-spacing:0.114048pt;}
.lsd_c02448{letter-spacing:0.451968pt;}
.ls14_c02448{letter-spacing:0.456960pt;}
.ls10_c02448{letter-spacing:0.477312pt;}
.lsc_c02448{letter-spacing:0.515328pt;}
.ls13_c02448{letter-spacing:0.528000pt;}
.ls9_c02448{letter-spacing:0.532224pt;}
.ls3_c02448{letter-spacing:0.544896pt;}
.ls0_c02448{letter-spacing:0.578688pt;}
.ls2_c02448{letter-spacing:0.637824pt;}
.ls4_c02448{letter-spacing:0.642048pt;}
.wsd_c02448{word-spacing:-13.445376pt;}
.wsb_c02448{word-spacing:-11.088000pt;}
.ws7_c02448{word-spacing:-11.075328pt;}
.ws4_c02448{word-spacing:-10.344576pt;}
.ws2_c02448{word-spacing:-10.015104pt;}
.ws6_c02448{word-spacing:-9.871488pt;}
.ws16_c02448{word-spacing:-1.919232pt;}
.ws17_c02448{word-spacing:-0.958848pt;}
.ws10_c02448{word-spacing:-0.899712pt;}
.wse_c02448{word-spacing:-0.865920pt;}
.ws11_c02448{word-spacing:-0.105600pt;}
.ws13_c02448{word-spacing:-0.088704pt;}
.ws14_c02448{word-spacing:-0.080256pt;}
.ws15_c02448{word-spacing:-0.076032pt;}
.wsf_c02448{word-spacing:0.000000pt;}
.ws12_c02448{word-spacing:0.384384pt;}
.wsa_c02448{word-spacing:5.892480pt;}
.wsc_c02448{word-spacing:29.600256pt;}
.ws9_c02448{word-spacing:30.966144pt;}
.ws1_c02448{word-spacing:33.563904pt;}
.ws0_c02448{word-spacing:33.796224pt;}
.ws3_c02448{word-spacing:34.860672pt;}
.ws5_c02448{word-spacing:35.468928pt;}
.ws8_c02448{word-spacing:37.357056pt;}
._0_c02448{margin-left:-1.731840pt;}
._2_c02448{width:1.317888pt;}
._4_c02448{width:3.784704pt;}
._6_c02448{width:17.761920pt;}
._7_c02448{width:20.845440pt;}
._5_c02448{width:21.947904pt;}
._1_c02448{width:44.668800pt;}
._3_c02448{width:45.805056pt;}
.fs0_c02448{font-size:42.240000pt;}
.fs1_c02448{font-size:53.760000pt;}
.y0_c02448{bottom:0.000000pt;}
.y1b_c02448{bottom:117.225499pt;}
.y1a_c02448{bottom:130.665211pt;}
.y1d_c02448{bottom:165.866875pt;}
.y1c_c02448{bottom:174.507067pt;}
.y19_c02448{bottom:245.225371pt;}
.y18_c02448{bottom:317.225563pt;}
.y16_c02448{bottom:361.386427pt;}
.y12_c02448{bottom:377.386939pt;}
.y17_c02448{bottom:407.786011pt;}
.y15_c02448{bottom:437.226235pt;}
.y14_c02448{bottom:453.226747pt;}
.y11_c02448{bottom:482.666971pt;}
.y13_c02448{bottom:497.386555pt;}
.y10_c02448{bottom:513.387067pt;}
.y1e_c02448{bottom:546.027067pt;}
.yc_c02448{bottom:579.945467pt;}
.yb_c02448{bottom:593.385179pt;}
.ye_c02448{bottom:628.586875pt;}
.yd_c02448{bottom:637.227067pt;}
.ya_c02448{bottom:707.945339pt;}
.y9_c02448{bottom:779.945531pt;}
.y7_c02448{bottom:823.786427pt;}
.y3_c02448{bottom:839.786939pt;}
.y8_c02448{bottom:870.505979pt;}
.y6_c02448{bottom:899.946203pt;}
.y5_c02448{bottom:915.946715pt;}
.y2_c02448{bottom:945.386939pt;}
.y4_c02448{bottom:959.786555pt;}
.y1_c02448{bottom:975.787067pt;}
.yf_c02448{bottom:1008.747067pt;}
.h3_c02448{height:28.916250pt;}
.h1_c02448{height:37.063125pt;}
.h2_c02448{height:37.166250pt;}
.h4_c02448{height:48.581988pt;}
.h0_c02448{height:1122.666667pt;}
.w1_c02448{width:793.333333pt;}
.w0_c02448{width:793.626667pt;}
.x0_c02448{left:0.000000pt;}
.xe_c02448{left:104.000000pt;}
.x8_c02448{left:391.999872pt;}
.x4_c02448{left:396.160512pt;}
.xc_c02448{left:400.960000pt;}
.x7_c02448{left:404.799648pt;}
.x5_c02448{left:410.560128pt;}
.x1_c02448{left:411.840000pt;}
.xa_c02448{left:429.760320pt;}
.x9_c02448{left:437.439552pt;}
.x6_c02448{left:438.400512pt;}
.xd_c02448{left:450.560320pt;}
.x3_c02448{left:455.039904pt;}
.x2_c02448{left:468.159648pt;}
.xb_c02448{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02449 {
    display:none;
  }
  .loading-indicator_c02449.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02449 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02449 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02449" -> "#page-container .classname_c02449")
 */
.pf_c02449 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02449 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02449 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02449 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02449 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02449 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02449 {overflow:visible;}
  }
}
.c_c02449 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02449 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02449:after { /* webkit #35443 */
  content: '';
}
.t_c02449:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02449 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02449 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02449 { /* info for Javascript */
  display:none;
}
.l_c02449 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02449 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02449 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02449:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02449 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02449.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02449 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02449{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02449;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02449{font-family:ff1_c02449;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02449;src:url('chunks/assets/font_d24ba2c2bb167acf77d2c627.woff2')format("woff");}.ff2_c02449{font-family:ff2_c02449;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02449;src:url('chunks/assets/font_8d19648f40952c472dc52f59.woff2')format("woff");}.ff3_c02449{font-family:ff3_c02449;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02449;src:url('chunks/assets/font_4f445a2a0ab54fc29aea503c.woff2')format("woff");}.ff4_c02449{font-family:ff4_c02449;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02449{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02449{vertical-align:0.000000px;}
.v1_c02449{vertical-align:1.439856px;}
.v2_c02449{vertical-align:11.523168px;}
.ls4_c02449{letter-spacing:-1.454112px;}
.ls1a_c02449{letter-spacing:-1.197504px;}
.lsc_c02449{letter-spacing:-0.803088px;}
.ls19_c02449{letter-spacing:-0.793584px;}
.ls1b_c02449{letter-spacing:-0.736560px;}
.ls13_c02449{letter-spacing:-0.722448px;}
.lsa_c02449{letter-spacing:-0.574992px;}
.ls11_c02449{letter-spacing:-0.308880px;}
.ls15_c02449{letter-spacing:-0.275616px;}
.ls9_c02449{letter-spacing:-0.270864px;}
.ls10_c02449{letter-spacing:-0.261360px;}
.ls18_c02449{letter-spacing:-0.256608px;}
.ls7_c02449{letter-spacing:-0.242352px;}
.ls3_c02449{letter-spacing:-0.118800px;}
.ls14_c02449{letter-spacing:-0.083520px;}
.lse_c02449{letter-spacing:0.000000px;}
.ls1_c02449{letter-spacing:0.006048px;}
.lsf_c02449{letter-spacing:0.014256px;}
.ls5_c02449{letter-spacing:0.128304px;}
.lsd_c02449{letter-spacing:0.508464px;}
.ls17_c02449{letter-spacing:0.514080px;}
.ls12_c02449{letter-spacing:0.536976px;}
.lsb_c02449{letter-spacing:0.579744px;}
.ls16_c02449{letter-spacing:0.594000px;}
.ls8_c02449{letter-spacing:0.598752px;}
.ls2_c02449{letter-spacing:0.613008px;}
.ls6_c02449{letter-spacing:0.717552px;}
.ls0_c02449{letter-spacing:0.722304px;}
.sc__c02449{text-shadow:none;}
.sc0_c02449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02449{-webkit-text-stroke:0px transparent;}
.sc0_c02449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11_c02449{word-spacing:-15.126048px;}
.wsf_c02449{word-spacing:-12.474000px;}
.wsa_c02449{word-spacing:-12.459744px;}
.ws0_c02449{word-spacing:-11.761200px;}
.ws3_c02449{word-spacing:-11.637648px;}
.ws1_c02449{word-spacing:-10.425888px;}
.ws1f_c02449{word-spacing:-2.159136px;}
.ws19_c02449{word-spacing:-1.083456px;}
.ws16_c02449{word-spacing:-0.974160px;}
.ws1d_c02449{word-spacing:-0.275616px;}
.ws17_c02449{word-spacing:-0.118800px;}
.ws20_c02449{word-spacing:-0.104544px;}
.ws1b_c02449{word-spacing:-0.099792px;}
.ws18_c02449{word-spacing:-0.090288px;}
.ws1e_c02449{word-spacing:-0.085536px;}
.ws1c_c02449{word-spacing:-0.052272px;}
.ws8_c02449{word-spacing:0.000000px;}
.ws21_c02449{word-spacing:0.432432px;}
.ws1a_c02449{word-spacing:0.441936px;}
.ws22_c02449{word-spacing:0.836352px;}
.wsc_c02449{word-spacing:6.126192px;}
.ws15_c02449{word-spacing:6.629040px;}
.ws13_c02449{word-spacing:8.045136px;}
.wsd_c02449{word-spacing:9.007632px;}
.wse_c02449{word-spacing:11.350368px;}
.ws9_c02449{word-spacing:22.667040px;}
.ws10_c02449{word-spacing:33.300288px;}
.wsb_c02449{word-spacing:34.836336px;}
.ws14_c02449{word-spacing:34.836912px;}
.ws6_c02449{word-spacing:36.742464px;}
.ws2_c02449{word-spacing:37.759392px;}
.ws12_c02449{word-spacing:38.020752px;}
.ws4_c02449{word-spacing:39.218256px;}
.ws5_c02449{word-spacing:39.902544px;}
.ws7_c02449{word-spacing:42.026688px;}
._0_c02449{margin-left:-1.948320px;}
._3_c02449{width:1.007424px;}
._2_c02449{width:2.176416px;}
._d_c02449{width:6.491232px;}
._5_c02449{width:13.714272px;}
._7_c02449{width:17.678736px;}
._8_c02449{width:19.991664px;}
._9_c02449{width:21.521088px;}
._b_c02449{width:22.619376px;}
._c_c02449{width:25.240752px;}
._a_c02449{width:26.601120px;}
._6_c02449{width:36.823248px;}
._1_c02449{width:50.252400px;}
._4_c02449{width:52.034400px;}
.fc0_c02449{color:rgb(0,0,0);}
.fs1_c02449{font-size:41.760000px;}
.fs0_c02449{font-size:47.520000px;}
.fs2_c02449{font-size:60.480000px;}
.y0_c02449{bottom:0.000000px;}
.y12_c02449{bottom:0.000450px;}
.y4_c02449{bottom:18.360450px;}
.y21_c02449{bottom:131.878686px;}
.y20_c02449{bottom:146.998362px;}
.y23_c02449{bottom:186.600234px;}
.y22_c02449{bottom:196.320450px;}
.y1f_c02449{bottom:275.878542px;}
.y1e_c02449{bottom:356.878758px;}
.y1c_c02449{bottom:406.559730px;}
.y18_c02449{bottom:424.560306px;}
.y1d_c02449{bottom:458.759262px;}
.y1b_c02449{bottom:491.879514px;}
.y1a_c02449{bottom:509.880090px;}
.y17_c02449{bottom:543.000342px;}
.y19_c02449{bottom:559.559874px;}
.y16_c02449{bottom:577.560450px;}
.y24_c02449{bottom:614.280450px;}
.y11_c02449{bottom:634.440000px;}
.y10_c02449{bottom:646.320918px;}
.yf_c02449{bottom:658.560774px;}
.ye_c02449{bottom:667.559658px;}
.y14_c02449{bottom:707.160234px;}
.y13_c02449{bottom:716.880450px;}
.yd_c02449{bottom:796.439838px;}
.yc_c02449{bottom:877.440054px;}
.y9_c02449{bottom:926.759874px;}
.y5_c02449{bottom:944.760450px;}
.yb_c02449{bottom:962.759838px;}
.ya_c02449{bottom:979.319370px;}
.y8_c02449{bottom:1012.439622px;}
.y7_c02449{bottom:1030.440198px;}
.y3_c02449{bottom:1045.200000px;}
.y2_c02449{bottom:1063.560306px;}
.y6_c02449{bottom:1079.760018px;}
.y1_c02449{bottom:1097.760450px;}
.y15_c02449{bottom:1134.840450px;}
.h3_c02449{height:29.520000px;}
.h2_c02449{height:32.530781px;}
.h6_c02449{height:36.641953px;}
.h1_c02449{height:41.696016px;}
.h4_c02449{height:41.812031px;}
.h7_c02449{height:45.720000px;}
.h5_c02449{height:48.165121px;}
.h8_c02449{height:54.654737px;}
.h0_c02449{height:1263.000000px;}
.w2_c02449{width:215.280000px;}
.w1_c02449{width:892.500000px;}
.w0_c02449{width:892.830000px;}
.x0_c02449{left:0.000000px;}
.xe_c02449{left:117.000000px;}
.x9_c02449{left:440.999964px;}
.x5_c02449{left:445.680684px;}
.xc_c02449{left:451.080000px;}
.x8_c02449{left:455.399712px;}
.x6_c02449{left:461.880252px;}
.x1_c02449{left:463.320000px;}
.xb_c02449{left:483.480468px;}
.xa_c02449{left:492.119604px;}
.x7_c02449{left:493.200684px;}
.xd_c02449{left:506.880360px;}
.x4_c02449{left:511.920000px;}
.x2_c02449{left:526.679604px;}
.x3_c02449{left:569.520000px;}
@media print{
.v0_c02449{vertical-align:0.000000pt;}
.v1_c02449{vertical-align:1.279872pt;}
.v2_c02449{vertical-align:10.242816pt;}
.ls4_c02449{letter-spacing:-1.292544pt;}
.ls1a_c02449{letter-spacing:-1.064448pt;}
.lsc_c02449{letter-spacing:-0.713856pt;}
.ls19_c02449{letter-spacing:-0.705408pt;}
.ls1b_c02449{letter-spacing:-0.654720pt;}
.ls13_c02449{letter-spacing:-0.642176pt;}
.lsa_c02449{letter-spacing:-0.511104pt;}
.ls11_c02449{letter-spacing:-0.274560pt;}
.ls15_c02449{letter-spacing:-0.244992pt;}
.ls9_c02449{letter-spacing:-0.240768pt;}
.ls10_c02449{letter-spacing:-0.232320pt;}
.ls18_c02449{letter-spacing:-0.228096pt;}
.ls7_c02449{letter-spacing:-0.215424pt;}
.ls3_c02449{letter-spacing:-0.105600pt;}
.ls14_c02449{letter-spacing:-0.074240pt;}
.lse_c02449{letter-spacing:0.000000pt;}
.ls1_c02449{letter-spacing:0.005376pt;}
.lsf_c02449{letter-spacing:0.012672pt;}
.ls5_c02449{letter-spacing:0.114048pt;}
.lsd_c02449{letter-spacing:0.451968pt;}
.ls17_c02449{letter-spacing:0.456960pt;}
.ls12_c02449{letter-spacing:0.477312pt;}
.lsb_c02449{letter-spacing:0.515328pt;}
.ls16_c02449{letter-spacing:0.528000pt;}
.ls8_c02449{letter-spacing:0.532224pt;}
.ls2_c02449{letter-spacing:0.544896pt;}
.ls6_c02449{letter-spacing:0.637824pt;}
.ls0_c02449{letter-spacing:0.642048pt;}
.ws11_c02449{word-spacing:-13.445376pt;}
.wsf_c02449{word-spacing:-11.088000pt;}
.wsa_c02449{word-spacing:-11.075328pt;}
.ws0_c02449{word-spacing:-10.454400pt;}
.ws3_c02449{word-spacing:-10.344576pt;}
.ws1_c02449{word-spacing:-9.267456pt;}
.ws1f_c02449{word-spacing:-1.919232pt;}
.ws19_c02449{word-spacing:-0.963072pt;}
.ws16_c02449{word-spacing:-0.865920pt;}
.ws1d_c02449{word-spacing:-0.244992pt;}
.ws17_c02449{word-spacing:-0.105600pt;}
.ws20_c02449{word-spacing:-0.092928pt;}
.ws1b_c02449{word-spacing:-0.088704pt;}
.ws18_c02449{word-spacing:-0.080256pt;}
.ws1e_c02449{word-spacing:-0.076032pt;}
.ws1c_c02449{word-spacing:-0.046464pt;}
.ws8_c02449{word-spacing:0.000000pt;}
.ws21_c02449{word-spacing:0.384384pt;}
.ws1a_c02449{word-spacing:0.392832pt;}
.ws22_c02449{word-spacing:0.743424pt;}
.wsc_c02449{word-spacing:5.445504pt;}
.ws15_c02449{word-spacing:5.892480pt;}
.ws13_c02449{word-spacing:7.151232pt;}
.wsd_c02449{word-spacing:8.006784pt;}
.wse_c02449{word-spacing:10.089216pt;}
.ws9_c02449{word-spacing:20.148480pt;}
.ws10_c02449{word-spacing:29.600256pt;}
.wsb_c02449{word-spacing:30.965632pt;}
.ws14_c02449{word-spacing:30.966144pt;}
.ws6_c02449{word-spacing:32.659968pt;}
.ws2_c02449{word-spacing:33.563904pt;}
.ws12_c02449{word-spacing:33.796224pt;}
.ws4_c02449{word-spacing:34.860672pt;}
.ws5_c02449{word-spacing:35.468928pt;}
.ws7_c02449{word-spacing:37.357056pt;}
._0_c02449{margin-left:-1.731840pt;}
._3_c02449{width:0.895488pt;}
._2_c02449{width:1.934592pt;}
._d_c02449{width:5.769984pt;}
._5_c02449{width:12.190464pt;}
._7_c02449{width:15.714432pt;}
._8_c02449{width:17.770368pt;}
._9_c02449{width:19.129856pt;}
._b_c02449{width:20.106112pt;}
._c_c02449{width:22.436224pt;}
._a_c02449{width:23.645440pt;}
._6_c02449{width:32.731776pt;}
._1_c02449{width:44.668800pt;}
._4_c02449{width:46.252800pt;}
.fs1_c02449{font-size:37.120000pt;}
.fs0_c02449{font-size:42.240000pt;}
.fs2_c02449{font-size:53.760000pt;}
.y0_c02449{bottom:0.000000pt;}
.y12_c02449{bottom:0.000400pt;}
.y4_c02449{bottom:16.320400pt;}
.y21_c02449{bottom:117.225499pt;}
.y20_c02449{bottom:130.665211pt;}
.y23_c02449{bottom:165.866875pt;}
.y22_c02449{bottom:174.507067pt;}
.y1f_c02449{bottom:245.225371pt;}
.y1e_c02449{bottom:317.225563pt;}
.y1c_c02449{bottom:361.386427pt;}
.y18_c02449{bottom:377.386939pt;}
.y1d_c02449{bottom:407.786011pt;}
.y1b_c02449{bottom:437.226235pt;}
.y1a_c02449{bottom:453.226747pt;}
.y17_c02449{bottom:482.666971pt;}
.y19_c02449{bottom:497.386555pt;}
.y16_c02449{bottom:513.387067pt;}
.y24_c02449{bottom:546.027067pt;}
.y11_c02449{bottom:563.946667pt;}
.y10_c02449{bottom:574.507483pt;}
.yf_c02449{bottom:585.387355pt;}
.ye_c02449{bottom:593.386363pt;}
.y14_c02449{bottom:628.586875pt;}
.y13_c02449{bottom:637.227067pt;}
.yd_c02449{bottom:707.946523pt;}
.yc_c02449{bottom:779.946715pt;}
.y9_c02449{bottom:823.786555pt;}
.y5_c02449{bottom:839.787067pt;}
.yb_c02449{bottom:855.786523pt;}
.ya_c02449{bottom:870.506107pt;}
.y8_c02449{bottom:899.946331pt;}
.y7_c02449{bottom:915.946843pt;}
.y3_c02449{bottom:929.066667pt;}
.y2_c02449{bottom:945.386939pt;}
.y6_c02449{bottom:959.786683pt;}
.y1_c02449{bottom:975.787067pt;}
.y15_c02449{bottom:1008.747067pt;}
.h3_c02449{height:26.240000pt;}
.h2_c02449{height:28.916250pt;}
.h6_c02449{height:32.570625pt;}
.h1_c02449{height:37.063125pt;}
.h4_c02449{height:37.166250pt;}
.h7_c02449{height:40.640000pt;}
.h5_c02449{height:42.813441pt;}
.h8_c02449{height:48.581988pt;}
.h0_c02449{height:1122.666667pt;}
.w2_c02449{width:191.360000pt;}
.w1_c02449{width:793.333333pt;}
.w0_c02449{width:793.626667pt;}
.x0_c02449{left:0.000000pt;}
.xe_c02449{left:104.000000pt;}
.x9_c02449{left:391.999968pt;}
.x5_c02449{left:396.160608pt;}
.xc_c02449{left:400.960000pt;}
.x8_c02449{left:404.799744pt;}
.x6_c02449{left:410.560224pt;}
.x1_c02449{left:411.840000pt;}
.xb_c02449{left:429.760416pt;}
.xa_c02449{left:437.439648pt;}
.x7_c02449{left:438.400608pt;}
.xd_c02449{left:450.560320pt;}
.x4_c02449{left:455.040000pt;}
.x2_c02449{left:468.159648pt;}
.x3_c02449{left:506.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02450 {
    display:none;
  }
  .loading-indicator_c02450.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02450 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02450 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02450" -> "#page-container .classname_c02450")
 */
.pf_c02450 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02450 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02450 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02450 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02450 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02450 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02450 {overflow:visible;}
  }
}
.c_c02450 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02450 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02450:after { /* webkit #35443 */
  content: '';
}
.t_c02450:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02450 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02450 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02450 { /* info for Javascript */
  display:none;
}
.l_c02450 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02450 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02450 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02450:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02450 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02450.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02450 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02450{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02450;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02450{font-family:ff1_c02450;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02450;src:url('chunks/assets/font_e7670bf11c7160c2d87c1899.woff2')format("woff");}.ff2_c02450{font-family:ff2_c02450;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02450;src:url('chunks/assets/font_246856edde7255bffb98419d.woff2')format("woff");}.ff3_c02450{font-family:ff3_c02450;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02450{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02450{vertical-align:0.000000px;}
.v1_c02450{vertical-align:1.439424px;}
.ls16_c02450{letter-spacing:-0.793584px;}
.ls10_c02450{letter-spacing:-0.708048px;}
.ls15_c02450{letter-spacing:-0.679536px;}
.lsa_c02450{letter-spacing:-0.574992px;}
.ls11_c02450{letter-spacing:-0.275616px;}
.ls17_c02450{letter-spacing:-0.270864px;}
.ls9_c02450{letter-spacing:-0.261360px;}
.ls7_c02450{letter-spacing:-0.242352px;}
.ls5_c02450{letter-spacing:-0.118800px;}
.ls14_c02450{letter-spacing:0.000000px;}
.ls2_c02450{letter-spacing:0.006048px;}
.ls6_c02450{letter-spacing:0.128304px;}
.lsd_c02450{letter-spacing:0.242352px;}
.lsc_c02450{letter-spacing:0.508464px;}
.ls13_c02450{letter-spacing:0.514080px;}
.lsf_c02450{letter-spacing:0.536976px;}
.lsb_c02450{letter-spacing:0.579744px;}
.ls12_c02450{letter-spacing:0.594000px;}
.ls8_c02450{letter-spacing:0.598752px;}
.ls4_c02450{letter-spacing:0.613008px;}
.ls0_c02450{letter-spacing:0.698544px;}
.ls3_c02450{letter-spacing:0.717552px;}
.ls1_c02450{letter-spacing:0.722304px;}
.lse_c02450{letter-spacing:28.412208px;}
.sc__c02450{text-shadow:none;}
.sc0_c02450{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02450{-webkit-text-stroke:0px transparent;}
.sc0_c02450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c02450{word-spacing:-40.292208px;}
.wsf_c02450{word-spacing:-15.126048px;}
.ws8_c02450{word-spacing:-12.602304px;}
.wsd_c02450{word-spacing:-12.474000px;}
.ws7_c02450{word-spacing:-12.459744px;}
.ws12_c02450{word-spacing:-12.416976px;}
.ws11_c02450{word-spacing:-11.637648px;}
.ws10_c02450{word-spacing:-11.200464px;}
.ws1c_c02450{word-spacing:-2.159136px;}
.ws15_c02450{word-spacing:-1.083456px;}
.ws1d_c02450{word-spacing:-1.078704px;}
.ws18_c02450{word-spacing:-1.059696px;}
.ws13_c02450{word-spacing:-0.974160px;}
.ws19_c02450{word-spacing:-0.603504px;}
.ws16_c02450{word-spacing:-0.118800px;}
.ws17_c02450{word-spacing:-0.099792px;}
.ws1f_c02450{word-spacing:-0.090288px;}
.ws1b_c02450{word-spacing:-0.085536px;}
.ws14_c02450{word-spacing:0.000000px;}
.ws1a_c02450{word-spacing:0.346896px;}
.ws1e_c02450{word-spacing:0.432432px;}
.ws2_c02450{word-spacing:8.045136px;}
.wsa_c02450{word-spacing:12.336192px;}
.wsb_c02450{word-spacing:17.629920px;}
.wse_c02450{word-spacing:33.300288px;}
.wsc_c02450{word-spacing:34.836912px;}
.ws5_c02450{word-spacing:36.742464px;}
.ws1_c02450{word-spacing:37.759392px;}
.ws0_c02450{word-spacing:38.020752px;}
.ws3_c02450{word-spacing:39.218256px;}
.ws4_c02450{word-spacing:39.902544px;}
.ws6_c02450{word-spacing:42.026688px;}
._6_c02450{margin-left:-28.654560px;}
._7_c02450{margin-left:-27.219456px;}
._0_c02450{margin-left:-1.948320px;}
._3_c02450{width:1.482624px;}
._8_c02450{width:5.730912px;}
._5_c02450{width:13.685760px;}
._2_c02450{width:14.821488px;}
._1_c02450{width:50.252400px;}
._4_c02450{width:51.530688px;}
.fc0_c02450{color:rgb(0,0,0);}
.fs0_c02450{font-size:47.520000px;}
.fs1_c02450{font-size:60.480000px;}
.y0_c02450{bottom:0.000000px;}
.y1d_c02450{bottom:65.880450px;}
.yb_c02450{bottom:66.240450px;}
.y20_c02450{bottom:147.000054px;}
.y22_c02450{bottom:186.600234px;}
.y21_c02450{bottom:196.320450px;}
.y1f_c02450{bottom:275.880234px;}
.y1c_c02450{bottom:291.000000px;}
.y1b_c02450{bottom:356.878758px;}
.y1e_c02450{bottom:356.880450px;}
.y19_c02450{bottom:406.559730px;}
.y15_c02450{bottom:424.560306px;}
.y1a_c02450{bottom:458.759262px;}
.y18_c02450{bottom:491.879514px;}
.y17_c02450{bottom:509.880090px;}
.y14_c02450{bottom:543.000342px;}
.y16_c02450{bottom:559.559874px;}
.y13_c02450{bottom:577.560450px;}
.y23_c02450{bottom:614.280450px;}
.yf_c02450{bottom:667.561242px;}
.y11_c02450{bottom:707.160234px;}
.y10_c02450{bottom:716.880450px;}
.ye_c02450{bottom:796.441422px;}
.ya_c02450{bottom:811.200000px;}
.yd_c02450{bottom:862.320774px;}
.y9_c02450{bottom:877.438722px;}
.yc_c02450{bottom:877.440450px;}
.y7_c02450{bottom:926.759730px;}
.y3_c02450{bottom:944.760306px;}
.y8_c02450{bottom:979.319226px;}
.y6_c02450{bottom:1012.439478px;}
.y5_c02450{bottom:1030.440054px;}
.y2_c02450{bottom:1063.560306px;}
.y4_c02450{bottom:1079.759874px;}
.y1_c02450{bottom:1097.760450px;}
.y12_c02450{bottom:1134.840450px;}
.h3_c02450{height:32.530781px;}
.h1_c02450{height:41.696016px;}
.h2_c02450{height:41.812031px;}
.h5_c02450{height:54.654737px;}
.h6_c02450{height:78.480000px;}
.h4_c02450{height:78.840000px;}
.h0_c02450{height:1263.000000px;}
.w2_c02450{width:215.280000px;}
.w1_c02450{width:892.500000px;}
.w0_c02450{width:892.830000px;}
.x0_c02450{left:0.000000px;}
.xf_c02450{left:117.000000px;}
.x8_c02450{left:440.999856px;}
.x4_c02450{left:445.680576px;}
.xd_c02450{left:451.080000px;}
.x7_c02450{left:455.399604px;}
.x5_c02450{left:461.880144px;}
.x1_c02450{left:463.320000px;}
.xc_c02450{left:483.481080px;}
.x9_c02450{left:492.119496px;}
.x6_c02450{left:493.200576px;}
.xe_c02450{left:506.880360px;}
.x3_c02450{left:511.919892px;}
.x2_c02450{left:526.679604px;}
.xa_c02450{left:569.520000px;}
.xb_c02450{left:613.080000px;}
.x10_c02450{left:666.720000px;}
@media print{
.v0_c02450{vertical-align:0.000000pt;}
.v1_c02450{vertical-align:1.279488pt;}
.ls16_c02450{letter-spacing:-0.705408pt;}
.ls10_c02450{letter-spacing:-0.629376pt;}
.ls15_c02450{letter-spacing:-0.604032pt;}
.lsa_c02450{letter-spacing:-0.511104pt;}
.ls11_c02450{letter-spacing:-0.244992pt;}
.ls17_c02450{letter-spacing:-0.240768pt;}
.ls9_c02450{letter-spacing:-0.232320pt;}
.ls7_c02450{letter-spacing:-0.215424pt;}
.ls5_c02450{letter-spacing:-0.105600pt;}
.ls14_c02450{letter-spacing:0.000000pt;}
.ls2_c02450{letter-spacing:0.005376pt;}
.ls6_c02450{letter-spacing:0.114048pt;}
.lsd_c02450{letter-spacing:0.215424pt;}
.lsc_c02450{letter-spacing:0.451968pt;}
.ls13_c02450{letter-spacing:0.456960pt;}
.lsf_c02450{letter-spacing:0.477312pt;}
.lsb_c02450{letter-spacing:0.515328pt;}
.ls12_c02450{letter-spacing:0.528000pt;}
.ls8_c02450{letter-spacing:0.532224pt;}
.ls4_c02450{letter-spacing:0.544896pt;}
.ls0_c02450{letter-spacing:0.620928pt;}
.ls3_c02450{letter-spacing:0.637824pt;}
.ls1_c02450{letter-spacing:0.642048pt;}
.lse_c02450{letter-spacing:25.255296pt;}
.ws9_c02450{word-spacing:-35.815296pt;}
.wsf_c02450{word-spacing:-13.445376pt;}
.ws8_c02450{word-spacing:-11.202048pt;}
.wsd_c02450{word-spacing:-11.088000pt;}
.ws7_c02450{word-spacing:-11.075328pt;}
.ws12_c02450{word-spacing:-11.037312pt;}
.ws11_c02450{word-spacing:-10.344576pt;}
.ws10_c02450{word-spacing:-9.955968pt;}
.ws1c_c02450{word-spacing:-1.919232pt;}
.ws15_c02450{word-spacing:-0.963072pt;}
.ws1d_c02450{word-spacing:-0.958848pt;}
.ws18_c02450{word-spacing:-0.941952pt;}
.ws13_c02450{word-spacing:-0.865920pt;}
.ws19_c02450{word-spacing:-0.536448pt;}
.ws16_c02450{word-spacing:-0.105600pt;}
.ws17_c02450{word-spacing:-0.088704pt;}
.ws1f_c02450{word-spacing:-0.080256pt;}
.ws1b_c02450{word-spacing:-0.076032pt;}
.ws14_c02450{word-spacing:0.000000pt;}
.ws1a_c02450{word-spacing:0.308352pt;}
.ws1e_c02450{word-spacing:0.384384pt;}
.ws2_c02450{word-spacing:7.151232pt;}
.wsa_c02450{word-spacing:10.965504pt;}
.wsb_c02450{word-spacing:15.671040pt;}
.wse_c02450{word-spacing:29.600256pt;}
.wsc_c02450{word-spacing:30.966144pt;}
.ws5_c02450{word-spacing:32.659968pt;}
.ws1_c02450{word-spacing:33.563904pt;}
.ws0_c02450{word-spacing:33.796224pt;}
.ws3_c02450{word-spacing:34.860672pt;}
.ws4_c02450{word-spacing:35.468928pt;}
.ws6_c02450{word-spacing:37.357056pt;}
._6_c02450{margin-left:-25.470720pt;}
._7_c02450{margin-left:-24.195072pt;}
._0_c02450{margin-left:-1.731840pt;}
._3_c02450{width:1.317888pt;}
._8_c02450{width:5.094144pt;}
._5_c02450{width:12.165120pt;}
._2_c02450{width:13.174656pt;}
._1_c02450{width:44.668800pt;}
._4_c02450{width:45.805056pt;}
.fs0_c02450{font-size:42.240000pt;}
.fs1_c02450{font-size:53.760000pt;}
.y0_c02450{bottom:0.000000pt;}
.y1d_c02450{bottom:58.560400pt;}
.yb_c02450{bottom:58.880400pt;}
.y20_c02450{bottom:130.666715pt;}
.y22_c02450{bottom:165.866875pt;}
.y21_c02450{bottom:174.507067pt;}
.y1f_c02450{bottom:245.226875pt;}
.y1c_c02450{bottom:258.666667pt;}
.y1b_c02450{bottom:317.225563pt;}
.y1e_c02450{bottom:317.227067pt;}
.y19_c02450{bottom:361.386427pt;}
.y15_c02450{bottom:377.386939pt;}
.y1a_c02450{bottom:407.786011pt;}
.y18_c02450{bottom:437.226235pt;}
.y17_c02450{bottom:453.226747pt;}
.y14_c02450{bottom:482.666971pt;}
.y16_c02450{bottom:497.386555pt;}
.y13_c02450{bottom:513.387067pt;}
.y23_c02450{bottom:546.027067pt;}
.yf_c02450{bottom:593.387771pt;}
.y11_c02450{bottom:628.586875pt;}
.y10_c02450{bottom:637.227067pt;}
.ye_c02450{bottom:707.947931pt;}
.ya_c02450{bottom:721.066667pt;}
.yd_c02450{bottom:766.507355pt;}
.y9_c02450{bottom:779.945531pt;}
.yc_c02450{bottom:779.947067pt;}
.y7_c02450{bottom:823.786427pt;}
.y3_c02450{bottom:839.786939pt;}
.y8_c02450{bottom:870.505979pt;}
.y6_c02450{bottom:899.946203pt;}
.y5_c02450{bottom:915.946715pt;}
.y2_c02450{bottom:945.386939pt;}
.y4_c02450{bottom:959.786555pt;}
.y1_c02450{bottom:975.787067pt;}
.y12_c02450{bottom:1008.747067pt;}
.h3_c02450{height:28.916250pt;}
.h1_c02450{height:37.063125pt;}
.h2_c02450{height:37.166250pt;}
.h5_c02450{height:48.581988pt;}
.h6_c02450{height:69.760000pt;}
.h4_c02450{height:70.080000pt;}
.h0_c02450{height:1122.666667pt;}
.w2_c02450{width:191.360000pt;}
.w1_c02450{width:793.333333pt;}
.w0_c02450{width:793.626667pt;}
.x0_c02450{left:0.000000pt;}
.xf_c02450{left:104.000000pt;}
.x8_c02450{left:391.999872pt;}
.x4_c02450{left:396.160512pt;}
.xd_c02450{left:400.960000pt;}
.x7_c02450{left:404.799648pt;}
.x5_c02450{left:410.560128pt;}
.x1_c02450{left:411.840000pt;}
.xc_c02450{left:429.760960pt;}
.x9_c02450{left:437.439552pt;}
.x6_c02450{left:438.400512pt;}
.xe_c02450{left:450.560320pt;}
.x3_c02450{left:455.039904pt;}
.x2_c02450{left:468.159648pt;}
.xa_c02450{left:506.240000pt;}
.xb_c02450{left:544.960000pt;}
.x10_c02450{left:592.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02451 {
    display:none;
  }
  .loading-indicator_c02451.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02451 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02451 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02451" -> "#page-container .classname_c02451")
 */
.pf_c02451 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02451 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02451 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02451 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02451 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02451 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02451 {overflow:visible;}
  }
}
.c_c02451 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02451 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02451:after { /* webkit #35443 */
  content: '';
}
.t_c02451:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02451 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02451 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02451 { /* info for Javascript */
  display:none;
}
.l_c02451 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02451 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02451 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02451:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02451 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02451.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02451 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02451{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02451;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02451{font-family:ff1_c02451;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02451;src:url('chunks/assets/font_aa7c73f64adc33b160726607.woff2')format("woff");}.ff2_c02451{font-family:ff2_c02451;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02451;src:url('chunks/assets/font_e3ec7e53604f13e6f67ae919.woff2')format("woff");}.ff3_c02451{font-family:ff3_c02451;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02451{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02451{vertical-align:0.000000px;}
.v1_c02451{vertical-align:1.439424px;}
.lsd_c02451{letter-spacing:-0.793584px;}
.lse_c02451{letter-spacing:-0.760320px;}
.ls8_c02451{letter-spacing:-0.679536px;}
.lsa_c02451{letter-spacing:-0.574992px;}
.ls11_c02451{letter-spacing:-0.275616px;}
.ls15_c02451{letter-spacing:-0.270864px;}
.lsf_c02451{letter-spacing:-0.261360px;}
.ls7_c02451{letter-spacing:-0.242352px;}
.ls5_c02451{letter-spacing:-0.237600px;}
.ls4_c02451{letter-spacing:-0.118800px;}
.ls14_c02451{letter-spacing:0.000000px;}
.ls1_c02451{letter-spacing:0.006048px;}
.ls6_c02451{letter-spacing:0.128304px;}
.lsc_c02451{letter-spacing:0.508464px;}
.ls13_c02451{letter-spacing:0.514080px;}
.ls10_c02451{letter-spacing:0.536976px;}
.lsb_c02451{letter-spacing:0.579744px;}
.ls12_c02451{letter-spacing:0.594000px;}
.ls9_c02451{letter-spacing:0.598752px;}
.ls3_c02451{letter-spacing:0.613008px;}
.ls0_c02451{letter-spacing:0.717552px;}
.ls2_c02451{letter-spacing:0.722304px;}
.sc__c02451{text-shadow:none;}
.sc0_c02451{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02451{-webkit-text-stroke:0px transparent;}
.sc0_c02451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02451{word-spacing:-15.126048px;}
.wsb_c02451{word-spacing:-12.474000px;}
.ws7_c02451{word-spacing:-12.459744px;}
.wsa_c02451{word-spacing:-12.416976px;}
.ws0_c02451{word-spacing:-11.761200px;}
.ws1_c02451{word-spacing:-11.642400px;}
.ws5_c02451{word-spacing:-11.637648px;}
.ws3_c02451{word-spacing:-11.200464px;}
.ws18_c02451{word-spacing:-2.159136px;}
.ws16_c02451{word-spacing:-1.083456px;}
.ws12_c02451{word-spacing:-1.078704px;}
.wsf_c02451{word-spacing:-0.974160px;}
.ws11_c02451{word-spacing:-0.118800px;}
.ws15_c02451{word-spacing:-0.099792px;}
.ws19_c02451{word-spacing:-0.090288px;}
.ws17_c02451{word-spacing:-0.085536px;}
.ws10_c02451{word-spacing:0.000000px;}
.ws14_c02451{word-spacing:0.399168px;}
.ws13_c02451{word-spacing:0.432432px;}
.wsc_c02451{word-spacing:33.300288px;}
.ws9_c02451{word-spacing:36.143712px;}
.ws2_c02451{word-spacing:37.759392px;}
.wse_c02451{word-spacing:38.020752px;}
.ws4_c02451{word-spacing:39.218256px;}
.ws6_c02451{word-spacing:39.902544px;}
.ws8_c02451{word-spacing:42.026688px;}
._0_c02451{margin-left:-1.948320px;}
._2_c02451{width:1.226016px;}
._5_c02451{width:2.228688px;}
._4_c02451{width:5.730912px;}
._1_c02451{width:50.252400px;}
._3_c02451{width:51.331104px;}
._6_c02451{width:52.523856px;}
.fc0_c02451{color:rgb(0,0,0);}
.fs0_c02451{font-size:47.520000px;}
.fs1_c02451{font-size:60.480000px;}
.y0_c02451{bottom:0.000000px;}
.y4_c02451{bottom:18.360450px;}
.y1b_c02451{bottom:65.880450px;}
.y1e_c02451{bottom:147.000054px;}
.y20_c02451{bottom:186.600234px;}
.y1f_c02451{bottom:196.320450px;}
.y1d_c02451{bottom:275.880234px;}
.y1a_c02451{bottom:291.000000px;}
.y19_c02451{bottom:356.878758px;}
.y1c_c02451{bottom:356.880450px;}
.y17_c02451{bottom:406.559730px;}
.y13_c02451{bottom:424.560306px;}
.y18_c02451{bottom:458.759262px;}
.y16_c02451{bottom:491.879514px;}
.y15_c02451{bottom:509.880090px;}
.y12_c02451{bottom:543.000342px;}
.y14_c02451{bottom:559.559874px;}
.y11_c02451{bottom:577.560450px;}
.y21_c02451{bottom:614.280450px;}
.yd_c02451{bottom:667.558470px;}
.yf_c02451{bottom:707.160234px;}
.ye_c02451{bottom:716.880450px;}
.yc_c02451{bottom:796.438650px;}
.yb_c02451{bottom:877.438866px;}
.y9_c02451{bottom:926.759874px;}
.y5_c02451{bottom:944.760450px;}
.ya_c02451{bottom:979.319370px;}
.y8_c02451{bottom:1012.439622px;}
.y7_c02451{bottom:1030.440198px;}
.y3_c02451{bottom:1045.200000px;}
.y2_c02451{bottom:1063.560306px;}
.y6_c02451{bottom:1079.760018px;}
.y1_c02451{bottom:1097.760450px;}
.y10_c02451{bottom:1134.840450px;}
.h3_c02451{height:29.520000px;}
.h2_c02451{height:32.530781px;}
.h1_c02451{height:41.696016px;}
.h4_c02451{height:41.812031px;}
.h5_c02451{height:54.654737px;}
.h6_c02451{height:78.480000px;}
.h0_c02451{height:1263.000000px;}
.w2_c02451{width:215.280000px;}
.w1_c02451{width:892.500000px;}
.w0_c02451{width:892.830000px;}
.x0_c02451{left:0.000000px;}
.xe_c02451{left:117.000000px;}
.x9_c02451{left:440.999964px;}
.x5_c02451{left:445.680684px;}
.xc_c02451{left:451.080000px;}
.x8_c02451{left:455.399712px;}
.x6_c02451{left:461.880252px;}
.x1_c02451{left:463.320000px;}
.xb_c02451{left:483.480468px;}
.xa_c02451{left:492.119604px;}
.x7_c02451{left:493.200684px;}
.xd_c02451{left:506.880360px;}
.x4_c02451{left:511.920000px;}
.x2_c02451{left:526.679604px;}
.x3_c02451{left:569.520000px;}
.xf_c02451{left:666.720000px;}
@media print{
.v0_c02451{vertical-align:0.000000pt;}
.v1_c02451{vertical-align:1.279488pt;}
.lsd_c02451{letter-spacing:-0.705408pt;}
.lse_c02451{letter-spacing:-0.675840pt;}
.ls8_c02451{letter-spacing:-0.604032pt;}
.lsa_c02451{letter-spacing:-0.511104pt;}
.ls11_c02451{letter-spacing:-0.244992pt;}
.ls15_c02451{letter-spacing:-0.240768pt;}
.lsf_c02451{letter-spacing:-0.232320pt;}
.ls7_c02451{letter-spacing:-0.215424pt;}
.ls5_c02451{letter-spacing:-0.211200pt;}
.ls4_c02451{letter-spacing:-0.105600pt;}
.ls14_c02451{letter-spacing:0.000000pt;}
.ls1_c02451{letter-spacing:0.005376pt;}
.ls6_c02451{letter-spacing:0.114048pt;}
.lsc_c02451{letter-spacing:0.451968pt;}
.ls13_c02451{letter-spacing:0.456960pt;}
.ls10_c02451{letter-spacing:0.477312pt;}
.lsb_c02451{letter-spacing:0.515328pt;}
.ls12_c02451{letter-spacing:0.528000pt;}
.ls9_c02451{letter-spacing:0.532224pt;}
.ls3_c02451{letter-spacing:0.544896pt;}
.ls0_c02451{letter-spacing:0.637824pt;}
.ls2_c02451{letter-spacing:0.642048pt;}
.wsd_c02451{word-spacing:-13.445376pt;}
.wsb_c02451{word-spacing:-11.088000pt;}
.ws7_c02451{word-spacing:-11.075328pt;}
.wsa_c02451{word-spacing:-11.037312pt;}
.ws0_c02451{word-spacing:-10.454400pt;}
.ws1_c02451{word-spacing:-10.348800pt;}
.ws5_c02451{word-spacing:-10.344576pt;}
.ws3_c02451{word-spacing:-9.955968pt;}
.ws18_c02451{word-spacing:-1.919232pt;}
.ws16_c02451{word-spacing:-0.963072pt;}
.ws12_c02451{word-spacing:-0.958848pt;}
.wsf_c02451{word-spacing:-0.865920pt;}
.ws11_c02451{word-spacing:-0.105600pt;}
.ws15_c02451{word-spacing:-0.088704pt;}
.ws19_c02451{word-spacing:-0.080256pt;}
.ws17_c02451{word-spacing:-0.076032pt;}
.ws10_c02451{word-spacing:0.000000pt;}
.ws14_c02451{word-spacing:0.354816pt;}
.ws13_c02451{word-spacing:0.384384pt;}
.wsc_c02451{word-spacing:29.600256pt;}
.ws9_c02451{word-spacing:32.127744pt;}
.ws2_c02451{word-spacing:33.563904pt;}
.wse_c02451{word-spacing:33.796224pt;}
.ws4_c02451{word-spacing:34.860672pt;}
.ws6_c02451{word-spacing:35.468928pt;}
.ws8_c02451{word-spacing:37.357056pt;}
._0_c02451{margin-left:-1.731840pt;}
._2_c02451{width:1.089792pt;}
._5_c02451{width:1.981056pt;}
._4_c02451{width:5.094144pt;}
._1_c02451{width:44.668800pt;}
._3_c02451{width:45.627648pt;}
._6_c02451{width:46.687872pt;}
.fs0_c02451{font-size:42.240000pt;}
.fs1_c02451{font-size:53.760000pt;}
.y0_c02451{bottom:0.000000pt;}
.y4_c02451{bottom:16.320400pt;}
.y1b_c02451{bottom:58.560400pt;}
.y1e_c02451{bottom:130.666715pt;}
.y20_c02451{bottom:165.866875pt;}
.y1f_c02451{bottom:174.507067pt;}
.y1d_c02451{bottom:245.226875pt;}
.y1a_c02451{bottom:258.666667pt;}
.y19_c02451{bottom:317.225563pt;}
.y1c_c02451{bottom:317.227067pt;}
.y17_c02451{bottom:361.386427pt;}
.y13_c02451{bottom:377.386939pt;}
.y18_c02451{bottom:407.786011pt;}
.y16_c02451{bottom:437.226235pt;}
.y15_c02451{bottom:453.226747pt;}
.y12_c02451{bottom:482.666971pt;}
.y14_c02451{bottom:497.386555pt;}
.y11_c02451{bottom:513.387067pt;}
.y21_c02451{bottom:546.027067pt;}
.yd_c02451{bottom:593.385307pt;}
.yf_c02451{bottom:628.586875pt;}
.ye_c02451{bottom:637.227067pt;}
.yc_c02451{bottom:707.945467pt;}
.yb_c02451{bottom:779.945659pt;}
.y9_c02451{bottom:823.786555pt;}
.y5_c02451{bottom:839.787067pt;}
.ya_c02451{bottom:870.506107pt;}
.y8_c02451{bottom:899.946331pt;}
.y7_c02451{bottom:915.946843pt;}
.y3_c02451{bottom:929.066667pt;}
.y2_c02451{bottom:945.386939pt;}
.y6_c02451{bottom:959.786683pt;}
.y1_c02451{bottom:975.787067pt;}
.y10_c02451{bottom:1008.747067pt;}
.h3_c02451{height:26.240000pt;}
.h2_c02451{height:28.916250pt;}
.h1_c02451{height:37.063125pt;}
.h4_c02451{height:37.166250pt;}
.h5_c02451{height:48.581988pt;}
.h6_c02451{height:69.760000pt;}
.h0_c02451{height:1122.666667pt;}
.w2_c02451{width:191.360000pt;}
.w1_c02451{width:793.333333pt;}
.w0_c02451{width:793.626667pt;}
.x0_c02451{left:0.000000pt;}
.xe_c02451{left:104.000000pt;}
.x9_c02451{left:391.999968pt;}
.x5_c02451{left:396.160608pt;}
.xc_c02451{left:400.960000pt;}
.x8_c02451{left:404.799744pt;}
.x6_c02451{left:410.560224pt;}
.x1_c02451{left:411.840000pt;}
.xb_c02451{left:429.760416pt;}
.xa_c02451{left:437.439648pt;}
.x7_c02451{left:438.400608pt;}
.xd_c02451{left:450.560320pt;}
.x4_c02451{left:455.040000pt;}
.x2_c02451{left:468.159648pt;}
.x3_c02451{left:506.240000pt;}
.xf_c02451{left:592.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02452 {
    display:none;
  }
  .loading-indicator_c02452.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02452 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02452 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02452" -> "#page-container .classname_c02452")
 */
.pf_c02452 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02452 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02452 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02452 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02452 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02452 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02452 {overflow:visible;}
  }
}
.c_c02452 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02452 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02452:after { /* webkit #35443 */
  content: '';
}
.t_c02452:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02452 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02452 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02452 { /* info for Javascript */
  display:none;
}
.l_c02452 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02452 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02452 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02452:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02452 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02452.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02452 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02452{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02452;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02452{font-family:ff1_c02452;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02452;src:url('chunks/assets/font_d9c7f947c74dfd2a1a2852dc.woff2')format("woff");}.ff2_c02452{font-family:ff2_c02452;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02452;src:url('chunks/assets/font_636da7201ae398b263ca913c.woff2')format("woff");}.ff3_c02452{font-family:ff3_c02452;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02452{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02452{vertical-align:0.000000px;}
.v1_c02452{vertical-align:1.439424px;}
.lsc_c02452{letter-spacing:-0.793584px;}
.ls7_c02452{letter-spacing:-0.679536px;}
.ls9_c02452{letter-spacing:-0.574992px;}
.ls10_c02452{letter-spacing:-0.275616px;}
.lsd_c02452{letter-spacing:-0.270864px;}
.lse_c02452{letter-spacing:-0.261360px;}
.ls6_c02452{letter-spacing:-0.242352px;}
.ls4_c02452{letter-spacing:-0.118800px;}
.ls13_c02452{letter-spacing:0.000000px;}
.ls2_c02452{letter-spacing:0.006048px;}
.ls5_c02452{letter-spacing:0.128304px;}
.lsb_c02452{letter-spacing:0.508464px;}
.ls12_c02452{letter-spacing:0.514080px;}
.lsf_c02452{letter-spacing:0.536976px;}
.lsa_c02452{letter-spacing:0.579744px;}
.ls11_c02452{letter-spacing:0.594000px;}
.ls8_c02452{letter-spacing:0.598752px;}
.ls3_c02452{letter-spacing:0.613008px;}
.ls0_c02452{letter-spacing:0.717552px;}
.ls1_c02452{letter-spacing:0.722304px;}
.sc__c02452{text-shadow:none;}
.sc0_c02452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02452{-webkit-text-stroke:0px transparent;}
.sc0_c02452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02452{word-spacing:-15.126048px;}
.ws9_c02452{word-spacing:-12.474000px;}
.ws6_c02452{word-spacing:-12.459744px;}
.ws8_c02452{word-spacing:-12.416976px;}
.ws4_c02452{word-spacing:-11.637648px;}
.ws2_c02452{word-spacing:-11.200464px;}
.ws15_c02452{word-spacing:-2.159136px;}
.ws12_c02452{word-spacing:-1.083456px;}
.wsf_c02452{word-spacing:-1.078704px;}
.wsc_c02452{word-spacing:-0.974160px;}
.wse_c02452{word-spacing:-0.118800px;}
.ws13_c02452{word-spacing:-0.099792px;}
.ws11_c02452{word-spacing:-0.090288px;}
.ws14_c02452{word-spacing:-0.085536px;}
.wsd_c02452{word-spacing:0.000000px;}
.ws10_c02452{word-spacing:0.432432px;}
.wsa_c02452{word-spacing:33.300288px;}
.ws1_c02452{word-spacing:37.759392px;}
.ws0_c02452{word-spacing:38.020752px;}
.ws3_c02452{word-spacing:39.218256px;}
.ws5_c02452{word-spacing:39.902544px;}
.ws7_c02452{word-spacing:42.026688px;}
._0_c02452{margin-left:-1.948320px;}
._2_c02452{width:1.482624px;}
._4_c02452{width:5.730912px;}
._1_c02452{width:50.252400px;}
._3_c02452{width:51.530688px;}
.fc0_c02452{color:rgb(0,0,0);}
.fs0_c02452{font-size:47.520000px;}
.fs1_c02452{font-size:60.480000px;}
.y0_c02452{bottom:0.000000px;}
.y1c_c02452{bottom:65.880450px;}
.yb_c02452{bottom:66.240450px;}
.y1f_c02452{bottom:147.000054px;}
.y21_c02452{bottom:186.600234px;}
.y20_c02452{bottom:196.320450px;}
.y1e_c02452{bottom:275.880234px;}
.y1b_c02452{bottom:291.000000px;}
.y1a_c02452{bottom:356.878758px;}
.y1d_c02452{bottom:356.880450px;}
.y18_c02452{bottom:406.559730px;}
.y14_c02452{bottom:424.560306px;}
.y19_c02452{bottom:458.759262px;}
.y17_c02452{bottom:491.879514px;}
.y16_c02452{bottom:509.880090px;}
.y13_c02452{bottom:543.000342px;}
.y15_c02452{bottom:559.559874px;}
.y12_c02452{bottom:577.560450px;}
.y22_c02452{bottom:614.280450px;}
.ye_c02452{bottom:667.560054px;}
.y10_c02452{bottom:707.160234px;}
.yf_c02452{bottom:716.880450px;}
.yd_c02452{bottom:796.440234px;}
.ya_c02452{bottom:811.200000px;}
.y9_c02452{bottom:877.438722px;}
.yc_c02452{bottom:877.440450px;}
.y7_c02452{bottom:926.759730px;}
.y3_c02452{bottom:944.760306px;}
.y8_c02452{bottom:979.319226px;}
.y6_c02452{bottom:1012.439478px;}
.y5_c02452{bottom:1030.440054px;}
.y2_c02452{bottom:1063.560306px;}
.y4_c02452{bottom:1079.759874px;}
.y1_c02452{bottom:1097.760450px;}
.y11_c02452{bottom:1134.840450px;}
.h3_c02452{height:32.530781px;}
.h1_c02452{height:41.696016px;}
.h2_c02452{height:41.812031px;}
.h5_c02452{height:54.654737px;}
.h6_c02452{height:78.480000px;}
.h4_c02452{height:78.840000px;}
.h0_c02452{height:1263.000000px;}
.w2_c02452{width:215.280000px;}
.w1_c02452{width:892.500000px;}
.w0_c02452{width:892.830000px;}
.x0_c02452{left:0.000000px;}
.xf_c02452{left:117.000000px;}
.x8_c02452{left:440.999856px;}
.x4_c02452{left:445.680576px;}
.xd_c02452{left:451.080000px;}
.x7_c02452{left:455.399604px;}
.x5_c02452{left:461.880144px;}
.x1_c02452{left:463.320000px;}
.xc_c02452{left:483.480504px;}
.x9_c02452{left:492.119496px;}
.x6_c02452{left:493.200576px;}
.xe_c02452{left:506.880360px;}
.x3_c02452{left:511.919892px;}
.x2_c02452{left:526.679604px;}
.xa_c02452{left:569.520000px;}
.xb_c02452{left:666.720000px;}
@media print{
.v0_c02452{vertical-align:0.000000pt;}
.v1_c02452{vertical-align:1.279488pt;}
.lsc_c02452{letter-spacing:-0.705408pt;}
.ls7_c02452{letter-spacing:-0.604032pt;}
.ls9_c02452{letter-spacing:-0.511104pt;}
.ls10_c02452{letter-spacing:-0.244992pt;}
.lsd_c02452{letter-spacing:-0.240768pt;}
.lse_c02452{letter-spacing:-0.232320pt;}
.ls6_c02452{letter-spacing:-0.215424pt;}
.ls4_c02452{letter-spacing:-0.105600pt;}
.ls13_c02452{letter-spacing:0.000000pt;}
.ls2_c02452{letter-spacing:0.005376pt;}
.ls5_c02452{letter-spacing:0.114048pt;}
.lsb_c02452{letter-spacing:0.451968pt;}
.ls12_c02452{letter-spacing:0.456960pt;}
.lsf_c02452{letter-spacing:0.477312pt;}
.lsa_c02452{letter-spacing:0.515328pt;}
.ls11_c02452{letter-spacing:0.528000pt;}
.ls8_c02452{letter-spacing:0.532224pt;}
.ls3_c02452{letter-spacing:0.544896pt;}
.ls0_c02452{letter-spacing:0.637824pt;}
.ls1_c02452{letter-spacing:0.642048pt;}
.wsb_c02452{word-spacing:-13.445376pt;}
.ws9_c02452{word-spacing:-11.088000pt;}
.ws6_c02452{word-spacing:-11.075328pt;}
.ws8_c02452{word-spacing:-11.037312pt;}
.ws4_c02452{word-spacing:-10.344576pt;}
.ws2_c02452{word-spacing:-9.955968pt;}
.ws15_c02452{word-spacing:-1.919232pt;}
.ws12_c02452{word-spacing:-0.963072pt;}
.wsf_c02452{word-spacing:-0.958848pt;}
.wsc_c02452{word-spacing:-0.865920pt;}
.wse_c02452{word-spacing:-0.105600pt;}
.ws13_c02452{word-spacing:-0.088704pt;}
.ws11_c02452{word-spacing:-0.080256pt;}
.ws14_c02452{word-spacing:-0.076032pt;}
.wsd_c02452{word-spacing:0.000000pt;}
.ws10_c02452{word-spacing:0.384384pt;}
.wsa_c02452{word-spacing:29.600256pt;}
.ws1_c02452{word-spacing:33.563904pt;}
.ws0_c02452{word-spacing:33.796224pt;}
.ws3_c02452{word-spacing:34.860672pt;}
.ws5_c02452{word-spacing:35.468928pt;}
.ws7_c02452{word-spacing:37.357056pt;}
._0_c02452{margin-left:-1.731840pt;}
._2_c02452{width:1.317888pt;}
._4_c02452{width:5.094144pt;}
._1_c02452{width:44.668800pt;}
._3_c02452{width:45.805056pt;}
.fs0_c02452{font-size:42.240000pt;}
.fs1_c02452{font-size:53.760000pt;}
.y0_c02452{bottom:0.000000pt;}
.y1c_c02452{bottom:58.560400pt;}
.yb_c02452{bottom:58.880400pt;}
.y1f_c02452{bottom:130.666715pt;}
.y21_c02452{bottom:165.866875pt;}
.y20_c02452{bottom:174.507067pt;}
.y1e_c02452{bottom:245.226875pt;}
.y1b_c02452{bottom:258.666667pt;}
.y1a_c02452{bottom:317.225563pt;}
.y1d_c02452{bottom:317.227067pt;}
.y18_c02452{bottom:361.386427pt;}
.y14_c02452{bottom:377.386939pt;}
.y19_c02452{bottom:407.786011pt;}
.y17_c02452{bottom:437.226235pt;}
.y16_c02452{bottom:453.226747pt;}
.y13_c02452{bottom:482.666971pt;}
.y15_c02452{bottom:497.386555pt;}
.y12_c02452{bottom:513.387067pt;}
.y22_c02452{bottom:546.027067pt;}
.ye_c02452{bottom:593.386715pt;}
.y10_c02452{bottom:628.586875pt;}
.yf_c02452{bottom:637.227067pt;}
.yd_c02452{bottom:707.946875pt;}
.ya_c02452{bottom:721.066667pt;}
.y9_c02452{bottom:779.945531pt;}
.yc_c02452{bottom:779.947067pt;}
.y7_c02452{bottom:823.786427pt;}
.y3_c02452{bottom:839.786939pt;}
.y8_c02452{bottom:870.505979pt;}
.y6_c02452{bottom:899.946203pt;}
.y5_c02452{bottom:915.946715pt;}
.y2_c02452{bottom:945.386939pt;}
.y4_c02452{bottom:959.786555pt;}
.y1_c02452{bottom:975.787067pt;}
.y11_c02452{bottom:1008.747067pt;}
.h3_c02452{height:28.916250pt;}
.h1_c02452{height:37.063125pt;}
.h2_c02452{height:37.166250pt;}
.h5_c02452{height:48.581988pt;}
.h6_c02452{height:69.760000pt;}
.h4_c02452{height:70.080000pt;}
.h0_c02452{height:1122.666667pt;}
.w2_c02452{width:191.360000pt;}
.w1_c02452{width:793.333333pt;}
.w0_c02452{width:793.626667pt;}
.x0_c02452{left:0.000000pt;}
.xf_c02452{left:104.000000pt;}
.x8_c02452{left:391.999872pt;}
.x4_c02452{left:396.160512pt;}
.xd_c02452{left:400.960000pt;}
.x7_c02452{left:404.799648pt;}
.x5_c02452{left:410.560128pt;}
.x1_c02452{left:411.840000pt;}
.xc_c02452{left:429.760448pt;}
.x9_c02452{left:437.439552pt;}
.x6_c02452{left:438.400512pt;}
.xe_c02452{left:450.560320pt;}
.x3_c02452{left:455.039904pt;}
.x2_c02452{left:468.159648pt;}
.xa_c02452{left:506.240000pt;}
.xb_c02452{left:592.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02453 {
    display:none;
  }
  .loading-indicator_c02453.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02453 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02453 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02453" -> "#page-container .classname_c02453")
 */
.pf_c02453 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02453 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02453 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02453 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02453 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02453 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02453 {overflow:visible;}
  }
}
.c_c02453 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02453 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02453:after { /* webkit #35443 */
  content: '';
}
.t_c02453:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02453 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02453 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02453 { /* info for Javascript */
  display:none;
}
.l_c02453 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02453 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02453 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02453:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02453 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02453.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02453 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02453{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02453;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02453{font-family:ff1_c02453;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02453;src:url('chunks/assets/font_a864e343f7270aa9daadaf2d.woff2')format("woff");}.ff2_c02453{font-family:ff2_c02453;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02453;src:url('chunks/assets/font_636da7201ae398b263ca913c.woff2')format("woff");}.ff3_c02453{font-family:ff3_c02453;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02453{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02453{vertical-align:0.000000px;}
.v1_c02453{vertical-align:1.439424px;}
.lsc_c02453{letter-spacing:-0.793584px;}
.ls7_c02453{letter-spacing:-0.679536px;}
.ls9_c02453{letter-spacing:-0.574992px;}
.ls10_c02453{letter-spacing:-0.275616px;}
.lsd_c02453{letter-spacing:-0.270864px;}
.lse_c02453{letter-spacing:-0.261360px;}
.ls6_c02453{letter-spacing:-0.242352px;}
.ls4_c02453{letter-spacing:-0.118800px;}
.ls13_c02453{letter-spacing:0.000000px;}
.ls2_c02453{letter-spacing:0.006048px;}
.ls5_c02453{letter-spacing:0.128304px;}
.lsb_c02453{letter-spacing:0.508464px;}
.ls12_c02453{letter-spacing:0.514080px;}
.lsf_c02453{letter-spacing:0.536976px;}
.lsa_c02453{letter-spacing:0.579744px;}
.ls11_c02453{letter-spacing:0.594000px;}
.ls8_c02453{letter-spacing:0.598752px;}
.ls3_c02453{letter-spacing:0.613008px;}
.ls0_c02453{letter-spacing:0.717552px;}
.ls1_c02453{letter-spacing:0.722304px;}
.sc__c02453{text-shadow:none;}
.sc0_c02453{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02453{-webkit-text-stroke:0px transparent;}
.sc0_c02453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02453{word-spacing:-15.126048px;}
.ws9_c02453{word-spacing:-12.474000px;}
.ws6_c02453{word-spacing:-12.459744px;}
.ws8_c02453{word-spacing:-12.416976px;}
.ws4_c02453{word-spacing:-11.637648px;}
.ws2_c02453{word-spacing:-11.200464px;}
.ws15_c02453{word-spacing:-2.159136px;}
.ws12_c02453{word-spacing:-1.083456px;}
.wsf_c02453{word-spacing:-1.078704px;}
.wsc_c02453{word-spacing:-0.974160px;}
.wse_c02453{word-spacing:-0.118800px;}
.ws13_c02453{word-spacing:-0.099792px;}
.ws11_c02453{word-spacing:-0.090288px;}
.ws14_c02453{word-spacing:-0.085536px;}
.wsd_c02453{word-spacing:0.000000px;}
.ws10_c02453{word-spacing:0.432432px;}
.wsa_c02453{word-spacing:33.300288px;}
.ws1_c02453{word-spacing:37.759392px;}
.ws0_c02453{word-spacing:38.020752px;}
.ws3_c02453{word-spacing:39.218256px;}
.ws5_c02453{word-spacing:39.902544px;}
.ws7_c02453{word-spacing:42.026688px;}
._0_c02453{margin-left:-1.948320px;}
._2_c02453{width:1.482624px;}
._4_c02453{width:5.730912px;}
._1_c02453{width:50.252400px;}
._3_c02453{width:51.530688px;}
.fc0_c02453{color:rgb(0,0,0);}
.fs0_c02453{font-size:47.520000px;}
.fs1_c02453{font-size:60.480000px;}
.y0_c02453{bottom:0.000000px;}
.y1c_c02453{bottom:65.880450px;}
.yb_c02453{bottom:66.240450px;}
.y1f_c02453{bottom:147.000054px;}
.y21_c02453{bottom:186.600234px;}
.y20_c02453{bottom:196.320450px;}
.y1e_c02453{bottom:275.880234px;}
.y1b_c02453{bottom:291.000000px;}
.y1a_c02453{bottom:356.878758px;}
.y1d_c02453{bottom:356.880450px;}
.y18_c02453{bottom:406.559730px;}
.y14_c02453{bottom:424.560306px;}
.y19_c02453{bottom:458.759262px;}
.y17_c02453{bottom:491.879514px;}
.y16_c02453{bottom:509.880090px;}
.y13_c02453{bottom:543.000342px;}
.y15_c02453{bottom:559.559874px;}
.y12_c02453{bottom:577.560450px;}
.y22_c02453{bottom:614.280450px;}
.ye_c02453{bottom:667.560054px;}
.y10_c02453{bottom:707.160234px;}
.yf_c02453{bottom:716.880450px;}
.yd_c02453{bottom:796.440234px;}
.ya_c02453{bottom:811.200000px;}
.y9_c02453{bottom:877.438722px;}
.yc_c02453{bottom:877.440450px;}
.y7_c02453{bottom:926.759730px;}
.y3_c02453{bottom:944.760306px;}
.y8_c02453{bottom:979.319226px;}
.y6_c02453{bottom:1012.439478px;}
.y5_c02453{bottom:1030.440054px;}
.y2_c02453{bottom:1063.560306px;}
.y4_c02453{bottom:1079.759874px;}
.y1_c02453{bottom:1097.760450px;}
.y11_c02453{bottom:1134.840450px;}
.h3_c02453{height:32.530781px;}
.h1_c02453{height:41.696016px;}
.h2_c02453{height:41.812031px;}
.h5_c02453{height:54.654737px;}
.h6_c02453{height:78.480000px;}
.h4_c02453{height:78.840000px;}
.h0_c02453{height:1263.000000px;}
.w2_c02453{width:215.280000px;}
.w1_c02453{width:892.500000px;}
.w0_c02453{width:892.830000px;}
.x0_c02453{left:0.000000px;}
.xf_c02453{left:117.000000px;}
.x8_c02453{left:440.999856px;}
.x4_c02453{left:445.680576px;}
.xd_c02453{left:451.080000px;}
.x7_c02453{left:455.399604px;}
.x5_c02453{left:461.880144px;}
.x1_c02453{left:463.320000px;}
.xc_c02453{left:483.480504px;}
.x9_c02453{left:492.119496px;}
.x6_c02453{left:493.200576px;}
.xe_c02453{left:506.880360px;}
.x3_c02453{left:511.919892px;}
.x2_c02453{left:526.679604px;}
.xa_c02453{left:569.520000px;}
.xb_c02453{left:666.720000px;}
@media print{
.v0_c02453{vertical-align:0.000000pt;}
.v1_c02453{vertical-align:1.279488pt;}
.lsc_c02453{letter-spacing:-0.705408pt;}
.ls7_c02453{letter-spacing:-0.604032pt;}
.ls9_c02453{letter-spacing:-0.511104pt;}
.ls10_c02453{letter-spacing:-0.244992pt;}
.lsd_c02453{letter-spacing:-0.240768pt;}
.lse_c02453{letter-spacing:-0.232320pt;}
.ls6_c02453{letter-spacing:-0.215424pt;}
.ls4_c02453{letter-spacing:-0.105600pt;}
.ls13_c02453{letter-spacing:0.000000pt;}
.ls2_c02453{letter-spacing:0.005376pt;}
.ls5_c02453{letter-spacing:0.114048pt;}
.lsb_c02453{letter-spacing:0.451968pt;}
.ls12_c02453{letter-spacing:0.456960pt;}
.lsf_c02453{letter-spacing:0.477312pt;}
.lsa_c02453{letter-spacing:0.515328pt;}
.ls11_c02453{letter-spacing:0.528000pt;}
.ls8_c02453{letter-spacing:0.532224pt;}
.ls3_c02453{letter-spacing:0.544896pt;}
.ls0_c02453{letter-spacing:0.637824pt;}
.ls1_c02453{letter-spacing:0.642048pt;}
.wsb_c02453{word-spacing:-13.445376pt;}
.ws9_c02453{word-spacing:-11.088000pt;}
.ws6_c02453{word-spacing:-11.075328pt;}
.ws8_c02453{word-spacing:-11.037312pt;}
.ws4_c02453{word-spacing:-10.344576pt;}
.ws2_c02453{word-spacing:-9.955968pt;}
.ws15_c02453{word-spacing:-1.919232pt;}
.ws12_c02453{word-spacing:-0.963072pt;}
.wsf_c02453{word-spacing:-0.958848pt;}
.wsc_c02453{word-spacing:-0.865920pt;}
.wse_c02453{word-spacing:-0.105600pt;}
.ws13_c02453{word-spacing:-0.088704pt;}
.ws11_c02453{word-spacing:-0.080256pt;}
.ws14_c02453{word-spacing:-0.076032pt;}
.wsd_c02453{word-spacing:0.000000pt;}
.ws10_c02453{word-spacing:0.384384pt;}
.wsa_c02453{word-spacing:29.600256pt;}
.ws1_c02453{word-spacing:33.563904pt;}
.ws0_c02453{word-spacing:33.796224pt;}
.ws3_c02453{word-spacing:34.860672pt;}
.ws5_c02453{word-spacing:35.468928pt;}
.ws7_c02453{word-spacing:37.357056pt;}
._0_c02453{margin-left:-1.731840pt;}
._2_c02453{width:1.317888pt;}
._4_c02453{width:5.094144pt;}
._1_c02453{width:44.668800pt;}
._3_c02453{width:45.805056pt;}
.fs0_c02453{font-size:42.240000pt;}
.fs1_c02453{font-size:53.760000pt;}
.y0_c02453{bottom:0.000000pt;}
.y1c_c02453{bottom:58.560400pt;}
.yb_c02453{bottom:58.880400pt;}
.y1f_c02453{bottom:130.666715pt;}
.y21_c02453{bottom:165.866875pt;}
.y20_c02453{bottom:174.507067pt;}
.y1e_c02453{bottom:245.226875pt;}
.y1b_c02453{bottom:258.666667pt;}
.y1a_c02453{bottom:317.225563pt;}
.y1d_c02453{bottom:317.227067pt;}
.y18_c02453{bottom:361.386427pt;}
.y14_c02453{bottom:377.386939pt;}
.y19_c02453{bottom:407.786011pt;}
.y17_c02453{bottom:437.226235pt;}
.y16_c02453{bottom:453.226747pt;}
.y13_c02453{bottom:482.666971pt;}
.y15_c02453{bottom:497.386555pt;}
.y12_c02453{bottom:513.387067pt;}
.y22_c02453{bottom:546.027067pt;}
.ye_c02453{bottom:593.386715pt;}
.y10_c02453{bottom:628.586875pt;}
.yf_c02453{bottom:637.227067pt;}
.yd_c02453{bottom:707.946875pt;}
.ya_c02453{bottom:721.066667pt;}
.y9_c02453{bottom:779.945531pt;}
.yc_c02453{bottom:779.947067pt;}
.y7_c02453{bottom:823.786427pt;}
.y3_c02453{bottom:839.786939pt;}
.y8_c02453{bottom:870.505979pt;}
.y6_c02453{bottom:899.946203pt;}
.y5_c02453{bottom:915.946715pt;}
.y2_c02453{bottom:945.386939pt;}
.y4_c02453{bottom:959.786555pt;}
.y1_c02453{bottom:975.787067pt;}
.y11_c02453{bottom:1008.747067pt;}
.h3_c02453{height:28.916250pt;}
.h1_c02453{height:37.063125pt;}
.h2_c02453{height:37.166250pt;}
.h5_c02453{height:48.581988pt;}
.h6_c02453{height:69.760000pt;}
.h4_c02453{height:70.080000pt;}
.h0_c02453{height:1122.666667pt;}
.w2_c02453{width:191.360000pt;}
.w1_c02453{width:793.333333pt;}
.w0_c02453{width:793.626667pt;}
.x0_c02453{left:0.000000pt;}
.xf_c02453{left:104.000000pt;}
.x8_c02453{left:391.999872pt;}
.x4_c02453{left:396.160512pt;}
.xd_c02453{left:400.960000pt;}
.x7_c02453{left:404.799648pt;}
.x5_c02453{left:410.560128pt;}
.x1_c02453{left:411.840000pt;}
.xc_c02453{left:429.760448pt;}
.x9_c02453{left:437.439552pt;}
.x6_c02453{left:438.400512pt;}
.xe_c02453{left:450.560320pt;}
.x3_c02453{left:455.039904pt;}
.x2_c02453{left:468.159648pt;}
.xa_c02453{left:506.240000pt;}
.xb_c02453{left:592.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02454 {
    display:none;
  }
  .loading-indicator_c02454.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02454 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02454 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02454" -> "#page-container .classname_c02454")
 */
.pf_c02454 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02454 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02454 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02454 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02454 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02454 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02454 {overflow:visible;}
  }
}
.c_c02454 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02454 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02454:after { /* webkit #35443 */
  content: '';
}
.t_c02454:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02454 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02454 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02454 { /* info for Javascript */
  display:none;
}
.l_c02454 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02454 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02454 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02454:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02454 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02454.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02454 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02454{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02454;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02454{font-family:ff1_c02454;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02454;src:url('chunks/assets/font_7ddec9f5c86fd6e865e8846d.woff2')format("woff");}.ff2_c02454{font-family:ff2_c02454;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02454;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02454{font-family:ff3_c02454;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02454{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02454{vertical-align:0.000000px;}
.v1_c02454{vertical-align:1.439424px;}
.ls16_c02454{letter-spacing:-1.197504px;}
.ls10_c02454{letter-spacing:-0.803088px;}
.lsd_c02454{letter-spacing:-0.793584px;}
.ls15_c02454{letter-spacing:-0.679536px;}
.lsa_c02454{letter-spacing:-0.574992px;}
.ls17_c02454{letter-spacing:-0.323136px;}
.ls11_c02454{letter-spacing:-0.275616px;}
.lse_c02454{letter-spacing:-0.261360px;}
.ls7_c02454{letter-spacing:-0.242352px;}
.ls5_c02454{letter-spacing:-0.118800px;}
.ls14_c02454{letter-spacing:0.000000px;}
.ls2_c02454{letter-spacing:0.006048px;}
.ls6_c02454{letter-spacing:0.128304px;}
.ls8_c02454{letter-spacing:0.185328px;}
.lsc_c02454{letter-spacing:0.508464px;}
.ls13_c02454{letter-spacing:0.514080px;}
.lsf_c02454{letter-spacing:0.536976px;}
.lsb_c02454{letter-spacing:0.579744px;}
.ls12_c02454{letter-spacing:0.594000px;}
.ls9_c02454{letter-spacing:0.598752px;}
.ls3_c02454{letter-spacing:0.613008px;}
.ls0_c02454{letter-spacing:0.651024px;}
.ls1_c02454{letter-spacing:0.717552px;}
.ls4_c02454{letter-spacing:0.722304px;}
.sc__c02454{text-shadow:none;}
.sc0_c02454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02454{-webkit-text-stroke:0px transparent;}
.sc0_c02454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02454{word-spacing:-15.126048px;}
.ws9_c02454{word-spacing:-12.474000px;}
.ws5_c02454{word-spacing:-12.459744px;}
.ws10_c02454{word-spacing:-12.416976px;}
.wsd_c02454{word-spacing:-11.637648px;}
.wsc_c02454{word-spacing:-11.200464px;}
.ws1b_c02454{word-spacing:-2.159136px;}
.ws19_c02454{word-spacing:-1.083456px;}
.ws16_c02454{word-spacing:-1.078704px;}
.ws13_c02454{word-spacing:-1.012176px;}
.ws11_c02454{word-spacing:-0.974160px;}
.ws15_c02454{word-spacing:-0.546480px;}
.ws14_c02454{word-spacing:-0.118800px;}
.ws18_c02454{word-spacing:-0.099792px;}
.ws1a_c02454{word-spacing:-0.085536px;}
.ws1d_c02454{word-spacing:-0.038016px;}
.ws12_c02454{word-spacing:0.000000px;}
.ws17_c02454{word-spacing:0.432432px;}
.ws1c_c02454{word-spacing:0.836352px;}
.ws3_c02454{word-spacing:6.605280px;}
.ws8_c02454{word-spacing:30.555360px;}
.wsa_c02454{word-spacing:33.300288px;}
.ws7_c02454{word-spacing:34.836912px;}
.wsf_c02454{word-spacing:36.143712px;}
.wse_c02454{word-spacing:36.742464px;}
.ws1_c02454{word-spacing:37.759392px;}
.ws0_c02454{word-spacing:38.020752px;}
.ws2_c02454{word-spacing:39.218256px;}
.ws4_c02454{word-spacing:39.902544px;}
.ws6_c02454{word-spacing:42.026688px;}
._0_c02454{margin-left:-1.948320px;}
._2_c02454{width:1.482624px;}
._7_c02454{width:2.770416px;}
._6_c02454{width:5.730912px;}
._5_c02454{width:40.192416px;}
._4_c02454{width:45.757008px;}
._1_c02454{width:50.252400px;}
._3_c02454{width:51.530688px;}
.fc0_c02454{color:rgb(0,0,0);}
.fs0_c02454{font-size:47.520000px;}
.fs1_c02454{font-size:60.480000px;}
.y0_c02454{bottom:0.000000px;}
.y1a_c02454{bottom:146.998362px;}
.y1c_c02454{bottom:186.600234px;}
.y1b_c02454{bottom:196.320450px;}
.y19_c02454{bottom:275.878542px;}
.y18_c02454{bottom:356.878758px;}
.y16_c02454{bottom:406.559730px;}
.y12_c02454{bottom:424.560306px;}
.y17_c02454{bottom:458.759262px;}
.y15_c02454{bottom:491.879514px;}
.y14_c02454{bottom:509.880090px;}
.y11_c02454{bottom:543.000342px;}
.y13_c02454{bottom:559.559874px;}
.y10_c02454{bottom:577.560450px;}
.y1d_c02454{bottom:614.280450px;}
.yc_c02454{bottom:652.438650px;}
.yb_c02454{bottom:667.558326px;}
.ye_c02454{bottom:707.160234px;}
.yd_c02454{bottom:716.880450px;}
.ya_c02454{bottom:796.438506px;}
.y9_c02454{bottom:877.438722px;}
.y7_c02454{bottom:926.759730px;}
.y3_c02454{bottom:944.760306px;}
.y8_c02454{bottom:979.319226px;}
.y6_c02454{bottom:1012.439478px;}
.y5_c02454{bottom:1030.440054px;}
.y2_c02454{bottom:1063.560306px;}
.y4_c02454{bottom:1079.759874px;}
.y1_c02454{bottom:1097.760450px;}
.yf_c02454{bottom:1134.840450px;}
.h3_c02454{height:32.530781px;}
.h1_c02454{height:41.696016px;}
.h2_c02454{height:41.812031px;}
.h4_c02454{height:54.654737px;}
.h0_c02454{height:1263.000000px;}
.w1_c02454{width:892.500000px;}
.w0_c02454{width:892.830000px;}
.x0_c02454{left:0.000000px;}
.xe_c02454{left:117.000000px;}
.x8_c02454{left:440.999856px;}
.x4_c02454{left:445.680576px;}
.xc_c02454{left:451.080000px;}
.x7_c02454{left:455.399604px;}
.x5_c02454{left:461.880144px;}
.x1_c02454{left:463.320000px;}
.xa_c02454{left:483.480360px;}
.x9_c02454{left:492.119496px;}
.x6_c02454{left:493.200576px;}
.xd_c02454{left:506.880360px;}
.x3_c02454{left:511.919892px;}
.x2_c02454{left:526.679604px;}
.xb_c02454{left:569.880036px;}
@media print{
.v0_c02454{vertical-align:0.000000pt;}
.v1_c02454{vertical-align:1.279488pt;}
.ls16_c02454{letter-spacing:-1.064448pt;}
.ls10_c02454{letter-spacing:-0.713856pt;}
.lsd_c02454{letter-spacing:-0.705408pt;}
.ls15_c02454{letter-spacing:-0.604032pt;}
.lsa_c02454{letter-spacing:-0.511104pt;}
.ls17_c02454{letter-spacing:-0.287232pt;}
.ls11_c02454{letter-spacing:-0.244992pt;}
.lse_c02454{letter-spacing:-0.232320pt;}
.ls7_c02454{letter-spacing:-0.215424pt;}
.ls5_c02454{letter-spacing:-0.105600pt;}
.ls14_c02454{letter-spacing:0.000000pt;}
.ls2_c02454{letter-spacing:0.005376pt;}
.ls6_c02454{letter-spacing:0.114048pt;}
.ls8_c02454{letter-spacing:0.164736pt;}
.lsc_c02454{letter-spacing:0.451968pt;}
.ls13_c02454{letter-spacing:0.456960pt;}
.lsf_c02454{letter-spacing:0.477312pt;}
.lsb_c02454{letter-spacing:0.515328pt;}
.ls12_c02454{letter-spacing:0.528000pt;}
.ls9_c02454{letter-spacing:0.532224pt;}
.ls3_c02454{letter-spacing:0.544896pt;}
.ls0_c02454{letter-spacing:0.578688pt;}
.ls1_c02454{letter-spacing:0.637824pt;}
.ls4_c02454{letter-spacing:0.642048pt;}
.wsb_c02454{word-spacing:-13.445376pt;}
.ws9_c02454{word-spacing:-11.088000pt;}
.ws5_c02454{word-spacing:-11.075328pt;}
.ws10_c02454{word-spacing:-11.037312pt;}
.wsd_c02454{word-spacing:-10.344576pt;}
.wsc_c02454{word-spacing:-9.955968pt;}
.ws1b_c02454{word-spacing:-1.919232pt;}
.ws19_c02454{word-spacing:-0.963072pt;}
.ws16_c02454{word-spacing:-0.958848pt;}
.ws13_c02454{word-spacing:-0.899712pt;}
.ws11_c02454{word-spacing:-0.865920pt;}
.ws15_c02454{word-spacing:-0.485760pt;}
.ws14_c02454{word-spacing:-0.105600pt;}
.ws18_c02454{word-spacing:-0.088704pt;}
.ws1a_c02454{word-spacing:-0.076032pt;}
.ws1d_c02454{word-spacing:-0.033792pt;}
.ws12_c02454{word-spacing:0.000000pt;}
.ws17_c02454{word-spacing:0.384384pt;}
.ws1c_c02454{word-spacing:0.743424pt;}
.ws3_c02454{word-spacing:5.871360pt;}
.ws8_c02454{word-spacing:27.160320pt;}
.wsa_c02454{word-spacing:29.600256pt;}
.ws7_c02454{word-spacing:30.966144pt;}
.wsf_c02454{word-spacing:32.127744pt;}
.wse_c02454{word-spacing:32.659968pt;}
.ws1_c02454{word-spacing:33.563904pt;}
.ws0_c02454{word-spacing:33.796224pt;}
.ws2_c02454{word-spacing:34.860672pt;}
.ws4_c02454{word-spacing:35.468928pt;}
.ws6_c02454{word-spacing:37.357056pt;}
._0_c02454{margin-left:-1.731840pt;}
._2_c02454{width:1.317888pt;}
._7_c02454{width:2.462592pt;}
._6_c02454{width:5.094144pt;}
._5_c02454{width:35.726592pt;}
._4_c02454{width:40.672896pt;}
._1_c02454{width:44.668800pt;}
._3_c02454{width:45.805056pt;}
.fs0_c02454{font-size:42.240000pt;}
.fs1_c02454{font-size:53.760000pt;}
.y0_c02454{bottom:0.000000pt;}
.y1a_c02454{bottom:130.665211pt;}
.y1c_c02454{bottom:165.866875pt;}
.y1b_c02454{bottom:174.507067pt;}
.y19_c02454{bottom:245.225371pt;}
.y18_c02454{bottom:317.225563pt;}
.y16_c02454{bottom:361.386427pt;}
.y12_c02454{bottom:377.386939pt;}
.y17_c02454{bottom:407.786011pt;}
.y15_c02454{bottom:437.226235pt;}
.y14_c02454{bottom:453.226747pt;}
.y11_c02454{bottom:482.666971pt;}
.y13_c02454{bottom:497.386555pt;}
.y10_c02454{bottom:513.387067pt;}
.y1d_c02454{bottom:546.027067pt;}
.yc_c02454{bottom:579.945467pt;}
.yb_c02454{bottom:593.385179pt;}
.ye_c02454{bottom:628.586875pt;}
.yd_c02454{bottom:637.227067pt;}
.ya_c02454{bottom:707.945339pt;}
.y9_c02454{bottom:779.945531pt;}
.y7_c02454{bottom:823.786427pt;}
.y3_c02454{bottom:839.786939pt;}
.y8_c02454{bottom:870.505979pt;}
.y6_c02454{bottom:899.946203pt;}
.y5_c02454{bottom:915.946715pt;}
.y2_c02454{bottom:945.386939pt;}
.y4_c02454{bottom:959.786555pt;}
.y1_c02454{bottom:975.787067pt;}
.yf_c02454{bottom:1008.747067pt;}
.h3_c02454{height:28.916250pt;}
.h1_c02454{height:37.063125pt;}
.h2_c02454{height:37.166250pt;}
.h4_c02454{height:48.581988pt;}
.h0_c02454{height:1122.666667pt;}
.w1_c02454{width:793.333333pt;}
.w0_c02454{width:793.626667pt;}
.x0_c02454{left:0.000000pt;}
.xe_c02454{left:104.000000pt;}
.x8_c02454{left:391.999872pt;}
.x4_c02454{left:396.160512pt;}
.xc_c02454{left:400.960000pt;}
.x7_c02454{left:404.799648pt;}
.x5_c02454{left:410.560128pt;}
.x1_c02454{left:411.840000pt;}
.xa_c02454{left:429.760320pt;}
.x9_c02454{left:437.439552pt;}
.x6_c02454{left:438.400512pt;}
.xd_c02454{left:450.560320pt;}
.x3_c02454{left:455.039904pt;}
.x2_c02454{left:468.159648pt;}
.xb_c02454{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02455 {
    display:none;
  }
  .loading-indicator_c02455.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02455 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02455 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02455" -> "#page-container .classname_c02455")
 */
.pf_c02455 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02455 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02455 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02455 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02455 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02455 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02455 {overflow:visible;}
  }
}
.c_c02455 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02455 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02455:after { /* webkit #35443 */
  content: '';
}
.t_c02455:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02455 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02455 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02455 { /* info for Javascript */
  display:none;
}
.l_c02455 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02455 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02455 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02455:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02455 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02455.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02455 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02455{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02455;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02455{font-family:ff1_c02455;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02455;src:url('chunks/assets/font_33d74f71d4af23137c34d003.woff2')format("woff");}.ff2_c02455{font-family:ff2_c02455;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02455;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02455{font-family:ff3_c02455;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02455{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02455{vertical-align:0.000000px;}
.v1_c02455{vertical-align:1.439424px;}
.lsc_c02455{letter-spacing:-1.197504px;}
.ls7_c02455{letter-spacing:-0.679536px;}
.ls9_c02455{letter-spacing:-0.574992px;}
.lsd_c02455{letter-spacing:-0.323136px;}
.ls10_c02455{letter-spacing:-0.275616px;}
.lse_c02455{letter-spacing:-0.261360px;}
.ls6_c02455{letter-spacing:-0.242352px;}
.ls4_c02455{letter-spacing:-0.118800px;}
.ls13_c02455{letter-spacing:0.000000px;}
.ls1_c02455{letter-spacing:0.006048px;}
.ls5_c02455{letter-spacing:0.128304px;}
.lsb_c02455{letter-spacing:0.508464px;}
.ls12_c02455{letter-spacing:0.514080px;}
.lsf_c02455{letter-spacing:0.536976px;}
.lsa_c02455{letter-spacing:0.579744px;}
.ls11_c02455{letter-spacing:0.594000px;}
.ls8_c02455{letter-spacing:0.598752px;}
.ls2_c02455{letter-spacing:0.613008px;}
.ls0_c02455{letter-spacing:0.717552px;}
.ls3_c02455{letter-spacing:0.722304px;}
.sc__c02455{text-shadow:none;}
.sc0_c02455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02455{-webkit-text-stroke:0px transparent;}
.sc0_c02455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02455{word-spacing:-15.126048px;}
.wsa_c02455{word-spacing:-12.474000px;}
.ws9_c02455{word-spacing:-12.416976px;}
.ws4_c02455{word-spacing:-11.637648px;}
.ws2_c02455{word-spacing:-11.200464px;}
.ws15_c02455{word-spacing:-2.159136px;}
.ws10_c02455{word-spacing:-1.078704px;}
.wsd_c02455{word-spacing:-0.974160px;}
.wsf_c02455{word-spacing:-0.118800px;}
.ws13_c02455{word-spacing:-0.099792px;}
.ws14_c02455{word-spacing:-0.085536px;}
.ws12_c02455{word-spacing:-0.038016px;}
.wse_c02455{word-spacing:0.000000px;}
.ws11_c02455{word-spacing:0.836352px;}
.wsb_c02455{word-spacing:33.300288px;}
.ws8_c02455{word-spacing:36.143712px;}
.ws6_c02455{word-spacing:36.742464px;}
.ws1_c02455{word-spacing:37.759392px;}
.ws0_c02455{word-spacing:38.020752px;}
.ws3_c02455{word-spacing:39.218256px;}
.ws5_c02455{word-spacing:39.902544px;}
.ws7_c02455{word-spacing:42.026688px;}
._0_c02455{margin-left:-1.948320px;}
._2_c02455{width:1.482624px;}
._5_c02455{width:2.770416px;}
._4_c02455{width:5.730912px;}
._1_c02455{width:50.252400px;}
._3_c02455{width:51.530688px;}
.fc0_c02455{color:rgb(0,0,0);}
.fs0_c02455{font-size:47.520000px;}
.fs1_c02455{font-size:60.480000px;}
.y0_c02455{bottom:0.000000px;}
.y19_c02455{bottom:146.998362px;}
.y1b_c02455{bottom:186.600234px;}
.y1a_c02455{bottom:196.320450px;}
.y18_c02455{bottom:275.878542px;}
.y17_c02455{bottom:356.878758px;}
.y15_c02455{bottom:406.559730px;}
.y11_c02455{bottom:424.560306px;}
.y16_c02455{bottom:458.759262px;}
.y14_c02455{bottom:491.879514px;}
.y13_c02455{bottom:509.880090px;}
.y10_c02455{bottom:543.000342px;}
.y12_c02455{bottom:559.559874px;}
.yf_c02455{bottom:577.560450px;}
.y1c_c02455{bottom:614.280450px;}
.yb_c02455{bottom:667.558326px;}
.yd_c02455{bottom:707.160234px;}
.yc_c02455{bottom:716.880450px;}
.ya_c02455{bottom:796.438506px;}
.y9_c02455{bottom:877.438722px;}
.y7_c02455{bottom:926.759730px;}
.y3_c02455{bottom:944.760306px;}
.y8_c02455{bottom:979.319226px;}
.y6_c02455{bottom:1012.439478px;}
.y5_c02455{bottom:1030.440054px;}
.y2_c02455{bottom:1063.560306px;}
.y4_c02455{bottom:1079.759874px;}
.y1_c02455{bottom:1097.760450px;}
.ye_c02455{bottom:1134.840450px;}
.h3_c02455{height:32.530781px;}
.h1_c02455{height:41.696016px;}
.h2_c02455{height:41.812031px;}
.h4_c02455{height:54.654737px;}
.h0_c02455{height:1263.000000px;}
.w1_c02455{width:892.500000px;}
.w0_c02455{width:892.830000px;}
.x0_c02455{left:0.000000px;}
.xd_c02455{left:117.000000px;}
.x8_c02455{left:440.999856px;}
.x4_c02455{left:445.680576px;}
.xb_c02455{left:451.080000px;}
.x7_c02455{left:455.399604px;}
.x5_c02455{left:461.880144px;}
.x1_c02455{left:463.320000px;}
.xa_c02455{left:483.480360px;}
.x9_c02455{left:492.119496px;}
.x6_c02455{left:493.200576px;}
.xc_c02455{left:506.880360px;}
.x3_c02455{left:511.919892px;}
.x2_c02455{left:526.679604px;}
@media print{
.v0_c02455{vertical-align:0.000000pt;}
.v1_c02455{vertical-align:1.279488pt;}
.lsc_c02455{letter-spacing:-1.064448pt;}
.ls7_c02455{letter-spacing:-0.604032pt;}
.ls9_c02455{letter-spacing:-0.511104pt;}
.lsd_c02455{letter-spacing:-0.287232pt;}
.ls10_c02455{letter-spacing:-0.244992pt;}
.lse_c02455{letter-spacing:-0.232320pt;}
.ls6_c02455{letter-spacing:-0.215424pt;}
.ls4_c02455{letter-spacing:-0.105600pt;}
.ls13_c02455{letter-spacing:0.000000pt;}
.ls1_c02455{letter-spacing:0.005376pt;}
.ls5_c02455{letter-spacing:0.114048pt;}
.lsb_c02455{letter-spacing:0.451968pt;}
.ls12_c02455{letter-spacing:0.456960pt;}
.lsf_c02455{letter-spacing:0.477312pt;}
.lsa_c02455{letter-spacing:0.515328pt;}
.ls11_c02455{letter-spacing:0.528000pt;}
.ls8_c02455{letter-spacing:0.532224pt;}
.ls2_c02455{letter-spacing:0.544896pt;}
.ls0_c02455{letter-spacing:0.637824pt;}
.ls3_c02455{letter-spacing:0.642048pt;}
.wsc_c02455{word-spacing:-13.445376pt;}
.wsa_c02455{word-spacing:-11.088000pt;}
.ws9_c02455{word-spacing:-11.037312pt;}
.ws4_c02455{word-spacing:-10.344576pt;}
.ws2_c02455{word-spacing:-9.955968pt;}
.ws15_c02455{word-spacing:-1.919232pt;}
.ws10_c02455{word-spacing:-0.958848pt;}
.wsd_c02455{word-spacing:-0.865920pt;}
.wsf_c02455{word-spacing:-0.105600pt;}
.ws13_c02455{word-spacing:-0.088704pt;}
.ws14_c02455{word-spacing:-0.076032pt;}
.ws12_c02455{word-spacing:-0.033792pt;}
.wse_c02455{word-spacing:0.000000pt;}
.ws11_c02455{word-spacing:0.743424pt;}
.wsb_c02455{word-spacing:29.600256pt;}
.ws8_c02455{word-spacing:32.127744pt;}
.ws6_c02455{word-spacing:32.659968pt;}
.ws1_c02455{word-spacing:33.563904pt;}
.ws0_c02455{word-spacing:33.796224pt;}
.ws3_c02455{word-spacing:34.860672pt;}
.ws5_c02455{word-spacing:35.468928pt;}
.ws7_c02455{word-spacing:37.357056pt;}
._0_c02455{margin-left:-1.731840pt;}
._2_c02455{width:1.317888pt;}
._5_c02455{width:2.462592pt;}
._4_c02455{width:5.094144pt;}
._1_c02455{width:44.668800pt;}
._3_c02455{width:45.805056pt;}
.fs0_c02455{font-size:42.240000pt;}
.fs1_c02455{font-size:53.760000pt;}
.y0_c02455{bottom:0.000000pt;}
.y19_c02455{bottom:130.665211pt;}
.y1b_c02455{bottom:165.866875pt;}
.y1a_c02455{bottom:174.507067pt;}
.y18_c02455{bottom:245.225371pt;}
.y17_c02455{bottom:317.225563pt;}
.y15_c02455{bottom:361.386427pt;}
.y11_c02455{bottom:377.386939pt;}
.y16_c02455{bottom:407.786011pt;}
.y14_c02455{bottom:437.226235pt;}
.y13_c02455{bottom:453.226747pt;}
.y10_c02455{bottom:482.666971pt;}
.y12_c02455{bottom:497.386555pt;}
.yf_c02455{bottom:513.387067pt;}
.y1c_c02455{bottom:546.027067pt;}
.yb_c02455{bottom:593.385179pt;}
.yd_c02455{bottom:628.586875pt;}
.yc_c02455{bottom:637.227067pt;}
.ya_c02455{bottom:707.945339pt;}
.y9_c02455{bottom:779.945531pt;}
.y7_c02455{bottom:823.786427pt;}
.y3_c02455{bottom:839.786939pt;}
.y8_c02455{bottom:870.505979pt;}
.y6_c02455{bottom:899.946203pt;}
.y5_c02455{bottom:915.946715pt;}
.y2_c02455{bottom:945.386939pt;}
.y4_c02455{bottom:959.786555pt;}
.y1_c02455{bottom:975.787067pt;}
.ye_c02455{bottom:1008.747067pt;}
.h3_c02455{height:28.916250pt;}
.h1_c02455{height:37.063125pt;}
.h2_c02455{height:37.166250pt;}
.h4_c02455{height:48.581988pt;}
.h0_c02455{height:1122.666667pt;}
.w1_c02455{width:793.333333pt;}
.w0_c02455{width:793.626667pt;}
.x0_c02455{left:0.000000pt;}
.xd_c02455{left:104.000000pt;}
.x8_c02455{left:391.999872pt;}
.x4_c02455{left:396.160512pt;}
.xb_c02455{left:400.960000pt;}
.x7_c02455{left:404.799648pt;}
.x5_c02455{left:410.560128pt;}
.x1_c02455{left:411.840000pt;}
.xa_c02455{left:429.760320pt;}
.x9_c02455{left:437.439552pt;}
.x6_c02455{left:438.400512pt;}
.xc_c02455{left:450.560320pt;}
.x3_c02455{left:455.039904pt;}
.x2_c02455{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02456 {
    display:none;
  }
  .loading-indicator_c02456.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02456 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02456 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02456" -> "#page-container .classname_c02456")
 */
.pf_c02456 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02456 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02456 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02456 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02456 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02456 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02456 {overflow:visible;}
  }
}
.c_c02456 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02456 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02456:after { /* webkit #35443 */
  content: '';
}
.t_c02456:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02456 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02456 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02456 { /* info for Javascript */
  display:none;
}
.l_c02456 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02456 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02456 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02456:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02456 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02456.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02456 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02456{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02456;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02456{font-family:ff1_c02456;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02456;src:url('chunks/assets/font_33d74f71d4af23137c34d003.woff2')format("woff");}.ff2_c02456{font-family:ff2_c02456;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02456;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02456{font-family:ff3_c02456;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02456{vertical-align:0.000000px;}
.v1_c02456{vertical-align:1.439424px;}
.lsc_c02456{letter-spacing:-1.197504px;}
.ls7_c02456{letter-spacing:-0.679536px;}
.ls9_c02456{letter-spacing:-0.574992px;}
.lsd_c02456{letter-spacing:-0.323136px;}
.ls10_c02456{letter-spacing:-0.275616px;}
.lse_c02456{letter-spacing:-0.261360px;}
.ls6_c02456{letter-spacing:-0.242352px;}
.ls4_c02456{letter-spacing:-0.118800px;}
.ls13_c02456{letter-spacing:0.000000px;}
.ls1_c02456{letter-spacing:0.006048px;}
.ls5_c02456{letter-spacing:0.128304px;}
.lsb_c02456{letter-spacing:0.508464px;}
.ls12_c02456{letter-spacing:0.514080px;}
.lsf_c02456{letter-spacing:0.536976px;}
.lsa_c02456{letter-spacing:0.579744px;}
.ls11_c02456{letter-spacing:0.594000px;}
.ls8_c02456{letter-spacing:0.598752px;}
.ls2_c02456{letter-spacing:0.613008px;}
.ls0_c02456{letter-spacing:0.717552px;}
.ls3_c02456{letter-spacing:0.722304px;}
.sc__c02456{text-shadow:none;}
.sc0_c02456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02456{-webkit-text-stroke:0px transparent;}
.sc0_c02456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02456{word-spacing:-15.126048px;}
.wsa_c02456{word-spacing:-12.474000px;}
.ws9_c02456{word-spacing:-12.416976px;}
.ws4_c02456{word-spacing:-11.637648px;}
.ws2_c02456{word-spacing:-11.200464px;}
.ws15_c02456{word-spacing:-2.159136px;}
.ws10_c02456{word-spacing:-1.078704px;}
.wsd_c02456{word-spacing:-0.974160px;}
.wsf_c02456{word-spacing:-0.118800px;}
.ws13_c02456{word-spacing:-0.099792px;}
.ws14_c02456{word-spacing:-0.085536px;}
.ws12_c02456{word-spacing:-0.038016px;}
.wse_c02456{word-spacing:0.000000px;}
.ws11_c02456{word-spacing:0.836352px;}
.wsb_c02456{word-spacing:33.300288px;}
.ws8_c02456{word-spacing:36.143712px;}
.ws6_c02456{word-spacing:36.742464px;}
.ws1_c02456{word-spacing:37.759392px;}
.ws0_c02456{word-spacing:38.020752px;}
.ws3_c02456{word-spacing:39.218256px;}
.ws5_c02456{word-spacing:39.902544px;}
.ws7_c02456{word-spacing:42.026688px;}
._0_c02456{margin-left:-1.948320px;}
._2_c02456{width:1.482624px;}
._5_c02456{width:2.770416px;}
._4_c02456{width:5.730912px;}
._1_c02456{width:50.252400px;}
._3_c02456{width:51.530688px;}
.fc0_c02456{color:rgb(0,0,0);}
.fs0_c02456{font-size:47.520000px;}
.fs1_c02456{font-size:60.480000px;}
.y0_c02456{bottom:0.000000px;}
.y19_c02456{bottom:146.998362px;}
.y1b_c02456{bottom:186.600234px;}
.y1a_c02456{bottom:196.320450px;}
.y18_c02456{bottom:275.878542px;}
.y17_c02456{bottom:356.878758px;}
.y15_c02456{bottom:406.559730px;}
.y11_c02456{bottom:424.560306px;}
.y16_c02456{bottom:458.759262px;}
.y14_c02456{bottom:491.879514px;}
.y13_c02456{bottom:509.880090px;}
.y10_c02456{bottom:543.000342px;}
.y12_c02456{bottom:559.559874px;}
.yf_c02456{bottom:577.560450px;}
.y1c_c02456{bottom:614.280450px;}
.yb_c02456{bottom:667.558326px;}
.yd_c02456{bottom:707.160234px;}
.yc_c02456{bottom:716.880450px;}
.ya_c02456{bottom:796.438506px;}
.y9_c02456{bottom:877.438722px;}
.y7_c02456{bottom:926.759730px;}
.y3_c02456{bottom:944.760306px;}
.y8_c02456{bottom:979.319226px;}
.y6_c02456{bottom:1012.439478px;}
.y5_c02456{bottom:1030.440054px;}
.y2_c02456{bottom:1063.560306px;}
.y4_c02456{bottom:1079.759874px;}
.y1_c02456{bottom:1097.760450px;}
.ye_c02456{bottom:1134.840450px;}
.h3_c02456{height:32.530781px;}
.h1_c02456{height:41.696016px;}
.h2_c02456{height:41.812031px;}
.h4_c02456{height:54.654737px;}
.h0_c02456{height:1263.000000px;}
.w1_c02456{width:892.500000px;}
.w0_c02456{width:892.830000px;}
.x0_c02456{left:0.000000px;}
.xd_c02456{left:117.000000px;}
.x8_c02456{left:440.999856px;}
.x4_c02456{left:445.680576px;}
.xb_c02456{left:451.080000px;}
.x7_c02456{left:455.399604px;}
.x5_c02456{left:461.880144px;}
.x1_c02456{left:463.320000px;}
.xa_c02456{left:483.480360px;}
.x9_c02456{left:492.119496px;}
.x6_c02456{left:493.200576px;}
.xc_c02456{left:506.880360px;}
.x3_c02456{left:511.919892px;}
.x2_c02456{left:526.679604px;}
@media print{
.v0_c02456{vertical-align:0.000000pt;}
.v1_c02456{vertical-align:1.279488pt;}
.lsc_c02456{letter-spacing:-1.064448pt;}
.ls7_c02456{letter-spacing:-0.604032pt;}
.ls9_c02456{letter-spacing:-0.511104pt;}
.lsd_c02456{letter-spacing:-0.287232pt;}
.ls10_c02456{letter-spacing:-0.244992pt;}
.lse_c02456{letter-spacing:-0.232320pt;}
.ls6_c02456{letter-spacing:-0.215424pt;}
.ls4_c02456{letter-spacing:-0.105600pt;}
.ls13_c02456{letter-spacing:0.000000pt;}
.ls1_c02456{letter-spacing:0.005376pt;}
.ls5_c02456{letter-spacing:0.114048pt;}
.lsb_c02456{letter-spacing:0.451968pt;}
.ls12_c02456{letter-spacing:0.456960pt;}
.lsf_c02456{letter-spacing:0.477312pt;}
.lsa_c02456{letter-spacing:0.515328pt;}
.ls11_c02456{letter-spacing:0.528000pt;}
.ls8_c02456{letter-spacing:0.532224pt;}
.ls2_c02456{letter-spacing:0.544896pt;}
.ls0_c02456{letter-spacing:0.637824pt;}
.ls3_c02456{letter-spacing:0.642048pt;}
.wsc_c02456{word-spacing:-13.445376pt;}
.wsa_c02456{word-spacing:-11.088000pt;}
.ws9_c02456{word-spacing:-11.037312pt;}
.ws4_c02456{word-spacing:-10.344576pt;}
.ws2_c02456{word-spacing:-9.955968pt;}
.ws15_c02456{word-spacing:-1.919232pt;}
.ws10_c02456{word-spacing:-0.958848pt;}
.wsd_c02456{word-spacing:-0.865920pt;}
.wsf_c02456{word-spacing:-0.105600pt;}
.ws13_c02456{word-spacing:-0.088704pt;}
.ws14_c02456{word-spacing:-0.076032pt;}
.ws12_c02456{word-spacing:-0.033792pt;}
.wse_c02456{word-spacing:0.000000pt;}
.ws11_c02456{word-spacing:0.743424pt;}
.wsb_c02456{word-spacing:29.600256pt;}
.ws8_c02456{word-spacing:32.127744pt;}
.ws6_c02456{word-spacing:32.659968pt;}
.ws1_c02456{word-spacing:33.563904pt;}
.ws0_c02456{word-spacing:33.796224pt;}
.ws3_c02456{word-spacing:34.860672pt;}
.ws5_c02456{word-spacing:35.468928pt;}
.ws7_c02456{word-spacing:37.357056pt;}
._0_c02456{margin-left:-1.731840pt;}
._2_c02456{width:1.317888pt;}
._5_c02456{width:2.462592pt;}
._4_c02456{width:5.094144pt;}
._1_c02456{width:44.668800pt;}
._3_c02456{width:45.805056pt;}
.fs0_c02456{font-size:42.240000pt;}
.fs1_c02456{font-size:53.760000pt;}
.y0_c02456{bottom:0.000000pt;}
.y19_c02456{bottom:130.665211pt;}
.y1b_c02456{bottom:165.866875pt;}
.y1a_c02456{bottom:174.507067pt;}
.y18_c02456{bottom:245.225371pt;}
.y17_c02456{bottom:317.225563pt;}
.y15_c02456{bottom:361.386427pt;}
.y11_c02456{bottom:377.386939pt;}
.y16_c02456{bottom:407.786011pt;}
.y14_c02456{bottom:437.226235pt;}
.y13_c02456{bottom:453.226747pt;}
.y10_c02456{bottom:482.666971pt;}
.y12_c02456{bottom:497.386555pt;}
.yf_c02456{bottom:513.387067pt;}
.y1c_c02456{bottom:546.027067pt;}
.yb_c02456{bottom:593.385179pt;}
.yd_c02456{bottom:628.586875pt;}
.yc_c02456{bottom:637.227067pt;}
.ya_c02456{bottom:707.945339pt;}
.y9_c02456{bottom:779.945531pt;}
.y7_c02456{bottom:823.786427pt;}
.y3_c02456{bottom:839.786939pt;}
.y8_c02456{bottom:870.505979pt;}
.y6_c02456{bottom:899.946203pt;}
.y5_c02456{bottom:915.946715pt;}
.y2_c02456{bottom:945.386939pt;}
.y4_c02456{bottom:959.786555pt;}
.y1_c02456{bottom:975.787067pt;}
.ye_c02456{bottom:1008.747067pt;}
.h3_c02456{height:28.916250pt;}
.h1_c02456{height:37.063125pt;}
.h2_c02456{height:37.166250pt;}
.h4_c02456{height:48.581988pt;}
.h0_c02456{height:1122.666667pt;}
.w1_c02456{width:793.333333pt;}
.w0_c02456{width:793.626667pt;}
.x0_c02456{left:0.000000pt;}
.xd_c02456{left:104.000000pt;}
.x8_c02456{left:391.999872pt;}
.x4_c02456{left:396.160512pt;}
.xb_c02456{left:400.960000pt;}
.x7_c02456{left:404.799648pt;}
.x5_c02456{left:410.560128pt;}
.x1_c02456{left:411.840000pt;}
.xa_c02456{left:429.760320pt;}
.x9_c02456{left:437.439552pt;}
.x6_c02456{left:438.400512pt;}
.xc_c02456{left:450.560320pt;}
.x3_c02456{left:455.039904pt;}
.x2_c02456{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02457 {
    display:none;
  }
  .loading-indicator_c02457.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02457 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02457 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02457" -> "#page-container .classname_c02457")
 */
.pf_c02457 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02457 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02457 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02457 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02457 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02457 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02457 {overflow:visible;}
  }
}
.c_c02457 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02457 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02457:after { /* webkit #35443 */
  content: '';
}
.t_c02457:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02457 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02457 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02457 { /* info for Javascript */
  display:none;
}
.l_c02457 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02457 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02457 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02457:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02457 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02457.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02457 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02457{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02457;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02457{font-family:ff1_c02457;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02457;src:url('chunks/assets/font_33d74f71d4af23137c34d003.woff2')format("woff");}.ff2_c02457{font-family:ff2_c02457;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02457;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02457{font-family:ff3_c02457;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02457{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02457{vertical-align:0.000000px;}
.v1_c02457{vertical-align:1.439424px;}
.lsc_c02457{letter-spacing:-1.197504px;}
.ls7_c02457{letter-spacing:-0.679536px;}
.ls9_c02457{letter-spacing:-0.574992px;}
.lsd_c02457{letter-spacing:-0.323136px;}
.ls10_c02457{letter-spacing:-0.275616px;}
.lse_c02457{letter-spacing:-0.261360px;}
.ls6_c02457{letter-spacing:-0.242352px;}
.ls4_c02457{letter-spacing:-0.118800px;}
.ls13_c02457{letter-spacing:0.000000px;}
.ls1_c02457{letter-spacing:0.006048px;}
.ls5_c02457{letter-spacing:0.128304px;}
.lsb_c02457{letter-spacing:0.508464px;}
.ls12_c02457{letter-spacing:0.514080px;}
.lsf_c02457{letter-spacing:0.536976px;}
.lsa_c02457{letter-spacing:0.579744px;}
.ls11_c02457{letter-spacing:0.594000px;}
.ls8_c02457{letter-spacing:0.598752px;}
.ls2_c02457{letter-spacing:0.613008px;}
.ls0_c02457{letter-spacing:0.717552px;}
.ls3_c02457{letter-spacing:0.722304px;}
.sc__c02457{text-shadow:none;}
.sc0_c02457{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02457{-webkit-text-stroke:0px transparent;}
.sc0_c02457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02457{word-spacing:-15.126048px;}
.wsa_c02457{word-spacing:-12.474000px;}
.ws9_c02457{word-spacing:-12.416976px;}
.ws4_c02457{word-spacing:-11.637648px;}
.ws2_c02457{word-spacing:-11.200464px;}
.ws15_c02457{word-spacing:-2.159136px;}
.ws10_c02457{word-spacing:-1.078704px;}
.wsd_c02457{word-spacing:-0.974160px;}
.wsf_c02457{word-spacing:-0.118800px;}
.ws13_c02457{word-spacing:-0.099792px;}
.ws14_c02457{word-spacing:-0.085536px;}
.ws12_c02457{word-spacing:-0.038016px;}
.wse_c02457{word-spacing:0.000000px;}
.ws11_c02457{word-spacing:0.836352px;}
.wsb_c02457{word-spacing:33.300288px;}
.ws8_c02457{word-spacing:36.143712px;}
.ws6_c02457{word-spacing:36.742464px;}
.ws1_c02457{word-spacing:37.759392px;}
.ws0_c02457{word-spacing:38.020752px;}
.ws3_c02457{word-spacing:39.218256px;}
.ws5_c02457{word-spacing:39.902544px;}
.ws7_c02457{word-spacing:42.026688px;}
._0_c02457{margin-left:-1.948320px;}
._2_c02457{width:1.482624px;}
._5_c02457{width:2.770416px;}
._4_c02457{width:5.730912px;}
._1_c02457{width:50.252400px;}
._3_c02457{width:51.530688px;}
.fc0_c02457{color:rgb(0,0,0);}
.fs0_c02457{font-size:47.520000px;}
.fs1_c02457{font-size:60.480000px;}
.y0_c02457{bottom:0.000000px;}
.y19_c02457{bottom:146.998362px;}
.y1b_c02457{bottom:186.600234px;}
.y1a_c02457{bottom:196.320450px;}
.y18_c02457{bottom:275.878542px;}
.y17_c02457{bottom:356.878758px;}
.y15_c02457{bottom:406.559730px;}
.y11_c02457{bottom:424.560306px;}
.y16_c02457{bottom:458.759262px;}
.y14_c02457{bottom:491.879514px;}
.y13_c02457{bottom:509.880090px;}
.y10_c02457{bottom:543.000342px;}
.y12_c02457{bottom:559.559874px;}
.yf_c02457{bottom:577.560450px;}
.y1c_c02457{bottom:614.280450px;}
.yb_c02457{bottom:667.558326px;}
.yd_c02457{bottom:707.160234px;}
.yc_c02457{bottom:716.880450px;}
.ya_c02457{bottom:796.438506px;}
.y9_c02457{bottom:877.438722px;}
.y7_c02457{bottom:926.759730px;}
.y3_c02457{bottom:944.760306px;}
.y8_c02457{bottom:979.319226px;}
.y6_c02457{bottom:1012.439478px;}
.y5_c02457{bottom:1030.440054px;}
.y2_c02457{bottom:1063.560306px;}
.y4_c02457{bottom:1079.759874px;}
.y1_c02457{bottom:1097.760450px;}
.ye_c02457{bottom:1134.840450px;}
.h3_c02457{height:32.530781px;}
.h1_c02457{height:41.696016px;}
.h2_c02457{height:41.812031px;}
.h4_c02457{height:54.654737px;}
.h0_c02457{height:1263.000000px;}
.w1_c02457{width:892.500000px;}
.w0_c02457{width:892.830000px;}
.x0_c02457{left:0.000000px;}
.xd_c02457{left:117.000000px;}
.x8_c02457{left:440.999856px;}
.x4_c02457{left:445.680576px;}
.xb_c02457{left:451.080000px;}
.x7_c02457{left:455.399604px;}
.x5_c02457{left:461.880144px;}
.x1_c02457{left:463.320000px;}
.xa_c02457{left:483.480360px;}
.x9_c02457{left:492.119496px;}
.x6_c02457{left:493.200576px;}
.xc_c02457{left:506.880360px;}
.x3_c02457{left:511.919892px;}
.x2_c02457{left:526.679604px;}
@media print{
.v0_c02457{vertical-align:0.000000pt;}
.v1_c02457{vertical-align:1.279488pt;}
.lsc_c02457{letter-spacing:-1.064448pt;}
.ls7_c02457{letter-spacing:-0.604032pt;}
.ls9_c02457{letter-spacing:-0.511104pt;}
.lsd_c02457{letter-spacing:-0.287232pt;}
.ls10_c02457{letter-spacing:-0.244992pt;}
.lse_c02457{letter-spacing:-0.232320pt;}
.ls6_c02457{letter-spacing:-0.215424pt;}
.ls4_c02457{letter-spacing:-0.105600pt;}
.ls13_c02457{letter-spacing:0.000000pt;}
.ls1_c02457{letter-spacing:0.005376pt;}
.ls5_c02457{letter-spacing:0.114048pt;}
.lsb_c02457{letter-spacing:0.451968pt;}
.ls12_c02457{letter-spacing:0.456960pt;}
.lsf_c02457{letter-spacing:0.477312pt;}
.lsa_c02457{letter-spacing:0.515328pt;}
.ls11_c02457{letter-spacing:0.528000pt;}
.ls8_c02457{letter-spacing:0.532224pt;}
.ls2_c02457{letter-spacing:0.544896pt;}
.ls0_c02457{letter-spacing:0.637824pt;}
.ls3_c02457{letter-spacing:0.642048pt;}
.wsc_c02457{word-spacing:-13.445376pt;}
.wsa_c02457{word-spacing:-11.088000pt;}
.ws9_c02457{word-spacing:-11.037312pt;}
.ws4_c02457{word-spacing:-10.344576pt;}
.ws2_c02457{word-spacing:-9.955968pt;}
.ws15_c02457{word-spacing:-1.919232pt;}
.ws10_c02457{word-spacing:-0.958848pt;}
.wsd_c02457{word-spacing:-0.865920pt;}
.wsf_c02457{word-spacing:-0.105600pt;}
.ws13_c02457{word-spacing:-0.088704pt;}
.ws14_c02457{word-spacing:-0.076032pt;}
.ws12_c02457{word-spacing:-0.033792pt;}
.wse_c02457{word-spacing:0.000000pt;}
.ws11_c02457{word-spacing:0.743424pt;}
.wsb_c02457{word-spacing:29.600256pt;}
.ws8_c02457{word-spacing:32.127744pt;}
.ws6_c02457{word-spacing:32.659968pt;}
.ws1_c02457{word-spacing:33.563904pt;}
.ws0_c02457{word-spacing:33.796224pt;}
.ws3_c02457{word-spacing:34.860672pt;}
.ws5_c02457{word-spacing:35.468928pt;}
.ws7_c02457{word-spacing:37.357056pt;}
._0_c02457{margin-left:-1.731840pt;}
._2_c02457{width:1.317888pt;}
._5_c02457{width:2.462592pt;}
._4_c02457{width:5.094144pt;}
._1_c02457{width:44.668800pt;}
._3_c02457{width:45.805056pt;}
.fs0_c02457{font-size:42.240000pt;}
.fs1_c02457{font-size:53.760000pt;}
.y0_c02457{bottom:0.000000pt;}
.y19_c02457{bottom:130.665211pt;}
.y1b_c02457{bottom:165.866875pt;}
.y1a_c02457{bottom:174.507067pt;}
.y18_c02457{bottom:245.225371pt;}
.y17_c02457{bottom:317.225563pt;}
.y15_c02457{bottom:361.386427pt;}
.y11_c02457{bottom:377.386939pt;}
.y16_c02457{bottom:407.786011pt;}
.y14_c02457{bottom:437.226235pt;}
.y13_c02457{bottom:453.226747pt;}
.y10_c02457{bottom:482.666971pt;}
.y12_c02457{bottom:497.386555pt;}
.yf_c02457{bottom:513.387067pt;}
.y1c_c02457{bottom:546.027067pt;}
.yb_c02457{bottom:593.385179pt;}
.yd_c02457{bottom:628.586875pt;}
.yc_c02457{bottom:637.227067pt;}
.ya_c02457{bottom:707.945339pt;}
.y9_c02457{bottom:779.945531pt;}
.y7_c02457{bottom:823.786427pt;}
.y3_c02457{bottom:839.786939pt;}
.y8_c02457{bottom:870.505979pt;}
.y6_c02457{bottom:899.946203pt;}
.y5_c02457{bottom:915.946715pt;}
.y2_c02457{bottom:945.386939pt;}
.y4_c02457{bottom:959.786555pt;}
.y1_c02457{bottom:975.787067pt;}
.ye_c02457{bottom:1008.747067pt;}
.h3_c02457{height:28.916250pt;}
.h1_c02457{height:37.063125pt;}
.h2_c02457{height:37.166250pt;}
.h4_c02457{height:48.581988pt;}
.h0_c02457{height:1122.666667pt;}
.w1_c02457{width:793.333333pt;}
.w0_c02457{width:793.626667pt;}
.x0_c02457{left:0.000000pt;}
.xd_c02457{left:104.000000pt;}
.x8_c02457{left:391.999872pt;}
.x4_c02457{left:396.160512pt;}
.xb_c02457{left:400.960000pt;}
.x7_c02457{left:404.799648pt;}
.x5_c02457{left:410.560128pt;}
.x1_c02457{left:411.840000pt;}
.xa_c02457{left:429.760320pt;}
.x9_c02457{left:437.439552pt;}
.x6_c02457{left:438.400512pt;}
.xc_c02457{left:450.560320pt;}
.x3_c02457{left:455.039904pt;}
.x2_c02457{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02458 {
    display:none;
  }
  .loading-indicator_c02458.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02458 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02458 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02458" -> "#page-container .classname_c02458")
 */
.pf_c02458 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02458 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02458 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02458 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02458 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02458 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02458 {overflow:visible;}
  }
}
.c_c02458 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02458 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02458:after { /* webkit #35443 */
  content: '';
}
.t_c02458:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02458 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02458 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02458 { /* info for Javascript */
  display:none;
}
.l_c02458 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02458 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02458 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02458:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02458 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02458.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02458 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02458{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02458;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02458{font-family:ff1_c02458;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02458;src:url('chunks/assets/font_232b08a7118c103f1ba7f14f.woff2')format("woff");}.ff2_c02458{font-family:ff2_c02458;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02458;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02458{font-family:ff3_c02458;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02458{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02458{vertical-align:0.000000px;}
.v1_c02458{vertical-align:1.439424px;}
.lsd_c02458{letter-spacing:-1.197504px;}
.ls8_c02458{letter-spacing:-0.679536px;}
.lsa_c02458{letter-spacing:-0.574992px;}
.lse_c02458{letter-spacing:-0.323136px;}
.ls11_c02458{letter-spacing:-0.275616px;}
.lsf_c02458{letter-spacing:-0.261360px;}
.ls7_c02458{letter-spacing:-0.242352px;}
.ls5_c02458{letter-spacing:-0.118800px;}
.ls14_c02458{letter-spacing:0.000000px;}
.ls1_c02458{letter-spacing:0.006048px;}
.ls6_c02458{letter-spacing:0.128304px;}
.ls15_c02458{letter-spacing:0.242352px;}
.lsc_c02458{letter-spacing:0.508464px;}
.ls13_c02458{letter-spacing:0.514080px;}
.ls10_c02458{letter-spacing:0.536976px;}
.lsb_c02458{letter-spacing:0.579744px;}
.ls12_c02458{letter-spacing:0.594000px;}
.ls9_c02458{letter-spacing:0.598752px;}
.ls3_c02458{letter-spacing:0.613008px;}
.ls2_c02458{letter-spacing:0.651024px;}
.ls0_c02458{letter-spacing:0.717552px;}
.ls4_c02458{letter-spacing:0.722304px;}
.sc__c02458{text-shadow:none;}
.sc0_c02458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02458{-webkit-text-stroke:0px transparent;}
.sc0_c02458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02458{word-spacing:-15.126048px;}
.wsa_c02458{word-spacing:-12.474000px;}
.ws9_c02458{word-spacing:-12.416976px;}
.ws4_c02458{word-spacing:-11.637648px;}
.ws2_c02458{word-spacing:-11.200464px;}
.ws15_c02458{word-spacing:-2.159136px;}
.ws10_c02458{word-spacing:-1.078704px;}
.ws16_c02458{word-spacing:-1.012176px;}
.wsd_c02458{word-spacing:-0.974160px;}
.wsf_c02458{word-spacing:-0.118800px;}
.ws13_c02458{word-spacing:-0.099792px;}
.ws14_c02458{word-spacing:-0.085536px;}
.ws12_c02458{word-spacing:-0.038016px;}
.wse_c02458{word-spacing:0.000000px;}
.ws11_c02458{word-spacing:0.836352px;}
.wsb_c02458{word-spacing:33.300288px;}
.ws8_c02458{word-spacing:36.143712px;}
.ws6_c02458{word-spacing:36.742464px;}
.ws1_c02458{word-spacing:37.759392px;}
.ws0_c02458{word-spacing:38.020752px;}
.ws3_c02458{word-spacing:39.218256px;}
.ws5_c02458{word-spacing:39.902544px;}
.ws7_c02458{word-spacing:42.026688px;}
._0_c02458{margin-left:-1.948320px;}
._2_c02458{width:1.482624px;}
._5_c02458{width:2.770416px;}
._4_c02458{width:5.730912px;}
._1_c02458{width:50.252400px;}
._3_c02458{width:51.530688px;}
.fc0_c02458{color:rgb(0,0,0);}
.fs0_c02458{font-size:47.520000px;}
.fs1_c02458{font-size:60.480000px;}
.y0_c02458{bottom:0.000000px;}
.y19_c02458{bottom:146.998362px;}
.y1b_c02458{bottom:186.600234px;}
.y1a_c02458{bottom:196.320450px;}
.y18_c02458{bottom:275.878542px;}
.y17_c02458{bottom:356.878758px;}
.y15_c02458{bottom:406.559730px;}
.y11_c02458{bottom:424.560306px;}
.y16_c02458{bottom:458.759262px;}
.y14_c02458{bottom:491.879514px;}
.y13_c02458{bottom:509.880090px;}
.y10_c02458{bottom:543.000342px;}
.y12_c02458{bottom:559.559874px;}
.yf_c02458{bottom:577.560450px;}
.y1c_c02458{bottom:614.280450px;}
.yb_c02458{bottom:667.558326px;}
.yd_c02458{bottom:707.160234px;}
.yc_c02458{bottom:716.880450px;}
.ya_c02458{bottom:796.438506px;}
.y9_c02458{bottom:877.438722px;}
.y7_c02458{bottom:926.759730px;}
.y3_c02458{bottom:944.760306px;}
.y8_c02458{bottom:979.319226px;}
.y6_c02458{bottom:1012.439478px;}
.y5_c02458{bottom:1030.440054px;}
.y2_c02458{bottom:1063.560306px;}
.y4_c02458{bottom:1079.759874px;}
.y1_c02458{bottom:1097.760450px;}
.ye_c02458{bottom:1134.840450px;}
.h3_c02458{height:32.530781px;}
.h1_c02458{height:41.696016px;}
.h2_c02458{height:41.812031px;}
.h4_c02458{height:54.654737px;}
.h0_c02458{height:1263.000000px;}
.w1_c02458{width:892.500000px;}
.w0_c02458{width:892.830000px;}
.x0_c02458{left:0.000000px;}
.xd_c02458{left:117.000000px;}
.x8_c02458{left:440.999856px;}
.x4_c02458{left:445.680576px;}
.xb_c02458{left:451.080000px;}
.x7_c02458{left:455.399604px;}
.x5_c02458{left:461.880144px;}
.x1_c02458{left:463.320000px;}
.xa_c02458{left:483.480360px;}
.x9_c02458{left:492.119496px;}
.x6_c02458{left:493.200576px;}
.xc_c02458{left:506.880360px;}
.x3_c02458{left:511.919892px;}
.x2_c02458{left:526.679604px;}
@media print{
.v0_c02458{vertical-align:0.000000pt;}
.v1_c02458{vertical-align:1.279488pt;}
.lsd_c02458{letter-spacing:-1.064448pt;}
.ls8_c02458{letter-spacing:-0.604032pt;}
.lsa_c02458{letter-spacing:-0.511104pt;}
.lse_c02458{letter-spacing:-0.287232pt;}
.ls11_c02458{letter-spacing:-0.244992pt;}
.lsf_c02458{letter-spacing:-0.232320pt;}
.ls7_c02458{letter-spacing:-0.215424pt;}
.ls5_c02458{letter-spacing:-0.105600pt;}
.ls14_c02458{letter-spacing:0.000000pt;}
.ls1_c02458{letter-spacing:0.005376pt;}
.ls6_c02458{letter-spacing:0.114048pt;}
.ls15_c02458{letter-spacing:0.215424pt;}
.lsc_c02458{letter-spacing:0.451968pt;}
.ls13_c02458{letter-spacing:0.456960pt;}
.ls10_c02458{letter-spacing:0.477312pt;}
.lsb_c02458{letter-spacing:0.515328pt;}
.ls12_c02458{letter-spacing:0.528000pt;}
.ls9_c02458{letter-spacing:0.532224pt;}
.ls3_c02458{letter-spacing:0.544896pt;}
.ls2_c02458{letter-spacing:0.578688pt;}
.ls0_c02458{letter-spacing:0.637824pt;}
.ls4_c02458{letter-spacing:0.642048pt;}
.wsc_c02458{word-spacing:-13.445376pt;}
.wsa_c02458{word-spacing:-11.088000pt;}
.ws9_c02458{word-spacing:-11.037312pt;}
.ws4_c02458{word-spacing:-10.344576pt;}
.ws2_c02458{word-spacing:-9.955968pt;}
.ws15_c02458{word-spacing:-1.919232pt;}
.ws10_c02458{word-spacing:-0.958848pt;}
.ws16_c02458{word-spacing:-0.899712pt;}
.wsd_c02458{word-spacing:-0.865920pt;}
.wsf_c02458{word-spacing:-0.105600pt;}
.ws13_c02458{word-spacing:-0.088704pt;}
.ws14_c02458{word-spacing:-0.076032pt;}
.ws12_c02458{word-spacing:-0.033792pt;}
.wse_c02458{word-spacing:0.000000pt;}
.ws11_c02458{word-spacing:0.743424pt;}
.wsb_c02458{word-spacing:29.600256pt;}
.ws8_c02458{word-spacing:32.127744pt;}
.ws6_c02458{word-spacing:32.659968pt;}
.ws1_c02458{word-spacing:33.563904pt;}
.ws0_c02458{word-spacing:33.796224pt;}
.ws3_c02458{word-spacing:34.860672pt;}
.ws5_c02458{word-spacing:35.468928pt;}
.ws7_c02458{word-spacing:37.357056pt;}
._0_c02458{margin-left:-1.731840pt;}
._2_c02458{width:1.317888pt;}
._5_c02458{width:2.462592pt;}
._4_c02458{width:5.094144pt;}
._1_c02458{width:44.668800pt;}
._3_c02458{width:45.805056pt;}
.fs0_c02458{font-size:42.240000pt;}
.fs1_c02458{font-size:53.760000pt;}
.y0_c02458{bottom:0.000000pt;}
.y19_c02458{bottom:130.665211pt;}
.y1b_c02458{bottom:165.866875pt;}
.y1a_c02458{bottom:174.507067pt;}
.y18_c02458{bottom:245.225371pt;}
.y17_c02458{bottom:317.225563pt;}
.y15_c02458{bottom:361.386427pt;}
.y11_c02458{bottom:377.386939pt;}
.y16_c02458{bottom:407.786011pt;}
.y14_c02458{bottom:437.226235pt;}
.y13_c02458{bottom:453.226747pt;}
.y10_c02458{bottom:482.666971pt;}
.y12_c02458{bottom:497.386555pt;}
.yf_c02458{bottom:513.387067pt;}
.y1c_c02458{bottom:546.027067pt;}
.yb_c02458{bottom:593.385179pt;}
.yd_c02458{bottom:628.586875pt;}
.yc_c02458{bottom:637.227067pt;}
.ya_c02458{bottom:707.945339pt;}
.y9_c02458{bottom:779.945531pt;}
.y7_c02458{bottom:823.786427pt;}
.y3_c02458{bottom:839.786939pt;}
.y8_c02458{bottom:870.505979pt;}
.y6_c02458{bottom:899.946203pt;}
.y5_c02458{bottom:915.946715pt;}
.y2_c02458{bottom:945.386939pt;}
.y4_c02458{bottom:959.786555pt;}
.y1_c02458{bottom:975.787067pt;}
.ye_c02458{bottom:1008.747067pt;}
.h3_c02458{height:28.916250pt;}
.h1_c02458{height:37.063125pt;}
.h2_c02458{height:37.166250pt;}
.h4_c02458{height:48.581988pt;}
.h0_c02458{height:1122.666667pt;}
.w1_c02458{width:793.333333pt;}
.w0_c02458{width:793.626667pt;}
.x0_c02458{left:0.000000pt;}
.xd_c02458{left:104.000000pt;}
.x8_c02458{left:391.999872pt;}
.x4_c02458{left:396.160512pt;}
.xb_c02458{left:400.960000pt;}
.x7_c02458{left:404.799648pt;}
.x5_c02458{left:410.560128pt;}
.x1_c02458{left:411.840000pt;}
.xa_c02458{left:429.760320pt;}
.x9_c02458{left:437.439552pt;}
.x6_c02458{left:438.400512pt;}
.xc_c02458{left:450.560320pt;}
.x3_c02458{left:455.039904pt;}
.x2_c02458{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02459 {
    display:none;
  }
  .loading-indicator_c02459.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02459 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02459 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02459" -> "#page-container .classname_c02459")
 */
.pf_c02459 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02459 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02459 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02459 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02459 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02459 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02459 {overflow:visible;}
  }
}
.c_c02459 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02459 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02459:after { /* webkit #35443 */
  content: '';
}
.t_c02459:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02459 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02459 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02459 { /* info for Javascript */
  display:none;
}
.l_c02459 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02459 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02459 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02459:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02459 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02459.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02459 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02459{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02459;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02459{font-family:ff1_c02459;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02459;src:url('chunks/assets/font_86d67243677597821471610a.woff2')format("woff");}.ff2_c02459{font-family:ff2_c02459;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02459;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02459{font-family:ff3_c02459;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02459{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02459{vertical-align:0.000000px;}
.v1_c02459{vertical-align:1.439424px;}
.lsc_c02459{letter-spacing:-1.197504px;}
.ls7_c02459{letter-spacing:-0.679536px;}
.ls9_c02459{letter-spacing:-0.574992px;}
.lsd_c02459{letter-spacing:-0.323136px;}
.ls10_c02459{letter-spacing:-0.275616px;}
.lse_c02459{letter-spacing:-0.261360px;}
.ls6_c02459{letter-spacing:-0.242352px;}
.ls4_c02459{letter-spacing:-0.118800px;}
.ls15_c02459{letter-spacing:0.000000px;}
.ls1_c02459{letter-spacing:0.006048px;}
.ls14_c02459{letter-spacing:0.052272px;}
.ls5_c02459{letter-spacing:0.128304px;}
.ls13_c02459{letter-spacing:0.495936px;}
.lsb_c02459{letter-spacing:0.508464px;}
.ls12_c02459{letter-spacing:0.514080px;}
.lsf_c02459{letter-spacing:0.536976px;}
.lsa_c02459{letter-spacing:0.579744px;}
.ls11_c02459{letter-spacing:0.594000px;}
.ls8_c02459{letter-spacing:0.598752px;}
.ls2_c02459{letter-spacing:0.613008px;}
.ls0_c02459{letter-spacing:0.717552px;}
.ls3_c02459{letter-spacing:0.722304px;}
.sc__c02459{text-shadow:none;}
.sc0_c02459{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02459{-webkit-text-stroke:0px transparent;}
.sc0_c02459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02459{word-spacing:-15.126048px;}
.wsa_c02459{word-spacing:-12.474000px;}
.ws9_c02459{word-spacing:-12.416976px;}
.ws4_c02459{word-spacing:-11.637648px;}
.ws2_c02459{word-spacing:-11.200464px;}
.ws16_c02459{word-spacing:-4.094496px;}
.ws18_c02459{word-spacing:-2.159136px;}
.ws17_c02459{word-spacing:-1.083456px;}
.ws11_c02459{word-spacing:-1.078704px;}
.wse_c02459{word-spacing:-0.974160px;}
.ws10_c02459{word-spacing:-0.118800px;}
.ws14_c02459{word-spacing:-0.099792px;}
.ws15_c02459{word-spacing:-0.085536px;}
.ws13_c02459{word-spacing:-0.038016px;}
.wsf_c02459{word-spacing:0.000000px;}
.ws12_c02459{word-spacing:0.836352px;}
.wsd_c02459{word-spacing:7.455888px;}
.wsb_c02459{word-spacing:33.300288px;}
.ws8_c02459{word-spacing:36.143712px;}
.ws6_c02459{word-spacing:36.742464px;}
.ws1_c02459{word-spacing:37.759392px;}
.ws0_c02459{word-spacing:38.020752px;}
.ws3_c02459{word-spacing:39.218256px;}
.ws5_c02459{word-spacing:39.902544px;}
.ws7_c02459{word-spacing:42.026688px;}
._0_c02459{margin-left:-1.948320px;}
._2_c02459{width:1.482624px;}
._5_c02459{width:2.770416px;}
._4_c02459{width:5.730912px;}
._6_c02459{width:15.050880px;}
._8_c02459{width:21.887712px;}
._7_c02459{width:24.325488px;}
._1_c02459{width:50.252400px;}
._3_c02459{width:51.530688px;}
.fc0_c02459{color:rgb(0,0,0);}
.fs0_c02459{font-size:47.520000px;}
.fs1_c02459{font-size:60.480000px;}
.y0_c02459{bottom:0.000000px;}
.y1a_c02459{bottom:146.999550px;}
.y1c_c02459{bottom:186.600234px;}
.y1b_c02459{bottom:196.320450px;}
.y19_c02459{bottom:275.879730px;}
.y18_c02459{bottom:356.879946px;}
.y15_c02459{bottom:406.559730px;}
.y11_c02459{bottom:424.560306px;}
.y17_c02459{bottom:443.999550px;}
.y16_c02459{bottom:458.759262px;}
.y14_c02459{bottom:491.879514px;}
.y13_c02459{bottom:509.880090px;}
.y10_c02459{bottom:543.000342px;}
.y12_c02459{bottom:559.559874px;}
.yf_c02459{bottom:577.560450px;}
.y1d_c02459{bottom:614.280450px;}
.yb_c02459{bottom:667.558326px;}
.yd_c02459{bottom:707.160234px;}
.yc_c02459{bottom:716.880450px;}
.ya_c02459{bottom:796.438506px;}
.y9_c02459{bottom:877.438722px;}
.y7_c02459{bottom:926.759730px;}
.y3_c02459{bottom:944.760306px;}
.y8_c02459{bottom:979.319226px;}
.y6_c02459{bottom:1012.439478px;}
.y5_c02459{bottom:1030.440054px;}
.y2_c02459{bottom:1063.560306px;}
.y4_c02459{bottom:1079.759874px;}
.y1_c02459{bottom:1097.760450px;}
.ye_c02459{bottom:1134.840450px;}
.h3_c02459{height:32.530781px;}
.h1_c02459{height:41.696016px;}
.h2_c02459{height:41.812031px;}
.h4_c02459{height:54.654737px;}
.h0_c02459{height:1263.000000px;}
.w1_c02459{width:892.500000px;}
.w0_c02459{width:892.830000px;}
.x0_c02459{left:0.000000px;}
.xd_c02459{left:117.000000px;}
.x8_c02459{left:440.999856px;}
.x4_c02459{left:445.680576px;}
.xb_c02459{left:451.080000px;}
.x7_c02459{left:455.399604px;}
.x5_c02459{left:461.880144px;}
.x1_c02459{left:463.320000px;}
.xa_c02459{left:483.480360px;}
.x9_c02459{left:492.119496px;}
.x6_c02459{left:493.200576px;}
.xc_c02459{left:506.880360px;}
.x3_c02459{left:511.919892px;}
.x2_c02459{left:526.679604px;}
.xe_c02459{left:569.880036px;}
@media print{
.v0_c02459{vertical-align:0.000000pt;}
.v1_c02459{vertical-align:1.279488pt;}
.lsc_c02459{letter-spacing:-1.064448pt;}
.ls7_c02459{letter-spacing:-0.604032pt;}
.ls9_c02459{letter-spacing:-0.511104pt;}
.lsd_c02459{letter-spacing:-0.287232pt;}
.ls10_c02459{letter-spacing:-0.244992pt;}
.lse_c02459{letter-spacing:-0.232320pt;}
.ls6_c02459{letter-spacing:-0.215424pt;}
.ls4_c02459{letter-spacing:-0.105600pt;}
.ls15_c02459{letter-spacing:0.000000pt;}
.ls1_c02459{letter-spacing:0.005376pt;}
.ls14_c02459{letter-spacing:0.046464pt;}
.ls5_c02459{letter-spacing:0.114048pt;}
.ls13_c02459{letter-spacing:0.440832pt;}
.lsb_c02459{letter-spacing:0.451968pt;}
.ls12_c02459{letter-spacing:0.456960pt;}
.lsf_c02459{letter-spacing:0.477312pt;}
.lsa_c02459{letter-spacing:0.515328pt;}
.ls11_c02459{letter-spacing:0.528000pt;}
.ls8_c02459{letter-spacing:0.532224pt;}
.ls2_c02459{letter-spacing:0.544896pt;}
.ls0_c02459{letter-spacing:0.637824pt;}
.ls3_c02459{letter-spacing:0.642048pt;}
.wsc_c02459{word-spacing:-13.445376pt;}
.wsa_c02459{word-spacing:-11.088000pt;}
.ws9_c02459{word-spacing:-11.037312pt;}
.ws4_c02459{word-spacing:-10.344576pt;}
.ws2_c02459{word-spacing:-9.955968pt;}
.ws16_c02459{word-spacing:-3.639552pt;}
.ws18_c02459{word-spacing:-1.919232pt;}
.ws17_c02459{word-spacing:-0.963072pt;}
.ws11_c02459{word-spacing:-0.958848pt;}
.wse_c02459{word-spacing:-0.865920pt;}
.ws10_c02459{word-spacing:-0.105600pt;}
.ws14_c02459{word-spacing:-0.088704pt;}
.ws15_c02459{word-spacing:-0.076032pt;}
.ws13_c02459{word-spacing:-0.033792pt;}
.wsf_c02459{word-spacing:0.000000pt;}
.ws12_c02459{word-spacing:0.743424pt;}
.wsd_c02459{word-spacing:6.627456pt;}
.wsb_c02459{word-spacing:29.600256pt;}
.ws8_c02459{word-spacing:32.127744pt;}
.ws6_c02459{word-spacing:32.659968pt;}
.ws1_c02459{word-spacing:33.563904pt;}
.ws0_c02459{word-spacing:33.796224pt;}
.ws3_c02459{word-spacing:34.860672pt;}
.ws5_c02459{word-spacing:35.468928pt;}
.ws7_c02459{word-spacing:37.357056pt;}
._0_c02459{margin-left:-1.731840pt;}
._2_c02459{width:1.317888pt;}
._5_c02459{width:2.462592pt;}
._4_c02459{width:5.094144pt;}
._6_c02459{width:13.378560pt;}
._8_c02459{width:19.455744pt;}
._7_c02459{width:21.622656pt;}
._1_c02459{width:44.668800pt;}
._3_c02459{width:45.805056pt;}
.fs0_c02459{font-size:42.240000pt;}
.fs1_c02459{font-size:53.760000pt;}
.y0_c02459{bottom:0.000000pt;}
.y1a_c02459{bottom:130.666267pt;}
.y1c_c02459{bottom:165.866875pt;}
.y1b_c02459{bottom:174.507067pt;}
.y19_c02459{bottom:245.226427pt;}
.y18_c02459{bottom:317.226619pt;}
.y15_c02459{bottom:361.386427pt;}
.y11_c02459{bottom:377.386939pt;}
.y17_c02459{bottom:394.666267pt;}
.y16_c02459{bottom:407.786011pt;}
.y14_c02459{bottom:437.226235pt;}
.y13_c02459{bottom:453.226747pt;}
.y10_c02459{bottom:482.666971pt;}
.y12_c02459{bottom:497.386555pt;}
.yf_c02459{bottom:513.387067pt;}
.y1d_c02459{bottom:546.027067pt;}
.yb_c02459{bottom:593.385179pt;}
.yd_c02459{bottom:628.586875pt;}
.yc_c02459{bottom:637.227067pt;}
.ya_c02459{bottom:707.945339pt;}
.y9_c02459{bottom:779.945531pt;}
.y7_c02459{bottom:823.786427pt;}
.y3_c02459{bottom:839.786939pt;}
.y8_c02459{bottom:870.505979pt;}
.y6_c02459{bottom:899.946203pt;}
.y5_c02459{bottom:915.946715pt;}
.y2_c02459{bottom:945.386939pt;}
.y4_c02459{bottom:959.786555pt;}
.y1_c02459{bottom:975.787067pt;}
.ye_c02459{bottom:1008.747067pt;}
.h3_c02459{height:28.916250pt;}
.h1_c02459{height:37.063125pt;}
.h2_c02459{height:37.166250pt;}
.h4_c02459{height:48.581988pt;}
.h0_c02459{height:1122.666667pt;}
.w1_c02459{width:793.333333pt;}
.w0_c02459{width:793.626667pt;}
.x0_c02459{left:0.000000pt;}
.xd_c02459{left:104.000000pt;}
.x8_c02459{left:391.999872pt;}
.x4_c02459{left:396.160512pt;}
.xb_c02459{left:400.960000pt;}
.x7_c02459{left:404.799648pt;}
.x5_c02459{left:410.560128pt;}
.x1_c02459{left:411.840000pt;}
.xa_c02459{left:429.760320pt;}
.x9_c02459{left:437.439552pt;}
.x6_c02459{left:438.400512pt;}
.xc_c02459{left:450.560320pt;}
.x3_c02459{left:455.039904pt;}
.x2_c02459{left:468.159648pt;}
.xe_c02459{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02460 {
    display:none;
  }
  .loading-indicator_c02460.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02460 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02460 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02460" -> "#page-container .classname_c02460")
 */
.pf_c02460 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02460 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02460 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02460 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02460 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02460 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02460 {overflow:visible;}
  }
}
.c_c02460 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02460 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02460:after { /* webkit #35443 */
  content: '';
}
.t_c02460:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02460 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02460 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02460 { /* info for Javascript */
  display:none;
}
.l_c02460 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02460 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02460 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02460:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02460 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02460.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02460 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02460{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02460;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02460{font-family:ff1_c02460;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02460;src:url('chunks/assets/font_0f9f54cf2c0b906d7652ade3.woff2')format("woff");}.ff2_c02460{font-family:ff2_c02460;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02460;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02460{font-family:ff3_c02460;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02460{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02460{vertical-align:0.000000px;}
.v1_c02460{vertical-align:1.439424px;}
.lsd_c02460{letter-spacing:-0.807840px;}
.ls7_c02460{letter-spacing:-0.679536px;}
.ls9_c02460{letter-spacing:-0.574992px;}
.ls14_c02460{letter-spacing:-0.323136px;}
.ls10_c02460{letter-spacing:-0.275616px;}
.lse_c02460{letter-spacing:-0.261360px;}
.ls6_c02460{letter-spacing:-0.242352px;}
.ls4_c02460{letter-spacing:-0.118800px;}
.ls15_c02460{letter-spacing:0.000000px;}
.ls1_c02460{letter-spacing:0.006048px;}
.lsc_c02460{letter-spacing:0.052272px;}
.ls5_c02460{letter-spacing:0.128304px;}
.ls13_c02460{letter-spacing:0.495936px;}
.lsb_c02460{letter-spacing:0.508464px;}
.ls12_c02460{letter-spacing:0.514080px;}
.lsf_c02460{letter-spacing:0.536976px;}
.lsa_c02460{letter-spacing:0.579744px;}
.ls11_c02460{letter-spacing:0.594000px;}
.ls8_c02460{letter-spacing:0.598752px;}
.ls2_c02460{letter-spacing:0.613008px;}
.ls0_c02460{letter-spacing:0.717552px;}
.ls3_c02460{letter-spacing:0.722304px;}
.sc__c02460{text-shadow:none;}
.sc0_c02460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02460{-webkit-text-stroke:0px transparent;}
.sc0_c02460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02460{word-spacing:-15.126048px;}
.wsc_c02460{word-spacing:-12.474000px;}
.wsb_c02460{word-spacing:-12.416976px;}
.ws4_c02460{word-spacing:-11.637648px;}
.ws2_c02460{word-spacing:-11.200464px;}
.ws17_c02460{word-spacing:-4.094496px;}
.ws19_c02460{word-spacing:-2.159136px;}
.ws13_c02460{word-spacing:-1.083456px;}
.ws12_c02460{word-spacing:-1.078704px;}
.wsf_c02460{word-spacing:-0.974160px;}
.ws11_c02460{word-spacing:-0.118800px;}
.ws15_c02460{word-spacing:-0.099792px;}
.ws16_c02460{word-spacing:-0.085536px;}
.ws18_c02460{word-spacing:-0.038016px;}
.ws10_c02460{word-spacing:0.000000px;}
.ws14_c02460{word-spacing:0.446688px;}
.wsa_c02460{word-spacing:3.236112px;}
.ws8_c02460{word-spacing:7.455888px;}
.wsd_c02460{word-spacing:33.300288px;}
.ws9_c02460{word-spacing:36.143712px;}
.ws6_c02460{word-spacing:36.742464px;}
.ws1_c02460{word-spacing:37.759392px;}
.ws0_c02460{word-spacing:38.020752px;}
.ws3_c02460{word-spacing:39.218256px;}
.ws5_c02460{word-spacing:39.902544px;}
.ws7_c02460{word-spacing:42.026688px;}
._0_c02460{margin-left:-1.948320px;}
._2_c02460{width:1.482624px;}
._9_c02460{width:2.504304px;}
._4_c02460{width:5.730912px;}
._a_c02460{width:15.050880px;}
._8_c02460{width:17.111952px;}
._7_c02460{width:18.314208px;}
._6_c02460{width:21.887712px;}
._5_c02460{width:24.325488px;}
._1_c02460{width:50.252400px;}
._3_c02460{width:51.530688px;}
.fc0_c02460{color:rgb(0,0,0);}
.fs0_c02460{font-size:47.520000px;}
.fs1_c02460{font-size:60.480000px;}
.y0_c02460{bottom:0.000000px;}
.y1c_c02460{bottom:146.999550px;}
.y1e_c02460{bottom:186.600234px;}
.y1d_c02460{bottom:196.320450px;}
.y1b_c02460{bottom:275.879730px;}
.y1a_c02460{bottom:356.879946px;}
.y17_c02460{bottom:406.559730px;}
.y13_c02460{bottom:424.560306px;}
.y19_c02460{bottom:443.999550px;}
.y18_c02460{bottom:458.759262px;}
.y16_c02460{bottom:491.879514px;}
.y15_c02460{bottom:509.880090px;}
.y12_c02460{bottom:543.000342px;}
.y14_c02460{bottom:559.559874px;}
.y11_c02460{bottom:577.560450px;}
.y1f_c02460{bottom:614.280450px;}
.yd_c02460{bottom:667.560702px;}
.yf_c02460{bottom:707.160234px;}
.ye_c02460{bottom:716.880450px;}
.yc_c02460{bottom:796.440882px;}
.yb_c02460{bottom:862.320234px;}
.ya_c02460{bottom:877.439910px;}
.y7_c02460{bottom:926.759730px;}
.y3_c02460{bottom:944.760306px;}
.y9_c02460{bottom:964.559514px;}
.y8_c02460{bottom:979.319226px;}
.y6_c02460{bottom:1012.439478px;}
.y5_c02460{bottom:1030.440054px;}
.y2_c02460{bottom:1063.560306px;}
.y4_c02460{bottom:1079.759874px;}
.y1_c02460{bottom:1097.760450px;}
.y10_c02460{bottom:1134.840450px;}
.h3_c02460{height:32.530781px;}
.h1_c02460{height:41.696016px;}
.h2_c02460{height:41.812031px;}
.h4_c02460{height:54.654737px;}
.h0_c02460{height:1263.000000px;}
.w1_c02460{width:892.500000px;}
.w0_c02460{width:892.830000px;}
.x0_c02460{left:0.000000px;}
.xe_c02460{left:117.000000px;}
.x8_c02460{left:440.999856px;}
.x4_c02460{left:445.680576px;}
.xc_c02460{left:451.080000px;}
.x7_c02460{left:455.399604px;}
.x5_c02460{left:461.880144px;}
.x1_c02460{left:463.320000px;}
.xb_c02460{left:483.480360px;}
.xa_c02460{left:492.119496px;}
.x6_c02460{left:493.200576px;}
.xd_c02460{left:506.880360px;}
.x3_c02460{left:511.919892px;}
.x2_c02460{left:526.679604px;}
.x9_c02460{left:569.880036px;}
@media print{
.v0_c02460{vertical-align:0.000000pt;}
.v1_c02460{vertical-align:1.279488pt;}
.lsd_c02460{letter-spacing:-0.718080pt;}
.ls7_c02460{letter-spacing:-0.604032pt;}
.ls9_c02460{letter-spacing:-0.511104pt;}
.ls14_c02460{letter-spacing:-0.287232pt;}
.ls10_c02460{letter-spacing:-0.244992pt;}
.lse_c02460{letter-spacing:-0.232320pt;}
.ls6_c02460{letter-spacing:-0.215424pt;}
.ls4_c02460{letter-spacing:-0.105600pt;}
.ls15_c02460{letter-spacing:0.000000pt;}
.ls1_c02460{letter-spacing:0.005376pt;}
.lsc_c02460{letter-spacing:0.046464pt;}
.ls5_c02460{letter-spacing:0.114048pt;}
.ls13_c02460{letter-spacing:0.440832pt;}
.lsb_c02460{letter-spacing:0.451968pt;}
.ls12_c02460{letter-spacing:0.456960pt;}
.lsf_c02460{letter-spacing:0.477312pt;}
.lsa_c02460{letter-spacing:0.515328pt;}
.ls11_c02460{letter-spacing:0.528000pt;}
.ls8_c02460{letter-spacing:0.532224pt;}
.ls2_c02460{letter-spacing:0.544896pt;}
.ls0_c02460{letter-spacing:0.637824pt;}
.ls3_c02460{letter-spacing:0.642048pt;}
.wse_c02460{word-spacing:-13.445376pt;}
.wsc_c02460{word-spacing:-11.088000pt;}
.wsb_c02460{word-spacing:-11.037312pt;}
.ws4_c02460{word-spacing:-10.344576pt;}
.ws2_c02460{word-spacing:-9.955968pt;}
.ws17_c02460{word-spacing:-3.639552pt;}
.ws19_c02460{word-spacing:-1.919232pt;}
.ws13_c02460{word-spacing:-0.963072pt;}
.ws12_c02460{word-spacing:-0.958848pt;}
.wsf_c02460{word-spacing:-0.865920pt;}
.ws11_c02460{word-spacing:-0.105600pt;}
.ws15_c02460{word-spacing:-0.088704pt;}
.ws16_c02460{word-spacing:-0.076032pt;}
.ws18_c02460{word-spacing:-0.033792pt;}
.ws10_c02460{word-spacing:0.000000pt;}
.ws14_c02460{word-spacing:0.397056pt;}
.wsa_c02460{word-spacing:2.876544pt;}
.ws8_c02460{word-spacing:6.627456pt;}
.wsd_c02460{word-spacing:29.600256pt;}
.ws9_c02460{word-spacing:32.127744pt;}
.ws6_c02460{word-spacing:32.659968pt;}
.ws1_c02460{word-spacing:33.563904pt;}
.ws0_c02460{word-spacing:33.796224pt;}
.ws3_c02460{word-spacing:34.860672pt;}
.ws5_c02460{word-spacing:35.468928pt;}
.ws7_c02460{word-spacing:37.357056pt;}
._0_c02460{margin-left:-1.731840pt;}
._2_c02460{width:1.317888pt;}
._9_c02460{width:2.226048pt;}
._4_c02460{width:5.094144pt;}
._a_c02460{width:13.378560pt;}
._8_c02460{width:15.210624pt;}
._7_c02460{width:16.279296pt;}
._6_c02460{width:19.455744pt;}
._5_c02460{width:21.622656pt;}
._1_c02460{width:44.668800pt;}
._3_c02460{width:45.805056pt;}
.fs0_c02460{font-size:42.240000pt;}
.fs1_c02460{font-size:53.760000pt;}
.y0_c02460{bottom:0.000000pt;}
.y1c_c02460{bottom:130.666267pt;}
.y1e_c02460{bottom:165.866875pt;}
.y1d_c02460{bottom:174.507067pt;}
.y1b_c02460{bottom:245.226427pt;}
.y1a_c02460{bottom:317.226619pt;}
.y17_c02460{bottom:361.386427pt;}
.y13_c02460{bottom:377.386939pt;}
.y19_c02460{bottom:394.666267pt;}
.y18_c02460{bottom:407.786011pt;}
.y16_c02460{bottom:437.226235pt;}
.y15_c02460{bottom:453.226747pt;}
.y12_c02460{bottom:482.666971pt;}
.y14_c02460{bottom:497.386555pt;}
.y11_c02460{bottom:513.387067pt;}
.y1f_c02460{bottom:546.027067pt;}
.yd_c02460{bottom:593.387291pt;}
.yf_c02460{bottom:628.586875pt;}
.ye_c02460{bottom:637.227067pt;}
.yc_c02460{bottom:707.947451pt;}
.yb_c02460{bottom:766.506875pt;}
.ya_c02460{bottom:779.946587pt;}
.y7_c02460{bottom:823.786427pt;}
.y3_c02460{bottom:839.786939pt;}
.y9_c02460{bottom:857.386235pt;}
.y8_c02460{bottom:870.505979pt;}
.y6_c02460{bottom:899.946203pt;}
.y5_c02460{bottom:915.946715pt;}
.y2_c02460{bottom:945.386939pt;}
.y4_c02460{bottom:959.786555pt;}
.y1_c02460{bottom:975.787067pt;}
.y10_c02460{bottom:1008.747067pt;}
.h3_c02460{height:28.916250pt;}
.h1_c02460{height:37.063125pt;}
.h2_c02460{height:37.166250pt;}
.h4_c02460{height:48.581988pt;}
.h0_c02460{height:1122.666667pt;}
.w1_c02460{width:793.333333pt;}
.w0_c02460{width:793.626667pt;}
.x0_c02460{left:0.000000pt;}
.xe_c02460{left:104.000000pt;}
.x8_c02460{left:391.999872pt;}
.x4_c02460{left:396.160512pt;}
.xc_c02460{left:400.960000pt;}
.x7_c02460{left:404.799648pt;}
.x5_c02460{left:410.560128pt;}
.x1_c02460{left:411.840000pt;}
.xb_c02460{left:429.760320pt;}
.xa_c02460{left:437.439552pt;}
.x6_c02460{left:438.400512pt;}
.xd_c02460{left:450.560320pt;}
.x3_c02460{left:455.039904pt;}
.x2_c02460{left:468.159648pt;}
.x9_c02460{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02461 {
    display:none;
  }
  .loading-indicator_c02461.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02461 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02461 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02461" -> "#page-container .classname_c02461")
 */
.pf_c02461 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02461 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02461 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02461 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02461 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02461 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02461 {overflow:visible;}
  }
}
.c_c02461 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02461 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02461:after { /* webkit #35443 */
  content: '';
}
.t_c02461:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02461 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02461 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02461 { /* info for Javascript */
  display:none;
}
.l_c02461 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02461 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02461 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02461:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02461 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02461.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02461 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02461{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02461;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02461{font-family:ff1_c02461;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02461;src:url('chunks/assets/font_0f9f54cf2c0b906d7652ade3.woff2')format("woff");}.ff2_c02461{font-family:ff2_c02461;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02461;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02461{font-family:ff3_c02461;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02461{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02461{vertical-align:0.000000px;}
.v1_c02461{vertical-align:1.439424px;}
.lsd_c02461{letter-spacing:-0.807840px;}
.ls7_c02461{letter-spacing:-0.679536px;}
.ls9_c02461{letter-spacing:-0.574992px;}
.ls14_c02461{letter-spacing:-0.323136px;}
.ls10_c02461{letter-spacing:-0.275616px;}
.lse_c02461{letter-spacing:-0.261360px;}
.ls6_c02461{letter-spacing:-0.242352px;}
.ls4_c02461{letter-spacing:-0.118800px;}
.ls13_c02461{letter-spacing:0.000000px;}
.ls1_c02461{letter-spacing:0.006048px;}
.lsc_c02461{letter-spacing:0.052272px;}
.ls5_c02461{letter-spacing:0.128304px;}
.lsb_c02461{letter-spacing:0.508464px;}
.ls12_c02461{letter-spacing:0.514080px;}
.lsf_c02461{letter-spacing:0.536976px;}
.lsa_c02461{letter-spacing:0.579744px;}
.ls11_c02461{letter-spacing:0.594000px;}
.ls8_c02461{letter-spacing:0.598752px;}
.ls2_c02461{letter-spacing:0.613008px;}
.ls0_c02461{letter-spacing:0.717552px;}
.ls3_c02461{letter-spacing:0.722304px;}
.sc__c02461{text-shadow:none;}
.sc0_c02461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02461{-webkit-text-stroke:0px transparent;}
.sc0_c02461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02461{word-spacing:-15.126048px;}
.wsc_c02461{word-spacing:-12.474000px;}
.wsb_c02461{word-spacing:-12.416976px;}
.ws4_c02461{word-spacing:-11.637648px;}
.ws2_c02461{word-spacing:-11.200464px;}
.ws17_c02461{word-spacing:-2.159136px;}
.ws13_c02461{word-spacing:-1.083456px;}
.ws12_c02461{word-spacing:-1.078704px;}
.wsf_c02461{word-spacing:-0.974160px;}
.ws11_c02461{word-spacing:-0.118800px;}
.ws15_c02461{word-spacing:-0.099792px;}
.ws16_c02461{word-spacing:-0.085536px;}
.ws18_c02461{word-spacing:-0.038016px;}
.ws10_c02461{word-spacing:0.000000px;}
.ws14_c02461{word-spacing:0.446688px;}
.wsa_c02461{word-spacing:3.236112px;}
.ws8_c02461{word-spacing:7.455888px;}
.wsd_c02461{word-spacing:33.300288px;}
.ws9_c02461{word-spacing:36.143712px;}
.ws6_c02461{word-spacing:36.742464px;}
.ws1_c02461{word-spacing:37.759392px;}
.ws0_c02461{word-spacing:38.020752px;}
.ws3_c02461{word-spacing:39.218256px;}
.ws5_c02461{word-spacing:39.902544px;}
.ws7_c02461{word-spacing:42.026688px;}
._0_c02461{margin-left:-1.948320px;}
._2_c02461{width:1.482624px;}
._9_c02461{width:2.504304px;}
._4_c02461{width:5.730912px;}
._8_c02461{width:17.111952px;}
._7_c02461{width:18.314208px;}
._6_c02461{width:21.887712px;}
._5_c02461{width:24.325488px;}
._1_c02461{width:50.252400px;}
._3_c02461{width:51.530688px;}
.fc0_c02461{color:rgb(0,0,0);}
.fs0_c02461{font-size:47.520000px;}
.fs1_c02461{font-size:60.480000px;}
.y0_c02461{bottom:0.000000px;}
.y1c_c02461{bottom:146.999550px;}
.y1e_c02461{bottom:186.600234px;}
.y1d_c02461{bottom:196.320450px;}
.y1b_c02461{bottom:275.879730px;}
.y1a_c02461{bottom:356.879946px;}
.y17_c02461{bottom:406.559730px;}
.y13_c02461{bottom:424.560306px;}
.y19_c02461{bottom:443.999550px;}
.y18_c02461{bottom:458.759262px;}
.y16_c02461{bottom:491.879514px;}
.y15_c02461{bottom:509.880090px;}
.y12_c02461{bottom:543.000342px;}
.y14_c02461{bottom:559.559874px;}
.y11_c02461{bottom:577.560450px;}
.y1f_c02461{bottom:614.280450px;}
.yd_c02461{bottom:667.560702px;}
.yf_c02461{bottom:707.160234px;}
.ye_c02461{bottom:716.880450px;}
.yc_c02461{bottom:796.440882px;}
.yb_c02461{bottom:862.320234px;}
.ya_c02461{bottom:877.439910px;}
.y7_c02461{bottom:926.759730px;}
.y3_c02461{bottom:944.760306px;}
.y9_c02461{bottom:964.559514px;}
.y8_c02461{bottom:979.319226px;}
.y6_c02461{bottom:1012.439478px;}
.y5_c02461{bottom:1030.440054px;}
.y2_c02461{bottom:1063.560306px;}
.y4_c02461{bottom:1079.759874px;}
.y1_c02461{bottom:1097.760450px;}
.y10_c02461{bottom:1134.840450px;}
.h3_c02461{height:32.530781px;}
.h1_c02461{height:41.696016px;}
.h2_c02461{height:41.812031px;}
.h4_c02461{height:54.654737px;}
.h0_c02461{height:1263.000000px;}
.w1_c02461{width:892.500000px;}
.w0_c02461{width:892.830000px;}
.x0_c02461{left:0.000000px;}
.xe_c02461{left:117.000000px;}
.x8_c02461{left:440.999856px;}
.x4_c02461{left:445.680576px;}
.xc_c02461{left:451.080000px;}
.x7_c02461{left:455.399604px;}
.x5_c02461{left:461.880144px;}
.x1_c02461{left:463.320000px;}
.xb_c02461{left:483.480360px;}
.xa_c02461{left:492.119496px;}
.x6_c02461{left:493.200576px;}
.xd_c02461{left:506.880360px;}
.x3_c02461{left:511.919892px;}
.x2_c02461{left:526.679604px;}
.x9_c02461{left:569.880036px;}
@media print{
.v0_c02461{vertical-align:0.000000pt;}
.v1_c02461{vertical-align:1.279488pt;}
.lsd_c02461{letter-spacing:-0.718080pt;}
.ls7_c02461{letter-spacing:-0.604032pt;}
.ls9_c02461{letter-spacing:-0.511104pt;}
.ls14_c02461{letter-spacing:-0.287232pt;}
.ls10_c02461{letter-spacing:-0.244992pt;}
.lse_c02461{letter-spacing:-0.232320pt;}
.ls6_c02461{letter-spacing:-0.215424pt;}
.ls4_c02461{letter-spacing:-0.105600pt;}
.ls13_c02461{letter-spacing:0.000000pt;}
.ls1_c02461{letter-spacing:0.005376pt;}
.lsc_c02461{letter-spacing:0.046464pt;}
.ls5_c02461{letter-spacing:0.114048pt;}
.lsb_c02461{letter-spacing:0.451968pt;}
.ls12_c02461{letter-spacing:0.456960pt;}
.lsf_c02461{letter-spacing:0.477312pt;}
.lsa_c02461{letter-spacing:0.515328pt;}
.ls11_c02461{letter-spacing:0.528000pt;}
.ls8_c02461{letter-spacing:0.532224pt;}
.ls2_c02461{letter-spacing:0.544896pt;}
.ls0_c02461{letter-spacing:0.637824pt;}
.ls3_c02461{letter-spacing:0.642048pt;}
.wse_c02461{word-spacing:-13.445376pt;}
.wsc_c02461{word-spacing:-11.088000pt;}
.wsb_c02461{word-spacing:-11.037312pt;}
.ws4_c02461{word-spacing:-10.344576pt;}
.ws2_c02461{word-spacing:-9.955968pt;}
.ws17_c02461{word-spacing:-1.919232pt;}
.ws13_c02461{word-spacing:-0.963072pt;}
.ws12_c02461{word-spacing:-0.958848pt;}
.wsf_c02461{word-spacing:-0.865920pt;}
.ws11_c02461{word-spacing:-0.105600pt;}
.ws15_c02461{word-spacing:-0.088704pt;}
.ws16_c02461{word-spacing:-0.076032pt;}
.ws18_c02461{word-spacing:-0.033792pt;}
.ws10_c02461{word-spacing:0.000000pt;}
.ws14_c02461{word-spacing:0.397056pt;}
.wsa_c02461{word-spacing:2.876544pt;}
.ws8_c02461{word-spacing:6.627456pt;}
.wsd_c02461{word-spacing:29.600256pt;}
.ws9_c02461{word-spacing:32.127744pt;}
.ws6_c02461{word-spacing:32.659968pt;}
.ws1_c02461{word-spacing:33.563904pt;}
.ws0_c02461{word-spacing:33.796224pt;}
.ws3_c02461{word-spacing:34.860672pt;}
.ws5_c02461{word-spacing:35.468928pt;}
.ws7_c02461{word-spacing:37.357056pt;}
._0_c02461{margin-left:-1.731840pt;}
._2_c02461{width:1.317888pt;}
._9_c02461{width:2.226048pt;}
._4_c02461{width:5.094144pt;}
._8_c02461{width:15.210624pt;}
._7_c02461{width:16.279296pt;}
._6_c02461{width:19.455744pt;}
._5_c02461{width:21.622656pt;}
._1_c02461{width:44.668800pt;}
._3_c02461{width:45.805056pt;}
.fs0_c02461{font-size:42.240000pt;}
.fs1_c02461{font-size:53.760000pt;}
.y0_c02461{bottom:0.000000pt;}
.y1c_c02461{bottom:130.666267pt;}
.y1e_c02461{bottom:165.866875pt;}
.y1d_c02461{bottom:174.507067pt;}
.y1b_c02461{bottom:245.226427pt;}
.y1a_c02461{bottom:317.226619pt;}
.y17_c02461{bottom:361.386427pt;}
.y13_c02461{bottom:377.386939pt;}
.y19_c02461{bottom:394.666267pt;}
.y18_c02461{bottom:407.786011pt;}
.y16_c02461{bottom:437.226235pt;}
.y15_c02461{bottom:453.226747pt;}
.y12_c02461{bottom:482.666971pt;}
.y14_c02461{bottom:497.386555pt;}
.y11_c02461{bottom:513.387067pt;}
.y1f_c02461{bottom:546.027067pt;}
.yd_c02461{bottom:593.387291pt;}
.yf_c02461{bottom:628.586875pt;}
.ye_c02461{bottom:637.227067pt;}
.yc_c02461{bottom:707.947451pt;}
.yb_c02461{bottom:766.506875pt;}
.ya_c02461{bottom:779.946587pt;}
.y7_c02461{bottom:823.786427pt;}
.y3_c02461{bottom:839.786939pt;}
.y9_c02461{bottom:857.386235pt;}
.y8_c02461{bottom:870.505979pt;}
.y6_c02461{bottom:899.946203pt;}
.y5_c02461{bottom:915.946715pt;}
.y2_c02461{bottom:945.386939pt;}
.y4_c02461{bottom:959.786555pt;}
.y1_c02461{bottom:975.787067pt;}
.y10_c02461{bottom:1008.747067pt;}
.h3_c02461{height:28.916250pt;}
.h1_c02461{height:37.063125pt;}
.h2_c02461{height:37.166250pt;}
.h4_c02461{height:48.581988pt;}
.h0_c02461{height:1122.666667pt;}
.w1_c02461{width:793.333333pt;}
.w0_c02461{width:793.626667pt;}
.x0_c02461{left:0.000000pt;}
.xe_c02461{left:104.000000pt;}
.x8_c02461{left:391.999872pt;}
.x4_c02461{left:396.160512pt;}
.xc_c02461{left:400.960000pt;}
.x7_c02461{left:404.799648pt;}
.x5_c02461{left:410.560128pt;}
.x1_c02461{left:411.840000pt;}
.xb_c02461{left:429.760320pt;}
.xa_c02461{left:437.439552pt;}
.x6_c02461{left:438.400512pt;}
.xd_c02461{left:450.560320pt;}
.x3_c02461{left:455.039904pt;}
.x2_c02461{left:468.159648pt;}
.x9_c02461{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02462 {
    display:none;
  }
  .loading-indicator_c02462.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02462 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02462 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02462" -> "#page-container .classname_c02462")
 */
.pf_c02462 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02462 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02462 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02462 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02462 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02462 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02462 {overflow:visible;}
  }
}
.c_c02462 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02462 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02462:after { /* webkit #35443 */
  content: '';
}
.t_c02462:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02462 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02462 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02462 { /* info for Javascript */
  display:none;
}
.l_c02462 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02462 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02462 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02462:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02462 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02462.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02462 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02462{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02462;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02462{font-family:ff1_c02462;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02462;src:url('chunks/assets/font_814607c077b328bf893c3c6e.woff2')format("woff");}.ff2_c02462{font-family:ff2_c02462;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02462;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02462{font-family:ff3_c02462;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02462{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02462{vertical-align:0.000000px;}
.v1_c02462{vertical-align:1.439424px;}
.v2_c02462{vertical-align:33.121440px;}
.ls16_c02462{letter-spacing:-0.793584px;}
.ls14_c02462{letter-spacing:-0.722304px;}
.ls7_c02462{letter-spacing:-0.679536px;}
.ls9_c02462{letter-spacing:-0.574992px;}
.ls17_c02462{letter-spacing:-0.394416px;}
.ls18_c02462{letter-spacing:-0.327888px;}
.lsd_c02462{letter-spacing:-0.323136px;}
.ls10_c02462{letter-spacing:-0.275616px;}
.lse_c02462{letter-spacing:-0.261360px;}
.ls6_c02462{letter-spacing:-0.242352px;}
.ls4_c02462{letter-spacing:-0.118800px;}
.ls13_c02462{letter-spacing:0.000000px;}
.ls1_c02462{letter-spacing:0.006048px;}
.lsc_c02462{letter-spacing:0.052272px;}
.ls5_c02462{letter-spacing:0.128304px;}
.lsb_c02462{letter-spacing:0.508464px;}
.ls12_c02462{letter-spacing:0.514080px;}
.lsf_c02462{letter-spacing:0.536976px;}
.lsa_c02462{letter-spacing:0.579744px;}
.ls11_c02462{letter-spacing:0.594000px;}
.ls8_c02462{letter-spacing:0.598752px;}
.ls3_c02462{letter-spacing:0.613008px;}
.ls15_c02462{letter-spacing:0.636768px;}
.ls0_c02462{letter-spacing:0.717552px;}
.ls2_c02462{letter-spacing:0.722304px;}
.sc__c02462{text-shadow:none;}
.sc0_c02462{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02462{-webkit-text-stroke:0px transparent;}
.sc0_c02462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02462{word-spacing:-15.126048px;}
.wse_c02462{word-spacing:-12.602304px;}
.wsb_c02462{word-spacing:-12.474000px;}
.wsf_c02462{word-spacing:-12.459744px;}
.wsa_c02462{word-spacing:-12.416976px;}
.ws4_c02462{word-spacing:-11.637648px;}
.ws2_c02462{word-spacing:-11.200464px;}
.ws1c_c02462{word-spacing:-2.159136px;}
.ws18_c02462{word-spacing:-1.083456px;}
.ws17_c02462{word-spacing:-1.078704px;}
.ws14_c02462{word-spacing:-0.974160px;}
.ws16_c02462{word-spacing:-0.118800px;}
.ws1a_c02462{word-spacing:-0.099792px;}
.ws1b_c02462{word-spacing:-0.085536px;}
.ws19_c02462{word-spacing:-0.038016px;}
.ws15_c02462{word-spacing:0.000000px;}
.ws1f_c02462{word-spacing:0.033264px;}
.ws1d_c02462{word-spacing:0.361152px;}
.ws1e_c02462{word-spacing:0.432432px;}
.ws8_c02462{word-spacing:7.455888px;}
.ws10_c02462{word-spacing:24.244704px;}
.ws13_c02462{word-spacing:28.735344px;}
.ws12_c02462{word-spacing:30.298752px;}
.wsc_c02462{word-spacing:33.300288px;}
.ws9_c02462{word-spacing:36.143712px;}
.ws6_c02462{word-spacing:36.742464px;}
.ws1_c02462{word-spacing:37.759392px;}
.ws0_c02462{word-spacing:38.020752px;}
.ws3_c02462{word-spacing:39.218256px;}
.ws5_c02462{word-spacing:39.902544px;}
.ws7_c02462{word-spacing:42.026688px;}
.ws11_c02462{word-spacing:44.203104px;}
._0_c02462{margin-left:-1.948320px;}
._2_c02462{width:1.482624px;}
._4_c02462{width:5.730912px;}
._6_c02462{width:21.887712px;}
._5_c02462{width:24.325488px;}
._8_c02462{width:31.838400px;}
._9_c02462{width:34.627824px;}
._7_c02462{width:36.913536px;}
._d_c02462{width:42.977088px;}
._1_c02462{width:50.252400px;}
._3_c02462{width:51.530688px;}
._b_c02462{width:59.894208px;}
._c_c02462{width:62.350992px;}
._a_c02462{width:63.386928px;}
.fc0_c02462{color:rgb(0,0,0);}
.fs0_c02462{font-size:47.520000px;}
.fs1_c02462{font-size:60.480000px;}
.y0_c02462{bottom:0.000000px;}
.y1c_c02462{bottom:146.999550px;}
.y1f_c02462{bottom:179.760918px;}
.y1e_c02462{bottom:186.600234px;}
.y1d_c02462{bottom:196.320450px;}
.y1b_c02462{bottom:275.879730px;}
.y1a_c02462{bottom:326.999370px;}
.y19_c02462{bottom:341.759082px;}
.y18_c02462{bottom:356.878758px;}
.y16_c02462{bottom:406.559730px;}
.y12_c02462{bottom:424.560306px;}
.y17_c02462{bottom:458.759262px;}
.y15_c02462{bottom:491.879514px;}
.y14_c02462{bottom:509.880090px;}
.y11_c02462{bottom:543.000342px;}
.y13_c02462{bottom:559.559874px;}
.y10_c02462{bottom:577.560450px;}
.y20_c02462{bottom:614.280450px;}
.yc_c02462{bottom:667.559514px;}
.ye_c02462{bottom:707.160234px;}
.yd_c02462{bottom:716.880450px;}
.yb_c02462{bottom:796.439694px;}
.ya_c02462{bottom:877.439910px;}
.y7_c02462{bottom:926.759730px;}
.y3_c02462{bottom:944.760306px;}
.y9_c02462{bottom:964.559514px;}
.y8_c02462{bottom:979.319226px;}
.y6_c02462{bottom:1012.439478px;}
.y5_c02462{bottom:1030.440054px;}
.y2_c02462{bottom:1063.560306px;}
.y4_c02462{bottom:1079.759874px;}
.y1_c02462{bottom:1097.760450px;}
.yf_c02462{bottom:1134.840450px;}
.h3_c02462{height:32.530781px;}
.h1_c02462{height:41.696016px;}
.h2_c02462{height:41.812031px;}
.h4_c02462{height:54.654737px;}
.h5_c02462{height:74.817456px;}
.h0_c02462{height:1263.000000px;}
.w1_c02462{width:892.500000px;}
.w0_c02462{width:892.830000px;}
.x0_c02462{left:0.000000px;}
.xe_c02462{left:117.000000px;}
.x8_c02462{left:440.999856px;}
.x4_c02462{left:445.680576px;}
.xc_c02462{left:451.080000px;}
.x7_c02462{left:455.399604px;}
.x5_c02462{left:461.880144px;}
.x1_c02462{left:463.320000px;}
.xb_c02462{left:483.480360px;}
.xa_c02462{left:492.119496px;}
.x6_c02462{left:493.200576px;}
.xd_c02462{left:506.880360px;}
.x3_c02462{left:511.919892px;}
.x2_c02462{left:526.679604px;}
.x9_c02462{left:569.880036px;}
@media print{
.v0_c02462{vertical-align:0.000000pt;}
.v1_c02462{vertical-align:1.279488pt;}
.v2_c02462{vertical-align:29.441280pt;}
.ls16_c02462{letter-spacing:-0.705408pt;}
.ls14_c02462{letter-spacing:-0.642048pt;}
.ls7_c02462{letter-spacing:-0.604032pt;}
.ls9_c02462{letter-spacing:-0.511104pt;}
.ls17_c02462{letter-spacing:-0.350592pt;}
.ls18_c02462{letter-spacing:-0.291456pt;}
.lsd_c02462{letter-spacing:-0.287232pt;}
.ls10_c02462{letter-spacing:-0.244992pt;}
.lse_c02462{letter-spacing:-0.232320pt;}
.ls6_c02462{letter-spacing:-0.215424pt;}
.ls4_c02462{letter-spacing:-0.105600pt;}
.ls13_c02462{letter-spacing:0.000000pt;}
.ls1_c02462{letter-spacing:0.005376pt;}
.lsc_c02462{letter-spacing:0.046464pt;}
.ls5_c02462{letter-spacing:0.114048pt;}
.lsb_c02462{letter-spacing:0.451968pt;}
.ls12_c02462{letter-spacing:0.456960pt;}
.lsf_c02462{letter-spacing:0.477312pt;}
.lsa_c02462{letter-spacing:0.515328pt;}
.ls11_c02462{letter-spacing:0.528000pt;}
.ls8_c02462{letter-spacing:0.532224pt;}
.ls3_c02462{letter-spacing:0.544896pt;}
.ls15_c02462{letter-spacing:0.566016pt;}
.ls0_c02462{letter-spacing:0.637824pt;}
.ls2_c02462{letter-spacing:0.642048pt;}
.wsd_c02462{word-spacing:-13.445376pt;}
.wse_c02462{word-spacing:-11.202048pt;}
.wsb_c02462{word-spacing:-11.088000pt;}
.wsf_c02462{word-spacing:-11.075328pt;}
.wsa_c02462{word-spacing:-11.037312pt;}
.ws4_c02462{word-spacing:-10.344576pt;}
.ws2_c02462{word-spacing:-9.955968pt;}
.ws1c_c02462{word-spacing:-1.919232pt;}
.ws18_c02462{word-spacing:-0.963072pt;}
.ws17_c02462{word-spacing:-0.958848pt;}
.ws14_c02462{word-spacing:-0.865920pt;}
.ws16_c02462{word-spacing:-0.105600pt;}
.ws1a_c02462{word-spacing:-0.088704pt;}
.ws1b_c02462{word-spacing:-0.076032pt;}
.ws19_c02462{word-spacing:-0.033792pt;}
.ws15_c02462{word-spacing:0.000000pt;}
.ws1f_c02462{word-spacing:0.029568pt;}
.ws1d_c02462{word-spacing:0.321024pt;}
.ws1e_c02462{word-spacing:0.384384pt;}
.ws8_c02462{word-spacing:6.627456pt;}
.ws10_c02462{word-spacing:21.550848pt;}
.ws13_c02462{word-spacing:25.542528pt;}
.ws12_c02462{word-spacing:26.932224pt;}
.wsc_c02462{word-spacing:29.600256pt;}
.ws9_c02462{word-spacing:32.127744pt;}
.ws6_c02462{word-spacing:32.659968pt;}
.ws1_c02462{word-spacing:33.563904pt;}
.ws0_c02462{word-spacing:33.796224pt;}
.ws3_c02462{word-spacing:34.860672pt;}
.ws5_c02462{word-spacing:35.468928pt;}
.ws7_c02462{word-spacing:37.357056pt;}
.ws11_c02462{word-spacing:39.291648pt;}
._0_c02462{margin-left:-1.731840pt;}
._2_c02462{width:1.317888pt;}
._4_c02462{width:5.094144pt;}
._6_c02462{width:19.455744pt;}
._5_c02462{width:21.622656pt;}
._8_c02462{width:28.300800pt;}
._9_c02462{width:30.780288pt;}
._7_c02462{width:32.812032pt;}
._d_c02462{width:38.201856pt;}
._1_c02462{width:44.668800pt;}
._3_c02462{width:45.805056pt;}
._b_c02462{width:53.239296pt;}
._c_c02462{width:55.423104pt;}
._a_c02462{width:56.343936pt;}
.fs0_c02462{font-size:42.240000pt;}
.fs1_c02462{font-size:53.760000pt;}
.y0_c02462{bottom:0.000000pt;}
.y1c_c02462{bottom:130.666267pt;}
.y1f_c02462{bottom:159.787483pt;}
.y1e_c02462{bottom:165.866875pt;}
.y1d_c02462{bottom:174.507067pt;}
.y1b_c02462{bottom:245.226427pt;}
.y1a_c02462{bottom:290.666107pt;}
.y19_c02462{bottom:303.785851pt;}
.y18_c02462{bottom:317.225563pt;}
.y16_c02462{bottom:361.386427pt;}
.y12_c02462{bottom:377.386939pt;}
.y17_c02462{bottom:407.786011pt;}
.y15_c02462{bottom:437.226235pt;}
.y14_c02462{bottom:453.226747pt;}
.y11_c02462{bottom:482.666971pt;}
.y13_c02462{bottom:497.386555pt;}
.y10_c02462{bottom:513.387067pt;}
.y20_c02462{bottom:546.027067pt;}
.yc_c02462{bottom:593.386235pt;}
.ye_c02462{bottom:628.586875pt;}
.yd_c02462{bottom:637.227067pt;}
.yb_c02462{bottom:707.946395pt;}
.ya_c02462{bottom:779.946587pt;}
.y7_c02462{bottom:823.786427pt;}
.y3_c02462{bottom:839.786939pt;}
.y9_c02462{bottom:857.386235pt;}
.y8_c02462{bottom:870.505979pt;}
.y6_c02462{bottom:899.946203pt;}
.y5_c02462{bottom:915.946715pt;}
.y2_c02462{bottom:945.386939pt;}
.y4_c02462{bottom:959.786555pt;}
.y1_c02462{bottom:975.787067pt;}
.yf_c02462{bottom:1008.747067pt;}
.h3_c02462{height:28.916250pt;}
.h1_c02462{height:37.063125pt;}
.h2_c02462{height:37.166250pt;}
.h4_c02462{height:48.581988pt;}
.h5_c02462{height:66.504405pt;}
.h0_c02462{height:1122.666667pt;}
.w1_c02462{width:793.333333pt;}
.w0_c02462{width:793.626667pt;}
.x0_c02462{left:0.000000pt;}
.xe_c02462{left:104.000000pt;}
.x8_c02462{left:391.999872pt;}
.x4_c02462{left:396.160512pt;}
.xc_c02462{left:400.960000pt;}
.x7_c02462{left:404.799648pt;}
.x5_c02462{left:410.560128pt;}
.x1_c02462{left:411.840000pt;}
.xb_c02462{left:429.760320pt;}
.xa_c02462{left:437.439552pt;}
.x6_c02462{left:438.400512pt;}
.xd_c02462{left:450.560320pt;}
.x3_c02462{left:455.039904pt;}
.x2_c02462{left:468.159648pt;}
.x9_c02462{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02463 {
    display:none;
  }
  .loading-indicator_c02463.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02463 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02463 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02463" -> "#page-container .classname_c02463")
 */
.pf_c02463 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02463 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02463 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02463 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02463 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02463 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02463 {overflow:visible;}
  }
}
.c_c02463 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02463 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02463:after { /* webkit #35443 */
  content: '';
}
.t_c02463:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02463 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02463 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02463 { /* info for Javascript */
  display:none;
}
.l_c02463 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02463 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02463 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02463:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02463 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02463.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02463 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02463{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02463;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02463{font-family:ff1_c02463;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02463;src:url('chunks/assets/font_86d67243677597821471610a.woff2')format("woff");}.ff2_c02463{font-family:ff2_c02463;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02463;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02463{font-family:ff3_c02463;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02463{vertical-align:0.000000px;}
.v1_c02463{vertical-align:1.439424px;}
.ls14_c02463{letter-spacing:-1.197504px;}
.ls7_c02463{letter-spacing:-0.679536px;}
.ls9_c02463{letter-spacing:-0.574992px;}
.lsd_c02463{letter-spacing:-0.323136px;}
.ls10_c02463{letter-spacing:-0.275616px;}
.lse_c02463{letter-spacing:-0.261360px;}
.ls6_c02463{letter-spacing:-0.242352px;}
.ls4_c02463{letter-spacing:-0.118800px;}
.ls13_c02463{letter-spacing:0.000000px;}
.ls1_c02463{letter-spacing:0.006048px;}
.lsc_c02463{letter-spacing:0.052272px;}
.ls5_c02463{letter-spacing:0.128304px;}
.lsb_c02463{letter-spacing:0.508464px;}
.ls12_c02463{letter-spacing:0.514080px;}
.lsf_c02463{letter-spacing:0.536976px;}
.lsa_c02463{letter-spacing:0.579744px;}
.ls11_c02463{letter-spacing:0.594000px;}
.ls8_c02463{letter-spacing:0.598752px;}
.ls2_c02463{letter-spacing:0.613008px;}
.ls0_c02463{letter-spacing:0.717552px;}
.ls3_c02463{letter-spacing:0.722304px;}
.sc__c02463{text-shadow:none;}
.sc0_c02463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02463{-webkit-text-stroke:0px transparent;}
.sc0_c02463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02463{word-spacing:-15.126048px;}
.wsb_c02463{word-spacing:-12.474000px;}
.wsa_c02463{word-spacing:-12.416976px;}
.ws4_c02463{word-spacing:-11.637648px;}
.ws2_c02463{word-spacing:-11.200464px;}
.ws16_c02463{word-spacing:-2.159136px;}
.ws12_c02463{word-spacing:-1.083456px;}
.ws11_c02463{word-spacing:-1.078704px;}
.wse_c02463{word-spacing:-0.974160px;}
.ws10_c02463{word-spacing:-0.118800px;}
.ws14_c02463{word-spacing:-0.099792px;}
.ws15_c02463{word-spacing:-0.085536px;}
.ws13_c02463{word-spacing:-0.038016px;}
.wsf_c02463{word-spacing:0.000000px;}
.ws17_c02463{word-spacing:0.836352px;}
.ws8_c02463{word-spacing:7.455888px;}
.wsc_c02463{word-spacing:33.300288px;}
.ws9_c02463{word-spacing:36.143712px;}
.ws6_c02463{word-spacing:36.742464px;}
.ws1_c02463{word-spacing:37.759392px;}
.ws0_c02463{word-spacing:38.020752px;}
.ws3_c02463{word-spacing:39.218256px;}
.ws5_c02463{word-spacing:39.902544px;}
.ws7_c02463{word-spacing:42.026688px;}
._0_c02463{margin-left:-1.948320px;}
._2_c02463{width:1.482624px;}
._7_c02463{width:2.770416px;}
._4_c02463{width:5.730912px;}
._6_c02463{width:21.887712px;}
._5_c02463{width:24.325488px;}
._1_c02463{width:50.252400px;}
._3_c02463{width:51.530688px;}
.fc0_c02463{color:rgb(0,0,0);}
.fs0_c02463{font-size:47.520000px;}
.fs1_c02463{font-size:60.480000px;}
.y0_c02463{bottom:0.000000px;}
.y1a_c02463{bottom:146.998362px;}
.y1c_c02463{bottom:186.600234px;}
.y1b_c02463{bottom:196.320450px;}
.y19_c02463{bottom:275.878542px;}
.y18_c02463{bottom:356.878758px;}
.y16_c02463{bottom:406.559730px;}
.y12_c02463{bottom:424.560306px;}
.y17_c02463{bottom:458.759262px;}
.y15_c02463{bottom:491.879514px;}
.y14_c02463{bottom:509.880090px;}
.y11_c02463{bottom:543.000342px;}
.y13_c02463{bottom:559.559874px;}
.y10_c02463{bottom:577.560450px;}
.y1d_c02463{bottom:614.280450px;}
.yc_c02463{bottom:667.559514px;}
.ye_c02463{bottom:707.160234px;}
.yd_c02463{bottom:716.880450px;}
.yb_c02463{bottom:796.439694px;}
.ya_c02463{bottom:877.439910px;}
.y7_c02463{bottom:926.759730px;}
.y3_c02463{bottom:944.760306px;}
.y9_c02463{bottom:964.559514px;}
.y8_c02463{bottom:979.319226px;}
.y6_c02463{bottom:1012.439478px;}
.y5_c02463{bottom:1030.440054px;}
.y2_c02463{bottom:1063.560306px;}
.y4_c02463{bottom:1079.759874px;}
.y1_c02463{bottom:1097.760450px;}
.yf_c02463{bottom:1134.840450px;}
.h3_c02463{height:32.530781px;}
.h1_c02463{height:41.696016px;}
.h2_c02463{height:41.812031px;}
.h4_c02463{height:54.654737px;}
.h0_c02463{height:1263.000000px;}
.w1_c02463{width:892.500000px;}
.w0_c02463{width:892.830000px;}
.x0_c02463{left:0.000000px;}
.xe_c02463{left:117.000000px;}
.x8_c02463{left:440.999856px;}
.x4_c02463{left:445.680576px;}
.xc_c02463{left:451.080000px;}
.x7_c02463{left:455.399604px;}
.x5_c02463{left:461.880144px;}
.x1_c02463{left:463.320000px;}
.xb_c02463{left:483.480360px;}
.xa_c02463{left:492.119496px;}
.x6_c02463{left:493.200576px;}
.xd_c02463{left:506.880360px;}
.x3_c02463{left:511.919892px;}
.x2_c02463{left:526.679604px;}
.x9_c02463{left:569.880036px;}
@media print{
.v0_c02463{vertical-align:0.000000pt;}
.v1_c02463{vertical-align:1.279488pt;}
.ls14_c02463{letter-spacing:-1.064448pt;}
.ls7_c02463{letter-spacing:-0.604032pt;}
.ls9_c02463{letter-spacing:-0.511104pt;}
.lsd_c02463{letter-spacing:-0.287232pt;}
.ls10_c02463{letter-spacing:-0.244992pt;}
.lse_c02463{letter-spacing:-0.232320pt;}
.ls6_c02463{letter-spacing:-0.215424pt;}
.ls4_c02463{letter-spacing:-0.105600pt;}
.ls13_c02463{letter-spacing:0.000000pt;}
.ls1_c02463{letter-spacing:0.005376pt;}
.lsc_c02463{letter-spacing:0.046464pt;}
.ls5_c02463{letter-spacing:0.114048pt;}
.lsb_c02463{letter-spacing:0.451968pt;}
.ls12_c02463{letter-spacing:0.456960pt;}
.lsf_c02463{letter-spacing:0.477312pt;}
.lsa_c02463{letter-spacing:0.515328pt;}
.ls11_c02463{letter-spacing:0.528000pt;}
.ls8_c02463{letter-spacing:0.532224pt;}
.ls2_c02463{letter-spacing:0.544896pt;}
.ls0_c02463{letter-spacing:0.637824pt;}
.ls3_c02463{letter-spacing:0.642048pt;}
.wsd_c02463{word-spacing:-13.445376pt;}
.wsb_c02463{word-spacing:-11.088000pt;}
.wsa_c02463{word-spacing:-11.037312pt;}
.ws4_c02463{word-spacing:-10.344576pt;}
.ws2_c02463{word-spacing:-9.955968pt;}
.ws16_c02463{word-spacing:-1.919232pt;}
.ws12_c02463{word-spacing:-0.963072pt;}
.ws11_c02463{word-spacing:-0.958848pt;}
.wse_c02463{word-spacing:-0.865920pt;}
.ws10_c02463{word-spacing:-0.105600pt;}
.ws14_c02463{word-spacing:-0.088704pt;}
.ws15_c02463{word-spacing:-0.076032pt;}
.ws13_c02463{word-spacing:-0.033792pt;}
.wsf_c02463{word-spacing:0.000000pt;}
.ws17_c02463{word-spacing:0.743424pt;}
.ws8_c02463{word-spacing:6.627456pt;}
.wsc_c02463{word-spacing:29.600256pt;}
.ws9_c02463{word-spacing:32.127744pt;}
.ws6_c02463{word-spacing:32.659968pt;}
.ws1_c02463{word-spacing:33.563904pt;}
.ws0_c02463{word-spacing:33.796224pt;}
.ws3_c02463{word-spacing:34.860672pt;}
.ws5_c02463{word-spacing:35.468928pt;}
.ws7_c02463{word-spacing:37.357056pt;}
._0_c02463{margin-left:-1.731840pt;}
._2_c02463{width:1.317888pt;}
._7_c02463{width:2.462592pt;}
._4_c02463{width:5.094144pt;}
._6_c02463{width:19.455744pt;}
._5_c02463{width:21.622656pt;}
._1_c02463{width:44.668800pt;}
._3_c02463{width:45.805056pt;}
.fs0_c02463{font-size:42.240000pt;}
.fs1_c02463{font-size:53.760000pt;}
.y0_c02463{bottom:0.000000pt;}
.y1a_c02463{bottom:130.665211pt;}
.y1c_c02463{bottom:165.866875pt;}
.y1b_c02463{bottom:174.507067pt;}
.y19_c02463{bottom:245.225371pt;}
.y18_c02463{bottom:317.225563pt;}
.y16_c02463{bottom:361.386427pt;}
.y12_c02463{bottom:377.386939pt;}
.y17_c02463{bottom:407.786011pt;}
.y15_c02463{bottom:437.226235pt;}
.y14_c02463{bottom:453.226747pt;}
.y11_c02463{bottom:482.666971pt;}
.y13_c02463{bottom:497.386555pt;}
.y10_c02463{bottom:513.387067pt;}
.y1d_c02463{bottom:546.027067pt;}
.yc_c02463{bottom:593.386235pt;}
.ye_c02463{bottom:628.586875pt;}
.yd_c02463{bottom:637.227067pt;}
.yb_c02463{bottom:707.946395pt;}
.ya_c02463{bottom:779.946587pt;}
.y7_c02463{bottom:823.786427pt;}
.y3_c02463{bottom:839.786939pt;}
.y9_c02463{bottom:857.386235pt;}
.y8_c02463{bottom:870.505979pt;}
.y6_c02463{bottom:899.946203pt;}
.y5_c02463{bottom:915.946715pt;}
.y2_c02463{bottom:945.386939pt;}
.y4_c02463{bottom:959.786555pt;}
.y1_c02463{bottom:975.787067pt;}
.yf_c02463{bottom:1008.747067pt;}
.h3_c02463{height:28.916250pt;}
.h1_c02463{height:37.063125pt;}
.h2_c02463{height:37.166250pt;}
.h4_c02463{height:48.581988pt;}
.h0_c02463{height:1122.666667pt;}
.w1_c02463{width:793.333333pt;}
.w0_c02463{width:793.626667pt;}
.x0_c02463{left:0.000000pt;}
.xe_c02463{left:104.000000pt;}
.x8_c02463{left:391.999872pt;}
.x4_c02463{left:396.160512pt;}
.xc_c02463{left:400.960000pt;}
.x7_c02463{left:404.799648pt;}
.x5_c02463{left:410.560128pt;}
.x1_c02463{left:411.840000pt;}
.xb_c02463{left:429.760320pt;}
.xa_c02463{left:437.439552pt;}
.x6_c02463{left:438.400512pt;}
.xd_c02463{left:450.560320pt;}
.x3_c02463{left:455.039904pt;}
.x2_c02463{left:468.159648pt;}
.x9_c02463{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02464 {
    display:none;
  }
  .loading-indicator_c02464.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02464 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02464 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02464" -> "#page-container .classname_c02464")
 */
.pf_c02464 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02464 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02464 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02464 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02464 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02464 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02464 {overflow:visible;}
  }
}
.c_c02464 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02464 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02464:after { /* webkit #35443 */
  content: '';
}
.t_c02464:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02464 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02464 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02464 { /* info for Javascript */
  display:none;
}
.l_c02464 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02464 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02464 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02464:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02464 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02464.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02464 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02464{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02464;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02464{font-family:ff1_c02464;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02464;src:url('chunks/assets/font_25a0f512974c575885664418.woff2')format("woff");}.ff2_c02464{font-family:ff2_c02464;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02464;src:url('chunks/assets/font_9de167872908c36f41966f75.woff2')format("woff");}.ff3_c02464{font-family:ff3_c02464;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02464{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02464{vertical-align:0.000000px;}
.v1_c02464{vertical-align:1.439424px;}
.lse_c02464{letter-spacing:-0.769824px;}
.ls18_c02464{letter-spacing:-0.765072px;}
.lsc_c02464{letter-spacing:-0.722304px;}
.ls8_c02464{letter-spacing:-0.679536px;}
.lsa_c02464{letter-spacing:-0.574992px;}
.ls19_c02464{letter-spacing:-0.375408px;}
.ls13_c02464{letter-spacing:-0.275616px;}
.lsf_c02464{letter-spacing:-0.261360px;}
.ls7_c02464{letter-spacing:-0.242352px;}
.ls5_c02464{letter-spacing:-0.118800px;}
.ls16_c02464{letter-spacing:0.000000px;}
.ls3_c02464{letter-spacing:0.006048px;}
.ls17_c02464{letter-spacing:0.052272px;}
.ls6_c02464{letter-spacing:0.128304px;}
.ls11_c02464{letter-spacing:0.199584px;}
.ls10_c02464{letter-spacing:0.209088px;}
.lsd_c02464{letter-spacing:0.508464px;}
.ls15_c02464{letter-spacing:0.514080px;}
.ls12_c02464{letter-spacing:0.536976px;}
.lsb_c02464{letter-spacing:0.579744px;}
.ls14_c02464{letter-spacing:0.594000px;}
.ls9_c02464{letter-spacing:0.598752px;}
.ls4_c02464{letter-spacing:0.613008px;}
.ls0_c02464{letter-spacing:0.651024px;}
.ls1_c02464{letter-spacing:0.717552px;}
.ls2_c02464{letter-spacing:0.722304px;}
.sc__c02464{text-shadow:none;}
.sc0_c02464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02464{-webkit-text-stroke:0px transparent;}
.sc0_c02464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02464{word-spacing:-15.126048px;}
.wsc_c02464{word-spacing:-12.474000px;}
.wsb_c02464{word-spacing:-12.416976px;}
.ws10_c02464{word-spacing:-11.880000px;}
.ws4_c02464{word-spacing:-11.637648px;}
.ws2_c02464{word-spacing:-11.200464px;}
.ws1c_c02464{word-spacing:-2.159136px;}
.ws18_c02464{word-spacing:-1.083456px;}
.ws15_c02464{word-spacing:-1.078704px;}
.ws13_c02464{word-spacing:-1.012176px;}
.ws11_c02464{word-spacing:-0.974160px;}
.ws1a_c02464{word-spacing:-0.560736px;}
.ws14_c02464{word-spacing:-0.118800px;}
.ws19_c02464{word-spacing:-0.099792px;}
.ws1b_c02464{word-spacing:-0.085536px;}
.ws12_c02464{word-spacing:0.000000px;}
.ws1e_c02464{word-spacing:0.014256px;}
.ws16_c02464{word-spacing:0.361152px;}
.ws1d_c02464{word-spacing:0.403920px;}
.ws17_c02464{word-spacing:0.408672px;}
.wsf_c02464{word-spacing:1.696464px;}
.ws9_c02464{word-spacing:22.923648px;}
.wsd_c02464{word-spacing:33.300288px;}
.ws8_c02464{word-spacing:36.143712px;}
.ws6_c02464{word-spacing:36.742464px;}
.ws1_c02464{word-spacing:37.759392px;}
.ws0_c02464{word-spacing:38.020752px;}
.ws3_c02464{word-spacing:39.218256px;}
.ws5_c02464{word-spacing:39.902544px;}
.ws7_c02464{word-spacing:42.026688px;}
.wsa_c02464{word-spacing:60.782832px;}
._0_c02464{margin-left:-1.948320px;}
._2_c02464{width:1.482624px;}
._4_c02464{width:5.730912px;}
._7_c02464{width:15.510528px;}
._a_c02464{width:17.126208px;}
._6_c02464{width:38.016000px;}
._5_c02464{width:41.698800px;}
._1_c02464{width:50.252400px;}
._3_c02464{width:51.530688px;}
._9_c02464{width:68.176944px;}
._8_c02464{width:74.910528px;}
.fc0_c02464{color:rgb(0,0,0);}
.fs0_c02464{font-size:47.520000px;}
.fs1_c02464{font-size:60.480000px;}
.y0_c02464{bottom:0.000000px;}
.y1d_c02464{bottom:146.999550px;}
.y1f_c02464{bottom:186.600234px;}
.y1e_c02464{bottom:196.320450px;}
.y1c_c02464{bottom:275.879730px;}
.y1b_c02464{bottom:341.760270px;}
.y1a_c02464{bottom:356.879946px;}
.y17_c02464{bottom:406.559730px;}
.y13_c02464{bottom:424.560306px;}
.y19_c02464{bottom:443.999550px;}
.y18_c02464{bottom:458.759262px;}
.y16_c02464{bottom:491.879514px;}
.y15_c02464{bottom:509.880090px;}
.y12_c02464{bottom:543.000342px;}
.y14_c02464{bottom:559.559874px;}
.y11_c02464{bottom:577.560450px;}
.y20_c02464{bottom:614.280450px;}
.yd_c02464{bottom:667.559514px;}
.yf_c02464{bottom:707.160234px;}
.ye_c02464{bottom:716.880450px;}
.yc_c02464{bottom:781.320018px;}
.yb_c02464{bottom:796.439694px;}
.ya_c02464{bottom:862.319046px;}
.y9_c02464{bottom:877.438722px;}
.y7_c02464{bottom:926.759730px;}
.y3_c02464{bottom:944.760306px;}
.y8_c02464{bottom:979.319226px;}
.y6_c02464{bottom:1012.439478px;}
.y5_c02464{bottom:1030.440054px;}
.y2_c02464{bottom:1063.560306px;}
.y4_c02464{bottom:1079.759874px;}
.y1_c02464{bottom:1097.760450px;}
.y10_c02464{bottom:1134.840450px;}
.h3_c02464{height:32.530781px;}
.h1_c02464{height:41.696016px;}
.h2_c02464{height:41.812031px;}
.h4_c02464{height:54.654737px;}
.h0_c02464{height:1263.000000px;}
.w1_c02464{width:892.500000px;}
.w0_c02464{width:892.830000px;}
.x0_c02464{left:0.000000px;}
.xe_c02464{left:117.000000px;}
.x8_c02464{left:440.999856px;}
.x4_c02464{left:445.680576px;}
.xc_c02464{left:451.080000px;}
.x7_c02464{left:455.399604px;}
.x5_c02464{left:461.880144px;}
.x1_c02464{left:463.320000px;}
.xb_c02464{left:483.480360px;}
.x9_c02464{left:492.119496px;}
.x6_c02464{left:493.200576px;}
.xd_c02464{left:506.880360px;}
.x3_c02464{left:511.919892px;}
.x2_c02464{left:526.679604px;}
.xa_c02464{left:569.880036px;}
@media print{
.v0_c02464{vertical-align:0.000000pt;}
.v1_c02464{vertical-align:1.279488pt;}
.lse_c02464{letter-spacing:-0.684288pt;}
.ls18_c02464{letter-spacing:-0.680064pt;}
.lsc_c02464{letter-spacing:-0.642048pt;}
.ls8_c02464{letter-spacing:-0.604032pt;}
.lsa_c02464{letter-spacing:-0.511104pt;}
.ls19_c02464{letter-spacing:-0.333696pt;}
.ls13_c02464{letter-spacing:-0.244992pt;}
.lsf_c02464{letter-spacing:-0.232320pt;}
.ls7_c02464{letter-spacing:-0.215424pt;}
.ls5_c02464{letter-spacing:-0.105600pt;}
.ls16_c02464{letter-spacing:0.000000pt;}
.ls3_c02464{letter-spacing:0.005376pt;}
.ls17_c02464{letter-spacing:0.046464pt;}
.ls6_c02464{letter-spacing:0.114048pt;}
.ls11_c02464{letter-spacing:0.177408pt;}
.ls10_c02464{letter-spacing:0.185856pt;}
.lsd_c02464{letter-spacing:0.451968pt;}
.ls15_c02464{letter-spacing:0.456960pt;}
.ls12_c02464{letter-spacing:0.477312pt;}
.lsb_c02464{letter-spacing:0.515328pt;}
.ls14_c02464{letter-spacing:0.528000pt;}
.ls9_c02464{letter-spacing:0.532224pt;}
.ls4_c02464{letter-spacing:0.544896pt;}
.ls0_c02464{letter-spacing:0.578688pt;}
.ls1_c02464{letter-spacing:0.637824pt;}
.ls2_c02464{letter-spacing:0.642048pt;}
.wse_c02464{word-spacing:-13.445376pt;}
.wsc_c02464{word-spacing:-11.088000pt;}
.wsb_c02464{word-spacing:-11.037312pt;}
.ws10_c02464{word-spacing:-10.560000pt;}
.ws4_c02464{word-spacing:-10.344576pt;}
.ws2_c02464{word-spacing:-9.955968pt;}
.ws1c_c02464{word-spacing:-1.919232pt;}
.ws18_c02464{word-spacing:-0.963072pt;}
.ws15_c02464{word-spacing:-0.958848pt;}
.ws13_c02464{word-spacing:-0.899712pt;}
.ws11_c02464{word-spacing:-0.865920pt;}
.ws1a_c02464{word-spacing:-0.498432pt;}
.ws14_c02464{word-spacing:-0.105600pt;}
.ws19_c02464{word-spacing:-0.088704pt;}
.ws1b_c02464{word-spacing:-0.076032pt;}
.ws12_c02464{word-spacing:0.000000pt;}
.ws1e_c02464{word-spacing:0.012672pt;}
.ws16_c02464{word-spacing:0.321024pt;}
.ws1d_c02464{word-spacing:0.359040pt;}
.ws17_c02464{word-spacing:0.363264pt;}
.wsf_c02464{word-spacing:1.507968pt;}
.ws9_c02464{word-spacing:20.376576pt;}
.wsd_c02464{word-spacing:29.600256pt;}
.ws8_c02464{word-spacing:32.127744pt;}
.ws6_c02464{word-spacing:32.659968pt;}
.ws1_c02464{word-spacing:33.563904pt;}
.ws0_c02464{word-spacing:33.796224pt;}
.ws3_c02464{word-spacing:34.860672pt;}
.ws5_c02464{word-spacing:35.468928pt;}
.ws7_c02464{word-spacing:37.357056pt;}
.wsa_c02464{word-spacing:54.029184pt;}
._0_c02464{margin-left:-1.731840pt;}
._2_c02464{width:1.317888pt;}
._4_c02464{width:5.094144pt;}
._7_c02464{width:13.787136pt;}
._a_c02464{width:15.223296pt;}
._6_c02464{width:33.792000pt;}
._5_c02464{width:37.065600pt;}
._1_c02464{width:44.668800pt;}
._3_c02464{width:45.805056pt;}
._9_c02464{width:60.601728pt;}
._8_c02464{width:66.587136pt;}
.fs0_c02464{font-size:42.240000pt;}
.fs1_c02464{font-size:53.760000pt;}
.y0_c02464{bottom:0.000000pt;}
.y1d_c02464{bottom:130.666267pt;}
.y1f_c02464{bottom:165.866875pt;}
.y1e_c02464{bottom:174.507067pt;}
.y1c_c02464{bottom:245.226427pt;}
.y1b_c02464{bottom:303.786907pt;}
.y1a_c02464{bottom:317.226619pt;}
.y17_c02464{bottom:361.386427pt;}
.y13_c02464{bottom:377.386939pt;}
.y19_c02464{bottom:394.666267pt;}
.y18_c02464{bottom:407.786011pt;}
.y16_c02464{bottom:437.226235pt;}
.y15_c02464{bottom:453.226747pt;}
.y12_c02464{bottom:482.666971pt;}
.y14_c02464{bottom:497.386555pt;}
.y11_c02464{bottom:513.387067pt;}
.y20_c02464{bottom:546.027067pt;}
.yd_c02464{bottom:593.386235pt;}
.yf_c02464{bottom:628.586875pt;}
.ye_c02464{bottom:637.227067pt;}
.yc_c02464{bottom:694.506683pt;}
.yb_c02464{bottom:707.946395pt;}
.ya_c02464{bottom:766.505819pt;}
.y9_c02464{bottom:779.945531pt;}
.y7_c02464{bottom:823.786427pt;}
.y3_c02464{bottom:839.786939pt;}
.y8_c02464{bottom:870.505979pt;}
.y6_c02464{bottom:899.946203pt;}
.y5_c02464{bottom:915.946715pt;}
.y2_c02464{bottom:945.386939pt;}
.y4_c02464{bottom:959.786555pt;}
.y1_c02464{bottom:975.787067pt;}
.y10_c02464{bottom:1008.747067pt;}
.h3_c02464{height:28.916250pt;}
.h1_c02464{height:37.063125pt;}
.h2_c02464{height:37.166250pt;}
.h4_c02464{height:48.581988pt;}
.h0_c02464{height:1122.666667pt;}
.w1_c02464{width:793.333333pt;}
.w0_c02464{width:793.626667pt;}
.x0_c02464{left:0.000000pt;}
.xe_c02464{left:104.000000pt;}
.x8_c02464{left:391.999872pt;}
.x4_c02464{left:396.160512pt;}
.xc_c02464{left:400.960000pt;}
.x7_c02464{left:404.799648pt;}
.x5_c02464{left:410.560128pt;}
.x1_c02464{left:411.840000pt;}
.xb_c02464{left:429.760320pt;}
.x9_c02464{left:437.439552pt;}
.x6_c02464{left:438.400512pt;}
.xd_c02464{left:450.560320pt;}
.x3_c02464{left:455.039904pt;}
.x2_c02464{left:468.159648pt;}
.xa_c02464{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02465 {
    display:none;
  }
  .loading-indicator_c02465.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02465 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02465 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02465" -> "#page-container .classname_c02465")
 */
.pf_c02465 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02465 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02465 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02465 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02465 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02465 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02465 {overflow:visible;}
  }
}
.c_c02465 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02465 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02465:after { /* webkit #35443 */
  content: '';
}
.t_c02465:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02465 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02465 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02465 { /* info for Javascript */
  display:none;
}
.l_c02465 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02465 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02465 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02465:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02465 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02465.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02465 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02465{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02465;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02465{font-family:ff1_c02465;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02465;src:url('chunks/assets/font_86d67243677597821471610a.woff2')format("woff");}.ff2_c02465{font-family:ff2_c02465;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02465;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02465{font-family:ff3_c02465;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02465{vertical-align:0.000000px;}
.v1_c02465{vertical-align:1.439424px;}
.ls7_c02465{letter-spacing:-0.679536px;}
.ls9_c02465{letter-spacing:-0.574992px;}
.lse_c02465{letter-spacing:-0.323136px;}
.ls11_c02465{letter-spacing:-0.275616px;}
.lsf_c02465{letter-spacing:-0.261360px;}
.ls6_c02465{letter-spacing:-0.242352px;}
.ls4_c02465{letter-spacing:-0.118800px;}
.lsd_c02465{letter-spacing:0.000000px;}
.ls1_c02465{letter-spacing:0.006048px;}
.lsc_c02465{letter-spacing:0.052272px;}
.ls5_c02465{letter-spacing:0.128304px;}
.lsb_c02465{letter-spacing:0.508464px;}
.ls13_c02465{letter-spacing:0.514080px;}
.ls10_c02465{letter-spacing:0.536976px;}
.lsa_c02465{letter-spacing:0.579744px;}
.ls12_c02465{letter-spacing:0.594000px;}
.ls8_c02465{letter-spacing:0.598752px;}
.ls2_c02465{letter-spacing:0.613008px;}
.ls0_c02465{letter-spacing:0.717552px;}
.ls3_c02465{letter-spacing:0.722304px;}
.sc__c02465{text-shadow:none;}
.sc0_c02465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02465{-webkit-text-stroke:0px transparent;}
.sc0_c02465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02465{word-spacing:-15.126048px;}
.wsc_c02465{word-spacing:-12.474000px;}
.wsb_c02465{word-spacing:-12.416976px;}
.ws9_c02465{word-spacing:-11.880000px;}
.ws4_c02465{word-spacing:-11.637648px;}
.ws2_c02465{word-spacing:-11.200464px;}
.ws17_c02465{word-spacing:-2.159136px;}
.ws18_c02465{word-spacing:-1.083456px;}
.ws13_c02465{word-spacing:-1.078704px;}
.ws10_c02465{word-spacing:-0.974160px;}
.ws12_c02465{word-spacing:-0.118800px;}
.ws15_c02465{word-spacing:-0.099792px;}
.ws16_c02465{word-spacing:-0.085536px;}
.ws14_c02465{word-spacing:-0.038016px;}
.ws11_c02465{word-spacing:0.000000px;}
.ws8_c02465{word-spacing:1.696464px;}
.wsf_c02465{word-spacing:7.455888px;}
.wsd_c02465{word-spacing:33.300288px;}
.wsa_c02465{word-spacing:36.143712px;}
.ws6_c02465{word-spacing:36.742464px;}
.ws1_c02465{word-spacing:37.759392px;}
.ws0_c02465{word-spacing:38.020752px;}
.ws3_c02465{word-spacing:39.218256px;}
.ws5_c02465{word-spacing:39.902544px;}
.ws7_c02465{word-spacing:42.026688px;}
._0_c02465{margin-left:-1.948320px;}
._2_c02465{width:1.482624px;}
._4_c02465{width:5.730912px;}
._6_c02465{width:15.078096px;}
._5_c02465{width:17.126208px;}
._8_c02465{width:21.887712px;}
._7_c02465{width:24.325488px;}
._1_c02465{width:50.252400px;}
._3_c02465{width:51.530688px;}
.fc0_c02465{color:rgb(0,0,0);}
.fs0_c02465{font-size:47.520000px;}
.fs1_c02465{font-size:60.480000px;}
.y0_c02465{bottom:0.000000px;}
.y1b_c02465{bottom:146.999550px;}
.y1d_c02465{bottom:186.600234px;}
.y1c_c02465{bottom:196.320450px;}
.y1a_c02465{bottom:275.879730px;}
.y19_c02465{bottom:356.879946px;}
.y16_c02465{bottom:406.559730px;}
.y12_c02465{bottom:424.560306px;}
.y18_c02465{bottom:443.999550px;}
.y17_c02465{bottom:458.759262px;}
.y15_c02465{bottom:491.879514px;}
.y14_c02465{bottom:509.880090px;}
.y11_c02465{bottom:543.000342px;}
.y13_c02465{bottom:559.559874px;}
.y10_c02465{bottom:577.560450px;}
.y1e_c02465{bottom:614.280450px;}
.yc_c02465{bottom:667.559514px;}
.ye_c02465{bottom:707.160234px;}
.yd_c02465{bottom:716.880450px;}
.yb_c02465{bottom:796.439694px;}
.ya_c02465{bottom:877.439910px;}
.y7_c02465{bottom:926.759730px;}
.y3_c02465{bottom:944.760306px;}
.y9_c02465{bottom:964.559514px;}
.y8_c02465{bottom:979.319226px;}
.y6_c02465{bottom:1012.439478px;}
.y5_c02465{bottom:1030.440054px;}
.y2_c02465{bottom:1063.560306px;}
.y4_c02465{bottom:1079.759874px;}
.y1_c02465{bottom:1097.760450px;}
.yf_c02465{bottom:1134.840450px;}
.h3_c02465{height:32.530781px;}
.h1_c02465{height:41.696016px;}
.h2_c02465{height:41.812031px;}
.h4_c02465{height:54.654737px;}
.h0_c02465{height:1263.000000px;}
.w1_c02465{width:892.500000px;}
.w0_c02465{width:892.830000px;}
.x0_c02465{left:0.000000px;}
.xe_c02465{left:117.000000px;}
.x8_c02465{left:440.999856px;}
.x4_c02465{left:445.680576px;}
.xc_c02465{left:451.080000px;}
.x7_c02465{left:455.399604px;}
.x5_c02465{left:461.880144px;}
.x1_c02465{left:463.320000px;}
.xb_c02465{left:483.480360px;}
.xa_c02465{left:492.119496px;}
.x6_c02465{left:493.200576px;}
.xd_c02465{left:506.880360px;}
.x3_c02465{left:511.919892px;}
.x2_c02465{left:526.679604px;}
.x9_c02465{left:569.880036px;}
@media print{
.v0_c02465{vertical-align:0.000000pt;}
.v1_c02465{vertical-align:1.279488pt;}
.ls7_c02465{letter-spacing:-0.604032pt;}
.ls9_c02465{letter-spacing:-0.511104pt;}
.lse_c02465{letter-spacing:-0.287232pt;}
.ls11_c02465{letter-spacing:-0.244992pt;}
.lsf_c02465{letter-spacing:-0.232320pt;}
.ls6_c02465{letter-spacing:-0.215424pt;}
.ls4_c02465{letter-spacing:-0.105600pt;}
.lsd_c02465{letter-spacing:0.000000pt;}
.ls1_c02465{letter-spacing:0.005376pt;}
.lsc_c02465{letter-spacing:0.046464pt;}
.ls5_c02465{letter-spacing:0.114048pt;}
.lsb_c02465{letter-spacing:0.451968pt;}
.ls13_c02465{letter-spacing:0.456960pt;}
.ls10_c02465{letter-spacing:0.477312pt;}
.lsa_c02465{letter-spacing:0.515328pt;}
.ls12_c02465{letter-spacing:0.528000pt;}
.ls8_c02465{letter-spacing:0.532224pt;}
.ls2_c02465{letter-spacing:0.544896pt;}
.ls0_c02465{letter-spacing:0.637824pt;}
.ls3_c02465{letter-spacing:0.642048pt;}
.wse_c02465{word-spacing:-13.445376pt;}
.wsc_c02465{word-spacing:-11.088000pt;}
.wsb_c02465{word-spacing:-11.037312pt;}
.ws9_c02465{word-spacing:-10.560000pt;}
.ws4_c02465{word-spacing:-10.344576pt;}
.ws2_c02465{word-spacing:-9.955968pt;}
.ws17_c02465{word-spacing:-1.919232pt;}
.ws18_c02465{word-spacing:-0.963072pt;}
.ws13_c02465{word-spacing:-0.958848pt;}
.ws10_c02465{word-spacing:-0.865920pt;}
.ws12_c02465{word-spacing:-0.105600pt;}
.ws15_c02465{word-spacing:-0.088704pt;}
.ws16_c02465{word-spacing:-0.076032pt;}
.ws14_c02465{word-spacing:-0.033792pt;}
.ws11_c02465{word-spacing:0.000000pt;}
.ws8_c02465{word-spacing:1.507968pt;}
.wsf_c02465{word-spacing:6.627456pt;}
.wsd_c02465{word-spacing:29.600256pt;}
.wsa_c02465{word-spacing:32.127744pt;}
.ws6_c02465{word-spacing:32.659968pt;}
.ws1_c02465{word-spacing:33.563904pt;}
.ws0_c02465{word-spacing:33.796224pt;}
.ws3_c02465{word-spacing:34.860672pt;}
.ws5_c02465{word-spacing:35.468928pt;}
.ws7_c02465{word-spacing:37.357056pt;}
._0_c02465{margin-left:-1.731840pt;}
._2_c02465{width:1.317888pt;}
._4_c02465{width:5.094144pt;}
._6_c02465{width:13.402752pt;}
._5_c02465{width:15.223296pt;}
._8_c02465{width:19.455744pt;}
._7_c02465{width:21.622656pt;}
._1_c02465{width:44.668800pt;}
._3_c02465{width:45.805056pt;}
.fs0_c02465{font-size:42.240000pt;}
.fs1_c02465{font-size:53.760000pt;}
.y0_c02465{bottom:0.000000pt;}
.y1b_c02465{bottom:130.666267pt;}
.y1d_c02465{bottom:165.866875pt;}
.y1c_c02465{bottom:174.507067pt;}
.y1a_c02465{bottom:245.226427pt;}
.y19_c02465{bottom:317.226619pt;}
.y16_c02465{bottom:361.386427pt;}
.y12_c02465{bottom:377.386939pt;}
.y18_c02465{bottom:394.666267pt;}
.y17_c02465{bottom:407.786011pt;}
.y15_c02465{bottom:437.226235pt;}
.y14_c02465{bottom:453.226747pt;}
.y11_c02465{bottom:482.666971pt;}
.y13_c02465{bottom:497.386555pt;}
.y10_c02465{bottom:513.387067pt;}
.y1e_c02465{bottom:546.027067pt;}
.yc_c02465{bottom:593.386235pt;}
.ye_c02465{bottom:628.586875pt;}
.yd_c02465{bottom:637.227067pt;}
.yb_c02465{bottom:707.946395pt;}
.ya_c02465{bottom:779.946587pt;}
.y7_c02465{bottom:823.786427pt;}
.y3_c02465{bottom:839.786939pt;}
.y9_c02465{bottom:857.386235pt;}
.y8_c02465{bottom:870.505979pt;}
.y6_c02465{bottom:899.946203pt;}
.y5_c02465{bottom:915.946715pt;}
.y2_c02465{bottom:945.386939pt;}
.y4_c02465{bottom:959.786555pt;}
.y1_c02465{bottom:975.787067pt;}
.yf_c02465{bottom:1008.747067pt;}
.h3_c02465{height:28.916250pt;}
.h1_c02465{height:37.063125pt;}
.h2_c02465{height:37.166250pt;}
.h4_c02465{height:48.581988pt;}
.h0_c02465{height:1122.666667pt;}
.w1_c02465{width:793.333333pt;}
.w0_c02465{width:793.626667pt;}
.x0_c02465{left:0.000000pt;}
.xe_c02465{left:104.000000pt;}
.x8_c02465{left:391.999872pt;}
.x4_c02465{left:396.160512pt;}
.xc_c02465{left:400.960000pt;}
.x7_c02465{left:404.799648pt;}
.x5_c02465{left:410.560128pt;}
.x1_c02465{left:411.840000pt;}
.xb_c02465{left:429.760320pt;}
.xa_c02465{left:437.439552pt;}
.x6_c02465{left:438.400512pt;}
.xd_c02465{left:450.560320pt;}
.x3_c02465{left:455.039904pt;}
.x2_c02465{left:468.159648pt;}
.x9_c02465{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02466 {
    display:none;
  }
  .loading-indicator_c02466.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02466 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02466 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02466" -> "#page-container .classname_c02466")
 */
.pf_c02466 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02466 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02466 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02466 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02466 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02466 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02466 {overflow:visible;}
  }
}
.c_c02466 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02466 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02466:after { /* webkit #35443 */
  content: '';
}
.t_c02466:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02466 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02466 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02466 { /* info for Javascript */
  display:none;
}
.l_c02466 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02466 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02466 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02466:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02466 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02466.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02466 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02466{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02466;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02466{font-family:ff1_c02466;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02466;src:url('chunks/assets/font_f42ee81238c41e31a37298ef.woff2')format("woff");}.ff2_c02466{font-family:ff2_c02466;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02466;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02466{font-family:ff3_c02466;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02466{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02466{vertical-align:0.000000px;}
.v1_c02466{vertical-align:1.439424px;}
.ls10_c02466{letter-spacing:-0.736560px;}
.lsc_c02466{letter-spacing:-0.722304px;}
.ls7_c02466{letter-spacing:-0.679536px;}
.ls9_c02466{letter-spacing:-0.574992px;}
.lsd_c02466{letter-spacing:-0.323136px;}
.ls15_c02466{letter-spacing:-0.275616px;}
.ls11_c02466{letter-spacing:-0.270864px;}
.lse_c02466{letter-spacing:-0.261360px;}
.ls6_c02466{letter-spacing:-0.242352px;}
.ls4_c02466{letter-spacing:-0.118800px;}
.ls14_c02466{letter-spacing:0.000000px;}
.ls1_c02466{letter-spacing:0.006048px;}
.ls5_c02466{letter-spacing:0.128304px;}
.lsb_c02466{letter-spacing:0.508464px;}
.ls13_c02466{letter-spacing:0.514080px;}
.lsf_c02466{letter-spacing:0.536976px;}
.lsa_c02466{letter-spacing:0.579744px;}
.ls12_c02466{letter-spacing:0.594000px;}
.ls8_c02466{letter-spacing:0.598752px;}
.ls2_c02466{letter-spacing:0.613008px;}
.ls0_c02466{letter-spacing:0.717552px;}
.ls3_c02466{letter-spacing:0.722304px;}
.sc__c02466{text-shadow:none;}
.sc0_c02466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02466{-webkit-text-stroke:0px transparent;}
.sc0_c02466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02466{word-spacing:-15.126048px;}
.wsb_c02466{word-spacing:-12.474000px;}
.wse_c02466{word-spacing:-12.416976px;}
.ws4_c02466{word-spacing:-11.637648px;}
.ws2_c02466{word-spacing:-11.200464px;}
.ws18_c02466{word-spacing:-2.159136px;}
.ws12_c02466{word-spacing:-1.078704px;}
.wsf_c02466{word-spacing:-0.974160px;}
.ws11_c02466{word-spacing:-0.118800px;}
.ws15_c02466{word-spacing:-0.099792px;}
.ws16_c02466{word-spacing:-0.090288px;}
.ws17_c02466{word-spacing:-0.085536px;}
.ws14_c02466{word-spacing:-0.038016px;}
.ws10_c02466{word-spacing:0.000000px;}
.ws13_c02466{word-spacing:0.361152px;}
.wsa_c02466{word-spacing:6.629040px;}
.wsc_c02466{word-spacing:33.300288px;}
.ws9_c02466{word-spacing:34.836912px;}
.ws8_c02466{word-spacing:36.143712px;}
.ws6_c02466{word-spacing:36.742464px;}
.ws1_c02466{word-spacing:37.759392px;}
.ws0_c02466{word-spacing:38.020752px;}
.ws3_c02466{word-spacing:39.218256px;}
.ws5_c02466{word-spacing:39.902544px;}
.ws7_c02466{word-spacing:42.026688px;}
._0_c02466{margin-left:-1.948320px;}
._2_c02466{width:1.482624px;}
._4_c02466{width:5.730912px;}
._6_c02466{width:19.982160px;}
._7_c02466{width:23.451120px;}
._5_c02466{width:24.691392px;}
._1_c02466{width:50.252400px;}
._3_c02466{width:51.530688px;}
.fc0_c02466{color:rgb(0,0,0);}
.fs0_c02466{font-size:47.520000px;}
.fs1_c02466{font-size:60.480000px;}
.y0_c02466{bottom:0.000000px;}
.y1a_c02466{bottom:146.998362px;}
.y1c_c02466{bottom:186.600234px;}
.y1b_c02466{bottom:196.320450px;}
.y19_c02466{bottom:275.878542px;}
.y18_c02466{bottom:356.878758px;}
.y16_c02466{bottom:406.559730px;}
.y12_c02466{bottom:424.560306px;}
.y17_c02466{bottom:458.759262px;}
.y15_c02466{bottom:491.879514px;}
.y14_c02466{bottom:509.880090px;}
.y11_c02466{bottom:543.000342px;}
.y13_c02466{bottom:559.559874px;}
.y10_c02466{bottom:577.560450px;}
.y1d_c02466{bottom:614.280450px;}
.yc_c02466{bottom:652.438650px;}
.yb_c02466{bottom:667.558326px;}
.ye_c02466{bottom:707.160234px;}
.yd_c02466{bottom:716.880450px;}
.ya_c02466{bottom:796.438506px;}
.y9_c02466{bottom:877.438722px;}
.y7_c02466{bottom:926.759730px;}
.y3_c02466{bottom:944.760306px;}
.y8_c02466{bottom:979.319226px;}
.y6_c02466{bottom:1012.439478px;}
.y5_c02466{bottom:1030.440054px;}
.y2_c02466{bottom:1063.560306px;}
.y4_c02466{bottom:1079.759874px;}
.y1_c02466{bottom:1097.760450px;}
.yf_c02466{bottom:1134.840450px;}
.h3_c02466{height:32.530781px;}
.h1_c02466{height:41.696016px;}
.h2_c02466{height:41.812031px;}
.h4_c02466{height:54.654737px;}
.h0_c02466{height:1263.000000px;}
.w1_c02466{width:892.500000px;}
.w0_c02466{width:892.830000px;}
.x0_c02466{left:0.000000px;}
.xe_c02466{left:117.000000px;}
.x8_c02466{left:440.999856px;}
.x4_c02466{left:445.680576px;}
.xc_c02466{left:451.080000px;}
.x7_c02466{left:455.399604px;}
.x5_c02466{left:461.880144px;}
.x1_c02466{left:463.320000px;}
.xa_c02466{left:483.480360px;}
.x9_c02466{left:492.119496px;}
.x6_c02466{left:493.200576px;}
.xd_c02466{left:506.880360px;}
.x3_c02466{left:511.919892px;}
.x2_c02466{left:526.679604px;}
.xb_c02466{left:569.880036px;}
@media print{
.v0_c02466{vertical-align:0.000000pt;}
.v1_c02466{vertical-align:1.279488pt;}
.ls10_c02466{letter-spacing:-0.654720pt;}
.lsc_c02466{letter-spacing:-0.642048pt;}
.ls7_c02466{letter-spacing:-0.604032pt;}
.ls9_c02466{letter-spacing:-0.511104pt;}
.lsd_c02466{letter-spacing:-0.287232pt;}
.ls15_c02466{letter-spacing:-0.244992pt;}
.ls11_c02466{letter-spacing:-0.240768pt;}
.lse_c02466{letter-spacing:-0.232320pt;}
.ls6_c02466{letter-spacing:-0.215424pt;}
.ls4_c02466{letter-spacing:-0.105600pt;}
.ls14_c02466{letter-spacing:0.000000pt;}
.ls1_c02466{letter-spacing:0.005376pt;}
.ls5_c02466{letter-spacing:0.114048pt;}
.lsb_c02466{letter-spacing:0.451968pt;}
.ls13_c02466{letter-spacing:0.456960pt;}
.lsf_c02466{letter-spacing:0.477312pt;}
.lsa_c02466{letter-spacing:0.515328pt;}
.ls12_c02466{letter-spacing:0.528000pt;}
.ls8_c02466{letter-spacing:0.532224pt;}
.ls2_c02466{letter-spacing:0.544896pt;}
.ls0_c02466{letter-spacing:0.637824pt;}
.ls3_c02466{letter-spacing:0.642048pt;}
.wsd_c02466{word-spacing:-13.445376pt;}
.wsb_c02466{word-spacing:-11.088000pt;}
.wse_c02466{word-spacing:-11.037312pt;}
.ws4_c02466{word-spacing:-10.344576pt;}
.ws2_c02466{word-spacing:-9.955968pt;}
.ws18_c02466{word-spacing:-1.919232pt;}
.ws12_c02466{word-spacing:-0.958848pt;}
.wsf_c02466{word-spacing:-0.865920pt;}
.ws11_c02466{word-spacing:-0.105600pt;}
.ws15_c02466{word-spacing:-0.088704pt;}
.ws16_c02466{word-spacing:-0.080256pt;}
.ws17_c02466{word-spacing:-0.076032pt;}
.ws14_c02466{word-spacing:-0.033792pt;}
.ws10_c02466{word-spacing:0.000000pt;}
.ws13_c02466{word-spacing:0.321024pt;}
.wsa_c02466{word-spacing:5.892480pt;}
.wsc_c02466{word-spacing:29.600256pt;}
.ws9_c02466{word-spacing:30.966144pt;}
.ws8_c02466{word-spacing:32.127744pt;}
.ws6_c02466{word-spacing:32.659968pt;}
.ws1_c02466{word-spacing:33.563904pt;}
.ws0_c02466{word-spacing:33.796224pt;}
.ws3_c02466{word-spacing:34.860672pt;}
.ws5_c02466{word-spacing:35.468928pt;}
.ws7_c02466{word-spacing:37.357056pt;}
._0_c02466{margin-left:-1.731840pt;}
._2_c02466{width:1.317888pt;}
._4_c02466{width:5.094144pt;}
._6_c02466{width:17.761920pt;}
._7_c02466{width:20.845440pt;}
._5_c02466{width:21.947904pt;}
._1_c02466{width:44.668800pt;}
._3_c02466{width:45.805056pt;}
.fs0_c02466{font-size:42.240000pt;}
.fs1_c02466{font-size:53.760000pt;}
.y0_c02466{bottom:0.000000pt;}
.y1a_c02466{bottom:130.665211pt;}
.y1c_c02466{bottom:165.866875pt;}
.y1b_c02466{bottom:174.507067pt;}
.y19_c02466{bottom:245.225371pt;}
.y18_c02466{bottom:317.225563pt;}
.y16_c02466{bottom:361.386427pt;}
.y12_c02466{bottom:377.386939pt;}
.y17_c02466{bottom:407.786011pt;}
.y15_c02466{bottom:437.226235pt;}
.y14_c02466{bottom:453.226747pt;}
.y11_c02466{bottom:482.666971pt;}
.y13_c02466{bottom:497.386555pt;}
.y10_c02466{bottom:513.387067pt;}
.y1d_c02466{bottom:546.027067pt;}
.yc_c02466{bottom:579.945467pt;}
.yb_c02466{bottom:593.385179pt;}
.ye_c02466{bottom:628.586875pt;}
.yd_c02466{bottom:637.227067pt;}
.ya_c02466{bottom:707.945339pt;}
.y9_c02466{bottom:779.945531pt;}
.y7_c02466{bottom:823.786427pt;}
.y3_c02466{bottom:839.786939pt;}
.y8_c02466{bottom:870.505979pt;}
.y6_c02466{bottom:899.946203pt;}
.y5_c02466{bottom:915.946715pt;}
.y2_c02466{bottom:945.386939pt;}
.y4_c02466{bottom:959.786555pt;}
.y1_c02466{bottom:975.787067pt;}
.yf_c02466{bottom:1008.747067pt;}
.h3_c02466{height:28.916250pt;}
.h1_c02466{height:37.063125pt;}
.h2_c02466{height:37.166250pt;}
.h4_c02466{height:48.581988pt;}
.h0_c02466{height:1122.666667pt;}
.w1_c02466{width:793.333333pt;}
.w0_c02466{width:793.626667pt;}
.x0_c02466{left:0.000000pt;}
.xe_c02466{left:104.000000pt;}
.x8_c02466{left:391.999872pt;}
.x4_c02466{left:396.160512pt;}
.xc_c02466{left:400.960000pt;}
.x7_c02466{left:404.799648pt;}
.x5_c02466{left:410.560128pt;}
.x1_c02466{left:411.840000pt;}
.xa_c02466{left:429.760320pt;}
.x9_c02466{left:437.439552pt;}
.x6_c02466{left:438.400512pt;}
.xd_c02466{left:450.560320pt;}
.x3_c02466{left:455.039904pt;}
.x2_c02466{left:468.159648pt;}
.xb_c02466{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02467 {
    display:none;
  }
  .loading-indicator_c02467.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02467 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02467 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02467" -> "#page-container .classname_c02467")
 */
.pf_c02467 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02467 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02467 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02467 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02467 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02467 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02467 {overflow:visible;}
  }
}
.c_c02467 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02467 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02467:after { /* webkit #35443 */
  content: '';
}
.t_c02467:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02467 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02467 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02467 { /* info for Javascript */
  display:none;
}
.l_c02467 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02467 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02467 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02467:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02467 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02467.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02467 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02467{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02467;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02467{font-family:ff1_c02467;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02467;src:url('chunks/assets/font_0650ba7cb3edd4f7a93756f8.woff2')format("woff");}.ff2_c02467{font-family:ff2_c02467;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02467;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02467{font-family:ff3_c02467;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02467{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02467{vertical-align:0.000000px;}
.v1_c02467{vertical-align:1.439424px;}
.ls15_c02467{letter-spacing:-1.197504px;}
.ls10_c02467{letter-spacing:-0.736560px;}
.lsc_c02467{letter-spacing:-0.722304px;}
.ls7_c02467{letter-spacing:-0.679536px;}
.ls9_c02467{letter-spacing:-0.574992px;}
.lsd_c02467{letter-spacing:-0.323136px;}
.ls16_c02467{letter-spacing:-0.275616px;}
.ls11_c02467{letter-spacing:-0.270864px;}
.lse_c02467{letter-spacing:-0.261360px;}
.ls6_c02467{letter-spacing:-0.242352px;}
.ls4_c02467{letter-spacing:-0.118800px;}
.ls14_c02467{letter-spacing:0.000000px;}
.ls1_c02467{letter-spacing:0.006048px;}
.ls5_c02467{letter-spacing:0.128304px;}
.lsb_c02467{letter-spacing:0.508464px;}
.ls13_c02467{letter-spacing:0.514080px;}
.lsf_c02467{letter-spacing:0.536976px;}
.lsa_c02467{letter-spacing:0.579744px;}
.ls12_c02467{letter-spacing:0.594000px;}
.ls8_c02467{letter-spacing:0.598752px;}
.ls2_c02467{letter-spacing:0.613008px;}
.ls0_c02467{letter-spacing:0.717552px;}
.ls3_c02467{letter-spacing:0.722304px;}
.sc__c02467{text-shadow:none;}
.sc0_c02467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02467{-webkit-text-stroke:0px transparent;}
.sc0_c02467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02467{word-spacing:-15.126048px;}
.wsb_c02467{word-spacing:-12.474000px;}
.wse_c02467{word-spacing:-12.416976px;}
.ws4_c02467{word-spacing:-11.637648px;}
.ws2_c02467{word-spacing:-11.200464px;}
.ws18_c02467{word-spacing:-2.159136px;}
.ws12_c02467{word-spacing:-1.078704px;}
.wsf_c02467{word-spacing:-0.974160px;}
.ws11_c02467{word-spacing:-0.118800px;}
.ws15_c02467{word-spacing:-0.099792px;}
.ws16_c02467{word-spacing:-0.090288px;}
.ws17_c02467{word-spacing:-0.085536px;}
.ws14_c02467{word-spacing:-0.038016px;}
.ws10_c02467{word-spacing:0.000000px;}
.ws13_c02467{word-spacing:0.361152px;}
.ws19_c02467{word-spacing:0.836352px;}
.wsa_c02467{word-spacing:6.629040px;}
.wsc_c02467{word-spacing:33.300288px;}
.ws9_c02467{word-spacing:34.836912px;}
.ws8_c02467{word-spacing:36.143712px;}
.ws6_c02467{word-spacing:36.742464px;}
.ws1_c02467{word-spacing:37.759392px;}
.ws0_c02467{word-spacing:38.020752px;}
.ws3_c02467{word-spacing:39.218256px;}
.ws5_c02467{word-spacing:39.902544px;}
.ws7_c02467{word-spacing:42.026688px;}
._0_c02467{margin-left:-1.948320px;}
._2_c02467{width:1.482624px;}
._8_c02467{width:2.770416px;}
._4_c02467{width:5.730912px;}
._6_c02467{width:19.982160px;}
._7_c02467{width:23.451120px;}
._5_c02467{width:24.691392px;}
._1_c02467{width:50.252400px;}
._3_c02467{width:51.530688px;}
.fc0_c02467{color:rgb(0,0,0);}
.fs0_c02467{font-size:47.520000px;}
.fs1_c02467{font-size:60.480000px;}
.y0_c02467{bottom:0.000000px;}
.y1a_c02467{bottom:146.998362px;}
.y1c_c02467{bottom:186.600234px;}
.y1b_c02467{bottom:196.320450px;}
.y19_c02467{bottom:275.878542px;}
.y18_c02467{bottom:356.878758px;}
.y16_c02467{bottom:406.559730px;}
.y12_c02467{bottom:424.560306px;}
.y17_c02467{bottom:458.759262px;}
.y15_c02467{bottom:491.879514px;}
.y14_c02467{bottom:509.880090px;}
.y11_c02467{bottom:543.000342px;}
.y13_c02467{bottom:559.559874px;}
.y10_c02467{bottom:577.560450px;}
.y1d_c02467{bottom:614.280450px;}
.yc_c02467{bottom:652.438650px;}
.yb_c02467{bottom:667.558326px;}
.ye_c02467{bottom:707.160234px;}
.yd_c02467{bottom:716.880450px;}
.ya_c02467{bottom:796.438506px;}
.y9_c02467{bottom:877.438722px;}
.y7_c02467{bottom:926.759730px;}
.y3_c02467{bottom:944.760306px;}
.y8_c02467{bottom:979.319226px;}
.y6_c02467{bottom:1012.439478px;}
.y5_c02467{bottom:1030.440054px;}
.y2_c02467{bottom:1063.560306px;}
.y4_c02467{bottom:1079.759874px;}
.y1_c02467{bottom:1097.760450px;}
.yf_c02467{bottom:1134.840450px;}
.h3_c02467{height:32.530781px;}
.h1_c02467{height:41.696016px;}
.h2_c02467{height:41.812031px;}
.h4_c02467{height:54.654737px;}
.h0_c02467{height:1263.000000px;}
.w1_c02467{width:892.500000px;}
.w0_c02467{width:892.830000px;}
.x0_c02467{left:0.000000px;}
.xe_c02467{left:117.000000px;}
.x8_c02467{left:440.999856px;}
.x4_c02467{left:445.680576px;}
.xc_c02467{left:451.080000px;}
.x7_c02467{left:455.399604px;}
.x5_c02467{left:461.880144px;}
.x1_c02467{left:463.320000px;}
.xa_c02467{left:483.480360px;}
.x9_c02467{left:492.119496px;}
.x6_c02467{left:493.200576px;}
.xd_c02467{left:506.880360px;}
.x3_c02467{left:511.919892px;}
.x2_c02467{left:526.679604px;}
.xb_c02467{left:569.880036px;}
@media print{
.v0_c02467{vertical-align:0.000000pt;}
.v1_c02467{vertical-align:1.279488pt;}
.ls15_c02467{letter-spacing:-1.064448pt;}
.ls10_c02467{letter-spacing:-0.654720pt;}
.lsc_c02467{letter-spacing:-0.642048pt;}
.ls7_c02467{letter-spacing:-0.604032pt;}
.ls9_c02467{letter-spacing:-0.511104pt;}
.lsd_c02467{letter-spacing:-0.287232pt;}
.ls16_c02467{letter-spacing:-0.244992pt;}
.ls11_c02467{letter-spacing:-0.240768pt;}
.lse_c02467{letter-spacing:-0.232320pt;}
.ls6_c02467{letter-spacing:-0.215424pt;}
.ls4_c02467{letter-spacing:-0.105600pt;}
.ls14_c02467{letter-spacing:0.000000pt;}
.ls1_c02467{letter-spacing:0.005376pt;}
.ls5_c02467{letter-spacing:0.114048pt;}
.lsb_c02467{letter-spacing:0.451968pt;}
.ls13_c02467{letter-spacing:0.456960pt;}
.lsf_c02467{letter-spacing:0.477312pt;}
.lsa_c02467{letter-spacing:0.515328pt;}
.ls12_c02467{letter-spacing:0.528000pt;}
.ls8_c02467{letter-spacing:0.532224pt;}
.ls2_c02467{letter-spacing:0.544896pt;}
.ls0_c02467{letter-spacing:0.637824pt;}
.ls3_c02467{letter-spacing:0.642048pt;}
.wsd_c02467{word-spacing:-13.445376pt;}
.wsb_c02467{word-spacing:-11.088000pt;}
.wse_c02467{word-spacing:-11.037312pt;}
.ws4_c02467{word-spacing:-10.344576pt;}
.ws2_c02467{word-spacing:-9.955968pt;}
.ws18_c02467{word-spacing:-1.919232pt;}
.ws12_c02467{word-spacing:-0.958848pt;}
.wsf_c02467{word-spacing:-0.865920pt;}
.ws11_c02467{word-spacing:-0.105600pt;}
.ws15_c02467{word-spacing:-0.088704pt;}
.ws16_c02467{word-spacing:-0.080256pt;}
.ws17_c02467{word-spacing:-0.076032pt;}
.ws14_c02467{word-spacing:-0.033792pt;}
.ws10_c02467{word-spacing:0.000000pt;}
.ws13_c02467{word-spacing:0.321024pt;}
.ws19_c02467{word-spacing:0.743424pt;}
.wsa_c02467{word-spacing:5.892480pt;}
.wsc_c02467{word-spacing:29.600256pt;}
.ws9_c02467{word-spacing:30.966144pt;}
.ws8_c02467{word-spacing:32.127744pt;}
.ws6_c02467{word-spacing:32.659968pt;}
.ws1_c02467{word-spacing:33.563904pt;}
.ws0_c02467{word-spacing:33.796224pt;}
.ws3_c02467{word-spacing:34.860672pt;}
.ws5_c02467{word-spacing:35.468928pt;}
.ws7_c02467{word-spacing:37.357056pt;}
._0_c02467{margin-left:-1.731840pt;}
._2_c02467{width:1.317888pt;}
._8_c02467{width:2.462592pt;}
._4_c02467{width:5.094144pt;}
._6_c02467{width:17.761920pt;}
._7_c02467{width:20.845440pt;}
._5_c02467{width:21.947904pt;}
._1_c02467{width:44.668800pt;}
._3_c02467{width:45.805056pt;}
.fs0_c02467{font-size:42.240000pt;}
.fs1_c02467{font-size:53.760000pt;}
.y0_c02467{bottom:0.000000pt;}
.y1a_c02467{bottom:130.665211pt;}
.y1c_c02467{bottom:165.866875pt;}
.y1b_c02467{bottom:174.507067pt;}
.y19_c02467{bottom:245.225371pt;}
.y18_c02467{bottom:317.225563pt;}
.y16_c02467{bottom:361.386427pt;}
.y12_c02467{bottom:377.386939pt;}
.y17_c02467{bottom:407.786011pt;}
.y15_c02467{bottom:437.226235pt;}
.y14_c02467{bottom:453.226747pt;}
.y11_c02467{bottom:482.666971pt;}
.y13_c02467{bottom:497.386555pt;}
.y10_c02467{bottom:513.387067pt;}
.y1d_c02467{bottom:546.027067pt;}
.yc_c02467{bottom:579.945467pt;}
.yb_c02467{bottom:593.385179pt;}
.ye_c02467{bottom:628.586875pt;}
.yd_c02467{bottom:637.227067pt;}
.ya_c02467{bottom:707.945339pt;}
.y9_c02467{bottom:779.945531pt;}
.y7_c02467{bottom:823.786427pt;}
.y3_c02467{bottom:839.786939pt;}
.y8_c02467{bottom:870.505979pt;}
.y6_c02467{bottom:899.946203pt;}
.y5_c02467{bottom:915.946715pt;}
.y2_c02467{bottom:945.386939pt;}
.y4_c02467{bottom:959.786555pt;}
.y1_c02467{bottom:975.787067pt;}
.yf_c02467{bottom:1008.747067pt;}
.h3_c02467{height:28.916250pt;}
.h1_c02467{height:37.063125pt;}
.h2_c02467{height:37.166250pt;}
.h4_c02467{height:48.581988pt;}
.h0_c02467{height:1122.666667pt;}
.w1_c02467{width:793.333333pt;}
.w0_c02467{width:793.626667pt;}
.x0_c02467{left:0.000000pt;}
.xe_c02467{left:104.000000pt;}
.x8_c02467{left:391.999872pt;}
.x4_c02467{left:396.160512pt;}
.xc_c02467{left:400.960000pt;}
.x7_c02467{left:404.799648pt;}
.x5_c02467{left:410.560128pt;}
.x1_c02467{left:411.840000pt;}
.xa_c02467{left:429.760320pt;}
.x9_c02467{left:437.439552pt;}
.x6_c02467{left:438.400512pt;}
.xd_c02467{left:450.560320pt;}
.x3_c02467{left:455.039904pt;}
.x2_c02467{left:468.159648pt;}
.xb_c02467{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02468 {
    display:none;
  }
  .loading-indicator_c02468.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02468 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02468 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02468" -> "#page-container .classname_c02468")
 */
.pf_c02468 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02468 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02468 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02468 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02468 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02468 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02468 {overflow:visible;}
  }
}
.c_c02468 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02468 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02468:after { /* webkit #35443 */
  content: '';
}
.t_c02468:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02468 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02468 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02468 { /* info for Javascript */
  display:none;
}
.l_c02468 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02468 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02468 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02468:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02468 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02468.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02468 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02468{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02468;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02468{font-family:ff1_c02468;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02468;src:url('chunks/assets/font_6e6c895526ee28abdb31075a.woff2')format("woff");}.ff2_c02468{font-family:ff2_c02468;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02468;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02468{font-family:ff3_c02468;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02468{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02468{vertical-align:0.000000px;}
.v1_c02468{vertical-align:1.439424px;}
.v2_c02468{vertical-align:33.121440px;}
.lsf_c02468{letter-spacing:-0.765072px;}
.ls7_c02468{letter-spacing:-0.679536px;}
.ls9_c02468{letter-spacing:-0.574992px;}
.ls11_c02468{letter-spacing:-0.375408px;}
.ls16_c02468{letter-spacing:-0.327888px;}
.ls13_c02468{letter-spacing:-0.275616px;}
.ls10_c02468{letter-spacing:-0.261360px;}
.ls6_c02468{letter-spacing:-0.242352px;}
.ls4_c02468{letter-spacing:-0.118800px;}
.lse_c02468{letter-spacing:0.000000px;}
.ls1_c02468{letter-spacing:0.006048px;}
.lsb_c02468{letter-spacing:0.014256px;}
.lsd_c02468{letter-spacing:0.080784px;}
.ls5_c02468{letter-spacing:0.128304px;}
.lsc_c02468{letter-spacing:0.508464px;}
.ls15_c02468{letter-spacing:0.514080px;}
.ls12_c02468{letter-spacing:0.536976px;}
.lsa_c02468{letter-spacing:0.579744px;}
.ls14_c02468{letter-spacing:0.594000px;}
.ls8_c02468{letter-spacing:0.598752px;}
.ls3_c02468{letter-spacing:0.613008px;}
.ls0_c02468{letter-spacing:0.717552px;}
.ls2_c02468{letter-spacing:0.722304px;}
.sc__c02468{text-shadow:none;}
.sc0_c02468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02468{-webkit-text-stroke:0px transparent;}
.sc0_c02468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11_c02468{word-spacing:-15.126048px;}
.ws12_c02468{word-spacing:-12.602304px;}
.wsf_c02468{word-spacing:-12.474000px;}
.ws13_c02468{word-spacing:-12.459744px;}
.wse_c02468{word-spacing:-12.416976px;}
.ws14_c02468{word-spacing:-12.388464px;}
.ws8_c02468{word-spacing:-11.894256px;}
.wsb_c02468{word-spacing:-11.880000px;}
.ws4_c02468{word-spacing:-11.637648px;}
.ws2_c02468{word-spacing:-11.200464px;}
.ws1f_c02468{word-spacing:-2.159136px;}
.ws20_c02468{word-spacing:-1.083456px;}
.ws1a_c02468{word-spacing:-1.078704px;}
.ws17_c02468{word-spacing:-0.974160px;}
.ws19_c02468{word-spacing:-0.118800px;}
.ws1c_c02468{word-spacing:-0.099792px;}
.ws1e_c02468{word-spacing:-0.085536px;}
.ws18_c02468{word-spacing:0.000000px;}
.ws1d_c02468{word-spacing:0.014256px;}
.ws1b_c02468{word-spacing:0.403920px;}
.wsa_c02468{word-spacing:6.320160px;}
.ws7_c02468{word-spacing:9.271152px;}
.wsd_c02468{word-spacing:22.923648px;}
.ws16_c02468{word-spacing:28.735344px;}
.ws15_c02468{word-spacing:30.298752px;}
.ws10_c02468{word-spacing:33.300288px;}
.wsc_c02468{word-spacing:36.143712px;}
.ws6_c02468{word-spacing:36.742464px;}
.ws1_c02468{word-spacing:37.759392px;}
.ws0_c02468{word-spacing:38.020752px;}
.ws3_c02468{word-spacing:39.218256px;}
.ws5_c02468{word-spacing:39.902544px;}
.ws9_c02468{word-spacing:42.026688px;}
._0_c02468{margin-left:-1.948320px;}
._2_c02468{width:1.482624px;}
._4_c02468{width:5.730912px;}
._8_c02468{width:15.681600px;}
._7_c02468{width:17.064432px;}
._5_c02468{width:19.530720px;}
._6_c02468{width:22.667040px;}
._c_c02468{width:36.970560px;}
._a_c02468{width:38.016000px;}
._9_c02468{width:41.698800px;}
._b_c02468{width:42.977088px;}
._1_c02468{width:50.252400px;}
._3_c02468{width:51.530688px;}
.fc0_c02468{color:rgb(0,0,0);}
.fs0_c02468{font-size:47.520000px;}
.fs1_c02468{font-size:60.480000px;}
.y0_c02468{bottom:0.000000px;}
.y1d_c02468{bottom:146.998362px;}
.y20_c02468{bottom:179.760918px;}
.y1f_c02468{bottom:186.600234px;}
.y1e_c02468{bottom:196.320450px;}
.y1c_c02468{bottom:275.878542px;}
.y1b_c02468{bottom:341.759082px;}
.y1a_c02468{bottom:356.878758px;}
.y18_c02468{bottom:406.559730px;}
.y14_c02468{bottom:424.560306px;}
.y19_c02468{bottom:458.759262px;}
.y17_c02468{bottom:491.879514px;}
.y16_c02468{bottom:509.880090px;}
.y13_c02468{bottom:543.000342px;}
.y15_c02468{bottom:559.559874px;}
.y12_c02468{bottom:577.560450px;}
.y21_c02468{bottom:614.280450px;}
.ye_c02468{bottom:667.561890px;}
.y10_c02468{bottom:707.160234px;}
.yf_c02468{bottom:716.880450px;}
.yd_c02468{bottom:796.442070px;}
.yc_c02468{bottom:862.321422px;}
.yb_c02468{bottom:877.441098px;}
.y8_c02468{bottom:912.000018px;}
.y7_c02468{bottom:926.759730px;}
.y3_c02468{bottom:944.760306px;}
.ya_c02468{bottom:964.560702px;}
.y9_c02468{bottom:979.320414px;}
.y6_c02468{bottom:1012.439478px;}
.y5_c02468{bottom:1030.440054px;}
.y2_c02468{bottom:1063.560306px;}
.y4_c02468{bottom:1079.759874px;}
.y1_c02468{bottom:1097.760450px;}
.y11_c02468{bottom:1134.840450px;}
.h3_c02468{height:32.530781px;}
.h1_c02468{height:41.696016px;}
.h2_c02468{height:41.812031px;}
.h4_c02468{height:54.654737px;}
.h5_c02468{height:74.817456px;}
.h0_c02468{height:1263.000000px;}
.w1_c02468{width:892.500000px;}
.w0_c02468{width:892.830000px;}
.x0_c02468{left:0.000000px;}
.xe_c02468{left:117.000000px;}
.x9_c02468{left:440.999856px;}
.x4_c02468{left:445.680576px;}
.xc_c02468{left:451.080000px;}
.x7_c02468{left:455.399604px;}
.x5_c02468{left:461.880144px;}
.x1_c02468{left:463.320000px;}
.xb_c02468{left:483.480360px;}
.xa_c02468{left:492.119496px;}
.x6_c02468{left:493.200576px;}
.xd_c02468{left:506.880360px;}
.x3_c02468{left:511.919892px;}
.x2_c02468{left:526.679604px;}
.x8_c02468{left:569.880036px;}
@media print{
.v0_c02468{vertical-align:0.000000pt;}
.v1_c02468{vertical-align:1.279488pt;}
.v2_c02468{vertical-align:29.441280pt;}
.lsf_c02468{letter-spacing:-0.680064pt;}
.ls7_c02468{letter-spacing:-0.604032pt;}
.ls9_c02468{letter-spacing:-0.511104pt;}
.ls11_c02468{letter-spacing:-0.333696pt;}
.ls16_c02468{letter-spacing:-0.291456pt;}
.ls13_c02468{letter-spacing:-0.244992pt;}
.ls10_c02468{letter-spacing:-0.232320pt;}
.ls6_c02468{letter-spacing:-0.215424pt;}
.ls4_c02468{letter-spacing:-0.105600pt;}
.lse_c02468{letter-spacing:0.000000pt;}
.ls1_c02468{letter-spacing:0.005376pt;}
.lsb_c02468{letter-spacing:0.012672pt;}
.lsd_c02468{letter-spacing:0.071808pt;}
.ls5_c02468{letter-spacing:0.114048pt;}
.lsc_c02468{letter-spacing:0.451968pt;}
.ls15_c02468{letter-spacing:0.456960pt;}
.ls12_c02468{letter-spacing:0.477312pt;}
.lsa_c02468{letter-spacing:0.515328pt;}
.ls14_c02468{letter-spacing:0.528000pt;}
.ls8_c02468{letter-spacing:0.532224pt;}
.ls3_c02468{letter-spacing:0.544896pt;}
.ls0_c02468{letter-spacing:0.637824pt;}
.ls2_c02468{letter-spacing:0.642048pt;}
.ws11_c02468{word-spacing:-13.445376pt;}
.ws12_c02468{word-spacing:-11.202048pt;}
.wsf_c02468{word-spacing:-11.088000pt;}
.ws13_c02468{word-spacing:-11.075328pt;}
.wse_c02468{word-spacing:-11.037312pt;}
.ws14_c02468{word-spacing:-11.011968pt;}
.ws8_c02468{word-spacing:-10.572672pt;}
.wsb_c02468{word-spacing:-10.560000pt;}
.ws4_c02468{word-spacing:-10.344576pt;}
.ws2_c02468{word-spacing:-9.955968pt;}
.ws1f_c02468{word-spacing:-1.919232pt;}
.ws20_c02468{word-spacing:-0.963072pt;}
.ws1a_c02468{word-spacing:-0.958848pt;}
.ws17_c02468{word-spacing:-0.865920pt;}
.ws19_c02468{word-spacing:-0.105600pt;}
.ws1c_c02468{word-spacing:-0.088704pt;}
.ws1e_c02468{word-spacing:-0.076032pt;}
.ws18_c02468{word-spacing:0.000000pt;}
.ws1d_c02468{word-spacing:0.012672pt;}
.ws1b_c02468{word-spacing:0.359040pt;}
.wsa_c02468{word-spacing:5.617920pt;}
.ws7_c02468{word-spacing:8.241024pt;}
.wsd_c02468{word-spacing:20.376576pt;}
.ws16_c02468{word-spacing:25.542528pt;}
.ws15_c02468{word-spacing:26.932224pt;}
.ws10_c02468{word-spacing:29.600256pt;}
.wsc_c02468{word-spacing:32.127744pt;}
.ws6_c02468{word-spacing:32.659968pt;}
.ws1_c02468{word-spacing:33.563904pt;}
.ws0_c02468{word-spacing:33.796224pt;}
.ws3_c02468{word-spacing:34.860672pt;}
.ws5_c02468{word-spacing:35.468928pt;}
.ws9_c02468{word-spacing:37.357056pt;}
._0_c02468{margin-left:-1.731840pt;}
._2_c02468{width:1.317888pt;}
._4_c02468{width:5.094144pt;}
._8_c02468{width:13.939200pt;}
._7_c02468{width:15.168384pt;}
._5_c02468{width:17.360640pt;}
._6_c02468{width:20.148480pt;}
._c_c02468{width:32.862720pt;}
._a_c02468{width:33.792000pt;}
._9_c02468{width:37.065600pt;}
._b_c02468{width:38.201856pt;}
._1_c02468{width:44.668800pt;}
._3_c02468{width:45.805056pt;}
.fs0_c02468{font-size:42.240000pt;}
.fs1_c02468{font-size:53.760000pt;}
.y0_c02468{bottom:0.000000pt;}
.y1d_c02468{bottom:130.665211pt;}
.y20_c02468{bottom:159.787483pt;}
.y1f_c02468{bottom:165.866875pt;}
.y1e_c02468{bottom:174.507067pt;}
.y1c_c02468{bottom:245.225371pt;}
.y1b_c02468{bottom:303.785851pt;}
.y1a_c02468{bottom:317.225563pt;}
.y18_c02468{bottom:361.386427pt;}
.y14_c02468{bottom:377.386939pt;}
.y19_c02468{bottom:407.786011pt;}
.y17_c02468{bottom:437.226235pt;}
.y16_c02468{bottom:453.226747pt;}
.y13_c02468{bottom:482.666971pt;}
.y15_c02468{bottom:497.386555pt;}
.y12_c02468{bottom:513.387067pt;}
.y21_c02468{bottom:546.027067pt;}
.ye_c02468{bottom:593.388347pt;}
.y10_c02468{bottom:628.586875pt;}
.yf_c02468{bottom:637.227067pt;}
.yd_c02468{bottom:707.948507pt;}
.yc_c02468{bottom:766.507931pt;}
.yb_c02468{bottom:779.947643pt;}
.y8_c02468{bottom:810.666683pt;}
.y7_c02468{bottom:823.786427pt;}
.y3_c02468{bottom:839.786939pt;}
.ya_c02468{bottom:857.387291pt;}
.y9_c02468{bottom:870.507035pt;}
.y6_c02468{bottom:899.946203pt;}
.y5_c02468{bottom:915.946715pt;}
.y2_c02468{bottom:945.386939pt;}
.y4_c02468{bottom:959.786555pt;}
.y1_c02468{bottom:975.787067pt;}
.y11_c02468{bottom:1008.747067pt;}
.h3_c02468{height:28.916250pt;}
.h1_c02468{height:37.063125pt;}
.h2_c02468{height:37.166250pt;}
.h4_c02468{height:48.581988pt;}
.h5_c02468{height:66.504405pt;}
.h0_c02468{height:1122.666667pt;}
.w1_c02468{width:793.333333pt;}
.w0_c02468{width:793.626667pt;}
.x0_c02468{left:0.000000pt;}
.xe_c02468{left:104.000000pt;}
.x9_c02468{left:391.999872pt;}
.x4_c02468{left:396.160512pt;}
.xc_c02468{left:400.960000pt;}
.x7_c02468{left:404.799648pt;}
.x5_c02468{left:410.560128pt;}
.x1_c02468{left:411.840000pt;}
.xb_c02468{left:429.760320pt;}
.xa_c02468{left:437.439552pt;}
.x6_c02468{left:438.400512pt;}
.xd_c02468{left:450.560320pt;}
.x3_c02468{left:455.039904pt;}
.x2_c02468{left:468.159648pt;}
.x8_c02468{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02469 {
    display:none;
  }
  .loading-indicator_c02469.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02469 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02469 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02469" -> "#page-container .classname_c02469")
 */
.pf_c02469 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02469 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02469 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02469 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02469 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02469 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02469 {overflow:visible;}
  }
}
.c_c02469 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02469 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02469:after { /* webkit #35443 */
  content: '';
}
.t_c02469:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02469 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02469 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02469 { /* info for Javascript */
  display:none;
}
.l_c02469 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02469 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02469 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02469:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02469 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02469.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02469 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02469{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02469;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02469{font-family:ff1_c02469;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02469;src:url('chunks/assets/font_c6621140430beed21f56b3df.woff2')format("woff");}.ff2_c02469{font-family:ff2_c02469;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02469;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02469{font-family:ff3_c02469;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02469{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02469{vertical-align:0.000000px;}
.v1_c02469{vertical-align:1.439424px;}
.lsf_c02469{letter-spacing:-0.793584px;}
.lse_c02469{letter-spacing:-0.741312px;}
.lsb_c02469{letter-spacing:-0.722304px;}
.ls7_c02469{letter-spacing:-0.679536px;}
.ls9_c02469{letter-spacing:-0.574992px;}
.ls11_c02469{letter-spacing:-0.375408px;}
.ls18_c02469{letter-spacing:-0.323136px;}
.ls13_c02469{letter-spacing:-0.275616px;}
.ls10_c02469{letter-spacing:-0.261360px;}
.ls6_c02469{letter-spacing:-0.242352px;}
.ls4_c02469{letter-spacing:-0.118800px;}
.ls16_c02469{letter-spacing:0.000000px;}
.ls1_c02469{letter-spacing:0.006048px;}
.ls17_c02469{letter-spacing:0.052272px;}
.lsd_c02469{letter-spacing:0.071280px;}
.ls5_c02469{letter-spacing:0.128304px;}
.lsc_c02469{letter-spacing:0.508464px;}
.ls15_c02469{letter-spacing:0.514080px;}
.ls12_c02469{letter-spacing:0.536976px;}
.lsa_c02469{letter-spacing:0.579744px;}
.ls14_c02469{letter-spacing:0.594000px;}
.ls8_c02469{letter-spacing:0.598752px;}
.ls2_c02469{letter-spacing:0.613008px;}
.ls0_c02469{letter-spacing:0.717552px;}
.ls3_c02469{letter-spacing:0.722304px;}
.sc__c02469{text-shadow:none;}
.sc0_c02469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02469{-webkit-text-stroke:0px transparent;}
.sc0_c02469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02469{word-spacing:-15.126048px;}
.wsc_c02469{word-spacing:-12.474000px;}
.wsb_c02469{word-spacing:-12.416976px;}
.ws4_c02469{word-spacing:-11.637648px;}
.ws2_c02469{word-spacing:-11.200464px;}
.ws1a_c02469{word-spacing:-2.159136px;}
.ws1b_c02469{word-spacing:-1.083456px;}
.ws13_c02469{word-spacing:-1.078704px;}
.ws10_c02469{word-spacing:-0.974160px;}
.ws15_c02469{word-spacing:-0.432432px;}
.ws12_c02469{word-spacing:-0.118800px;}
.ws17_c02469{word-spacing:-0.099792px;}
.ws19_c02469{word-spacing:-0.085536px;}
.ws1c_c02469{word-spacing:-0.038016px;}
.ws11_c02469{word-spacing:0.000000px;}
.ws18_c02469{word-spacing:0.014256px;}
.ws14_c02469{word-spacing:0.361152px;}
.ws16_c02469{word-spacing:0.432432px;}
.wsf_c02469{word-spacing:7.455888px;}
.wsa_c02469{word-spacing:16.242336px;}
.ws9_c02469{word-spacing:22.923648px;}
.wsd_c02469{word-spacing:33.300288px;}
.ws8_c02469{word-spacing:36.143712px;}
.ws6_c02469{word-spacing:36.742464px;}
.ws1_c02469{word-spacing:37.759392px;}
.ws0_c02469{word-spacing:38.020752px;}
.ws3_c02469{word-spacing:39.218256px;}
.ws5_c02469{word-spacing:39.902544px;}
.ws7_c02469{word-spacing:42.026688px;}
._0_c02469{margin-left:-1.948320px;}
._2_c02469{width:1.482624px;}
._4_c02469{width:5.730912px;}
._b_c02469{width:21.887712px;}
._a_c02469{width:24.325488px;}
._9_c02469{width:30.246480px;}
._8_c02469{width:31.814640px;}
._7_c02469{width:34.067088px;}
._6_c02469{width:38.016000px;}
._5_c02469{width:41.698800px;}
._1_c02469{width:50.252400px;}
._3_c02469{width:51.530688px;}
.fc0_c02469{color:rgb(0,0,0);}
.fs0_c02469{font-size:47.520000px;}
.fs1_c02469{font-size:60.480000px;}
.y0_c02469{bottom:0.000000px;}
.y1c_c02469{bottom:146.999550px;}
.y1e_c02469{bottom:186.600234px;}
.y1d_c02469{bottom:196.320450px;}
.y1b_c02469{bottom:275.879730px;}
.y1a_c02469{bottom:356.879946px;}
.y17_c02469{bottom:406.559730px;}
.y13_c02469{bottom:424.560306px;}
.y19_c02469{bottom:443.999550px;}
.y18_c02469{bottom:458.759262px;}
.y16_c02469{bottom:491.879514px;}
.y15_c02469{bottom:509.880090px;}
.y12_c02469{bottom:543.000342px;}
.y14_c02469{bottom:559.559874px;}
.y11_c02469{bottom:577.560450px;}
.y1f_c02469{bottom:614.280450px;}
.yd_c02469{bottom:667.559514px;}
.yf_c02469{bottom:707.160234px;}
.ye_c02469{bottom:716.880450px;}
.yc_c02469{bottom:796.439694px;}
.yb_c02469{bottom:847.559334px;}
.ya_c02469{bottom:862.319046px;}
.y9_c02469{bottom:877.438722px;}
.y7_c02469{bottom:926.759730px;}
.y3_c02469{bottom:944.760306px;}
.y8_c02469{bottom:979.319226px;}
.y6_c02469{bottom:1012.439478px;}
.y5_c02469{bottom:1030.440054px;}
.y2_c02469{bottom:1063.560306px;}
.y4_c02469{bottom:1079.759874px;}
.y1_c02469{bottom:1097.760450px;}
.y10_c02469{bottom:1134.840450px;}
.h3_c02469{height:32.530781px;}
.h1_c02469{height:41.696016px;}
.h2_c02469{height:41.812031px;}
.h4_c02469{height:54.654737px;}
.h0_c02469{height:1263.000000px;}
.w1_c02469{width:892.500000px;}
.w0_c02469{width:892.830000px;}
.x0_c02469{left:0.000000px;}
.xe_c02469{left:117.000000px;}
.x8_c02469{left:440.999856px;}
.x4_c02469{left:445.680576px;}
.xc_c02469{left:451.080000px;}
.x7_c02469{left:455.399604px;}
.x5_c02469{left:461.880144px;}
.x1_c02469{left:463.320000px;}
.xb_c02469{left:483.480360px;}
.x9_c02469{left:492.119496px;}
.x6_c02469{left:493.200576px;}
.xd_c02469{left:506.880360px;}
.x3_c02469{left:511.919892px;}
.x2_c02469{left:526.679604px;}
.xa_c02469{left:569.880036px;}
@media print{
.v0_c02469{vertical-align:0.000000pt;}
.v1_c02469{vertical-align:1.279488pt;}
.lsf_c02469{letter-spacing:-0.705408pt;}
.lse_c02469{letter-spacing:-0.658944pt;}
.lsb_c02469{letter-spacing:-0.642048pt;}
.ls7_c02469{letter-spacing:-0.604032pt;}
.ls9_c02469{letter-spacing:-0.511104pt;}
.ls11_c02469{letter-spacing:-0.333696pt;}
.ls18_c02469{letter-spacing:-0.287232pt;}
.ls13_c02469{letter-spacing:-0.244992pt;}
.ls10_c02469{letter-spacing:-0.232320pt;}
.ls6_c02469{letter-spacing:-0.215424pt;}
.ls4_c02469{letter-spacing:-0.105600pt;}
.ls16_c02469{letter-spacing:0.000000pt;}
.ls1_c02469{letter-spacing:0.005376pt;}
.ls17_c02469{letter-spacing:0.046464pt;}
.lsd_c02469{letter-spacing:0.063360pt;}
.ls5_c02469{letter-spacing:0.114048pt;}
.lsc_c02469{letter-spacing:0.451968pt;}
.ls15_c02469{letter-spacing:0.456960pt;}
.ls12_c02469{letter-spacing:0.477312pt;}
.lsa_c02469{letter-spacing:0.515328pt;}
.ls14_c02469{letter-spacing:0.528000pt;}
.ls8_c02469{letter-spacing:0.532224pt;}
.ls2_c02469{letter-spacing:0.544896pt;}
.ls0_c02469{letter-spacing:0.637824pt;}
.ls3_c02469{letter-spacing:0.642048pt;}
.wse_c02469{word-spacing:-13.445376pt;}
.wsc_c02469{word-spacing:-11.088000pt;}
.wsb_c02469{word-spacing:-11.037312pt;}
.ws4_c02469{word-spacing:-10.344576pt;}
.ws2_c02469{word-spacing:-9.955968pt;}
.ws1a_c02469{word-spacing:-1.919232pt;}
.ws1b_c02469{word-spacing:-0.963072pt;}
.ws13_c02469{word-spacing:-0.958848pt;}
.ws10_c02469{word-spacing:-0.865920pt;}
.ws15_c02469{word-spacing:-0.384384pt;}
.ws12_c02469{word-spacing:-0.105600pt;}
.ws17_c02469{word-spacing:-0.088704pt;}
.ws19_c02469{word-spacing:-0.076032pt;}
.ws1c_c02469{word-spacing:-0.033792pt;}
.ws11_c02469{word-spacing:0.000000pt;}
.ws18_c02469{word-spacing:0.012672pt;}
.ws14_c02469{word-spacing:0.321024pt;}
.ws16_c02469{word-spacing:0.384384pt;}
.wsf_c02469{word-spacing:6.627456pt;}
.wsa_c02469{word-spacing:14.437632pt;}
.ws9_c02469{word-spacing:20.376576pt;}
.wsd_c02469{word-spacing:29.600256pt;}
.ws8_c02469{word-spacing:32.127744pt;}
.ws6_c02469{word-spacing:32.659968pt;}
.ws1_c02469{word-spacing:33.563904pt;}
.ws0_c02469{word-spacing:33.796224pt;}
.ws3_c02469{word-spacing:34.860672pt;}
.ws5_c02469{word-spacing:35.468928pt;}
.ws7_c02469{word-spacing:37.357056pt;}
._0_c02469{margin-left:-1.731840pt;}
._2_c02469{width:1.317888pt;}
._4_c02469{width:5.094144pt;}
._b_c02469{width:19.455744pt;}
._a_c02469{width:21.622656pt;}
._9_c02469{width:26.885760pt;}
._8_c02469{width:28.279680pt;}
._7_c02469{width:30.281856pt;}
._6_c02469{width:33.792000pt;}
._5_c02469{width:37.065600pt;}
._1_c02469{width:44.668800pt;}
._3_c02469{width:45.805056pt;}
.fs0_c02469{font-size:42.240000pt;}
.fs1_c02469{font-size:53.760000pt;}
.y0_c02469{bottom:0.000000pt;}
.y1c_c02469{bottom:130.666267pt;}
.y1e_c02469{bottom:165.866875pt;}
.y1d_c02469{bottom:174.507067pt;}
.y1b_c02469{bottom:245.226427pt;}
.y1a_c02469{bottom:317.226619pt;}
.y17_c02469{bottom:361.386427pt;}
.y13_c02469{bottom:377.386939pt;}
.y19_c02469{bottom:394.666267pt;}
.y18_c02469{bottom:407.786011pt;}
.y16_c02469{bottom:437.226235pt;}
.y15_c02469{bottom:453.226747pt;}
.y12_c02469{bottom:482.666971pt;}
.y14_c02469{bottom:497.386555pt;}
.y11_c02469{bottom:513.387067pt;}
.y1f_c02469{bottom:546.027067pt;}
.yd_c02469{bottom:593.386235pt;}
.yf_c02469{bottom:628.586875pt;}
.ye_c02469{bottom:637.227067pt;}
.yc_c02469{bottom:707.946395pt;}
.yb_c02469{bottom:753.386075pt;}
.ya_c02469{bottom:766.505819pt;}
.y9_c02469{bottom:779.945531pt;}
.y7_c02469{bottom:823.786427pt;}
.y3_c02469{bottom:839.786939pt;}
.y8_c02469{bottom:870.505979pt;}
.y6_c02469{bottom:899.946203pt;}
.y5_c02469{bottom:915.946715pt;}
.y2_c02469{bottom:945.386939pt;}
.y4_c02469{bottom:959.786555pt;}
.y1_c02469{bottom:975.787067pt;}
.y10_c02469{bottom:1008.747067pt;}
.h3_c02469{height:28.916250pt;}
.h1_c02469{height:37.063125pt;}
.h2_c02469{height:37.166250pt;}
.h4_c02469{height:48.581988pt;}
.h0_c02469{height:1122.666667pt;}
.w1_c02469{width:793.333333pt;}
.w0_c02469{width:793.626667pt;}
.x0_c02469{left:0.000000pt;}
.xe_c02469{left:104.000000pt;}
.x8_c02469{left:391.999872pt;}
.x4_c02469{left:396.160512pt;}
.xc_c02469{left:400.960000pt;}
.x7_c02469{left:404.799648pt;}
.x5_c02469{left:410.560128pt;}
.x1_c02469{left:411.840000pt;}
.xb_c02469{left:429.760320pt;}
.x9_c02469{left:437.439552pt;}
.x6_c02469{left:438.400512pt;}
.xd_c02469{left:450.560320pt;}
.x3_c02469{left:455.039904pt;}
.x2_c02469{left:468.159648pt;}
.xa_c02469{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02470 {
    display:none;
  }
  .loading-indicator_c02470.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02470 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02470 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02470" -> "#page-container .classname_c02470")
 */
.pf_c02470 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02470 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02470 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02470 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02470 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02470 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02470 {overflow:visible;}
  }
}
.c_c02470 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02470 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02470:after { /* webkit #35443 */
  content: '';
}
.t_c02470:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02470 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02470 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02470 { /* info for Javascript */
  display:none;
}
.l_c02470 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02470 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02470 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02470:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02470 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02470.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02470 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02470{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02470;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02470{font-family:ff1_c02470;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02470;src:url('chunks/assets/font_0918c1a1e5fcbc1793d8656f.woff2')format("woff");}.ff2_c02470{font-family:ff2_c02470;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02470;src:url('chunks/assets/font_c6d2b6dc5fab7bb44da7e1f6.woff2')format("woff");}.ff3_c02470{font-family:ff3_c02470;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02470{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02470{vertical-align:0.000000px;}
.v2_c02470{vertical-align:1.439424px;}
.v1_c02470{vertical-align:33.121440px;}
.lsf_c02470{letter-spacing:-0.755568px;}
.lsc_c02470{letter-spacing:-0.722304px;}
.ls8_c02470{letter-spacing:-0.679536px;}
.lsa_c02470{letter-spacing:-0.574992px;}
.ls1c_c02470{letter-spacing:-0.337392px;}
.ls18_c02470{letter-spacing:-0.327888px;}
.ls16_c02470{letter-spacing:-0.275616px;}
.ls12_c02470{letter-spacing:-0.261360px;}
.ls7_c02470{letter-spacing:-0.242352px;}
.ls1b_c02470{letter-spacing:-0.142560px;}
.ls5_c02470{letter-spacing:-0.118800px;}
.ls10_c02470{letter-spacing:0.000000px;}
.ls1_c02470{letter-spacing:0.006048px;}
.lse_c02470{letter-spacing:0.014256px;}
.ls6_c02470{letter-spacing:0.128304px;}
.ls14_c02470{letter-spacing:0.199584px;}
.ls13_c02470{letter-spacing:0.209088px;}
.lsd_c02470{letter-spacing:0.508464px;}
.ls19_c02470{letter-spacing:0.514080px;}
.ls15_c02470{letter-spacing:0.536976px;}
.lsb_c02470{letter-spacing:0.579744px;}
.ls17_c02470{letter-spacing:0.594000px;}
.ls9_c02470{letter-spacing:0.598752px;}
.ls4_c02470{letter-spacing:0.613008px;}
.ls1a_c02470{letter-spacing:0.641520px;}
.ls2_c02470{letter-spacing:0.651024px;}
.ls11_c02470{letter-spacing:0.679536px;}
.ls0_c02470{letter-spacing:0.717552px;}
.ls3_c02470{letter-spacing:0.722304px;}
.sc__c02470{text-shadow:none;}
.sc0_c02470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02470{-webkit-text-stroke:0px transparent;}
.sc0_c02470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11_c02470{word-spacing:-15.126048px;}
.wsd_c02470{word-spacing:-12.416976px;}
.ws4_c02470{word-spacing:-11.637648px;}
.ws2_c02470{word-spacing:-11.200464px;}
.ws23_c02470{word-spacing:-2.159136px;}
.ws14_c02470{word-spacing:-2.062368px;}
.ws22_c02470{word-spacing:-1.083456px;}
.ws1b_c02470{word-spacing:-1.078704px;}
.ws1e_c02470{word-spacing:-1.040688px;}
.ws24_c02470{word-spacing:-1.002672px;}
.ws18_c02470{word-spacing:-0.974160px;}
.ws20_c02470{word-spacing:-0.560736px;}
.ws1d_c02470{word-spacing:-0.375408px;}
.ws1a_c02470{word-spacing:-0.118800px;}
.ws1f_c02470{word-spacing:-0.099792px;}
.ws21_c02470{word-spacing:-0.085536px;}
.ws25_c02470{word-spacing:-0.023760px;}
.ws19_c02470{word-spacing:0.000000px;}
.ws1c_c02470{word-spacing:0.361152px;}
.ws15_c02470{word-spacing:3.188592px;}
.wsb_c02470{word-spacing:4.675968px;}
.wsa_c02470{word-spacing:7.631712px;}
.ws17_c02470{word-spacing:18.285696px;}
.ws12_c02470{word-spacing:19.739808px;}
.ws9_c02470{word-spacing:22.923648px;}
.ws13_c02470{word-spacing:25.931664px;}
.wsf_c02470{word-spacing:28.735344px;}
.wse_c02470{word-spacing:30.298752px;}
.ws10_c02470{word-spacing:33.300288px;}
.ws8_c02470{word-spacing:36.143712px;}
.ws6_c02470{word-spacing:36.742464px;}
.ws1_c02470{word-spacing:37.759392px;}
.ws0_c02470{word-spacing:38.020752px;}
.ws3_c02470{word-spacing:39.218256px;}
.ws5_c02470{word-spacing:39.902544px;}
.ws7_c02470{word-spacing:42.026688px;}
.ws16_c02470{word-spacing:42.221520px;}
.wsc_c02470{word-spacing:57.903120px;}
._9_c02470{margin-left:-3.354912px;}
._0_c02470{margin-left:-1.948320px;}
._2_c02470{width:1.482624px;}
._4_c02470{width:5.730912px;}
._e_c02470{width:10.364112px;}
._8_c02470{width:18.618336px;}
._7_c02470{width:24.059376px;}
._11_c02470{width:26.577936px;}
._10_c02470{width:32.698512px;}
._d_c02470{width:36.970560px;}
._6_c02470{width:38.016000px;}
._5_c02470{width:41.698800px;}
._c_c02470{width:42.977088px;}
._1_c02470{width:50.252400px;}
._3_c02470{width:51.530688px;}
._f_c02470{width:60.188832px;}
._b_c02470{width:66.204864px;}
._a_c02470{width:72.030816px;}
.fc0_c02470{color:rgb(0,0,0);}
.fs0_c02470{font-size:47.520000px;}
.fs1_c02470{font-size:60.480000px;}
.y0_c02470{bottom:0.000000px;}
.y21_c02470{bottom:147.000738px;}
.y25_c02470{bottom:165.001206px;}
.y24_c02470{bottom:179.760918px;}
.y23_c02470{bottom:186.600234px;}
.y22_c02470{bottom:196.320450px;}
.y20_c02470{bottom:246.000342px;}
.y1f_c02470{bottom:260.760054px;}
.y1e_c02470{bottom:275.879730px;}
.y1d_c02470{bottom:326.999370px;}
.y1c_c02470{bottom:341.759082px;}
.y1b_c02470{bottom:356.878758px;}
.y19_c02470{bottom:406.559730px;}
.y15_c02470{bottom:424.560306px;}
.y1a_c02470{bottom:458.759262px;}
.y18_c02470{bottom:491.879514px;}
.y17_c02470{bottom:509.880090px;}
.y14_c02470{bottom:543.000342px;}
.y16_c02470{bottom:559.559874px;}
.y13_c02470{bottom:577.560450px;}
.y26_c02470{bottom:614.280450px;}
.ye_c02470{bottom:667.559514px;}
.y11_c02470{bottom:700.320918px;}
.y10_c02470{bottom:707.160234px;}
.yf_c02470{bottom:716.880450px;}
.yd_c02470{bottom:781.320018px;}
.yc_c02470{bottom:796.439694px;}
.yb_c02470{bottom:847.559334px;}
.ya_c02470{bottom:862.319046px;}
.y9_c02470{bottom:877.438722px;}
.y7_c02470{bottom:926.759730px;}
.y3_c02470{bottom:944.760306px;}
.y8_c02470{bottom:979.319226px;}
.y6_c02470{bottom:1012.439478px;}
.y5_c02470{bottom:1030.440054px;}
.y2_c02470{bottom:1063.560306px;}
.y4_c02470{bottom:1079.759874px;}
.y1_c02470{bottom:1097.760450px;}
.y12_c02470{bottom:1134.840450px;}
.h3_c02470{height:32.530781px;}
.h1_c02470{height:41.696016px;}
.h2_c02470{height:41.812031px;}
.h5_c02470{height:54.654737px;}
.h4_c02470{height:74.817456px;}
.h0_c02470{height:1263.000000px;}
.w1_c02470{width:892.500000px;}
.w0_c02470{width:892.830000px;}
.x0_c02470{left:0.000000px;}
.xe_c02470{left:117.000000px;}
.x8_c02470{left:440.999856px;}
.x4_c02470{left:445.680576px;}
.xc_c02470{left:451.080000px;}
.x7_c02470{left:455.399604px;}
.x5_c02470{left:461.880144px;}
.x1_c02470{left:463.320000px;}
.xb_c02470{left:483.480360px;}
.x9_c02470{left:492.119496px;}
.x6_c02470{left:493.200576px;}
.xd_c02470{left:506.880360px;}
.x3_c02470{left:511.919892px;}
.x2_c02470{left:526.679604px;}
.xa_c02470{left:569.880036px;}
@media print{
.v0_c02470{vertical-align:0.000000pt;}
.v2_c02470{vertical-align:1.279488pt;}
.v1_c02470{vertical-align:29.441280pt;}
.lsf_c02470{letter-spacing:-0.671616pt;}
.lsc_c02470{letter-spacing:-0.642048pt;}
.ls8_c02470{letter-spacing:-0.604032pt;}
.lsa_c02470{letter-spacing:-0.511104pt;}
.ls1c_c02470{letter-spacing:-0.299904pt;}
.ls18_c02470{letter-spacing:-0.291456pt;}
.ls16_c02470{letter-spacing:-0.244992pt;}
.ls12_c02470{letter-spacing:-0.232320pt;}
.ls7_c02470{letter-spacing:-0.215424pt;}
.ls1b_c02470{letter-spacing:-0.126720pt;}
.ls5_c02470{letter-spacing:-0.105600pt;}
.ls10_c02470{letter-spacing:0.000000pt;}
.ls1_c02470{letter-spacing:0.005376pt;}
.lse_c02470{letter-spacing:0.012672pt;}
.ls6_c02470{letter-spacing:0.114048pt;}
.ls14_c02470{letter-spacing:0.177408pt;}
.ls13_c02470{letter-spacing:0.185856pt;}
.lsd_c02470{letter-spacing:0.451968pt;}
.ls19_c02470{letter-spacing:0.456960pt;}
.ls15_c02470{letter-spacing:0.477312pt;}
.lsb_c02470{letter-spacing:0.515328pt;}
.ls17_c02470{letter-spacing:0.528000pt;}
.ls9_c02470{letter-spacing:0.532224pt;}
.ls4_c02470{letter-spacing:0.544896pt;}
.ls1a_c02470{letter-spacing:0.570240pt;}
.ls2_c02470{letter-spacing:0.578688pt;}
.ls11_c02470{letter-spacing:0.604032pt;}
.ls0_c02470{letter-spacing:0.637824pt;}
.ls3_c02470{letter-spacing:0.642048pt;}
.ws11_c02470{word-spacing:-13.445376pt;}
.wsd_c02470{word-spacing:-11.037312pt;}
.ws4_c02470{word-spacing:-10.344576pt;}
.ws2_c02470{word-spacing:-9.955968pt;}
.ws23_c02470{word-spacing:-1.919232pt;}
.ws14_c02470{word-spacing:-1.833216pt;}
.ws22_c02470{word-spacing:-0.963072pt;}
.ws1b_c02470{word-spacing:-0.958848pt;}
.ws1e_c02470{word-spacing:-0.925056pt;}
.ws24_c02470{word-spacing:-0.891264pt;}
.ws18_c02470{word-spacing:-0.865920pt;}
.ws20_c02470{word-spacing:-0.498432pt;}
.ws1d_c02470{word-spacing:-0.333696pt;}
.ws1a_c02470{word-spacing:-0.105600pt;}
.ws1f_c02470{word-spacing:-0.088704pt;}
.ws21_c02470{word-spacing:-0.076032pt;}
.ws25_c02470{word-spacing:-0.021120pt;}
.ws19_c02470{word-spacing:0.000000pt;}
.ws1c_c02470{word-spacing:0.321024pt;}
.ws15_c02470{word-spacing:2.834304pt;}
.wsb_c02470{word-spacing:4.156416pt;}
.wsa_c02470{word-spacing:6.783744pt;}
.ws17_c02470{word-spacing:16.253952pt;}
.ws12_c02470{word-spacing:17.546496pt;}
.ws9_c02470{word-spacing:20.376576pt;}
.ws13_c02470{word-spacing:23.050368pt;}
.wsf_c02470{word-spacing:25.542528pt;}
.wse_c02470{word-spacing:26.932224pt;}
.ws10_c02470{word-spacing:29.600256pt;}
.ws8_c02470{word-spacing:32.127744pt;}
.ws6_c02470{word-spacing:32.659968pt;}
.ws1_c02470{word-spacing:33.563904pt;}
.ws0_c02470{word-spacing:33.796224pt;}
.ws3_c02470{word-spacing:34.860672pt;}
.ws5_c02470{word-spacing:35.468928pt;}
.ws7_c02470{word-spacing:37.357056pt;}
.ws16_c02470{word-spacing:37.530240pt;}
.wsc_c02470{word-spacing:51.469440pt;}
._9_c02470{margin-left:-2.982144pt;}
._0_c02470{margin-left:-1.731840pt;}
._2_c02470{width:1.317888pt;}
._4_c02470{width:5.094144pt;}
._e_c02470{width:9.212544pt;}
._8_c02470{width:16.549632pt;}
._7_c02470{width:21.386112pt;}
._11_c02470{width:23.624832pt;}
._10_c02470{width:29.065344pt;}
._d_c02470{width:32.862720pt;}
._6_c02470{width:33.792000pt;}
._5_c02470{width:37.065600pt;}
._c_c02470{width:38.201856pt;}
._1_c02470{width:44.668800pt;}
._3_c02470{width:45.805056pt;}
._f_c02470{width:53.501184pt;}
._b_c02470{width:58.848768pt;}
._a_c02470{width:64.027392pt;}
.fs0_c02470{font-size:42.240000pt;}
.fs1_c02470{font-size:53.760000pt;}
.y0_c02470{bottom:0.000000pt;}
.y21_c02470{bottom:130.667323pt;}
.y25_c02470{bottom:146.667739pt;}
.y24_c02470{bottom:159.787483pt;}
.y23_c02470{bottom:165.866875pt;}
.y22_c02470{bottom:174.507067pt;}
.y20_c02470{bottom:218.666971pt;}
.y1f_c02470{bottom:231.786715pt;}
.y1e_c02470{bottom:245.226427pt;}
.y1d_c02470{bottom:290.666107pt;}
.y1c_c02470{bottom:303.785851pt;}
.y1b_c02470{bottom:317.225563pt;}
.y19_c02470{bottom:361.386427pt;}
.y15_c02470{bottom:377.386939pt;}
.y1a_c02470{bottom:407.786011pt;}
.y18_c02470{bottom:437.226235pt;}
.y17_c02470{bottom:453.226747pt;}
.y14_c02470{bottom:482.666971pt;}
.y16_c02470{bottom:497.386555pt;}
.y13_c02470{bottom:513.387067pt;}
.y26_c02470{bottom:546.027067pt;}
.ye_c02470{bottom:593.386235pt;}
.y11_c02470{bottom:622.507483pt;}
.y10_c02470{bottom:628.586875pt;}
.yf_c02470{bottom:637.227067pt;}
.yd_c02470{bottom:694.506683pt;}
.yc_c02470{bottom:707.946395pt;}
.yb_c02470{bottom:753.386075pt;}
.ya_c02470{bottom:766.505819pt;}
.y9_c02470{bottom:779.945531pt;}
.y7_c02470{bottom:823.786427pt;}
.y3_c02470{bottom:839.786939pt;}
.y8_c02470{bottom:870.505979pt;}
.y6_c02470{bottom:899.946203pt;}
.y5_c02470{bottom:915.946715pt;}
.y2_c02470{bottom:945.386939pt;}
.y4_c02470{bottom:959.786555pt;}
.y1_c02470{bottom:975.787067pt;}
.y12_c02470{bottom:1008.747067pt;}
.h3_c02470{height:28.916250pt;}
.h1_c02470{height:37.063125pt;}
.h2_c02470{height:37.166250pt;}
.h5_c02470{height:48.581988pt;}
.h4_c02470{height:66.504405pt;}
.h0_c02470{height:1122.666667pt;}
.w1_c02470{width:793.333333pt;}
.w0_c02470{width:793.626667pt;}
.x0_c02470{left:0.000000pt;}
.xe_c02470{left:104.000000pt;}
.x8_c02470{left:391.999872pt;}
.x4_c02470{left:396.160512pt;}
.xc_c02470{left:400.960000pt;}
.x7_c02470{left:404.799648pt;}
.x5_c02470{left:410.560128pt;}
.x1_c02470{left:411.840000pt;}
.xb_c02470{left:429.760320pt;}
.x9_c02470{left:437.439552pt;}
.x6_c02470{left:438.400512pt;}
.xd_c02470{left:450.560320pt;}
.x3_c02470{left:455.039904pt;}
.x2_c02470{left:468.159648pt;}
.xa_c02470{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02471 {
    display:none;
  }
  .loading-indicator_c02471.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02471 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02471 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02471" -> "#page-container .classname_c02471")
 */
.pf_c02471 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02471 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02471.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02471 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02471 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02471 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02471 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02471 {overflow:visible;}
  }
}
.c_c02471 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02471 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02471:after { /* webkit #35443 */
  content: '';
}
.t_c02471:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02471 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02471 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02471 { /* info for Javascript */
  display:none;
}
.l_c02471 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02471 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02471 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02471:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02471 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02471.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02471.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02471 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02471{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02471;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02471{font-family:ff1_c02471;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02471;src:url('chunks/assets/font_25ae7a97ece7e35fe8c0b648.woff2')format("woff");}.ff2_c02471{font-family:ff2_c02471;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02471;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02471{font-family:ff3_c02471;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02471{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02471{vertical-align:0.000000px;}
.v1_c02471{vertical-align:1.439424px;}
.ls16_c02471{letter-spacing:-1.197504px;}
.lsd_c02471{letter-spacing:-0.807840px;}
.ls11_c02471{letter-spacing:-0.736560px;}
.lsc_c02471{letter-spacing:-0.722304px;}
.ls7_c02471{letter-spacing:-0.679536px;}
.ls9_c02471{letter-spacing:-0.574992px;}
.lsf_c02471{letter-spacing:-0.337392px;}
.ls17_c02471{letter-spacing:-0.323136px;}
.ls18_c02471{letter-spacing:-0.275616px;}
.ls12_c02471{letter-spacing:-0.270864px;}
.lse_c02471{letter-spacing:-0.261360px;}
.ls6_c02471{letter-spacing:-0.242352px;}
.ls4_c02471{letter-spacing:-0.118800px;}
.ls15_c02471{letter-spacing:0.000000px;}
.ls1_c02471{letter-spacing:0.006048px;}
.ls5_c02471{letter-spacing:0.128304px;}
.lsb_c02471{letter-spacing:0.508464px;}
.ls14_c02471{letter-spacing:0.514080px;}
.ls10_c02471{letter-spacing:0.536976px;}
.lsa_c02471{letter-spacing:0.579744px;}
.ls13_c02471{letter-spacing:0.594000px;}
.ls8_c02471{letter-spacing:0.598752px;}
.ls2_c02471{letter-spacing:0.613008px;}
.ls0_c02471{letter-spacing:0.717552px;}
.ls3_c02471{letter-spacing:0.722304px;}
.sc__c02471{text-shadow:none;}
.sc0_c02471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02471{-webkit-text-stroke:0px transparent;}
.sc0_c02471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02471{word-spacing:-15.126048px;}
.wsc_c02471{word-spacing:-12.474000px;}
.ws10_c02471{word-spacing:-12.416976px;}
.ws4_c02471{word-spacing:-11.637648px;}
.ws2_c02471{word-spacing:-11.200464px;}
.ws1b_c02471{word-spacing:-2.159136px;}
.ws14_c02471{word-spacing:-1.078704px;}
.ws11_c02471{word-spacing:-0.974160px;}
.ws13_c02471{word-spacing:-0.118800px;}
.ws17_c02471{word-spacing:-0.099792px;}
.ws19_c02471{word-spacing:-0.090288px;}
.ws1a_c02471{word-spacing:-0.085536px;}
.ws1d_c02471{word-spacing:-0.038016px;}
.ws18_c02471{word-spacing:-0.023760px;}
.ws12_c02471{word-spacing:0.000000px;}
.ws15_c02471{word-spacing:0.361152px;}
.ws16_c02471{word-spacing:0.446688px;}
.ws1c_c02471{word-spacing:0.836352px;}
.ws9_c02471{word-spacing:3.236112px;}
.wsb_c02471{word-spacing:6.629040px;}
.wsd_c02471{word-spacing:33.300288px;}
.wsa_c02471{word-spacing:34.836912px;}
.ws8_c02471{word-spacing:36.143712px;}
.ws6_c02471{word-spacing:36.742464px;}
.ws1_c02471{word-spacing:37.759392px;}
.ws0_c02471{word-spacing:38.020752px;}
.ws3_c02471{word-spacing:39.218256px;}
.ws5_c02471{word-spacing:39.902544px;}
.ws7_c02471{word-spacing:42.026688px;}
.wsf_c02471{word-spacing:53.545536px;}
._0_c02471{margin-left:-1.948320px;}
._2_c02471{width:1.482624px;}
._9_c02471{width:2.504304px;}
._4_c02471{width:5.730912px;}
._6_c02471{width:17.111952px;}
._5_c02471{width:18.314208px;}
._8_c02471{width:19.445184px;}
._7_c02471{width:21.407760px;}
._a_c02471{width:24.691392px;}
._b_c02471{width:25.850880px;}
._1_c02471{width:50.252400px;}
._3_c02471{width:51.530688px;}
.fc0_c02471{color:rgb(0,0,0);}
.fs0_c02471{font-size:47.520000px;}
.fs1_c02471{font-size:60.480000px;}
.y0_c02471{bottom:0.000000px;}
.y1b_c02471{bottom:146.998362px;}
.y1d_c02471{bottom:186.600234px;}
.y1c_c02471{bottom:196.320450px;}
.y1a_c02471{bottom:275.878542px;}
.y19_c02471{bottom:356.878758px;}
.y17_c02471{bottom:406.559730px;}
.y13_c02471{bottom:424.560306px;}
.y18_c02471{bottom:458.759262px;}
.y16_c02471{bottom:491.879514px;}
.y15_c02471{bottom:509.880090px;}
.y12_c02471{bottom:543.000342px;}
.y14_c02471{bottom:559.559874px;}
.y11_c02471{bottom:577.560450px;}
.y1e_c02471{bottom:614.280450px;}
.yd_c02471{bottom:652.439838px;}
.yc_c02471{bottom:667.559514px;}
.yf_c02471{bottom:707.160234px;}
.ye_c02471{bottom:716.880450px;}
.yb_c02471{bottom:796.439694px;}
.ya_c02471{bottom:862.319046px;}
.y9_c02471{bottom:877.438722px;}
.y7_c02471{bottom:926.759730px;}
.y3_c02471{bottom:944.760306px;}
.y8_c02471{bottom:979.319226px;}
.y6_c02471{bottom:1012.439478px;}
.y5_c02471{bottom:1030.440054px;}
.y2_c02471{bottom:1063.560306px;}
.y4_c02471{bottom:1079.759874px;}
.y1_c02471{bottom:1097.760450px;}
.y10_c02471{bottom:1134.840450px;}
.h3_c02471{height:32.530781px;}
.h1_c02471{height:41.696016px;}
.h2_c02471{height:41.812031px;}
.h4_c02471{height:54.654737px;}
.h0_c02471{height:1263.000000px;}
.w1_c02471{width:892.500000px;}
.w0_c02471{width:892.830000px;}
.x0_c02471{left:0.000000px;}
.xe_c02471{left:117.000000px;}
.x8_c02471{left:440.999856px;}
.x4_c02471{left:445.680576px;}
.xc_c02471{left:451.080000px;}
.x7_c02471{left:455.399604px;}
.x5_c02471{left:461.880144px;}
.x1_c02471{left:463.320000px;}
.xb_c02471{left:483.480360px;}
.x9_c02471{left:492.119496px;}
.x6_c02471{left:493.200576px;}
.xd_c02471{left:506.880360px;}
.x3_c02471{left:511.919892px;}
.x2_c02471{left:526.679604px;}
.xa_c02471{left:569.880036px;}
@media print{
.v0_c02471{vertical-align:0.000000pt;}
.v1_c02471{vertical-align:1.279488pt;}
.ls16_c02471{letter-spacing:-1.064448pt;}
.lsd_c02471{letter-spacing:-0.718080pt;}
.ls11_c02471{letter-spacing:-0.654720pt;}
.lsc_c02471{letter-spacing:-0.642048pt;}
.ls7_c02471{letter-spacing:-0.604032pt;}
.ls9_c02471{letter-spacing:-0.511104pt;}
.lsf_c02471{letter-spacing:-0.299904pt;}
.ls17_c02471{letter-spacing:-0.287232pt;}
.ls18_c02471{letter-spacing:-0.244992pt;}
.ls12_c02471{letter-spacing:-0.240768pt;}
.lse_c02471{letter-spacing:-0.232320pt;}
.ls6_c02471{letter-spacing:-0.215424pt;}
.ls4_c02471{letter-spacing:-0.105600pt;}
.ls15_c02471{letter-spacing:0.000000pt;}
.ls1_c02471{letter-spacing:0.005376pt;}
.ls5_c02471{letter-spacing:0.114048pt;}
.lsb_c02471{letter-spacing:0.451968pt;}
.ls14_c02471{letter-spacing:0.456960pt;}
.ls10_c02471{letter-spacing:0.477312pt;}
.lsa_c02471{letter-spacing:0.515328pt;}
.ls13_c02471{letter-spacing:0.528000pt;}
.ls8_c02471{letter-spacing:0.532224pt;}
.ls2_c02471{letter-spacing:0.544896pt;}
.ls0_c02471{letter-spacing:0.637824pt;}
.ls3_c02471{letter-spacing:0.642048pt;}
.wse_c02471{word-spacing:-13.445376pt;}
.wsc_c02471{word-spacing:-11.088000pt;}
.ws10_c02471{word-spacing:-11.037312pt;}
.ws4_c02471{word-spacing:-10.344576pt;}
.ws2_c02471{word-spacing:-9.955968pt;}
.ws1b_c02471{word-spacing:-1.919232pt;}
.ws14_c02471{word-spacing:-0.958848pt;}
.ws11_c02471{word-spacing:-0.865920pt;}
.ws13_c02471{word-spacing:-0.105600pt;}
.ws17_c02471{word-spacing:-0.088704pt;}
.ws19_c02471{word-spacing:-0.080256pt;}
.ws1a_c02471{word-spacing:-0.076032pt;}
.ws1d_c02471{word-spacing:-0.033792pt;}
.ws18_c02471{word-spacing:-0.021120pt;}
.ws12_c02471{word-spacing:0.000000pt;}
.ws15_c02471{word-spacing:0.321024pt;}
.ws16_c02471{word-spacing:0.397056pt;}
.ws1c_c02471{word-spacing:0.743424pt;}
.ws9_c02471{word-spacing:2.876544pt;}
.wsb_c02471{word-spacing:5.892480pt;}
.wsd_c02471{word-spacing:29.600256pt;}
.wsa_c02471{word-spacing:30.966144pt;}
.ws8_c02471{word-spacing:32.127744pt;}
.ws6_c02471{word-spacing:32.659968pt;}
.ws1_c02471{word-spacing:33.563904pt;}
.ws0_c02471{word-spacing:33.796224pt;}
.ws3_c02471{word-spacing:34.860672pt;}
.ws5_c02471{word-spacing:35.468928pt;}
.ws7_c02471{word-spacing:37.357056pt;}
.wsf_c02471{word-spacing:47.596032pt;}
._0_c02471{margin-left:-1.731840pt;}
._2_c02471{width:1.317888pt;}
._9_c02471{width:2.226048pt;}
._4_c02471{width:5.094144pt;}
._6_c02471{width:15.210624pt;}
._5_c02471{width:16.279296pt;}
._8_c02471{width:17.284608pt;}
._7_c02471{width:19.029120pt;}
._a_c02471{width:21.947904pt;}
._b_c02471{width:22.978560pt;}
._1_c02471{width:44.668800pt;}
._3_c02471{width:45.805056pt;}
.fs0_c02471{font-size:42.240000pt;}
.fs1_c02471{font-size:53.760000pt;}
.y0_c02471{bottom:0.000000pt;}
.y1b_c02471{bottom:130.665211pt;}
.y1d_c02471{bottom:165.866875pt;}
.y1c_c02471{bottom:174.507067pt;}
.y1a_c02471{bottom:245.225371pt;}
.y19_c02471{bottom:317.225563pt;}
.y17_c02471{bottom:361.386427pt;}
.y13_c02471{bottom:377.386939pt;}
.y18_c02471{bottom:407.786011pt;}
.y16_c02471{bottom:437.226235pt;}
.y15_c02471{bottom:453.226747pt;}
.y12_c02471{bottom:482.666971pt;}
.y14_c02471{bottom:497.386555pt;}
.y11_c02471{bottom:513.387067pt;}
.y1e_c02471{bottom:546.027067pt;}
.yd_c02471{bottom:579.946523pt;}
.yc_c02471{bottom:593.386235pt;}
.yf_c02471{bottom:628.586875pt;}
.ye_c02471{bottom:637.227067pt;}
.yb_c02471{bottom:707.946395pt;}
.ya_c02471{bottom:766.505819pt;}
.y9_c02471{bottom:779.945531pt;}
.y7_c02471{bottom:823.786427pt;}
.y3_c02471{bottom:839.786939pt;}
.y8_c02471{bottom:870.505979pt;}
.y6_c02471{bottom:899.946203pt;}
.y5_c02471{bottom:915.946715pt;}
.y2_c02471{bottom:945.386939pt;}
.y4_c02471{bottom:959.786555pt;}
.y1_c02471{bottom:975.787067pt;}
.y10_c02471{bottom:1008.747067pt;}
.h3_c02471{height:28.916250pt;}
.h1_c02471{height:37.063125pt;}
.h2_c02471{height:37.166250pt;}
.h4_c02471{height:48.581988pt;}
.h0_c02471{height:1122.666667pt;}
.w1_c02471{width:793.333333pt;}
.w0_c02471{width:793.626667pt;}
.x0_c02471{left:0.000000pt;}
.xe_c02471{left:104.000000pt;}
.x8_c02471{left:391.999872pt;}
.x4_c02471{left:396.160512pt;}
.xc_c02471{left:400.960000pt;}
.x7_c02471{left:404.799648pt;}
.x5_c02471{left:410.560128pt;}
.x1_c02471{left:411.840000pt;}
.xb_c02471{left:429.760320pt;}
.x9_c02471{left:437.439552pt;}
.x6_c02471{left:438.400512pt;}
.xd_c02471{left:450.560320pt;}
.x3_c02471{left:455.039904pt;}
.x2_c02471{left:468.159648pt;}
.xa_c02471{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02472 {
    display:none;
  }
  .loading-indicator_c02472.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02472 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02472 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02472" -> "#page-container .classname_c02472")
 */
.pf_c02472 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02472 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02472.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02472 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02472 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02472 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02472 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02472 {overflow:visible;}
  }
}
.c_c02472 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02472 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02472:after { /* webkit #35443 */
  content: '';
}
.t_c02472:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02472 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02472 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02472 { /* info for Javascript */
  display:none;
}
.l_c02472 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02472 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02472 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02472:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02472 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02472.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02472.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02472 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02472{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02472;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02472{font-family:ff1_c02472;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02472;src:url('chunks/assets/font_542308a090daf5f6562df8ed.woff2')format("woff");}.ff2_c02472{font-family:ff2_c02472;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02472;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02472{font-family:ff3_c02472;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02472{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02472{vertical-align:0.000000px;}
.v1_c02472{vertical-align:1.439424px;}
.v2_c02472{vertical-align:33.121440px;}
.lse_c02472{letter-spacing:-0.765072px;}
.ls15_c02472{letter-spacing:-0.722304px;}
.ls7_c02472{letter-spacing:-0.679536px;}
.ls9_c02472{letter-spacing:-0.574992px;}
.ls18_c02472{letter-spacing:-0.389664px;}
.ls10_c02472{letter-spacing:-0.375408px;}
.ls12_c02472{letter-spacing:-0.275616px;}
.lsf_c02472{letter-spacing:-0.261360px;}
.ls6_c02472{letter-spacing:-0.242352px;}
.ls4_c02472{letter-spacing:-0.118800px;}
.lsd_c02472{letter-spacing:0.000000px;}
.ls1_c02472{letter-spacing:0.006048px;}
.ls16_c02472{letter-spacing:0.014256px;}
.lsc_c02472{letter-spacing:0.052272px;}
.ls5_c02472{letter-spacing:0.128304px;}
.lsb_c02472{letter-spacing:0.508464px;}
.ls14_c02472{letter-spacing:0.514080px;}
.ls11_c02472{letter-spacing:0.536976px;}
.lsa_c02472{letter-spacing:0.579744px;}
.ls13_c02472{letter-spacing:0.594000px;}
.ls8_c02472{letter-spacing:0.598752px;}
.ls3_c02472{letter-spacing:0.613008px;}
.ls17_c02472{letter-spacing:0.651024px;}
.ls0_c02472{letter-spacing:0.717552px;}
.ls2_c02472{letter-spacing:0.722304px;}
.sc__c02472{text-shadow:none;}
.sc0_c02472{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02472{-webkit-text-stroke:0px transparent;}
.sc0_c02472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c02472{word-spacing:-15.126048px;}
.ws10_c02472{word-spacing:-12.602304px;}
.wsd_c02472{word-spacing:-12.474000px;}
.wsc_c02472{word-spacing:-12.416976px;}
.ws9_c02472{word-spacing:-11.880000px;}
.ws4_c02472{word-spacing:-11.637648px;}
.ws2_c02472{word-spacing:-11.200464px;}
.ws1a_c02472{word-spacing:-2.159136px;}
.ws15_c02472{word-spacing:-1.078704px;}
.ws1d_c02472{word-spacing:-1.012176px;}
.ws12_c02472{word-spacing:-0.974160px;}
.ws1c_c02472{word-spacing:-0.375408px;}
.ws14_c02472{word-spacing:-0.118800px;}
.ws17_c02472{word-spacing:-0.099792px;}
.ws19_c02472{word-spacing:-0.085536px;}
.ws13_c02472{word-spacing:0.000000px;}
.ws18_c02472{word-spacing:0.014256px;}
.ws1e_c02472{word-spacing:0.028512px;}
.ws1b_c02472{word-spacing:0.361152px;}
.ws16_c02472{word-spacing:0.403920px;}
.ws8_c02472{word-spacing:1.696464px;}
.wsb_c02472{word-spacing:22.923648px;}
.ws11_c02472{word-spacing:30.298752px;}
.wse_c02472{word-spacing:33.300288px;}
.wsa_c02472{word-spacing:36.143712px;}
.ws6_c02472{word-spacing:36.742464px;}
.ws1_c02472{word-spacing:37.759392px;}
.ws0_c02472{word-spacing:38.020752px;}
.ws3_c02472{word-spacing:39.218256px;}
.ws5_c02472{word-spacing:39.902544px;}
.ws7_c02472{word-spacing:42.026688px;}
._0_c02472{margin-left:-1.948320px;}
._2_c02472{width:1.482624px;}
._4_c02472{width:5.730912px;}
._6_c02472{width:15.078096px;}
._5_c02472{width:17.126208px;}
._8_c02472{width:38.016000px;}
._7_c02472{width:41.698800px;}
._1_c02472{width:50.252400px;}
._3_c02472{width:51.530688px;}
.fc0_c02472{color:rgb(0,0,0);}
.fs0_c02472{font-size:47.520000px;}
.fs1_c02472{font-size:60.480000px;}
.y0_c02472{bottom:0.000000px;}
.y1c_c02472{bottom:146.998362px;}
.y1e_c02472{bottom:186.600234px;}
.y1d_c02472{bottom:196.320450px;}
.y1b_c02472{bottom:275.878542px;}
.y1a_c02472{bottom:341.759082px;}
.y19_c02472{bottom:356.878758px;}
.y17_c02472{bottom:406.559730px;}
.y13_c02472{bottom:424.560306px;}
.y18_c02472{bottom:458.759262px;}
.y16_c02472{bottom:491.879514px;}
.y15_c02472{bottom:509.880090px;}
.y12_c02472{bottom:543.000342px;}
.y14_c02472{bottom:559.559874px;}
.y11_c02472{bottom:577.560450px;}
.y1f_c02472{bottom:614.280450px;}
.yd_c02472{bottom:667.560702px;}
.yf_c02472{bottom:707.160234px;}
.ye_c02472{bottom:716.880450px;}
.yc_c02472{bottom:796.440882px;}
.yb_c02472{bottom:862.320234px;}
.ya_c02472{bottom:877.439910px;}
.y7_c02472{bottom:926.759730px;}
.y3_c02472{bottom:944.760306px;}
.y9_c02472{bottom:964.559514px;}
.y8_c02472{bottom:979.319226px;}
.y6_c02472{bottom:1012.439478px;}
.y5_c02472{bottom:1030.440054px;}
.y2_c02472{bottom:1063.560306px;}
.y4_c02472{bottom:1079.759874px;}
.y1_c02472{bottom:1097.760450px;}
.y10_c02472{bottom:1134.840450px;}
.h3_c02472{height:32.530781px;}
.h1_c02472{height:41.696016px;}
.h2_c02472{height:41.812031px;}
.h4_c02472{height:54.654737px;}
.h5_c02472{height:74.817456px;}
.h0_c02472{height:1263.000000px;}
.w1_c02472{width:892.500000px;}
.w0_c02472{width:892.830000px;}
.x0_c02472{left:0.000000px;}
.xe_c02472{left:117.000000px;}
.x8_c02472{left:440.999856px;}
.x4_c02472{left:445.680576px;}
.xc_c02472{left:451.080000px;}
.x7_c02472{left:455.399604px;}
.x5_c02472{left:461.880144px;}
.x1_c02472{left:463.320000px;}
.xb_c02472{left:483.480360px;}
.xa_c02472{left:492.119496px;}
.x6_c02472{left:493.200576px;}
.xd_c02472{left:506.880360px;}
.x3_c02472{left:511.919892px;}
.x2_c02472{left:526.679604px;}
.x9_c02472{left:569.880036px;}
@media print{
.v0_c02472{vertical-align:0.000000pt;}
.v1_c02472{vertical-align:1.279488pt;}
.v2_c02472{vertical-align:29.441280pt;}
.lse_c02472{letter-spacing:-0.680064pt;}
.ls15_c02472{letter-spacing:-0.642048pt;}
.ls7_c02472{letter-spacing:-0.604032pt;}
.ls9_c02472{letter-spacing:-0.511104pt;}
.ls18_c02472{letter-spacing:-0.346368pt;}
.ls10_c02472{letter-spacing:-0.333696pt;}
.ls12_c02472{letter-spacing:-0.244992pt;}
.lsf_c02472{letter-spacing:-0.232320pt;}
.ls6_c02472{letter-spacing:-0.215424pt;}
.ls4_c02472{letter-spacing:-0.105600pt;}
.lsd_c02472{letter-spacing:0.000000pt;}
.ls1_c02472{letter-spacing:0.005376pt;}
.ls16_c02472{letter-spacing:0.012672pt;}
.lsc_c02472{letter-spacing:0.046464pt;}
.ls5_c02472{letter-spacing:0.114048pt;}
.lsb_c02472{letter-spacing:0.451968pt;}
.ls14_c02472{letter-spacing:0.456960pt;}
.ls11_c02472{letter-spacing:0.477312pt;}
.lsa_c02472{letter-spacing:0.515328pt;}
.ls13_c02472{letter-spacing:0.528000pt;}
.ls8_c02472{letter-spacing:0.532224pt;}
.ls3_c02472{letter-spacing:0.544896pt;}
.ls17_c02472{letter-spacing:0.578688pt;}
.ls0_c02472{letter-spacing:0.637824pt;}
.ls2_c02472{letter-spacing:0.642048pt;}
.wsf_c02472{word-spacing:-13.445376pt;}
.ws10_c02472{word-spacing:-11.202048pt;}
.wsd_c02472{word-spacing:-11.088000pt;}
.wsc_c02472{word-spacing:-11.037312pt;}
.ws9_c02472{word-spacing:-10.560000pt;}
.ws4_c02472{word-spacing:-10.344576pt;}
.ws2_c02472{word-spacing:-9.955968pt;}
.ws1a_c02472{word-spacing:-1.919232pt;}
.ws15_c02472{word-spacing:-0.958848pt;}
.ws1d_c02472{word-spacing:-0.899712pt;}
.ws12_c02472{word-spacing:-0.865920pt;}
.ws1c_c02472{word-spacing:-0.333696pt;}
.ws14_c02472{word-spacing:-0.105600pt;}
.ws17_c02472{word-spacing:-0.088704pt;}
.ws19_c02472{word-spacing:-0.076032pt;}
.ws13_c02472{word-spacing:0.000000pt;}
.ws18_c02472{word-spacing:0.012672pt;}
.ws1e_c02472{word-spacing:0.025344pt;}
.ws1b_c02472{word-spacing:0.321024pt;}
.ws16_c02472{word-spacing:0.359040pt;}
.ws8_c02472{word-spacing:1.507968pt;}
.wsb_c02472{word-spacing:20.376576pt;}
.ws11_c02472{word-spacing:26.932224pt;}
.wse_c02472{word-spacing:29.600256pt;}
.wsa_c02472{word-spacing:32.127744pt;}
.ws6_c02472{word-spacing:32.659968pt;}
.ws1_c02472{word-spacing:33.563904pt;}
.ws0_c02472{word-spacing:33.796224pt;}
.ws3_c02472{word-spacing:34.860672pt;}
.ws5_c02472{word-spacing:35.468928pt;}
.ws7_c02472{word-spacing:37.357056pt;}
._0_c02472{margin-left:-1.731840pt;}
._2_c02472{width:1.317888pt;}
._4_c02472{width:5.094144pt;}
._6_c02472{width:13.402752pt;}
._5_c02472{width:15.223296pt;}
._8_c02472{width:33.792000pt;}
._7_c02472{width:37.065600pt;}
._1_c02472{width:44.668800pt;}
._3_c02472{width:45.805056pt;}
.fs0_c02472{font-size:42.240000pt;}
.fs1_c02472{font-size:53.760000pt;}
.y0_c02472{bottom:0.000000pt;}
.y1c_c02472{bottom:130.665211pt;}
.y1e_c02472{bottom:165.866875pt;}
.y1d_c02472{bottom:174.507067pt;}
.y1b_c02472{bottom:245.225371pt;}
.y1a_c02472{bottom:303.785851pt;}
.y19_c02472{bottom:317.225563pt;}
.y17_c02472{bottom:361.386427pt;}
.y13_c02472{bottom:377.386939pt;}
.y18_c02472{bottom:407.786011pt;}
.y16_c02472{bottom:437.226235pt;}
.y15_c02472{bottom:453.226747pt;}
.y12_c02472{bottom:482.666971pt;}
.y14_c02472{bottom:497.386555pt;}
.y11_c02472{bottom:513.387067pt;}
.y1f_c02472{bottom:546.027067pt;}
.yd_c02472{bottom:593.387291pt;}
.yf_c02472{bottom:628.586875pt;}
.ye_c02472{bottom:637.227067pt;}
.yc_c02472{bottom:707.947451pt;}
.yb_c02472{bottom:766.506875pt;}
.ya_c02472{bottom:779.946587pt;}
.y7_c02472{bottom:823.786427pt;}
.y3_c02472{bottom:839.786939pt;}
.y9_c02472{bottom:857.386235pt;}
.y8_c02472{bottom:870.505979pt;}
.y6_c02472{bottom:899.946203pt;}
.y5_c02472{bottom:915.946715pt;}
.y2_c02472{bottom:945.386939pt;}
.y4_c02472{bottom:959.786555pt;}
.y1_c02472{bottom:975.787067pt;}
.y10_c02472{bottom:1008.747067pt;}
.h3_c02472{height:28.916250pt;}
.h1_c02472{height:37.063125pt;}
.h2_c02472{height:37.166250pt;}
.h4_c02472{height:48.581988pt;}
.h5_c02472{height:66.504405pt;}
.h0_c02472{height:1122.666667pt;}
.w1_c02472{width:793.333333pt;}
.w0_c02472{width:793.626667pt;}
.x0_c02472{left:0.000000pt;}
.xe_c02472{left:104.000000pt;}
.x8_c02472{left:391.999872pt;}
.x4_c02472{left:396.160512pt;}
.xc_c02472{left:400.960000pt;}
.x7_c02472{left:404.799648pt;}
.x5_c02472{left:410.560128pt;}
.x1_c02472{left:411.840000pt;}
.xb_c02472{left:429.760320pt;}
.xa_c02472{left:437.439552pt;}
.x6_c02472{left:438.400512pt;}
.xd_c02472{left:450.560320pt;}
.x3_c02472{left:455.039904pt;}
.x2_c02472{left:468.159648pt;}
.x9_c02472{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02473 {
    display:none;
  }
  .loading-indicator_c02473.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02473 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02473 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02473" -> "#page-container .classname_c02473")
 */
.pf_c02473 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02473 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02473 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02473 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02473 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02473 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02473 {overflow:visible;}
  }
}
.c_c02473 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02473 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02473:after { /* webkit #35443 */
  content: '';
}
.t_c02473:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02473 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02473 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02473 { /* info for Javascript */
  display:none;
}
.l_c02473 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02473 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02473 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02473:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02473 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02473.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02473 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02473{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02473;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02473{font-family:ff1_c02473;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02473;src:url('chunks/assets/font_34547fd73a27c7c4f10e5995.woff2')format("woff");}.ff2_c02473{font-family:ff2_c02473;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02473;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02473{font-family:ff3_c02473;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02473{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02473{vertical-align:0.000000px;}
.v1_c02473{vertical-align:1.439424px;}
.ls17_c02473{letter-spacing:-0.807840px;}
.lse_c02473{letter-spacing:-0.736560px;}
.ls7_c02473{letter-spacing:-0.679536px;}
.ls9_c02473{letter-spacing:-0.574992px;}
.ls18_c02473{letter-spacing:-0.337392px;}
.ls12_c02473{letter-spacing:-0.275616px;}
.ls10_c02473{letter-spacing:-0.261360px;}
.ls6_c02473{letter-spacing:-0.242352px;}
.ls4_c02473{letter-spacing:-0.118800px;}
.ls15_c02473{letter-spacing:0.000000px;}
.ls2_c02473{letter-spacing:0.006048px;}
.lsb_c02473{letter-spacing:0.014256px;}
.ls16_c02473{letter-spacing:0.052272px;}
.lsd_c02473{letter-spacing:0.080784px;}
.ls5_c02473{letter-spacing:0.128304px;}
.lsc_c02473{letter-spacing:0.508464px;}
.ls14_c02473{letter-spacing:0.514080px;}
.ls11_c02473{letter-spacing:0.536976px;}
.lsa_c02473{letter-spacing:0.579744px;}
.ls13_c02473{letter-spacing:0.594000px;}
.ls8_c02473{letter-spacing:0.598752px;}
.ls3_c02473{letter-spacing:0.613008px;}
.lsf_c02473{letter-spacing:0.651024px;}
.ls0_c02473{letter-spacing:0.717552px;}
.ls1_c02473{letter-spacing:0.722304px;}
.sc__c02473{text-shadow:none;}
.sc0_c02473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02473{-webkit-text-stroke:0px transparent;}
.sc0_c02473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13_c02473{word-spacing:-15.126048px;}
.ws11_c02473{word-spacing:-12.474000px;}
.ws10_c02473{word-spacing:-12.416976px;}
.ws8_c02473{word-spacing:-11.894256px;}
.ws4_c02473{word-spacing:-11.637648px;}
.ws2_c02473{word-spacing:-11.200464px;}
.ws1d_c02473{word-spacing:-2.159136px;}
.ws1a_c02473{word-spacing:-1.083456px;}
.ws19_c02473{word-spacing:-1.078704px;}
.ws16_c02473{word-spacing:-0.974160px;}
.wsf_c02473{word-spacing:-0.722304px;}
.ws18_c02473{word-spacing:-0.118800px;}
.ws1b_c02473{word-spacing:-0.099792px;}
.ws1c_c02473{word-spacing:-0.085536px;}
.ws1f_c02473{word-spacing:-0.023760px;}
.ws17_c02473{word-spacing:0.000000px;}
.ws1e_c02473{word-spacing:0.446688px;}
.wse_c02473{word-spacing:1.724976px;}
.ws15_c02473{word-spacing:3.236112px;}
.ws14_c02473{word-spacing:7.455888px;}
.ws7_c02473{word-spacing:9.271152px;}
.wsa_c02473{word-spacing:12.079584px;}
.wsc_c02473{word-spacing:22.923648px;}
.wsd_c02473{word-spacing:30.631392px;}
.ws12_c02473{word-spacing:33.300288px;}
.wsb_c02473{word-spacing:36.143712px;}
.ws6_c02473{word-spacing:36.742464px;}
.ws1_c02473{word-spacing:37.759392px;}
.ws0_c02473{word-spacing:38.020752px;}
.ws3_c02473{word-spacing:39.218256px;}
.ws5_c02473{word-spacing:39.902544px;}
.ws9_c02473{word-spacing:42.026688px;}
._0_c02473{margin-left:-1.948320px;}
._2_c02473{width:1.482624px;}
._11_c02473{width:2.504304px;}
._4_c02473{width:5.730912px;}
._d_c02473{width:10.692000px;}
._f_c02473{width:14.674176px;}
._e_c02473{width:16.479936px;}
._c_c02473{width:18.356976px;}
._5_c02473{width:19.530720px;}
._10_c02473{width:21.103632px;}
._6_c02473{width:22.667040px;}
._7_c02473{width:25.109568px;}
._9_c02473{width:38.016000px;}
._8_c02473{width:41.698800px;}
._b_c02473{width:44.716320px;}
._a_c02473{width:47.002032px;}
._1_c02473{width:50.252400px;}
._3_c02473{width:51.530688px;}
.fc0_c02473{color:rgb(0,0,0);}
.fs0_c02473{font-size:47.520000px;}
.fs1_c02473{font-size:60.480000px;}
.y0_c02473{bottom:0.000000px;}
.y21_c02473{bottom:146.999550px;}
.y23_c02473{bottom:186.600234px;}
.y22_c02473{bottom:196.320450px;}
.y20_c02473{bottom:275.879730px;}
.y1f_c02473{bottom:341.760270px;}
.y1e_c02473{bottom:356.879946px;}
.y1b_c02473{bottom:406.559730px;}
.y17_c02473{bottom:424.560306px;}
.y1d_c02473{bottom:443.999550px;}
.y1c_c02473{bottom:458.759262px;}
.y1a_c02473{bottom:491.879514px;}
.y19_c02473{bottom:509.880090px;}
.y16_c02473{bottom:543.000342px;}
.y18_c02473{bottom:559.559874px;}
.y15_c02473{bottom:577.560450px;}
.y24_c02473{bottom:614.280450px;}
.y11_c02473{bottom:667.561890px;}
.y13_c02473{bottom:707.160234px;}
.y12_c02473{bottom:716.880450px;}
.y10_c02473{bottom:781.322394px;}
.yf_c02473{bottom:796.442070px;}
.ye_c02473{bottom:832.442034px;}
.yd_c02473{bottom:847.561710px;}
.yc_c02473{bottom:862.321422px;}
.yb_c02473{bottom:877.441098px;}
.y8_c02473{bottom:912.000018px;}
.y7_c02473{bottom:926.759730px;}
.y3_c02473{bottom:944.760306px;}
.ya_c02473{bottom:964.560702px;}
.y9_c02473{bottom:979.320414px;}
.y6_c02473{bottom:1012.439478px;}
.y5_c02473{bottom:1030.440054px;}
.y2_c02473{bottom:1063.560306px;}
.y4_c02473{bottom:1079.759874px;}
.y1_c02473{bottom:1097.760450px;}
.y14_c02473{bottom:1134.840450px;}
.h3_c02473{height:32.530781px;}
.h1_c02473{height:41.696016px;}
.h2_c02473{height:41.812031px;}
.h4_c02473{height:54.654737px;}
.h0_c02473{height:1263.000000px;}
.w1_c02473{width:892.500000px;}
.w0_c02473{width:892.830000px;}
.x0_c02473{left:0.000000px;}
.xe_c02473{left:117.000000px;}
.x9_c02473{left:440.999856px;}
.x4_c02473{left:445.680576px;}
.xc_c02473{left:451.080000px;}
.x7_c02473{left:455.399604px;}
.x5_c02473{left:461.880144px;}
.x1_c02473{left:463.320000px;}
.xb_c02473{left:483.480360px;}
.xa_c02473{left:492.119496px;}
.x6_c02473{left:493.200576px;}
.xd_c02473{left:506.880360px;}
.x3_c02473{left:511.919892px;}
.x2_c02473{left:526.679604px;}
.x8_c02473{left:569.880036px;}
@media print{
.v0_c02473{vertical-align:0.000000pt;}
.v1_c02473{vertical-align:1.279488pt;}
.ls17_c02473{letter-spacing:-0.718080pt;}
.lse_c02473{letter-spacing:-0.654720pt;}
.ls7_c02473{letter-spacing:-0.604032pt;}
.ls9_c02473{letter-spacing:-0.511104pt;}
.ls18_c02473{letter-spacing:-0.299904pt;}
.ls12_c02473{letter-spacing:-0.244992pt;}
.ls10_c02473{letter-spacing:-0.232320pt;}
.ls6_c02473{letter-spacing:-0.215424pt;}
.ls4_c02473{letter-spacing:-0.105600pt;}
.ls15_c02473{letter-spacing:0.000000pt;}
.ls2_c02473{letter-spacing:0.005376pt;}
.lsb_c02473{letter-spacing:0.012672pt;}
.ls16_c02473{letter-spacing:0.046464pt;}
.lsd_c02473{letter-spacing:0.071808pt;}
.ls5_c02473{letter-spacing:0.114048pt;}
.lsc_c02473{letter-spacing:0.451968pt;}
.ls14_c02473{letter-spacing:0.456960pt;}
.ls11_c02473{letter-spacing:0.477312pt;}
.lsa_c02473{letter-spacing:0.515328pt;}
.ls13_c02473{letter-spacing:0.528000pt;}
.ls8_c02473{letter-spacing:0.532224pt;}
.ls3_c02473{letter-spacing:0.544896pt;}
.lsf_c02473{letter-spacing:0.578688pt;}
.ls0_c02473{letter-spacing:0.637824pt;}
.ls1_c02473{letter-spacing:0.642048pt;}
.ws13_c02473{word-spacing:-13.445376pt;}
.ws11_c02473{word-spacing:-11.088000pt;}
.ws10_c02473{word-spacing:-11.037312pt;}
.ws8_c02473{word-spacing:-10.572672pt;}
.ws4_c02473{word-spacing:-10.344576pt;}
.ws2_c02473{word-spacing:-9.955968pt;}
.ws1d_c02473{word-spacing:-1.919232pt;}
.ws1a_c02473{word-spacing:-0.963072pt;}
.ws19_c02473{word-spacing:-0.958848pt;}
.ws16_c02473{word-spacing:-0.865920pt;}
.wsf_c02473{word-spacing:-0.642048pt;}
.ws18_c02473{word-spacing:-0.105600pt;}
.ws1b_c02473{word-spacing:-0.088704pt;}
.ws1c_c02473{word-spacing:-0.076032pt;}
.ws1f_c02473{word-spacing:-0.021120pt;}
.ws17_c02473{word-spacing:0.000000pt;}
.ws1e_c02473{word-spacing:0.397056pt;}
.wse_c02473{word-spacing:1.533312pt;}
.ws15_c02473{word-spacing:2.876544pt;}
.ws14_c02473{word-spacing:6.627456pt;}
.ws7_c02473{word-spacing:8.241024pt;}
.wsa_c02473{word-spacing:10.737408pt;}
.wsc_c02473{word-spacing:20.376576pt;}
.wsd_c02473{word-spacing:27.227904pt;}
.ws12_c02473{word-spacing:29.600256pt;}
.wsb_c02473{word-spacing:32.127744pt;}
.ws6_c02473{word-spacing:32.659968pt;}
.ws1_c02473{word-spacing:33.563904pt;}
.ws0_c02473{word-spacing:33.796224pt;}
.ws3_c02473{word-spacing:34.860672pt;}
.ws5_c02473{word-spacing:35.468928pt;}
.ws9_c02473{word-spacing:37.357056pt;}
._0_c02473{margin-left:-1.731840pt;}
._2_c02473{width:1.317888pt;}
._11_c02473{width:2.226048pt;}
._4_c02473{width:5.094144pt;}
._d_c02473{width:9.504000pt;}
._f_c02473{width:13.043712pt;}
._e_c02473{width:14.648832pt;}
._c_c02473{width:16.317312pt;}
._5_c02473{width:17.360640pt;}
._10_c02473{width:18.758784pt;}
._6_c02473{width:20.148480pt;}
._7_c02473{width:22.319616pt;}
._9_c02473{width:33.792000pt;}
._8_c02473{width:37.065600pt;}
._b_c02473{width:39.747840pt;}
._a_c02473{width:41.779584pt;}
._1_c02473{width:44.668800pt;}
._3_c02473{width:45.805056pt;}
.fs0_c02473{font-size:42.240000pt;}
.fs1_c02473{font-size:53.760000pt;}
.y0_c02473{bottom:0.000000pt;}
.y21_c02473{bottom:130.666267pt;}
.y23_c02473{bottom:165.866875pt;}
.y22_c02473{bottom:174.507067pt;}
.y20_c02473{bottom:245.226427pt;}
.y1f_c02473{bottom:303.786907pt;}
.y1e_c02473{bottom:317.226619pt;}
.y1b_c02473{bottom:361.386427pt;}
.y17_c02473{bottom:377.386939pt;}
.y1d_c02473{bottom:394.666267pt;}
.y1c_c02473{bottom:407.786011pt;}
.y1a_c02473{bottom:437.226235pt;}
.y19_c02473{bottom:453.226747pt;}
.y16_c02473{bottom:482.666971pt;}
.y18_c02473{bottom:497.386555pt;}
.y15_c02473{bottom:513.387067pt;}
.y24_c02473{bottom:546.027067pt;}
.y11_c02473{bottom:593.388347pt;}
.y13_c02473{bottom:628.586875pt;}
.y12_c02473{bottom:637.227067pt;}
.y10_c02473{bottom:694.508795pt;}
.yf_c02473{bottom:707.948507pt;}
.ye_c02473{bottom:739.948475pt;}
.yd_c02473{bottom:753.388187pt;}
.yc_c02473{bottom:766.507931pt;}
.yb_c02473{bottom:779.947643pt;}
.y8_c02473{bottom:810.666683pt;}
.y7_c02473{bottom:823.786427pt;}
.y3_c02473{bottom:839.786939pt;}
.ya_c02473{bottom:857.387291pt;}
.y9_c02473{bottom:870.507035pt;}
.y6_c02473{bottom:899.946203pt;}
.y5_c02473{bottom:915.946715pt;}
.y2_c02473{bottom:945.386939pt;}
.y4_c02473{bottom:959.786555pt;}
.y1_c02473{bottom:975.787067pt;}
.y14_c02473{bottom:1008.747067pt;}
.h3_c02473{height:28.916250pt;}
.h1_c02473{height:37.063125pt;}
.h2_c02473{height:37.166250pt;}
.h4_c02473{height:48.581988pt;}
.h0_c02473{height:1122.666667pt;}
.w1_c02473{width:793.333333pt;}
.w0_c02473{width:793.626667pt;}
.x0_c02473{left:0.000000pt;}
.xe_c02473{left:104.000000pt;}
.x9_c02473{left:391.999872pt;}
.x4_c02473{left:396.160512pt;}
.xc_c02473{left:400.960000pt;}
.x7_c02473{left:404.799648pt;}
.x5_c02473{left:410.560128pt;}
.x1_c02473{left:411.840000pt;}
.xb_c02473{left:429.760320pt;}
.xa_c02473{left:437.439552pt;}
.x6_c02473{left:438.400512pt;}
.xd_c02473{left:450.560320pt;}
.x3_c02473{left:455.039904pt;}
.x2_c02473{left:468.159648pt;}
.x8_c02473{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02474 {
    display:none;
  }
  .loading-indicator_c02474.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02474 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02474 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02474" -> "#page-container .classname_c02474")
 */
.pf_c02474 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02474 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02474.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02474 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02474 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02474 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02474 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02474 {overflow:visible;}
  }
}
.c_c02474 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02474 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02474:after { /* webkit #35443 */
  content: '';
}
.t_c02474:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02474 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02474 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02474 { /* info for Javascript */
  display:none;
}
.l_c02474 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02474 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02474 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02474:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02474 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02474.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02474.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02474 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02474{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02474;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02474{font-family:ff1_c02474;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02474;src:url('chunks/assets/font_eed54088c1e9601030bd053c.woff2')format("woff");}.ff2_c02474{font-family:ff2_c02474;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02474;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02474{font-family:ff3_c02474;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02474{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02474{vertical-align:0.000000px;}
.v1_c02474{vertical-align:1.439424px;}
.v2_c02474{vertical-align:33.121440px;}
.ls10_c02474{letter-spacing:-0.793584px;}
.lsf_c02474{letter-spacing:-0.741312px;}
.lsb_c02474{letter-spacing:-0.722304px;}
.lse_c02474{letter-spacing:-0.717552px;}
.ls7_c02474{letter-spacing:-0.679536px;}
.ls9_c02474{letter-spacing:-0.574992px;}
.ls17_c02474{letter-spacing:-0.323136px;}
.ls13_c02474{letter-spacing:-0.275616px;}
.ls11_c02474{letter-spacing:-0.261360px;}
.ls18_c02474{letter-spacing:-0.256608px;}
.ls6_c02474{letter-spacing:-0.242352px;}
.ls4_c02474{letter-spacing:-0.118800px;}
.ls16_c02474{letter-spacing:0.000000px;}
.ls2_c02474{letter-spacing:0.006048px;}
.lsd_c02474{letter-spacing:0.014256px;}
.ls5_c02474{letter-spacing:0.128304px;}
.lsc_c02474{letter-spacing:0.508464px;}
.ls15_c02474{letter-spacing:0.514080px;}
.ls12_c02474{letter-spacing:0.536976px;}
.lsa_c02474{letter-spacing:0.579744px;}
.ls14_c02474{letter-spacing:0.594000px;}
.ls8_c02474{letter-spacing:0.598752px;}
.ls3_c02474{letter-spacing:0.613008px;}
.ls0_c02474{letter-spacing:0.717552px;}
.ls1_c02474{letter-spacing:0.722304px;}
.sc__c02474{text-shadow:none;}
.sc0_c02474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02474{-webkit-text-stroke:0px transparent;}
.sc0_c02474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c02474{word-spacing:-15.126048px;}
.wsd_c02474{word-spacing:-12.474000px;}
.ws10_c02474{word-spacing:-12.459744px;}
.wsc_c02474{word-spacing:-12.416976px;}
.ws4_c02474{word-spacing:-11.637648px;}
.ws2_c02474{word-spacing:-11.200464px;}
.ws1b_c02474{word-spacing:-2.159136px;}
.ws15_c02474{word-spacing:-1.078704px;}
.ws12_c02474{word-spacing:-0.974160px;}
.ws17_c02474{word-spacing:-0.375408px;}
.ws14_c02474{word-spacing:-0.118800px;}
.ws1d_c02474{word-spacing:-0.104544px;}
.ws19_c02474{word-spacing:-0.099792px;}
.ws1a_c02474{word-spacing:-0.085536px;}
.ws1c_c02474{word-spacing:-0.038016px;}
.ws13_c02474{word-spacing:0.000000px;}
.ws16_c02474{word-spacing:0.361152px;}
.ws18_c02474{word-spacing:0.432432px;}
.ws9_c02474{word-spacing:6.476976px;}
.wsb_c02474{word-spacing:7.916832px;}
.wsa_c02474{word-spacing:16.242336px;}
.ws11_c02474{word-spacing:30.298752px;}
.wse_c02474{word-spacing:33.300288px;}
.ws8_c02474{word-spacing:36.143712px;}
.ws6_c02474{word-spacing:36.742464px;}
.ws1_c02474{word-spacing:37.759392px;}
.ws0_c02474{word-spacing:38.020752px;}
.ws3_c02474{word-spacing:39.218256px;}
.ws5_c02474{word-spacing:39.902544px;}
.ws7_c02474{word-spacing:42.026688px;}
._0_c02474{margin-left:-1.948320px;}
._2_c02474{width:1.482624px;}
._4_c02474{width:5.730912px;}
._6_c02474{width:11.984544px;}
._7_c02474{width:14.455584px;}
._5_c02474{width:18.998496px;}
._d_c02474{width:22.462704px;}
._c_c02474{width:24.292224px;}
._b_c02474{width:28.497744px;}
._a_c02474{width:30.246480px;}
._9_c02474{width:31.814640px;}
._8_c02474{width:34.067088px;}
._1_c02474{width:50.252400px;}
._3_c02474{width:51.530688px;}
.fc0_c02474{color:rgb(0,0,0);}
.fs0_c02474{font-size:47.520000px;}
.fs1_c02474{font-size:60.480000px;}
.y0_c02474{bottom:0.000000px;}
.y1c_c02474{bottom:146.998362px;}
.y1e_c02474{bottom:186.600234px;}
.y1d_c02474{bottom:196.320450px;}
.y1b_c02474{bottom:275.878542px;}
.y1a_c02474{bottom:356.878758px;}
.y18_c02474{bottom:406.559730px;}
.y14_c02474{bottom:424.560306px;}
.y19_c02474{bottom:458.759262px;}
.y17_c02474{bottom:491.879514px;}
.y16_c02474{bottom:509.880090px;}
.y13_c02474{bottom:543.000342px;}
.y15_c02474{bottom:559.559874px;}
.y12_c02474{bottom:577.560450px;}
.y1f_c02474{bottom:614.280450px;}
.ye_c02474{bottom:667.559514px;}
.y10_c02474{bottom:707.160234px;}
.yf_c02474{bottom:716.880450px;}
.yd_c02474{bottom:781.320018px;}
.yc_c02474{bottom:796.439694px;}
.yb_c02474{bottom:847.559334px;}
.ya_c02474{bottom:862.319046px;}
.y9_c02474{bottom:877.438722px;}
.y7_c02474{bottom:926.759730px;}
.y3_c02474{bottom:944.760306px;}
.y8_c02474{bottom:979.319226px;}
.y6_c02474{bottom:1012.439478px;}
.y5_c02474{bottom:1030.440054px;}
.y2_c02474{bottom:1063.560306px;}
.y4_c02474{bottom:1079.759874px;}
.y1_c02474{bottom:1097.760450px;}
.y11_c02474{bottom:1134.840450px;}
.h3_c02474{height:32.530781px;}
.h1_c02474{height:41.696016px;}
.h2_c02474{height:41.812031px;}
.h4_c02474{height:54.654737px;}
.h5_c02474{height:74.817456px;}
.h0_c02474{height:1263.000000px;}
.w1_c02474{width:892.500000px;}
.w0_c02474{width:892.830000px;}
.x0_c02474{left:0.000000px;}
.xe_c02474{left:117.000000px;}
.x8_c02474{left:440.999856px;}
.x4_c02474{left:445.680576px;}
.xc_c02474{left:451.080000px;}
.x7_c02474{left:455.399604px;}
.x5_c02474{left:461.880144px;}
.x1_c02474{left:463.320000px;}
.xb_c02474{left:483.480360px;}
.x9_c02474{left:492.119496px;}
.x6_c02474{left:493.200576px;}
.xd_c02474{left:506.880360px;}
.x3_c02474{left:511.919892px;}
.x2_c02474{left:526.679604px;}
.xa_c02474{left:569.880036px;}
@media print{
.v0_c02474{vertical-align:0.000000pt;}
.v1_c02474{vertical-align:1.279488pt;}
.v2_c02474{vertical-align:29.441280pt;}
.ls10_c02474{letter-spacing:-0.705408pt;}
.lsf_c02474{letter-spacing:-0.658944pt;}
.lsb_c02474{letter-spacing:-0.642048pt;}
.lse_c02474{letter-spacing:-0.637824pt;}
.ls7_c02474{letter-spacing:-0.604032pt;}
.ls9_c02474{letter-spacing:-0.511104pt;}
.ls17_c02474{letter-spacing:-0.287232pt;}
.ls13_c02474{letter-spacing:-0.244992pt;}
.ls11_c02474{letter-spacing:-0.232320pt;}
.ls18_c02474{letter-spacing:-0.228096pt;}
.ls6_c02474{letter-spacing:-0.215424pt;}
.ls4_c02474{letter-spacing:-0.105600pt;}
.ls16_c02474{letter-spacing:0.000000pt;}
.ls2_c02474{letter-spacing:0.005376pt;}
.lsd_c02474{letter-spacing:0.012672pt;}
.ls5_c02474{letter-spacing:0.114048pt;}
.lsc_c02474{letter-spacing:0.451968pt;}
.ls15_c02474{letter-spacing:0.456960pt;}
.ls12_c02474{letter-spacing:0.477312pt;}
.lsa_c02474{letter-spacing:0.515328pt;}
.ls14_c02474{letter-spacing:0.528000pt;}
.ls8_c02474{letter-spacing:0.532224pt;}
.ls3_c02474{letter-spacing:0.544896pt;}
.ls0_c02474{letter-spacing:0.637824pt;}
.ls1_c02474{letter-spacing:0.642048pt;}
.wsf_c02474{word-spacing:-13.445376pt;}
.wsd_c02474{word-spacing:-11.088000pt;}
.ws10_c02474{word-spacing:-11.075328pt;}
.wsc_c02474{word-spacing:-11.037312pt;}
.ws4_c02474{word-spacing:-10.344576pt;}
.ws2_c02474{word-spacing:-9.955968pt;}
.ws1b_c02474{word-spacing:-1.919232pt;}
.ws15_c02474{word-spacing:-0.958848pt;}
.ws12_c02474{word-spacing:-0.865920pt;}
.ws17_c02474{word-spacing:-0.333696pt;}
.ws14_c02474{word-spacing:-0.105600pt;}
.ws1d_c02474{word-spacing:-0.092928pt;}
.ws19_c02474{word-spacing:-0.088704pt;}
.ws1a_c02474{word-spacing:-0.076032pt;}
.ws1c_c02474{word-spacing:-0.033792pt;}
.ws13_c02474{word-spacing:0.000000pt;}
.ws16_c02474{word-spacing:0.321024pt;}
.ws18_c02474{word-spacing:0.384384pt;}
.ws9_c02474{word-spacing:5.757312pt;}
.wsb_c02474{word-spacing:7.037184pt;}
.wsa_c02474{word-spacing:14.437632pt;}
.ws11_c02474{word-spacing:26.932224pt;}
.wse_c02474{word-spacing:29.600256pt;}
.ws8_c02474{word-spacing:32.127744pt;}
.ws6_c02474{word-spacing:32.659968pt;}
.ws1_c02474{word-spacing:33.563904pt;}
.ws0_c02474{word-spacing:33.796224pt;}
.ws3_c02474{word-spacing:34.860672pt;}
.ws5_c02474{word-spacing:35.468928pt;}
.ws7_c02474{word-spacing:37.357056pt;}
._0_c02474{margin-left:-1.731840pt;}
._2_c02474{width:1.317888pt;}
._4_c02474{width:5.094144pt;}
._6_c02474{width:10.652928pt;}
._7_c02474{width:12.849408pt;}
._5_c02474{width:16.887552pt;}
._d_c02474{width:19.966848pt;}
._c_c02474{width:21.593088pt;}
._b_c02474{width:25.331328pt;}
._a_c02474{width:26.885760pt;}
._9_c02474{width:28.279680pt;}
._8_c02474{width:30.281856pt;}
._1_c02474{width:44.668800pt;}
._3_c02474{width:45.805056pt;}
.fs0_c02474{font-size:42.240000pt;}
.fs1_c02474{font-size:53.760000pt;}
.y0_c02474{bottom:0.000000pt;}
.y1c_c02474{bottom:130.665211pt;}
.y1e_c02474{bottom:165.866875pt;}
.y1d_c02474{bottom:174.507067pt;}
.y1b_c02474{bottom:245.225371pt;}
.y1a_c02474{bottom:317.225563pt;}
.y18_c02474{bottom:361.386427pt;}
.y14_c02474{bottom:377.386939pt;}
.y19_c02474{bottom:407.786011pt;}
.y17_c02474{bottom:437.226235pt;}
.y16_c02474{bottom:453.226747pt;}
.y13_c02474{bottom:482.666971pt;}
.y15_c02474{bottom:497.386555pt;}
.y12_c02474{bottom:513.387067pt;}
.y1f_c02474{bottom:546.027067pt;}
.ye_c02474{bottom:593.386235pt;}
.y10_c02474{bottom:628.586875pt;}
.yf_c02474{bottom:637.227067pt;}
.yd_c02474{bottom:694.506683pt;}
.yc_c02474{bottom:707.946395pt;}
.yb_c02474{bottom:753.386075pt;}
.ya_c02474{bottom:766.505819pt;}
.y9_c02474{bottom:779.945531pt;}
.y7_c02474{bottom:823.786427pt;}
.y3_c02474{bottom:839.786939pt;}
.y8_c02474{bottom:870.505979pt;}
.y6_c02474{bottom:899.946203pt;}
.y5_c02474{bottom:915.946715pt;}
.y2_c02474{bottom:945.386939pt;}
.y4_c02474{bottom:959.786555pt;}
.y1_c02474{bottom:975.787067pt;}
.y11_c02474{bottom:1008.747067pt;}
.h3_c02474{height:28.916250pt;}
.h1_c02474{height:37.063125pt;}
.h2_c02474{height:37.166250pt;}
.h4_c02474{height:48.581988pt;}
.h5_c02474{height:66.504405pt;}
.h0_c02474{height:1122.666667pt;}
.w1_c02474{width:793.333333pt;}
.w0_c02474{width:793.626667pt;}
.x0_c02474{left:0.000000pt;}
.xe_c02474{left:104.000000pt;}
.x8_c02474{left:391.999872pt;}
.x4_c02474{left:396.160512pt;}
.xc_c02474{left:400.960000pt;}
.x7_c02474{left:404.799648pt;}
.x5_c02474{left:410.560128pt;}
.x1_c02474{left:411.840000pt;}
.xb_c02474{left:429.760320pt;}
.x9_c02474{left:437.439552pt;}
.x6_c02474{left:438.400512pt;}
.xd_c02474{left:450.560320pt;}
.x3_c02474{left:455.039904pt;}
.x2_c02474{left:468.159648pt;}
.xa_c02474{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02475 {
    display:none;
  }
  .loading-indicator_c02475.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02475 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02475 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02475" -> "#page-container .classname_c02475")
 */
.pf_c02475 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02475 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02475.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02475 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02475 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02475 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02475 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02475 {overflow:visible;}
  }
}
.c_c02475 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02475 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02475:after { /* webkit #35443 */
  content: '';
}
.t_c02475:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02475 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02475 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02475 { /* info for Javascript */
  display:none;
}
.l_c02475 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02475 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02475 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02475:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02475 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02475.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02475.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02475 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02475{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02475;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02475{font-family:ff1_c02475;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02475;src:url('chunks/assets/font_86d67243677597821471610a.woff2')format("woff");}.ff2_c02475{font-family:ff2_c02475;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02475;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02475{font-family:ff3_c02475;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02475{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02475{vertical-align:0.000000px;}
.v1_c02475{vertical-align:1.439424px;}
.ls7_c02475{letter-spacing:-0.679536px;}
.ls9_c02475{letter-spacing:-0.574992px;}
.lsd_c02475{letter-spacing:-0.323136px;}
.ls10_c02475{letter-spacing:-0.275616px;}
.lse_c02475{letter-spacing:-0.261360px;}
.ls6_c02475{letter-spacing:-0.242352px;}
.ls4_c02475{letter-spacing:-0.118800px;}
.ls13_c02475{letter-spacing:0.000000px;}
.ls1_c02475{letter-spacing:0.006048px;}
.lsc_c02475{letter-spacing:0.052272px;}
.ls5_c02475{letter-spacing:0.128304px;}
.lsb_c02475{letter-spacing:0.508464px;}
.ls12_c02475{letter-spacing:0.514080px;}
.lsf_c02475{letter-spacing:0.536976px;}
.lsa_c02475{letter-spacing:0.579744px;}
.ls11_c02475{letter-spacing:0.594000px;}
.ls8_c02475{letter-spacing:0.598752px;}
.ls2_c02475{letter-spacing:0.613008px;}
.ls0_c02475{letter-spacing:0.717552px;}
.ls3_c02475{letter-spacing:0.722304px;}
.sc__c02475{text-shadow:none;}
.sc0_c02475{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02475{-webkit-text-stroke:0px transparent;}
.sc0_c02475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02475{word-spacing:-15.126048px;}
.wse_c02475{word-spacing:-12.602304px;}
.wsb_c02475{word-spacing:-12.474000px;}
.wsa_c02475{word-spacing:-12.416976px;}
.ws4_c02475{word-spacing:-11.637648px;}
.ws2_c02475{word-spacing:-11.200464px;}
.ws17_c02475{word-spacing:-2.159136px;}
.ws13_c02475{word-spacing:-1.083456px;}
.ws12_c02475{word-spacing:-1.078704px;}
.wsf_c02475{word-spacing:-0.974160px;}
.ws11_c02475{word-spacing:-0.118800px;}
.ws15_c02475{word-spacing:-0.099792px;}
.ws16_c02475{word-spacing:-0.085536px;}
.ws14_c02475{word-spacing:-0.038016px;}
.ws10_c02475{word-spacing:0.000000px;}
.ws8_c02475{word-spacing:7.455888px;}
.wsc_c02475{word-spacing:33.300288px;}
.ws9_c02475{word-spacing:36.143712px;}
.ws6_c02475{word-spacing:36.742464px;}
.ws1_c02475{word-spacing:37.759392px;}
.ws0_c02475{word-spacing:38.020752px;}
.ws3_c02475{word-spacing:39.218256px;}
.ws5_c02475{word-spacing:39.902544px;}
.ws7_c02475{word-spacing:42.026688px;}
._0_c02475{margin-left:-1.948320px;}
._2_c02475{width:1.482624px;}
._4_c02475{width:5.730912px;}
._6_c02475{width:21.887712px;}
._5_c02475{width:24.325488px;}
._1_c02475{width:50.252400px;}
._3_c02475{width:51.530688px;}
.fc0_c02475{color:rgb(0,0,0);}
.fs0_c02475{font-size:47.520000px;}
.fs1_c02475{font-size:60.480000px;}
.y0_c02475{bottom:0.000000px;}
.y1b_c02475{bottom:146.999550px;}
.y1d_c02475{bottom:186.600234px;}
.y1c_c02475{bottom:196.320450px;}
.y1a_c02475{bottom:275.879730px;}
.y19_c02475{bottom:356.879946px;}
.y16_c02475{bottom:406.559730px;}
.y12_c02475{bottom:424.560306px;}
.y18_c02475{bottom:443.999550px;}
.y17_c02475{bottom:458.759262px;}
.y15_c02475{bottom:491.879514px;}
.y14_c02475{bottom:509.880090px;}
.y11_c02475{bottom:543.000342px;}
.y13_c02475{bottom:559.559874px;}
.y10_c02475{bottom:577.560450px;}
.y1e_c02475{bottom:614.280450px;}
.yc_c02475{bottom:667.559514px;}
.ye_c02475{bottom:707.160234px;}
.yd_c02475{bottom:716.880450px;}
.yb_c02475{bottom:796.439694px;}
.ya_c02475{bottom:877.439910px;}
.y7_c02475{bottom:926.759730px;}
.y3_c02475{bottom:944.760306px;}
.y9_c02475{bottom:964.559514px;}
.y8_c02475{bottom:979.319226px;}
.y6_c02475{bottom:1012.439478px;}
.y5_c02475{bottom:1030.440054px;}
.y2_c02475{bottom:1063.560306px;}
.y4_c02475{bottom:1079.759874px;}
.y1_c02475{bottom:1097.760450px;}
.yf_c02475{bottom:1134.840450px;}
.h3_c02475{height:32.530781px;}
.h1_c02475{height:41.696016px;}
.h2_c02475{height:41.812031px;}
.h4_c02475{height:54.654737px;}
.h0_c02475{height:1263.000000px;}
.w1_c02475{width:892.500000px;}
.w0_c02475{width:892.830000px;}
.x0_c02475{left:0.000000px;}
.xe_c02475{left:117.000000px;}
.x8_c02475{left:440.999856px;}
.x4_c02475{left:445.680576px;}
.xc_c02475{left:451.080000px;}
.x7_c02475{left:455.399604px;}
.x5_c02475{left:461.880144px;}
.x1_c02475{left:463.320000px;}
.xb_c02475{left:483.480360px;}
.xa_c02475{left:492.119496px;}
.x6_c02475{left:493.200576px;}
.xd_c02475{left:506.880360px;}
.x3_c02475{left:511.919892px;}
.x2_c02475{left:526.679604px;}
.x9_c02475{left:569.880036px;}
@media print{
.v0_c02475{vertical-align:0.000000pt;}
.v1_c02475{vertical-align:1.279488pt;}
.ls7_c02475{letter-spacing:-0.604032pt;}
.ls9_c02475{letter-spacing:-0.511104pt;}
.lsd_c02475{letter-spacing:-0.287232pt;}
.ls10_c02475{letter-spacing:-0.244992pt;}
.lse_c02475{letter-spacing:-0.232320pt;}
.ls6_c02475{letter-spacing:-0.215424pt;}
.ls4_c02475{letter-spacing:-0.105600pt;}
.ls13_c02475{letter-spacing:0.000000pt;}
.ls1_c02475{letter-spacing:0.005376pt;}
.lsc_c02475{letter-spacing:0.046464pt;}
.ls5_c02475{letter-spacing:0.114048pt;}
.lsb_c02475{letter-spacing:0.451968pt;}
.ls12_c02475{letter-spacing:0.456960pt;}
.lsf_c02475{letter-spacing:0.477312pt;}
.lsa_c02475{letter-spacing:0.515328pt;}
.ls11_c02475{letter-spacing:0.528000pt;}
.ls8_c02475{letter-spacing:0.532224pt;}
.ls2_c02475{letter-spacing:0.544896pt;}
.ls0_c02475{letter-spacing:0.637824pt;}
.ls3_c02475{letter-spacing:0.642048pt;}
.wsd_c02475{word-spacing:-13.445376pt;}
.wse_c02475{word-spacing:-11.202048pt;}
.wsb_c02475{word-spacing:-11.088000pt;}
.wsa_c02475{word-spacing:-11.037312pt;}
.ws4_c02475{word-spacing:-10.344576pt;}
.ws2_c02475{word-spacing:-9.955968pt;}
.ws17_c02475{word-spacing:-1.919232pt;}
.ws13_c02475{word-spacing:-0.963072pt;}
.ws12_c02475{word-spacing:-0.958848pt;}
.wsf_c02475{word-spacing:-0.865920pt;}
.ws11_c02475{word-spacing:-0.105600pt;}
.ws15_c02475{word-spacing:-0.088704pt;}
.ws16_c02475{word-spacing:-0.076032pt;}
.ws14_c02475{word-spacing:-0.033792pt;}
.ws10_c02475{word-spacing:0.000000pt;}
.ws8_c02475{word-spacing:6.627456pt;}
.wsc_c02475{word-spacing:29.600256pt;}
.ws9_c02475{word-spacing:32.127744pt;}
.ws6_c02475{word-spacing:32.659968pt;}
.ws1_c02475{word-spacing:33.563904pt;}
.ws0_c02475{word-spacing:33.796224pt;}
.ws3_c02475{word-spacing:34.860672pt;}
.ws5_c02475{word-spacing:35.468928pt;}
.ws7_c02475{word-spacing:37.357056pt;}
._0_c02475{margin-left:-1.731840pt;}
._2_c02475{width:1.317888pt;}
._4_c02475{width:5.094144pt;}
._6_c02475{width:19.455744pt;}
._5_c02475{width:21.622656pt;}
._1_c02475{width:44.668800pt;}
._3_c02475{width:45.805056pt;}
.fs0_c02475{font-size:42.240000pt;}
.fs1_c02475{font-size:53.760000pt;}
.y0_c02475{bottom:0.000000pt;}
.y1b_c02475{bottom:130.666267pt;}
.y1d_c02475{bottom:165.866875pt;}
.y1c_c02475{bottom:174.507067pt;}
.y1a_c02475{bottom:245.226427pt;}
.y19_c02475{bottom:317.226619pt;}
.y16_c02475{bottom:361.386427pt;}
.y12_c02475{bottom:377.386939pt;}
.y18_c02475{bottom:394.666267pt;}
.y17_c02475{bottom:407.786011pt;}
.y15_c02475{bottom:437.226235pt;}
.y14_c02475{bottom:453.226747pt;}
.y11_c02475{bottom:482.666971pt;}
.y13_c02475{bottom:497.386555pt;}
.y10_c02475{bottom:513.387067pt;}
.y1e_c02475{bottom:546.027067pt;}
.yc_c02475{bottom:593.386235pt;}
.ye_c02475{bottom:628.586875pt;}
.yd_c02475{bottom:637.227067pt;}
.yb_c02475{bottom:707.946395pt;}
.ya_c02475{bottom:779.946587pt;}
.y7_c02475{bottom:823.786427pt;}
.y3_c02475{bottom:839.786939pt;}
.y9_c02475{bottom:857.386235pt;}
.y8_c02475{bottom:870.505979pt;}
.y6_c02475{bottom:899.946203pt;}
.y5_c02475{bottom:915.946715pt;}
.y2_c02475{bottom:945.386939pt;}
.y4_c02475{bottom:959.786555pt;}
.y1_c02475{bottom:975.787067pt;}
.yf_c02475{bottom:1008.747067pt;}
.h3_c02475{height:28.916250pt;}
.h1_c02475{height:37.063125pt;}
.h2_c02475{height:37.166250pt;}
.h4_c02475{height:48.581988pt;}
.h0_c02475{height:1122.666667pt;}
.w1_c02475{width:793.333333pt;}
.w0_c02475{width:793.626667pt;}
.x0_c02475{left:0.000000pt;}
.xe_c02475{left:104.000000pt;}
.x8_c02475{left:391.999872pt;}
.x4_c02475{left:396.160512pt;}
.xc_c02475{left:400.960000pt;}
.x7_c02475{left:404.799648pt;}
.x5_c02475{left:410.560128pt;}
.x1_c02475{left:411.840000pt;}
.xb_c02475{left:429.760320pt;}
.xa_c02475{left:437.439552pt;}
.x6_c02475{left:438.400512pt;}
.xd_c02475{left:450.560320pt;}
.x3_c02475{left:455.039904pt;}
.x2_c02475{left:468.159648pt;}
.x9_c02475{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02476 {
    display:none;
  }
  .loading-indicator_c02476.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02476 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02476 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02476" -> "#page-container .classname_c02476")
 */
.pf_c02476 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02476 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02476.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02476 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02476 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02476 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02476 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02476 {overflow:visible;}
  }
}
.c_c02476 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02476 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02476:after { /* webkit #35443 */
  content: '';
}
.t_c02476:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02476 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02476 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02476 { /* info for Javascript */
  display:none;
}
.l_c02476 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02476 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02476 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02476:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02476 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02476.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02476.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02476 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02476{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02476;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02476{font-family:ff1_c02476;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02476;src:url('chunks/assets/font_05594a6c3671cbd3e6e36bb1.woff2')format("woff");}.ff2_c02476{font-family:ff2_c02476;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02476;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02476{font-family:ff3_c02476;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02476{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02476{vertical-align:0.000000px;}
.v1_c02476{vertical-align:1.439424px;}
.lsc_c02476{letter-spacing:-1.197504px;}
.ls14_c02476{letter-spacing:-0.793584px;}
.ls15_c02476{letter-spacing:-0.736560px;}
.ls7_c02476{letter-spacing:-0.679536px;}
.ls9_c02476{letter-spacing:-0.574992px;}
.lsd_c02476{letter-spacing:-0.323136px;}
.ls10_c02476{letter-spacing:-0.275616px;}
.ls16_c02476{letter-spacing:-0.270864px;}
.lse_c02476{letter-spacing:-0.261360px;}
.ls6_c02476{letter-spacing:-0.242352px;}
.ls4_c02476{letter-spacing:-0.118800px;}
.ls13_c02476{letter-spacing:0.000000px;}
.ls1_c02476{letter-spacing:0.006048px;}
.ls5_c02476{letter-spacing:0.128304px;}
.lsb_c02476{letter-spacing:0.508464px;}
.ls12_c02476{letter-spacing:0.514080px;}
.lsf_c02476{letter-spacing:0.536976px;}
.lsa_c02476{letter-spacing:0.579744px;}
.ls11_c02476{letter-spacing:0.594000px;}
.ls8_c02476{letter-spacing:0.598752px;}
.ls3_c02476{letter-spacing:0.613008px;}
.ls0_c02476{letter-spacing:0.717552px;}
.ls2_c02476{letter-spacing:0.722304px;}
.sc__c02476{text-shadow:none;}
.sc0_c02476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02476{-webkit-text-stroke:0px transparent;}
.sc0_c02476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02476{word-spacing:-15.126048px;}
.wsd_c02476{word-spacing:-12.602304px;}
.wsa_c02476{word-spacing:-12.474000px;}
.ws9_c02476{word-spacing:-12.416976px;}
.ws4_c02476{word-spacing:-11.637648px;}
.ws2_c02476{word-spacing:-11.200464px;}
.ws19_c02476{word-spacing:-2.159136px;}
.ws14_c02476{word-spacing:-1.078704px;}
.ws11_c02476{word-spacing:-0.974160px;}
.ws13_c02476{word-spacing:-0.118800px;}
.ws17_c02476{word-spacing:-0.099792px;}
.ws1b_c02476{word-spacing:-0.090288px;}
.ws18_c02476{word-spacing:-0.085536px;}
.ws16_c02476{word-spacing:-0.038016px;}
.ws12_c02476{word-spacing:0.000000px;}
.ws1a_c02476{word-spacing:0.432432px;}
.ws15_c02476{word-spacing:0.836352px;}
.ws10_c02476{word-spacing:6.629040px;}
.wsb_c02476{word-spacing:33.300288px;}
.wsf_c02476{word-spacing:34.836912px;}
.ws8_c02476{word-spacing:36.143712px;}
.ws6_c02476{word-spacing:36.742464px;}
.ws1_c02476{word-spacing:37.759392px;}
.ws0_c02476{word-spacing:38.020752px;}
.ws3_c02476{word-spacing:39.218256px;}
.ws5_c02476{word-spacing:39.902544px;}
.wse_c02476{word-spacing:42.026688px;}
.ws7_c02476{word-spacing:53.545536px;}
._0_c02476{margin-left:-1.948320px;}
._2_c02476{width:1.482624px;}
._5_c02476{width:2.770416px;}
._4_c02476{width:5.730912px;}
._7_c02476{width:19.982160px;}
._8_c02476{width:23.451120px;}
._6_c02476{width:24.691392px;}
._1_c02476{width:50.252400px;}
._3_c02476{width:51.530688px;}
.fc0_c02476{color:rgb(0,0,0);}
.fs0_c02476{font-size:47.520000px;}
.fs1_c02476{font-size:60.480000px;}
.y0_c02476{bottom:0.000000px;}
.y1a_c02476{bottom:131.878686px;}
.y19_c02476{bottom:146.998362px;}
.y1c_c02476{bottom:186.600234px;}
.y1b_c02476{bottom:196.320450px;}
.y18_c02476{bottom:275.878542px;}
.y17_c02476{bottom:356.878758px;}
.y15_c02476{bottom:406.559730px;}
.y11_c02476{bottom:424.560306px;}
.y16_c02476{bottom:458.759262px;}
.y14_c02476{bottom:491.879514px;}
.y13_c02476{bottom:509.880090px;}
.y10_c02476{bottom:543.000342px;}
.y12_c02476{bottom:559.559874px;}
.yf_c02476{bottom:577.560450px;}
.y1d_c02476{bottom:614.280450px;}
.yb_c02476{bottom:667.558326px;}
.yd_c02476{bottom:707.160234px;}
.yc_c02476{bottom:716.880450px;}
.ya_c02476{bottom:796.438506px;}
.y9_c02476{bottom:877.438722px;}
.y7_c02476{bottom:926.759730px;}
.y3_c02476{bottom:944.760306px;}
.y8_c02476{bottom:979.319226px;}
.y6_c02476{bottom:1012.439478px;}
.y5_c02476{bottom:1030.440054px;}
.y2_c02476{bottom:1063.560306px;}
.y4_c02476{bottom:1079.759874px;}
.y1_c02476{bottom:1097.760450px;}
.ye_c02476{bottom:1134.840450px;}
.h3_c02476{height:32.530781px;}
.h1_c02476{height:41.696016px;}
.h2_c02476{height:41.812031px;}
.h4_c02476{height:54.654737px;}
.h0_c02476{height:1263.000000px;}
.w1_c02476{width:892.500000px;}
.w0_c02476{width:892.830000px;}
.x0_c02476{left:0.000000px;}
.xd_c02476{left:117.000000px;}
.x8_c02476{left:440.999856px;}
.x4_c02476{left:445.680576px;}
.xb_c02476{left:451.080000px;}
.x7_c02476{left:455.399604px;}
.x5_c02476{left:461.880144px;}
.x1_c02476{left:463.320000px;}
.xa_c02476{left:483.480360px;}
.x9_c02476{left:492.119496px;}
.x6_c02476{left:493.200576px;}
.xc_c02476{left:506.880360px;}
.x3_c02476{left:511.919892px;}
.x2_c02476{left:526.679604px;}
.xe_c02476{left:569.880036px;}
@media print{
.v0_c02476{vertical-align:0.000000pt;}
.v1_c02476{vertical-align:1.279488pt;}
.lsc_c02476{letter-spacing:-1.064448pt;}
.ls14_c02476{letter-spacing:-0.705408pt;}
.ls15_c02476{letter-spacing:-0.654720pt;}
.ls7_c02476{letter-spacing:-0.604032pt;}
.ls9_c02476{letter-spacing:-0.511104pt;}
.lsd_c02476{letter-spacing:-0.287232pt;}
.ls10_c02476{letter-spacing:-0.244992pt;}
.ls16_c02476{letter-spacing:-0.240768pt;}
.lse_c02476{letter-spacing:-0.232320pt;}
.ls6_c02476{letter-spacing:-0.215424pt;}
.ls4_c02476{letter-spacing:-0.105600pt;}
.ls13_c02476{letter-spacing:0.000000pt;}
.ls1_c02476{letter-spacing:0.005376pt;}
.ls5_c02476{letter-spacing:0.114048pt;}
.lsb_c02476{letter-spacing:0.451968pt;}
.ls12_c02476{letter-spacing:0.456960pt;}
.lsf_c02476{letter-spacing:0.477312pt;}
.lsa_c02476{letter-spacing:0.515328pt;}
.ls11_c02476{letter-spacing:0.528000pt;}
.ls8_c02476{letter-spacing:0.532224pt;}
.ls3_c02476{letter-spacing:0.544896pt;}
.ls0_c02476{letter-spacing:0.637824pt;}
.ls2_c02476{letter-spacing:0.642048pt;}
.wsc_c02476{word-spacing:-13.445376pt;}
.wsd_c02476{word-spacing:-11.202048pt;}
.wsa_c02476{word-spacing:-11.088000pt;}
.ws9_c02476{word-spacing:-11.037312pt;}
.ws4_c02476{word-spacing:-10.344576pt;}
.ws2_c02476{word-spacing:-9.955968pt;}
.ws19_c02476{word-spacing:-1.919232pt;}
.ws14_c02476{word-spacing:-0.958848pt;}
.ws11_c02476{word-spacing:-0.865920pt;}
.ws13_c02476{word-spacing:-0.105600pt;}
.ws17_c02476{word-spacing:-0.088704pt;}
.ws1b_c02476{word-spacing:-0.080256pt;}
.ws18_c02476{word-spacing:-0.076032pt;}
.ws16_c02476{word-spacing:-0.033792pt;}
.ws12_c02476{word-spacing:0.000000pt;}
.ws1a_c02476{word-spacing:0.384384pt;}
.ws15_c02476{word-spacing:0.743424pt;}
.ws10_c02476{word-spacing:5.892480pt;}
.wsb_c02476{word-spacing:29.600256pt;}
.wsf_c02476{word-spacing:30.966144pt;}
.ws8_c02476{word-spacing:32.127744pt;}
.ws6_c02476{word-spacing:32.659968pt;}
.ws1_c02476{word-spacing:33.563904pt;}
.ws0_c02476{word-spacing:33.796224pt;}
.ws3_c02476{word-spacing:34.860672pt;}
.ws5_c02476{word-spacing:35.468928pt;}
.wse_c02476{word-spacing:37.357056pt;}
.ws7_c02476{word-spacing:47.596032pt;}
._0_c02476{margin-left:-1.731840pt;}
._2_c02476{width:1.317888pt;}
._5_c02476{width:2.462592pt;}
._4_c02476{width:5.094144pt;}
._7_c02476{width:17.761920pt;}
._8_c02476{width:20.845440pt;}
._6_c02476{width:21.947904pt;}
._1_c02476{width:44.668800pt;}
._3_c02476{width:45.805056pt;}
.fs0_c02476{font-size:42.240000pt;}
.fs1_c02476{font-size:53.760000pt;}
.y0_c02476{bottom:0.000000pt;}
.y1a_c02476{bottom:117.225499pt;}
.y19_c02476{bottom:130.665211pt;}
.y1c_c02476{bottom:165.866875pt;}
.y1b_c02476{bottom:174.507067pt;}
.y18_c02476{bottom:245.225371pt;}
.y17_c02476{bottom:317.225563pt;}
.y15_c02476{bottom:361.386427pt;}
.y11_c02476{bottom:377.386939pt;}
.y16_c02476{bottom:407.786011pt;}
.y14_c02476{bottom:437.226235pt;}
.y13_c02476{bottom:453.226747pt;}
.y10_c02476{bottom:482.666971pt;}
.y12_c02476{bottom:497.386555pt;}
.yf_c02476{bottom:513.387067pt;}
.y1d_c02476{bottom:546.027067pt;}
.yb_c02476{bottom:593.385179pt;}
.yd_c02476{bottom:628.586875pt;}
.yc_c02476{bottom:637.227067pt;}
.ya_c02476{bottom:707.945339pt;}
.y9_c02476{bottom:779.945531pt;}
.y7_c02476{bottom:823.786427pt;}
.y3_c02476{bottom:839.786939pt;}
.y8_c02476{bottom:870.505979pt;}
.y6_c02476{bottom:899.946203pt;}
.y5_c02476{bottom:915.946715pt;}
.y2_c02476{bottom:945.386939pt;}
.y4_c02476{bottom:959.786555pt;}
.y1_c02476{bottom:975.787067pt;}
.ye_c02476{bottom:1008.747067pt;}
.h3_c02476{height:28.916250pt;}
.h1_c02476{height:37.063125pt;}
.h2_c02476{height:37.166250pt;}
.h4_c02476{height:48.581988pt;}
.h0_c02476{height:1122.666667pt;}
.w1_c02476{width:793.333333pt;}
.w0_c02476{width:793.626667pt;}
.x0_c02476{left:0.000000pt;}
.xd_c02476{left:104.000000pt;}
.x8_c02476{left:391.999872pt;}
.x4_c02476{left:396.160512pt;}
.xb_c02476{left:400.960000pt;}
.x7_c02476{left:404.799648pt;}
.x5_c02476{left:410.560128pt;}
.x1_c02476{left:411.840000pt;}
.xa_c02476{left:429.760320pt;}
.x9_c02476{left:437.439552pt;}
.x6_c02476{left:438.400512pt;}
.xc_c02476{left:450.560320pt;}
.x3_c02476{left:455.039904pt;}
.x2_c02476{left:468.159648pt;}
.xe_c02476{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02477 {
    display:none;
  }
  .loading-indicator_c02477.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02477 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02477 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02477" -> "#page-container .classname_c02477")
 */
.pf_c02477 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02477 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02477.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02477 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02477 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02477 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02477 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02477 {overflow:visible;}
  }
}
.c_c02477 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02477 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02477:after { /* webkit #35443 */
  content: '';
}
.t_c02477:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02477 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02477 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02477 { /* info for Javascript */
  display:none;
}
.l_c02477 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02477 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02477 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02477:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02477 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02477.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02477.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02477 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02477{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02477;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02477{font-family:ff1_c02477;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02477;src:url('chunks/assets/font_d97d2704f63b4ed4a2ddd7f0.woff2')format("woff");}.ff2_c02477{font-family:ff2_c02477;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02477;src:url('chunks/assets/font_1e7295d105498f3a2617faed.woff2')format("woff");}.ff3_c02477{font-family:ff3_c02477;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02477{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02477{vertical-align:0.000000px;}
.v1_c02477{vertical-align:1.439424px;}
.ls10_c02477{letter-spacing:-0.793584px;}
.lsd_c02477{letter-spacing:-0.769824px;}
.lsb_c02477{letter-spacing:-0.722304px;}
.ls7_c02477{letter-spacing:-0.679536px;}
.ls9_c02477{letter-spacing:-0.574992px;}
.ls15_c02477{letter-spacing:-0.275616px;}
.ls11_c02477{letter-spacing:-0.261360px;}
.ls6_c02477{letter-spacing:-0.242352px;}
.ls4_c02477{letter-spacing:-0.118800px;}
.ls18_c02477{letter-spacing:0.000000px;}
.ls2_c02477{letter-spacing:0.006048px;}
.ls19_c02477{letter-spacing:0.014256px;}
.ls5_c02477{letter-spacing:0.128304px;}
.ls13_c02477{letter-spacing:0.199584px;}
.ls12_c02477{letter-spacing:0.209088px;}
.lsc_c02477{letter-spacing:0.508464px;}
.ls17_c02477{letter-spacing:0.514080px;}
.ls14_c02477{letter-spacing:0.536976px;}
.lsa_c02477{letter-spacing:0.579744px;}
.ls16_c02477{letter-spacing:0.594000px;}
.ls8_c02477{letter-spacing:0.598752px;}
.ls3_c02477{letter-spacing:0.613008px;}
.lse_c02477{letter-spacing:0.651024px;}
.lsf_c02477{letter-spacing:0.679536px;}
.ls1_c02477{letter-spacing:0.717552px;}
.ls0_c02477{letter-spacing:0.722304px;}
.sc__c02477{text-shadow:none;}
.sc0_c02477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02477{-webkit-text-stroke:0px transparent;}
.sc0_c02477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11_c02477{word-spacing:-15.126048px;}
.ws2_c02477{word-spacing:-12.602304px;}
.wsf_c02477{word-spacing:-12.474000px;}
.wse_c02477{word-spacing:-12.416976px;}
.ws5_c02477{word-spacing:-11.637648px;}
.ws3_c02477{word-spacing:-11.200464px;}
.ws1d_c02477{word-spacing:-2.159136px;}
.ws20_c02477{word-spacing:-1.083456px;}
.ws16_c02477{word-spacing:-1.078704px;}
.ws1f_c02477{word-spacing:-1.012176px;}
.ws13_c02477{word-spacing:-0.974160px;}
.ws1b_c02477{word-spacing:-0.560736px;}
.ws1e_c02477{word-spacing:-0.375408px;}
.ws15_c02477{word-spacing:-0.118800px;}
.ws1a_c02477{word-spacing:-0.099792px;}
.ws1c_c02477{word-spacing:-0.085536px;}
.ws14_c02477{word-spacing:0.000000px;}
.ws17_c02477{word-spacing:0.361152px;}
.ws18_c02477{word-spacing:0.408672px;}
.ws19_c02477{word-spacing:0.432432px;}
.wsb_c02477{word-spacing:8.220960px;}
.wsc_c02477{word-spacing:10.307088px;}
.wsa_c02477{word-spacing:22.923648px;}
.ws12_c02477{word-spacing:24.244704px;}
.ws10_c02477{word-spacing:33.300288px;}
.ws9_c02477{word-spacing:36.143712px;}
.ws7_c02477{word-spacing:36.742464px;}
.ws1_c02477{word-spacing:37.759392px;}
.ws0_c02477{word-spacing:38.020752px;}
.ws4_c02477{word-spacing:39.218256px;}
.ws6_c02477{word-spacing:39.902544px;}
.ws8_c02477{word-spacing:42.026688px;}
.wsd_c02477{word-spacing:57.903120px;}
._0_c02477{margin-left:-1.948320px;}
._2_c02477{width:1.482624px;}
._4_c02477{width:5.730912px;}
._8_c02477{width:24.444288px;}
._7_c02477{width:27.300240px;}
._c_c02477{width:31.838400px;}
._d_c02477{width:34.627824px;}
._b_c02477{width:36.913536px;}
._6_c02477{width:38.016000px;}
._5_c02477{width:41.698800px;}
._1_c02477{width:50.252400px;}
._3_c02477{width:51.530688px;}
._a_c02477{width:66.204864px;}
._9_c02477{width:72.030816px;}
.fc0_c02477{color:rgb(0,0,0);}
.fs0_c02477{font-size:47.520000px;}
.fs1_c02477{font-size:60.480000px;}
.y0_c02477{bottom:0.000000px;}
.y1d_c02477{bottom:146.998362px;}
.y1f_c02477{bottom:186.600234px;}
.y1e_c02477{bottom:196.320450px;}
.y1c_c02477{bottom:275.878542px;}
.y1b_c02477{bottom:341.759082px;}
.y1a_c02477{bottom:356.878758px;}
.y18_c02477{bottom:406.559730px;}
.y14_c02477{bottom:424.560306px;}
.y19_c02477{bottom:458.759262px;}
.y17_c02477{bottom:491.879514px;}
.y16_c02477{bottom:509.880090px;}
.y13_c02477{bottom:543.000342px;}
.y15_c02477{bottom:559.559874px;}
.y12_c02477{bottom:577.560450px;}
.y20_c02477{bottom:614.280450px;}
.ye_c02477{bottom:667.559514px;}
.y10_c02477{bottom:707.160234px;}
.yf_c02477{bottom:716.880450px;}
.yd_c02477{bottom:781.320018px;}
.yc_c02477{bottom:796.439694px;}
.yb_c02477{bottom:847.559334px;}
.ya_c02477{bottom:862.319046px;}
.y9_c02477{bottom:877.438722px;}
.y7_c02477{bottom:926.759730px;}
.y3_c02477{bottom:944.760306px;}
.y8_c02477{bottom:979.319226px;}
.y6_c02477{bottom:1012.439478px;}
.y5_c02477{bottom:1030.440054px;}
.y2_c02477{bottom:1063.560306px;}
.y4_c02477{bottom:1079.759874px;}
.y1_c02477{bottom:1097.760450px;}
.y11_c02477{bottom:1134.840450px;}
.h3_c02477{height:32.530781px;}
.h1_c02477{height:41.696016px;}
.h2_c02477{height:41.812031px;}
.h4_c02477{height:54.654737px;}
.h0_c02477{height:1263.000000px;}
.w1_c02477{width:892.500000px;}
.w0_c02477{width:892.830000px;}
.x0_c02477{left:0.000000px;}
.xe_c02477{left:117.000000px;}
.x8_c02477{left:440.999856px;}
.x4_c02477{left:445.680576px;}
.xc_c02477{left:451.080000px;}
.x7_c02477{left:455.399604px;}
.x5_c02477{left:461.880144px;}
.x1_c02477{left:463.320000px;}
.xb_c02477{left:483.479172px;}
.x9_c02477{left:492.119496px;}
.x6_c02477{left:493.200576px;}
.xd_c02477{left:506.880360px;}
.x3_c02477{left:511.919892px;}
.x2_c02477{left:526.679604px;}
.xa_c02477{left:569.880036px;}
@media print{
.v0_c02477{vertical-align:0.000000pt;}
.v1_c02477{vertical-align:1.279488pt;}
.ls10_c02477{letter-spacing:-0.705408pt;}
.lsd_c02477{letter-spacing:-0.684288pt;}
.lsb_c02477{letter-spacing:-0.642048pt;}
.ls7_c02477{letter-spacing:-0.604032pt;}
.ls9_c02477{letter-spacing:-0.511104pt;}
.ls15_c02477{letter-spacing:-0.244992pt;}
.ls11_c02477{letter-spacing:-0.232320pt;}
.ls6_c02477{letter-spacing:-0.215424pt;}
.ls4_c02477{letter-spacing:-0.105600pt;}
.ls18_c02477{letter-spacing:0.000000pt;}
.ls2_c02477{letter-spacing:0.005376pt;}
.ls19_c02477{letter-spacing:0.012672pt;}
.ls5_c02477{letter-spacing:0.114048pt;}
.ls13_c02477{letter-spacing:0.177408pt;}
.ls12_c02477{letter-spacing:0.185856pt;}
.lsc_c02477{letter-spacing:0.451968pt;}
.ls17_c02477{letter-spacing:0.456960pt;}
.ls14_c02477{letter-spacing:0.477312pt;}
.lsa_c02477{letter-spacing:0.515328pt;}
.ls16_c02477{letter-spacing:0.528000pt;}
.ls8_c02477{letter-spacing:0.532224pt;}
.ls3_c02477{letter-spacing:0.544896pt;}
.lse_c02477{letter-spacing:0.578688pt;}
.lsf_c02477{letter-spacing:0.604032pt;}
.ls1_c02477{letter-spacing:0.637824pt;}
.ls0_c02477{letter-spacing:0.642048pt;}
.ws11_c02477{word-spacing:-13.445376pt;}
.ws2_c02477{word-spacing:-11.202048pt;}
.wsf_c02477{word-spacing:-11.088000pt;}
.wse_c02477{word-spacing:-11.037312pt;}
.ws5_c02477{word-spacing:-10.344576pt;}
.ws3_c02477{word-spacing:-9.955968pt;}
.ws1d_c02477{word-spacing:-1.919232pt;}
.ws20_c02477{word-spacing:-0.963072pt;}
.ws16_c02477{word-spacing:-0.958848pt;}
.ws1f_c02477{word-spacing:-0.899712pt;}
.ws13_c02477{word-spacing:-0.865920pt;}
.ws1b_c02477{word-spacing:-0.498432pt;}
.ws1e_c02477{word-spacing:-0.333696pt;}
.ws15_c02477{word-spacing:-0.105600pt;}
.ws1a_c02477{word-spacing:-0.088704pt;}
.ws1c_c02477{word-spacing:-0.076032pt;}
.ws14_c02477{word-spacing:0.000000pt;}
.ws17_c02477{word-spacing:0.321024pt;}
.ws18_c02477{word-spacing:0.363264pt;}
.ws19_c02477{word-spacing:0.384384pt;}
.wsb_c02477{word-spacing:7.307520pt;}
.wsc_c02477{word-spacing:9.161856pt;}
.wsa_c02477{word-spacing:20.376576pt;}
.ws12_c02477{word-spacing:21.550848pt;}
.ws10_c02477{word-spacing:29.600256pt;}
.ws9_c02477{word-spacing:32.127744pt;}
.ws7_c02477{word-spacing:32.659968pt;}
.ws1_c02477{word-spacing:33.563904pt;}
.ws0_c02477{word-spacing:33.796224pt;}
.ws4_c02477{word-spacing:34.860672pt;}
.ws6_c02477{word-spacing:35.468928pt;}
.ws8_c02477{word-spacing:37.357056pt;}
.wsd_c02477{word-spacing:51.469440pt;}
._0_c02477{margin-left:-1.731840pt;}
._2_c02477{width:1.317888pt;}
._4_c02477{width:5.094144pt;}
._8_c02477{width:21.728256pt;}
._7_c02477{width:24.266880pt;}
._c_c02477{width:28.300800pt;}
._d_c02477{width:30.780288pt;}
._b_c02477{width:32.812032pt;}
._6_c02477{width:33.792000pt;}
._5_c02477{width:37.065600pt;}
._1_c02477{width:44.668800pt;}
._3_c02477{width:45.805056pt;}
._a_c02477{width:58.848768pt;}
._9_c02477{width:64.027392pt;}
.fs0_c02477{font-size:42.240000pt;}
.fs1_c02477{font-size:53.760000pt;}
.y0_c02477{bottom:0.000000pt;}
.y1d_c02477{bottom:130.665211pt;}
.y1f_c02477{bottom:165.866875pt;}
.y1e_c02477{bottom:174.507067pt;}
.y1c_c02477{bottom:245.225371pt;}
.y1b_c02477{bottom:303.785851pt;}
.y1a_c02477{bottom:317.225563pt;}
.y18_c02477{bottom:361.386427pt;}
.y14_c02477{bottom:377.386939pt;}
.y19_c02477{bottom:407.786011pt;}
.y17_c02477{bottom:437.226235pt;}
.y16_c02477{bottom:453.226747pt;}
.y13_c02477{bottom:482.666971pt;}
.y15_c02477{bottom:497.386555pt;}
.y12_c02477{bottom:513.387067pt;}
.y20_c02477{bottom:546.027067pt;}
.ye_c02477{bottom:593.386235pt;}
.y10_c02477{bottom:628.586875pt;}
.yf_c02477{bottom:637.227067pt;}
.yd_c02477{bottom:694.506683pt;}
.yc_c02477{bottom:707.946395pt;}
.yb_c02477{bottom:753.386075pt;}
.ya_c02477{bottom:766.505819pt;}
.y9_c02477{bottom:779.945531pt;}
.y7_c02477{bottom:823.786427pt;}
.y3_c02477{bottom:839.786939pt;}
.y8_c02477{bottom:870.505979pt;}
.y6_c02477{bottom:899.946203pt;}
.y5_c02477{bottom:915.946715pt;}
.y2_c02477{bottom:945.386939pt;}
.y4_c02477{bottom:959.786555pt;}
.y1_c02477{bottom:975.787067pt;}
.y11_c02477{bottom:1008.747067pt;}
.h3_c02477{height:28.916250pt;}
.h1_c02477{height:37.063125pt;}
.h2_c02477{height:37.166250pt;}
.h4_c02477{height:48.581988pt;}
.h0_c02477{height:1122.666667pt;}
.w1_c02477{width:793.333333pt;}
.w0_c02477{width:793.626667pt;}
.x0_c02477{left:0.000000pt;}
.xe_c02477{left:104.000000pt;}
.x8_c02477{left:391.999872pt;}
.x4_c02477{left:396.160512pt;}
.xc_c02477{left:400.960000pt;}
.x7_c02477{left:404.799648pt;}
.x5_c02477{left:410.560128pt;}
.x1_c02477{left:411.840000pt;}
.xb_c02477{left:429.759264pt;}
.x9_c02477{left:437.439552pt;}
.x6_c02477{left:438.400512pt;}
.xd_c02477{left:450.560320pt;}
.x3_c02477{left:455.039904pt;}
.x2_c02477{left:468.159648pt;}
.xa_c02477{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02478 {
    display:none;
  }
  .loading-indicator_c02478.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02478 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02478 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02478" -> "#page-container .classname_c02478")
 */
.pf_c02478 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02478 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02478.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02478 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02478 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02478 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02478 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02478 {overflow:visible;}
  }
}
.c_c02478 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02478 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02478:after { /* webkit #35443 */
  content: '';
}
.t_c02478:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02478 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02478 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02478 { /* info for Javascript */
  display:none;
}
.l_c02478 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02478 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02478 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02478:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02478 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02478.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02478.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02478 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02478{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02478;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02478{font-family:ff1_c02478;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02478;src:url('chunks/assets/font_05594a6c3671cbd3e6e36bb1.woff2')format("woff");}.ff2_c02478{font-family:ff2_c02478;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02478;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02478{font-family:ff3_c02478;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02478{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02478{vertical-align:0.000000px;}
.v1_c02478{vertical-align:1.439424px;}
.ls14_c02478{letter-spacing:-0.793584px;}
.ls15_c02478{letter-spacing:-0.736560px;}
.ls7_c02478{letter-spacing:-0.679536px;}
.ls9_c02478{letter-spacing:-0.574992px;}
.lsd_c02478{letter-spacing:-0.323136px;}
.ls10_c02478{letter-spacing:-0.275616px;}
.ls16_c02478{letter-spacing:-0.270864px;}
.lse_c02478{letter-spacing:-0.261360px;}
.ls6_c02478{letter-spacing:-0.242352px;}
.ls4_c02478{letter-spacing:-0.118800px;}
.ls13_c02478{letter-spacing:0.000000px;}
.ls1_c02478{letter-spacing:0.006048px;}
.lsc_c02478{letter-spacing:0.052272px;}
.ls5_c02478{letter-spacing:0.128304px;}
.lsb_c02478{letter-spacing:0.508464px;}
.ls12_c02478{letter-spacing:0.514080px;}
.lsf_c02478{letter-spacing:0.536976px;}
.lsa_c02478{letter-spacing:0.579744px;}
.ls11_c02478{letter-spacing:0.594000px;}
.ls8_c02478{letter-spacing:0.598752px;}
.ls3_c02478{letter-spacing:0.613008px;}
.ls0_c02478{letter-spacing:0.717552px;}
.ls2_c02478{letter-spacing:0.722304px;}
.sc__c02478{text-shadow:none;}
.sc0_c02478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02478{-webkit-text-stroke:0px transparent;}
.sc0_c02478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02478{word-spacing:-15.126048px;}
.wse_c02478{word-spacing:-12.602304px;}
.wsb_c02478{word-spacing:-12.474000px;}
.wsf_c02478{word-spacing:-12.459744px;}
.wsa_c02478{word-spacing:-12.416976px;}
.ws4_c02478{word-spacing:-11.637648px;}
.ws2_c02478{word-spacing:-11.200464px;}
.ws1a_c02478{word-spacing:-2.159136px;}
.ws16_c02478{word-spacing:-1.083456px;}
.ws15_c02478{word-spacing:-1.078704px;}
.ws12_c02478{word-spacing:-0.974160px;}
.ws14_c02478{word-spacing:-0.118800px;}
.ws18_c02478{word-spacing:-0.099792px;}
.ws1c_c02478{word-spacing:-0.090288px;}
.ws19_c02478{word-spacing:-0.085536px;}
.ws17_c02478{word-spacing:-0.038016px;}
.ws13_c02478{word-spacing:0.000000px;}
.ws1b_c02478{word-spacing:0.432432px;}
.ws11_c02478{word-spacing:6.629040px;}
.ws8_c02478{word-spacing:7.455888px;}
.wsc_c02478{word-spacing:33.300288px;}
.ws10_c02478{word-spacing:34.836912px;}
.ws9_c02478{word-spacing:36.143712px;}
.ws6_c02478{word-spacing:36.742464px;}
.ws1_c02478{word-spacing:37.759392px;}
.ws0_c02478{word-spacing:38.020752px;}
.ws3_c02478{word-spacing:39.218256px;}
.ws5_c02478{word-spacing:39.902544px;}
.ws7_c02478{word-spacing:42.026688px;}
._0_c02478{margin-left:-1.948320px;}
._2_c02478{width:1.482624px;}
._4_c02478{width:5.730912px;}
._7_c02478{width:20.348064px;}
._6_c02478{width:21.887712px;}
._5_c02478{width:24.325488px;}
._8_c02478{width:25.679808px;}
._1_c02478{width:50.252400px;}
._3_c02478{width:51.530688px;}
.fc0_c02478{color:rgb(0,0,0);}
.fs0_c02478{font-size:47.520000px;}
.fs1_c02478{font-size:60.480000px;}
.y0_c02478{bottom:0.000000px;}
.y1b_c02478{bottom:131.878686px;}
.y1a_c02478{bottom:146.998362px;}
.y1d_c02478{bottom:186.600234px;}
.y1c_c02478{bottom:196.320450px;}
.y19_c02478{bottom:275.878542px;}
.y18_c02478{bottom:356.878758px;}
.y16_c02478{bottom:406.559730px;}
.y12_c02478{bottom:424.560306px;}
.y17_c02478{bottom:458.759262px;}
.y15_c02478{bottom:491.879514px;}
.y14_c02478{bottom:509.880090px;}
.y11_c02478{bottom:543.000342px;}
.y13_c02478{bottom:559.559874px;}
.y10_c02478{bottom:577.560450px;}
.y1e_c02478{bottom:614.280450px;}
.yc_c02478{bottom:667.559514px;}
.ye_c02478{bottom:707.160234px;}
.yd_c02478{bottom:716.880450px;}
.yb_c02478{bottom:796.439694px;}
.ya_c02478{bottom:877.439910px;}
.y7_c02478{bottom:926.759730px;}
.y3_c02478{bottom:944.760306px;}
.y9_c02478{bottom:964.559514px;}
.y8_c02478{bottom:979.319226px;}
.y6_c02478{bottom:1012.439478px;}
.y5_c02478{bottom:1030.440054px;}
.y2_c02478{bottom:1063.560306px;}
.y4_c02478{bottom:1079.759874px;}
.y1_c02478{bottom:1097.760450px;}
.yf_c02478{bottom:1134.840450px;}
.h3_c02478{height:32.530781px;}
.h1_c02478{height:41.696016px;}
.h2_c02478{height:41.812031px;}
.h4_c02478{height:54.654737px;}
.h0_c02478{height:1263.000000px;}
.w1_c02478{width:892.500000px;}
.w0_c02478{width:892.830000px;}
.x0_c02478{left:0.000000px;}
.xe_c02478{left:117.000000px;}
.x8_c02478{left:440.999856px;}
.x4_c02478{left:445.680576px;}
.xc_c02478{left:451.080000px;}
.x7_c02478{left:455.399604px;}
.x5_c02478{left:461.880144px;}
.x1_c02478{left:463.320000px;}
.xb_c02478{left:483.480360px;}
.xa_c02478{left:492.119496px;}
.x6_c02478{left:493.200576px;}
.xd_c02478{left:506.880360px;}
.x3_c02478{left:511.919892px;}
.x2_c02478{left:526.679604px;}
.x9_c02478{left:569.880036px;}
@media print{
.v0_c02478{vertical-align:0.000000pt;}
.v1_c02478{vertical-align:1.279488pt;}
.ls14_c02478{letter-spacing:-0.705408pt;}
.ls15_c02478{letter-spacing:-0.654720pt;}
.ls7_c02478{letter-spacing:-0.604032pt;}
.ls9_c02478{letter-spacing:-0.511104pt;}
.lsd_c02478{letter-spacing:-0.287232pt;}
.ls10_c02478{letter-spacing:-0.244992pt;}
.ls16_c02478{letter-spacing:-0.240768pt;}
.lse_c02478{letter-spacing:-0.232320pt;}
.ls6_c02478{letter-spacing:-0.215424pt;}
.ls4_c02478{letter-spacing:-0.105600pt;}
.ls13_c02478{letter-spacing:0.000000pt;}
.ls1_c02478{letter-spacing:0.005376pt;}
.lsc_c02478{letter-spacing:0.046464pt;}
.ls5_c02478{letter-spacing:0.114048pt;}
.lsb_c02478{letter-spacing:0.451968pt;}
.ls12_c02478{letter-spacing:0.456960pt;}
.lsf_c02478{letter-spacing:0.477312pt;}
.lsa_c02478{letter-spacing:0.515328pt;}
.ls11_c02478{letter-spacing:0.528000pt;}
.ls8_c02478{letter-spacing:0.532224pt;}
.ls3_c02478{letter-spacing:0.544896pt;}
.ls0_c02478{letter-spacing:0.637824pt;}
.ls2_c02478{letter-spacing:0.642048pt;}
.wsd_c02478{word-spacing:-13.445376pt;}
.wse_c02478{word-spacing:-11.202048pt;}
.wsb_c02478{word-spacing:-11.088000pt;}
.wsf_c02478{word-spacing:-11.075328pt;}
.wsa_c02478{word-spacing:-11.037312pt;}
.ws4_c02478{word-spacing:-10.344576pt;}
.ws2_c02478{word-spacing:-9.955968pt;}
.ws1a_c02478{word-spacing:-1.919232pt;}
.ws16_c02478{word-spacing:-0.963072pt;}
.ws15_c02478{word-spacing:-0.958848pt;}
.ws12_c02478{word-spacing:-0.865920pt;}
.ws14_c02478{word-spacing:-0.105600pt;}
.ws18_c02478{word-spacing:-0.088704pt;}
.ws1c_c02478{word-spacing:-0.080256pt;}
.ws19_c02478{word-spacing:-0.076032pt;}
.ws17_c02478{word-spacing:-0.033792pt;}
.ws13_c02478{word-spacing:0.000000pt;}
.ws1b_c02478{word-spacing:0.384384pt;}
.ws11_c02478{word-spacing:5.892480pt;}
.ws8_c02478{word-spacing:6.627456pt;}
.wsc_c02478{word-spacing:29.600256pt;}
.ws10_c02478{word-spacing:30.966144pt;}
.ws9_c02478{word-spacing:32.127744pt;}
.ws6_c02478{word-spacing:32.659968pt;}
.ws1_c02478{word-spacing:33.563904pt;}
.ws0_c02478{word-spacing:33.796224pt;}
.ws3_c02478{word-spacing:34.860672pt;}
.ws5_c02478{word-spacing:35.468928pt;}
.ws7_c02478{word-spacing:37.357056pt;}
._0_c02478{margin-left:-1.731840pt;}
._2_c02478{width:1.317888pt;}
._4_c02478{width:5.094144pt;}
._7_c02478{width:18.087168pt;}
._6_c02478{width:19.455744pt;}
._5_c02478{width:21.622656pt;}
._8_c02478{width:22.826496pt;}
._1_c02478{width:44.668800pt;}
._3_c02478{width:45.805056pt;}
.fs0_c02478{font-size:42.240000pt;}
.fs1_c02478{font-size:53.760000pt;}
.y0_c02478{bottom:0.000000pt;}
.y1b_c02478{bottom:117.225499pt;}
.y1a_c02478{bottom:130.665211pt;}
.y1d_c02478{bottom:165.866875pt;}
.y1c_c02478{bottom:174.507067pt;}
.y19_c02478{bottom:245.225371pt;}
.y18_c02478{bottom:317.225563pt;}
.y16_c02478{bottom:361.386427pt;}
.y12_c02478{bottom:377.386939pt;}
.y17_c02478{bottom:407.786011pt;}
.y15_c02478{bottom:437.226235pt;}
.y14_c02478{bottom:453.226747pt;}
.y11_c02478{bottom:482.666971pt;}
.y13_c02478{bottom:497.386555pt;}
.y10_c02478{bottom:513.387067pt;}
.y1e_c02478{bottom:546.027067pt;}
.yc_c02478{bottom:593.386235pt;}
.ye_c02478{bottom:628.586875pt;}
.yd_c02478{bottom:637.227067pt;}
.yb_c02478{bottom:707.946395pt;}
.ya_c02478{bottom:779.946587pt;}
.y7_c02478{bottom:823.786427pt;}
.y3_c02478{bottom:839.786939pt;}
.y9_c02478{bottom:857.386235pt;}
.y8_c02478{bottom:870.505979pt;}
.y6_c02478{bottom:899.946203pt;}
.y5_c02478{bottom:915.946715pt;}
.y2_c02478{bottom:945.386939pt;}
.y4_c02478{bottom:959.786555pt;}
.y1_c02478{bottom:975.787067pt;}
.yf_c02478{bottom:1008.747067pt;}
.h3_c02478{height:28.916250pt;}
.h1_c02478{height:37.063125pt;}
.h2_c02478{height:37.166250pt;}
.h4_c02478{height:48.581988pt;}
.h0_c02478{height:1122.666667pt;}
.w1_c02478{width:793.333333pt;}
.w0_c02478{width:793.626667pt;}
.x0_c02478{left:0.000000pt;}
.xe_c02478{left:104.000000pt;}
.x8_c02478{left:391.999872pt;}
.x4_c02478{left:396.160512pt;}
.xc_c02478{left:400.960000pt;}
.x7_c02478{left:404.799648pt;}
.x5_c02478{left:410.560128pt;}
.x1_c02478{left:411.840000pt;}
.xb_c02478{left:429.760320pt;}
.xa_c02478{left:437.439552pt;}
.x6_c02478{left:438.400512pt;}
.xd_c02478{left:450.560320pt;}
.x3_c02478{left:455.039904pt;}
.x2_c02478{left:468.159648pt;}
.x9_c02478{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02479 {
    display:none;
  }
  .loading-indicator_c02479.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02479 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02479 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02479" -> "#page-container .classname_c02479")
 */
.pf_c02479 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02479 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02479.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02479 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02479 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02479 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02479 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02479 {overflow:visible;}
  }
}
.c_c02479 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02479 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02479:after { /* webkit #35443 */
  content: '';
}
.t_c02479:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02479 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02479 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02479 { /* info for Javascript */
  display:none;
}
.l_c02479 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02479 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02479 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02479:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02479 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02479.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02479.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02479 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02479{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02479;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02479{font-family:ff1_c02479;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02479;src:url('chunks/assets/font_706c4e79e2c8485ca3750ea6.woff2')format("woff");}.ff2_c02479{font-family:ff2_c02479;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02479;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02479{font-family:ff3_c02479;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02479{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02479{vertical-align:0.000000px;}
.v1_c02479{vertical-align:1.439424px;}
.v2_c02479{vertical-align:33.121440px;}
.lsd_c02479{letter-spacing:-0.807840px;}
.lsc_c02479{letter-spacing:-0.793584px;}
.ls10_c02479{letter-spacing:-0.736560px;}
.ls15_c02479{letter-spacing:-0.722304px;}
.ls7_c02479{letter-spacing:-0.679536px;}
.ls9_c02479{letter-spacing:-0.574992px;}
.ls1a_c02479{letter-spacing:-0.389664px;}
.ls18_c02479{letter-spacing:-0.375408px;}
.ls19_c02479{letter-spacing:-0.275616px;}
.ls11_c02479{letter-spacing:-0.270864px;}
.lse_c02479{letter-spacing:-0.261360px;}
.ls6_c02479{letter-spacing:-0.242352px;}
.ls4_c02479{letter-spacing:-0.118800px;}
.ls14_c02479{letter-spacing:0.000000px;}
.ls2_c02479{letter-spacing:0.006048px;}
.ls16_c02479{letter-spacing:0.014256px;}
.ls5_c02479{letter-spacing:0.128304px;}
.lsb_c02479{letter-spacing:0.508464px;}
.ls13_c02479{letter-spacing:0.514080px;}
.lsf_c02479{letter-spacing:0.536976px;}
.lsa_c02479{letter-spacing:0.579744px;}
.ls12_c02479{letter-spacing:0.594000px;}
.ls8_c02479{letter-spacing:0.598752px;}
.ls3_c02479{letter-spacing:0.613008px;}
.ls17_c02479{letter-spacing:0.651024px;}
.ls1_c02479{letter-spacing:0.717552px;}
.ls0_c02479{letter-spacing:0.722304px;}
.sc__c02479{text-shadow:none;}
.sc0_c02479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02479{-webkit-text-stroke:0px transparent;}
.sc0_c02479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c02479{word-spacing:-15.126048px;}
.ws2_c02479{word-spacing:-12.602304px;}
.wsd_c02479{word-spacing:-12.474000px;}
.ws7_c02479{word-spacing:-12.459744px;}
.ws12_c02479{word-spacing:-12.416976px;}
.ws5_c02479{word-spacing:-11.637648px;}
.ws3_c02479{word-spacing:-11.200464px;}
.ws1d_c02479{word-spacing:-2.159136px;}
.ws17_c02479{word-spacing:-1.078704px;}
.ws20_c02479{word-spacing:-1.012176px;}
.ws14_c02479{word-spacing:-0.974160px;}
.ws1f_c02479{word-spacing:-0.375408px;}
.ws16_c02479{word-spacing:-0.118800px;}
.ws1a_c02479{word-spacing:-0.099792px;}
.ws1b_c02479{word-spacing:-0.090288px;}
.ws1c_c02479{word-spacing:-0.085536px;}
.ws15_c02479{word-spacing:0.000000px;}
.ws21_c02479{word-spacing:0.014256px;}
.ws22_c02479{word-spacing:0.028512px;}
.ws1e_c02479{word-spacing:0.361152px;}
.ws18_c02479{word-spacing:0.432432px;}
.ws19_c02479{word-spacing:0.446688px;}
.wsa_c02479{word-spacing:3.236112px;}
.wsc_c02479{word-spacing:6.629040px;}
.ws11_c02479{word-spacing:22.923648px;}
.ws13_c02479{word-spacing:30.298752px;}
.wse_c02479{word-spacing:33.300288px;}
.wsb_c02479{word-spacing:34.836912px;}
.ws9_c02479{word-spacing:36.143712px;}
.ws10_c02479{word-spacing:36.742464px;}
.ws1_c02479{word-spacing:37.759392px;}
.ws0_c02479{word-spacing:38.020752px;}
.ws4_c02479{word-spacing:39.218256px;}
.ws6_c02479{word-spacing:39.902544px;}
.ws8_c02479{word-spacing:42.026688px;}
._0_c02479{margin-left:-1.948320px;}
._2_c02479{width:1.482624px;}
._9_c02479{width:2.504304px;}
._4_c02479{width:5.730912px;}
._6_c02479{width:17.111952px;}
._5_c02479{width:18.314208px;}
._8_c02479{width:19.445184px;}
._7_c02479{width:21.407760px;}
._a_c02479{width:24.691392px;}
._b_c02479{width:25.850880px;}
._d_c02479{width:38.016000px;}
._c_c02479{width:41.698800px;}
._1_c02479{width:50.252400px;}
._3_c02479{width:51.530688px;}
.fc0_c02479{color:rgb(0,0,0);}
.fs0_c02479{font-size:47.520000px;}
.fs1_c02479{font-size:60.480000px;}
.y0_c02479{bottom:0.000000px;}
.y1c_c02479{bottom:146.998362px;}
.y1e_c02479{bottom:186.600234px;}
.y1d_c02479{bottom:196.320450px;}
.y1b_c02479{bottom:275.878542px;}
.y1a_c02479{bottom:341.759082px;}
.y19_c02479{bottom:356.878758px;}
.y17_c02479{bottom:406.559730px;}
.y13_c02479{bottom:424.560306px;}
.y18_c02479{bottom:458.759262px;}
.y16_c02479{bottom:491.879514px;}
.y15_c02479{bottom:509.880090px;}
.y12_c02479{bottom:543.000342px;}
.y14_c02479{bottom:559.559874px;}
.y11_c02479{bottom:577.560450px;}
.y1f_c02479{bottom:614.280450px;}
.yd_c02479{bottom:652.439838px;}
.yc_c02479{bottom:667.559514px;}
.yf_c02479{bottom:707.160234px;}
.ye_c02479{bottom:716.880450px;}
.yb_c02479{bottom:796.439694px;}
.ya_c02479{bottom:862.319046px;}
.y9_c02479{bottom:877.438722px;}
.y7_c02479{bottom:926.759730px;}
.y3_c02479{bottom:944.760306px;}
.y8_c02479{bottom:979.319226px;}
.y6_c02479{bottom:1012.439478px;}
.y5_c02479{bottom:1030.440054px;}
.y2_c02479{bottom:1063.560306px;}
.y4_c02479{bottom:1079.759874px;}
.y1_c02479{bottom:1097.760450px;}
.y10_c02479{bottom:1134.840450px;}
.h3_c02479{height:32.530781px;}
.h1_c02479{height:41.696016px;}
.h2_c02479{height:41.812031px;}
.h4_c02479{height:54.654737px;}
.h5_c02479{height:74.817456px;}
.h0_c02479{height:1263.000000px;}
.w1_c02479{width:892.500000px;}
.w0_c02479{width:892.830000px;}
.x0_c02479{left:0.000000px;}
.xe_c02479{left:117.000000px;}
.x8_c02479{left:440.999856px;}
.x4_c02479{left:445.680576px;}
.xc_c02479{left:451.080000px;}
.x7_c02479{left:455.399604px;}
.x5_c02479{left:461.880144px;}
.x1_c02479{left:463.320000px;}
.xb_c02479{left:483.480360px;}
.x9_c02479{left:492.119496px;}
.x6_c02479{left:493.200576px;}
.xd_c02479{left:506.880360px;}
.x3_c02479{left:511.919892px;}
.x2_c02479{left:526.679604px;}
.xa_c02479{left:569.880036px;}
@media print{
.v0_c02479{vertical-align:0.000000pt;}
.v1_c02479{vertical-align:1.279488pt;}
.v2_c02479{vertical-align:29.441280pt;}
.lsd_c02479{letter-spacing:-0.718080pt;}
.lsc_c02479{letter-spacing:-0.705408pt;}
.ls10_c02479{letter-spacing:-0.654720pt;}
.ls15_c02479{letter-spacing:-0.642048pt;}
.ls7_c02479{letter-spacing:-0.604032pt;}
.ls9_c02479{letter-spacing:-0.511104pt;}
.ls1a_c02479{letter-spacing:-0.346368pt;}
.ls18_c02479{letter-spacing:-0.333696pt;}
.ls19_c02479{letter-spacing:-0.244992pt;}
.ls11_c02479{letter-spacing:-0.240768pt;}
.lse_c02479{letter-spacing:-0.232320pt;}
.ls6_c02479{letter-spacing:-0.215424pt;}
.ls4_c02479{letter-spacing:-0.105600pt;}
.ls14_c02479{letter-spacing:0.000000pt;}
.ls2_c02479{letter-spacing:0.005376pt;}
.ls16_c02479{letter-spacing:0.012672pt;}
.ls5_c02479{letter-spacing:0.114048pt;}
.lsb_c02479{letter-spacing:0.451968pt;}
.ls13_c02479{letter-spacing:0.456960pt;}
.lsf_c02479{letter-spacing:0.477312pt;}
.lsa_c02479{letter-spacing:0.515328pt;}
.ls12_c02479{letter-spacing:0.528000pt;}
.ls8_c02479{letter-spacing:0.532224pt;}
.ls3_c02479{letter-spacing:0.544896pt;}
.ls17_c02479{letter-spacing:0.578688pt;}
.ls1_c02479{letter-spacing:0.637824pt;}
.ls0_c02479{letter-spacing:0.642048pt;}
.wsf_c02479{word-spacing:-13.445376pt;}
.ws2_c02479{word-spacing:-11.202048pt;}
.wsd_c02479{word-spacing:-11.088000pt;}
.ws7_c02479{word-spacing:-11.075328pt;}
.ws12_c02479{word-spacing:-11.037312pt;}
.ws5_c02479{word-spacing:-10.344576pt;}
.ws3_c02479{word-spacing:-9.955968pt;}
.ws1d_c02479{word-spacing:-1.919232pt;}
.ws17_c02479{word-spacing:-0.958848pt;}
.ws20_c02479{word-spacing:-0.899712pt;}
.ws14_c02479{word-spacing:-0.865920pt;}
.ws1f_c02479{word-spacing:-0.333696pt;}
.ws16_c02479{word-spacing:-0.105600pt;}
.ws1a_c02479{word-spacing:-0.088704pt;}
.ws1b_c02479{word-spacing:-0.080256pt;}
.ws1c_c02479{word-spacing:-0.076032pt;}
.ws15_c02479{word-spacing:0.000000pt;}
.ws21_c02479{word-spacing:0.012672pt;}
.ws22_c02479{word-spacing:0.025344pt;}
.ws1e_c02479{word-spacing:0.321024pt;}
.ws18_c02479{word-spacing:0.384384pt;}
.ws19_c02479{word-spacing:0.397056pt;}
.wsa_c02479{word-spacing:2.876544pt;}
.wsc_c02479{word-spacing:5.892480pt;}
.ws11_c02479{word-spacing:20.376576pt;}
.ws13_c02479{word-spacing:26.932224pt;}
.wse_c02479{word-spacing:29.600256pt;}
.wsb_c02479{word-spacing:30.966144pt;}
.ws9_c02479{word-spacing:32.127744pt;}
.ws10_c02479{word-spacing:32.659968pt;}
.ws1_c02479{word-spacing:33.563904pt;}
.ws0_c02479{word-spacing:33.796224pt;}
.ws4_c02479{word-spacing:34.860672pt;}
.ws6_c02479{word-spacing:35.468928pt;}
.ws8_c02479{word-spacing:37.357056pt;}
._0_c02479{margin-left:-1.731840pt;}
._2_c02479{width:1.317888pt;}
._9_c02479{width:2.226048pt;}
._4_c02479{width:5.094144pt;}
._6_c02479{width:15.210624pt;}
._5_c02479{width:16.279296pt;}
._8_c02479{width:17.284608pt;}
._7_c02479{width:19.029120pt;}
._a_c02479{width:21.947904pt;}
._b_c02479{width:22.978560pt;}
._d_c02479{width:33.792000pt;}
._c_c02479{width:37.065600pt;}
._1_c02479{width:44.668800pt;}
._3_c02479{width:45.805056pt;}
.fs0_c02479{font-size:42.240000pt;}
.fs1_c02479{font-size:53.760000pt;}
.y0_c02479{bottom:0.000000pt;}
.y1c_c02479{bottom:130.665211pt;}
.y1e_c02479{bottom:165.866875pt;}
.y1d_c02479{bottom:174.507067pt;}
.y1b_c02479{bottom:245.225371pt;}
.y1a_c02479{bottom:303.785851pt;}
.y19_c02479{bottom:317.225563pt;}
.y17_c02479{bottom:361.386427pt;}
.y13_c02479{bottom:377.386939pt;}
.y18_c02479{bottom:407.786011pt;}
.y16_c02479{bottom:437.226235pt;}
.y15_c02479{bottom:453.226747pt;}
.y12_c02479{bottom:482.666971pt;}
.y14_c02479{bottom:497.386555pt;}
.y11_c02479{bottom:513.387067pt;}
.y1f_c02479{bottom:546.027067pt;}
.yd_c02479{bottom:579.946523pt;}
.yc_c02479{bottom:593.386235pt;}
.yf_c02479{bottom:628.586875pt;}
.ye_c02479{bottom:637.227067pt;}
.yb_c02479{bottom:707.946395pt;}
.ya_c02479{bottom:766.505819pt;}
.y9_c02479{bottom:779.945531pt;}
.y7_c02479{bottom:823.786427pt;}
.y3_c02479{bottom:839.786939pt;}
.y8_c02479{bottom:870.505979pt;}
.y6_c02479{bottom:899.946203pt;}
.y5_c02479{bottom:915.946715pt;}
.y2_c02479{bottom:945.386939pt;}
.y4_c02479{bottom:959.786555pt;}
.y1_c02479{bottom:975.787067pt;}
.y10_c02479{bottom:1008.747067pt;}
.h3_c02479{height:28.916250pt;}
.h1_c02479{height:37.063125pt;}
.h2_c02479{height:37.166250pt;}
.h4_c02479{height:48.581988pt;}
.h5_c02479{height:66.504405pt;}
.h0_c02479{height:1122.666667pt;}
.w1_c02479{width:793.333333pt;}
.w0_c02479{width:793.626667pt;}
.x0_c02479{left:0.000000pt;}
.xe_c02479{left:104.000000pt;}
.x8_c02479{left:391.999872pt;}
.x4_c02479{left:396.160512pt;}
.xc_c02479{left:400.960000pt;}
.x7_c02479{left:404.799648pt;}
.x5_c02479{left:410.560128pt;}
.x1_c02479{left:411.840000pt;}
.xb_c02479{left:429.760320pt;}
.x9_c02479{left:437.439552pt;}
.x6_c02479{left:438.400512pt;}
.xd_c02479{left:450.560320pt;}
.x3_c02479{left:455.039904pt;}
.x2_c02479{left:468.159648pt;}
.xa_c02479{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02480 {
    display:none;
  }
  .loading-indicator_c02480.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02480 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02480 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02480" -> "#page-container .classname_c02480")
 */
.pf_c02480 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02480 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02480.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02480 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02480 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02480 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02480 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02480 {overflow:visible;}
  }
}
.c_c02480 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02480 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02480:after { /* webkit #35443 */
  content: '';
}
.t_c02480:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02480 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02480 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02480 { /* info for Javascript */
  display:none;
}
.l_c02480 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02480 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02480 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02480:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02480 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02480.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02480.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02480 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02480{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02480;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02480{font-family:ff1_c02480;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02480;src:url('chunks/assets/font_8d899030356d1863b967c164.woff2')format("woff");}.ff2_c02480{font-family:ff2_c02480;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02480;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02480{font-family:ff3_c02480;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02480{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02480{vertical-align:0.000000px;}
.v1_c02480{vertical-align:1.439424px;}
.ls16_c02480{letter-spacing:-0.793584px;}
.ls18_c02480{letter-spacing:-0.736560px;}
.lsb_c02480{letter-spacing:-0.722304px;}
.ls7_c02480{letter-spacing:-0.679536px;}
.ls9_c02480{letter-spacing:-0.574992px;}
.ls10_c02480{letter-spacing:-0.375408px;}
.ls17_c02480{letter-spacing:-0.323136px;}
.ls12_c02480{letter-spacing:-0.275616px;}
.ls19_c02480{letter-spacing:-0.270864px;}
.lsf_c02480{letter-spacing:-0.261360px;}
.ls6_c02480{letter-spacing:-0.242352px;}
.ls4_c02480{letter-spacing:-0.118800px;}
.ls15_c02480{letter-spacing:0.000000px;}
.ls2_c02480{letter-spacing:0.006048px;}
.lsd_c02480{letter-spacing:0.014256px;}
.ls5_c02480{letter-spacing:0.128304px;}
.lsc_c02480{letter-spacing:0.508464px;}
.ls14_c02480{letter-spacing:0.514080px;}
.ls11_c02480{letter-spacing:0.536976px;}
.lsa_c02480{letter-spacing:0.579744px;}
.ls13_c02480{letter-spacing:0.594000px;}
.ls8_c02480{letter-spacing:0.598752px;}
.ls3_c02480{letter-spacing:0.613008px;}
.lse_c02480{letter-spacing:0.651024px;}
.ls1_c02480{letter-spacing:0.717552px;}
.ls0_c02480{letter-spacing:0.722304px;}
.sc__c02480{text-shadow:none;}
.sc0_c02480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02480{-webkit-text-stroke:0px transparent;}
.sc0_c02480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02480{word-spacing:-15.126048px;}
.ws2_c02480{word-spacing:-12.602304px;}
.wsc_c02480{word-spacing:-12.474000px;}
.wsf_c02480{word-spacing:-12.459744px;}
.wsb_c02480{word-spacing:-12.416976px;}
.ws5_c02480{word-spacing:-11.637648px;}
.ws3_c02480{word-spacing:-11.200464px;}
.ws1c_c02480{word-spacing:-2.159136px;}
.ws15_c02480{word-spacing:-1.078704px;}
.ws18_c02480{word-spacing:-1.012176px;}
.ws12_c02480{word-spacing:-0.974160px;}
.ws17_c02480{word-spacing:-0.375408px;}
.ws14_c02480{word-spacing:-0.118800px;}
.ws19_c02480{word-spacing:-0.099792px;}
.ws1f_c02480{word-spacing:-0.090288px;}
.ws1b_c02480{word-spacing:-0.085536px;}
.ws1e_c02480{word-spacing:-0.038016px;}
.ws13_c02480{word-spacing:0.000000px;}
.ws1a_c02480{word-spacing:0.014256px;}
.ws16_c02480{word-spacing:0.361152px;}
.ws1d_c02480{word-spacing:0.432432px;}
.ws11_c02480{word-spacing:6.629040px;}
.wsa_c02480{word-spacing:22.923648px;}
.wsd_c02480{word-spacing:33.300288px;}
.ws10_c02480{word-spacing:34.836912px;}
.ws9_c02480{word-spacing:36.143712px;}
.ws7_c02480{word-spacing:36.742464px;}
.ws1_c02480{word-spacing:37.759392px;}
.ws0_c02480{word-spacing:38.020752px;}
.ws4_c02480{word-spacing:39.218256px;}
.ws6_c02480{word-spacing:39.902544px;}
.ws8_c02480{word-spacing:42.026688px;}
._0_c02480{margin-left:-1.948320px;}
._2_c02480{width:1.482624px;}
._4_c02480{width:5.730912px;}
._8_c02480{width:19.982160px;}
._9_c02480{width:23.451120px;}
._7_c02480{width:24.691392px;}
._6_c02480{width:38.016000px;}
._5_c02480{width:41.698800px;}
._1_c02480{width:50.252400px;}
._3_c02480{width:51.530688px;}
.fc0_c02480{color:rgb(0,0,0);}
.fs0_c02480{font-size:47.520000px;}
.fs1_c02480{font-size:60.480000px;}
.y0_c02480{bottom:0.000000px;}
.y1b_c02480{bottom:131.878686px;}
.y1a_c02480{bottom:146.998362px;}
.y1d_c02480{bottom:186.600234px;}
.y1c_c02480{bottom:196.320450px;}
.y19_c02480{bottom:275.878542px;}
.y18_c02480{bottom:356.878758px;}
.y16_c02480{bottom:406.559730px;}
.y12_c02480{bottom:424.560306px;}
.y17_c02480{bottom:458.759262px;}
.y15_c02480{bottom:491.879514px;}
.y14_c02480{bottom:509.880090px;}
.y11_c02480{bottom:543.000342px;}
.y13_c02480{bottom:559.559874px;}
.y10_c02480{bottom:577.560450px;}
.y1e_c02480{bottom:614.280450px;}
.yc_c02480{bottom:667.559514px;}
.ye_c02480{bottom:707.160234px;}
.yd_c02480{bottom:716.880450px;}
.yb_c02480{bottom:796.439694px;}
.ya_c02480{bottom:862.319046px;}
.y9_c02480{bottom:877.438722px;}
.y7_c02480{bottom:926.759730px;}
.y3_c02480{bottom:944.760306px;}
.y8_c02480{bottom:979.319226px;}
.y6_c02480{bottom:1012.439478px;}
.y5_c02480{bottom:1030.440054px;}
.y2_c02480{bottom:1063.560306px;}
.y4_c02480{bottom:1079.759874px;}
.y1_c02480{bottom:1097.760450px;}
.yf_c02480{bottom:1134.840450px;}
.h3_c02480{height:32.530781px;}
.h1_c02480{height:41.696016px;}
.h2_c02480{height:41.812031px;}
.h4_c02480{height:54.654737px;}
.h0_c02480{height:1263.000000px;}
.w1_c02480{width:892.500000px;}
.w0_c02480{width:892.830000px;}
.x0_c02480{left:0.000000px;}
.xe_c02480{left:117.000000px;}
.x8_c02480{left:440.999856px;}
.x4_c02480{left:445.680576px;}
.xc_c02480{left:451.080000px;}
.x7_c02480{left:455.399604px;}
.x5_c02480{left:461.880144px;}
.x1_c02480{left:463.320000px;}
.xb_c02480{left:483.480360px;}
.x9_c02480{left:492.119496px;}
.x6_c02480{left:493.200576px;}
.xd_c02480{left:506.880360px;}
.x3_c02480{left:511.919892px;}
.x2_c02480{left:526.679604px;}
.xa_c02480{left:569.880036px;}
@media print{
.v0_c02480{vertical-align:0.000000pt;}
.v1_c02480{vertical-align:1.279488pt;}
.ls16_c02480{letter-spacing:-0.705408pt;}
.ls18_c02480{letter-spacing:-0.654720pt;}
.lsb_c02480{letter-spacing:-0.642048pt;}
.ls7_c02480{letter-spacing:-0.604032pt;}
.ls9_c02480{letter-spacing:-0.511104pt;}
.ls10_c02480{letter-spacing:-0.333696pt;}
.ls17_c02480{letter-spacing:-0.287232pt;}
.ls12_c02480{letter-spacing:-0.244992pt;}
.ls19_c02480{letter-spacing:-0.240768pt;}
.lsf_c02480{letter-spacing:-0.232320pt;}
.ls6_c02480{letter-spacing:-0.215424pt;}
.ls4_c02480{letter-spacing:-0.105600pt;}
.ls15_c02480{letter-spacing:0.000000pt;}
.ls2_c02480{letter-spacing:0.005376pt;}
.lsd_c02480{letter-spacing:0.012672pt;}
.ls5_c02480{letter-spacing:0.114048pt;}
.lsc_c02480{letter-spacing:0.451968pt;}
.ls14_c02480{letter-spacing:0.456960pt;}
.ls11_c02480{letter-spacing:0.477312pt;}
.lsa_c02480{letter-spacing:0.515328pt;}
.ls13_c02480{letter-spacing:0.528000pt;}
.ls8_c02480{letter-spacing:0.532224pt;}
.ls3_c02480{letter-spacing:0.544896pt;}
.lse_c02480{letter-spacing:0.578688pt;}
.ls1_c02480{letter-spacing:0.637824pt;}
.ls0_c02480{letter-spacing:0.642048pt;}
.wse_c02480{word-spacing:-13.445376pt;}
.ws2_c02480{word-spacing:-11.202048pt;}
.wsc_c02480{word-spacing:-11.088000pt;}
.wsf_c02480{word-spacing:-11.075328pt;}
.wsb_c02480{word-spacing:-11.037312pt;}
.ws5_c02480{word-spacing:-10.344576pt;}
.ws3_c02480{word-spacing:-9.955968pt;}
.ws1c_c02480{word-spacing:-1.919232pt;}
.ws15_c02480{word-spacing:-0.958848pt;}
.ws18_c02480{word-spacing:-0.899712pt;}
.ws12_c02480{word-spacing:-0.865920pt;}
.ws17_c02480{word-spacing:-0.333696pt;}
.ws14_c02480{word-spacing:-0.105600pt;}
.ws19_c02480{word-spacing:-0.088704pt;}
.ws1f_c02480{word-spacing:-0.080256pt;}
.ws1b_c02480{word-spacing:-0.076032pt;}
.ws1e_c02480{word-spacing:-0.033792pt;}
.ws13_c02480{word-spacing:0.000000pt;}
.ws1a_c02480{word-spacing:0.012672pt;}
.ws16_c02480{word-spacing:0.321024pt;}
.ws1d_c02480{word-spacing:0.384384pt;}
.ws11_c02480{word-spacing:5.892480pt;}
.wsa_c02480{word-spacing:20.376576pt;}
.wsd_c02480{word-spacing:29.600256pt;}
.ws10_c02480{word-spacing:30.966144pt;}
.ws9_c02480{word-spacing:32.127744pt;}
.ws7_c02480{word-spacing:32.659968pt;}
.ws1_c02480{word-spacing:33.563904pt;}
.ws0_c02480{word-spacing:33.796224pt;}
.ws4_c02480{word-spacing:34.860672pt;}
.ws6_c02480{word-spacing:35.468928pt;}
.ws8_c02480{word-spacing:37.357056pt;}
._0_c02480{margin-left:-1.731840pt;}
._2_c02480{width:1.317888pt;}
._4_c02480{width:5.094144pt;}
._8_c02480{width:17.761920pt;}
._9_c02480{width:20.845440pt;}
._7_c02480{width:21.947904pt;}
._6_c02480{width:33.792000pt;}
._5_c02480{width:37.065600pt;}
._1_c02480{width:44.668800pt;}
._3_c02480{width:45.805056pt;}
.fs0_c02480{font-size:42.240000pt;}
.fs1_c02480{font-size:53.760000pt;}
.y0_c02480{bottom:0.000000pt;}
.y1b_c02480{bottom:117.225499pt;}
.y1a_c02480{bottom:130.665211pt;}
.y1d_c02480{bottom:165.866875pt;}
.y1c_c02480{bottom:174.507067pt;}
.y19_c02480{bottom:245.225371pt;}
.y18_c02480{bottom:317.225563pt;}
.y16_c02480{bottom:361.386427pt;}
.y12_c02480{bottom:377.386939pt;}
.y17_c02480{bottom:407.786011pt;}
.y15_c02480{bottom:437.226235pt;}
.y14_c02480{bottom:453.226747pt;}
.y11_c02480{bottom:482.666971pt;}
.y13_c02480{bottom:497.386555pt;}
.y10_c02480{bottom:513.387067pt;}
.y1e_c02480{bottom:546.027067pt;}
.yc_c02480{bottom:593.386235pt;}
.ye_c02480{bottom:628.586875pt;}
.yd_c02480{bottom:637.227067pt;}
.yb_c02480{bottom:707.946395pt;}
.ya_c02480{bottom:766.505819pt;}
.y9_c02480{bottom:779.945531pt;}
.y7_c02480{bottom:823.786427pt;}
.y3_c02480{bottom:839.786939pt;}
.y8_c02480{bottom:870.505979pt;}
.y6_c02480{bottom:899.946203pt;}
.y5_c02480{bottom:915.946715pt;}
.y2_c02480{bottom:945.386939pt;}
.y4_c02480{bottom:959.786555pt;}
.y1_c02480{bottom:975.787067pt;}
.yf_c02480{bottom:1008.747067pt;}
.h3_c02480{height:28.916250pt;}
.h1_c02480{height:37.063125pt;}
.h2_c02480{height:37.166250pt;}
.h4_c02480{height:48.581988pt;}
.h0_c02480{height:1122.666667pt;}
.w1_c02480{width:793.333333pt;}
.w0_c02480{width:793.626667pt;}
.x0_c02480{left:0.000000pt;}
.xe_c02480{left:104.000000pt;}
.x8_c02480{left:391.999872pt;}
.x4_c02480{left:396.160512pt;}
.xc_c02480{left:400.960000pt;}
.x7_c02480{left:404.799648pt;}
.x5_c02480{left:410.560128pt;}
.x1_c02480{left:411.840000pt;}
.xb_c02480{left:429.760320pt;}
.x9_c02480{left:437.439552pt;}
.x6_c02480{left:438.400512pt;}
.xd_c02480{left:450.560320pt;}
.x3_c02480{left:455.039904pt;}
.x2_c02480{left:468.159648pt;}
.xa_c02480{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02481 {
    display:none;
  }
  .loading-indicator_c02481.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02481 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02481 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02481" -> "#page-container .classname_c02481")
 */
.pf_c02481 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02481 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02481.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02481 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02481 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02481 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02481 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02481 {overflow:visible;}
  }
}
.c_c02481 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02481 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02481:after { /* webkit #35443 */
  content: '';
}
.t_c02481:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02481 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02481 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02481 { /* info for Javascript */
  display:none;
}
.l_c02481 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02481 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02481 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02481:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02481 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02481.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02481.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02481 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02481{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02481;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02481{font-family:ff1_c02481;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02481;src:url('chunks/assets/font_406c64e5340692100319ae01.woff2')format("woff");}.ff2_c02481{font-family:ff2_c02481;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02481;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02481{font-family:ff3_c02481;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02481{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02481{vertical-align:0.000000px;}
.v1_c02481{vertical-align:1.439424px;}
.lsd_c02481{letter-spacing:-0.807840px;}
.lsc_c02481{letter-spacing:-0.793584px;}
.ls11_c02481{letter-spacing:-0.736560px;}
.ls7_c02481{letter-spacing:-0.679536px;}
.ls9_c02481{letter-spacing:-0.574992px;}
.lsf_c02481{letter-spacing:-0.337392px;}
.ls16_c02481{letter-spacing:-0.323136px;}
.ls12_c02481{letter-spacing:-0.270864px;}
.lse_c02481{letter-spacing:-0.261360px;}
.ls6_c02481{letter-spacing:-0.242352px;}
.ls4_c02481{letter-spacing:-0.118800px;}
.ls15_c02481{letter-spacing:0.000000px;}
.ls2_c02481{letter-spacing:0.006048px;}
.ls5_c02481{letter-spacing:0.128304px;}
.lsb_c02481{letter-spacing:0.508464px;}
.ls14_c02481{letter-spacing:0.514080px;}
.ls10_c02481{letter-spacing:0.536976px;}
.lsa_c02481{letter-spacing:0.579744px;}
.ls13_c02481{letter-spacing:0.594000px;}
.ls8_c02481{letter-spacing:0.598752px;}
.ls3_c02481{letter-spacing:0.613008px;}
.ls1_c02481{letter-spacing:0.717552px;}
.ls0_c02481{letter-spacing:0.722304px;}
.sc__c02481{text-shadow:none;}
.sc0_c02481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02481{-webkit-text-stroke:0px transparent;}
.sc0_c02481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c02481{word-spacing:-15.126048px;}
.ws2_c02481{word-spacing:-12.602304px;}
.wsd_c02481{word-spacing:-12.474000px;}
.ws7_c02481{word-spacing:-12.459744px;}
.ws5_c02481{word-spacing:-11.637648px;}
.ws3_c02481{word-spacing:-11.200464px;}
.ws1a_c02481{word-spacing:-2.159136px;}
.ws13_c02481{word-spacing:-1.078704px;}
.ws10_c02481{word-spacing:-0.974160px;}
.ws12_c02481{word-spacing:-0.118800px;}
.ws16_c02481{word-spacing:-0.099792px;}
.ws18_c02481{word-spacing:-0.090288px;}
.ws19_c02481{word-spacing:-0.085536px;}
.ws1b_c02481{word-spacing:-0.038016px;}
.ws17_c02481{word-spacing:-0.023760px;}
.ws11_c02481{word-spacing:0.000000px;}
.ws14_c02481{word-spacing:0.432432px;}
.ws15_c02481{word-spacing:0.446688px;}
.wsa_c02481{word-spacing:3.236112px;}
.wsc_c02481{word-spacing:6.629040px;}
.wse_c02481{word-spacing:33.300288px;}
.wsb_c02481{word-spacing:34.836912px;}
.ws9_c02481{word-spacing:36.143712px;}
.ws1_c02481{word-spacing:37.759392px;}
.ws0_c02481{word-spacing:38.020752px;}
.ws4_c02481{word-spacing:39.218256px;}
.ws6_c02481{word-spacing:39.902544px;}
.ws8_c02481{word-spacing:42.026688px;}
._0_c02481{margin-left:-1.948320px;}
._2_c02481{width:1.482624px;}
._9_c02481{width:2.504304px;}
._4_c02481{width:5.730912px;}
._6_c02481{width:17.111952px;}
._5_c02481{width:18.314208px;}
._8_c02481{width:19.445184px;}
._7_c02481{width:21.407760px;}
._a_c02481{width:24.691392px;}
._b_c02481{width:25.850880px;}
._1_c02481{width:50.252400px;}
._3_c02481{width:51.530688px;}
.fc0_c02481{color:rgb(0,0,0);}
.fs0_c02481{font-size:47.520000px;}
.fs1_c02481{font-size:60.480000px;}
.y0_c02481{bottom:0.000000px;}
.y1c_c02481{bottom:131.878686px;}
.y1b_c02481{bottom:146.998362px;}
.y1e_c02481{bottom:186.600234px;}
.y1d_c02481{bottom:196.320450px;}
.y1a_c02481{bottom:275.878542px;}
.y19_c02481{bottom:356.878758px;}
.y17_c02481{bottom:406.559730px;}
.y13_c02481{bottom:424.560306px;}
.y18_c02481{bottom:458.759262px;}
.y16_c02481{bottom:491.879514px;}
.y15_c02481{bottom:509.880090px;}
.y12_c02481{bottom:543.000342px;}
.y14_c02481{bottom:559.559874px;}
.y11_c02481{bottom:577.560450px;}
.y1f_c02481{bottom:614.280450px;}
.yd_c02481{bottom:652.439838px;}
.yc_c02481{bottom:667.559514px;}
.yf_c02481{bottom:707.160234px;}
.ye_c02481{bottom:716.880450px;}
.yb_c02481{bottom:796.439694px;}
.ya_c02481{bottom:862.319046px;}
.y9_c02481{bottom:877.438722px;}
.y7_c02481{bottom:926.759730px;}
.y3_c02481{bottom:944.760306px;}
.y8_c02481{bottom:979.319226px;}
.y6_c02481{bottom:1012.439478px;}
.y5_c02481{bottom:1030.440054px;}
.y2_c02481{bottom:1063.560306px;}
.y4_c02481{bottom:1079.759874px;}
.y1_c02481{bottom:1097.760450px;}
.y10_c02481{bottom:1134.840450px;}
.h3_c02481{height:32.530781px;}
.h1_c02481{height:41.696016px;}
.h2_c02481{height:41.812031px;}
.h4_c02481{height:54.654737px;}
.h0_c02481{height:1263.000000px;}
.w1_c02481{width:892.500000px;}
.w0_c02481{width:892.830000px;}
.x0_c02481{left:0.000000px;}
.xe_c02481{left:117.000000px;}
.x8_c02481{left:440.999856px;}
.x4_c02481{left:445.680576px;}
.xc_c02481{left:451.080000px;}
.x7_c02481{left:455.399604px;}
.x5_c02481{left:461.880144px;}
.x1_c02481{left:463.320000px;}
.xb_c02481{left:483.480360px;}
.x9_c02481{left:492.119496px;}
.x6_c02481{left:493.200576px;}
.xd_c02481{left:506.880360px;}
.x3_c02481{left:511.919892px;}
.x2_c02481{left:526.679604px;}
.xa_c02481{left:569.880036px;}
@media print{
.v0_c02481{vertical-align:0.000000pt;}
.v1_c02481{vertical-align:1.279488pt;}
.lsd_c02481{letter-spacing:-0.718080pt;}
.lsc_c02481{letter-spacing:-0.705408pt;}
.ls11_c02481{letter-spacing:-0.654720pt;}
.ls7_c02481{letter-spacing:-0.604032pt;}
.ls9_c02481{letter-spacing:-0.511104pt;}
.lsf_c02481{letter-spacing:-0.299904pt;}
.ls16_c02481{letter-spacing:-0.287232pt;}
.ls12_c02481{letter-spacing:-0.240768pt;}
.lse_c02481{letter-spacing:-0.232320pt;}
.ls6_c02481{letter-spacing:-0.215424pt;}
.ls4_c02481{letter-spacing:-0.105600pt;}
.ls15_c02481{letter-spacing:0.000000pt;}
.ls2_c02481{letter-spacing:0.005376pt;}
.ls5_c02481{letter-spacing:0.114048pt;}
.lsb_c02481{letter-spacing:0.451968pt;}
.ls14_c02481{letter-spacing:0.456960pt;}
.ls10_c02481{letter-spacing:0.477312pt;}
.lsa_c02481{letter-spacing:0.515328pt;}
.ls13_c02481{letter-spacing:0.528000pt;}
.ls8_c02481{letter-spacing:0.532224pt;}
.ls3_c02481{letter-spacing:0.544896pt;}
.ls1_c02481{letter-spacing:0.637824pt;}
.ls0_c02481{letter-spacing:0.642048pt;}
.wsf_c02481{word-spacing:-13.445376pt;}
.ws2_c02481{word-spacing:-11.202048pt;}
.wsd_c02481{word-spacing:-11.088000pt;}
.ws7_c02481{word-spacing:-11.075328pt;}
.ws5_c02481{word-spacing:-10.344576pt;}
.ws3_c02481{word-spacing:-9.955968pt;}
.ws1a_c02481{word-spacing:-1.919232pt;}
.ws13_c02481{word-spacing:-0.958848pt;}
.ws10_c02481{word-spacing:-0.865920pt;}
.ws12_c02481{word-spacing:-0.105600pt;}
.ws16_c02481{word-spacing:-0.088704pt;}
.ws18_c02481{word-spacing:-0.080256pt;}
.ws19_c02481{word-spacing:-0.076032pt;}
.ws1b_c02481{word-spacing:-0.033792pt;}
.ws17_c02481{word-spacing:-0.021120pt;}
.ws11_c02481{word-spacing:0.000000pt;}
.ws14_c02481{word-spacing:0.384384pt;}
.ws15_c02481{word-spacing:0.397056pt;}
.wsa_c02481{word-spacing:2.876544pt;}
.wsc_c02481{word-spacing:5.892480pt;}
.wse_c02481{word-spacing:29.600256pt;}
.wsb_c02481{word-spacing:30.966144pt;}
.ws9_c02481{word-spacing:32.127744pt;}
.ws1_c02481{word-spacing:33.563904pt;}
.ws0_c02481{word-spacing:33.796224pt;}
.ws4_c02481{word-spacing:34.860672pt;}
.ws6_c02481{word-spacing:35.468928pt;}
.ws8_c02481{word-spacing:37.357056pt;}
._0_c02481{margin-left:-1.731840pt;}
._2_c02481{width:1.317888pt;}
._9_c02481{width:2.226048pt;}
._4_c02481{width:5.094144pt;}
._6_c02481{width:15.210624pt;}
._5_c02481{width:16.279296pt;}
._8_c02481{width:17.284608pt;}
._7_c02481{width:19.029120pt;}
._a_c02481{width:21.947904pt;}
._b_c02481{width:22.978560pt;}
._1_c02481{width:44.668800pt;}
._3_c02481{width:45.805056pt;}
.fs0_c02481{font-size:42.240000pt;}
.fs1_c02481{font-size:53.760000pt;}
.y0_c02481{bottom:0.000000pt;}
.y1c_c02481{bottom:117.225499pt;}
.y1b_c02481{bottom:130.665211pt;}
.y1e_c02481{bottom:165.866875pt;}
.y1d_c02481{bottom:174.507067pt;}
.y1a_c02481{bottom:245.225371pt;}
.y19_c02481{bottom:317.225563pt;}
.y17_c02481{bottom:361.386427pt;}
.y13_c02481{bottom:377.386939pt;}
.y18_c02481{bottom:407.786011pt;}
.y16_c02481{bottom:437.226235pt;}
.y15_c02481{bottom:453.226747pt;}
.y12_c02481{bottom:482.666971pt;}
.y14_c02481{bottom:497.386555pt;}
.y11_c02481{bottom:513.387067pt;}
.y1f_c02481{bottom:546.027067pt;}
.yd_c02481{bottom:579.946523pt;}
.yc_c02481{bottom:593.386235pt;}
.yf_c02481{bottom:628.586875pt;}
.ye_c02481{bottom:637.227067pt;}
.yb_c02481{bottom:707.946395pt;}
.ya_c02481{bottom:766.505819pt;}
.y9_c02481{bottom:779.945531pt;}
.y7_c02481{bottom:823.786427pt;}
.y3_c02481{bottom:839.786939pt;}
.y8_c02481{bottom:870.505979pt;}
.y6_c02481{bottom:899.946203pt;}
.y5_c02481{bottom:915.946715pt;}
.y2_c02481{bottom:945.386939pt;}
.y4_c02481{bottom:959.786555pt;}
.y1_c02481{bottom:975.787067pt;}
.y10_c02481{bottom:1008.747067pt;}
.h3_c02481{height:28.916250pt;}
.h1_c02481{height:37.063125pt;}
.h2_c02481{height:37.166250pt;}
.h4_c02481{height:48.581988pt;}
.h0_c02481{height:1122.666667pt;}
.w1_c02481{width:793.333333pt;}
.w0_c02481{width:793.626667pt;}
.x0_c02481{left:0.000000pt;}
.xe_c02481{left:104.000000pt;}
.x8_c02481{left:391.999872pt;}
.x4_c02481{left:396.160512pt;}
.xc_c02481{left:400.960000pt;}
.x7_c02481{left:404.799648pt;}
.x5_c02481{left:410.560128pt;}
.x1_c02481{left:411.840000pt;}
.xb_c02481{left:429.760320pt;}
.x9_c02481{left:437.439552pt;}
.x6_c02481{left:438.400512pt;}
.xd_c02481{left:450.560320pt;}
.x3_c02481{left:455.039904pt;}
.x2_c02481{left:468.159648pt;}
.xa_c02481{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02482 {
    display:none;
  }
  .loading-indicator_c02482.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02482 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02482 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02482" -> "#page-container .classname_c02482")
 */
.pf_c02482 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02482 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02482.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02482 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02482 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02482 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02482 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02482 {overflow:visible;}
  }
}
.c_c02482 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02482 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02482:after { /* webkit #35443 */
  content: '';
}
.t_c02482:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02482 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02482 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02482 { /* info for Javascript */
  display:none;
}
.l_c02482 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02482 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02482 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02482:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02482 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02482.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02482.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02482 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02482{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02482;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02482{font-family:ff1_c02482;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02482;src:url('chunks/assets/font_fc67d466fca141e5881460c2.woff2')format("woff");}.ff2_c02482{font-family:ff2_c02482;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02482;src:url('chunks/assets/font_37e3f97d0fe0e1a6fddc633b.woff2')format("woff");}.ff3_c02482{font-family:ff3_c02482;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02482{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02482{vertical-align:0.000000px;}
.v2_c02482{vertical-align:1.439424px;}
.v1_c02482{vertical-align:33.121440px;}
.lsc_c02482{letter-spacing:-1.197504px;}
.lse_c02482{letter-spacing:-0.793584px;}
.ls14_c02482{letter-spacing:-0.736560px;}
.ls7_c02482{letter-spacing:-0.679536px;}
.ls9_c02482{letter-spacing:-0.574992px;}
.ls12_c02482{letter-spacing:-0.380160px;}
.ls17_c02482{letter-spacing:-0.327888px;}
.ls1b_c02482{letter-spacing:-0.323136px;}
.ls11_c02482{letter-spacing:-0.304128px;}
.ls15_c02482{letter-spacing:-0.270864px;}
.lsf_c02482{letter-spacing:-0.261360px;}
.ls6_c02482{letter-spacing:-0.242352px;}
.ls4_c02482{letter-spacing:-0.118800px;}
.ls19_c02482{letter-spacing:0.000000px;}
.ls1_c02482{letter-spacing:0.006048px;}
.ls5_c02482{letter-spacing:0.128304px;}
.ls10_c02482{letter-spacing:0.237600px;}
.lsb_c02482{letter-spacing:0.508464px;}
.ls18_c02482{letter-spacing:0.514080px;}
.ls13_c02482{letter-spacing:0.536976px;}
.lsa_c02482{letter-spacing:0.579744px;}
.ls1a_c02482{letter-spacing:0.584496px;}
.ls16_c02482{letter-spacing:0.594000px;}
.ls8_c02482{letter-spacing:0.598752px;}
.ls3_c02482{letter-spacing:0.613008px;}
.lsd_c02482{letter-spacing:0.660528px;}
.ls0_c02482{letter-spacing:0.717552px;}
.ls2_c02482{letter-spacing:0.722304px;}
.sc__c02482{text-shadow:none;}
.sc0_c02482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02482{-webkit-text-stroke:0px transparent;}
.sc0_c02482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12_c02482{word-spacing:-15.126048px;}
.ws6_c02482{word-spacing:-12.459744px;}
.wsb_c02482{word-spacing:-12.117600px;}
.ws13_c02482{word-spacing:-11.761200px;}
.ws4_c02482{word-spacing:-11.637648px;}
.ws2_c02482{word-spacing:-11.200464px;}
.ws21_c02482{word-spacing:-2.159136px;}
.ws20_c02482{word-spacing:-1.083456px;}
.ws19_c02482{word-spacing:-1.078704px;}
.ws16_c02482{word-spacing:-0.974160px;}
.ws22_c02482{word-spacing:-0.945648px;}
.ws18_c02482{word-spacing:-0.118800px;}
.ws1c_c02482{word-spacing:-0.099792px;}
.ws1e_c02482{word-spacing:-0.090288px;}
.ws1f_c02482{word-spacing:-0.085536px;}
.ws15_c02482{word-spacing:-0.071280px;}
.ws17_c02482{word-spacing:0.000000px;}
.ws1d_c02482{word-spacing:0.019008px;}
.ws1b_c02482{word-spacing:0.432432px;}
.ws1a_c02482{word-spacing:0.836352px;}
.wse_c02482{word-spacing:6.629040px;}
.wsc_c02482{word-spacing:7.089984px;}
.ws14_c02482{word-spacing:7.436880px;}
.wsa_c02482{word-spacing:14.636160px;}
.ws9_c02482{word-spacing:16.798320px;}
.ws10_c02482{word-spacing:28.735344px;}
.wsf_c02482{word-spacing:30.298752px;}
.ws11_c02482{word-spacing:33.300288px;}
.wsd_c02482{word-spacing:34.836912px;}
.ws8_c02482{word-spacing:36.143712px;}
.ws1_c02482{word-spacing:37.759392px;}
.ws0_c02482{word-spacing:38.020752px;}
.ws3_c02482{word-spacing:39.218256px;}
.ws5_c02482{word-spacing:39.902544px;}
.ws7_c02482{word-spacing:42.026688px;}
._0_c02482{margin-left:-1.948320px;}
._2_c02482{width:1.482624px;}
._5_c02482{width:2.770416px;}
._4_c02482{width:5.730912px;}
._10_c02482{width:14.945040px;}
._11_c02482{width:16.893360px;}
._c_c02482{width:19.982160px;}
._9_c02482{width:22.130064px;}
._d_c02482{width:23.451120px;}
._b_c02482{width:24.691392px;}
._6_c02482{width:31.520016px;}
._7_c02482{width:32.560704px;}
._8_c02482{width:33.824736px;}
._f_c02482{width:36.970560px;}
._a_c02482{width:41.456448px;}
._e_c02482{width:42.977088px;}
._1_c02482{width:50.252400px;}
._3_c02482{width:51.530688px;}
.fc0_c02482{color:rgb(0,0,0);}
.fs0_c02482{font-size:47.520000px;}
.fs1_c02482{font-size:60.480000px;}
.y0_c02482{bottom:0.000000px;}
.y16_c02482{bottom:18.000450px;}
.y22_c02482{bottom:131.878830px;}
.y21_c02482{bottom:146.998506px;}
.y25_c02482{bottom:179.760918px;}
.y24_c02482{bottom:186.600234px;}
.y23_c02482{bottom:196.320450px;}
.y20_c02482{bottom:260.759010px;}
.y1f_c02482{bottom:275.878686px;}
.y1e_c02482{bottom:341.759226px;}
.y1d_c02482{bottom:356.878902px;}
.y1b_c02482{bottom:406.559874px;}
.y17_c02482{bottom:424.560450px;}
.y1c_c02482{bottom:458.759406px;}
.y1a_c02482{bottom:491.879658px;}
.y19_c02482{bottom:509.880234px;}
.y15_c02482{bottom:525.000000px;}
.y14_c02482{bottom:543.000342px;}
.y18_c02482{bottom:559.560018px;}
.y13_c02482{bottom:577.560450px;}
.y26_c02482{bottom:614.280450px;}
.ye_c02482{bottom:652.439838px;}
.yd_c02482{bottom:667.559514px;}
.y11_c02482{bottom:700.320918px;}
.y10_c02482{bottom:707.160234px;}
.yf_c02482{bottom:716.880450px;}
.yc_c02482{bottom:781.320018px;}
.yb_c02482{bottom:796.439694px;}
.ya_c02482{bottom:862.319046px;}
.y9_c02482{bottom:877.438722px;}
.y7_c02482{bottom:926.759730px;}
.y3_c02482{bottom:944.760306px;}
.y8_c02482{bottom:979.319226px;}
.y6_c02482{bottom:1012.439478px;}
.y5_c02482{bottom:1030.440054px;}
.y2_c02482{bottom:1063.560306px;}
.y4_c02482{bottom:1079.759874px;}
.y1_c02482{bottom:1097.760450px;}
.y12_c02482{bottom:1134.840450px;}
.h6_c02482{height:29.160000px;}
.h3_c02482{height:32.530781px;}
.h1_c02482{height:41.696016px;}
.h2_c02482{height:41.812031px;}
.h5_c02482{height:54.654737px;}
.h4_c02482{height:74.817456px;}
.h0_c02482{height:1263.000000px;}
.w2_c02482{width:215.280000px;}
.w1_c02482{width:892.500000px;}
.w0_c02482{width:892.830000px;}
.x0_c02482{left:0.000000px;}
.xe_c02482{left:117.000000px;}
.x8_c02482{left:440.999856px;}
.x4_c02482{left:445.680576px;}
.xc_c02482{left:451.080000px;}
.x7_c02482{left:455.399604px;}
.x5_c02482{left:461.880144px;}
.x1_c02482{left:463.320000px;}
.xb_c02482{left:483.480360px;}
.x9_c02482{left:492.119496px;}
.x6_c02482{left:493.200576px;}
.xd_c02482{left:506.880360px;}
.x3_c02482{left:511.919892px;}
.x2_c02482{left:526.679604px;}
.xa_c02482{left:569.880036px;}
@media print{
.v0_c02482{vertical-align:0.000000pt;}
.v2_c02482{vertical-align:1.279488pt;}
.v1_c02482{vertical-align:29.441280pt;}
.lsc_c02482{letter-spacing:-1.064448pt;}
.lse_c02482{letter-spacing:-0.705408pt;}
.ls14_c02482{letter-spacing:-0.654720pt;}
.ls7_c02482{letter-spacing:-0.604032pt;}
.ls9_c02482{letter-spacing:-0.511104pt;}
.ls12_c02482{letter-spacing:-0.337920pt;}
.ls17_c02482{letter-spacing:-0.291456pt;}
.ls1b_c02482{letter-spacing:-0.287232pt;}
.ls11_c02482{letter-spacing:-0.270336pt;}
.ls15_c02482{letter-spacing:-0.240768pt;}
.lsf_c02482{letter-spacing:-0.232320pt;}
.ls6_c02482{letter-spacing:-0.215424pt;}
.ls4_c02482{letter-spacing:-0.105600pt;}
.ls19_c02482{letter-spacing:0.000000pt;}
.ls1_c02482{letter-spacing:0.005376pt;}
.ls5_c02482{letter-spacing:0.114048pt;}
.ls10_c02482{letter-spacing:0.211200pt;}
.lsb_c02482{letter-spacing:0.451968pt;}
.ls18_c02482{letter-spacing:0.456960pt;}
.ls13_c02482{letter-spacing:0.477312pt;}
.lsa_c02482{letter-spacing:0.515328pt;}
.ls1a_c02482{letter-spacing:0.519552pt;}
.ls16_c02482{letter-spacing:0.528000pt;}
.ls8_c02482{letter-spacing:0.532224pt;}
.ls3_c02482{letter-spacing:0.544896pt;}
.lsd_c02482{letter-spacing:0.587136pt;}
.ls0_c02482{letter-spacing:0.637824pt;}
.ls2_c02482{letter-spacing:0.642048pt;}
.ws12_c02482{word-spacing:-13.445376pt;}
.ws6_c02482{word-spacing:-11.075328pt;}
.wsb_c02482{word-spacing:-10.771200pt;}
.ws13_c02482{word-spacing:-10.454400pt;}
.ws4_c02482{word-spacing:-10.344576pt;}
.ws2_c02482{word-spacing:-9.955968pt;}
.ws21_c02482{word-spacing:-1.919232pt;}
.ws20_c02482{word-spacing:-0.963072pt;}
.ws19_c02482{word-spacing:-0.958848pt;}
.ws16_c02482{word-spacing:-0.865920pt;}
.ws22_c02482{word-spacing:-0.840576pt;}
.ws18_c02482{word-spacing:-0.105600pt;}
.ws1c_c02482{word-spacing:-0.088704pt;}
.ws1e_c02482{word-spacing:-0.080256pt;}
.ws1f_c02482{word-spacing:-0.076032pt;}
.ws15_c02482{word-spacing:-0.063360pt;}
.ws17_c02482{word-spacing:0.000000pt;}
.ws1d_c02482{word-spacing:0.016896pt;}
.ws1b_c02482{word-spacing:0.384384pt;}
.ws1a_c02482{word-spacing:0.743424pt;}
.wse_c02482{word-spacing:5.892480pt;}
.wsc_c02482{word-spacing:6.302208pt;}
.ws14_c02482{word-spacing:6.610560pt;}
.wsa_c02482{word-spacing:13.009920pt;}
.ws9_c02482{word-spacing:14.931840pt;}
.ws10_c02482{word-spacing:25.542528pt;}
.wsf_c02482{word-spacing:26.932224pt;}
.ws11_c02482{word-spacing:29.600256pt;}
.wsd_c02482{word-spacing:30.966144pt;}
.ws8_c02482{word-spacing:32.127744pt;}
.ws1_c02482{word-spacing:33.563904pt;}
.ws0_c02482{word-spacing:33.796224pt;}
.ws3_c02482{word-spacing:34.860672pt;}
.ws5_c02482{word-spacing:35.468928pt;}
.ws7_c02482{word-spacing:37.357056pt;}
._0_c02482{margin-left:-1.731840pt;}
._2_c02482{width:1.317888pt;}
._5_c02482{width:2.462592pt;}
._4_c02482{width:5.094144pt;}
._10_c02482{width:13.284480pt;}
._11_c02482{width:15.016320pt;}
._c_c02482{width:17.761920pt;}
._9_c02482{width:19.671168pt;}
._d_c02482{width:20.845440pt;}
._b_c02482{width:21.947904pt;}
._6_c02482{width:28.017792pt;}
._7_c02482{width:28.942848pt;}
._8_c02482{width:30.066432pt;}
._f_c02482{width:32.862720pt;}
._a_c02482{width:36.850176pt;}
._e_c02482{width:38.201856pt;}
._1_c02482{width:44.668800pt;}
._3_c02482{width:45.805056pt;}
.fs0_c02482{font-size:42.240000pt;}
.fs1_c02482{font-size:53.760000pt;}
.y0_c02482{bottom:0.000000pt;}
.y16_c02482{bottom:16.000400pt;}
.y22_c02482{bottom:117.225627pt;}
.y21_c02482{bottom:130.665339pt;}
.y25_c02482{bottom:159.787483pt;}
.y24_c02482{bottom:165.866875pt;}
.y23_c02482{bottom:174.507067pt;}
.y20_c02482{bottom:231.785787pt;}
.y1f_c02482{bottom:245.225499pt;}
.y1e_c02482{bottom:303.785979pt;}
.y1d_c02482{bottom:317.225691pt;}
.y1b_c02482{bottom:361.386555pt;}
.y17_c02482{bottom:377.387067pt;}
.y1c_c02482{bottom:407.786139pt;}
.y1a_c02482{bottom:437.226363pt;}
.y19_c02482{bottom:453.226875pt;}
.y15_c02482{bottom:466.666667pt;}
.y14_c02482{bottom:482.666971pt;}
.y18_c02482{bottom:497.386683pt;}
.y13_c02482{bottom:513.387067pt;}
.y26_c02482{bottom:546.027067pt;}
.ye_c02482{bottom:579.946523pt;}
.yd_c02482{bottom:593.386235pt;}
.y11_c02482{bottom:622.507483pt;}
.y10_c02482{bottom:628.586875pt;}
.yf_c02482{bottom:637.227067pt;}
.yc_c02482{bottom:694.506683pt;}
.yb_c02482{bottom:707.946395pt;}
.ya_c02482{bottom:766.505819pt;}
.y9_c02482{bottom:779.945531pt;}
.y7_c02482{bottom:823.786427pt;}
.y3_c02482{bottom:839.786939pt;}
.y8_c02482{bottom:870.505979pt;}
.y6_c02482{bottom:899.946203pt;}
.y5_c02482{bottom:915.946715pt;}
.y2_c02482{bottom:945.386939pt;}
.y4_c02482{bottom:959.786555pt;}
.y1_c02482{bottom:975.787067pt;}
.y12_c02482{bottom:1008.747067pt;}
.h6_c02482{height:25.920000pt;}
.h3_c02482{height:28.916250pt;}
.h1_c02482{height:37.063125pt;}
.h2_c02482{height:37.166250pt;}
.h5_c02482{height:48.581988pt;}
.h4_c02482{height:66.504405pt;}
.h0_c02482{height:1122.666667pt;}
.w2_c02482{width:191.360000pt;}
.w1_c02482{width:793.333333pt;}
.w0_c02482{width:793.626667pt;}
.x0_c02482{left:0.000000pt;}
.xe_c02482{left:104.000000pt;}
.x8_c02482{left:391.999872pt;}
.x4_c02482{left:396.160512pt;}
.xc_c02482{left:400.960000pt;}
.x7_c02482{left:404.799648pt;}
.x5_c02482{left:410.560128pt;}
.x1_c02482{left:411.840000pt;}
.xb_c02482{left:429.760320pt;}
.x9_c02482{left:437.439552pt;}
.x6_c02482{left:438.400512pt;}
.xd_c02482{left:450.560320pt;}
.x3_c02482{left:455.039904pt;}
.x2_c02482{left:468.159648pt;}
.xa_c02482{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02483 {
    display:none;
  }
  .loading-indicator_c02483.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02483 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02483 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02483" -> "#page-container .classname_c02483")
 */
.pf_c02483 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02483 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02483.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02483 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02483 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02483 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02483 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02483 {overflow:visible;}
  }
}
.c_c02483 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02483 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02483:after { /* webkit #35443 */
  content: '';
}
.t_c02483:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02483 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02483 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02483 { /* info for Javascript */
  display:none;
}
.l_c02483 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02483 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02483 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02483:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02483 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02483.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02483.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02483 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02483{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02483;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02483{font-family:ff1_c02483;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02483;src:url('chunks/assets/font_f9e1fa1a383007ddd12cda2e.woff2')format("woff");}.ff2_c02483{font-family:ff2_c02483;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02483;src:url('chunks/assets/font_5a201e275ac8f9af75f0dd3b.woff2')format("woff");}.ff3_c02483{font-family:ff3_c02483;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02483{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02483{vertical-align:0.000000px;}
.v2_c02483{vertical-align:1.439424px;}
.v1_c02483{vertical-align:4.320576px;}
.lse_c02483{letter-spacing:-0.841104px;}
.ls1c_c02483{letter-spacing:-0.784080px;}
.lsb_c02483{letter-spacing:-0.774576px;}
.ls19_c02483{letter-spacing:-0.769824px;}
.ls8_c02483{letter-spacing:-0.679536px;}
.lsa_c02483{letter-spacing:-0.574992px;}
.lsf_c02483{letter-spacing:-0.285120px;}
.ls13_c02483{letter-spacing:-0.275616px;}
.ls10_c02483{letter-spacing:-0.261360px;}
.ls7_c02483{letter-spacing:-0.242352px;}
.ls5_c02483{letter-spacing:-0.118800px;}
.ls16_c02483{letter-spacing:0.000000px;}
.ls2_c02483{letter-spacing:0.006048px;}
.ls6_c02483{letter-spacing:0.128304px;}
.ls1a_c02483{letter-spacing:0.228096px;}
.ls1b_c02483{letter-spacing:0.237600px;}
.ls11_c02483{letter-spacing:0.242352px;}
.lsd_c02483{letter-spacing:0.508464px;}
.ls15_c02483{letter-spacing:0.514080px;}
.ls12_c02483{letter-spacing:0.536976px;}
.lsc_c02483{letter-spacing:0.579744px;}
.ls17_c02483{letter-spacing:0.589248px;}
.ls14_c02483{letter-spacing:0.594000px;}
.ls9_c02483{letter-spacing:0.598752px;}
.ls4_c02483{letter-spacing:0.613008px;}
.ls1_c02483{letter-spacing:0.651024px;}
.ls18_c02483{letter-spacing:0.717552px;}
.ls0_c02483{letter-spacing:0.718272px;}
.ls3_c02483{letter-spacing:0.722304px;}
.sc__c02483{text-shadow:none;}
.sc0_c02483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02483{-webkit-text-stroke:0px transparent;}
.sc0_c02483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02483{word-spacing:-15.126048px;}
.ws12_c02483{word-spacing:-12.602304px;}
.wsb_c02483{word-spacing:-12.474000px;}
.ws7_c02483{word-spacing:-12.459744px;}
.wsa_c02483{word-spacing:-12.416976px;}
.ws3_c02483{word-spacing:-11.637648px;}
.ws6_c02483{word-spacing:-11.105424px;}
.ws1e_c02483{word-spacing:-2.159136px;}
.ws21_c02483{word-spacing:-1.083456px;}
.ws16_c02483{word-spacing:-1.077408px;}
.ws17_c02483{word-spacing:-1.012176px;}
.ws14_c02483{word-spacing:-0.974160px;}
.ws1f_c02483{word-spacing:-0.950400px;}
.ws1c_c02483{word-spacing:-0.603504px;}
.ws22_c02483{word-spacing:-0.589248px;}
.ws18_c02483{word-spacing:-0.118800px;}
.ws1b_c02483{word-spacing:-0.099792px;}
.ws1d_c02483{word-spacing:-0.085536px;}
.ws1a_c02483{word-spacing:-0.076032px;}
.ws15_c02483{word-spacing:0.000000px;}
.ws20_c02483{word-spacing:0.408672px;}
.ws23_c02483{word-spacing:0.422928px;}
.ws19_c02483{word-spacing:0.479952px;}
.ws11_c02483{word-spacing:0.717552px;}
.ws10_c02483{word-spacing:7.446384px;}
.ws2_c02483{word-spacing:7.978608px;}
.ws9_c02483{word-spacing:29.086992px;}
.wsc_c02483{word-spacing:33.300288px;}
.ws13_c02483{word-spacing:34.836912px;}
.wsf_c02483{word-spacing:36.143712px;}
.ws1_c02483{word-spacing:37.759392px;}
.ws0_c02483{word-spacing:38.020608px;}
.wse_c02483{word-spacing:38.020752px;}
.ws4_c02483{word-spacing:39.218256px;}
.ws5_c02483{word-spacing:39.902544px;}
.ws8_c02483{word-spacing:42.026688px;}
._0_c02483{margin-left:-1.948320px;}
._3_c02483{width:1.482624px;}
._8_c02483{width:3.758832px;}
._5_c02483{width:5.730912px;}
._2_c02483{width:7.957152px;}
._d_c02483{width:10.435392px;}
._e_c02483{width:12.146112px;}
._7_c02483{width:15.410736px;}
._b_c02483{width:18.124128px;}
._c_c02483{width:21.621600px;}
._a_c02483{width:22.743072px;}
._6_c02483{width:45.253296px;}
._1_c02483{width:50.252400px;}
._4_c02483{width:51.530688px;}
._9_c02483{width:70.472160px;}
.fc0_c02483{color:rgb(0,0,0);}
.fs1_c02483{font-size:41.760000px;}
.fs0_c02483{font-size:47.520000px;}
.fs2_c02483{font-size:60.480000px;}
.y0_c02483{bottom:0.000000px;}
.yc_c02483{bottom:66.240450px;}
.y1f_c02483{bottom:146.999550px;}
.y21_c02483{bottom:186.600234px;}
.y20_c02483{bottom:196.320450px;}
.y1e_c02483{bottom:245.999154px;}
.y1d_c02483{bottom:260.758866px;}
.y1c_c02483{bottom:275.878542px;}
.y1b_c02483{bottom:356.878758px;}
.y19_c02483{bottom:406.559730px;}
.y15_c02483{bottom:424.560306px;}
.y1a_c02483{bottom:458.759262px;}
.y18_c02483{bottom:491.879514px;}
.y17_c02483{bottom:509.880090px;}
.y14_c02483{bottom:543.000342px;}
.y16_c02483{bottom:559.559874px;}
.y13_c02483{bottom:577.560450px;}
.y22_c02483{bottom:614.280450px;}
.yf_c02483{bottom:667.560054px;}
.y11_c02483{bottom:707.160234px;}
.y10_c02483{bottom:716.880450px;}
.ye_c02483{bottom:796.440234px;}
.yb_c02483{bottom:811.200000px;}
.ya_c02483{bottom:877.440054px;}
.yd_c02483{bottom:877.440450px;}
.y7_c02483{bottom:926.759874px;}
.y3_c02483{bottom:944.760450px;}
.y9_c02483{bottom:964.559658px;}
.y8_c02483{bottom:979.319370px;}
.y6_c02483{bottom:1012.439622px;}
.y5_c02483{bottom:1030.440198px;}
.y2_c02483{bottom:1063.560306px;}
.y4_c02483{bottom:1079.760018px;}
.y1_c02483{bottom:1097.760450px;}
.y12_c02483{bottom:1134.840450px;}
.h4_c02483{height:32.530781px;}
.h2_c02483{height:41.064482px;}
.h1_c02483{height:41.696016px;}
.h3_c02483{height:41.812031px;}
.h6_c02483{height:54.654737px;}
.h5_c02483{height:78.840000px;}
.h0_c02483{height:1263.000000px;}
.w2_c02483{width:215.280000px;}
.w1_c02483{width:892.500000px;}
.w0_c02483{width:892.830000px;}
.x0_c02483{left:0.000000px;}
.xf_c02483{left:117.000000px;}
.x8_c02483{left:440.999964px;}
.x4_c02483{left:445.680684px;}
.xd_c02483{left:451.080000px;}
.x7_c02483{left:455.399712px;}
.x5_c02483{left:461.880252px;}
.x1_c02483{left:463.320000px;}
.xc_c02483{left:483.481008px;}
.xa_c02483{left:492.119604px;}
.x6_c02483{left:493.200684px;}
.xe_c02483{left:506.880360px;}
.x3_c02483{left:511.920000px;}
.x2_c02483{left:526.679604px;}
.x9_c02483{left:569.880144px;}
.xb_c02483{left:648.000000px;}
@media print{
.v0_c02483{vertical-align:0.000000pt;}
.v2_c02483{vertical-align:1.279488pt;}
.v1_c02483{vertical-align:3.840512pt;}
.lse_c02483{letter-spacing:-0.747648pt;}
.ls1c_c02483{letter-spacing:-0.696960pt;}
.lsb_c02483{letter-spacing:-0.688512pt;}
.ls19_c02483{letter-spacing:-0.684288pt;}
.ls8_c02483{letter-spacing:-0.604032pt;}
.lsa_c02483{letter-spacing:-0.511104pt;}
.lsf_c02483{letter-spacing:-0.253440pt;}
.ls13_c02483{letter-spacing:-0.244992pt;}
.ls10_c02483{letter-spacing:-0.232320pt;}
.ls7_c02483{letter-spacing:-0.215424pt;}
.ls5_c02483{letter-spacing:-0.105600pt;}
.ls16_c02483{letter-spacing:0.000000pt;}
.ls2_c02483{letter-spacing:0.005376pt;}
.ls6_c02483{letter-spacing:0.114048pt;}
.ls1a_c02483{letter-spacing:0.202752pt;}
.ls1b_c02483{letter-spacing:0.211200pt;}
.ls11_c02483{letter-spacing:0.215424pt;}
.lsd_c02483{letter-spacing:0.451968pt;}
.ls15_c02483{letter-spacing:0.456960pt;}
.ls12_c02483{letter-spacing:0.477312pt;}
.lsc_c02483{letter-spacing:0.515328pt;}
.ls17_c02483{letter-spacing:0.523776pt;}
.ls14_c02483{letter-spacing:0.528000pt;}
.ls9_c02483{letter-spacing:0.532224pt;}
.ls4_c02483{letter-spacing:0.544896pt;}
.ls1_c02483{letter-spacing:0.578688pt;}
.ls18_c02483{letter-spacing:0.637824pt;}
.ls0_c02483{letter-spacing:0.638464pt;}
.ls3_c02483{letter-spacing:0.642048pt;}
.wsd_c02483{word-spacing:-13.445376pt;}
.ws12_c02483{word-spacing:-11.202048pt;}
.wsb_c02483{word-spacing:-11.088000pt;}
.ws7_c02483{word-spacing:-11.075328pt;}
.wsa_c02483{word-spacing:-11.037312pt;}
.ws3_c02483{word-spacing:-10.344576pt;}
.ws6_c02483{word-spacing:-9.871488pt;}
.ws1e_c02483{word-spacing:-1.919232pt;}
.ws21_c02483{word-spacing:-0.963072pt;}
.ws16_c02483{word-spacing:-0.957696pt;}
.ws17_c02483{word-spacing:-0.899712pt;}
.ws14_c02483{word-spacing:-0.865920pt;}
.ws1f_c02483{word-spacing:-0.844800pt;}
.ws1c_c02483{word-spacing:-0.536448pt;}
.ws22_c02483{word-spacing:-0.523776pt;}
.ws18_c02483{word-spacing:-0.105600pt;}
.ws1b_c02483{word-spacing:-0.088704pt;}
.ws1d_c02483{word-spacing:-0.076032pt;}
.ws1a_c02483{word-spacing:-0.067584pt;}
.ws15_c02483{word-spacing:0.000000pt;}
.ws20_c02483{word-spacing:0.363264pt;}
.ws23_c02483{word-spacing:0.375936pt;}
.ws19_c02483{word-spacing:0.426624pt;}
.ws11_c02483{word-spacing:0.637824pt;}
.ws10_c02483{word-spacing:6.619008pt;}
.ws2_c02483{word-spacing:7.092096pt;}
.ws9_c02483{word-spacing:25.855104pt;}
.wsc_c02483{word-spacing:29.600256pt;}
.ws13_c02483{word-spacing:30.966144pt;}
.wsf_c02483{word-spacing:32.127744pt;}
.ws1_c02483{word-spacing:33.563904pt;}
.ws0_c02483{word-spacing:33.796096pt;}
.wse_c02483{word-spacing:33.796224pt;}
.ws4_c02483{word-spacing:34.860672pt;}
.ws5_c02483{word-spacing:35.468928pt;}
.ws8_c02483{word-spacing:37.357056pt;}
._0_c02483{margin-left:-1.731840pt;}
._3_c02483{width:1.317888pt;}
._8_c02483{width:3.341184pt;}
._5_c02483{width:5.094144pt;}
._2_c02483{width:7.073024pt;}
._d_c02483{width:9.275904pt;}
._e_c02483{width:10.796544pt;}
._7_c02483{width:13.698432pt;}
._b_c02483{width:16.110336pt;}
._c_c02483{width:19.219200pt;}
._a_c02483{width:20.216064pt;}
._6_c02483{width:40.225152pt;}
._1_c02483{width:44.668800pt;}
._4_c02483{width:45.805056pt;}
._9_c02483{width:62.641920pt;}
.fs1_c02483{font-size:37.120000pt;}
.fs0_c02483{font-size:42.240000pt;}
.fs2_c02483{font-size:53.760000pt;}
.y0_c02483{bottom:0.000000pt;}
.yc_c02483{bottom:58.880400pt;}
.y1f_c02483{bottom:130.666267pt;}
.y21_c02483{bottom:165.866875pt;}
.y20_c02483{bottom:174.507067pt;}
.y1e_c02483{bottom:218.665915pt;}
.y1d_c02483{bottom:231.785659pt;}
.y1c_c02483{bottom:245.225371pt;}
.y1b_c02483{bottom:317.225563pt;}
.y19_c02483{bottom:361.386427pt;}
.y15_c02483{bottom:377.386939pt;}
.y1a_c02483{bottom:407.786011pt;}
.y18_c02483{bottom:437.226235pt;}
.y17_c02483{bottom:453.226747pt;}
.y14_c02483{bottom:482.666971pt;}
.y16_c02483{bottom:497.386555pt;}
.y13_c02483{bottom:513.387067pt;}
.y22_c02483{bottom:546.027067pt;}
.yf_c02483{bottom:593.386715pt;}
.y11_c02483{bottom:628.586875pt;}
.y10_c02483{bottom:637.227067pt;}
.ye_c02483{bottom:707.946875pt;}
.yb_c02483{bottom:721.066667pt;}
.ya_c02483{bottom:779.946715pt;}
.yd_c02483{bottom:779.947067pt;}
.y7_c02483{bottom:823.786555pt;}
.y3_c02483{bottom:839.787067pt;}
.y9_c02483{bottom:857.386363pt;}
.y8_c02483{bottom:870.506107pt;}
.y6_c02483{bottom:899.946331pt;}
.y5_c02483{bottom:915.946843pt;}
.y2_c02483{bottom:945.386939pt;}
.y4_c02483{bottom:959.786683pt;}
.y1_c02483{bottom:975.787067pt;}
.y12_c02483{bottom:1008.747067pt;}
.h4_c02483{height:28.916250pt;}
.h2_c02483{height:36.501762pt;}
.h1_c02483{height:37.063125pt;}
.h3_c02483{height:37.166250pt;}
.h6_c02483{height:48.581988pt;}
.h5_c02483{height:70.080000pt;}
.h0_c02483{height:1122.666667pt;}
.w2_c02483{width:191.360000pt;}
.w1_c02483{width:793.333333pt;}
.w0_c02483{width:793.626667pt;}
.x0_c02483{left:0.000000pt;}
.xf_c02483{left:104.000000pt;}
.x8_c02483{left:391.999968pt;}
.x4_c02483{left:396.160608pt;}
.xd_c02483{left:400.960000pt;}
.x7_c02483{left:404.799744pt;}
.x5_c02483{left:410.560224pt;}
.x1_c02483{left:411.840000pt;}
.xc_c02483{left:429.760896pt;}
.xa_c02483{left:437.439648pt;}
.x6_c02483{left:438.400608pt;}
.xe_c02483{left:450.560320pt;}
.x3_c02483{left:455.040000pt;}
.x2_c02483{left:468.159648pt;}
.x9_c02483{left:506.560128pt;}
.xb_c02483{left:576.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02484 {
    display:none;
  }
  .loading-indicator_c02484.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02484 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02484 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02484" -> "#page-container .classname_c02484")
 */
.pf_c02484 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02484 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02484.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02484 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02484 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02484 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02484 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02484 {overflow:visible;}
  }
}
.c_c02484 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02484 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02484:after { /* webkit #35443 */
  content: '';
}
.t_c02484:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02484 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02484 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02484 { /* info for Javascript */
  display:none;
}
.l_c02484 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02484 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02484 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02484:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02484 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02484.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02484.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02484 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02484{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02484;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02484{font-family:ff1_c02484;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02484;src:url('chunks/assets/font_f47368a8bb485f38ec38a256.woff2')format("woff");}.ff2_c02484{font-family:ff2_c02484;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02484;src:url('chunks/assets/font_d5624fcb4564f1b167fcd6bb.woff2')format("woff");}.ff3_c02484{font-family:ff3_c02484;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02484{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02484{vertical-align:0.000000px;}
.v1_c02484{vertical-align:1.439424px;}
.lsb_c02484{letter-spacing:-0.755568px;}
.ls9_c02484{letter-spacing:-0.613008px;}
.lsc_c02484{letter-spacing:-0.574992px;}
.ls16_c02484{letter-spacing:-0.403920px;}
.ls10_c02484{letter-spacing:-0.394416px;}
.ls12_c02484{letter-spacing:-0.275616px;}
.lsf_c02484{letter-spacing:-0.261360px;}
.ls8_c02484{letter-spacing:-0.242352px;}
.ls4_c02484{letter-spacing:-0.118800px;}
.ls17_c02484{letter-spacing:-0.047520px;}
.ls15_c02484{letter-spacing:0.000000px;}
.ls1_c02484{letter-spacing:0.006048px;}
.ls6_c02484{letter-spacing:0.128304px;}
.lse_c02484{letter-spacing:0.508464px;}
.ls14_c02484{letter-spacing:0.514080px;}
.ls11_c02484{letter-spacing:0.536976px;}
.lsd_c02484{letter-spacing:0.579744px;}
.ls5_c02484{letter-spacing:0.589248px;}
.ls13_c02484{letter-spacing:0.594000px;}
.lsa_c02484{letter-spacing:0.598752px;}
.ls3_c02484{letter-spacing:0.613008px;}
.ls0_c02484{letter-spacing:0.679536px;}
.ls7_c02484{letter-spacing:0.717552px;}
.ls2_c02484{letter-spacing:0.722304px;}
.sc__c02484{text-shadow:none;}
.sc0_c02484{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02484{-webkit-text-stroke:0px transparent;}
.sc0_c02484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c02484{word-spacing:-15.126048px;}
.ws9_c02484{word-spacing:-12.474000px;}
.ws6_c02484{word-spacing:-12.459744px;}
.ws8_c02484{word-spacing:-12.416976px;}
.ws7_c02484{word-spacing:-12.388464px;}
.ws5_c02484{word-spacing:-11.305008px;}
.ws2_c02484{word-spacing:-11.266992px;}
.ws17_c02484{word-spacing:-2.159136px;}
.ws18_c02484{word-spacing:-1.083456px;}
.ws13_c02484{word-spacing:-1.040688px;}
.wsf_c02484{word-spacing:-0.974160px;}
.ws11_c02484{word-spacing:-0.950400px;}
.ws1a_c02484{word-spacing:-0.313632px;}
.ws12_c02484{word-spacing:-0.118800px;}
.ws14_c02484{word-spacing:-0.099792px;}
.ws16_c02484{word-spacing:-0.085536px;}
.ws10_c02484{word-spacing:0.000000px;}
.ws15_c02484{word-spacing:0.033264px;}
.ws19_c02484{word-spacing:0.042768px;}
.ws4_c02484{word-spacing:5.227200px;}
.wsa_c02484{word-spacing:33.300288px;}
.ws1_c02484{word-spacing:37.759392px;}
.ws0_c02484{word-spacing:38.020752px;}
.ws3_c02484{word-spacing:39.218256px;}
.wsc_c02484{word-spacing:39.902544px;}
.wsd_c02484{word-spacing:42.026688px;}
.wse_c02484{word-spacing:48.237552px;}
._0_c02484{margin-left:-1.948320px;}
._2_c02484{width:1.482624px;}
._4_c02484{width:4.462128px;}
._1_c02484{width:50.252400px;}
._3_c02484{width:51.530688px;}
._7_c02484{width:57.594240px;}
._6_c02484{width:63.173088px;}
._5_c02484{width:65.938752px;}
.fc0_c02484{color:rgb(0,0,0);}
.fs0_c02484{font-size:47.520000px;}
.fs1_c02484{font-size:60.480000px;}
.y0_c02484{bottom:0.000000px;}
.y1c_c02484{bottom:65.880450px;}
.yb_c02484{bottom:66.240450px;}
.y20_c02484{bottom:147.000054px;}
.y22_c02484{bottom:186.600234px;}
.y21_c02484{bottom:196.320450px;}
.y1f_c02484{bottom:260.760558px;}
.y1e_c02484{bottom:275.880234px;}
.y1b_c02484{bottom:291.000000px;}
.y1a_c02484{bottom:356.878758px;}
.y1d_c02484{bottom:356.880450px;}
.y18_c02484{bottom:406.559730px;}
.y14_c02484{bottom:424.560306px;}
.y19_c02484{bottom:458.759262px;}
.y17_c02484{bottom:491.879514px;}
.y16_c02484{bottom:509.880090px;}
.y13_c02484{bottom:543.000342px;}
.y15_c02484{bottom:559.559874px;}
.y12_c02484{bottom:577.560450px;}
.y23_c02484{bottom:614.280450px;}
.ye_c02484{bottom:667.560054px;}
.y10_c02484{bottom:707.160234px;}
.yf_c02484{bottom:716.880450px;}
.yd_c02484{bottom:796.440234px;}
.ya_c02484{bottom:811.200000px;}
.y9_c02484{bottom:877.438722px;}
.yc_c02484{bottom:877.440450px;}
.y7_c02484{bottom:926.759730px;}
.y3_c02484{bottom:944.760306px;}
.y8_c02484{bottom:979.319226px;}
.y6_c02484{bottom:1012.439478px;}
.y5_c02484{bottom:1030.440054px;}
.y2_c02484{bottom:1063.560306px;}
.y4_c02484{bottom:1079.759874px;}
.y1_c02484{bottom:1097.760450px;}
.y11_c02484{bottom:1134.840450px;}
.h3_c02484{height:32.530781px;}
.h1_c02484{height:41.696016px;}
.h2_c02484{height:41.812031px;}
.h5_c02484{height:54.654737px;}
.h6_c02484{height:78.480000px;}
.h4_c02484{height:78.840000px;}
.h0_c02484{height:1263.000000px;}
.w2_c02484{width:215.280000px;}
.w1_c02484{width:892.500000px;}
.w0_c02484{width:892.830000px;}
.x0_c02484{left:0.000000px;}
.xf_c02484{left:117.000000px;}
.x8_c02484{left:441.001044px;}
.x4_c02484{left:445.680576px;}
.xd_c02484{left:451.080000px;}
.x7_c02484{left:455.400792px;}
.x5_c02484{left:461.880144px;}
.x1_c02484{left:463.320000px;}
.xc_c02484{left:483.480144px;}
.x9_c02484{left:492.120684px;}
.x6_c02484{left:493.200576px;}
.xe_c02484{left:506.880360px;}
.x3_c02484{left:511.919892px;}
.x2_c02484{left:526.679604px;}
.xa_c02484{left:569.520000px;}
.xb_c02484{left:663.120000px;}
@media print{
.v0_c02484{vertical-align:0.000000pt;}
.v1_c02484{vertical-align:1.279488pt;}
.lsb_c02484{letter-spacing:-0.671616pt;}
.ls9_c02484{letter-spacing:-0.544896pt;}
.lsc_c02484{letter-spacing:-0.511104pt;}
.ls16_c02484{letter-spacing:-0.359040pt;}
.ls10_c02484{letter-spacing:-0.350592pt;}
.ls12_c02484{letter-spacing:-0.244992pt;}
.lsf_c02484{letter-spacing:-0.232320pt;}
.ls8_c02484{letter-spacing:-0.215424pt;}
.ls4_c02484{letter-spacing:-0.105600pt;}
.ls17_c02484{letter-spacing:-0.042240pt;}
.ls15_c02484{letter-spacing:0.000000pt;}
.ls1_c02484{letter-spacing:0.005376pt;}
.ls6_c02484{letter-spacing:0.114048pt;}
.lse_c02484{letter-spacing:0.451968pt;}
.ls14_c02484{letter-spacing:0.456960pt;}
.ls11_c02484{letter-spacing:0.477312pt;}
.lsd_c02484{letter-spacing:0.515328pt;}
.ls5_c02484{letter-spacing:0.523776pt;}
.ls13_c02484{letter-spacing:0.528000pt;}
.lsa_c02484{letter-spacing:0.532224pt;}
.ls3_c02484{letter-spacing:0.544896pt;}
.ls0_c02484{letter-spacing:0.604032pt;}
.ls7_c02484{letter-spacing:0.637824pt;}
.ls2_c02484{letter-spacing:0.642048pt;}
.wsb_c02484{word-spacing:-13.445376pt;}
.ws9_c02484{word-spacing:-11.088000pt;}
.ws6_c02484{word-spacing:-11.075328pt;}
.ws8_c02484{word-spacing:-11.037312pt;}
.ws7_c02484{word-spacing:-11.011968pt;}
.ws5_c02484{word-spacing:-10.048896pt;}
.ws2_c02484{word-spacing:-10.015104pt;}
.ws17_c02484{word-spacing:-1.919232pt;}
.ws18_c02484{word-spacing:-0.963072pt;}
.ws13_c02484{word-spacing:-0.925056pt;}
.wsf_c02484{word-spacing:-0.865920pt;}
.ws11_c02484{word-spacing:-0.844800pt;}
.ws1a_c02484{word-spacing:-0.278784pt;}
.ws12_c02484{word-spacing:-0.105600pt;}
.ws14_c02484{word-spacing:-0.088704pt;}
.ws16_c02484{word-spacing:-0.076032pt;}
.ws10_c02484{word-spacing:0.000000pt;}
.ws15_c02484{word-spacing:0.029568pt;}
.ws19_c02484{word-spacing:0.038016pt;}
.ws4_c02484{word-spacing:4.646400pt;}
.wsa_c02484{word-spacing:29.600256pt;}
.ws1_c02484{word-spacing:33.563904pt;}
.ws0_c02484{word-spacing:33.796224pt;}
.ws3_c02484{word-spacing:34.860672pt;}
.wsc_c02484{word-spacing:35.468928pt;}
.wsd_c02484{word-spacing:37.357056pt;}
.wse_c02484{word-spacing:42.877824pt;}
._0_c02484{margin-left:-1.731840pt;}
._2_c02484{width:1.317888pt;}
._4_c02484{width:3.966336pt;}
._1_c02484{width:44.668800pt;}
._3_c02484{width:45.805056pt;}
._7_c02484{width:51.194880pt;}
._6_c02484{width:56.153856pt;}
._5_c02484{width:58.612224pt;}
.fs0_c02484{font-size:42.240000pt;}
.fs1_c02484{font-size:53.760000pt;}
.y0_c02484{bottom:0.000000pt;}
.y1c_c02484{bottom:58.560400pt;}
.yb_c02484{bottom:58.880400pt;}
.y20_c02484{bottom:130.666715pt;}
.y22_c02484{bottom:165.866875pt;}
.y21_c02484{bottom:174.507067pt;}
.y1f_c02484{bottom:231.787163pt;}
.y1e_c02484{bottom:245.226875pt;}
.y1b_c02484{bottom:258.666667pt;}
.y1a_c02484{bottom:317.225563pt;}
.y1d_c02484{bottom:317.227067pt;}
.y18_c02484{bottom:361.386427pt;}
.y14_c02484{bottom:377.386939pt;}
.y19_c02484{bottom:407.786011pt;}
.y17_c02484{bottom:437.226235pt;}
.y16_c02484{bottom:453.226747pt;}
.y13_c02484{bottom:482.666971pt;}
.y15_c02484{bottom:497.386555pt;}
.y12_c02484{bottom:513.387067pt;}
.y23_c02484{bottom:546.027067pt;}
.ye_c02484{bottom:593.386715pt;}
.y10_c02484{bottom:628.586875pt;}
.yf_c02484{bottom:637.227067pt;}
.yd_c02484{bottom:707.946875pt;}
.ya_c02484{bottom:721.066667pt;}
.y9_c02484{bottom:779.945531pt;}
.yc_c02484{bottom:779.947067pt;}
.y7_c02484{bottom:823.786427pt;}
.y3_c02484{bottom:839.786939pt;}
.y8_c02484{bottom:870.505979pt;}
.y6_c02484{bottom:899.946203pt;}
.y5_c02484{bottom:915.946715pt;}
.y2_c02484{bottom:945.386939pt;}
.y4_c02484{bottom:959.786555pt;}
.y1_c02484{bottom:975.787067pt;}
.y11_c02484{bottom:1008.747067pt;}
.h3_c02484{height:28.916250pt;}
.h1_c02484{height:37.063125pt;}
.h2_c02484{height:37.166250pt;}
.h5_c02484{height:48.581988pt;}
.h6_c02484{height:69.760000pt;}
.h4_c02484{height:70.080000pt;}
.h0_c02484{height:1122.666667pt;}
.w2_c02484{width:191.360000pt;}
.w1_c02484{width:793.333333pt;}
.w0_c02484{width:793.626667pt;}
.x0_c02484{left:0.000000pt;}
.xf_c02484{left:104.000000pt;}
.x8_c02484{left:392.000928pt;}
.x4_c02484{left:396.160512pt;}
.xd_c02484{left:400.960000pt;}
.x7_c02484{left:404.800704pt;}
.x5_c02484{left:410.560128pt;}
.x1_c02484{left:411.840000pt;}
.xc_c02484{left:429.760128pt;}
.x9_c02484{left:437.440608pt;}
.x6_c02484{left:438.400512pt;}
.xe_c02484{left:450.560320pt;}
.x3_c02484{left:455.039904pt;}
.x2_c02484{left:468.159648pt;}
.xa_c02484{left:506.240000pt;}
.xb_c02484{left:589.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02485 {
    display:none;
  }
  .loading-indicator_c02485.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02485 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02485 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02485" -> "#page-container .classname_c02485")
 */
.pf_c02485 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02485 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02485.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02485 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02485 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02485 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02485 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02485 {overflow:visible;}
  }
}
.c_c02485 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02485 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02485:after { /* webkit #35443 */
  content: '';
}
.t_c02485:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02485 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02485 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02485 { /* info for Javascript */
  display:none;
}
.l_c02485 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02485 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02485 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02485:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02485 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02485.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02485.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02485 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02485{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02485;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02485{font-family:ff1_c02485;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02485;src:url('chunks/assets/font_1e7fe25912057fe00f78c706.woff2')format("woff");}.ff2_c02485{font-family:ff2_c02485;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02485;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02485{font-family:ff3_c02485;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02485{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02485{vertical-align:0.000000px;}
.v1_c02485{vertical-align:1.439424px;}
.lsc_c02485{letter-spacing:-1.197504px;}
.ls7_c02485{letter-spacing:-0.613008px;}
.ls9_c02485{letter-spacing:-0.574992px;}
.ls10_c02485{letter-spacing:-0.275616px;}
.lse_c02485{letter-spacing:-0.261360px;}
.ls6_c02485{letter-spacing:-0.242352px;}
.ls3_c02485{letter-spacing:-0.118800px;}
.ls13_c02485{letter-spacing:0.000000px;}
.ls1_c02485{letter-spacing:0.006048px;}
.ls5_c02485{letter-spacing:0.128304px;}
.lsb_c02485{letter-spacing:0.508464px;}
.ls12_c02485{letter-spacing:0.514080px;}
.lsf_c02485{letter-spacing:0.536976px;}
.lsa_c02485{letter-spacing:0.579744px;}
.ls11_c02485{letter-spacing:0.594000px;}
.ls8_c02485{letter-spacing:0.598752px;}
.ls2_c02485{letter-spacing:0.613008px;}
.lsd_c02485{letter-spacing:0.651024px;}
.ls4_c02485{letter-spacing:0.717552px;}
.ls0_c02485{letter-spacing:0.722304px;}
.sc__c02485{text-shadow:none;}
.sc0_c02485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02485{-webkit-text-stroke:0px transparent;}
.sc0_c02485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02485{word-spacing:-15.126048px;}
.wsa_c02485{word-spacing:-12.474000px;}
.ws9_c02485{word-spacing:-12.416976px;}
.ws4_c02485{word-spacing:-11.637648px;}
.ws2_c02485{word-spacing:-11.266992px;}
.ws15_c02485{word-spacing:-2.159136px;}
.ws10_c02485{word-spacing:-1.083456px;}
.ws12_c02485{word-spacing:-1.012176px;}
.wsd_c02485{word-spacing:-0.974160px;}
.wsf_c02485{word-spacing:-0.118800px;}
.ws13_c02485{word-spacing:-0.099792px;}
.ws14_c02485{word-spacing:-0.085536px;}
.wse_c02485{word-spacing:0.000000px;}
.ws11_c02485{word-spacing:0.836352px;}
.wsb_c02485{word-spacing:33.300288px;}
.ws8_c02485{word-spacing:36.143712px;}
.ws6_c02485{word-spacing:36.742464px;}
.ws1_c02485{word-spacing:37.759392px;}
.ws0_c02485{word-spacing:38.020752px;}
.ws3_c02485{word-spacing:39.218256px;}
.ws5_c02485{word-spacing:39.902544px;}
.ws7_c02485{word-spacing:42.026688px;}
._0_c02485{margin-left:-1.948320px;}
._2_c02485{width:1.482624px;}
._5_c02485{width:2.770416px;}
._4_c02485{width:5.749920px;}
._1_c02485{width:50.252400px;}
._3_c02485{width:51.530688px;}
.fc0_c02485{color:rgb(0,0,0);}
.fs0_c02485{font-size:47.520000px;}
.fs1_c02485{font-size:60.480000px;}
.y0_c02485{bottom:0.000000px;}
.y19_c02485{bottom:146.998362px;}
.y1b_c02485{bottom:186.600234px;}
.y1a_c02485{bottom:196.320450px;}
.y18_c02485{bottom:275.878542px;}
.y17_c02485{bottom:356.878758px;}
.y15_c02485{bottom:406.559730px;}
.y11_c02485{bottom:424.560306px;}
.y16_c02485{bottom:458.759262px;}
.y14_c02485{bottom:491.879514px;}
.y13_c02485{bottom:509.880090px;}
.y10_c02485{bottom:543.000342px;}
.y12_c02485{bottom:559.559874px;}
.yf_c02485{bottom:577.560450px;}
.y1c_c02485{bottom:614.280450px;}
.yb_c02485{bottom:667.558326px;}
.yd_c02485{bottom:707.160234px;}
.yc_c02485{bottom:716.880450px;}
.ya_c02485{bottom:796.438506px;}
.y9_c02485{bottom:877.438722px;}
.y7_c02485{bottom:926.759730px;}
.y3_c02485{bottom:944.760306px;}
.y8_c02485{bottom:979.319226px;}
.y6_c02485{bottom:1012.439478px;}
.y5_c02485{bottom:1030.440054px;}
.y2_c02485{bottom:1063.560306px;}
.y4_c02485{bottom:1079.759874px;}
.y1_c02485{bottom:1097.760450px;}
.ye_c02485{bottom:1134.840450px;}
.h3_c02485{height:32.530781px;}
.h1_c02485{height:41.696016px;}
.h2_c02485{height:41.812031px;}
.h4_c02485{height:54.654737px;}
.h0_c02485{height:1263.000000px;}
.w1_c02485{width:892.500000px;}
.w0_c02485{width:892.830000px;}
.x0_c02485{left:0.000000px;}
.xd_c02485{left:117.000000px;}
.x8_c02485{left:440.999856px;}
.x4_c02485{left:445.680576px;}
.xb_c02485{left:451.080000px;}
.x7_c02485{left:455.399604px;}
.x5_c02485{left:461.880144px;}
.x1_c02485{left:463.320000px;}
.xa_c02485{left:483.480360px;}
.x9_c02485{left:492.119496px;}
.x6_c02485{left:493.200576px;}
.xc_c02485{left:506.880360px;}
.x3_c02485{left:511.919892px;}
.x2_c02485{left:526.679604px;}
@media print{
.v0_c02485{vertical-align:0.000000pt;}
.v1_c02485{vertical-align:1.279488pt;}
.lsc_c02485{letter-spacing:-1.064448pt;}
.ls7_c02485{letter-spacing:-0.544896pt;}
.ls9_c02485{letter-spacing:-0.511104pt;}
.ls10_c02485{letter-spacing:-0.244992pt;}
.lse_c02485{letter-spacing:-0.232320pt;}
.ls6_c02485{letter-spacing:-0.215424pt;}
.ls3_c02485{letter-spacing:-0.105600pt;}
.ls13_c02485{letter-spacing:0.000000pt;}
.ls1_c02485{letter-spacing:0.005376pt;}
.ls5_c02485{letter-spacing:0.114048pt;}
.lsb_c02485{letter-spacing:0.451968pt;}
.ls12_c02485{letter-spacing:0.456960pt;}
.lsf_c02485{letter-spacing:0.477312pt;}
.lsa_c02485{letter-spacing:0.515328pt;}
.ls11_c02485{letter-spacing:0.528000pt;}
.ls8_c02485{letter-spacing:0.532224pt;}
.ls2_c02485{letter-spacing:0.544896pt;}
.lsd_c02485{letter-spacing:0.578688pt;}
.ls4_c02485{letter-spacing:0.637824pt;}
.ls0_c02485{letter-spacing:0.642048pt;}
.wsc_c02485{word-spacing:-13.445376pt;}
.wsa_c02485{word-spacing:-11.088000pt;}
.ws9_c02485{word-spacing:-11.037312pt;}
.ws4_c02485{word-spacing:-10.344576pt;}
.ws2_c02485{word-spacing:-10.015104pt;}
.ws15_c02485{word-spacing:-1.919232pt;}
.ws10_c02485{word-spacing:-0.963072pt;}
.ws12_c02485{word-spacing:-0.899712pt;}
.wsd_c02485{word-spacing:-0.865920pt;}
.wsf_c02485{word-spacing:-0.105600pt;}
.ws13_c02485{word-spacing:-0.088704pt;}
.ws14_c02485{word-spacing:-0.076032pt;}
.wse_c02485{word-spacing:0.000000pt;}
.ws11_c02485{word-spacing:0.743424pt;}
.wsb_c02485{word-spacing:29.600256pt;}
.ws8_c02485{word-spacing:32.127744pt;}
.ws6_c02485{word-spacing:32.659968pt;}
.ws1_c02485{word-spacing:33.563904pt;}
.ws0_c02485{word-spacing:33.796224pt;}
.ws3_c02485{word-spacing:34.860672pt;}
.ws5_c02485{word-spacing:35.468928pt;}
.ws7_c02485{word-spacing:37.357056pt;}
._0_c02485{margin-left:-1.731840pt;}
._2_c02485{width:1.317888pt;}
._5_c02485{width:2.462592pt;}
._4_c02485{width:5.111040pt;}
._1_c02485{width:44.668800pt;}
._3_c02485{width:45.805056pt;}
.fs0_c02485{font-size:42.240000pt;}
.fs1_c02485{font-size:53.760000pt;}
.y0_c02485{bottom:0.000000pt;}
.y19_c02485{bottom:130.665211pt;}
.y1b_c02485{bottom:165.866875pt;}
.y1a_c02485{bottom:174.507067pt;}
.y18_c02485{bottom:245.225371pt;}
.y17_c02485{bottom:317.225563pt;}
.y15_c02485{bottom:361.386427pt;}
.y11_c02485{bottom:377.386939pt;}
.y16_c02485{bottom:407.786011pt;}
.y14_c02485{bottom:437.226235pt;}
.y13_c02485{bottom:453.226747pt;}
.y10_c02485{bottom:482.666971pt;}
.y12_c02485{bottom:497.386555pt;}
.yf_c02485{bottom:513.387067pt;}
.y1c_c02485{bottom:546.027067pt;}
.yb_c02485{bottom:593.385179pt;}
.yd_c02485{bottom:628.586875pt;}
.yc_c02485{bottom:637.227067pt;}
.ya_c02485{bottom:707.945339pt;}
.y9_c02485{bottom:779.945531pt;}
.y7_c02485{bottom:823.786427pt;}
.y3_c02485{bottom:839.786939pt;}
.y8_c02485{bottom:870.505979pt;}
.y6_c02485{bottom:899.946203pt;}
.y5_c02485{bottom:915.946715pt;}
.y2_c02485{bottom:945.386939pt;}
.y4_c02485{bottom:959.786555pt;}
.y1_c02485{bottom:975.787067pt;}
.ye_c02485{bottom:1008.747067pt;}
.h3_c02485{height:28.916250pt;}
.h1_c02485{height:37.063125pt;}
.h2_c02485{height:37.166250pt;}
.h4_c02485{height:48.581988pt;}
.h0_c02485{height:1122.666667pt;}
.w1_c02485{width:793.333333pt;}
.w0_c02485{width:793.626667pt;}
.x0_c02485{left:0.000000pt;}
.xd_c02485{left:104.000000pt;}
.x8_c02485{left:391.999872pt;}
.x4_c02485{left:396.160512pt;}
.xb_c02485{left:400.960000pt;}
.x7_c02485{left:404.799648pt;}
.x5_c02485{left:410.560128pt;}
.x1_c02485{left:411.840000pt;}
.xa_c02485{left:429.760320pt;}
.x9_c02485{left:437.439552pt;}
.x6_c02485{left:438.400512pt;}
.xc_c02485{left:450.560320pt;}
.x3_c02485{left:455.039904pt;}
.x2_c02485{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02486 {
    display:none;
  }
  .loading-indicator_c02486.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02486 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02486 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02486" -> "#page-container .classname_c02486")
 */
.pf_c02486 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02486 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02486.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02486 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02486 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02486 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02486 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02486 {overflow:visible;}
  }
}
.c_c02486 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02486 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02486:after { /* webkit #35443 */
  content: '';
}
.t_c02486:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02486 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02486 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02486 { /* info for Javascript */
  display:none;
}
.l_c02486 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02486 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02486 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02486:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02486 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02486.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02486.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02486 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02486{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02486;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02486{font-family:ff1_c02486;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02486;src:url('chunks/assets/font_a1623d546abfb0dccca7990c.woff2')format("woff");}.ff2_c02486{font-family:ff2_c02486;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02486;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02486{font-family:ff3_c02486;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02486{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02486{vertical-align:0.000000px;}
.v1_c02486{vertical-align:1.439424px;}
.lsc_c02486{letter-spacing:-1.197504px;}
.ls7_c02486{letter-spacing:-0.613008px;}
.ls9_c02486{letter-spacing:-0.574992px;}
.ls14_c02486{letter-spacing:-0.375408px;}
.ls10_c02486{letter-spacing:-0.275616px;}
.lse_c02486{letter-spacing:-0.261360px;}
.ls6_c02486{letter-spacing:-0.242352px;}
.ls3_c02486{letter-spacing:-0.118800px;}
.ls13_c02486{letter-spacing:0.000000px;}
.ls1_c02486{letter-spacing:0.006048px;}
.ls5_c02486{letter-spacing:0.128304px;}
.lsb_c02486{letter-spacing:0.508464px;}
.ls12_c02486{letter-spacing:0.514080px;}
.lsf_c02486{letter-spacing:0.536976px;}
.lsa_c02486{letter-spacing:0.579744px;}
.ls11_c02486{letter-spacing:0.594000px;}
.ls8_c02486{letter-spacing:0.598752px;}
.ls2_c02486{letter-spacing:0.613008px;}
.lsd_c02486{letter-spacing:0.651024px;}
.ls4_c02486{letter-spacing:0.717552px;}
.ls0_c02486{letter-spacing:0.722304px;}
.sc__c02486{text-shadow:none;}
.sc0_c02486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02486{-webkit-text-stroke:0px transparent;}
.sc0_c02486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02486{word-spacing:-15.126048px;}
.wsa_c02486{word-spacing:-12.474000px;}
.ws9_c02486{word-spacing:-12.416976px;}
.ws4_c02486{word-spacing:-11.637648px;}
.ws2_c02486{word-spacing:-11.266992px;}
.ws15_c02486{word-spacing:-2.159136px;}
.ws10_c02486{word-spacing:-1.083456px;}
.ws12_c02486{word-spacing:-1.012176px;}
.wsd_c02486{word-spacing:-0.974160px;}
.wsf_c02486{word-spacing:-0.118800px;}
.ws13_c02486{word-spacing:-0.099792px;}
.ws14_c02486{word-spacing:-0.085536px;}
.wse_c02486{word-spacing:0.000000px;}
.ws16_c02486{word-spacing:0.014256px;}
.ws11_c02486{word-spacing:0.836352px;}
.wsb_c02486{word-spacing:33.300288px;}
.ws8_c02486{word-spacing:36.143712px;}
.ws6_c02486{word-spacing:36.742464px;}
.ws1_c02486{word-spacing:37.759392px;}
.ws0_c02486{word-spacing:38.020752px;}
.ws3_c02486{word-spacing:39.218256px;}
.ws5_c02486{word-spacing:39.902544px;}
.ws7_c02486{word-spacing:42.026688px;}
._0_c02486{margin-left:-1.948320px;}
._2_c02486{width:1.482624px;}
._5_c02486{width:2.770416px;}
._4_c02486{width:5.749920px;}
._1_c02486{width:50.252400px;}
._3_c02486{width:51.530688px;}
.fc0_c02486{color:rgb(0,0,0);}
.fs0_c02486{font-size:47.520000px;}
.fs1_c02486{font-size:60.480000px;}
.y0_c02486{bottom:0.000000px;}
.y19_c02486{bottom:146.998362px;}
.y1b_c02486{bottom:186.600234px;}
.y1a_c02486{bottom:196.320450px;}
.y18_c02486{bottom:275.878542px;}
.y17_c02486{bottom:356.878758px;}
.y15_c02486{bottom:406.559730px;}
.y11_c02486{bottom:424.560306px;}
.y16_c02486{bottom:458.759262px;}
.y14_c02486{bottom:491.879514px;}
.y13_c02486{bottom:509.880090px;}
.y10_c02486{bottom:543.000342px;}
.y12_c02486{bottom:559.559874px;}
.yf_c02486{bottom:577.560450px;}
.y1c_c02486{bottom:614.280450px;}
.yb_c02486{bottom:667.558326px;}
.yd_c02486{bottom:707.160234px;}
.yc_c02486{bottom:716.880450px;}
.ya_c02486{bottom:796.438506px;}
.y9_c02486{bottom:877.438722px;}
.y7_c02486{bottom:926.759730px;}
.y3_c02486{bottom:944.760306px;}
.y8_c02486{bottom:979.319226px;}
.y6_c02486{bottom:1012.439478px;}
.y5_c02486{bottom:1030.440054px;}
.y2_c02486{bottom:1063.560306px;}
.y4_c02486{bottom:1079.759874px;}
.y1_c02486{bottom:1097.760450px;}
.ye_c02486{bottom:1134.840450px;}
.h3_c02486{height:32.530781px;}
.h1_c02486{height:41.696016px;}
.h2_c02486{height:41.812031px;}
.h4_c02486{height:54.654737px;}
.h0_c02486{height:1263.000000px;}
.w1_c02486{width:892.500000px;}
.w0_c02486{width:892.830000px;}
.x0_c02486{left:0.000000px;}
.xd_c02486{left:117.000000px;}
.x8_c02486{left:440.999856px;}
.x4_c02486{left:445.680576px;}
.xb_c02486{left:451.080000px;}
.x7_c02486{left:455.399604px;}
.x5_c02486{left:461.880144px;}
.x1_c02486{left:463.320000px;}
.xa_c02486{left:483.480360px;}
.x9_c02486{left:492.119496px;}
.x6_c02486{left:493.200576px;}
.xc_c02486{left:506.880360px;}
.x3_c02486{left:511.919892px;}
.x2_c02486{left:526.679604px;}
@media print{
.v0_c02486{vertical-align:0.000000pt;}
.v1_c02486{vertical-align:1.279488pt;}
.lsc_c02486{letter-spacing:-1.064448pt;}
.ls7_c02486{letter-spacing:-0.544896pt;}
.ls9_c02486{letter-spacing:-0.511104pt;}
.ls14_c02486{letter-spacing:-0.333696pt;}
.ls10_c02486{letter-spacing:-0.244992pt;}
.lse_c02486{letter-spacing:-0.232320pt;}
.ls6_c02486{letter-spacing:-0.215424pt;}
.ls3_c02486{letter-spacing:-0.105600pt;}
.ls13_c02486{letter-spacing:0.000000pt;}
.ls1_c02486{letter-spacing:0.005376pt;}
.ls5_c02486{letter-spacing:0.114048pt;}
.lsb_c02486{letter-spacing:0.451968pt;}
.ls12_c02486{letter-spacing:0.456960pt;}
.lsf_c02486{letter-spacing:0.477312pt;}
.lsa_c02486{letter-spacing:0.515328pt;}
.ls11_c02486{letter-spacing:0.528000pt;}
.ls8_c02486{letter-spacing:0.532224pt;}
.ls2_c02486{letter-spacing:0.544896pt;}
.lsd_c02486{letter-spacing:0.578688pt;}
.ls4_c02486{letter-spacing:0.637824pt;}
.ls0_c02486{letter-spacing:0.642048pt;}
.wsc_c02486{word-spacing:-13.445376pt;}
.wsa_c02486{word-spacing:-11.088000pt;}
.ws9_c02486{word-spacing:-11.037312pt;}
.ws4_c02486{word-spacing:-10.344576pt;}
.ws2_c02486{word-spacing:-10.015104pt;}
.ws15_c02486{word-spacing:-1.919232pt;}
.ws10_c02486{word-spacing:-0.963072pt;}
.ws12_c02486{word-spacing:-0.899712pt;}
.wsd_c02486{word-spacing:-0.865920pt;}
.wsf_c02486{word-spacing:-0.105600pt;}
.ws13_c02486{word-spacing:-0.088704pt;}
.ws14_c02486{word-spacing:-0.076032pt;}
.wse_c02486{word-spacing:0.000000pt;}
.ws16_c02486{word-spacing:0.012672pt;}
.ws11_c02486{word-spacing:0.743424pt;}
.wsb_c02486{word-spacing:29.600256pt;}
.ws8_c02486{word-spacing:32.127744pt;}
.ws6_c02486{word-spacing:32.659968pt;}
.ws1_c02486{word-spacing:33.563904pt;}
.ws0_c02486{word-spacing:33.796224pt;}
.ws3_c02486{word-spacing:34.860672pt;}
.ws5_c02486{word-spacing:35.468928pt;}
.ws7_c02486{word-spacing:37.357056pt;}
._0_c02486{margin-left:-1.731840pt;}
._2_c02486{width:1.317888pt;}
._5_c02486{width:2.462592pt;}
._4_c02486{width:5.111040pt;}
._1_c02486{width:44.668800pt;}
._3_c02486{width:45.805056pt;}
.fs0_c02486{font-size:42.240000pt;}
.fs1_c02486{font-size:53.760000pt;}
.y0_c02486{bottom:0.000000pt;}
.y19_c02486{bottom:130.665211pt;}
.y1b_c02486{bottom:165.866875pt;}
.y1a_c02486{bottom:174.507067pt;}
.y18_c02486{bottom:245.225371pt;}
.y17_c02486{bottom:317.225563pt;}
.y15_c02486{bottom:361.386427pt;}
.y11_c02486{bottom:377.386939pt;}
.y16_c02486{bottom:407.786011pt;}
.y14_c02486{bottom:437.226235pt;}
.y13_c02486{bottom:453.226747pt;}
.y10_c02486{bottom:482.666971pt;}
.y12_c02486{bottom:497.386555pt;}
.yf_c02486{bottom:513.387067pt;}
.y1c_c02486{bottom:546.027067pt;}
.yb_c02486{bottom:593.385179pt;}
.yd_c02486{bottom:628.586875pt;}
.yc_c02486{bottom:637.227067pt;}
.ya_c02486{bottom:707.945339pt;}
.y9_c02486{bottom:779.945531pt;}
.y7_c02486{bottom:823.786427pt;}
.y3_c02486{bottom:839.786939pt;}
.y8_c02486{bottom:870.505979pt;}
.y6_c02486{bottom:899.946203pt;}
.y5_c02486{bottom:915.946715pt;}
.y2_c02486{bottom:945.386939pt;}
.y4_c02486{bottom:959.786555pt;}
.y1_c02486{bottom:975.787067pt;}
.ye_c02486{bottom:1008.747067pt;}
.h3_c02486{height:28.916250pt;}
.h1_c02486{height:37.063125pt;}
.h2_c02486{height:37.166250pt;}
.h4_c02486{height:48.581988pt;}
.h0_c02486{height:1122.666667pt;}
.w1_c02486{width:793.333333pt;}
.w0_c02486{width:793.626667pt;}
.x0_c02486{left:0.000000pt;}
.xd_c02486{left:104.000000pt;}
.x8_c02486{left:391.999872pt;}
.x4_c02486{left:396.160512pt;}
.xb_c02486{left:400.960000pt;}
.x7_c02486{left:404.799648pt;}
.x5_c02486{left:410.560128pt;}
.x1_c02486{left:411.840000pt;}
.xa_c02486{left:429.760320pt;}
.x9_c02486{left:437.439552pt;}
.x6_c02486{left:438.400512pt;}
.xc_c02486{left:450.560320pt;}
.x3_c02486{left:455.039904pt;}
.x2_c02486{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02487 {
    display:none;
  }
  .loading-indicator_c02487.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02487 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02487 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02487" -> "#page-container .classname_c02487")
 */
.pf_c02487 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02487 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02487.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02487 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02487 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02487 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02487 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02487 {overflow:visible;}
  }
}
.c_c02487 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02487 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02487:after { /* webkit #35443 */
  content: '';
}
.t_c02487:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02487 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02487 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02487 { /* info for Javascript */
  display:none;
}
.l_c02487 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02487 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02487 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02487:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02487 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02487.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02487.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02487 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02487{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02487;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02487{font-family:ff1_c02487;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02487;src:url('chunks/assets/font_935b0926bf80d3af6113661b.woff2')format("woff");}.ff2_c02487{font-family:ff2_c02487;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02487;src:url('chunks/assets/font_d03cb9023f3508339f73d964.woff2')format("woff");}.ff3_c02487{font-family:ff3_c02487;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02487{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02487{vertical-align:0.000000px;}
.v1_c02487{vertical-align:1.439424px;}
.lse_c02487{letter-spacing:-1.197504px;}
.ls16_c02487{letter-spacing:-0.793584px;}
.ls15_c02487{letter-spacing:-0.774576px;}
.ls19_c02487{letter-spacing:-0.736560px;}
.ls9_c02487{letter-spacing:-0.613008px;}
.lsb_c02487{letter-spacing:-0.574992px;}
.ls18_c02487{letter-spacing:-0.380160px;}
.ls11_c02487{letter-spacing:-0.275616px;}
.ls1a_c02487{letter-spacing:-0.270864px;}
.lsf_c02487{letter-spacing:-0.261360px;}
.ls8_c02487{letter-spacing:-0.242352px;}
.ls5_c02487{letter-spacing:-0.118800px;}
.ls14_c02487{letter-spacing:0.000000px;}
.ls1_c02487{letter-spacing:0.006048px;}
.ls7_c02487{letter-spacing:0.128304px;}
.lsd_c02487{letter-spacing:0.508464px;}
.ls13_c02487{letter-spacing:0.514080px;}
.ls10_c02487{letter-spacing:0.536976px;}
.lsc_c02487{letter-spacing:0.579744px;}
.ls12_c02487{letter-spacing:0.594000px;}
.lsa_c02487{letter-spacing:0.598752px;}
.ls4_c02487{letter-spacing:0.613008px;}
.ls2_c02487{letter-spacing:0.627264px;}
.ls3_c02487{letter-spacing:0.651024px;}
.ls17_c02487{letter-spacing:0.660528px;}
.ls6_c02487{letter-spacing:0.717552px;}
.ls0_c02487{letter-spacing:0.722304px;}
.sc__c02487{text-shadow:none;}
.sc0_c02487{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02487{-webkit-text-stroke:0px transparent;}
.sc0_c02487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02487{word-spacing:-15.126048px;}
.wsd_c02487{word-spacing:-12.507264px;}
.wsa_c02487{word-spacing:-12.474000px;}
.wsf_c02487{word-spacing:-12.459744px;}
.ws9_c02487{word-spacing:-12.416976px;}
.ws4_c02487{word-spacing:-11.637648px;}
.ws2_c02487{word-spacing:-11.266992px;}
.wse_c02487{word-spacing:-11.105424px;}
.ws1a_c02487{word-spacing:-2.159136px;}
.ws15_c02487{word-spacing:-1.083456px;}
.ws1c_c02487{word-spacing:-1.021680px;}
.ws17_c02487{word-spacing:-1.012176px;}
.ws12_c02487{word-spacing:-0.974160px;}
.ws14_c02487{word-spacing:-0.118800px;}
.ws18_c02487{word-spacing:-0.099792px;}
.ws1e_c02487{word-spacing:-0.090288px;}
.ws19_c02487{word-spacing:-0.085536px;}
.ws13_c02487{word-spacing:0.000000px;}
.ws1d_c02487{word-spacing:0.019008px;}
.ws1b_c02487{word-spacing:0.432432px;}
.ws16_c02487{word-spacing:0.836352px;}
.ws11_c02487{word-spacing:6.629040px;}
.wsb_c02487{word-spacing:33.300288px;}
.ws10_c02487{word-spacing:34.836912px;}
.ws8_c02487{word-spacing:36.143712px;}
.ws6_c02487{word-spacing:36.742464px;}
.ws1_c02487{word-spacing:37.759392px;}
.ws0_c02487{word-spacing:38.020752px;}
.ws3_c02487{word-spacing:39.218256px;}
.ws5_c02487{word-spacing:39.902544px;}
.ws7_c02487{word-spacing:42.026688px;}
._0_c02487{margin-left:-1.948320px;}
._2_c02487{width:1.482624px;}
._5_c02487{width:2.770416px;}
._4_c02487{width:5.749920px;}
._6_c02487{width:15.757632px;}
._8_c02487{width:19.982160px;}
._9_c02487{width:23.451120px;}
._7_c02487{width:24.691392px;}
._1_c02487{width:50.252400px;}
._3_c02487{width:51.530688px;}
.fc0_c02487{color:rgb(0,0,0);}
.fs0_c02487{font-size:47.520000px;}
.fs1_c02487{font-size:60.480000px;}
.y0_c02487{bottom:0.000000px;}
.y1a_c02487{bottom:131.878686px;}
.y19_c02487{bottom:146.998362px;}
.y1c_c02487{bottom:186.600234px;}
.y1b_c02487{bottom:196.320450px;}
.y18_c02487{bottom:275.878542px;}
.y17_c02487{bottom:356.878758px;}
.y15_c02487{bottom:406.559730px;}
.y11_c02487{bottom:424.560306px;}
.y16_c02487{bottom:458.759262px;}
.y14_c02487{bottom:491.879514px;}
.y13_c02487{bottom:509.880090px;}
.y10_c02487{bottom:543.000342px;}
.y12_c02487{bottom:559.559874px;}
.yf_c02487{bottom:577.560450px;}
.y1d_c02487{bottom:614.280450px;}
.yb_c02487{bottom:667.558326px;}
.yd_c02487{bottom:707.160234px;}
.yc_c02487{bottom:716.880450px;}
.ya_c02487{bottom:796.438506px;}
.y9_c02487{bottom:877.438722px;}
.y7_c02487{bottom:926.759730px;}
.y3_c02487{bottom:944.760306px;}
.y8_c02487{bottom:979.319226px;}
.y6_c02487{bottom:1012.439478px;}
.y5_c02487{bottom:1030.440054px;}
.y2_c02487{bottom:1063.560306px;}
.y4_c02487{bottom:1079.759874px;}
.y1_c02487{bottom:1097.760450px;}
.ye_c02487{bottom:1134.840450px;}
.h3_c02487{height:32.530781px;}
.h1_c02487{height:41.696016px;}
.h2_c02487{height:41.812031px;}
.h4_c02487{height:54.654737px;}
.h0_c02487{height:1263.000000px;}
.w1_c02487{width:892.500000px;}
.w0_c02487{width:892.830000px;}
.x0_c02487{left:0.000000px;}
.xd_c02487{left:117.000000px;}
.x8_c02487{left:440.999856px;}
.x4_c02487{left:445.680576px;}
.xb_c02487{left:451.080000px;}
.x7_c02487{left:455.399604px;}
.x5_c02487{left:461.880144px;}
.x1_c02487{left:463.320000px;}
.xa_c02487{left:483.480360px;}
.x9_c02487{left:492.119496px;}
.x6_c02487{left:493.200576px;}
.xc_c02487{left:506.880360px;}
.x3_c02487{left:511.919892px;}
.x2_c02487{left:526.679604px;}
.xe_c02487{left:569.880036px;}
@media print{
.v0_c02487{vertical-align:0.000000pt;}
.v1_c02487{vertical-align:1.279488pt;}
.lse_c02487{letter-spacing:-1.064448pt;}
.ls16_c02487{letter-spacing:-0.705408pt;}
.ls15_c02487{letter-spacing:-0.688512pt;}
.ls19_c02487{letter-spacing:-0.654720pt;}
.ls9_c02487{letter-spacing:-0.544896pt;}
.lsb_c02487{letter-spacing:-0.511104pt;}
.ls18_c02487{letter-spacing:-0.337920pt;}
.ls11_c02487{letter-spacing:-0.244992pt;}
.ls1a_c02487{letter-spacing:-0.240768pt;}
.lsf_c02487{letter-spacing:-0.232320pt;}
.ls8_c02487{letter-spacing:-0.215424pt;}
.ls5_c02487{letter-spacing:-0.105600pt;}
.ls14_c02487{letter-spacing:0.000000pt;}
.ls1_c02487{letter-spacing:0.005376pt;}
.ls7_c02487{letter-spacing:0.114048pt;}
.lsd_c02487{letter-spacing:0.451968pt;}
.ls13_c02487{letter-spacing:0.456960pt;}
.ls10_c02487{letter-spacing:0.477312pt;}
.lsc_c02487{letter-spacing:0.515328pt;}
.ls12_c02487{letter-spacing:0.528000pt;}
.lsa_c02487{letter-spacing:0.532224pt;}
.ls4_c02487{letter-spacing:0.544896pt;}
.ls2_c02487{letter-spacing:0.557568pt;}
.ls3_c02487{letter-spacing:0.578688pt;}
.ls17_c02487{letter-spacing:0.587136pt;}
.ls6_c02487{letter-spacing:0.637824pt;}
.ls0_c02487{letter-spacing:0.642048pt;}
.wsc_c02487{word-spacing:-13.445376pt;}
.wsd_c02487{word-spacing:-11.117568pt;}
.wsa_c02487{word-spacing:-11.088000pt;}
.wsf_c02487{word-spacing:-11.075328pt;}
.ws9_c02487{word-spacing:-11.037312pt;}
.ws4_c02487{word-spacing:-10.344576pt;}
.ws2_c02487{word-spacing:-10.015104pt;}
.wse_c02487{word-spacing:-9.871488pt;}
.ws1a_c02487{word-spacing:-1.919232pt;}
.ws15_c02487{word-spacing:-0.963072pt;}
.ws1c_c02487{word-spacing:-0.908160pt;}
.ws17_c02487{word-spacing:-0.899712pt;}
.ws12_c02487{word-spacing:-0.865920pt;}
.ws14_c02487{word-spacing:-0.105600pt;}
.ws18_c02487{word-spacing:-0.088704pt;}
.ws1e_c02487{word-spacing:-0.080256pt;}
.ws19_c02487{word-spacing:-0.076032pt;}
.ws13_c02487{word-spacing:0.000000pt;}
.ws1d_c02487{word-spacing:0.016896pt;}
.ws1b_c02487{word-spacing:0.384384pt;}
.ws16_c02487{word-spacing:0.743424pt;}
.ws11_c02487{word-spacing:5.892480pt;}
.wsb_c02487{word-spacing:29.600256pt;}
.ws10_c02487{word-spacing:30.966144pt;}
.ws8_c02487{word-spacing:32.127744pt;}
.ws6_c02487{word-spacing:32.659968pt;}
.ws1_c02487{word-spacing:33.563904pt;}
.ws0_c02487{word-spacing:33.796224pt;}
.ws3_c02487{word-spacing:34.860672pt;}
.ws5_c02487{word-spacing:35.468928pt;}
.ws7_c02487{word-spacing:37.357056pt;}
._0_c02487{margin-left:-1.731840pt;}
._2_c02487{width:1.317888pt;}
._5_c02487{width:2.462592pt;}
._4_c02487{width:5.111040pt;}
._6_c02487{width:14.006784pt;}
._8_c02487{width:17.761920pt;}
._9_c02487{width:20.845440pt;}
._7_c02487{width:21.947904pt;}
._1_c02487{width:44.668800pt;}
._3_c02487{width:45.805056pt;}
.fs0_c02487{font-size:42.240000pt;}
.fs1_c02487{font-size:53.760000pt;}
.y0_c02487{bottom:0.000000pt;}
.y1a_c02487{bottom:117.225499pt;}
.y19_c02487{bottom:130.665211pt;}
.y1c_c02487{bottom:165.866875pt;}
.y1b_c02487{bottom:174.507067pt;}
.y18_c02487{bottom:245.225371pt;}
.y17_c02487{bottom:317.225563pt;}
.y15_c02487{bottom:361.386427pt;}
.y11_c02487{bottom:377.386939pt;}
.y16_c02487{bottom:407.786011pt;}
.y14_c02487{bottom:437.226235pt;}
.y13_c02487{bottom:453.226747pt;}
.y10_c02487{bottom:482.666971pt;}
.y12_c02487{bottom:497.386555pt;}
.yf_c02487{bottom:513.387067pt;}
.y1d_c02487{bottom:546.027067pt;}
.yb_c02487{bottom:593.385179pt;}
.yd_c02487{bottom:628.586875pt;}
.yc_c02487{bottom:637.227067pt;}
.ya_c02487{bottom:707.945339pt;}
.y9_c02487{bottom:779.945531pt;}
.y7_c02487{bottom:823.786427pt;}
.y3_c02487{bottom:839.786939pt;}
.y8_c02487{bottom:870.505979pt;}
.y6_c02487{bottom:899.946203pt;}
.y5_c02487{bottom:915.946715pt;}
.y2_c02487{bottom:945.386939pt;}
.y4_c02487{bottom:959.786555pt;}
.y1_c02487{bottom:975.787067pt;}
.ye_c02487{bottom:1008.747067pt;}
.h3_c02487{height:28.916250pt;}
.h1_c02487{height:37.063125pt;}
.h2_c02487{height:37.166250pt;}
.h4_c02487{height:48.581988pt;}
.h0_c02487{height:1122.666667pt;}
.w1_c02487{width:793.333333pt;}
.w0_c02487{width:793.626667pt;}
.x0_c02487{left:0.000000pt;}
.xd_c02487{left:104.000000pt;}
.x8_c02487{left:391.999872pt;}
.x4_c02487{left:396.160512pt;}
.xb_c02487{left:400.960000pt;}
.x7_c02487{left:404.799648pt;}
.x5_c02487{left:410.560128pt;}
.x1_c02487{left:411.840000pt;}
.xa_c02487{left:429.760320pt;}
.x9_c02487{left:437.439552pt;}
.x6_c02487{left:438.400512pt;}
.xc_c02487{left:450.560320pt;}
.x3_c02487{left:455.039904pt;}
.x2_c02487{left:468.159648pt;}
.xe_c02487{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02488 {
    display:none;
  }
  .loading-indicator_c02488.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02488 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02488 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02488" -> "#page-container .classname_c02488")
 */
.pf_c02488 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02488 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02488.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02488 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02488 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02488 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02488 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02488 {overflow:visible;}
  }
}
.c_c02488 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02488 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02488:after { /* webkit #35443 */
  content: '';
}
.t_c02488:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02488 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02488 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02488 { /* info for Javascript */
  display:none;
}
.l_c02488 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02488 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02488 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02488:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02488 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02488.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02488.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02488 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02488{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02488;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02488{font-family:ff1_c02488;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02488;src:url('chunks/assets/font_cc1d0a0321b5c38b66680619.woff2')format("woff");}.ff2_c02488{font-family:ff2_c02488;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02488;src:url('chunks/assets/font_dd67a63720d35a82158be0eb.woff2')format("woff");}.ff3_c02488{font-family:ff3_c02488;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02488{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02488{vertical-align:0.000000px;}
.v1_c02488{vertical-align:1.439424px;}
.v2_c02488{vertical-align:33.121440px;}
.lsd_c02488{letter-spacing:-0.793584px;}
.ls18_c02488{letter-spacing:-0.774576px;}
.ls12_c02488{letter-spacing:-0.736560px;}
.ls8_c02488{letter-spacing:-0.613008px;}
.lsa_c02488{letter-spacing:-0.574992px;}
.ls10_c02488{letter-spacing:-0.380160px;}
.ls13_c02488{letter-spacing:-0.270864px;}
.lsf_c02488{letter-spacing:-0.261360px;}
.ls7_c02488{letter-spacing:-0.242352px;}
.ls5_c02488{letter-spacing:-0.118800px;}
.ls16_c02488{letter-spacing:0.000000px;}
.ls3_c02488{letter-spacing:0.006048px;}
.ls6_c02488{letter-spacing:0.128304px;}
.lsc_c02488{letter-spacing:0.508464px;}
.ls15_c02488{letter-spacing:0.514080px;}
.ls11_c02488{letter-spacing:0.536976px;}
.lsb_c02488{letter-spacing:0.579744px;}
.ls14_c02488{letter-spacing:0.594000px;}
.ls9_c02488{letter-spacing:0.598752px;}
.ls4_c02488{letter-spacing:0.613008px;}
.ls0_c02488{letter-spacing:0.627264px;}
.ls1_c02488{letter-spacing:0.651024px;}
.lse_c02488{letter-spacing:0.660528px;}
.ls17_c02488{letter-spacing:0.717552px;}
.ls2_c02488{letter-spacing:0.722304px;}
.sc__c02488{text-shadow:none;}
.sc0_c02488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02488{-webkit-text-stroke:0px transparent;}
.sc0_c02488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02488{word-spacing:-15.126048px;}
.ws1_c02488{word-spacing:-12.507264px;}
.wsc_c02488{word-spacing:-12.474000px;}
.ws7_c02488{word-spacing:-12.459744px;}
.ws5_c02488{word-spacing:-11.637648px;}
.ws3_c02488{word-spacing:-11.266992px;}
.wsf_c02488{word-spacing:-11.105424px;}
.ws1c_c02488{word-spacing:-2.159136px;}
.ws15_c02488{word-spacing:-1.083456px;}
.ws17_c02488{word-spacing:-1.021680px;}
.ws13_c02488{word-spacing:-1.012176px;}
.ws11_c02488{word-spacing:-0.974160px;}
.ws14_c02488{word-spacing:-0.118800px;}
.ws18_c02488{word-spacing:-0.099792px;}
.ws1a_c02488{word-spacing:-0.090288px;}
.ws1b_c02488{word-spacing:-0.085536px;}
.ws12_c02488{word-spacing:0.000000px;}
.ws19_c02488{word-spacing:0.019008px;}
.ws16_c02488{word-spacing:0.432432px;}
.wsb_c02488{word-spacing:6.629040px;}
.ws10_c02488{word-spacing:30.298752px;}
.wsd_c02488{word-spacing:33.300288px;}
.wsa_c02488{word-spacing:34.836912px;}
.ws9_c02488{word-spacing:36.143712px;}
.ws2_c02488{word-spacing:37.759392px;}
.ws0_c02488{word-spacing:38.020752px;}
.ws4_c02488{word-spacing:39.218256px;}
.ws6_c02488{word-spacing:39.902544px;}
.ws8_c02488{word-spacing:42.026688px;}
._0_c02488{margin-left:-1.948320px;}
._2_c02488{width:1.259280px;}
._3_c02488{width:5.749920px;}
._4_c02488{width:14.032656px;}
._7_c02488{width:19.982160px;}
._8_c02488{width:23.451120px;}
._6_c02488{width:25.138080px;}
._1_c02488{width:50.252400px;}
._5_c02488{width:52.424064px;}
.fc0_c02488{color:rgb(0,0,0);}
.fs0_c02488{font-size:47.520000px;}
.fs1_c02488{font-size:60.480000px;}
.y0_c02488{bottom:0.000000px;}
.y1b_c02488{bottom:131.878686px;}
.y1a_c02488{bottom:146.998362px;}
.y1d_c02488{bottom:186.600234px;}
.y1c_c02488{bottom:196.320450px;}
.y19_c02488{bottom:275.878542px;}
.y18_c02488{bottom:356.878758px;}
.y16_c02488{bottom:406.559730px;}
.y12_c02488{bottom:424.560306px;}
.y17_c02488{bottom:458.759262px;}
.y15_c02488{bottom:491.879514px;}
.y14_c02488{bottom:509.880090px;}
.y11_c02488{bottom:543.000342px;}
.y13_c02488{bottom:559.559874px;}
.y10_c02488{bottom:577.560450px;}
.y1e_c02488{bottom:614.280450px;}
.yc_c02488{bottom:652.438650px;}
.yb_c02488{bottom:667.558326px;}
.ye_c02488{bottom:707.160234px;}
.yd_c02488{bottom:716.880450px;}
.ya_c02488{bottom:796.438506px;}
.y9_c02488{bottom:877.438722px;}
.y7_c02488{bottom:926.759730px;}
.y3_c02488{bottom:944.760306px;}
.y8_c02488{bottom:979.319226px;}
.y6_c02488{bottom:1012.439478px;}
.y5_c02488{bottom:1030.440054px;}
.y2_c02488{bottom:1063.560306px;}
.y4_c02488{bottom:1079.759874px;}
.y1_c02488{bottom:1097.760450px;}
.yf_c02488{bottom:1134.840450px;}
.h3_c02488{height:32.530781px;}
.h1_c02488{height:41.696016px;}
.h2_c02488{height:41.812031px;}
.h4_c02488{height:54.654737px;}
.h5_c02488{height:74.817456px;}
.h0_c02488{height:1263.000000px;}
.w1_c02488{width:892.500000px;}
.w0_c02488{width:892.830000px;}
.x0_c02488{left:0.000000px;}
.xe_c02488{left:117.000000px;}
.x8_c02488{left:440.999856px;}
.x4_c02488{left:445.680576px;}
.xc_c02488{left:451.080000px;}
.x7_c02488{left:455.399604px;}
.x5_c02488{left:461.880144px;}
.x1_c02488{left:463.320000px;}
.xa_c02488{left:483.479172px;}
.x9_c02488{left:492.119496px;}
.x6_c02488{left:493.200576px;}
.xd_c02488{left:506.880360px;}
.x3_c02488{left:511.919892px;}
.x2_c02488{left:526.679604px;}
.xb_c02488{left:569.878848px;}
@media print{
.v0_c02488{vertical-align:0.000000pt;}
.v1_c02488{vertical-align:1.279488pt;}
.v2_c02488{vertical-align:29.441280pt;}
.lsd_c02488{letter-spacing:-0.705408pt;}
.ls18_c02488{letter-spacing:-0.688512pt;}
.ls12_c02488{letter-spacing:-0.654720pt;}
.ls8_c02488{letter-spacing:-0.544896pt;}
.lsa_c02488{letter-spacing:-0.511104pt;}
.ls10_c02488{letter-spacing:-0.337920pt;}
.ls13_c02488{letter-spacing:-0.240768pt;}
.lsf_c02488{letter-spacing:-0.232320pt;}
.ls7_c02488{letter-spacing:-0.215424pt;}
.ls5_c02488{letter-spacing:-0.105600pt;}
.ls16_c02488{letter-spacing:0.000000pt;}
.ls3_c02488{letter-spacing:0.005376pt;}
.ls6_c02488{letter-spacing:0.114048pt;}
.lsc_c02488{letter-spacing:0.451968pt;}
.ls15_c02488{letter-spacing:0.456960pt;}
.ls11_c02488{letter-spacing:0.477312pt;}
.lsb_c02488{letter-spacing:0.515328pt;}
.ls14_c02488{letter-spacing:0.528000pt;}
.ls9_c02488{letter-spacing:0.532224pt;}
.ls4_c02488{letter-spacing:0.544896pt;}
.ls0_c02488{letter-spacing:0.557568pt;}
.ls1_c02488{letter-spacing:0.578688pt;}
.lse_c02488{letter-spacing:0.587136pt;}
.ls17_c02488{letter-spacing:0.637824pt;}
.ls2_c02488{letter-spacing:0.642048pt;}
.wse_c02488{word-spacing:-13.445376pt;}
.ws1_c02488{word-spacing:-11.117568pt;}
.wsc_c02488{word-spacing:-11.088000pt;}
.ws7_c02488{word-spacing:-11.075328pt;}
.ws5_c02488{word-spacing:-10.344576pt;}
.ws3_c02488{word-spacing:-10.015104pt;}
.wsf_c02488{word-spacing:-9.871488pt;}
.ws1c_c02488{word-spacing:-1.919232pt;}
.ws15_c02488{word-spacing:-0.963072pt;}
.ws17_c02488{word-spacing:-0.908160pt;}
.ws13_c02488{word-spacing:-0.899712pt;}
.ws11_c02488{word-spacing:-0.865920pt;}
.ws14_c02488{word-spacing:-0.105600pt;}
.ws18_c02488{word-spacing:-0.088704pt;}
.ws1a_c02488{word-spacing:-0.080256pt;}
.ws1b_c02488{word-spacing:-0.076032pt;}
.ws12_c02488{word-spacing:0.000000pt;}
.ws19_c02488{word-spacing:0.016896pt;}
.ws16_c02488{word-spacing:0.384384pt;}
.wsb_c02488{word-spacing:5.892480pt;}
.ws10_c02488{word-spacing:26.932224pt;}
.wsd_c02488{word-spacing:29.600256pt;}
.wsa_c02488{word-spacing:30.966144pt;}
.ws9_c02488{word-spacing:32.127744pt;}
.ws2_c02488{word-spacing:33.563904pt;}
.ws0_c02488{word-spacing:33.796224pt;}
.ws4_c02488{word-spacing:34.860672pt;}
.ws6_c02488{word-spacing:35.468928pt;}
.ws8_c02488{word-spacing:37.357056pt;}
._0_c02488{margin-left:-1.731840pt;}
._2_c02488{width:1.119360pt;}
._3_c02488{width:5.111040pt;}
._4_c02488{width:12.473472pt;}
._7_c02488{width:17.761920pt;}
._8_c02488{width:20.845440pt;}
._6_c02488{width:22.344960pt;}
._1_c02488{width:44.668800pt;}
._5_c02488{width:46.599168pt;}
.fs0_c02488{font-size:42.240000pt;}
.fs1_c02488{font-size:53.760000pt;}
.y0_c02488{bottom:0.000000pt;}
.y1b_c02488{bottom:117.225499pt;}
.y1a_c02488{bottom:130.665211pt;}
.y1d_c02488{bottom:165.866875pt;}
.y1c_c02488{bottom:174.507067pt;}
.y19_c02488{bottom:245.225371pt;}
.y18_c02488{bottom:317.225563pt;}
.y16_c02488{bottom:361.386427pt;}
.y12_c02488{bottom:377.386939pt;}
.y17_c02488{bottom:407.786011pt;}
.y15_c02488{bottom:437.226235pt;}
.y14_c02488{bottom:453.226747pt;}
.y11_c02488{bottom:482.666971pt;}
.y13_c02488{bottom:497.386555pt;}
.y10_c02488{bottom:513.387067pt;}
.y1e_c02488{bottom:546.027067pt;}
.yc_c02488{bottom:579.945467pt;}
.yb_c02488{bottom:593.385179pt;}
.ye_c02488{bottom:628.586875pt;}
.yd_c02488{bottom:637.227067pt;}
.ya_c02488{bottom:707.945339pt;}
.y9_c02488{bottom:779.945531pt;}
.y7_c02488{bottom:823.786427pt;}
.y3_c02488{bottom:839.786939pt;}
.y8_c02488{bottom:870.505979pt;}
.y6_c02488{bottom:899.946203pt;}
.y5_c02488{bottom:915.946715pt;}
.y2_c02488{bottom:945.386939pt;}
.y4_c02488{bottom:959.786555pt;}
.y1_c02488{bottom:975.787067pt;}
.yf_c02488{bottom:1008.747067pt;}
.h3_c02488{height:28.916250pt;}
.h1_c02488{height:37.063125pt;}
.h2_c02488{height:37.166250pt;}
.h4_c02488{height:48.581988pt;}
.h5_c02488{height:66.504405pt;}
.h0_c02488{height:1122.666667pt;}
.w1_c02488{width:793.333333pt;}
.w0_c02488{width:793.626667pt;}
.x0_c02488{left:0.000000pt;}
.xe_c02488{left:104.000000pt;}
.x8_c02488{left:391.999872pt;}
.x4_c02488{left:396.160512pt;}
.xc_c02488{left:400.960000pt;}
.x7_c02488{left:404.799648pt;}
.x5_c02488{left:410.560128pt;}
.x1_c02488{left:411.840000pt;}
.xa_c02488{left:429.759264pt;}
.x9_c02488{left:437.439552pt;}
.x6_c02488{left:438.400512pt;}
.xd_c02488{left:450.560320pt;}
.x3_c02488{left:455.039904pt;}
.x2_c02488{left:468.159648pt;}
.xb_c02488{left:506.558976pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02489 {
    display:none;
  }
  .loading-indicator_c02489.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02489 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02489 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02489" -> "#page-container .classname_c02489")
 */
.pf_c02489 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02489 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02489.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02489 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02489 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02489 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02489 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02489 {overflow:visible;}
  }
}
.c_c02489 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02489 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02489:after { /* webkit #35443 */
  content: '';
}
.t_c02489:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02489 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02489 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02489 { /* info for Javascript */
  display:none;
}
.l_c02489 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02489 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02489 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02489:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02489 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02489.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02489.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02489 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02489{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02489;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02489{font-family:ff1_c02489;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02489;src:url('chunks/assets/font_a2fc7eb0eb68d1b8d4ec6004.woff2')format("woff");}.ff2_c02489{font-family:ff2_c02489;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02489;src:url('chunks/assets/font_d03cb9023f3508339f73d964.woff2')format("woff");}.ff3_c02489{font-family:ff3_c02489;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02489{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02489{vertical-align:0.000000px;}
.v1_c02489{vertical-align:1.439424px;}
.lse_c02489{letter-spacing:-0.793584px;}
.ls17_c02489{letter-spacing:-0.774576px;}
.ls12_c02489{letter-spacing:-0.736560px;}
.ls9_c02489{letter-spacing:-0.613008px;}
.lsb_c02489{letter-spacing:-0.574992px;}
.ls10_c02489{letter-spacing:-0.380160px;}
.ls13_c02489{letter-spacing:-0.270864px;}
.lsf_c02489{letter-spacing:-0.261360px;}
.ls8_c02489{letter-spacing:-0.242352px;}
.ls5_c02489{letter-spacing:-0.118800px;}
.ls16_c02489{letter-spacing:0.000000px;}
.ls2_c02489{letter-spacing:0.006048px;}
.ls6_c02489{letter-spacing:0.128304px;}
.lsd_c02489{letter-spacing:0.508464px;}
.ls15_c02489{letter-spacing:0.514080px;}
.ls11_c02489{letter-spacing:0.536976px;}
.lsc_c02489{letter-spacing:0.579744px;}
.ls14_c02489{letter-spacing:0.594000px;}
.lsa_c02489{letter-spacing:0.598752px;}
.ls4_c02489{letter-spacing:0.613008px;}
.ls0_c02489{letter-spacing:0.627264px;}
.ls3_c02489{letter-spacing:0.651024px;}
.ls7_c02489{letter-spacing:0.717552px;}
.ls1_c02489{letter-spacing:0.722304px;}
.sc__c02489{text-shadow:none;}
.sc0_c02489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02489{-webkit-text-stroke:0px transparent;}
.sc0_c02489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02489{word-spacing:-15.126048px;}
.ws1_c02489{word-spacing:-12.507264px;}
.wsb_c02489{word-spacing:-12.474000px;}
.ws7_c02489{word-spacing:-12.459744px;}
.ws5_c02489{word-spacing:-11.637648px;}
.ws3_c02489{word-spacing:-11.266992px;}
.wse_c02489{word-spacing:-11.105424px;}
.ws18_c02489{word-spacing:-2.159136px;}
.ws12_c02489{word-spacing:-1.083456px;}
.ws19_c02489{word-spacing:-1.012176px;}
.wsf_c02489{word-spacing:-0.974160px;}
.ws11_c02489{word-spacing:-0.118800px;}
.ws14_c02489{word-spacing:-0.099792px;}
.ws16_c02489{word-spacing:-0.090288px;}
.ws17_c02489{word-spacing:-0.085536px;}
.ws10_c02489{word-spacing:0.000000px;}
.ws15_c02489{word-spacing:0.019008px;}
.ws13_c02489{word-spacing:0.432432px;}
.wsa_c02489{word-spacing:6.629040px;}
.wsc_c02489{word-spacing:33.300288px;}
.ws9_c02489{word-spacing:34.836912px;}
.ws2_c02489{word-spacing:37.759392px;}
.ws0_c02489{word-spacing:38.020752px;}
.ws4_c02489{word-spacing:39.218256px;}
.ws6_c02489{word-spacing:39.902544px;}
.ws8_c02489{word-spacing:42.026688px;}
._0_c02489{margin-left:-1.948320px;}
._2_c02489{width:1.259280px;}
._3_c02489{width:5.749920px;}
._6_c02489{width:19.982160px;}
._7_c02489{width:23.451120px;}
._5_c02489{width:25.138080px;}
._1_c02489{width:50.252400px;}
._4_c02489{width:52.424064px;}
.fc0_c02489{color:rgb(0,0,0);}
.fs0_c02489{font-size:47.520000px;}
.fs1_c02489{font-size:60.480000px;}
.y0_c02489{bottom:0.000000px;}
.yb_c02489{bottom:66.240450px;}
.y1e_c02489{bottom:131.878686px;}
.y1d_c02489{bottom:146.998362px;}
.y20_c02489{bottom:186.600234px;}
.y1f_c02489{bottom:196.320450px;}
.y1c_c02489{bottom:275.878542px;}
.y1b_c02489{bottom:356.878758px;}
.y19_c02489{bottom:406.559730px;}
.y15_c02489{bottom:424.560306px;}
.y1a_c02489{bottom:458.759262px;}
.y18_c02489{bottom:491.879514px;}
.y17_c02489{bottom:509.880090px;}
.y14_c02489{bottom:543.000342px;}
.y16_c02489{bottom:559.559874px;}
.y13_c02489{bottom:577.560450px;}
.y21_c02489{bottom:614.280450px;}
.yf_c02489{bottom:652.440378px;}
.ye_c02489{bottom:667.560054px;}
.y11_c02489{bottom:707.160234px;}
.y10_c02489{bottom:716.880450px;}
.yd_c02489{bottom:796.440234px;}
.ya_c02489{bottom:811.200000px;}
.y9_c02489{bottom:877.438722px;}
.yc_c02489{bottom:877.440450px;}
.y7_c02489{bottom:926.759730px;}
.y3_c02489{bottom:944.760306px;}
.y8_c02489{bottom:979.319226px;}
.y6_c02489{bottom:1012.439478px;}
.y5_c02489{bottom:1030.440054px;}
.y2_c02489{bottom:1063.560306px;}
.y4_c02489{bottom:1079.759874px;}
.y1_c02489{bottom:1097.760450px;}
.y12_c02489{bottom:1134.840450px;}
.h3_c02489{height:32.530781px;}
.h1_c02489{height:41.696016px;}
.h2_c02489{height:41.812031px;}
.h5_c02489{height:54.654737px;}
.h4_c02489{height:78.840000px;}
.h0_c02489{height:1263.000000px;}
.w2_c02489{width:215.280000px;}
.w1_c02489{width:892.500000px;}
.w0_c02489{width:892.830000px;}
.x0_c02489{left:0.000000px;}
.xf_c02489{left:117.000000px;}
.x8_c02489{left:440.999856px;}
.x4_c02489{left:445.680576px;}
.xd_c02489{left:451.080000px;}
.x7_c02489{left:455.399604px;}
.x5_c02489{left:461.880144px;}
.x1_c02489{left:463.320000px;}
.xc_c02489{left:483.480108px;}
.x9_c02489{left:492.119496px;}
.x6_c02489{left:493.200576px;}
.xe_c02489{left:506.880360px;}
.x3_c02489{left:511.919892px;}
.x2_c02489{left:526.679604px;}
.xa_c02489{left:569.520000px;}
.xb_c02489{left:650.880000px;}
@media print{
.v0_c02489{vertical-align:0.000000pt;}
.v1_c02489{vertical-align:1.279488pt;}
.lse_c02489{letter-spacing:-0.705408pt;}
.ls17_c02489{letter-spacing:-0.688512pt;}
.ls12_c02489{letter-spacing:-0.654720pt;}
.ls9_c02489{letter-spacing:-0.544896pt;}
.lsb_c02489{letter-spacing:-0.511104pt;}
.ls10_c02489{letter-spacing:-0.337920pt;}
.ls13_c02489{letter-spacing:-0.240768pt;}
.lsf_c02489{letter-spacing:-0.232320pt;}
.ls8_c02489{letter-spacing:-0.215424pt;}
.ls5_c02489{letter-spacing:-0.105600pt;}
.ls16_c02489{letter-spacing:0.000000pt;}
.ls2_c02489{letter-spacing:0.005376pt;}
.ls6_c02489{letter-spacing:0.114048pt;}
.lsd_c02489{letter-spacing:0.451968pt;}
.ls15_c02489{letter-spacing:0.456960pt;}
.ls11_c02489{letter-spacing:0.477312pt;}
.lsc_c02489{letter-spacing:0.515328pt;}
.ls14_c02489{letter-spacing:0.528000pt;}
.lsa_c02489{letter-spacing:0.532224pt;}
.ls4_c02489{letter-spacing:0.544896pt;}
.ls0_c02489{letter-spacing:0.557568pt;}
.ls3_c02489{letter-spacing:0.578688pt;}
.ls7_c02489{letter-spacing:0.637824pt;}
.ls1_c02489{letter-spacing:0.642048pt;}
.wsd_c02489{word-spacing:-13.445376pt;}
.ws1_c02489{word-spacing:-11.117568pt;}
.wsb_c02489{word-spacing:-11.088000pt;}
.ws7_c02489{word-spacing:-11.075328pt;}
.ws5_c02489{word-spacing:-10.344576pt;}
.ws3_c02489{word-spacing:-10.015104pt;}
.wse_c02489{word-spacing:-9.871488pt;}
.ws18_c02489{word-spacing:-1.919232pt;}
.ws12_c02489{word-spacing:-0.963072pt;}
.ws19_c02489{word-spacing:-0.899712pt;}
.wsf_c02489{word-spacing:-0.865920pt;}
.ws11_c02489{word-spacing:-0.105600pt;}
.ws14_c02489{word-spacing:-0.088704pt;}
.ws16_c02489{word-spacing:-0.080256pt;}
.ws17_c02489{word-spacing:-0.076032pt;}
.ws10_c02489{word-spacing:0.000000pt;}
.ws15_c02489{word-spacing:0.016896pt;}
.ws13_c02489{word-spacing:0.384384pt;}
.wsa_c02489{word-spacing:5.892480pt;}
.wsc_c02489{word-spacing:29.600256pt;}
.ws9_c02489{word-spacing:30.966144pt;}
.ws2_c02489{word-spacing:33.563904pt;}
.ws0_c02489{word-spacing:33.796224pt;}
.ws4_c02489{word-spacing:34.860672pt;}
.ws6_c02489{word-spacing:35.468928pt;}
.ws8_c02489{word-spacing:37.357056pt;}
._0_c02489{margin-left:-1.731840pt;}
._2_c02489{width:1.119360pt;}
._3_c02489{width:5.111040pt;}
._6_c02489{width:17.761920pt;}
._7_c02489{width:20.845440pt;}
._5_c02489{width:22.344960pt;}
._1_c02489{width:44.668800pt;}
._4_c02489{width:46.599168pt;}
.fs0_c02489{font-size:42.240000pt;}
.fs1_c02489{font-size:53.760000pt;}
.y0_c02489{bottom:0.000000pt;}
.yb_c02489{bottom:58.880400pt;}
.y1e_c02489{bottom:117.225499pt;}
.y1d_c02489{bottom:130.665211pt;}
.y20_c02489{bottom:165.866875pt;}
.y1f_c02489{bottom:174.507067pt;}
.y1c_c02489{bottom:245.225371pt;}
.y1b_c02489{bottom:317.225563pt;}
.y19_c02489{bottom:361.386427pt;}
.y15_c02489{bottom:377.386939pt;}
.y1a_c02489{bottom:407.786011pt;}
.y18_c02489{bottom:437.226235pt;}
.y17_c02489{bottom:453.226747pt;}
.y14_c02489{bottom:482.666971pt;}
.y16_c02489{bottom:497.386555pt;}
.y13_c02489{bottom:513.387067pt;}
.y21_c02489{bottom:546.027067pt;}
.yf_c02489{bottom:579.947003pt;}
.ye_c02489{bottom:593.386715pt;}
.y11_c02489{bottom:628.586875pt;}
.y10_c02489{bottom:637.227067pt;}
.yd_c02489{bottom:707.946875pt;}
.ya_c02489{bottom:721.066667pt;}
.y9_c02489{bottom:779.945531pt;}
.yc_c02489{bottom:779.947067pt;}
.y7_c02489{bottom:823.786427pt;}
.y3_c02489{bottom:839.786939pt;}
.y8_c02489{bottom:870.505979pt;}
.y6_c02489{bottom:899.946203pt;}
.y5_c02489{bottom:915.946715pt;}
.y2_c02489{bottom:945.386939pt;}
.y4_c02489{bottom:959.786555pt;}
.y1_c02489{bottom:975.787067pt;}
.y12_c02489{bottom:1008.747067pt;}
.h3_c02489{height:28.916250pt;}
.h1_c02489{height:37.063125pt;}
.h2_c02489{height:37.166250pt;}
.h5_c02489{height:48.581988pt;}
.h4_c02489{height:70.080000pt;}
.h0_c02489{height:1122.666667pt;}
.w2_c02489{width:191.360000pt;}
.w1_c02489{width:793.333333pt;}
.w0_c02489{width:793.626667pt;}
.x0_c02489{left:0.000000pt;}
.xf_c02489{left:104.000000pt;}
.x8_c02489{left:391.999872pt;}
.x4_c02489{left:396.160512pt;}
.xd_c02489{left:400.960000pt;}
.x7_c02489{left:404.799648pt;}
.x5_c02489{left:410.560128pt;}
.x1_c02489{left:411.840000pt;}
.xc_c02489{left:429.760096pt;}
.x9_c02489{left:437.439552pt;}
.x6_c02489{left:438.400512pt;}
.xe_c02489{left:450.560320pt;}
.x3_c02489{left:455.039904pt;}
.x2_c02489{left:468.159648pt;}
.xa_c02489{left:506.240000pt;}
.xb_c02489{left:578.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02490 {
    display:none;
  }
  .loading-indicator_c02490.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02490 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02490 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02490" -> "#page-container .classname_c02490")
 */
.pf_c02490 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02490 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02490.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02490 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02490 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02490 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02490 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02490 {overflow:visible;}
  }
}
.c_c02490 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02490 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02490:after { /* webkit #35443 */
  content: '';
}
.t_c02490:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02490 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02490 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02490 { /* info for Javascript */
  display:none;
}
.l_c02490 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02490 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02490 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02490:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02490 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02490.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02490.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02490 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02490{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02490;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02490{font-family:ff1_c02490;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02490;src:url('chunks/assets/font_406c17d4f3282940e3b6d988.woff2')format("woff");}.ff2_c02490{font-family:ff2_c02490;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02490;src:url('chunks/assets/font_0aef463f82a24970460cb3ad.woff2')format("woff");}.ff3_c02490{font-family:ff3_c02490;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02490{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02490{vertical-align:0.000000px;}
.v2_c02490{vertical-align:1.439424px;}
.v1_c02490{vertical-align:33.121440px;}
.lsf_c02490{letter-spacing:-0.793584px;}
.lsc_c02490{letter-spacing:-0.774576px;}
.ls10_c02490{letter-spacing:-0.769824px;}
.ls18_c02490{letter-spacing:-0.722304px;}
.ls9_c02490{letter-spacing:-0.613008px;}
.lsb_c02490{letter-spacing:-0.574992px;}
.ls15_c02490{letter-spacing:-0.323136px;}
.ls13_c02490{letter-spacing:-0.275616px;}
.ls11_c02490{letter-spacing:-0.261360px;}
.ls8_c02490{letter-spacing:-0.242352px;}
.ls5_c02490{letter-spacing:-0.118800px;}
.ls17_c02490{letter-spacing:0.000000px;}
.ls1_c02490{letter-spacing:0.006048px;}
.ls7_c02490{letter-spacing:0.128304px;}
.ls1d_c02490{letter-spacing:0.194832px;}
.ls1c_c02490{letter-spacing:0.209088px;}
.lse_c02490{letter-spacing:0.508464px;}
.ls16_c02490{letter-spacing:0.514080px;}
.ls12_c02490{letter-spacing:0.536976px;}
.ls1a_c02490{letter-spacing:0.555984px;}
.ls1b_c02490{letter-spacing:0.560736px;}
.lsd_c02490{letter-spacing:0.579744px;}
.ls14_c02490{letter-spacing:0.594000px;}
.lsa_c02490{letter-spacing:0.598752px;}
.ls4_c02490{letter-spacing:0.613008px;}
.ls0_c02490{letter-spacing:0.651024px;}
.ls19_c02490{letter-spacing:0.655776px;}
.ls3_c02490{letter-spacing:0.679536px;}
.ls6_c02490{letter-spacing:0.717552px;}
.ls2_c02490{letter-spacing:0.722304px;}
.sc__c02490{text-shadow:none;}
.sc0_c02490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02490{-webkit-text-stroke:0px transparent;}
.sc0_c02490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02490{word-spacing:-15.126048px;}
.ws18_c02490{word-spacing:-12.474000px;}
.ws7_c02490{word-spacing:-12.459744px;}
.ws14_c02490{word-spacing:-12.440736px;}
.wsb_c02490{word-spacing:-12.416976px;}
.ws4_c02490{word-spacing:-11.637648px;}
.ws2_c02490{word-spacing:-11.266992px;}
.ws6_c02490{word-spacing:-11.105424px;}
.ws23_c02490{word-spacing:-2.159136px;}
.ws20_c02490{word-spacing:-1.083456px;}
.ws25_c02490{word-spacing:-1.040688px;}
.ws1b_c02490{word-spacing:-1.012176px;}
.ws19_c02490{word-spacing:-0.974160px;}
.ws1c_c02490{word-spacing:-0.118800px;}
.ws1f_c02490{word-spacing:-0.099792px;}
.ws21_c02490{word-spacing:-0.085536px;}
.ws22_c02490{word-spacing:-0.038016px;}
.ws1a_c02490{word-spacing:0.000000px;}
.ws24_c02490{word-spacing:0.361152px;}
.ws1e_c02490{word-spacing:0.408672px;}
.ws1d_c02490{word-spacing:0.432432px;}
.ws17_c02490{word-spacing:2.157408px;}
.ws16_c02490{word-spacing:6.092064px;}
.ws10_c02490{word-spacing:6.724080px;}
.ws12_c02490{word-spacing:16.655760px;}
.ws13_c02490{word-spacing:17.777232px;}
.wsa_c02490{word-spacing:18.399744px;}
.ws11_c02490{word-spacing:18.447264px;}
.wsc_c02490{word-spacing:30.298752px;}
.wsd_c02490{word-spacing:33.300288px;}
.ws9_c02490{word-spacing:36.143712px;}
.wsf_c02490{word-spacing:36.742464px;}
.ws1_c02490{word-spacing:37.759392px;}
.ws0_c02490{word-spacing:38.020752px;}
.ws3_c02490{word-spacing:39.218256px;}
.ws5_c02490{word-spacing:39.902544px;}
.ws8_c02490{word-spacing:42.026688px;}
.ws15_c02490{word-spacing:57.903120px;}
._0_c02490{margin-left:-1.948320px;}
._2_c02490{width:1.482624px;}
._4_c02490{width:5.749920px;}
._d_c02490{width:10.867824px;}
._e_c02490{width:12.493008px;}
._c_c02490{width:17.050176px;}
._7_c02490{width:22.899888px;}
._8_c02490{width:25.461216px;}
._9_c02490{width:31.843152px;}
._5_c02490{width:34.214400px;}
._6_c02490{width:36.747216px;}
._1_c02490{width:50.252400px;}
._3_c02490{width:51.530688px;}
._b_c02490{width:66.204864px;}
._a_c02490{width:72.030816px;}
.fc0_c02490{color:rgb(0,0,0);}
.fs0_c02490{font-size:47.520000px;}
.fs1_c02490{font-size:60.480000px;}
.y0_c02490{bottom:0.000000px;}
.y1f_c02490{bottom:147.000738px;}
.y21_c02490{bottom:186.600234px;}
.y20_c02490{bottom:196.320450px;}
.y1e_c02490{bottom:230.880666px;}
.y1d_c02490{bottom:246.000342px;}
.y1c_c02490{bottom:260.760054px;}
.y1b_c02490{bottom:275.879730px;}
.y1a_c02490{bottom:326.999370px;}
.y19_c02490{bottom:341.759082px;}
.y18_c02490{bottom:356.878758px;}
.y16_c02490{bottom:406.559730px;}
.y12_c02490{bottom:424.560306px;}
.y17_c02490{bottom:458.759262px;}
.y15_c02490{bottom:491.879514px;}
.y14_c02490{bottom:509.880090px;}
.y11_c02490{bottom:543.000342px;}
.y13_c02490{bottom:559.559874px;}
.y10_c02490{bottom:577.560450px;}
.y22_c02490{bottom:614.280450px;}
.yc_c02490{bottom:667.559514px;}
.ye_c02490{bottom:707.160234px;}
.yd_c02490{bottom:716.880450px;}
.yb_c02490{bottom:796.439694px;}
.ya_c02490{bottom:862.319046px;}
.y9_c02490{bottom:877.438722px;}
.y7_c02490{bottom:926.759730px;}
.y3_c02490{bottom:944.760306px;}
.y8_c02490{bottom:979.319226px;}
.y6_c02490{bottom:1012.439478px;}
.y5_c02490{bottom:1030.440054px;}
.y2_c02490{bottom:1063.560306px;}
.y4_c02490{bottom:1079.759874px;}
.y1_c02490{bottom:1097.760450px;}
.yf_c02490{bottom:1134.840450px;}
.h3_c02490{height:32.530781px;}
.h1_c02490{height:41.696016px;}
.h2_c02490{height:41.812031px;}
.h5_c02490{height:54.654737px;}
.h4_c02490{height:74.817456px;}
.h0_c02490{height:1263.000000px;}
.w1_c02490{width:892.500000px;}
.w0_c02490{width:892.830000px;}
.x0_c02490{left:0.000000px;}
.xe_c02490{left:117.000000px;}
.x8_c02490{left:440.999856px;}
.x4_c02490{left:445.680576px;}
.xc_c02490{left:451.080000px;}
.x7_c02490{left:455.399604px;}
.x5_c02490{left:461.880144px;}
.x1_c02490{left:463.320000px;}
.xb_c02490{left:483.480360px;}
.x9_c02490{left:492.119496px;}
.x6_c02490{left:493.200576px;}
.xd_c02490{left:506.880360px;}
.x3_c02490{left:511.919892px;}
.x2_c02490{left:526.679604px;}
.xa_c02490{left:569.880036px;}
@media print{
.v0_c02490{vertical-align:0.000000pt;}
.v2_c02490{vertical-align:1.279488pt;}
.v1_c02490{vertical-align:29.441280pt;}
.lsf_c02490{letter-spacing:-0.705408pt;}
.lsc_c02490{letter-spacing:-0.688512pt;}
.ls10_c02490{letter-spacing:-0.684288pt;}
.ls18_c02490{letter-spacing:-0.642048pt;}
.ls9_c02490{letter-spacing:-0.544896pt;}
.lsb_c02490{letter-spacing:-0.511104pt;}
.ls15_c02490{letter-spacing:-0.287232pt;}
.ls13_c02490{letter-spacing:-0.244992pt;}
.ls11_c02490{letter-spacing:-0.232320pt;}
.ls8_c02490{letter-spacing:-0.215424pt;}
.ls5_c02490{letter-spacing:-0.105600pt;}
.ls17_c02490{letter-spacing:0.000000pt;}
.ls1_c02490{letter-spacing:0.005376pt;}
.ls7_c02490{letter-spacing:0.114048pt;}
.ls1d_c02490{letter-spacing:0.173184pt;}
.ls1c_c02490{letter-spacing:0.185856pt;}
.lse_c02490{letter-spacing:0.451968pt;}
.ls16_c02490{letter-spacing:0.456960pt;}
.ls12_c02490{letter-spacing:0.477312pt;}
.ls1a_c02490{letter-spacing:0.494208pt;}
.ls1b_c02490{letter-spacing:0.498432pt;}
.lsd_c02490{letter-spacing:0.515328pt;}
.ls14_c02490{letter-spacing:0.528000pt;}
.lsa_c02490{letter-spacing:0.532224pt;}
.ls4_c02490{letter-spacing:0.544896pt;}
.ls0_c02490{letter-spacing:0.578688pt;}
.ls19_c02490{letter-spacing:0.582912pt;}
.ls3_c02490{letter-spacing:0.604032pt;}
.ls6_c02490{letter-spacing:0.637824pt;}
.ls2_c02490{letter-spacing:0.642048pt;}
.wse_c02490{word-spacing:-13.445376pt;}
.ws18_c02490{word-spacing:-11.088000pt;}
.ws7_c02490{word-spacing:-11.075328pt;}
.ws14_c02490{word-spacing:-11.058432pt;}
.wsb_c02490{word-spacing:-11.037312pt;}
.ws4_c02490{word-spacing:-10.344576pt;}
.ws2_c02490{word-spacing:-10.015104pt;}
.ws6_c02490{word-spacing:-9.871488pt;}
.ws23_c02490{word-spacing:-1.919232pt;}
.ws20_c02490{word-spacing:-0.963072pt;}
.ws25_c02490{word-spacing:-0.925056pt;}
.ws1b_c02490{word-spacing:-0.899712pt;}
.ws19_c02490{word-spacing:-0.865920pt;}
.ws1c_c02490{word-spacing:-0.105600pt;}
.ws1f_c02490{word-spacing:-0.088704pt;}
.ws21_c02490{word-spacing:-0.076032pt;}
.ws22_c02490{word-spacing:-0.033792pt;}
.ws1a_c02490{word-spacing:0.000000pt;}
.ws24_c02490{word-spacing:0.321024pt;}
.ws1e_c02490{word-spacing:0.363264pt;}
.ws1d_c02490{word-spacing:0.384384pt;}
.ws17_c02490{word-spacing:1.917696pt;}
.ws16_c02490{word-spacing:5.415168pt;}
.ws10_c02490{word-spacing:5.976960pt;}
.ws12_c02490{word-spacing:14.805120pt;}
.ws13_c02490{word-spacing:15.801984pt;}
.wsa_c02490{word-spacing:16.355328pt;}
.ws11_c02490{word-spacing:16.397568pt;}
.wsc_c02490{word-spacing:26.932224pt;}
.wsd_c02490{word-spacing:29.600256pt;}
.ws9_c02490{word-spacing:32.127744pt;}
.wsf_c02490{word-spacing:32.659968pt;}
.ws1_c02490{word-spacing:33.563904pt;}
.ws0_c02490{word-spacing:33.796224pt;}
.ws3_c02490{word-spacing:34.860672pt;}
.ws5_c02490{word-spacing:35.468928pt;}
.ws8_c02490{word-spacing:37.357056pt;}
.ws15_c02490{word-spacing:51.469440pt;}
._0_c02490{margin-left:-1.731840pt;}
._2_c02490{width:1.317888pt;}
._4_c02490{width:5.111040pt;}
._d_c02490{width:9.660288pt;}
._e_c02490{width:11.104896pt;}
._c_c02490{width:15.155712pt;}
._7_c02490{width:20.355456pt;}
._8_c02490{width:22.632192pt;}
._9_c02490{width:28.305024pt;}
._5_c02490{width:30.412800pt;}
._6_c02490{width:32.664192pt;}
._1_c02490{width:44.668800pt;}
._3_c02490{width:45.805056pt;}
._b_c02490{width:58.848768pt;}
._a_c02490{width:64.027392pt;}
.fs0_c02490{font-size:42.240000pt;}
.fs1_c02490{font-size:53.760000pt;}
.y0_c02490{bottom:0.000000pt;}
.y1f_c02490{bottom:130.667323pt;}
.y21_c02490{bottom:165.866875pt;}
.y20_c02490{bottom:174.507067pt;}
.y1e_c02490{bottom:205.227259pt;}
.y1d_c02490{bottom:218.666971pt;}
.y1c_c02490{bottom:231.786715pt;}
.y1b_c02490{bottom:245.226427pt;}
.y1a_c02490{bottom:290.666107pt;}
.y19_c02490{bottom:303.785851pt;}
.y18_c02490{bottom:317.225563pt;}
.y16_c02490{bottom:361.386427pt;}
.y12_c02490{bottom:377.386939pt;}
.y17_c02490{bottom:407.786011pt;}
.y15_c02490{bottom:437.226235pt;}
.y14_c02490{bottom:453.226747pt;}
.y11_c02490{bottom:482.666971pt;}
.y13_c02490{bottom:497.386555pt;}
.y10_c02490{bottom:513.387067pt;}
.y22_c02490{bottom:546.027067pt;}
.yc_c02490{bottom:593.386235pt;}
.ye_c02490{bottom:628.586875pt;}
.yd_c02490{bottom:637.227067pt;}
.yb_c02490{bottom:707.946395pt;}
.ya_c02490{bottom:766.505819pt;}
.y9_c02490{bottom:779.945531pt;}
.y7_c02490{bottom:823.786427pt;}
.y3_c02490{bottom:839.786939pt;}
.y8_c02490{bottom:870.505979pt;}
.y6_c02490{bottom:899.946203pt;}
.y5_c02490{bottom:915.946715pt;}
.y2_c02490{bottom:945.386939pt;}
.y4_c02490{bottom:959.786555pt;}
.y1_c02490{bottom:975.787067pt;}
.yf_c02490{bottom:1008.747067pt;}
.h3_c02490{height:28.916250pt;}
.h1_c02490{height:37.063125pt;}
.h2_c02490{height:37.166250pt;}
.h5_c02490{height:48.581988pt;}
.h4_c02490{height:66.504405pt;}
.h0_c02490{height:1122.666667pt;}
.w1_c02490{width:793.333333pt;}
.w0_c02490{width:793.626667pt;}
.x0_c02490{left:0.000000pt;}
.xe_c02490{left:104.000000pt;}
.x8_c02490{left:391.999872pt;}
.x4_c02490{left:396.160512pt;}
.xc_c02490{left:400.960000pt;}
.x7_c02490{left:404.799648pt;}
.x5_c02490{left:410.560128pt;}
.x1_c02490{left:411.840000pt;}
.xb_c02490{left:429.760320pt;}
.x9_c02490{left:437.439552pt;}
.x6_c02490{left:438.400512pt;}
.xd_c02490{left:450.560320pt;}
.x3_c02490{left:455.039904pt;}
.x2_c02490{left:468.159648pt;}
.xa_c02490{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02491 {
    display:none;
  }
  .loading-indicator_c02491.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02491 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02491 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02491" -> "#page-container .classname_c02491")
 */
.pf_c02491 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02491 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02491.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02491 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02491 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02491 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02491 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02491 {overflow:visible;}
  }
}
.c_c02491 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02491 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02491:after { /* webkit #35443 */
  content: '';
}
.t_c02491:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02491 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02491 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02491 { /* info for Javascript */
  display:none;
}
.l_c02491 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02491 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02491 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02491:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02491 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02491.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02491.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02491 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02491{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02491;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02491{font-family:ff1_c02491;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02491;src:url('chunks/assets/font_86ec4dac4195b18ebaa0bb67.woff2')format("woff");}.ff2_c02491{font-family:ff2_c02491;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02491;src:url('chunks/assets/font_2338a7cbc4291be538facfc7.woff2')format("woff");}.ff3_c02491{font-family:ff3_c02491;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02491{vertical-align:0.000000px;}
.v1_c02491{vertical-align:1.439424px;}
.ls15_c02491{letter-spacing:-1.197504px;}
.lsc_c02491{letter-spacing:-0.793584px;}
.ls14_c02491{letter-spacing:-0.760320px;}
.ls7_c02491{letter-spacing:-0.613008px;}
.ls9_c02491{letter-spacing:-0.574992px;}
.lse_c02491{letter-spacing:-0.375408px;}
.ls16_c02491{letter-spacing:-0.318384px;}
.ls10_c02491{letter-spacing:-0.275616px;}
.lsd_c02491{letter-spacing:-0.261360px;}
.ls6_c02491{letter-spacing:-0.242352px;}
.ls3_c02491{letter-spacing:-0.118800px;}
.ls13_c02491{letter-spacing:0.000000px;}
.ls1_c02491{letter-spacing:0.006048px;}
.ls5_c02491{letter-spacing:0.128304px;}
.lsb_c02491{letter-spacing:0.508464px;}
.ls12_c02491{letter-spacing:0.514080px;}
.lsf_c02491{letter-spacing:0.536976px;}
.lsa_c02491{letter-spacing:0.579744px;}
.ls11_c02491{letter-spacing:0.594000px;}
.ls8_c02491{letter-spacing:0.598752px;}
.ls2_c02491{letter-spacing:0.613008px;}
.ls4_c02491{letter-spacing:0.717552px;}
.ls0_c02491{letter-spacing:0.722304px;}
.sc__c02491{text-shadow:none;}
.sc0_c02491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02491{-webkit-text-stroke:0px transparent;}
.sc0_c02491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02491{word-spacing:-15.126048px;}
.wsa_c02491{word-spacing:-12.474000px;}
.ws6_c02491{word-spacing:-12.459744px;}
.ws9_c02491{word-spacing:-12.416976px;}
.ws4_c02491{word-spacing:-11.637648px;}
.ws2_c02491{word-spacing:-11.266992px;}
.ws17_c02491{word-spacing:-2.159136px;}
.ws12_c02491{word-spacing:-1.083456px;}
.wsf_c02491{word-spacing:-0.974160px;}
.ws11_c02491{word-spacing:-0.118800px;}
.ws14_c02491{word-spacing:-0.099792px;}
.ws16_c02491{word-spacing:-0.085536px;}
.ws10_c02491{word-spacing:0.000000px;}
.ws15_c02491{word-spacing:0.014256px;}
.ws18_c02491{word-spacing:0.399168px;}
.ws13_c02491{word-spacing:0.432432px;}
.wse_c02491{word-spacing:2.798928px;}
.wsd_c02491{word-spacing:5.997024px;}
.wsb_c02491{word-spacing:33.300288px;}
.ws8_c02491{word-spacing:36.143712px;}
.ws1_c02491{word-spacing:37.759392px;}
.ws0_c02491{word-spacing:38.020752px;}
.ws3_c02491{word-spacing:39.218256px;}
.ws5_c02491{word-spacing:39.902544px;}
.ws7_c02491{word-spacing:42.026688px;}
._0_c02491{margin-left:-1.948320px;}
._2_c02491{width:1.482624px;}
._4_c02491{width:5.749920px;}
._6_c02491{width:11.623392px;}
._5_c02491{width:17.724960px;}
._1_c02491{width:50.252400px;}
._3_c02491{width:51.530688px;}
.fc0_c02491{color:rgb(0,0,0);}
.fs0_c02491{font-size:47.520000px;}
.fs1_c02491{font-size:60.480000px;}
.y0_c02491{bottom:0.000000px;}
.y1a_c02491{bottom:146.998362px;}
.y1c_c02491{bottom:186.600234px;}
.y1b_c02491{bottom:196.320450px;}
.y19_c02491{bottom:260.758866px;}
.y18_c02491{bottom:275.878542px;}
.y17_c02491{bottom:356.878758px;}
.y15_c02491{bottom:406.559730px;}
.y11_c02491{bottom:424.560306px;}
.y16_c02491{bottom:458.759262px;}
.y14_c02491{bottom:491.879514px;}
.y13_c02491{bottom:509.880090px;}
.y10_c02491{bottom:543.000342px;}
.y12_c02491{bottom:559.559874px;}
.yf_c02491{bottom:577.560450px;}
.y1d_c02491{bottom:614.280450px;}
.yb_c02491{bottom:667.558326px;}
.yd_c02491{bottom:707.160234px;}
.yc_c02491{bottom:716.880450px;}
.ya_c02491{bottom:796.438506px;}
.y9_c02491{bottom:877.438722px;}
.y7_c02491{bottom:926.759730px;}
.y3_c02491{bottom:944.760306px;}
.y8_c02491{bottom:979.319226px;}
.y6_c02491{bottom:1012.439478px;}
.y5_c02491{bottom:1030.440054px;}
.y2_c02491{bottom:1063.560306px;}
.y4_c02491{bottom:1079.759874px;}
.y1_c02491{bottom:1097.760450px;}
.ye_c02491{bottom:1134.840450px;}
.h3_c02491{height:32.530781px;}
.h1_c02491{height:41.696016px;}
.h2_c02491{height:41.812031px;}
.h4_c02491{height:54.654737px;}
.h0_c02491{height:1263.000000px;}
.w1_c02491{width:892.500000px;}
.w0_c02491{width:892.830000px;}
.x0_c02491{left:0.000000px;}
.xd_c02491{left:117.000000px;}
.x8_c02491{left:440.999856px;}
.x4_c02491{left:445.680576px;}
.xb_c02491{left:451.080000px;}
.x7_c02491{left:455.399604px;}
.x5_c02491{left:461.880144px;}
.x1_c02491{left:463.320000px;}
.xa_c02491{left:483.480360px;}
.x9_c02491{left:492.119496px;}
.x6_c02491{left:493.200576px;}
.xc_c02491{left:506.880360px;}
.x3_c02491{left:511.919892px;}
.x2_c02491{left:526.679604px;}
.xe_c02491{left:569.880036px;}
@media print{
.v0_c02491{vertical-align:0.000000pt;}
.v1_c02491{vertical-align:1.279488pt;}
.ls15_c02491{letter-spacing:-1.064448pt;}
.lsc_c02491{letter-spacing:-0.705408pt;}
.ls14_c02491{letter-spacing:-0.675840pt;}
.ls7_c02491{letter-spacing:-0.544896pt;}
.ls9_c02491{letter-spacing:-0.511104pt;}
.lse_c02491{letter-spacing:-0.333696pt;}
.ls16_c02491{letter-spacing:-0.283008pt;}
.ls10_c02491{letter-spacing:-0.244992pt;}
.lsd_c02491{letter-spacing:-0.232320pt;}
.ls6_c02491{letter-spacing:-0.215424pt;}
.ls3_c02491{letter-spacing:-0.105600pt;}
.ls13_c02491{letter-spacing:0.000000pt;}
.ls1_c02491{letter-spacing:0.005376pt;}
.ls5_c02491{letter-spacing:0.114048pt;}
.lsb_c02491{letter-spacing:0.451968pt;}
.ls12_c02491{letter-spacing:0.456960pt;}
.lsf_c02491{letter-spacing:0.477312pt;}
.lsa_c02491{letter-spacing:0.515328pt;}
.ls11_c02491{letter-spacing:0.528000pt;}
.ls8_c02491{letter-spacing:0.532224pt;}
.ls2_c02491{letter-spacing:0.544896pt;}
.ls4_c02491{letter-spacing:0.637824pt;}
.ls0_c02491{letter-spacing:0.642048pt;}
.wsc_c02491{word-spacing:-13.445376pt;}
.wsa_c02491{word-spacing:-11.088000pt;}
.ws6_c02491{word-spacing:-11.075328pt;}
.ws9_c02491{word-spacing:-11.037312pt;}
.ws4_c02491{word-spacing:-10.344576pt;}
.ws2_c02491{word-spacing:-10.015104pt;}
.ws17_c02491{word-spacing:-1.919232pt;}
.ws12_c02491{word-spacing:-0.963072pt;}
.wsf_c02491{word-spacing:-0.865920pt;}
.ws11_c02491{word-spacing:-0.105600pt;}
.ws14_c02491{word-spacing:-0.088704pt;}
.ws16_c02491{word-spacing:-0.076032pt;}
.ws10_c02491{word-spacing:0.000000pt;}
.ws15_c02491{word-spacing:0.012672pt;}
.ws18_c02491{word-spacing:0.354816pt;}
.ws13_c02491{word-spacing:0.384384pt;}
.wse_c02491{word-spacing:2.487936pt;}
.wsd_c02491{word-spacing:5.330688pt;}
.wsb_c02491{word-spacing:29.600256pt;}
.ws8_c02491{word-spacing:32.127744pt;}
.ws1_c02491{word-spacing:33.563904pt;}
.ws0_c02491{word-spacing:33.796224pt;}
.ws3_c02491{word-spacing:34.860672pt;}
.ws5_c02491{word-spacing:35.468928pt;}
.ws7_c02491{word-spacing:37.357056pt;}
._0_c02491{margin-left:-1.731840pt;}
._2_c02491{width:1.317888pt;}
._4_c02491{width:5.111040pt;}
._6_c02491{width:10.331904pt;}
._5_c02491{width:15.755520pt;}
._1_c02491{width:44.668800pt;}
._3_c02491{width:45.805056pt;}
.fs0_c02491{font-size:42.240000pt;}
.fs1_c02491{font-size:53.760000pt;}
.y0_c02491{bottom:0.000000pt;}
.y1a_c02491{bottom:130.665211pt;}
.y1c_c02491{bottom:165.866875pt;}
.y1b_c02491{bottom:174.507067pt;}
.y19_c02491{bottom:231.785659pt;}
.y18_c02491{bottom:245.225371pt;}
.y17_c02491{bottom:317.225563pt;}
.y15_c02491{bottom:361.386427pt;}
.y11_c02491{bottom:377.386939pt;}
.y16_c02491{bottom:407.786011pt;}
.y14_c02491{bottom:437.226235pt;}
.y13_c02491{bottom:453.226747pt;}
.y10_c02491{bottom:482.666971pt;}
.y12_c02491{bottom:497.386555pt;}
.yf_c02491{bottom:513.387067pt;}
.y1d_c02491{bottom:546.027067pt;}
.yb_c02491{bottom:593.385179pt;}
.yd_c02491{bottom:628.586875pt;}
.yc_c02491{bottom:637.227067pt;}
.ya_c02491{bottom:707.945339pt;}
.y9_c02491{bottom:779.945531pt;}
.y7_c02491{bottom:823.786427pt;}
.y3_c02491{bottom:839.786939pt;}
.y8_c02491{bottom:870.505979pt;}
.y6_c02491{bottom:899.946203pt;}
.y5_c02491{bottom:915.946715pt;}
.y2_c02491{bottom:945.386939pt;}
.y4_c02491{bottom:959.786555pt;}
.y1_c02491{bottom:975.787067pt;}
.ye_c02491{bottom:1008.747067pt;}
.h3_c02491{height:28.916250pt;}
.h1_c02491{height:37.063125pt;}
.h2_c02491{height:37.166250pt;}
.h4_c02491{height:48.581988pt;}
.h0_c02491{height:1122.666667pt;}
.w1_c02491{width:793.333333pt;}
.w0_c02491{width:793.626667pt;}
.x0_c02491{left:0.000000pt;}
.xd_c02491{left:104.000000pt;}
.x8_c02491{left:391.999872pt;}
.x4_c02491{left:396.160512pt;}
.xb_c02491{left:400.960000pt;}
.x7_c02491{left:404.799648pt;}
.x5_c02491{left:410.560128pt;}
.x1_c02491{left:411.840000pt;}
.xa_c02491{left:429.760320pt;}
.x9_c02491{left:437.439552pt;}
.x6_c02491{left:438.400512pt;}
.xc_c02491{left:450.560320pt;}
.x3_c02491{left:455.039904pt;}
.x2_c02491{left:468.159648pt;}
.xe_c02491{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02492 {
    display:none;
  }
  .loading-indicator_c02492.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02492 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02492 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02492" -> "#page-container .classname_c02492")
 */
.pf_c02492 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02492 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02492.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02492 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02492 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02492 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02492 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02492 {overflow:visible;}
  }
}
.c_c02492 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02492 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02492:after { /* webkit #35443 */
  content: '';
}
.t_c02492:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02492 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02492 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02492 { /* info for Javascript */
  display:none;
}
.l_c02492 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02492 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02492 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02492:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02492 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02492.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02492.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02492 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02492{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02492;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02492{font-family:ff1_c02492;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02492;src:url('chunks/assets/font_aa7c579043fdb1858d5a7799.woff2')format("woff");}.ff2_c02492{font-family:ff2_c02492;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02492;src:url('chunks/assets/font_d605a689572de19d2491bafd.woff2')format("woff");}.ff3_c02492{font-family:ff3_c02492;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02492{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c02492{vertical-align:-1.440720px;}
.v0_c02492{vertical-align:0.000000px;}
.v1_c02492{vertical-align:1.439424px;}
.lsc_c02492{letter-spacing:-0.807840px;}
.lse_c02492{letter-spacing:-0.793584px;}
.ls17_c02492{letter-spacing:-0.718272px;}
.ls8_c02492{letter-spacing:-0.613008px;}
.lsa_c02492{letter-spacing:-0.574992px;}
.ls11_c02492{letter-spacing:-0.275616px;}
.lsf_c02492{letter-spacing:-0.261360px;}
.ls7_c02492{letter-spacing:-0.242352px;}
.ls5_c02492{letter-spacing:-0.118800px;}
.ls14_c02492{letter-spacing:0.000000px;}
.ls1_c02492{letter-spacing:0.006048px;}
.ls6_c02492{letter-spacing:0.128304px;}
.ls3_c02492{letter-spacing:0.409248px;}
.ls19_c02492{letter-spacing:0.492768px;}
.lsd_c02492{letter-spacing:0.508464px;}
.ls13_c02492{letter-spacing:0.514080px;}
.ls10_c02492{letter-spacing:0.536976px;}
.lsb_c02492{letter-spacing:0.579744px;}
.ls12_c02492{letter-spacing:0.594000px;}
.ls9_c02492{letter-spacing:0.598752px;}
.ls4_c02492{letter-spacing:0.613008px;}
.ls15_c02492{letter-spacing:0.636768px;}
.ls16_c02492{letter-spacing:0.651024px;}
.ls2_c02492{letter-spacing:0.717552px;}
.ls18_c02492{letter-spacing:0.718272px;}
.ls0_c02492{letter-spacing:0.722304px;}
.sc__c02492{text-shadow:none;}
.sc0_c02492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02492{-webkit-text-stroke:0px transparent;}
.sc0_c02492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02492{word-spacing:-15.126048px;}
.wsa_c02492{word-spacing:-12.474000px;}
.ws8_c02492{word-spacing:-12.459744px;}
.ws9_c02492{word-spacing:-12.416976px;}
.ws4_c02492{word-spacing:-11.637648px;}
.ws2_c02492{word-spacing:-11.266992px;}
.ws11_c02492{word-spacing:-10.849248px;}
.ws1e_c02492{word-spacing:-2.159136px;}
.ws19_c02492{word-spacing:-1.083456px;}
.ws1f_c02492{word-spacing:-1.012176px;}
.ws16_c02492{word-spacing:-0.974160px;}
.ws18_c02492{word-spacing:-0.118800px;}
.ws1c_c02492{word-spacing:-0.099792px;}
.ws1d_c02492{word-spacing:-0.085536px;}
.ws17_c02492{word-spacing:0.000000px;}
.ws20_c02492{word-spacing:0.359136px;}
.ws1b_c02492{word-spacing:0.432432px;}
.ws1a_c02492{word-spacing:0.446688px;}
.wsf_c02492{word-spacing:1.805760px;}
.ws15_c02492{word-spacing:2.154816px;}
.wse_c02492{word-spacing:2.532816px;}
.ws13_c02492{word-spacing:3.244752px;}
.ws10_c02492{word-spacing:3.602016px;}
.ws14_c02492{word-spacing:5.036256px;}
.ws12_c02492{word-spacing:7.554384px;}
.wsb_c02492{word-spacing:33.300288px;}
.wsd_c02492{word-spacing:36.143712px;}
.ws6_c02492{word-spacing:36.742464px;}
.ws1_c02492{word-spacing:37.759392px;}
.ws0_c02492{word-spacing:38.020752px;}
.ws3_c02492{word-spacing:39.218256px;}
.ws5_c02492{word-spacing:39.902544px;}
.ws7_c02492{word-spacing:42.026688px;}
._0_c02492{margin-left:-1.948320px;}
._2_c02492{width:1.482624px;}
._5_c02492{width:2.756160px;}
._4_c02492{width:5.749920px;}
._a_c02492{width:13.226256px;}
._8_c02492{width:15.824160px;}
._6_c02492{width:17.216496px;}
._7_c02492{width:19.236096px;}
._9_c02492{width:20.765088px;}
._1_c02492{width:50.252400px;}
._3_c02492{width:51.530688px;}
.fc0_c02492{color:rgb(0,0,0);}
.fs2_c02492{font-size:41.760000px;}
.fs0_c02492{font-size:47.520000px;}
.fs1_c02492{font-size:60.480000px;}
.y0_c02492{bottom:0.000000px;}
.y21_c02492{bottom:1.800450px;}
.y1a_c02492{bottom:146.998362px;}
.y20_c02492{bottom:160.320000px;}
.y1f_c02492{bottom:174.001068px;}
.y1e_c02492{bottom:185.880744px;}
.y1c_c02492{bottom:186.600234px;}
.y1b_c02492{bottom:196.320450px;}
.y1d_c02492{bottom:198.120600px;}
.y19_c02492{bottom:275.878542px;}
.y18_c02492{bottom:341.759082px;}
.y17_c02492{bottom:356.878758px;}
.y15_c02492{bottom:406.559730px;}
.y11_c02492{bottom:424.560306px;}
.y16_c02492{bottom:458.759262px;}
.y14_c02492{bottom:491.879514px;}
.y13_c02492{bottom:509.880090px;}
.y10_c02492{bottom:543.000342px;}
.y12_c02492{bottom:559.559874px;}
.yf_c02492{bottom:577.560450px;}
.y22_c02492{bottom:614.280450px;}
.yb_c02492{bottom:667.558326px;}
.yd_c02492{bottom:707.160234px;}
.yc_c02492{bottom:716.880450px;}
.ya_c02492{bottom:796.438506px;}
.y9_c02492{bottom:877.438722px;}
.y7_c02492{bottom:926.759730px;}
.y3_c02492{bottom:944.760306px;}
.y8_c02492{bottom:979.319226px;}
.y6_c02492{bottom:1012.439478px;}
.y5_c02492{bottom:1030.440054px;}
.y2_c02492{bottom:1063.560306px;}
.y4_c02492{bottom:1079.759874px;}
.y1_c02492{bottom:1097.760450px;}
.ye_c02492{bottom:1134.840450px;}
.h3_c02492{height:32.530781px;}
.h5_c02492{height:36.641953px;}
.h1_c02492{height:41.696016px;}
.h2_c02492{height:41.812031px;}
.h6_c02492{height:47.160000px;}
.h4_c02492{height:54.654737px;}
.h0_c02492{height:1263.000000px;}
.w2_c02492{width:215.280000px;}
.w1_c02492{width:892.500000px;}
.w0_c02492{width:892.830000px;}
.x0_c02492{left:0.000000px;}
.xd_c02492{left:117.000000px;}
.x8_c02492{left:440.999856px;}
.x4_c02492{left:445.680576px;}
.xb_c02492{left:451.080000px;}
.x7_c02492{left:455.399604px;}
.x5_c02492{left:461.880144px;}
.x1_c02492{left:463.320000px;}
.xa_c02492{left:483.480360px;}
.x9_c02492{left:492.119496px;}
.x6_c02492{left:493.200576px;}
.xc_c02492{left:506.880360px;}
.x3_c02492{left:511.919892px;}
.x2_c02492{left:526.679604px;}
.xe_c02492{left:569.880036px;}
@media print{
.v2_c02492{vertical-align:-1.280640pt;}
.v0_c02492{vertical-align:0.000000pt;}
.v1_c02492{vertical-align:1.279488pt;}
.lsc_c02492{letter-spacing:-0.718080pt;}
.lse_c02492{letter-spacing:-0.705408pt;}
.ls17_c02492{letter-spacing:-0.638464pt;}
.ls8_c02492{letter-spacing:-0.544896pt;}
.lsa_c02492{letter-spacing:-0.511104pt;}
.ls11_c02492{letter-spacing:-0.244992pt;}
.lsf_c02492{letter-spacing:-0.232320pt;}
.ls7_c02492{letter-spacing:-0.215424pt;}
.ls5_c02492{letter-spacing:-0.105600pt;}
.ls14_c02492{letter-spacing:0.000000pt;}
.ls1_c02492{letter-spacing:0.005376pt;}
.ls6_c02492{letter-spacing:0.114048pt;}
.ls3_c02492{letter-spacing:0.363776pt;}
.ls19_c02492{letter-spacing:0.438016pt;}
.lsd_c02492{letter-spacing:0.451968pt;}
.ls13_c02492{letter-spacing:0.456960pt;}
.ls10_c02492{letter-spacing:0.477312pt;}
.lsb_c02492{letter-spacing:0.515328pt;}
.ls12_c02492{letter-spacing:0.528000pt;}
.ls9_c02492{letter-spacing:0.532224pt;}
.ls4_c02492{letter-spacing:0.544896pt;}
.ls15_c02492{letter-spacing:0.566016pt;}
.ls16_c02492{letter-spacing:0.578688pt;}
.ls2_c02492{letter-spacing:0.637824pt;}
.ls18_c02492{letter-spacing:0.638464pt;}
.ls0_c02492{letter-spacing:0.642048pt;}
.wsc_c02492{word-spacing:-13.445376pt;}
.wsa_c02492{word-spacing:-11.088000pt;}
.ws8_c02492{word-spacing:-11.075328pt;}
.ws9_c02492{word-spacing:-11.037312pt;}
.ws4_c02492{word-spacing:-10.344576pt;}
.ws2_c02492{word-spacing:-10.015104pt;}
.ws11_c02492{word-spacing:-9.643776pt;}
.ws1e_c02492{word-spacing:-1.919232pt;}
.ws19_c02492{word-spacing:-0.963072pt;}
.ws1f_c02492{word-spacing:-0.899712pt;}
.ws16_c02492{word-spacing:-0.865920pt;}
.ws18_c02492{word-spacing:-0.105600pt;}
.ws1c_c02492{word-spacing:-0.088704pt;}
.ws1d_c02492{word-spacing:-0.076032pt;}
.ws17_c02492{word-spacing:0.000000pt;}
.ws20_c02492{word-spacing:0.319232pt;}
.ws1b_c02492{word-spacing:0.384384pt;}
.ws1a_c02492{word-spacing:0.397056pt;}
.wsf_c02492{word-spacing:1.605120pt;}
.ws15_c02492{word-spacing:1.915392pt;}
.wse_c02492{word-spacing:2.251392pt;}
.ws13_c02492{word-spacing:2.884224pt;}
.ws10_c02492{word-spacing:3.201792pt;}
.ws14_c02492{word-spacing:4.476672pt;}
.ws12_c02492{word-spacing:6.715008pt;}
.wsb_c02492{word-spacing:29.600256pt;}
.wsd_c02492{word-spacing:32.127744pt;}
.ws6_c02492{word-spacing:32.659968pt;}
.ws1_c02492{word-spacing:33.563904pt;}
.ws0_c02492{word-spacing:33.796224pt;}
.ws3_c02492{word-spacing:34.860672pt;}
.ws5_c02492{word-spacing:35.468928pt;}
.ws7_c02492{word-spacing:37.357056pt;}
._0_c02492{margin-left:-1.731840pt;}
._2_c02492{width:1.317888pt;}
._5_c02492{width:2.449920pt;}
._4_c02492{width:5.111040pt;}
._a_c02492{width:11.756672pt;}
._8_c02492{width:14.065920pt;}
._6_c02492{width:15.303552pt;}
._7_c02492{width:17.098752pt;}
._9_c02492{width:18.457856pt;}
._1_c02492{width:44.668800pt;}
._3_c02492{width:45.805056pt;}
.fs2_c02492{font-size:37.120000pt;}
.fs0_c02492{font-size:42.240000pt;}
.fs1_c02492{font-size:53.760000pt;}
.y0_c02492{bottom:0.000000pt;}
.y21_c02492{bottom:1.600400pt;}
.y1a_c02492{bottom:130.665211pt;}
.y20_c02492{bottom:142.506667pt;}
.y1f_c02492{bottom:154.667616pt;}
.y1e_c02492{bottom:165.227328pt;}
.y1c_c02492{bottom:165.866875pt;}
.y1b_c02492{bottom:174.507067pt;}
.y1d_c02492{bottom:176.107200pt;}
.y19_c02492{bottom:245.225371pt;}
.y18_c02492{bottom:303.785851pt;}
.y17_c02492{bottom:317.225563pt;}
.y15_c02492{bottom:361.386427pt;}
.y11_c02492{bottom:377.386939pt;}
.y16_c02492{bottom:407.786011pt;}
.y14_c02492{bottom:437.226235pt;}
.y13_c02492{bottom:453.226747pt;}
.y10_c02492{bottom:482.666971pt;}
.y12_c02492{bottom:497.386555pt;}
.yf_c02492{bottom:513.387067pt;}
.y22_c02492{bottom:546.027067pt;}
.yb_c02492{bottom:593.385179pt;}
.yd_c02492{bottom:628.586875pt;}
.yc_c02492{bottom:637.227067pt;}
.ya_c02492{bottom:707.945339pt;}
.y9_c02492{bottom:779.945531pt;}
.y7_c02492{bottom:823.786427pt;}
.y3_c02492{bottom:839.786939pt;}
.y8_c02492{bottom:870.505979pt;}
.y6_c02492{bottom:899.946203pt;}
.y5_c02492{bottom:915.946715pt;}
.y2_c02492{bottom:945.386939pt;}
.y4_c02492{bottom:959.786555pt;}
.y1_c02492{bottom:975.787067pt;}
.ye_c02492{bottom:1008.747067pt;}
.h3_c02492{height:28.916250pt;}
.h5_c02492{height:32.570625pt;}
.h1_c02492{height:37.063125pt;}
.h2_c02492{height:37.166250pt;}
.h6_c02492{height:41.920000pt;}
.h4_c02492{height:48.581988pt;}
.h0_c02492{height:1122.666667pt;}
.w2_c02492{width:191.360000pt;}
.w1_c02492{width:793.333333pt;}
.w0_c02492{width:793.626667pt;}
.x0_c02492{left:0.000000pt;}
.xd_c02492{left:104.000000pt;}
.x8_c02492{left:391.999872pt;}
.x4_c02492{left:396.160512pt;}
.xb_c02492{left:400.960000pt;}
.x7_c02492{left:404.799648pt;}
.x5_c02492{left:410.560128pt;}
.x1_c02492{left:411.840000pt;}
.xa_c02492{left:429.760320pt;}
.x9_c02492{left:437.439552pt;}
.x6_c02492{left:438.400512pt;}
.xc_c02492{left:450.560320pt;}
.x3_c02492{left:455.039904pt;}
.x2_c02492{left:468.159648pt;}
.xe_c02492{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02493 {
    display:none;
  }
  .loading-indicator_c02493.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02493 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02493 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02493" -> "#page-container .classname_c02493")
 */
.pf_c02493 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02493 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02493.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02493 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02493 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02493 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02493 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02493 {overflow:visible;}
  }
}
.c_c02493 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02493 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02493:after { /* webkit #35443 */
  content: '';
}
.t_c02493:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02493 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02493 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02493 { /* info for Javascript */
  display:none;
}
.l_c02493 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02493 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02493 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02493:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02493 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02493.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02493.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02493 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02493{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02493;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02493{font-family:ff1_c02493;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02493;src:url('chunks/assets/font_8ab062f705422ea4083ddd03.woff2')format("woff");}.ff2_c02493{font-family:ff2_c02493;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02493;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02493{font-family:ff3_c02493;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02493{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02493{vertical-align:0.000000px;}
.v1_c02493{vertical-align:1.439424px;}
.lsc_c02493{letter-spacing:-0.793584px;}
.lsd_c02493{letter-spacing:-0.760320px;}
.ls7_c02493{letter-spacing:-0.613008px;}
.ls9_c02493{letter-spacing:-0.574992px;}
.ls14_c02493{letter-spacing:-0.375408px;}
.ls10_c02493{letter-spacing:-0.275616px;}
.lse_c02493{letter-spacing:-0.261360px;}
.ls6_c02493{letter-spacing:-0.242352px;}
.ls3_c02493{letter-spacing:-0.118800px;}
.ls13_c02493{letter-spacing:0.000000px;}
.ls1_c02493{letter-spacing:0.006048px;}
.ls5_c02493{letter-spacing:0.128304px;}
.lsb_c02493{letter-spacing:0.508464px;}
.ls12_c02493{letter-spacing:0.514080px;}
.lsf_c02493{letter-spacing:0.536976px;}
.lsa_c02493{letter-spacing:0.579744px;}
.ls11_c02493{letter-spacing:0.594000px;}
.ls8_c02493{letter-spacing:0.598752px;}
.ls2_c02493{letter-spacing:0.613008px;}
.ls4_c02493{letter-spacing:0.717552px;}
.ls0_c02493{letter-spacing:0.722304px;}
.sc__c02493{text-shadow:none;}
.sc0_c02493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02493{-webkit-text-stroke:0px transparent;}
.sc0_c02493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02493{word-spacing:-15.126048px;}
.wsa_c02493{word-spacing:-12.474000px;}
.ws6_c02493{word-spacing:-12.459744px;}
.ws9_c02493{word-spacing:-12.416976px;}
.ws4_c02493{word-spacing:-11.637648px;}
.ws2_c02493{word-spacing:-11.266992px;}
.ws15_c02493{word-spacing:-2.159136px;}
.ws10_c02493{word-spacing:-1.083456px;}
.wsd_c02493{word-spacing:-0.974160px;}
.wsf_c02493{word-spacing:-0.118800px;}
.ws13_c02493{word-spacing:-0.099792px;}
.ws14_c02493{word-spacing:-0.085536px;}
.wse_c02493{word-spacing:0.000000px;}
.ws16_c02493{word-spacing:0.014256px;}
.ws12_c02493{word-spacing:0.399168px;}
.ws11_c02493{word-spacing:0.432432px;}
.wsb_c02493{word-spacing:33.300288px;}
.ws8_c02493{word-spacing:36.143712px;}
.ws1_c02493{word-spacing:37.759392px;}
.ws0_c02493{word-spacing:38.020752px;}
.ws3_c02493{word-spacing:39.218256px;}
.ws5_c02493{word-spacing:39.902544px;}
.ws7_c02493{word-spacing:42.026688px;}
._0_c02493{margin-left:-1.948320px;}
._2_c02493{width:1.482624px;}
._4_c02493{width:5.749920px;}
._1_c02493{width:50.252400px;}
._3_c02493{width:51.530688px;}
.fc0_c02493{color:rgb(0,0,0);}
.fs0_c02493{font-size:47.520000px;}
.fs1_c02493{font-size:60.480000px;}
.y0_c02493{bottom:0.000000px;}
.y19_c02493{bottom:146.998362px;}
.y1b_c02493{bottom:186.600234px;}
.y1a_c02493{bottom:196.320450px;}
.y18_c02493{bottom:275.878542px;}
.y17_c02493{bottom:356.878758px;}
.y15_c02493{bottom:406.559730px;}
.y11_c02493{bottom:424.560306px;}
.y16_c02493{bottom:458.759262px;}
.y14_c02493{bottom:491.879514px;}
.y13_c02493{bottom:509.880090px;}
.y10_c02493{bottom:543.000342px;}
.y12_c02493{bottom:559.559874px;}
.yf_c02493{bottom:577.560450px;}
.y1c_c02493{bottom:614.280450px;}
.yb_c02493{bottom:667.558326px;}
.yd_c02493{bottom:707.160234px;}
.yc_c02493{bottom:716.880450px;}
.ya_c02493{bottom:796.438506px;}
.y9_c02493{bottom:877.438722px;}
.y7_c02493{bottom:926.759730px;}
.y3_c02493{bottom:944.760306px;}
.y8_c02493{bottom:979.319226px;}
.y6_c02493{bottom:1012.439478px;}
.y5_c02493{bottom:1030.440054px;}
.y2_c02493{bottom:1063.560306px;}
.y4_c02493{bottom:1079.759874px;}
.y1_c02493{bottom:1097.760450px;}
.ye_c02493{bottom:1134.840450px;}
.h3_c02493{height:32.530781px;}
.h1_c02493{height:41.696016px;}
.h2_c02493{height:41.812031px;}
.h4_c02493{height:54.654737px;}
.h0_c02493{height:1263.000000px;}
.w1_c02493{width:892.500000px;}
.w0_c02493{width:892.830000px;}
.x0_c02493{left:0.000000px;}
.xd_c02493{left:117.000000px;}
.x8_c02493{left:440.999856px;}
.x4_c02493{left:445.680576px;}
.xb_c02493{left:451.080000px;}
.x7_c02493{left:455.399604px;}
.x5_c02493{left:461.880144px;}
.x1_c02493{left:463.320000px;}
.xa_c02493{left:483.480360px;}
.x9_c02493{left:492.119496px;}
.x6_c02493{left:493.200576px;}
.xc_c02493{left:506.880360px;}
.x3_c02493{left:511.919892px;}
.x2_c02493{left:526.679604px;}
@media print{
.v0_c02493{vertical-align:0.000000pt;}
.v1_c02493{vertical-align:1.279488pt;}
.lsc_c02493{letter-spacing:-0.705408pt;}
.lsd_c02493{letter-spacing:-0.675840pt;}
.ls7_c02493{letter-spacing:-0.544896pt;}
.ls9_c02493{letter-spacing:-0.511104pt;}
.ls14_c02493{letter-spacing:-0.333696pt;}
.ls10_c02493{letter-spacing:-0.244992pt;}
.lse_c02493{letter-spacing:-0.232320pt;}
.ls6_c02493{letter-spacing:-0.215424pt;}
.ls3_c02493{letter-spacing:-0.105600pt;}
.ls13_c02493{letter-spacing:0.000000pt;}
.ls1_c02493{letter-spacing:0.005376pt;}
.ls5_c02493{letter-spacing:0.114048pt;}
.lsb_c02493{letter-spacing:0.451968pt;}
.ls12_c02493{letter-spacing:0.456960pt;}
.lsf_c02493{letter-spacing:0.477312pt;}
.lsa_c02493{letter-spacing:0.515328pt;}
.ls11_c02493{letter-spacing:0.528000pt;}
.ls8_c02493{letter-spacing:0.532224pt;}
.ls2_c02493{letter-spacing:0.544896pt;}
.ls4_c02493{letter-spacing:0.637824pt;}
.ls0_c02493{letter-spacing:0.642048pt;}
.wsc_c02493{word-spacing:-13.445376pt;}
.wsa_c02493{word-spacing:-11.088000pt;}
.ws6_c02493{word-spacing:-11.075328pt;}
.ws9_c02493{word-spacing:-11.037312pt;}
.ws4_c02493{word-spacing:-10.344576pt;}
.ws2_c02493{word-spacing:-10.015104pt;}
.ws15_c02493{word-spacing:-1.919232pt;}
.ws10_c02493{word-spacing:-0.963072pt;}
.wsd_c02493{word-spacing:-0.865920pt;}
.wsf_c02493{word-spacing:-0.105600pt;}
.ws13_c02493{word-spacing:-0.088704pt;}
.ws14_c02493{word-spacing:-0.076032pt;}
.wse_c02493{word-spacing:0.000000pt;}
.ws16_c02493{word-spacing:0.012672pt;}
.ws12_c02493{word-spacing:0.354816pt;}
.ws11_c02493{word-spacing:0.384384pt;}
.wsb_c02493{word-spacing:29.600256pt;}
.ws8_c02493{word-spacing:32.127744pt;}
.ws1_c02493{word-spacing:33.563904pt;}
.ws0_c02493{word-spacing:33.796224pt;}
.ws3_c02493{word-spacing:34.860672pt;}
.ws5_c02493{word-spacing:35.468928pt;}
.ws7_c02493{word-spacing:37.357056pt;}
._0_c02493{margin-left:-1.731840pt;}
._2_c02493{width:1.317888pt;}
._4_c02493{width:5.111040pt;}
._1_c02493{width:44.668800pt;}
._3_c02493{width:45.805056pt;}
.fs0_c02493{font-size:42.240000pt;}
.fs1_c02493{font-size:53.760000pt;}
.y0_c02493{bottom:0.000000pt;}
.y19_c02493{bottom:130.665211pt;}
.y1b_c02493{bottom:165.866875pt;}
.y1a_c02493{bottom:174.507067pt;}
.y18_c02493{bottom:245.225371pt;}
.y17_c02493{bottom:317.225563pt;}
.y15_c02493{bottom:361.386427pt;}
.y11_c02493{bottom:377.386939pt;}
.y16_c02493{bottom:407.786011pt;}
.y14_c02493{bottom:437.226235pt;}
.y13_c02493{bottom:453.226747pt;}
.y10_c02493{bottom:482.666971pt;}
.y12_c02493{bottom:497.386555pt;}
.yf_c02493{bottom:513.387067pt;}
.y1c_c02493{bottom:546.027067pt;}
.yb_c02493{bottom:593.385179pt;}
.yd_c02493{bottom:628.586875pt;}
.yc_c02493{bottom:637.227067pt;}
.ya_c02493{bottom:707.945339pt;}
.y9_c02493{bottom:779.945531pt;}
.y7_c02493{bottom:823.786427pt;}
.y3_c02493{bottom:839.786939pt;}
.y8_c02493{bottom:870.505979pt;}
.y6_c02493{bottom:899.946203pt;}
.y5_c02493{bottom:915.946715pt;}
.y2_c02493{bottom:945.386939pt;}
.y4_c02493{bottom:959.786555pt;}
.y1_c02493{bottom:975.787067pt;}
.ye_c02493{bottom:1008.747067pt;}
.h3_c02493{height:28.916250pt;}
.h1_c02493{height:37.063125pt;}
.h2_c02493{height:37.166250pt;}
.h4_c02493{height:48.581988pt;}
.h0_c02493{height:1122.666667pt;}
.w1_c02493{width:793.333333pt;}
.w0_c02493{width:793.626667pt;}
.x0_c02493{left:0.000000pt;}
.xd_c02493{left:104.000000pt;}
.x8_c02493{left:391.999872pt;}
.x4_c02493{left:396.160512pt;}
.xb_c02493{left:400.960000pt;}
.x7_c02493{left:404.799648pt;}
.x5_c02493{left:410.560128pt;}
.x1_c02493{left:411.840000pt;}
.xa_c02493{left:429.760320pt;}
.x9_c02493{left:437.439552pt;}
.x6_c02493{left:438.400512pt;}
.xc_c02493{left:450.560320pt;}
.x3_c02493{left:455.039904pt;}
.x2_c02493{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02494 {
    display:none;
  }
  .loading-indicator_c02494.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02494 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02494 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02494" -> "#page-container .classname_c02494")
 */
.pf_c02494 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02494 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02494.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02494 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02494 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02494 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02494 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02494 {overflow:visible;}
  }
}
.c_c02494 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02494 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02494:after { /* webkit #35443 */
  content: '';
}
.t_c02494:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02494 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02494 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02494 { /* info for Javascript */
  display:none;
}
.l_c02494 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02494 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02494 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02494:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02494 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02494.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02494.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02494 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02494{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02494;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02494{font-family:ff1_c02494;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02494;src:url('chunks/assets/font_f2bddd734eaaefab31c931e3.woff2')format("woff");}.ff2_c02494{font-family:ff2_c02494;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02494;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02494{font-family:ff3_c02494;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02494{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02494{vertical-align:0.000000px;}
.v2_c02494{vertical-align:1.439424px;}
.v1_c02494{vertical-align:33.121440px;}
.lsc_c02494{letter-spacing:-0.793584px;}
.ls7_c02494{letter-spacing:-0.613008px;}
.ls9_c02494{letter-spacing:-0.574992px;}
.lsf_c02494{letter-spacing:-0.375408px;}
.ls15_c02494{letter-spacing:-0.323136px;}
.ls11_c02494{letter-spacing:-0.275616px;}
.lse_c02494{letter-spacing:-0.261360px;}
.ls6_c02494{letter-spacing:-0.242352px;}
.ls3_c02494{letter-spacing:-0.118800px;}
.ls17_c02494{letter-spacing:0.000000px;}
.ls1_c02494{letter-spacing:0.006048px;}
.ls14_c02494{letter-spacing:0.014256px;}
.ls5_c02494{letter-spacing:0.128304px;}
.ls13_c02494{letter-spacing:0.137808px;}
.lsb_c02494{letter-spacing:0.508464px;}
.ls16_c02494{letter-spacing:0.514080px;}
.ls10_c02494{letter-spacing:0.536976px;}
.lsa_c02494{letter-spacing:0.579744px;}
.ls12_c02494{letter-spacing:0.594000px;}
.ls8_c02494{letter-spacing:0.598752px;}
.ls2_c02494{letter-spacing:0.613008px;}
.lsd_c02494{letter-spacing:0.651024px;}
.ls4_c02494{letter-spacing:0.717552px;}
.ls0_c02494{letter-spacing:0.722304px;}
.sc__c02494{text-shadow:none;}
.sc0_c02494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02494{-webkit-text-stroke:0px transparent;}
.sc0_c02494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c02494{word-spacing:-15.126048px;}
.ws10_c02494{word-spacing:-12.474000px;}
.ws6_c02494{word-spacing:-12.459744px;}
.wsa_c02494{word-spacing:-12.416976px;}
.ws4_c02494{word-spacing:-11.637648px;}
.ws2_c02494{word-spacing:-11.266992px;}
.ws1b_c02494{word-spacing:-2.159136px;}
.ws14_c02494{word-spacing:-1.083456px;}
.ws16_c02494{word-spacing:-1.012176px;}
.ws11_c02494{word-spacing:-0.974160px;}
.ws13_c02494{word-spacing:-0.118800px;}
.ws17_c02494{word-spacing:-0.099792px;}
.ws19_c02494{word-spacing:-0.085536px;}
.ws1a_c02494{word-spacing:-0.038016px;}
.ws12_c02494{word-spacing:0.000000px;}
.ws18_c02494{word-spacing:0.014256px;}
.ws15_c02494{word-spacing:0.432432px;}
.wsb_c02494{word-spacing:30.298752px;}
.wsd_c02494{word-spacing:32.394384px;}
.wse_c02494{word-spacing:33.300288px;}
.wsc_c02494{word-spacing:33.563376px;}
.ws8_c02494{word-spacing:36.143712px;}
.ws1_c02494{word-spacing:37.759392px;}
.ws0_c02494{word-spacing:38.020752px;}
.ws3_c02494{word-spacing:39.218256px;}
.ws5_c02494{word-spacing:39.902544px;}
.ws7_c02494{word-spacing:42.026688px;}
.ws9_c02494{word-spacing:49.791456px;}
._0_c02494{margin-left:-1.948320px;}
._2_c02494{width:1.482624px;}
._4_c02494{width:5.749920px;}
._1_c02494{width:50.252400px;}
._3_c02494{width:51.530688px;}
._5_c02494{width:64.508400px;}
._6_c02494{width:66.623040px;}
._7_c02494{width:68.129424px;}
.fc0_c02494{color:rgb(0,0,0);}
.fs0_c02494{font-size:47.520000px;}
.fs1_c02494{font-size:60.480000px;}
.y0_c02494{bottom:0.000000px;}
.y1b_c02494{bottom:146.998362px;}
.y1d_c02494{bottom:186.600234px;}
.y1c_c02494{bottom:196.320450px;}
.y1a_c02494{bottom:275.878542px;}
.y19_c02494{bottom:356.878758px;}
.y17_c02494{bottom:406.559730px;}
.y13_c02494{bottom:424.560306px;}
.y18_c02494{bottom:458.759262px;}
.y16_c02494{bottom:491.879514px;}
.y15_c02494{bottom:509.880090px;}
.y12_c02494{bottom:543.000342px;}
.y14_c02494{bottom:559.559874px;}
.y11_c02494{bottom:577.560450px;}
.y1e_c02494{bottom:614.280450px;}
.yc_c02494{bottom:667.559514px;}
.yf_c02494{bottom:700.320918px;}
.ye_c02494{bottom:707.160234px;}
.yd_c02494{bottom:716.880450px;}
.yb_c02494{bottom:796.439694px;}
.ya_c02494{bottom:862.319046px;}
.y9_c02494{bottom:877.438722px;}
.y7_c02494{bottom:926.759730px;}
.y3_c02494{bottom:944.760306px;}
.y8_c02494{bottom:979.319226px;}
.y6_c02494{bottom:1012.439478px;}
.y5_c02494{bottom:1030.440054px;}
.y2_c02494{bottom:1063.560306px;}
.y4_c02494{bottom:1079.759874px;}
.y1_c02494{bottom:1097.760450px;}
.y10_c02494{bottom:1134.840450px;}
.h3_c02494{height:32.530781px;}
.h1_c02494{height:41.696016px;}
.h2_c02494{height:41.812031px;}
.h5_c02494{height:54.654737px;}
.h4_c02494{height:74.817456px;}
.h0_c02494{height:1263.000000px;}
.w1_c02494{width:892.500000px;}
.w0_c02494{width:892.830000px;}
.x0_c02494{left:0.000000px;}
.xe_c02494{left:117.000000px;}
.x8_c02494{left:440.999856px;}
.x4_c02494{left:445.680576px;}
.xc_c02494{left:451.080000px;}
.x7_c02494{left:455.399604px;}
.x5_c02494{left:461.880144px;}
.x1_c02494{left:463.320000px;}
.xb_c02494{left:483.480360px;}
.x9_c02494{left:492.119496px;}
.x6_c02494{left:493.200576px;}
.xd_c02494{left:506.880360px;}
.x3_c02494{left:511.919892px;}
.x2_c02494{left:526.679604px;}
.xa_c02494{left:569.880036px;}
@media print{
.v0_c02494{vertical-align:0.000000pt;}
.v2_c02494{vertical-align:1.279488pt;}
.v1_c02494{vertical-align:29.441280pt;}
.lsc_c02494{letter-spacing:-0.705408pt;}
.ls7_c02494{letter-spacing:-0.544896pt;}
.ls9_c02494{letter-spacing:-0.511104pt;}
.lsf_c02494{letter-spacing:-0.333696pt;}
.ls15_c02494{letter-spacing:-0.287232pt;}
.ls11_c02494{letter-spacing:-0.244992pt;}
.lse_c02494{letter-spacing:-0.232320pt;}
.ls6_c02494{letter-spacing:-0.215424pt;}
.ls3_c02494{letter-spacing:-0.105600pt;}
.ls17_c02494{letter-spacing:0.000000pt;}
.ls1_c02494{letter-spacing:0.005376pt;}
.ls14_c02494{letter-spacing:0.012672pt;}
.ls5_c02494{letter-spacing:0.114048pt;}
.ls13_c02494{letter-spacing:0.122496pt;}
.lsb_c02494{letter-spacing:0.451968pt;}
.ls16_c02494{letter-spacing:0.456960pt;}
.ls10_c02494{letter-spacing:0.477312pt;}
.lsa_c02494{letter-spacing:0.515328pt;}
.ls12_c02494{letter-spacing:0.528000pt;}
.ls8_c02494{letter-spacing:0.532224pt;}
.ls2_c02494{letter-spacing:0.544896pt;}
.lsd_c02494{letter-spacing:0.578688pt;}
.ls4_c02494{letter-spacing:0.637824pt;}
.ls0_c02494{letter-spacing:0.642048pt;}
.wsf_c02494{word-spacing:-13.445376pt;}
.ws10_c02494{word-spacing:-11.088000pt;}
.ws6_c02494{word-spacing:-11.075328pt;}
.wsa_c02494{word-spacing:-11.037312pt;}
.ws4_c02494{word-spacing:-10.344576pt;}
.ws2_c02494{word-spacing:-10.015104pt;}
.ws1b_c02494{word-spacing:-1.919232pt;}
.ws14_c02494{word-spacing:-0.963072pt;}
.ws16_c02494{word-spacing:-0.899712pt;}
.ws11_c02494{word-spacing:-0.865920pt;}
.ws13_c02494{word-spacing:-0.105600pt;}
.ws17_c02494{word-spacing:-0.088704pt;}
.ws19_c02494{word-spacing:-0.076032pt;}
.ws1a_c02494{word-spacing:-0.033792pt;}
.ws12_c02494{word-spacing:0.000000pt;}
.ws18_c02494{word-spacing:0.012672pt;}
.ws15_c02494{word-spacing:0.384384pt;}
.wsb_c02494{word-spacing:26.932224pt;}
.wsd_c02494{word-spacing:28.795008pt;}
.wse_c02494{word-spacing:29.600256pt;}
.wsc_c02494{word-spacing:29.834112pt;}
.ws8_c02494{word-spacing:32.127744pt;}
.ws1_c02494{word-spacing:33.563904pt;}
.ws0_c02494{word-spacing:33.796224pt;}
.ws3_c02494{word-spacing:34.860672pt;}
.ws5_c02494{word-spacing:35.468928pt;}
.ws7_c02494{word-spacing:37.357056pt;}
.ws9_c02494{word-spacing:44.259072pt;}
._0_c02494{margin-left:-1.731840pt;}
._2_c02494{width:1.317888pt;}
._4_c02494{width:5.111040pt;}
._1_c02494{width:44.668800pt;}
._3_c02494{width:45.805056pt;}
._5_c02494{width:57.340800pt;}
._6_c02494{width:59.220480pt;}
._7_c02494{width:60.559488pt;}
.fs0_c02494{font-size:42.240000pt;}
.fs1_c02494{font-size:53.760000pt;}
.y0_c02494{bottom:0.000000pt;}
.y1b_c02494{bottom:130.665211pt;}
.y1d_c02494{bottom:165.866875pt;}
.y1c_c02494{bottom:174.507067pt;}
.y1a_c02494{bottom:245.225371pt;}
.y19_c02494{bottom:317.225563pt;}
.y17_c02494{bottom:361.386427pt;}
.y13_c02494{bottom:377.386939pt;}
.y18_c02494{bottom:407.786011pt;}
.y16_c02494{bottom:437.226235pt;}
.y15_c02494{bottom:453.226747pt;}
.y12_c02494{bottom:482.666971pt;}
.y14_c02494{bottom:497.386555pt;}
.y11_c02494{bottom:513.387067pt;}
.y1e_c02494{bottom:546.027067pt;}
.yc_c02494{bottom:593.386235pt;}
.yf_c02494{bottom:622.507483pt;}
.ye_c02494{bottom:628.586875pt;}
.yd_c02494{bottom:637.227067pt;}
.yb_c02494{bottom:707.946395pt;}
.ya_c02494{bottom:766.505819pt;}
.y9_c02494{bottom:779.945531pt;}
.y7_c02494{bottom:823.786427pt;}
.y3_c02494{bottom:839.786939pt;}
.y8_c02494{bottom:870.505979pt;}
.y6_c02494{bottom:899.946203pt;}
.y5_c02494{bottom:915.946715pt;}
.y2_c02494{bottom:945.386939pt;}
.y4_c02494{bottom:959.786555pt;}
.y1_c02494{bottom:975.787067pt;}
.y10_c02494{bottom:1008.747067pt;}
.h3_c02494{height:28.916250pt;}
.h1_c02494{height:37.063125pt;}
.h2_c02494{height:37.166250pt;}
.h5_c02494{height:48.581988pt;}
.h4_c02494{height:66.504405pt;}
.h0_c02494{height:1122.666667pt;}
.w1_c02494{width:793.333333pt;}
.w0_c02494{width:793.626667pt;}
.x0_c02494{left:0.000000pt;}
.xe_c02494{left:104.000000pt;}
.x8_c02494{left:391.999872pt;}
.x4_c02494{left:396.160512pt;}
.xc_c02494{left:400.960000pt;}
.x7_c02494{left:404.799648pt;}
.x5_c02494{left:410.560128pt;}
.x1_c02494{left:411.840000pt;}
.xb_c02494{left:429.760320pt;}
.x9_c02494{left:437.439552pt;}
.x6_c02494{left:438.400512pt;}
.xd_c02494{left:450.560320pt;}
.x3_c02494{left:455.039904pt;}
.x2_c02494{left:468.159648pt;}
.xa_c02494{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02495 {
    display:none;
  }
  .loading-indicator_c02495.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02495 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02495 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02495" -> "#page-container .classname_c02495")
 */
.pf_c02495 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02495 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02495.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02495 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02495 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02495 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02495 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02495 {overflow:visible;}
  }
}
.c_c02495 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02495 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02495:after { /* webkit #35443 */
  content: '';
}
.t_c02495:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02495 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02495 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02495 { /* info for Javascript */
  display:none;
}
.l_c02495 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02495 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02495 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02495:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02495 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02495.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02495.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02495 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02495{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02495;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02495{font-family:ff1_c02495;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02495;src:url('chunks/assets/font_787328a609486fd3b2576b5c.woff2')format("woff");}.ff2_c02495{font-family:ff2_c02495;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02495;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02495{font-family:ff3_c02495;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02495{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02495{vertical-align:0.000000px;}
.v1_c02495{vertical-align:1.439424px;}
.ls14_c02495{letter-spacing:-1.197504px;}
.lsc_c02495{letter-spacing:-0.793584px;}
.ls7_c02495{letter-spacing:-0.613008px;}
.ls9_c02495{letter-spacing:-0.574992px;}
.lse_c02495{letter-spacing:-0.375408px;}
.ls10_c02495{letter-spacing:-0.275616px;}
.lsd_c02495{letter-spacing:-0.261360px;}
.ls6_c02495{letter-spacing:-0.242352px;}
.ls3_c02495{letter-spacing:-0.118800px;}
.ls13_c02495{letter-spacing:0.000000px;}
.ls1_c02495{letter-spacing:0.006048px;}
.ls5_c02495{letter-spacing:0.128304px;}
.lsb_c02495{letter-spacing:0.508464px;}
.ls12_c02495{letter-spacing:0.514080px;}
.lsf_c02495{letter-spacing:0.536976px;}
.lsa_c02495{letter-spacing:0.579744px;}
.ls11_c02495{letter-spacing:0.594000px;}
.ls8_c02495{letter-spacing:0.598752px;}
.ls2_c02495{letter-spacing:0.613008px;}
.ls4_c02495{letter-spacing:0.717552px;}
.ls0_c02495{letter-spacing:0.722304px;}
.sc__c02495{text-shadow:none;}
.sc0_c02495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02495{-webkit-text-stroke:0px transparent;}
.sc0_c02495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02495{word-spacing:-15.126048px;}
.wsa_c02495{word-spacing:-12.474000px;}
.ws6_c02495{word-spacing:-12.459744px;}
.ws9_c02495{word-spacing:-12.416976px;}
.ws4_c02495{word-spacing:-11.637648px;}
.ws2_c02495{word-spacing:-11.266992px;}
.ws16_c02495{word-spacing:-2.159136px;}
.ws11_c02495{word-spacing:-1.083456px;}
.wse_c02495{word-spacing:-0.974160px;}
.ws10_c02495{word-spacing:-0.118800px;}
.ws13_c02495{word-spacing:-0.099792px;}
.ws15_c02495{word-spacing:-0.085536px;}
.wsf_c02495{word-spacing:0.000000px;}
.ws14_c02495{word-spacing:0.014256px;}
.ws12_c02495{word-spacing:0.432432px;}
.ws17_c02495{word-spacing:0.836352px;}
.wsb_c02495{word-spacing:33.300288px;}
.ws8_c02495{word-spacing:36.143712px;}
.wsd_c02495{word-spacing:36.742464px;}
.ws1_c02495{word-spacing:37.759392px;}
.ws0_c02495{word-spacing:38.020752px;}
.ws3_c02495{word-spacing:39.218256px;}
.ws5_c02495{word-spacing:39.902544px;}
.ws7_c02495{word-spacing:42.026688px;}
._0_c02495{margin-left:-1.948320px;}
._2_c02495{width:1.482624px;}
._5_c02495{width:2.770416px;}
._4_c02495{width:5.749920px;}
._1_c02495{width:50.252400px;}
._3_c02495{width:51.530688px;}
.fc0_c02495{color:rgb(0,0,0);}
.fs0_c02495{font-size:47.520000px;}
.fs1_c02495{font-size:60.480000px;}
.y0_c02495{bottom:0.000000px;}
.y19_c02495{bottom:146.998362px;}
.y1b_c02495{bottom:186.600234px;}
.y1a_c02495{bottom:196.320450px;}
.y18_c02495{bottom:275.878542px;}
.y17_c02495{bottom:356.878758px;}
.y15_c02495{bottom:406.559730px;}
.y11_c02495{bottom:424.560306px;}
.y16_c02495{bottom:458.759262px;}
.y14_c02495{bottom:491.879514px;}
.y13_c02495{bottom:509.880090px;}
.y10_c02495{bottom:543.000342px;}
.y12_c02495{bottom:559.559874px;}
.yf_c02495{bottom:577.560450px;}
.y1c_c02495{bottom:614.280450px;}
.yb_c02495{bottom:667.558326px;}
.yd_c02495{bottom:707.160234px;}
.yc_c02495{bottom:716.880450px;}
.ya_c02495{bottom:796.438506px;}
.y9_c02495{bottom:877.438722px;}
.y7_c02495{bottom:926.759730px;}
.y3_c02495{bottom:944.760306px;}
.y8_c02495{bottom:979.319226px;}
.y6_c02495{bottom:1012.439478px;}
.y5_c02495{bottom:1030.440054px;}
.y2_c02495{bottom:1063.560306px;}
.y4_c02495{bottom:1079.759874px;}
.y1_c02495{bottom:1097.760450px;}
.ye_c02495{bottom:1134.840450px;}
.h3_c02495{height:32.530781px;}
.h1_c02495{height:41.696016px;}
.h2_c02495{height:41.812031px;}
.h4_c02495{height:54.654737px;}
.h0_c02495{height:1263.000000px;}
.w1_c02495{width:892.500000px;}
.w0_c02495{width:892.830000px;}
.x0_c02495{left:0.000000px;}
.xd_c02495{left:117.000000px;}
.x8_c02495{left:440.999856px;}
.x4_c02495{left:445.680576px;}
.xb_c02495{left:451.080000px;}
.x7_c02495{left:455.399604px;}
.x5_c02495{left:461.880144px;}
.x1_c02495{left:463.320000px;}
.xa_c02495{left:483.480360px;}
.x9_c02495{left:492.119496px;}
.x6_c02495{left:493.200576px;}
.xc_c02495{left:506.880360px;}
.x3_c02495{left:511.919892px;}
.x2_c02495{left:526.679604px;}
@media print{
.v0_c02495{vertical-align:0.000000pt;}
.v1_c02495{vertical-align:1.279488pt;}
.ls14_c02495{letter-spacing:-1.064448pt;}
.lsc_c02495{letter-spacing:-0.705408pt;}
.ls7_c02495{letter-spacing:-0.544896pt;}
.ls9_c02495{letter-spacing:-0.511104pt;}
.lse_c02495{letter-spacing:-0.333696pt;}
.ls10_c02495{letter-spacing:-0.244992pt;}
.lsd_c02495{letter-spacing:-0.232320pt;}
.ls6_c02495{letter-spacing:-0.215424pt;}
.ls3_c02495{letter-spacing:-0.105600pt;}
.ls13_c02495{letter-spacing:0.000000pt;}
.ls1_c02495{letter-spacing:0.005376pt;}
.ls5_c02495{letter-spacing:0.114048pt;}
.lsb_c02495{letter-spacing:0.451968pt;}
.ls12_c02495{letter-spacing:0.456960pt;}
.lsf_c02495{letter-spacing:0.477312pt;}
.lsa_c02495{letter-spacing:0.515328pt;}
.ls11_c02495{letter-spacing:0.528000pt;}
.ls8_c02495{letter-spacing:0.532224pt;}
.ls2_c02495{letter-spacing:0.544896pt;}
.ls4_c02495{letter-spacing:0.637824pt;}
.ls0_c02495{letter-spacing:0.642048pt;}
.wsc_c02495{word-spacing:-13.445376pt;}
.wsa_c02495{word-spacing:-11.088000pt;}
.ws6_c02495{word-spacing:-11.075328pt;}
.ws9_c02495{word-spacing:-11.037312pt;}
.ws4_c02495{word-spacing:-10.344576pt;}
.ws2_c02495{word-spacing:-10.015104pt;}
.ws16_c02495{word-spacing:-1.919232pt;}
.ws11_c02495{word-spacing:-0.963072pt;}
.wse_c02495{word-spacing:-0.865920pt;}
.ws10_c02495{word-spacing:-0.105600pt;}
.ws13_c02495{word-spacing:-0.088704pt;}
.ws15_c02495{word-spacing:-0.076032pt;}
.wsf_c02495{word-spacing:0.000000pt;}
.ws14_c02495{word-spacing:0.012672pt;}
.ws12_c02495{word-spacing:0.384384pt;}
.ws17_c02495{word-spacing:0.743424pt;}
.wsb_c02495{word-spacing:29.600256pt;}
.ws8_c02495{word-spacing:32.127744pt;}
.wsd_c02495{word-spacing:32.659968pt;}
.ws1_c02495{word-spacing:33.563904pt;}
.ws0_c02495{word-spacing:33.796224pt;}
.ws3_c02495{word-spacing:34.860672pt;}
.ws5_c02495{word-spacing:35.468928pt;}
.ws7_c02495{word-spacing:37.357056pt;}
._0_c02495{margin-left:-1.731840pt;}
._2_c02495{width:1.317888pt;}
._5_c02495{width:2.462592pt;}
._4_c02495{width:5.111040pt;}
._1_c02495{width:44.668800pt;}
._3_c02495{width:45.805056pt;}
.fs0_c02495{font-size:42.240000pt;}
.fs1_c02495{font-size:53.760000pt;}
.y0_c02495{bottom:0.000000pt;}
.y19_c02495{bottom:130.665211pt;}
.y1b_c02495{bottom:165.866875pt;}
.y1a_c02495{bottom:174.507067pt;}
.y18_c02495{bottom:245.225371pt;}
.y17_c02495{bottom:317.225563pt;}
.y15_c02495{bottom:361.386427pt;}
.y11_c02495{bottom:377.386939pt;}
.y16_c02495{bottom:407.786011pt;}
.y14_c02495{bottom:437.226235pt;}
.y13_c02495{bottom:453.226747pt;}
.y10_c02495{bottom:482.666971pt;}
.y12_c02495{bottom:497.386555pt;}
.yf_c02495{bottom:513.387067pt;}
.y1c_c02495{bottom:546.027067pt;}
.yb_c02495{bottom:593.385179pt;}
.yd_c02495{bottom:628.586875pt;}
.yc_c02495{bottom:637.227067pt;}
.ya_c02495{bottom:707.945339pt;}
.y9_c02495{bottom:779.945531pt;}
.y7_c02495{bottom:823.786427pt;}
.y3_c02495{bottom:839.786939pt;}
.y8_c02495{bottom:870.505979pt;}
.y6_c02495{bottom:899.946203pt;}
.y5_c02495{bottom:915.946715pt;}
.y2_c02495{bottom:945.386939pt;}
.y4_c02495{bottom:959.786555pt;}
.y1_c02495{bottom:975.787067pt;}
.ye_c02495{bottom:1008.747067pt;}
.h3_c02495{height:28.916250pt;}
.h1_c02495{height:37.063125pt;}
.h2_c02495{height:37.166250pt;}
.h4_c02495{height:48.581988pt;}
.h0_c02495{height:1122.666667pt;}
.w1_c02495{width:793.333333pt;}
.w0_c02495{width:793.626667pt;}
.x0_c02495{left:0.000000pt;}
.xd_c02495{left:104.000000pt;}
.x8_c02495{left:391.999872pt;}
.x4_c02495{left:396.160512pt;}
.xb_c02495{left:400.960000pt;}
.x7_c02495{left:404.799648pt;}
.x5_c02495{left:410.560128pt;}
.x1_c02495{left:411.840000pt;}
.xa_c02495{left:429.760320pt;}
.x9_c02495{left:437.439552pt;}
.x6_c02495{left:438.400512pt;}
.xc_c02495{left:450.560320pt;}
.x3_c02495{left:455.039904pt;}
.x2_c02495{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02496 {
    display:none;
  }
  .loading-indicator_c02496.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02496 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02496 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02496" -> "#page-container .classname_c02496")
 */
.pf_c02496 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02496 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02496.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02496 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02496 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02496 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02496 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02496 {overflow:visible;}
  }
}
.c_c02496 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02496 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02496:after { /* webkit #35443 */
  content: '';
}
.t_c02496:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02496 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02496 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02496 { /* info for Javascript */
  display:none;
}
.l_c02496 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02496 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02496 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02496:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02496 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02496.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02496.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02496 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02496{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02496;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02496{font-family:ff1_c02496;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02496;src:url('chunks/assets/font_df3e5b379bbebded23049b73.woff2')format("woff");}.ff2_c02496{font-family:ff2_c02496;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02496;src:url('chunks/assets/font_2f018d9da6d1164fc873164f.woff2')format("woff");}.ff3_c02496{font-family:ff3_c02496;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02496{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02496{vertical-align:0.000000px;}
.v1_c02496{vertical-align:1.439424px;}
.lse_c02496{letter-spacing:-0.793584px;}
.lsb_c02496{letter-spacing:-0.774576px;}
.ls11_c02496{letter-spacing:-0.736560px;}
.ls8_c02496{letter-spacing:-0.613008px;}
.lsa_c02496{letter-spacing:-0.574992px;}
.ls17_c02496{letter-spacing:-0.375408px;}
.ls18_c02496{letter-spacing:-0.275616px;}
.ls12_c02496{letter-spacing:-0.270864px;}
.lsf_c02496{letter-spacing:-0.261360px;}
.ls7_c02496{letter-spacing:-0.242352px;}
.ls16_c02496{letter-spacing:-0.228096px;}
.ls4_c02496{letter-spacing:-0.118800px;}
.ls15_c02496{letter-spacing:0.000000px;}
.ls1_c02496{letter-spacing:0.006048px;}
.ls6_c02496{letter-spacing:0.128304px;}
.lsd_c02496{letter-spacing:0.508464px;}
.ls14_c02496{letter-spacing:0.514080px;}
.ls10_c02496{letter-spacing:0.536976px;}
.lsc_c02496{letter-spacing:0.579744px;}
.ls13_c02496{letter-spacing:0.594000px;}
.ls9_c02496{letter-spacing:0.598752px;}
.ls3_c02496{letter-spacing:0.613008px;}
.ls0_c02496{letter-spacing:0.651024px;}
.ls5_c02496{letter-spacing:0.717552px;}
.ls2_c02496{letter-spacing:0.722304px;}
.sc__c02496{text-shadow:none;}
.sc0_c02496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02496{-webkit-text-stroke:0px transparent;}
.sc0_c02496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c02496{word-spacing:-15.126048px;}
.wsc_c02496{word-spacing:-12.474000px;}
.ws7_c02496{word-spacing:-12.459744px;}
.ws11_c02496{word-spacing:-12.416976px;}
.wsf_c02496{word-spacing:-11.761200px;}
.ws10_c02496{word-spacing:-11.651904px;}
.ws4_c02496{word-spacing:-11.637648px;}
.ws2_c02496{word-spacing:-11.266992px;}
.ws6_c02496{word-spacing:-11.105424px;}
.ws1a_c02496{word-spacing:-2.159136px;}
.ws1b_c02496{word-spacing:-1.083456px;}
.ws14_c02496{word-spacing:-1.012176px;}
.ws12_c02496{word-spacing:-0.974160px;}
.ws15_c02496{word-spacing:-0.118800px;}
.ws17_c02496{word-spacing:-0.099792px;}
.ws18_c02496{word-spacing:-0.090288px;}
.ws19_c02496{word-spacing:-0.085536px;}
.ws13_c02496{word-spacing:0.000000px;}
.ws1c_c02496{word-spacing:0.014256px;}
.ws16_c02496{word-spacing:0.432432px;}
.wsb_c02496{word-spacing:6.629040px;}
.wsd_c02496{word-spacing:33.300288px;}
.wsa_c02496{word-spacing:34.836912px;}
.ws9_c02496{word-spacing:36.143712px;}
.ws1_c02496{word-spacing:37.759392px;}
.ws0_c02496{word-spacing:38.020752px;}
.ws3_c02496{word-spacing:39.218256px;}
.ws5_c02496{word-spacing:39.902544px;}
.ws8_c02496{word-spacing:42.026688px;}
._0_c02496{margin-left:-1.948320px;}
._2_c02496{width:1.482624px;}
._4_c02496{width:5.749920px;}
._6_c02496{width:19.982160px;}
._7_c02496{width:23.451120px;}
._5_c02496{width:24.691392px;}
._1_c02496{width:50.252400px;}
._3_c02496{width:51.530688px;}
.fc0_c02496{color:rgb(0,0,0);}
.fs0_c02496{font-size:47.520000px;}
.fs1_c02496{font-size:60.480000px;}
.y0_c02496{bottom:0.000000px;}
.y13_c02496{bottom:18.000450px;}
.y1c_c02496{bottom:146.998506px;}
.y1e_c02496{bottom:186.600234px;}
.y1d_c02496{bottom:196.320450px;}
.y1b_c02496{bottom:275.878686px;}
.y1a_c02496{bottom:356.878902px;}
.y18_c02496{bottom:406.559874px;}
.y14_c02496{bottom:424.560450px;}
.y19_c02496{bottom:458.759406px;}
.y17_c02496{bottom:491.879658px;}
.y16_c02496{bottom:509.880234px;}
.y12_c02496{bottom:525.000000px;}
.y11_c02496{bottom:543.000342px;}
.y15_c02496{bottom:559.560018px;}
.y10_c02496{bottom:577.560450px;}
.y1f_c02496{bottom:614.280450px;}
.yc_c02496{bottom:652.438650px;}
.yb_c02496{bottom:667.558326px;}
.ye_c02496{bottom:707.160234px;}
.yd_c02496{bottom:716.880450px;}
.ya_c02496{bottom:796.438506px;}
.y9_c02496{bottom:877.438722px;}
.y7_c02496{bottom:926.759730px;}
.y3_c02496{bottom:944.760306px;}
.y8_c02496{bottom:979.319226px;}
.y6_c02496{bottom:1012.439478px;}
.y5_c02496{bottom:1030.440054px;}
.y2_c02496{bottom:1063.560306px;}
.y4_c02496{bottom:1079.759874px;}
.y1_c02496{bottom:1097.760450px;}
.yf_c02496{bottom:1134.840450px;}
.h5_c02496{height:29.160000px;}
.h3_c02496{height:32.530781px;}
.h1_c02496{height:41.696016px;}
.h2_c02496{height:41.812031px;}
.h4_c02496{height:54.654737px;}
.h0_c02496{height:1263.000000px;}
.w2_c02496{width:215.280000px;}
.w1_c02496{width:892.500000px;}
.w0_c02496{width:892.830000px;}
.x0_c02496{left:0.000000px;}
.xe_c02496{left:117.000000px;}
.x8_c02496{left:440.999856px;}
.x4_c02496{left:445.680576px;}
.xc_c02496{left:451.080000px;}
.x7_c02496{left:455.399604px;}
.x5_c02496{left:461.880144px;}
.x1_c02496{left:463.320000px;}
.xa_c02496{left:483.480360px;}
.x9_c02496{left:492.119496px;}
.x6_c02496{left:493.200576px;}
.xd_c02496{left:506.880360px;}
.x3_c02496{left:511.919892px;}
.x2_c02496{left:526.679604px;}
.xb_c02496{left:569.880036px;}
@media print{
.v0_c02496{vertical-align:0.000000pt;}
.v1_c02496{vertical-align:1.279488pt;}
.lse_c02496{letter-spacing:-0.705408pt;}
.lsb_c02496{letter-spacing:-0.688512pt;}
.ls11_c02496{letter-spacing:-0.654720pt;}
.ls8_c02496{letter-spacing:-0.544896pt;}
.lsa_c02496{letter-spacing:-0.511104pt;}
.ls17_c02496{letter-spacing:-0.333696pt;}
.ls18_c02496{letter-spacing:-0.244992pt;}
.ls12_c02496{letter-spacing:-0.240768pt;}
.lsf_c02496{letter-spacing:-0.232320pt;}
.ls7_c02496{letter-spacing:-0.215424pt;}
.ls16_c02496{letter-spacing:-0.202752pt;}
.ls4_c02496{letter-spacing:-0.105600pt;}
.ls15_c02496{letter-spacing:0.000000pt;}
.ls1_c02496{letter-spacing:0.005376pt;}
.ls6_c02496{letter-spacing:0.114048pt;}
.lsd_c02496{letter-spacing:0.451968pt;}
.ls14_c02496{letter-spacing:0.456960pt;}
.ls10_c02496{letter-spacing:0.477312pt;}
.lsc_c02496{letter-spacing:0.515328pt;}
.ls13_c02496{letter-spacing:0.528000pt;}
.ls9_c02496{letter-spacing:0.532224pt;}
.ls3_c02496{letter-spacing:0.544896pt;}
.ls0_c02496{letter-spacing:0.578688pt;}
.ls5_c02496{letter-spacing:0.637824pt;}
.ls2_c02496{letter-spacing:0.642048pt;}
.wse_c02496{word-spacing:-13.445376pt;}
.wsc_c02496{word-spacing:-11.088000pt;}
.ws7_c02496{word-spacing:-11.075328pt;}
.ws11_c02496{word-spacing:-11.037312pt;}
.wsf_c02496{word-spacing:-10.454400pt;}
.ws10_c02496{word-spacing:-10.357248pt;}
.ws4_c02496{word-spacing:-10.344576pt;}
.ws2_c02496{word-spacing:-10.015104pt;}
.ws6_c02496{word-spacing:-9.871488pt;}
.ws1a_c02496{word-spacing:-1.919232pt;}
.ws1b_c02496{word-spacing:-0.963072pt;}
.ws14_c02496{word-spacing:-0.899712pt;}
.ws12_c02496{word-spacing:-0.865920pt;}
.ws15_c02496{word-spacing:-0.105600pt;}
.ws17_c02496{word-spacing:-0.088704pt;}
.ws18_c02496{word-spacing:-0.080256pt;}
.ws19_c02496{word-spacing:-0.076032pt;}
.ws13_c02496{word-spacing:0.000000pt;}
.ws1c_c02496{word-spacing:0.012672pt;}
.ws16_c02496{word-spacing:0.384384pt;}
.wsb_c02496{word-spacing:5.892480pt;}
.wsd_c02496{word-spacing:29.600256pt;}
.wsa_c02496{word-spacing:30.966144pt;}
.ws9_c02496{word-spacing:32.127744pt;}
.ws1_c02496{word-spacing:33.563904pt;}
.ws0_c02496{word-spacing:33.796224pt;}
.ws3_c02496{word-spacing:34.860672pt;}
.ws5_c02496{word-spacing:35.468928pt;}
.ws8_c02496{word-spacing:37.357056pt;}
._0_c02496{margin-left:-1.731840pt;}
._2_c02496{width:1.317888pt;}
._4_c02496{width:5.111040pt;}
._6_c02496{width:17.761920pt;}
._7_c02496{width:20.845440pt;}
._5_c02496{width:21.947904pt;}
._1_c02496{width:44.668800pt;}
._3_c02496{width:45.805056pt;}
.fs0_c02496{font-size:42.240000pt;}
.fs1_c02496{font-size:53.760000pt;}
.y0_c02496{bottom:0.000000pt;}
.y13_c02496{bottom:16.000400pt;}
.y1c_c02496{bottom:130.665339pt;}
.y1e_c02496{bottom:165.866875pt;}
.y1d_c02496{bottom:174.507067pt;}
.y1b_c02496{bottom:245.225499pt;}
.y1a_c02496{bottom:317.225691pt;}
.y18_c02496{bottom:361.386555pt;}
.y14_c02496{bottom:377.387067pt;}
.y19_c02496{bottom:407.786139pt;}
.y17_c02496{bottom:437.226363pt;}
.y16_c02496{bottom:453.226875pt;}
.y12_c02496{bottom:466.666667pt;}
.y11_c02496{bottom:482.666971pt;}
.y15_c02496{bottom:497.386683pt;}
.y10_c02496{bottom:513.387067pt;}
.y1f_c02496{bottom:546.027067pt;}
.yc_c02496{bottom:579.945467pt;}
.yb_c02496{bottom:593.385179pt;}
.ye_c02496{bottom:628.586875pt;}
.yd_c02496{bottom:637.227067pt;}
.ya_c02496{bottom:707.945339pt;}
.y9_c02496{bottom:779.945531pt;}
.y7_c02496{bottom:823.786427pt;}
.y3_c02496{bottom:839.786939pt;}
.y8_c02496{bottom:870.505979pt;}
.y6_c02496{bottom:899.946203pt;}
.y5_c02496{bottom:915.946715pt;}
.y2_c02496{bottom:945.386939pt;}
.y4_c02496{bottom:959.786555pt;}
.y1_c02496{bottom:975.787067pt;}
.yf_c02496{bottom:1008.747067pt;}
.h5_c02496{height:25.920000pt;}
.h3_c02496{height:28.916250pt;}
.h1_c02496{height:37.063125pt;}
.h2_c02496{height:37.166250pt;}
.h4_c02496{height:48.581988pt;}
.h0_c02496{height:1122.666667pt;}
.w2_c02496{width:191.360000pt;}
.w1_c02496{width:793.333333pt;}
.w0_c02496{width:793.626667pt;}
.x0_c02496{left:0.000000pt;}
.xe_c02496{left:104.000000pt;}
.x8_c02496{left:391.999872pt;}
.x4_c02496{left:396.160512pt;}
.xc_c02496{left:400.960000pt;}
.x7_c02496{left:404.799648pt;}
.x5_c02496{left:410.560128pt;}
.x1_c02496{left:411.840000pt;}
.xa_c02496{left:429.760320pt;}
.x9_c02496{left:437.439552pt;}
.x6_c02496{left:438.400512pt;}
.xd_c02496{left:450.560320pt;}
.x3_c02496{left:455.039904pt;}
.x2_c02496{left:468.159648pt;}
.xb_c02496{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02497 {
    display:none;
  }
  .loading-indicator_c02497.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02497 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02497 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02497" -> "#page-container .classname_c02497")
 */
.pf_c02497 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02497 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02497.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02497 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02497 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02497 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02497 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02497 {overflow:visible;}
  }
}
.c_c02497 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02497 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02497:after { /* webkit #35443 */
  content: '';
}
.t_c02497:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02497 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02497 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02497 { /* info for Javascript */
  display:none;
}
.l_c02497 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02497 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02497 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02497:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02497 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02497.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02497.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02497 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02497{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02497;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02497{font-family:ff1_c02497;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02497;src:url('chunks/assets/font_0aa192548a97deb7b06b0f27.woff2')format("woff");}.ff2_c02497{font-family:ff2_c02497;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02497;src:url('chunks/assets/font_a3d2e902292f5e83026bc7a2.woff2')format("woff");}.ff3_c02497{font-family:ff3_c02497;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02497{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02497{vertical-align:0.000000px;}
.v1_c02497{vertical-align:1.439424px;}
.lse_c02497{letter-spacing:-1.197504px;}
.ls9_c02497{letter-spacing:-0.613008px;}
.ls16_c02497{letter-spacing:-0.594000px;}
.lsb_c02497{letter-spacing:-0.574992px;}
.ls12_c02497{letter-spacing:-0.275616px;}
.ls10_c02497{letter-spacing:-0.261360px;}
.ls8_c02497{letter-spacing:-0.242352px;}
.ls5_c02497{letter-spacing:-0.118800px;}
.ls15_c02497{letter-spacing:0.000000px;}
.ls2_c02497{letter-spacing:0.006048px;}
.ls7_c02497{letter-spacing:0.128304px;}
.lsd_c02497{letter-spacing:0.508464px;}
.ls14_c02497{letter-spacing:0.514080px;}
.ls11_c02497{letter-spacing:0.536976px;}
.lsc_c02497{letter-spacing:0.579744px;}
.ls13_c02497{letter-spacing:0.594000px;}
.lsa_c02497{letter-spacing:0.598752px;}
.ls4_c02497{letter-spacing:0.613008px;}
.ls1_c02497{letter-spacing:0.651024px;}
.lsf_c02497{letter-spacing:0.660528px;}
.ls3_c02497{letter-spacing:0.665280px;}
.ls6_c02497{letter-spacing:0.717552px;}
.ls0_c02497{letter-spacing:0.722304px;}
.sc__c02497{text-shadow:none;}
.sc0_c02497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02497{-webkit-text-stroke:0px transparent;}
.sc0_c02497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02497{word-spacing:-15.126048px;}
.ws11_c02497{word-spacing:-12.545280px;}
.wsb_c02497{word-spacing:-12.474000px;}
.ws6_c02497{word-spacing:-12.459744px;}
.wsa_c02497{word-spacing:-12.416976px;}
.ws4_c02497{word-spacing:-11.637648px;}
.ws2_c02497{word-spacing:-11.266992px;}
.ws1a_c02497{word-spacing:-2.159136px;}
.ws15_c02497{word-spacing:-1.083456px;}
.ws17_c02497{word-spacing:-1.012176px;}
.ws12_c02497{word-spacing:-0.974160px;}
.ws14_c02497{word-spacing:-0.118800px;}
.ws18_c02497{word-spacing:-0.099792px;}
.ws19_c02497{word-spacing:-0.085536px;}
.ws13_c02497{word-spacing:0.000000px;}
.ws1b_c02497{word-spacing:0.232848px;}
.ws16_c02497{word-spacing:0.836352px;}
.ws9_c02497{word-spacing:0.955152px;}
.wsc_c02497{word-spacing:33.300288px;}
.ws8_c02497{word-spacing:36.143712px;}
.wse_c02497{word-spacing:36.742464px;}
.ws1_c02497{word-spacing:37.759392px;}
.ws0_c02497{word-spacing:38.020752px;}
.ws3_c02497{word-spacing:39.218256px;}
.ws5_c02497{word-spacing:39.902544px;}
.ws7_c02497{word-spacing:42.026688px;}
.wsf_c02497{word-spacing:58.601664px;}
.ws10_c02497{word-spacing:59.323968px;}
._0_c02497{margin-left:-1.948320px;}
._2_c02497{width:1.482624px;}
._5_c02497{width:2.770416px;}
._4_c02497{width:5.749920px;}
._6_c02497{width:17.121456px;}
._7_c02497{width:18.950976px;}
._1_c02497{width:50.252400px;}
._3_c02497{width:51.530688px;}
._8_c02497{width:73.280592px;}
._9_c02497{width:75.304944px;}
.fc0_c02497{color:rgb(0,0,0);}
.fs0_c02497{font-size:47.520000px;}
.fs1_c02497{font-size:60.480000px;}
.y0_c02497{bottom:0.000000px;}
.y1b_c02497{bottom:146.998362px;}
.y1d_c02497{bottom:186.600234px;}
.y1c_c02497{bottom:196.320450px;}
.y1a_c02497{bottom:275.878542px;}
.y19_c02497{bottom:341.759082px;}
.y18_c02497{bottom:356.878758px;}
.y16_c02497{bottom:406.559730px;}
.y12_c02497{bottom:424.560306px;}
.y17_c02497{bottom:458.759262px;}
.y15_c02497{bottom:491.879514px;}
.y14_c02497{bottom:509.880090px;}
.y11_c02497{bottom:543.000342px;}
.y13_c02497{bottom:559.559874px;}
.y10_c02497{bottom:577.560450px;}
.y1e_c02497{bottom:614.280450px;}
.yc_c02497{bottom:667.559514px;}
.ye_c02497{bottom:707.160234px;}
.yd_c02497{bottom:716.880450px;}
.yb_c02497{bottom:796.439694px;}
.ya_c02497{bottom:862.319046px;}
.y9_c02497{bottom:877.438722px;}
.y7_c02497{bottom:926.759730px;}
.y3_c02497{bottom:944.760306px;}
.y8_c02497{bottom:979.319226px;}
.y6_c02497{bottom:1012.439478px;}
.y5_c02497{bottom:1030.440054px;}
.y2_c02497{bottom:1063.560306px;}
.y4_c02497{bottom:1079.759874px;}
.y1_c02497{bottom:1097.760450px;}
.yf_c02497{bottom:1134.840450px;}
.h3_c02497{height:32.530781px;}
.h1_c02497{height:41.696016px;}
.h2_c02497{height:41.812031px;}
.h4_c02497{height:54.654737px;}
.h0_c02497{height:1263.000000px;}
.w1_c02497{width:892.500000px;}
.w0_c02497{width:892.830000px;}
.x0_c02497{left:0.000000px;}
.xe_c02497{left:117.000000px;}
.x8_c02497{left:440.999856px;}
.x4_c02497{left:445.680576px;}
.xc_c02497{left:451.080000px;}
.x7_c02497{left:455.399604px;}
.x5_c02497{left:461.880144px;}
.x1_c02497{left:463.320000px;}
.xb_c02497{left:483.480360px;}
.x9_c02497{left:492.119496px;}
.x6_c02497{left:493.200576px;}
.xd_c02497{left:506.880360px;}
.x3_c02497{left:511.919892px;}
.x2_c02497{left:526.679604px;}
.xa_c02497{left:569.880036px;}
@media print{
.v0_c02497{vertical-align:0.000000pt;}
.v1_c02497{vertical-align:1.279488pt;}
.lse_c02497{letter-spacing:-1.064448pt;}
.ls9_c02497{letter-spacing:-0.544896pt;}
.ls16_c02497{letter-spacing:-0.528000pt;}
.lsb_c02497{letter-spacing:-0.511104pt;}
.ls12_c02497{letter-spacing:-0.244992pt;}
.ls10_c02497{letter-spacing:-0.232320pt;}
.ls8_c02497{letter-spacing:-0.215424pt;}
.ls5_c02497{letter-spacing:-0.105600pt;}
.ls15_c02497{letter-spacing:0.000000pt;}
.ls2_c02497{letter-spacing:0.005376pt;}
.ls7_c02497{letter-spacing:0.114048pt;}
.lsd_c02497{letter-spacing:0.451968pt;}
.ls14_c02497{letter-spacing:0.456960pt;}
.ls11_c02497{letter-spacing:0.477312pt;}
.lsc_c02497{letter-spacing:0.515328pt;}
.ls13_c02497{letter-spacing:0.528000pt;}
.lsa_c02497{letter-spacing:0.532224pt;}
.ls4_c02497{letter-spacing:0.544896pt;}
.ls1_c02497{letter-spacing:0.578688pt;}
.lsf_c02497{letter-spacing:0.587136pt;}
.ls3_c02497{letter-spacing:0.591360pt;}
.ls6_c02497{letter-spacing:0.637824pt;}
.ls0_c02497{letter-spacing:0.642048pt;}
.wsd_c02497{word-spacing:-13.445376pt;}
.ws11_c02497{word-spacing:-11.151360pt;}
.wsb_c02497{word-spacing:-11.088000pt;}
.ws6_c02497{word-spacing:-11.075328pt;}
.wsa_c02497{word-spacing:-11.037312pt;}
.ws4_c02497{word-spacing:-10.344576pt;}
.ws2_c02497{word-spacing:-10.015104pt;}
.ws1a_c02497{word-spacing:-1.919232pt;}
.ws15_c02497{word-spacing:-0.963072pt;}
.ws17_c02497{word-spacing:-0.899712pt;}
.ws12_c02497{word-spacing:-0.865920pt;}
.ws14_c02497{word-spacing:-0.105600pt;}
.ws18_c02497{word-spacing:-0.088704pt;}
.ws19_c02497{word-spacing:-0.076032pt;}
.ws13_c02497{word-spacing:0.000000pt;}
.ws1b_c02497{word-spacing:0.206976pt;}
.ws16_c02497{word-spacing:0.743424pt;}
.ws9_c02497{word-spacing:0.849024pt;}
.wsc_c02497{word-spacing:29.600256pt;}
.ws8_c02497{word-spacing:32.127744pt;}
.wse_c02497{word-spacing:32.659968pt;}
.ws1_c02497{word-spacing:33.563904pt;}
.ws0_c02497{word-spacing:33.796224pt;}
.ws3_c02497{word-spacing:34.860672pt;}
.ws5_c02497{word-spacing:35.468928pt;}
.ws7_c02497{word-spacing:37.357056pt;}
.wsf_c02497{word-spacing:52.090368pt;}
.ws10_c02497{word-spacing:52.732416pt;}
._0_c02497{margin-left:-1.731840pt;}
._2_c02497{width:1.317888pt;}
._5_c02497{width:2.462592pt;}
._4_c02497{width:5.111040pt;}
._6_c02497{width:15.219072pt;}
._7_c02497{width:16.845312pt;}
._1_c02497{width:44.668800pt;}
._3_c02497{width:45.805056pt;}
._8_c02497{width:65.138304pt;}
._9_c02497{width:66.937728pt;}
.fs0_c02497{font-size:42.240000pt;}
.fs1_c02497{font-size:53.760000pt;}
.y0_c02497{bottom:0.000000pt;}
.y1b_c02497{bottom:130.665211pt;}
.y1d_c02497{bottom:165.866875pt;}
.y1c_c02497{bottom:174.507067pt;}
.y1a_c02497{bottom:245.225371pt;}
.y19_c02497{bottom:303.785851pt;}
.y18_c02497{bottom:317.225563pt;}
.y16_c02497{bottom:361.386427pt;}
.y12_c02497{bottom:377.386939pt;}
.y17_c02497{bottom:407.786011pt;}
.y15_c02497{bottom:437.226235pt;}
.y14_c02497{bottom:453.226747pt;}
.y11_c02497{bottom:482.666971pt;}
.y13_c02497{bottom:497.386555pt;}
.y10_c02497{bottom:513.387067pt;}
.y1e_c02497{bottom:546.027067pt;}
.yc_c02497{bottom:593.386235pt;}
.ye_c02497{bottom:628.586875pt;}
.yd_c02497{bottom:637.227067pt;}
.yb_c02497{bottom:707.946395pt;}
.ya_c02497{bottom:766.505819pt;}
.y9_c02497{bottom:779.945531pt;}
.y7_c02497{bottom:823.786427pt;}
.y3_c02497{bottom:839.786939pt;}
.y8_c02497{bottom:870.505979pt;}
.y6_c02497{bottom:899.946203pt;}
.y5_c02497{bottom:915.946715pt;}
.y2_c02497{bottom:945.386939pt;}
.y4_c02497{bottom:959.786555pt;}
.y1_c02497{bottom:975.787067pt;}
.yf_c02497{bottom:1008.747067pt;}
.h3_c02497{height:28.916250pt;}
.h1_c02497{height:37.063125pt;}
.h2_c02497{height:37.166250pt;}
.h4_c02497{height:48.581988pt;}
.h0_c02497{height:1122.666667pt;}
.w1_c02497{width:793.333333pt;}
.w0_c02497{width:793.626667pt;}
.x0_c02497{left:0.000000pt;}
.xe_c02497{left:104.000000pt;}
.x8_c02497{left:391.999872pt;}
.x4_c02497{left:396.160512pt;}
.xc_c02497{left:400.960000pt;}
.x7_c02497{left:404.799648pt;}
.x5_c02497{left:410.560128pt;}
.x1_c02497{left:411.840000pt;}
.xb_c02497{left:429.760320pt;}
.x9_c02497{left:437.439552pt;}
.x6_c02497{left:438.400512pt;}
.xd_c02497{left:450.560320pt;}
.x3_c02497{left:455.039904pt;}
.x2_c02497{left:468.159648pt;}
.xa_c02497{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02498 {
    display:none;
  }
  .loading-indicator_c02498.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02498 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02498 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02498" -> "#page-container .classname_c02498")
 */
.pf_c02498 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02498 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02498.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02498 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02498 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02498 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02498 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02498 {overflow:visible;}
  }
}
.c_c02498 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02498 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02498:after { /* webkit #35443 */
  content: '';
}
.t_c02498:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02498 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02498 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02498 { /* info for Javascript */
  display:none;
}
.l_c02498 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02498 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02498 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02498:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02498 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02498.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02498.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02498 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02498{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02498;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02498{font-family:ff1_c02498;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02498;src:url('chunks/assets/font_e6baa8f301fec19b239a8d78.woff2')format("woff");}.ff2_c02498{font-family:ff2_c02498;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02498;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02498{font-family:ff3_c02498;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02498{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02498{vertical-align:0.000000px;}
.v1_c02498{vertical-align:1.439424px;}
.v2_c02498{vertical-align:33.121440px;}
.lsc_c02498{letter-spacing:-0.793584px;}
.ls7_c02498{letter-spacing:-0.613008px;}
.ls9_c02498{letter-spacing:-0.574992px;}
.lsf_c02498{letter-spacing:-0.275616px;}
.lsd_c02498{letter-spacing:-0.261360px;}
.ls6_c02498{letter-spacing:-0.242352px;}
.ls3_c02498{letter-spacing:-0.118800px;}
.ls12_c02498{letter-spacing:0.000000px;}
.ls1_c02498{letter-spacing:0.006048px;}
.ls5_c02498{letter-spacing:0.128304px;}
.lsb_c02498{letter-spacing:0.508464px;}
.ls11_c02498{letter-spacing:0.514080px;}
.lse_c02498{letter-spacing:0.536976px;}
.lsa_c02498{letter-spacing:0.579744px;}
.ls10_c02498{letter-spacing:0.594000px;}
.ls8_c02498{letter-spacing:0.598752px;}
.ls2_c02498{letter-spacing:0.613008px;}
.ls4_c02498{letter-spacing:0.717552px;}
.ls0_c02498{letter-spacing:0.722304px;}
.sc__c02498{text-shadow:none;}
.sc0_c02498{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02498{-webkit-text-stroke:0px transparent;}
.sc0_c02498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c02498{word-spacing:-15.126048px;}
.wsa_c02498{word-spacing:-12.474000px;}
.ws6_c02498{word-spacing:-12.459744px;}
.wsd_c02498{word-spacing:-12.416976px;}
.ws4_c02498{word-spacing:-11.637648px;}
.ws2_c02498{word-spacing:-11.266992px;}
.ws16_c02498{word-spacing:-2.159136px;}
.ws12_c02498{word-spacing:-1.083456px;}
.wsf_c02498{word-spacing:-0.974160px;}
.ws11_c02498{word-spacing:-0.118800px;}
.ws14_c02498{word-spacing:-0.099792px;}
.ws15_c02498{word-spacing:-0.085536px;}
.ws10_c02498{word-spacing:0.000000px;}
.ws13_c02498{word-spacing:0.432432px;}
.wse_c02498{word-spacing:30.298752px;}
.wsb_c02498{word-spacing:33.300288px;}
.ws9_c02498{word-spacing:34.836912px;}
.ws8_c02498{word-spacing:36.143712px;}
.ws1_c02498{word-spacing:37.759392px;}
.ws0_c02498{word-spacing:38.020752px;}
.ws3_c02498{word-spacing:39.218256px;}
.ws5_c02498{word-spacing:39.902544px;}
.ws7_c02498{word-spacing:42.026688px;}
._0_c02498{margin-left:-1.948320px;}
._2_c02498{width:1.482624px;}
._4_c02498{width:5.749920px;}
._1_c02498{width:50.252400px;}
._3_c02498{width:51.530688px;}
.fc0_c02498{color:rgb(0,0,0);}
.fs0_c02498{font-size:47.520000px;}
.fs1_c02498{font-size:60.480000px;}
.y0_c02498{bottom:0.000000px;}
.y19_c02498{bottom:146.998362px;}
.y1b_c02498{bottom:186.600234px;}
.y1a_c02498{bottom:196.320450px;}
.y18_c02498{bottom:275.878542px;}
.y17_c02498{bottom:356.878758px;}
.y15_c02498{bottom:406.559730px;}
.y11_c02498{bottom:424.560306px;}
.y16_c02498{bottom:458.759262px;}
.y14_c02498{bottom:491.879514px;}
.y13_c02498{bottom:509.880090px;}
.y10_c02498{bottom:543.000342px;}
.y12_c02498{bottom:559.559874px;}
.yf_c02498{bottom:577.560450px;}
.y1c_c02498{bottom:614.280450px;}
.yb_c02498{bottom:667.558326px;}
.yd_c02498{bottom:707.160234px;}
.yc_c02498{bottom:716.880450px;}
.ya_c02498{bottom:796.438506px;}
.y9_c02498{bottom:877.438722px;}
.y7_c02498{bottom:926.759730px;}
.y3_c02498{bottom:944.760306px;}
.y8_c02498{bottom:979.319226px;}
.y6_c02498{bottom:1012.439478px;}
.y5_c02498{bottom:1030.440054px;}
.y2_c02498{bottom:1063.560306px;}
.y4_c02498{bottom:1079.759874px;}
.y1_c02498{bottom:1097.760450px;}
.ye_c02498{bottom:1134.840450px;}
.h3_c02498{height:32.530781px;}
.h1_c02498{height:41.696016px;}
.h2_c02498{height:41.812031px;}
.h4_c02498{height:54.654737px;}
.h5_c02498{height:74.817456px;}
.h0_c02498{height:1263.000000px;}
.w1_c02498{width:892.500000px;}
.w0_c02498{width:892.830000px;}
.x0_c02498{left:0.000000px;}
.xd_c02498{left:117.000000px;}
.x8_c02498{left:440.999856px;}
.x4_c02498{left:445.680576px;}
.xb_c02498{left:451.080000px;}
.x7_c02498{left:455.399604px;}
.x5_c02498{left:461.880144px;}
.x1_c02498{left:463.320000px;}
.xa_c02498{left:483.480360px;}
.x9_c02498{left:492.119496px;}
.x6_c02498{left:493.200576px;}
.xc_c02498{left:506.880360px;}
.x3_c02498{left:511.919892px;}
.x2_c02498{left:526.679604px;}
@media print{
.v0_c02498{vertical-align:0.000000pt;}
.v1_c02498{vertical-align:1.279488pt;}
.v2_c02498{vertical-align:29.441280pt;}
.lsc_c02498{letter-spacing:-0.705408pt;}
.ls7_c02498{letter-spacing:-0.544896pt;}
.ls9_c02498{letter-spacing:-0.511104pt;}
.lsf_c02498{letter-spacing:-0.244992pt;}
.lsd_c02498{letter-spacing:-0.232320pt;}
.ls6_c02498{letter-spacing:-0.215424pt;}
.ls3_c02498{letter-spacing:-0.105600pt;}
.ls12_c02498{letter-spacing:0.000000pt;}
.ls1_c02498{letter-spacing:0.005376pt;}
.ls5_c02498{letter-spacing:0.114048pt;}
.lsb_c02498{letter-spacing:0.451968pt;}
.ls11_c02498{letter-spacing:0.456960pt;}
.lse_c02498{letter-spacing:0.477312pt;}
.lsa_c02498{letter-spacing:0.515328pt;}
.ls10_c02498{letter-spacing:0.528000pt;}
.ls8_c02498{letter-spacing:0.532224pt;}
.ls2_c02498{letter-spacing:0.544896pt;}
.ls4_c02498{letter-spacing:0.637824pt;}
.ls0_c02498{letter-spacing:0.642048pt;}
.wsc_c02498{word-spacing:-13.445376pt;}
.wsa_c02498{word-spacing:-11.088000pt;}
.ws6_c02498{word-spacing:-11.075328pt;}
.wsd_c02498{word-spacing:-11.037312pt;}
.ws4_c02498{word-spacing:-10.344576pt;}
.ws2_c02498{word-spacing:-10.015104pt;}
.ws16_c02498{word-spacing:-1.919232pt;}
.ws12_c02498{word-spacing:-0.963072pt;}
.wsf_c02498{word-spacing:-0.865920pt;}
.ws11_c02498{word-spacing:-0.105600pt;}
.ws14_c02498{word-spacing:-0.088704pt;}
.ws15_c02498{word-spacing:-0.076032pt;}
.ws10_c02498{word-spacing:0.000000pt;}
.ws13_c02498{word-spacing:0.384384pt;}
.wse_c02498{word-spacing:26.932224pt;}
.wsb_c02498{word-spacing:29.600256pt;}
.ws9_c02498{word-spacing:30.966144pt;}
.ws8_c02498{word-spacing:32.127744pt;}
.ws1_c02498{word-spacing:33.563904pt;}
.ws0_c02498{word-spacing:33.796224pt;}
.ws3_c02498{word-spacing:34.860672pt;}
.ws5_c02498{word-spacing:35.468928pt;}
.ws7_c02498{word-spacing:37.357056pt;}
._0_c02498{margin-left:-1.731840pt;}
._2_c02498{width:1.317888pt;}
._4_c02498{width:5.111040pt;}
._1_c02498{width:44.668800pt;}
._3_c02498{width:45.805056pt;}
.fs0_c02498{font-size:42.240000pt;}
.fs1_c02498{font-size:53.760000pt;}
.y0_c02498{bottom:0.000000pt;}
.y19_c02498{bottom:130.665211pt;}
.y1b_c02498{bottom:165.866875pt;}
.y1a_c02498{bottom:174.507067pt;}
.y18_c02498{bottom:245.225371pt;}
.y17_c02498{bottom:317.225563pt;}
.y15_c02498{bottom:361.386427pt;}
.y11_c02498{bottom:377.386939pt;}
.y16_c02498{bottom:407.786011pt;}
.y14_c02498{bottom:437.226235pt;}
.y13_c02498{bottom:453.226747pt;}
.y10_c02498{bottom:482.666971pt;}
.y12_c02498{bottom:497.386555pt;}
.yf_c02498{bottom:513.387067pt;}
.y1c_c02498{bottom:546.027067pt;}
.yb_c02498{bottom:593.385179pt;}
.yd_c02498{bottom:628.586875pt;}
.yc_c02498{bottom:637.227067pt;}
.ya_c02498{bottom:707.945339pt;}
.y9_c02498{bottom:779.945531pt;}
.y7_c02498{bottom:823.786427pt;}
.y3_c02498{bottom:839.786939pt;}
.y8_c02498{bottom:870.505979pt;}
.y6_c02498{bottom:899.946203pt;}
.y5_c02498{bottom:915.946715pt;}
.y2_c02498{bottom:945.386939pt;}
.y4_c02498{bottom:959.786555pt;}
.y1_c02498{bottom:975.787067pt;}
.ye_c02498{bottom:1008.747067pt;}
.h3_c02498{height:28.916250pt;}
.h1_c02498{height:37.063125pt;}
.h2_c02498{height:37.166250pt;}
.h4_c02498{height:48.581988pt;}
.h5_c02498{height:66.504405pt;}
.h0_c02498{height:1122.666667pt;}
.w1_c02498{width:793.333333pt;}
.w0_c02498{width:793.626667pt;}
.x0_c02498{left:0.000000pt;}
.xd_c02498{left:104.000000pt;}
.x8_c02498{left:391.999872pt;}
.x4_c02498{left:396.160512pt;}
.xb_c02498{left:400.960000pt;}
.x7_c02498{left:404.799648pt;}
.x5_c02498{left:410.560128pt;}
.x1_c02498{left:411.840000pt;}
.xa_c02498{left:429.760320pt;}
.x9_c02498{left:437.439552pt;}
.x6_c02498{left:438.400512pt;}
.xc_c02498{left:450.560320pt;}
.x3_c02498{left:455.039904pt;}
.x2_c02498{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02499 {
    display:none;
  }
  .loading-indicator_c02499.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02499 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02499 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02499" -> "#page-container .classname_c02499")
 */
.pf_c02499 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02499 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02499.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02499 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02499 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02499 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02499 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02499 {overflow:visible;}
  }
}
.c_c02499 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02499 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02499:after { /* webkit #35443 */
  content: '';
}
.t_c02499:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02499 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02499 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02499 { /* info for Javascript */
  display:none;
}
.l_c02499 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02499 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02499 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02499:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02499 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02499.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02499.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02499 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02499{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02499;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c02499{font-family:ff1_c02499;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02499;src:url('chunks/assets/font_acd770c29acad979762bddbb.woff2')format("woff");}.ff2_c02499{font-family:ff2_c02499;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02499;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c02499{font-family:ff3_c02499;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02499{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02499{vertical-align:0.000000px;}
.v1_c02499{vertical-align:1.439424px;}
.lsd_c02499{letter-spacing:-0.793584px;}
.ls15_c02499{letter-spacing:-0.722304px;}
.ls8_c02499{letter-spacing:-0.613008px;}
.lsa_c02499{letter-spacing:-0.574992px;}
.ls11_c02499{letter-spacing:-0.275616px;}
.lsf_c02499{letter-spacing:-0.261360px;}
.ls7_c02499{letter-spacing:-0.242352px;}
.ls4_c02499{letter-spacing:-0.118800px;}
.ls14_c02499{letter-spacing:0.000000px;}
.ls2_c02499{letter-spacing:0.006048px;}
.ls6_c02499{letter-spacing:0.128304px;}
.lsc_c02499{letter-spacing:0.508464px;}
.ls13_c02499{letter-spacing:0.514080px;}
.ls10_c02499{letter-spacing:0.536976px;}
.lsb_c02499{letter-spacing:0.579744px;}
.ls12_c02499{letter-spacing:0.594000px;}
.ls9_c02499{letter-spacing:0.598752px;}
.ls3_c02499{letter-spacing:0.613008px;}
.ls1_c02499{letter-spacing:0.651024px;}
.lse_c02499{letter-spacing:0.660528px;}
.ls5_c02499{letter-spacing:0.717552px;}
.ls0_c02499{letter-spacing:0.722304px;}
.sc__c02499{text-shadow:none;}
.sc0_c02499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02499{-webkit-text-stroke:0px transparent;}
.sc0_c02499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c02499{word-spacing:-15.126048px;}
.wsb_c02499{word-spacing:-12.474000px;}
.ws6_c02499{word-spacing:-12.459744px;}
.wsa_c02499{word-spacing:-12.416976px;}
.ws4_c02499{word-spacing:-11.637648px;}
.ws2_c02499{word-spacing:-11.266992px;}
.ws17_c02499{word-spacing:-2.159136px;}
.ws12_c02499{word-spacing:-1.083456px;}
.ws14_c02499{word-spacing:-1.012176px;}
.wsf_c02499{word-spacing:-0.974160px;}
.ws11_c02499{word-spacing:-0.118800px;}
.ws15_c02499{word-spacing:-0.099792px;}
.ws16_c02499{word-spacing:-0.085536px;}
.ws10_c02499{word-spacing:0.000000px;}
.ws18_c02499{word-spacing:0.361152px;}
.ws13_c02499{word-spacing:0.432432px;}
.ws9_c02499{word-spacing:0.955152px;}
.wsc_c02499{word-spacing:33.300288px;}
.ws8_c02499{word-spacing:36.143712px;}
.wse_c02499{word-spacing:36.742464px;}
.ws1_c02499{word-spacing:37.759392px;}
.ws0_c02499{word-spacing:38.020752px;}
.ws3_c02499{word-spacing:39.218256px;}
.ws5_c02499{word-spacing:39.902544px;}
.ws7_c02499{word-spacing:42.026688px;}
._0_c02499{margin-left:-1.948320px;}
._2_c02499{width:1.482624px;}
._4_c02499{width:5.749920px;}
._5_c02499{width:17.121456px;}
._6_c02499{width:18.950976px;}
._1_c02499{width:50.252400px;}
._3_c02499{width:51.530688px;}
.fc0_c02499{color:rgb(0,0,0);}
.fs0_c02499{font-size:47.520000px;}
.fs1_c02499{font-size:60.480000px;}
.y0_c02499{bottom:0.000000px;}
.y1a_c02499{bottom:146.998362px;}
.y1c_c02499{bottom:186.600234px;}
.y1b_c02499{bottom:196.320450px;}
.y19_c02499{bottom:275.878542px;}
.y18_c02499{bottom:356.878758px;}
.y16_c02499{bottom:406.559730px;}
.y12_c02499{bottom:424.560306px;}
.y17_c02499{bottom:458.759262px;}
.y15_c02499{bottom:491.879514px;}
.y14_c02499{bottom:509.880090px;}
.y11_c02499{bottom:543.000342px;}
.y13_c02499{bottom:559.559874px;}
.y10_c02499{bottom:577.560450px;}
.y1d_c02499{bottom:614.280450px;}
.yc_c02499{bottom:667.559514px;}
.ye_c02499{bottom:707.160234px;}
.yd_c02499{bottom:716.880450px;}
.yb_c02499{bottom:796.439694px;}
.ya_c02499{bottom:862.319046px;}
.y9_c02499{bottom:877.438722px;}
.y7_c02499{bottom:926.759730px;}
.y3_c02499{bottom:944.760306px;}
.y8_c02499{bottom:979.319226px;}
.y6_c02499{bottom:1012.439478px;}
.y5_c02499{bottom:1030.440054px;}
.y2_c02499{bottom:1063.560306px;}
.y4_c02499{bottom:1079.759874px;}
.y1_c02499{bottom:1097.760450px;}
.yf_c02499{bottom:1134.840450px;}
.h3_c02499{height:32.530781px;}
.h1_c02499{height:41.696016px;}
.h2_c02499{height:41.812031px;}
.h4_c02499{height:54.654737px;}
.h0_c02499{height:1263.000000px;}
.w1_c02499{width:892.500000px;}
.w0_c02499{width:892.830000px;}
.x0_c02499{left:0.000000px;}
.xe_c02499{left:117.000000px;}
.x8_c02499{left:440.999856px;}
.x4_c02499{left:445.680576px;}
.xc_c02499{left:451.080000px;}
.x7_c02499{left:455.399604px;}
.x5_c02499{left:461.880144px;}
.x1_c02499{left:463.320000px;}
.xb_c02499{left:483.480360px;}
.x9_c02499{left:492.119496px;}
.x6_c02499{left:493.200576px;}
.xd_c02499{left:506.880360px;}
.x3_c02499{left:511.919892px;}
.x2_c02499{left:526.679604px;}
.xa_c02499{left:569.880036px;}
@media print{
.v0_c02499{vertical-align:0.000000pt;}
.v1_c02499{vertical-align:1.279488pt;}
.lsd_c02499{letter-spacing:-0.705408pt;}
.ls15_c02499{letter-spacing:-0.642048pt;}
.ls8_c02499{letter-spacing:-0.544896pt;}
.lsa_c02499{letter-spacing:-0.511104pt;}
.ls11_c02499{letter-spacing:-0.244992pt;}
.lsf_c02499{letter-spacing:-0.232320pt;}
.ls7_c02499{letter-spacing:-0.215424pt;}
.ls4_c02499{letter-spacing:-0.105600pt;}
.ls14_c02499{letter-spacing:0.000000pt;}
.ls2_c02499{letter-spacing:0.005376pt;}
.ls6_c02499{letter-spacing:0.114048pt;}
.lsc_c02499{letter-spacing:0.451968pt;}
.ls13_c02499{letter-spacing:0.456960pt;}
.ls10_c02499{letter-spacing:0.477312pt;}
.lsb_c02499{letter-spacing:0.515328pt;}
.ls12_c02499{letter-spacing:0.528000pt;}
.ls9_c02499{letter-spacing:0.532224pt;}
.ls3_c02499{letter-spacing:0.544896pt;}
.ls1_c02499{letter-spacing:0.578688pt;}
.lse_c02499{letter-spacing:0.587136pt;}
.ls5_c02499{letter-spacing:0.637824pt;}
.ls0_c02499{letter-spacing:0.642048pt;}
.wsd_c02499{word-spacing:-13.445376pt;}
.wsb_c02499{word-spacing:-11.088000pt;}
.ws6_c02499{word-spacing:-11.075328pt;}
.wsa_c02499{word-spacing:-11.037312pt;}
.ws4_c02499{word-spacing:-10.344576pt;}
.ws2_c02499{word-spacing:-10.015104pt;}
.ws17_c02499{word-spacing:-1.919232pt;}
.ws12_c02499{word-spacing:-0.963072pt;}
.ws14_c02499{word-spacing:-0.899712pt;}
.wsf_c02499{word-spacing:-0.865920pt;}
.ws11_c02499{word-spacing:-0.105600pt;}
.ws15_c02499{word-spacing:-0.088704pt;}
.ws16_c02499{word-spacing:-0.076032pt;}
.ws10_c02499{word-spacing:0.000000pt;}
.ws18_c02499{word-spacing:0.321024pt;}
.ws13_c02499{word-spacing:0.384384pt;}
.ws9_c02499{word-spacing:0.849024pt;}
.wsc_c02499{word-spacing:29.600256pt;}
.ws8_c02499{word-spacing:32.127744pt;}
.wse_c02499{word-spacing:32.659968pt;}
.ws1_c02499{word-spacing:33.563904pt;}
.ws0_c02499{word-spacing:33.796224pt;}
.ws3_c02499{word-spacing:34.860672pt;}
.ws5_c02499{word-spacing:35.468928pt;}
.ws7_c02499{word-spacing:37.357056pt;}
._0_c02499{margin-left:-1.731840pt;}
._2_c02499{width:1.317888pt;}
._4_c02499{width:5.111040pt;}
._5_c02499{width:15.219072pt;}
._6_c02499{width:16.845312pt;}
._1_c02499{width:44.668800pt;}
._3_c02499{width:45.805056pt;}
.fs0_c02499{font-size:42.240000pt;}
.fs1_c02499{font-size:53.760000pt;}
.y0_c02499{bottom:0.000000pt;}
.y1a_c02499{bottom:130.665211pt;}
.y1c_c02499{bottom:165.866875pt;}
.y1b_c02499{bottom:174.507067pt;}
.y19_c02499{bottom:245.225371pt;}
.y18_c02499{bottom:317.225563pt;}
.y16_c02499{bottom:361.386427pt;}
.y12_c02499{bottom:377.386939pt;}
.y17_c02499{bottom:407.786011pt;}
.y15_c02499{bottom:437.226235pt;}
.y14_c02499{bottom:453.226747pt;}
.y11_c02499{bottom:482.666971pt;}
.y13_c02499{bottom:497.386555pt;}
.y10_c02499{bottom:513.387067pt;}
.y1d_c02499{bottom:546.027067pt;}
.yc_c02499{bottom:593.386235pt;}
.ye_c02499{bottom:628.586875pt;}
.yd_c02499{bottom:637.227067pt;}
.yb_c02499{bottom:707.946395pt;}
.ya_c02499{bottom:766.505819pt;}
.y9_c02499{bottom:779.945531pt;}
.y7_c02499{bottom:823.786427pt;}
.y3_c02499{bottom:839.786939pt;}
.y8_c02499{bottom:870.505979pt;}
.y6_c02499{bottom:899.946203pt;}
.y5_c02499{bottom:915.946715pt;}
.y2_c02499{bottom:945.386939pt;}
.y4_c02499{bottom:959.786555pt;}
.y1_c02499{bottom:975.787067pt;}
.yf_c02499{bottom:1008.747067pt;}
.h3_c02499{height:28.916250pt;}
.h1_c02499{height:37.063125pt;}
.h2_c02499{height:37.166250pt;}
.h4_c02499{height:48.581988pt;}
.h0_c02499{height:1122.666667pt;}
.w1_c02499{width:793.333333pt;}
.w0_c02499{width:793.626667pt;}
.x0_c02499{left:0.000000pt;}
.xe_c02499{left:104.000000pt;}
.x8_c02499{left:391.999872pt;}
.x4_c02499{left:396.160512pt;}
.xc_c02499{left:400.960000pt;}
.x7_c02499{left:404.799648pt;}
.x5_c02499{left:410.560128pt;}
.x1_c02499{left:411.840000pt;}
.xb_c02499{left:429.760320pt;}
.x9_c02499{left:437.439552pt;}
.x6_c02499{left:438.400512pt;}
.xd_c02499{left:450.560320pt;}
.x3_c02499{left:455.039904pt;}
.x2_c02499{left:468.159648pt;}
.xa_c02499{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03000 {
    display:none;
  }
  .loading-indicator_c03000.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03000 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03000 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03000" -> "#page-container .classname_c03000")
 */
.pf_c03000 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03000 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03000 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03000 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03000 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03000 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03000 {overflow:visible;}
  }
}
.c_c03000 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03000 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03000:after { /* webkit #35443 */
  content: '';
}
.t_c03000:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03000 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03000 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03000 { /* info for Javascript */
  display:none;
}
.l_c03000 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03000 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03000 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03000:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03000 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03000.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03000 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03000;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03000{font-family:ff1_c03000;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03000;src:url('chunks/assets/font_d4d6b4f7be9fdce1d5f5abe3.woff2')format("woff");}.ff2_c03000{font-family:ff2_c03000;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03000;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c03000{font-family:ff3_c03000;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03000{vertical-align:0.000000px;}
.v1_c03000{vertical-align:1.439424px;}
.ls1a_c03000{letter-spacing:-1.197504px;}
.ls11_c03000{letter-spacing:-0.793584px;}
.lsb_c03000{letter-spacing:-0.788832px;}
.lsf_c03000{letter-spacing:-0.722304px;}
.ls7_c03000{letter-spacing:-0.613008px;}
.ls9_c03000{letter-spacing:-0.574992px;}
.ls14_c03000{letter-spacing:-0.337392px;}
.ls16_c03000{letter-spacing:-0.275616px;}
.ls12_c03000{letter-spacing:-0.261360px;}
.ls6_c03000{letter-spacing:-0.242352px;}
.ls3_c03000{letter-spacing:-0.118800px;}
.ls19_c03000{letter-spacing:0.000000px;}
.ls1_c03000{letter-spacing:0.006048px;}
.ls5_c03000{letter-spacing:0.128304px;}
.ls13_c03000{letter-spacing:0.190080px;}
.lsc_c03000{letter-spacing:0.508464px;}
.ls18_c03000{letter-spacing:0.514080px;}
.ls15_c03000{letter-spacing:0.536976px;}
.lsa_c03000{letter-spacing:0.579744px;}
.ls17_c03000{letter-spacing:0.594000px;}
.ls8_c03000{letter-spacing:0.598752px;}
.lse_c03000{letter-spacing:0.603504px;}
.ls2_c03000{letter-spacing:0.613008px;}
.ls10_c03000{letter-spacing:0.636768px;}
.lsd_c03000{letter-spacing:0.660528px;}
.ls4_c03000{letter-spacing:0.717552px;}
.ls0_c03000{letter-spacing:0.722304px;}
.sc__c03000{text-shadow:none;}
.sc0_c03000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03000{-webkit-text-stroke:0px transparent;}
.sc0_c03000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14_c03000{word-spacing:-15.126048px;}
.ws12_c03000{word-spacing:-12.474000px;}
.ws16_c03000{word-spacing:-12.459744px;}
.ws11_c03000{word-spacing:-12.416976px;}
.ws7_c03000{word-spacing:-12.388464px;}
.ws4_c03000{word-spacing:-11.637648px;}
.ws2_c03000{word-spacing:-11.266992px;}
.wsc_c03000{word-spacing:-2.166912px;}
.ws20_c03000{word-spacing:-2.159136px;}
.ws1b_c03000{word-spacing:-1.083456px;}
.ws18_c03000{word-spacing:-0.974160px;}
.wsa_c03000{word-spacing:-0.370656px;}
.ws1a_c03000{word-spacing:-0.118800px;}
.ws1d_c03000{word-spacing:-0.099792px;}
.ws1f_c03000{word-spacing:-0.085536px;}
.ws1e_c03000{word-spacing:-0.023760px;}
.ws19_c03000{word-spacing:0.000000px;}
.ws1c_c03000{word-spacing:0.427680px;}
.ws21_c03000{word-spacing:0.836352px;}
.ws9_c03000{word-spacing:0.955152px;}
.wsd_c03000{word-spacing:4.633200px;}
.wsb_c03000{word-spacing:10.810800px;}
.wse_c03000{word-spacing:23.337072px;}
.wsf_c03000{word-spacing:28.074816px;}
.ws10_c03000{word-spacing:29.139264px;}
.ws13_c03000{word-spacing:33.300288px;}
.ws17_c03000{word-spacing:34.836912px;}
.ws8_c03000{word-spacing:36.143712px;}
.ws6_c03000{word-spacing:36.742464px;}
.ws1_c03000{word-spacing:37.759392px;}
.ws0_c03000{word-spacing:38.020752px;}
.ws3_c03000{word-spacing:39.218256px;}
.ws5_c03000{word-spacing:39.902544px;}
.ws15_c03000{word-spacing:42.026688px;}
._0_c03000{margin-left:-1.948320px;}
._2_c03000{width:1.482624px;}
._f_c03000{width:2.770416px;}
._4_c03000{width:5.749920px;}
._7_c03000{width:14.203728px;}
._8_c03000{width:16.038000px;}
._5_c03000{width:17.121456px;}
._6_c03000{width:18.950976px;}
._9_c03000{width:21.269952px;}
._c_c03000{width:31.239648px;}
._b_c03000{width:32.570208px;}
._d_c03000{width:35.373888px;}
._a_c03000{width:39.584160px;}
._e_c03000{width:43.252704px;}
._1_c03000{width:50.252400px;}
._3_c03000{width:51.530688px;}
.fc0_c03000{color:rgb(0,0,0);}
.fs0_c03000{font-size:47.520000px;}
.fs1_c03000{font-size:60.480000px;}
.y0_c03000{bottom:0.000000px;}
.y1f_c03000{bottom:146.998362px;}
.y21_c03000{bottom:186.600234px;}
.y20_c03000{bottom:196.320450px;}
.y1e_c03000{bottom:275.878542px;}
.y1d_c03000{bottom:356.878758px;}
.y1b_c03000{bottom:406.559730px;}
.y17_c03000{bottom:424.560306px;}
.y1c_c03000{bottom:458.759262px;}
.y1a_c03000{bottom:491.879514px;}
.y19_c03000{bottom:509.880090px;}
.y16_c03000{bottom:543.000342px;}
.y18_c03000{bottom:559.559874px;}
.y15_c03000{bottom:577.560450px;}
.y22_c03000{bottom:614.280450px;}
.y11_c03000{bottom:667.560702px;}
.y13_c03000{bottom:707.160234px;}
.y12_c03000{bottom:716.880450px;}
.y10_c03000{bottom:766.560306px;}
.yf_c03000{bottom:781.320018px;}
.ye_c03000{bottom:796.439694px;}
.yd_c03000{bottom:817.319982px;}
.yc_c03000{bottom:832.439658px;}
.yb_c03000{bottom:847.559334px;}
.ya_c03000{bottom:862.319046px;}
.y9_c03000{bottom:877.438722px;}
.y7_c03000{bottom:926.759730px;}
.y3_c03000{bottom:944.760306px;}
.y8_c03000{bottom:979.319226px;}
.y6_c03000{bottom:1012.439478px;}
.y5_c03000{bottom:1030.440054px;}
.y2_c03000{bottom:1063.560306px;}
.y4_c03000{bottom:1079.759874px;}
.y1_c03000{bottom:1097.760450px;}
.y14_c03000{bottom:1134.840450px;}
.h3_c03000{height:32.530781px;}
.h1_c03000{height:41.696016px;}
.h2_c03000{height:41.812031px;}
.h4_c03000{height:54.654737px;}
.h0_c03000{height:1263.000000px;}
.w1_c03000{width:892.500000px;}
.w0_c03000{width:892.830000px;}
.x0_c03000{left:0.000000px;}
.xe_c03000{left:117.000000px;}
.x8_c03000{left:440.999856px;}
.x4_c03000{left:445.680576px;}
.xc_c03000{left:451.080000px;}
.x7_c03000{left:455.399604px;}
.x5_c03000{left:461.880144px;}
.x1_c03000{left:463.320000px;}
.xb_c03000{left:483.480360px;}
.x9_c03000{left:492.119496px;}
.x6_c03000{left:493.200576px;}
.xd_c03000{left:506.880360px;}
.x3_c03000{left:511.919892px;}
.x2_c03000{left:526.679604px;}
.xa_c03000{left:569.880036px;}
@media print{
.v0_c03000{vertical-align:0.000000pt;}
.v1_c03000{vertical-align:1.279488pt;}
.ls1a_c03000{letter-spacing:-1.064448pt;}
.ls11_c03000{letter-spacing:-0.705408pt;}
.lsb_c03000{letter-spacing:-0.701184pt;}
.lsf_c03000{letter-spacing:-0.642048pt;}
.ls7_c03000{letter-spacing:-0.544896pt;}
.ls9_c03000{letter-spacing:-0.511104pt;}
.ls14_c03000{letter-spacing:-0.299904pt;}
.ls16_c03000{letter-spacing:-0.244992pt;}
.ls12_c03000{letter-spacing:-0.232320pt;}
.ls6_c03000{letter-spacing:-0.215424pt;}
.ls3_c03000{letter-spacing:-0.105600pt;}
.ls19_c03000{letter-spacing:0.000000pt;}
.ls1_c03000{letter-spacing:0.005376pt;}
.ls5_c03000{letter-spacing:0.114048pt;}
.ls13_c03000{letter-spacing:0.168960pt;}
.lsc_c03000{letter-spacing:0.451968pt;}
.ls18_c03000{letter-spacing:0.456960pt;}
.ls15_c03000{letter-spacing:0.477312pt;}
.lsa_c03000{letter-spacing:0.515328pt;}
.ls17_c03000{letter-spacing:0.528000pt;}
.ls8_c03000{letter-spacing:0.532224pt;}
.lse_c03000{letter-spacing:0.536448pt;}
.ls2_c03000{letter-spacing:0.544896pt;}
.ls10_c03000{letter-spacing:0.566016pt;}
.lsd_c03000{letter-spacing:0.587136pt;}
.ls4_c03000{letter-spacing:0.637824pt;}
.ls0_c03000{letter-spacing:0.642048pt;}
.ws14_c03000{word-spacing:-13.445376pt;}
.ws12_c03000{word-spacing:-11.088000pt;}
.ws16_c03000{word-spacing:-11.075328pt;}
.ws11_c03000{word-spacing:-11.037312pt;}
.ws7_c03000{word-spacing:-11.011968pt;}
.ws4_c03000{word-spacing:-10.344576pt;}
.ws2_c03000{word-spacing:-10.015104pt;}
.wsc_c03000{word-spacing:-1.926144pt;}
.ws20_c03000{word-spacing:-1.919232pt;}
.ws1b_c03000{word-spacing:-0.963072pt;}
.ws18_c03000{word-spacing:-0.865920pt;}
.wsa_c03000{word-spacing:-0.329472pt;}
.ws1a_c03000{word-spacing:-0.105600pt;}
.ws1d_c03000{word-spacing:-0.088704pt;}
.ws1f_c03000{word-spacing:-0.076032pt;}
.ws1e_c03000{word-spacing:-0.021120pt;}
.ws19_c03000{word-spacing:0.000000pt;}
.ws1c_c03000{word-spacing:0.380160pt;}
.ws21_c03000{word-spacing:0.743424pt;}
.ws9_c03000{word-spacing:0.849024pt;}
.wsd_c03000{word-spacing:4.118400pt;}
.wsb_c03000{word-spacing:9.609600pt;}
.wse_c03000{word-spacing:20.744064pt;}
.wsf_c03000{word-spacing:24.955392pt;}
.ws10_c03000{word-spacing:25.901568pt;}
.ws13_c03000{word-spacing:29.600256pt;}
.ws17_c03000{word-spacing:30.966144pt;}
.ws8_c03000{word-spacing:32.127744pt;}
.ws6_c03000{word-spacing:32.659968pt;}
.ws1_c03000{word-spacing:33.563904pt;}
.ws0_c03000{word-spacing:33.796224pt;}
.ws3_c03000{word-spacing:34.860672pt;}
.ws5_c03000{word-spacing:35.468928pt;}
.ws15_c03000{word-spacing:37.357056pt;}
._0_c03000{margin-left:-1.731840pt;}
._2_c03000{width:1.317888pt;}
._f_c03000{width:2.462592pt;}
._4_c03000{width:5.111040pt;}
._7_c03000{width:12.625536pt;}
._8_c03000{width:14.256000pt;}
._5_c03000{width:15.219072pt;}
._6_c03000{width:16.845312pt;}
._9_c03000{width:18.906624pt;}
._c_c03000{width:27.768576pt;}
._b_c03000{width:28.951296pt;}
._d_c03000{width:31.443456pt;}
._a_c03000{width:35.185920pt;}
._e_c03000{width:38.446848pt;}
._1_c03000{width:44.668800pt;}
._3_c03000{width:45.805056pt;}
.fs0_c03000{font-size:42.240000pt;}
.fs1_c03000{font-size:53.760000pt;}
.y0_c03000{bottom:0.000000pt;}
.y1f_c03000{bottom:130.665211pt;}
.y21_c03000{bottom:165.866875pt;}
.y20_c03000{bottom:174.507067pt;}
.y1e_c03000{bottom:245.225371pt;}
.y1d_c03000{bottom:317.225563pt;}
.y1b_c03000{bottom:361.386427pt;}
.y17_c03000{bottom:377.386939pt;}
.y1c_c03000{bottom:407.786011pt;}
.y1a_c03000{bottom:437.226235pt;}
.y19_c03000{bottom:453.226747pt;}
.y16_c03000{bottom:482.666971pt;}
.y18_c03000{bottom:497.386555pt;}
.y15_c03000{bottom:513.387067pt;}
.y22_c03000{bottom:546.027067pt;}
.y11_c03000{bottom:593.387291pt;}
.y13_c03000{bottom:628.586875pt;}
.y12_c03000{bottom:637.227067pt;}
.y10_c03000{bottom:681.386939pt;}
.yf_c03000{bottom:694.506683pt;}
.ye_c03000{bottom:707.946395pt;}
.yd_c03000{bottom:726.506651pt;}
.yc_c03000{bottom:739.946363pt;}
.yb_c03000{bottom:753.386075pt;}
.ya_c03000{bottom:766.505819pt;}
.y9_c03000{bottom:779.945531pt;}
.y7_c03000{bottom:823.786427pt;}
.y3_c03000{bottom:839.786939pt;}
.y8_c03000{bottom:870.505979pt;}
.y6_c03000{bottom:899.946203pt;}
.y5_c03000{bottom:915.946715pt;}
.y2_c03000{bottom:945.386939pt;}
.y4_c03000{bottom:959.786555pt;}
.y1_c03000{bottom:975.787067pt;}
.y14_c03000{bottom:1008.747067pt;}
.h3_c03000{height:28.916250pt;}
.h1_c03000{height:37.063125pt;}
.h2_c03000{height:37.166250pt;}
.h4_c03000{height:48.581988pt;}
.h0_c03000{height:1122.666667pt;}
.w1_c03000{width:793.333333pt;}
.w0_c03000{width:793.626667pt;}
.x0_c03000{left:0.000000pt;}
.xe_c03000{left:104.000000pt;}
.x8_c03000{left:391.999872pt;}
.x4_c03000{left:396.160512pt;}
.xc_c03000{left:400.960000pt;}
.x7_c03000{left:404.799648pt;}
.x5_c03000{left:410.560128pt;}
.x1_c03000{left:411.840000pt;}
.xb_c03000{left:429.760320pt;}
.x9_c03000{left:437.439552pt;}
.x6_c03000{left:438.400512pt;}
.xd_c03000{left:450.560320pt;}
.x3_c03000{left:455.039904pt;}
.x2_c03000{left:468.159648pt;}
.xa_c03000{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03001 {
    display:none;
  }
  .loading-indicator_c03001.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03001 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03001 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03001" -> "#page-container .classname_c03001")
 */
.pf_c03001 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03001 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03001 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03001 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03001 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03001 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03001 {overflow:visible;}
  }
}
.c_c03001 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03001 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03001:after { /* webkit #35443 */
  content: '';
}
.t_c03001:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03001 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03001 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03001 { /* info for Javascript */
  display:none;
}
.l_c03001 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03001 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03001 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03001:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03001 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03001.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03001 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03001;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03001{font-family:ff1_c03001;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03001;src:url('chunks/assets/font_d0d846a715ac2571130d9968.woff2')format("woff");}.ff2_c03001{font-family:ff2_c03001;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03001;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c03001{font-family:ff3_c03001;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03001{vertical-align:0.000000px;}
.v1_c03001{vertical-align:1.439424px;}
.ls16_c03001{letter-spacing:-1.197504px;}
.lse_c03001{letter-spacing:-0.793584px;}
.lsb_c03001{letter-spacing:-0.774576px;}
.ls17_c03001{letter-spacing:-0.760320px;}
.ls11_c03001{letter-spacing:-0.741312px;}
.ls8_c03001{letter-spacing:-0.613008px;}
.lsa_c03001{letter-spacing:-0.574992px;}
.ls18_c03001{letter-spacing:-0.275616px;}
.ls12_c03001{letter-spacing:-0.270864px;}
.lsf_c03001{letter-spacing:-0.261360px;}
.ls7_c03001{letter-spacing:-0.242352px;}
.ls4_c03001{letter-spacing:-0.118800px;}
.ls15_c03001{letter-spacing:0.000000px;}
.ls1_c03001{letter-spacing:0.006048px;}
.ls6_c03001{letter-spacing:0.128304px;}
.lsd_c03001{letter-spacing:0.508464px;}
.ls14_c03001{letter-spacing:0.514080px;}
.ls10_c03001{letter-spacing:0.536976px;}
.lsc_c03001{letter-spacing:0.579744px;}
.ls13_c03001{letter-spacing:0.594000px;}
.ls9_c03001{letter-spacing:0.598752px;}
.ls3_c03001{letter-spacing:0.613008px;}
.ls0_c03001{letter-spacing:0.651024px;}
.ls5_c03001{letter-spacing:0.717552px;}
.ls2_c03001{letter-spacing:0.722304px;}
.sc__c03001{text-shadow:none;}
.sc0_c03001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03001{-webkit-text-stroke:0px transparent;}
.sc0_c03001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03001{word-spacing:-15.126048px;}
.wsb_c03001{word-spacing:-12.474000px;}
.ws7_c03001{word-spacing:-12.459744px;}
.ws4_c03001{word-spacing:-11.637648px;}
.ws2_c03001{word-spacing:-11.266992px;}
.ws6_c03001{word-spacing:-11.105424px;}
.ws18_c03001{word-spacing:-2.159136px;}
.ws19_c03001{word-spacing:-1.083456px;}
.ws12_c03001{word-spacing:-1.012176px;}
.ws10_c03001{word-spacing:-0.974160px;}
.ws13_c03001{word-spacing:-0.118800px;}
.ws15_c03001{word-spacing:-0.099792px;}
.ws16_c03001{word-spacing:-0.090288px;}
.ws17_c03001{word-spacing:-0.085536px;}
.ws11_c03001{word-spacing:0.000000px;}
.ws1b_c03001{word-spacing:0.399168px;}
.ws14_c03001{word-spacing:0.432432px;}
.ws1a_c03001{word-spacing:0.836352px;}
.wsa_c03001{word-spacing:32.560704px;}
.wsc_c03001{word-spacing:33.300288px;}
.ws9_c03001{word-spacing:34.836912px;}
.wsf_c03001{word-spacing:36.143712px;}
.wse_c03001{word-spacing:36.742464px;}
.ws1_c03001{word-spacing:37.759392px;}
.ws0_c03001{word-spacing:38.020752px;}
.ws3_c03001{word-spacing:39.218256px;}
.ws5_c03001{word-spacing:39.902544px;}
.ws8_c03001{word-spacing:42.026688px;}
._0_c03001{margin-left:-1.948320px;}
._2_c03001{width:1.482624px;}
._5_c03001{width:2.770416px;}
._4_c03001{width:5.749920px;}
._1_c03001{width:50.252400px;}
._3_c03001{width:51.530688px;}
.fc0_c03001{color:rgb(0,0,0);}
.fs0_c03001{font-size:47.520000px;}
.fs1_c03001{font-size:60.480000px;}
.y0_c03001{bottom:0.000000px;}
.y1a_c03001{bottom:146.998362px;}
.y1c_c03001{bottom:186.600234px;}
.y1b_c03001{bottom:196.320450px;}
.y19_c03001{bottom:275.878542px;}
.y18_c03001{bottom:356.878758px;}
.y16_c03001{bottom:406.559730px;}
.y12_c03001{bottom:424.560306px;}
.y17_c03001{bottom:458.759262px;}
.y15_c03001{bottom:491.879514px;}
.y14_c03001{bottom:509.880090px;}
.y11_c03001{bottom:543.000342px;}
.y13_c03001{bottom:559.559874px;}
.y10_c03001{bottom:577.560450px;}
.y1d_c03001{bottom:614.280450px;}
.yc_c03001{bottom:652.438650px;}
.yb_c03001{bottom:667.558326px;}
.ye_c03001{bottom:707.160234px;}
.yd_c03001{bottom:716.880450px;}
.ya_c03001{bottom:796.438506px;}
.y9_c03001{bottom:877.438722px;}
.y7_c03001{bottom:926.759730px;}
.y3_c03001{bottom:944.760306px;}
.y8_c03001{bottom:979.319226px;}
.y6_c03001{bottom:1012.439478px;}
.y5_c03001{bottom:1030.440054px;}
.y2_c03001{bottom:1063.560306px;}
.y4_c03001{bottom:1079.759874px;}
.y1_c03001{bottom:1097.760450px;}
.yf_c03001{bottom:1134.840450px;}
.h3_c03001{height:32.530781px;}
.h1_c03001{height:41.696016px;}
.h2_c03001{height:41.812031px;}
.h4_c03001{height:54.654737px;}
.h0_c03001{height:1263.000000px;}
.w1_c03001{width:892.500000px;}
.w0_c03001{width:892.830000px;}
.x0_c03001{left:0.000000px;}
.xe_c03001{left:117.000000px;}
.x8_c03001{left:440.999856px;}
.x4_c03001{left:445.680576px;}
.xc_c03001{left:451.080000px;}
.x7_c03001{left:455.399604px;}
.x5_c03001{left:461.880144px;}
.x1_c03001{left:463.320000px;}
.xa_c03001{left:483.480360px;}
.x9_c03001{left:492.119496px;}
.x6_c03001{left:493.200576px;}
.xd_c03001{left:506.880360px;}
.x3_c03001{left:511.919892px;}
.x2_c03001{left:526.679604px;}
.xb_c03001{left:569.880036px;}
@media print{
.v0_c03001{vertical-align:0.000000pt;}
.v1_c03001{vertical-align:1.279488pt;}
.ls16_c03001{letter-spacing:-1.064448pt;}
.lse_c03001{letter-spacing:-0.705408pt;}
.lsb_c03001{letter-spacing:-0.688512pt;}
.ls17_c03001{letter-spacing:-0.675840pt;}
.ls11_c03001{letter-spacing:-0.658944pt;}
.ls8_c03001{letter-spacing:-0.544896pt;}
.lsa_c03001{letter-spacing:-0.511104pt;}
.ls18_c03001{letter-spacing:-0.244992pt;}
.ls12_c03001{letter-spacing:-0.240768pt;}
.lsf_c03001{letter-spacing:-0.232320pt;}
.ls7_c03001{letter-spacing:-0.215424pt;}
.ls4_c03001{letter-spacing:-0.105600pt;}
.ls15_c03001{letter-spacing:0.000000pt;}
.ls1_c03001{letter-spacing:0.005376pt;}
.ls6_c03001{letter-spacing:0.114048pt;}
.lsd_c03001{letter-spacing:0.451968pt;}
.ls14_c03001{letter-spacing:0.456960pt;}
.ls10_c03001{letter-spacing:0.477312pt;}
.lsc_c03001{letter-spacing:0.515328pt;}
.ls13_c03001{letter-spacing:0.528000pt;}
.ls9_c03001{letter-spacing:0.532224pt;}
.ls3_c03001{letter-spacing:0.544896pt;}
.ls0_c03001{letter-spacing:0.578688pt;}
.ls5_c03001{letter-spacing:0.637824pt;}
.ls2_c03001{letter-spacing:0.642048pt;}
.wsd_c03001{word-spacing:-13.445376pt;}
.wsb_c03001{word-spacing:-11.088000pt;}
.ws7_c03001{word-spacing:-11.075328pt;}
.ws4_c03001{word-spacing:-10.344576pt;}
.ws2_c03001{word-spacing:-10.015104pt;}
.ws6_c03001{word-spacing:-9.871488pt;}
.ws18_c03001{word-spacing:-1.919232pt;}
.ws19_c03001{word-spacing:-0.963072pt;}
.ws12_c03001{word-spacing:-0.899712pt;}
.ws10_c03001{word-spacing:-0.865920pt;}
.ws13_c03001{word-spacing:-0.105600pt;}
.ws15_c03001{word-spacing:-0.088704pt;}
.ws16_c03001{word-spacing:-0.080256pt;}
.ws17_c03001{word-spacing:-0.076032pt;}
.ws11_c03001{word-spacing:0.000000pt;}
.ws1b_c03001{word-spacing:0.354816pt;}
.ws14_c03001{word-spacing:0.384384pt;}
.ws1a_c03001{word-spacing:0.743424pt;}
.wsa_c03001{word-spacing:28.942848pt;}
.wsc_c03001{word-spacing:29.600256pt;}
.ws9_c03001{word-spacing:30.966144pt;}
.wsf_c03001{word-spacing:32.127744pt;}
.wse_c03001{word-spacing:32.659968pt;}
.ws1_c03001{word-spacing:33.563904pt;}
.ws0_c03001{word-spacing:33.796224pt;}
.ws3_c03001{word-spacing:34.860672pt;}
.ws5_c03001{word-spacing:35.468928pt;}
.ws8_c03001{word-spacing:37.357056pt;}
._0_c03001{margin-left:-1.731840pt;}
._2_c03001{width:1.317888pt;}
._5_c03001{width:2.462592pt;}
._4_c03001{width:5.111040pt;}
._1_c03001{width:44.668800pt;}
._3_c03001{width:45.805056pt;}
.fs0_c03001{font-size:42.240000pt;}
.fs1_c03001{font-size:53.760000pt;}
.y0_c03001{bottom:0.000000pt;}
.y1a_c03001{bottom:130.665211pt;}
.y1c_c03001{bottom:165.866875pt;}
.y1b_c03001{bottom:174.507067pt;}
.y19_c03001{bottom:245.225371pt;}
.y18_c03001{bottom:317.225563pt;}
.y16_c03001{bottom:361.386427pt;}
.y12_c03001{bottom:377.386939pt;}
.y17_c03001{bottom:407.786011pt;}
.y15_c03001{bottom:437.226235pt;}
.y14_c03001{bottom:453.226747pt;}
.y11_c03001{bottom:482.666971pt;}
.y13_c03001{bottom:497.386555pt;}
.y10_c03001{bottom:513.387067pt;}
.y1d_c03001{bottom:546.027067pt;}
.yc_c03001{bottom:579.945467pt;}
.yb_c03001{bottom:593.385179pt;}
.ye_c03001{bottom:628.586875pt;}
.yd_c03001{bottom:637.227067pt;}
.ya_c03001{bottom:707.945339pt;}
.y9_c03001{bottom:779.945531pt;}
.y7_c03001{bottom:823.786427pt;}
.y3_c03001{bottom:839.786939pt;}
.y8_c03001{bottom:870.505979pt;}
.y6_c03001{bottom:899.946203pt;}
.y5_c03001{bottom:915.946715pt;}
.y2_c03001{bottom:945.386939pt;}
.y4_c03001{bottom:959.786555pt;}
.y1_c03001{bottom:975.787067pt;}
.yf_c03001{bottom:1008.747067pt;}
.h3_c03001{height:28.916250pt;}
.h1_c03001{height:37.063125pt;}
.h2_c03001{height:37.166250pt;}
.h4_c03001{height:48.581988pt;}
.h0_c03001{height:1122.666667pt;}
.w1_c03001{width:793.333333pt;}
.w0_c03001{width:793.626667pt;}
.x0_c03001{left:0.000000pt;}
.xe_c03001{left:104.000000pt;}
.x8_c03001{left:391.999872pt;}
.x4_c03001{left:396.160512pt;}
.xc_c03001{left:400.960000pt;}
.x7_c03001{left:404.799648pt;}
.x5_c03001{left:410.560128pt;}
.x1_c03001{left:411.840000pt;}
.xa_c03001{left:429.760320pt;}
.x9_c03001{left:437.439552pt;}
.x6_c03001{left:438.400512pt;}
.xd_c03001{left:450.560320pt;}
.x3_c03001{left:455.039904pt;}
.x2_c03001{left:468.159648pt;}
.xb_c03001{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03002 {
    display:none;
  }
  .loading-indicator_c03002.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03002 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03002 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03002" -> "#page-container .classname_c03002")
 */
.pf_c03002 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03002 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03002.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03002 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03002 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03002 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03002 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03002 {overflow:visible;}
  }
}
.c_c03002 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03002 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03002:after { /* webkit #35443 */
  content: '';
}
.t_c03002:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03002 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03002 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03002 { /* info for Javascript */
  display:none;
}
.l_c03002 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03002 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03002 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03002:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03002 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03002.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03002.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03002 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03002;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03002{font-family:ff1_c03002;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03002;src:url('chunks/assets/font_9a565fee43c15d83dbbf7714.woff2')format("woff");}.ff2_c03002{font-family:ff2_c03002;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03002;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c03002{font-family:ff3_c03002;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03002{vertical-align:0.000000px;}
.v1_c03002{vertical-align:1.439424px;}
.ls16_c03002{letter-spacing:-1.197504px;}
.lse_c03002{letter-spacing:-0.793584px;}
.lsb_c03002{letter-spacing:-0.774576px;}
.ls11_c03002{letter-spacing:-0.741312px;}
.ls8_c03002{letter-spacing:-0.613008px;}
.lsa_c03002{letter-spacing:-0.574992px;}
.ls17_c03002{letter-spacing:-0.508464px;}
.ls18_c03002{letter-spacing:-0.275616px;}
.ls12_c03002{letter-spacing:-0.270864px;}
.lsf_c03002{letter-spacing:-0.261360px;}
.ls7_c03002{letter-spacing:-0.242352px;}
.ls4_c03002{letter-spacing:-0.118800px;}
.ls15_c03002{letter-spacing:0.000000px;}
.ls1_c03002{letter-spacing:0.006048px;}
.ls6_c03002{letter-spacing:0.128304px;}
.lsd_c03002{letter-spacing:0.508464px;}
.ls14_c03002{letter-spacing:0.514080px;}
.ls10_c03002{letter-spacing:0.536976px;}
.lsc_c03002{letter-spacing:0.579744px;}
.ls13_c03002{letter-spacing:0.594000px;}
.ls9_c03002{letter-spacing:0.598752px;}
.ls3_c03002{letter-spacing:0.613008px;}
.ls0_c03002{letter-spacing:0.651024px;}
.ls5_c03002{letter-spacing:0.717552px;}
.ls2_c03002{letter-spacing:0.722304px;}
.sc__c03002{text-shadow:none;}
.sc0_c03002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03002{-webkit-text-stroke:0px transparent;}
.sc0_c03002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03002{word-spacing:-15.126048px;}
.wsb_c03002{word-spacing:-12.474000px;}
.ws7_c03002{word-spacing:-12.459744px;}
.ws4_c03002{word-spacing:-11.637648px;}
.ws2_c03002{word-spacing:-11.266992px;}
.ws6_c03002{word-spacing:-11.105424px;}
.ws18_c03002{word-spacing:-2.159136px;}
.ws19_c03002{word-spacing:-1.083456px;}
.ws12_c03002{word-spacing:-1.012176px;}
.ws10_c03002{word-spacing:-0.974160px;}
.ws13_c03002{word-spacing:-0.118800px;}
.ws15_c03002{word-spacing:-0.099792px;}
.ws16_c03002{word-spacing:-0.090288px;}
.ws17_c03002{word-spacing:-0.085536px;}
.ws11_c03002{word-spacing:0.000000px;}
.ws1a_c03002{word-spacing:0.147312px;}
.ws14_c03002{word-spacing:0.432432px;}
.wsf_c03002{word-spacing:20.395584px;}
.wsa_c03002{word-spacing:32.560704px;}
.wsc_c03002{word-spacing:33.300288px;}
.ws9_c03002{word-spacing:34.836912px;}
.wse_c03002{word-spacing:36.742464px;}
.ws1_c03002{word-spacing:37.759392px;}
.ws0_c03002{word-spacing:38.020752px;}
.ws3_c03002{word-spacing:39.218256px;}
.ws5_c03002{word-spacing:39.902544px;}
.ws8_c03002{word-spacing:42.026688px;}
._0_c03002{margin-left:-1.948320px;}
._2_c03002{width:1.482624px;}
._7_c03002{width:2.651616px;}
._4_c03002{width:5.749920px;}
._6_c03002{width:29.709504px;}
._5_c03002{width:32.099760px;}
._1_c03002{width:50.252400px;}
._3_c03002{width:51.530688px;}
.fc0_c03002{color:rgb(0,0,0);}
.fs0_c03002{font-size:47.520000px;}
.fs1_c03002{font-size:60.480000px;}
.y0_c03002{bottom:0.000000px;}
.y1b_c03002{bottom:146.999550px;}
.y1d_c03002{bottom:186.600234px;}
.y1c_c03002{bottom:196.320450px;}
.y1a_c03002{bottom:275.879730px;}
.y19_c03002{bottom:356.879946px;}
.y16_c03002{bottom:406.559730px;}
.y12_c03002{bottom:424.560306px;}
.y18_c03002{bottom:443.999550px;}
.y17_c03002{bottom:458.759262px;}
.y15_c03002{bottom:491.879514px;}
.y14_c03002{bottom:509.880090px;}
.y11_c03002{bottom:543.000342px;}
.y13_c03002{bottom:559.559874px;}
.y10_c03002{bottom:577.560450px;}
.y1e_c03002{bottom:614.280450px;}
.yc_c03002{bottom:652.438650px;}
.yb_c03002{bottom:667.558326px;}
.ye_c03002{bottom:707.160234px;}
.yd_c03002{bottom:716.880450px;}
.ya_c03002{bottom:796.438506px;}
.y9_c03002{bottom:877.438722px;}
.y7_c03002{bottom:926.759730px;}
.y3_c03002{bottom:944.760306px;}
.y8_c03002{bottom:979.319226px;}
.y6_c03002{bottom:1012.439478px;}
.y5_c03002{bottom:1030.440054px;}
.y2_c03002{bottom:1063.560306px;}
.y4_c03002{bottom:1079.759874px;}
.y1_c03002{bottom:1097.760450px;}
.yf_c03002{bottom:1134.840450px;}
.h3_c03002{height:32.530781px;}
.h1_c03002{height:41.696016px;}
.h2_c03002{height:41.812031px;}
.h4_c03002{height:54.654737px;}
.h0_c03002{height:1263.000000px;}
.w1_c03002{width:892.500000px;}
.w0_c03002{width:892.830000px;}
.x0_c03002{left:0.000000px;}
.xe_c03002{left:117.000000px;}
.x8_c03002{left:440.999856px;}
.x4_c03002{left:445.680576px;}
.xc_c03002{left:451.080000px;}
.x7_c03002{left:455.399604px;}
.x5_c03002{left:461.880144px;}
.x1_c03002{left:463.320000px;}
.xa_c03002{left:483.480360px;}
.x9_c03002{left:492.119496px;}
.x6_c03002{left:493.200576px;}
.xd_c03002{left:506.880360px;}
.x3_c03002{left:511.919892px;}
.x2_c03002{left:526.679604px;}
.xb_c03002{left:569.880036px;}
@media print{
.v0_c03002{vertical-align:0.000000pt;}
.v1_c03002{vertical-align:1.279488pt;}
.ls16_c03002{letter-spacing:-1.064448pt;}
.lse_c03002{letter-spacing:-0.705408pt;}
.lsb_c03002{letter-spacing:-0.688512pt;}
.ls11_c03002{letter-spacing:-0.658944pt;}
.ls8_c03002{letter-spacing:-0.544896pt;}
.lsa_c03002{letter-spacing:-0.511104pt;}
.ls17_c03002{letter-spacing:-0.451968pt;}
.ls18_c03002{letter-spacing:-0.244992pt;}
.ls12_c03002{letter-spacing:-0.240768pt;}
.lsf_c03002{letter-spacing:-0.232320pt;}
.ls7_c03002{letter-spacing:-0.215424pt;}
.ls4_c03002{letter-spacing:-0.105600pt;}
.ls15_c03002{letter-spacing:0.000000pt;}
.ls1_c03002{letter-spacing:0.005376pt;}
.ls6_c03002{letter-spacing:0.114048pt;}
.lsd_c03002{letter-spacing:0.451968pt;}
.ls14_c03002{letter-spacing:0.456960pt;}
.ls10_c03002{letter-spacing:0.477312pt;}
.lsc_c03002{letter-spacing:0.515328pt;}
.ls13_c03002{letter-spacing:0.528000pt;}
.ls9_c03002{letter-spacing:0.532224pt;}
.ls3_c03002{letter-spacing:0.544896pt;}
.ls0_c03002{letter-spacing:0.578688pt;}
.ls5_c03002{letter-spacing:0.637824pt;}
.ls2_c03002{letter-spacing:0.642048pt;}
.wsd_c03002{word-spacing:-13.445376pt;}
.wsb_c03002{word-spacing:-11.088000pt;}
.ws7_c03002{word-spacing:-11.075328pt;}
.ws4_c03002{word-spacing:-10.344576pt;}
.ws2_c03002{word-spacing:-10.015104pt;}
.ws6_c03002{word-spacing:-9.871488pt;}
.ws18_c03002{word-spacing:-1.919232pt;}
.ws19_c03002{word-spacing:-0.963072pt;}
.ws12_c03002{word-spacing:-0.899712pt;}
.ws10_c03002{word-spacing:-0.865920pt;}
.ws13_c03002{word-spacing:-0.105600pt;}
.ws15_c03002{word-spacing:-0.088704pt;}
.ws16_c03002{word-spacing:-0.080256pt;}
.ws17_c03002{word-spacing:-0.076032pt;}
.ws11_c03002{word-spacing:0.000000pt;}
.ws1a_c03002{word-spacing:0.130944pt;}
.ws14_c03002{word-spacing:0.384384pt;}
.wsf_c03002{word-spacing:18.129408pt;}
.wsa_c03002{word-spacing:28.942848pt;}
.wsc_c03002{word-spacing:29.600256pt;}
.ws9_c03002{word-spacing:30.966144pt;}
.wse_c03002{word-spacing:32.659968pt;}
.ws1_c03002{word-spacing:33.563904pt;}
.ws0_c03002{word-spacing:33.796224pt;}
.ws3_c03002{word-spacing:34.860672pt;}
.ws5_c03002{word-spacing:35.468928pt;}
.ws8_c03002{word-spacing:37.357056pt;}
._0_c03002{margin-left:-1.731840pt;}
._2_c03002{width:1.317888pt;}
._7_c03002{width:2.356992pt;}
._4_c03002{width:5.111040pt;}
._6_c03002{width:26.408448pt;}
._5_c03002{width:28.533120pt;}
._1_c03002{width:44.668800pt;}
._3_c03002{width:45.805056pt;}
.fs0_c03002{font-size:42.240000pt;}
.fs1_c03002{font-size:53.760000pt;}
.y0_c03002{bottom:0.000000pt;}
.y1b_c03002{bottom:130.666267pt;}
.y1d_c03002{bottom:165.866875pt;}
.y1c_c03002{bottom:174.507067pt;}
.y1a_c03002{bottom:245.226427pt;}
.y19_c03002{bottom:317.226619pt;}
.y16_c03002{bottom:361.386427pt;}
.y12_c03002{bottom:377.386939pt;}
.y18_c03002{bottom:394.666267pt;}
.y17_c03002{bottom:407.786011pt;}
.y15_c03002{bottom:437.226235pt;}
.y14_c03002{bottom:453.226747pt;}
.y11_c03002{bottom:482.666971pt;}
.y13_c03002{bottom:497.386555pt;}
.y10_c03002{bottom:513.387067pt;}
.y1e_c03002{bottom:546.027067pt;}
.yc_c03002{bottom:579.945467pt;}
.yb_c03002{bottom:593.385179pt;}
.ye_c03002{bottom:628.586875pt;}
.yd_c03002{bottom:637.227067pt;}
.ya_c03002{bottom:707.945339pt;}
.y9_c03002{bottom:779.945531pt;}
.y7_c03002{bottom:823.786427pt;}
.y3_c03002{bottom:839.786939pt;}
.y8_c03002{bottom:870.505979pt;}
.y6_c03002{bottom:899.946203pt;}
.y5_c03002{bottom:915.946715pt;}
.y2_c03002{bottom:945.386939pt;}
.y4_c03002{bottom:959.786555pt;}
.y1_c03002{bottom:975.787067pt;}
.yf_c03002{bottom:1008.747067pt;}
.h3_c03002{height:28.916250pt;}
.h1_c03002{height:37.063125pt;}
.h2_c03002{height:37.166250pt;}
.h4_c03002{height:48.581988pt;}
.h0_c03002{height:1122.666667pt;}
.w1_c03002{width:793.333333pt;}
.w0_c03002{width:793.626667pt;}
.x0_c03002{left:0.000000pt;}
.xe_c03002{left:104.000000pt;}
.x8_c03002{left:391.999872pt;}
.x4_c03002{left:396.160512pt;}
.xc_c03002{left:400.960000pt;}
.x7_c03002{left:404.799648pt;}
.x5_c03002{left:410.560128pt;}
.x1_c03002{left:411.840000pt;}
.xa_c03002{left:429.760320pt;}
.x9_c03002{left:437.439552pt;}
.x6_c03002{left:438.400512pt;}
.xd_c03002{left:450.560320pt;}
.x3_c03002{left:455.039904pt;}
.x2_c03002{left:468.159648pt;}
.xb_c03002{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03003 {
    display:none;
  }
  .loading-indicator_c03003.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03003 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03003 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03003" -> "#page-container .classname_c03003")
 */
.pf_c03003 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03003 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03003 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03003 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03003 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03003 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03003 {overflow:visible;}
  }
}
.c_c03003 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03003 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03003:after { /* webkit #35443 */
  content: '';
}
.t_c03003:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03003 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03003 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03003 { /* info for Javascript */
  display:none;
}
.l_c03003 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03003 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03003 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03003:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03003 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03003.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03003 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03003;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03003{font-family:ff1_c03003;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03003;src:url('chunks/assets/font_7d0f04d2f84b38fe1ed49995.woff2')format("woff");}.ff2_c03003{font-family:ff2_c03003;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03003;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c03003{font-family:ff3_c03003;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03003{vertical-align:0.000000px;}
.v1_c03003{vertical-align:1.439424px;}
.ls15_c03003{letter-spacing:-0.793584px;}
.ls14_c03003{letter-spacing:-0.774576px;}
.ls16_c03003{letter-spacing:-0.741312px;}
.ls8_c03003{letter-spacing:-0.613008px;}
.lsa_c03003{letter-spacing:-0.574992px;}
.ls10_c03003{letter-spacing:-0.275616px;}
.ls17_c03003{letter-spacing:-0.270864px;}
.lse_c03003{letter-spacing:-0.261360px;}
.ls7_c03003{letter-spacing:-0.242352px;}
.ls4_c03003{letter-spacing:-0.118800px;}
.lsd_c03003{letter-spacing:-0.104544px;}
.ls13_c03003{letter-spacing:0.000000px;}
.ls1_c03003{letter-spacing:0.006048px;}
.ls6_c03003{letter-spacing:0.128304px;}
.lsc_c03003{letter-spacing:0.508464px;}
.ls12_c03003{letter-spacing:0.514080px;}
.lsf_c03003{letter-spacing:0.536976px;}
.lsb_c03003{letter-spacing:0.579744px;}
.ls11_c03003{letter-spacing:0.594000px;}
.ls9_c03003{letter-spacing:0.598752px;}
.ls3_c03003{letter-spacing:0.613008px;}
.ls2_c03003{letter-spacing:0.651024px;}
.ls5_c03003{letter-spacing:0.717552px;}
.ls0_c03003{letter-spacing:0.722304px;}
.sc__c03003{text-shadow:none;}
.sc0_c03003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03003{-webkit-text-stroke:0px transparent;}
.sc0_c03003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03003{word-spacing:-15.126048px;}
.wsb_c03003{word-spacing:-12.474000px;}
.wsf_c03003{word-spacing:-12.459744px;}
.ws4_c03003{word-spacing:-11.637648px;}
.ws2_c03003{word-spacing:-11.266992px;}
.wse_c03003{word-spacing:-11.105424px;}
.ws19_c03003{word-spacing:-2.159136px;}
.ws14_c03003{word-spacing:-1.083456px;}
.ws16_c03003{word-spacing:-1.012176px;}
.ws11_c03003{word-spacing:-0.974160px;}
.ws15_c03003{word-spacing:-0.256608px;}
.ws13_c03003{word-spacing:-0.118800px;}
.ws17_c03003{word-spacing:-0.099792px;}
.ws1b_c03003{word-spacing:-0.090288px;}
.ws18_c03003{word-spacing:-0.085536px;}
.ws12_c03003{word-spacing:0.000000px;}
.ws1a_c03003{word-spacing:0.432432px;}
.ws8_c03003{word-spacing:16.194816px;}
.ws10_c03003{word-spacing:32.560704px;}
.wsc_c03003{word-spacing:33.300288px;}
.wsa_c03003{word-spacing:34.836912px;}
.ws9_c03003{word-spacing:36.143712px;}
.ws6_c03003{word-spacing:36.742464px;}
.ws1_c03003{word-spacing:37.759392px;}
.ws0_c03003{word-spacing:38.020752px;}
.ws3_c03003{word-spacing:39.218256px;}
.ws5_c03003{word-spacing:39.902544px;}
.ws7_c03003{word-spacing:42.026688px;}
._0_c03003{margin-left:-1.948320px;}
._2_c03003{width:1.482624px;}
._4_c03003{width:5.749920px;}
._6_c03003{width:26.278560px;}
._7_c03003{width:27.604368px;}
._5_c03003{width:32.242320px;}
._1_c03003{width:50.252400px;}
._3_c03003{width:51.530688px;}
.fc0_c03003{color:rgb(0,0,0);}
.fs0_c03003{font-size:47.520000px;}
.fs1_c03003{font-size:60.480000px;}
.y0_c03003{bottom:0.000000px;}
.y1b_c03003{bottom:131.878686px;}
.y1a_c03003{bottom:146.998362px;}
.y1d_c03003{bottom:186.600234px;}
.y1c_c03003{bottom:196.320450px;}
.y19_c03003{bottom:275.878542px;}
.y18_c03003{bottom:356.878758px;}
.y16_c03003{bottom:406.559730px;}
.y12_c03003{bottom:424.560306px;}
.y17_c03003{bottom:458.759262px;}
.y15_c03003{bottom:491.879514px;}
.y14_c03003{bottom:509.880090px;}
.y11_c03003{bottom:543.000342px;}
.y13_c03003{bottom:559.559874px;}
.y10_c03003{bottom:577.560450px;}
.y1e_c03003{bottom:614.280450px;}
.yc_c03003{bottom:667.559514px;}
.ye_c03003{bottom:707.160234px;}
.yd_c03003{bottom:716.880450px;}
.yb_c03003{bottom:796.439694px;}
.ya_c03003{bottom:877.439910px;}
.y7_c03003{bottom:926.759730px;}
.y3_c03003{bottom:944.760306px;}
.y9_c03003{bottom:964.559514px;}
.y8_c03003{bottom:979.319226px;}
.y6_c03003{bottom:1012.439478px;}
.y5_c03003{bottom:1030.440054px;}
.y2_c03003{bottom:1063.560306px;}
.y4_c03003{bottom:1079.759874px;}
.y1_c03003{bottom:1097.760450px;}
.yf_c03003{bottom:1134.840450px;}
.h3_c03003{height:32.530781px;}
.h1_c03003{height:41.696016px;}
.h2_c03003{height:41.812031px;}
.h4_c03003{height:54.654737px;}
.h0_c03003{height:1263.000000px;}
.w1_c03003{width:892.500000px;}
.w0_c03003{width:892.830000px;}
.x0_c03003{left:0.000000px;}
.xe_c03003{left:117.000000px;}
.x8_c03003{left:440.999856px;}
.x4_c03003{left:445.680576px;}
.xc_c03003{left:451.080000px;}
.x7_c03003{left:455.399604px;}
.x5_c03003{left:461.880144px;}
.x1_c03003{left:463.320000px;}
.xb_c03003{left:483.480360px;}
.xa_c03003{left:492.119496px;}
.x6_c03003{left:493.200576px;}
.xd_c03003{left:506.880360px;}
.x3_c03003{left:511.919892px;}
.x2_c03003{left:526.679604px;}
.x9_c03003{left:569.880036px;}
@media print{
.v0_c03003{vertical-align:0.000000pt;}
.v1_c03003{vertical-align:1.279488pt;}
.ls15_c03003{letter-spacing:-0.705408pt;}
.ls14_c03003{letter-spacing:-0.688512pt;}
.ls16_c03003{letter-spacing:-0.658944pt;}
.ls8_c03003{letter-spacing:-0.544896pt;}
.lsa_c03003{letter-spacing:-0.511104pt;}
.ls10_c03003{letter-spacing:-0.244992pt;}
.ls17_c03003{letter-spacing:-0.240768pt;}
.lse_c03003{letter-spacing:-0.232320pt;}
.ls7_c03003{letter-spacing:-0.215424pt;}
.ls4_c03003{letter-spacing:-0.105600pt;}
.lsd_c03003{letter-spacing:-0.092928pt;}
.ls13_c03003{letter-spacing:0.000000pt;}
.ls1_c03003{letter-spacing:0.005376pt;}
.ls6_c03003{letter-spacing:0.114048pt;}
.lsc_c03003{letter-spacing:0.451968pt;}
.ls12_c03003{letter-spacing:0.456960pt;}
.lsf_c03003{letter-spacing:0.477312pt;}
.lsb_c03003{letter-spacing:0.515328pt;}
.ls11_c03003{letter-spacing:0.528000pt;}
.ls9_c03003{letter-spacing:0.532224pt;}
.ls3_c03003{letter-spacing:0.544896pt;}
.ls2_c03003{letter-spacing:0.578688pt;}
.ls5_c03003{letter-spacing:0.637824pt;}
.ls0_c03003{letter-spacing:0.642048pt;}
.wsd_c03003{word-spacing:-13.445376pt;}
.wsb_c03003{word-spacing:-11.088000pt;}
.wsf_c03003{word-spacing:-11.075328pt;}
.ws4_c03003{word-spacing:-10.344576pt;}
.ws2_c03003{word-spacing:-10.015104pt;}
.wse_c03003{word-spacing:-9.871488pt;}
.ws19_c03003{word-spacing:-1.919232pt;}
.ws14_c03003{word-spacing:-0.963072pt;}
.ws16_c03003{word-spacing:-0.899712pt;}
.ws11_c03003{word-spacing:-0.865920pt;}
.ws15_c03003{word-spacing:-0.228096pt;}
.ws13_c03003{word-spacing:-0.105600pt;}
.ws17_c03003{word-spacing:-0.088704pt;}
.ws1b_c03003{word-spacing:-0.080256pt;}
.ws18_c03003{word-spacing:-0.076032pt;}
.ws12_c03003{word-spacing:0.000000pt;}
.ws1a_c03003{word-spacing:0.384384pt;}
.ws8_c03003{word-spacing:14.395392pt;}
.ws10_c03003{word-spacing:28.942848pt;}
.wsc_c03003{word-spacing:29.600256pt;}
.wsa_c03003{word-spacing:30.966144pt;}
.ws9_c03003{word-spacing:32.127744pt;}
.ws6_c03003{word-spacing:32.659968pt;}
.ws1_c03003{word-spacing:33.563904pt;}
.ws0_c03003{word-spacing:33.796224pt;}
.ws3_c03003{word-spacing:34.860672pt;}
.ws5_c03003{word-spacing:35.468928pt;}
.ws7_c03003{word-spacing:37.357056pt;}
._0_c03003{margin-left:-1.731840pt;}
._2_c03003{width:1.317888pt;}
._4_c03003{width:5.111040pt;}
._6_c03003{width:23.358720pt;}
._7_c03003{width:24.537216pt;}
._5_c03003{width:28.659840pt;}
._1_c03003{width:44.668800pt;}
._3_c03003{width:45.805056pt;}
.fs0_c03003{font-size:42.240000pt;}
.fs1_c03003{font-size:53.760000pt;}
.y0_c03003{bottom:0.000000pt;}
.y1b_c03003{bottom:117.225499pt;}
.y1a_c03003{bottom:130.665211pt;}
.y1d_c03003{bottom:165.866875pt;}
.y1c_c03003{bottom:174.507067pt;}
.y19_c03003{bottom:245.225371pt;}
.y18_c03003{bottom:317.225563pt;}
.y16_c03003{bottom:361.386427pt;}
.y12_c03003{bottom:377.386939pt;}
.y17_c03003{bottom:407.786011pt;}
.y15_c03003{bottom:437.226235pt;}
.y14_c03003{bottom:453.226747pt;}
.y11_c03003{bottom:482.666971pt;}
.y13_c03003{bottom:497.386555pt;}
.y10_c03003{bottom:513.387067pt;}
.y1e_c03003{bottom:546.027067pt;}
.yc_c03003{bottom:593.386235pt;}
.ye_c03003{bottom:628.586875pt;}
.yd_c03003{bottom:637.227067pt;}
.yb_c03003{bottom:707.946395pt;}
.ya_c03003{bottom:779.946587pt;}
.y7_c03003{bottom:823.786427pt;}
.y3_c03003{bottom:839.786939pt;}
.y9_c03003{bottom:857.386235pt;}
.y8_c03003{bottom:870.505979pt;}
.y6_c03003{bottom:899.946203pt;}
.y5_c03003{bottom:915.946715pt;}
.y2_c03003{bottom:945.386939pt;}
.y4_c03003{bottom:959.786555pt;}
.y1_c03003{bottom:975.787067pt;}
.yf_c03003{bottom:1008.747067pt;}
.h3_c03003{height:28.916250pt;}
.h1_c03003{height:37.063125pt;}
.h2_c03003{height:37.166250pt;}
.h4_c03003{height:48.581988pt;}
.h0_c03003{height:1122.666667pt;}
.w1_c03003{width:793.333333pt;}
.w0_c03003{width:793.626667pt;}
.x0_c03003{left:0.000000pt;}
.xe_c03003{left:104.000000pt;}
.x8_c03003{left:391.999872pt;}
.x4_c03003{left:396.160512pt;}
.xc_c03003{left:400.960000pt;}
.x7_c03003{left:404.799648pt;}
.x5_c03003{left:410.560128pt;}
.x1_c03003{left:411.840000pt;}
.xb_c03003{left:429.760320pt;}
.xa_c03003{left:437.439552pt;}
.x6_c03003{left:438.400512pt;}
.xd_c03003{left:450.560320pt;}
.x3_c03003{left:455.039904pt;}
.x2_c03003{left:468.159648pt;}
.x9_c03003{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03004 {
    display:none;
  }
  .loading-indicator_c03004.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03004 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03004 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03004" -> "#page-container .classname_c03004")
 */
.pf_c03004 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03004 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03004 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03004 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03004 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03004 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03004 {overflow:visible;}
  }
}
.c_c03004 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03004 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03004:after { /* webkit #35443 */
  content: '';
}
.t_c03004:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03004 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03004 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03004 { /* info for Javascript */
  display:none;
}
.l_c03004 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03004 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03004 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03004:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03004 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03004.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03004 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03004;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03004{font-family:ff1_c03004;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03004;src:url('chunks/assets/font_44d86b7247bbaccf38c41d53.woff2')format("woff");}.ff2_c03004{font-family:ff2_c03004;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03004;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c03004{font-family:ff3_c03004;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03004{vertical-align:0.000000px;}
.v1_c03004{vertical-align:1.439424px;}
.lsd_c03004{letter-spacing:-1.197504px;}
.ls15_c03004{letter-spacing:-0.793584px;}
.ls14_c03004{letter-spacing:-0.774576px;}
.ls16_c03004{letter-spacing:-0.736560px;}
.ls8_c03004{letter-spacing:-0.613008px;}
.lsa_c03004{letter-spacing:-0.574992px;}
.ls10_c03004{letter-spacing:-0.275616px;}
.ls17_c03004{letter-spacing:-0.270864px;}
.lse_c03004{letter-spacing:-0.261360px;}
.ls7_c03004{letter-spacing:-0.242352px;}
.ls4_c03004{letter-spacing:-0.118800px;}
.ls13_c03004{letter-spacing:0.000000px;}
.ls1_c03004{letter-spacing:0.006048px;}
.ls6_c03004{letter-spacing:0.128304px;}
.lsc_c03004{letter-spacing:0.508464px;}
.ls12_c03004{letter-spacing:0.514080px;}
.lsf_c03004{letter-spacing:0.536976px;}
.lsb_c03004{letter-spacing:0.579744px;}
.ls11_c03004{letter-spacing:0.594000px;}
.ls9_c03004{letter-spacing:0.598752px;}
.ls3_c03004{letter-spacing:0.613008px;}
.ls2_c03004{letter-spacing:0.651024px;}
.ls5_c03004{letter-spacing:0.717552px;}
.ls0_c03004{letter-spacing:0.722304px;}
.sc__c03004{text-shadow:none;}
.sc0_c03004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03004{-webkit-text-stroke:0px transparent;}
.sc0_c03004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03004{word-spacing:-15.126048px;}
.wsa_c03004{word-spacing:-12.474000px;}
.ws8_c03004{word-spacing:-12.459744px;}
.ws4_c03004{word-spacing:-11.637648px;}
.ws2_c03004{word-spacing:-11.266992px;}
.wsd_c03004{word-spacing:-11.105424px;}
.ws16_c03004{word-spacing:-2.159136px;}
.ws12_c03004{word-spacing:-1.083456px;}
.ws17_c03004{word-spacing:-1.012176px;}
.wsf_c03004{word-spacing:-0.974160px;}
.ws11_c03004{word-spacing:-0.118800px;}
.ws14_c03004{word-spacing:-0.099792px;}
.ws19_c03004{word-spacing:-0.090288px;}
.ws15_c03004{word-spacing:-0.085536px;}
.ws10_c03004{word-spacing:0.000000px;}
.ws18_c03004{word-spacing:0.432432px;}
.ws13_c03004{word-spacing:0.836352px;}
.wse_c03004{word-spacing:6.629040px;}
.wsb_c03004{word-spacing:33.300288px;}
.ws9_c03004{word-spacing:34.836912px;}
.ws6_c03004{word-spacing:36.742464px;}
.ws1_c03004{word-spacing:37.759392px;}
.ws0_c03004{word-spacing:38.020752px;}
.ws3_c03004{word-spacing:39.218256px;}
.ws5_c03004{word-spacing:39.902544px;}
.ws7_c03004{word-spacing:42.026688px;}
._0_c03004{margin-left:-1.948320px;}
._2_c03004{width:1.482624px;}
._5_c03004{width:2.770416px;}
._4_c03004{width:5.749920px;}
._7_c03004{width:19.982160px;}
._8_c03004{width:23.451120px;}
._6_c03004{width:24.691392px;}
._1_c03004{width:50.252400px;}
._3_c03004{width:51.530688px;}
.fc0_c03004{color:rgb(0,0,0);}
.fs0_c03004{font-size:47.520000px;}
.fs1_c03004{font-size:60.480000px;}
.y0_c03004{bottom:0.000000px;}
.y1a_c03004{bottom:131.878686px;}
.y19_c03004{bottom:146.998362px;}
.y1c_c03004{bottom:186.600234px;}
.y1b_c03004{bottom:196.320450px;}
.y18_c03004{bottom:275.878542px;}
.y17_c03004{bottom:356.878758px;}
.y15_c03004{bottom:406.559730px;}
.y11_c03004{bottom:424.560306px;}
.y16_c03004{bottom:458.759262px;}
.y14_c03004{bottom:491.879514px;}
.y13_c03004{bottom:509.880090px;}
.y10_c03004{bottom:543.000342px;}
.y12_c03004{bottom:559.559874px;}
.yf_c03004{bottom:577.560450px;}
.y1d_c03004{bottom:614.280450px;}
.yb_c03004{bottom:667.558326px;}
.yd_c03004{bottom:707.160234px;}
.yc_c03004{bottom:716.880450px;}
.ya_c03004{bottom:796.438506px;}
.y9_c03004{bottom:877.438722px;}
.y7_c03004{bottom:926.759730px;}
.y3_c03004{bottom:944.760306px;}
.y8_c03004{bottom:979.319226px;}
.y6_c03004{bottom:1012.439478px;}
.y5_c03004{bottom:1030.440054px;}
.y2_c03004{bottom:1063.560306px;}
.y4_c03004{bottom:1079.759874px;}
.y1_c03004{bottom:1097.760450px;}
.ye_c03004{bottom:1134.840450px;}
.h3_c03004{height:32.530781px;}
.h1_c03004{height:41.696016px;}
.h2_c03004{height:41.812031px;}
.h4_c03004{height:54.654737px;}
.h0_c03004{height:1263.000000px;}
.w1_c03004{width:892.500000px;}
.w0_c03004{width:892.830000px;}
.x0_c03004{left:0.000000px;}
.xd_c03004{left:117.000000px;}
.x8_c03004{left:440.999856px;}
.x4_c03004{left:445.680576px;}
.xb_c03004{left:451.080000px;}
.x7_c03004{left:455.399604px;}
.x5_c03004{left:461.880144px;}
.x1_c03004{left:463.320000px;}
.xa_c03004{left:483.480360px;}
.x9_c03004{left:492.119496px;}
.x6_c03004{left:493.200576px;}
.xc_c03004{left:506.880360px;}
.x3_c03004{left:511.919892px;}
.x2_c03004{left:526.679604px;}
.xe_c03004{left:569.880036px;}
@media print{
.v0_c03004{vertical-align:0.000000pt;}
.v1_c03004{vertical-align:1.279488pt;}
.lsd_c03004{letter-spacing:-1.064448pt;}
.ls15_c03004{letter-spacing:-0.705408pt;}
.ls14_c03004{letter-spacing:-0.688512pt;}
.ls16_c03004{letter-spacing:-0.654720pt;}
.ls8_c03004{letter-spacing:-0.544896pt;}
.lsa_c03004{letter-spacing:-0.511104pt;}
.ls10_c03004{letter-spacing:-0.244992pt;}
.ls17_c03004{letter-spacing:-0.240768pt;}
.lse_c03004{letter-spacing:-0.232320pt;}
.ls7_c03004{letter-spacing:-0.215424pt;}
.ls4_c03004{letter-spacing:-0.105600pt;}
.ls13_c03004{letter-spacing:0.000000pt;}
.ls1_c03004{letter-spacing:0.005376pt;}
.ls6_c03004{letter-spacing:0.114048pt;}
.lsc_c03004{letter-spacing:0.451968pt;}
.ls12_c03004{letter-spacing:0.456960pt;}
.lsf_c03004{letter-spacing:0.477312pt;}
.lsb_c03004{letter-spacing:0.515328pt;}
.ls11_c03004{letter-spacing:0.528000pt;}
.ls9_c03004{letter-spacing:0.532224pt;}
.ls3_c03004{letter-spacing:0.544896pt;}
.ls2_c03004{letter-spacing:0.578688pt;}
.ls5_c03004{letter-spacing:0.637824pt;}
.ls0_c03004{letter-spacing:0.642048pt;}
.wsc_c03004{word-spacing:-13.445376pt;}
.wsa_c03004{word-spacing:-11.088000pt;}
.ws8_c03004{word-spacing:-11.075328pt;}
.ws4_c03004{word-spacing:-10.344576pt;}
.ws2_c03004{word-spacing:-10.015104pt;}
.wsd_c03004{word-spacing:-9.871488pt;}
.ws16_c03004{word-spacing:-1.919232pt;}
.ws12_c03004{word-spacing:-0.963072pt;}
.ws17_c03004{word-spacing:-0.899712pt;}
.wsf_c03004{word-spacing:-0.865920pt;}
.ws11_c03004{word-spacing:-0.105600pt;}
.ws14_c03004{word-spacing:-0.088704pt;}
.ws19_c03004{word-spacing:-0.080256pt;}
.ws15_c03004{word-spacing:-0.076032pt;}
.ws10_c03004{word-spacing:0.000000pt;}
.ws18_c03004{word-spacing:0.384384pt;}
.ws13_c03004{word-spacing:0.743424pt;}
.wse_c03004{word-spacing:5.892480pt;}
.wsb_c03004{word-spacing:29.600256pt;}
.ws9_c03004{word-spacing:30.966144pt;}
.ws6_c03004{word-spacing:32.659968pt;}
.ws1_c03004{word-spacing:33.563904pt;}
.ws0_c03004{word-spacing:33.796224pt;}
.ws3_c03004{word-spacing:34.860672pt;}
.ws5_c03004{word-spacing:35.468928pt;}
.ws7_c03004{word-spacing:37.357056pt;}
._0_c03004{margin-left:-1.731840pt;}
._2_c03004{width:1.317888pt;}
._5_c03004{width:2.462592pt;}
._4_c03004{width:5.111040pt;}
._7_c03004{width:17.761920pt;}
._8_c03004{width:20.845440pt;}
._6_c03004{width:21.947904pt;}
._1_c03004{width:44.668800pt;}
._3_c03004{width:45.805056pt;}
.fs0_c03004{font-size:42.240000pt;}
.fs1_c03004{font-size:53.760000pt;}
.y0_c03004{bottom:0.000000pt;}
.y1a_c03004{bottom:117.225499pt;}
.y19_c03004{bottom:130.665211pt;}
.y1c_c03004{bottom:165.866875pt;}
.y1b_c03004{bottom:174.507067pt;}
.y18_c03004{bottom:245.225371pt;}
.y17_c03004{bottom:317.225563pt;}
.y15_c03004{bottom:361.386427pt;}
.y11_c03004{bottom:377.386939pt;}
.y16_c03004{bottom:407.786011pt;}
.y14_c03004{bottom:437.226235pt;}
.y13_c03004{bottom:453.226747pt;}
.y10_c03004{bottom:482.666971pt;}
.y12_c03004{bottom:497.386555pt;}
.yf_c03004{bottom:513.387067pt;}
.y1d_c03004{bottom:546.027067pt;}
.yb_c03004{bottom:593.385179pt;}
.yd_c03004{bottom:628.586875pt;}
.yc_c03004{bottom:637.227067pt;}
.ya_c03004{bottom:707.945339pt;}
.y9_c03004{bottom:779.945531pt;}
.y7_c03004{bottom:823.786427pt;}
.y3_c03004{bottom:839.786939pt;}
.y8_c03004{bottom:870.505979pt;}
.y6_c03004{bottom:899.946203pt;}
.y5_c03004{bottom:915.946715pt;}
.y2_c03004{bottom:945.386939pt;}
.y4_c03004{bottom:959.786555pt;}
.y1_c03004{bottom:975.787067pt;}
.ye_c03004{bottom:1008.747067pt;}
.h3_c03004{height:28.916250pt;}
.h1_c03004{height:37.063125pt;}
.h2_c03004{height:37.166250pt;}
.h4_c03004{height:48.581988pt;}
.h0_c03004{height:1122.666667pt;}
.w1_c03004{width:793.333333pt;}
.w0_c03004{width:793.626667pt;}
.x0_c03004{left:0.000000pt;}
.xd_c03004{left:104.000000pt;}
.x8_c03004{left:391.999872pt;}
.x4_c03004{left:396.160512pt;}
.xb_c03004{left:400.960000pt;}
.x7_c03004{left:404.799648pt;}
.x5_c03004{left:410.560128pt;}
.x1_c03004{left:411.840000pt;}
.xa_c03004{left:429.760320pt;}
.x9_c03004{left:437.439552pt;}
.x6_c03004{left:438.400512pt;}
.xc_c03004{left:450.560320pt;}
.x3_c03004{left:455.039904pt;}
.x2_c03004{left:468.159648pt;}
.xe_c03004{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03005 {
    display:none;
  }
  .loading-indicator_c03005.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03005 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03005 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03005" -> "#page-container .classname_c03005")
 */
.pf_c03005 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03005 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03005.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03005 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03005 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03005 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03005 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03005 {overflow:visible;}
  }
}
.c_c03005 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03005 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03005:after { /* webkit #35443 */
  content: '';
}
.t_c03005:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03005 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03005 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03005 { /* info for Javascript */
  display:none;
}
.l_c03005 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03005 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03005 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03005:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03005 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03005.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03005.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03005 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03005;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03005{font-family:ff1_c03005;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03005;src:url('chunks/assets/font_bc0df766ca749b18b4a5828b.woff2')format("woff");}.ff2_c03005{font-family:ff2_c03005;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03005;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c03005{font-family:ff3_c03005;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03005{vertical-align:0.000000px;}
.v1_c03005{vertical-align:1.439424px;}
.lse_c03005{letter-spacing:-0.793584px;}
.lsb_c03005{letter-spacing:-0.774576px;}
.ls11_c03005{letter-spacing:-0.736560px;}
.ls8_c03005{letter-spacing:-0.613008px;}
.lsa_c03005{letter-spacing:-0.574992px;}
.ls12_c03005{letter-spacing:-0.270864px;}
.lsf_c03005{letter-spacing:-0.261360px;}
.ls7_c03005{letter-spacing:-0.242352px;}
.ls4_c03005{letter-spacing:-0.118800px;}
.ls15_c03005{letter-spacing:0.000000px;}
.ls1_c03005{letter-spacing:0.006048px;}
.ls6_c03005{letter-spacing:0.128304px;}
.lsd_c03005{letter-spacing:0.508464px;}
.ls14_c03005{letter-spacing:0.514080px;}
.ls10_c03005{letter-spacing:0.536976px;}
.lsc_c03005{letter-spacing:0.579744px;}
.ls13_c03005{letter-spacing:0.594000px;}
.ls9_c03005{letter-spacing:0.598752px;}
.ls2_c03005{letter-spacing:0.613008px;}
.ls0_c03005{letter-spacing:0.651024px;}
.ls5_c03005{letter-spacing:0.717552px;}
.ls3_c03005{letter-spacing:0.722304px;}
.sc__c03005{text-shadow:none;}
.sc0_c03005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03005{-webkit-text-stroke:0px transparent;}
.sc0_c03005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03005{word-spacing:-15.126048px;}
.wsb_c03005{word-spacing:-12.474000px;}
.ws7_c03005{word-spacing:-12.459744px;}
.ws4_c03005{word-spacing:-11.637648px;}
.ws2_c03005{word-spacing:-11.266992px;}
.ws6_c03005{word-spacing:-11.105424px;}
.ws16_c03005{word-spacing:-2.159136px;}
.ws10_c03005{word-spacing:-1.012176px;}
.wse_c03005{word-spacing:-0.974160px;}
.ws11_c03005{word-spacing:-0.118800px;}
.ws13_c03005{word-spacing:-0.099792px;}
.ws14_c03005{word-spacing:-0.090288px;}
.ws15_c03005{word-spacing:-0.085536px;}
.wsf_c03005{word-spacing:0.000000px;}
.ws12_c03005{word-spacing:0.432432px;}
.wsa_c03005{word-spacing:6.629040px;}
.wsc_c03005{word-spacing:33.300288px;}
.ws9_c03005{word-spacing:34.836912px;}
.ws1_c03005{word-spacing:37.759392px;}
.ws0_c03005{word-spacing:38.020752px;}
.ws3_c03005{word-spacing:39.218256px;}
.ws5_c03005{word-spacing:39.902544px;}
.ws8_c03005{word-spacing:42.026688px;}
._0_c03005{margin-left:-1.948320px;}
._2_c03005{width:1.482624px;}
._4_c03005{width:5.749920px;}
._6_c03005{width:19.982160px;}
._7_c03005{width:23.451120px;}
._5_c03005{width:24.691392px;}
._1_c03005{width:50.252400px;}
._3_c03005{width:51.530688px;}
.fc0_c03005{color:rgb(0,0,0);}
.fs0_c03005{font-size:47.520000px;}
.fs1_c03005{font-size:60.480000px;}
.y0_c03005{bottom:0.000000px;}
.y1b_c03005{bottom:131.878686px;}
.y1a_c03005{bottom:146.998362px;}
.y1d_c03005{bottom:186.600234px;}
.y1c_c03005{bottom:196.320450px;}
.y19_c03005{bottom:275.878542px;}
.y18_c03005{bottom:356.878758px;}
.y16_c03005{bottom:406.559730px;}
.y12_c03005{bottom:424.560306px;}
.y17_c03005{bottom:458.759262px;}
.y15_c03005{bottom:491.879514px;}
.y14_c03005{bottom:509.880090px;}
.y11_c03005{bottom:543.000342px;}
.y13_c03005{bottom:559.559874px;}
.y10_c03005{bottom:577.560450px;}
.y1e_c03005{bottom:614.280450px;}
.yc_c03005{bottom:652.438650px;}
.yb_c03005{bottom:667.558326px;}
.ye_c03005{bottom:707.160234px;}
.yd_c03005{bottom:716.880450px;}
.ya_c03005{bottom:796.438506px;}
.y9_c03005{bottom:877.438722px;}
.y7_c03005{bottom:926.759730px;}
.y3_c03005{bottom:944.760306px;}
.y8_c03005{bottom:979.319226px;}
.y6_c03005{bottom:1012.439478px;}
.y5_c03005{bottom:1030.440054px;}
.y2_c03005{bottom:1063.560306px;}
.y4_c03005{bottom:1079.759874px;}
.y1_c03005{bottom:1097.760450px;}
.yf_c03005{bottom:1134.840450px;}
.h3_c03005{height:32.530781px;}
.h1_c03005{height:41.696016px;}
.h2_c03005{height:41.812031px;}
.h4_c03005{height:54.654737px;}
.h0_c03005{height:1263.000000px;}
.w1_c03005{width:892.500000px;}
.w0_c03005{width:892.830000px;}
.x0_c03005{left:0.000000px;}
.xe_c03005{left:117.000000px;}
.x8_c03005{left:440.999856px;}
.x4_c03005{left:445.680576px;}
.xc_c03005{left:451.080000px;}
.x7_c03005{left:455.399604px;}
.x5_c03005{left:461.880144px;}
.x1_c03005{left:463.320000px;}
.xa_c03005{left:483.480360px;}
.x9_c03005{left:492.119496px;}
.x6_c03005{left:493.200576px;}
.xd_c03005{left:506.880360px;}
.x3_c03005{left:511.919892px;}
.x2_c03005{left:526.679604px;}
.xb_c03005{left:569.880036px;}
@media print{
.v0_c03005{vertical-align:0.000000pt;}
.v1_c03005{vertical-align:1.279488pt;}
.lse_c03005{letter-spacing:-0.705408pt;}
.lsb_c03005{letter-spacing:-0.688512pt;}
.ls11_c03005{letter-spacing:-0.654720pt;}
.ls8_c03005{letter-spacing:-0.544896pt;}
.lsa_c03005{letter-spacing:-0.511104pt;}
.ls12_c03005{letter-spacing:-0.240768pt;}
.lsf_c03005{letter-spacing:-0.232320pt;}
.ls7_c03005{letter-spacing:-0.215424pt;}
.ls4_c03005{letter-spacing:-0.105600pt;}
.ls15_c03005{letter-spacing:0.000000pt;}
.ls1_c03005{letter-spacing:0.005376pt;}
.ls6_c03005{letter-spacing:0.114048pt;}
.lsd_c03005{letter-spacing:0.451968pt;}
.ls14_c03005{letter-spacing:0.456960pt;}
.ls10_c03005{letter-spacing:0.477312pt;}
.lsc_c03005{letter-spacing:0.515328pt;}
.ls13_c03005{letter-spacing:0.528000pt;}
.ls9_c03005{letter-spacing:0.532224pt;}
.ls2_c03005{letter-spacing:0.544896pt;}
.ls0_c03005{letter-spacing:0.578688pt;}
.ls5_c03005{letter-spacing:0.637824pt;}
.ls3_c03005{letter-spacing:0.642048pt;}
.wsd_c03005{word-spacing:-13.445376pt;}
.wsb_c03005{word-spacing:-11.088000pt;}
.ws7_c03005{word-spacing:-11.075328pt;}
.ws4_c03005{word-spacing:-10.344576pt;}
.ws2_c03005{word-spacing:-10.015104pt;}
.ws6_c03005{word-spacing:-9.871488pt;}
.ws16_c03005{word-spacing:-1.919232pt;}
.ws10_c03005{word-spacing:-0.899712pt;}
.wse_c03005{word-spacing:-0.865920pt;}
.ws11_c03005{word-spacing:-0.105600pt;}
.ws13_c03005{word-spacing:-0.088704pt;}
.ws14_c03005{word-spacing:-0.080256pt;}
.ws15_c03005{word-spacing:-0.076032pt;}
.wsf_c03005{word-spacing:0.000000pt;}
.ws12_c03005{word-spacing:0.384384pt;}
.wsa_c03005{word-spacing:5.892480pt;}
.wsc_c03005{word-spacing:29.600256pt;}
.ws9_c03005{word-spacing:30.966144pt;}
.ws1_c03005{word-spacing:33.563904pt;}
.ws0_c03005{word-spacing:33.796224pt;}
.ws3_c03005{word-spacing:34.860672pt;}
.ws5_c03005{word-spacing:35.468928pt;}
.ws8_c03005{word-spacing:37.357056pt;}
._0_c03005{margin-left:-1.731840pt;}
._2_c03005{width:1.317888pt;}
._4_c03005{width:5.111040pt;}
._6_c03005{width:17.761920pt;}
._7_c03005{width:20.845440pt;}
._5_c03005{width:21.947904pt;}
._1_c03005{width:44.668800pt;}
._3_c03005{width:45.805056pt;}
.fs0_c03005{font-size:42.240000pt;}
.fs1_c03005{font-size:53.760000pt;}
.y0_c03005{bottom:0.000000pt;}
.y1b_c03005{bottom:117.225499pt;}
.y1a_c03005{bottom:130.665211pt;}
.y1d_c03005{bottom:165.866875pt;}
.y1c_c03005{bottom:174.507067pt;}
.y19_c03005{bottom:245.225371pt;}
.y18_c03005{bottom:317.225563pt;}
.y16_c03005{bottom:361.386427pt;}
.y12_c03005{bottom:377.386939pt;}
.y17_c03005{bottom:407.786011pt;}
.y15_c03005{bottom:437.226235pt;}
.y14_c03005{bottom:453.226747pt;}
.y11_c03005{bottom:482.666971pt;}
.y13_c03005{bottom:497.386555pt;}
.y10_c03005{bottom:513.387067pt;}
.y1e_c03005{bottom:546.027067pt;}
.yc_c03005{bottom:579.945467pt;}
.yb_c03005{bottom:593.385179pt;}
.ye_c03005{bottom:628.586875pt;}
.yd_c03005{bottom:637.227067pt;}
.ya_c03005{bottom:707.945339pt;}
.y9_c03005{bottom:779.945531pt;}
.y7_c03005{bottom:823.786427pt;}
.y3_c03005{bottom:839.786939pt;}
.y8_c03005{bottom:870.505979pt;}
.y6_c03005{bottom:899.946203pt;}
.y5_c03005{bottom:915.946715pt;}
.y2_c03005{bottom:945.386939pt;}
.y4_c03005{bottom:959.786555pt;}
.y1_c03005{bottom:975.787067pt;}
.yf_c03005{bottom:1008.747067pt;}
.h3_c03005{height:28.916250pt;}
.h1_c03005{height:37.063125pt;}
.h2_c03005{height:37.166250pt;}
.h4_c03005{height:48.581988pt;}
.h0_c03005{height:1122.666667pt;}
.w1_c03005{width:793.333333pt;}
.w0_c03005{width:793.626667pt;}
.x0_c03005{left:0.000000pt;}
.xe_c03005{left:104.000000pt;}
.x8_c03005{left:391.999872pt;}
.x4_c03005{left:396.160512pt;}
.xc_c03005{left:400.960000pt;}
.x7_c03005{left:404.799648pt;}
.x5_c03005{left:410.560128pt;}
.x1_c03005{left:411.840000pt;}
.xa_c03005{left:429.760320pt;}
.x9_c03005{left:437.439552pt;}
.x6_c03005{left:438.400512pt;}
.xd_c03005{left:450.560320pt;}
.x3_c03005{left:455.039904pt;}
.x2_c03005{left:468.159648pt;}
.xb_c03005{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03006 {
    display:none;
  }
  .loading-indicator_c03006.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03006 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03006 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03006" -> "#page-container .classname_c03006")
 */
.pf_c03006 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03006 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03006.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03006 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03006 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03006 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03006 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03006 {overflow:visible;}
  }
}
.c_c03006 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03006 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03006:after { /* webkit #35443 */
  content: '';
}
.t_c03006:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03006 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03006 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03006 { /* info for Javascript */
  display:none;
}
.l_c03006 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03006 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03006 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03006:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03006 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03006.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03006.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03006 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03006{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03006;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03006{font-family:ff1_c03006;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03006;src:url('chunks/assets/font_c827d3ff2bb1b693aaaec25e.woff2')format("woff");}.ff2_c03006{font-family:ff2_c03006;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03006;src:url('chunks/assets/font_46b66df398580618acbfdf47.woff2')format("woff");}.ff3_c03006{font-family:ff3_c03006;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03006{vertical-align:0.000000px;}
.v1_c03006{vertical-align:1.439424px;}
.lse_c03006{letter-spacing:-0.793584px;}
.lsb_c03006{letter-spacing:-0.774576px;}
.ls16_c03006{letter-spacing:-0.760320px;}
.ls11_c03006{letter-spacing:-0.736560px;}
.ls8_c03006{letter-spacing:-0.613008px;}
.lsa_c03006{letter-spacing:-0.574992px;}
.ls17_c03006{letter-spacing:-0.275616px;}
.ls12_c03006{letter-spacing:-0.270864px;}
.lsf_c03006{letter-spacing:-0.261360px;}
.ls7_c03006{letter-spacing:-0.242352px;}
.ls4_c03006{letter-spacing:-0.118800px;}
.ls15_c03006{letter-spacing:0.000000px;}
.ls1_c03006{letter-spacing:0.006048px;}
.ls6_c03006{letter-spacing:0.128304px;}
.lsd_c03006{letter-spacing:0.508464px;}
.ls14_c03006{letter-spacing:0.514080px;}
.ls10_c03006{letter-spacing:0.536976px;}
.lsc_c03006{letter-spacing:0.579744px;}
.ls13_c03006{letter-spacing:0.594000px;}
.ls9_c03006{letter-spacing:0.598752px;}
.ls3_c03006{letter-spacing:0.613008px;}
.ls0_c03006{letter-spacing:0.651024px;}
.ls5_c03006{letter-spacing:0.717552px;}
.ls2_c03006{letter-spacing:0.722304px;}
.sc__c03006{text-shadow:none;}
.sc0_c03006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03006{-webkit-text-stroke:0px transparent;}
.sc0_c03006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03006{word-spacing:-15.126048px;}
.wsb_c03006{word-spacing:-12.474000px;}
.ws7_c03006{word-spacing:-12.459744px;}
.wsf_c03006{word-spacing:-12.416976px;}
.ws4_c03006{word-spacing:-11.637648px;}
.ws2_c03006{word-spacing:-11.266992px;}
.ws6_c03006{word-spacing:-11.105424px;}
.ws18_c03006{word-spacing:-2.159136px;}
.ws19_c03006{word-spacing:-1.083456px;}
.ws12_c03006{word-spacing:-1.012176px;}
.ws10_c03006{word-spacing:-0.974160px;}
.ws13_c03006{word-spacing:-0.118800px;}
.ws15_c03006{word-spacing:-0.099792px;}
.ws16_c03006{word-spacing:-0.090288px;}
.ws17_c03006{word-spacing:-0.085536px;}
.ws11_c03006{word-spacing:0.000000px;}
.ws1a_c03006{word-spacing:0.399168px;}
.ws14_c03006{word-spacing:0.432432px;}
.wsa_c03006{word-spacing:6.629040px;}
.wsc_c03006{word-spacing:33.300288px;}
.ws9_c03006{word-spacing:34.836912px;}
.wse_c03006{word-spacing:36.143712px;}
.ws1_c03006{word-spacing:37.759392px;}
.ws0_c03006{word-spacing:38.020752px;}
.ws3_c03006{word-spacing:39.218256px;}
.ws5_c03006{word-spacing:39.902544px;}
.ws8_c03006{word-spacing:42.026688px;}
._0_c03006{margin-left:-1.948320px;}
._2_c03006{width:1.482624px;}
._4_c03006{width:5.749920px;}
._6_c03006{width:19.982160px;}
._7_c03006{width:23.451120px;}
._5_c03006{width:24.691392px;}
._1_c03006{width:50.252400px;}
._3_c03006{width:51.530688px;}
.fc0_c03006{color:rgb(0,0,0);}
.fs0_c03006{font-size:47.520000px;}
.fs1_c03006{font-size:60.480000px;}
.y0_c03006{bottom:0.000000px;}
.y1a_c03006{bottom:146.998362px;}
.y1c_c03006{bottom:186.600234px;}
.y1b_c03006{bottom:196.320450px;}
.y19_c03006{bottom:275.878542px;}
.y18_c03006{bottom:356.878758px;}
.y16_c03006{bottom:406.559730px;}
.y12_c03006{bottom:424.560306px;}
.y17_c03006{bottom:458.759262px;}
.y15_c03006{bottom:491.879514px;}
.y14_c03006{bottom:509.880090px;}
.y11_c03006{bottom:543.000342px;}
.y13_c03006{bottom:559.559874px;}
.y10_c03006{bottom:577.560450px;}
.y1d_c03006{bottom:614.280450px;}
.yc_c03006{bottom:652.438650px;}
.yb_c03006{bottom:667.558326px;}
.ye_c03006{bottom:707.160234px;}
.yd_c03006{bottom:716.880450px;}
.ya_c03006{bottom:796.438506px;}
.y9_c03006{bottom:877.438722px;}
.y7_c03006{bottom:926.759730px;}
.y3_c03006{bottom:944.760306px;}
.y8_c03006{bottom:979.319226px;}
.y6_c03006{bottom:1012.439478px;}
.y5_c03006{bottom:1030.440054px;}
.y2_c03006{bottom:1063.560306px;}
.y4_c03006{bottom:1079.759874px;}
.y1_c03006{bottom:1097.760450px;}
.yf_c03006{bottom:1134.840450px;}
.h3_c03006{height:32.530781px;}
.h1_c03006{height:41.696016px;}
.h2_c03006{height:41.812031px;}
.h4_c03006{height:54.654737px;}
.h0_c03006{height:1263.000000px;}
.w1_c03006{width:892.500000px;}
.w0_c03006{width:892.830000px;}
.x0_c03006{left:0.000000px;}
.xe_c03006{left:117.000000px;}
.x8_c03006{left:440.999856px;}
.x4_c03006{left:445.680576px;}
.xc_c03006{left:451.080000px;}
.x7_c03006{left:455.399604px;}
.x5_c03006{left:461.880144px;}
.x1_c03006{left:463.320000px;}
.xa_c03006{left:483.480360px;}
.x9_c03006{left:492.119496px;}
.x6_c03006{left:493.200576px;}
.xd_c03006{left:506.880360px;}
.x3_c03006{left:511.919892px;}
.x2_c03006{left:526.679604px;}
.xb_c03006{left:569.880036px;}
@media print{
.v0_c03006{vertical-align:0.000000pt;}
.v1_c03006{vertical-align:1.279488pt;}
.lse_c03006{letter-spacing:-0.705408pt;}
.lsb_c03006{letter-spacing:-0.688512pt;}
.ls16_c03006{letter-spacing:-0.675840pt;}
.ls11_c03006{letter-spacing:-0.654720pt;}
.ls8_c03006{letter-spacing:-0.544896pt;}
.lsa_c03006{letter-spacing:-0.511104pt;}
.ls17_c03006{letter-spacing:-0.244992pt;}
.ls12_c03006{letter-spacing:-0.240768pt;}
.lsf_c03006{letter-spacing:-0.232320pt;}
.ls7_c03006{letter-spacing:-0.215424pt;}
.ls4_c03006{letter-spacing:-0.105600pt;}
.ls15_c03006{letter-spacing:0.000000pt;}
.ls1_c03006{letter-spacing:0.005376pt;}
.ls6_c03006{letter-spacing:0.114048pt;}
.lsd_c03006{letter-spacing:0.451968pt;}
.ls14_c03006{letter-spacing:0.456960pt;}
.ls10_c03006{letter-spacing:0.477312pt;}
.lsc_c03006{letter-spacing:0.515328pt;}
.ls13_c03006{letter-spacing:0.528000pt;}
.ls9_c03006{letter-spacing:0.532224pt;}
.ls3_c03006{letter-spacing:0.544896pt;}
.ls0_c03006{letter-spacing:0.578688pt;}
.ls5_c03006{letter-spacing:0.637824pt;}
.ls2_c03006{letter-spacing:0.642048pt;}
.wsd_c03006{word-spacing:-13.445376pt;}
.wsb_c03006{word-spacing:-11.088000pt;}
.ws7_c03006{word-spacing:-11.075328pt;}
.wsf_c03006{word-spacing:-11.037312pt;}
.ws4_c03006{word-spacing:-10.344576pt;}
.ws2_c03006{word-spacing:-10.015104pt;}
.ws6_c03006{word-spacing:-9.871488pt;}
.ws18_c03006{word-spacing:-1.919232pt;}
.ws19_c03006{word-spacing:-0.963072pt;}
.ws12_c03006{word-spacing:-0.899712pt;}
.ws10_c03006{word-spacing:-0.865920pt;}
.ws13_c03006{word-spacing:-0.105600pt;}
.ws15_c03006{word-spacing:-0.088704pt;}
.ws16_c03006{word-spacing:-0.080256pt;}
.ws17_c03006{word-spacing:-0.076032pt;}
.ws11_c03006{word-spacing:0.000000pt;}
.ws1a_c03006{word-spacing:0.354816pt;}
.ws14_c03006{word-spacing:0.384384pt;}
.wsa_c03006{word-spacing:5.892480pt;}
.wsc_c03006{word-spacing:29.600256pt;}
.ws9_c03006{word-spacing:30.966144pt;}
.wse_c03006{word-spacing:32.127744pt;}
.ws1_c03006{word-spacing:33.563904pt;}
.ws0_c03006{word-spacing:33.796224pt;}
.ws3_c03006{word-spacing:34.860672pt;}
.ws5_c03006{word-spacing:35.468928pt;}
.ws8_c03006{word-spacing:37.357056pt;}
._0_c03006{margin-left:-1.731840pt;}
._2_c03006{width:1.317888pt;}
._4_c03006{width:5.111040pt;}
._6_c03006{width:17.761920pt;}
._7_c03006{width:20.845440pt;}
._5_c03006{width:21.947904pt;}
._1_c03006{width:44.668800pt;}
._3_c03006{width:45.805056pt;}
.fs0_c03006{font-size:42.240000pt;}
.fs1_c03006{font-size:53.760000pt;}
.y0_c03006{bottom:0.000000pt;}
.y1a_c03006{bottom:130.665211pt;}
.y1c_c03006{bottom:165.866875pt;}
.y1b_c03006{bottom:174.507067pt;}
.y19_c03006{bottom:245.225371pt;}
.y18_c03006{bottom:317.225563pt;}
.y16_c03006{bottom:361.386427pt;}
.y12_c03006{bottom:377.386939pt;}
.y17_c03006{bottom:407.786011pt;}
.y15_c03006{bottom:437.226235pt;}
.y14_c03006{bottom:453.226747pt;}
.y11_c03006{bottom:482.666971pt;}
.y13_c03006{bottom:497.386555pt;}
.y10_c03006{bottom:513.387067pt;}
.y1d_c03006{bottom:546.027067pt;}
.yc_c03006{bottom:579.945467pt;}
.yb_c03006{bottom:593.385179pt;}
.ye_c03006{bottom:628.586875pt;}
.yd_c03006{bottom:637.227067pt;}
.ya_c03006{bottom:707.945339pt;}
.y9_c03006{bottom:779.945531pt;}
.y7_c03006{bottom:823.786427pt;}
.y3_c03006{bottom:839.786939pt;}
.y8_c03006{bottom:870.505979pt;}
.y6_c03006{bottom:899.946203pt;}
.y5_c03006{bottom:915.946715pt;}
.y2_c03006{bottom:945.386939pt;}
.y4_c03006{bottom:959.786555pt;}
.y1_c03006{bottom:975.787067pt;}
.yf_c03006{bottom:1008.747067pt;}
.h3_c03006{height:28.916250pt;}
.h1_c03006{height:37.063125pt;}
.h2_c03006{height:37.166250pt;}
.h4_c03006{height:48.581988pt;}
.h0_c03006{height:1122.666667pt;}
.w1_c03006{width:793.333333pt;}
.w0_c03006{width:793.626667pt;}
.x0_c03006{left:0.000000pt;}
.xe_c03006{left:104.000000pt;}
.x8_c03006{left:391.999872pt;}
.x4_c03006{left:396.160512pt;}
.xc_c03006{left:400.960000pt;}
.x7_c03006{left:404.799648pt;}
.x5_c03006{left:410.560128pt;}
.x1_c03006{left:411.840000pt;}
.xa_c03006{left:429.760320pt;}
.x9_c03006{left:437.439552pt;}
.x6_c03006{left:438.400512pt;}
.xd_c03006{left:450.560320pt;}
.x3_c03006{left:455.039904pt;}
.x2_c03006{left:468.159648pt;}
.xb_c03006{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03007 {
    display:none;
  }
  .loading-indicator_c03007.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03007 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03007 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03007" -> "#page-container .classname_c03007")
 */
.pf_c03007 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03007 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03007.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03007 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03007 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03007 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03007 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03007 {overflow:visible;}
  }
}
.c_c03007 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03007 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03007:after { /* webkit #35443 */
  content: '';
}
.t_c03007:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03007 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03007 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03007 { /* info for Javascript */
  display:none;
}
.l_c03007 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03007 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03007 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03007:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03007 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03007.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03007.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03007 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03007;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03007{font-family:ff1_c03007;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03007;src:url('chunks/assets/font_5f4f3747084878e3a050f22d.woff2')format("woff");}.ff2_c03007{font-family:ff2_c03007;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03007;src:url('chunks/assets/font_34609a0be918508e823b7e61.woff2')format("woff");}.ff3_c03007{font-family:ff3_c03007;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03007{vertical-align:0.000000px;}
.v1_c03007{vertical-align:1.439424px;}
.ls10_c03007{letter-spacing:-1.197504px;}
.lsc_c03007{letter-spacing:-0.836352px;}
.lse_c03007{letter-spacing:-0.826848px;}
.ls1f_c03007{letter-spacing:-0.774576px;}
.ls19_c03007{letter-spacing:-0.722304px;}
.ls1d_c03007{letter-spacing:-0.608256px;}
.ls9_c03007{letter-spacing:-0.574992px;}
.ls20_c03007{letter-spacing:-0.375408px;}
.lsa_c03007{letter-spacing:-0.323136px;}
.ls13_c03007{letter-spacing:-0.289872px;}
.ls16_c03007{letter-spacing:-0.275616px;}
.ls8_c03007{letter-spacing:-0.266112px;}
.ls12_c03007{letter-spacing:-0.261360px;}
.ls6_c03007{letter-spacing:-0.242352px;}
.ls1c_c03007{letter-spacing:-0.237600px;}
.ls3_c03007{letter-spacing:-0.118800px;}
.ls14_c03007{letter-spacing:-0.109296px;}
.ls21_c03007{letter-spacing:-0.012096px;}
.ls1b_c03007{letter-spacing:0.000000px;}
.ls1_c03007{letter-spacing:0.006048px;}
.lsf_c03007{letter-spacing:0.014256px;}
.ls5_c03007{letter-spacing:0.128304px;}
.lsd_c03007{letter-spacing:0.508464px;}
.ls1a_c03007{letter-spacing:0.514080px;}
.ls15_c03007{letter-spacing:0.536976px;}
.lsb_c03007{letter-spacing:0.579744px;}
.ls17_c03007{letter-spacing:0.594000px;}
.ls7_c03007{letter-spacing:0.598752px;}
.ls2_c03007{letter-spacing:0.613008px;}
.ls11_c03007{letter-spacing:0.651024px;}
.ls1e_c03007{letter-spacing:0.660528px;}
.ls18_c03007{letter-spacing:0.670032px;}
.ls4_c03007{letter-spacing:0.717552px;}
.ls0_c03007{letter-spacing:0.722304px;}
.sc__c03007{text-shadow:none;}
.sc0_c03007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03007{-webkit-text-stroke:0px transparent;}
.sc0_c03007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15_c03007{word-spacing:-15.126048px;}
.ws11_c03007{word-spacing:-12.602304px;}
.ws10_c03007{word-spacing:-12.474000px;}
.ws8_c03007{word-spacing:-12.459744px;}
.ws1a_c03007{word-spacing:-12.416976px;}
.ws18_c03007{word-spacing:-12.388464px;}
.ws16_c03007{word-spacing:-11.642400px;}
.wsa_c03007{word-spacing:-11.590128px;}
.ws17_c03007{word-spacing:-11.271744px;}
.ws1b_c03007{word-spacing:-2.630880px;}
.ws28_c03007{word-spacing:-2.159136px;}
.ws24_c03007{word-spacing:-1.083456px;}
.ws29_c03007{word-spacing:-1.021680px;}
.ws23_c03007{word-spacing:-1.012176px;}
.ws1c_c03007{word-spacing:-0.974160px;}
.ws13_c03007{word-spacing:-0.722304px;}
.ws1e_c03007{word-spacing:-0.118800px;}
.ws25_c03007{word-spacing:-0.099792px;}
.ws1f_c03007{word-spacing:-0.095040px;}
.ws26_c03007{word-spacing:-0.085536px;}
.ws20_c03007{word-spacing:-0.038016px;}
.ws1d_c03007{word-spacing:0.000000px;}
.ws2b_c03007{word-spacing:0.014256px;}
.ws27_c03007{word-spacing:0.361152px;}
.ws2a_c03007{word-spacing:0.413424px;}
.ws12_c03007{word-spacing:0.460944px;}
.ws21_c03007{word-spacing:0.475200px;}
.ws22_c03007{word-spacing:0.836352px;}
.ws2_c03007{word-spacing:1.330560px;}
.wse_c03007{word-spacing:5.037120px;}
.wsc_c03007{word-spacing:12.098592px;}
.wsd_c03007{word-spacing:14.650416px;}
.ws14_c03007{word-spacing:33.300288px;}
.wsf_c03007{word-spacing:34.836912px;}
.ws19_c03007{word-spacing:36.143712px;}
.ws5_c03007{word-spacing:36.742464px;}
.ws1_c03007{word-spacing:37.759392px;}
.ws7_c03007{word-spacing:38.011248px;}
.ws0_c03007{word-spacing:38.020752px;}
.ws3_c03007{word-spacing:39.218256px;}
.ws4_c03007{word-spacing:39.902544px;}
.ws6_c03007{word-spacing:42.026688px;}
.wsb_c03007{word-spacing:42.473376px;}
.ws9_c03007{word-spacing:50.637312px;}
._0_c03007{margin-left:-1.948320px;}
._2_c03007{width:1.482624px;}
._6_c03007{width:2.485296px;}
._7_c03007{width:3.687552px;}
._4_c03007{width:4.999104px;}
._e_c03007{width:14.236992px;}
._c_c03007{width:19.587744px;}
._d_c03007{width:21.925728px;}
._a_c03007{width:25.380432px;}
._b_c03007{width:26.867808px;}
._9_c03007{width:30.769200px;}
._1_c03007{width:50.252400px;}
._3_c03007{width:51.530688px;}
._5_c03007{width:54.172800px;}
._8_c03007{width:57.024000px;}
.fc0_c03007{color:rgb(0,0,0);}
.fs0_c03007{font-size:47.520000px;}
.fs1_c03007{font-size:60.480000px;}
.y0_c03007{bottom:0.000000px;}
.y12_c03007{bottom:21.240450px;}
.y18_c03007{bottom:34.560450px;}
.yc_c03007{bottom:66.240450px;}
.y26_c03007{bottom:146.998362px;}
.y28_c03007{bottom:186.600234px;}
.y27_c03007{bottom:196.320450px;}
.y25_c03007{bottom:275.878542px;}
.y24_c03007{bottom:356.878758px;}
.y22_c03007{bottom:406.559730px;}
.y1e_c03007{bottom:424.560306px;}
.y23_c03007{bottom:458.759262px;}
.y21_c03007{bottom:491.879514px;}
.y20_c03007{bottom:509.880090px;}
.y1d_c03007{bottom:543.000342px;}
.y1f_c03007{bottom:559.559874px;}
.y1c_c03007{bottom:577.560450px;}
.y29_c03007{bottom:614.280450px;}
.y14_c03007{bottom:667.560522px;}
.y17_c03007{bottom:680.880000px;}
.y1a_c03007{bottom:700.320774px;}
.y16_c03007{bottom:707.160234px;}
.y19_c03007{bottom:715.440450px;}
.y15_c03007{bottom:716.880450px;}
.y11_c03007{bottom:730.200000px;}
.y13_c03007{bottom:751.440450px;}
.y10_c03007{bottom:766.560846px;}
.yf_c03007{bottom:781.320558px;}
.ye_c03007{bottom:796.440234px;}
.yb_c03007{bottom:811.200000px;}
.ya_c03007{bottom:877.439910px;}
.yd_c03007{bottom:877.440450px;}
.y7_c03007{bottom:926.759730px;}
.y3_c03007{bottom:944.760306px;}
.y9_c03007{bottom:964.559514px;}
.y8_c03007{bottom:979.319226px;}
.y6_c03007{bottom:1012.439478px;}
.y5_c03007{bottom:1030.440054px;}
.y2_c03007{bottom:1063.560306px;}
.y4_c03007{bottom:1079.759874px;}
.y1_c03007{bottom:1097.760450px;}
.y1b_c03007{bottom:1134.840450px;}
.h3_c03007{height:32.530781px;}
.h1_c03007{height:41.696016px;}
.h2_c03007{height:41.812031px;}
.h5_c03007{height:47.160000px;}
.h6_c03007{height:54.654737px;}
.h4_c03007{height:78.840000px;}
.h0_c03007{height:1263.000000px;}
.w2_c03007{width:215.280000px;}
.w1_c03007{width:892.500000px;}
.w0_c03007{width:892.830000px;}
.x0_c03007{left:0.000000px;}
.x11_c03007{left:117.000000px;}
.x8_c03007{left:440.999856px;}
.x4_c03007{left:445.680576px;}
.xe_c03007{left:451.080000px;}
.x7_c03007{left:455.399604px;}
.x5_c03007{left:461.880144px;}
.x1_c03007{left:463.320000px;}
.xd_c03007{left:483.479748px;}
.xa_c03007{left:492.119496px;}
.x6_c03007{left:493.200576px;}
.xf_c03007{left:506.880360px;}
.x3_c03007{left:511.919892px;}
.x2_c03007{left:526.679604px;}
.x9_c03007{left:569.880036px;}
.xc_c03007{left:599.760000px;}
.x10_c03007{left:622.080000px;}
.xb_c03007{left:637.200000px;}
@media print{
.v0_c03007{vertical-align:0.000000pt;}
.v1_c03007{vertical-align:1.279488pt;}
.ls10_c03007{letter-spacing:-1.064448pt;}
.lsc_c03007{letter-spacing:-0.743424pt;}
.lse_c03007{letter-spacing:-0.734976pt;}
.ls1f_c03007{letter-spacing:-0.688512pt;}
.ls19_c03007{letter-spacing:-0.642048pt;}
.ls1d_c03007{letter-spacing:-0.540672pt;}
.ls9_c03007{letter-spacing:-0.511104pt;}
.ls20_c03007{letter-spacing:-0.333696pt;}
.lsa_c03007{letter-spacing:-0.287232pt;}
.ls13_c03007{letter-spacing:-0.257664pt;}
.ls16_c03007{letter-spacing:-0.244992pt;}
.ls8_c03007{letter-spacing:-0.236544pt;}
.ls12_c03007{letter-spacing:-0.232320pt;}
.ls6_c03007{letter-spacing:-0.215424pt;}
.ls1c_c03007{letter-spacing:-0.211200pt;}
.ls3_c03007{letter-spacing:-0.105600pt;}
.ls14_c03007{letter-spacing:-0.097152pt;}
.ls21_c03007{letter-spacing:-0.010752pt;}
.ls1b_c03007{letter-spacing:0.000000pt;}
.ls1_c03007{letter-spacing:0.005376pt;}
.lsf_c03007{letter-spacing:0.012672pt;}
.ls5_c03007{letter-spacing:0.114048pt;}
.lsd_c03007{letter-spacing:0.451968pt;}
.ls1a_c03007{letter-spacing:0.456960pt;}
.ls15_c03007{letter-spacing:0.477312pt;}
.lsb_c03007{letter-spacing:0.515328pt;}
.ls17_c03007{letter-spacing:0.528000pt;}
.ls7_c03007{letter-spacing:0.532224pt;}
.ls2_c03007{letter-spacing:0.544896pt;}
.ls11_c03007{letter-spacing:0.578688pt;}
.ls1e_c03007{letter-spacing:0.587136pt;}
.ls18_c03007{letter-spacing:0.595584pt;}
.ls4_c03007{letter-spacing:0.637824pt;}
.ls0_c03007{letter-spacing:0.642048pt;}
.ws15_c03007{word-spacing:-13.445376pt;}
.ws11_c03007{word-spacing:-11.202048pt;}
.ws10_c03007{word-spacing:-11.088000pt;}
.ws8_c03007{word-spacing:-11.075328pt;}
.ws1a_c03007{word-spacing:-11.037312pt;}
.ws18_c03007{word-spacing:-11.011968pt;}
.ws16_c03007{word-spacing:-10.348800pt;}
.wsa_c03007{word-spacing:-10.302336pt;}
.ws17_c03007{word-spacing:-10.019328pt;}
.ws1b_c03007{word-spacing:-2.338560pt;}
.ws28_c03007{word-spacing:-1.919232pt;}
.ws24_c03007{word-spacing:-0.963072pt;}
.ws29_c03007{word-spacing:-0.908160pt;}
.ws23_c03007{word-spacing:-0.899712pt;}
.ws1c_c03007{word-spacing:-0.865920pt;}
.ws13_c03007{word-spacing:-0.642048pt;}
.ws1e_c03007{word-spacing:-0.105600pt;}
.ws25_c03007{word-spacing:-0.088704pt;}
.ws1f_c03007{word-spacing:-0.084480pt;}
.ws26_c03007{word-spacing:-0.076032pt;}
.ws20_c03007{word-spacing:-0.033792pt;}
.ws1d_c03007{word-spacing:0.000000pt;}
.ws2b_c03007{word-spacing:0.012672pt;}
.ws27_c03007{word-spacing:0.321024pt;}
.ws2a_c03007{word-spacing:0.367488pt;}
.ws12_c03007{word-spacing:0.409728pt;}
.ws21_c03007{word-spacing:0.422400pt;}
.ws22_c03007{word-spacing:0.743424pt;}
.ws2_c03007{word-spacing:1.182720pt;}
.wse_c03007{word-spacing:4.477440pt;}
.wsc_c03007{word-spacing:10.754304pt;}
.wsd_c03007{word-spacing:13.022592pt;}
.ws14_c03007{word-spacing:29.600256pt;}
.wsf_c03007{word-spacing:30.966144pt;}
.ws19_c03007{word-spacing:32.127744pt;}
.ws5_c03007{word-spacing:32.659968pt;}
.ws1_c03007{word-spacing:33.563904pt;}
.ws7_c03007{word-spacing:33.787776pt;}
.ws0_c03007{word-spacing:33.796224pt;}
.ws3_c03007{word-spacing:34.860672pt;}
.ws4_c03007{word-spacing:35.468928pt;}
.ws6_c03007{word-spacing:37.357056pt;}
.wsb_c03007{word-spacing:37.754112pt;}
.ws9_c03007{word-spacing:45.010944pt;}
._0_c03007{margin-left:-1.731840pt;}
._2_c03007{width:1.317888pt;}
._6_c03007{width:2.209152pt;}
._7_c03007{width:3.277824pt;}
._4_c03007{width:4.443648pt;}
._e_c03007{width:12.655104pt;}
._c_c03007{width:17.411328pt;}
._d_c03007{width:19.489536pt;}
._a_c03007{width:22.560384pt;}
._b_c03007{width:23.882496pt;}
._9_c03007{width:27.350400pt;}
._1_c03007{width:44.668800pt;}
._3_c03007{width:45.805056pt;}
._5_c03007{width:48.153600pt;}
._8_c03007{width:50.688000pt;}
.fs0_c03007{font-size:42.240000pt;}
.fs1_c03007{font-size:53.760000pt;}
.y0_c03007{bottom:0.000000pt;}
.y12_c03007{bottom:18.880400pt;}
.y18_c03007{bottom:30.720400pt;}
.yc_c03007{bottom:58.880400pt;}
.y26_c03007{bottom:130.665211pt;}
.y28_c03007{bottom:165.866875pt;}
.y27_c03007{bottom:174.507067pt;}
.y25_c03007{bottom:245.225371pt;}
.y24_c03007{bottom:317.225563pt;}
.y22_c03007{bottom:361.386427pt;}
.y1e_c03007{bottom:377.386939pt;}
.y23_c03007{bottom:407.786011pt;}
.y21_c03007{bottom:437.226235pt;}
.y20_c03007{bottom:453.226747pt;}
.y1d_c03007{bottom:482.666971pt;}
.y1f_c03007{bottom:497.386555pt;}
.y1c_c03007{bottom:513.387067pt;}
.y29_c03007{bottom:546.027067pt;}
.y14_c03007{bottom:593.387131pt;}
.y17_c03007{bottom:605.226667pt;}
.y1a_c03007{bottom:622.507355pt;}
.y16_c03007{bottom:628.586875pt;}
.y19_c03007{bottom:635.947067pt;}
.y15_c03007{bottom:637.227067pt;}
.y11_c03007{bottom:649.066667pt;}
.y13_c03007{bottom:667.947067pt;}
.y10_c03007{bottom:681.387419pt;}
.yf_c03007{bottom:694.507163pt;}
.ye_c03007{bottom:707.946875pt;}
.yb_c03007{bottom:721.066667pt;}
.ya_c03007{bottom:779.946587pt;}
.yd_c03007{bottom:779.947067pt;}
.y7_c03007{bottom:823.786427pt;}
.y3_c03007{bottom:839.786939pt;}
.y9_c03007{bottom:857.386235pt;}
.y8_c03007{bottom:870.505979pt;}
.y6_c03007{bottom:899.946203pt;}
.y5_c03007{bottom:915.946715pt;}
.y2_c03007{bottom:945.386939pt;}
.y4_c03007{bottom:959.786555pt;}
.y1_c03007{bottom:975.787067pt;}
.y1b_c03007{bottom:1008.747067pt;}
.h3_c03007{height:28.916250pt;}
.h1_c03007{height:37.063125pt;}
.h2_c03007{height:37.166250pt;}
.h5_c03007{height:41.920000pt;}
.h6_c03007{height:48.581988pt;}
.h4_c03007{height:70.080000pt;}
.h0_c03007{height:1122.666667pt;}
.w2_c03007{width:191.360000pt;}
.w1_c03007{width:793.333333pt;}
.w0_c03007{width:793.626667pt;}
.x0_c03007{left:0.000000pt;}
.x11_c03007{left:104.000000pt;}
.x8_c03007{left:391.999872pt;}
.x4_c03007{left:396.160512pt;}
.xe_c03007{left:400.960000pt;}
.x7_c03007{left:404.799648pt;}
.x5_c03007{left:410.560128pt;}
.x1_c03007{left:411.840000pt;}
.xd_c03007{left:429.759776pt;}
.xa_c03007{left:437.439552pt;}
.x6_c03007{left:438.400512pt;}
.xf_c03007{left:450.560320pt;}
.x3_c03007{left:455.039904pt;}
.x2_c03007{left:468.159648pt;}
.x9_c03007{left:506.560032pt;}
.xc_c03007{left:533.120000pt;}
.x10_c03007{left:552.960000pt;}
.xb_c03007{left:566.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03008 {
    display:none;
  }
  .loading-indicator_c03008.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03008 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03008 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03008" -> "#page-container .classname_c03008")
 */
.pf_c03008 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03008 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03008.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03008 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03008 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03008 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03008 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03008 {overflow:visible;}
  }
}
.c_c03008 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03008 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03008:after { /* webkit #35443 */
  content: '';
}
.t_c03008:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03008 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03008 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03008 { /* info for Javascript */
  display:none;
}
.l_c03008 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03008 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03008 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03008:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03008 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03008.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03008.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03008 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03008;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03008{font-family:ff1_c03008;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03008;src:url('chunks/assets/font_b4bbf599273617370ea679c8.woff2')format("woff");}.ff2_c03008{font-family:ff2_c03008;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03008;src:url('chunks/assets/font_97b9057a8c3a7497ac77621d.woff2')format("woff");}.ff3_c03008{font-family:ff3_c03008;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03008{vertical-align:0.000000px;}
.v2_c03008{vertical-align:1.439424px;}
.v1_c03008{vertical-align:33.121440px;}
.ls10_c03008{letter-spacing:-1.197504px;}
.ls15_c03008{letter-spacing:-0.855360px;}
.ls9_c03008{letter-spacing:-0.608256px;}
.lsa_c03008{letter-spacing:-0.574992px;}
.ls11_c03008{letter-spacing:-0.361152px;}
.ls16_c03008{letter-spacing:-0.275616px;}
.lsf_c03008{letter-spacing:-0.261360px;}
.ls6_c03008{letter-spacing:-0.242352px;}
.ls7_c03008{letter-spacing:-0.237600px;}
.lse_c03008{letter-spacing:-0.194832px;}
.ls3_c03008{letter-spacing:-0.118800px;}
.ls13_c03008{letter-spacing:-0.047520px;}
.ls1b_c03008{letter-spacing:-0.014256px;}
.ls19_c03008{letter-spacing:-0.012096px;}
.ls1_c03008{letter-spacing:0.006048px;}
.ls5_c03008{letter-spacing:0.128304px;}
.ls12_c03008{letter-spacing:0.209088px;}
.lsc_c03008{letter-spacing:0.508464px;}
.ls18_c03008{letter-spacing:0.514080px;}
.ls14_c03008{letter-spacing:0.536976px;}
.lsb_c03008{letter-spacing:0.579744px;}
.ls17_c03008{letter-spacing:0.594000px;}
.ls8_c03008{letter-spacing:0.598752px;}
.ls2_c03008{letter-spacing:0.613008px;}
.lsd_c03008{letter-spacing:0.655776px;}
.ls1a_c03008{letter-spacing:0.684288px;}
.ls4_c03008{letter-spacing:0.717552px;}
.ls0_c03008{letter-spacing:0.722304px;}
.sc__c03008{text-shadow:none;}
.sc0_c03008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03008{-webkit-text-stroke:0px transparent;}
.sc0_c03008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12_c03008{word-spacing:-15.126048px;}
.ws16_c03008{word-spacing:-12.474000px;}
.ws6_c03008{word-spacing:-12.459744px;}
.ws15_c03008{word-spacing:-12.416976px;}
.ws7_c03008{word-spacing:-12.388464px;}
.ws2_c03008{word-spacing:-11.642400px;}
.wsb_c03008{word-spacing:-11.637648px;}
.ws4_c03008{word-spacing:-11.271744px;}
.ws11_c03008{word-spacing:-2.630880px;}
.ws1a_c03008{word-spacing:-1.083456px;}
.ws17_c03008{word-spacing:-0.974160px;}
.ws14_c03008{word-spacing:-0.722304px;}
.ws13_c03008{word-spacing:-0.532224px;}
.ws20_c03008{word-spacing:-0.346896px;}
.ws1d_c03008{word-spacing:-0.313632px;}
.ws1b_c03008{word-spacing:-0.166320px;}
.ws19_c03008{word-spacing:-0.118800px;}
.ws1c_c03008{word-spacing:-0.099792px;}
.ws1f_c03008{word-spacing:-0.085536px;}
.ws18_c03008{word-spacing:0.000000px;}
.ws1e_c03008{word-spacing:0.494208px;}
.ws9_c03008{word-spacing:6.724080px;}
.wsf_c03008{word-spacing:30.298752px;}
.ws10_c03008{word-spacing:33.300288px;}
.wse_c03008{word-spacing:34.836912px;}
.ws8_c03008{word-spacing:36.143712px;}
.ws1_c03008{word-spacing:37.759392px;}
.ws0_c03008{word-spacing:38.020752px;}
.ws3_c03008{word-spacing:39.218256px;}
.ws5_c03008{word-spacing:39.902544px;}
.wsc_c03008{word-spacing:40.320720px;}
.wsa_c03008{word-spacing:43.471296px;}
.wsd_c03008{word-spacing:57.903120px;}
._0_c03008{margin-left:-1.948320px;}
._2_c03008{width:1.482624px;}
._c_c03008{width:13.975632px;}
._b_c03008{width:15.501024px;}
._a_c03008{width:16.679520px;}
._9_c03008{width:19.364400px;}
._4_c03008{width:22.899888px;}
._5_c03008{width:25.461216px;}
._1_c03008{width:50.252400px;}
._3_c03008{width:51.530688px;}
._6_c03008{width:55.778976px;}
._8_c03008{width:66.204864px;}
._7_c03008{width:71.807472px;}
.fc0_c03008{color:rgb(0,0,0);}
.fs0_c03008{font-size:47.520000px;}
.fs1_c03008{font-size:60.480000px;}
.y0_c03008{bottom:0.000000px;}
.y1e_c03008{bottom:146.998362px;}
.y20_c03008{bottom:186.600234px;}
.y1f_c03008{bottom:196.320450px;}
.y1d_c03008{bottom:260.758866px;}
.y1c_c03008{bottom:275.878542px;}
.y1b_c03008{bottom:341.759082px;}
.y1a_c03008{bottom:356.878758px;}
.y18_c03008{bottom:406.559730px;}
.y14_c03008{bottom:424.560306px;}
.y19_c03008{bottom:458.759262px;}
.y17_c03008{bottom:491.879514px;}
.y16_c03008{bottom:509.880090px;}
.y13_c03008{bottom:543.000342px;}
.y15_c03008{bottom:559.559874px;}
.y12_c03008{bottom:577.560450px;}
.y21_c03008{bottom:614.280450px;}
.ye_c03008{bottom:667.560702px;}
.y10_c03008{bottom:707.160234px;}
.yf_c03008{bottom:716.880450px;}
.yd_c03008{bottom:766.560306px;}
.yc_c03008{bottom:781.320018px;}
.yb_c03008{bottom:796.439694px;}
.ya_c03008{bottom:862.319046px;}
.y9_c03008{bottom:877.438722px;}
.y7_c03008{bottom:926.759730px;}
.y3_c03008{bottom:944.760306px;}
.y8_c03008{bottom:979.319226px;}
.y6_c03008{bottom:1012.439478px;}
.y5_c03008{bottom:1030.440054px;}
.y2_c03008{bottom:1063.560306px;}
.y4_c03008{bottom:1079.759874px;}
.y1_c03008{bottom:1097.760450px;}
.y11_c03008{bottom:1134.840450px;}
.h3_c03008{height:32.530781px;}
.h1_c03008{height:41.696016px;}
.h2_c03008{height:41.812031px;}
.h5_c03008{height:54.654737px;}
.h4_c03008{height:74.817456px;}
.h0_c03008{height:1263.000000px;}
.w1_c03008{width:892.500000px;}
.w0_c03008{width:892.830000px;}
.x0_c03008{left:0.000000px;}
.xe_c03008{left:117.000000px;}
.x8_c03008{left:440.999856px;}
.x4_c03008{left:445.680576px;}
.xc_c03008{left:451.080000px;}
.x7_c03008{left:455.399604px;}
.x5_c03008{left:461.880144px;}
.x1_c03008{left:463.320000px;}
.xb_c03008{left:483.480360px;}
.x9_c03008{left:492.119496px;}
.x6_c03008{left:493.200576px;}
.xd_c03008{left:506.880360px;}
.x3_c03008{left:511.919892px;}
.x2_c03008{left:526.679604px;}
.xa_c03008{left:569.880036px;}
@media print{
.v0_c03008{vertical-align:0.000000pt;}
.v2_c03008{vertical-align:1.279488pt;}
.v1_c03008{vertical-align:29.441280pt;}
.ls10_c03008{letter-spacing:-1.064448pt;}
.ls15_c03008{letter-spacing:-0.760320pt;}
.ls9_c03008{letter-spacing:-0.540672pt;}
.lsa_c03008{letter-spacing:-0.511104pt;}
.ls11_c03008{letter-spacing:-0.321024pt;}
.ls16_c03008{letter-spacing:-0.244992pt;}
.lsf_c03008{letter-spacing:-0.232320pt;}
.ls6_c03008{letter-spacing:-0.215424pt;}
.ls7_c03008{letter-spacing:-0.211200pt;}
.lse_c03008{letter-spacing:-0.173184pt;}
.ls3_c03008{letter-spacing:-0.105600pt;}
.ls13_c03008{letter-spacing:-0.042240pt;}
.ls1b_c03008{letter-spacing:-0.012672pt;}
.ls19_c03008{letter-spacing:-0.010752pt;}
.ls1_c03008{letter-spacing:0.005376pt;}
.ls5_c03008{letter-spacing:0.114048pt;}
.ls12_c03008{letter-spacing:0.185856pt;}
.lsc_c03008{letter-spacing:0.451968pt;}
.ls18_c03008{letter-spacing:0.456960pt;}
.ls14_c03008{letter-spacing:0.477312pt;}
.lsb_c03008{letter-spacing:0.515328pt;}
.ls17_c03008{letter-spacing:0.528000pt;}
.ls8_c03008{letter-spacing:0.532224pt;}
.ls2_c03008{letter-spacing:0.544896pt;}
.lsd_c03008{letter-spacing:0.582912pt;}
.ls1a_c03008{letter-spacing:0.608256pt;}
.ls4_c03008{letter-spacing:0.637824pt;}
.ls0_c03008{letter-spacing:0.642048pt;}
.ws12_c03008{word-spacing:-13.445376pt;}
.ws16_c03008{word-spacing:-11.088000pt;}
.ws6_c03008{word-spacing:-11.075328pt;}
.ws15_c03008{word-spacing:-11.037312pt;}
.ws7_c03008{word-spacing:-11.011968pt;}
.ws2_c03008{word-spacing:-10.348800pt;}
.wsb_c03008{word-spacing:-10.344576pt;}
.ws4_c03008{word-spacing:-10.019328pt;}
.ws11_c03008{word-spacing:-2.338560pt;}
.ws1a_c03008{word-spacing:-0.963072pt;}
.ws17_c03008{word-spacing:-0.865920pt;}
.ws14_c03008{word-spacing:-0.642048pt;}
.ws13_c03008{word-spacing:-0.473088pt;}
.ws20_c03008{word-spacing:-0.308352pt;}
.ws1d_c03008{word-spacing:-0.278784pt;}
.ws1b_c03008{word-spacing:-0.147840pt;}
.ws19_c03008{word-spacing:-0.105600pt;}
.ws1c_c03008{word-spacing:-0.088704pt;}
.ws1f_c03008{word-spacing:-0.076032pt;}
.ws18_c03008{word-spacing:0.000000pt;}
.ws1e_c03008{word-spacing:0.439296pt;}
.ws9_c03008{word-spacing:5.976960pt;}
.wsf_c03008{word-spacing:26.932224pt;}
.ws10_c03008{word-spacing:29.600256pt;}
.wse_c03008{word-spacing:30.966144pt;}
.ws8_c03008{word-spacing:32.127744pt;}
.ws1_c03008{word-spacing:33.563904pt;}
.ws0_c03008{word-spacing:33.796224pt;}
.ws3_c03008{word-spacing:34.860672pt;}
.ws5_c03008{word-spacing:35.468928pt;}
.wsc_c03008{word-spacing:35.840640pt;}
.wsa_c03008{word-spacing:38.641152pt;}
.wsd_c03008{word-spacing:51.469440pt;}
._0_c03008{margin-left:-1.731840pt;}
._2_c03008{width:1.317888pt;}
._c_c03008{width:12.422784pt;}
._b_c03008{width:13.778688pt;}
._a_c03008{width:14.826240pt;}
._9_c03008{width:17.212800pt;}
._4_c03008{width:20.355456pt;}
._5_c03008{width:22.632192pt;}
._1_c03008{width:44.668800pt;}
._3_c03008{width:45.805056pt;}
._6_c03008{width:49.581312pt;}
._8_c03008{width:58.848768pt;}
._7_c03008{width:63.828864pt;}
.fs0_c03008{font-size:42.240000pt;}
.fs1_c03008{font-size:53.760000pt;}
.y0_c03008{bottom:0.000000pt;}
.y1e_c03008{bottom:130.665211pt;}
.y20_c03008{bottom:165.866875pt;}
.y1f_c03008{bottom:174.507067pt;}
.y1d_c03008{bottom:231.785659pt;}
.y1c_c03008{bottom:245.225371pt;}
.y1b_c03008{bottom:303.785851pt;}
.y1a_c03008{bottom:317.225563pt;}
.y18_c03008{bottom:361.386427pt;}
.y14_c03008{bottom:377.386939pt;}
.y19_c03008{bottom:407.786011pt;}
.y17_c03008{bottom:437.226235pt;}
.y16_c03008{bottom:453.226747pt;}
.y13_c03008{bottom:482.666971pt;}
.y15_c03008{bottom:497.386555pt;}
.y12_c03008{bottom:513.387067pt;}
.y21_c03008{bottom:546.027067pt;}
.ye_c03008{bottom:593.387291pt;}
.y10_c03008{bottom:628.586875pt;}
.yf_c03008{bottom:637.227067pt;}
.yd_c03008{bottom:681.386939pt;}
.yc_c03008{bottom:694.506683pt;}
.yb_c03008{bottom:707.946395pt;}
.ya_c03008{bottom:766.505819pt;}
.y9_c03008{bottom:779.945531pt;}
.y7_c03008{bottom:823.786427pt;}
.y3_c03008{bottom:839.786939pt;}
.y8_c03008{bottom:870.505979pt;}
.y6_c03008{bottom:899.946203pt;}
.y5_c03008{bottom:915.946715pt;}
.y2_c03008{bottom:945.386939pt;}
.y4_c03008{bottom:959.786555pt;}
.y1_c03008{bottom:975.787067pt;}
.y11_c03008{bottom:1008.747067pt;}
.h3_c03008{height:28.916250pt;}
.h1_c03008{height:37.063125pt;}
.h2_c03008{height:37.166250pt;}
.h5_c03008{height:48.581988pt;}
.h4_c03008{height:66.504405pt;}
.h0_c03008{height:1122.666667pt;}
.w1_c03008{width:793.333333pt;}
.w0_c03008{width:793.626667pt;}
.x0_c03008{left:0.000000pt;}
.xe_c03008{left:104.000000pt;}
.x8_c03008{left:391.999872pt;}
.x4_c03008{left:396.160512pt;}
.xc_c03008{left:400.960000pt;}
.x7_c03008{left:404.799648pt;}
.x5_c03008{left:410.560128pt;}
.x1_c03008{left:411.840000pt;}
.xb_c03008{left:429.760320pt;}
.x9_c03008{left:437.439552pt;}
.x6_c03008{left:438.400512pt;}
.xd_c03008{left:450.560320pt;}
.x3_c03008{left:455.039904pt;}
.x2_c03008{left:468.159648pt;}
.xa_c03008{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03009 {
    display:none;
  }
  .loading-indicator_c03009.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03009 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03009 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03009" -> "#page-container .classname_c03009")
 */
.pf_c03009 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03009 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03009.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03009 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03009 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03009 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03009 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03009 {overflow:visible;}
  }
}
.c_c03009 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03009 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03009:after { /* webkit #35443 */
  content: '';
}
.t_c03009:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03009 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03009 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03009 { /* info for Javascript */
  display:none;
}
.l_c03009 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03009 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03009 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03009:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03009 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03009.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03009.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03009 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03009;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03009{font-family:ff1_c03009;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03009;src:url('chunks/assets/font_b542586b6d3d2b5300be0ce9.woff2')format("woff");}.ff2_c03009{font-family:ff2_c03009;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03009;src:url('chunks/assets/font_97b9057a8c3a7497ac77621d.woff2')format("woff");}.ff3_c03009{font-family:ff3_c03009;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03009{vertical-align:0.000000px;}
.v2_c03009{vertical-align:1.439424px;}
.v1_c03009{vertical-align:33.121440px;}
.lsf_c03009{letter-spacing:-1.197504px;}
.ls12_c03009{letter-spacing:-0.855360px;}
.ls9_c03009{letter-spacing:-0.608256px;}
.lsa_c03009{letter-spacing:-0.574992px;}
.ls10_c03009{letter-spacing:-0.361152px;}
.ls13_c03009{letter-spacing:-0.275616px;}
.lse_c03009{letter-spacing:-0.261360px;}
.ls6_c03009{letter-spacing:-0.242352px;}
.ls7_c03009{letter-spacing:-0.237600px;}
.ls3_c03009{letter-spacing:-0.118800px;}
.ls16_c03009{letter-spacing:-0.012096px;}
.ls1_c03009{letter-spacing:0.006048px;}
.ls5_c03009{letter-spacing:0.128304px;}
.lsc_c03009{letter-spacing:0.508464px;}
.ls15_c03009{letter-spacing:0.514080px;}
.ls11_c03009{letter-spacing:0.536976px;}
.lsb_c03009{letter-spacing:0.579744px;}
.ls14_c03009{letter-spacing:0.594000px;}
.ls8_c03009{letter-spacing:0.598752px;}
.ls2_c03009{letter-spacing:0.613008px;}
.lsd_c03009{letter-spacing:0.655776px;}
.ls4_c03009{letter-spacing:0.717552px;}
.ls0_c03009{letter-spacing:0.722304px;}
.sc__c03009{text-shadow:none;}
.sc0_c03009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03009{-webkit-text-stroke:0px transparent;}
.sc0_c03009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12_c03009{word-spacing:-15.126048px;}
.ws6_c03009{word-spacing:-12.459744px;}
.ws13_c03009{word-spacing:-12.416976px;}
.ws7_c03009{word-spacing:-12.388464px;}
.ws2_c03009{word-spacing:-11.642400px;}
.wsb_c03009{word-spacing:-11.637648px;}
.ws4_c03009{word-spacing:-11.271744px;}
.ws11_c03009{word-spacing:-2.630880px;}
.ws17_c03009{word-spacing:-1.083456px;}
.ws14_c03009{word-spacing:-0.974160px;}
.wsd_c03009{word-spacing:-0.722304px;}
.ws16_c03009{word-spacing:-0.118800px;}
.ws18_c03009{word-spacing:-0.099792px;}
.ws1a_c03009{word-spacing:-0.085536px;}
.ws15_c03009{word-spacing:0.000000px;}
.ws19_c03009{word-spacing:0.494208px;}
.ws9_c03009{word-spacing:6.724080px;}
.wsf_c03009{word-spacing:30.298752px;}
.ws10_c03009{word-spacing:33.300288px;}
.wse_c03009{word-spacing:34.836912px;}
.ws8_c03009{word-spacing:36.143712px;}
.ws1_c03009{word-spacing:37.759392px;}
.ws0_c03009{word-spacing:38.020752px;}
.ws3_c03009{word-spacing:39.218256px;}
.ws5_c03009{word-spacing:39.902544px;}
.wsc_c03009{word-spacing:40.320720px;}
.wsa_c03009{word-spacing:43.471296px;}
._0_c03009{margin-left:-1.948320px;}
._2_c03009{width:1.482624px;}
._8_c03009{width:14.198976px;}
._7_c03009{width:15.277680px;}
._4_c03009{width:22.899888px;}
._5_c03009{width:25.461216px;}
._1_c03009{width:50.252400px;}
._3_c03009{width:51.530688px;}
._6_c03009{width:55.778976px;}
.fc0_c03009{color:rgb(0,0,0);}
.fs0_c03009{font-size:47.520000px;}
.fs1_c03009{font-size:60.480000px;}
.y0_c03009{bottom:0.000000px;}
.y1f_c03009{bottom:146.999550px;}
.y21_c03009{bottom:186.600234px;}
.y20_c03009{bottom:196.320450px;}
.y1e_c03009{bottom:245.999154px;}
.y1d_c03009{bottom:260.758866px;}
.y1c_c03009{bottom:275.878542px;}
.y1b_c03009{bottom:341.759082px;}
.y1a_c03009{bottom:356.878758px;}
.y18_c03009{bottom:406.559730px;}
.y14_c03009{bottom:424.560306px;}
.y19_c03009{bottom:458.759262px;}
.y17_c03009{bottom:491.879514px;}
.y16_c03009{bottom:509.880090px;}
.y13_c03009{bottom:543.000342px;}
.y15_c03009{bottom:559.559874px;}
.y12_c03009{bottom:577.560450px;}
.y22_c03009{bottom:614.280450px;}
.ye_c03009{bottom:667.560702px;}
.y10_c03009{bottom:707.160234px;}
.yf_c03009{bottom:716.880450px;}
.yd_c03009{bottom:766.560306px;}
.yc_c03009{bottom:781.320018px;}
.yb_c03009{bottom:796.439694px;}
.ya_c03009{bottom:862.319046px;}
.y9_c03009{bottom:877.438722px;}
.y7_c03009{bottom:926.759730px;}
.y3_c03009{bottom:944.760306px;}
.y8_c03009{bottom:979.319226px;}
.y6_c03009{bottom:1012.439478px;}
.y5_c03009{bottom:1030.440054px;}
.y2_c03009{bottom:1063.560306px;}
.y4_c03009{bottom:1079.759874px;}
.y1_c03009{bottom:1097.760450px;}
.y11_c03009{bottom:1134.840450px;}
.h3_c03009{height:32.530781px;}
.h1_c03009{height:41.696016px;}
.h2_c03009{height:41.812031px;}
.h5_c03009{height:54.654737px;}
.h4_c03009{height:74.817456px;}
.h0_c03009{height:1263.000000px;}
.w1_c03009{width:892.500000px;}
.w0_c03009{width:892.830000px;}
.x0_c03009{left:0.000000px;}
.xe_c03009{left:117.000000px;}
.x8_c03009{left:440.999856px;}
.x4_c03009{left:445.680576px;}
.xc_c03009{left:451.080000px;}
.x7_c03009{left:455.399604px;}
.x5_c03009{left:461.880144px;}
.x1_c03009{left:463.320000px;}
.xb_c03009{left:483.480360px;}
.x9_c03009{left:492.119496px;}
.x6_c03009{left:493.200576px;}
.xd_c03009{left:506.880360px;}
.x3_c03009{left:511.919892px;}
.x2_c03009{left:526.679604px;}
.xa_c03009{left:569.880036px;}
@media print{
.v0_c03009{vertical-align:0.000000pt;}
.v2_c03009{vertical-align:1.279488pt;}
.v1_c03009{vertical-align:29.441280pt;}
.lsf_c03009{letter-spacing:-1.064448pt;}
.ls12_c03009{letter-spacing:-0.760320pt;}
.ls9_c03009{letter-spacing:-0.540672pt;}
.lsa_c03009{letter-spacing:-0.511104pt;}
.ls10_c03009{letter-spacing:-0.321024pt;}
.ls13_c03009{letter-spacing:-0.244992pt;}
.lse_c03009{letter-spacing:-0.232320pt;}
.ls6_c03009{letter-spacing:-0.215424pt;}
.ls7_c03009{letter-spacing:-0.211200pt;}
.ls3_c03009{letter-spacing:-0.105600pt;}
.ls16_c03009{letter-spacing:-0.010752pt;}
.ls1_c03009{letter-spacing:0.005376pt;}
.ls5_c03009{letter-spacing:0.114048pt;}
.lsc_c03009{letter-spacing:0.451968pt;}
.ls15_c03009{letter-spacing:0.456960pt;}
.ls11_c03009{letter-spacing:0.477312pt;}
.lsb_c03009{letter-spacing:0.515328pt;}
.ls14_c03009{letter-spacing:0.528000pt;}
.ls8_c03009{letter-spacing:0.532224pt;}
.ls2_c03009{letter-spacing:0.544896pt;}
.lsd_c03009{letter-spacing:0.582912pt;}
.ls4_c03009{letter-spacing:0.637824pt;}
.ls0_c03009{letter-spacing:0.642048pt;}
.ws12_c03009{word-spacing:-13.445376pt;}
.ws6_c03009{word-spacing:-11.075328pt;}
.ws13_c03009{word-spacing:-11.037312pt;}
.ws7_c03009{word-spacing:-11.011968pt;}
.ws2_c03009{word-spacing:-10.348800pt;}
.wsb_c03009{word-spacing:-10.344576pt;}
.ws4_c03009{word-spacing:-10.019328pt;}
.ws11_c03009{word-spacing:-2.338560pt;}
.ws17_c03009{word-spacing:-0.963072pt;}
.ws14_c03009{word-spacing:-0.865920pt;}
.wsd_c03009{word-spacing:-0.642048pt;}
.ws16_c03009{word-spacing:-0.105600pt;}
.ws18_c03009{word-spacing:-0.088704pt;}
.ws1a_c03009{word-spacing:-0.076032pt;}
.ws15_c03009{word-spacing:0.000000pt;}
.ws19_c03009{word-spacing:0.439296pt;}
.ws9_c03009{word-spacing:5.976960pt;}
.wsf_c03009{word-spacing:26.932224pt;}
.ws10_c03009{word-spacing:29.600256pt;}
.wse_c03009{word-spacing:30.966144pt;}
.ws8_c03009{word-spacing:32.127744pt;}
.ws1_c03009{word-spacing:33.563904pt;}
.ws0_c03009{word-spacing:33.796224pt;}
.ws3_c03009{word-spacing:34.860672pt;}
.ws5_c03009{word-spacing:35.468928pt;}
.wsc_c03009{word-spacing:35.840640pt;}
.wsa_c03009{word-spacing:38.641152pt;}
._0_c03009{margin-left:-1.731840pt;}
._2_c03009{width:1.317888pt;}
._8_c03009{width:12.621312pt;}
._7_c03009{width:13.580160pt;}
._4_c03009{width:20.355456pt;}
._5_c03009{width:22.632192pt;}
._1_c03009{width:44.668800pt;}
._3_c03009{width:45.805056pt;}
._6_c03009{width:49.581312pt;}
.fs0_c03009{font-size:42.240000pt;}
.fs1_c03009{font-size:53.760000pt;}
.y0_c03009{bottom:0.000000pt;}
.y1f_c03009{bottom:130.666267pt;}
.y21_c03009{bottom:165.866875pt;}
.y20_c03009{bottom:174.507067pt;}
.y1e_c03009{bottom:218.665915pt;}
.y1d_c03009{bottom:231.785659pt;}
.y1c_c03009{bottom:245.225371pt;}
.y1b_c03009{bottom:303.785851pt;}
.y1a_c03009{bottom:317.225563pt;}
.y18_c03009{bottom:361.386427pt;}
.y14_c03009{bottom:377.386939pt;}
.y19_c03009{bottom:407.786011pt;}
.y17_c03009{bottom:437.226235pt;}
.y16_c03009{bottom:453.226747pt;}
.y13_c03009{bottom:482.666971pt;}
.y15_c03009{bottom:497.386555pt;}
.y12_c03009{bottom:513.387067pt;}
.y22_c03009{bottom:546.027067pt;}
.ye_c03009{bottom:593.387291pt;}
.y10_c03009{bottom:628.586875pt;}
.yf_c03009{bottom:637.227067pt;}
.yd_c03009{bottom:681.386939pt;}
.yc_c03009{bottom:694.506683pt;}
.yb_c03009{bottom:707.946395pt;}
.ya_c03009{bottom:766.505819pt;}
.y9_c03009{bottom:779.945531pt;}
.y7_c03009{bottom:823.786427pt;}
.y3_c03009{bottom:839.786939pt;}
.y8_c03009{bottom:870.505979pt;}
.y6_c03009{bottom:899.946203pt;}
.y5_c03009{bottom:915.946715pt;}
.y2_c03009{bottom:945.386939pt;}
.y4_c03009{bottom:959.786555pt;}
.y1_c03009{bottom:975.787067pt;}
.y11_c03009{bottom:1008.747067pt;}
.h3_c03009{height:28.916250pt;}
.h1_c03009{height:37.063125pt;}
.h2_c03009{height:37.166250pt;}
.h5_c03009{height:48.581988pt;}
.h4_c03009{height:66.504405pt;}
.h0_c03009{height:1122.666667pt;}
.w1_c03009{width:793.333333pt;}
.w0_c03009{width:793.626667pt;}
.x0_c03009{left:0.000000pt;}
.xe_c03009{left:104.000000pt;}
.x8_c03009{left:391.999872pt;}
.x4_c03009{left:396.160512pt;}
.xc_c03009{left:400.960000pt;}
.x7_c03009{left:404.799648pt;}
.x5_c03009{left:410.560128pt;}
.x1_c03009{left:411.840000pt;}
.xb_c03009{left:429.760320pt;}
.x9_c03009{left:437.439552pt;}
.x6_c03009{left:438.400512pt;}
.xd_c03009{left:450.560320pt;}
.x3_c03009{left:455.039904pt;}
.x2_c03009{left:468.159648pt;}
.xa_c03009{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03010 {
    display:none;
  }
  .loading-indicator_c03010.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03010 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03010 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03010" -> "#page-container .classname_c03010")
 */
.pf_c03010 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03010 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03010.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03010 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03010 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03010 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03010 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03010 {overflow:visible;}
  }
}
.c_c03010 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03010 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03010:after { /* webkit #35443 */
  content: '';
}
.t_c03010:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03010 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03010 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03010 { /* info for Javascript */
  display:none;
}
.l_c03010 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03010 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03010 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03010:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03010 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03010.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03010.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03010 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03010;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03010{font-family:ff1_c03010;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03010;src:url('chunks/assets/font_62b5707667d4652a40f2bd88.woff2')format("woff");}.ff2_c03010{font-family:ff2_c03010;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03010;src:url('chunks/assets/font_cac5c651a3a6bf586fffc1c9.woff2')format("woff");}.ff3_c03010{font-family:ff3_c03010;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03010{vertical-align:0.000000px;}
.v2_c03010{vertical-align:1.439424px;}
.v1_c03010{vertical-align:33.121440px;}
.ls18_c03010{letter-spacing:-0.793584px;}
.ls17_c03010{letter-spacing:-0.774576px;}
.lsa_c03010{letter-spacing:-0.608256px;}
.lsb_c03010{letter-spacing:-0.574992px;}
.ls14_c03010{letter-spacing:-0.389664px;}
.ls12_c03010{letter-spacing:-0.275616px;}
.ls10_c03010{letter-spacing:-0.261360px;}
.ls7_c03010{letter-spacing:-0.242352px;}
.ls8_c03010{letter-spacing:-0.237600px;}
.ls4_c03010{letter-spacing:-0.118800px;}
.lsf_c03010{letter-spacing:-0.014256px;}
.ls16_c03010{letter-spacing:-0.012096px;}
.ls1_c03010{letter-spacing:0.006048px;}
.ls6_c03010{letter-spacing:0.128304px;}
.lsd_c03010{letter-spacing:0.508464px;}
.ls15_c03010{letter-spacing:0.514080px;}
.ls11_c03010{letter-spacing:0.536976px;}
.lsc_c03010{letter-spacing:0.579744px;}
.ls13_c03010{letter-spacing:0.594000px;}
.ls9_c03010{letter-spacing:0.598752px;}
.ls3_c03010{letter-spacing:0.613008px;}
.ls2_c03010{letter-spacing:0.651024px;}
.lse_c03010{letter-spacing:0.684288px;}
.ls5_c03010{letter-spacing:0.717552px;}
.ls0_c03010{letter-spacing:0.722304px;}
.sc__c03010{text-shadow:none;}
.sc0_c03010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03010{-webkit-text-stroke:0px transparent;}
.sc0_c03010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c03010{word-spacing:-15.126048px;}
.ws12_c03010{word-spacing:-12.474000px;}
.ws6_c03010{word-spacing:-12.459744px;}
.wsb_c03010{word-spacing:-12.416976px;}
.ws7_c03010{word-spacing:-12.388464px;}
.ws2_c03010{word-spacing:-11.642400px;}
.ws4_c03010{word-spacing:-11.271744px;}
.ws10_c03010{word-spacing:-11.105424px;}
.wse_c03010{word-spacing:-2.630880px;}
.ws16_c03010{word-spacing:-1.083456px;}
.ws1b_c03010{word-spacing:-1.012176px;}
.ws13_c03010{word-spacing:-0.974160px;}
.wsa_c03010{word-spacing:-0.722304px;}
.ws9_c03010{word-spacing:-0.532224px;}
.ws17_c03010{word-spacing:-0.346896px;}
.ws15_c03010{word-spacing:-0.118800px;}
.ws18_c03010{word-spacing:-0.099792px;}
.ws19_c03010{word-spacing:-0.085536px;}
.ws14_c03010{word-spacing:0.000000px;}
.ws1a_c03010{word-spacing:0.028512px;}
.ws1c_c03010{word-spacing:0.432432px;}
.wsc_c03010{word-spacing:30.298752px;}
.wsd_c03010{word-spacing:33.300288px;}
.ws8_c03010{word-spacing:36.143712px;}
.ws1_c03010{word-spacing:37.759392px;}
.ws0_c03010{word-spacing:38.020752px;}
.ws3_c03010{word-spacing:39.218256px;}
.ws5_c03010{word-spacing:39.902544px;}
.ws11_c03010{word-spacing:42.026688px;}
._0_c03010{margin-left:-1.948320px;}
._2_c03010{width:1.482624px;}
._7_c03010{width:13.975632px;}
._6_c03010{width:15.501024px;}
._5_c03010{width:16.679520px;}
._4_c03010{width:19.364400px;}
._1_c03010{width:50.252400px;}
._3_c03010{width:51.530688px;}
.fc0_c03010{color:rgb(0,0,0);}
.fs0_c03010{font-size:47.520000px;}
.fs1_c03010{font-size:60.480000px;}
.y0_c03010{bottom:0.000000px;}
.y1b_c03010{bottom:146.998362px;}
.y1d_c03010{bottom:186.600234px;}
.y1c_c03010{bottom:196.320450px;}
.y1a_c03010{bottom:275.878542px;}
.y19_c03010{bottom:356.878758px;}
.y17_c03010{bottom:406.559730px;}
.y13_c03010{bottom:424.560306px;}
.y18_c03010{bottom:458.759262px;}
.y16_c03010{bottom:491.879514px;}
.y15_c03010{bottom:509.880090px;}
.y12_c03010{bottom:543.000342px;}
.y14_c03010{bottom:559.559874px;}
.y11_c03010{bottom:577.560450px;}
.y1e_c03010{bottom:614.280450px;}
.yd_c03010{bottom:667.559514px;}
.yf_c03010{bottom:707.160234px;}
.ye_c03010{bottom:716.880450px;}
.yc_c03010{bottom:781.320018px;}
.yb_c03010{bottom:796.439694px;}
.ya_c03010{bottom:862.319046px;}
.y9_c03010{bottom:877.438722px;}
.y7_c03010{bottom:926.759730px;}
.y3_c03010{bottom:944.760306px;}
.y8_c03010{bottom:979.319226px;}
.y6_c03010{bottom:1012.439478px;}
.y5_c03010{bottom:1030.440054px;}
.y2_c03010{bottom:1063.560306px;}
.y4_c03010{bottom:1079.759874px;}
.y1_c03010{bottom:1097.760450px;}
.y10_c03010{bottom:1134.840450px;}
.h3_c03010{height:32.530781px;}
.h1_c03010{height:41.696016px;}
.h2_c03010{height:41.812031px;}
.h5_c03010{height:54.654737px;}
.h4_c03010{height:74.817456px;}
.h0_c03010{height:1263.000000px;}
.w1_c03010{width:892.500000px;}
.w0_c03010{width:892.830000px;}
.x0_c03010{left:0.000000px;}
.xe_c03010{left:117.000000px;}
.x8_c03010{left:440.999856px;}
.x4_c03010{left:445.680576px;}
.xc_c03010{left:451.080000px;}
.x7_c03010{left:455.399604px;}
.x5_c03010{left:461.880144px;}
.x1_c03010{left:463.320000px;}
.xb_c03010{left:483.480360px;}
.x9_c03010{left:492.119496px;}
.x6_c03010{left:493.200576px;}
.xd_c03010{left:506.880360px;}
.x3_c03010{left:511.919892px;}
.x2_c03010{left:526.679604px;}
.xa_c03010{left:569.880036px;}
@media print{
.v0_c03010{vertical-align:0.000000pt;}
.v2_c03010{vertical-align:1.279488pt;}
.v1_c03010{vertical-align:29.441280pt;}
.ls18_c03010{letter-spacing:-0.705408pt;}
.ls17_c03010{letter-spacing:-0.688512pt;}
.lsa_c03010{letter-spacing:-0.540672pt;}
.lsb_c03010{letter-spacing:-0.511104pt;}
.ls14_c03010{letter-spacing:-0.346368pt;}
.ls12_c03010{letter-spacing:-0.244992pt;}
.ls10_c03010{letter-spacing:-0.232320pt;}
.ls7_c03010{letter-spacing:-0.215424pt;}
.ls8_c03010{letter-spacing:-0.211200pt;}
.ls4_c03010{letter-spacing:-0.105600pt;}
.lsf_c03010{letter-spacing:-0.012672pt;}
.ls16_c03010{letter-spacing:-0.010752pt;}
.ls1_c03010{letter-spacing:0.005376pt;}
.ls6_c03010{letter-spacing:0.114048pt;}
.lsd_c03010{letter-spacing:0.451968pt;}
.ls15_c03010{letter-spacing:0.456960pt;}
.ls11_c03010{letter-spacing:0.477312pt;}
.lsc_c03010{letter-spacing:0.515328pt;}
.ls13_c03010{letter-spacing:0.528000pt;}
.ls9_c03010{letter-spacing:0.532224pt;}
.ls3_c03010{letter-spacing:0.544896pt;}
.ls2_c03010{letter-spacing:0.578688pt;}
.lse_c03010{letter-spacing:0.608256pt;}
.ls5_c03010{letter-spacing:0.637824pt;}
.ls0_c03010{letter-spacing:0.642048pt;}
.wsf_c03010{word-spacing:-13.445376pt;}
.ws12_c03010{word-spacing:-11.088000pt;}
.ws6_c03010{word-spacing:-11.075328pt;}
.wsb_c03010{word-spacing:-11.037312pt;}
.ws7_c03010{word-spacing:-11.011968pt;}
.ws2_c03010{word-spacing:-10.348800pt;}
.ws4_c03010{word-spacing:-10.019328pt;}
.ws10_c03010{word-spacing:-9.871488pt;}
.wse_c03010{word-spacing:-2.338560pt;}
.ws16_c03010{word-spacing:-0.963072pt;}
.ws1b_c03010{word-spacing:-0.899712pt;}
.ws13_c03010{word-spacing:-0.865920pt;}
.wsa_c03010{word-spacing:-0.642048pt;}
.ws9_c03010{word-spacing:-0.473088pt;}
.ws17_c03010{word-spacing:-0.308352pt;}
.ws15_c03010{word-spacing:-0.105600pt;}
.ws18_c03010{word-spacing:-0.088704pt;}
.ws19_c03010{word-spacing:-0.076032pt;}
.ws14_c03010{word-spacing:0.000000pt;}
.ws1a_c03010{word-spacing:0.025344pt;}
.ws1c_c03010{word-spacing:0.384384pt;}
.wsc_c03010{word-spacing:26.932224pt;}
.wsd_c03010{word-spacing:29.600256pt;}
.ws8_c03010{word-spacing:32.127744pt;}
.ws1_c03010{word-spacing:33.563904pt;}
.ws0_c03010{word-spacing:33.796224pt;}
.ws3_c03010{word-spacing:34.860672pt;}
.ws5_c03010{word-spacing:35.468928pt;}
.ws11_c03010{word-spacing:37.357056pt;}
._0_c03010{margin-left:-1.731840pt;}
._2_c03010{width:1.317888pt;}
._7_c03010{width:12.422784pt;}
._6_c03010{width:13.778688pt;}
._5_c03010{width:14.826240pt;}
._4_c03010{width:17.212800pt;}
._1_c03010{width:44.668800pt;}
._3_c03010{width:45.805056pt;}
.fs0_c03010{font-size:42.240000pt;}
.fs1_c03010{font-size:53.760000pt;}
.y0_c03010{bottom:0.000000pt;}
.y1b_c03010{bottom:130.665211pt;}
.y1d_c03010{bottom:165.866875pt;}
.y1c_c03010{bottom:174.507067pt;}
.y1a_c03010{bottom:245.225371pt;}
.y19_c03010{bottom:317.225563pt;}
.y17_c03010{bottom:361.386427pt;}
.y13_c03010{bottom:377.386939pt;}
.y18_c03010{bottom:407.786011pt;}
.y16_c03010{bottom:437.226235pt;}
.y15_c03010{bottom:453.226747pt;}
.y12_c03010{bottom:482.666971pt;}
.y14_c03010{bottom:497.386555pt;}
.y11_c03010{bottom:513.387067pt;}
.y1e_c03010{bottom:546.027067pt;}
.yd_c03010{bottom:593.386235pt;}
.yf_c03010{bottom:628.586875pt;}
.ye_c03010{bottom:637.227067pt;}
.yc_c03010{bottom:694.506683pt;}
.yb_c03010{bottom:707.946395pt;}
.ya_c03010{bottom:766.505819pt;}
.y9_c03010{bottom:779.945531pt;}
.y7_c03010{bottom:823.786427pt;}
.y3_c03010{bottom:839.786939pt;}
.y8_c03010{bottom:870.505979pt;}
.y6_c03010{bottom:899.946203pt;}
.y5_c03010{bottom:915.946715pt;}
.y2_c03010{bottom:945.386939pt;}
.y4_c03010{bottom:959.786555pt;}
.y1_c03010{bottom:975.787067pt;}
.y10_c03010{bottom:1008.747067pt;}
.h3_c03010{height:28.916250pt;}
.h1_c03010{height:37.063125pt;}
.h2_c03010{height:37.166250pt;}
.h5_c03010{height:48.581988pt;}
.h4_c03010{height:66.504405pt;}
.h0_c03010{height:1122.666667pt;}
.w1_c03010{width:793.333333pt;}
.w0_c03010{width:793.626667pt;}
.x0_c03010{left:0.000000pt;}
.xe_c03010{left:104.000000pt;}
.x8_c03010{left:391.999872pt;}
.x4_c03010{left:396.160512pt;}
.xc_c03010{left:400.960000pt;}
.x7_c03010{left:404.799648pt;}
.x5_c03010{left:410.560128pt;}
.x1_c03010{left:411.840000pt;}
.xb_c03010{left:429.760320pt;}
.x9_c03010{left:437.439552pt;}
.x6_c03010{left:438.400512pt;}
.xd_c03010{left:450.560320pt;}
.x3_c03010{left:455.039904pt;}
.x2_c03010{left:468.159648pt;}
.xa_c03010{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03011 {
    display:none;
  }
  .loading-indicator_c03011.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03011 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03011 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03011" -> "#page-container .classname_c03011")
 */
.pf_c03011 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03011 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03011.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03011 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03011 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03011 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03011 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03011 {overflow:visible;}
  }
}
.c_c03011 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03011 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03011:after { /* webkit #35443 */
  content: '';
}
.t_c03011:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03011 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03011 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03011 { /* info for Javascript */
  display:none;
}
.l_c03011 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03011 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03011 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03011:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03011 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03011.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03011.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03011 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03011;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03011{font-family:ff1_c03011;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03011;src:url('chunks/assets/font_b9a0158e137669724cf257e5.woff2')format("woff");}.ff2_c03011{font-family:ff2_c03011;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03011;src:url('chunks/assets/font_cac5c651a3a6bf586fffc1c9.woff2')format("woff");}.ff3_c03011{font-family:ff3_c03011;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03011{vertical-align:0.000000px;}
.v1_c03011{vertical-align:1.439424px;}
.lsd_c03011{letter-spacing:-0.826848px;}
.ls9_c03011{letter-spacing:-0.608256px;}
.lsa_c03011{letter-spacing:-0.574992px;}
.ls16_c03011{letter-spacing:-0.380160px;}
.lsf_c03011{letter-spacing:-0.361152px;}
.ls11_c03011{letter-spacing:-0.275616px;}
.lse_c03011{letter-spacing:-0.261360px;}
.ls6_c03011{letter-spacing:-0.242352px;}
.ls7_c03011{letter-spacing:-0.237600px;}
.ls15_c03011{letter-spacing:-0.209088px;}
.ls3_c03011{letter-spacing:-0.118800px;}
.ls14_c03011{letter-spacing:-0.012096px;}
.ls0_c03011{letter-spacing:0.006048px;}
.ls5_c03011{letter-spacing:0.128304px;}
.lsc_c03011{letter-spacing:0.508464px;}
.ls13_c03011{letter-spacing:0.514080px;}
.ls10_c03011{letter-spacing:0.536976px;}
.lsb_c03011{letter-spacing:0.579744px;}
.ls12_c03011{letter-spacing:0.594000px;}
.ls8_c03011{letter-spacing:0.598752px;}
.ls2_c03011{letter-spacing:0.613008px;}
.ls4_c03011{letter-spacing:0.717552px;}
.ls1_c03011{letter-spacing:0.722304px;}
.sc__c03011{text-shadow:none;}
.sc0_c03011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03011{-webkit-text-stroke:0px transparent;}
.sc0_c03011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03011{word-spacing:-15.126048px;}
.wsa_c03011{word-spacing:-12.474000px;}
.ws6_c03011{word-spacing:-12.459744px;}
.ws9_c03011{word-spacing:-12.416976px;}
.ws7_c03011{word-spacing:-12.388464px;}
.ws2_c03011{word-spacing:-11.642400px;}
.ws5_c03011{word-spacing:-11.305008px;}
.ws4_c03011{word-spacing:-11.271744px;}
.wsc_c03011{word-spacing:-2.630880px;}
.ws17_c03011{word-spacing:-1.083456px;}
.ws11_c03011{word-spacing:-0.974160px;}
.ws13_c03011{word-spacing:-0.118800px;}
.ws15_c03011{word-spacing:-0.099792px;}
.ws16_c03011{word-spacing:-0.085536px;}
.ws12_c03011{word-spacing:0.000000px;}
.ws18_c03011{word-spacing:0.019008px;}
.ws14_c03011{word-spacing:0.465696px;}
.ws10_c03011{word-spacing:3.597264px;}
.wsf_c03011{word-spacing:14.217984px;}
.wsb_c03011{word-spacing:33.300288px;}
.ws8_c03011{word-spacing:36.143712px;}
.ws1_c03011{word-spacing:37.759392px;}
.ws0_c03011{word-spacing:38.020752px;}
.ws3_c03011{word-spacing:39.218256px;}
.wse_c03011{word-spacing:39.902544px;}
._0_c03011{margin-left:-1.948320px;}
._2_c03011{width:1.482624px;}
._8_c03011{width:17.553888px;}
._7_c03011{width:21.284208px;}
._4_c03011{width:29.638224px;}
._5_c03011{width:31.367952px;}
._6_c03011{width:32.451408px;}
._1_c03011{width:50.252400px;}
._3_c03011{width:51.530688px;}
.fc0_c03011{color:rgb(0,0,0);}
.fs0_c03011{font-size:47.520000px;}
.fs1_c03011{font-size:60.480000px;}
.y0_c03011{bottom:0.000000px;}
.y1b_c03011{bottom:146.998362px;}
.y1d_c03011{bottom:186.600234px;}
.y1c_c03011{bottom:196.320450px;}
.y1a_c03011{bottom:260.758866px;}
.y19_c03011{bottom:275.878542px;}
.y18_c03011{bottom:341.759082px;}
.y17_c03011{bottom:356.878758px;}
.y15_c03011{bottom:406.559730px;}
.y11_c03011{bottom:424.560306px;}
.y16_c03011{bottom:458.759262px;}
.y14_c03011{bottom:491.879514px;}
.y13_c03011{bottom:509.880090px;}
.y10_c03011{bottom:543.000342px;}
.y12_c03011{bottom:559.559874px;}
.yf_c03011{bottom:577.560450px;}
.y1e_c03011{bottom:614.280450px;}
.yb_c03011{bottom:667.558326px;}
.yd_c03011{bottom:707.160234px;}
.yc_c03011{bottom:716.880450px;}
.ya_c03011{bottom:796.438506px;}
.y9_c03011{bottom:877.438722px;}
.y7_c03011{bottom:926.759730px;}
.y3_c03011{bottom:944.760306px;}
.y8_c03011{bottom:979.319226px;}
.y6_c03011{bottom:1012.439478px;}
.y5_c03011{bottom:1030.440054px;}
.y2_c03011{bottom:1063.560306px;}
.y4_c03011{bottom:1079.759874px;}
.y1_c03011{bottom:1097.760450px;}
.ye_c03011{bottom:1134.840450px;}
.h3_c03011{height:32.530781px;}
.h1_c03011{height:41.696016px;}
.h2_c03011{height:41.812031px;}
.h4_c03011{height:54.654737px;}
.h0_c03011{height:1263.000000px;}
.w1_c03011{width:892.500000px;}
.w0_c03011{width:892.830000px;}
.x0_c03011{left:0.000000px;}
.xd_c03011{left:117.000000px;}
.x8_c03011{left:441.001044px;}
.x4_c03011{left:445.680576px;}
.xb_c03011{left:451.080000px;}
.x7_c03011{left:455.400792px;}
.x5_c03011{left:461.880144px;}
.x1_c03011{left:463.320000px;}
.xa_c03011{left:483.481548px;}
.x9_c03011{left:492.120684px;}
.x6_c03011{left:493.200576px;}
.xc_c03011{left:506.880360px;}
.x3_c03011{left:511.919892px;}
.x2_c03011{left:526.679604px;}
.xe_c03011{left:569.880036px;}
@media print{
.v0_c03011{vertical-align:0.000000pt;}
.v1_c03011{vertical-align:1.279488pt;}
.lsd_c03011{letter-spacing:-0.734976pt;}
.ls9_c03011{letter-spacing:-0.540672pt;}
.lsa_c03011{letter-spacing:-0.511104pt;}
.ls16_c03011{letter-spacing:-0.337920pt;}
.lsf_c03011{letter-spacing:-0.321024pt;}
.ls11_c03011{letter-spacing:-0.244992pt;}
.lse_c03011{letter-spacing:-0.232320pt;}
.ls6_c03011{letter-spacing:-0.215424pt;}
.ls7_c03011{letter-spacing:-0.211200pt;}
.ls15_c03011{letter-spacing:-0.185856pt;}
.ls3_c03011{letter-spacing:-0.105600pt;}
.ls14_c03011{letter-spacing:-0.010752pt;}
.ls0_c03011{letter-spacing:0.005376pt;}
.ls5_c03011{letter-spacing:0.114048pt;}
.lsc_c03011{letter-spacing:0.451968pt;}
.ls13_c03011{letter-spacing:0.456960pt;}
.ls10_c03011{letter-spacing:0.477312pt;}
.lsb_c03011{letter-spacing:0.515328pt;}
.ls12_c03011{letter-spacing:0.528000pt;}
.ls8_c03011{letter-spacing:0.532224pt;}
.ls2_c03011{letter-spacing:0.544896pt;}
.ls4_c03011{letter-spacing:0.637824pt;}
.ls1_c03011{letter-spacing:0.642048pt;}
.wsd_c03011{word-spacing:-13.445376pt;}
.wsa_c03011{word-spacing:-11.088000pt;}
.ws6_c03011{word-spacing:-11.075328pt;}
.ws9_c03011{word-spacing:-11.037312pt;}
.ws7_c03011{word-spacing:-11.011968pt;}
.ws2_c03011{word-spacing:-10.348800pt;}
.ws5_c03011{word-spacing:-10.048896pt;}
.ws4_c03011{word-spacing:-10.019328pt;}
.wsc_c03011{word-spacing:-2.338560pt;}
.ws17_c03011{word-spacing:-0.963072pt;}
.ws11_c03011{word-spacing:-0.865920pt;}
.ws13_c03011{word-spacing:-0.105600pt;}
.ws15_c03011{word-spacing:-0.088704pt;}
.ws16_c03011{word-spacing:-0.076032pt;}
.ws12_c03011{word-spacing:0.000000pt;}
.ws18_c03011{word-spacing:0.016896pt;}
.ws14_c03011{word-spacing:0.413952pt;}
.ws10_c03011{word-spacing:3.197568pt;}
.wsf_c03011{word-spacing:12.638208pt;}
.wsb_c03011{word-spacing:29.600256pt;}
.ws8_c03011{word-spacing:32.127744pt;}
.ws1_c03011{word-spacing:33.563904pt;}
.ws0_c03011{word-spacing:33.796224pt;}
.ws3_c03011{word-spacing:34.860672pt;}
.wse_c03011{word-spacing:35.468928pt;}
._0_c03011{margin-left:-1.731840pt;}
._2_c03011{width:1.317888pt;}
._8_c03011{width:15.603456pt;}
._7_c03011{width:18.919296pt;}
._4_c03011{width:26.345088pt;}
._5_c03011{width:27.882624pt;}
._6_c03011{width:28.845696pt;}
._1_c03011{width:44.668800pt;}
._3_c03011{width:45.805056pt;}
.fs0_c03011{font-size:42.240000pt;}
.fs1_c03011{font-size:53.760000pt;}
.y0_c03011{bottom:0.000000pt;}
.y1b_c03011{bottom:130.665211pt;}
.y1d_c03011{bottom:165.866875pt;}
.y1c_c03011{bottom:174.507067pt;}
.y1a_c03011{bottom:231.785659pt;}
.y19_c03011{bottom:245.225371pt;}
.y18_c03011{bottom:303.785851pt;}
.y17_c03011{bottom:317.225563pt;}
.y15_c03011{bottom:361.386427pt;}
.y11_c03011{bottom:377.386939pt;}
.y16_c03011{bottom:407.786011pt;}
.y14_c03011{bottom:437.226235pt;}
.y13_c03011{bottom:453.226747pt;}
.y10_c03011{bottom:482.666971pt;}
.y12_c03011{bottom:497.386555pt;}
.yf_c03011{bottom:513.387067pt;}
.y1e_c03011{bottom:546.027067pt;}
.yb_c03011{bottom:593.385179pt;}
.yd_c03011{bottom:628.586875pt;}
.yc_c03011{bottom:637.227067pt;}
.ya_c03011{bottom:707.945339pt;}
.y9_c03011{bottom:779.945531pt;}
.y7_c03011{bottom:823.786427pt;}
.y3_c03011{bottom:839.786939pt;}
.y8_c03011{bottom:870.505979pt;}
.y6_c03011{bottom:899.946203pt;}
.y5_c03011{bottom:915.946715pt;}
.y2_c03011{bottom:945.386939pt;}
.y4_c03011{bottom:959.786555pt;}
.y1_c03011{bottom:975.787067pt;}
.ye_c03011{bottom:1008.747067pt;}
.h3_c03011{height:28.916250pt;}
.h1_c03011{height:37.063125pt;}
.h2_c03011{height:37.166250pt;}
.h4_c03011{height:48.581988pt;}
.h0_c03011{height:1122.666667pt;}
.w1_c03011{width:793.333333pt;}
.w0_c03011{width:793.626667pt;}
.x0_c03011{left:0.000000pt;}
.xd_c03011{left:104.000000pt;}
.x8_c03011{left:392.000928pt;}
.x4_c03011{left:396.160512pt;}
.xb_c03011{left:400.960000pt;}
.x7_c03011{left:404.800704pt;}
.x5_c03011{left:410.560128pt;}
.x1_c03011{left:411.840000pt;}
.xa_c03011{left:429.761376pt;}
.x9_c03011{left:437.440608pt;}
.x6_c03011{left:438.400512pt;}
.xc_c03011{left:450.560320pt;}
.x3_c03011{left:455.039904pt;}
.x2_c03011{left:468.159648pt;}
.xe_c03011{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03012 {
    display:none;
  }
  .loading-indicator_c03012.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03012 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03012 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03012" -> "#page-container .classname_c03012")
 */
.pf_c03012 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03012 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03012.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03012 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03012 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03012 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03012 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03012 {overflow:visible;}
  }
}
.c_c03012 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03012 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03012:after { /* webkit #35443 */
  content: '';
}
.t_c03012:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03012 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03012 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03012 { /* info for Javascript */
  display:none;
}
.l_c03012 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03012 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03012 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03012:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03012 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03012.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03012.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03012 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03012;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03012{font-family:ff1_c03012;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03012;src:url('chunks/assets/font_3fa03f6c0ae11f339b44f255.woff2')format("woff");}.ff2_c03012{font-family:ff2_c03012;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03012;src:url('chunks/assets/font_cac5c651a3a6bf586fffc1c9.woff2')format("woff");}.ff3_c03012{font-family:ff3_c03012;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03012{vertical-align:0.000000px;}
.v1_c03012{vertical-align:1.439424px;}
.lsc_c03012{letter-spacing:-0.774576px;}
.ls12_c03012{letter-spacing:-0.736560px;}
.lsf_c03012{letter-spacing:-0.722304px;}
.lsa_c03012{letter-spacing:-0.608256px;}
.lsb_c03012{letter-spacing:-0.574992px;}
.ls13_c03012{letter-spacing:-0.270864px;}
.ls10_c03012{letter-spacing:-0.261360px;}
.ls7_c03012{letter-spacing:-0.242352px;}
.ls8_c03012{letter-spacing:-0.237600px;}
.ls4_c03012{letter-spacing:-0.118800px;}
.ls16_c03012{letter-spacing:-0.012096px;}
.ls1_c03012{letter-spacing:0.006048px;}
.ls6_c03012{letter-spacing:0.128304px;}
.lse_c03012{letter-spacing:0.508464px;}
.ls15_c03012{letter-spacing:0.514080px;}
.ls11_c03012{letter-spacing:0.536976px;}
.lsd_c03012{letter-spacing:0.579744px;}
.ls14_c03012{letter-spacing:0.594000px;}
.ls9_c03012{letter-spacing:0.598752px;}
.ls2_c03012{letter-spacing:0.613008px;}
.ls0_c03012{letter-spacing:0.651024px;}
.ls5_c03012{letter-spacing:0.717552px;}
.ls3_c03012{letter-spacing:0.722304px;}
.sc__c03012{text-shadow:none;}
.sc0_c03012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03012{-webkit-text-stroke:0px transparent;}
.sc0_c03012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03012{word-spacing:-15.126048px;}
.wsb_c03012{word-spacing:-12.474000px;}
.ws7_c03012{word-spacing:-12.459744px;}
.ws2_c03012{word-spacing:-11.642400px;}
.ws4_c03012{word-spacing:-11.271744px;}
.ws6_c03012{word-spacing:-11.105424px;}
.wsd_c03012{word-spacing:-2.630880px;}
.ws11_c03012{word-spacing:-1.012176px;}
.wsf_c03012{word-spacing:-0.974160px;}
.ws12_c03012{word-spacing:-0.118800px;}
.ws14_c03012{word-spacing:-0.099792px;}
.ws15_c03012{word-spacing:-0.090288px;}
.ws16_c03012{word-spacing:-0.085536px;}
.ws10_c03012{word-spacing:0.000000px;}
.ws13_c03012{word-spacing:0.361152px;}
.wsa_c03012{word-spacing:6.629040px;}
.wsc_c03012{word-spacing:33.300288px;}
.ws9_c03012{word-spacing:34.836912px;}
.ws1_c03012{word-spacing:37.759392px;}
.ws0_c03012{word-spacing:38.020752px;}
.ws3_c03012{word-spacing:39.218256px;}
.ws5_c03012{word-spacing:39.902544px;}
.ws8_c03012{word-spacing:42.026688px;}
._0_c03012{margin-left:-1.948320px;}
._2_c03012{width:1.482624px;}
._5_c03012{width:19.982160px;}
._6_c03012{width:23.451120px;}
._4_c03012{width:24.691392px;}
._1_c03012{width:50.252400px;}
._3_c03012{width:51.530688px;}
.fc0_c03012{color:rgb(0,0,0);}
.fs0_c03012{font-size:47.520000px;}
.fs1_c03012{font-size:60.480000px;}
.y0_c03012{bottom:0.000000px;}
.y1b_c03012{bottom:131.878686px;}
.y1a_c03012{bottom:146.998362px;}
.y1d_c03012{bottom:186.600234px;}
.y1c_c03012{bottom:196.320450px;}
.y19_c03012{bottom:275.878542px;}
.y18_c03012{bottom:356.878758px;}
.y16_c03012{bottom:406.559730px;}
.y12_c03012{bottom:424.560306px;}
.y17_c03012{bottom:458.759262px;}
.y15_c03012{bottom:491.879514px;}
.y14_c03012{bottom:509.880090px;}
.y11_c03012{bottom:543.000342px;}
.y13_c03012{bottom:559.559874px;}
.y10_c03012{bottom:577.560450px;}
.y1e_c03012{bottom:614.280450px;}
.yc_c03012{bottom:652.438650px;}
.yb_c03012{bottom:667.558326px;}
.ye_c03012{bottom:707.160234px;}
.yd_c03012{bottom:716.880450px;}
.ya_c03012{bottom:796.438506px;}
.y9_c03012{bottom:877.438722px;}
.y7_c03012{bottom:926.759730px;}
.y3_c03012{bottom:944.760306px;}
.y8_c03012{bottom:979.319226px;}
.y6_c03012{bottom:1012.439478px;}
.y5_c03012{bottom:1030.440054px;}
.y2_c03012{bottom:1063.560306px;}
.y4_c03012{bottom:1079.759874px;}
.y1_c03012{bottom:1097.760450px;}
.yf_c03012{bottom:1134.840450px;}
.h3_c03012{height:32.530781px;}
.h1_c03012{height:41.696016px;}
.h2_c03012{height:41.812031px;}
.h4_c03012{height:54.654737px;}
.h0_c03012{height:1263.000000px;}
.w1_c03012{width:892.500000px;}
.w0_c03012{width:892.830000px;}
.x0_c03012{left:0.000000px;}
.xe_c03012{left:117.000000px;}
.x8_c03012{left:440.999856px;}
.x4_c03012{left:445.680576px;}
.xc_c03012{left:451.080000px;}
.x7_c03012{left:455.399604px;}
.x5_c03012{left:461.880144px;}
.x1_c03012{left:463.320000px;}
.xa_c03012{left:483.480360px;}
.x9_c03012{left:492.119496px;}
.x6_c03012{left:493.200576px;}
.xd_c03012{left:506.880360px;}
.x3_c03012{left:511.919892px;}
.x2_c03012{left:526.679604px;}
.xb_c03012{left:569.880036px;}
@media print{
.v0_c03012{vertical-align:0.000000pt;}
.v1_c03012{vertical-align:1.279488pt;}
.lsc_c03012{letter-spacing:-0.688512pt;}
.ls12_c03012{letter-spacing:-0.654720pt;}
.lsf_c03012{letter-spacing:-0.642048pt;}
.lsa_c03012{letter-spacing:-0.540672pt;}
.lsb_c03012{letter-spacing:-0.511104pt;}
.ls13_c03012{letter-spacing:-0.240768pt;}
.ls10_c03012{letter-spacing:-0.232320pt;}
.ls7_c03012{letter-spacing:-0.215424pt;}
.ls8_c03012{letter-spacing:-0.211200pt;}
.ls4_c03012{letter-spacing:-0.105600pt;}
.ls16_c03012{letter-spacing:-0.010752pt;}
.ls1_c03012{letter-spacing:0.005376pt;}
.ls6_c03012{letter-spacing:0.114048pt;}
.lse_c03012{letter-spacing:0.451968pt;}
.ls15_c03012{letter-spacing:0.456960pt;}
.ls11_c03012{letter-spacing:0.477312pt;}
.lsd_c03012{letter-spacing:0.515328pt;}
.ls14_c03012{letter-spacing:0.528000pt;}
.ls9_c03012{letter-spacing:0.532224pt;}
.ls2_c03012{letter-spacing:0.544896pt;}
.ls0_c03012{letter-spacing:0.578688pt;}
.ls5_c03012{letter-spacing:0.637824pt;}
.ls3_c03012{letter-spacing:0.642048pt;}
.wse_c03012{word-spacing:-13.445376pt;}
.wsb_c03012{word-spacing:-11.088000pt;}
.ws7_c03012{word-spacing:-11.075328pt;}
.ws2_c03012{word-spacing:-10.348800pt;}
.ws4_c03012{word-spacing:-10.019328pt;}
.ws6_c03012{word-spacing:-9.871488pt;}
.wsd_c03012{word-spacing:-2.338560pt;}
.ws11_c03012{word-spacing:-0.899712pt;}
.wsf_c03012{word-spacing:-0.865920pt;}
.ws12_c03012{word-spacing:-0.105600pt;}
.ws14_c03012{word-spacing:-0.088704pt;}
.ws15_c03012{word-spacing:-0.080256pt;}
.ws16_c03012{word-spacing:-0.076032pt;}
.ws10_c03012{word-spacing:0.000000pt;}
.ws13_c03012{word-spacing:0.321024pt;}
.wsa_c03012{word-spacing:5.892480pt;}
.wsc_c03012{word-spacing:29.600256pt;}
.ws9_c03012{word-spacing:30.966144pt;}
.ws1_c03012{word-spacing:33.563904pt;}
.ws0_c03012{word-spacing:33.796224pt;}
.ws3_c03012{word-spacing:34.860672pt;}
.ws5_c03012{word-spacing:35.468928pt;}
.ws8_c03012{word-spacing:37.357056pt;}
._0_c03012{margin-left:-1.731840pt;}
._2_c03012{width:1.317888pt;}
._5_c03012{width:17.761920pt;}
._6_c03012{width:20.845440pt;}
._4_c03012{width:21.947904pt;}
._1_c03012{width:44.668800pt;}
._3_c03012{width:45.805056pt;}
.fs0_c03012{font-size:42.240000pt;}
.fs1_c03012{font-size:53.760000pt;}
.y0_c03012{bottom:0.000000pt;}
.y1b_c03012{bottom:117.225499pt;}
.y1a_c03012{bottom:130.665211pt;}
.y1d_c03012{bottom:165.866875pt;}
.y1c_c03012{bottom:174.507067pt;}
.y19_c03012{bottom:245.225371pt;}
.y18_c03012{bottom:317.225563pt;}
.y16_c03012{bottom:361.386427pt;}
.y12_c03012{bottom:377.386939pt;}
.y17_c03012{bottom:407.786011pt;}
.y15_c03012{bottom:437.226235pt;}
.y14_c03012{bottom:453.226747pt;}
.y11_c03012{bottom:482.666971pt;}
.y13_c03012{bottom:497.386555pt;}
.y10_c03012{bottom:513.387067pt;}
.y1e_c03012{bottom:546.027067pt;}
.yc_c03012{bottom:579.945467pt;}
.yb_c03012{bottom:593.385179pt;}
.ye_c03012{bottom:628.586875pt;}
.yd_c03012{bottom:637.227067pt;}
.ya_c03012{bottom:707.945339pt;}
.y9_c03012{bottom:779.945531pt;}
.y7_c03012{bottom:823.786427pt;}
.y3_c03012{bottom:839.786939pt;}
.y8_c03012{bottom:870.505979pt;}
.y6_c03012{bottom:899.946203pt;}
.y5_c03012{bottom:915.946715pt;}
.y2_c03012{bottom:945.386939pt;}
.y4_c03012{bottom:959.786555pt;}
.y1_c03012{bottom:975.787067pt;}
.yf_c03012{bottom:1008.747067pt;}
.h3_c03012{height:28.916250pt;}
.h1_c03012{height:37.063125pt;}
.h2_c03012{height:37.166250pt;}
.h4_c03012{height:48.581988pt;}
.h0_c03012{height:1122.666667pt;}
.w1_c03012{width:793.333333pt;}
.w0_c03012{width:793.626667pt;}
.x0_c03012{left:0.000000pt;}
.xe_c03012{left:104.000000pt;}
.x8_c03012{left:391.999872pt;}
.x4_c03012{left:396.160512pt;}
.xc_c03012{left:400.960000pt;}
.x7_c03012{left:404.799648pt;}
.x5_c03012{left:410.560128pt;}
.x1_c03012{left:411.840000pt;}
.xa_c03012{left:429.760320pt;}
.x9_c03012{left:437.439552pt;}
.x6_c03012{left:438.400512pt;}
.xd_c03012{left:450.560320pt;}
.x3_c03012{left:455.039904pt;}
.x2_c03012{left:468.159648pt;}
.xb_c03012{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03013 {
    display:none;
  }
  .loading-indicator_c03013.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03013 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03013 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03013" -> "#page-container .classname_c03013")
 */
.pf_c03013 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03013 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03013 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03013 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03013 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03013 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03013 {overflow:visible;}
  }
}
.c_c03013 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03013 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03013:after { /* webkit #35443 */
  content: '';
}
.t_c03013:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03013 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03013 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03013 { /* info for Javascript */
  display:none;
}
.l_c03013 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03013 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03013 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03013:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03013 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03013.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03013 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03013;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03013{font-family:ff1_c03013;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03013;src:url('chunks/assets/font_33e1e72a5b10ec2c3d39b3e2.woff2')format("woff");}.ff2_c03013{font-family:ff2_c03013;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03013;src:url('chunks/assets/font_cac5c651a3a6bf586fffc1c9.woff2')format("woff");}.ff3_c03013{font-family:ff3_c03013;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03013{vertical-align:0.000000px;}
.v1_c03013{vertical-align:1.439424px;}
.ls9_c03013{letter-spacing:-0.608256px;}
.lsa_c03013{letter-spacing:-0.574992px;}
.lse_c03013{letter-spacing:-0.375408px;}
.ls10_c03013{letter-spacing:-0.275616px;}
.lsd_c03013{letter-spacing:-0.261360px;}
.ls6_c03013{letter-spacing:-0.242352px;}
.ls7_c03013{letter-spacing:-0.237600px;}
.ls4_c03013{letter-spacing:-0.118800px;}
.ls13_c03013{letter-spacing:-0.012096px;}
.ls1_c03013{letter-spacing:0.006048px;}
.ls5_c03013{letter-spacing:0.128304px;}
.lsc_c03013{letter-spacing:0.508464px;}
.ls12_c03013{letter-spacing:0.514080px;}
.lsf_c03013{letter-spacing:0.536976px;}
.lsb_c03013{letter-spacing:0.579744px;}
.ls11_c03013{letter-spacing:0.594000px;}
.ls8_c03013{letter-spacing:0.598752px;}
.ls2_c03013{letter-spacing:0.613008px;}
.ls0_c03013{letter-spacing:0.717552px;}
.ls3_c03013{letter-spacing:0.722304px;}
.sc__c03013{text-shadow:none;}
.sc0_c03013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03013{-webkit-text-stroke:0px transparent;}
.sc0_c03013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03013{word-spacing:-15.126048px;}
.wsa_c03013{word-spacing:-12.474000px;}
.ws6_c03013{word-spacing:-12.459744px;}
.ws9_c03013{word-spacing:-12.416976px;}
.ws7_c03013{word-spacing:-12.388464px;}
.ws2_c03013{word-spacing:-11.642400px;}
.ws4_c03013{word-spacing:-11.271744px;}
.wsc_c03013{word-spacing:-2.630880px;}
.ws11_c03013{word-spacing:-1.078704px;}
.wse_c03013{word-spacing:-0.974160px;}
.ws10_c03013{word-spacing:-0.118800px;}
.ws12_c03013{word-spacing:-0.099792px;}
.ws14_c03013{word-spacing:-0.085536px;}
.wsf_c03013{word-spacing:0.000000px;}
.ws13_c03013{word-spacing:0.014256px;}
.wsb_c03013{word-spacing:33.300288px;}
.ws8_c03013{word-spacing:36.143712px;}
.ws1_c03013{word-spacing:37.759392px;}
.ws0_c03013{word-spacing:38.020752px;}
.ws3_c03013{word-spacing:39.218256px;}
.ws5_c03013{word-spacing:39.902544px;}
._0_c03013{margin-left:-1.948320px;}
._2_c03013{width:1.482624px;}
._1_c03013{width:50.252400px;}
._3_c03013{width:51.530688px;}
.fc0_c03013{color:rgb(0,0,0);}
.fs0_c03013{font-size:47.520000px;}
.fs1_c03013{font-size:60.480000px;}
.y0_c03013{bottom:0.000000px;}
.y19_c03013{bottom:146.998362px;}
.y1b_c03013{bottom:186.600234px;}
.y1a_c03013{bottom:196.320450px;}
.y18_c03013{bottom:275.878542px;}
.y17_c03013{bottom:356.878758px;}
.y15_c03013{bottom:406.559730px;}
.y11_c03013{bottom:424.560306px;}
.y16_c03013{bottom:458.759262px;}
.y14_c03013{bottom:491.879514px;}
.y13_c03013{bottom:509.880090px;}
.y10_c03013{bottom:543.000342px;}
.y12_c03013{bottom:559.559874px;}
.yf_c03013{bottom:577.560450px;}
.y1c_c03013{bottom:614.280450px;}
.yb_c03013{bottom:667.558326px;}
.yd_c03013{bottom:707.160234px;}
.yc_c03013{bottom:716.880450px;}
.ya_c03013{bottom:796.438506px;}
.y9_c03013{bottom:877.438722px;}
.y7_c03013{bottom:926.759730px;}
.y3_c03013{bottom:944.760306px;}
.y8_c03013{bottom:979.319226px;}
.y6_c03013{bottom:1012.439478px;}
.y5_c03013{bottom:1030.440054px;}
.y2_c03013{bottom:1063.560306px;}
.y4_c03013{bottom:1079.759874px;}
.y1_c03013{bottom:1097.760450px;}
.ye_c03013{bottom:1134.840450px;}
.h3_c03013{height:32.530781px;}
.h1_c03013{height:41.696016px;}
.h2_c03013{height:41.812031px;}
.h4_c03013{height:54.654737px;}
.h0_c03013{height:1263.000000px;}
.w1_c03013{width:892.500000px;}
.w0_c03013{width:892.830000px;}
.x0_c03013{left:0.000000px;}
.xd_c03013{left:117.000000px;}
.x8_c03013{left:440.999856px;}
.x4_c03013{left:445.680576px;}
.xb_c03013{left:451.080000px;}
.x7_c03013{left:455.399604px;}
.x5_c03013{left:461.880144px;}
.x1_c03013{left:463.320000px;}
.xa_c03013{left:483.480360px;}
.x9_c03013{left:492.119496px;}
.x6_c03013{left:493.200576px;}
.xc_c03013{left:506.880360px;}
.x3_c03013{left:511.919892px;}
.x2_c03013{left:526.679604px;}
@media print{
.v0_c03013{vertical-align:0.000000pt;}
.v1_c03013{vertical-align:1.279488pt;}
.ls9_c03013{letter-spacing:-0.540672pt;}
.lsa_c03013{letter-spacing:-0.511104pt;}
.lse_c03013{letter-spacing:-0.333696pt;}
.ls10_c03013{letter-spacing:-0.244992pt;}
.lsd_c03013{letter-spacing:-0.232320pt;}
.ls6_c03013{letter-spacing:-0.215424pt;}
.ls7_c03013{letter-spacing:-0.211200pt;}
.ls4_c03013{letter-spacing:-0.105600pt;}
.ls13_c03013{letter-spacing:-0.010752pt;}
.ls1_c03013{letter-spacing:0.005376pt;}
.ls5_c03013{letter-spacing:0.114048pt;}
.lsc_c03013{letter-spacing:0.451968pt;}
.ls12_c03013{letter-spacing:0.456960pt;}
.lsf_c03013{letter-spacing:0.477312pt;}
.lsb_c03013{letter-spacing:0.515328pt;}
.ls11_c03013{letter-spacing:0.528000pt;}
.ls8_c03013{letter-spacing:0.532224pt;}
.ls2_c03013{letter-spacing:0.544896pt;}
.ls0_c03013{letter-spacing:0.637824pt;}
.ls3_c03013{letter-spacing:0.642048pt;}
.wsd_c03013{word-spacing:-13.445376pt;}
.wsa_c03013{word-spacing:-11.088000pt;}
.ws6_c03013{word-spacing:-11.075328pt;}
.ws9_c03013{word-spacing:-11.037312pt;}
.ws7_c03013{word-spacing:-11.011968pt;}
.ws2_c03013{word-spacing:-10.348800pt;}
.ws4_c03013{word-spacing:-10.019328pt;}
.wsc_c03013{word-spacing:-2.338560pt;}
.ws11_c03013{word-spacing:-0.958848pt;}
.wse_c03013{word-spacing:-0.865920pt;}
.ws10_c03013{word-spacing:-0.105600pt;}
.ws12_c03013{word-spacing:-0.088704pt;}
.ws14_c03013{word-spacing:-0.076032pt;}
.wsf_c03013{word-spacing:0.000000pt;}
.ws13_c03013{word-spacing:0.012672pt;}
.wsb_c03013{word-spacing:29.600256pt;}
.ws8_c03013{word-spacing:32.127744pt;}
.ws1_c03013{word-spacing:33.563904pt;}
.ws0_c03013{word-spacing:33.796224pt;}
.ws3_c03013{word-spacing:34.860672pt;}
.ws5_c03013{word-spacing:35.468928pt;}
._0_c03013{margin-left:-1.731840pt;}
._2_c03013{width:1.317888pt;}
._1_c03013{width:44.668800pt;}
._3_c03013{width:45.805056pt;}
.fs0_c03013{font-size:42.240000pt;}
.fs1_c03013{font-size:53.760000pt;}
.y0_c03013{bottom:0.000000pt;}
.y19_c03013{bottom:130.665211pt;}
.y1b_c03013{bottom:165.866875pt;}
.y1a_c03013{bottom:174.507067pt;}
.y18_c03013{bottom:245.225371pt;}
.y17_c03013{bottom:317.225563pt;}
.y15_c03013{bottom:361.386427pt;}
.y11_c03013{bottom:377.386939pt;}
.y16_c03013{bottom:407.786011pt;}
.y14_c03013{bottom:437.226235pt;}
.y13_c03013{bottom:453.226747pt;}
.y10_c03013{bottom:482.666971pt;}
.y12_c03013{bottom:497.386555pt;}
.yf_c03013{bottom:513.387067pt;}
.y1c_c03013{bottom:546.027067pt;}
.yb_c03013{bottom:593.385179pt;}
.yd_c03013{bottom:628.586875pt;}
.yc_c03013{bottom:637.227067pt;}
.ya_c03013{bottom:707.945339pt;}
.y9_c03013{bottom:779.945531pt;}
.y7_c03013{bottom:823.786427pt;}
.y3_c03013{bottom:839.786939pt;}
.y8_c03013{bottom:870.505979pt;}
.y6_c03013{bottom:899.946203pt;}
.y5_c03013{bottom:915.946715pt;}
.y2_c03013{bottom:945.386939pt;}
.y4_c03013{bottom:959.786555pt;}
.y1_c03013{bottom:975.787067pt;}
.ye_c03013{bottom:1008.747067pt;}
.h3_c03013{height:28.916250pt;}
.h1_c03013{height:37.063125pt;}
.h2_c03013{height:37.166250pt;}
.h4_c03013{height:48.581988pt;}
.h0_c03013{height:1122.666667pt;}
.w1_c03013{width:793.333333pt;}
.w0_c03013{width:793.626667pt;}
.x0_c03013{left:0.000000pt;}
.xd_c03013{left:104.000000pt;}
.x8_c03013{left:391.999872pt;}
.x4_c03013{left:396.160512pt;}
.xb_c03013{left:400.960000pt;}
.x7_c03013{left:404.799648pt;}
.x5_c03013{left:410.560128pt;}
.x1_c03013{left:411.840000pt;}
.xa_c03013{left:429.760320pt;}
.x9_c03013{left:437.439552pt;}
.x6_c03013{left:438.400512pt;}
.xc_c03013{left:450.560320pt;}
.x3_c03013{left:455.039904pt;}
.x2_c03013{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03014 {
    display:none;
  }
  .loading-indicator_c03014.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03014 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03014 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03014" -> "#page-container .classname_c03014")
 */
.pf_c03014 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03014 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03014.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03014 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03014 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03014 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03014 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03014 {overflow:visible;}
  }
}
.c_c03014 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03014 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03014:after { /* webkit #35443 */
  content: '';
}
.t_c03014:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03014 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03014 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03014 { /* info for Javascript */
  display:none;
}
.l_c03014 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03014 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03014 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03014:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03014 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03014.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03014.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03014 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03014{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03014;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03014{font-family:ff1_c03014;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03014;src:url('chunks/assets/font_6d6a2bd2a6b3438f040ac71a.woff2')format("woff");}.ff2_c03014{font-family:ff2_c03014;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03014;src:url('chunks/assets/font_cac5c651a3a6bf586fffc1c9.woff2')format("woff");}.ff3_c03014{font-family:ff3_c03014;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03014{vertical-align:0.000000px;}
.v1_c03014{vertical-align:1.439424px;}
.ls9_c03014{letter-spacing:-0.608256px;}
.lsa_c03014{letter-spacing:-0.574992px;}
.lse_c03014{letter-spacing:-0.375408px;}
.ls10_c03014{letter-spacing:-0.275616px;}
.lsd_c03014{letter-spacing:-0.261360px;}
.ls6_c03014{letter-spacing:-0.242352px;}
.ls7_c03014{letter-spacing:-0.237600px;}
.ls4_c03014{letter-spacing:-0.118800px;}
.ls13_c03014{letter-spacing:-0.012096px;}
.ls1_c03014{letter-spacing:0.006048px;}
.ls5_c03014{letter-spacing:0.128304px;}
.lsc_c03014{letter-spacing:0.508464px;}
.ls12_c03014{letter-spacing:0.514080px;}
.lsf_c03014{letter-spacing:0.536976px;}
.lsb_c03014{letter-spacing:0.579744px;}
.ls11_c03014{letter-spacing:0.594000px;}
.ls8_c03014{letter-spacing:0.598752px;}
.ls2_c03014{letter-spacing:0.613008px;}
.ls14_c03014{letter-spacing:0.651024px;}
.ls0_c03014{letter-spacing:0.717552px;}
.ls3_c03014{letter-spacing:0.722304px;}
.sc__c03014{text-shadow:none;}
.sc0_c03014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03014{-webkit-text-stroke:0px transparent;}
.sc0_c03014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03014{word-spacing:-15.126048px;}
.wsa_c03014{word-spacing:-12.474000px;}
.ws6_c03014{word-spacing:-12.459744px;}
.ws9_c03014{word-spacing:-12.416976px;}
.ws7_c03014{word-spacing:-12.388464px;}
.ws2_c03014{word-spacing:-11.642400px;}
.ws4_c03014{word-spacing:-11.271744px;}
.wsc_c03014{word-spacing:-2.630880px;}
.ws11_c03014{word-spacing:-1.078704px;}
.ws15_c03014{word-spacing:-1.012176px;}
.wse_c03014{word-spacing:-0.974160px;}
.ws10_c03014{word-spacing:-0.118800px;}
.ws12_c03014{word-spacing:-0.099792px;}
.ws14_c03014{word-spacing:-0.085536px;}
.wsf_c03014{word-spacing:0.000000px;}
.ws13_c03014{word-spacing:0.014256px;}
.wsb_c03014{word-spacing:33.300288px;}
.ws8_c03014{word-spacing:36.143712px;}
.ws1_c03014{word-spacing:37.759392px;}
.ws0_c03014{word-spacing:38.020752px;}
.ws3_c03014{word-spacing:39.218256px;}
.ws5_c03014{word-spacing:39.902544px;}
._0_c03014{margin-left:-1.948320px;}
._2_c03014{width:1.482624px;}
._1_c03014{width:50.252400px;}
._3_c03014{width:51.530688px;}
.fc0_c03014{color:rgb(0,0,0);}
.fs0_c03014{font-size:47.520000px;}
.fs1_c03014{font-size:60.480000px;}
.y0_c03014{bottom:0.000000px;}
.y19_c03014{bottom:146.998362px;}
.y1b_c03014{bottom:186.600234px;}
.y1a_c03014{bottom:196.320450px;}
.y18_c03014{bottom:275.878542px;}
.y17_c03014{bottom:356.878758px;}
.y15_c03014{bottom:406.559730px;}
.y11_c03014{bottom:424.560306px;}
.y16_c03014{bottom:458.759262px;}
.y14_c03014{bottom:491.879514px;}
.y13_c03014{bottom:509.880090px;}
.y10_c03014{bottom:543.000342px;}
.y12_c03014{bottom:559.559874px;}
.yf_c03014{bottom:577.560450px;}
.y1c_c03014{bottom:614.280450px;}
.yb_c03014{bottom:667.558326px;}
.yd_c03014{bottom:707.160234px;}
.yc_c03014{bottom:716.880450px;}
.ya_c03014{bottom:796.438506px;}
.y9_c03014{bottom:877.438722px;}
.y7_c03014{bottom:926.759730px;}
.y3_c03014{bottom:944.760306px;}
.y8_c03014{bottom:979.319226px;}
.y6_c03014{bottom:1012.439478px;}
.y5_c03014{bottom:1030.440054px;}
.y2_c03014{bottom:1063.560306px;}
.y4_c03014{bottom:1079.759874px;}
.y1_c03014{bottom:1097.760450px;}
.ye_c03014{bottom:1134.840450px;}
.h3_c03014{height:32.530781px;}
.h1_c03014{height:41.696016px;}
.h2_c03014{height:41.812031px;}
.h4_c03014{height:54.654737px;}
.h0_c03014{height:1263.000000px;}
.w1_c03014{width:892.500000px;}
.w0_c03014{width:892.830000px;}
.x0_c03014{left:0.000000px;}
.xd_c03014{left:117.000000px;}
.x8_c03014{left:440.999856px;}
.x4_c03014{left:445.680576px;}
.xb_c03014{left:451.080000px;}
.x7_c03014{left:455.399604px;}
.x5_c03014{left:461.880144px;}
.x1_c03014{left:463.320000px;}
.xa_c03014{left:483.480360px;}
.x9_c03014{left:492.119496px;}
.x6_c03014{left:493.200576px;}
.xc_c03014{left:506.880360px;}
.x3_c03014{left:511.919892px;}
.x2_c03014{left:526.679604px;}
@media print{
.v0_c03014{vertical-align:0.000000pt;}
.v1_c03014{vertical-align:1.279488pt;}
.ls9_c03014{letter-spacing:-0.540672pt;}
.lsa_c03014{letter-spacing:-0.511104pt;}
.lse_c03014{letter-spacing:-0.333696pt;}
.ls10_c03014{letter-spacing:-0.244992pt;}
.lsd_c03014{letter-spacing:-0.232320pt;}
.ls6_c03014{letter-spacing:-0.215424pt;}
.ls7_c03014{letter-spacing:-0.211200pt;}
.ls4_c03014{letter-spacing:-0.105600pt;}
.ls13_c03014{letter-spacing:-0.010752pt;}
.ls1_c03014{letter-spacing:0.005376pt;}
.ls5_c03014{letter-spacing:0.114048pt;}
.lsc_c03014{letter-spacing:0.451968pt;}
.ls12_c03014{letter-spacing:0.456960pt;}
.lsf_c03014{letter-spacing:0.477312pt;}
.lsb_c03014{letter-spacing:0.515328pt;}
.ls11_c03014{letter-spacing:0.528000pt;}
.ls8_c03014{letter-spacing:0.532224pt;}
.ls2_c03014{letter-spacing:0.544896pt;}
.ls14_c03014{letter-spacing:0.578688pt;}
.ls0_c03014{letter-spacing:0.637824pt;}
.ls3_c03014{letter-spacing:0.642048pt;}
.wsd_c03014{word-spacing:-13.445376pt;}
.wsa_c03014{word-spacing:-11.088000pt;}
.ws6_c03014{word-spacing:-11.075328pt;}
.ws9_c03014{word-spacing:-11.037312pt;}
.ws7_c03014{word-spacing:-11.011968pt;}
.ws2_c03014{word-spacing:-10.348800pt;}
.ws4_c03014{word-spacing:-10.019328pt;}
.wsc_c03014{word-spacing:-2.338560pt;}
.ws11_c03014{word-spacing:-0.958848pt;}
.ws15_c03014{word-spacing:-0.899712pt;}
.wse_c03014{word-spacing:-0.865920pt;}
.ws10_c03014{word-spacing:-0.105600pt;}
.ws12_c03014{word-spacing:-0.088704pt;}
.ws14_c03014{word-spacing:-0.076032pt;}
.wsf_c03014{word-spacing:0.000000pt;}
.ws13_c03014{word-spacing:0.012672pt;}
.wsb_c03014{word-spacing:29.600256pt;}
.ws8_c03014{word-spacing:32.127744pt;}
.ws1_c03014{word-spacing:33.563904pt;}
.ws0_c03014{word-spacing:33.796224pt;}
.ws3_c03014{word-spacing:34.860672pt;}
.ws5_c03014{word-spacing:35.468928pt;}
._0_c03014{margin-left:-1.731840pt;}
._2_c03014{width:1.317888pt;}
._1_c03014{width:44.668800pt;}
._3_c03014{width:45.805056pt;}
.fs0_c03014{font-size:42.240000pt;}
.fs1_c03014{font-size:53.760000pt;}
.y0_c03014{bottom:0.000000pt;}
.y19_c03014{bottom:130.665211pt;}
.y1b_c03014{bottom:165.866875pt;}
.y1a_c03014{bottom:174.507067pt;}
.y18_c03014{bottom:245.225371pt;}
.y17_c03014{bottom:317.225563pt;}
.y15_c03014{bottom:361.386427pt;}
.y11_c03014{bottom:377.386939pt;}
.y16_c03014{bottom:407.786011pt;}
.y14_c03014{bottom:437.226235pt;}
.y13_c03014{bottom:453.226747pt;}
.y10_c03014{bottom:482.666971pt;}
.y12_c03014{bottom:497.386555pt;}
.yf_c03014{bottom:513.387067pt;}
.y1c_c03014{bottom:546.027067pt;}
.yb_c03014{bottom:593.385179pt;}
.yd_c03014{bottom:628.586875pt;}
.yc_c03014{bottom:637.227067pt;}
.ya_c03014{bottom:707.945339pt;}
.y9_c03014{bottom:779.945531pt;}
.y7_c03014{bottom:823.786427pt;}
.y3_c03014{bottom:839.786939pt;}
.y8_c03014{bottom:870.505979pt;}
.y6_c03014{bottom:899.946203pt;}
.y5_c03014{bottom:915.946715pt;}
.y2_c03014{bottom:945.386939pt;}
.y4_c03014{bottom:959.786555pt;}
.y1_c03014{bottom:975.787067pt;}
.ye_c03014{bottom:1008.747067pt;}
.h3_c03014{height:28.916250pt;}
.h1_c03014{height:37.063125pt;}
.h2_c03014{height:37.166250pt;}
.h4_c03014{height:48.581988pt;}
.h0_c03014{height:1122.666667pt;}
.w1_c03014{width:793.333333pt;}
.w0_c03014{width:793.626667pt;}
.x0_c03014{left:0.000000pt;}
.xd_c03014{left:104.000000pt;}
.x8_c03014{left:391.999872pt;}
.x4_c03014{left:396.160512pt;}
.xb_c03014{left:400.960000pt;}
.x7_c03014{left:404.799648pt;}
.x5_c03014{left:410.560128pt;}
.x1_c03014{left:411.840000pt;}
.xa_c03014{left:429.760320pt;}
.x9_c03014{left:437.439552pt;}
.x6_c03014{left:438.400512pt;}
.xc_c03014{left:450.560320pt;}
.x3_c03014{left:455.039904pt;}
.x2_c03014{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03015 {
    display:none;
  }
  .loading-indicator_c03015.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03015 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03015 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03015" -> "#page-container .classname_c03015")
 */
.pf_c03015 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03015 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03015 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03015 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03015 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03015 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03015 {overflow:visible;}
  }
}
.c_c03015 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03015 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03015:after { /* webkit #35443 */
  content: '';
}
.t_c03015:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03015 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03015 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03015 { /* info for Javascript */
  display:none;
}
.l_c03015 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03015 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03015 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03015:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03015 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03015.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03015 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03015;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03015{font-family:ff1_c03015;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03015;src:url('chunks/assets/font_d1887aca038e685a51ab9c9c.woff2')format("woff");}.ff2_c03015{font-family:ff2_c03015;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03015;src:url('chunks/assets/font_cac5c651a3a6bf586fffc1c9.woff2')format("woff");}.ff3_c03015{font-family:ff3_c03015;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03015{vertical-align:0.000000px;}
.v2_c03015{vertical-align:1.439424px;}
.v1_c03015{vertical-align:33.121440px;}
.ls15_c03015{letter-spacing:-0.722304px;}
.ls9_c03015{letter-spacing:-0.608256px;}
.lsa_c03015{letter-spacing:-0.574992px;}
.lse_c03015{letter-spacing:-0.375408px;}
.ls10_c03015{letter-spacing:-0.275616px;}
.lsd_c03015{letter-spacing:-0.261360px;}
.ls6_c03015{letter-spacing:-0.242352px;}
.ls7_c03015{letter-spacing:-0.237600px;}
.ls4_c03015{letter-spacing:-0.118800px;}
.ls14_c03015{letter-spacing:-0.012096px;}
.ls1_c03015{letter-spacing:0.006048px;}
.ls5_c03015{letter-spacing:0.128304px;}
.lsc_c03015{letter-spacing:0.508464px;}
.ls13_c03015{letter-spacing:0.514080px;}
.lsf_c03015{letter-spacing:0.536976px;}
.lsb_c03015{letter-spacing:0.579744px;}
.ls11_c03015{letter-spacing:0.594000px;}
.ls8_c03015{letter-spacing:0.598752px;}
.ls3_c03015{letter-spacing:0.613008px;}
.ls16_c03015{letter-spacing:0.674784px;}
.ls0_c03015{letter-spacing:0.717552px;}
.ls2_c03015{letter-spacing:0.722304px;}
.ls12_c03015{letter-spacing:19.806336px;}
.sc__c03015{text-shadow:none;}
.sc0_c03015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03015{-webkit-text-stroke:0px transparent;}
.sc0_c03015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03015{word-spacing:-31.686336px;}
.wse_c03015{word-spacing:-15.126048px;}
.ws10_c03015{word-spacing:-12.474000px;}
.ws6_c03015{word-spacing:-12.459744px;}
.ws9_c03015{word-spacing:-12.416976px;}
.ws7_c03015{word-spacing:-12.388464px;}
.ws2_c03015{word-spacing:-11.642400px;}
.ws4_c03015{word-spacing:-11.271744px;}
.wsd_c03015{word-spacing:-2.630880px;}
.ws18_c03015{word-spacing:-1.083456px;}
.ws14_c03015{word-spacing:-1.078704px;}
.ws1a_c03015{word-spacing:-1.035936px;}
.ws11_c03015{word-spacing:-0.974160px;}
.ws13_c03015{word-spacing:-0.118800px;}
.ws15_c03015{word-spacing:-0.099792px;}
.ws17_c03015{word-spacing:-0.085536px;}
.ws12_c03015{word-spacing:0.000000px;}
.ws16_c03015{word-spacing:0.014256px;}
.ws19_c03015{word-spacing:0.361152px;}
.wsa_c03015{word-spacing:30.298752px;}
.wsc_c03015{word-spacing:33.300288px;}
.ws8_c03015{word-spacing:36.143712px;}
.wsf_c03015{word-spacing:36.742464px;}
.ws1_c03015{word-spacing:37.759392px;}
.ws0_c03015{word-spacing:38.020752px;}
.ws3_c03015{word-spacing:39.218256px;}
.ws5_c03015{word-spacing:39.902544px;}
._5_c03015{margin-left:-21.003840px;}
._4_c03015{margin-left:-19.735056px;}
._7_c03015{margin-left:-18.509040px;}
._0_c03015{margin-left:-1.948320px;}
._2_c03015{width:1.482624px;}
._6_c03015{width:3.506976px;}
._1_c03015{width:50.252400px;}
._3_c03015{width:51.530688px;}
.fc0_c03015{color:rgb(0,0,0);}
.fs0_c03015{font-size:47.520000px;}
.fs1_c03015{font-size:60.480000px;}
.y0_c03015{bottom:0.000000px;}
.y1a_c03015{bottom:146.998362px;}
.y1c_c03015{bottom:186.600234px;}
.y1b_c03015{bottom:196.320450px;}
.y19_c03015{bottom:275.878542px;}
.y18_c03015{bottom:356.878758px;}
.y16_c03015{bottom:406.559730px;}
.y12_c03015{bottom:424.560306px;}
.y17_c03015{bottom:458.759262px;}
.y15_c03015{bottom:491.879514px;}
.y14_c03015{bottom:509.880090px;}
.y11_c03015{bottom:543.000342px;}
.y13_c03015{bottom:559.559874px;}
.y10_c03015{bottom:577.560450px;}
.y1d_c03015{bottom:614.280450px;}
.yb_c03015{bottom:667.558326px;}
.ye_c03015{bottom:700.320918px;}
.yd_c03015{bottom:707.160234px;}
.yc_c03015{bottom:716.880450px;}
.ya_c03015{bottom:796.438506px;}
.y9_c03015{bottom:877.438722px;}
.y7_c03015{bottom:926.759730px;}
.y3_c03015{bottom:944.760306px;}
.y8_c03015{bottom:979.319226px;}
.y6_c03015{bottom:1012.439478px;}
.y5_c03015{bottom:1030.440054px;}
.y2_c03015{bottom:1063.560306px;}
.y4_c03015{bottom:1079.759874px;}
.y1_c03015{bottom:1097.760450px;}
.yf_c03015{bottom:1134.840450px;}
.h3_c03015{height:32.530781px;}
.h1_c03015{height:41.696016px;}
.h2_c03015{height:41.812031px;}
.h5_c03015{height:54.654737px;}
.h4_c03015{height:74.817456px;}
.h0_c03015{height:1263.000000px;}
.w1_c03015{width:892.500000px;}
.w0_c03015{width:892.830000px;}
.x0_c03015{left:0.000000px;}
.xe_c03015{left:117.000000px;}
.x8_c03015{left:440.999856px;}
.x4_c03015{left:445.680576px;}
.xb_c03015{left:451.080000px;}
.x7_c03015{left:455.399604px;}
.x5_c03015{left:461.880144px;}
.x1_c03015{left:463.320000px;}
.xa_c03015{left:483.480360px;}
.x9_c03015{left:492.119496px;}
.x6_c03015{left:493.200576px;}
.xc_c03015{left:506.880360px;}
.x3_c03015{left:511.919892px;}
.x2_c03015{left:526.679604px;}
.xd_c03015{left:569.880000px;}
@media print{
.v0_c03015{vertical-align:0.000000pt;}
.v2_c03015{vertical-align:1.279488pt;}
.v1_c03015{vertical-align:29.441280pt;}
.ls15_c03015{letter-spacing:-0.642048pt;}
.ls9_c03015{letter-spacing:-0.540672pt;}
.lsa_c03015{letter-spacing:-0.511104pt;}
.lse_c03015{letter-spacing:-0.333696pt;}
.ls10_c03015{letter-spacing:-0.244992pt;}
.lsd_c03015{letter-spacing:-0.232320pt;}
.ls6_c03015{letter-spacing:-0.215424pt;}
.ls7_c03015{letter-spacing:-0.211200pt;}
.ls4_c03015{letter-spacing:-0.105600pt;}
.ls14_c03015{letter-spacing:-0.010752pt;}
.ls1_c03015{letter-spacing:0.005376pt;}
.ls5_c03015{letter-spacing:0.114048pt;}
.lsc_c03015{letter-spacing:0.451968pt;}
.ls13_c03015{letter-spacing:0.456960pt;}
.lsf_c03015{letter-spacing:0.477312pt;}
.lsb_c03015{letter-spacing:0.515328pt;}
.ls11_c03015{letter-spacing:0.528000pt;}
.ls8_c03015{letter-spacing:0.532224pt;}
.ls3_c03015{letter-spacing:0.544896pt;}
.ls16_c03015{letter-spacing:0.599808pt;}
.ls0_c03015{letter-spacing:0.637824pt;}
.ls2_c03015{letter-spacing:0.642048pt;}
.ls12_c03015{letter-spacing:17.605632pt;}
.wsb_c03015{word-spacing:-28.165632pt;}
.wse_c03015{word-spacing:-13.445376pt;}
.ws10_c03015{word-spacing:-11.088000pt;}
.ws6_c03015{word-spacing:-11.075328pt;}
.ws9_c03015{word-spacing:-11.037312pt;}
.ws7_c03015{word-spacing:-11.011968pt;}
.ws2_c03015{word-spacing:-10.348800pt;}
.ws4_c03015{word-spacing:-10.019328pt;}
.wsd_c03015{word-spacing:-2.338560pt;}
.ws18_c03015{word-spacing:-0.963072pt;}
.ws14_c03015{word-spacing:-0.958848pt;}
.ws1a_c03015{word-spacing:-0.920832pt;}
.ws11_c03015{word-spacing:-0.865920pt;}
.ws13_c03015{word-spacing:-0.105600pt;}
.ws15_c03015{word-spacing:-0.088704pt;}
.ws17_c03015{word-spacing:-0.076032pt;}
.ws12_c03015{word-spacing:0.000000pt;}
.ws16_c03015{word-spacing:0.012672pt;}
.ws19_c03015{word-spacing:0.321024pt;}
.wsa_c03015{word-spacing:26.932224pt;}
.wsc_c03015{word-spacing:29.600256pt;}
.ws8_c03015{word-spacing:32.127744pt;}
.wsf_c03015{word-spacing:32.659968pt;}
.ws1_c03015{word-spacing:33.563904pt;}
.ws0_c03015{word-spacing:33.796224pt;}
.ws3_c03015{word-spacing:34.860672pt;}
.ws5_c03015{word-spacing:35.468928pt;}
._5_c03015{margin-left:-18.670080pt;}
._4_c03015{margin-left:-17.542272pt;}
._7_c03015{margin-left:-16.452480pt;}
._0_c03015{margin-left:-1.731840pt;}
._2_c03015{width:1.317888pt;}
._6_c03015{width:3.117312pt;}
._1_c03015{width:44.668800pt;}
._3_c03015{width:45.805056pt;}
.fs0_c03015{font-size:42.240000pt;}
.fs1_c03015{font-size:53.760000pt;}
.y0_c03015{bottom:0.000000pt;}
.y1a_c03015{bottom:130.665211pt;}
.y1c_c03015{bottom:165.866875pt;}
.y1b_c03015{bottom:174.507067pt;}
.y19_c03015{bottom:245.225371pt;}
.y18_c03015{bottom:317.225563pt;}
.y16_c03015{bottom:361.386427pt;}
.y12_c03015{bottom:377.386939pt;}
.y17_c03015{bottom:407.786011pt;}
.y15_c03015{bottom:437.226235pt;}
.y14_c03015{bottom:453.226747pt;}
.y11_c03015{bottom:482.666971pt;}
.y13_c03015{bottom:497.386555pt;}
.y10_c03015{bottom:513.387067pt;}
.y1d_c03015{bottom:546.027067pt;}
.yb_c03015{bottom:593.385179pt;}
.ye_c03015{bottom:622.507483pt;}
.yd_c03015{bottom:628.586875pt;}
.yc_c03015{bottom:637.227067pt;}
.ya_c03015{bottom:707.945339pt;}
.y9_c03015{bottom:779.945531pt;}
.y7_c03015{bottom:823.786427pt;}
.y3_c03015{bottom:839.786939pt;}
.y8_c03015{bottom:870.505979pt;}
.y6_c03015{bottom:899.946203pt;}
.y5_c03015{bottom:915.946715pt;}
.y2_c03015{bottom:945.386939pt;}
.y4_c03015{bottom:959.786555pt;}
.y1_c03015{bottom:975.787067pt;}
.yf_c03015{bottom:1008.747067pt;}
.h3_c03015{height:28.916250pt;}
.h1_c03015{height:37.063125pt;}
.h2_c03015{height:37.166250pt;}
.h5_c03015{height:48.581988pt;}
.h4_c03015{height:66.504405pt;}
.h0_c03015{height:1122.666667pt;}
.w1_c03015{width:793.333333pt;}
.w0_c03015{width:793.626667pt;}
.x0_c03015{left:0.000000pt;}
.xe_c03015{left:104.000000pt;}
.x8_c03015{left:391.999872pt;}
.x4_c03015{left:396.160512pt;}
.xb_c03015{left:400.960000pt;}
.x7_c03015{left:404.799648pt;}
.x5_c03015{left:410.560128pt;}
.x1_c03015{left:411.840000pt;}
.xa_c03015{left:429.760320pt;}
.x9_c03015{left:437.439552pt;}
.x6_c03015{left:438.400512pt;}
.xc_c03015{left:450.560320pt;}
.x3_c03015{left:455.039904pt;}
.x2_c03015{left:468.159648pt;}
.xd_c03015{left:506.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03016 {
    display:none;
  }
  .loading-indicator_c03016.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03016 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03016 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03016" -> "#page-container .classname_c03016")
 */
.pf_c03016 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03016 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03016 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03016 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03016 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03016 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03016 {overflow:visible;}
  }
}
.c_c03016 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03016 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03016:after { /* webkit #35443 */
  content: '';
}
.t_c03016:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03016 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03016 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03016 { /* info for Javascript */
  display:none;
}
.l_c03016 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03016 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03016 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03016:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03016 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03016.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03016 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03016{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03016;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03016{font-family:ff1_c03016;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03016;src:url('chunks/assets/font_7b67e6d1204f7ac0ff5c8fcd.woff2')format("woff");}.ff2_c03016{font-family:ff2_c03016;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03016;src:url('chunks/assets/font_11a0b7745a6d89895ac61ce1.woff2')format("woff");}.ff3_c03016{font-family:ff3_c03016;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03016{vertical-align:0.000000px;}
.v1_c03016{vertical-align:1.439424px;}
.ls10_c03016{letter-spacing:-1.197504px;}
.ls1d_c03016{letter-spacing:-0.812592px;}
.ls1e_c03016{letter-spacing:-0.722304px;}
.lsc_c03016{letter-spacing:-0.608256px;}
.lsd_c03016{letter-spacing:-0.574992px;}
.ls1c_c03016{letter-spacing:-0.380160px;}
.ls1b_c03016{letter-spacing:-0.361152px;}
.ls13_c03016{letter-spacing:-0.275616px;}
.ls11_c03016{letter-spacing:-0.261360px;}
.ls9_c03016{letter-spacing:-0.242352px;}
.lsa_c03016{letter-spacing:-0.237600px;}
.ls19_c03016{letter-spacing:-0.213840px;}
.ls7_c03016{letter-spacing:-0.118800px;}
.ls16_c03016{letter-spacing:-0.012096px;}
.ls1_c03016{letter-spacing:0.006048px;}
.ls1a_c03016{letter-spacing:0.038016px;}
.ls8_c03016{letter-spacing:0.128304px;}
.ls17_c03016{letter-spacing:0.242352px;}
.lsf_c03016{letter-spacing:0.508464px;}
.ls15_c03016{letter-spacing:0.514080px;}
.ls12_c03016{letter-spacing:0.536976px;}
.lse_c03016{letter-spacing:0.579744px;}
.ls14_c03016{letter-spacing:0.594000px;}
.lsb_c03016{letter-spacing:0.598752px;}
.ls18_c03016{letter-spacing:0.608256px;}
.ls6_c03016{letter-spacing:0.613008px;}
.ls4_c03016{letter-spacing:0.651024px;}
.ls5_c03016{letter-spacing:0.670032px;}
.ls3_c03016{letter-spacing:0.679536px;}
.ls2_c03016{letter-spacing:0.717552px;}
.ls0_c03016{letter-spacing:0.722304px;}
.sc__c03016{text-shadow:none;}
.sc0_c03016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03016{-webkit-text-stroke:0px transparent;}
.sc0_c03016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03016{word-spacing:-15.126048px;}
.ws17_c03016{word-spacing:-12.602304px;}
.ws1a_c03016{word-spacing:-12.550032px;}
.wsa_c03016{word-spacing:-12.474000px;}
.ws6_c03016{word-spacing:-12.459744px;}
.ws9_c03016{word-spacing:-12.416976px;}
.ws7_c03016{word-spacing:-12.388464px;}
.wsf_c03016{word-spacing:-12.122352px;}
.wse_c03016{word-spacing:-11.761200px;}
.ws2_c03016{word-spacing:-11.642400px;}
.ws11_c03016{word-spacing:-11.637648px;}
.ws4_c03016{word-spacing:-11.271744px;}
.wsc_c03016{word-spacing:-2.630880px;}
.ws22_c03016{word-spacing:-1.083456px;}
.ws26_c03016{word-spacing:-1.078704px;}
.ws27_c03016{word-spacing:-1.040688px;}
.ws1f_c03016{word-spacing:-0.974160px;}
.ws28_c03016{word-spacing:-0.399168px;}
.ws21_c03016{word-spacing:-0.118800px;}
.ws24_c03016{word-spacing:-0.099792px;}
.ws25_c03016{word-spacing:-0.085536px;}
.ws20_c03016{word-spacing:0.000000px;}
.ws29_c03016{word-spacing:0.019008px;}
.ws2a_c03016{word-spacing:0.361152px;}
.ws12_c03016{word-spacing:0.584496px;}
.ws23_c03016{word-spacing:0.836352px;}
.ws10_c03016{word-spacing:1.330560px;}
.ws18_c03016{word-spacing:6.572016px;}
.ws19_c03016{word-spacing:9.138096px;}
.ws15_c03016{word-spacing:20.043936px;}
.ws1e_c03016{word-spacing:23.375088px;}
.ws1c_c03016{word-spacing:33.121440px;}
.wsb_c03016{word-spacing:33.300288px;}
.ws1d_c03016{word-spacing:34.836912px;}
.ws8_c03016{word-spacing:36.143712px;}
.ws1b_c03016{word-spacing:36.234000px;}
.ws13_c03016{word-spacing:36.742464px;}
.ws1_c03016{word-spacing:37.759392px;}
.ws0_c03016{word-spacing:38.020752px;}
.ws14_c03016{word-spacing:38.705040px;}
.ws3_c03016{word-spacing:39.218256px;}
.ws5_c03016{word-spacing:39.902544px;}
.ws16_c03016{word-spacing:42.026688px;}
._0_c03016{margin-left:-1.948320px;}
._2_c03016{width:1.482624px;}
._5_c03016{width:2.689632px;}
._6_c03016{width:4.785264px;}
._7_c03016{width:14.332032px;}
._4_c03016{width:15.729120px;}
._8_c03016{width:17.012160px;}
._f_c03016{width:19.473696px;}
._e_c03016{width:21.393504px;}
._c_c03016{width:33.392304px;}
._d_c03016{width:35.830080px;}
._12_c03016{width:38.144304px;}
._b_c03016{width:39.645936px;}
._11_c03016{width:42.682464px;}
._10_c03016{width:47.966688px;}
._1_c03016{width:50.252400px;}
._3_c03016{width:51.530688px;}
._a_c03016{width:55.299024px;}
._9_c03016{width:58.682448px;}
.fc0_c03016{color:rgb(0,0,0);}
.fs0_c03016{font-size:47.520000px;}
.fs1_c03016{font-size:60.480000px;}
.y0_c03016{bottom:0.000000px;}
.y12_c03016{bottom:18.000450px;}
.y21_c03016{bottom:131.880018px;}
.y20_c03016{bottom:146.999694px;}
.y23_c03016{bottom:186.600234px;}
.y22_c03016{bottom:196.320450px;}
.y1f_c03016{bottom:260.760198px;}
.y1e_c03016{bottom:275.879874px;}
.y1d_c03016{bottom:341.760414px;}
.y1c_c03016{bottom:356.880090px;}
.y1a_c03016{bottom:376.320522px;}
.y19_c03016{bottom:391.440198px;}
.y18_c03016{bottom:406.559874px;}
.y13_c03016{bottom:424.560450px;}
.y1b_c03016{bottom:458.760594px;}
.y17_c03016{bottom:476.759982px;}
.y16_c03016{bottom:491.879658px;}
.y15_c03016{bottom:509.880234px;}
.y11_c03016{bottom:525.000000px;}
.y10_c03016{bottom:543.000342px;}
.y14_c03016{bottom:559.560018px;}
.yf_c03016{bottom:577.560450px;}
.y24_c03016{bottom:614.280450px;}
.yb_c03016{bottom:667.558326px;}
.yd_c03016{bottom:707.160234px;}
.yc_c03016{bottom:716.880450px;}
.ya_c03016{bottom:796.438506px;}
.y9_c03016{bottom:877.438722px;}
.y7_c03016{bottom:926.759730px;}
.y3_c03016{bottom:944.760306px;}
.y8_c03016{bottom:979.319226px;}
.y6_c03016{bottom:1012.439478px;}
.y5_c03016{bottom:1030.440054px;}
.y2_c03016{bottom:1063.560306px;}
.y4_c03016{bottom:1079.759874px;}
.y1_c03016{bottom:1097.760450px;}
.ye_c03016{bottom:1134.840450px;}
.h5_c03016{height:29.160000px;}
.h3_c03016{height:32.530781px;}
.h1_c03016{height:41.696016px;}
.h2_c03016{height:41.812031px;}
.h4_c03016{height:54.654737px;}
.h0_c03016{height:1263.000000px;}
.w2_c03016{width:215.280000px;}
.w1_c03016{width:892.500000px;}
.w0_c03016{width:892.830000px;}
.x0_c03016{left:0.000000px;}
.xd_c03016{left:117.000000px;}
.x8_c03016{left:440.999856px;}
.x4_c03016{left:445.680576px;}
.xb_c03016{left:451.080000px;}
.x7_c03016{left:455.399604px;}
.x5_c03016{left:461.880144px;}
.x1_c03016{left:463.320000px;}
.xa_c03016{left:483.480360px;}
.x9_c03016{left:492.119496px;}
.x6_c03016{left:493.200576px;}
.xc_c03016{left:506.880360px;}
.x3_c03016{left:511.919892px;}
.x2_c03016{left:526.679604px;}
.xe_c03016{left:569.520000px;}
@media print{
.v0_c03016{vertical-align:0.000000pt;}
.v1_c03016{vertical-align:1.279488pt;}
.ls10_c03016{letter-spacing:-1.064448pt;}
.ls1d_c03016{letter-spacing:-0.722304pt;}
.ls1e_c03016{letter-spacing:-0.642048pt;}
.lsc_c03016{letter-spacing:-0.540672pt;}
.lsd_c03016{letter-spacing:-0.511104pt;}
.ls1c_c03016{letter-spacing:-0.337920pt;}
.ls1b_c03016{letter-spacing:-0.321024pt;}
.ls13_c03016{letter-spacing:-0.244992pt;}
.ls11_c03016{letter-spacing:-0.232320pt;}
.ls9_c03016{letter-spacing:-0.215424pt;}
.lsa_c03016{letter-spacing:-0.211200pt;}
.ls19_c03016{letter-spacing:-0.190080pt;}
.ls7_c03016{letter-spacing:-0.105600pt;}
.ls16_c03016{letter-spacing:-0.010752pt;}
.ls1_c03016{letter-spacing:0.005376pt;}
.ls1a_c03016{letter-spacing:0.033792pt;}
.ls8_c03016{letter-spacing:0.114048pt;}
.ls17_c03016{letter-spacing:0.215424pt;}
.lsf_c03016{letter-spacing:0.451968pt;}
.ls15_c03016{letter-spacing:0.456960pt;}
.ls12_c03016{letter-spacing:0.477312pt;}
.lse_c03016{letter-spacing:0.515328pt;}
.ls14_c03016{letter-spacing:0.528000pt;}
.lsb_c03016{letter-spacing:0.532224pt;}
.ls18_c03016{letter-spacing:0.540672pt;}
.ls6_c03016{letter-spacing:0.544896pt;}
.ls4_c03016{letter-spacing:0.578688pt;}
.ls5_c03016{letter-spacing:0.595584pt;}
.ls3_c03016{letter-spacing:0.604032pt;}
.ls2_c03016{letter-spacing:0.637824pt;}
.ls0_c03016{letter-spacing:0.642048pt;}
.wsd_c03016{word-spacing:-13.445376pt;}
.ws17_c03016{word-spacing:-11.202048pt;}
.ws1a_c03016{word-spacing:-11.155584pt;}
.wsa_c03016{word-spacing:-11.088000pt;}
.ws6_c03016{word-spacing:-11.075328pt;}
.ws9_c03016{word-spacing:-11.037312pt;}
.ws7_c03016{word-spacing:-11.011968pt;}
.wsf_c03016{word-spacing:-10.775424pt;}
.wse_c03016{word-spacing:-10.454400pt;}
.ws2_c03016{word-spacing:-10.348800pt;}
.ws11_c03016{word-spacing:-10.344576pt;}
.ws4_c03016{word-spacing:-10.019328pt;}
.wsc_c03016{word-spacing:-2.338560pt;}
.ws22_c03016{word-spacing:-0.963072pt;}
.ws26_c03016{word-spacing:-0.958848pt;}
.ws27_c03016{word-spacing:-0.925056pt;}
.ws1f_c03016{word-spacing:-0.865920pt;}
.ws28_c03016{word-spacing:-0.354816pt;}
.ws21_c03016{word-spacing:-0.105600pt;}
.ws24_c03016{word-spacing:-0.088704pt;}
.ws25_c03016{word-spacing:-0.076032pt;}
.ws20_c03016{word-spacing:0.000000pt;}
.ws29_c03016{word-spacing:0.016896pt;}
.ws2a_c03016{word-spacing:0.321024pt;}
.ws12_c03016{word-spacing:0.519552pt;}
.ws23_c03016{word-spacing:0.743424pt;}
.ws10_c03016{word-spacing:1.182720pt;}
.ws18_c03016{word-spacing:5.841792pt;}
.ws19_c03016{word-spacing:8.122752pt;}
.ws15_c03016{word-spacing:17.816832pt;}
.ws1e_c03016{word-spacing:20.777856pt;}
.ws1c_c03016{word-spacing:29.441280pt;}
.wsb_c03016{word-spacing:29.600256pt;}
.ws1d_c03016{word-spacing:30.966144pt;}
.ws8_c03016{word-spacing:32.127744pt;}
.ws1b_c03016{word-spacing:32.208000pt;}
.ws13_c03016{word-spacing:32.659968pt;}
.ws1_c03016{word-spacing:33.563904pt;}
.ws0_c03016{word-spacing:33.796224pt;}
.ws14_c03016{word-spacing:34.404480pt;}
.ws3_c03016{word-spacing:34.860672pt;}
.ws5_c03016{word-spacing:35.468928pt;}
.ws16_c03016{word-spacing:37.357056pt;}
._0_c03016{margin-left:-1.731840pt;}
._2_c03016{width:1.317888pt;}
._5_c03016{width:2.390784pt;}
._6_c03016{width:4.253568pt;}
._7_c03016{width:12.739584pt;}
._4_c03016{width:13.981440pt;}
._8_c03016{width:15.121920pt;}
._f_c03016{width:17.309952pt;}
._e_c03016{width:19.016448pt;}
._c_c03016{width:29.682048pt;}
._d_c03016{width:31.848960pt;}
._12_c03016{width:33.906048pt;}
._b_c03016{width:35.240832pt;}
._11_c03016{width:37.939968pt;}
._10_c03016{width:42.637056pt;}
._1_c03016{width:44.668800pt;}
._3_c03016{width:45.805056pt;}
._a_c03016{width:49.154688pt;}
._9_c03016{width:52.162176pt;}
.fs0_c03016{font-size:42.240000pt;}
.fs1_c03016{font-size:53.760000pt;}
.y0_c03016{bottom:0.000000pt;}
.y12_c03016{bottom:16.000400pt;}
.y21_c03016{bottom:117.226683pt;}
.y20_c03016{bottom:130.666395pt;}
.y23_c03016{bottom:165.866875pt;}
.y22_c03016{bottom:174.507067pt;}
.y1f_c03016{bottom:231.786843pt;}
.y1e_c03016{bottom:245.226555pt;}
.y1d_c03016{bottom:303.787035pt;}
.y1c_c03016{bottom:317.226747pt;}
.y1a_c03016{bottom:334.507131pt;}
.y19_c03016{bottom:347.946843pt;}
.y18_c03016{bottom:361.386555pt;}
.y13_c03016{bottom:377.387067pt;}
.y1b_c03016{bottom:407.787195pt;}
.y17_c03016{bottom:423.786651pt;}
.y16_c03016{bottom:437.226363pt;}
.y15_c03016{bottom:453.226875pt;}
.y11_c03016{bottom:466.666667pt;}
.y10_c03016{bottom:482.666971pt;}
.y14_c03016{bottom:497.386683pt;}
.yf_c03016{bottom:513.387067pt;}
.y24_c03016{bottom:546.027067pt;}
.yb_c03016{bottom:593.385179pt;}
.yd_c03016{bottom:628.586875pt;}
.yc_c03016{bottom:637.227067pt;}
.ya_c03016{bottom:707.945339pt;}
.y9_c03016{bottom:779.945531pt;}
.y7_c03016{bottom:823.786427pt;}
.y3_c03016{bottom:839.786939pt;}
.y8_c03016{bottom:870.505979pt;}
.y6_c03016{bottom:899.946203pt;}
.y5_c03016{bottom:915.946715pt;}
.y2_c03016{bottom:945.386939pt;}
.y4_c03016{bottom:959.786555pt;}
.y1_c03016{bottom:975.787067pt;}
.ye_c03016{bottom:1008.747067pt;}
.h5_c03016{height:25.920000pt;}
.h3_c03016{height:28.916250pt;}
.h1_c03016{height:37.063125pt;}
.h2_c03016{height:37.166250pt;}
.h4_c03016{height:48.581988pt;}
.h0_c03016{height:1122.666667pt;}
.w2_c03016{width:191.360000pt;}
.w1_c03016{width:793.333333pt;}
.w0_c03016{width:793.626667pt;}
.x0_c03016{left:0.000000pt;}
.xd_c03016{left:104.000000pt;}
.x8_c03016{left:391.999872pt;}
.x4_c03016{left:396.160512pt;}
.xb_c03016{left:400.960000pt;}
.x7_c03016{left:404.799648pt;}
.x5_c03016{left:410.560128pt;}
.x1_c03016{left:411.840000pt;}
.xa_c03016{left:429.760320pt;}
.x9_c03016{left:437.439552pt;}
.x6_c03016{left:438.400512pt;}
.xc_c03016{left:450.560320pt;}
.x3_c03016{left:455.039904pt;}
.x2_c03016{left:468.159648pt;}
.xe_c03016{left:506.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03017 {
    display:none;
  }
  .loading-indicator_c03017.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03017 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03017 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03017" -> "#page-container .classname_c03017")
 */
.pf_c03017 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03017 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03017.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03017 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03017 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03017 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03017 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03017 {overflow:visible;}
  }
}
.c_c03017 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03017 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03017:after { /* webkit #35443 */
  content: '';
}
.t_c03017:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03017 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03017 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03017 { /* info for Javascript */
  display:none;
}
.l_c03017 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03017 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03017 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03017:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03017 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03017.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03017.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03017 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03017;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03017{font-family:ff1_c03017;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03017;src:url('chunks/assets/font_4ceff4bc100fd67fb96281f9.woff2')format("woff");}.ff2_c03017{font-family:ff2_c03017;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03017;src:url('chunks/assets/font_d1412183754c797c2c87e84f.woff2')format("woff");}.ff3_c03017{font-family:ff3_c03017;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03017{vertical-align:0.000000px;}
.v1_c03017{vertical-align:1.439424px;}
.lse_c03017{letter-spacing:-0.793584px;}
.lsf_c03017{letter-spacing:-0.722304px;}
.ls18_c03017{letter-spacing:-0.717552px;}
.lsb_c03017{letter-spacing:-0.574992px;}
.ls12_c03017{letter-spacing:-0.275616px;}
.ls10_c03017{letter-spacing:-0.261360px;}
.ls8_c03017{letter-spacing:-0.242352px;}
.ls1a_c03017{letter-spacing:-0.213840px;}
.ls4_c03017{letter-spacing:-0.118800px;}
.ls15_c03017{letter-spacing:0.000000px;}
.ls16_c03017{letter-spacing:0.004752px;}
.ls1_c03017{letter-spacing:0.006048px;}
.ls17_c03017{letter-spacing:0.009504px;}
.ls19_c03017{letter-spacing:0.014256px;}
.ls6_c03017{letter-spacing:0.128304px;}
.ls9_c03017{letter-spacing:0.242352px;}
.lsd_c03017{letter-spacing:0.508464px;}
.ls14_c03017{letter-spacing:0.514080px;}
.ls11_c03017{letter-spacing:0.536976px;}
.lsc_c03017{letter-spacing:0.579744px;}
.ls13_c03017{letter-spacing:0.594000px;}
.lsa_c03017{letter-spacing:0.598752px;}
.ls3_c03017{letter-spacing:0.613008px;}
.ls1b_c03017{letter-spacing:0.617760px;}
.ls5_c03017{letter-spacing:0.632016px;}
.ls2_c03017{letter-spacing:0.655776px;}
.ls7_c03017{letter-spacing:0.717552px;}
.ls0_c03017{letter-spacing:0.722304px;}
.sc__c03017{text-shadow:none;}
.sc0_c03017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03017{-webkit-text-stroke:0px transparent;}
.sc0_c03017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03017{word-spacing:-15.126048px;}
.wsa_c03017{word-spacing:-12.474000px;}
.ws6_c03017{word-spacing:-12.459744px;}
.ws9_c03017{word-spacing:-12.416976px;}
.ws2_c03017{word-spacing:-12.122352px;}
.ws4_c03017{word-spacing:-11.637648px;}
.ws15_c03017{word-spacing:-2.433024px;}
.ws17_c03017{word-spacing:-1.083456px;}
.ws1d_c03017{word-spacing:-1.016928px;}
.ws21_c03017{word-spacing:-0.978912px;}
.ws13_c03017{word-spacing:-0.974160px;}
.ws1c_c03017{word-spacing:-0.719712px;}
.ws20_c03017{word-spacing:-0.375408px;}
.ws1e_c03017{word-spacing:-0.365904px;}
.ws16_c03017{word-spacing:-0.118800px;}
.ws1a_c03017{word-spacing:-0.099792px;}
.ws1b_c03017{word-spacing:-0.085536px;}
.ws14_c03017{word-spacing:0.000000px;}
.ws1f_c03017{word-spacing:0.356400px;}
.ws19_c03017{word-spacing:0.361152px;}
.ws18_c03017{word-spacing:0.432432px;}
.wsd_c03017{word-spacing:1.330560px;}
.ws11_c03017{word-spacing:6.334416px;}
.wsf_c03017{word-spacing:8.487072px;}
.ws12_c03017{word-spacing:10.221552px;}
.wsb_c03017{word-spacing:33.300288px;}
.ws10_c03017{word-spacing:34.836912px;}
.ws8_c03017{word-spacing:36.143712px;}
.wse_c03017{word-spacing:36.742464px;}
.ws1_c03017{word-spacing:37.759392px;}
.ws0_c03017{word-spacing:38.020752px;}
.ws3_c03017{word-spacing:39.218256px;}
.ws5_c03017{word-spacing:39.902544px;}
.ws7_c03017{word-spacing:42.026688px;}
._0_c03017{margin-left:-1.948320px;}
._2_c03017{width:1.482624px;}
._4_c03017{width:3.307392px;}
._7_c03017{width:6.263136px;}
._6_c03017{width:9.033552px;}
._5_c03017{width:10.140768px;}
._b_c03017{width:18.694368px;}
._a_c03017{width:19.853856px;}
._9_c03017{width:22.049280px;}
._8_c03017{width:23.783760px;}
._1_c03017{width:50.252400px;}
._3_c03017{width:51.530688px;}
.fc0_c03017{color:rgb(0,0,0);}
.fs0_c03017{font-size:47.520000px;}
.fs1_c03017{font-size:60.480000px;}
.y0_c03017{bottom:0.000000px;}
.y1c_c03017{bottom:116.760198px;}
.y1b_c03017{bottom:131.879874px;}
.y1a_c03017{bottom:146.999550px;}
.y1e_c03017{bottom:186.600234px;}
.y1d_c03017{bottom:196.320450px;}
.y19_c03017{bottom:275.879730px;}
.y18_c03017{bottom:356.879946px;}
.y16_c03017{bottom:391.440054px;}
.y15_c03017{bottom:406.559730px;}
.y11_c03017{bottom:424.560306px;}
.y17_c03017{bottom:458.760450px;}
.y14_c03017{bottom:491.879514px;}
.y13_c03017{bottom:509.880090px;}
.y10_c03017{bottom:543.000342px;}
.y12_c03017{bottom:559.559874px;}
.yf_c03017{bottom:577.560450px;}
.y1f_c03017{bottom:614.280450px;}
.yb_c03017{bottom:667.558326px;}
.yd_c03017{bottom:707.160234px;}
.yc_c03017{bottom:716.880450px;}
.ya_c03017{bottom:796.438506px;}
.y9_c03017{bottom:877.438722px;}
.y7_c03017{bottom:926.759730px;}
.y3_c03017{bottom:944.760306px;}
.y8_c03017{bottom:979.319226px;}
.y6_c03017{bottom:1012.439478px;}
.y5_c03017{bottom:1030.440054px;}
.y2_c03017{bottom:1063.560306px;}
.y4_c03017{bottom:1079.759874px;}
.y1_c03017{bottom:1097.760450px;}
.ye_c03017{bottom:1134.840450px;}
.h3_c03017{height:32.530781px;}
.h1_c03017{height:41.696016px;}
.h2_c03017{height:41.812031px;}
.h4_c03017{height:54.654737px;}
.h0_c03017{height:1263.000000px;}
.w1_c03017{width:892.500000px;}
.w0_c03017{width:892.830000px;}
.x0_c03017{left:0.000000px;}
.xd_c03017{left:117.000000px;}
.x8_c03017{left:440.999856px;}
.x4_c03017{left:445.680576px;}
.xb_c03017{left:451.080000px;}
.x7_c03017{left:455.399604px;}
.x5_c03017{left:461.880144px;}
.x1_c03017{left:463.320000px;}
.xa_c03017{left:483.480360px;}
.x9_c03017{left:492.119496px;}
.x6_c03017{left:493.200576px;}
.xc_c03017{left:506.880360px;}
.x3_c03017{left:511.919892px;}
.x2_c03017{left:526.679604px;}
.xe_c03017{left:569.880036px;}
@media print{
.v0_c03017{vertical-align:0.000000pt;}
.v1_c03017{vertical-align:1.279488pt;}
.lse_c03017{letter-spacing:-0.705408pt;}
.lsf_c03017{letter-spacing:-0.642048pt;}
.ls18_c03017{letter-spacing:-0.637824pt;}
.lsb_c03017{letter-spacing:-0.511104pt;}
.ls12_c03017{letter-spacing:-0.244992pt;}
.ls10_c03017{letter-spacing:-0.232320pt;}
.ls8_c03017{letter-spacing:-0.215424pt;}
.ls1a_c03017{letter-spacing:-0.190080pt;}
.ls4_c03017{letter-spacing:-0.105600pt;}
.ls15_c03017{letter-spacing:0.000000pt;}
.ls16_c03017{letter-spacing:0.004224pt;}
.ls1_c03017{letter-spacing:0.005376pt;}
.ls17_c03017{letter-spacing:0.008448pt;}
.ls19_c03017{letter-spacing:0.012672pt;}
.ls6_c03017{letter-spacing:0.114048pt;}
.ls9_c03017{letter-spacing:0.215424pt;}
.lsd_c03017{letter-spacing:0.451968pt;}
.ls14_c03017{letter-spacing:0.456960pt;}
.ls11_c03017{letter-spacing:0.477312pt;}
.lsc_c03017{letter-spacing:0.515328pt;}
.ls13_c03017{letter-spacing:0.528000pt;}
.lsa_c03017{letter-spacing:0.532224pt;}
.ls3_c03017{letter-spacing:0.544896pt;}
.ls1b_c03017{letter-spacing:0.549120pt;}
.ls5_c03017{letter-spacing:0.561792pt;}
.ls2_c03017{letter-spacing:0.582912pt;}
.ls7_c03017{letter-spacing:0.637824pt;}
.ls0_c03017{letter-spacing:0.642048pt;}
.wsc_c03017{word-spacing:-13.445376pt;}
.wsa_c03017{word-spacing:-11.088000pt;}
.ws6_c03017{word-spacing:-11.075328pt;}
.ws9_c03017{word-spacing:-11.037312pt;}
.ws2_c03017{word-spacing:-10.775424pt;}
.ws4_c03017{word-spacing:-10.344576pt;}
.ws15_c03017{word-spacing:-2.162688pt;}
.ws17_c03017{word-spacing:-0.963072pt;}
.ws1d_c03017{word-spacing:-0.903936pt;}
.ws21_c03017{word-spacing:-0.870144pt;}
.ws13_c03017{word-spacing:-0.865920pt;}
.ws1c_c03017{word-spacing:-0.639744pt;}
.ws20_c03017{word-spacing:-0.333696pt;}
.ws1e_c03017{word-spacing:-0.325248pt;}
.ws16_c03017{word-spacing:-0.105600pt;}
.ws1a_c03017{word-spacing:-0.088704pt;}
.ws1b_c03017{word-spacing:-0.076032pt;}
.ws14_c03017{word-spacing:0.000000pt;}
.ws1f_c03017{word-spacing:0.316800pt;}
.ws19_c03017{word-spacing:0.321024pt;}
.ws18_c03017{word-spacing:0.384384pt;}
.wsd_c03017{word-spacing:1.182720pt;}
.ws11_c03017{word-spacing:5.630592pt;}
.wsf_c03017{word-spacing:7.544064pt;}
.ws12_c03017{word-spacing:9.085824pt;}
.wsb_c03017{word-spacing:29.600256pt;}
.ws10_c03017{word-spacing:30.966144pt;}
.ws8_c03017{word-spacing:32.127744pt;}
.wse_c03017{word-spacing:32.659968pt;}
.ws1_c03017{word-spacing:33.563904pt;}
.ws0_c03017{word-spacing:33.796224pt;}
.ws3_c03017{word-spacing:34.860672pt;}
.ws5_c03017{word-spacing:35.468928pt;}
.ws7_c03017{word-spacing:37.357056pt;}
._0_c03017{margin-left:-1.731840pt;}
._2_c03017{width:1.317888pt;}
._4_c03017{width:2.939904pt;}
._7_c03017{width:5.567232pt;}
._6_c03017{width:8.029824pt;}
._5_c03017{width:9.014016pt;}
._b_c03017{width:16.617216pt;}
._a_c03017{width:17.647872pt;}
._9_c03017{width:19.599360pt;}
._8_c03017{width:21.141120pt;}
._1_c03017{width:44.668800pt;}
._3_c03017{width:45.805056pt;}
.fs0_c03017{font-size:42.240000pt;}
.fs1_c03017{font-size:53.760000pt;}
.y0_c03017{bottom:0.000000pt;}
.y1c_c03017{bottom:103.786843pt;}
.y1b_c03017{bottom:117.226555pt;}
.y1a_c03017{bottom:130.666267pt;}
.y1e_c03017{bottom:165.866875pt;}
.y1d_c03017{bottom:174.507067pt;}
.y19_c03017{bottom:245.226427pt;}
.y18_c03017{bottom:317.226619pt;}
.y16_c03017{bottom:347.946715pt;}
.y15_c03017{bottom:361.386427pt;}
.y11_c03017{bottom:377.386939pt;}
.y17_c03017{bottom:407.787067pt;}
.y14_c03017{bottom:437.226235pt;}
.y13_c03017{bottom:453.226747pt;}
.y10_c03017{bottom:482.666971pt;}
.y12_c03017{bottom:497.386555pt;}
.yf_c03017{bottom:513.387067pt;}
.y1f_c03017{bottom:546.027067pt;}
.yb_c03017{bottom:593.385179pt;}
.yd_c03017{bottom:628.586875pt;}
.yc_c03017{bottom:637.227067pt;}
.ya_c03017{bottom:707.945339pt;}
.y9_c03017{bottom:779.945531pt;}
.y7_c03017{bottom:823.786427pt;}
.y3_c03017{bottom:839.786939pt;}
.y8_c03017{bottom:870.505979pt;}
.y6_c03017{bottom:899.946203pt;}
.y5_c03017{bottom:915.946715pt;}
.y2_c03017{bottom:945.386939pt;}
.y4_c03017{bottom:959.786555pt;}
.y1_c03017{bottom:975.787067pt;}
.ye_c03017{bottom:1008.747067pt;}
.h3_c03017{height:28.916250pt;}
.h1_c03017{height:37.063125pt;}
.h2_c03017{height:37.166250pt;}
.h4_c03017{height:48.581988pt;}
.h0_c03017{height:1122.666667pt;}
.w1_c03017{width:793.333333pt;}
.w0_c03017{width:793.626667pt;}
.x0_c03017{left:0.000000pt;}
.xd_c03017{left:104.000000pt;}
.x8_c03017{left:391.999872pt;}
.x4_c03017{left:396.160512pt;}
.xb_c03017{left:400.960000pt;}
.x7_c03017{left:404.799648pt;}
.x5_c03017{left:410.560128pt;}
.x1_c03017{left:411.840000pt;}
.xa_c03017{left:429.760320pt;}
.x9_c03017{left:437.439552pt;}
.x6_c03017{left:438.400512pt;}
.xc_c03017{left:450.560320pt;}
.x3_c03017{left:455.039904pt;}
.x2_c03017{left:468.159648pt;}
.xe_c03017{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03018 {
    display:none;
  }
  .loading-indicator_c03018.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03018 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03018 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03018" -> "#page-container .classname_c03018")
 */
.pf_c03018 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03018 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03018 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03018 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03018 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03018 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03018 {overflow:visible;}
  }
}
.c_c03018 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03018 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03018:after { /* webkit #35443 */
  content: '';
}
.t_c03018:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03018 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03018 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03018 { /* info for Javascript */
  display:none;
}
.l_c03018 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03018 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03018 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03018:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03018 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03018.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03018 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03018;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03018{font-family:ff1_c03018;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03018;src:url('chunks/assets/font_58d748899cbdfa1189f74cc8.woff2')format("woff");}.ff2_c03018{font-family:ff2_c03018;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03018;src:url('chunks/assets/font_50cca111b603441d4893070b.woff2')format("woff");}.ff3_c03018{font-family:ff3_c03018;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03018{vertical-align:0.000000px;}
.v1_c03018{vertical-align:1.439424px;}
.ls18_c03018{letter-spacing:-0.845856px;}
.ls19_c03018{letter-spacing:-0.817344px;}
.ls17_c03018{letter-spacing:-0.693792px;}
.ls8_c03018{letter-spacing:-0.613008px;}
.lsa_c03018{letter-spacing:-0.574992px;}
.ls11_c03018{letter-spacing:-0.275616px;}
.lsd_c03018{letter-spacing:-0.261360px;}
.ls7_c03018{letter-spacing:-0.242352px;}
.ls15_c03018{letter-spacing:-0.204336px;}
.ls5_c03018{letter-spacing:-0.118800px;}
.lsf_c03018{letter-spacing:-0.047520px;}
.ls14_c03018{letter-spacing:0.000000px;}
.ls2_c03018{letter-spacing:0.006048px;}
.ls16_c03018{letter-spacing:0.014256px;}
.ls6_c03018{letter-spacing:0.128304px;}
.lse_c03018{letter-spacing:0.209088px;}
.lsc_c03018{letter-spacing:0.508464px;}
.ls13_c03018{letter-spacing:0.514080px;}
.ls10_c03018{letter-spacing:0.536976px;}
.lsb_c03018{letter-spacing:0.579744px;}
.ls12_c03018{letter-spacing:0.594000px;}
.ls9_c03018{letter-spacing:0.598752px;}
.ls3_c03018{letter-spacing:0.613008px;}
.ls0_c03018{letter-spacing:0.651024px;}
.ls1_c03018{letter-spacing:0.717552px;}
.ls4_c03018{letter-spacing:0.722304px;}
.sc__c03018{text-shadow:none;}
.sc0_c03018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03018{-webkit-text-stroke:0px transparent;}
.sc0_c03018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03018{word-spacing:-15.126048px;}
.wsb_c03018{word-spacing:-12.474000px;}
.wsa_c03018{word-spacing:-12.416976px;}
.wsf_c03018{word-spacing:-11.894256px;}
.ws4_c03018{word-spacing:-11.637648px;}
.ws2_c03018{word-spacing:-11.266992px;}
.ws17_c03018{word-spacing:-1.083456px;}
.ws16_c03018{word-spacing:-1.078704px;}
.ws14_c03018{word-spacing:-1.012176px;}
.ws12_c03018{word-spacing:-0.974160px;}
.ws1b_c03018{word-spacing:-0.719712px;}
.ws19_c03018{word-spacing:-0.313632px;}
.ws15_c03018{word-spacing:-0.118800px;}
.ws18_c03018{word-spacing:-0.099792px;}
.ws1a_c03018{word-spacing:-0.085536px;}
.ws13_c03018{word-spacing:0.000000px;}
.ws1c_c03018{word-spacing:0.332640px;}
.ws1d_c03018{word-spacing:0.456192px;}
.ws11_c03018{word-spacing:25.090560px;}
.wsc_c03018{word-spacing:33.300288px;}
.ws10_c03018{word-spacing:34.836912px;}
.ws8_c03018{word-spacing:36.143712px;}
.ws6_c03018{word-spacing:36.742464px;}
.ws1_c03018{word-spacing:37.759392px;}
.ws0_c03018{word-spacing:38.020752px;}
.ws3_c03018{word-spacing:39.218256px;}
.wse_c03018{word-spacing:39.436848px;}
.ws5_c03018{word-spacing:39.902544px;}
.ws7_c03018{word-spacing:42.026688px;}
.ws9_c03018{word-spacing:57.903120px;}
._0_c03018{margin-left:-1.948320px;}
._3_c03018{width:1.482624px;}
._5_c03018{width:3.302640px;}
._2_c03018{width:10.145520px;}
._9_c03018{width:37.574064px;}
._a_c03018{width:40.296960px;}
._1_c03018{width:50.252400px;}
._4_c03018{width:51.530688px;}
._8_c03018{width:54.714528px;}
._7_c03018{width:66.204864px;}
._6_c03018{width:72.030816px;}
.fc0_c03018{color:rgb(0,0,0);}
.fs0_c03018{font-size:47.520000px;}
.fs1_c03018{font-size:60.480000px;}
.y0_c03018{bottom:0.000000px;}
.y1c_c03018{bottom:131.879874px;}
.y1b_c03018{bottom:146.999550px;}
.y1e_c03018{bottom:186.600234px;}
.y1d_c03018{bottom:196.320450px;}
.y1a_c03018{bottom:275.879730px;}
.y19_c03018{bottom:356.879946px;}
.y17_c03018{bottom:391.440054px;}
.y16_c03018{bottom:406.559730px;}
.y12_c03018{bottom:424.560306px;}
.y18_c03018{bottom:458.760450px;}
.y15_c03018{bottom:491.879514px;}
.y14_c03018{bottom:509.880090px;}
.y11_c03018{bottom:543.000342px;}
.y13_c03018{bottom:559.559874px;}
.y10_c03018{bottom:577.560450px;}
.y1f_c03018{bottom:614.280450px;}
.yc_c03018{bottom:667.558326px;}
.ye_c03018{bottom:707.160234px;}
.yd_c03018{bottom:716.880450px;}
.yb_c03018{bottom:781.318830px;}
.ya_c03018{bottom:796.438506px;}
.y9_c03018{bottom:877.438722px;}
.y7_c03018{bottom:926.759730px;}
.y3_c03018{bottom:944.760306px;}
.y8_c03018{bottom:979.319226px;}
.y6_c03018{bottom:1012.439478px;}
.y5_c03018{bottom:1030.440054px;}
.y2_c03018{bottom:1063.560306px;}
.y4_c03018{bottom:1079.759874px;}
.y1_c03018{bottom:1097.760450px;}
.yf_c03018{bottom:1134.840450px;}
.h3_c03018{height:32.530781px;}
.h1_c03018{height:41.696016px;}
.h2_c03018{height:41.812031px;}
.h4_c03018{height:54.654737px;}
.h0_c03018{height:1263.000000px;}
.w1_c03018{width:892.500000px;}
.w0_c03018{width:892.830000px;}
.x0_c03018{left:0.000000px;}
.xe_c03018{left:117.000000px;}
.x8_c03018{left:440.999856px;}
.x4_c03018{left:445.680576px;}
.xc_c03018{left:451.080000px;}
.x7_c03018{left:455.399604px;}
.x5_c03018{left:461.880144px;}
.x1_c03018{left:463.320000px;}
.xb_c03018{left:483.480360px;}
.x9_c03018{left:492.119496px;}
.x6_c03018{left:493.200576px;}
.xd_c03018{left:506.880360px;}
.x3_c03018{left:511.919892px;}
.x2_c03018{left:526.679604px;}
.xa_c03018{left:569.880036px;}
@media print{
.v0_c03018{vertical-align:0.000000pt;}
.v1_c03018{vertical-align:1.279488pt;}
.ls18_c03018{letter-spacing:-0.751872pt;}
.ls19_c03018{letter-spacing:-0.726528pt;}
.ls17_c03018{letter-spacing:-0.616704pt;}
.ls8_c03018{letter-spacing:-0.544896pt;}
.lsa_c03018{letter-spacing:-0.511104pt;}
.ls11_c03018{letter-spacing:-0.244992pt;}
.lsd_c03018{letter-spacing:-0.232320pt;}
.ls7_c03018{letter-spacing:-0.215424pt;}
.ls15_c03018{letter-spacing:-0.181632pt;}
.ls5_c03018{letter-spacing:-0.105600pt;}
.lsf_c03018{letter-spacing:-0.042240pt;}
.ls14_c03018{letter-spacing:0.000000pt;}
.ls2_c03018{letter-spacing:0.005376pt;}
.ls16_c03018{letter-spacing:0.012672pt;}
.ls6_c03018{letter-spacing:0.114048pt;}
.lse_c03018{letter-spacing:0.185856pt;}
.lsc_c03018{letter-spacing:0.451968pt;}
.ls13_c03018{letter-spacing:0.456960pt;}
.ls10_c03018{letter-spacing:0.477312pt;}
.lsb_c03018{letter-spacing:0.515328pt;}
.ls12_c03018{letter-spacing:0.528000pt;}
.ls9_c03018{letter-spacing:0.532224pt;}
.ls3_c03018{letter-spacing:0.544896pt;}
.ls0_c03018{letter-spacing:0.578688pt;}
.ls1_c03018{letter-spacing:0.637824pt;}
.ls4_c03018{letter-spacing:0.642048pt;}
.wsd_c03018{word-spacing:-13.445376pt;}
.wsb_c03018{word-spacing:-11.088000pt;}
.wsa_c03018{word-spacing:-11.037312pt;}
.wsf_c03018{word-spacing:-10.572672pt;}
.ws4_c03018{word-spacing:-10.344576pt;}
.ws2_c03018{word-spacing:-10.015104pt;}
.ws17_c03018{word-spacing:-0.963072pt;}
.ws16_c03018{word-spacing:-0.958848pt;}
.ws14_c03018{word-spacing:-0.899712pt;}
.ws12_c03018{word-spacing:-0.865920pt;}
.ws1b_c03018{word-spacing:-0.639744pt;}
.ws19_c03018{word-spacing:-0.278784pt;}
.ws15_c03018{word-spacing:-0.105600pt;}
.ws18_c03018{word-spacing:-0.088704pt;}
.ws1a_c03018{word-spacing:-0.076032pt;}
.ws13_c03018{word-spacing:0.000000pt;}
.ws1c_c03018{word-spacing:0.295680pt;}
.ws1d_c03018{word-spacing:0.405504pt;}
.ws11_c03018{word-spacing:22.302720pt;}
.wsc_c03018{word-spacing:29.600256pt;}
.ws10_c03018{word-spacing:30.966144pt;}
.ws8_c03018{word-spacing:32.127744pt;}
.ws6_c03018{word-spacing:32.659968pt;}
.ws1_c03018{word-spacing:33.563904pt;}
.ws0_c03018{word-spacing:33.796224pt;}
.ws3_c03018{word-spacing:34.860672pt;}
.wse_c03018{word-spacing:35.054976pt;}
.ws5_c03018{word-spacing:35.468928pt;}
.ws7_c03018{word-spacing:37.357056pt;}
.ws9_c03018{word-spacing:51.469440pt;}
._0_c03018{margin-left:-1.731840pt;}
._3_c03018{width:1.317888pt;}
._5_c03018{width:2.935680pt;}
._2_c03018{width:9.018240pt;}
._9_c03018{width:33.399168pt;}
._a_c03018{width:35.819520pt;}
._1_c03018{width:44.668800pt;}
._4_c03018{width:45.805056pt;}
._8_c03018{width:48.635136pt;}
._7_c03018{width:58.848768pt;}
._6_c03018{width:64.027392pt;}
.fs0_c03018{font-size:42.240000pt;}
.fs1_c03018{font-size:53.760000pt;}
.y0_c03018{bottom:0.000000pt;}
.y1c_c03018{bottom:117.226555pt;}
.y1b_c03018{bottom:130.666267pt;}
.y1e_c03018{bottom:165.866875pt;}
.y1d_c03018{bottom:174.507067pt;}
.y1a_c03018{bottom:245.226427pt;}
.y19_c03018{bottom:317.226619pt;}
.y17_c03018{bottom:347.946715pt;}
.y16_c03018{bottom:361.386427pt;}
.y12_c03018{bottom:377.386939pt;}
.y18_c03018{bottom:407.787067pt;}
.y15_c03018{bottom:437.226235pt;}
.y14_c03018{bottom:453.226747pt;}
.y11_c03018{bottom:482.666971pt;}
.y13_c03018{bottom:497.386555pt;}
.y10_c03018{bottom:513.387067pt;}
.y1f_c03018{bottom:546.027067pt;}
.yc_c03018{bottom:593.385179pt;}
.ye_c03018{bottom:628.586875pt;}
.yd_c03018{bottom:637.227067pt;}
.yb_c03018{bottom:694.505627pt;}
.ya_c03018{bottom:707.945339pt;}
.y9_c03018{bottom:779.945531pt;}
.y7_c03018{bottom:823.786427pt;}
.y3_c03018{bottom:839.786939pt;}
.y8_c03018{bottom:870.505979pt;}
.y6_c03018{bottom:899.946203pt;}
.y5_c03018{bottom:915.946715pt;}
.y2_c03018{bottom:945.386939pt;}
.y4_c03018{bottom:959.786555pt;}
.y1_c03018{bottom:975.787067pt;}
.yf_c03018{bottom:1008.747067pt;}
.h3_c03018{height:28.916250pt;}
.h1_c03018{height:37.063125pt;}
.h2_c03018{height:37.166250pt;}
.h4_c03018{height:48.581988pt;}
.h0_c03018{height:1122.666667pt;}
.w1_c03018{width:793.333333pt;}
.w0_c03018{width:793.626667pt;}
.x0_c03018{left:0.000000pt;}
.xe_c03018{left:104.000000pt;}
.x8_c03018{left:391.999872pt;}
.x4_c03018{left:396.160512pt;}
.xc_c03018{left:400.960000pt;}
.x7_c03018{left:404.799648pt;}
.x5_c03018{left:410.560128pt;}
.x1_c03018{left:411.840000pt;}
.xb_c03018{left:429.760320pt;}
.x9_c03018{left:437.439552pt;}
.x6_c03018{left:438.400512pt;}
.xd_c03018{left:450.560320pt;}
.x3_c03018{left:455.039904pt;}
.x2_c03018{left:468.159648pt;}
.xa_c03018{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03019 {
    display:none;
  }
  .loading-indicator_c03019.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03019 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03019 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03019" -> "#page-container .classname_c03019")
 */
.pf_c03019 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03019 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03019.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03019 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03019 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03019 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03019 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03019 {overflow:visible;}
  }
}
.c_c03019 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03019 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03019:after { /* webkit #35443 */
  content: '';
}
.t_c03019:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03019 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03019 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03019 { /* info for Javascript */
  display:none;
}
.l_c03019 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03019 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03019 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03019:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03019 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03019.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03019.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03019 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03019;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03019{font-family:ff1_c03019;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03019;src:url('chunks/assets/font_3f70ce9a05b56d483afb6512.woff2')format("woff");}.ff2_c03019{font-family:ff2_c03019;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03019;src:url('chunks/assets/font_50cca111b603441d4893070b.woff2')format("woff");}.ff3_c03019{font-family:ff3_c03019;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03019{vertical-align:0.000000px;}
.v2_c03019{vertical-align:1.439424px;}
.v1_c03019{vertical-align:33.121440px;}
.ls8_c03019{letter-spacing:-0.613008px;}
.lsa_c03019{letter-spacing:-0.574992px;}
.ls12_c03019{letter-spacing:-0.389664px;}
.lse_c03019{letter-spacing:-0.375408px;}
.ls10_c03019{letter-spacing:-0.275616px;}
.lsd_c03019{letter-spacing:-0.261360px;}
.ls7_c03019{letter-spacing:-0.242352px;}
.ls5_c03019{letter-spacing:-0.118800px;}
.ls14_c03019{letter-spacing:0.000000px;}
.ls2_c03019{letter-spacing:0.006048px;}
.ls6_c03019{letter-spacing:0.128304px;}
.lsc_c03019{letter-spacing:0.508464px;}
.ls13_c03019{letter-spacing:0.514080px;}
.lsf_c03019{letter-spacing:0.536976px;}
.lsb_c03019{letter-spacing:0.579744px;}
.ls11_c03019{letter-spacing:0.594000px;}
.ls9_c03019{letter-spacing:0.598752px;}
.ls3_c03019{letter-spacing:0.613008px;}
.ls0_c03019{letter-spacing:0.651024px;}
.ls1_c03019{letter-spacing:0.717552px;}
.ls4_c03019{letter-spacing:0.722304px;}
.sc__c03019{text-shadow:none;}
.sc0_c03019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03019{-webkit-text-stroke:0px transparent;}
.sc0_c03019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03019{word-spacing:-15.126048px;}
.wse_c03019{word-spacing:-12.474000px;}
.wsd_c03019{word-spacing:-12.459744px;}
.ws9_c03019{word-spacing:-12.416976px;}
.ws4_c03019{word-spacing:-11.637648px;}
.ws2_c03019{word-spacing:-11.266992px;}
.ws14_c03019{word-spacing:-1.083456px;}
.ws13_c03019{word-spacing:-1.078704px;}
.ws11_c03019{word-spacing:-1.012176px;}
.wsf_c03019{word-spacing:-0.974160px;}
.ws19_c03019{word-spacing:-0.719712px;}
.ws12_c03019{word-spacing:-0.118800px;}
.ws15_c03019{word-spacing:-0.099792px;}
.ws17_c03019{word-spacing:-0.085536px;}
.ws10_c03019{word-spacing:0.000000px;}
.ws16_c03019{word-spacing:0.014256px;}
.ws18_c03019{word-spacing:0.028512px;}
.wsa_c03019{word-spacing:30.298752px;}
.wsb_c03019{word-spacing:33.300288px;}
.ws8_c03019{word-spacing:36.143712px;}
.ws6_c03019{word-spacing:36.742464px;}
.ws1_c03019{word-spacing:37.759392px;}
.ws0_c03019{word-spacing:38.020752px;}
.ws3_c03019{word-spacing:39.218256px;}
.ws5_c03019{word-spacing:39.902544px;}
.ws7_c03019{word-spacing:42.026688px;}
._0_c03019{margin-left:-1.948320px;}
._3_c03019{width:1.482624px;}
._5_c03019{width:3.302640px;}
._2_c03019{width:10.145520px;}
._1_c03019{width:50.252400px;}
._4_c03019{width:51.530688px;}
.fc0_c03019{color:rgb(0,0,0);}
.fs0_c03019{font-size:47.520000px;}
.fs1_c03019{font-size:60.480000px;}
.y0_c03019{bottom:0.000000px;}
.y19_c03019{bottom:146.998362px;}
.y1b_c03019{bottom:186.600234px;}
.y1a_c03019{bottom:196.320450px;}
.y18_c03019{bottom:275.878542px;}
.y17_c03019{bottom:356.878758px;}
.y15_c03019{bottom:406.559730px;}
.y11_c03019{bottom:424.560306px;}
.y16_c03019{bottom:458.759262px;}
.y14_c03019{bottom:491.879514px;}
.y13_c03019{bottom:509.880090px;}
.y10_c03019{bottom:543.000342px;}
.y12_c03019{bottom:559.559874px;}
.yf_c03019{bottom:577.560450px;}
.y1c_c03019{bottom:614.280450px;}
.yb_c03019{bottom:667.558326px;}
.yd_c03019{bottom:707.160234px;}
.yc_c03019{bottom:716.880450px;}
.ya_c03019{bottom:796.438506px;}
.y9_c03019{bottom:877.438722px;}
.y7_c03019{bottom:926.759730px;}
.y3_c03019{bottom:944.760306px;}
.y8_c03019{bottom:979.319226px;}
.y6_c03019{bottom:1012.439478px;}
.y5_c03019{bottom:1030.440054px;}
.y2_c03019{bottom:1063.560306px;}
.y4_c03019{bottom:1079.759874px;}
.y1_c03019{bottom:1097.760450px;}
.ye_c03019{bottom:1134.840450px;}
.h3_c03019{height:32.530781px;}
.h1_c03019{height:41.696016px;}
.h2_c03019{height:41.812031px;}
.h5_c03019{height:54.654737px;}
.h4_c03019{height:74.817456px;}
.h0_c03019{height:1263.000000px;}
.w1_c03019{width:892.500000px;}
.w0_c03019{width:892.830000px;}
.x0_c03019{left:0.000000px;}
.xd_c03019{left:117.000000px;}
.x8_c03019{left:440.999856px;}
.x4_c03019{left:445.680576px;}
.xb_c03019{left:451.080000px;}
.x7_c03019{left:455.399604px;}
.x5_c03019{left:461.880144px;}
.x1_c03019{left:463.320000px;}
.xa_c03019{left:483.480360px;}
.x9_c03019{left:492.119496px;}
.x6_c03019{left:493.200576px;}
.xc_c03019{left:506.880360px;}
.x3_c03019{left:511.919892px;}
.x2_c03019{left:526.679604px;}
@media print{
.v0_c03019{vertical-align:0.000000pt;}
.v2_c03019{vertical-align:1.279488pt;}
.v1_c03019{vertical-align:29.441280pt;}
.ls8_c03019{letter-spacing:-0.544896pt;}
.lsa_c03019{letter-spacing:-0.511104pt;}
.ls12_c03019{letter-spacing:-0.346368pt;}
.lse_c03019{letter-spacing:-0.333696pt;}
.ls10_c03019{letter-spacing:-0.244992pt;}
.lsd_c03019{letter-spacing:-0.232320pt;}
.ls7_c03019{letter-spacing:-0.215424pt;}
.ls5_c03019{letter-spacing:-0.105600pt;}
.ls14_c03019{letter-spacing:0.000000pt;}
.ls2_c03019{letter-spacing:0.005376pt;}
.ls6_c03019{letter-spacing:0.114048pt;}
.lsc_c03019{letter-spacing:0.451968pt;}
.ls13_c03019{letter-spacing:0.456960pt;}
.lsf_c03019{letter-spacing:0.477312pt;}
.lsb_c03019{letter-spacing:0.515328pt;}
.ls11_c03019{letter-spacing:0.528000pt;}
.ls9_c03019{letter-spacing:0.532224pt;}
.ls3_c03019{letter-spacing:0.544896pt;}
.ls0_c03019{letter-spacing:0.578688pt;}
.ls1_c03019{letter-spacing:0.637824pt;}
.ls4_c03019{letter-spacing:0.642048pt;}
.wsc_c03019{word-spacing:-13.445376pt;}
.wse_c03019{word-spacing:-11.088000pt;}
.wsd_c03019{word-spacing:-11.075328pt;}
.ws9_c03019{word-spacing:-11.037312pt;}
.ws4_c03019{word-spacing:-10.344576pt;}
.ws2_c03019{word-spacing:-10.015104pt;}
.ws14_c03019{word-spacing:-0.963072pt;}
.ws13_c03019{word-spacing:-0.958848pt;}
.ws11_c03019{word-spacing:-0.899712pt;}
.wsf_c03019{word-spacing:-0.865920pt;}
.ws19_c03019{word-spacing:-0.639744pt;}
.ws12_c03019{word-spacing:-0.105600pt;}
.ws15_c03019{word-spacing:-0.088704pt;}
.ws17_c03019{word-spacing:-0.076032pt;}
.ws10_c03019{word-spacing:0.000000pt;}
.ws16_c03019{word-spacing:0.012672pt;}
.ws18_c03019{word-spacing:0.025344pt;}
.wsa_c03019{word-spacing:26.932224pt;}
.wsb_c03019{word-spacing:29.600256pt;}
.ws8_c03019{word-spacing:32.127744pt;}
.ws6_c03019{word-spacing:32.659968pt;}
.ws1_c03019{word-spacing:33.563904pt;}
.ws0_c03019{word-spacing:33.796224pt;}
.ws3_c03019{word-spacing:34.860672pt;}
.ws5_c03019{word-spacing:35.468928pt;}
.ws7_c03019{word-spacing:37.357056pt;}
._0_c03019{margin-left:-1.731840pt;}
._3_c03019{width:1.317888pt;}
._5_c03019{width:2.935680pt;}
._2_c03019{width:9.018240pt;}
._1_c03019{width:44.668800pt;}
._4_c03019{width:45.805056pt;}
.fs0_c03019{font-size:42.240000pt;}
.fs1_c03019{font-size:53.760000pt;}
.y0_c03019{bottom:0.000000pt;}
.y19_c03019{bottom:130.665211pt;}
.y1b_c03019{bottom:165.866875pt;}
.y1a_c03019{bottom:174.507067pt;}
.y18_c03019{bottom:245.225371pt;}
.y17_c03019{bottom:317.225563pt;}
.y15_c03019{bottom:361.386427pt;}
.y11_c03019{bottom:377.386939pt;}
.y16_c03019{bottom:407.786011pt;}
.y14_c03019{bottom:437.226235pt;}
.y13_c03019{bottom:453.226747pt;}
.y10_c03019{bottom:482.666971pt;}
.y12_c03019{bottom:497.386555pt;}
.yf_c03019{bottom:513.387067pt;}
.y1c_c03019{bottom:546.027067pt;}
.yb_c03019{bottom:593.385179pt;}
.yd_c03019{bottom:628.586875pt;}
.yc_c03019{bottom:637.227067pt;}
.ya_c03019{bottom:707.945339pt;}
.y9_c03019{bottom:779.945531pt;}
.y7_c03019{bottom:823.786427pt;}
.y3_c03019{bottom:839.786939pt;}
.y8_c03019{bottom:870.505979pt;}
.y6_c03019{bottom:899.946203pt;}
.y5_c03019{bottom:915.946715pt;}
.y2_c03019{bottom:945.386939pt;}
.y4_c03019{bottom:959.786555pt;}
.y1_c03019{bottom:975.787067pt;}
.ye_c03019{bottom:1008.747067pt;}
.h3_c03019{height:28.916250pt;}
.h1_c03019{height:37.063125pt;}
.h2_c03019{height:37.166250pt;}
.h5_c03019{height:48.581988pt;}
.h4_c03019{height:66.504405pt;}
.h0_c03019{height:1122.666667pt;}
.w1_c03019{width:793.333333pt;}
.w0_c03019{width:793.626667pt;}
.x0_c03019{left:0.000000pt;}
.xd_c03019{left:104.000000pt;}
.x8_c03019{left:391.999872pt;}
.x4_c03019{left:396.160512pt;}
.xb_c03019{left:400.960000pt;}
.x7_c03019{left:404.799648pt;}
.x5_c03019{left:410.560128pt;}
.x1_c03019{left:411.840000pt;}
.xa_c03019{left:429.760320pt;}
.x9_c03019{left:437.439552pt;}
.x6_c03019{left:438.400512pt;}
.xc_c03019{left:450.560320pt;}
.x3_c03019{left:455.039904pt;}
.x2_c03019{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03020 {
    display:none;
  }
  .loading-indicator_c03020.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03020 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03020 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03020" -> "#page-container .classname_c03020")
 */
.pf_c03020 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03020 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03020.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03020 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03020 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03020 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03020 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03020 {overflow:visible;}
  }
}
.c_c03020 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03020 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03020:after { /* webkit #35443 */
  content: '';
}
.t_c03020:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03020 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03020 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03020 { /* info for Javascript */
  display:none;
}
.l_c03020 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03020 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03020 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03020:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03020 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03020.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03020.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03020 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03020{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03020;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03020{font-family:ff1_c03020;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03020;src:url('chunks/assets/font_11a4b4de9dfc2439eb009b18.woff2')format("woff");}.ff2_c03020{font-family:ff2_c03020;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03020;src:url('chunks/assets/font_50cca111b603441d4893070b.woff2')format("woff");}.ff3_c03020{font-family:ff3_c03020;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03020{vertical-align:0.000000px;}
.v1_c03020{vertical-align:1.439424px;}
.ls8_c03020{letter-spacing:-0.613008px;}
.lsa_c03020{letter-spacing:-0.574992px;}
.lse_c03020{letter-spacing:-0.375408px;}
.ls10_c03020{letter-spacing:-0.275616px;}
.lsd_c03020{letter-spacing:-0.261360px;}
.ls7_c03020{letter-spacing:-0.242352px;}
.ls5_c03020{letter-spacing:-0.118800px;}
.ls13_c03020{letter-spacing:0.000000px;}
.ls2_c03020{letter-spacing:0.006048px;}
.ls6_c03020{letter-spacing:0.128304px;}
.lsc_c03020{letter-spacing:0.508464px;}
.ls12_c03020{letter-spacing:0.514080px;}
.lsf_c03020{letter-spacing:0.536976px;}
.lsb_c03020{letter-spacing:0.579744px;}
.ls11_c03020{letter-spacing:0.594000px;}
.ls9_c03020{letter-spacing:0.598752px;}
.ls3_c03020{letter-spacing:0.613008px;}
.ls0_c03020{letter-spacing:0.651024px;}
.ls1_c03020{letter-spacing:0.717552px;}
.ls4_c03020{letter-spacing:0.722304px;}
.sc__c03020{text-shadow:none;}
.sc0_c03020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03020{-webkit-text-stroke:0px transparent;}
.sc0_c03020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03020{word-spacing:-15.126048px;}
.wsa_c03020{word-spacing:-12.474000px;}
.ws9_c03020{word-spacing:-12.416976px;}
.ws4_c03020{word-spacing:-11.637648px;}
.ws2_c03020{word-spacing:-11.266992px;}
.ws12_c03020{word-spacing:-1.083456px;}
.ws11_c03020{word-spacing:-1.078704px;}
.wsf_c03020{word-spacing:-1.012176px;}
.wsd_c03020{word-spacing:-0.974160px;}
.ws16_c03020{word-spacing:-0.719712px;}
.ws10_c03020{word-spacing:-0.118800px;}
.ws13_c03020{word-spacing:-0.099792px;}
.ws15_c03020{word-spacing:-0.085536px;}
.wse_c03020{word-spacing:0.000000px;}
.ws14_c03020{word-spacing:0.014256px;}
.wsb_c03020{word-spacing:33.300288px;}
.ws8_c03020{word-spacing:36.143712px;}
.ws6_c03020{word-spacing:36.742464px;}
.ws1_c03020{word-spacing:37.759392px;}
.ws0_c03020{word-spacing:38.020752px;}
.ws3_c03020{word-spacing:39.218256px;}
.ws5_c03020{word-spacing:39.902544px;}
.ws7_c03020{word-spacing:42.026688px;}
._0_c03020{margin-left:-1.948320px;}
._3_c03020{width:1.482624px;}
._5_c03020{width:3.302640px;}
._2_c03020{width:10.145520px;}
._1_c03020{width:50.252400px;}
._4_c03020{width:51.530688px;}
.fc0_c03020{color:rgb(0,0,0);}
.fs0_c03020{font-size:47.520000px;}
.fs1_c03020{font-size:60.480000px;}
.y0_c03020{bottom:0.000000px;}
.y19_c03020{bottom:146.998362px;}
.y1b_c03020{bottom:186.600234px;}
.y1a_c03020{bottom:196.320450px;}
.y18_c03020{bottom:275.878542px;}
.y17_c03020{bottom:356.878758px;}
.y15_c03020{bottom:406.559730px;}
.y11_c03020{bottom:424.560306px;}
.y16_c03020{bottom:458.759262px;}
.y14_c03020{bottom:491.879514px;}
.y13_c03020{bottom:509.880090px;}
.y10_c03020{bottom:543.000342px;}
.y12_c03020{bottom:559.559874px;}
.yf_c03020{bottom:577.560450px;}
.y1c_c03020{bottom:614.280450px;}
.yb_c03020{bottom:667.558326px;}
.yd_c03020{bottom:707.160234px;}
.yc_c03020{bottom:716.880450px;}
.ya_c03020{bottom:796.438506px;}
.y9_c03020{bottom:877.438722px;}
.y7_c03020{bottom:926.759730px;}
.y3_c03020{bottom:944.760306px;}
.y8_c03020{bottom:979.319226px;}
.y6_c03020{bottom:1012.439478px;}
.y5_c03020{bottom:1030.440054px;}
.y2_c03020{bottom:1063.560306px;}
.y4_c03020{bottom:1079.759874px;}
.y1_c03020{bottom:1097.760450px;}
.ye_c03020{bottom:1134.840450px;}
.h3_c03020{height:32.530781px;}
.h1_c03020{height:41.696016px;}
.h2_c03020{height:41.812031px;}
.h4_c03020{height:54.654737px;}
.h0_c03020{height:1263.000000px;}
.w1_c03020{width:892.500000px;}
.w0_c03020{width:892.830000px;}
.x0_c03020{left:0.000000px;}
.xd_c03020{left:117.000000px;}
.x8_c03020{left:440.999856px;}
.x4_c03020{left:445.680576px;}
.xb_c03020{left:451.080000px;}
.x7_c03020{left:455.399604px;}
.x5_c03020{left:461.880144px;}
.x1_c03020{left:463.320000px;}
.xa_c03020{left:483.480360px;}
.x9_c03020{left:492.119496px;}
.x6_c03020{left:493.200576px;}
.xc_c03020{left:506.880360px;}
.x3_c03020{left:511.919892px;}
.x2_c03020{left:526.679604px;}
@media print{
.v0_c03020{vertical-align:0.000000pt;}
.v1_c03020{vertical-align:1.279488pt;}
.ls8_c03020{letter-spacing:-0.544896pt;}
.lsa_c03020{letter-spacing:-0.511104pt;}
.lse_c03020{letter-spacing:-0.333696pt;}
.ls10_c03020{letter-spacing:-0.244992pt;}
.lsd_c03020{letter-spacing:-0.232320pt;}
.ls7_c03020{letter-spacing:-0.215424pt;}
.ls5_c03020{letter-spacing:-0.105600pt;}
.ls13_c03020{letter-spacing:0.000000pt;}
.ls2_c03020{letter-spacing:0.005376pt;}
.ls6_c03020{letter-spacing:0.114048pt;}
.lsc_c03020{letter-spacing:0.451968pt;}
.ls12_c03020{letter-spacing:0.456960pt;}
.lsf_c03020{letter-spacing:0.477312pt;}
.lsb_c03020{letter-spacing:0.515328pt;}
.ls11_c03020{letter-spacing:0.528000pt;}
.ls9_c03020{letter-spacing:0.532224pt;}
.ls3_c03020{letter-spacing:0.544896pt;}
.ls0_c03020{letter-spacing:0.578688pt;}
.ls1_c03020{letter-spacing:0.637824pt;}
.ls4_c03020{letter-spacing:0.642048pt;}
.wsc_c03020{word-spacing:-13.445376pt;}
.wsa_c03020{word-spacing:-11.088000pt;}
.ws9_c03020{word-spacing:-11.037312pt;}
.ws4_c03020{word-spacing:-10.344576pt;}
.ws2_c03020{word-spacing:-10.015104pt;}
.ws12_c03020{word-spacing:-0.963072pt;}
.ws11_c03020{word-spacing:-0.958848pt;}
.wsf_c03020{word-spacing:-0.899712pt;}
.wsd_c03020{word-spacing:-0.865920pt;}
.ws16_c03020{word-spacing:-0.639744pt;}
.ws10_c03020{word-spacing:-0.105600pt;}
.ws13_c03020{word-spacing:-0.088704pt;}
.ws15_c03020{word-spacing:-0.076032pt;}
.wse_c03020{word-spacing:0.000000pt;}
.ws14_c03020{word-spacing:0.012672pt;}
.wsb_c03020{word-spacing:29.600256pt;}
.ws8_c03020{word-spacing:32.127744pt;}
.ws6_c03020{word-spacing:32.659968pt;}
.ws1_c03020{word-spacing:33.563904pt;}
.ws0_c03020{word-spacing:33.796224pt;}
.ws3_c03020{word-spacing:34.860672pt;}
.ws5_c03020{word-spacing:35.468928pt;}
.ws7_c03020{word-spacing:37.357056pt;}
._0_c03020{margin-left:-1.731840pt;}
._3_c03020{width:1.317888pt;}
._5_c03020{width:2.935680pt;}
._2_c03020{width:9.018240pt;}
._1_c03020{width:44.668800pt;}
._4_c03020{width:45.805056pt;}
.fs0_c03020{font-size:42.240000pt;}
.fs1_c03020{font-size:53.760000pt;}
.y0_c03020{bottom:0.000000pt;}
.y19_c03020{bottom:130.665211pt;}
.y1b_c03020{bottom:165.866875pt;}
.y1a_c03020{bottom:174.507067pt;}
.y18_c03020{bottom:245.225371pt;}
.y17_c03020{bottom:317.225563pt;}
.y15_c03020{bottom:361.386427pt;}
.y11_c03020{bottom:377.386939pt;}
.y16_c03020{bottom:407.786011pt;}
.y14_c03020{bottom:437.226235pt;}
.y13_c03020{bottom:453.226747pt;}
.y10_c03020{bottom:482.666971pt;}
.y12_c03020{bottom:497.386555pt;}
.yf_c03020{bottom:513.387067pt;}
.y1c_c03020{bottom:546.027067pt;}
.yb_c03020{bottom:593.385179pt;}
.yd_c03020{bottom:628.586875pt;}
.yc_c03020{bottom:637.227067pt;}
.ya_c03020{bottom:707.945339pt;}
.y9_c03020{bottom:779.945531pt;}
.y7_c03020{bottom:823.786427pt;}
.y3_c03020{bottom:839.786939pt;}
.y8_c03020{bottom:870.505979pt;}
.y6_c03020{bottom:899.946203pt;}
.y5_c03020{bottom:915.946715pt;}
.y2_c03020{bottom:945.386939pt;}
.y4_c03020{bottom:959.786555pt;}
.y1_c03020{bottom:975.787067pt;}
.ye_c03020{bottom:1008.747067pt;}
.h3_c03020{height:28.916250pt;}
.h1_c03020{height:37.063125pt;}
.h2_c03020{height:37.166250pt;}
.h4_c03020{height:48.581988pt;}
.h0_c03020{height:1122.666667pt;}
.w1_c03020{width:793.333333pt;}
.w0_c03020{width:793.626667pt;}
.x0_c03020{left:0.000000pt;}
.xd_c03020{left:104.000000pt;}
.x8_c03020{left:391.999872pt;}
.x4_c03020{left:396.160512pt;}
.xb_c03020{left:400.960000pt;}
.x7_c03020{left:404.799648pt;}
.x5_c03020{left:410.560128pt;}
.x1_c03020{left:411.840000pt;}
.xa_c03020{left:429.760320pt;}
.x9_c03020{left:437.439552pt;}
.x6_c03020{left:438.400512pt;}
.xc_c03020{left:450.560320pt;}
.x3_c03020{left:455.039904pt;}
.x2_c03020{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03021 {
    display:none;
  }
  .loading-indicator_c03021.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03021 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03021 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03021" -> "#page-container .classname_c03021")
 */
.pf_c03021 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03021 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03021.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03021 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03021 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03021 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03021 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03021 {overflow:visible;}
  }
}
.c_c03021 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03021 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03021:after { /* webkit #35443 */
  content: '';
}
.t_c03021:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03021 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03021 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03021 { /* info for Javascript */
  display:none;
}
.l_c03021 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03021 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03021 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03021:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03021 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03021.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03021.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03021 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03021{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03021;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03021{font-family:ff1_c03021;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03021;src:url('chunks/assets/font_9a7ab704b45cc9af15c2a12c.woff2')format("woff");}.ff2_c03021{font-family:ff2_c03021;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03021;src:url('chunks/assets/font_50cca111b603441d4893070b.woff2')format("woff");}.ff3_c03021{font-family:ff3_c03021;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03021{vertical-align:0.000000px;}
.v1_c03021{vertical-align:1.439424px;}
.ls13_c03021{letter-spacing:-0.793584px;}
.ls14_c03021{letter-spacing:-0.736560px;}
.ls8_c03021{letter-spacing:-0.613008px;}
.lsa_c03021{letter-spacing:-0.574992px;}
.lsf_c03021{letter-spacing:-0.275616px;}
.ls15_c03021{letter-spacing:-0.270864px;}
.lsd_c03021{letter-spacing:-0.261360px;}
.ls7_c03021{letter-spacing:-0.242352px;}
.ls5_c03021{letter-spacing:-0.118800px;}
.ls12_c03021{letter-spacing:0.000000px;}
.ls2_c03021{letter-spacing:0.006048px;}
.ls6_c03021{letter-spacing:0.128304px;}
.lsc_c03021{letter-spacing:0.508464px;}
.ls11_c03021{letter-spacing:0.514080px;}
.lse_c03021{letter-spacing:0.536976px;}
.lsb_c03021{letter-spacing:0.579744px;}
.ls10_c03021{letter-spacing:0.594000px;}
.ls9_c03021{letter-spacing:0.598752px;}
.ls3_c03021{letter-spacing:0.613008px;}
.ls0_c03021{letter-spacing:0.651024px;}
.ls1_c03021{letter-spacing:0.717552px;}
.ls4_c03021{letter-spacing:0.722304px;}
.sc__c03021{text-shadow:none;}
.sc0_c03021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03021{-webkit-text-stroke:0px transparent;}
.sc0_c03021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03021{word-spacing:-15.126048px;}
.wsa_c03021{word-spacing:-12.474000px;}
.ws8_c03021{word-spacing:-12.459744px;}
.ws9_c03021{word-spacing:-12.416976px;}
.ws4_c03021{word-spacing:-11.637648px;}
.ws2_c03021{word-spacing:-11.266992px;}
.ws14_c03021{word-spacing:-1.083456px;}
.ws13_c03021{word-spacing:-1.078704px;}
.ws11_c03021{word-spacing:-1.012176px;}
.wsf_c03021{word-spacing:-0.974160px;}
.ws17_c03021{word-spacing:-0.719712px;}
.ws12_c03021{word-spacing:-0.118800px;}
.ws15_c03021{word-spacing:-0.099792px;}
.ws19_c03021{word-spacing:-0.090288px;}
.ws16_c03021{word-spacing:-0.085536px;}
.ws10_c03021{word-spacing:0.000000px;}
.ws18_c03021{word-spacing:0.432432px;}
.wse_c03021{word-spacing:6.629040px;}
.wsb_c03021{word-spacing:33.300288px;}
.wsd_c03021{word-spacing:34.836912px;}
.ws6_c03021{word-spacing:36.742464px;}
.ws1_c03021{word-spacing:37.759392px;}
.ws0_c03021{word-spacing:38.020752px;}
.ws3_c03021{word-spacing:39.218256px;}
.ws5_c03021{word-spacing:39.902544px;}
.ws7_c03021{word-spacing:42.026688px;}
._0_c03021{margin-left:-1.948320px;}
._3_c03021{width:1.482624px;}
._5_c03021{width:3.302640px;}
._2_c03021{width:10.145520px;}
._7_c03021{width:19.982160px;}
._8_c03021{width:23.451120px;}
._6_c03021{width:24.691392px;}
._1_c03021{width:50.252400px;}
._4_c03021{width:51.530688px;}
.fc0_c03021{color:rgb(0,0,0);}
.fs0_c03021{font-size:47.520000px;}
.fs1_c03021{font-size:60.480000px;}
.y0_c03021{bottom:0.000000px;}
.y1a_c03021{bottom:131.878686px;}
.y19_c03021{bottom:146.998362px;}
.y1c_c03021{bottom:186.600234px;}
.y1b_c03021{bottom:196.320450px;}
.y18_c03021{bottom:275.878542px;}
.y17_c03021{bottom:356.878758px;}
.y15_c03021{bottom:406.559730px;}
.y11_c03021{bottom:424.560306px;}
.y16_c03021{bottom:458.759262px;}
.y14_c03021{bottom:491.879514px;}
.y13_c03021{bottom:509.880090px;}
.y10_c03021{bottom:543.000342px;}
.y12_c03021{bottom:559.559874px;}
.yf_c03021{bottom:577.560450px;}
.y1d_c03021{bottom:614.280450px;}
.yb_c03021{bottom:667.558326px;}
.yd_c03021{bottom:707.160234px;}
.yc_c03021{bottom:716.880450px;}
.ya_c03021{bottom:796.438506px;}
.y9_c03021{bottom:877.438722px;}
.y7_c03021{bottom:926.759730px;}
.y3_c03021{bottom:944.760306px;}
.y8_c03021{bottom:979.319226px;}
.y6_c03021{bottom:1012.439478px;}
.y5_c03021{bottom:1030.440054px;}
.y2_c03021{bottom:1063.560306px;}
.y4_c03021{bottom:1079.759874px;}
.y1_c03021{bottom:1097.760450px;}
.ye_c03021{bottom:1134.840450px;}
.h3_c03021{height:32.530781px;}
.h1_c03021{height:41.696016px;}
.h2_c03021{height:41.812031px;}
.h4_c03021{height:54.654737px;}
.h0_c03021{height:1263.000000px;}
.w1_c03021{width:892.500000px;}
.w0_c03021{width:892.830000px;}
.x0_c03021{left:0.000000px;}
.xd_c03021{left:117.000000px;}
.x8_c03021{left:440.999856px;}
.x4_c03021{left:445.680576px;}
.xb_c03021{left:451.080000px;}
.x7_c03021{left:455.399604px;}
.x5_c03021{left:461.880144px;}
.x1_c03021{left:463.320000px;}
.xa_c03021{left:483.480360px;}
.x9_c03021{left:492.119496px;}
.x6_c03021{left:493.200576px;}
.xc_c03021{left:506.880360px;}
.x3_c03021{left:511.919892px;}
.x2_c03021{left:526.679604px;}
.xe_c03021{left:569.880036px;}
@media print{
.v0_c03021{vertical-align:0.000000pt;}
.v1_c03021{vertical-align:1.279488pt;}
.ls13_c03021{letter-spacing:-0.705408pt;}
.ls14_c03021{letter-spacing:-0.654720pt;}
.ls8_c03021{letter-spacing:-0.544896pt;}
.lsa_c03021{letter-spacing:-0.511104pt;}
.lsf_c03021{letter-spacing:-0.244992pt;}
.ls15_c03021{letter-spacing:-0.240768pt;}
.lsd_c03021{letter-spacing:-0.232320pt;}
.ls7_c03021{letter-spacing:-0.215424pt;}
.ls5_c03021{letter-spacing:-0.105600pt;}
.ls12_c03021{letter-spacing:0.000000pt;}
.ls2_c03021{letter-spacing:0.005376pt;}
.ls6_c03021{letter-spacing:0.114048pt;}
.lsc_c03021{letter-spacing:0.451968pt;}
.ls11_c03021{letter-spacing:0.456960pt;}
.lse_c03021{letter-spacing:0.477312pt;}
.lsb_c03021{letter-spacing:0.515328pt;}
.ls10_c03021{letter-spacing:0.528000pt;}
.ls9_c03021{letter-spacing:0.532224pt;}
.ls3_c03021{letter-spacing:0.544896pt;}
.ls0_c03021{letter-spacing:0.578688pt;}
.ls1_c03021{letter-spacing:0.637824pt;}
.ls4_c03021{letter-spacing:0.642048pt;}
.wsc_c03021{word-spacing:-13.445376pt;}
.wsa_c03021{word-spacing:-11.088000pt;}
.ws8_c03021{word-spacing:-11.075328pt;}
.ws9_c03021{word-spacing:-11.037312pt;}
.ws4_c03021{word-spacing:-10.344576pt;}
.ws2_c03021{word-spacing:-10.015104pt;}
.ws14_c03021{word-spacing:-0.963072pt;}
.ws13_c03021{word-spacing:-0.958848pt;}
.ws11_c03021{word-spacing:-0.899712pt;}
.wsf_c03021{word-spacing:-0.865920pt;}
.ws17_c03021{word-spacing:-0.639744pt;}
.ws12_c03021{word-spacing:-0.105600pt;}
.ws15_c03021{word-spacing:-0.088704pt;}
.ws19_c03021{word-spacing:-0.080256pt;}
.ws16_c03021{word-spacing:-0.076032pt;}
.ws10_c03021{word-spacing:0.000000pt;}
.ws18_c03021{word-spacing:0.384384pt;}
.wse_c03021{word-spacing:5.892480pt;}
.wsb_c03021{word-spacing:29.600256pt;}
.wsd_c03021{word-spacing:30.966144pt;}
.ws6_c03021{word-spacing:32.659968pt;}
.ws1_c03021{word-spacing:33.563904pt;}
.ws0_c03021{word-spacing:33.796224pt;}
.ws3_c03021{word-spacing:34.860672pt;}
.ws5_c03021{word-spacing:35.468928pt;}
.ws7_c03021{word-spacing:37.357056pt;}
._0_c03021{margin-left:-1.731840pt;}
._3_c03021{width:1.317888pt;}
._5_c03021{width:2.935680pt;}
._2_c03021{width:9.018240pt;}
._7_c03021{width:17.761920pt;}
._8_c03021{width:20.845440pt;}
._6_c03021{width:21.947904pt;}
._1_c03021{width:44.668800pt;}
._4_c03021{width:45.805056pt;}
.fs0_c03021{font-size:42.240000pt;}
.fs1_c03021{font-size:53.760000pt;}
.y0_c03021{bottom:0.000000pt;}
.y1a_c03021{bottom:117.225499pt;}
.y19_c03021{bottom:130.665211pt;}
.y1c_c03021{bottom:165.866875pt;}
.y1b_c03021{bottom:174.507067pt;}
.y18_c03021{bottom:245.225371pt;}
.y17_c03021{bottom:317.225563pt;}
.y15_c03021{bottom:361.386427pt;}
.y11_c03021{bottom:377.386939pt;}
.y16_c03021{bottom:407.786011pt;}
.y14_c03021{bottom:437.226235pt;}
.y13_c03021{bottom:453.226747pt;}
.y10_c03021{bottom:482.666971pt;}
.y12_c03021{bottom:497.386555pt;}
.yf_c03021{bottom:513.387067pt;}
.y1d_c03021{bottom:546.027067pt;}
.yb_c03021{bottom:593.385179pt;}
.yd_c03021{bottom:628.586875pt;}
.yc_c03021{bottom:637.227067pt;}
.ya_c03021{bottom:707.945339pt;}
.y9_c03021{bottom:779.945531pt;}
.y7_c03021{bottom:823.786427pt;}
.y3_c03021{bottom:839.786939pt;}
.y8_c03021{bottom:870.505979pt;}
.y6_c03021{bottom:899.946203pt;}
.y5_c03021{bottom:915.946715pt;}
.y2_c03021{bottom:945.386939pt;}
.y4_c03021{bottom:959.786555pt;}
.y1_c03021{bottom:975.787067pt;}
.ye_c03021{bottom:1008.747067pt;}
.h3_c03021{height:28.916250pt;}
.h1_c03021{height:37.063125pt;}
.h2_c03021{height:37.166250pt;}
.h4_c03021{height:48.581988pt;}
.h0_c03021{height:1122.666667pt;}
.w1_c03021{width:793.333333pt;}
.w0_c03021{width:793.626667pt;}
.x0_c03021{left:0.000000pt;}
.xd_c03021{left:104.000000pt;}
.x8_c03021{left:391.999872pt;}
.x4_c03021{left:396.160512pt;}
.xb_c03021{left:400.960000pt;}
.x7_c03021{left:404.799648pt;}
.x5_c03021{left:410.560128pt;}
.x1_c03021{left:411.840000pt;}
.xa_c03021{left:429.760320pt;}
.x9_c03021{left:437.439552pt;}
.x6_c03021{left:438.400512pt;}
.xc_c03021{left:450.560320pt;}
.x3_c03021{left:455.039904pt;}
.x2_c03021{left:468.159648pt;}
.xe_c03021{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03022 {
    display:none;
  }
  .loading-indicator_c03022.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03022 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03022 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03022" -> "#page-container .classname_c03022")
 */
.pf_c03022 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03022 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03022.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03022 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03022 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03022 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03022 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03022 {overflow:visible;}
  }
}
.c_c03022 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03022 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03022:after { /* webkit #35443 */
  content: '';
}
.t_c03022:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03022 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03022 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03022 { /* info for Javascript */
  display:none;
}
.l_c03022 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03022 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03022 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03022:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03022 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03022.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03022.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03022 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03022;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03022{font-family:ff1_c03022;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03022;src:url('chunks/assets/font_b4f9b77c11fea6424ced5e58.woff2')format("woff");}.ff2_c03022{font-family:ff2_c03022;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03022;src:url('chunks/assets/font_50cca111b603441d4893070b.woff2')format("woff");}.ff3_c03022{font-family:ff3_c03022;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03022{vertical-align:0.000000px;}
.v1_c03022{vertical-align:1.439424px;}
.lsd_c03022{letter-spacing:-0.793584px;}
.ls11_c03022{letter-spacing:-0.736560px;}
.ls16_c03022{letter-spacing:-0.693792px;}
.ls8_c03022{letter-spacing:-0.613008px;}
.lsa_c03022{letter-spacing:-0.574992px;}
.lsf_c03022{letter-spacing:-0.375408px;}
.ls18_c03022{letter-spacing:-0.275616px;}
.ls12_c03022{letter-spacing:-0.270864px;}
.ls17_c03022{letter-spacing:-0.266112px;}
.lse_c03022{letter-spacing:-0.261360px;}
.ls7_c03022{letter-spacing:-0.242352px;}
.ls5_c03022{letter-spacing:-0.118800px;}
.ls15_c03022{letter-spacing:0.000000px;}
.ls2_c03022{letter-spacing:0.006048px;}
.ls6_c03022{letter-spacing:0.128304px;}
.lsc_c03022{letter-spacing:0.508464px;}
.ls14_c03022{letter-spacing:0.514080px;}
.ls10_c03022{letter-spacing:0.536976px;}
.lsb_c03022{letter-spacing:0.579744px;}
.ls13_c03022{letter-spacing:0.594000px;}
.ls9_c03022{letter-spacing:0.598752px;}
.ls4_c03022{letter-spacing:0.613008px;}
.ls0_c03022{letter-spacing:0.651024px;}
.ls1_c03022{letter-spacing:0.717552px;}
.ls3_c03022{letter-spacing:0.722304px;}
.sc__c03022{text-shadow:none;}
.sc0_c03022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03022{-webkit-text-stroke:0px transparent;}
.sc0_c03022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03022{word-spacing:-15.126048px;}
.wsb_c03022{word-spacing:-12.474000px;}
.ws6_c03022{word-spacing:-12.459744px;}
.ws4_c03022{word-spacing:-11.637648px;}
.ws2_c03022{word-spacing:-11.266992px;}
.ws1b_c03022{word-spacing:-1.083456px;}
.ws14_c03022{word-spacing:-1.078704px;}
.ws12_c03022{word-spacing:-1.012176px;}
.ws10_c03022{word-spacing:-0.974160px;}
.ws1a_c03022{word-spacing:-0.719712px;}
.ws13_c03022{word-spacing:-0.118800px;}
.ws16_c03022{word-spacing:-0.099792px;}
.ws1d_c03022{word-spacing:-0.095040px;}
.ws18_c03022{word-spacing:-0.090288px;}
.ws19_c03022{word-spacing:-0.085536px;}
.ws11_c03022{word-spacing:0.000000px;}
.ws17_c03022{word-spacing:0.014256px;}
.ws1c_c03022{word-spacing:0.332640px;}
.ws15_c03022{word-spacing:0.432432px;}
.wsa_c03022{word-spacing:6.629040px;}
.wsf_c03022{word-spacing:18.124128px;}
.wsc_c03022{word-spacing:33.300288px;}
.ws9_c03022{word-spacing:34.836912px;}
.ws8_c03022{word-spacing:36.143712px;}
.wse_c03022{word-spacing:36.742464px;}
.ws1_c03022{word-spacing:37.759392px;}
.ws0_c03022{word-spacing:38.020752px;}
.ws3_c03022{word-spacing:39.218256px;}
.ws5_c03022{word-spacing:39.902544px;}
.ws7_c03022{word-spacing:42.026688px;}
._0_c03022{margin-left:-1.948320px;}
._3_c03022{width:1.482624px;}
._5_c03022{width:3.302640px;}
._2_c03022{width:10.145520px;}
._7_c03022{width:19.982160px;}
._8_c03022{width:23.451120px;}
._6_c03022{width:24.691392px;}
._a_c03022{width:31.895424px;}
._9_c03022{width:36.590400px;}
._1_c03022{width:50.252400px;}
._4_c03022{width:51.530688px;}
.fc0_c03022{color:rgb(0,0,0);}
.fs0_c03022{font-size:47.520000px;}
.fs1_c03022{font-size:60.480000px;}
.y0_c03022{bottom:0.000000px;}
.y1b_c03022{bottom:131.878686px;}
.y1a_c03022{bottom:146.998362px;}
.y1d_c03022{bottom:186.600234px;}
.y1c_c03022{bottom:196.320450px;}
.y19_c03022{bottom:275.878542px;}
.y18_c03022{bottom:356.878758px;}
.y16_c03022{bottom:406.559730px;}
.y12_c03022{bottom:424.560306px;}
.y17_c03022{bottom:458.759262px;}
.y15_c03022{bottom:491.879514px;}
.y14_c03022{bottom:509.880090px;}
.y11_c03022{bottom:543.000342px;}
.y13_c03022{bottom:559.559874px;}
.y10_c03022{bottom:577.560450px;}
.y1e_c03022{bottom:614.280450px;}
.yc_c03022{bottom:652.438650px;}
.yb_c03022{bottom:667.558326px;}
.ye_c03022{bottom:707.160234px;}
.yd_c03022{bottom:716.880450px;}
.ya_c03022{bottom:796.438506px;}
.y9_c03022{bottom:877.438722px;}
.y7_c03022{bottom:926.759730px;}
.y3_c03022{bottom:944.760306px;}
.y8_c03022{bottom:979.319226px;}
.y6_c03022{bottom:1012.439478px;}
.y5_c03022{bottom:1030.440054px;}
.y2_c03022{bottom:1063.560306px;}
.y4_c03022{bottom:1079.759874px;}
.y1_c03022{bottom:1097.760450px;}
.yf_c03022{bottom:1134.840450px;}
.h3_c03022{height:32.530781px;}
.h1_c03022{height:41.696016px;}
.h2_c03022{height:41.812031px;}
.h4_c03022{height:54.654737px;}
.h0_c03022{height:1263.000000px;}
.w1_c03022{width:892.500000px;}
.w0_c03022{width:892.830000px;}
.x0_c03022{left:0.000000px;}
.xe_c03022{left:117.000000px;}
.x8_c03022{left:440.999856px;}
.x4_c03022{left:445.680576px;}
.xc_c03022{left:451.080000px;}
.x7_c03022{left:455.399604px;}
.x5_c03022{left:461.880144px;}
.x1_c03022{left:463.320000px;}
.xa_c03022{left:483.480360px;}
.x9_c03022{left:492.119496px;}
.x6_c03022{left:493.200576px;}
.xd_c03022{left:506.880360px;}
.x3_c03022{left:511.919892px;}
.x2_c03022{left:526.679604px;}
.xb_c03022{left:569.880036px;}
@media print{
.v0_c03022{vertical-align:0.000000pt;}
.v1_c03022{vertical-align:1.279488pt;}
.lsd_c03022{letter-spacing:-0.705408pt;}
.ls11_c03022{letter-spacing:-0.654720pt;}
.ls16_c03022{letter-spacing:-0.616704pt;}
.ls8_c03022{letter-spacing:-0.544896pt;}
.lsa_c03022{letter-spacing:-0.511104pt;}
.lsf_c03022{letter-spacing:-0.333696pt;}
.ls18_c03022{letter-spacing:-0.244992pt;}
.ls12_c03022{letter-spacing:-0.240768pt;}
.ls17_c03022{letter-spacing:-0.236544pt;}
.lse_c03022{letter-spacing:-0.232320pt;}
.ls7_c03022{letter-spacing:-0.215424pt;}
.ls5_c03022{letter-spacing:-0.105600pt;}
.ls15_c03022{letter-spacing:0.000000pt;}
.ls2_c03022{letter-spacing:0.005376pt;}
.ls6_c03022{letter-spacing:0.114048pt;}
.lsc_c03022{letter-spacing:0.451968pt;}
.ls14_c03022{letter-spacing:0.456960pt;}
.ls10_c03022{letter-spacing:0.477312pt;}
.lsb_c03022{letter-spacing:0.515328pt;}
.ls13_c03022{letter-spacing:0.528000pt;}
.ls9_c03022{letter-spacing:0.532224pt;}
.ls4_c03022{letter-spacing:0.544896pt;}
.ls0_c03022{letter-spacing:0.578688pt;}
.ls1_c03022{letter-spacing:0.637824pt;}
.ls3_c03022{letter-spacing:0.642048pt;}
.wsd_c03022{word-spacing:-13.445376pt;}
.wsb_c03022{word-spacing:-11.088000pt;}
.ws6_c03022{word-spacing:-11.075328pt;}
.ws4_c03022{word-spacing:-10.344576pt;}
.ws2_c03022{word-spacing:-10.015104pt;}
.ws1b_c03022{word-spacing:-0.963072pt;}
.ws14_c03022{word-spacing:-0.958848pt;}
.ws12_c03022{word-spacing:-0.899712pt;}
.ws10_c03022{word-spacing:-0.865920pt;}
.ws1a_c03022{word-spacing:-0.639744pt;}
.ws13_c03022{word-spacing:-0.105600pt;}
.ws16_c03022{word-spacing:-0.088704pt;}
.ws1d_c03022{word-spacing:-0.084480pt;}
.ws18_c03022{word-spacing:-0.080256pt;}
.ws19_c03022{word-spacing:-0.076032pt;}
.ws11_c03022{word-spacing:0.000000pt;}
.ws17_c03022{word-spacing:0.012672pt;}
.ws1c_c03022{word-spacing:0.295680pt;}
.ws15_c03022{word-spacing:0.384384pt;}
.wsa_c03022{word-spacing:5.892480pt;}
.wsf_c03022{word-spacing:16.110336pt;}
.wsc_c03022{word-spacing:29.600256pt;}
.ws9_c03022{word-spacing:30.966144pt;}
.ws8_c03022{word-spacing:32.127744pt;}
.wse_c03022{word-spacing:32.659968pt;}
.ws1_c03022{word-spacing:33.563904pt;}
.ws0_c03022{word-spacing:33.796224pt;}
.ws3_c03022{word-spacing:34.860672pt;}
.ws5_c03022{word-spacing:35.468928pt;}
.ws7_c03022{word-spacing:37.357056pt;}
._0_c03022{margin-left:-1.731840pt;}
._3_c03022{width:1.317888pt;}
._5_c03022{width:2.935680pt;}
._2_c03022{width:9.018240pt;}
._7_c03022{width:17.761920pt;}
._8_c03022{width:20.845440pt;}
._6_c03022{width:21.947904pt;}
._a_c03022{width:28.351488pt;}
._9_c03022{width:32.524800pt;}
._1_c03022{width:44.668800pt;}
._4_c03022{width:45.805056pt;}
.fs0_c03022{font-size:42.240000pt;}
.fs1_c03022{font-size:53.760000pt;}
.y0_c03022{bottom:0.000000pt;}
.y1b_c03022{bottom:117.225499pt;}
.y1a_c03022{bottom:130.665211pt;}
.y1d_c03022{bottom:165.866875pt;}
.y1c_c03022{bottom:174.507067pt;}
.y19_c03022{bottom:245.225371pt;}
.y18_c03022{bottom:317.225563pt;}
.y16_c03022{bottom:361.386427pt;}
.y12_c03022{bottom:377.386939pt;}
.y17_c03022{bottom:407.786011pt;}
.y15_c03022{bottom:437.226235pt;}
.y14_c03022{bottom:453.226747pt;}
.y11_c03022{bottom:482.666971pt;}
.y13_c03022{bottom:497.386555pt;}
.y10_c03022{bottom:513.387067pt;}
.y1e_c03022{bottom:546.027067pt;}
.yc_c03022{bottom:579.945467pt;}
.yb_c03022{bottom:593.385179pt;}
.ye_c03022{bottom:628.586875pt;}
.yd_c03022{bottom:637.227067pt;}
.ya_c03022{bottom:707.945339pt;}
.y9_c03022{bottom:779.945531pt;}
.y7_c03022{bottom:823.786427pt;}
.y3_c03022{bottom:839.786939pt;}
.y8_c03022{bottom:870.505979pt;}
.y6_c03022{bottom:899.946203pt;}
.y5_c03022{bottom:915.946715pt;}
.y2_c03022{bottom:945.386939pt;}
.y4_c03022{bottom:959.786555pt;}
.y1_c03022{bottom:975.787067pt;}
.yf_c03022{bottom:1008.747067pt;}
.h3_c03022{height:28.916250pt;}
.h1_c03022{height:37.063125pt;}
.h2_c03022{height:37.166250pt;}
.h4_c03022{height:48.581988pt;}
.h0_c03022{height:1122.666667pt;}
.w1_c03022{width:793.333333pt;}
.w0_c03022{width:793.626667pt;}
.x0_c03022{left:0.000000pt;}
.xe_c03022{left:104.000000pt;}
.x8_c03022{left:391.999872pt;}
.x4_c03022{left:396.160512pt;}
.xc_c03022{left:400.960000pt;}
.x7_c03022{left:404.799648pt;}
.x5_c03022{left:410.560128pt;}
.x1_c03022{left:411.840000pt;}
.xa_c03022{left:429.760320pt;}
.x9_c03022{left:437.439552pt;}
.x6_c03022{left:438.400512pt;}
.xd_c03022{left:450.560320pt;}
.x3_c03022{left:455.039904pt;}
.x2_c03022{left:468.159648pt;}
.xb_c03022{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03023 {
    display:none;
  }
  .loading-indicator_c03023.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03023 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03023 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03023" -> "#page-container .classname_c03023")
 */
.pf_c03023 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03023 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03023.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03023 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03023 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03023 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03023 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03023 {overflow:visible;}
  }
}
.c_c03023 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03023 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03023:after { /* webkit #35443 */
  content: '';
}
.t_c03023:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03023 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03023 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03023 { /* info for Javascript */
  display:none;
}
.l_c03023 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03023 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03023 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03023:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03023 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03023.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03023.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03023 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03023;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03023{font-family:ff1_c03023;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03023;src:url('chunks/assets/font_dc1bd0b667cb0088f2a17a95.woff2')format("woff");}.ff2_c03023{font-family:ff2_c03023;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03023;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03023{font-family:ff3_c03023;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03023{vertical-align:0.000000px;}
.v1_c03023{vertical-align:1.439424px;}
.v2_c03023{vertical-align:33.121440px;}
.ls14_c03023{letter-spacing:-0.793584px;}
.ls13_c03023{letter-spacing:-0.774576px;}
.ls8_c03023{letter-spacing:-0.613008px;}
.lsa_c03023{letter-spacing:-0.574992px;}
.ls15_c03023{letter-spacing:-0.337392px;}
.lsf_c03023{letter-spacing:-0.275616px;}
.lsd_c03023{letter-spacing:-0.261360px;}
.ls7_c03023{letter-spacing:-0.242352px;}
.ls4_c03023{letter-spacing:-0.118800px;}
.ls12_c03023{letter-spacing:0.000000px;}
.ls1_c03023{letter-spacing:0.006048px;}
.ls6_c03023{letter-spacing:0.128304px;}
.lsc_c03023{letter-spacing:0.508464px;}
.ls11_c03023{letter-spacing:0.514080px;}
.lse_c03023{letter-spacing:0.536976px;}
.lsb_c03023{letter-spacing:0.579744px;}
.ls10_c03023{letter-spacing:0.594000px;}
.ls9_c03023{letter-spacing:0.598752px;}
.ls3_c03023{letter-spacing:0.613008px;}
.ls2_c03023{letter-spacing:0.651024px;}
.ls5_c03023{letter-spacing:0.717552px;}
.ls0_c03023{letter-spacing:0.722304px;}
.sc__c03023{text-shadow:none;}
.sc0_c03023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03023{-webkit-text-stroke:0px transparent;}
.sc0_c03023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03023{word-spacing:-15.126048px;}
.ws9_c03023{word-spacing:-12.474000px;}
.ws6_c03023{word-spacing:-12.459744px;}
.ws4_c03023{word-spacing:-11.637648px;}
.ws2_c03023{word-spacing:-11.266992px;}
.wsc_c03023{word-spacing:-11.105424px;}
.ws11_c03023{word-spacing:-1.083456px;}
.ws15_c03023{word-spacing:-1.012176px;}
.wse_c03023{word-spacing:-0.974160px;}
.ws14_c03023{word-spacing:-0.719712px;}
.ws10_c03023{word-spacing:-0.118800px;}
.ws12_c03023{word-spacing:-0.099792px;}
.ws13_c03023{word-spacing:-0.085536px;}
.ws17_c03023{word-spacing:-0.023760px;}
.wsf_c03023{word-spacing:0.000000px;}
.ws16_c03023{word-spacing:0.432432px;}
.wsd_c03023{word-spacing:30.298752px;}
.wsa_c03023{word-spacing:33.300288px;}
.ws8_c03023{word-spacing:34.836912px;}
.ws1_c03023{word-spacing:37.759392px;}
.ws0_c03023{word-spacing:38.020752px;}
.ws3_c03023{word-spacing:39.218256px;}
.ws5_c03023{word-spacing:39.902544px;}
.ws7_c03023{word-spacing:42.026688px;}
._0_c03023{margin-left:-1.948320px;}
._2_c03023{width:1.482624px;}
._4_c03023{width:3.302640px;}
._1_c03023{width:50.252400px;}
._3_c03023{width:51.530688px;}
.fc0_c03023{color:rgb(0,0,0);}
.fs0_c03023{font-size:47.520000px;}
.fs1_c03023{font-size:60.480000px;}
.y0_c03023{bottom:0.000000px;}
.y19_c03023{bottom:146.998362px;}
.y1b_c03023{bottom:186.600234px;}
.y1a_c03023{bottom:196.320450px;}
.y18_c03023{bottom:275.878542px;}
.y17_c03023{bottom:356.878758px;}
.y15_c03023{bottom:406.559730px;}
.y11_c03023{bottom:424.560306px;}
.y16_c03023{bottom:458.759262px;}
.y14_c03023{bottom:491.879514px;}
.y13_c03023{bottom:509.880090px;}
.y10_c03023{bottom:543.000342px;}
.y12_c03023{bottom:559.559874px;}
.yf_c03023{bottom:577.560450px;}
.y1c_c03023{bottom:614.280450px;}
.yb_c03023{bottom:667.558326px;}
.yd_c03023{bottom:707.160234px;}
.yc_c03023{bottom:716.880450px;}
.ya_c03023{bottom:796.438506px;}
.y9_c03023{bottom:877.438722px;}
.y7_c03023{bottom:926.759730px;}
.y3_c03023{bottom:944.760306px;}
.y8_c03023{bottom:979.319226px;}
.y6_c03023{bottom:1012.439478px;}
.y5_c03023{bottom:1030.440054px;}
.y2_c03023{bottom:1063.560306px;}
.y4_c03023{bottom:1079.759874px;}
.y1_c03023{bottom:1097.760450px;}
.ye_c03023{bottom:1134.840450px;}
.h3_c03023{height:32.530781px;}
.h1_c03023{height:41.696016px;}
.h2_c03023{height:41.812031px;}
.h4_c03023{height:54.654737px;}
.h5_c03023{height:74.817456px;}
.h0_c03023{height:1263.000000px;}
.w1_c03023{width:892.500000px;}
.w0_c03023{width:892.830000px;}
.x0_c03023{left:0.000000px;}
.xd_c03023{left:117.000000px;}
.x8_c03023{left:440.999856px;}
.x4_c03023{left:445.680576px;}
.xb_c03023{left:451.080000px;}
.x7_c03023{left:455.399604px;}
.x5_c03023{left:461.880144px;}
.x1_c03023{left:463.320000px;}
.xa_c03023{left:483.480360px;}
.x9_c03023{left:492.119496px;}
.x6_c03023{left:493.200576px;}
.xc_c03023{left:506.880360px;}
.x3_c03023{left:511.919892px;}
.x2_c03023{left:526.679604px;}
@media print{
.v0_c03023{vertical-align:0.000000pt;}
.v1_c03023{vertical-align:1.279488pt;}
.v2_c03023{vertical-align:29.441280pt;}
.ls14_c03023{letter-spacing:-0.705408pt;}
.ls13_c03023{letter-spacing:-0.688512pt;}
.ls8_c03023{letter-spacing:-0.544896pt;}
.lsa_c03023{letter-spacing:-0.511104pt;}
.ls15_c03023{letter-spacing:-0.299904pt;}
.lsf_c03023{letter-spacing:-0.244992pt;}
.lsd_c03023{letter-spacing:-0.232320pt;}
.ls7_c03023{letter-spacing:-0.215424pt;}
.ls4_c03023{letter-spacing:-0.105600pt;}
.ls12_c03023{letter-spacing:0.000000pt;}
.ls1_c03023{letter-spacing:0.005376pt;}
.ls6_c03023{letter-spacing:0.114048pt;}
.lsc_c03023{letter-spacing:0.451968pt;}
.ls11_c03023{letter-spacing:0.456960pt;}
.lse_c03023{letter-spacing:0.477312pt;}
.lsb_c03023{letter-spacing:0.515328pt;}
.ls10_c03023{letter-spacing:0.528000pt;}
.ls9_c03023{letter-spacing:0.532224pt;}
.ls3_c03023{letter-spacing:0.544896pt;}
.ls2_c03023{letter-spacing:0.578688pt;}
.ls5_c03023{letter-spacing:0.637824pt;}
.ls0_c03023{letter-spacing:0.642048pt;}
.wsb_c03023{word-spacing:-13.445376pt;}
.ws9_c03023{word-spacing:-11.088000pt;}
.ws6_c03023{word-spacing:-11.075328pt;}
.ws4_c03023{word-spacing:-10.344576pt;}
.ws2_c03023{word-spacing:-10.015104pt;}
.wsc_c03023{word-spacing:-9.871488pt;}
.ws11_c03023{word-spacing:-0.963072pt;}
.ws15_c03023{word-spacing:-0.899712pt;}
.wse_c03023{word-spacing:-0.865920pt;}
.ws14_c03023{word-spacing:-0.639744pt;}
.ws10_c03023{word-spacing:-0.105600pt;}
.ws12_c03023{word-spacing:-0.088704pt;}
.ws13_c03023{word-spacing:-0.076032pt;}
.ws17_c03023{word-spacing:-0.021120pt;}
.wsf_c03023{word-spacing:0.000000pt;}
.ws16_c03023{word-spacing:0.384384pt;}
.wsd_c03023{word-spacing:26.932224pt;}
.wsa_c03023{word-spacing:29.600256pt;}
.ws8_c03023{word-spacing:30.966144pt;}
.ws1_c03023{word-spacing:33.563904pt;}
.ws0_c03023{word-spacing:33.796224pt;}
.ws3_c03023{word-spacing:34.860672pt;}
.ws5_c03023{word-spacing:35.468928pt;}
.ws7_c03023{word-spacing:37.357056pt;}
._0_c03023{margin-left:-1.731840pt;}
._2_c03023{width:1.317888pt;}
._4_c03023{width:2.935680pt;}
._1_c03023{width:44.668800pt;}
._3_c03023{width:45.805056pt;}
.fs0_c03023{font-size:42.240000pt;}
.fs1_c03023{font-size:53.760000pt;}
.y0_c03023{bottom:0.000000pt;}
.y19_c03023{bottom:130.665211pt;}
.y1b_c03023{bottom:165.866875pt;}
.y1a_c03023{bottom:174.507067pt;}
.y18_c03023{bottom:245.225371pt;}
.y17_c03023{bottom:317.225563pt;}
.y15_c03023{bottom:361.386427pt;}
.y11_c03023{bottom:377.386939pt;}
.y16_c03023{bottom:407.786011pt;}
.y14_c03023{bottom:437.226235pt;}
.y13_c03023{bottom:453.226747pt;}
.y10_c03023{bottom:482.666971pt;}
.y12_c03023{bottom:497.386555pt;}
.yf_c03023{bottom:513.387067pt;}
.y1c_c03023{bottom:546.027067pt;}
.yb_c03023{bottom:593.385179pt;}
.yd_c03023{bottom:628.586875pt;}
.yc_c03023{bottom:637.227067pt;}
.ya_c03023{bottom:707.945339pt;}
.y9_c03023{bottom:779.945531pt;}
.y7_c03023{bottom:823.786427pt;}
.y3_c03023{bottom:839.786939pt;}
.y8_c03023{bottom:870.505979pt;}
.y6_c03023{bottom:899.946203pt;}
.y5_c03023{bottom:915.946715pt;}
.y2_c03023{bottom:945.386939pt;}
.y4_c03023{bottom:959.786555pt;}
.y1_c03023{bottom:975.787067pt;}
.ye_c03023{bottom:1008.747067pt;}
.h3_c03023{height:28.916250pt;}
.h1_c03023{height:37.063125pt;}
.h2_c03023{height:37.166250pt;}
.h4_c03023{height:48.581988pt;}
.h5_c03023{height:66.504405pt;}
.h0_c03023{height:1122.666667pt;}
.w1_c03023{width:793.333333pt;}
.w0_c03023{width:793.626667pt;}
.x0_c03023{left:0.000000pt;}
.xd_c03023{left:104.000000pt;}
.x8_c03023{left:391.999872pt;}
.x4_c03023{left:396.160512pt;}
.xb_c03023{left:400.960000pt;}
.x7_c03023{left:404.799648pt;}
.x5_c03023{left:410.560128pt;}
.x1_c03023{left:411.840000pt;}
.xa_c03023{left:429.760320pt;}
.x9_c03023{left:437.439552pt;}
.x6_c03023{left:438.400512pt;}
.xc_c03023{left:450.560320pt;}
.x3_c03023{left:455.039904pt;}
.x2_c03023{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03024 {
    display:none;
  }
  .loading-indicator_c03024.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03024 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03024 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03024" -> "#page-container .classname_c03024")
 */
.pf_c03024 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03024 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03024.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03024 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03024 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03024 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03024 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03024 {overflow:visible;}
  }
}
.c_c03024 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03024 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03024:after { /* webkit #35443 */
  content: '';
}
.t_c03024:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03024 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03024 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03024 { /* info for Javascript */
  display:none;
}
.l_c03024 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03024 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03024 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03024:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03024 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03024.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03024.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03024 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03024;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03024{font-family:ff1_c03024;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03024;src:url('chunks/assets/font_297b9c524f56debb632a6c8e.woff2')format("woff");}.ff2_c03024{font-family:ff2_c03024;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03024;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03024{font-family:ff3_c03024;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03024{vertical-align:0.000000px;}
.v2_c03024{vertical-align:1.439424px;}
.v1_c03024{vertical-align:33.121440px;}
.lsd_c03024{letter-spacing:-0.793584px;}
.lsa_c03024{letter-spacing:-0.774576px;}
.ls7_c03024{letter-spacing:-0.613008px;}
.ls9_c03024{letter-spacing:-0.574992px;}
.ls12_c03024{letter-spacing:-0.337392px;}
.ls10_c03024{letter-spacing:-0.275616px;}
.lse_c03024{letter-spacing:-0.261360px;}
.ls6_c03024{letter-spacing:-0.242352px;}
.ls4_c03024{letter-spacing:-0.118800px;}
.ls14_c03024{letter-spacing:0.000000px;}
.ls1_c03024{letter-spacing:0.006048px;}
.ls5_c03024{letter-spacing:0.128304px;}
.lsc_c03024{letter-spacing:0.508464px;}
.ls13_c03024{letter-spacing:0.514080px;}
.lsf_c03024{letter-spacing:0.536976px;}
.lsb_c03024{letter-spacing:0.579744px;}
.ls11_c03024{letter-spacing:0.594000px;}
.ls8_c03024{letter-spacing:0.598752px;}
.ls2_c03024{letter-spacing:0.613008px;}
.ls0_c03024{letter-spacing:0.651024px;}
.ls3_c03024{letter-spacing:0.717552px;}
.sc__c03024{text-shadow:none;}
.sc0_c03024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03024{-webkit-text-stroke:0px transparent;}
.sc0_c03024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03024{word-spacing:-15.126048px;}
.ws7_c03024{word-spacing:-12.459744px;}
.ws4_c03024{word-spacing:-11.637648px;}
.ws2_c03024{word-spacing:-11.266992px;}
.ws6_c03024{word-spacing:-11.105424px;}
.wsf_c03024{word-spacing:-1.012176px;}
.wsd_c03024{word-spacing:-0.974160px;}
.ws15_c03024{word-spacing:-0.719712px;}
.ws10_c03024{word-spacing:-0.118800px;}
.ws12_c03024{word-spacing:-0.099792px;}
.ws13_c03024{word-spacing:-0.085536px;}
.ws14_c03024{word-spacing:-0.023760px;}
.wse_c03024{word-spacing:0.000000px;}
.ws11_c03024{word-spacing:0.432432px;}
.wsa_c03024{word-spacing:30.298752px;}
.wsb_c03024{word-spacing:33.300288px;}
.ws9_c03024{word-spacing:34.836912px;}
.ws1_c03024{word-spacing:37.759392px;}
.ws0_c03024{word-spacing:38.020752px;}
.ws3_c03024{word-spacing:39.218256px;}
.ws5_c03024{word-spacing:39.902544px;}
.ws8_c03024{word-spacing:42.026688px;}
._0_c03024{margin-left:-1.948320px;}
._2_c03024{width:1.482624px;}
._4_c03024{width:3.302640px;}
._1_c03024{width:50.252400px;}
._3_c03024{width:51.530688px;}
.fc0_c03024{color:rgb(0,0,0);}
.fs0_c03024{font-size:47.520000px;}
.fs1_c03024{font-size:60.480000px;}
.y0_c03024{bottom:0.000000px;}
.y19_c03024{bottom:146.998362px;}
.y1b_c03024{bottom:186.600234px;}
.y1a_c03024{bottom:196.320450px;}
.y18_c03024{bottom:275.878542px;}
.y17_c03024{bottom:356.878758px;}
.y15_c03024{bottom:406.559730px;}
.y11_c03024{bottom:424.560306px;}
.y16_c03024{bottom:458.759262px;}
.y14_c03024{bottom:491.879514px;}
.y13_c03024{bottom:509.880090px;}
.y10_c03024{bottom:543.000342px;}
.y12_c03024{bottom:559.559874px;}
.yf_c03024{bottom:577.560450px;}
.y1c_c03024{bottom:614.280450px;}
.yb_c03024{bottom:667.558326px;}
.yd_c03024{bottom:707.160234px;}
.yc_c03024{bottom:716.880450px;}
.ya_c03024{bottom:796.438506px;}
.y9_c03024{bottom:877.438722px;}
.y7_c03024{bottom:926.759730px;}
.y3_c03024{bottom:944.760306px;}
.y8_c03024{bottom:979.319226px;}
.y6_c03024{bottom:1012.439478px;}
.y5_c03024{bottom:1030.440054px;}
.y2_c03024{bottom:1063.560306px;}
.y4_c03024{bottom:1079.759874px;}
.y1_c03024{bottom:1097.760450px;}
.ye_c03024{bottom:1134.840450px;}
.h3_c03024{height:32.530781px;}
.h1_c03024{height:41.696016px;}
.h2_c03024{height:41.812031px;}
.h5_c03024{height:54.654737px;}
.h4_c03024{height:74.817456px;}
.h0_c03024{height:1263.000000px;}
.w1_c03024{width:892.500000px;}
.w0_c03024{width:892.830000px;}
.x0_c03024{left:0.000000px;}
.xd_c03024{left:117.000000px;}
.x8_c03024{left:440.999856px;}
.x4_c03024{left:445.680576px;}
.xb_c03024{left:451.080000px;}
.x7_c03024{left:455.399604px;}
.x5_c03024{left:461.880144px;}
.x1_c03024{left:463.320000px;}
.xa_c03024{left:483.480360px;}
.x9_c03024{left:492.119496px;}
.x6_c03024{left:493.200576px;}
.xc_c03024{left:506.880360px;}
.x3_c03024{left:511.919892px;}
.x2_c03024{left:526.679604px;}
@media print{
.v0_c03024{vertical-align:0.000000pt;}
.v2_c03024{vertical-align:1.279488pt;}
.v1_c03024{vertical-align:29.441280pt;}
.lsd_c03024{letter-spacing:-0.705408pt;}
.lsa_c03024{letter-spacing:-0.688512pt;}
.ls7_c03024{letter-spacing:-0.544896pt;}
.ls9_c03024{letter-spacing:-0.511104pt;}
.ls12_c03024{letter-spacing:-0.299904pt;}
.ls10_c03024{letter-spacing:-0.244992pt;}
.lse_c03024{letter-spacing:-0.232320pt;}
.ls6_c03024{letter-spacing:-0.215424pt;}
.ls4_c03024{letter-spacing:-0.105600pt;}
.ls14_c03024{letter-spacing:0.000000pt;}
.ls1_c03024{letter-spacing:0.005376pt;}
.ls5_c03024{letter-spacing:0.114048pt;}
.lsc_c03024{letter-spacing:0.451968pt;}
.ls13_c03024{letter-spacing:0.456960pt;}
.lsf_c03024{letter-spacing:0.477312pt;}
.lsb_c03024{letter-spacing:0.515328pt;}
.ls11_c03024{letter-spacing:0.528000pt;}
.ls8_c03024{letter-spacing:0.532224pt;}
.ls2_c03024{letter-spacing:0.544896pt;}
.ls0_c03024{letter-spacing:0.578688pt;}
.ls3_c03024{letter-spacing:0.637824pt;}
.wsc_c03024{word-spacing:-13.445376pt;}
.ws7_c03024{word-spacing:-11.075328pt;}
.ws4_c03024{word-spacing:-10.344576pt;}
.ws2_c03024{word-spacing:-10.015104pt;}
.ws6_c03024{word-spacing:-9.871488pt;}
.wsf_c03024{word-spacing:-0.899712pt;}
.wsd_c03024{word-spacing:-0.865920pt;}
.ws15_c03024{word-spacing:-0.639744pt;}
.ws10_c03024{word-spacing:-0.105600pt;}
.ws12_c03024{word-spacing:-0.088704pt;}
.ws13_c03024{word-spacing:-0.076032pt;}
.ws14_c03024{word-spacing:-0.021120pt;}
.wse_c03024{word-spacing:0.000000pt;}
.ws11_c03024{word-spacing:0.384384pt;}
.wsa_c03024{word-spacing:26.932224pt;}
.wsb_c03024{word-spacing:29.600256pt;}
.ws9_c03024{word-spacing:30.966144pt;}
.ws1_c03024{word-spacing:33.563904pt;}
.ws0_c03024{word-spacing:33.796224pt;}
.ws3_c03024{word-spacing:34.860672pt;}
.ws5_c03024{word-spacing:35.468928pt;}
.ws8_c03024{word-spacing:37.357056pt;}
._0_c03024{margin-left:-1.731840pt;}
._2_c03024{width:1.317888pt;}
._4_c03024{width:2.935680pt;}
._1_c03024{width:44.668800pt;}
._3_c03024{width:45.805056pt;}
.fs0_c03024{font-size:42.240000pt;}
.fs1_c03024{font-size:53.760000pt;}
.y0_c03024{bottom:0.000000pt;}
.y19_c03024{bottom:130.665211pt;}
.y1b_c03024{bottom:165.866875pt;}
.y1a_c03024{bottom:174.507067pt;}
.y18_c03024{bottom:245.225371pt;}
.y17_c03024{bottom:317.225563pt;}
.y15_c03024{bottom:361.386427pt;}
.y11_c03024{bottom:377.386939pt;}
.y16_c03024{bottom:407.786011pt;}
.y14_c03024{bottom:437.226235pt;}
.y13_c03024{bottom:453.226747pt;}
.y10_c03024{bottom:482.666971pt;}
.y12_c03024{bottom:497.386555pt;}
.yf_c03024{bottom:513.387067pt;}
.y1c_c03024{bottom:546.027067pt;}
.yb_c03024{bottom:593.385179pt;}
.yd_c03024{bottom:628.586875pt;}
.yc_c03024{bottom:637.227067pt;}
.ya_c03024{bottom:707.945339pt;}
.y9_c03024{bottom:779.945531pt;}
.y7_c03024{bottom:823.786427pt;}
.y3_c03024{bottom:839.786939pt;}
.y8_c03024{bottom:870.505979pt;}
.y6_c03024{bottom:899.946203pt;}
.y5_c03024{bottom:915.946715pt;}
.y2_c03024{bottom:945.386939pt;}
.y4_c03024{bottom:959.786555pt;}
.y1_c03024{bottom:975.787067pt;}
.ye_c03024{bottom:1008.747067pt;}
.h3_c03024{height:28.916250pt;}
.h1_c03024{height:37.063125pt;}
.h2_c03024{height:37.166250pt;}
.h5_c03024{height:48.581988pt;}
.h4_c03024{height:66.504405pt;}
.h0_c03024{height:1122.666667pt;}
.w1_c03024{width:793.333333pt;}
.w0_c03024{width:793.626667pt;}
.x0_c03024{left:0.000000pt;}
.xd_c03024{left:104.000000pt;}
.x8_c03024{left:391.999872pt;}
.x4_c03024{left:396.160512pt;}
.xb_c03024{left:400.960000pt;}
.x7_c03024{left:404.799648pt;}
.x5_c03024{left:410.560128pt;}
.x1_c03024{left:411.840000pt;}
.xa_c03024{left:429.760320pt;}
.x9_c03024{left:437.439552pt;}
.x6_c03024{left:438.400512pt;}
.xc_c03024{left:450.560320pt;}
.x3_c03024{left:455.039904pt;}
.x2_c03024{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03025 {
    display:none;
  }
  .loading-indicator_c03025.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03025 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03025 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03025" -> "#page-container .classname_c03025")
 */
.pf_c03025 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03025 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03025.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03025 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03025 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03025 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03025 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03025 {overflow:visible;}
  }
}
.c_c03025 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03025 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03025:after { /* webkit #35443 */
  content: '';
}
.t_c03025:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03025 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03025 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03025 { /* info for Javascript */
  display:none;
}
.l_c03025 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03025 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03025 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03025:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03025 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03025.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03025.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03025 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03025{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03025;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03025{font-family:ff1_c03025;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03025;src:url('chunks/assets/font_2bb5cfb45f03f36dd34265cb.woff2')format("woff");}.ff2_c03025{font-family:ff2_c03025;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03025;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03025{font-family:ff3_c03025;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03025{vertical-align:0.000000px;}
.v2_c03025{vertical-align:1.439424px;}
.v1_c03025{vertical-align:33.121440px;}
.lsd_c03025{letter-spacing:-0.793584px;}
.lsa_c03025{letter-spacing:-0.774576px;}
.ls16_c03025{letter-spacing:-0.736560px;}
.ls15_c03025{letter-spacing:-0.722304px;}
.ls7_c03025{letter-spacing:-0.613008px;}
.ls9_c03025{letter-spacing:-0.574992px;}
.ls12_c03025{letter-spacing:-0.337392px;}
.ls10_c03025{letter-spacing:-0.275616px;}
.ls17_c03025{letter-spacing:-0.270864px;}
.lse_c03025{letter-spacing:-0.261360px;}
.ls6_c03025{letter-spacing:-0.242352px;}
.ls4_c03025{letter-spacing:-0.118800px;}
.ls14_c03025{letter-spacing:0.000000px;}
.ls1_c03025{letter-spacing:0.006048px;}
.ls5_c03025{letter-spacing:0.128304px;}
.lsc_c03025{letter-spacing:0.508464px;}
.ls13_c03025{letter-spacing:0.514080px;}
.lsf_c03025{letter-spacing:0.536976px;}
.lsb_c03025{letter-spacing:0.579744px;}
.ls11_c03025{letter-spacing:0.594000px;}
.ls8_c03025{letter-spacing:0.598752px;}
.ls2_c03025{letter-spacing:0.613008px;}
.ls0_c03025{letter-spacing:0.651024px;}
.ls3_c03025{letter-spacing:0.717552px;}
.sc__c03025{text-shadow:none;}
.sc0_c03025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03025{-webkit-text-stroke:0px transparent;}
.sc0_c03025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03025{word-spacing:-15.126048px;}
.ws7_c03025{word-spacing:-12.459744px;}
.ws4_c03025{word-spacing:-11.637648px;}
.ws2_c03025{word-spacing:-11.266992px;}
.ws6_c03025{word-spacing:-11.105424px;}
.ws10_c03025{word-spacing:-1.012176px;}
.wse_c03025{word-spacing:-0.974160px;}
.ws16_c03025{word-spacing:-0.719712px;}
.ws11_c03025{word-spacing:-0.118800px;}
.ws13_c03025{word-spacing:-0.099792px;}
.ws18_c03025{word-spacing:-0.090288px;}
.ws14_c03025{word-spacing:-0.085536px;}
.ws15_c03025{word-spacing:-0.023760px;}
.wsf_c03025{word-spacing:0.000000px;}
.ws17_c03025{word-spacing:0.361152px;}
.ws12_c03025{word-spacing:0.432432px;}
.wsd_c03025{word-spacing:6.629040px;}
.wsa_c03025{word-spacing:30.298752px;}
.wsb_c03025{word-spacing:33.300288px;}
.ws9_c03025{word-spacing:34.836912px;}
.ws1_c03025{word-spacing:37.759392px;}
.ws0_c03025{word-spacing:38.020752px;}
.ws3_c03025{word-spacing:39.218256px;}
.ws5_c03025{word-spacing:39.902544px;}
.ws8_c03025{word-spacing:42.026688px;}
._0_c03025{margin-left:-1.948320px;}
._2_c03025{width:1.482624px;}
._4_c03025{width:3.302640px;}
._6_c03025{width:19.982160px;}
._7_c03025{width:23.451120px;}
._5_c03025{width:24.691392px;}
._1_c03025{width:50.252400px;}
._3_c03025{width:51.530688px;}
.fc0_c03025{color:rgb(0,0,0);}
.fs0_c03025{font-size:47.520000px;}
.fs1_c03025{font-size:60.480000px;}
.y0_c03025{bottom:0.000000px;}
.y1a_c03025{bottom:131.878686px;}
.y19_c03025{bottom:146.998362px;}
.y1c_c03025{bottom:186.600234px;}
.y1b_c03025{bottom:196.320450px;}
.y18_c03025{bottom:275.878542px;}
.y17_c03025{bottom:356.878758px;}
.y15_c03025{bottom:406.559730px;}
.y11_c03025{bottom:424.560306px;}
.y16_c03025{bottom:458.759262px;}
.y14_c03025{bottom:491.879514px;}
.y13_c03025{bottom:509.880090px;}
.y10_c03025{bottom:543.000342px;}
.y12_c03025{bottom:559.559874px;}
.yf_c03025{bottom:577.560450px;}
.y1d_c03025{bottom:614.280450px;}
.yb_c03025{bottom:667.558326px;}
.yd_c03025{bottom:707.160234px;}
.yc_c03025{bottom:716.880450px;}
.ya_c03025{bottom:796.438506px;}
.y9_c03025{bottom:877.438722px;}
.y7_c03025{bottom:926.759730px;}
.y3_c03025{bottom:944.760306px;}
.y8_c03025{bottom:979.319226px;}
.y6_c03025{bottom:1012.439478px;}
.y5_c03025{bottom:1030.440054px;}
.y2_c03025{bottom:1063.560306px;}
.y4_c03025{bottom:1079.759874px;}
.y1_c03025{bottom:1097.760450px;}
.ye_c03025{bottom:1134.840450px;}
.h3_c03025{height:32.530781px;}
.h1_c03025{height:41.696016px;}
.h2_c03025{height:41.812031px;}
.h5_c03025{height:54.654737px;}
.h4_c03025{height:74.817456px;}
.h0_c03025{height:1263.000000px;}
.w1_c03025{width:892.500000px;}
.w0_c03025{width:892.830000px;}
.x0_c03025{left:0.000000px;}
.xd_c03025{left:117.000000px;}
.x8_c03025{left:440.999856px;}
.x4_c03025{left:445.680576px;}
.xb_c03025{left:451.080000px;}
.x7_c03025{left:455.399604px;}
.x5_c03025{left:461.880144px;}
.x1_c03025{left:463.320000px;}
.xa_c03025{left:483.480360px;}
.x9_c03025{left:492.119496px;}
.x6_c03025{left:493.200576px;}
.xc_c03025{left:506.880360px;}
.x3_c03025{left:511.919892px;}
.x2_c03025{left:526.679604px;}
.xe_c03025{left:569.880036px;}
@media print{
.v0_c03025{vertical-align:0.000000pt;}
.v2_c03025{vertical-align:1.279488pt;}
.v1_c03025{vertical-align:29.441280pt;}
.lsd_c03025{letter-spacing:-0.705408pt;}
.lsa_c03025{letter-spacing:-0.688512pt;}
.ls16_c03025{letter-spacing:-0.654720pt;}
.ls15_c03025{letter-spacing:-0.642048pt;}
.ls7_c03025{letter-spacing:-0.544896pt;}
.ls9_c03025{letter-spacing:-0.511104pt;}
.ls12_c03025{letter-spacing:-0.299904pt;}
.ls10_c03025{letter-spacing:-0.244992pt;}
.ls17_c03025{letter-spacing:-0.240768pt;}
.lse_c03025{letter-spacing:-0.232320pt;}
.ls6_c03025{letter-spacing:-0.215424pt;}
.ls4_c03025{letter-spacing:-0.105600pt;}
.ls14_c03025{letter-spacing:0.000000pt;}
.ls1_c03025{letter-spacing:0.005376pt;}
.ls5_c03025{letter-spacing:0.114048pt;}
.lsc_c03025{letter-spacing:0.451968pt;}
.ls13_c03025{letter-spacing:0.456960pt;}
.lsf_c03025{letter-spacing:0.477312pt;}
.lsb_c03025{letter-spacing:0.515328pt;}
.ls11_c03025{letter-spacing:0.528000pt;}
.ls8_c03025{letter-spacing:0.532224pt;}
.ls2_c03025{letter-spacing:0.544896pt;}
.ls0_c03025{letter-spacing:0.578688pt;}
.ls3_c03025{letter-spacing:0.637824pt;}
.wsc_c03025{word-spacing:-13.445376pt;}
.ws7_c03025{word-spacing:-11.075328pt;}
.ws4_c03025{word-spacing:-10.344576pt;}
.ws2_c03025{word-spacing:-10.015104pt;}
.ws6_c03025{word-spacing:-9.871488pt;}
.ws10_c03025{word-spacing:-0.899712pt;}
.wse_c03025{word-spacing:-0.865920pt;}
.ws16_c03025{word-spacing:-0.639744pt;}
.ws11_c03025{word-spacing:-0.105600pt;}
.ws13_c03025{word-spacing:-0.088704pt;}
.ws18_c03025{word-spacing:-0.080256pt;}
.ws14_c03025{word-spacing:-0.076032pt;}
.ws15_c03025{word-spacing:-0.021120pt;}
.wsf_c03025{word-spacing:0.000000pt;}
.ws17_c03025{word-spacing:0.321024pt;}
.ws12_c03025{word-spacing:0.384384pt;}
.wsd_c03025{word-spacing:5.892480pt;}
.wsa_c03025{word-spacing:26.932224pt;}
.wsb_c03025{word-spacing:29.600256pt;}
.ws9_c03025{word-spacing:30.966144pt;}
.ws1_c03025{word-spacing:33.563904pt;}
.ws0_c03025{word-spacing:33.796224pt;}
.ws3_c03025{word-spacing:34.860672pt;}
.ws5_c03025{word-spacing:35.468928pt;}
.ws8_c03025{word-spacing:37.357056pt;}
._0_c03025{margin-left:-1.731840pt;}
._2_c03025{width:1.317888pt;}
._4_c03025{width:2.935680pt;}
._6_c03025{width:17.761920pt;}
._7_c03025{width:20.845440pt;}
._5_c03025{width:21.947904pt;}
._1_c03025{width:44.668800pt;}
._3_c03025{width:45.805056pt;}
.fs0_c03025{font-size:42.240000pt;}
.fs1_c03025{font-size:53.760000pt;}
.y0_c03025{bottom:0.000000pt;}
.y1a_c03025{bottom:117.225499pt;}
.y19_c03025{bottom:130.665211pt;}
.y1c_c03025{bottom:165.866875pt;}
.y1b_c03025{bottom:174.507067pt;}
.y18_c03025{bottom:245.225371pt;}
.y17_c03025{bottom:317.225563pt;}
.y15_c03025{bottom:361.386427pt;}
.y11_c03025{bottom:377.386939pt;}
.y16_c03025{bottom:407.786011pt;}
.y14_c03025{bottom:437.226235pt;}
.y13_c03025{bottom:453.226747pt;}
.y10_c03025{bottom:482.666971pt;}
.y12_c03025{bottom:497.386555pt;}
.yf_c03025{bottom:513.387067pt;}
.y1d_c03025{bottom:546.027067pt;}
.yb_c03025{bottom:593.385179pt;}
.yd_c03025{bottom:628.586875pt;}
.yc_c03025{bottom:637.227067pt;}
.ya_c03025{bottom:707.945339pt;}
.y9_c03025{bottom:779.945531pt;}
.y7_c03025{bottom:823.786427pt;}
.y3_c03025{bottom:839.786939pt;}
.y8_c03025{bottom:870.505979pt;}
.y6_c03025{bottom:899.946203pt;}
.y5_c03025{bottom:915.946715pt;}
.y2_c03025{bottom:945.386939pt;}
.y4_c03025{bottom:959.786555pt;}
.y1_c03025{bottom:975.787067pt;}
.ye_c03025{bottom:1008.747067pt;}
.h3_c03025{height:28.916250pt;}
.h1_c03025{height:37.063125pt;}
.h2_c03025{height:37.166250pt;}
.h5_c03025{height:48.581988pt;}
.h4_c03025{height:66.504405pt;}
.h0_c03025{height:1122.666667pt;}
.w1_c03025{width:793.333333pt;}
.w0_c03025{width:793.626667pt;}
.x0_c03025{left:0.000000pt;}
.xd_c03025{left:104.000000pt;}
.x8_c03025{left:391.999872pt;}
.x4_c03025{left:396.160512pt;}
.xb_c03025{left:400.960000pt;}
.x7_c03025{left:404.799648pt;}
.x5_c03025{left:410.560128pt;}
.x1_c03025{left:411.840000pt;}
.xa_c03025{left:429.760320pt;}
.x9_c03025{left:437.439552pt;}
.x6_c03025{left:438.400512pt;}
.xc_c03025{left:450.560320pt;}
.x3_c03025{left:455.039904pt;}
.x2_c03025{left:468.159648pt;}
.xe_c03025{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03026 {
    display:none;
  }
  .loading-indicator_c03026.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03026 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03026 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03026" -> "#page-container .classname_c03026")
 */
.pf_c03026 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03026 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03026.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03026 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03026 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03026 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03026 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03026 {overflow:visible;}
  }
}
.c_c03026 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03026 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03026:after { /* webkit #35443 */
  content: '';
}
.t_c03026:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03026 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03026 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03026 { /* info for Javascript */
  display:none;
}
.l_c03026 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03026 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03026 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03026:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03026 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03026.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03026.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03026 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03026;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03026{font-family:ff1_c03026;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03026;src:url('chunks/assets/font_7e18b962de11e9b5e4121857.woff2')format("woff");}.ff2_c03026{font-family:ff2_c03026;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03026;src:url('chunks/assets/font_fa1d718fd3c9b4ee2fb948bd.woff2')format("woff");}.ff3_c03026{font-family:ff3_c03026;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03026{vertical-align:0.000000px;}
.v1_c03026{vertical-align:1.439424px;}
.ls14_c03026{letter-spacing:-0.793584px;}
.lsc_c03026{letter-spacing:-0.722304px;}
.ls13_c03026{letter-spacing:-0.613008px;}
.ls8_c03026{letter-spacing:-0.574992px;}
.lsf_c03026{letter-spacing:-0.275616px;}
.lsd_c03026{letter-spacing:-0.261360px;}
.ls6_c03026{letter-spacing:-0.242352px;}
.ls4_c03026{letter-spacing:-0.118800px;}
.ls12_c03026{letter-spacing:0.000000px;}
.ls2_c03026{letter-spacing:0.006048px;}
.lsb_c03026{letter-spacing:0.038016px;}
.ls5_c03026{letter-spacing:0.128304px;}
.lsa_c03026{letter-spacing:0.508464px;}
.ls11_c03026{letter-spacing:0.514080px;}
.lse_c03026{letter-spacing:0.536976px;}
.ls9_c03026{letter-spacing:0.579744px;}
.ls10_c03026{letter-spacing:0.594000px;}
.ls7_c03026{letter-spacing:0.598752px;}
.ls3_c03026{letter-spacing:0.613008px;}
.ls0_c03026{letter-spacing:0.651024px;}
.ls1_c03026{letter-spacing:0.717552px;}
.ls15_c03026{letter-spacing:0.722304px;}
.sc__c03026{text-shadow:none;}
.sc0_c03026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03026{-webkit-text-stroke:0px transparent;}
.sc0_c03026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03026{word-spacing:-15.126048px;}
.wsa_c03026{word-spacing:-12.474000px;}
.wse_c03026{word-spacing:-12.459744px;}
.ws9_c03026{word-spacing:-12.416976px;}
.ws4_c03026{word-spacing:-11.637648px;}
.wsd_c03026{word-spacing:-11.266992px;}
.ws1a_c03026{word-spacing:-1.083456px;}
.ws13_c03026{word-spacing:-1.078704px;}
.ws11_c03026{word-spacing:-1.012176px;}
.wsf_c03026{word-spacing:-0.974160px;}
.ws18_c03026{word-spacing:-0.719712px;}
.ws14_c03026{word-spacing:-0.399168px;}
.ws12_c03026{word-spacing:-0.118800px;}
.ws16_c03026{word-spacing:-0.099792px;}
.ws17_c03026{word-spacing:-0.085536px;}
.ws10_c03026{word-spacing:0.000000px;}
.ws15_c03026{word-spacing:0.361152px;}
.ws19_c03026{word-spacing:0.432432px;}
.ws2_c03026{word-spacing:1.330560px;}
.wsb_c03026{word-spacing:33.300288px;}
.ws8_c03026{word-spacing:36.143712px;}
.ws6_c03026{word-spacing:36.742464px;}
.ws1_c03026{word-spacing:37.759392px;}
.ws0_c03026{word-spacing:38.020752px;}
.ws3_c03026{word-spacing:39.218256px;}
.ws5_c03026{word-spacing:39.902544px;}
.ws7_c03026{word-spacing:42.026688px;}
._0_c03026{margin-left:-1.948320px;}
._3_c03026{width:1.482624px;}
._6_c03026{width:3.302640px;}
._5_c03026{width:6.263136px;}
._2_c03026{width:10.145520px;}
._1_c03026{width:50.252400px;}
._4_c03026{width:51.530688px;}
.fc0_c03026{color:rgb(0,0,0);}
.fs0_c03026{font-size:47.520000px;}
.fs1_c03026{font-size:60.480000px;}
.y0_c03026{bottom:0.000000px;}
.y19_c03026{bottom:146.998362px;}
.y1b_c03026{bottom:186.600234px;}
.y1a_c03026{bottom:196.320450px;}
.y18_c03026{bottom:275.878542px;}
.y17_c03026{bottom:356.878758px;}
.y15_c03026{bottom:406.559730px;}
.y11_c03026{bottom:424.560306px;}
.y16_c03026{bottom:458.759262px;}
.y14_c03026{bottom:491.879514px;}
.y13_c03026{bottom:509.880090px;}
.y10_c03026{bottom:543.000342px;}
.y12_c03026{bottom:559.559874px;}
.yf_c03026{bottom:577.560450px;}
.y1c_c03026{bottom:614.280450px;}
.yb_c03026{bottom:667.558326px;}
.yd_c03026{bottom:707.160234px;}
.yc_c03026{bottom:716.880450px;}
.ya_c03026{bottom:796.438506px;}
.y9_c03026{bottom:877.438722px;}
.y7_c03026{bottom:926.759730px;}
.y3_c03026{bottom:944.760306px;}
.y8_c03026{bottom:979.319226px;}
.y6_c03026{bottom:1012.439478px;}
.y5_c03026{bottom:1030.440054px;}
.y2_c03026{bottom:1063.560306px;}
.y4_c03026{bottom:1079.759874px;}
.y1_c03026{bottom:1097.760450px;}
.ye_c03026{bottom:1134.840450px;}
.h3_c03026{height:32.530781px;}
.h1_c03026{height:41.696016px;}
.h2_c03026{height:41.812031px;}
.h4_c03026{height:54.654737px;}
.h0_c03026{height:1263.000000px;}
.w1_c03026{width:892.500000px;}
.w0_c03026{width:892.830000px;}
.x0_c03026{left:0.000000px;}
.xd_c03026{left:117.000000px;}
.x8_c03026{left:440.999856px;}
.x4_c03026{left:445.680576px;}
.xb_c03026{left:451.080000px;}
.x7_c03026{left:455.399604px;}
.x5_c03026{left:461.880144px;}
.x1_c03026{left:463.320000px;}
.xa_c03026{left:483.480360px;}
.x9_c03026{left:492.119496px;}
.x6_c03026{left:493.200576px;}
.xc_c03026{left:506.880360px;}
.x3_c03026{left:511.919892px;}
.x2_c03026{left:526.679604px;}
@media print{
.v0_c03026{vertical-align:0.000000pt;}
.v1_c03026{vertical-align:1.279488pt;}
.ls14_c03026{letter-spacing:-0.705408pt;}
.lsc_c03026{letter-spacing:-0.642048pt;}
.ls13_c03026{letter-spacing:-0.544896pt;}
.ls8_c03026{letter-spacing:-0.511104pt;}
.lsf_c03026{letter-spacing:-0.244992pt;}
.lsd_c03026{letter-spacing:-0.232320pt;}
.ls6_c03026{letter-spacing:-0.215424pt;}
.ls4_c03026{letter-spacing:-0.105600pt;}
.ls12_c03026{letter-spacing:0.000000pt;}
.ls2_c03026{letter-spacing:0.005376pt;}
.lsb_c03026{letter-spacing:0.033792pt;}
.ls5_c03026{letter-spacing:0.114048pt;}
.lsa_c03026{letter-spacing:0.451968pt;}
.ls11_c03026{letter-spacing:0.456960pt;}
.lse_c03026{letter-spacing:0.477312pt;}
.ls9_c03026{letter-spacing:0.515328pt;}
.ls10_c03026{letter-spacing:0.528000pt;}
.ls7_c03026{letter-spacing:0.532224pt;}
.ls3_c03026{letter-spacing:0.544896pt;}
.ls0_c03026{letter-spacing:0.578688pt;}
.ls1_c03026{letter-spacing:0.637824pt;}
.ls15_c03026{letter-spacing:0.642048pt;}
.wsc_c03026{word-spacing:-13.445376pt;}
.wsa_c03026{word-spacing:-11.088000pt;}
.wse_c03026{word-spacing:-11.075328pt;}
.ws9_c03026{word-spacing:-11.037312pt;}
.ws4_c03026{word-spacing:-10.344576pt;}
.wsd_c03026{word-spacing:-10.015104pt;}
.ws1a_c03026{word-spacing:-0.963072pt;}
.ws13_c03026{word-spacing:-0.958848pt;}
.ws11_c03026{word-spacing:-0.899712pt;}
.wsf_c03026{word-spacing:-0.865920pt;}
.ws18_c03026{word-spacing:-0.639744pt;}
.ws14_c03026{word-spacing:-0.354816pt;}
.ws12_c03026{word-spacing:-0.105600pt;}
.ws16_c03026{word-spacing:-0.088704pt;}
.ws17_c03026{word-spacing:-0.076032pt;}
.ws10_c03026{word-spacing:0.000000pt;}
.ws15_c03026{word-spacing:0.321024pt;}
.ws19_c03026{word-spacing:0.384384pt;}
.ws2_c03026{word-spacing:1.182720pt;}
.wsb_c03026{word-spacing:29.600256pt;}
.ws8_c03026{word-spacing:32.127744pt;}
.ws6_c03026{word-spacing:32.659968pt;}
.ws1_c03026{word-spacing:33.563904pt;}
.ws0_c03026{word-spacing:33.796224pt;}
.ws3_c03026{word-spacing:34.860672pt;}
.ws5_c03026{word-spacing:35.468928pt;}
.ws7_c03026{word-spacing:37.357056pt;}
._0_c03026{margin-left:-1.731840pt;}
._3_c03026{width:1.317888pt;}
._6_c03026{width:2.935680pt;}
._5_c03026{width:5.567232pt;}
._2_c03026{width:9.018240pt;}
._1_c03026{width:44.668800pt;}
._4_c03026{width:45.805056pt;}
.fs0_c03026{font-size:42.240000pt;}
.fs1_c03026{font-size:53.760000pt;}
.y0_c03026{bottom:0.000000pt;}
.y19_c03026{bottom:130.665211pt;}
.y1b_c03026{bottom:165.866875pt;}
.y1a_c03026{bottom:174.507067pt;}
.y18_c03026{bottom:245.225371pt;}
.y17_c03026{bottom:317.225563pt;}
.y15_c03026{bottom:361.386427pt;}
.y11_c03026{bottom:377.386939pt;}
.y16_c03026{bottom:407.786011pt;}
.y14_c03026{bottom:437.226235pt;}
.y13_c03026{bottom:453.226747pt;}
.y10_c03026{bottom:482.666971pt;}
.y12_c03026{bottom:497.386555pt;}
.yf_c03026{bottom:513.387067pt;}
.y1c_c03026{bottom:546.027067pt;}
.yb_c03026{bottom:593.385179pt;}
.yd_c03026{bottom:628.586875pt;}
.yc_c03026{bottom:637.227067pt;}
.ya_c03026{bottom:707.945339pt;}
.y9_c03026{bottom:779.945531pt;}
.y7_c03026{bottom:823.786427pt;}
.y3_c03026{bottom:839.786939pt;}
.y8_c03026{bottom:870.505979pt;}
.y6_c03026{bottom:899.946203pt;}
.y5_c03026{bottom:915.946715pt;}
.y2_c03026{bottom:945.386939pt;}
.y4_c03026{bottom:959.786555pt;}
.y1_c03026{bottom:975.787067pt;}
.ye_c03026{bottom:1008.747067pt;}
.h3_c03026{height:28.916250pt;}
.h1_c03026{height:37.063125pt;}
.h2_c03026{height:37.166250pt;}
.h4_c03026{height:48.581988pt;}
.h0_c03026{height:1122.666667pt;}
.w1_c03026{width:793.333333pt;}
.w0_c03026{width:793.626667pt;}
.x0_c03026{left:0.000000pt;}
.xd_c03026{left:104.000000pt;}
.x8_c03026{left:391.999872pt;}
.x4_c03026{left:396.160512pt;}
.xb_c03026{left:400.960000pt;}
.x7_c03026{left:404.799648pt;}
.x5_c03026{left:410.560128pt;}
.x1_c03026{left:411.840000pt;}
.xa_c03026{left:429.760320pt;}
.x9_c03026{left:437.439552pt;}
.x6_c03026{left:438.400512pt;}
.xc_c03026{left:450.560320pt;}
.x3_c03026{left:455.039904pt;}
.x2_c03026{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03027 {
    display:none;
  }
  .loading-indicator_c03027.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03027 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03027 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03027" -> "#page-container .classname_c03027")
 */
.pf_c03027 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03027 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03027 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03027 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03027 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03027 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03027 {overflow:visible;}
  }
}
.c_c03027 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03027 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03027:after { /* webkit #35443 */
  content: '';
}
.t_c03027:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03027 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03027 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03027 { /* info for Javascript */
  display:none;
}
.l_c03027 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03027 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03027 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03027:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03027 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03027.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03027 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03027;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03027{font-family:ff1_c03027;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03027;src:url('chunks/assets/font_b72de825690e78c74794c70a.woff2')format("woff");}.ff2_c03027{font-family:ff2_c03027;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03027;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03027{font-family:ff3_c03027;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03027{vertical-align:0.000000px;}
.v1_c03027{vertical-align:1.439424px;}
.lsc_c03027{letter-spacing:-0.793584px;}
.ls7_c03027{letter-spacing:-0.613008px;}
.ls9_c03027{letter-spacing:-0.574992px;}
.lse_c03027{letter-spacing:-0.375408px;}
.ls10_c03027{letter-spacing:-0.275616px;}
.lsd_c03027{letter-spacing:-0.261360px;}
.ls6_c03027{letter-spacing:-0.242352px;}
.ls4_c03027{letter-spacing:-0.118800px;}
.ls13_c03027{letter-spacing:0.000000px;}
.ls1_c03027{letter-spacing:0.006048px;}
.ls5_c03027{letter-spacing:0.128304px;}
.lsb_c03027{letter-spacing:0.508464px;}
.ls12_c03027{letter-spacing:0.514080px;}
.lsf_c03027{letter-spacing:0.536976px;}
.lsa_c03027{letter-spacing:0.579744px;}
.ls11_c03027{letter-spacing:0.594000px;}
.ls8_c03027{letter-spacing:0.598752px;}
.ls2_c03027{letter-spacing:0.613008px;}
.ls3_c03027{letter-spacing:0.717552px;}
.ls0_c03027{letter-spacing:0.722304px;}
.sc__c03027{text-shadow:none;}
.sc0_c03027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03027{-webkit-text-stroke:0px transparent;}
.sc0_c03027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03027{word-spacing:-15.126048px;}
.wsa_c03027{word-spacing:-12.474000px;}
.ws6_c03027{word-spacing:-12.459744px;}
.ws9_c03027{word-spacing:-12.416976px;}
.ws4_c03027{word-spacing:-11.637648px;}
.ws2_c03027{word-spacing:-11.266992px;}
.ws10_c03027{word-spacing:-1.083456px;}
.wsd_c03027{word-spacing:-0.974160px;}
.ws15_c03027{word-spacing:-0.719712px;}
.wsf_c03027{word-spacing:-0.118800px;}
.ws12_c03027{word-spacing:-0.099792px;}
.ws14_c03027{word-spacing:-0.085536px;}
.wse_c03027{word-spacing:0.000000px;}
.ws13_c03027{word-spacing:0.014256px;}
.ws11_c03027{word-spacing:0.432432px;}
.wsb_c03027{word-spacing:33.300288px;}
.ws8_c03027{word-spacing:36.143712px;}
.ws1_c03027{word-spacing:37.759392px;}
.ws0_c03027{word-spacing:38.020752px;}
.ws3_c03027{word-spacing:39.218256px;}
.ws5_c03027{word-spacing:39.902544px;}
.ws7_c03027{word-spacing:42.026688px;}
._0_c03027{margin-left:-1.948320px;}
._2_c03027{width:1.482624px;}
._4_c03027{width:3.302640px;}
._1_c03027{width:50.252400px;}
._3_c03027{width:51.530688px;}
.fc0_c03027{color:rgb(0,0,0);}
.fs0_c03027{font-size:47.520000px;}
.fs1_c03027{font-size:60.480000px;}
.y0_c03027{bottom:0.000000px;}
.y19_c03027{bottom:146.998362px;}
.y1b_c03027{bottom:186.600234px;}
.y1a_c03027{bottom:196.320450px;}
.y18_c03027{bottom:275.878542px;}
.y17_c03027{bottom:356.878758px;}
.y15_c03027{bottom:406.559730px;}
.y11_c03027{bottom:424.560306px;}
.y16_c03027{bottom:458.759262px;}
.y14_c03027{bottom:491.879514px;}
.y13_c03027{bottom:509.880090px;}
.y10_c03027{bottom:543.000342px;}
.y12_c03027{bottom:559.559874px;}
.yf_c03027{bottom:577.560450px;}
.y1c_c03027{bottom:614.280450px;}
.yb_c03027{bottom:667.558326px;}
.yd_c03027{bottom:707.160234px;}
.yc_c03027{bottom:716.880450px;}
.ya_c03027{bottom:796.438506px;}
.y9_c03027{bottom:877.438722px;}
.y7_c03027{bottom:926.759730px;}
.y3_c03027{bottom:944.760306px;}
.y8_c03027{bottom:979.319226px;}
.y6_c03027{bottom:1012.439478px;}
.y5_c03027{bottom:1030.440054px;}
.y2_c03027{bottom:1063.560306px;}
.y4_c03027{bottom:1079.759874px;}
.y1_c03027{bottom:1097.760450px;}
.ye_c03027{bottom:1134.840450px;}
.h3_c03027{height:32.530781px;}
.h1_c03027{height:41.696016px;}
.h2_c03027{height:41.812031px;}
.h4_c03027{height:54.654737px;}
.h0_c03027{height:1263.000000px;}
.w1_c03027{width:892.500000px;}
.w0_c03027{width:892.830000px;}
.x0_c03027{left:0.000000px;}
.xd_c03027{left:117.000000px;}
.x8_c03027{left:440.999856px;}
.x4_c03027{left:445.680576px;}
.xb_c03027{left:451.080000px;}
.x7_c03027{left:455.399604px;}
.x5_c03027{left:461.880144px;}
.x1_c03027{left:463.320000px;}
.xa_c03027{left:483.480360px;}
.x9_c03027{left:492.119496px;}
.x6_c03027{left:493.200576px;}
.xc_c03027{left:506.880360px;}
.x3_c03027{left:511.919892px;}
.x2_c03027{left:526.679604px;}
@media print{
.v0_c03027{vertical-align:0.000000pt;}
.v1_c03027{vertical-align:1.279488pt;}
.lsc_c03027{letter-spacing:-0.705408pt;}
.ls7_c03027{letter-spacing:-0.544896pt;}
.ls9_c03027{letter-spacing:-0.511104pt;}
.lse_c03027{letter-spacing:-0.333696pt;}
.ls10_c03027{letter-spacing:-0.244992pt;}
.lsd_c03027{letter-spacing:-0.232320pt;}
.ls6_c03027{letter-spacing:-0.215424pt;}
.ls4_c03027{letter-spacing:-0.105600pt;}
.ls13_c03027{letter-spacing:0.000000pt;}
.ls1_c03027{letter-spacing:0.005376pt;}
.ls5_c03027{letter-spacing:0.114048pt;}
.lsb_c03027{letter-spacing:0.451968pt;}
.ls12_c03027{letter-spacing:0.456960pt;}
.lsf_c03027{letter-spacing:0.477312pt;}
.lsa_c03027{letter-spacing:0.515328pt;}
.ls11_c03027{letter-spacing:0.528000pt;}
.ls8_c03027{letter-spacing:0.532224pt;}
.ls2_c03027{letter-spacing:0.544896pt;}
.ls3_c03027{letter-spacing:0.637824pt;}
.ls0_c03027{letter-spacing:0.642048pt;}
.wsc_c03027{word-spacing:-13.445376pt;}
.wsa_c03027{word-spacing:-11.088000pt;}
.ws6_c03027{word-spacing:-11.075328pt;}
.ws9_c03027{word-spacing:-11.037312pt;}
.ws4_c03027{word-spacing:-10.344576pt;}
.ws2_c03027{word-spacing:-10.015104pt;}
.ws10_c03027{word-spacing:-0.963072pt;}
.wsd_c03027{word-spacing:-0.865920pt;}
.ws15_c03027{word-spacing:-0.639744pt;}
.wsf_c03027{word-spacing:-0.105600pt;}
.ws12_c03027{word-spacing:-0.088704pt;}
.ws14_c03027{word-spacing:-0.076032pt;}
.wse_c03027{word-spacing:0.000000pt;}
.ws13_c03027{word-spacing:0.012672pt;}
.ws11_c03027{word-spacing:0.384384pt;}
.wsb_c03027{word-spacing:29.600256pt;}
.ws8_c03027{word-spacing:32.127744pt;}
.ws1_c03027{word-spacing:33.563904pt;}
.ws0_c03027{word-spacing:33.796224pt;}
.ws3_c03027{word-spacing:34.860672pt;}
.ws5_c03027{word-spacing:35.468928pt;}
.ws7_c03027{word-spacing:37.357056pt;}
._0_c03027{margin-left:-1.731840pt;}
._2_c03027{width:1.317888pt;}
._4_c03027{width:2.935680pt;}
._1_c03027{width:44.668800pt;}
._3_c03027{width:45.805056pt;}
.fs0_c03027{font-size:42.240000pt;}
.fs1_c03027{font-size:53.760000pt;}
.y0_c03027{bottom:0.000000pt;}
.y19_c03027{bottom:130.665211pt;}
.y1b_c03027{bottom:165.866875pt;}
.y1a_c03027{bottom:174.507067pt;}
.y18_c03027{bottom:245.225371pt;}
.y17_c03027{bottom:317.225563pt;}
.y15_c03027{bottom:361.386427pt;}
.y11_c03027{bottom:377.386939pt;}
.y16_c03027{bottom:407.786011pt;}
.y14_c03027{bottom:437.226235pt;}
.y13_c03027{bottom:453.226747pt;}
.y10_c03027{bottom:482.666971pt;}
.y12_c03027{bottom:497.386555pt;}
.yf_c03027{bottom:513.387067pt;}
.y1c_c03027{bottom:546.027067pt;}
.yb_c03027{bottom:593.385179pt;}
.yd_c03027{bottom:628.586875pt;}
.yc_c03027{bottom:637.227067pt;}
.ya_c03027{bottom:707.945339pt;}
.y9_c03027{bottom:779.945531pt;}
.y7_c03027{bottom:823.786427pt;}
.y3_c03027{bottom:839.786939pt;}
.y8_c03027{bottom:870.505979pt;}
.y6_c03027{bottom:899.946203pt;}
.y5_c03027{bottom:915.946715pt;}
.y2_c03027{bottom:945.386939pt;}
.y4_c03027{bottom:959.786555pt;}
.y1_c03027{bottom:975.787067pt;}
.ye_c03027{bottom:1008.747067pt;}
.h3_c03027{height:28.916250pt;}
.h1_c03027{height:37.063125pt;}
.h2_c03027{height:37.166250pt;}
.h4_c03027{height:48.581988pt;}
.h0_c03027{height:1122.666667pt;}
.w1_c03027{width:793.333333pt;}
.w0_c03027{width:793.626667pt;}
.x0_c03027{left:0.000000pt;}
.xd_c03027{left:104.000000pt;}
.x8_c03027{left:391.999872pt;}
.x4_c03027{left:396.160512pt;}
.xb_c03027{left:400.960000pt;}
.x7_c03027{left:404.799648pt;}
.x5_c03027{left:410.560128pt;}
.x1_c03027{left:411.840000pt;}
.xa_c03027{left:429.760320pt;}
.x9_c03027{left:437.439552pt;}
.x6_c03027{left:438.400512pt;}
.xc_c03027{left:450.560320pt;}
.x3_c03027{left:455.039904pt;}
.x2_c03027{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03028 {
    display:none;
  }
  .loading-indicator_c03028.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03028 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03028 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03028" -> "#page-container .classname_c03028")
 */
.pf_c03028 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03028 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03028 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03028 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03028 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03028 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03028 {overflow:visible;}
  }
}
.c_c03028 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03028 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03028:after { /* webkit #35443 */
  content: '';
}
.t_c03028:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03028 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03028 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03028 { /* info for Javascript */
  display:none;
}
.l_c03028 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03028 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03028 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03028:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03028 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03028.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03028 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03028;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03028{font-family:ff1_c03028;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03028;src:url('chunks/assets/font_60904d7a77f9bffd4da4e445.woff2')format("woff");}.ff2_c03028{font-family:ff2_c03028;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03028;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03028{font-family:ff3_c03028;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03028{vertical-align:0.000000px;}
.v1_c03028{vertical-align:1.439424px;}
.lsb_c03028{letter-spacing:-1.197504px;}
.lsc_c03028{letter-spacing:-0.693792px;}
.ls6_c03028{letter-spacing:-0.613008px;}
.ls8_c03028{letter-spacing:-0.574992px;}
.lsf_c03028{letter-spacing:-0.275616px;}
.lsd_c03028{letter-spacing:-0.261360px;}
.ls5_c03028{letter-spacing:-0.242352px;}
.ls3_c03028{letter-spacing:-0.118800px;}
.ls12_c03028{letter-spacing:0.000000px;}
.ls1_c03028{letter-spacing:0.006048px;}
.ls4_c03028{letter-spacing:0.128304px;}
.lsa_c03028{letter-spacing:0.508464px;}
.ls11_c03028{letter-spacing:0.514080px;}
.lse_c03028{letter-spacing:0.536976px;}
.ls9_c03028{letter-spacing:0.579744px;}
.ls10_c03028{letter-spacing:0.594000px;}
.ls7_c03028{letter-spacing:0.598752px;}
.ls2_c03028{letter-spacing:0.613008px;}
.ls0_c03028{letter-spacing:0.717552px;}
.sc__c03028{text-shadow:none;}
.sc0_c03028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03028{-webkit-text-stroke:0px transparent;}
.sc0_c03028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03028{word-spacing:-15.126048px;}
.wsa_c03028{word-spacing:-12.474000px;}
.ws9_c03028{word-spacing:-12.416976px;}
.ws2_c03028{word-spacing:-11.266992px;}
.ws10_c03028{word-spacing:-1.078704px;}
.wsd_c03028{word-spacing:-0.974160px;}
.ws15_c03028{word-spacing:-0.719712px;}
.wsf_c03028{word-spacing:-0.118800px;}
.ws13_c03028{word-spacing:-0.099792px;}
.ws14_c03028{word-spacing:-0.085536px;}
.wse_c03028{word-spacing:0.000000px;}
.ws12_c03028{word-spacing:0.332640px;}
.ws11_c03028{word-spacing:0.836352px;}
.ws4_c03028{word-spacing:4.951584px;}
.wsb_c03028{word-spacing:33.300288px;}
.ws8_c03028{word-spacing:36.143712px;}
.ws6_c03028{word-spacing:36.742464px;}
.ws1_c03028{word-spacing:37.759392px;}
.ws0_c03028{word-spacing:38.020752px;}
.ws3_c03028{word-spacing:39.218256px;}
.ws5_c03028{word-spacing:39.902544px;}
.ws7_c03028{word-spacing:42.026688px;}
._0_c03028{margin-left:-1.948320px;}
._2_c03028{width:1.482624px;}
._4_c03028{width:2.770416px;}
._1_c03028{width:50.252400px;}
._3_c03028{width:51.530688px;}
.fc0_c03028{color:rgb(0,0,0);}
.fs0_c03028{font-size:47.520000px;}
.fs1_c03028{font-size:60.480000px;}
.y0_c03028{bottom:0.000000px;}
.y19_c03028{bottom:146.998362px;}
.y1b_c03028{bottom:186.600234px;}
.y1a_c03028{bottom:196.320450px;}
.y18_c03028{bottom:275.878542px;}
.y17_c03028{bottom:356.878758px;}
.y15_c03028{bottom:406.559730px;}
.y11_c03028{bottom:424.560306px;}
.y16_c03028{bottom:458.759262px;}
.y14_c03028{bottom:491.879514px;}
.y13_c03028{bottom:509.880090px;}
.y10_c03028{bottom:543.000342px;}
.y12_c03028{bottom:559.559874px;}
.yf_c03028{bottom:577.560450px;}
.y1c_c03028{bottom:614.280450px;}
.yb_c03028{bottom:667.558326px;}
.yd_c03028{bottom:707.160234px;}
.yc_c03028{bottom:716.880450px;}
.ya_c03028{bottom:796.438506px;}
.y9_c03028{bottom:877.438722px;}
.y7_c03028{bottom:926.759730px;}
.y3_c03028{bottom:944.760306px;}
.y8_c03028{bottom:979.319226px;}
.y6_c03028{bottom:1012.439478px;}
.y5_c03028{bottom:1030.440054px;}
.y2_c03028{bottom:1063.560306px;}
.y4_c03028{bottom:1079.759874px;}
.y1_c03028{bottom:1097.760450px;}
.ye_c03028{bottom:1134.840450px;}
.h3_c03028{height:32.530781px;}
.h1_c03028{height:41.696016px;}
.h2_c03028{height:41.812031px;}
.h4_c03028{height:54.654737px;}
.h0_c03028{height:1263.000000px;}
.w1_c03028{width:892.500000px;}
.w0_c03028{width:892.830000px;}
.x0_c03028{left:0.000000px;}
.xd_c03028{left:117.000000px;}
.x8_c03028{left:440.999856px;}
.x4_c03028{left:445.680576px;}
.xb_c03028{left:451.080000px;}
.x7_c03028{left:455.399604px;}
.x5_c03028{left:461.880144px;}
.x1_c03028{left:463.320000px;}
.xa_c03028{left:483.480360px;}
.x9_c03028{left:492.119496px;}
.x6_c03028{left:493.200576px;}
.xc_c03028{left:506.880360px;}
.x3_c03028{left:511.919892px;}
.x2_c03028{left:526.679604px;}
@media print{
.v0_c03028{vertical-align:0.000000pt;}
.v1_c03028{vertical-align:1.279488pt;}
.lsb_c03028{letter-spacing:-1.064448pt;}
.lsc_c03028{letter-spacing:-0.616704pt;}
.ls6_c03028{letter-spacing:-0.544896pt;}
.ls8_c03028{letter-spacing:-0.511104pt;}
.lsf_c03028{letter-spacing:-0.244992pt;}
.lsd_c03028{letter-spacing:-0.232320pt;}
.ls5_c03028{letter-spacing:-0.215424pt;}
.ls3_c03028{letter-spacing:-0.105600pt;}
.ls12_c03028{letter-spacing:0.000000pt;}
.ls1_c03028{letter-spacing:0.005376pt;}
.ls4_c03028{letter-spacing:0.114048pt;}
.lsa_c03028{letter-spacing:0.451968pt;}
.ls11_c03028{letter-spacing:0.456960pt;}
.lse_c03028{letter-spacing:0.477312pt;}
.ls9_c03028{letter-spacing:0.515328pt;}
.ls10_c03028{letter-spacing:0.528000pt;}
.ls7_c03028{letter-spacing:0.532224pt;}
.ls2_c03028{letter-spacing:0.544896pt;}
.ls0_c03028{letter-spacing:0.637824pt;}
.wsc_c03028{word-spacing:-13.445376pt;}
.wsa_c03028{word-spacing:-11.088000pt;}
.ws9_c03028{word-spacing:-11.037312pt;}
.ws2_c03028{word-spacing:-10.015104pt;}
.ws10_c03028{word-spacing:-0.958848pt;}
.wsd_c03028{word-spacing:-0.865920pt;}
.ws15_c03028{word-spacing:-0.639744pt;}
.wsf_c03028{word-spacing:-0.105600pt;}
.ws13_c03028{word-spacing:-0.088704pt;}
.ws14_c03028{word-spacing:-0.076032pt;}
.wse_c03028{word-spacing:0.000000pt;}
.ws12_c03028{word-spacing:0.295680pt;}
.ws11_c03028{word-spacing:0.743424pt;}
.ws4_c03028{word-spacing:4.401408pt;}
.wsb_c03028{word-spacing:29.600256pt;}
.ws8_c03028{word-spacing:32.127744pt;}
.ws6_c03028{word-spacing:32.659968pt;}
.ws1_c03028{word-spacing:33.563904pt;}
.ws0_c03028{word-spacing:33.796224pt;}
.ws3_c03028{word-spacing:34.860672pt;}
.ws5_c03028{word-spacing:35.468928pt;}
.ws7_c03028{word-spacing:37.357056pt;}
._0_c03028{margin-left:-1.731840pt;}
._2_c03028{width:1.317888pt;}
._4_c03028{width:2.462592pt;}
._1_c03028{width:44.668800pt;}
._3_c03028{width:45.805056pt;}
.fs0_c03028{font-size:42.240000pt;}
.fs1_c03028{font-size:53.760000pt;}
.y0_c03028{bottom:0.000000pt;}
.y19_c03028{bottom:130.665211pt;}
.y1b_c03028{bottom:165.866875pt;}
.y1a_c03028{bottom:174.507067pt;}
.y18_c03028{bottom:245.225371pt;}
.y17_c03028{bottom:317.225563pt;}
.y15_c03028{bottom:361.386427pt;}
.y11_c03028{bottom:377.386939pt;}
.y16_c03028{bottom:407.786011pt;}
.y14_c03028{bottom:437.226235pt;}
.y13_c03028{bottom:453.226747pt;}
.y10_c03028{bottom:482.666971pt;}
.y12_c03028{bottom:497.386555pt;}
.yf_c03028{bottom:513.387067pt;}
.y1c_c03028{bottom:546.027067pt;}
.yb_c03028{bottom:593.385179pt;}
.yd_c03028{bottom:628.586875pt;}
.yc_c03028{bottom:637.227067pt;}
.ya_c03028{bottom:707.945339pt;}
.y9_c03028{bottom:779.945531pt;}
.y7_c03028{bottom:823.786427pt;}
.y3_c03028{bottom:839.786939pt;}
.y8_c03028{bottom:870.505979pt;}
.y6_c03028{bottom:899.946203pt;}
.y5_c03028{bottom:915.946715pt;}
.y2_c03028{bottom:945.386939pt;}
.y4_c03028{bottom:959.786555pt;}
.y1_c03028{bottom:975.787067pt;}
.ye_c03028{bottom:1008.747067pt;}
.h3_c03028{height:28.916250pt;}
.h1_c03028{height:37.063125pt;}
.h2_c03028{height:37.166250pt;}
.h4_c03028{height:48.581988pt;}
.h0_c03028{height:1122.666667pt;}
.w1_c03028{width:793.333333pt;}
.w0_c03028{width:793.626667pt;}
.x0_c03028{left:0.000000pt;}
.xd_c03028{left:104.000000pt;}
.x8_c03028{left:391.999872pt;}
.x4_c03028{left:396.160512pt;}
.xb_c03028{left:400.960000pt;}
.x7_c03028{left:404.799648pt;}
.x5_c03028{left:410.560128pt;}
.x1_c03028{left:411.840000pt;}
.xa_c03028{left:429.760320pt;}
.x9_c03028{left:437.439552pt;}
.x6_c03028{left:438.400512pt;}
.xc_c03028{left:450.560320pt;}
.x3_c03028{left:455.039904pt;}
.x2_c03028{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03029 {
    display:none;
  }
  .loading-indicator_c03029.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03029 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03029 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03029" -> "#page-container .classname_c03029")
 */
.pf_c03029 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03029 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03029.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03029 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03029 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03029 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03029 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03029 {overflow:visible;}
  }
}
.c_c03029 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03029 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03029:after { /* webkit #35443 */
  content: '';
}
.t_c03029:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03029 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03029 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03029 { /* info for Javascript */
  display:none;
}
.l_c03029 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03029 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03029 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03029:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03029 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03029.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03029.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03029 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03029;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03029{font-family:ff1_c03029;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03029;src:url('chunks/assets/font_b89635f7db611b06113d0901.woff2')format("woff");}.ff2_c03029{font-family:ff2_c03029;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03029;src:url('chunks/assets/font_7e567d53b5ddfd2c5fa0e430.woff2')format("woff");}.ff3_c03029{font-family:ff3_c03029;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03029{vertical-align:0.000000px;}
.v1_c03029{vertical-align:1.439424px;}
.v2_c03029{vertical-align:33.121440px;}
.lsf_c03029{letter-spacing:-0.793584px;}
.lsc_c03029{letter-spacing:-0.774576px;}
.ls12_c03029{letter-spacing:-0.736560px;}
.ls9_c03029{letter-spacing:-0.613008px;}
.lsb_c03029{letter-spacing:-0.574992px;}
.ls18_c03029{letter-spacing:-0.427680px;}
.ls1d_c03029{letter-spacing:-0.342144px;}
.ls1c_c03029{letter-spacing:-0.275616px;}
.ls13_c03029{letter-spacing:-0.270864px;}
.ls10_c03029{letter-spacing:-0.261360px;}
.ls8_c03029{letter-spacing:-0.242352px;}
.ls1b_c03029{letter-spacing:-0.237600px;}
.ls1a_c03029{letter-spacing:-0.228096px;}
.ls6_c03029{letter-spacing:-0.118800px;}
.ls16_c03029{letter-spacing:0.000000px;}
.ls1_c03029{letter-spacing:0.006048px;}
.ls2_c03029{letter-spacing:0.033264px;}
.ls19_c03029{letter-spacing:0.071280px;}
.ls17_c03029{letter-spacing:0.090288px;}
.ls7_c03029{letter-spacing:0.128304px;}
.lse_c03029{letter-spacing:0.508464px;}
.ls15_c03029{letter-spacing:0.514080px;}
.ls11_c03029{letter-spacing:0.536976px;}
.lsd_c03029{letter-spacing:0.579744px;}
.ls14_c03029{letter-spacing:0.594000px;}
.lsa_c03029{letter-spacing:0.598752px;}
.ls4_c03029{letter-spacing:0.613008px;}
.ls0_c03029{letter-spacing:0.651024px;}
.ls5_c03029{letter-spacing:0.717552px;}
.ls3_c03029{letter-spacing:0.722304px;}
.sc__c03029{text-shadow:none;}
.sc0_c03029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03029{-webkit-text-stroke:0px transparent;}
.sc0_c03029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03029{word-spacing:-15.126048px;}
.wsb_c03029{word-spacing:-12.474000px;}
.ws7_c03029{word-spacing:-12.459744px;}
.ws11_c03029{word-spacing:-11.651904px;}
.ws12_c03029{word-spacing:-11.642400px;}
.ws4_c03029{word-spacing:-11.637648px;}
.ws2_c03029{word-spacing:-11.266992px;}
.ws6_c03029{word-spacing:-11.105424px;}
.ws20_c03029{word-spacing:-1.083456px;}
.ws16_c03029{word-spacing:-1.012176px;}
.ws14_c03029{word-spacing:-0.974160px;}
.ws1c_c03029{word-spacing:-0.719712px;}
.ws1d_c03029{word-spacing:-0.394416px;}
.ws17_c03029{word-spacing:-0.118800px;}
.ws19_c03029{word-spacing:-0.099792px;}
.ws1a_c03029{word-spacing:-0.090288px;}
.ws1b_c03029{word-spacing:-0.085536px;}
.ws1f_c03029{word-spacing:-0.019008px;}
.ws15_c03029{word-spacing:0.000000px;}
.ws1e_c03029{word-spacing:0.066528px;}
.ws18_c03029{word-spacing:0.432432px;}
.wse_c03029{word-spacing:1.330560px;}
.wsf_c03029{word-spacing:1.406592px;}
.wsa_c03029{word-spacing:6.629040px;}
.ws10_c03029{word-spacing:24.487056px;}
.ws13_c03029{word-spacing:30.298752px;}
.wsc_c03029{word-spacing:33.300288px;}
.ws9_c03029{word-spacing:34.836912px;}
.ws1_c03029{word-spacing:37.759392px;}
.ws0_c03029{word-spacing:38.020752px;}
.ws3_c03029{word-spacing:39.218256px;}
.ws5_c03029{word-spacing:39.902544px;}
.ws8_c03029{word-spacing:42.026688px;}
._0_c03029{margin-left:-1.948320px;}
._2_c03029{width:1.482624px;}
._4_c03029{width:3.302640px;}
._9_c03029{width:4.785264px;}
._8_c03029{width:10.145520px;}
._b_c03029{width:11.504592px;}
._a_c03029{width:14.598144px;}
._6_c03029{width:19.982160px;}
._7_c03029{width:23.451120px;}
._5_c03029{width:24.691392px;}
._c_c03029{width:38.624256px;}
._d_c03029{width:41.608512px;}
._1_c03029{width:50.252400px;}
._3_c03029{width:51.530688px;}
.fc0_c03029{color:rgb(0,0,0);}
.fs0_c03029{font-size:47.520000px;}
.fs1_c03029{font-size:60.480000px;}
.y0_c03029{bottom:0.000000px;}
.y1d_c03029{bottom:19.440450px;}
.y1c_c03029{bottom:113.880000px;}
.y1b_c03029{bottom:146.999550px;}
.y1f_c03029{bottom:186.600234px;}
.y1e_c03029{bottom:196.320450px;}
.y1a_c03029{bottom:275.879730px;}
.y19_c03029{bottom:356.879946px;}
.y16_c03029{bottom:406.559730px;}
.y12_c03029{bottom:424.560306px;}
.y18_c03029{bottom:443.999550px;}
.y17_c03029{bottom:458.759262px;}
.y15_c03029{bottom:491.879514px;}
.y14_c03029{bottom:509.880090px;}
.y11_c03029{bottom:543.000342px;}
.y13_c03029{bottom:559.559874px;}
.y10_c03029{bottom:577.560450px;}
.y20_c03029{bottom:614.280450px;}
.yc_c03029{bottom:652.438650px;}
.yb_c03029{bottom:667.558326px;}
.ye_c03029{bottom:707.160234px;}
.yd_c03029{bottom:716.880450px;}
.ya_c03029{bottom:796.438506px;}
.y9_c03029{bottom:877.438722px;}
.y7_c03029{bottom:926.759730px;}
.y3_c03029{bottom:944.760306px;}
.y8_c03029{bottom:979.319226px;}
.y6_c03029{bottom:1012.439478px;}
.y5_c03029{bottom:1030.440054px;}
.y2_c03029{bottom:1063.560306px;}
.y4_c03029{bottom:1079.759874px;}
.y1_c03029{bottom:1097.760450px;}
.yf_c03029{bottom:1134.840450px;}
.h3_c03029{height:32.530781px;}
.h1_c03029{height:41.696016px;}
.h2_c03029{height:41.812031px;}
.h5_c03029{height:45.720000px;}
.h4_c03029{height:54.654737px;}
.h6_c03029{height:74.817456px;}
.h0_c03029{height:1263.000000px;}
.w2_c03029{width:215.280000px;}
.w1_c03029{width:892.500000px;}
.w0_c03029{width:892.830000px;}
.x0_c03029{left:0.000000px;}
.xe_c03029{left:117.000000px;}
.x8_c03029{left:440.999856px;}
.x4_c03029{left:445.680576px;}
.xc_c03029{left:451.080000px;}
.x7_c03029{left:455.399604px;}
.x5_c03029{left:461.880144px;}
.x1_c03029{left:463.320000px;}
.xa_c03029{left:483.480360px;}
.x9_c03029{left:492.119496px;}
.x6_c03029{left:493.200576px;}
.xd_c03029{left:506.880360px;}
.x3_c03029{left:511.919892px;}
.x2_c03029{left:526.679604px;}
.xb_c03029{left:569.880036px;}
@media print{
.v0_c03029{vertical-align:0.000000pt;}
.v1_c03029{vertical-align:1.279488pt;}
.v2_c03029{vertical-align:29.441280pt;}
.lsf_c03029{letter-spacing:-0.705408pt;}
.lsc_c03029{letter-spacing:-0.688512pt;}
.ls12_c03029{letter-spacing:-0.654720pt;}
.ls9_c03029{letter-spacing:-0.544896pt;}
.lsb_c03029{letter-spacing:-0.511104pt;}
.ls18_c03029{letter-spacing:-0.380160pt;}
.ls1d_c03029{letter-spacing:-0.304128pt;}
.ls1c_c03029{letter-spacing:-0.244992pt;}
.ls13_c03029{letter-spacing:-0.240768pt;}
.ls10_c03029{letter-spacing:-0.232320pt;}
.ls8_c03029{letter-spacing:-0.215424pt;}
.ls1b_c03029{letter-spacing:-0.211200pt;}
.ls1a_c03029{letter-spacing:-0.202752pt;}
.ls6_c03029{letter-spacing:-0.105600pt;}
.ls16_c03029{letter-spacing:0.000000pt;}
.ls1_c03029{letter-spacing:0.005376pt;}
.ls2_c03029{letter-spacing:0.029568pt;}
.ls19_c03029{letter-spacing:0.063360pt;}
.ls17_c03029{letter-spacing:0.080256pt;}
.ls7_c03029{letter-spacing:0.114048pt;}
.lse_c03029{letter-spacing:0.451968pt;}
.ls15_c03029{letter-spacing:0.456960pt;}
.ls11_c03029{letter-spacing:0.477312pt;}
.lsd_c03029{letter-spacing:0.515328pt;}
.ls14_c03029{letter-spacing:0.528000pt;}
.lsa_c03029{letter-spacing:0.532224pt;}
.ls4_c03029{letter-spacing:0.544896pt;}
.ls0_c03029{letter-spacing:0.578688pt;}
.ls5_c03029{letter-spacing:0.637824pt;}
.ls3_c03029{letter-spacing:0.642048pt;}
.wsd_c03029{word-spacing:-13.445376pt;}
.wsb_c03029{word-spacing:-11.088000pt;}
.ws7_c03029{word-spacing:-11.075328pt;}
.ws11_c03029{word-spacing:-10.357248pt;}
.ws12_c03029{word-spacing:-10.348800pt;}
.ws4_c03029{word-spacing:-10.344576pt;}
.ws2_c03029{word-spacing:-10.015104pt;}
.ws6_c03029{word-spacing:-9.871488pt;}
.ws20_c03029{word-spacing:-0.963072pt;}
.ws16_c03029{word-spacing:-0.899712pt;}
.ws14_c03029{word-spacing:-0.865920pt;}
.ws1c_c03029{word-spacing:-0.639744pt;}
.ws1d_c03029{word-spacing:-0.350592pt;}
.ws17_c03029{word-spacing:-0.105600pt;}
.ws19_c03029{word-spacing:-0.088704pt;}
.ws1a_c03029{word-spacing:-0.080256pt;}
.ws1b_c03029{word-spacing:-0.076032pt;}
.ws1f_c03029{word-spacing:-0.016896pt;}
.ws15_c03029{word-spacing:0.000000pt;}
.ws1e_c03029{word-spacing:0.059136pt;}
.ws18_c03029{word-spacing:0.384384pt;}
.wse_c03029{word-spacing:1.182720pt;}
.wsf_c03029{word-spacing:1.250304pt;}
.wsa_c03029{word-spacing:5.892480pt;}
.ws10_c03029{word-spacing:21.766272pt;}
.ws13_c03029{word-spacing:26.932224pt;}
.wsc_c03029{word-spacing:29.600256pt;}
.ws9_c03029{word-spacing:30.966144pt;}
.ws1_c03029{word-spacing:33.563904pt;}
.ws0_c03029{word-spacing:33.796224pt;}
.ws3_c03029{word-spacing:34.860672pt;}
.ws5_c03029{word-spacing:35.468928pt;}
.ws8_c03029{word-spacing:37.357056pt;}
._0_c03029{margin-left:-1.731840pt;}
._2_c03029{width:1.317888pt;}
._4_c03029{width:2.935680pt;}
._9_c03029{width:4.253568pt;}
._8_c03029{width:9.018240pt;}
._b_c03029{width:10.226304pt;}
._a_c03029{width:12.976128pt;}
._6_c03029{width:17.761920pt;}
._7_c03029{width:20.845440pt;}
._5_c03029{width:21.947904pt;}
._c_c03029{width:34.332672pt;}
._d_c03029{width:36.985344pt;}
._1_c03029{width:44.668800pt;}
._3_c03029{width:45.805056pt;}
.fs0_c03029{font-size:42.240000pt;}
.fs1_c03029{font-size:53.760000pt;}
.y0_c03029{bottom:0.000000pt;}
.y1d_c03029{bottom:17.280400pt;}
.y1c_c03029{bottom:101.226667pt;}
.y1b_c03029{bottom:130.666267pt;}
.y1f_c03029{bottom:165.866875pt;}
.y1e_c03029{bottom:174.507067pt;}
.y1a_c03029{bottom:245.226427pt;}
.y19_c03029{bottom:317.226619pt;}
.y16_c03029{bottom:361.386427pt;}
.y12_c03029{bottom:377.386939pt;}
.y18_c03029{bottom:394.666267pt;}
.y17_c03029{bottom:407.786011pt;}
.y15_c03029{bottom:437.226235pt;}
.y14_c03029{bottom:453.226747pt;}
.y11_c03029{bottom:482.666971pt;}
.y13_c03029{bottom:497.386555pt;}
.y10_c03029{bottom:513.387067pt;}
.y20_c03029{bottom:546.027067pt;}
.yc_c03029{bottom:579.945467pt;}
.yb_c03029{bottom:593.385179pt;}
.ye_c03029{bottom:628.586875pt;}
.yd_c03029{bottom:637.227067pt;}
.ya_c03029{bottom:707.945339pt;}
.y9_c03029{bottom:779.945531pt;}
.y7_c03029{bottom:823.786427pt;}
.y3_c03029{bottom:839.786939pt;}
.y8_c03029{bottom:870.505979pt;}
.y6_c03029{bottom:899.946203pt;}
.y5_c03029{bottom:915.946715pt;}
.y2_c03029{bottom:945.386939pt;}
.y4_c03029{bottom:959.786555pt;}
.y1_c03029{bottom:975.787067pt;}
.yf_c03029{bottom:1008.747067pt;}
.h3_c03029{height:28.916250pt;}
.h1_c03029{height:37.063125pt;}
.h2_c03029{height:37.166250pt;}
.h5_c03029{height:40.640000pt;}
.h4_c03029{height:48.581988pt;}
.h6_c03029{height:66.504405pt;}
.h0_c03029{height:1122.666667pt;}
.w2_c03029{width:191.360000pt;}
.w1_c03029{width:793.333333pt;}
.w0_c03029{width:793.626667pt;}
.x0_c03029{left:0.000000pt;}
.xe_c03029{left:104.000000pt;}
.x8_c03029{left:391.999872pt;}
.x4_c03029{left:396.160512pt;}
.xc_c03029{left:400.960000pt;}
.x7_c03029{left:404.799648pt;}
.x5_c03029{left:410.560128pt;}
.x1_c03029{left:411.840000pt;}
.xa_c03029{left:429.760320pt;}
.x9_c03029{left:437.439552pt;}
.x6_c03029{left:438.400512pt;}
.xd_c03029{left:450.560320pt;}
.x3_c03029{left:455.039904pt;}
.x2_c03029{left:468.159648pt;}
.xb_c03029{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03030 {
    display:none;
  }
  .loading-indicator_c03030.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03030 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03030 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03030" -> "#page-container .classname_c03030")
 */
.pf_c03030 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03030 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03030.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03030 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03030 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03030 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03030 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03030 {overflow:visible;}
  }
}
.c_c03030 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03030 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03030:after { /* webkit #35443 */
  content: '';
}
.t_c03030:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03030 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03030 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03030 { /* info for Javascript */
  display:none;
}
.l_c03030 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03030 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03030 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03030:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03030 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03030.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03030.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03030 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03030{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03030;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03030{font-family:ff1_c03030;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03030;src:url('chunks/assets/font_82dd16a294e1e3b6d358560e.woff2')format("woff");}.ff2_c03030{font-family:ff2_c03030;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03030;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03030{font-family:ff3_c03030;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03030{vertical-align:0.000000px;}
.v1_c03030{vertical-align:1.439424px;}
.v2_c03030{vertical-align:33.121440px;}
.ls14_c03030{letter-spacing:-0.793584px;}
.ls13_c03030{letter-spacing:-0.774576px;}
.ls6_c03030{letter-spacing:-0.613008px;}
.ls9_c03030{letter-spacing:-0.574992px;}
.ls16_c03030{letter-spacing:-0.327888px;}
.lsf_c03030{letter-spacing:-0.275616px;}
.ls8_c03030{letter-spacing:-0.266112px;}
.lsd_c03030{letter-spacing:-0.261360px;}
.ls5_c03030{letter-spacing:-0.242352px;}
.ls3_c03030{letter-spacing:-0.118800px;}
.ls17_c03030{letter-spacing:-0.061776px;}
.ls12_c03030{letter-spacing:0.000000px;}
.ls1_c03030{letter-spacing:0.006048px;}
.ls4_c03030{letter-spacing:0.128304px;}
.lsb_c03030{letter-spacing:0.508464px;}
.ls11_c03030{letter-spacing:0.514080px;}
.lse_c03030{letter-spacing:0.536976px;}
.lsa_c03030{letter-spacing:0.579744px;}
.ls10_c03030{letter-spacing:0.594000px;}
.ls7_c03030{letter-spacing:0.598752px;}
.ls2_c03030{letter-spacing:0.613008px;}
.ls15_c03030{letter-spacing:0.651024px;}
.ls0_c03030{letter-spacing:0.717552px;}
.lsc_c03030{letter-spacing:0.722304px;}
.sc__c03030{text-shadow:none;}
.sc0_c03030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03030{-webkit-text-stroke:0px transparent;}
.sc0_c03030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03030{word-spacing:-15.126048px;}
.ws9_c03030{word-spacing:-12.474000px;}
.ws7_c03030{word-spacing:-12.459744px;}
.ws8_c03030{word-spacing:-12.416976px;}
.wsc_c03030{word-spacing:-11.637648px;}
.ws2_c03030{word-spacing:-11.266992px;}
.ws15_c03030{word-spacing:-1.083456px;}
.ws14_c03030{word-spacing:-1.078704px;}
.ws1b_c03030{word-spacing:-1.012176px;}
.ws10_c03030{word-spacing:-0.974160px;}
.ws18_c03030{word-spacing:-0.719712px;}
.ws1c_c03030{word-spacing:-0.299376px;}
.ws12_c03030{word-spacing:-0.118800px;}
.ws16_c03030{word-spacing:-0.099792px;}
.ws13_c03030{word-spacing:-0.095040px;}
.ws17_c03030{word-spacing:-0.085536px;}
.ws11_c03030{word-spacing:0.000000px;}
.ws19_c03030{word-spacing:0.413424px;}
.ws1a_c03030{word-spacing:0.432432px;}
.wsf_c03030{word-spacing:28.735344px;}
.wse_c03030{word-spacing:30.298752px;}
.wsa_c03030{word-spacing:33.300288px;}
.wsd_c03030{word-spacing:36.143712px;}
.ws5_c03030{word-spacing:36.742464px;}
.ws1_c03030{word-spacing:37.759392px;}
.ws0_c03030{word-spacing:38.020752px;}
.ws3_c03030{word-spacing:39.218256px;}
.ws4_c03030{word-spacing:39.902544px;}
.ws6_c03030{word-spacing:42.026688px;}
._0_c03030{margin-left:-1.948320px;}
._2_c03030{width:1.482624px;}
._4_c03030{width:3.887136px;}
._6_c03030{width:36.970560px;}
._5_c03030{width:42.977088px;}
._1_c03030{width:50.252400px;}
._3_c03030{width:51.530688px;}
.fc0_c03030{color:rgb(0,0,0);}
.fs0_c03030{font-size:47.520000px;}
.fs1_c03030{font-size:60.480000px;}
.y0_c03030{bottom:0.000000px;}
.y19_c03030{bottom:146.998362px;}
.y1c_c03030{bottom:179.760918px;}
.y1b_c03030{bottom:186.600234px;}
.y1a_c03030{bottom:196.320450px;}
.y18_c03030{bottom:275.878542px;}
.y17_c03030{bottom:356.878758px;}
.y15_c03030{bottom:406.559730px;}
.y11_c03030{bottom:424.560306px;}
.y16_c03030{bottom:458.759262px;}
.y14_c03030{bottom:491.879514px;}
.y13_c03030{bottom:509.880090px;}
.y10_c03030{bottom:543.000342px;}
.y12_c03030{bottom:559.559874px;}
.yf_c03030{bottom:577.560450px;}
.y1d_c03030{bottom:614.280450px;}
.yb_c03030{bottom:667.558326px;}
.yd_c03030{bottom:707.160234px;}
.yc_c03030{bottom:716.880450px;}
.ya_c03030{bottom:796.438506px;}
.y9_c03030{bottom:877.438722px;}
.y7_c03030{bottom:926.759730px;}
.y3_c03030{bottom:944.760306px;}
.y8_c03030{bottom:979.319226px;}
.y6_c03030{bottom:1012.439478px;}
.y5_c03030{bottom:1030.440054px;}
.y2_c03030{bottom:1063.560306px;}
.y4_c03030{bottom:1079.759874px;}
.y1_c03030{bottom:1097.760450px;}
.ye_c03030{bottom:1134.840450px;}
.h3_c03030{height:32.530781px;}
.h1_c03030{height:41.696016px;}
.h2_c03030{height:41.812031px;}
.h4_c03030{height:54.654737px;}
.h5_c03030{height:74.817456px;}
.h0_c03030{height:1263.000000px;}
.w1_c03030{width:892.500000px;}
.w0_c03030{width:892.830000px;}
.x0_c03030{left:0.000000px;}
.xd_c03030{left:117.000000px;}
.x8_c03030{left:440.999856px;}
.x4_c03030{left:445.680576px;}
.xb_c03030{left:451.080000px;}
.x7_c03030{left:455.399604px;}
.x5_c03030{left:461.880144px;}
.x1_c03030{left:463.320000px;}
.xa_c03030{left:483.480360px;}
.x9_c03030{left:492.119496px;}
.x6_c03030{left:493.200576px;}
.xc_c03030{left:506.880360px;}
.x3_c03030{left:511.919892px;}
.x2_c03030{left:526.679604px;}
.xe_c03030{left:569.880000px;}
@media print{
.v0_c03030{vertical-align:0.000000pt;}
.v1_c03030{vertical-align:1.279488pt;}
.v2_c03030{vertical-align:29.441280pt;}
.ls14_c03030{letter-spacing:-0.705408pt;}
.ls13_c03030{letter-spacing:-0.688512pt;}
.ls6_c03030{letter-spacing:-0.544896pt;}
.ls9_c03030{letter-spacing:-0.511104pt;}
.ls16_c03030{letter-spacing:-0.291456pt;}
.lsf_c03030{letter-spacing:-0.244992pt;}
.ls8_c03030{letter-spacing:-0.236544pt;}
.lsd_c03030{letter-spacing:-0.232320pt;}
.ls5_c03030{letter-spacing:-0.215424pt;}
.ls3_c03030{letter-spacing:-0.105600pt;}
.ls17_c03030{letter-spacing:-0.054912pt;}
.ls12_c03030{letter-spacing:0.000000pt;}
.ls1_c03030{letter-spacing:0.005376pt;}
.ls4_c03030{letter-spacing:0.114048pt;}
.lsb_c03030{letter-spacing:0.451968pt;}
.ls11_c03030{letter-spacing:0.456960pt;}
.lse_c03030{letter-spacing:0.477312pt;}
.lsa_c03030{letter-spacing:0.515328pt;}
.ls10_c03030{letter-spacing:0.528000pt;}
.ls7_c03030{letter-spacing:0.532224pt;}
.ls2_c03030{letter-spacing:0.544896pt;}
.ls15_c03030{letter-spacing:0.578688pt;}
.ls0_c03030{letter-spacing:0.637824pt;}
.lsc_c03030{letter-spacing:0.642048pt;}
.wsb_c03030{word-spacing:-13.445376pt;}
.ws9_c03030{word-spacing:-11.088000pt;}
.ws7_c03030{word-spacing:-11.075328pt;}
.ws8_c03030{word-spacing:-11.037312pt;}
.wsc_c03030{word-spacing:-10.344576pt;}
.ws2_c03030{word-spacing:-10.015104pt;}
.ws15_c03030{word-spacing:-0.963072pt;}
.ws14_c03030{word-spacing:-0.958848pt;}
.ws1b_c03030{word-spacing:-0.899712pt;}
.ws10_c03030{word-spacing:-0.865920pt;}
.ws18_c03030{word-spacing:-0.639744pt;}
.ws1c_c03030{word-spacing:-0.266112pt;}
.ws12_c03030{word-spacing:-0.105600pt;}
.ws16_c03030{word-spacing:-0.088704pt;}
.ws13_c03030{word-spacing:-0.084480pt;}
.ws17_c03030{word-spacing:-0.076032pt;}
.ws11_c03030{word-spacing:0.000000pt;}
.ws19_c03030{word-spacing:0.367488pt;}
.ws1a_c03030{word-spacing:0.384384pt;}
.wsf_c03030{word-spacing:25.542528pt;}
.wse_c03030{word-spacing:26.932224pt;}
.wsa_c03030{word-spacing:29.600256pt;}
.wsd_c03030{word-spacing:32.127744pt;}
.ws5_c03030{word-spacing:32.659968pt;}
.ws1_c03030{word-spacing:33.563904pt;}
.ws0_c03030{word-spacing:33.796224pt;}
.ws3_c03030{word-spacing:34.860672pt;}
.ws4_c03030{word-spacing:35.468928pt;}
.ws6_c03030{word-spacing:37.357056pt;}
._0_c03030{margin-left:-1.731840pt;}
._2_c03030{width:1.317888pt;}
._4_c03030{width:3.455232pt;}
._6_c03030{width:32.862720pt;}
._5_c03030{width:38.201856pt;}
._1_c03030{width:44.668800pt;}
._3_c03030{width:45.805056pt;}
.fs0_c03030{font-size:42.240000pt;}
.fs1_c03030{font-size:53.760000pt;}
.y0_c03030{bottom:0.000000pt;}
.y19_c03030{bottom:130.665211pt;}
.y1c_c03030{bottom:159.787483pt;}
.y1b_c03030{bottom:165.866875pt;}
.y1a_c03030{bottom:174.507067pt;}
.y18_c03030{bottom:245.225371pt;}
.y17_c03030{bottom:317.225563pt;}
.y15_c03030{bottom:361.386427pt;}
.y11_c03030{bottom:377.386939pt;}
.y16_c03030{bottom:407.786011pt;}
.y14_c03030{bottom:437.226235pt;}
.y13_c03030{bottom:453.226747pt;}
.y10_c03030{bottom:482.666971pt;}
.y12_c03030{bottom:497.386555pt;}
.yf_c03030{bottom:513.387067pt;}
.y1d_c03030{bottom:546.027067pt;}
.yb_c03030{bottom:593.385179pt;}
.yd_c03030{bottom:628.586875pt;}
.yc_c03030{bottom:637.227067pt;}
.ya_c03030{bottom:707.945339pt;}
.y9_c03030{bottom:779.945531pt;}
.y7_c03030{bottom:823.786427pt;}
.y3_c03030{bottom:839.786939pt;}
.y8_c03030{bottom:870.505979pt;}
.y6_c03030{bottom:899.946203pt;}
.y5_c03030{bottom:915.946715pt;}
.y2_c03030{bottom:945.386939pt;}
.y4_c03030{bottom:959.786555pt;}
.y1_c03030{bottom:975.787067pt;}
.ye_c03030{bottom:1008.747067pt;}
.h3_c03030{height:28.916250pt;}
.h1_c03030{height:37.063125pt;}
.h2_c03030{height:37.166250pt;}
.h4_c03030{height:48.581988pt;}
.h5_c03030{height:66.504405pt;}
.h0_c03030{height:1122.666667pt;}
.w1_c03030{width:793.333333pt;}
.w0_c03030{width:793.626667pt;}
.x0_c03030{left:0.000000pt;}
.xd_c03030{left:104.000000pt;}
.x8_c03030{left:391.999872pt;}
.x4_c03030{left:396.160512pt;}
.xb_c03030{left:400.960000pt;}
.x7_c03030{left:404.799648pt;}
.x5_c03030{left:410.560128pt;}
.x1_c03030{left:411.840000pt;}
.xa_c03030{left:429.760320pt;}
.x9_c03030{left:437.439552pt;}
.x6_c03030{left:438.400512pt;}
.xc_c03030{left:450.560320pt;}
.x3_c03030{left:455.039904pt;}
.x2_c03030{left:468.159648pt;}
.xe_c03030{left:506.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03031 {
    display:none;
  }
  .loading-indicator_c03031.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03031 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03031 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03031" -> "#page-container .classname_c03031")
 */
.pf_c03031 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03031 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03031 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03031 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03031 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03031 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03031 {overflow:visible;}
  }
}
.c_c03031 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03031 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03031:after { /* webkit #35443 */
  content: '';
}
.t_c03031:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03031 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03031 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03031 { /* info for Javascript */
  display:none;
}
.l_c03031 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03031 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03031 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03031:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03031 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03031.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03031 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03031;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03031{font-family:ff1_c03031;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03031;src:url('chunks/assets/font_bde71710c07747e071fdbe9d.woff2')format("woff");}.ff2_c03031{font-family:ff2_c03031;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03031;src:url('chunks/assets/font_fa1d718fd3c9b4ee2fb948bd.woff2')format("woff");}.ff3_c03031{font-family:ff3_c03031;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03031{vertical-align:0.000000px;}
.v1_c03031{vertical-align:1.439424px;}
.lsa_c03031{letter-spacing:-0.774576px;}
.ls10_c03031{letter-spacing:-0.736560px;}
.lsd_c03031{letter-spacing:-0.722304px;}
.ls7_c03031{letter-spacing:-0.613008px;}
.ls9_c03031{letter-spacing:-0.574992px;}
.ls17_c03031{letter-spacing:-0.275616px;}
.ls11_c03031{letter-spacing:-0.270864px;}
.lse_c03031{letter-spacing:-0.261360px;}
.ls16_c03031{letter-spacing:-0.247104px;}
.ls6_c03031{letter-spacing:-0.242352px;}
.ls4_c03031{letter-spacing:-0.118800px;}
.ls14_c03031{letter-spacing:0.000000px;}
.ls0_c03031{letter-spacing:0.006048px;}
.ls5_c03031{letter-spacing:0.128304px;}
.ls15_c03031{letter-spacing:0.242352px;}
.lsc_c03031{letter-spacing:0.508464px;}
.ls13_c03031{letter-spacing:0.514080px;}
.lsf_c03031{letter-spacing:0.536976px;}
.lsb_c03031{letter-spacing:0.579744px;}
.ls12_c03031{letter-spacing:0.594000px;}
.ls8_c03031{letter-spacing:0.598752px;}
.ls3_c03031{letter-spacing:0.613008px;}
.ls1_c03031{letter-spacing:0.651024px;}
.ls2_c03031{letter-spacing:0.717552px;}
.sc__c03031{text-shadow:none;}
.sc0_c03031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03031{-webkit-text-stroke:0px transparent;}
.sc0_c03031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03031{word-spacing:-15.126048px;}
.wsb_c03031{word-spacing:-12.474000px;}
.ws7_c03031{word-spacing:-12.459744px;}
.ws10_c03031{word-spacing:-12.416976px;}
.ws4_c03031{word-spacing:-11.637648px;}
.ws2_c03031{word-spacing:-11.266992px;}
.ws6_c03031{word-spacing:-11.105424px;}
.ws1a_c03031{word-spacing:-1.078704px;}
.ws19_c03031{word-spacing:-1.012176px;}
.ws11_c03031{word-spacing:-0.974160px;}
.ws18_c03031{word-spacing:-0.719712px;}
.ws13_c03031{word-spacing:-0.118800px;}
.ws1b_c03031{word-spacing:-0.114048px;}
.ws15_c03031{word-spacing:-0.099792px;}
.ws16_c03031{word-spacing:-0.090288px;}
.ws17_c03031{word-spacing:-0.085536px;}
.ws12_c03031{word-spacing:0.000000px;}
.ws14_c03031{word-spacing:0.361152px;}
.wsa_c03031{word-spacing:6.629040px;}
.wsf_c03031{word-spacing:8.035632px;}
.wsc_c03031{word-spacing:33.300288px;}
.ws9_c03031{word-spacing:34.836912px;}
.wse_c03031{word-spacing:36.742464px;}
.ws1_c03031{word-spacing:37.759392px;}
.ws0_c03031{word-spacing:38.020752px;}
.ws3_c03031{word-spacing:39.218256px;}
.ws5_c03031{word-spacing:39.902544px;}
.ws8_c03031{word-spacing:42.026688px;}
._0_c03031{margin-left:-1.948320px;}
._2_c03031{width:1.482624px;}
._4_c03031{width:3.302640px;}
._8_c03031{width:10.145520px;}
._a_c03031{width:15.215904px;}
._b_c03031{width:16.807824px;}
._9_c03031{width:17.810496px;}
._6_c03031{width:19.982160px;}
._7_c03031{width:23.451120px;}
._5_c03031{width:24.691392px;}
._1_c03031{width:50.252400px;}
._3_c03031{width:51.530688px;}
.fc0_c03031{color:rgb(0,0,0);}
.fs0_c03031{font-size:47.520000px;}
.fs1_c03031{font-size:60.480000px;}
.y0_c03031{bottom:0.000000px;}
.y1b_c03031{bottom:146.999550px;}
.y1d_c03031{bottom:186.600234px;}
.y1c_c03031{bottom:196.320450px;}
.y1a_c03031{bottom:275.879730px;}
.y19_c03031{bottom:356.879946px;}
.y16_c03031{bottom:406.559730px;}
.y12_c03031{bottom:424.560306px;}
.y18_c03031{bottom:443.999550px;}
.y17_c03031{bottom:458.759262px;}
.y15_c03031{bottom:491.879514px;}
.y14_c03031{bottom:509.880090px;}
.y11_c03031{bottom:543.000342px;}
.y13_c03031{bottom:559.559874px;}
.y10_c03031{bottom:577.560450px;}
.y1e_c03031{bottom:614.280450px;}
.yc_c03031{bottom:652.438650px;}
.yb_c03031{bottom:667.558326px;}
.ye_c03031{bottom:707.160234px;}
.yd_c03031{bottom:716.880450px;}
.ya_c03031{bottom:796.438506px;}
.y9_c03031{bottom:877.438722px;}
.y7_c03031{bottom:926.759730px;}
.y3_c03031{bottom:944.760306px;}
.y8_c03031{bottom:979.319226px;}
.y6_c03031{bottom:1012.439478px;}
.y5_c03031{bottom:1030.440054px;}
.y2_c03031{bottom:1063.560306px;}
.y4_c03031{bottom:1079.759874px;}
.y1_c03031{bottom:1097.760450px;}
.yf_c03031{bottom:1134.840450px;}
.h3_c03031{height:32.530781px;}
.h1_c03031{height:41.696016px;}
.h2_c03031{height:41.812031px;}
.h4_c03031{height:54.654737px;}
.h0_c03031{height:1263.000000px;}
.w1_c03031{width:892.500000px;}
.w0_c03031{width:892.830000px;}
.x0_c03031{left:0.000000px;}
.xe_c03031{left:117.000000px;}
.x8_c03031{left:440.999856px;}
.x4_c03031{left:445.680576px;}
.xc_c03031{left:451.080000px;}
.x7_c03031{left:455.399604px;}
.x5_c03031{left:461.880144px;}
.x1_c03031{left:463.320000px;}
.xa_c03031{left:483.480360px;}
.x9_c03031{left:492.119496px;}
.x6_c03031{left:493.200576px;}
.xd_c03031{left:506.880360px;}
.x3_c03031{left:511.919892px;}
.x2_c03031{left:526.679604px;}
.xb_c03031{left:569.880036px;}
@media print{
.v0_c03031{vertical-align:0.000000pt;}
.v1_c03031{vertical-align:1.279488pt;}
.lsa_c03031{letter-spacing:-0.688512pt;}
.ls10_c03031{letter-spacing:-0.654720pt;}
.lsd_c03031{letter-spacing:-0.642048pt;}
.ls7_c03031{letter-spacing:-0.544896pt;}
.ls9_c03031{letter-spacing:-0.511104pt;}
.ls17_c03031{letter-spacing:-0.244992pt;}
.ls11_c03031{letter-spacing:-0.240768pt;}
.lse_c03031{letter-spacing:-0.232320pt;}
.ls16_c03031{letter-spacing:-0.219648pt;}
.ls6_c03031{letter-spacing:-0.215424pt;}
.ls4_c03031{letter-spacing:-0.105600pt;}
.ls14_c03031{letter-spacing:0.000000pt;}
.ls0_c03031{letter-spacing:0.005376pt;}
.ls5_c03031{letter-spacing:0.114048pt;}
.ls15_c03031{letter-spacing:0.215424pt;}
.lsc_c03031{letter-spacing:0.451968pt;}
.ls13_c03031{letter-spacing:0.456960pt;}
.lsf_c03031{letter-spacing:0.477312pt;}
.lsb_c03031{letter-spacing:0.515328pt;}
.ls12_c03031{letter-spacing:0.528000pt;}
.ls8_c03031{letter-spacing:0.532224pt;}
.ls3_c03031{letter-spacing:0.544896pt;}
.ls1_c03031{letter-spacing:0.578688pt;}
.ls2_c03031{letter-spacing:0.637824pt;}
.wsd_c03031{word-spacing:-13.445376pt;}
.wsb_c03031{word-spacing:-11.088000pt;}
.ws7_c03031{word-spacing:-11.075328pt;}
.ws10_c03031{word-spacing:-11.037312pt;}
.ws4_c03031{word-spacing:-10.344576pt;}
.ws2_c03031{word-spacing:-10.015104pt;}
.ws6_c03031{word-spacing:-9.871488pt;}
.ws1a_c03031{word-spacing:-0.958848pt;}
.ws19_c03031{word-spacing:-0.899712pt;}
.ws11_c03031{word-spacing:-0.865920pt;}
.ws18_c03031{word-spacing:-0.639744pt;}
.ws13_c03031{word-spacing:-0.105600pt;}
.ws1b_c03031{word-spacing:-0.101376pt;}
.ws15_c03031{word-spacing:-0.088704pt;}
.ws16_c03031{word-spacing:-0.080256pt;}
.ws17_c03031{word-spacing:-0.076032pt;}
.ws12_c03031{word-spacing:0.000000pt;}
.ws14_c03031{word-spacing:0.321024pt;}
.wsa_c03031{word-spacing:5.892480pt;}
.wsf_c03031{word-spacing:7.142784pt;}
.wsc_c03031{word-spacing:29.600256pt;}
.ws9_c03031{word-spacing:30.966144pt;}
.wse_c03031{word-spacing:32.659968pt;}
.ws1_c03031{word-spacing:33.563904pt;}
.ws0_c03031{word-spacing:33.796224pt;}
.ws3_c03031{word-spacing:34.860672pt;}
.ws5_c03031{word-spacing:35.468928pt;}
.ws8_c03031{word-spacing:37.357056pt;}
._0_c03031{margin-left:-1.731840pt;}
._2_c03031{width:1.317888pt;}
._4_c03031{width:2.935680pt;}
._8_c03031{width:9.018240pt;}
._a_c03031{width:13.525248pt;}
._b_c03031{width:14.940288pt;}
._9_c03031{width:15.831552pt;}
._6_c03031{width:17.761920pt;}
._7_c03031{width:20.845440pt;}
._5_c03031{width:21.947904pt;}
._1_c03031{width:44.668800pt;}
._3_c03031{width:45.805056pt;}
.fs0_c03031{font-size:42.240000pt;}
.fs1_c03031{font-size:53.760000pt;}
.y0_c03031{bottom:0.000000pt;}
.y1b_c03031{bottom:130.666267pt;}
.y1d_c03031{bottom:165.866875pt;}
.y1c_c03031{bottom:174.507067pt;}
.y1a_c03031{bottom:245.226427pt;}
.y19_c03031{bottom:317.226619pt;}
.y16_c03031{bottom:361.386427pt;}
.y12_c03031{bottom:377.386939pt;}
.y18_c03031{bottom:394.666267pt;}
.y17_c03031{bottom:407.786011pt;}
.y15_c03031{bottom:437.226235pt;}
.y14_c03031{bottom:453.226747pt;}
.y11_c03031{bottom:482.666971pt;}
.y13_c03031{bottom:497.386555pt;}
.y10_c03031{bottom:513.387067pt;}
.y1e_c03031{bottom:546.027067pt;}
.yc_c03031{bottom:579.945467pt;}
.yb_c03031{bottom:593.385179pt;}
.ye_c03031{bottom:628.586875pt;}
.yd_c03031{bottom:637.227067pt;}
.ya_c03031{bottom:707.945339pt;}
.y9_c03031{bottom:779.945531pt;}
.y7_c03031{bottom:823.786427pt;}
.y3_c03031{bottom:839.786939pt;}
.y8_c03031{bottom:870.505979pt;}
.y6_c03031{bottom:899.946203pt;}
.y5_c03031{bottom:915.946715pt;}
.y2_c03031{bottom:945.386939pt;}
.y4_c03031{bottom:959.786555pt;}
.y1_c03031{bottom:975.787067pt;}
.yf_c03031{bottom:1008.747067pt;}
.h3_c03031{height:28.916250pt;}
.h1_c03031{height:37.063125pt;}
.h2_c03031{height:37.166250pt;}
.h4_c03031{height:48.581988pt;}
.h0_c03031{height:1122.666667pt;}
.w1_c03031{width:793.333333pt;}
.w0_c03031{width:793.626667pt;}
.x0_c03031{left:0.000000pt;}
.xe_c03031{left:104.000000pt;}
.x8_c03031{left:391.999872pt;}
.x4_c03031{left:396.160512pt;}
.xc_c03031{left:400.960000pt;}
.x7_c03031{left:404.799648pt;}
.x5_c03031{left:410.560128pt;}
.x1_c03031{left:411.840000pt;}
.xa_c03031{left:429.760320pt;}
.x9_c03031{left:437.439552pt;}
.x6_c03031{left:438.400512pt;}
.xd_c03031{left:450.560320pt;}
.x3_c03031{left:455.039904pt;}
.x2_c03031{left:468.159648pt;}
.xb_c03031{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03032 {
    display:none;
  }
  .loading-indicator_c03032.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03032 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03032 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03032" -> "#page-container .classname_c03032")
 */
.pf_c03032 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03032 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03032.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03032 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03032 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03032 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03032 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03032 {overflow:visible;}
  }
}
.c_c03032 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03032 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03032:after { /* webkit #35443 */
  content: '';
}
.t_c03032:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03032 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03032 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03032 { /* info for Javascript */
  display:none;
}
.l_c03032 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03032 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03032 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03032:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03032 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03032.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03032.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03032 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03032;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03032{font-family:ff1_c03032;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03032;src:url('chunks/assets/font_29008ff65ad0da746a2b4754.woff2')format("woff");}.ff2_c03032{font-family:ff2_c03032;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03032;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03032{font-family:ff3_c03032;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03032{vertical-align:0.000000px;}
.v2_c03032{vertical-align:1.439424px;}
.v1_c03032{vertical-align:33.121440px;}
.lsb_c03032{letter-spacing:-0.793584px;}
.ls15_c03032{letter-spacing:-0.736560px;}
.ls6_c03032{letter-spacing:-0.613008px;}
.ls8_c03032{letter-spacing:-0.574992px;}
.ls10_c03032{letter-spacing:-0.275616px;}
.ls16_c03032{letter-spacing:-0.270864px;}
.lsd_c03032{letter-spacing:-0.261360px;}
.ls5_c03032{letter-spacing:-0.242352px;}
.ls3_c03032{letter-spacing:-0.118800px;}
.ls14_c03032{letter-spacing:0.000000px;}
.ls1_c03032{letter-spacing:0.006048px;}
.ls12_c03032{letter-spacing:0.095040px;}
.ls4_c03032{letter-spacing:0.128304px;}
.lsa_c03032{letter-spacing:0.508464px;}
.ls13_c03032{letter-spacing:0.514080px;}
.lsf_c03032{letter-spacing:0.536976px;}
.ls9_c03032{letter-spacing:0.579744px;}
.ls11_c03032{letter-spacing:0.594000px;}
.ls7_c03032{letter-spacing:0.598752px;}
.ls2_c03032{letter-spacing:0.613008px;}
.lsc_c03032{letter-spacing:0.651024px;}
.ls0_c03032{letter-spacing:0.717552px;}
.lse_c03032{letter-spacing:0.722304px;}
.sc__c03032{text-shadow:none;}
.sc0_c03032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03032{-webkit-text-stroke:0px transparent;}
.sc0_c03032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03032{word-spacing:-15.126048px;}
.wsf_c03032{word-spacing:-12.474000px;}
.ws6_c03032{word-spacing:-12.459744px;}
.ws9_c03032{word-spacing:-12.416976px;}
.ws4_c03032{word-spacing:-11.637648px;}
.ws2_c03032{word-spacing:-11.266992px;}
.ws17_c03032{word-spacing:-1.083456px;}
.ws13_c03032{word-spacing:-1.078704px;}
.ws15_c03032{word-spacing:-1.012176px;}
.ws10_c03032{word-spacing:-0.974160px;}
.ws1a_c03032{word-spacing:-0.719712px;}
.ws19_c03032{word-spacing:-0.456192px;}
.ws12_c03032{word-spacing:-0.118800px;}
.ws16_c03032{word-spacing:-0.099792px;}
.ws1b_c03032{word-spacing:-0.090288px;}
.ws18_c03032{word-spacing:-0.085536px;}
.ws11_c03032{word-spacing:0.000000px;}
.ws14_c03032{word-spacing:0.432432px;}
.wse_c03032{word-spacing:6.629040px;}
.wsa_c03032{word-spacing:30.298752px;}
.wsb_c03032{word-spacing:33.300288px;}
.wsd_c03032{word-spacing:34.836912px;}
.ws8_c03032{word-spacing:36.143712px;}
.ws1_c03032{word-spacing:37.759392px;}
.ws0_c03032{word-spacing:38.020752px;}
.ws3_c03032{word-spacing:39.218256px;}
.ws5_c03032{word-spacing:39.902544px;}
.ws7_c03032{word-spacing:42.026688px;}
._0_c03032{margin-left:-1.948320px;}
._2_c03032{width:1.482624px;}
._4_c03032{width:3.302640px;}
._6_c03032{width:19.982160px;}
._7_c03032{width:23.451120px;}
._5_c03032{width:24.691392px;}
._1_c03032{width:50.252400px;}
._3_c03032{width:51.530688px;}
.fc0_c03032{color:rgb(0,0,0);}
.fs0_c03032{font-size:47.520000px;}
.fs1_c03032{font-size:60.480000px;}
.y0_c03032{bottom:0.000000px;}
.y1a_c03032{bottom:131.878686px;}
.y19_c03032{bottom:146.998362px;}
.y1c_c03032{bottom:186.600234px;}
.y1b_c03032{bottom:196.320450px;}
.y18_c03032{bottom:275.878542px;}
.y17_c03032{bottom:356.878758px;}
.y15_c03032{bottom:406.559730px;}
.y11_c03032{bottom:424.560306px;}
.y16_c03032{bottom:458.759262px;}
.y14_c03032{bottom:491.879514px;}
.y13_c03032{bottom:509.880090px;}
.y10_c03032{bottom:543.000342px;}
.y12_c03032{bottom:559.559874px;}
.yf_c03032{bottom:577.560450px;}
.y1d_c03032{bottom:614.280450px;}
.yb_c03032{bottom:667.558326px;}
.yd_c03032{bottom:707.160234px;}
.yc_c03032{bottom:716.880450px;}
.ya_c03032{bottom:796.438506px;}
.y9_c03032{bottom:877.438722px;}
.y7_c03032{bottom:926.759730px;}
.y3_c03032{bottom:944.760306px;}
.y8_c03032{bottom:979.319226px;}
.y6_c03032{bottom:1012.439478px;}
.y5_c03032{bottom:1030.440054px;}
.y2_c03032{bottom:1063.560306px;}
.y4_c03032{bottom:1079.759874px;}
.y1_c03032{bottom:1097.760450px;}
.ye_c03032{bottom:1134.840450px;}
.h3_c03032{height:32.530781px;}
.h1_c03032{height:41.696016px;}
.h2_c03032{height:41.812031px;}
.h5_c03032{height:54.654737px;}
.h4_c03032{height:74.817456px;}
.h0_c03032{height:1263.000000px;}
.w1_c03032{width:892.500000px;}
.w0_c03032{width:892.830000px;}
.x0_c03032{left:0.000000px;}
.xd_c03032{left:117.000000px;}
.x8_c03032{left:440.999856px;}
.x4_c03032{left:445.680576px;}
.xb_c03032{left:451.080000px;}
.x7_c03032{left:455.399604px;}
.x5_c03032{left:461.880144px;}
.x1_c03032{left:463.320000px;}
.xa_c03032{left:483.480360px;}
.x9_c03032{left:492.119496px;}
.x6_c03032{left:493.200576px;}
.xc_c03032{left:506.880360px;}
.x3_c03032{left:511.919892px;}
.x2_c03032{left:526.679604px;}
.xe_c03032{left:569.880036px;}
@media print{
.v0_c03032{vertical-align:0.000000pt;}
.v2_c03032{vertical-align:1.279488pt;}
.v1_c03032{vertical-align:29.441280pt;}
.lsb_c03032{letter-spacing:-0.705408pt;}
.ls15_c03032{letter-spacing:-0.654720pt;}
.ls6_c03032{letter-spacing:-0.544896pt;}
.ls8_c03032{letter-spacing:-0.511104pt;}
.ls10_c03032{letter-spacing:-0.244992pt;}
.ls16_c03032{letter-spacing:-0.240768pt;}
.lsd_c03032{letter-spacing:-0.232320pt;}
.ls5_c03032{letter-spacing:-0.215424pt;}
.ls3_c03032{letter-spacing:-0.105600pt;}
.ls14_c03032{letter-spacing:0.000000pt;}
.ls1_c03032{letter-spacing:0.005376pt;}
.ls12_c03032{letter-spacing:0.084480pt;}
.ls4_c03032{letter-spacing:0.114048pt;}
.lsa_c03032{letter-spacing:0.451968pt;}
.ls13_c03032{letter-spacing:0.456960pt;}
.lsf_c03032{letter-spacing:0.477312pt;}
.ls9_c03032{letter-spacing:0.515328pt;}
.ls11_c03032{letter-spacing:0.528000pt;}
.ls7_c03032{letter-spacing:0.532224pt;}
.ls2_c03032{letter-spacing:0.544896pt;}
.lsc_c03032{letter-spacing:0.578688pt;}
.ls0_c03032{letter-spacing:0.637824pt;}
.lse_c03032{letter-spacing:0.642048pt;}
.wsc_c03032{word-spacing:-13.445376pt;}
.wsf_c03032{word-spacing:-11.088000pt;}
.ws6_c03032{word-spacing:-11.075328pt;}
.ws9_c03032{word-spacing:-11.037312pt;}
.ws4_c03032{word-spacing:-10.344576pt;}
.ws2_c03032{word-spacing:-10.015104pt;}
.ws17_c03032{word-spacing:-0.963072pt;}
.ws13_c03032{word-spacing:-0.958848pt;}
.ws15_c03032{word-spacing:-0.899712pt;}
.ws10_c03032{word-spacing:-0.865920pt;}
.ws1a_c03032{word-spacing:-0.639744pt;}
.ws19_c03032{word-spacing:-0.405504pt;}
.ws12_c03032{word-spacing:-0.105600pt;}
.ws16_c03032{word-spacing:-0.088704pt;}
.ws1b_c03032{word-spacing:-0.080256pt;}
.ws18_c03032{word-spacing:-0.076032pt;}
.ws11_c03032{word-spacing:0.000000pt;}
.ws14_c03032{word-spacing:0.384384pt;}
.wse_c03032{word-spacing:5.892480pt;}
.wsa_c03032{word-spacing:26.932224pt;}
.wsb_c03032{word-spacing:29.600256pt;}
.wsd_c03032{word-spacing:30.966144pt;}
.ws8_c03032{word-spacing:32.127744pt;}
.ws1_c03032{word-spacing:33.563904pt;}
.ws0_c03032{word-spacing:33.796224pt;}
.ws3_c03032{word-spacing:34.860672pt;}
.ws5_c03032{word-spacing:35.468928pt;}
.ws7_c03032{word-spacing:37.357056pt;}
._0_c03032{margin-left:-1.731840pt;}
._2_c03032{width:1.317888pt;}
._4_c03032{width:2.935680pt;}
._6_c03032{width:17.761920pt;}
._7_c03032{width:20.845440pt;}
._5_c03032{width:21.947904pt;}
._1_c03032{width:44.668800pt;}
._3_c03032{width:45.805056pt;}
.fs0_c03032{font-size:42.240000pt;}
.fs1_c03032{font-size:53.760000pt;}
.y0_c03032{bottom:0.000000pt;}
.y1a_c03032{bottom:117.225499pt;}
.y19_c03032{bottom:130.665211pt;}
.y1c_c03032{bottom:165.866875pt;}
.y1b_c03032{bottom:174.507067pt;}
.y18_c03032{bottom:245.225371pt;}
.y17_c03032{bottom:317.225563pt;}
.y15_c03032{bottom:361.386427pt;}
.y11_c03032{bottom:377.386939pt;}
.y16_c03032{bottom:407.786011pt;}
.y14_c03032{bottom:437.226235pt;}
.y13_c03032{bottom:453.226747pt;}
.y10_c03032{bottom:482.666971pt;}
.y12_c03032{bottom:497.386555pt;}
.yf_c03032{bottom:513.387067pt;}
.y1d_c03032{bottom:546.027067pt;}
.yb_c03032{bottom:593.385179pt;}
.yd_c03032{bottom:628.586875pt;}
.yc_c03032{bottom:637.227067pt;}
.ya_c03032{bottom:707.945339pt;}
.y9_c03032{bottom:779.945531pt;}
.y7_c03032{bottom:823.786427pt;}
.y3_c03032{bottom:839.786939pt;}
.y8_c03032{bottom:870.505979pt;}
.y6_c03032{bottom:899.946203pt;}
.y5_c03032{bottom:915.946715pt;}
.y2_c03032{bottom:945.386939pt;}
.y4_c03032{bottom:959.786555pt;}
.y1_c03032{bottom:975.787067pt;}
.ye_c03032{bottom:1008.747067pt;}
.h3_c03032{height:28.916250pt;}
.h1_c03032{height:37.063125pt;}
.h2_c03032{height:37.166250pt;}
.h5_c03032{height:48.581988pt;}
.h4_c03032{height:66.504405pt;}
.h0_c03032{height:1122.666667pt;}
.w1_c03032{width:793.333333pt;}
.w0_c03032{width:793.626667pt;}
.x0_c03032{left:0.000000pt;}
.xd_c03032{left:104.000000pt;}
.x8_c03032{left:391.999872pt;}
.x4_c03032{left:396.160512pt;}
.xb_c03032{left:400.960000pt;}
.x7_c03032{left:404.799648pt;}
.x5_c03032{left:410.560128pt;}
.x1_c03032{left:411.840000pt;}
.xa_c03032{left:429.760320pt;}
.x9_c03032{left:437.439552pt;}
.x6_c03032{left:438.400512pt;}
.xc_c03032{left:450.560320pt;}
.x3_c03032{left:455.039904pt;}
.x2_c03032{left:468.159648pt;}
.xe_c03032{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03033 {
    display:none;
  }
  .loading-indicator_c03033.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03033 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03033 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03033" -> "#page-container .classname_c03033")
 */
.pf_c03033 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03033 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03033.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03033 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03033 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03033 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03033 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03033 {overflow:visible;}
  }
}
.c_c03033 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03033 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03033:after { /* webkit #35443 */
  content: '';
}
.t_c03033:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03033 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03033 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03033 { /* info for Javascript */
  display:none;
}
.l_c03033 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03033 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03033 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03033:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03033 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03033.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03033.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03033 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03033;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03033{font-family:ff1_c03033;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03033;src:url('chunks/assets/font_25347f89bdc7230879e2ab61.woff2')format("woff");}.ff2_c03033{font-family:ff2_c03033;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03033;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03033{font-family:ff3_c03033;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03033{vertical-align:0.000000px;}
.v1_c03033{vertical-align:1.439424px;}
.v2_c03033{vertical-align:33.121440px;}
.lse_c03033{letter-spacing:-0.793584px;}
.lsb_c03033{letter-spacing:-0.774576px;}
.ls8_c03033{letter-spacing:-0.613008px;}
.lsa_c03033{letter-spacing:-0.574992px;}
.ls15_c03033{letter-spacing:-0.389664px;}
.ls11_c03033{letter-spacing:-0.275616px;}
.lsf_c03033{letter-spacing:-0.261360px;}
.ls7_c03033{letter-spacing:-0.242352px;}
.ls5_c03033{letter-spacing:-0.118800px;}
.ls14_c03033{letter-spacing:0.000000px;}
.ls1_c03033{letter-spacing:0.006048px;}
.ls6_c03033{letter-spacing:0.128304px;}
.lsd_c03033{letter-spacing:0.508464px;}
.ls13_c03033{letter-spacing:0.514080px;}
.ls10_c03033{letter-spacing:0.536976px;}
.lsc_c03033{letter-spacing:0.579744px;}
.ls12_c03033{letter-spacing:0.594000px;}
.ls9_c03033{letter-spacing:0.598752px;}
.ls3_c03033{letter-spacing:0.613008px;}
.ls0_c03033{letter-spacing:0.651024px;}
.ls4_c03033{letter-spacing:0.717552px;}
.ls2_c03033{letter-spacing:0.722304px;}
.sc__c03033{text-shadow:none;}
.sc0_c03033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03033{-webkit-text-stroke:0px transparent;}
.sc0_c03033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03033{word-spacing:-15.126048px;}
.wsa_c03033{word-spacing:-12.474000px;}
.ws7_c03033{word-spacing:-12.459744px;}
.wsf_c03033{word-spacing:-12.416976px;}
.ws4_c03033{word-spacing:-11.637648px;}
.ws2_c03033{word-spacing:-11.266992px;}
.ws6_c03033{word-spacing:-11.105424px;}
.ws19_c03033{word-spacing:-1.083456px;}
.ws13_c03033{word-spacing:-1.012176px;}
.ws11_c03033{word-spacing:-0.974160px;}
.ws18_c03033{word-spacing:-0.719712px;}
.ws14_c03033{word-spacing:-0.118800px;}
.ws16_c03033{word-spacing:-0.099792px;}
.ws17_c03033{word-spacing:-0.085536px;}
.ws12_c03033{word-spacing:0.000000px;}
.ws1a_c03033{word-spacing:0.028512px;}
.ws15_c03033{word-spacing:0.432432px;}
.ws10_c03033{word-spacing:30.298752px;}
.wsb_c03033{word-spacing:33.300288px;}
.ws9_c03033{word-spacing:34.836912px;}
.wse_c03033{word-spacing:36.143712px;}
.wsd_c03033{word-spacing:36.742464px;}
.ws1_c03033{word-spacing:37.759392px;}
.ws0_c03033{word-spacing:38.020752px;}
.ws3_c03033{word-spacing:39.218256px;}
.ws5_c03033{word-spacing:39.902544px;}
.ws8_c03033{word-spacing:42.026688px;}
._0_c03033{margin-left:-1.948320px;}
._2_c03033{width:1.482624px;}
._4_c03033{width:3.302640px;}
._1_c03033{width:50.252400px;}
._3_c03033{width:51.530688px;}
.fc0_c03033{color:rgb(0,0,0);}
.fs0_c03033{font-size:47.520000px;}
.fs1_c03033{font-size:60.480000px;}
.y0_c03033{bottom:0.000000px;}
.y19_c03033{bottom:146.998362px;}
.y1b_c03033{bottom:186.600234px;}
.y1a_c03033{bottom:196.320450px;}
.y18_c03033{bottom:275.878542px;}
.y17_c03033{bottom:356.878758px;}
.y15_c03033{bottom:406.559730px;}
.y11_c03033{bottom:424.560306px;}
.y16_c03033{bottom:458.759262px;}
.y14_c03033{bottom:491.879514px;}
.y13_c03033{bottom:509.880090px;}
.y10_c03033{bottom:543.000342px;}
.y12_c03033{bottom:559.559874px;}
.yf_c03033{bottom:577.560450px;}
.y1c_c03033{bottom:614.280450px;}
.yb_c03033{bottom:667.558326px;}
.yd_c03033{bottom:707.160234px;}
.yc_c03033{bottom:716.880450px;}
.ya_c03033{bottom:796.438506px;}
.y9_c03033{bottom:877.438722px;}
.y7_c03033{bottom:926.759730px;}
.y3_c03033{bottom:944.760306px;}
.y8_c03033{bottom:979.319226px;}
.y6_c03033{bottom:1012.439478px;}
.y5_c03033{bottom:1030.440054px;}
.y2_c03033{bottom:1063.560306px;}
.y4_c03033{bottom:1079.759874px;}
.y1_c03033{bottom:1097.760450px;}
.ye_c03033{bottom:1134.840450px;}
.h3_c03033{height:32.530781px;}
.h1_c03033{height:41.696016px;}
.h2_c03033{height:41.812031px;}
.h4_c03033{height:54.654737px;}
.h5_c03033{height:74.817456px;}
.h0_c03033{height:1263.000000px;}
.w1_c03033{width:892.500000px;}
.w0_c03033{width:892.830000px;}
.x0_c03033{left:0.000000px;}
.xd_c03033{left:117.000000px;}
.x8_c03033{left:440.999856px;}
.x4_c03033{left:445.680576px;}
.xb_c03033{left:451.080000px;}
.x7_c03033{left:455.399604px;}
.x5_c03033{left:461.880144px;}
.x1_c03033{left:463.320000px;}
.xa_c03033{left:483.480360px;}
.x9_c03033{left:492.119496px;}
.x6_c03033{left:493.200576px;}
.xc_c03033{left:506.880360px;}
.x3_c03033{left:511.919892px;}
.x2_c03033{left:526.679604px;}
@media print{
.v0_c03033{vertical-align:0.000000pt;}
.v1_c03033{vertical-align:1.279488pt;}
.v2_c03033{vertical-align:29.441280pt;}
.lse_c03033{letter-spacing:-0.705408pt;}
.lsb_c03033{letter-spacing:-0.688512pt;}
.ls8_c03033{letter-spacing:-0.544896pt;}
.lsa_c03033{letter-spacing:-0.511104pt;}
.ls15_c03033{letter-spacing:-0.346368pt;}
.ls11_c03033{letter-spacing:-0.244992pt;}
.lsf_c03033{letter-spacing:-0.232320pt;}
.ls7_c03033{letter-spacing:-0.215424pt;}
.ls5_c03033{letter-spacing:-0.105600pt;}
.ls14_c03033{letter-spacing:0.000000pt;}
.ls1_c03033{letter-spacing:0.005376pt;}
.ls6_c03033{letter-spacing:0.114048pt;}
.lsd_c03033{letter-spacing:0.451968pt;}
.ls13_c03033{letter-spacing:0.456960pt;}
.ls10_c03033{letter-spacing:0.477312pt;}
.lsc_c03033{letter-spacing:0.515328pt;}
.ls12_c03033{letter-spacing:0.528000pt;}
.ls9_c03033{letter-spacing:0.532224pt;}
.ls3_c03033{letter-spacing:0.544896pt;}
.ls0_c03033{letter-spacing:0.578688pt;}
.ls4_c03033{letter-spacing:0.637824pt;}
.ls2_c03033{letter-spacing:0.642048pt;}
.wsc_c03033{word-spacing:-13.445376pt;}
.wsa_c03033{word-spacing:-11.088000pt;}
.ws7_c03033{word-spacing:-11.075328pt;}
.wsf_c03033{word-spacing:-11.037312pt;}
.ws4_c03033{word-spacing:-10.344576pt;}
.ws2_c03033{word-spacing:-10.015104pt;}
.ws6_c03033{word-spacing:-9.871488pt;}
.ws19_c03033{word-spacing:-0.963072pt;}
.ws13_c03033{word-spacing:-0.899712pt;}
.ws11_c03033{word-spacing:-0.865920pt;}
.ws18_c03033{word-spacing:-0.639744pt;}
.ws14_c03033{word-spacing:-0.105600pt;}
.ws16_c03033{word-spacing:-0.088704pt;}
.ws17_c03033{word-spacing:-0.076032pt;}
.ws12_c03033{word-spacing:0.000000pt;}
.ws1a_c03033{word-spacing:0.025344pt;}
.ws15_c03033{word-spacing:0.384384pt;}
.ws10_c03033{word-spacing:26.932224pt;}
.wsb_c03033{word-spacing:29.600256pt;}
.ws9_c03033{word-spacing:30.966144pt;}
.wse_c03033{word-spacing:32.127744pt;}
.wsd_c03033{word-spacing:32.659968pt;}
.ws1_c03033{word-spacing:33.563904pt;}
.ws0_c03033{word-spacing:33.796224pt;}
.ws3_c03033{word-spacing:34.860672pt;}
.ws5_c03033{word-spacing:35.468928pt;}
.ws8_c03033{word-spacing:37.357056pt;}
._0_c03033{margin-left:-1.731840pt;}
._2_c03033{width:1.317888pt;}
._4_c03033{width:2.935680pt;}
._1_c03033{width:44.668800pt;}
._3_c03033{width:45.805056pt;}
.fs0_c03033{font-size:42.240000pt;}
.fs1_c03033{font-size:53.760000pt;}
.y0_c03033{bottom:0.000000pt;}
.y19_c03033{bottom:130.665211pt;}
.y1b_c03033{bottom:165.866875pt;}
.y1a_c03033{bottom:174.507067pt;}
.y18_c03033{bottom:245.225371pt;}
.y17_c03033{bottom:317.225563pt;}
.y15_c03033{bottom:361.386427pt;}
.y11_c03033{bottom:377.386939pt;}
.y16_c03033{bottom:407.786011pt;}
.y14_c03033{bottom:437.226235pt;}
.y13_c03033{bottom:453.226747pt;}
.y10_c03033{bottom:482.666971pt;}
.y12_c03033{bottom:497.386555pt;}
.yf_c03033{bottom:513.387067pt;}
.y1c_c03033{bottom:546.027067pt;}
.yb_c03033{bottom:593.385179pt;}
.yd_c03033{bottom:628.586875pt;}
.yc_c03033{bottom:637.227067pt;}
.ya_c03033{bottom:707.945339pt;}
.y9_c03033{bottom:779.945531pt;}
.y7_c03033{bottom:823.786427pt;}
.y3_c03033{bottom:839.786939pt;}
.y8_c03033{bottom:870.505979pt;}
.y6_c03033{bottom:899.946203pt;}
.y5_c03033{bottom:915.946715pt;}
.y2_c03033{bottom:945.386939pt;}
.y4_c03033{bottom:959.786555pt;}
.y1_c03033{bottom:975.787067pt;}
.ye_c03033{bottom:1008.747067pt;}
.h3_c03033{height:28.916250pt;}
.h1_c03033{height:37.063125pt;}
.h2_c03033{height:37.166250pt;}
.h4_c03033{height:48.581988pt;}
.h5_c03033{height:66.504405pt;}
.h0_c03033{height:1122.666667pt;}
.w1_c03033{width:793.333333pt;}
.w0_c03033{width:793.626667pt;}
.x0_c03033{left:0.000000pt;}
.xd_c03033{left:104.000000pt;}
.x8_c03033{left:391.999872pt;}
.x4_c03033{left:396.160512pt;}
.xb_c03033{left:400.960000pt;}
.x7_c03033{left:404.799648pt;}
.x5_c03033{left:410.560128pt;}
.x1_c03033{left:411.840000pt;}
.xa_c03033{left:429.760320pt;}
.x9_c03033{left:437.439552pt;}
.x6_c03033{left:438.400512pt;}
.xc_c03033{left:450.560320pt;}
.x3_c03033{left:455.039904pt;}
.x2_c03033{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03034 {
    display:none;
  }
  .loading-indicator_c03034.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03034 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03034 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03034" -> "#page-container .classname_c03034")
 */
.pf_c03034 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03034 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03034.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03034 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03034 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03034 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03034 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03034 {overflow:visible;}
  }
}
.c_c03034 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03034 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03034:after { /* webkit #35443 */
  content: '';
}
.t_c03034:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03034 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03034 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03034 { /* info for Javascript */
  display:none;
}
.l_c03034 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03034 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03034 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03034:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03034 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03034.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03034.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03034 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03034{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03034;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03034{font-family:ff1_c03034;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03034;src:url('chunks/assets/font_d53c560ae09b0da0c6bd1aa4.woff2')format("woff");}.ff2_c03034{font-family:ff2_c03034;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03034;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03034{font-family:ff3_c03034;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03034{vertical-align:0.000000px;}
.v1_c03034{vertical-align:1.439424px;}
.lsc_c03034{letter-spacing:-0.717552px;}
.ls7_c03034{letter-spacing:-0.613008px;}
.ls9_c03034{letter-spacing:-0.574992px;}
.ls10_c03034{letter-spacing:-0.275616px;}
.lse_c03034{letter-spacing:-0.261360px;}
.ls6_c03034{letter-spacing:-0.242352px;}
.ls4_c03034{letter-spacing:-0.118800px;}
.ls13_c03034{letter-spacing:0.000000px;}
.ls1_c03034{letter-spacing:0.006048px;}
.ls5_c03034{letter-spacing:0.128304px;}
.lsb_c03034{letter-spacing:0.508464px;}
.ls12_c03034{letter-spacing:0.514080px;}
.lsf_c03034{letter-spacing:0.536976px;}
.lsa_c03034{letter-spacing:0.579744px;}
.ls11_c03034{letter-spacing:0.594000px;}
.ls8_c03034{letter-spacing:0.598752px;}
.ls2_c03034{letter-spacing:0.613008px;}
.lsd_c03034{letter-spacing:0.651024px;}
.ls3_c03034{letter-spacing:0.717552px;}
.ls0_c03034{letter-spacing:0.722304px;}
.sc__c03034{text-shadow:none;}
.sc0_c03034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03034{-webkit-text-stroke:0px transparent;}
.sc0_c03034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03034{word-spacing:-15.126048px;}
.wsb_c03034{word-spacing:-12.474000px;}
.ws4_c03034{word-spacing:-11.637648px;}
.ws2_c03034{word-spacing:-11.266992px;}
.ws11_c03034{word-spacing:-1.083456px;}
.ws12_c03034{word-spacing:-1.012176px;}
.wse_c03034{word-spacing:-0.974160px;}
.ws15_c03034{word-spacing:-0.719712px;}
.ws10_c03034{word-spacing:-0.118800px;}
.ws13_c03034{word-spacing:-0.099792px;}
.ws14_c03034{word-spacing:-0.085536px;}
.wsf_c03034{word-spacing:0.000000px;}
.ws9_c03034{word-spacing:18.114624px;}
.wsc_c03034{word-spacing:33.300288px;}
.wsa_c03034{word-spacing:34.836912px;}
.ws8_c03034{word-spacing:36.143712px;}
.ws6_c03034{word-spacing:36.742464px;}
.ws1_c03034{word-spacing:37.759392px;}
.ws0_c03034{word-spacing:38.020752px;}
.ws3_c03034{word-spacing:39.218256px;}
.ws5_c03034{word-spacing:39.902544px;}
.ws7_c03034{word-spacing:42.026688px;}
._0_c03034{margin-left:-1.948320px;}
._2_c03034{width:1.482624px;}
._4_c03034{width:3.302640px;}
._6_c03034{width:24.420528px;}
._5_c03034{width:26.359344px;}
._1_c03034{width:50.252400px;}
._3_c03034{width:51.530688px;}
.fc0_c03034{color:rgb(0,0,0);}
.fs0_c03034{font-size:47.520000px;}
.fs1_c03034{font-size:60.480000px;}
.y0_c03034{bottom:0.000000px;}
.y1b_c03034{bottom:146.998362px;}
.y1d_c03034{bottom:186.600234px;}
.y1c_c03034{bottom:196.320450px;}
.y1a_c03034{bottom:275.878542px;}
.y19_c03034{bottom:341.759082px;}
.y18_c03034{bottom:356.878758px;}
.y16_c03034{bottom:406.559730px;}
.y12_c03034{bottom:424.560306px;}
.y17_c03034{bottom:458.759262px;}
.y15_c03034{bottom:491.879514px;}
.y14_c03034{bottom:509.880090px;}
.y11_c03034{bottom:543.000342px;}
.y13_c03034{bottom:559.559874px;}
.y10_c03034{bottom:577.560450px;}
.y1e_c03034{bottom:614.280450px;}
.yc_c03034{bottom:667.559514px;}
.ye_c03034{bottom:707.160234px;}
.yd_c03034{bottom:716.880450px;}
.yb_c03034{bottom:796.439694px;}
.ya_c03034{bottom:862.319046px;}
.y9_c03034{bottom:877.438722px;}
.y7_c03034{bottom:926.759730px;}
.y3_c03034{bottom:944.760306px;}
.y8_c03034{bottom:979.319226px;}
.y6_c03034{bottom:1012.439478px;}
.y5_c03034{bottom:1030.440054px;}
.y2_c03034{bottom:1063.560306px;}
.y4_c03034{bottom:1079.759874px;}
.y1_c03034{bottom:1097.760450px;}
.yf_c03034{bottom:1134.840450px;}
.h3_c03034{height:32.530781px;}
.h1_c03034{height:41.696016px;}
.h2_c03034{height:41.812031px;}
.h4_c03034{height:54.654737px;}
.h0_c03034{height:1263.000000px;}
.w1_c03034{width:892.500000px;}
.w0_c03034{width:892.830000px;}
.x0_c03034{left:0.000000px;}
.xe_c03034{left:117.000000px;}
.x8_c03034{left:440.999856px;}
.x4_c03034{left:445.680576px;}
.xc_c03034{left:451.080000px;}
.x7_c03034{left:455.399604px;}
.x5_c03034{left:461.880144px;}
.x1_c03034{left:463.320000px;}
.xb_c03034{left:483.480360px;}
.x9_c03034{left:492.119496px;}
.x6_c03034{left:493.200576px;}
.xd_c03034{left:506.880360px;}
.x3_c03034{left:511.919892px;}
.x2_c03034{left:526.679604px;}
.xa_c03034{left:569.880036px;}
@media print{
.v0_c03034{vertical-align:0.000000pt;}
.v1_c03034{vertical-align:1.279488pt;}
.lsc_c03034{letter-spacing:-0.637824pt;}
.ls7_c03034{letter-spacing:-0.544896pt;}
.ls9_c03034{letter-spacing:-0.511104pt;}
.ls10_c03034{letter-spacing:-0.244992pt;}
.lse_c03034{letter-spacing:-0.232320pt;}
.ls6_c03034{letter-spacing:-0.215424pt;}
.ls4_c03034{letter-spacing:-0.105600pt;}
.ls13_c03034{letter-spacing:0.000000pt;}
.ls1_c03034{letter-spacing:0.005376pt;}
.ls5_c03034{letter-spacing:0.114048pt;}
.lsb_c03034{letter-spacing:0.451968pt;}
.ls12_c03034{letter-spacing:0.456960pt;}
.lsf_c03034{letter-spacing:0.477312pt;}
.lsa_c03034{letter-spacing:0.515328pt;}
.ls11_c03034{letter-spacing:0.528000pt;}
.ls8_c03034{letter-spacing:0.532224pt;}
.ls2_c03034{letter-spacing:0.544896pt;}
.lsd_c03034{letter-spacing:0.578688pt;}
.ls3_c03034{letter-spacing:0.637824pt;}
.ls0_c03034{letter-spacing:0.642048pt;}
.wsd_c03034{word-spacing:-13.445376pt;}
.wsb_c03034{word-spacing:-11.088000pt;}
.ws4_c03034{word-spacing:-10.344576pt;}
.ws2_c03034{word-spacing:-10.015104pt;}
.ws11_c03034{word-spacing:-0.963072pt;}
.ws12_c03034{word-spacing:-0.899712pt;}
.wse_c03034{word-spacing:-0.865920pt;}
.ws15_c03034{word-spacing:-0.639744pt;}
.ws10_c03034{word-spacing:-0.105600pt;}
.ws13_c03034{word-spacing:-0.088704pt;}
.ws14_c03034{word-spacing:-0.076032pt;}
.wsf_c03034{word-spacing:0.000000pt;}
.ws9_c03034{word-spacing:16.101888pt;}
.wsc_c03034{word-spacing:29.600256pt;}
.wsa_c03034{word-spacing:30.966144pt;}
.ws8_c03034{word-spacing:32.127744pt;}
.ws6_c03034{word-spacing:32.659968pt;}
.ws1_c03034{word-spacing:33.563904pt;}
.ws0_c03034{word-spacing:33.796224pt;}
.ws3_c03034{word-spacing:34.860672pt;}
.ws5_c03034{word-spacing:35.468928pt;}
.ws7_c03034{word-spacing:37.357056pt;}
._0_c03034{margin-left:-1.731840pt;}
._2_c03034{width:1.317888pt;}
._4_c03034{width:2.935680pt;}
._6_c03034{width:21.707136pt;}
._5_c03034{width:23.430528pt;}
._1_c03034{width:44.668800pt;}
._3_c03034{width:45.805056pt;}
.fs0_c03034{font-size:42.240000pt;}
.fs1_c03034{font-size:53.760000pt;}
.y0_c03034{bottom:0.000000pt;}
.y1b_c03034{bottom:130.665211pt;}
.y1d_c03034{bottom:165.866875pt;}
.y1c_c03034{bottom:174.507067pt;}
.y1a_c03034{bottom:245.225371pt;}
.y19_c03034{bottom:303.785851pt;}
.y18_c03034{bottom:317.225563pt;}
.y16_c03034{bottom:361.386427pt;}
.y12_c03034{bottom:377.386939pt;}
.y17_c03034{bottom:407.786011pt;}
.y15_c03034{bottom:437.226235pt;}
.y14_c03034{bottom:453.226747pt;}
.y11_c03034{bottom:482.666971pt;}
.y13_c03034{bottom:497.386555pt;}
.y10_c03034{bottom:513.387067pt;}
.y1e_c03034{bottom:546.027067pt;}
.yc_c03034{bottom:593.386235pt;}
.ye_c03034{bottom:628.586875pt;}
.yd_c03034{bottom:637.227067pt;}
.yb_c03034{bottom:707.946395pt;}
.ya_c03034{bottom:766.505819pt;}
.y9_c03034{bottom:779.945531pt;}
.y7_c03034{bottom:823.786427pt;}
.y3_c03034{bottom:839.786939pt;}
.y8_c03034{bottom:870.505979pt;}
.y6_c03034{bottom:899.946203pt;}
.y5_c03034{bottom:915.946715pt;}
.y2_c03034{bottom:945.386939pt;}
.y4_c03034{bottom:959.786555pt;}
.y1_c03034{bottom:975.787067pt;}
.yf_c03034{bottom:1008.747067pt;}
.h3_c03034{height:28.916250pt;}
.h1_c03034{height:37.063125pt;}
.h2_c03034{height:37.166250pt;}
.h4_c03034{height:48.581988pt;}
.h0_c03034{height:1122.666667pt;}
.w1_c03034{width:793.333333pt;}
.w0_c03034{width:793.626667pt;}
.x0_c03034{left:0.000000pt;}
.xe_c03034{left:104.000000pt;}
.x8_c03034{left:391.999872pt;}
.x4_c03034{left:396.160512pt;}
.xc_c03034{left:400.960000pt;}
.x7_c03034{left:404.799648pt;}
.x5_c03034{left:410.560128pt;}
.x1_c03034{left:411.840000pt;}
.xb_c03034{left:429.760320pt;}
.x9_c03034{left:437.439552pt;}
.x6_c03034{left:438.400512pt;}
.xd_c03034{left:450.560320pt;}
.x3_c03034{left:455.039904pt;}
.x2_c03034{left:468.159648pt;}
.xa_c03034{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03035 {
    display:none;
  }
  .loading-indicator_c03035.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03035 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03035 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03035" -> "#page-container .classname_c03035")
 */
.pf_c03035 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03035 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03035 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03035 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03035 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03035 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03035 {overflow:visible;}
  }
}
.c_c03035 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03035 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03035:after { /* webkit #35443 */
  content: '';
}
.t_c03035:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03035 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03035 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03035 { /* info for Javascript */
  display:none;
}
.l_c03035 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03035 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03035 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03035:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03035 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03035.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03035 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03035;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03035{font-family:ff1_c03035;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03035;src:url('chunks/assets/font_4d809fc4fb677463cc82dead.woff2')format("woff");}.ff2_c03035{font-family:ff2_c03035;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03035;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03035{font-family:ff3_c03035;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03035{vertical-align:0.000000px;}
.v1_c03035{vertical-align:1.439424px;}
.lsc_c03035{letter-spacing:-0.717552px;}
.ls7_c03035{letter-spacing:-0.613008px;}
.ls9_c03035{letter-spacing:-0.574992px;}
.ls10_c03035{letter-spacing:-0.275616px;}
.lse_c03035{letter-spacing:-0.261360px;}
.ls6_c03035{letter-spacing:-0.242352px;}
.ls4_c03035{letter-spacing:-0.118800px;}
.ls13_c03035{letter-spacing:0.000000px;}
.ls1_c03035{letter-spacing:0.006048px;}
.ls5_c03035{letter-spacing:0.128304px;}
.lsb_c03035{letter-spacing:0.508464px;}
.ls12_c03035{letter-spacing:0.514080px;}
.lsf_c03035{letter-spacing:0.536976px;}
.lsa_c03035{letter-spacing:0.579744px;}
.ls11_c03035{letter-spacing:0.594000px;}
.ls8_c03035{letter-spacing:0.598752px;}
.ls2_c03035{letter-spacing:0.613008px;}
.lsd_c03035{letter-spacing:0.651024px;}
.ls3_c03035{letter-spacing:0.717552px;}
.ls0_c03035{letter-spacing:0.722304px;}
.sc__c03035{text-shadow:none;}
.sc0_c03035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03035{-webkit-text-stroke:0px transparent;}
.sc0_c03035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03035{word-spacing:-15.126048px;}
.wsb_c03035{word-spacing:-12.474000px;}
.ws4_c03035{word-spacing:-11.637648px;}
.ws2_c03035{word-spacing:-11.266992px;}
.ws11_c03035{word-spacing:-1.083456px;}
.ws12_c03035{word-spacing:-1.012176px;}
.wse_c03035{word-spacing:-0.974160px;}
.ws15_c03035{word-spacing:-0.719712px;}
.ws10_c03035{word-spacing:-0.118800px;}
.ws13_c03035{word-spacing:-0.099792px;}
.ws14_c03035{word-spacing:-0.085536px;}
.wsf_c03035{word-spacing:0.000000px;}
.ws9_c03035{word-spacing:18.114624px;}
.wsc_c03035{word-spacing:33.300288px;}
.wsa_c03035{word-spacing:34.836912px;}
.ws8_c03035{word-spacing:36.143712px;}
.ws6_c03035{word-spacing:36.742464px;}
.ws1_c03035{word-spacing:37.759392px;}
.ws0_c03035{word-spacing:38.020752px;}
.ws3_c03035{word-spacing:39.218256px;}
.ws5_c03035{word-spacing:39.902544px;}
.ws7_c03035{word-spacing:42.026688px;}
._0_c03035{margin-left:-1.948320px;}
._2_c03035{width:1.482624px;}
._4_c03035{width:3.302640px;}
._6_c03035{width:24.420528px;}
._5_c03035{width:26.359344px;}
._1_c03035{width:50.252400px;}
._3_c03035{width:51.530688px;}
.fc0_c03035{color:rgb(0,0,0);}
.fs0_c03035{font-size:47.520000px;}
.fs1_c03035{font-size:60.480000px;}
.y0_c03035{bottom:0.000000px;}
.y1b_c03035{bottom:146.998362px;}
.y1d_c03035{bottom:186.600234px;}
.y1c_c03035{bottom:196.320450px;}
.y1a_c03035{bottom:275.878542px;}
.y19_c03035{bottom:341.759082px;}
.y18_c03035{bottom:356.878758px;}
.y16_c03035{bottom:406.559730px;}
.y12_c03035{bottom:424.560306px;}
.y17_c03035{bottom:458.759262px;}
.y15_c03035{bottom:491.879514px;}
.y14_c03035{bottom:509.880090px;}
.y11_c03035{bottom:543.000342px;}
.y13_c03035{bottom:559.559874px;}
.y10_c03035{bottom:577.560450px;}
.y1e_c03035{bottom:614.280450px;}
.yc_c03035{bottom:667.559514px;}
.ye_c03035{bottom:707.160234px;}
.yd_c03035{bottom:716.880450px;}
.yb_c03035{bottom:796.439694px;}
.ya_c03035{bottom:862.319046px;}
.y9_c03035{bottom:877.438722px;}
.y7_c03035{bottom:926.759730px;}
.y3_c03035{bottom:944.760306px;}
.y8_c03035{bottom:979.319226px;}
.y6_c03035{bottom:1012.439478px;}
.y5_c03035{bottom:1030.440054px;}
.y2_c03035{bottom:1063.560306px;}
.y4_c03035{bottom:1079.759874px;}
.y1_c03035{bottom:1097.760450px;}
.yf_c03035{bottom:1134.840450px;}
.h3_c03035{height:32.530781px;}
.h1_c03035{height:41.696016px;}
.h2_c03035{height:41.812031px;}
.h4_c03035{height:54.654737px;}
.h0_c03035{height:1263.000000px;}
.w1_c03035{width:892.500000px;}
.w0_c03035{width:892.830000px;}
.x0_c03035{left:0.000000px;}
.xe_c03035{left:117.000000px;}
.x8_c03035{left:440.999856px;}
.x4_c03035{left:445.680576px;}
.xc_c03035{left:451.080000px;}
.x7_c03035{left:455.399604px;}
.x5_c03035{left:461.880144px;}
.x1_c03035{left:463.320000px;}
.xb_c03035{left:483.480360px;}
.x9_c03035{left:492.119496px;}
.x6_c03035{left:493.200576px;}
.xd_c03035{left:506.880360px;}
.x3_c03035{left:511.919892px;}
.x2_c03035{left:526.679604px;}
.xa_c03035{left:569.880036px;}
@media print{
.v0_c03035{vertical-align:0.000000pt;}
.v1_c03035{vertical-align:1.279488pt;}
.lsc_c03035{letter-spacing:-0.637824pt;}
.ls7_c03035{letter-spacing:-0.544896pt;}
.ls9_c03035{letter-spacing:-0.511104pt;}
.ls10_c03035{letter-spacing:-0.244992pt;}
.lse_c03035{letter-spacing:-0.232320pt;}
.ls6_c03035{letter-spacing:-0.215424pt;}
.ls4_c03035{letter-spacing:-0.105600pt;}
.ls13_c03035{letter-spacing:0.000000pt;}
.ls1_c03035{letter-spacing:0.005376pt;}
.ls5_c03035{letter-spacing:0.114048pt;}
.lsb_c03035{letter-spacing:0.451968pt;}
.ls12_c03035{letter-spacing:0.456960pt;}
.lsf_c03035{letter-spacing:0.477312pt;}
.lsa_c03035{letter-spacing:0.515328pt;}
.ls11_c03035{letter-spacing:0.528000pt;}
.ls8_c03035{letter-spacing:0.532224pt;}
.ls2_c03035{letter-spacing:0.544896pt;}
.lsd_c03035{letter-spacing:0.578688pt;}
.ls3_c03035{letter-spacing:0.637824pt;}
.ls0_c03035{letter-spacing:0.642048pt;}
.wsd_c03035{word-spacing:-13.445376pt;}
.wsb_c03035{word-spacing:-11.088000pt;}
.ws4_c03035{word-spacing:-10.344576pt;}
.ws2_c03035{word-spacing:-10.015104pt;}
.ws11_c03035{word-spacing:-0.963072pt;}
.ws12_c03035{word-spacing:-0.899712pt;}
.wse_c03035{word-spacing:-0.865920pt;}
.ws15_c03035{word-spacing:-0.639744pt;}
.ws10_c03035{word-spacing:-0.105600pt;}
.ws13_c03035{word-spacing:-0.088704pt;}
.ws14_c03035{word-spacing:-0.076032pt;}
.wsf_c03035{word-spacing:0.000000pt;}
.ws9_c03035{word-spacing:16.101888pt;}
.wsc_c03035{word-spacing:29.600256pt;}
.wsa_c03035{word-spacing:30.966144pt;}
.ws8_c03035{word-spacing:32.127744pt;}
.ws6_c03035{word-spacing:32.659968pt;}
.ws1_c03035{word-spacing:33.563904pt;}
.ws0_c03035{word-spacing:33.796224pt;}
.ws3_c03035{word-spacing:34.860672pt;}
.ws5_c03035{word-spacing:35.468928pt;}
.ws7_c03035{word-spacing:37.357056pt;}
._0_c03035{margin-left:-1.731840pt;}
._2_c03035{width:1.317888pt;}
._4_c03035{width:2.935680pt;}
._6_c03035{width:21.707136pt;}
._5_c03035{width:23.430528pt;}
._1_c03035{width:44.668800pt;}
._3_c03035{width:45.805056pt;}
.fs0_c03035{font-size:42.240000pt;}
.fs1_c03035{font-size:53.760000pt;}
.y0_c03035{bottom:0.000000pt;}
.y1b_c03035{bottom:130.665211pt;}
.y1d_c03035{bottom:165.866875pt;}
.y1c_c03035{bottom:174.507067pt;}
.y1a_c03035{bottom:245.225371pt;}
.y19_c03035{bottom:303.785851pt;}
.y18_c03035{bottom:317.225563pt;}
.y16_c03035{bottom:361.386427pt;}
.y12_c03035{bottom:377.386939pt;}
.y17_c03035{bottom:407.786011pt;}
.y15_c03035{bottom:437.226235pt;}
.y14_c03035{bottom:453.226747pt;}
.y11_c03035{bottom:482.666971pt;}
.y13_c03035{bottom:497.386555pt;}
.y10_c03035{bottom:513.387067pt;}
.y1e_c03035{bottom:546.027067pt;}
.yc_c03035{bottom:593.386235pt;}
.ye_c03035{bottom:628.586875pt;}
.yd_c03035{bottom:637.227067pt;}
.yb_c03035{bottom:707.946395pt;}
.ya_c03035{bottom:766.505819pt;}
.y9_c03035{bottom:779.945531pt;}
.y7_c03035{bottom:823.786427pt;}
.y3_c03035{bottom:839.786939pt;}
.y8_c03035{bottom:870.505979pt;}
.y6_c03035{bottom:899.946203pt;}
.y5_c03035{bottom:915.946715pt;}
.y2_c03035{bottom:945.386939pt;}
.y4_c03035{bottom:959.786555pt;}
.y1_c03035{bottom:975.787067pt;}
.yf_c03035{bottom:1008.747067pt;}
.h3_c03035{height:28.916250pt;}
.h1_c03035{height:37.063125pt;}
.h2_c03035{height:37.166250pt;}
.h4_c03035{height:48.581988pt;}
.h0_c03035{height:1122.666667pt;}
.w1_c03035{width:793.333333pt;}
.w0_c03035{width:793.626667pt;}
.x0_c03035{left:0.000000pt;}
.xe_c03035{left:104.000000pt;}
.x8_c03035{left:391.999872pt;}
.x4_c03035{left:396.160512pt;}
.xc_c03035{left:400.960000pt;}
.x7_c03035{left:404.799648pt;}
.x5_c03035{left:410.560128pt;}
.x1_c03035{left:411.840000pt;}
.xb_c03035{left:429.760320pt;}
.x9_c03035{left:437.439552pt;}
.x6_c03035{left:438.400512pt;}
.xd_c03035{left:450.560320pt;}
.x3_c03035{left:455.039904pt;}
.x2_c03035{left:468.159648pt;}
.xa_c03035{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03036 {
    display:none;
  }
  .loading-indicator_c03036.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03036 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03036 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03036" -> "#page-container .classname_c03036")
 */
.pf_c03036 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03036 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03036.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03036 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03036 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03036 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03036 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03036 {overflow:visible;}
  }
}
.c_c03036 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03036 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03036:after { /* webkit #35443 */
  content: '';
}
.t_c03036:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03036 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03036 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03036 { /* info for Javascript */
  display:none;
}
.l_c03036 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03036 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03036 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03036:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03036 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03036.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03036.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03036 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03036;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03036{font-family:ff1_c03036;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03036;src:url('chunks/assets/font_48bbd9551babc27b830c9afd.woff2')format("woff");}.ff2_c03036{font-family:ff2_c03036;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03036;src:url('chunks/assets/font_dfe2f3e81656dbe7147f9663.woff2')format("woff");}.ff3_c03036{font-family:ff3_c03036;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03036{vertical-align:0.000000px;}
.v1_c03036{vertical-align:1.439424px;}
.lsf_c03036{letter-spacing:-1.197504px;}
.lsc_c03036{letter-spacing:-0.793584px;}
.ls15_c03036{letter-spacing:-0.613008px;}
.ls9_c03036{letter-spacing:-0.574992px;}
.ls11_c03036{letter-spacing:-0.275616px;}
.lse_c03036{letter-spacing:-0.261360px;}
.ls6_c03036{letter-spacing:-0.242352px;}
.ls5_c03036{letter-spacing:-0.118800px;}
.ls14_c03036{letter-spacing:0.000000px;}
.ls1_c03036{letter-spacing:0.006048px;}
.ls7_c03036{letter-spacing:0.128304px;}
.ls16_c03036{letter-spacing:0.242352px;}
.lsb_c03036{letter-spacing:0.508464px;}
.ls13_c03036{letter-spacing:0.514080px;}
.ls10_c03036{letter-spacing:0.536976px;}
.lsa_c03036{letter-spacing:0.579744px;}
.ls12_c03036{letter-spacing:0.594000px;}
.ls8_c03036{letter-spacing:0.598752px;}
.ls3_c03036{letter-spacing:0.613008px;}
.ls2_c03036{letter-spacing:0.651024px;}
.lsd_c03036{letter-spacing:0.674784px;}
.ls4_c03036{letter-spacing:0.717552px;}
.ls0_c03036{letter-spacing:0.722304px;}
.sc__c03036{text-shadow:none;}
.sc0_c03036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03036{-webkit-text-stroke:0px transparent;}
.sc0_c03036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03036{word-spacing:-15.126048px;}
.wsb_c03036{word-spacing:-12.474000px;}
.ws7_c03036{word-spacing:-12.459744px;}
.wsa_c03036{word-spacing:-12.416976px;}
.ws5_c03036{word-spacing:-11.637648px;}
.wse_c03036{word-spacing:-11.266992px;}
.ws1_c03036{word-spacing:-1.088208px;}
.ws13_c03036{word-spacing:-1.083456px;}
.ws15_c03036{word-spacing:-1.035936px;}
.ws1a_c03036{word-spacing:-1.012176px;}
.ws10_c03036{word-spacing:-0.974160px;}
.ws19_c03036{word-spacing:-0.719712px;}
.ws12_c03036{word-spacing:-0.118800px;}
.ws16_c03036{word-spacing:-0.099792px;}
.ws18_c03036{word-spacing:-0.085536px;}
.ws11_c03036{word-spacing:0.000000px;}
.ws14_c03036{word-spacing:0.432432px;}
.ws17_c03036{word-spacing:0.836352px;}
.ws3_c03036{word-spacing:1.330560px;}
.wsc_c03036{word-spacing:33.300288px;}
.ws9_c03036{word-spacing:36.143712px;}
.wsf_c03036{word-spacing:36.742464px;}
.ws2_c03036{word-spacing:37.759392px;}
.ws0_c03036{word-spacing:38.020752px;}
.ws4_c03036{word-spacing:39.218256px;}
.ws6_c03036{word-spacing:39.902544px;}
.ws8_c03036{word-spacing:42.026688px;}
._0_c03036{margin-left:-1.948320px;}
._2_c03036{width:1.810512px;}
._4_c03036{width:6.263136px;}
._1_c03036{width:50.252400px;}
._3_c03036{width:52.029648px;}
.fc0_c03036{color:rgb(0,0,0);}
.fs0_c03036{font-size:47.520000px;}
.fs1_c03036{font-size:60.480000px;}
.y0_c03036{bottom:0.000000px;}
.y19_c03036{bottom:146.998362px;}
.y1b_c03036{bottom:186.600234px;}
.y1a_c03036{bottom:196.320450px;}
.y18_c03036{bottom:275.878542px;}
.y17_c03036{bottom:356.878758px;}
.y15_c03036{bottom:406.559730px;}
.y11_c03036{bottom:424.560306px;}
.y16_c03036{bottom:458.759262px;}
.y14_c03036{bottom:491.879514px;}
.y13_c03036{bottom:509.880090px;}
.y10_c03036{bottom:543.000342px;}
.y12_c03036{bottom:559.559874px;}
.yf_c03036{bottom:577.560450px;}
.y1c_c03036{bottom:614.280450px;}
.yb_c03036{bottom:667.558326px;}
.yd_c03036{bottom:707.160234px;}
.yc_c03036{bottom:716.880450px;}
.ya_c03036{bottom:796.438506px;}
.y9_c03036{bottom:877.438722px;}
.y7_c03036{bottom:926.759730px;}
.y3_c03036{bottom:944.760306px;}
.y8_c03036{bottom:979.319226px;}
.y6_c03036{bottom:1012.439478px;}
.y5_c03036{bottom:1030.440054px;}
.y2_c03036{bottom:1063.560306px;}
.y4_c03036{bottom:1079.759874px;}
.y1_c03036{bottom:1097.760450px;}
.ye_c03036{bottom:1134.840450px;}
.h3_c03036{height:32.530781px;}
.h1_c03036{height:41.696016px;}
.h2_c03036{height:41.812031px;}
.h4_c03036{height:54.654737px;}
.h0_c03036{height:1263.000000px;}
.w1_c03036{width:892.500000px;}
.w0_c03036{width:892.830000px;}
.x0_c03036{left:0.000000px;}
.xd_c03036{left:117.000000px;}
.x8_c03036{left:440.999856px;}
.x4_c03036{left:445.680576px;}
.xb_c03036{left:451.080000px;}
.x7_c03036{left:455.399604px;}
.x5_c03036{left:461.880144px;}
.x1_c03036{left:463.320000px;}
.xa_c03036{left:483.479172px;}
.x9_c03036{left:492.119496px;}
.x6_c03036{left:493.200576px;}
.xc_c03036{left:506.880360px;}
.x3_c03036{left:511.919892px;}
.x2_c03036{left:526.679604px;}
@media print{
.v0_c03036{vertical-align:0.000000pt;}
.v1_c03036{vertical-align:1.279488pt;}
.lsf_c03036{letter-spacing:-1.064448pt;}
.lsc_c03036{letter-spacing:-0.705408pt;}
.ls15_c03036{letter-spacing:-0.544896pt;}
.ls9_c03036{letter-spacing:-0.511104pt;}
.ls11_c03036{letter-spacing:-0.244992pt;}
.lse_c03036{letter-spacing:-0.232320pt;}
.ls6_c03036{letter-spacing:-0.215424pt;}
.ls5_c03036{letter-spacing:-0.105600pt;}
.ls14_c03036{letter-spacing:0.000000pt;}
.ls1_c03036{letter-spacing:0.005376pt;}
.ls7_c03036{letter-spacing:0.114048pt;}
.ls16_c03036{letter-spacing:0.215424pt;}
.lsb_c03036{letter-spacing:0.451968pt;}
.ls13_c03036{letter-spacing:0.456960pt;}
.ls10_c03036{letter-spacing:0.477312pt;}
.lsa_c03036{letter-spacing:0.515328pt;}
.ls12_c03036{letter-spacing:0.528000pt;}
.ls8_c03036{letter-spacing:0.532224pt;}
.ls3_c03036{letter-spacing:0.544896pt;}
.ls2_c03036{letter-spacing:0.578688pt;}
.lsd_c03036{letter-spacing:0.599808pt;}
.ls4_c03036{letter-spacing:0.637824pt;}
.ls0_c03036{letter-spacing:0.642048pt;}
.wsd_c03036{word-spacing:-13.445376pt;}
.wsb_c03036{word-spacing:-11.088000pt;}
.ws7_c03036{word-spacing:-11.075328pt;}
.wsa_c03036{word-spacing:-11.037312pt;}
.ws5_c03036{word-spacing:-10.344576pt;}
.wse_c03036{word-spacing:-10.015104pt;}
.ws1_c03036{word-spacing:-0.967296pt;}
.ws13_c03036{word-spacing:-0.963072pt;}
.ws15_c03036{word-spacing:-0.920832pt;}
.ws1a_c03036{word-spacing:-0.899712pt;}
.ws10_c03036{word-spacing:-0.865920pt;}
.ws19_c03036{word-spacing:-0.639744pt;}
.ws12_c03036{word-spacing:-0.105600pt;}
.ws16_c03036{word-spacing:-0.088704pt;}
.ws18_c03036{word-spacing:-0.076032pt;}
.ws11_c03036{word-spacing:0.000000pt;}
.ws14_c03036{word-spacing:0.384384pt;}
.ws17_c03036{word-spacing:0.743424pt;}
.ws3_c03036{word-spacing:1.182720pt;}
.wsc_c03036{word-spacing:29.600256pt;}
.ws9_c03036{word-spacing:32.127744pt;}
.wsf_c03036{word-spacing:32.659968pt;}
.ws2_c03036{word-spacing:33.563904pt;}
.ws0_c03036{word-spacing:33.796224pt;}
.ws4_c03036{word-spacing:34.860672pt;}
.ws6_c03036{word-spacing:35.468928pt;}
.ws8_c03036{word-spacing:37.357056pt;}
._0_c03036{margin-left:-1.731840pt;}
._2_c03036{width:1.609344pt;}
._4_c03036{width:5.567232pt;}
._1_c03036{width:44.668800pt;}
._3_c03036{width:46.248576pt;}
.fs0_c03036{font-size:42.240000pt;}
.fs1_c03036{font-size:53.760000pt;}
.y0_c03036{bottom:0.000000pt;}
.y19_c03036{bottom:130.665211pt;}
.y1b_c03036{bottom:165.866875pt;}
.y1a_c03036{bottom:174.507067pt;}
.y18_c03036{bottom:245.225371pt;}
.y17_c03036{bottom:317.225563pt;}
.y15_c03036{bottom:361.386427pt;}
.y11_c03036{bottom:377.386939pt;}
.y16_c03036{bottom:407.786011pt;}
.y14_c03036{bottom:437.226235pt;}
.y13_c03036{bottom:453.226747pt;}
.y10_c03036{bottom:482.666971pt;}
.y12_c03036{bottom:497.386555pt;}
.yf_c03036{bottom:513.387067pt;}
.y1c_c03036{bottom:546.027067pt;}
.yb_c03036{bottom:593.385179pt;}
.yd_c03036{bottom:628.586875pt;}
.yc_c03036{bottom:637.227067pt;}
.ya_c03036{bottom:707.945339pt;}
.y9_c03036{bottom:779.945531pt;}
.y7_c03036{bottom:823.786427pt;}
.y3_c03036{bottom:839.786939pt;}
.y8_c03036{bottom:870.505979pt;}
.y6_c03036{bottom:899.946203pt;}
.y5_c03036{bottom:915.946715pt;}
.y2_c03036{bottom:945.386939pt;}
.y4_c03036{bottom:959.786555pt;}
.y1_c03036{bottom:975.787067pt;}
.ye_c03036{bottom:1008.747067pt;}
.h3_c03036{height:28.916250pt;}
.h1_c03036{height:37.063125pt;}
.h2_c03036{height:37.166250pt;}
.h4_c03036{height:48.581988pt;}
.h0_c03036{height:1122.666667pt;}
.w1_c03036{width:793.333333pt;}
.w0_c03036{width:793.626667pt;}
.x0_c03036{left:0.000000pt;}
.xd_c03036{left:104.000000pt;}
.x8_c03036{left:391.999872pt;}
.x4_c03036{left:396.160512pt;}
.xb_c03036{left:400.960000pt;}
.x7_c03036{left:404.799648pt;}
.x5_c03036{left:410.560128pt;}
.x1_c03036{left:411.840000pt;}
.xa_c03036{left:429.759264pt;}
.x9_c03036{left:437.439552pt;}
.x6_c03036{left:438.400512pt;}
.xc_c03036{left:450.560320pt;}
.x3_c03036{left:455.039904pt;}
.x2_c03036{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03037 {
    display:none;
  }
  .loading-indicator_c03037.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03037 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03037 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03037" -> "#page-container .classname_c03037")
 */
.pf_c03037 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03037 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03037.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03037 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03037 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03037 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03037 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03037 {overflow:visible;}
  }
}
.c_c03037 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03037 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03037:after { /* webkit #35443 */
  content: '';
}
.t_c03037:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03037 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03037 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03037 { /* info for Javascript */
  display:none;
}
.l_c03037 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03037 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03037 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03037:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03037 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03037.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03037.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03037 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03037;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03037{font-family:ff1_c03037;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03037;src:url('chunks/assets/font_7a5b2432fd6f338c7475da12.woff2')format("woff");}.ff2_c03037{font-family:ff2_c03037;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03037;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03037{font-family:ff3_c03037;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03037{vertical-align:0.000000px;}
.v2_c03037{vertical-align:1.439424px;}
.v1_c03037{vertical-align:33.121440px;}
.ls15_c03037{letter-spacing:-0.793584px;}
.lsa_c03037{letter-spacing:-0.774576px;}
.lsd_c03037{letter-spacing:-0.722304px;}
.ls7_c03037{letter-spacing:-0.613008px;}
.ls9_c03037{letter-spacing:-0.574992px;}
.ls12_c03037{letter-spacing:-0.337392px;}
.ls10_c03037{letter-spacing:-0.275616px;}
.lse_c03037{letter-spacing:-0.261360px;}
.ls6_c03037{letter-spacing:-0.242352px;}
.ls4_c03037{letter-spacing:-0.118800px;}
.ls14_c03037{letter-spacing:0.000000px;}
.ls0_c03037{letter-spacing:0.006048px;}
.ls5_c03037{letter-spacing:0.128304px;}
.lsc_c03037{letter-spacing:0.508464px;}
.ls13_c03037{letter-spacing:0.514080px;}
.lsf_c03037{letter-spacing:0.536976px;}
.lsb_c03037{letter-spacing:0.579744px;}
.ls11_c03037{letter-spacing:0.594000px;}
.ls8_c03037{letter-spacing:0.598752px;}
.ls2_c03037{letter-spacing:0.613008px;}
.ls1_c03037{letter-spacing:0.651024px;}
.ls3_c03037{letter-spacing:0.717552px;}
.sc__c03037{text-shadow:none;}
.sc0_c03037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03037{-webkit-text-stroke:0px transparent;}
.sc0_c03037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03037{word-spacing:-15.126048px;}
.wsd_c03037{word-spacing:-12.474000px;}
.ws6_c03037{word-spacing:-12.459744px;}
.ws8_c03037{word-spacing:-12.416976px;}
.ws2_c03037{word-spacing:-11.266992px;}
.ws5_c03037{word-spacing:-11.105424px;}
.ws16_c03037{word-spacing:-1.012176px;}
.wse_c03037{word-spacing:-0.974160px;}
.ws15_c03037{word-spacing:-0.719712px;}
.ws10_c03037{word-spacing:-0.118800px;}
.ws12_c03037{word-spacing:-0.099792px;}
.ws13_c03037{word-spacing:-0.085536px;}
.ws14_c03037{word-spacing:-0.023760px;}
.wsf_c03037{word-spacing:0.000000px;}
.ws11_c03037{word-spacing:0.361152px;}
.ws17_c03037{word-spacing:0.432432px;}
.ws9_c03037{word-spacing:30.298752px;}
.wsa_c03037{word-spacing:33.300288px;}
.wsc_c03037{word-spacing:36.143712px;}
.ws1_c03037{word-spacing:37.759392px;}
.ws0_c03037{word-spacing:38.020752px;}
.ws3_c03037{word-spacing:39.218256px;}
.ws4_c03037{word-spacing:39.902544px;}
.ws7_c03037{word-spacing:42.026688px;}
._0_c03037{margin-left:-1.948320px;}
._2_c03037{width:1.482624px;}
._4_c03037{width:3.302640px;}
._1_c03037{width:50.252400px;}
._3_c03037{width:51.530688px;}
.fc0_c03037{color:rgb(0,0,0);}
.fs0_c03037{font-size:47.520000px;}
.fs1_c03037{font-size:60.480000px;}
.y0_c03037{bottom:0.000000px;}
.y19_c03037{bottom:146.998362px;}
.y1b_c03037{bottom:186.600234px;}
.y1a_c03037{bottom:196.320450px;}
.y18_c03037{bottom:275.878542px;}
.y17_c03037{bottom:356.878758px;}
.y15_c03037{bottom:406.559730px;}
.y11_c03037{bottom:424.560306px;}
.y16_c03037{bottom:458.759262px;}
.y14_c03037{bottom:491.879514px;}
.y13_c03037{bottom:509.880090px;}
.y10_c03037{bottom:543.000342px;}
.y12_c03037{bottom:559.559874px;}
.yf_c03037{bottom:577.560450px;}
.y1c_c03037{bottom:614.280450px;}
.yb_c03037{bottom:667.558326px;}
.yd_c03037{bottom:707.160234px;}
.yc_c03037{bottom:716.880450px;}
.ya_c03037{bottom:796.438506px;}
.y9_c03037{bottom:877.438722px;}
.y7_c03037{bottom:926.759730px;}
.y3_c03037{bottom:944.760306px;}
.y8_c03037{bottom:979.319226px;}
.y6_c03037{bottom:1012.439478px;}
.y5_c03037{bottom:1030.440054px;}
.y2_c03037{bottom:1063.560306px;}
.y4_c03037{bottom:1079.759874px;}
.y1_c03037{bottom:1097.760450px;}
.ye_c03037{bottom:1134.840450px;}
.h3_c03037{height:32.530781px;}
.h1_c03037{height:41.696016px;}
.h2_c03037{height:41.812031px;}
.h5_c03037{height:54.654737px;}
.h4_c03037{height:74.817456px;}
.h0_c03037{height:1263.000000px;}
.w1_c03037{width:892.500000px;}
.w0_c03037{width:892.830000px;}
.x0_c03037{left:0.000000px;}
.xd_c03037{left:117.000000px;}
.x8_c03037{left:440.999856px;}
.x4_c03037{left:445.680576px;}
.xb_c03037{left:451.080000px;}
.x7_c03037{left:455.399604px;}
.x5_c03037{left:461.880144px;}
.x1_c03037{left:463.320000px;}
.xa_c03037{left:483.480360px;}
.x9_c03037{left:492.119496px;}
.x6_c03037{left:493.200576px;}
.xc_c03037{left:506.880360px;}
.x3_c03037{left:511.919892px;}
.x2_c03037{left:526.679604px;}
@media print{
.v0_c03037{vertical-align:0.000000pt;}
.v2_c03037{vertical-align:1.279488pt;}
.v1_c03037{vertical-align:29.441280pt;}
.ls15_c03037{letter-spacing:-0.705408pt;}
.lsa_c03037{letter-spacing:-0.688512pt;}
.lsd_c03037{letter-spacing:-0.642048pt;}
.ls7_c03037{letter-spacing:-0.544896pt;}
.ls9_c03037{letter-spacing:-0.511104pt;}
.ls12_c03037{letter-spacing:-0.299904pt;}
.ls10_c03037{letter-spacing:-0.244992pt;}
.lse_c03037{letter-spacing:-0.232320pt;}
.ls6_c03037{letter-spacing:-0.215424pt;}
.ls4_c03037{letter-spacing:-0.105600pt;}
.ls14_c03037{letter-spacing:0.000000pt;}
.ls0_c03037{letter-spacing:0.005376pt;}
.ls5_c03037{letter-spacing:0.114048pt;}
.lsc_c03037{letter-spacing:0.451968pt;}
.ls13_c03037{letter-spacing:0.456960pt;}
.lsf_c03037{letter-spacing:0.477312pt;}
.lsb_c03037{letter-spacing:0.515328pt;}
.ls11_c03037{letter-spacing:0.528000pt;}
.ls8_c03037{letter-spacing:0.532224pt;}
.ls2_c03037{letter-spacing:0.544896pt;}
.ls1_c03037{letter-spacing:0.578688pt;}
.ls3_c03037{letter-spacing:0.637824pt;}
.wsb_c03037{word-spacing:-13.445376pt;}
.wsd_c03037{word-spacing:-11.088000pt;}
.ws6_c03037{word-spacing:-11.075328pt;}
.ws8_c03037{word-spacing:-11.037312pt;}
.ws2_c03037{word-spacing:-10.015104pt;}
.ws5_c03037{word-spacing:-9.871488pt;}
.ws16_c03037{word-spacing:-0.899712pt;}
.wse_c03037{word-spacing:-0.865920pt;}
.ws15_c03037{word-spacing:-0.639744pt;}
.ws10_c03037{word-spacing:-0.105600pt;}
.ws12_c03037{word-spacing:-0.088704pt;}
.ws13_c03037{word-spacing:-0.076032pt;}
.ws14_c03037{word-spacing:-0.021120pt;}
.wsf_c03037{word-spacing:0.000000pt;}
.ws11_c03037{word-spacing:0.321024pt;}
.ws17_c03037{word-spacing:0.384384pt;}
.ws9_c03037{word-spacing:26.932224pt;}
.wsa_c03037{word-spacing:29.600256pt;}
.wsc_c03037{word-spacing:32.127744pt;}
.ws1_c03037{word-spacing:33.563904pt;}
.ws0_c03037{word-spacing:33.796224pt;}
.ws3_c03037{word-spacing:34.860672pt;}
.ws4_c03037{word-spacing:35.468928pt;}
.ws7_c03037{word-spacing:37.357056pt;}
._0_c03037{margin-left:-1.731840pt;}
._2_c03037{width:1.317888pt;}
._4_c03037{width:2.935680pt;}
._1_c03037{width:44.668800pt;}
._3_c03037{width:45.805056pt;}
.fs0_c03037{font-size:42.240000pt;}
.fs1_c03037{font-size:53.760000pt;}
.y0_c03037{bottom:0.000000pt;}
.y19_c03037{bottom:130.665211pt;}
.y1b_c03037{bottom:165.866875pt;}
.y1a_c03037{bottom:174.507067pt;}
.y18_c03037{bottom:245.225371pt;}
.y17_c03037{bottom:317.225563pt;}
.y15_c03037{bottom:361.386427pt;}
.y11_c03037{bottom:377.386939pt;}
.y16_c03037{bottom:407.786011pt;}
.y14_c03037{bottom:437.226235pt;}
.y13_c03037{bottom:453.226747pt;}
.y10_c03037{bottom:482.666971pt;}
.y12_c03037{bottom:497.386555pt;}
.yf_c03037{bottom:513.387067pt;}
.y1c_c03037{bottom:546.027067pt;}
.yb_c03037{bottom:593.385179pt;}
.yd_c03037{bottom:628.586875pt;}
.yc_c03037{bottom:637.227067pt;}
.ya_c03037{bottom:707.945339pt;}
.y9_c03037{bottom:779.945531pt;}
.y7_c03037{bottom:823.786427pt;}
.y3_c03037{bottom:839.786939pt;}
.y8_c03037{bottom:870.505979pt;}
.y6_c03037{bottom:899.946203pt;}
.y5_c03037{bottom:915.946715pt;}
.y2_c03037{bottom:945.386939pt;}
.y4_c03037{bottom:959.786555pt;}
.y1_c03037{bottom:975.787067pt;}
.ye_c03037{bottom:1008.747067pt;}
.h3_c03037{height:28.916250pt;}
.h1_c03037{height:37.063125pt;}
.h2_c03037{height:37.166250pt;}
.h5_c03037{height:48.581988pt;}
.h4_c03037{height:66.504405pt;}
.h0_c03037{height:1122.666667pt;}
.w1_c03037{width:793.333333pt;}
.w0_c03037{width:793.626667pt;}
.x0_c03037{left:0.000000pt;}
.xd_c03037{left:104.000000pt;}
.x8_c03037{left:391.999872pt;}
.x4_c03037{left:396.160512pt;}
.xb_c03037{left:400.960000pt;}
.x7_c03037{left:404.799648pt;}
.x5_c03037{left:410.560128pt;}
.x1_c03037{left:411.840000pt;}
.xa_c03037{left:429.760320pt;}
.x9_c03037{left:437.439552pt;}
.x6_c03037{left:438.400512pt;}
.xc_c03037{left:450.560320pt;}
.x3_c03037{left:455.039904pt;}
.x2_c03037{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03038 {
    display:none;
  }
  .loading-indicator_c03038.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03038 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03038 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03038" -> "#page-container .classname_c03038")
 */
.pf_c03038 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03038 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03038.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03038 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03038 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03038 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03038 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03038 {overflow:visible;}
  }
}
.c_c03038 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03038 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03038:after { /* webkit #35443 */
  content: '';
}
.t_c03038:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03038 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03038 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03038 { /* info for Javascript */
  display:none;
}
.l_c03038 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03038 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03038 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03038:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03038 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03038.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03038.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03038 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03038{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03038;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03038{font-family:ff1_c03038;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03038;src:url('chunks/assets/font_cd5f87d6b565d24f871e47da.woff2')format("woff");}.ff2_c03038{font-family:ff2_c03038;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03038;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03038{font-family:ff3_c03038;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03038{vertical-align:0.000000px;}
.v1_c03038{vertical-align:1.439424px;}
.ls14_c03038{letter-spacing:-0.793584px;}
.ls16_c03038{letter-spacing:-0.736560px;}
.ls7_c03038{letter-spacing:-0.613008px;}
.ls9_c03038{letter-spacing:-0.574992px;}
.lsc_c03038{letter-spacing:-0.327888px;}
.ls10_c03038{letter-spacing:-0.275616px;}
.ls17_c03038{letter-spacing:-0.270864px;}
.lse_c03038{letter-spacing:-0.261360px;}
.ls6_c03038{letter-spacing:-0.242352px;}
.ls4_c03038{letter-spacing:-0.118800px;}
.ls13_c03038{letter-spacing:0.000000px;}
.ls1_c03038{letter-spacing:0.006048px;}
.ls5_c03038{letter-spacing:0.128304px;}
.lsd_c03038{letter-spacing:0.166320px;}
.lsb_c03038{letter-spacing:0.508464px;}
.ls12_c03038{letter-spacing:0.514080px;}
.lsf_c03038{letter-spacing:0.536976px;}
.lsa_c03038{letter-spacing:0.579744px;}
.ls11_c03038{letter-spacing:0.594000px;}
.ls8_c03038{letter-spacing:0.598752px;}
.ls2_c03038{letter-spacing:0.613008px;}
.ls15_c03038{letter-spacing:0.651024px;}
.ls3_c03038{letter-spacing:0.717552px;}
.ls0_c03038{letter-spacing:0.722304px;}
.sc__c03038{text-shadow:none;}
.sc0_c03038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03038{-webkit-text-stroke:0px transparent;}
.sc0_c03038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03038{word-spacing:-15.126048px;}
.wsb_c03038{word-spacing:-12.474000px;}
.wse_c03038{word-spacing:-12.459744px;}
.wsa_c03038{word-spacing:-12.416976px;}
.ws4_c03038{word-spacing:-11.637648px;}
.ws2_c03038{word-spacing:-11.266992px;}
.ws14_c03038{word-spacing:-1.083456px;}
.ws1a_c03038{word-spacing:-1.012176px;}
.ws11_c03038{word-spacing:-0.974160px;}
.ws18_c03038{word-spacing:-0.719712px;}
.ws13_c03038{word-spacing:-0.118800px;}
.ws16_c03038{word-spacing:-0.099792px;}
.ws1b_c03038{word-spacing:-0.090288px;}
.ws17_c03038{word-spacing:-0.085536px;}
.ws15_c03038{word-spacing:-0.033264px;}
.ws12_c03038{word-spacing:0.000000px;}
.ws19_c03038{word-spacing:0.432432px;}
.ws10_c03038{word-spacing:6.629040px;}
.ws9_c03038{word-spacing:20.547648px;}
.wsc_c03038{word-spacing:33.300288px;}
.wsf_c03038{word-spacing:34.836912px;}
.ws8_c03038{word-spacing:36.143712px;}
.ws6_c03038{word-spacing:36.742464px;}
.ws1_c03038{word-spacing:37.759392px;}
.ws0_c03038{word-spacing:38.020752px;}
.ws3_c03038{word-spacing:39.218256px;}
.ws5_c03038{word-spacing:39.902544px;}
.ws7_c03038{word-spacing:42.026688px;}
._0_c03038{margin-left:-1.948320px;}
._2_c03038{width:1.482624px;}
._4_c03038{width:3.302640px;}
._9_c03038{width:19.982160px;}
._a_c03038{width:23.451120px;}
._8_c03038{width:24.691392px;}
._5_c03038{width:34.352208px;}
._6_c03038{width:35.815824px;}
._7_c03038{width:37.726128px;}
._1_c03038{width:50.252400px;}
._3_c03038{width:51.530688px;}
.fc0_c03038{color:rgb(0,0,0);}
.fs0_c03038{font-size:47.520000px;}
.fs1_c03038{font-size:60.480000px;}
.y0_c03038{bottom:0.000000px;}
.y1b_c03038{bottom:131.878686px;}
.y1a_c03038{bottom:146.998362px;}
.y1d_c03038{bottom:186.600234px;}
.y1c_c03038{bottom:196.320450px;}
.y19_c03038{bottom:275.878542px;}
.y18_c03038{bottom:356.878758px;}
.y16_c03038{bottom:406.559730px;}
.y12_c03038{bottom:424.560306px;}
.y17_c03038{bottom:458.759262px;}
.y15_c03038{bottom:491.879514px;}
.y14_c03038{bottom:509.880090px;}
.y11_c03038{bottom:543.000342px;}
.y13_c03038{bottom:559.559874px;}
.y10_c03038{bottom:577.560450px;}
.y1e_c03038{bottom:614.280450px;}
.yc_c03038{bottom:667.559514px;}
.ye_c03038{bottom:707.160234px;}
.yd_c03038{bottom:716.880450px;}
.yb_c03038{bottom:796.439694px;}
.ya_c03038{bottom:862.319046px;}
.y9_c03038{bottom:877.438722px;}
.y7_c03038{bottom:926.759730px;}
.y3_c03038{bottom:944.760306px;}
.y8_c03038{bottom:979.319226px;}
.y6_c03038{bottom:1012.439478px;}
.y5_c03038{bottom:1030.440054px;}
.y2_c03038{bottom:1063.560306px;}
.y4_c03038{bottom:1079.759874px;}
.y1_c03038{bottom:1097.760450px;}
.yf_c03038{bottom:1134.840450px;}
.h3_c03038{height:32.530781px;}
.h1_c03038{height:41.696016px;}
.h2_c03038{height:41.812031px;}
.h4_c03038{height:54.654737px;}
.h0_c03038{height:1263.000000px;}
.w1_c03038{width:892.500000px;}
.w0_c03038{width:892.830000px;}
.x0_c03038{left:0.000000px;}
.xe_c03038{left:117.000000px;}
.x8_c03038{left:440.999856px;}
.x4_c03038{left:445.680576px;}
.xc_c03038{left:451.080000px;}
.x7_c03038{left:455.399604px;}
.x5_c03038{left:461.880144px;}
.x1_c03038{left:463.320000px;}
.xb_c03038{left:483.481548px;}
.x9_c03038{left:492.120684px;}
.x6_c03038{left:493.200576px;}
.xd_c03038{left:506.880360px;}
.x3_c03038{left:511.919892px;}
.x2_c03038{left:526.679604px;}
.xa_c03038{left:569.881224px;}
@media print{
.v0_c03038{vertical-align:0.000000pt;}
.v1_c03038{vertical-align:1.279488pt;}
.ls14_c03038{letter-spacing:-0.705408pt;}
.ls16_c03038{letter-spacing:-0.654720pt;}
.ls7_c03038{letter-spacing:-0.544896pt;}
.ls9_c03038{letter-spacing:-0.511104pt;}
.lsc_c03038{letter-spacing:-0.291456pt;}
.ls10_c03038{letter-spacing:-0.244992pt;}
.ls17_c03038{letter-spacing:-0.240768pt;}
.lse_c03038{letter-spacing:-0.232320pt;}
.ls6_c03038{letter-spacing:-0.215424pt;}
.ls4_c03038{letter-spacing:-0.105600pt;}
.ls13_c03038{letter-spacing:0.000000pt;}
.ls1_c03038{letter-spacing:0.005376pt;}
.ls5_c03038{letter-spacing:0.114048pt;}
.lsd_c03038{letter-spacing:0.147840pt;}
.lsb_c03038{letter-spacing:0.451968pt;}
.ls12_c03038{letter-spacing:0.456960pt;}
.lsf_c03038{letter-spacing:0.477312pt;}
.lsa_c03038{letter-spacing:0.515328pt;}
.ls11_c03038{letter-spacing:0.528000pt;}
.ls8_c03038{letter-spacing:0.532224pt;}
.ls2_c03038{letter-spacing:0.544896pt;}
.ls15_c03038{letter-spacing:0.578688pt;}
.ls3_c03038{letter-spacing:0.637824pt;}
.ls0_c03038{letter-spacing:0.642048pt;}
.wsd_c03038{word-spacing:-13.445376pt;}
.wsb_c03038{word-spacing:-11.088000pt;}
.wse_c03038{word-spacing:-11.075328pt;}
.wsa_c03038{word-spacing:-11.037312pt;}
.ws4_c03038{word-spacing:-10.344576pt;}
.ws2_c03038{word-spacing:-10.015104pt;}
.ws14_c03038{word-spacing:-0.963072pt;}
.ws1a_c03038{word-spacing:-0.899712pt;}
.ws11_c03038{word-spacing:-0.865920pt;}
.ws18_c03038{word-spacing:-0.639744pt;}
.ws13_c03038{word-spacing:-0.105600pt;}
.ws16_c03038{word-spacing:-0.088704pt;}
.ws1b_c03038{word-spacing:-0.080256pt;}
.ws17_c03038{word-spacing:-0.076032pt;}
.ws15_c03038{word-spacing:-0.029568pt;}
.ws12_c03038{word-spacing:0.000000pt;}
.ws19_c03038{word-spacing:0.384384pt;}
.ws10_c03038{word-spacing:5.892480pt;}
.ws9_c03038{word-spacing:18.264576pt;}
.wsc_c03038{word-spacing:29.600256pt;}
.wsf_c03038{word-spacing:30.966144pt;}
.ws8_c03038{word-spacing:32.127744pt;}
.ws6_c03038{word-spacing:32.659968pt;}
.ws1_c03038{word-spacing:33.563904pt;}
.ws0_c03038{word-spacing:33.796224pt;}
.ws3_c03038{word-spacing:34.860672pt;}
.ws5_c03038{word-spacing:35.468928pt;}
.ws7_c03038{word-spacing:37.357056pt;}
._0_c03038{margin-left:-1.731840pt;}
._2_c03038{width:1.317888pt;}
._4_c03038{width:2.935680pt;}
._9_c03038{width:17.761920pt;}
._a_c03038{width:20.845440pt;}
._8_c03038{width:21.947904pt;}
._5_c03038{width:30.535296pt;}
._6_c03038{width:31.836288pt;}
._7_c03038{width:33.534336pt;}
._1_c03038{width:44.668800pt;}
._3_c03038{width:45.805056pt;}
.fs0_c03038{font-size:42.240000pt;}
.fs1_c03038{font-size:53.760000pt;}
.y0_c03038{bottom:0.000000pt;}
.y1b_c03038{bottom:117.225499pt;}
.y1a_c03038{bottom:130.665211pt;}
.y1d_c03038{bottom:165.866875pt;}
.y1c_c03038{bottom:174.507067pt;}
.y19_c03038{bottom:245.225371pt;}
.y18_c03038{bottom:317.225563pt;}
.y16_c03038{bottom:361.386427pt;}
.y12_c03038{bottom:377.386939pt;}
.y17_c03038{bottom:407.786011pt;}
.y15_c03038{bottom:437.226235pt;}
.y14_c03038{bottom:453.226747pt;}
.y11_c03038{bottom:482.666971pt;}
.y13_c03038{bottom:497.386555pt;}
.y10_c03038{bottom:513.387067pt;}
.y1e_c03038{bottom:546.027067pt;}
.yc_c03038{bottom:593.386235pt;}
.ye_c03038{bottom:628.586875pt;}
.yd_c03038{bottom:637.227067pt;}
.yb_c03038{bottom:707.946395pt;}
.ya_c03038{bottom:766.505819pt;}
.y9_c03038{bottom:779.945531pt;}
.y7_c03038{bottom:823.786427pt;}
.y3_c03038{bottom:839.786939pt;}
.y8_c03038{bottom:870.505979pt;}
.y6_c03038{bottom:899.946203pt;}
.y5_c03038{bottom:915.946715pt;}
.y2_c03038{bottom:945.386939pt;}
.y4_c03038{bottom:959.786555pt;}
.y1_c03038{bottom:975.787067pt;}
.yf_c03038{bottom:1008.747067pt;}
.h3_c03038{height:28.916250pt;}
.h1_c03038{height:37.063125pt;}
.h2_c03038{height:37.166250pt;}
.h4_c03038{height:48.581988pt;}
.h0_c03038{height:1122.666667pt;}
.w1_c03038{width:793.333333pt;}
.w0_c03038{width:793.626667pt;}
.x0_c03038{left:0.000000pt;}
.xe_c03038{left:104.000000pt;}
.x8_c03038{left:391.999872pt;}
.x4_c03038{left:396.160512pt;}
.xc_c03038{left:400.960000pt;}
.x7_c03038{left:404.799648pt;}
.x5_c03038{left:410.560128pt;}
.x1_c03038{left:411.840000pt;}
.xb_c03038{left:429.761376pt;}
.x9_c03038{left:437.440608pt;}
.x6_c03038{left:438.400512pt;}
.xd_c03038{left:450.560320pt;}
.x3_c03038{left:455.039904pt;}
.x2_c03038{left:468.159648pt;}
.xa_c03038{left:506.561088pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03039 {
    display:none;
  }
  .loading-indicator_c03039.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03039 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03039 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03039" -> "#page-container .classname_c03039")
 */
.pf_c03039 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03039 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03039 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03039 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03039 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03039 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03039 {overflow:visible;}
  }
}
.c_c03039 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03039 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03039:after { /* webkit #35443 */
  content: '';
}
.t_c03039:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03039 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03039 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03039 { /* info for Javascript */
  display:none;
}
.l_c03039 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03039 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03039 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03039:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03039 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03039.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03039 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03039;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03039{font-family:ff1_c03039;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03039;src:url('chunks/assets/font_c92f8ff9a5e9568e4e428590.woff2')format("woff");}.ff2_c03039{font-family:ff2_c03039;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03039;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03039{font-family:ff3_c03039;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03039{vertical-align:0.000000px;}
.v1_c03039{vertical-align:1.439424px;}
.v2_c03039{vertical-align:33.121440px;}
.lsd_c03039{letter-spacing:-0.793584px;}
.ls8_c03039{letter-spacing:-0.613008px;}
.lsa_c03039{letter-spacing:-0.574992px;}
.ls15_c03039{letter-spacing:-0.337392px;}
.ls10_c03039{letter-spacing:-0.275616px;}
.lse_c03039{letter-spacing:-0.261360px;}
.ls7_c03039{letter-spacing:-0.242352px;}
.ls5_c03039{letter-spacing:-0.118800px;}
.ls13_c03039{letter-spacing:0.000000px;}
.ls1_c03039{letter-spacing:0.006048px;}
.ls6_c03039{letter-spacing:0.128304px;}
.ls14_c03039{letter-spacing:0.242352px;}
.lsc_c03039{letter-spacing:0.508464px;}
.ls12_c03039{letter-spacing:0.514080px;}
.lsf_c03039{letter-spacing:0.536976px;}
.lsb_c03039{letter-spacing:0.579744px;}
.ls11_c03039{letter-spacing:0.594000px;}
.ls9_c03039{letter-spacing:0.598752px;}
.ls4_c03039{letter-spacing:0.613008px;}
.ls2_c03039{letter-spacing:0.651024px;}
.ls0_c03039{letter-spacing:0.717552px;}
.ls3_c03039{letter-spacing:0.722304px;}
.sc__c03039{text-shadow:none;}
.sc0_c03039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03039{-webkit-text-stroke:0px transparent;}
.sc0_c03039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03039{word-spacing:-15.126048px;}
.wsa_c03039{word-spacing:-12.474000px;}
.ws6_c03039{word-spacing:-12.459744px;}
.ws9_c03039{word-spacing:-12.416976px;}
.ws4_c03039{word-spacing:-11.637648px;}
.ws2_c03039{word-spacing:-11.266992px;}
.ws16_c03039{word-spacing:-1.083456px;}
.ws12_c03039{word-spacing:-1.078704px;}
.ws14_c03039{word-spacing:-1.012176px;}
.wsf_c03039{word-spacing:-0.974160px;}
.ws18_c03039{word-spacing:-0.719712px;}
.ws11_c03039{word-spacing:-0.118800px;}
.ws15_c03039{word-spacing:-0.099792px;}
.ws17_c03039{word-spacing:-0.085536px;}
.ws19_c03039{word-spacing:-0.023760px;}
.ws10_c03039{word-spacing:0.000000px;}
.ws13_c03039{word-spacing:0.432432px;}
.wse_c03039{word-spacing:30.298752px;}
.wsb_c03039{word-spacing:33.300288px;}
.ws8_c03039{word-spacing:36.143712px;}
.wsd_c03039{word-spacing:36.742464px;}
.ws1_c03039{word-spacing:37.759392px;}
.ws0_c03039{word-spacing:38.020752px;}
.ws3_c03039{word-spacing:39.218256px;}
.ws5_c03039{word-spacing:39.902544px;}
.ws7_c03039{word-spacing:42.026688px;}
._0_c03039{margin-left:-1.948320px;}
._2_c03039{width:1.482624px;}
._4_c03039{width:3.302640px;}
._1_c03039{width:50.252400px;}
._3_c03039{width:51.530688px;}
.fc0_c03039{color:rgb(0,0,0);}
.fs0_c03039{font-size:47.520000px;}
.fs1_c03039{font-size:60.480000px;}
.y0_c03039{bottom:0.000000px;}
.y19_c03039{bottom:146.998362px;}
.y1b_c03039{bottom:186.600234px;}
.y1a_c03039{bottom:196.320450px;}
.y18_c03039{bottom:275.878542px;}
.y17_c03039{bottom:356.878758px;}
.y15_c03039{bottom:406.559730px;}
.y11_c03039{bottom:424.560306px;}
.y16_c03039{bottom:458.759262px;}
.y14_c03039{bottom:491.879514px;}
.y13_c03039{bottom:509.880090px;}
.y10_c03039{bottom:543.000342px;}
.y12_c03039{bottom:559.559874px;}
.yf_c03039{bottom:577.560450px;}
.y1c_c03039{bottom:614.280450px;}
.yb_c03039{bottom:667.558326px;}
.yd_c03039{bottom:707.160234px;}
.yc_c03039{bottom:716.880450px;}
.ya_c03039{bottom:796.438506px;}
.y9_c03039{bottom:877.438722px;}
.y7_c03039{bottom:926.759730px;}
.y3_c03039{bottom:944.760306px;}
.y8_c03039{bottom:979.319226px;}
.y6_c03039{bottom:1012.439478px;}
.y5_c03039{bottom:1030.440054px;}
.y2_c03039{bottom:1063.560306px;}
.y4_c03039{bottom:1079.759874px;}
.y1_c03039{bottom:1097.760450px;}
.ye_c03039{bottom:1134.840450px;}
.h3_c03039{height:32.530781px;}
.h1_c03039{height:41.696016px;}
.h2_c03039{height:41.812031px;}
.h4_c03039{height:54.654737px;}
.h5_c03039{height:74.817456px;}
.h0_c03039{height:1263.000000px;}
.w1_c03039{width:892.500000px;}
.w0_c03039{width:892.830000px;}
.x0_c03039{left:0.000000px;}
.xd_c03039{left:117.000000px;}
.x8_c03039{left:440.999856px;}
.x4_c03039{left:445.680576px;}
.xb_c03039{left:451.080000px;}
.x7_c03039{left:455.399604px;}
.x5_c03039{left:461.880144px;}
.x1_c03039{left:463.320000px;}
.xa_c03039{left:483.480360px;}
.x9_c03039{left:492.119496px;}
.x6_c03039{left:493.200576px;}
.xc_c03039{left:506.880360px;}
.x3_c03039{left:511.919892px;}
.x2_c03039{left:526.679604px;}
@media print{
.v0_c03039{vertical-align:0.000000pt;}
.v1_c03039{vertical-align:1.279488pt;}
.v2_c03039{vertical-align:29.441280pt;}
.lsd_c03039{letter-spacing:-0.705408pt;}
.ls8_c03039{letter-spacing:-0.544896pt;}
.lsa_c03039{letter-spacing:-0.511104pt;}
.ls15_c03039{letter-spacing:-0.299904pt;}
.ls10_c03039{letter-spacing:-0.244992pt;}
.lse_c03039{letter-spacing:-0.232320pt;}
.ls7_c03039{letter-spacing:-0.215424pt;}
.ls5_c03039{letter-spacing:-0.105600pt;}
.ls13_c03039{letter-spacing:0.000000pt;}
.ls1_c03039{letter-spacing:0.005376pt;}
.ls6_c03039{letter-spacing:0.114048pt;}
.ls14_c03039{letter-spacing:0.215424pt;}
.lsc_c03039{letter-spacing:0.451968pt;}
.ls12_c03039{letter-spacing:0.456960pt;}
.lsf_c03039{letter-spacing:0.477312pt;}
.lsb_c03039{letter-spacing:0.515328pt;}
.ls11_c03039{letter-spacing:0.528000pt;}
.ls9_c03039{letter-spacing:0.532224pt;}
.ls4_c03039{letter-spacing:0.544896pt;}
.ls2_c03039{letter-spacing:0.578688pt;}
.ls0_c03039{letter-spacing:0.637824pt;}
.ls3_c03039{letter-spacing:0.642048pt;}
.wsc_c03039{word-spacing:-13.445376pt;}
.wsa_c03039{word-spacing:-11.088000pt;}
.ws6_c03039{word-spacing:-11.075328pt;}
.ws9_c03039{word-spacing:-11.037312pt;}
.ws4_c03039{word-spacing:-10.344576pt;}
.ws2_c03039{word-spacing:-10.015104pt;}
.ws16_c03039{word-spacing:-0.963072pt;}
.ws12_c03039{word-spacing:-0.958848pt;}
.ws14_c03039{word-spacing:-0.899712pt;}
.wsf_c03039{word-spacing:-0.865920pt;}
.ws18_c03039{word-spacing:-0.639744pt;}
.ws11_c03039{word-spacing:-0.105600pt;}
.ws15_c03039{word-spacing:-0.088704pt;}
.ws17_c03039{word-spacing:-0.076032pt;}
.ws19_c03039{word-spacing:-0.021120pt;}
.ws10_c03039{word-spacing:0.000000pt;}
.ws13_c03039{word-spacing:0.384384pt;}
.wse_c03039{word-spacing:26.932224pt;}
.wsb_c03039{word-spacing:29.600256pt;}
.ws8_c03039{word-spacing:32.127744pt;}
.wsd_c03039{word-spacing:32.659968pt;}
.ws1_c03039{word-spacing:33.563904pt;}
.ws0_c03039{word-spacing:33.796224pt;}
.ws3_c03039{word-spacing:34.860672pt;}
.ws5_c03039{word-spacing:35.468928pt;}
.ws7_c03039{word-spacing:37.357056pt;}
._0_c03039{margin-left:-1.731840pt;}
._2_c03039{width:1.317888pt;}
._4_c03039{width:2.935680pt;}
._1_c03039{width:44.668800pt;}
._3_c03039{width:45.805056pt;}
.fs0_c03039{font-size:42.240000pt;}
.fs1_c03039{font-size:53.760000pt;}
.y0_c03039{bottom:0.000000pt;}
.y19_c03039{bottom:130.665211pt;}
.y1b_c03039{bottom:165.866875pt;}
.y1a_c03039{bottom:174.507067pt;}
.y18_c03039{bottom:245.225371pt;}
.y17_c03039{bottom:317.225563pt;}
.y15_c03039{bottom:361.386427pt;}
.y11_c03039{bottom:377.386939pt;}
.y16_c03039{bottom:407.786011pt;}
.y14_c03039{bottom:437.226235pt;}
.y13_c03039{bottom:453.226747pt;}
.y10_c03039{bottom:482.666971pt;}
.y12_c03039{bottom:497.386555pt;}
.yf_c03039{bottom:513.387067pt;}
.y1c_c03039{bottom:546.027067pt;}
.yb_c03039{bottom:593.385179pt;}
.yd_c03039{bottom:628.586875pt;}
.yc_c03039{bottom:637.227067pt;}
.ya_c03039{bottom:707.945339pt;}
.y9_c03039{bottom:779.945531pt;}
.y7_c03039{bottom:823.786427pt;}
.y3_c03039{bottom:839.786939pt;}
.y8_c03039{bottom:870.505979pt;}
.y6_c03039{bottom:899.946203pt;}
.y5_c03039{bottom:915.946715pt;}
.y2_c03039{bottom:945.386939pt;}
.y4_c03039{bottom:959.786555pt;}
.y1_c03039{bottom:975.787067pt;}
.ye_c03039{bottom:1008.747067pt;}
.h3_c03039{height:28.916250pt;}
.h1_c03039{height:37.063125pt;}
.h2_c03039{height:37.166250pt;}
.h4_c03039{height:48.581988pt;}
.h5_c03039{height:66.504405pt;}
.h0_c03039{height:1122.666667pt;}
.w1_c03039{width:793.333333pt;}
.w0_c03039{width:793.626667pt;}
.x0_c03039{left:0.000000pt;}
.xd_c03039{left:104.000000pt;}
.x8_c03039{left:391.999872pt;}
.x4_c03039{left:396.160512pt;}
.xb_c03039{left:400.960000pt;}
.x7_c03039{left:404.799648pt;}
.x5_c03039{left:410.560128pt;}
.x1_c03039{left:411.840000pt;}
.xa_c03039{left:429.760320pt;}
.x9_c03039{left:437.439552pt;}
.x6_c03039{left:438.400512pt;}
.xc_c03039{left:450.560320pt;}
.x3_c03039{left:455.039904pt;}
.x2_c03039{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03040 {
    display:none;
  }
  .loading-indicator_c03040.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03040 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03040 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03040" -> "#page-container .classname_c03040")
 */
.pf_c03040 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03040 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03040.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03040 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03040 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03040 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03040 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03040 {overflow:visible;}
  }
}
.c_c03040 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03040 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03040:after { /* webkit #35443 */
  content: '';
}
.t_c03040:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03040 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03040 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03040 { /* info for Javascript */
  display:none;
}
.l_c03040 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03040 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03040 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03040:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03040 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03040.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03040.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03040 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03040;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03040{font-family:ff1_c03040;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03040;src:url('chunks/assets/font_3714f3b5eee161c8f81093ab.woff2')format("woff");}.ff2_c03040{font-family:ff2_c03040;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03040;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03040{font-family:ff3_c03040;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03040{vertical-align:0.000000px;}
.v2_c03040{vertical-align:1.439424px;}
.v1_c03040{vertical-align:33.121440px;}
.ls15_c03040{letter-spacing:-1.197504px;}
.ls8_c03040{letter-spacing:-0.613008px;}
.lsa_c03040{letter-spacing:-0.574992px;}
.ls12_c03040{letter-spacing:-0.337392px;}
.ls10_c03040{letter-spacing:-0.275616px;}
.lse_c03040{letter-spacing:-0.261360px;}
.ls7_c03040{letter-spacing:-0.242352px;}
.ls5_c03040{letter-spacing:-0.118800px;}
.ls14_c03040{letter-spacing:0.000000px;}
.ls2_c03040{letter-spacing:0.006048px;}
.ls6_c03040{letter-spacing:0.128304px;}
.lsd_c03040{letter-spacing:0.242352px;}
.lsc_c03040{letter-spacing:0.508464px;}
.ls13_c03040{letter-spacing:0.514080px;}
.lsf_c03040{letter-spacing:0.536976px;}
.lsb_c03040{letter-spacing:0.579744px;}
.ls11_c03040{letter-spacing:0.594000px;}
.ls9_c03040{letter-spacing:0.598752px;}
.ls3_c03040{letter-spacing:0.613008px;}
.ls0_c03040{letter-spacing:0.651024px;}
.ls4_c03040{letter-spacing:0.717552px;}
.ls1_c03040{letter-spacing:0.722304px;}
.sc__c03040{text-shadow:none;}
.sc0_c03040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03040{-webkit-text-stroke:0px transparent;}
.sc0_c03040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03040{word-spacing:-15.126048px;}
.wsf_c03040{word-spacing:-12.474000px;}
.ws8_c03040{word-spacing:-12.459744px;}
.ws9_c03040{word-spacing:-12.416976px;}
.ws4_c03040{word-spacing:-11.637648px;}
.ws2_c03040{word-spacing:-11.266992px;}
.ws14_c03040{word-spacing:-1.083456px;}
.ws12_c03040{word-spacing:-1.012176px;}
.ws10_c03040{word-spacing:-0.974160px;}
.ws18_c03040{word-spacing:-0.719712px;}
.ws13_c03040{word-spacing:-0.118800px;}
.ws15_c03040{word-spacing:-0.099792px;}
.ws16_c03040{word-spacing:-0.085536px;}
.ws17_c03040{word-spacing:-0.023760px;}
.ws11_c03040{word-spacing:0.000000px;}
.ws19_c03040{word-spacing:0.836352px;}
.wsd_c03040{word-spacing:2.071872px;}
.wsa_c03040{word-spacing:30.298752px;}
.wsb_c03040{word-spacing:33.300288px;}
.wse_c03040{word-spacing:36.143712px;}
.ws6_c03040{word-spacing:36.742464px;}
.ws1_c03040{word-spacing:37.759392px;}
.ws0_c03040{word-spacing:38.020752px;}
.ws3_c03040{word-spacing:39.218256px;}
.ws5_c03040{word-spacing:39.902544px;}
.ws7_c03040{word-spacing:42.026688px;}
._0_c03040{margin-left:-1.948320px;}
._2_c03040{width:1.482624px;}
._4_c03040{width:3.302640px;}
._1_c03040{width:50.252400px;}
._3_c03040{width:51.530688px;}
.fc0_c03040{color:rgb(0,0,0);}
.fs0_c03040{font-size:47.520000px;}
.fs1_c03040{font-size:60.480000px;}
.y0_c03040{bottom:0.000000px;}
.y19_c03040{bottom:146.998362px;}
.y1b_c03040{bottom:186.600234px;}
.y1a_c03040{bottom:196.320450px;}
.y18_c03040{bottom:275.878542px;}
.y17_c03040{bottom:356.878758px;}
.y15_c03040{bottom:406.559730px;}
.y11_c03040{bottom:424.560306px;}
.y16_c03040{bottom:458.759262px;}
.y14_c03040{bottom:491.879514px;}
.y13_c03040{bottom:509.880090px;}
.y10_c03040{bottom:543.000342px;}
.y12_c03040{bottom:559.559874px;}
.yf_c03040{bottom:577.560450px;}
.y1c_c03040{bottom:614.280450px;}
.yb_c03040{bottom:667.558326px;}
.yd_c03040{bottom:707.160234px;}
.yc_c03040{bottom:716.880450px;}
.ya_c03040{bottom:796.438506px;}
.y9_c03040{bottom:877.438722px;}
.y7_c03040{bottom:926.759730px;}
.y3_c03040{bottom:944.760306px;}
.y8_c03040{bottom:979.319226px;}
.y6_c03040{bottom:1012.439478px;}
.y5_c03040{bottom:1030.440054px;}
.y2_c03040{bottom:1063.560306px;}
.y4_c03040{bottom:1079.759874px;}
.y1_c03040{bottom:1097.760450px;}
.ye_c03040{bottom:1134.840450px;}
.h3_c03040{height:32.530781px;}
.h1_c03040{height:41.696016px;}
.h2_c03040{height:41.812031px;}
.h5_c03040{height:54.654737px;}
.h4_c03040{height:74.817456px;}
.h0_c03040{height:1263.000000px;}
.w1_c03040{width:892.500000px;}
.w0_c03040{width:892.830000px;}
.x0_c03040{left:0.000000px;}
.xd_c03040{left:117.000000px;}
.x8_c03040{left:440.999856px;}
.x4_c03040{left:445.680576px;}
.xb_c03040{left:451.080000px;}
.x7_c03040{left:455.399604px;}
.x5_c03040{left:461.880144px;}
.x1_c03040{left:463.320000px;}
.xa_c03040{left:483.480360px;}
.x9_c03040{left:492.119496px;}
.x6_c03040{left:493.200576px;}
.xc_c03040{left:506.880360px;}
.x3_c03040{left:511.919892px;}
.x2_c03040{left:526.679604px;}
@media print{
.v0_c03040{vertical-align:0.000000pt;}
.v2_c03040{vertical-align:1.279488pt;}
.v1_c03040{vertical-align:29.441280pt;}
.ls15_c03040{letter-spacing:-1.064448pt;}
.ls8_c03040{letter-spacing:-0.544896pt;}
.lsa_c03040{letter-spacing:-0.511104pt;}
.ls12_c03040{letter-spacing:-0.299904pt;}
.ls10_c03040{letter-spacing:-0.244992pt;}
.lse_c03040{letter-spacing:-0.232320pt;}
.ls7_c03040{letter-spacing:-0.215424pt;}
.ls5_c03040{letter-spacing:-0.105600pt;}
.ls14_c03040{letter-spacing:0.000000pt;}
.ls2_c03040{letter-spacing:0.005376pt;}
.ls6_c03040{letter-spacing:0.114048pt;}
.lsd_c03040{letter-spacing:0.215424pt;}
.lsc_c03040{letter-spacing:0.451968pt;}
.ls13_c03040{letter-spacing:0.456960pt;}
.lsf_c03040{letter-spacing:0.477312pt;}
.lsb_c03040{letter-spacing:0.515328pt;}
.ls11_c03040{letter-spacing:0.528000pt;}
.ls9_c03040{letter-spacing:0.532224pt;}
.ls3_c03040{letter-spacing:0.544896pt;}
.ls0_c03040{letter-spacing:0.578688pt;}
.ls4_c03040{letter-spacing:0.637824pt;}
.ls1_c03040{letter-spacing:0.642048pt;}
.wsc_c03040{word-spacing:-13.445376pt;}
.wsf_c03040{word-spacing:-11.088000pt;}
.ws8_c03040{word-spacing:-11.075328pt;}
.ws9_c03040{word-spacing:-11.037312pt;}
.ws4_c03040{word-spacing:-10.344576pt;}
.ws2_c03040{word-spacing:-10.015104pt;}
.ws14_c03040{word-spacing:-0.963072pt;}
.ws12_c03040{word-spacing:-0.899712pt;}
.ws10_c03040{word-spacing:-0.865920pt;}
.ws18_c03040{word-spacing:-0.639744pt;}
.ws13_c03040{word-spacing:-0.105600pt;}
.ws15_c03040{word-spacing:-0.088704pt;}
.ws16_c03040{word-spacing:-0.076032pt;}
.ws17_c03040{word-spacing:-0.021120pt;}
.ws11_c03040{word-spacing:0.000000pt;}
.ws19_c03040{word-spacing:0.743424pt;}
.wsd_c03040{word-spacing:1.841664pt;}
.wsa_c03040{word-spacing:26.932224pt;}
.wsb_c03040{word-spacing:29.600256pt;}
.wse_c03040{word-spacing:32.127744pt;}
.ws6_c03040{word-spacing:32.659968pt;}
.ws1_c03040{word-spacing:33.563904pt;}
.ws0_c03040{word-spacing:33.796224pt;}
.ws3_c03040{word-spacing:34.860672pt;}
.ws5_c03040{word-spacing:35.468928pt;}
.ws7_c03040{word-spacing:37.357056pt;}
._0_c03040{margin-left:-1.731840pt;}
._2_c03040{width:1.317888pt;}
._4_c03040{width:2.935680pt;}
._1_c03040{width:44.668800pt;}
._3_c03040{width:45.805056pt;}
.fs0_c03040{font-size:42.240000pt;}
.fs1_c03040{font-size:53.760000pt;}
.y0_c03040{bottom:0.000000pt;}
.y19_c03040{bottom:130.665211pt;}
.y1b_c03040{bottom:165.866875pt;}
.y1a_c03040{bottom:174.507067pt;}
.y18_c03040{bottom:245.225371pt;}
.y17_c03040{bottom:317.225563pt;}
.y15_c03040{bottom:361.386427pt;}
.y11_c03040{bottom:377.386939pt;}
.y16_c03040{bottom:407.786011pt;}
.y14_c03040{bottom:437.226235pt;}
.y13_c03040{bottom:453.226747pt;}
.y10_c03040{bottom:482.666971pt;}
.y12_c03040{bottom:497.386555pt;}
.yf_c03040{bottom:513.387067pt;}
.y1c_c03040{bottom:546.027067pt;}
.yb_c03040{bottom:593.385179pt;}
.yd_c03040{bottom:628.586875pt;}
.yc_c03040{bottom:637.227067pt;}
.ya_c03040{bottom:707.945339pt;}
.y9_c03040{bottom:779.945531pt;}
.y7_c03040{bottom:823.786427pt;}
.y3_c03040{bottom:839.786939pt;}
.y8_c03040{bottom:870.505979pt;}
.y6_c03040{bottom:899.946203pt;}
.y5_c03040{bottom:915.946715pt;}
.y2_c03040{bottom:945.386939pt;}
.y4_c03040{bottom:959.786555pt;}
.y1_c03040{bottom:975.787067pt;}
.ye_c03040{bottom:1008.747067pt;}
.h3_c03040{height:28.916250pt;}
.h1_c03040{height:37.063125pt;}
.h2_c03040{height:37.166250pt;}
.h5_c03040{height:48.581988pt;}
.h4_c03040{height:66.504405pt;}
.h0_c03040{height:1122.666667pt;}
.w1_c03040{width:793.333333pt;}
.w0_c03040{width:793.626667pt;}
.x0_c03040{left:0.000000pt;}
.xd_c03040{left:104.000000pt;}
.x8_c03040{left:391.999872pt;}
.x4_c03040{left:396.160512pt;}
.xb_c03040{left:400.960000pt;}
.x7_c03040{left:404.799648pt;}
.x5_c03040{left:410.560128pt;}
.x1_c03040{left:411.840000pt;}
.xa_c03040{left:429.760320pt;}
.x9_c03040{left:437.439552pt;}
.x6_c03040{left:438.400512pt;}
.xc_c03040{left:450.560320pt;}
.x3_c03040{left:455.039904pt;}
.x2_c03040{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03041 {
    display:none;
  }
  .loading-indicator_c03041.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03041 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03041 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03041" -> "#page-container .classname_c03041")
 */
.pf_c03041 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03041 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03041.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03041 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03041 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03041 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03041 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03041 {overflow:visible;}
  }
}
.c_c03041 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03041 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03041:after { /* webkit #35443 */
  content: '';
}
.t_c03041:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03041 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03041 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03041 { /* info for Javascript */
  display:none;
}
.l_c03041 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03041 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03041 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03041:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03041 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03041.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03041.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03041 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03041{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03041;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03041{font-family:ff1_c03041;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03041;src:url('chunks/assets/font_df2389a99ca9a55044ef576f.woff2')format("woff");}.ff2_c03041{font-family:ff2_c03041;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03041;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03041{font-family:ff3_c03041;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03041{vertical-align:0.000000px;}
.v1_c03041{vertical-align:1.439424px;}
.ls15_c03041{letter-spacing:-1.197504px;}
.ls8_c03041{letter-spacing:-0.807840px;}
.ls13_c03041{letter-spacing:-0.679536px;}
.ls6_c03041{letter-spacing:-0.613008px;}
.ls9_c03041{letter-spacing:-0.574992px;}
.lsf_c03041{letter-spacing:-0.275616px;}
.lsd_c03041{letter-spacing:-0.261360px;}
.ls5_c03041{letter-spacing:-0.242352px;}
.ls3_c03041{letter-spacing:-0.118800px;}
.ls12_c03041{letter-spacing:0.000000px;}
.ls1_c03041{letter-spacing:0.006048px;}
.ls14_c03041{letter-spacing:0.009504px;}
.ls4_c03041{letter-spacing:0.128304px;}
.lsb_c03041{letter-spacing:0.508464px;}
.ls11_c03041{letter-spacing:0.514080px;}
.lse_c03041{letter-spacing:0.536976px;}
.lsa_c03041{letter-spacing:0.579744px;}
.ls10_c03041{letter-spacing:0.594000px;}
.ls7_c03041{letter-spacing:0.598752px;}
.ls2_c03041{letter-spacing:0.613008px;}
.ls0_c03041{letter-spacing:0.717552px;}
.lsc_c03041{letter-spacing:0.722304px;}
.sc__c03041{text-shadow:none;}
.sc0_c03041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03041{-webkit-text-stroke:0px transparent;}
.sc0_c03041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c03041{word-spacing:-15.126048px;}
.ws8_c03041{word-spacing:-12.474000px;}
.ws5_c03041{word-spacing:-12.459744px;}
.ws7_c03041{word-spacing:-12.416976px;}
.ws2_c03041{word-spacing:-11.266992px;}
.wsb_c03041{word-spacing:-11.200464px;}
.ws12_c03041{word-spacing:-1.083456px;}
.ws11_c03041{word-spacing:-1.078704px;}
.wsd_c03041{word-spacing:-0.974160px;}
.ws15_c03041{word-spacing:-0.719712px;}
.ws16_c03041{word-spacing:-0.370656px;}
.wsf_c03041{word-spacing:-0.118800px;}
.ws13_c03041{word-spacing:-0.099792px;}
.ws14_c03041{word-spacing:-0.085536px;}
.wse_c03041{word-spacing:0.000000px;}
.ws10_c03041{word-spacing:0.446688px;}
.ws17_c03041{word-spacing:0.836352px;}
.ws9_c03041{word-spacing:33.300288px;}
.wsc_c03041{word-spacing:36.742464px;}
.ws1_c03041{word-spacing:37.759392px;}
.ws0_c03041{word-spacing:38.020752px;}
.ws3_c03041{word-spacing:39.218256px;}
.ws4_c03041{word-spacing:39.902544px;}
.ws6_c03041{word-spacing:42.026688px;}
._0_c03041{margin-left:-1.948320px;}
._2_c03041{width:1.482624px;}
._4_c03041{width:3.739824px;}
._5_c03041{width:5.882976px;}
._1_c03041{width:50.252400px;}
._3_c03041{width:51.530688px;}
.fc0_c03041{color:rgb(0,0,0);}
.fs0_c03041{font-size:47.520000px;}
.fs1_c03041{font-size:60.480000px;}
.y0_c03041{bottom:0.000000px;}
.y19_c03041{bottom:146.998362px;}
.y1b_c03041{bottom:186.600234px;}
.y1a_c03041{bottom:196.320450px;}
.y18_c03041{bottom:275.878542px;}
.y17_c03041{bottom:356.878758px;}
.y15_c03041{bottom:406.559730px;}
.y11_c03041{bottom:424.560306px;}
.y16_c03041{bottom:458.759262px;}
.y14_c03041{bottom:491.879514px;}
.y13_c03041{bottom:509.880090px;}
.y10_c03041{bottom:543.000342px;}
.y12_c03041{bottom:559.559874px;}
.yf_c03041{bottom:577.560450px;}
.y1c_c03041{bottom:614.280450px;}
.yb_c03041{bottom:667.558326px;}
.yd_c03041{bottom:707.160234px;}
.yc_c03041{bottom:716.880450px;}
.ya_c03041{bottom:796.438506px;}
.y9_c03041{bottom:877.438722px;}
.y7_c03041{bottom:926.759730px;}
.y3_c03041{bottom:944.760306px;}
.y8_c03041{bottom:979.319226px;}
.y6_c03041{bottom:1012.439478px;}
.y5_c03041{bottom:1030.440054px;}
.y2_c03041{bottom:1063.560306px;}
.y4_c03041{bottom:1079.759874px;}
.y1_c03041{bottom:1097.760450px;}
.ye_c03041{bottom:1134.840450px;}
.h3_c03041{height:32.530781px;}
.h1_c03041{height:41.696016px;}
.h2_c03041{height:41.812031px;}
.h4_c03041{height:54.654737px;}
.h0_c03041{height:1263.000000px;}
.w1_c03041{width:892.500000px;}
.w0_c03041{width:892.830000px;}
.x0_c03041{left:0.000000px;}
.xd_c03041{left:117.000000px;}
.x8_c03041{left:440.999856px;}
.x4_c03041{left:445.680576px;}
.xb_c03041{left:451.080000px;}
.x7_c03041{left:455.399604px;}
.x5_c03041{left:461.880144px;}
.x1_c03041{left:463.320000px;}
.xa_c03041{left:483.480360px;}
.x9_c03041{left:492.119496px;}
.x6_c03041{left:493.200576px;}
.xc_c03041{left:506.880360px;}
.x3_c03041{left:511.919892px;}
.x2_c03041{left:526.679604px;}
@media print{
.v0_c03041{vertical-align:0.000000pt;}
.v1_c03041{vertical-align:1.279488pt;}
.ls15_c03041{letter-spacing:-1.064448pt;}
.ls8_c03041{letter-spacing:-0.718080pt;}
.ls13_c03041{letter-spacing:-0.604032pt;}
.ls6_c03041{letter-spacing:-0.544896pt;}
.ls9_c03041{letter-spacing:-0.511104pt;}
.lsf_c03041{letter-spacing:-0.244992pt;}
.lsd_c03041{letter-spacing:-0.232320pt;}
.ls5_c03041{letter-spacing:-0.215424pt;}
.ls3_c03041{letter-spacing:-0.105600pt;}
.ls12_c03041{letter-spacing:0.000000pt;}
.ls1_c03041{letter-spacing:0.005376pt;}
.ls14_c03041{letter-spacing:0.008448pt;}
.ls4_c03041{letter-spacing:0.114048pt;}
.lsb_c03041{letter-spacing:0.451968pt;}
.ls11_c03041{letter-spacing:0.456960pt;}
.lse_c03041{letter-spacing:0.477312pt;}
.lsa_c03041{letter-spacing:0.515328pt;}
.ls10_c03041{letter-spacing:0.528000pt;}
.ls7_c03041{letter-spacing:0.532224pt;}
.ls2_c03041{letter-spacing:0.544896pt;}
.ls0_c03041{letter-spacing:0.637824pt;}
.lsc_c03041{letter-spacing:0.642048pt;}
.wsa_c03041{word-spacing:-13.445376pt;}
.ws8_c03041{word-spacing:-11.088000pt;}
.ws5_c03041{word-spacing:-11.075328pt;}
.ws7_c03041{word-spacing:-11.037312pt;}
.ws2_c03041{word-spacing:-10.015104pt;}
.wsb_c03041{word-spacing:-9.955968pt;}
.ws12_c03041{word-spacing:-0.963072pt;}
.ws11_c03041{word-spacing:-0.958848pt;}
.wsd_c03041{word-spacing:-0.865920pt;}
.ws15_c03041{word-spacing:-0.639744pt;}
.ws16_c03041{word-spacing:-0.329472pt;}
.wsf_c03041{word-spacing:-0.105600pt;}
.ws13_c03041{word-spacing:-0.088704pt;}
.ws14_c03041{word-spacing:-0.076032pt;}
.wse_c03041{word-spacing:0.000000pt;}
.ws10_c03041{word-spacing:0.397056pt;}
.ws17_c03041{word-spacing:0.743424pt;}
.ws9_c03041{word-spacing:29.600256pt;}
.wsc_c03041{word-spacing:32.659968pt;}
.ws1_c03041{word-spacing:33.563904pt;}
.ws0_c03041{word-spacing:33.796224pt;}
.ws3_c03041{word-spacing:34.860672pt;}
.ws4_c03041{word-spacing:35.468928pt;}
.ws6_c03041{word-spacing:37.357056pt;}
._0_c03041{margin-left:-1.731840pt;}
._2_c03041{width:1.317888pt;}
._4_c03041{width:3.324288pt;}
._5_c03041{width:5.229312pt;}
._1_c03041{width:44.668800pt;}
._3_c03041{width:45.805056pt;}
.fs0_c03041{font-size:42.240000pt;}
.fs1_c03041{font-size:53.760000pt;}
.y0_c03041{bottom:0.000000pt;}
.y19_c03041{bottom:130.665211pt;}
.y1b_c03041{bottom:165.866875pt;}
.y1a_c03041{bottom:174.507067pt;}
.y18_c03041{bottom:245.225371pt;}
.y17_c03041{bottom:317.225563pt;}
.y15_c03041{bottom:361.386427pt;}
.y11_c03041{bottom:377.386939pt;}
.y16_c03041{bottom:407.786011pt;}
.y14_c03041{bottom:437.226235pt;}
.y13_c03041{bottom:453.226747pt;}
.y10_c03041{bottom:482.666971pt;}
.y12_c03041{bottom:497.386555pt;}
.yf_c03041{bottom:513.387067pt;}
.y1c_c03041{bottom:546.027067pt;}
.yb_c03041{bottom:593.385179pt;}
.yd_c03041{bottom:628.586875pt;}
.yc_c03041{bottom:637.227067pt;}
.ya_c03041{bottom:707.945339pt;}
.y9_c03041{bottom:779.945531pt;}
.y7_c03041{bottom:823.786427pt;}
.y3_c03041{bottom:839.786939pt;}
.y8_c03041{bottom:870.505979pt;}
.y6_c03041{bottom:899.946203pt;}
.y5_c03041{bottom:915.946715pt;}
.y2_c03041{bottom:945.386939pt;}
.y4_c03041{bottom:959.786555pt;}
.y1_c03041{bottom:975.787067pt;}
.ye_c03041{bottom:1008.747067pt;}
.h3_c03041{height:28.916250pt;}
.h1_c03041{height:37.063125pt;}
.h2_c03041{height:37.166250pt;}
.h4_c03041{height:48.581988pt;}
.h0_c03041{height:1122.666667pt;}
.w1_c03041{width:793.333333pt;}
.w0_c03041{width:793.626667pt;}
.x0_c03041{left:0.000000pt;}
.xd_c03041{left:104.000000pt;}
.x8_c03041{left:391.999872pt;}
.x4_c03041{left:396.160512pt;}
.xb_c03041{left:400.960000pt;}
.x7_c03041{left:404.799648pt;}
.x5_c03041{left:410.560128pt;}
.x1_c03041{left:411.840000pt;}
.xa_c03041{left:429.760320pt;}
.x9_c03041{left:437.439552pt;}
.x6_c03041{left:438.400512pt;}
.xc_c03041{left:450.560320pt;}
.x3_c03041{left:455.039904pt;}
.x2_c03041{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03042 {
    display:none;
  }
  .loading-indicator_c03042.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03042 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03042 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03042" -> "#page-container .classname_c03042")
 */
.pf_c03042 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03042 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03042.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03042 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03042 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03042 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03042 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03042 {overflow:visible;}
  }
}
.c_c03042 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03042 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03042:after { /* webkit #35443 */
  content: '';
}
.t_c03042:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03042 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03042 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03042 { /* info for Javascript */
  display:none;
}
.l_c03042 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03042 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03042 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03042:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03042 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03042.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03042.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03042 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03042;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03042{font-family:ff1_c03042;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03042;src:url('chunks/assets/font_9d736a0ac559e6f259ed31d7.woff2')format("woff");}.ff2_c03042{font-family:ff2_c03042;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03042;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03042{font-family:ff3_c03042;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03042{vertical-align:0.000000px;}
.v1_c03042{vertical-align:1.439424px;}
.v2_c03042{vertical-align:33.121440px;}
.lsc_c03042{letter-spacing:-1.197504px;}
.ls7_c03042{letter-spacing:-0.613008px;}
.ls9_c03042{letter-spacing:-0.574992px;}
.lsf_c03042{letter-spacing:-0.275616px;}
.lsd_c03042{letter-spacing:-0.261360px;}
.ls6_c03042{letter-spacing:-0.242352px;}
.ls4_c03042{letter-spacing:-0.118800px;}
.ls13_c03042{letter-spacing:-0.061776px;}
.ls12_c03042{letter-spacing:0.000000px;}
.ls1_c03042{letter-spacing:0.006048px;}
.ls5_c03042{letter-spacing:0.128304px;}
.lsb_c03042{letter-spacing:0.508464px;}
.ls11_c03042{letter-spacing:0.514080px;}
.lse_c03042{letter-spacing:0.536976px;}
.lsa_c03042{letter-spacing:0.579744px;}
.ls10_c03042{letter-spacing:0.594000px;}
.ls8_c03042{letter-spacing:0.598752px;}
.ls2_c03042{letter-spacing:0.613008px;}
.ls3_c03042{letter-spacing:0.717552px;}
.ls0_c03042{letter-spacing:0.722304px;}
.sc__c03042{text-shadow:none;}
.sc0_c03042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03042{-webkit-text-stroke:0px transparent;}
.sc0_c03042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03042{word-spacing:-15.126048px;}
.wsa_c03042{word-spacing:-12.474000px;}
.ws8_c03042{word-spacing:-12.459744px;}
.ws9_c03042{word-spacing:-12.416976px;}
.wsd_c03042{word-spacing:-11.637648px;}
.ws2_c03042{word-spacing:-11.266992px;}
.ws13_c03042{word-spacing:-1.083456px;}
.ws10_c03042{word-spacing:-0.974160px;}
.ws17_c03042{word-spacing:-0.719712px;}
.ws18_c03042{word-spacing:-0.299376px;}
.ws12_c03042{word-spacing:-0.118800px;}
.ws15_c03042{word-spacing:-0.099792px;}
.ws16_c03042{word-spacing:-0.085536px;}
.ws11_c03042{word-spacing:0.000000px;}
.ws14_c03042{word-spacing:0.836352px;}
.ws4_c03042{word-spacing:4.951584px;}
.wsf_c03042{word-spacing:30.298752px;}
.wsb_c03042{word-spacing:33.300288px;}
.wse_c03042{word-spacing:34.836912px;}
.ws6_c03042{word-spacing:36.742464px;}
.ws1_c03042{word-spacing:37.759392px;}
.ws0_c03042{word-spacing:38.020752px;}
.ws3_c03042{word-spacing:39.218256px;}
.ws5_c03042{word-spacing:39.902544px;}
.ws7_c03042{word-spacing:42.026688px;}
._0_c03042{margin-left:-1.948320px;}
._2_c03042{width:1.482624px;}
._4_c03042{width:2.770416px;}
._1_c03042{width:50.252400px;}
._3_c03042{width:51.530688px;}
.fc0_c03042{color:rgb(0,0,0);}
.fs0_c03042{font-size:47.520000px;}
.fs1_c03042{font-size:60.480000px;}
.y0_c03042{bottom:0.000000px;}
.y19_c03042{bottom:146.998362px;}
.y1b_c03042{bottom:186.600234px;}
.y1a_c03042{bottom:196.320450px;}
.y18_c03042{bottom:275.878542px;}
.y17_c03042{bottom:356.878758px;}
.y15_c03042{bottom:406.559730px;}
.y11_c03042{bottom:424.560306px;}
.y16_c03042{bottom:458.759262px;}
.y14_c03042{bottom:491.879514px;}
.y13_c03042{bottom:509.880090px;}
.y10_c03042{bottom:543.000342px;}
.y12_c03042{bottom:559.559874px;}
.yf_c03042{bottom:577.560450px;}
.y1c_c03042{bottom:614.280450px;}
.yb_c03042{bottom:667.558326px;}
.yd_c03042{bottom:707.160234px;}
.yc_c03042{bottom:716.880450px;}
.ya_c03042{bottom:796.438506px;}
.y9_c03042{bottom:877.438722px;}
.y7_c03042{bottom:926.759730px;}
.y3_c03042{bottom:944.760306px;}
.y8_c03042{bottom:979.319226px;}
.y6_c03042{bottom:1012.439478px;}
.y5_c03042{bottom:1030.440054px;}
.y2_c03042{bottom:1063.560306px;}
.y4_c03042{bottom:1079.759874px;}
.y1_c03042{bottom:1097.760450px;}
.ye_c03042{bottom:1134.840450px;}
.h3_c03042{height:32.530781px;}
.h1_c03042{height:41.696016px;}
.h2_c03042{height:41.812031px;}
.h4_c03042{height:54.654737px;}
.h5_c03042{height:74.817456px;}
.h0_c03042{height:1263.000000px;}
.w1_c03042{width:892.500000px;}
.w0_c03042{width:892.830000px;}
.x0_c03042{left:0.000000px;}
.xd_c03042{left:117.000000px;}
.x8_c03042{left:440.999856px;}
.x4_c03042{left:445.680576px;}
.xb_c03042{left:451.080000px;}
.x7_c03042{left:455.399604px;}
.x5_c03042{left:461.880144px;}
.x1_c03042{left:463.320000px;}
.xa_c03042{left:483.480360px;}
.x9_c03042{left:492.119496px;}
.x6_c03042{left:493.200576px;}
.xc_c03042{left:506.880360px;}
.x3_c03042{left:511.919892px;}
.x2_c03042{left:526.679604px;}
@media print{
.v0_c03042{vertical-align:0.000000pt;}
.v1_c03042{vertical-align:1.279488pt;}
.v2_c03042{vertical-align:29.441280pt;}
.lsc_c03042{letter-spacing:-1.064448pt;}
.ls7_c03042{letter-spacing:-0.544896pt;}
.ls9_c03042{letter-spacing:-0.511104pt;}
.lsf_c03042{letter-spacing:-0.244992pt;}
.lsd_c03042{letter-spacing:-0.232320pt;}
.ls6_c03042{letter-spacing:-0.215424pt;}
.ls4_c03042{letter-spacing:-0.105600pt;}
.ls13_c03042{letter-spacing:-0.054912pt;}
.ls12_c03042{letter-spacing:0.000000pt;}
.ls1_c03042{letter-spacing:0.005376pt;}
.ls5_c03042{letter-spacing:0.114048pt;}
.lsb_c03042{letter-spacing:0.451968pt;}
.ls11_c03042{letter-spacing:0.456960pt;}
.lse_c03042{letter-spacing:0.477312pt;}
.lsa_c03042{letter-spacing:0.515328pt;}
.ls10_c03042{letter-spacing:0.528000pt;}
.ls8_c03042{letter-spacing:0.532224pt;}
.ls2_c03042{letter-spacing:0.544896pt;}
.ls3_c03042{letter-spacing:0.637824pt;}
.ls0_c03042{letter-spacing:0.642048pt;}
.wsc_c03042{word-spacing:-13.445376pt;}
.wsa_c03042{word-spacing:-11.088000pt;}
.ws8_c03042{word-spacing:-11.075328pt;}
.ws9_c03042{word-spacing:-11.037312pt;}
.wsd_c03042{word-spacing:-10.344576pt;}
.ws2_c03042{word-spacing:-10.015104pt;}
.ws13_c03042{word-spacing:-0.963072pt;}
.ws10_c03042{word-spacing:-0.865920pt;}
.ws17_c03042{word-spacing:-0.639744pt;}
.ws18_c03042{word-spacing:-0.266112pt;}
.ws12_c03042{word-spacing:-0.105600pt;}
.ws15_c03042{word-spacing:-0.088704pt;}
.ws16_c03042{word-spacing:-0.076032pt;}
.ws11_c03042{word-spacing:0.000000pt;}
.ws14_c03042{word-spacing:0.743424pt;}
.ws4_c03042{word-spacing:4.401408pt;}
.wsf_c03042{word-spacing:26.932224pt;}
.wsb_c03042{word-spacing:29.600256pt;}
.wse_c03042{word-spacing:30.966144pt;}
.ws6_c03042{word-spacing:32.659968pt;}
.ws1_c03042{word-spacing:33.563904pt;}
.ws0_c03042{word-spacing:33.796224pt;}
.ws3_c03042{word-spacing:34.860672pt;}
.ws5_c03042{word-spacing:35.468928pt;}
.ws7_c03042{word-spacing:37.357056pt;}
._0_c03042{margin-left:-1.731840pt;}
._2_c03042{width:1.317888pt;}
._4_c03042{width:2.462592pt;}
._1_c03042{width:44.668800pt;}
._3_c03042{width:45.805056pt;}
.fs0_c03042{font-size:42.240000pt;}
.fs1_c03042{font-size:53.760000pt;}
.y0_c03042{bottom:0.000000pt;}
.y19_c03042{bottom:130.665211pt;}
.y1b_c03042{bottom:165.866875pt;}
.y1a_c03042{bottom:174.507067pt;}
.y18_c03042{bottom:245.225371pt;}
.y17_c03042{bottom:317.225563pt;}
.y15_c03042{bottom:361.386427pt;}
.y11_c03042{bottom:377.386939pt;}
.y16_c03042{bottom:407.786011pt;}
.y14_c03042{bottom:437.226235pt;}
.y13_c03042{bottom:453.226747pt;}
.y10_c03042{bottom:482.666971pt;}
.y12_c03042{bottom:497.386555pt;}
.yf_c03042{bottom:513.387067pt;}
.y1c_c03042{bottom:546.027067pt;}
.yb_c03042{bottom:593.385179pt;}
.yd_c03042{bottom:628.586875pt;}
.yc_c03042{bottom:637.227067pt;}
.ya_c03042{bottom:707.945339pt;}
.y9_c03042{bottom:779.945531pt;}
.y7_c03042{bottom:823.786427pt;}
.y3_c03042{bottom:839.786939pt;}
.y8_c03042{bottom:870.505979pt;}
.y6_c03042{bottom:899.946203pt;}
.y5_c03042{bottom:915.946715pt;}
.y2_c03042{bottom:945.386939pt;}
.y4_c03042{bottom:959.786555pt;}
.y1_c03042{bottom:975.787067pt;}
.ye_c03042{bottom:1008.747067pt;}
.h3_c03042{height:28.916250pt;}
.h1_c03042{height:37.063125pt;}
.h2_c03042{height:37.166250pt;}
.h4_c03042{height:48.581988pt;}
.h5_c03042{height:66.504405pt;}
.h0_c03042{height:1122.666667pt;}
.w1_c03042{width:793.333333pt;}
.w0_c03042{width:793.626667pt;}
.x0_c03042{left:0.000000pt;}
.xd_c03042{left:104.000000pt;}
.x8_c03042{left:391.999872pt;}
.x4_c03042{left:396.160512pt;}
.xb_c03042{left:400.960000pt;}
.x7_c03042{left:404.799648pt;}
.x5_c03042{left:410.560128pt;}
.x1_c03042{left:411.840000pt;}
.xa_c03042{left:429.760320pt;}
.x9_c03042{left:437.439552pt;}
.x6_c03042{left:438.400512pt;}
.xc_c03042{left:450.560320pt;}
.x3_c03042{left:455.039904pt;}
.x2_c03042{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03043 {
    display:none;
  }
  .loading-indicator_c03043.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03043 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03043 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03043" -> "#page-container .classname_c03043")
 */
.pf_c03043 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03043 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03043.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03043 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03043 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03043 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03043 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03043 {overflow:visible;}
  }
}
.c_c03043 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03043 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03043:after { /* webkit #35443 */
  content: '';
}
.t_c03043:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03043 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03043 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03043 { /* info for Javascript */
  display:none;
}
.l_c03043 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03043 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03043 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03043:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03043 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03043.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03043.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03043 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03043{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03043;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03043{font-family:ff1_c03043;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03043;src:url('chunks/assets/font_1206eb7317fd71511485e718.woff2')format("woff");}.ff2_c03043{font-family:ff2_c03043;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03043;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03043{font-family:ff3_c03043;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03043{vertical-align:0.000000px;}
.v1_c03043{vertical-align:1.439424px;}
.lsc_c03043{letter-spacing:-0.793584px;}
.ls14_c03043{letter-spacing:-0.760320px;}
.ls7_c03043{letter-spacing:-0.613008px;}
.ls9_c03043{letter-spacing:-0.574992px;}
.lsf_c03043{letter-spacing:-0.275616px;}
.ls15_c03043{letter-spacing:-0.270864px;}
.lsd_c03043{letter-spacing:-0.261360px;}
.ls6_c03043{letter-spacing:-0.242352px;}
.ls4_c03043{letter-spacing:-0.118800px;}
.ls12_c03043{letter-spacing:0.000000px;}
.ls1_c03043{letter-spacing:0.006048px;}
.ls5_c03043{letter-spacing:0.128304px;}
.lsb_c03043{letter-spacing:0.508464px;}
.ls11_c03043{letter-spacing:0.514080px;}
.lse_c03043{letter-spacing:0.536976px;}
.lsa_c03043{letter-spacing:0.579744px;}
.ls10_c03043{letter-spacing:0.594000px;}
.ls8_c03043{letter-spacing:0.598752px;}
.ls3_c03043{letter-spacing:0.613008px;}
.ls13_c03043{letter-spacing:0.651024px;}
.ls2_c03043{letter-spacing:0.717552px;}
.ls0_c03043{letter-spacing:0.722304px;}
.sc__c03043{text-shadow:none;}
.sc0_c03043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03043{-webkit-text-stroke:0px transparent;}
.sc0_c03043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03043{word-spacing:-15.126048px;}
.wsa_c03043{word-spacing:-12.474000px;}
.ws6_c03043{word-spacing:-12.459744px;}
.ws4_c03043{word-spacing:-11.637648px;}
.ws2_c03043{word-spacing:-11.266992px;}
.ws11_c03043{word-spacing:-1.083456px;}
.ws16_c03043{word-spacing:-1.078704px;}
.ws17_c03043{word-spacing:-1.012176px;}
.wse_c03043{word-spacing:-0.974160px;}
.ws15_c03043{word-spacing:-0.719712px;}
.ws10_c03043{word-spacing:-0.118800px;}
.ws13_c03043{word-spacing:-0.099792px;}
.ws18_c03043{word-spacing:-0.090288px;}
.ws14_c03043{word-spacing:-0.085536px;}
.wsf_c03043{word-spacing:0.000000px;}
.ws12_c03043{word-spacing:0.432432px;}
.wsb_c03043{word-spacing:33.300288px;}
.ws9_c03043{word-spacing:34.836912px;}
.ws8_c03043{word-spacing:36.143712px;}
.ws1_c03043{word-spacing:37.759392px;}
.ws0_c03043{word-spacing:38.020752px;}
.ws3_c03043{word-spacing:39.218256px;}
.wsd_c03043{word-spacing:39.322800px;}
.ws5_c03043{word-spacing:39.902544px;}
.ws7_c03043{word-spacing:42.026688px;}
._0_c03043{margin-left:-1.948320px;}
._2_c03043{width:1.482624px;}
._4_c03043{width:3.302640px;}
._1_c03043{width:50.252400px;}
._3_c03043{width:51.530688px;}
._5_c03043{width:55.612656px;}
._6_c03043{width:56.952720px;}
.fc0_c03043{color:rgb(0,0,0);}
.fs0_c03043{font-size:47.520000px;}
.fs1_c03043{font-size:60.480000px;}
.y0_c03043{bottom:0.000000px;}
.y1a_c03043{bottom:131.878686px;}
.y19_c03043{bottom:146.998362px;}
.y1c_c03043{bottom:186.600234px;}
.y1b_c03043{bottom:196.320450px;}
.y18_c03043{bottom:275.878542px;}
.y17_c03043{bottom:356.878758px;}
.y15_c03043{bottom:406.559730px;}
.y11_c03043{bottom:424.560306px;}
.y16_c03043{bottom:458.759262px;}
.y14_c03043{bottom:491.879514px;}
.y13_c03043{bottom:509.880090px;}
.y10_c03043{bottom:543.000342px;}
.y12_c03043{bottom:559.559874px;}
.yf_c03043{bottom:577.560450px;}
.y1d_c03043{bottom:614.280450px;}
.yb_c03043{bottom:667.558326px;}
.yd_c03043{bottom:707.160234px;}
.yc_c03043{bottom:716.880450px;}
.ya_c03043{bottom:796.438506px;}
.y9_c03043{bottom:877.438722px;}
.y7_c03043{bottom:926.759730px;}
.y3_c03043{bottom:944.760306px;}
.y8_c03043{bottom:979.319226px;}
.y6_c03043{bottom:1012.439478px;}
.y5_c03043{bottom:1030.440054px;}
.y2_c03043{bottom:1063.560306px;}
.y4_c03043{bottom:1079.759874px;}
.y1_c03043{bottom:1097.760450px;}
.ye_c03043{bottom:1134.840450px;}
.h3_c03043{height:32.530781px;}
.h1_c03043{height:41.696016px;}
.h2_c03043{height:41.812031px;}
.h4_c03043{height:54.654737px;}
.h0_c03043{height:1263.000000px;}
.w1_c03043{width:892.500000px;}
.w0_c03043{width:892.830000px;}
.x0_c03043{left:0.000000px;}
.xd_c03043{left:117.000000px;}
.x8_c03043{left:440.999856px;}
.x4_c03043{left:445.680576px;}
.xb_c03043{left:451.080000px;}
.x7_c03043{left:455.399604px;}
.x5_c03043{left:461.880144px;}
.x1_c03043{left:463.320000px;}
.xa_c03043{left:483.480360px;}
.x9_c03043{left:492.119496px;}
.x6_c03043{left:493.200576px;}
.xc_c03043{left:506.880360px;}
.x3_c03043{left:511.919892px;}
.x2_c03043{left:526.679604px;}
.xe_c03043{left:569.880036px;}
@media print{
.v0_c03043{vertical-align:0.000000pt;}
.v1_c03043{vertical-align:1.279488pt;}
.lsc_c03043{letter-spacing:-0.705408pt;}
.ls14_c03043{letter-spacing:-0.675840pt;}
.ls7_c03043{letter-spacing:-0.544896pt;}
.ls9_c03043{letter-spacing:-0.511104pt;}
.lsf_c03043{letter-spacing:-0.244992pt;}
.ls15_c03043{letter-spacing:-0.240768pt;}
.lsd_c03043{letter-spacing:-0.232320pt;}
.ls6_c03043{letter-spacing:-0.215424pt;}
.ls4_c03043{letter-spacing:-0.105600pt;}
.ls12_c03043{letter-spacing:0.000000pt;}
.ls1_c03043{letter-spacing:0.005376pt;}
.ls5_c03043{letter-spacing:0.114048pt;}
.lsb_c03043{letter-spacing:0.451968pt;}
.ls11_c03043{letter-spacing:0.456960pt;}
.lse_c03043{letter-spacing:0.477312pt;}
.lsa_c03043{letter-spacing:0.515328pt;}
.ls10_c03043{letter-spacing:0.528000pt;}
.ls8_c03043{letter-spacing:0.532224pt;}
.ls3_c03043{letter-spacing:0.544896pt;}
.ls13_c03043{letter-spacing:0.578688pt;}
.ls2_c03043{letter-spacing:0.637824pt;}
.ls0_c03043{letter-spacing:0.642048pt;}
.wsc_c03043{word-spacing:-13.445376pt;}
.wsa_c03043{word-spacing:-11.088000pt;}
.ws6_c03043{word-spacing:-11.075328pt;}
.ws4_c03043{word-spacing:-10.344576pt;}
.ws2_c03043{word-spacing:-10.015104pt;}
.ws11_c03043{word-spacing:-0.963072pt;}
.ws16_c03043{word-spacing:-0.958848pt;}
.ws17_c03043{word-spacing:-0.899712pt;}
.wse_c03043{word-spacing:-0.865920pt;}
.ws15_c03043{word-spacing:-0.639744pt;}
.ws10_c03043{word-spacing:-0.105600pt;}
.ws13_c03043{word-spacing:-0.088704pt;}
.ws18_c03043{word-spacing:-0.080256pt;}
.ws14_c03043{word-spacing:-0.076032pt;}
.wsf_c03043{word-spacing:0.000000pt;}
.ws12_c03043{word-spacing:0.384384pt;}
.wsb_c03043{word-spacing:29.600256pt;}
.ws9_c03043{word-spacing:30.966144pt;}
.ws8_c03043{word-spacing:32.127744pt;}
.ws1_c03043{word-spacing:33.563904pt;}
.ws0_c03043{word-spacing:33.796224pt;}
.ws3_c03043{word-spacing:34.860672pt;}
.wsd_c03043{word-spacing:34.953600pt;}
.ws5_c03043{word-spacing:35.468928pt;}
.ws7_c03043{word-spacing:37.357056pt;}
._0_c03043{margin-left:-1.731840pt;}
._2_c03043{width:1.317888pt;}
._4_c03043{width:2.935680pt;}
._1_c03043{width:44.668800pt;}
._3_c03043{width:45.805056pt;}
._5_c03043{width:49.433472pt;}
._6_c03043{width:50.624640pt;}
.fs0_c03043{font-size:42.240000pt;}
.fs1_c03043{font-size:53.760000pt;}
.y0_c03043{bottom:0.000000pt;}
.y1a_c03043{bottom:117.225499pt;}
.y19_c03043{bottom:130.665211pt;}
.y1c_c03043{bottom:165.866875pt;}
.y1b_c03043{bottom:174.507067pt;}
.y18_c03043{bottom:245.225371pt;}
.y17_c03043{bottom:317.225563pt;}
.y15_c03043{bottom:361.386427pt;}
.y11_c03043{bottom:377.386939pt;}
.y16_c03043{bottom:407.786011pt;}
.y14_c03043{bottom:437.226235pt;}
.y13_c03043{bottom:453.226747pt;}
.y10_c03043{bottom:482.666971pt;}
.y12_c03043{bottom:497.386555pt;}
.yf_c03043{bottom:513.387067pt;}
.y1d_c03043{bottom:546.027067pt;}
.yb_c03043{bottom:593.385179pt;}
.yd_c03043{bottom:628.586875pt;}
.yc_c03043{bottom:637.227067pt;}
.ya_c03043{bottom:707.945339pt;}
.y9_c03043{bottom:779.945531pt;}
.y7_c03043{bottom:823.786427pt;}
.y3_c03043{bottom:839.786939pt;}
.y8_c03043{bottom:870.505979pt;}
.y6_c03043{bottom:899.946203pt;}
.y5_c03043{bottom:915.946715pt;}
.y2_c03043{bottom:945.386939pt;}
.y4_c03043{bottom:959.786555pt;}
.y1_c03043{bottom:975.787067pt;}
.ye_c03043{bottom:1008.747067pt;}
.h3_c03043{height:28.916250pt;}
.h1_c03043{height:37.063125pt;}
.h2_c03043{height:37.166250pt;}
.h4_c03043{height:48.581988pt;}
.h0_c03043{height:1122.666667pt;}
.w1_c03043{width:793.333333pt;}
.w0_c03043{width:793.626667pt;}
.x0_c03043{left:0.000000pt;}
.xd_c03043{left:104.000000pt;}
.x8_c03043{left:391.999872pt;}
.x4_c03043{left:396.160512pt;}
.xb_c03043{left:400.960000pt;}
.x7_c03043{left:404.799648pt;}
.x5_c03043{left:410.560128pt;}
.x1_c03043{left:411.840000pt;}
.xa_c03043{left:429.760320pt;}
.x9_c03043{left:437.439552pt;}
.x6_c03043{left:438.400512pt;}
.xc_c03043{left:450.560320pt;}
.x3_c03043{left:455.039904pt;}
.x2_c03043{left:468.159648pt;}
.xe_c03043{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03044 {
    display:none;
  }
  .loading-indicator_c03044.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03044 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03044 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03044" -> "#page-container .classname_c03044")
 */
.pf_c03044 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03044 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03044.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03044 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03044 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03044 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03044 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03044 {overflow:visible;}
  }
}
.c_c03044 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03044 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03044:after { /* webkit #35443 */
  content: '';
}
.t_c03044:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03044 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03044 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03044 { /* info for Javascript */
  display:none;
}
.l_c03044 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03044 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03044 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03044:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03044 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03044.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03044.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03044 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03044;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03044{font-family:ff1_c03044;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03044;src:url('chunks/assets/font_515ac3e9ac3c4a812bedb6e8.woff2')format("woff");}.ff2_c03044{font-family:ff2_c03044;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03044;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03044{font-family:ff3_c03044;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03044{vertical-align:0.000000px;}
.v2_c03044{vertical-align:1.439424px;}
.v1_c03044{vertical-align:33.121440px;}
.lsc_c03044{letter-spacing:-0.793584px;}
.ls14_c03044{letter-spacing:-0.684288px;}
.ls7_c03044{letter-spacing:-0.613008px;}
.ls9_c03044{letter-spacing:-0.574992px;}
.ls15_c03044{letter-spacing:-0.342144px;}
.ls10_c03044{letter-spacing:-0.275616px;}
.lse_c03044{letter-spacing:-0.261360px;}
.ls6_c03044{letter-spacing:-0.242352px;}
.ls4_c03044{letter-spacing:-0.118800px;}
.ls13_c03044{letter-spacing:0.000000px;}
.ls1_c03044{letter-spacing:0.006048px;}
.ls5_c03044{letter-spacing:0.128304px;}
.lsb_c03044{letter-spacing:0.508464px;}
.ls12_c03044{letter-spacing:0.514080px;}
.lsf_c03044{letter-spacing:0.536976px;}
.lsa_c03044{letter-spacing:0.579744px;}
.ls11_c03044{letter-spacing:0.594000px;}
.ls8_c03044{letter-spacing:0.598752px;}
.ls3_c03044{letter-spacing:0.613008px;}
.lsd_c03044{letter-spacing:0.651024px;}
.ls0_c03044{letter-spacing:0.717552px;}
.ls2_c03044{letter-spacing:0.722304px;}
.sc__c03044{text-shadow:none;}
.sc0_c03044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03044{-webkit-text-stroke:0px transparent;}
.sc0_c03044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03044{word-spacing:-15.126048px;}
.wsf_c03044{word-spacing:-12.474000px;}
.ws6_c03044{word-spacing:-12.459744px;}
.wse_c03044{word-spacing:-12.416976px;}
.ws4_c03044{word-spacing:-11.637648px;}
.ws2_c03044{word-spacing:-11.266992px;}
.ws17_c03044{word-spacing:-1.083456px;}
.ws13_c03044{word-spacing:-1.078704px;}
.ws15_c03044{word-spacing:-1.012176px;}
.ws10_c03044{word-spacing:-0.974160px;}
.ws19_c03044{word-spacing:-0.719712px;}
.ws12_c03044{word-spacing:-0.118800px;}
.ws16_c03044{word-spacing:-0.099792px;}
.ws18_c03044{word-spacing:-0.085536px;}
.ws1a_c03044{word-spacing:-0.019008px;}
.ws11_c03044{word-spacing:0.000000px;}
.ws14_c03044{word-spacing:0.432432px;}
.wsd_c03044{word-spacing:6.524496px;}
.wsa_c03044{word-spacing:30.298752px;}
.wsb_c03044{word-spacing:33.300288px;}
.ws9_c03044{word-spacing:34.836912px;}
.ws8_c03044{word-spacing:36.143712px;}
.ws1_c03044{word-spacing:37.759392px;}
.ws0_c03044{word-spacing:38.020752px;}
.ws3_c03044{word-spacing:39.218256px;}
.ws5_c03044{word-spacing:39.902544px;}
.ws7_c03044{word-spacing:42.026688px;}
._0_c03044{margin-left:-1.948320px;}
._2_c03044{width:1.482624px;}
._4_c03044{width:3.302640px;}
._5_c03044{width:20.466864px;}
._6_c03044{width:22.405680px;}
._1_c03044{width:50.252400px;}
._3_c03044{width:51.530688px;}
.fc0_c03044{color:rgb(0,0,0);}
.fs0_c03044{font-size:47.520000px;}
.fs1_c03044{font-size:60.480000px;}
.y0_c03044{bottom:0.000000px;}
.y1a_c03044{bottom:146.998362px;}
.y1c_c03044{bottom:186.600234px;}
.y1b_c03044{bottom:196.320450px;}
.y19_c03044{bottom:275.878542px;}
.y18_c03044{bottom:341.759082px;}
.y17_c03044{bottom:356.878758px;}
.y15_c03044{bottom:406.559730px;}
.y11_c03044{bottom:424.560306px;}
.y16_c03044{bottom:458.759262px;}
.y14_c03044{bottom:491.879514px;}
.y13_c03044{bottom:509.880090px;}
.y10_c03044{bottom:543.000342px;}
.y12_c03044{bottom:559.559874px;}
.yf_c03044{bottom:577.560450px;}
.y1d_c03044{bottom:614.280450px;}
.yb_c03044{bottom:667.558326px;}
.yd_c03044{bottom:707.160234px;}
.yc_c03044{bottom:716.880450px;}
.ya_c03044{bottom:796.438506px;}
.y9_c03044{bottom:877.438722px;}
.y7_c03044{bottom:926.759730px;}
.y3_c03044{bottom:944.760306px;}
.y8_c03044{bottom:979.319226px;}
.y6_c03044{bottom:1012.439478px;}
.y5_c03044{bottom:1030.440054px;}
.y2_c03044{bottom:1063.560306px;}
.y4_c03044{bottom:1079.759874px;}
.y1_c03044{bottom:1097.760450px;}
.ye_c03044{bottom:1134.840450px;}
.h3_c03044{height:32.530781px;}
.h1_c03044{height:41.696016px;}
.h2_c03044{height:41.812031px;}
.h5_c03044{height:54.654737px;}
.h4_c03044{height:74.817456px;}
.h0_c03044{height:1263.000000px;}
.w1_c03044{width:892.500000px;}
.w0_c03044{width:892.830000px;}
.x0_c03044{left:0.000000px;}
.xd_c03044{left:117.000000px;}
.x8_c03044{left:440.999856px;}
.x4_c03044{left:445.680576px;}
.xb_c03044{left:451.080000px;}
.x7_c03044{left:455.399604px;}
.x5_c03044{left:461.880144px;}
.x1_c03044{left:463.320000px;}
.xa_c03044{left:483.480360px;}
.x9_c03044{left:492.119496px;}
.x6_c03044{left:493.200576px;}
.xc_c03044{left:506.880360px;}
.x3_c03044{left:511.919892px;}
.x2_c03044{left:526.679604px;}
.xe_c03044{left:569.880036px;}
@media print{
.v0_c03044{vertical-align:0.000000pt;}
.v2_c03044{vertical-align:1.279488pt;}
.v1_c03044{vertical-align:29.441280pt;}
.lsc_c03044{letter-spacing:-0.705408pt;}
.ls14_c03044{letter-spacing:-0.608256pt;}
.ls7_c03044{letter-spacing:-0.544896pt;}
.ls9_c03044{letter-spacing:-0.511104pt;}
.ls15_c03044{letter-spacing:-0.304128pt;}
.ls10_c03044{letter-spacing:-0.244992pt;}
.lse_c03044{letter-spacing:-0.232320pt;}
.ls6_c03044{letter-spacing:-0.215424pt;}
.ls4_c03044{letter-spacing:-0.105600pt;}
.ls13_c03044{letter-spacing:0.000000pt;}
.ls1_c03044{letter-spacing:0.005376pt;}
.ls5_c03044{letter-spacing:0.114048pt;}
.lsb_c03044{letter-spacing:0.451968pt;}
.ls12_c03044{letter-spacing:0.456960pt;}
.lsf_c03044{letter-spacing:0.477312pt;}
.lsa_c03044{letter-spacing:0.515328pt;}
.ls11_c03044{letter-spacing:0.528000pt;}
.ls8_c03044{letter-spacing:0.532224pt;}
.ls3_c03044{letter-spacing:0.544896pt;}
.lsd_c03044{letter-spacing:0.578688pt;}
.ls0_c03044{letter-spacing:0.637824pt;}
.ls2_c03044{letter-spacing:0.642048pt;}
.wsc_c03044{word-spacing:-13.445376pt;}
.wsf_c03044{word-spacing:-11.088000pt;}
.ws6_c03044{word-spacing:-11.075328pt;}
.wse_c03044{word-spacing:-11.037312pt;}
.ws4_c03044{word-spacing:-10.344576pt;}
.ws2_c03044{word-spacing:-10.015104pt;}
.ws17_c03044{word-spacing:-0.963072pt;}
.ws13_c03044{word-spacing:-0.958848pt;}
.ws15_c03044{word-spacing:-0.899712pt;}
.ws10_c03044{word-spacing:-0.865920pt;}
.ws19_c03044{word-spacing:-0.639744pt;}
.ws12_c03044{word-spacing:-0.105600pt;}
.ws16_c03044{word-spacing:-0.088704pt;}
.ws18_c03044{word-spacing:-0.076032pt;}
.ws1a_c03044{word-spacing:-0.016896pt;}
.ws11_c03044{word-spacing:0.000000pt;}
.ws14_c03044{word-spacing:0.384384pt;}
.wsd_c03044{word-spacing:5.799552pt;}
.wsa_c03044{word-spacing:26.932224pt;}
.wsb_c03044{word-spacing:29.600256pt;}
.ws9_c03044{word-spacing:30.966144pt;}
.ws8_c03044{word-spacing:32.127744pt;}
.ws1_c03044{word-spacing:33.563904pt;}
.ws0_c03044{word-spacing:33.796224pt;}
.ws3_c03044{word-spacing:34.860672pt;}
.ws5_c03044{word-spacing:35.468928pt;}
.ws7_c03044{word-spacing:37.357056pt;}
._0_c03044{margin-left:-1.731840pt;}
._2_c03044{width:1.317888pt;}
._4_c03044{width:2.935680pt;}
._5_c03044{width:18.192768pt;}
._6_c03044{width:19.916160pt;}
._1_c03044{width:44.668800pt;}
._3_c03044{width:45.805056pt;}
.fs0_c03044{font-size:42.240000pt;}
.fs1_c03044{font-size:53.760000pt;}
.y0_c03044{bottom:0.000000pt;}
.y1a_c03044{bottom:130.665211pt;}
.y1c_c03044{bottom:165.866875pt;}
.y1b_c03044{bottom:174.507067pt;}
.y19_c03044{bottom:245.225371pt;}
.y18_c03044{bottom:303.785851pt;}
.y17_c03044{bottom:317.225563pt;}
.y15_c03044{bottom:361.386427pt;}
.y11_c03044{bottom:377.386939pt;}
.y16_c03044{bottom:407.786011pt;}
.y14_c03044{bottom:437.226235pt;}
.y13_c03044{bottom:453.226747pt;}
.y10_c03044{bottom:482.666971pt;}
.y12_c03044{bottom:497.386555pt;}
.yf_c03044{bottom:513.387067pt;}
.y1d_c03044{bottom:546.027067pt;}
.yb_c03044{bottom:593.385179pt;}
.yd_c03044{bottom:628.586875pt;}
.yc_c03044{bottom:637.227067pt;}
.ya_c03044{bottom:707.945339pt;}
.y9_c03044{bottom:779.945531pt;}
.y7_c03044{bottom:823.786427pt;}
.y3_c03044{bottom:839.786939pt;}
.y8_c03044{bottom:870.505979pt;}
.y6_c03044{bottom:899.946203pt;}
.y5_c03044{bottom:915.946715pt;}
.y2_c03044{bottom:945.386939pt;}
.y4_c03044{bottom:959.786555pt;}
.y1_c03044{bottom:975.787067pt;}
.ye_c03044{bottom:1008.747067pt;}
.h3_c03044{height:28.916250pt;}
.h1_c03044{height:37.063125pt;}
.h2_c03044{height:37.166250pt;}
.h5_c03044{height:48.581988pt;}
.h4_c03044{height:66.504405pt;}
.h0_c03044{height:1122.666667pt;}
.w1_c03044{width:793.333333pt;}
.w0_c03044{width:793.626667pt;}
.x0_c03044{left:0.000000pt;}
.xd_c03044{left:104.000000pt;}
.x8_c03044{left:391.999872pt;}
.x4_c03044{left:396.160512pt;}
.xb_c03044{left:400.960000pt;}
.x7_c03044{left:404.799648pt;}
.x5_c03044{left:410.560128pt;}
.x1_c03044{left:411.840000pt;}
.xa_c03044{left:429.760320pt;}
.x9_c03044{left:437.439552pt;}
.x6_c03044{left:438.400512pt;}
.xc_c03044{left:450.560320pt;}
.x3_c03044{left:455.039904pt;}
.x2_c03044{left:468.159648pt;}
.xe_c03044{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03045 {
    display:none;
  }
  .loading-indicator_c03045.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03045 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03045 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03045" -> "#page-container .classname_c03045")
 */
.pf_c03045 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03045 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03045.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03045 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03045 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03045 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03045 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03045 {overflow:visible;}
  }
}
.c_c03045 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03045 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03045:after { /* webkit #35443 */
  content: '';
}
.t_c03045:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03045 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03045 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03045 { /* info for Javascript */
  display:none;
}
.l_c03045 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03045 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03045 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03045:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03045 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03045.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03045.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03045 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03045{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03045;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03045{font-family:ff1_c03045;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03045;src:url('chunks/assets/font_1e414c8dd564d9b18a688258.woff2')format("woff");}.ff2_c03045{font-family:ff2_c03045;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03045;src:url('chunks/assets/font_51137f3de6db940440eabef7.woff2')format("woff");}.ff3_c03045{font-family:ff3_c03045;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03045{vertical-align:0.000000px;}
.v2_c03045{vertical-align:1.439424px;}
.v1_c03045{vertical-align:33.121440px;}
.lsd_c03045{letter-spacing:-0.793584px;}
.ls8_c03045{letter-spacing:-0.613008px;}
.lsa_c03045{letter-spacing:-0.574992px;}
.ls11_c03045{letter-spacing:-0.275616px;}
.ls10_c03045{letter-spacing:-0.266112px;}
.lse_c03045{letter-spacing:-0.261360px;}
.ls7_c03045{letter-spacing:-0.242352px;}
.ls5_c03045{letter-spacing:-0.118800px;}
.ls14_c03045{letter-spacing:0.000000px;}
.ls2_c03045{letter-spacing:0.006048px;}
.ls6_c03045{letter-spacing:0.128304px;}
.lsc_c03045{letter-spacing:0.508464px;}
.ls13_c03045{letter-spacing:0.514080px;}
.lsf_c03045{letter-spacing:0.536976px;}
.lsb_c03045{letter-spacing:0.579744px;}
.ls12_c03045{letter-spacing:0.594000px;}
.ls9_c03045{letter-spacing:0.598752px;}
.ls3_c03045{letter-spacing:0.613008px;}
.ls1_c03045{letter-spacing:0.698544px;}
.ls4_c03045{letter-spacing:0.717552px;}
.ls0_c03045{letter-spacing:0.722304px;}
.sc__c03045{text-shadow:none;}
.sc0_c03045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03045{-webkit-text-stroke:0px transparent;}
.sc0_c03045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03045{word-spacing:-15.126048px;}
.ws10_c03045{word-spacing:-12.474000px;}
.ws6_c03045{word-spacing:-12.459744px;}
.wsf_c03045{word-spacing:-12.416976px;}
.ws4_c03045{word-spacing:-11.637648px;}
.ws2_c03045{word-spacing:-11.266992px;}
.ws14_c03045{word-spacing:-1.083456px;}
.ws16_c03045{word-spacing:-1.059696px;}
.ws11_c03045{word-spacing:-0.974160px;}
.ws1a_c03045{word-spacing:-0.719712px;}
.ws13_c03045{word-spacing:-0.118800px;}
.ws17_c03045{word-spacing:-0.099792px;}
.ws18_c03045{word-spacing:-0.095040px;}
.ws19_c03045{word-spacing:-0.085536px;}
.ws12_c03045{word-spacing:0.000000px;}
.ws15_c03045{word-spacing:0.432432px;}
.wsa_c03045{word-spacing:18.124128px;}
.wsb_c03045{word-spacing:30.298752px;}
.wsc_c03045{word-spacing:33.300288px;}
.ws9_c03045{word-spacing:34.836912px;}
.ws8_c03045{word-spacing:36.143712px;}
.wse_c03045{word-spacing:36.742464px;}
.ws1_c03045{word-spacing:37.759392px;}
.ws0_c03045{word-spacing:38.020752px;}
.ws3_c03045{word-spacing:39.218256px;}
.ws5_c03045{word-spacing:39.902544px;}
.ws7_c03045{word-spacing:42.026688px;}
._0_c03045{margin-left:-1.948320px;}
._2_c03045{width:1.482624px;}
._4_c03045{width:3.302640px;}
._6_c03045{width:31.895424px;}
._5_c03045{width:36.590400px;}
._1_c03045{width:50.252400px;}
._3_c03045{width:51.530688px;}
.fc0_c03045{color:rgb(0,0,0);}
.fs0_c03045{font-size:47.520000px;}
.fs1_c03045{font-size:60.480000px;}
.y0_c03045{bottom:0.000000px;}
.y1a_c03045{bottom:146.998362px;}
.y1c_c03045{bottom:186.600234px;}
.y1b_c03045{bottom:196.320450px;}
.y19_c03045{bottom:275.878542px;}
.y18_c03045{bottom:356.878758px;}
.y16_c03045{bottom:406.559730px;}
.y12_c03045{bottom:424.560306px;}
.y17_c03045{bottom:458.759262px;}
.y15_c03045{bottom:491.879514px;}
.y14_c03045{bottom:509.880090px;}
.y11_c03045{bottom:543.000342px;}
.y13_c03045{bottom:559.559874px;}
.y10_c03045{bottom:577.560450px;}
.y1d_c03045{bottom:614.280450px;}
.yc_c03045{bottom:652.438650px;}
.yb_c03045{bottom:667.558326px;}
.ye_c03045{bottom:707.160234px;}
.yd_c03045{bottom:716.880450px;}
.ya_c03045{bottom:796.438506px;}
.y9_c03045{bottom:877.438722px;}
.y7_c03045{bottom:926.759730px;}
.y3_c03045{bottom:944.760306px;}
.y8_c03045{bottom:979.319226px;}
.y6_c03045{bottom:1012.439478px;}
.y5_c03045{bottom:1030.440054px;}
.y2_c03045{bottom:1063.560306px;}
.y4_c03045{bottom:1079.759874px;}
.y1_c03045{bottom:1097.760450px;}
.yf_c03045{bottom:1134.840450px;}
.h3_c03045{height:32.530781px;}
.h1_c03045{height:41.696016px;}
.h2_c03045{height:41.812031px;}
.h5_c03045{height:54.654737px;}
.h4_c03045{height:74.817456px;}
.h0_c03045{height:1263.000000px;}
.w1_c03045{width:892.500000px;}
.w0_c03045{width:892.830000px;}
.x0_c03045{left:0.000000px;}
.xe_c03045{left:117.000000px;}
.x8_c03045{left:440.999856px;}
.x4_c03045{left:445.680576px;}
.xc_c03045{left:451.080000px;}
.x7_c03045{left:455.399604px;}
.x5_c03045{left:461.880144px;}
.x1_c03045{left:463.320000px;}
.xa_c03045{left:483.480360px;}
.x9_c03045{left:492.119496px;}
.x6_c03045{left:493.200576px;}
.xd_c03045{left:506.880360px;}
.x3_c03045{left:511.919892px;}
.x2_c03045{left:526.679604px;}
.xb_c03045{left:569.880036px;}
@media print{
.v0_c03045{vertical-align:0.000000pt;}
.v2_c03045{vertical-align:1.279488pt;}
.v1_c03045{vertical-align:29.441280pt;}
.lsd_c03045{letter-spacing:-0.705408pt;}
.ls8_c03045{letter-spacing:-0.544896pt;}
.lsa_c03045{letter-spacing:-0.511104pt;}
.ls11_c03045{letter-spacing:-0.244992pt;}
.ls10_c03045{letter-spacing:-0.236544pt;}
.lse_c03045{letter-spacing:-0.232320pt;}
.ls7_c03045{letter-spacing:-0.215424pt;}
.ls5_c03045{letter-spacing:-0.105600pt;}
.ls14_c03045{letter-spacing:0.000000pt;}
.ls2_c03045{letter-spacing:0.005376pt;}
.ls6_c03045{letter-spacing:0.114048pt;}
.lsc_c03045{letter-spacing:0.451968pt;}
.ls13_c03045{letter-spacing:0.456960pt;}
.lsf_c03045{letter-spacing:0.477312pt;}
.lsb_c03045{letter-spacing:0.515328pt;}
.ls12_c03045{letter-spacing:0.528000pt;}
.ls9_c03045{letter-spacing:0.532224pt;}
.ls3_c03045{letter-spacing:0.544896pt;}
.ls1_c03045{letter-spacing:0.620928pt;}
.ls4_c03045{letter-spacing:0.637824pt;}
.ls0_c03045{letter-spacing:0.642048pt;}
.wsd_c03045{word-spacing:-13.445376pt;}
.ws10_c03045{word-spacing:-11.088000pt;}
.ws6_c03045{word-spacing:-11.075328pt;}
.wsf_c03045{word-spacing:-11.037312pt;}
.ws4_c03045{word-spacing:-10.344576pt;}
.ws2_c03045{word-spacing:-10.015104pt;}
.ws14_c03045{word-spacing:-0.963072pt;}
.ws16_c03045{word-spacing:-0.941952pt;}
.ws11_c03045{word-spacing:-0.865920pt;}
.ws1a_c03045{word-spacing:-0.639744pt;}
.ws13_c03045{word-spacing:-0.105600pt;}
.ws17_c03045{word-spacing:-0.088704pt;}
.ws18_c03045{word-spacing:-0.084480pt;}
.ws19_c03045{word-spacing:-0.076032pt;}
.ws12_c03045{word-spacing:0.000000pt;}
.ws15_c03045{word-spacing:0.384384pt;}
.wsa_c03045{word-spacing:16.110336pt;}
.wsb_c03045{word-spacing:26.932224pt;}
.wsc_c03045{word-spacing:29.600256pt;}
.ws9_c03045{word-spacing:30.966144pt;}
.ws8_c03045{word-spacing:32.127744pt;}
.wse_c03045{word-spacing:32.659968pt;}
.ws1_c03045{word-spacing:33.563904pt;}
.ws0_c03045{word-spacing:33.796224pt;}
.ws3_c03045{word-spacing:34.860672pt;}
.ws5_c03045{word-spacing:35.468928pt;}
.ws7_c03045{word-spacing:37.357056pt;}
._0_c03045{margin-left:-1.731840pt;}
._2_c03045{width:1.317888pt;}
._4_c03045{width:2.935680pt;}
._6_c03045{width:28.351488pt;}
._5_c03045{width:32.524800pt;}
._1_c03045{width:44.668800pt;}
._3_c03045{width:45.805056pt;}
.fs0_c03045{font-size:42.240000pt;}
.fs1_c03045{font-size:53.760000pt;}
.y0_c03045{bottom:0.000000pt;}
.y1a_c03045{bottom:130.665211pt;}
.y1c_c03045{bottom:165.866875pt;}
.y1b_c03045{bottom:174.507067pt;}
.y19_c03045{bottom:245.225371pt;}
.y18_c03045{bottom:317.225563pt;}
.y16_c03045{bottom:361.386427pt;}
.y12_c03045{bottom:377.386939pt;}
.y17_c03045{bottom:407.786011pt;}
.y15_c03045{bottom:437.226235pt;}
.y14_c03045{bottom:453.226747pt;}
.y11_c03045{bottom:482.666971pt;}
.y13_c03045{bottom:497.386555pt;}
.y10_c03045{bottom:513.387067pt;}
.y1d_c03045{bottom:546.027067pt;}
.yc_c03045{bottom:579.945467pt;}
.yb_c03045{bottom:593.385179pt;}
.ye_c03045{bottom:628.586875pt;}
.yd_c03045{bottom:637.227067pt;}
.ya_c03045{bottom:707.945339pt;}
.y9_c03045{bottom:779.945531pt;}
.y7_c03045{bottom:823.786427pt;}
.y3_c03045{bottom:839.786939pt;}
.y8_c03045{bottom:870.505979pt;}
.y6_c03045{bottom:899.946203pt;}
.y5_c03045{bottom:915.946715pt;}
.y2_c03045{bottom:945.386939pt;}
.y4_c03045{bottom:959.786555pt;}
.y1_c03045{bottom:975.787067pt;}
.yf_c03045{bottom:1008.747067pt;}
.h3_c03045{height:28.916250pt;}
.h1_c03045{height:37.063125pt;}
.h2_c03045{height:37.166250pt;}
.h5_c03045{height:48.581988pt;}
.h4_c03045{height:66.504405pt;}
.h0_c03045{height:1122.666667pt;}
.w1_c03045{width:793.333333pt;}
.w0_c03045{width:793.626667pt;}
.x0_c03045{left:0.000000pt;}
.xe_c03045{left:104.000000pt;}
.x8_c03045{left:391.999872pt;}
.x4_c03045{left:396.160512pt;}
.xc_c03045{left:400.960000pt;}
.x7_c03045{left:404.799648pt;}
.x5_c03045{left:410.560128pt;}
.x1_c03045{left:411.840000pt;}
.xa_c03045{left:429.760320pt;}
.x9_c03045{left:437.439552pt;}
.x6_c03045{left:438.400512pt;}
.xd_c03045{left:450.560320pt;}
.x3_c03045{left:455.039904pt;}
.x2_c03045{left:468.159648pt;}
.xb_c03045{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03046 {
    display:none;
  }
  .loading-indicator_c03046.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03046 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03046 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03046" -> "#page-container .classname_c03046")
 */
.pf_c03046 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03046 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03046 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03046 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03046 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03046 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03046 {overflow:visible;}
  }
}
.c_c03046 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03046 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03046:after { /* webkit #35443 */
  content: '';
}
.t_c03046:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03046 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03046 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03046 { /* info for Javascript */
  display:none;
}
.l_c03046 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03046 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03046 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03046:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03046 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03046.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03046 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03046;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03046{font-family:ff1_c03046;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03046;src:url('chunks/assets/font_04af51be2ec8923e02a0532c.woff2')format("woff");}.ff2_c03046{font-family:ff2_c03046;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03046;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03046{font-family:ff3_c03046;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c03046;src:url('chunks/assets/font_e0a8fe15b091639c4365293c.woff2')format("woff");}.ff4_c03046{font-family:ff4_c03046;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03046{vertical-align:0.000000px;}
.v2_c03046{vertical-align:1.439424px;}
.v1_c03046{vertical-align:12.964896px;}
.ls15_c03046{letter-spacing:-0.793584px;}
.ls14_c03046{letter-spacing:-0.774576px;}
.ls16_c03046{letter-spacing:-0.736560px;}
.lsd_c03046{letter-spacing:-0.718272px;}
.ls8_c03046{letter-spacing:-0.613008px;}
.lsa_c03046{letter-spacing:-0.574992px;}
.ls17_c03046{letter-spacing:-0.304128px;}
.ls11_c03046{letter-spacing:-0.275616px;}
.lsf_c03046{letter-spacing:-0.261360px;}
.ls7_c03046{letter-spacing:-0.242352px;}
.ls5_c03046{letter-spacing:-0.118800px;}
.lse_c03046{letter-spacing:0.000000px;}
.ls1_c03046{letter-spacing:0.006048px;}
.ls6_c03046{letter-spacing:0.128304px;}
.lsc_c03046{letter-spacing:0.508464px;}
.ls13_c03046{letter-spacing:0.514080px;}
.ls10_c03046{letter-spacing:0.536976px;}
.lsb_c03046{letter-spacing:0.579744px;}
.ls12_c03046{letter-spacing:0.594000px;}
.ls9_c03046{letter-spacing:0.598752px;}
.ls3_c03046{letter-spacing:0.613008px;}
.ls2_c03046{letter-spacing:0.651024px;}
.ls4_c03046{letter-spacing:0.717552px;}
.ls0_c03046{letter-spacing:0.722304px;}
.sc__c03046{text-shadow:none;}
.sc0_c03046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03046{-webkit-text-stroke:0px transparent;}
.sc0_c03046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c03046{word-spacing:-15.126048px;}
.wsd_c03046{word-spacing:-12.474000px;}
.wsb_c03046{word-spacing:-12.459744px;}
.wsc_c03046{word-spacing:-12.416976px;}
.ws4_c03046{word-spacing:-11.637648px;}
.ws2_c03046{word-spacing:-11.266992px;}
.ws10_c03046{word-spacing:-11.105424px;}
.ws17_c03046{word-spacing:-1.083456px;}
.ws1c_c03046{word-spacing:-1.012176px;}
.ws14_c03046{word-spacing:-0.974160px;}
.ws1b_c03046{word-spacing:-0.719712px;}
.ws16_c03046{word-spacing:-0.118800px;}
.ws19_c03046{word-spacing:-0.099792px;}
.ws1a_c03046{word-spacing:-0.085536px;}
.ws1e_c03046{word-spacing:-0.057024px;}
.ws15_c03046{word-spacing:0.000000px;}
.ws18_c03046{word-spacing:0.359136px;}
.ws1d_c03046{word-spacing:0.432432px;}
.ws13_c03046{word-spacing:6.629040px;}
.wse_c03046{word-spacing:33.300288px;}
.ws9_c03046{word-spacing:34.560576px;}
.ws12_c03046{word-spacing:34.836912px;}
.ws6_c03046{word-spacing:36.742464px;}
.ws1_c03046{word-spacing:37.759392px;}
.ws0_c03046{word-spacing:38.020752px;}
.ws3_c03046{word-spacing:39.218256px;}
.ws5_c03046{word-spacing:39.902544px;}
.ws7_c03046{word-spacing:42.026544px;}
.ws11_c03046{word-spacing:42.026688px;}
.ws8_c03046{word-spacing:58.330368px;}
.wsa_c03046{word-spacing:60.034176px;}
._0_c03046{margin-left:-1.948320px;}
._2_c03046{width:1.482624px;}
._4_c03046{width:3.302640px;}
._7_c03046{width:19.982160px;}
._8_c03046{width:23.451120px;}
._6_c03046{width:24.691392px;}
._1_c03046{width:50.252400px;}
._3_c03046{width:51.530688px;}
._5_c03046{width:69.067728px;}
.fc0_c03046{color:rgb(0,0,0);}
.fs1_c03046{font-size:41.760000px;}
.fs0_c03046{font-size:47.520000px;}
.fs2_c03046{font-size:60.480000px;}
.y0_c03046{bottom:0.000000px;}
.y1b_c03046{bottom:131.878686px;}
.y1a_c03046{bottom:146.998362px;}
.y1d_c03046{bottom:186.600234px;}
.y1c_c03046{bottom:196.320450px;}
.y19_c03046{bottom:275.878542px;}
.y18_c03046{bottom:356.878758px;}
.y16_c03046{bottom:406.559730px;}
.y12_c03046{bottom:424.560306px;}
.y17_c03046{bottom:458.759262px;}
.y15_c03046{bottom:491.879514px;}
.y14_c03046{bottom:509.880090px;}
.y11_c03046{bottom:543.000342px;}
.y13_c03046{bottom:559.559874px;}
.y10_c03046{bottom:577.560450px;}
.y1e_c03046{bottom:614.280450px;}
.yc_c03046{bottom:667.560054px;}
.ye_c03046{bottom:707.160234px;}
.yd_c03046{bottom:716.880450px;}
.yb_c03046{bottom:796.440234px;}
.ya_c03046{bottom:877.440450px;}
.y7_c03046{bottom:926.759730px;}
.y3_c03046{bottom:944.760306px;}
.y9_c03046{bottom:964.560846px;}
.y8_c03046{bottom:979.319226px;}
.y6_c03046{bottom:1012.439478px;}
.y5_c03046{bottom:1030.440054px;}
.y2_c03046{bottom:1063.560306px;}
.y4_c03046{bottom:1079.759874px;}
.y1_c03046{bottom:1097.760450px;}
.yf_c03046{bottom:1134.840450px;}
.h5_c03046{height:32.530781px;}
.h4_c03046{height:36.641953px;}
.h1_c03046{height:41.696016px;}
.h2_c03046{height:41.812031px;}
.h3_c03046{height:49.606849px;}
.h6_c03046{height:54.654737px;}
.h0_c03046{height:1263.000000px;}
.w1_c03046{width:892.500000px;}
.w0_c03046{width:892.830000px;}
.x0_c03046{left:0.000000px;}
.xe_c03046{left:117.000000px;}
.x8_c03046{left:440.999856px;}
.x4_c03046{left:445.680576px;}
.xc_c03046{left:451.080000px;}
.x7_c03046{left:455.399604px;}
.x5_c03046{left:461.880144px;}
.x1_c03046{left:463.320000px;}
.xb_c03046{left:483.480864px;}
.xa_c03046{left:492.120000px;}
.x6_c03046{left:493.200576px;}
.xd_c03046{left:506.880360px;}
.x3_c03046{left:511.919892px;}
.x2_c03046{left:526.679604px;}
.x9_c03046{left:569.880000px;}
@media print{
.v0_c03046{vertical-align:0.000000pt;}
.v2_c03046{vertical-align:1.279488pt;}
.v1_c03046{vertical-align:11.524352pt;}
.ls15_c03046{letter-spacing:-0.705408pt;}
.ls14_c03046{letter-spacing:-0.688512pt;}
.ls16_c03046{letter-spacing:-0.654720pt;}
.lsd_c03046{letter-spacing:-0.638464pt;}
.ls8_c03046{letter-spacing:-0.544896pt;}
.lsa_c03046{letter-spacing:-0.511104pt;}
.ls17_c03046{letter-spacing:-0.270336pt;}
.ls11_c03046{letter-spacing:-0.244992pt;}
.lsf_c03046{letter-spacing:-0.232320pt;}
.ls7_c03046{letter-spacing:-0.215424pt;}
.ls5_c03046{letter-spacing:-0.105600pt;}
.lse_c03046{letter-spacing:0.000000pt;}
.ls1_c03046{letter-spacing:0.005376pt;}
.ls6_c03046{letter-spacing:0.114048pt;}
.lsc_c03046{letter-spacing:0.451968pt;}
.ls13_c03046{letter-spacing:0.456960pt;}
.ls10_c03046{letter-spacing:0.477312pt;}
.lsb_c03046{letter-spacing:0.515328pt;}
.ls12_c03046{letter-spacing:0.528000pt;}
.ls9_c03046{letter-spacing:0.532224pt;}
.ls3_c03046{letter-spacing:0.544896pt;}
.ls2_c03046{letter-spacing:0.578688pt;}
.ls4_c03046{letter-spacing:0.637824pt;}
.ls0_c03046{letter-spacing:0.642048pt;}
.wsf_c03046{word-spacing:-13.445376pt;}
.wsd_c03046{word-spacing:-11.088000pt;}
.wsb_c03046{word-spacing:-11.075328pt;}
.wsc_c03046{word-spacing:-11.037312pt;}
.ws4_c03046{word-spacing:-10.344576pt;}
.ws2_c03046{word-spacing:-10.015104pt;}
.ws10_c03046{word-spacing:-9.871488pt;}
.ws17_c03046{word-spacing:-0.963072pt;}
.ws1c_c03046{word-spacing:-0.899712pt;}
.ws14_c03046{word-spacing:-0.865920pt;}
.ws1b_c03046{word-spacing:-0.639744pt;}
.ws16_c03046{word-spacing:-0.105600pt;}
.ws19_c03046{word-spacing:-0.088704pt;}
.ws1a_c03046{word-spacing:-0.076032pt;}
.ws1e_c03046{word-spacing:-0.050688pt;}
.ws15_c03046{word-spacing:0.000000pt;}
.ws18_c03046{word-spacing:0.319232pt;}
.ws1d_c03046{word-spacing:0.384384pt;}
.ws13_c03046{word-spacing:5.892480pt;}
.wse_c03046{word-spacing:29.600256pt;}
.ws9_c03046{word-spacing:30.720512pt;}
.ws12_c03046{word-spacing:30.966144pt;}
.ws6_c03046{word-spacing:32.659968pt;}
.ws1_c03046{word-spacing:33.563904pt;}
.ws0_c03046{word-spacing:33.796224pt;}
.ws3_c03046{word-spacing:34.860672pt;}
.ws5_c03046{word-spacing:35.468928pt;}
.ws7_c03046{word-spacing:37.356928pt;}
.ws11_c03046{word-spacing:37.357056pt;}
.ws8_c03046{word-spacing:51.849216pt;}
.wsa_c03046{word-spacing:53.363712pt;}
._0_c03046{margin-left:-1.731840pt;}
._2_c03046{width:1.317888pt;}
._4_c03046{width:2.935680pt;}
._7_c03046{width:17.761920pt;}
._8_c03046{width:20.845440pt;}
._6_c03046{width:21.947904pt;}
._1_c03046{width:44.668800pt;}
._3_c03046{width:45.805056pt;}
._5_c03046{width:61.393536pt;}
.fs1_c03046{font-size:37.120000pt;}
.fs0_c03046{font-size:42.240000pt;}
.fs2_c03046{font-size:53.760000pt;}
.y0_c03046{bottom:0.000000pt;}
.y1b_c03046{bottom:117.225499pt;}
.y1a_c03046{bottom:130.665211pt;}
.y1d_c03046{bottom:165.866875pt;}
.y1c_c03046{bottom:174.507067pt;}
.y19_c03046{bottom:245.225371pt;}
.y18_c03046{bottom:317.225563pt;}
.y16_c03046{bottom:361.386427pt;}
.y12_c03046{bottom:377.386939pt;}
.y17_c03046{bottom:407.786011pt;}
.y15_c03046{bottom:437.226235pt;}
.y14_c03046{bottom:453.226747pt;}
.y11_c03046{bottom:482.666971pt;}
.y13_c03046{bottom:497.386555pt;}
.y10_c03046{bottom:513.387067pt;}
.y1e_c03046{bottom:546.027067pt;}
.yc_c03046{bottom:593.386715pt;}
.ye_c03046{bottom:628.586875pt;}
.yd_c03046{bottom:637.227067pt;}
.yb_c03046{bottom:707.946875pt;}
.ya_c03046{bottom:779.947067pt;}
.y7_c03046{bottom:823.786427pt;}
.y3_c03046{bottom:839.786939pt;}
.y9_c03046{bottom:857.387419pt;}
.y8_c03046{bottom:870.505979pt;}
.y6_c03046{bottom:899.946203pt;}
.y5_c03046{bottom:915.946715pt;}
.y2_c03046{bottom:945.386939pt;}
.y4_c03046{bottom:959.786555pt;}
.y1_c03046{bottom:975.787067pt;}
.yf_c03046{bottom:1008.747067pt;}
.h5_c03046{height:28.916250pt;}
.h4_c03046{height:32.570625pt;}
.h1_c03046{height:37.063125pt;}
.h2_c03046{height:37.166250pt;}
.h3_c03046{height:44.094977pt;}
.h6_c03046{height:48.581988pt;}
.h0_c03046{height:1122.666667pt;}
.w1_c03046{width:793.333333pt;}
.w0_c03046{width:793.626667pt;}
.x0_c03046{left:0.000000pt;}
.xe_c03046{left:104.000000pt;}
.x8_c03046{left:391.999872pt;}
.x4_c03046{left:396.160512pt;}
.xc_c03046{left:400.960000pt;}
.x7_c03046{left:404.799648pt;}
.x5_c03046{left:410.560128pt;}
.x1_c03046{left:411.840000pt;}
.xb_c03046{left:429.760768pt;}
.xa_c03046{left:437.440000pt;}
.x6_c03046{left:438.400512pt;}
.xd_c03046{left:450.560320pt;}
.x3_c03046{left:455.039904pt;}
.x2_c03046{left:468.159648pt;}
.x9_c03046{left:506.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03047 {
    display:none;
  }
  .loading-indicator_c03047.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03047 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03047 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03047" -> "#page-container .classname_c03047")
 */
.pf_c03047 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03047 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03047.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03047 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03047 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03047 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03047 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03047 {overflow:visible;}
  }
}
.c_c03047 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03047 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03047:after { /* webkit #35443 */
  content: '';
}
.t_c03047:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03047 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03047 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03047 { /* info for Javascript */
  display:none;
}
.l_c03047 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03047 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03047 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03047:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03047 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03047.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03047.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03047 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03047{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03047;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03047{font-family:ff1_c03047;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03047;src:url('chunks/assets/font_8265bbcfc55559617ccaa282.woff2')format("woff");}.ff2_c03047{font-family:ff2_c03047;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03047;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03047{font-family:ff3_c03047;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03047{vertical-align:0.000000px;}
.v1_c03047{vertical-align:1.439424px;}
.ls15_c03047{letter-spacing:-1.197504px;}
.ls8_c03047{letter-spacing:-0.613008px;}
.lsa_c03047{letter-spacing:-0.574992px;}
.ls10_c03047{letter-spacing:-0.275616px;}
.lse_c03047{letter-spacing:-0.261360px;}
.ls7_c03047{letter-spacing:-0.242352px;}
.ls5_c03047{letter-spacing:-0.118800px;}
.ls13_c03047{letter-spacing:0.000000px;}
.ls2_c03047{letter-spacing:0.006048px;}
.ls14_c03047{letter-spacing:0.009504px;}
.ls6_c03047{letter-spacing:0.128304px;}
.lsd_c03047{letter-spacing:0.242352px;}
.lsc_c03047{letter-spacing:0.508464px;}
.ls12_c03047{letter-spacing:0.514080px;}
.lsf_c03047{letter-spacing:0.536976px;}
.lsb_c03047{letter-spacing:0.579744px;}
.ls11_c03047{letter-spacing:0.594000px;}
.ls9_c03047{letter-spacing:0.598752px;}
.ls3_c03047{letter-spacing:0.613008px;}
.ls0_c03047{letter-spacing:0.651024px;}
.ls4_c03047{letter-spacing:0.717552px;}
.ls1_c03047{letter-spacing:0.722304px;}
.sc__c03047{text-shadow:none;}
.sc0_c03047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03047{-webkit-text-stroke:0px transparent;}
.sc0_c03047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03047{word-spacing:-15.126048px;}
.wsa_c03047{word-spacing:-12.474000px;}
.ws8_c03047{word-spacing:-12.459744px;}
.wsd_c03047{word-spacing:-12.416976px;}
.ws4_c03047{word-spacing:-11.637648px;}
.ws2_c03047{word-spacing:-11.266992px;}
.ws12_c03047{word-spacing:-1.083456px;}
.ws10_c03047{word-spacing:-1.012176px;}
.wse_c03047{word-spacing:-0.974160px;}
.ws15_c03047{word-spacing:-0.719712px;}
.ws16_c03047{word-spacing:-0.370656px;}
.ws11_c03047{word-spacing:-0.118800px;}
.ws13_c03047{word-spacing:-0.099792px;}
.ws14_c03047{word-spacing:-0.085536px;}
.wsf_c03047{word-spacing:0.000000px;}
.ws17_c03047{word-spacing:0.836352px;}
.wsb_c03047{word-spacing:33.300288px;}
.ws9_c03047{word-spacing:34.836912px;}
.ws6_c03047{word-spacing:36.742464px;}
.ws1_c03047{word-spacing:37.759392px;}
.ws0_c03047{word-spacing:38.020752px;}
.ws3_c03047{word-spacing:39.218256px;}
.ws5_c03047{word-spacing:39.902544px;}
.ws7_c03047{word-spacing:42.026688px;}
._0_c03047{margin-left:-1.948320px;}
._2_c03047{width:1.482624px;}
._4_c03047{width:3.302640px;}
._1_c03047{width:50.252400px;}
._3_c03047{width:51.530688px;}
.fc0_c03047{color:rgb(0,0,0);}
.fs0_c03047{font-size:47.520000px;}
.fs1_c03047{font-size:60.480000px;}
.y0_c03047{bottom:0.000000px;}
.y19_c03047{bottom:146.998362px;}
.y1b_c03047{bottom:186.600234px;}
.y1a_c03047{bottom:196.320450px;}
.y18_c03047{bottom:275.878542px;}
.y17_c03047{bottom:356.878758px;}
.y15_c03047{bottom:406.559730px;}
.y11_c03047{bottom:424.560306px;}
.y16_c03047{bottom:458.759262px;}
.y14_c03047{bottom:491.879514px;}
.y13_c03047{bottom:509.880090px;}
.y10_c03047{bottom:543.000342px;}
.y12_c03047{bottom:559.559874px;}
.yf_c03047{bottom:577.560450px;}
.y1c_c03047{bottom:614.280450px;}
.yb_c03047{bottom:667.558326px;}
.yd_c03047{bottom:707.160234px;}
.yc_c03047{bottom:716.880450px;}
.ya_c03047{bottom:796.438506px;}
.y9_c03047{bottom:877.438722px;}
.y7_c03047{bottom:926.759730px;}
.y3_c03047{bottom:944.760306px;}
.y8_c03047{bottom:979.319226px;}
.y6_c03047{bottom:1012.439478px;}
.y5_c03047{bottom:1030.440054px;}
.y2_c03047{bottom:1063.560306px;}
.y4_c03047{bottom:1079.759874px;}
.y1_c03047{bottom:1097.760450px;}
.ye_c03047{bottom:1134.840450px;}
.h3_c03047{height:32.530781px;}
.h1_c03047{height:41.696016px;}
.h2_c03047{height:41.812031px;}
.h4_c03047{height:54.654737px;}
.h0_c03047{height:1263.000000px;}
.w1_c03047{width:892.500000px;}
.w0_c03047{width:892.830000px;}
.x0_c03047{left:0.000000px;}
.xd_c03047{left:117.000000px;}
.x8_c03047{left:440.999856px;}
.x4_c03047{left:445.680576px;}
.xb_c03047{left:451.080000px;}
.x7_c03047{left:455.399604px;}
.x5_c03047{left:461.880144px;}
.x1_c03047{left:463.320000px;}
.xa_c03047{left:483.480360px;}
.x9_c03047{left:492.119496px;}
.x6_c03047{left:493.200576px;}
.xc_c03047{left:506.880360px;}
.x3_c03047{left:511.919892px;}
.x2_c03047{left:526.679604px;}
@media print{
.v0_c03047{vertical-align:0.000000pt;}
.v1_c03047{vertical-align:1.279488pt;}
.ls15_c03047{letter-spacing:-1.064448pt;}
.ls8_c03047{letter-spacing:-0.544896pt;}
.lsa_c03047{letter-spacing:-0.511104pt;}
.ls10_c03047{letter-spacing:-0.244992pt;}
.lse_c03047{letter-spacing:-0.232320pt;}
.ls7_c03047{letter-spacing:-0.215424pt;}
.ls5_c03047{letter-spacing:-0.105600pt;}
.ls13_c03047{letter-spacing:0.000000pt;}
.ls2_c03047{letter-spacing:0.005376pt;}
.ls14_c03047{letter-spacing:0.008448pt;}
.ls6_c03047{letter-spacing:0.114048pt;}
.lsd_c03047{letter-spacing:0.215424pt;}
.lsc_c03047{letter-spacing:0.451968pt;}
.ls12_c03047{letter-spacing:0.456960pt;}
.lsf_c03047{letter-spacing:0.477312pt;}
.lsb_c03047{letter-spacing:0.515328pt;}
.ls11_c03047{letter-spacing:0.528000pt;}
.ls9_c03047{letter-spacing:0.532224pt;}
.ls3_c03047{letter-spacing:0.544896pt;}
.ls0_c03047{letter-spacing:0.578688pt;}
.ls4_c03047{letter-spacing:0.637824pt;}
.ls1_c03047{letter-spacing:0.642048pt;}
.wsc_c03047{word-spacing:-13.445376pt;}
.wsa_c03047{word-spacing:-11.088000pt;}
.ws8_c03047{word-spacing:-11.075328pt;}
.wsd_c03047{word-spacing:-11.037312pt;}
.ws4_c03047{word-spacing:-10.344576pt;}
.ws2_c03047{word-spacing:-10.015104pt;}
.ws12_c03047{word-spacing:-0.963072pt;}
.ws10_c03047{word-spacing:-0.899712pt;}
.wse_c03047{word-spacing:-0.865920pt;}
.ws15_c03047{word-spacing:-0.639744pt;}
.ws16_c03047{word-spacing:-0.329472pt;}
.ws11_c03047{word-spacing:-0.105600pt;}
.ws13_c03047{word-spacing:-0.088704pt;}
.ws14_c03047{word-spacing:-0.076032pt;}
.wsf_c03047{word-spacing:0.000000pt;}
.ws17_c03047{word-spacing:0.743424pt;}
.wsb_c03047{word-spacing:29.600256pt;}
.ws9_c03047{word-spacing:30.966144pt;}
.ws6_c03047{word-spacing:32.659968pt;}
.ws1_c03047{word-spacing:33.563904pt;}
.ws0_c03047{word-spacing:33.796224pt;}
.ws3_c03047{word-spacing:34.860672pt;}
.ws5_c03047{word-spacing:35.468928pt;}
.ws7_c03047{word-spacing:37.357056pt;}
._0_c03047{margin-left:-1.731840pt;}
._2_c03047{width:1.317888pt;}
._4_c03047{width:2.935680pt;}
._1_c03047{width:44.668800pt;}
._3_c03047{width:45.805056pt;}
.fs0_c03047{font-size:42.240000pt;}
.fs1_c03047{font-size:53.760000pt;}
.y0_c03047{bottom:0.000000pt;}
.y19_c03047{bottom:130.665211pt;}
.y1b_c03047{bottom:165.866875pt;}
.y1a_c03047{bottom:174.507067pt;}
.y18_c03047{bottom:245.225371pt;}
.y17_c03047{bottom:317.225563pt;}
.y15_c03047{bottom:361.386427pt;}
.y11_c03047{bottom:377.386939pt;}
.y16_c03047{bottom:407.786011pt;}
.y14_c03047{bottom:437.226235pt;}
.y13_c03047{bottom:453.226747pt;}
.y10_c03047{bottom:482.666971pt;}
.y12_c03047{bottom:497.386555pt;}
.yf_c03047{bottom:513.387067pt;}
.y1c_c03047{bottom:546.027067pt;}
.yb_c03047{bottom:593.385179pt;}
.yd_c03047{bottom:628.586875pt;}
.yc_c03047{bottom:637.227067pt;}
.ya_c03047{bottom:707.945339pt;}
.y9_c03047{bottom:779.945531pt;}
.y7_c03047{bottom:823.786427pt;}
.y3_c03047{bottom:839.786939pt;}
.y8_c03047{bottom:870.505979pt;}
.y6_c03047{bottom:899.946203pt;}
.y5_c03047{bottom:915.946715pt;}
.y2_c03047{bottom:945.386939pt;}
.y4_c03047{bottom:959.786555pt;}
.y1_c03047{bottom:975.787067pt;}
.ye_c03047{bottom:1008.747067pt;}
.h3_c03047{height:28.916250pt;}
.h1_c03047{height:37.063125pt;}
.h2_c03047{height:37.166250pt;}
.h4_c03047{height:48.581988pt;}
.h0_c03047{height:1122.666667pt;}
.w1_c03047{width:793.333333pt;}
.w0_c03047{width:793.626667pt;}
.x0_c03047{left:0.000000pt;}
.xd_c03047{left:104.000000pt;}
.x8_c03047{left:391.999872pt;}
.x4_c03047{left:396.160512pt;}
.xb_c03047{left:400.960000pt;}
.x7_c03047{left:404.799648pt;}
.x5_c03047{left:410.560128pt;}
.x1_c03047{left:411.840000pt;}
.xa_c03047{left:429.760320pt;}
.x9_c03047{left:437.439552pt;}
.x6_c03047{left:438.400512pt;}
.xc_c03047{left:450.560320pt;}
.x3_c03047{left:455.039904pt;}
.x2_c03047{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03048 {
    display:none;
  }
  .loading-indicator_c03048.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03048 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03048 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03048" -> "#page-container .classname_c03048")
 */
.pf_c03048 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03048 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03048.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03048 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03048 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03048 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03048 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03048 {overflow:visible;}
  }
}
.c_c03048 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03048 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03048:after { /* webkit #35443 */
  content: '';
}
.t_c03048:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03048 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03048 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03048 { /* info for Javascript */
  display:none;
}
.l_c03048 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03048 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03048 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03048:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03048 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03048.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03048.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03048 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03048;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03048{font-family:ff1_c03048;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03048;src:url('chunks/assets/font_2c9a5a8109e42b79b0d1ffa3.woff2')format("woff");}.ff2_c03048{font-family:ff2_c03048;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03048;src:url('chunks/assets/font_4700eb1b841a5f70a80d3ae9.woff2')format("woff");}.ff3_c03048{font-family:ff3_c03048;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03048{vertical-align:0.000000px;}
.v1_c03048{vertical-align:1.439424px;}
.ls13_c03048{letter-spacing:-1.197504px;}
.ls17_c03048{letter-spacing:-0.817344px;}
.ls18_c03048{letter-spacing:-0.722304px;}
.ls1d_c03048{letter-spacing:-0.613008px;}
.lsb_c03048{letter-spacing:-0.574992px;}
.ls15_c03048{letter-spacing:-0.361152px;}
.ls19_c03048{letter-spacing:-0.275616px;}
.ls11_c03048{letter-spacing:-0.270864px;}
.ls1e_c03048{letter-spacing:-0.266112px;}
.ls12_c03048{letter-spacing:-0.261360px;}
.ls8_c03048{letter-spacing:-0.242352px;}
.lsa_c03048{letter-spacing:-0.237600px;}
.ls6_c03048{letter-spacing:-0.118800px;}
.ls1c_c03048{letter-spacing:0.000000px;}
.ls2_c03048{letter-spacing:0.006048px;}
.lsc_c03048{letter-spacing:0.014256px;}
.ls10_c03048{letter-spacing:0.038016px;}
.ls7_c03048{letter-spacing:0.128304px;}
.lsf_c03048{letter-spacing:0.508464px;}
.ls1b_c03048{letter-spacing:0.514080px;}
.ls16_c03048{letter-spacing:0.536976px;}
.lsd_c03048{letter-spacing:0.579744px;}
.ls1a_c03048{letter-spacing:0.594000px;}
.ls9_c03048{letter-spacing:0.598752px;}
.ls4_c03048{letter-spacing:0.613008px;}
.ls0_c03048{letter-spacing:0.651024px;}
.ls14_c03048{letter-spacing:0.665280px;}
.ls1_c03048{letter-spacing:0.679536px;}
.lse_c03048{letter-spacing:0.703296px;}
.ls5_c03048{letter-spacing:0.717552px;}
.ls3_c03048{letter-spacing:0.722304px;}
.sc__c03048{text-shadow:none;}
.sc0_c03048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03048{-webkit-text-stroke:0px transparent;}
.sc0_c03048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c03048{word-spacing:-15.126048px;}
.wsa_c03048{word-spacing:-12.545280px;}
.wse_c03048{word-spacing:-12.474000px;}
.ws12_c03048{word-spacing:-11.637648px;}
.ws11_c03048{word-spacing:-11.266992px;}
.ws4_c03048{word-spacing:-3.483216px;}
.ws21_c03048{word-spacing:-1.083456px;}
.ws19_c03048{word-spacing:-1.040688px;}
.ws16_c03048{word-spacing:-1.012176px;}
.ws14_c03048{word-spacing:-0.974160px;}
.ws20_c03048{word-spacing:-0.719712px;}
.ws7_c03048{word-spacing:-0.570240px;}
.ws1a_c03048{word-spacing:-0.399168px;}
.ws18_c03048{word-spacing:-0.375408px;}
.ws17_c03048{word-spacing:-0.118800px;}
.ws1c_c03048{word-spacing:-0.099792px;}
.ws22_c03048{word-spacing:-0.095040px;}
.ws1b_c03048{word-spacing:-0.090288px;}
.ws1f_c03048{word-spacing:-0.085536px;}
.ws15_c03048{word-spacing:0.000000px;}
.ws1e_c03048{word-spacing:0.361152px;}
.ws1d_c03048{word-spacing:0.836352px;}
.ws2_c03048{word-spacing:1.330560px;}
.wsc_c03048{word-spacing:1.995840px;}
.wsd_c03048{word-spacing:12.435984px;}
.ws13_c03048{word-spacing:18.124128px;}
.wsf_c03048{word-spacing:33.300288px;}
.wsb_c03048{word-spacing:34.836912px;}
.ws9_c03048{word-spacing:36.143712px;}
.ws6_c03048{word-spacing:36.742464px;}
.ws1_c03048{word-spacing:37.759392px;}
.ws0_c03048{word-spacing:38.020752px;}
.ws3_c03048{word-spacing:39.218256px;}
.ws5_c03048{word-spacing:39.902544px;}
.ws8_c03048{word-spacing:42.026688px;}
._0_c03048{margin-left:-1.948320px;}
._3_c03048{width:1.482624px;}
._b_c03048{width:3.302640px;}
._2_c03048{width:10.145520px;}
._6_c03048{width:13.486176px;}
._5_c03048{width:17.587152px;}
._7_c03048{width:21.445776px;}
._9_c03048{width:24.757920px;}
._8_c03048{width:26.383104px;}
._a_c03048{width:27.918000px;}
._d_c03048{width:31.895424px;}
._c_c03048{width:36.590400px;}
._1_c03048{width:50.252400px;}
._4_c03048{width:51.530688px;}
.fc0_c03048{color:rgb(0,0,0);}
.fs0_c03048{font-size:47.520000px;}
.fs1_c03048{font-size:60.480000px;}
.y0_c03048{bottom:0.000000px;}
.y1d_c03048{bottom:131.878686px;}
.y1c_c03048{bottom:146.998362px;}
.y1f_c03048{bottom:186.600234px;}
.y1e_c03048{bottom:196.320450px;}
.y1b_c03048{bottom:275.878542px;}
.y1a_c03048{bottom:356.878758px;}
.y18_c03048{bottom:406.559730px;}
.y14_c03048{bottom:424.560306px;}
.y19_c03048{bottom:458.759262px;}
.y17_c03048{bottom:491.879514px;}
.y16_c03048{bottom:509.880090px;}
.y13_c03048{bottom:543.000342px;}
.y15_c03048{bottom:559.559874px;}
.y12_c03048{bottom:577.560450px;}
.y20_c03048{bottom:614.280450px;}
.ye_c03048{bottom:637.320162px;}
.yd_c03048{bottom:652.439838px;}
.yc_c03048{bottom:667.559514px;}
.y10_c03048{bottom:707.160234px;}
.yf_c03048{bottom:716.880450px;}
.yb_c03048{bottom:796.439694px;}
.ya_c03048{bottom:877.439910px;}
.y8_c03048{bottom:912.000018px;}
.y7_c03048{bottom:926.759730px;}
.y3_c03048{bottom:944.760306px;}
.y9_c03048{bottom:979.320414px;}
.y6_c03048{bottom:1012.439478px;}
.y5_c03048{bottom:1030.440054px;}
.y2_c03048{bottom:1063.560306px;}
.y4_c03048{bottom:1079.759874px;}
.y1_c03048{bottom:1097.760450px;}
.y11_c03048{bottom:1134.840450px;}
.h3_c03048{height:32.530781px;}
.h1_c03048{height:41.696016px;}
.h2_c03048{height:41.812031px;}
.h4_c03048{height:54.654737px;}
.h0_c03048{height:1263.000000px;}
.w1_c03048{width:892.500000px;}
.w0_c03048{width:892.830000px;}
.x0_c03048{left:0.000000px;}
.xe_c03048{left:117.000000px;}
.x9_c03048{left:440.999856px;}
.x4_c03048{left:445.680576px;}
.xc_c03048{left:451.080000px;}
.x7_c03048{left:455.399604px;}
.x5_c03048{left:461.880144px;}
.x1_c03048{left:463.320000px;}
.xb_c03048{left:483.480360px;}
.xa_c03048{left:492.119496px;}
.x6_c03048{left:493.200576px;}
.xd_c03048{left:506.880360px;}
.x3_c03048{left:511.919892px;}
.x2_c03048{left:526.679604px;}
.x8_c03048{left:569.880036px;}
@media print{
.v0_c03048{vertical-align:0.000000pt;}
.v1_c03048{vertical-align:1.279488pt;}
.ls13_c03048{letter-spacing:-1.064448pt;}
.ls17_c03048{letter-spacing:-0.726528pt;}
.ls18_c03048{letter-spacing:-0.642048pt;}
.ls1d_c03048{letter-spacing:-0.544896pt;}
.lsb_c03048{letter-spacing:-0.511104pt;}
.ls15_c03048{letter-spacing:-0.321024pt;}
.ls19_c03048{letter-spacing:-0.244992pt;}
.ls11_c03048{letter-spacing:-0.240768pt;}
.ls1e_c03048{letter-spacing:-0.236544pt;}
.ls12_c03048{letter-spacing:-0.232320pt;}
.ls8_c03048{letter-spacing:-0.215424pt;}
.lsa_c03048{letter-spacing:-0.211200pt;}
.ls6_c03048{letter-spacing:-0.105600pt;}
.ls1c_c03048{letter-spacing:0.000000pt;}
.ls2_c03048{letter-spacing:0.005376pt;}
.lsc_c03048{letter-spacing:0.012672pt;}
.ls10_c03048{letter-spacing:0.033792pt;}
.ls7_c03048{letter-spacing:0.114048pt;}
.lsf_c03048{letter-spacing:0.451968pt;}
.ls1b_c03048{letter-spacing:0.456960pt;}
.ls16_c03048{letter-spacing:0.477312pt;}
.lsd_c03048{letter-spacing:0.515328pt;}
.ls1a_c03048{letter-spacing:0.528000pt;}
.ls9_c03048{letter-spacing:0.532224pt;}
.ls4_c03048{letter-spacing:0.544896pt;}
.ls0_c03048{letter-spacing:0.578688pt;}
.ls14_c03048{letter-spacing:0.591360pt;}
.ls1_c03048{letter-spacing:0.604032pt;}
.lse_c03048{letter-spacing:0.625152pt;}
.ls5_c03048{letter-spacing:0.637824pt;}
.ls3_c03048{letter-spacing:0.642048pt;}
.ws10_c03048{word-spacing:-13.445376pt;}
.wsa_c03048{word-spacing:-11.151360pt;}
.wse_c03048{word-spacing:-11.088000pt;}
.ws12_c03048{word-spacing:-10.344576pt;}
.ws11_c03048{word-spacing:-10.015104pt;}
.ws4_c03048{word-spacing:-3.096192pt;}
.ws21_c03048{word-spacing:-0.963072pt;}
.ws19_c03048{word-spacing:-0.925056pt;}
.ws16_c03048{word-spacing:-0.899712pt;}
.ws14_c03048{word-spacing:-0.865920pt;}
.ws20_c03048{word-spacing:-0.639744pt;}
.ws7_c03048{word-spacing:-0.506880pt;}
.ws1a_c03048{word-spacing:-0.354816pt;}
.ws18_c03048{word-spacing:-0.333696pt;}
.ws17_c03048{word-spacing:-0.105600pt;}
.ws1c_c03048{word-spacing:-0.088704pt;}
.ws22_c03048{word-spacing:-0.084480pt;}
.ws1b_c03048{word-spacing:-0.080256pt;}
.ws1f_c03048{word-spacing:-0.076032pt;}
.ws15_c03048{word-spacing:0.000000pt;}
.ws1e_c03048{word-spacing:0.321024pt;}
.ws1d_c03048{word-spacing:0.743424pt;}
.ws2_c03048{word-spacing:1.182720pt;}
.wsc_c03048{word-spacing:1.774080pt;}
.wsd_c03048{word-spacing:11.054208pt;}
.ws13_c03048{word-spacing:16.110336pt;}
.wsf_c03048{word-spacing:29.600256pt;}
.wsb_c03048{word-spacing:30.966144pt;}
.ws9_c03048{word-spacing:32.127744pt;}
.ws6_c03048{word-spacing:32.659968pt;}
.ws1_c03048{word-spacing:33.563904pt;}
.ws0_c03048{word-spacing:33.796224pt;}
.ws3_c03048{word-spacing:34.860672pt;}
.ws5_c03048{word-spacing:35.468928pt;}
.ws8_c03048{word-spacing:37.357056pt;}
._0_c03048{margin-left:-1.731840pt;}
._3_c03048{width:1.317888pt;}
._b_c03048{width:2.935680pt;}
._2_c03048{width:9.018240pt;}
._6_c03048{width:11.987712pt;}
._5_c03048{width:15.633024pt;}
._7_c03048{width:19.062912pt;}
._9_c03048{width:22.007040pt;}
._8_c03048{width:23.451648pt;}
._a_c03048{width:24.816000pt;}
._d_c03048{width:28.351488pt;}
._c_c03048{width:32.524800pt;}
._1_c03048{width:44.668800pt;}
._4_c03048{width:45.805056pt;}
.fs0_c03048{font-size:42.240000pt;}
.fs1_c03048{font-size:53.760000pt;}
.y0_c03048{bottom:0.000000pt;}
.y1d_c03048{bottom:117.225499pt;}
.y1c_c03048{bottom:130.665211pt;}
.y1f_c03048{bottom:165.866875pt;}
.y1e_c03048{bottom:174.507067pt;}
.y1b_c03048{bottom:245.225371pt;}
.y1a_c03048{bottom:317.225563pt;}
.y18_c03048{bottom:361.386427pt;}
.y14_c03048{bottom:377.386939pt;}
.y19_c03048{bottom:407.786011pt;}
.y17_c03048{bottom:437.226235pt;}
.y16_c03048{bottom:453.226747pt;}
.y13_c03048{bottom:482.666971pt;}
.y15_c03048{bottom:497.386555pt;}
.y12_c03048{bottom:513.387067pt;}
.y20_c03048{bottom:546.027067pt;}
.ye_c03048{bottom:566.506811pt;}
.yd_c03048{bottom:579.946523pt;}
.yc_c03048{bottom:593.386235pt;}
.y10_c03048{bottom:628.586875pt;}
.yf_c03048{bottom:637.227067pt;}
.yb_c03048{bottom:707.946395pt;}
.ya_c03048{bottom:779.946587pt;}
.y8_c03048{bottom:810.666683pt;}
.y7_c03048{bottom:823.786427pt;}
.y3_c03048{bottom:839.786939pt;}
.y9_c03048{bottom:870.507035pt;}
.y6_c03048{bottom:899.946203pt;}
.y5_c03048{bottom:915.946715pt;}
.y2_c03048{bottom:945.386939pt;}
.y4_c03048{bottom:959.786555pt;}
.y1_c03048{bottom:975.787067pt;}
.y11_c03048{bottom:1008.747067pt;}
.h3_c03048{height:28.916250pt;}
.h1_c03048{height:37.063125pt;}
.h2_c03048{height:37.166250pt;}
.h4_c03048{height:48.581988pt;}
.h0_c03048{height:1122.666667pt;}
.w1_c03048{width:793.333333pt;}
.w0_c03048{width:793.626667pt;}
.x0_c03048{left:0.000000pt;}
.xe_c03048{left:104.000000pt;}
.x9_c03048{left:391.999872pt;}
.x4_c03048{left:396.160512pt;}
.xc_c03048{left:400.960000pt;}
.x7_c03048{left:404.799648pt;}
.x5_c03048{left:410.560128pt;}
.x1_c03048{left:411.840000pt;}
.xb_c03048{left:429.760320pt;}
.xa_c03048{left:437.439552pt;}
.x6_c03048{left:438.400512pt;}
.xd_c03048{left:450.560320pt;}
.x3_c03048{left:455.039904pt;}
.x2_c03048{left:468.159648pt;}
.x8_c03048{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03049 {
    display:none;
  }
  .loading-indicator_c03049.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03049 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03049 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03049" -> "#page-container .classname_c03049")
 */
.pf_c03049 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03049 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03049.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03049 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03049 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03049 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03049 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03049 {overflow:visible;}
  }
}
.c_c03049 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03049 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03049:after { /* webkit #35443 */
  content: '';
}
.t_c03049:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03049 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03049 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03049 { /* info for Javascript */
  display:none;
}
.l_c03049 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03049 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03049 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03049:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03049 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03049.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03049.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03049 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03049{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03049;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03049{font-family:ff1_c03049;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03049;src:url('chunks/assets/font_d9360edb116f0e02496e38df.woff2')format("woff");}.ff2_c03049{font-family:ff2_c03049;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03049;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03049{font-family:ff3_c03049;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03049{vertical-align:0.000000px;}
.v1_c03049{vertical-align:1.439424px;}
.lsd_c03049{letter-spacing:-1.197504px;}
.lsb_c03049{letter-spacing:-0.765072px;}
.ls14_c03049{letter-spacing:-0.698544px;}
.ls7_c03049{letter-spacing:-0.613008px;}
.ls9_c03049{letter-spacing:-0.574992px;}
.ls10_c03049{letter-spacing:-0.275616px;}
.lse_c03049{letter-spacing:-0.261360px;}
.ls6_c03049{letter-spacing:-0.242352px;}
.ls4_c03049{letter-spacing:-0.118800px;}
.ls13_c03049{letter-spacing:0.000000px;}
.ls1_c03049{letter-spacing:0.006048px;}
.ls5_c03049{letter-spacing:0.128304px;}
.lsc_c03049{letter-spacing:0.508464px;}
.ls12_c03049{letter-spacing:0.514080px;}
.lsf_c03049{letter-spacing:0.536976px;}
.lsa_c03049{letter-spacing:0.579744px;}
.ls11_c03049{letter-spacing:0.594000px;}
.ls8_c03049{letter-spacing:0.598752px;}
.ls2_c03049{letter-spacing:0.613008px;}
.ls3_c03049{letter-spacing:0.717552px;}
.ls0_c03049{letter-spacing:0.722304px;}
.sc__c03049{text-shadow:none;}
.sc0_c03049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03049{-webkit-text-stroke:0px transparent;}
.sc0_c03049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03049{word-spacing:-15.126048px;}
.wsa_c03049{word-spacing:-12.474000px;}
.ws8_c03049{word-spacing:-12.459744px;}
.ws9_c03049{word-spacing:-12.416976px;}
.ws4_c03049{word-spacing:-11.637648px;}
.ws2_c03049{word-spacing:-11.266992px;}
.ws10_c03049{word-spacing:-1.083456px;}
.wsd_c03049{word-spacing:-0.974160px;}
.ws15_c03049{word-spacing:-0.719712px;}
.wsf_c03049{word-spacing:-0.118800px;}
.ws13_c03049{word-spacing:-0.099792px;}
.ws14_c03049{word-spacing:-0.085536px;}
.wse_c03049{word-spacing:0.000000px;}
.ws16_c03049{word-spacing:0.337392px;}
.ws11_c03049{word-spacing:0.403920px;}
.ws12_c03049{word-spacing:0.836352px;}
.wsb_c03049{word-spacing:33.300288px;}
.ws6_c03049{word-spacing:36.742464px;}
.ws1_c03049{word-spacing:37.759392px;}
.ws0_c03049{word-spacing:38.020752px;}
.ws3_c03049{word-spacing:39.218256px;}
.ws5_c03049{word-spacing:39.902544px;}
.ws7_c03049{word-spacing:42.026688px;}
._0_c03049{margin-left:-1.948320px;}
._2_c03049{width:1.482624px;}
._5_c03049{width:2.770416px;}
._4_c03049{width:4.329072px;}
._1_c03049{width:50.252400px;}
._3_c03049{width:51.530688px;}
.fc0_c03049{color:rgb(0,0,0);}
.fs0_c03049{font-size:47.520000px;}
.fs1_c03049{font-size:60.480000px;}
.y0_c03049{bottom:0.000000px;}
.y19_c03049{bottom:146.998362px;}
.y1b_c03049{bottom:186.600234px;}
.y1a_c03049{bottom:196.320450px;}
.y18_c03049{bottom:275.878542px;}
.y17_c03049{bottom:356.878758px;}
.y15_c03049{bottom:406.559730px;}
.y11_c03049{bottom:424.560306px;}
.y16_c03049{bottom:458.759262px;}
.y14_c03049{bottom:491.879514px;}
.y13_c03049{bottom:509.880090px;}
.y10_c03049{bottom:543.000342px;}
.y12_c03049{bottom:559.559874px;}
.yf_c03049{bottom:577.560450px;}
.y1c_c03049{bottom:614.280450px;}
.yb_c03049{bottom:667.558326px;}
.yd_c03049{bottom:707.160234px;}
.yc_c03049{bottom:716.880450px;}
.ya_c03049{bottom:796.438506px;}
.y9_c03049{bottom:877.438722px;}
.y7_c03049{bottom:926.759730px;}
.y3_c03049{bottom:944.760306px;}
.y8_c03049{bottom:979.319226px;}
.y6_c03049{bottom:1012.439478px;}
.y5_c03049{bottom:1030.440054px;}
.y2_c03049{bottom:1063.560306px;}
.y4_c03049{bottom:1079.759874px;}
.y1_c03049{bottom:1097.760450px;}
.ye_c03049{bottom:1134.840450px;}
.h3_c03049{height:32.530781px;}
.h1_c03049{height:41.696016px;}
.h2_c03049{height:41.812031px;}
.h4_c03049{height:54.654737px;}
.h0_c03049{height:1263.000000px;}
.w1_c03049{width:892.500000px;}
.w0_c03049{width:892.830000px;}
.x0_c03049{left:0.000000px;}
.xd_c03049{left:117.000000px;}
.x8_c03049{left:440.999856px;}
.x4_c03049{left:445.680576px;}
.xb_c03049{left:451.080000px;}
.x7_c03049{left:455.399604px;}
.x5_c03049{left:461.880144px;}
.x1_c03049{left:463.320000px;}
.xa_c03049{left:483.480360px;}
.x9_c03049{left:492.119496px;}
.x6_c03049{left:493.200576px;}
.xc_c03049{left:506.880360px;}
.x3_c03049{left:511.919892px;}
.x2_c03049{left:526.679604px;}
@media print{
.v0_c03049{vertical-align:0.000000pt;}
.v1_c03049{vertical-align:1.279488pt;}
.lsd_c03049{letter-spacing:-1.064448pt;}
.lsb_c03049{letter-spacing:-0.680064pt;}
.ls14_c03049{letter-spacing:-0.620928pt;}
.ls7_c03049{letter-spacing:-0.544896pt;}
.ls9_c03049{letter-spacing:-0.511104pt;}
.ls10_c03049{letter-spacing:-0.244992pt;}
.lse_c03049{letter-spacing:-0.232320pt;}
.ls6_c03049{letter-spacing:-0.215424pt;}
.ls4_c03049{letter-spacing:-0.105600pt;}
.ls13_c03049{letter-spacing:0.000000pt;}
.ls1_c03049{letter-spacing:0.005376pt;}
.ls5_c03049{letter-spacing:0.114048pt;}
.lsc_c03049{letter-spacing:0.451968pt;}
.ls12_c03049{letter-spacing:0.456960pt;}
.lsf_c03049{letter-spacing:0.477312pt;}
.lsa_c03049{letter-spacing:0.515328pt;}
.ls11_c03049{letter-spacing:0.528000pt;}
.ls8_c03049{letter-spacing:0.532224pt;}
.ls2_c03049{letter-spacing:0.544896pt;}
.ls3_c03049{letter-spacing:0.637824pt;}
.ls0_c03049{letter-spacing:0.642048pt;}
.wsc_c03049{word-spacing:-13.445376pt;}
.wsa_c03049{word-spacing:-11.088000pt;}
.ws8_c03049{word-spacing:-11.075328pt;}
.ws9_c03049{word-spacing:-11.037312pt;}
.ws4_c03049{word-spacing:-10.344576pt;}
.ws2_c03049{word-spacing:-10.015104pt;}
.ws10_c03049{word-spacing:-0.963072pt;}
.wsd_c03049{word-spacing:-0.865920pt;}
.ws15_c03049{word-spacing:-0.639744pt;}
.wsf_c03049{word-spacing:-0.105600pt;}
.ws13_c03049{word-spacing:-0.088704pt;}
.ws14_c03049{word-spacing:-0.076032pt;}
.wse_c03049{word-spacing:0.000000pt;}
.ws16_c03049{word-spacing:0.299904pt;}
.ws11_c03049{word-spacing:0.359040pt;}
.ws12_c03049{word-spacing:0.743424pt;}
.wsb_c03049{word-spacing:29.600256pt;}
.ws6_c03049{word-spacing:32.659968pt;}
.ws1_c03049{word-spacing:33.563904pt;}
.ws0_c03049{word-spacing:33.796224pt;}
.ws3_c03049{word-spacing:34.860672pt;}
.ws5_c03049{word-spacing:35.468928pt;}
.ws7_c03049{word-spacing:37.357056pt;}
._0_c03049{margin-left:-1.731840pt;}
._2_c03049{width:1.317888pt;}
._5_c03049{width:2.462592pt;}
._4_c03049{width:3.848064pt;}
._1_c03049{width:44.668800pt;}
._3_c03049{width:45.805056pt;}
.fs0_c03049{font-size:42.240000pt;}
.fs1_c03049{font-size:53.760000pt;}
.y0_c03049{bottom:0.000000pt;}
.y19_c03049{bottom:130.665211pt;}
.y1b_c03049{bottom:165.866875pt;}
.y1a_c03049{bottom:174.507067pt;}
.y18_c03049{bottom:245.225371pt;}
.y17_c03049{bottom:317.225563pt;}
.y15_c03049{bottom:361.386427pt;}
.y11_c03049{bottom:377.386939pt;}
.y16_c03049{bottom:407.786011pt;}
.y14_c03049{bottom:437.226235pt;}
.y13_c03049{bottom:453.226747pt;}
.y10_c03049{bottom:482.666971pt;}
.y12_c03049{bottom:497.386555pt;}
.yf_c03049{bottom:513.387067pt;}
.y1c_c03049{bottom:546.027067pt;}
.yb_c03049{bottom:593.385179pt;}
.yd_c03049{bottom:628.586875pt;}
.yc_c03049{bottom:637.227067pt;}
.ya_c03049{bottom:707.945339pt;}
.y9_c03049{bottom:779.945531pt;}
.y7_c03049{bottom:823.786427pt;}
.y3_c03049{bottom:839.786939pt;}
.y8_c03049{bottom:870.505979pt;}
.y6_c03049{bottom:899.946203pt;}
.y5_c03049{bottom:915.946715pt;}
.y2_c03049{bottom:945.386939pt;}
.y4_c03049{bottom:959.786555pt;}
.y1_c03049{bottom:975.787067pt;}
.ye_c03049{bottom:1008.747067pt;}
.h3_c03049{height:28.916250pt;}
.h1_c03049{height:37.063125pt;}
.h2_c03049{height:37.166250pt;}
.h4_c03049{height:48.581988pt;}
.h0_c03049{height:1122.666667pt;}
.w1_c03049{width:793.333333pt;}
.w0_c03049{width:793.626667pt;}
.x0_c03049{left:0.000000pt;}
.xd_c03049{left:104.000000pt;}
.x8_c03049{left:391.999872pt;}
.x4_c03049{left:396.160512pt;}
.xb_c03049{left:400.960000pt;}
.x7_c03049{left:404.799648pt;}
.x5_c03049{left:410.560128pt;}
.x1_c03049{left:411.840000pt;}
.xa_c03049{left:429.760320pt;}
.x9_c03049{left:437.439552pt;}
.x6_c03049{left:438.400512pt;}
.xc_c03049{left:450.560320pt;}
.x3_c03049{left:455.039904pt;}
.x2_c03049{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03050 {
    display:none;
  }
  .loading-indicator_c03050.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03050 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03050 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03050" -> "#page-container .classname_c03050")
 */
.pf_c03050 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03050 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03050.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03050 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03050 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03050 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03050 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03050 {overflow:visible;}
  }
}
.c_c03050 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03050 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03050:after { /* webkit #35443 */
  content: '';
}
.t_c03050:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03050 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03050 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03050 { /* info for Javascript */
  display:none;
}
.l_c03050 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03050 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03050 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03050:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03050 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03050.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03050.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03050 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03050;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03050{font-family:ff1_c03050;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03050;src:url('chunks/assets/font_82cdd49a901c3e364775e27a.woff2')format("woff");}.ff2_c03050{font-family:ff2_c03050;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03050;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03050{font-family:ff3_c03050;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03050{vertical-align:0.000000px;}
.v1_c03050{vertical-align:1.439424px;}
.lsd_c03050{letter-spacing:-1.197504px;}
.lsb_c03050{letter-spacing:-0.698544px;}
.ls7_c03050{letter-spacing:-0.613008px;}
.ls9_c03050{letter-spacing:-0.574992px;}
.ls10_c03050{letter-spacing:-0.275616px;}
.lse_c03050{letter-spacing:-0.261360px;}
.ls6_c03050{letter-spacing:-0.242352px;}
.ls4_c03050{letter-spacing:-0.118800px;}
.ls13_c03050{letter-spacing:0.000000px;}
.ls1_c03050{letter-spacing:0.006048px;}
.ls5_c03050{letter-spacing:0.128304px;}
.lsc_c03050{letter-spacing:0.508464px;}
.ls12_c03050{letter-spacing:0.514080px;}
.lsf_c03050{letter-spacing:0.536976px;}
.lsa_c03050{letter-spacing:0.579744px;}
.ls11_c03050{letter-spacing:0.594000px;}
.ls8_c03050{letter-spacing:0.598752px;}
.ls2_c03050{letter-spacing:0.613008px;}
.ls3_c03050{letter-spacing:0.717552px;}
.ls0_c03050{letter-spacing:0.722304px;}
.sc__c03050{text-shadow:none;}
.sc0_c03050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03050{-webkit-text-stroke:0px transparent;}
.sc0_c03050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03050{word-spacing:-15.126048px;}
.wsa_c03050{word-spacing:-12.474000px;}
.ws8_c03050{word-spacing:-12.459744px;}
.ws9_c03050{word-spacing:-12.416976px;}
.ws4_c03050{word-spacing:-11.637648px;}
.ws2_c03050{word-spacing:-11.266992px;}
.ws10_c03050{word-spacing:-1.083456px;}
.wsd_c03050{word-spacing:-0.974160px;}
.ws15_c03050{word-spacing:-0.719712px;}
.wsf_c03050{word-spacing:-0.118800px;}
.ws13_c03050{word-spacing:-0.099792px;}
.ws14_c03050{word-spacing:-0.085536px;}
.wse_c03050{word-spacing:0.000000px;}
.ws11_c03050{word-spacing:0.337392px;}
.ws12_c03050{word-spacing:0.836352px;}
.wsb_c03050{word-spacing:33.300288px;}
.ws6_c03050{word-spacing:36.742464px;}
.ws1_c03050{word-spacing:37.759392px;}
.ws0_c03050{word-spacing:38.020752px;}
.ws3_c03050{word-spacing:39.218256px;}
.ws5_c03050{word-spacing:39.902544px;}
.ws7_c03050{word-spacing:42.026688px;}
._0_c03050{margin-left:-1.948320px;}
._2_c03050{width:1.482624px;}
._5_c03050{width:2.770416px;}
._4_c03050{width:4.329072px;}
._1_c03050{width:50.252400px;}
._3_c03050{width:51.530688px;}
.fc0_c03050{color:rgb(0,0,0);}
.fs0_c03050{font-size:47.520000px;}
.fs1_c03050{font-size:60.480000px;}
.y0_c03050{bottom:0.000000px;}
.y19_c03050{bottom:146.998362px;}
.y1b_c03050{bottom:186.600234px;}
.y1a_c03050{bottom:196.320450px;}
.y18_c03050{bottom:275.878542px;}
.y17_c03050{bottom:356.878758px;}
.y15_c03050{bottom:406.559730px;}
.y11_c03050{bottom:424.560306px;}
.y16_c03050{bottom:458.759262px;}
.y14_c03050{bottom:491.879514px;}
.y13_c03050{bottom:509.880090px;}
.y10_c03050{bottom:543.000342px;}
.y12_c03050{bottom:559.559874px;}
.yf_c03050{bottom:577.560450px;}
.y1c_c03050{bottom:614.280450px;}
.yb_c03050{bottom:667.558326px;}
.yd_c03050{bottom:707.160234px;}
.yc_c03050{bottom:716.880450px;}
.ya_c03050{bottom:796.438506px;}
.y9_c03050{bottom:877.438722px;}
.y7_c03050{bottom:926.759730px;}
.y3_c03050{bottom:944.760306px;}
.y8_c03050{bottom:979.319226px;}
.y6_c03050{bottom:1012.439478px;}
.y5_c03050{bottom:1030.440054px;}
.y2_c03050{bottom:1063.560306px;}
.y4_c03050{bottom:1079.759874px;}
.y1_c03050{bottom:1097.760450px;}
.ye_c03050{bottom:1134.840450px;}
.h3_c03050{height:32.530781px;}
.h1_c03050{height:41.696016px;}
.h2_c03050{height:41.812031px;}
.h4_c03050{height:54.654737px;}
.h0_c03050{height:1263.000000px;}
.w1_c03050{width:892.500000px;}
.w0_c03050{width:892.830000px;}
.x0_c03050{left:0.000000px;}
.xd_c03050{left:117.000000px;}
.x8_c03050{left:440.999856px;}
.x4_c03050{left:445.680576px;}
.xb_c03050{left:451.080000px;}
.x7_c03050{left:455.399604px;}
.x5_c03050{left:461.880144px;}
.x1_c03050{left:463.320000px;}
.xa_c03050{left:483.480360px;}
.x9_c03050{left:492.119496px;}
.x6_c03050{left:493.200576px;}
.xc_c03050{left:506.880360px;}
.x3_c03050{left:511.919892px;}
.x2_c03050{left:526.679604px;}
@media print{
.v0_c03050{vertical-align:0.000000pt;}
.v1_c03050{vertical-align:1.279488pt;}
.lsd_c03050{letter-spacing:-1.064448pt;}
.lsb_c03050{letter-spacing:-0.620928pt;}
.ls7_c03050{letter-spacing:-0.544896pt;}
.ls9_c03050{letter-spacing:-0.511104pt;}
.ls10_c03050{letter-spacing:-0.244992pt;}
.lse_c03050{letter-spacing:-0.232320pt;}
.ls6_c03050{letter-spacing:-0.215424pt;}
.ls4_c03050{letter-spacing:-0.105600pt;}
.ls13_c03050{letter-spacing:0.000000pt;}
.ls1_c03050{letter-spacing:0.005376pt;}
.ls5_c03050{letter-spacing:0.114048pt;}
.lsc_c03050{letter-spacing:0.451968pt;}
.ls12_c03050{letter-spacing:0.456960pt;}
.lsf_c03050{letter-spacing:0.477312pt;}
.lsa_c03050{letter-spacing:0.515328pt;}
.ls11_c03050{letter-spacing:0.528000pt;}
.ls8_c03050{letter-spacing:0.532224pt;}
.ls2_c03050{letter-spacing:0.544896pt;}
.ls3_c03050{letter-spacing:0.637824pt;}
.ls0_c03050{letter-spacing:0.642048pt;}
.wsc_c03050{word-spacing:-13.445376pt;}
.wsa_c03050{word-spacing:-11.088000pt;}
.ws8_c03050{word-spacing:-11.075328pt;}
.ws9_c03050{word-spacing:-11.037312pt;}
.ws4_c03050{word-spacing:-10.344576pt;}
.ws2_c03050{word-spacing:-10.015104pt;}
.ws10_c03050{word-spacing:-0.963072pt;}
.wsd_c03050{word-spacing:-0.865920pt;}
.ws15_c03050{word-spacing:-0.639744pt;}
.wsf_c03050{word-spacing:-0.105600pt;}
.ws13_c03050{word-spacing:-0.088704pt;}
.ws14_c03050{word-spacing:-0.076032pt;}
.wse_c03050{word-spacing:0.000000pt;}
.ws11_c03050{word-spacing:0.299904pt;}
.ws12_c03050{word-spacing:0.743424pt;}
.wsb_c03050{word-spacing:29.600256pt;}
.ws6_c03050{word-spacing:32.659968pt;}
.ws1_c03050{word-spacing:33.563904pt;}
.ws0_c03050{word-spacing:33.796224pt;}
.ws3_c03050{word-spacing:34.860672pt;}
.ws5_c03050{word-spacing:35.468928pt;}
.ws7_c03050{word-spacing:37.357056pt;}
._0_c03050{margin-left:-1.731840pt;}
._2_c03050{width:1.317888pt;}
._5_c03050{width:2.462592pt;}
._4_c03050{width:3.848064pt;}
._1_c03050{width:44.668800pt;}
._3_c03050{width:45.805056pt;}
.fs0_c03050{font-size:42.240000pt;}
.fs1_c03050{font-size:53.760000pt;}
.y0_c03050{bottom:0.000000pt;}
.y19_c03050{bottom:130.665211pt;}
.y1b_c03050{bottom:165.866875pt;}
.y1a_c03050{bottom:174.507067pt;}
.y18_c03050{bottom:245.225371pt;}
.y17_c03050{bottom:317.225563pt;}
.y15_c03050{bottom:361.386427pt;}
.y11_c03050{bottom:377.386939pt;}
.y16_c03050{bottom:407.786011pt;}
.y14_c03050{bottom:437.226235pt;}
.y13_c03050{bottom:453.226747pt;}
.y10_c03050{bottom:482.666971pt;}
.y12_c03050{bottom:497.386555pt;}
.yf_c03050{bottom:513.387067pt;}
.y1c_c03050{bottom:546.027067pt;}
.yb_c03050{bottom:593.385179pt;}
.yd_c03050{bottom:628.586875pt;}
.yc_c03050{bottom:637.227067pt;}
.ya_c03050{bottom:707.945339pt;}
.y9_c03050{bottom:779.945531pt;}
.y7_c03050{bottom:823.786427pt;}
.y3_c03050{bottom:839.786939pt;}
.y8_c03050{bottom:870.505979pt;}
.y6_c03050{bottom:899.946203pt;}
.y5_c03050{bottom:915.946715pt;}
.y2_c03050{bottom:945.386939pt;}
.y4_c03050{bottom:959.786555pt;}
.y1_c03050{bottom:975.787067pt;}
.ye_c03050{bottom:1008.747067pt;}
.h3_c03050{height:28.916250pt;}
.h1_c03050{height:37.063125pt;}
.h2_c03050{height:37.166250pt;}
.h4_c03050{height:48.581988pt;}
.h0_c03050{height:1122.666667pt;}
.w1_c03050{width:793.333333pt;}
.w0_c03050{width:793.626667pt;}
.x0_c03050{left:0.000000pt;}
.xd_c03050{left:104.000000pt;}
.x8_c03050{left:391.999872pt;}
.x4_c03050{left:396.160512pt;}
.xb_c03050{left:400.960000pt;}
.x7_c03050{left:404.799648pt;}
.x5_c03050{left:410.560128pt;}
.x1_c03050{left:411.840000pt;}
.xa_c03050{left:429.760320pt;}
.x9_c03050{left:437.439552pt;}
.x6_c03050{left:438.400512pt;}
.xc_c03050{left:450.560320pt;}
.x3_c03050{left:455.039904pt;}
.x2_c03050{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03051 {
    display:none;
  }
  .loading-indicator_c03051.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03051 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03051 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03051" -> "#page-container .classname_c03051")
 */
.pf_c03051 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03051 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03051.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03051 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03051 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03051 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03051 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03051 {overflow:visible;}
  }
}
.c_c03051 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03051 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03051:after { /* webkit #35443 */
  content: '';
}
.t_c03051:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03051 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03051 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03051 { /* info for Javascript */
  display:none;
}
.l_c03051 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03051 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03051 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03051:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03051 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03051.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03051.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03051 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03051;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03051{font-family:ff1_c03051;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03051;src:url('chunks/assets/font_d551e023114acf655776cded.woff2')format("woff");}.ff2_c03051{font-family:ff2_c03051;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03051;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03051{font-family:ff3_c03051;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03051{vertical-align:0.000000px;}
.v1_c03051{vertical-align:1.439424px;}
.lsd_c03051{letter-spacing:-1.197504px;}
.ls15_c03051{letter-spacing:-0.793584px;}
.lsb_c03051{letter-spacing:-0.698544px;}
.ls7_c03051{letter-spacing:-0.613008px;}
.ls9_c03051{letter-spacing:-0.574992px;}
.ls10_c03051{letter-spacing:-0.275616px;}
.lse_c03051{letter-spacing:-0.261360px;}
.ls6_c03051{letter-spacing:-0.242352px;}
.ls4_c03051{letter-spacing:-0.118800px;}
.ls13_c03051{letter-spacing:0.000000px;}
.ls1_c03051{letter-spacing:0.006048px;}
.ls14_c03051{letter-spacing:0.095040px;}
.ls5_c03051{letter-spacing:0.128304px;}
.lsc_c03051{letter-spacing:0.508464px;}
.ls12_c03051{letter-spacing:0.514080px;}
.lsf_c03051{letter-spacing:0.536976px;}
.lsa_c03051{letter-spacing:0.579744px;}
.ls11_c03051{letter-spacing:0.594000px;}
.ls8_c03051{letter-spacing:0.598752px;}
.ls2_c03051{letter-spacing:0.613008px;}
.ls3_c03051{letter-spacing:0.717552px;}
.ls0_c03051{letter-spacing:0.722304px;}
.sc__c03051{text-shadow:none;}
.sc0_c03051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03051{-webkit-text-stroke:0px transparent;}
.sc0_c03051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03051{word-spacing:-15.126048px;}
.wsa_c03051{word-spacing:-12.474000px;}
.ws8_c03051{word-spacing:-12.459744px;}
.ws9_c03051{word-spacing:-12.416976px;}
.ws4_c03051{word-spacing:-11.637648px;}
.ws2_c03051{word-spacing:-11.266992px;}
.ws12_c03051{word-spacing:-1.083456px;}
.wsf_c03051{word-spacing:-0.974160px;}
.ws17_c03051{word-spacing:-0.719712px;}
.ws18_c03051{word-spacing:-0.456192px;}
.ws11_c03051{word-spacing:-0.118800px;}
.ws15_c03051{word-spacing:-0.099792px;}
.ws16_c03051{word-spacing:-0.085536px;}
.ws10_c03051{word-spacing:0.000000px;}
.ws13_c03051{word-spacing:0.337392px;}
.ws19_c03051{word-spacing:0.432432px;}
.ws14_c03051{word-spacing:0.836352px;}
.wsb_c03051{word-spacing:33.300288px;}
.wse_c03051{word-spacing:34.836912px;}
.wsd_c03051{word-spacing:36.143712px;}
.ws6_c03051{word-spacing:36.742464px;}
.ws1_c03051{word-spacing:37.759392px;}
.ws0_c03051{word-spacing:38.020752px;}
.ws3_c03051{word-spacing:39.218256px;}
.ws5_c03051{word-spacing:39.902544px;}
.ws7_c03051{word-spacing:42.026688px;}
._0_c03051{margin-left:-1.948320px;}
._2_c03051{width:1.482624px;}
._5_c03051{width:2.770416px;}
._4_c03051{width:4.329072px;}
._1_c03051{width:50.252400px;}
._3_c03051{width:51.530688px;}
.fc0_c03051{color:rgb(0,0,0);}
.fs0_c03051{font-size:47.520000px;}
.fs1_c03051{font-size:60.480000px;}
.y0_c03051{bottom:0.000000px;}
.y19_c03051{bottom:146.998362px;}
.y1b_c03051{bottom:186.600234px;}
.y1a_c03051{bottom:196.320450px;}
.y18_c03051{bottom:275.878542px;}
.y17_c03051{bottom:356.878758px;}
.y15_c03051{bottom:406.559730px;}
.y11_c03051{bottom:424.560306px;}
.y16_c03051{bottom:458.759262px;}
.y14_c03051{bottom:491.879514px;}
.y13_c03051{bottom:509.880090px;}
.y10_c03051{bottom:543.000342px;}
.y12_c03051{bottom:559.559874px;}
.yf_c03051{bottom:577.560450px;}
.y1c_c03051{bottom:614.280450px;}
.yb_c03051{bottom:667.558326px;}
.yd_c03051{bottom:707.160234px;}
.yc_c03051{bottom:716.880450px;}
.ya_c03051{bottom:796.438506px;}
.y9_c03051{bottom:877.438722px;}
.y7_c03051{bottom:926.759730px;}
.y3_c03051{bottom:944.760306px;}
.y8_c03051{bottom:979.319226px;}
.y6_c03051{bottom:1012.439478px;}
.y5_c03051{bottom:1030.440054px;}
.y2_c03051{bottom:1063.560306px;}
.y4_c03051{bottom:1079.759874px;}
.y1_c03051{bottom:1097.760450px;}
.ye_c03051{bottom:1134.840450px;}
.h3_c03051{height:32.530781px;}
.h1_c03051{height:41.696016px;}
.h2_c03051{height:41.812031px;}
.h4_c03051{height:54.654737px;}
.h0_c03051{height:1263.000000px;}
.w1_c03051{width:892.500000px;}
.w0_c03051{width:892.830000px;}
.x0_c03051{left:0.000000px;}
.xd_c03051{left:117.000000px;}
.x8_c03051{left:440.999856px;}
.x4_c03051{left:445.680576px;}
.xb_c03051{left:451.080000px;}
.x7_c03051{left:455.399604px;}
.x5_c03051{left:461.880144px;}
.x1_c03051{left:463.320000px;}
.xa_c03051{left:483.480360px;}
.x9_c03051{left:492.119496px;}
.x6_c03051{left:493.200576px;}
.xc_c03051{left:506.880360px;}
.x3_c03051{left:511.919892px;}
.x2_c03051{left:526.679604px;}
@media print{
.v0_c03051{vertical-align:0.000000pt;}
.v1_c03051{vertical-align:1.279488pt;}
.lsd_c03051{letter-spacing:-1.064448pt;}
.ls15_c03051{letter-spacing:-0.705408pt;}
.lsb_c03051{letter-spacing:-0.620928pt;}
.ls7_c03051{letter-spacing:-0.544896pt;}
.ls9_c03051{letter-spacing:-0.511104pt;}
.ls10_c03051{letter-spacing:-0.244992pt;}
.lse_c03051{letter-spacing:-0.232320pt;}
.ls6_c03051{letter-spacing:-0.215424pt;}
.ls4_c03051{letter-spacing:-0.105600pt;}
.ls13_c03051{letter-spacing:0.000000pt;}
.ls1_c03051{letter-spacing:0.005376pt;}
.ls14_c03051{letter-spacing:0.084480pt;}
.ls5_c03051{letter-spacing:0.114048pt;}
.lsc_c03051{letter-spacing:0.451968pt;}
.ls12_c03051{letter-spacing:0.456960pt;}
.lsf_c03051{letter-spacing:0.477312pt;}
.lsa_c03051{letter-spacing:0.515328pt;}
.ls11_c03051{letter-spacing:0.528000pt;}
.ls8_c03051{letter-spacing:0.532224pt;}
.ls2_c03051{letter-spacing:0.544896pt;}
.ls3_c03051{letter-spacing:0.637824pt;}
.ls0_c03051{letter-spacing:0.642048pt;}
.wsc_c03051{word-spacing:-13.445376pt;}
.wsa_c03051{word-spacing:-11.088000pt;}
.ws8_c03051{word-spacing:-11.075328pt;}
.ws9_c03051{word-spacing:-11.037312pt;}
.ws4_c03051{word-spacing:-10.344576pt;}
.ws2_c03051{word-spacing:-10.015104pt;}
.ws12_c03051{word-spacing:-0.963072pt;}
.wsf_c03051{word-spacing:-0.865920pt;}
.ws17_c03051{word-spacing:-0.639744pt;}
.ws18_c03051{word-spacing:-0.405504pt;}
.ws11_c03051{word-spacing:-0.105600pt;}
.ws15_c03051{word-spacing:-0.088704pt;}
.ws16_c03051{word-spacing:-0.076032pt;}
.ws10_c03051{word-spacing:0.000000pt;}
.ws13_c03051{word-spacing:0.299904pt;}
.ws19_c03051{word-spacing:0.384384pt;}
.ws14_c03051{word-spacing:0.743424pt;}
.wsb_c03051{word-spacing:29.600256pt;}
.wse_c03051{word-spacing:30.966144pt;}
.wsd_c03051{word-spacing:32.127744pt;}
.ws6_c03051{word-spacing:32.659968pt;}
.ws1_c03051{word-spacing:33.563904pt;}
.ws0_c03051{word-spacing:33.796224pt;}
.ws3_c03051{word-spacing:34.860672pt;}
.ws5_c03051{word-spacing:35.468928pt;}
.ws7_c03051{word-spacing:37.357056pt;}
._0_c03051{margin-left:-1.731840pt;}
._2_c03051{width:1.317888pt;}
._5_c03051{width:2.462592pt;}
._4_c03051{width:3.848064pt;}
._1_c03051{width:44.668800pt;}
._3_c03051{width:45.805056pt;}
.fs0_c03051{font-size:42.240000pt;}
.fs1_c03051{font-size:53.760000pt;}
.y0_c03051{bottom:0.000000pt;}
.y19_c03051{bottom:130.665211pt;}
.y1b_c03051{bottom:165.866875pt;}
.y1a_c03051{bottom:174.507067pt;}
.y18_c03051{bottom:245.225371pt;}
.y17_c03051{bottom:317.225563pt;}
.y15_c03051{bottom:361.386427pt;}
.y11_c03051{bottom:377.386939pt;}
.y16_c03051{bottom:407.786011pt;}
.y14_c03051{bottom:437.226235pt;}
.y13_c03051{bottom:453.226747pt;}
.y10_c03051{bottom:482.666971pt;}
.y12_c03051{bottom:497.386555pt;}
.yf_c03051{bottom:513.387067pt;}
.y1c_c03051{bottom:546.027067pt;}
.yb_c03051{bottom:593.385179pt;}
.yd_c03051{bottom:628.586875pt;}
.yc_c03051{bottom:637.227067pt;}
.ya_c03051{bottom:707.945339pt;}
.y9_c03051{bottom:779.945531pt;}
.y7_c03051{bottom:823.786427pt;}
.y3_c03051{bottom:839.786939pt;}
.y8_c03051{bottom:870.505979pt;}
.y6_c03051{bottom:899.946203pt;}
.y5_c03051{bottom:915.946715pt;}
.y2_c03051{bottom:945.386939pt;}
.y4_c03051{bottom:959.786555pt;}
.y1_c03051{bottom:975.787067pt;}
.ye_c03051{bottom:1008.747067pt;}
.h3_c03051{height:28.916250pt;}
.h1_c03051{height:37.063125pt;}
.h2_c03051{height:37.166250pt;}
.h4_c03051{height:48.581988pt;}
.h0_c03051{height:1122.666667pt;}
.w1_c03051{width:793.333333pt;}
.w0_c03051{width:793.626667pt;}
.x0_c03051{left:0.000000pt;}
.xd_c03051{left:104.000000pt;}
.x8_c03051{left:391.999872pt;}
.x4_c03051{left:396.160512pt;}
.xb_c03051{left:400.960000pt;}
.x7_c03051{left:404.799648pt;}
.x5_c03051{left:410.560128pt;}
.x1_c03051{left:411.840000pt;}
.xa_c03051{left:429.760320pt;}
.x9_c03051{left:437.439552pt;}
.x6_c03051{left:438.400512pt;}
.xc_c03051{left:450.560320pt;}
.x3_c03051{left:455.039904pt;}
.x2_c03051{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03052 {
    display:none;
  }
  .loading-indicator_c03052.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03052 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03052 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03052" -> "#page-container .classname_c03052")
 */
.pf_c03052 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03052 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03052.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03052 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03052 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03052 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03052 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03052 {overflow:visible;}
  }
}
.c_c03052 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03052 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03052:after { /* webkit #35443 */
  content: '';
}
.t_c03052:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03052 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03052 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03052 { /* info for Javascript */
  display:none;
}
.l_c03052 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03052 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03052 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03052:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03052 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03052.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03052.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03052 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03052{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03052;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03052{font-family:ff1_c03052;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03052;src:url('chunks/assets/font_d86c8eb041af996f60dfd97c.woff2')format("woff");}.ff2_c03052{font-family:ff2_c03052;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03052;src:url('chunks/assets/font_dfc2e55c3dbb6978e02d1537.woff2')format("woff");}.ff3_c03052{font-family:ff3_c03052;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03052{vertical-align:0.000000px;}
.v1_c03052{vertical-align:1.439424px;}
.v2_c03052{vertical-align:33.121440px;}
.lsc_c03052{letter-spacing:-0.722304px;}
.ls7_c03052{letter-spacing:-0.613008px;}
.ls9_c03052{letter-spacing:-0.574992px;}
.ls13_c03052{letter-spacing:-0.380160px;}
.lsf_c03052{letter-spacing:-0.275616px;}
.lsd_c03052{letter-spacing:-0.261360px;}
.ls6_c03052{letter-spacing:-0.242352px;}
.ls4_c03052{letter-spacing:-0.118800px;}
.ls12_c03052{letter-spacing:0.000000px;}
.ls1_c03052{letter-spacing:0.006048px;}
.ls5_c03052{letter-spacing:0.128304px;}
.lsb_c03052{letter-spacing:0.508464px;}
.ls11_c03052{letter-spacing:0.514080px;}
.lse_c03052{letter-spacing:0.536976px;}
.lsa_c03052{letter-spacing:0.579744px;}
.ls10_c03052{letter-spacing:0.594000px;}
.ls8_c03052{letter-spacing:0.598752px;}
.ls2_c03052{letter-spacing:0.613008px;}
.ls3_c03052{letter-spacing:0.717552px;}
.ls0_c03052{letter-spacing:0.722304px;}
.sc__c03052{text-shadow:none;}
.sc0_c03052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03052{-webkit-text-stroke:0px transparent;}
.sc0_c03052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03052{word-spacing:-15.126048px;}
.ws12_c03052{word-spacing:-12.602304px;}
.wsa_c03052{word-spacing:-12.474000px;}
.ws6_c03052{word-spacing:-12.459744px;}
.ws4_c03052{word-spacing:-11.637648px;}
.ws2_c03052{word-spacing:-11.266992px;}
.ws16_c03052{word-spacing:-1.083456px;}
.ws13_c03052{word-spacing:-0.974160px;}
.ws1a_c03052{word-spacing:-0.719712px;}
.ws15_c03052{word-spacing:-0.118800px;}
.ws18_c03052{word-spacing:-0.099792px;}
.ws19_c03052{word-spacing:-0.085536px;}
.ws14_c03052{word-spacing:0.000000px;}
.ws1b_c03052{word-spacing:0.019008px;}
.ws17_c03052{word-spacing:0.361152px;}
.ws10_c03052{word-spacing:0.427680px;}
.ws11_c03052{word-spacing:0.712800px;}
.wsf_c03052{word-spacing:4.077216px;}
.wse_c03052{word-spacing:30.298752px;}
.wsb_c03052{word-spacing:33.300288px;}
.ws9_c03052{word-spacing:34.836912px;}
.ws8_c03052{word-spacing:36.143712px;}
.wsd_c03052{word-spacing:36.742464px;}
.ws1_c03052{word-spacing:37.759392px;}
.ws0_c03052{word-spacing:38.020752px;}
.ws3_c03052{word-spacing:39.218256px;}
.ws5_c03052{word-spacing:39.902544px;}
.ws7_c03052{word-spacing:42.026688px;}
._0_c03052{margin-left:-1.948320px;}
._2_c03052{width:1.482624px;}
._4_c03052{width:3.302640px;}
._6_c03052{width:14.051664px;}
._5_c03052{width:18.537552px;}
._1_c03052{width:50.252400px;}
._3_c03052{width:51.530688px;}
.fc0_c03052{color:rgb(0,0,0);}
.fs0_c03052{font-size:47.520000px;}
.fs1_c03052{font-size:60.480000px;}
.y0_c03052{bottom:0.000000px;}
.y19_c03052{bottom:65.880450px;}
.y1c_c03052{bottom:147.000054px;}
.y1f_c03052{bottom:179.760918px;}
.y1e_c03052{bottom:186.600234px;}
.y1d_c03052{bottom:196.320450px;}
.y1b_c03052{bottom:275.880234px;}
.y18_c03052{bottom:291.000000px;}
.y17_c03052{bottom:356.878758px;}
.y1a_c03052{bottom:356.880450px;}
.y15_c03052{bottom:406.559730px;}
.y11_c03052{bottom:424.560306px;}
.y16_c03052{bottom:458.759262px;}
.y14_c03052{bottom:491.879514px;}
.y13_c03052{bottom:509.880090px;}
.y10_c03052{bottom:543.000342px;}
.y12_c03052{bottom:559.559874px;}
.yf_c03052{bottom:577.560450px;}
.y20_c03052{bottom:614.280450px;}
.yb_c03052{bottom:667.558326px;}
.yd_c03052{bottom:707.160234px;}
.yc_c03052{bottom:716.880450px;}
.ya_c03052{bottom:796.438506px;}
.y9_c03052{bottom:877.438722px;}
.y7_c03052{bottom:926.759730px;}
.y3_c03052{bottom:944.760306px;}
.y8_c03052{bottom:979.319226px;}
.y6_c03052{bottom:1012.439478px;}
.y5_c03052{bottom:1030.440054px;}
.y2_c03052{bottom:1063.560306px;}
.y4_c03052{bottom:1079.759874px;}
.y1_c03052{bottom:1097.760450px;}
.ye_c03052{bottom:1134.840450px;}
.h3_c03052{height:32.530781px;}
.h1_c03052{height:41.696016px;}
.h2_c03052{height:41.812031px;}
.h4_c03052{height:54.654737px;}
.h6_c03052{height:74.933471px;}
.h5_c03052{height:78.480000px;}
.h0_c03052{height:1263.000000px;}
.w2_c03052{width:215.280000px;}
.w1_c03052{width:892.500000px;}
.w0_c03052{width:892.830000px;}
.x0_c03052{left:0.000000px;}
.xd_c03052{left:117.000000px;}
.x8_c03052{left:440.999856px;}
.x4_c03052{left:445.680576px;}
.xb_c03052{left:451.080000px;}
.x7_c03052{left:455.399604px;}
.x5_c03052{left:461.880144px;}
.x1_c03052{left:463.320000px;}
.xa_c03052{left:483.480360px;}
.x9_c03052{left:492.119496px;}
.x6_c03052{left:493.200576px;}
.xc_c03052{left:506.880360px;}
.x3_c03052{left:511.919892px;}
.x2_c03052{left:526.679604px;}
.xe_c03052{left:569.520000px;}
.xf_c03052{left:652.680000px;}
@media print{
.v0_c03052{vertical-align:0.000000pt;}
.v1_c03052{vertical-align:1.279488pt;}
.v2_c03052{vertical-align:29.441280pt;}
.lsc_c03052{letter-spacing:-0.642048pt;}
.ls7_c03052{letter-spacing:-0.544896pt;}
.ls9_c03052{letter-spacing:-0.511104pt;}
.ls13_c03052{letter-spacing:-0.337920pt;}
.lsf_c03052{letter-spacing:-0.244992pt;}
.lsd_c03052{letter-spacing:-0.232320pt;}
.ls6_c03052{letter-spacing:-0.215424pt;}
.ls4_c03052{letter-spacing:-0.105600pt;}
.ls12_c03052{letter-spacing:0.000000pt;}
.ls1_c03052{letter-spacing:0.005376pt;}
.ls5_c03052{letter-spacing:0.114048pt;}
.lsb_c03052{letter-spacing:0.451968pt;}
.ls11_c03052{letter-spacing:0.456960pt;}
.lse_c03052{letter-spacing:0.477312pt;}
.lsa_c03052{letter-spacing:0.515328pt;}
.ls10_c03052{letter-spacing:0.528000pt;}
.ls8_c03052{letter-spacing:0.532224pt;}
.ls2_c03052{letter-spacing:0.544896pt;}
.ls3_c03052{letter-spacing:0.637824pt;}
.ls0_c03052{letter-spacing:0.642048pt;}
.wsc_c03052{word-spacing:-13.445376pt;}
.ws12_c03052{word-spacing:-11.202048pt;}
.wsa_c03052{word-spacing:-11.088000pt;}
.ws6_c03052{word-spacing:-11.075328pt;}
.ws4_c03052{word-spacing:-10.344576pt;}
.ws2_c03052{word-spacing:-10.015104pt;}
.ws16_c03052{word-spacing:-0.963072pt;}
.ws13_c03052{word-spacing:-0.865920pt;}
.ws1a_c03052{word-spacing:-0.639744pt;}
.ws15_c03052{word-spacing:-0.105600pt;}
.ws18_c03052{word-spacing:-0.088704pt;}
.ws19_c03052{word-spacing:-0.076032pt;}
.ws14_c03052{word-spacing:0.000000pt;}
.ws1b_c03052{word-spacing:0.016896pt;}
.ws17_c03052{word-spacing:0.321024pt;}
.ws10_c03052{word-spacing:0.380160pt;}
.ws11_c03052{word-spacing:0.633600pt;}
.wsf_c03052{word-spacing:3.624192pt;}
.wse_c03052{word-spacing:26.932224pt;}
.wsb_c03052{word-spacing:29.600256pt;}
.ws9_c03052{word-spacing:30.966144pt;}
.ws8_c03052{word-spacing:32.127744pt;}
.wsd_c03052{word-spacing:32.659968pt;}
.ws1_c03052{word-spacing:33.563904pt;}
.ws0_c03052{word-spacing:33.796224pt;}
.ws3_c03052{word-spacing:34.860672pt;}
.ws5_c03052{word-spacing:35.468928pt;}
.ws7_c03052{word-spacing:37.357056pt;}
._0_c03052{margin-left:-1.731840pt;}
._2_c03052{width:1.317888pt;}
._4_c03052{width:2.935680pt;}
._6_c03052{width:12.490368pt;}
._5_c03052{width:16.477824pt;}
._1_c03052{width:44.668800pt;}
._3_c03052{width:45.805056pt;}
.fs0_c03052{font-size:42.240000pt;}
.fs1_c03052{font-size:53.760000pt;}
.y0_c03052{bottom:0.000000pt;}
.y19_c03052{bottom:58.560400pt;}
.y1c_c03052{bottom:130.666715pt;}
.y1f_c03052{bottom:159.787483pt;}
.y1e_c03052{bottom:165.866875pt;}
.y1d_c03052{bottom:174.507067pt;}
.y1b_c03052{bottom:245.226875pt;}
.y18_c03052{bottom:258.666667pt;}
.y17_c03052{bottom:317.225563pt;}
.y1a_c03052{bottom:317.227067pt;}
.y15_c03052{bottom:361.386427pt;}
.y11_c03052{bottom:377.386939pt;}
.y16_c03052{bottom:407.786011pt;}
.y14_c03052{bottom:437.226235pt;}
.y13_c03052{bottom:453.226747pt;}
.y10_c03052{bottom:482.666971pt;}
.y12_c03052{bottom:497.386555pt;}
.yf_c03052{bottom:513.387067pt;}
.y20_c03052{bottom:546.027067pt;}
.yb_c03052{bottom:593.385179pt;}
.yd_c03052{bottom:628.586875pt;}
.yc_c03052{bottom:637.227067pt;}
.ya_c03052{bottom:707.945339pt;}
.y9_c03052{bottom:779.945531pt;}
.y7_c03052{bottom:823.786427pt;}
.y3_c03052{bottom:839.786939pt;}
.y8_c03052{bottom:870.505979pt;}
.y6_c03052{bottom:899.946203pt;}
.y5_c03052{bottom:915.946715pt;}
.y2_c03052{bottom:945.386939pt;}
.y4_c03052{bottom:959.786555pt;}
.y1_c03052{bottom:975.787067pt;}
.ye_c03052{bottom:1008.747067pt;}
.h3_c03052{height:28.916250pt;}
.h1_c03052{height:37.063125pt;}
.h2_c03052{height:37.166250pt;}
.h4_c03052{height:48.581988pt;}
.h6_c03052{height:66.607530pt;}
.h5_c03052{height:69.760000pt;}
.h0_c03052{height:1122.666667pt;}
.w2_c03052{width:191.360000pt;}
.w1_c03052{width:793.333333pt;}
.w0_c03052{width:793.626667pt;}
.x0_c03052{left:0.000000pt;}
.xd_c03052{left:104.000000pt;}
.x8_c03052{left:391.999872pt;}
.x4_c03052{left:396.160512pt;}
.xb_c03052{left:400.960000pt;}
.x7_c03052{left:404.799648pt;}
.x5_c03052{left:410.560128pt;}
.x1_c03052{left:411.840000pt;}
.xa_c03052{left:429.760320pt;}
.x9_c03052{left:437.439552pt;}
.x6_c03052{left:438.400512pt;}
.xc_c03052{left:450.560320pt;}
.x3_c03052{left:455.039904pt;}
.x2_c03052{left:468.159648pt;}
.xe_c03052{left:506.240000pt;}
.xf_c03052{left:580.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03053 {
    display:none;
  }
  .loading-indicator_c03053.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03053 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03053 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03053" -> "#page-container .classname_c03053")
 */
.pf_c03053 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03053 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03053.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03053 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03053 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03053 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03053 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03053 {overflow:visible;}
  }
}
.c_c03053 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03053 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03053:after { /* webkit #35443 */
  content: '';
}
.t_c03053:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03053 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03053 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03053 { /* info for Javascript */
  display:none;
}
.l_c03053 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03053 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03053 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03053:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03053 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03053.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03053.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03053 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03053{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03053;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03053{font-family:ff1_c03053;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03053;src:url('chunks/assets/font_9815f89e76110a16e8b8f7e2.woff2')format("woff");}.ff2_c03053{font-family:ff2_c03053;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03053;src:url('chunks/assets/font_33b849aa2a20383c3984fce7.woff2')format("woff");}.ff3_c03053{font-family:ff3_c03053;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03053{vertical-align:0.000000px;}
.v1_c03053{vertical-align:1.439424px;}
.ls10_c03053{letter-spacing:-1.197504px;}
.lsd_c03053{letter-spacing:-0.793584px;}
.ls8_c03053{letter-spacing:-0.613008px;}
.lsa_c03053{letter-spacing:-0.574992px;}
.ls12_c03053{letter-spacing:-0.361152px;}
.lse_c03053{letter-spacing:-0.285120px;}
.ls14_c03053{letter-spacing:-0.275616px;}
.lsf_c03053{letter-spacing:-0.261360px;}
.ls7_c03053{letter-spacing:-0.242352px;}
.ls5_c03053{letter-spacing:-0.118800px;}
.ls19_c03053{letter-spacing:-0.047520px;}
.ls17_c03053{letter-spacing:0.000000px;}
.ls2_c03053{letter-spacing:0.006048px;}
.ls6_c03053{letter-spacing:0.128304px;}
.ls11_c03053{letter-spacing:0.237600px;}
.lsc_c03053{letter-spacing:0.508464px;}
.ls16_c03053{letter-spacing:0.514080px;}
.ls13_c03053{letter-spacing:0.536976px;}
.lsb_c03053{letter-spacing:0.579744px;}
.ls15_c03053{letter-spacing:0.594000px;}
.ls9_c03053{letter-spacing:0.598752px;}
.ls3_c03053{letter-spacing:0.613008px;}
.ls18_c03053{letter-spacing:0.655776px;}
.ls0_c03053{letter-spacing:0.670032px;}
.ls4_c03053{letter-spacing:0.717552px;}
.ls1_c03053{letter-spacing:0.722304px;}
.sc__c03053{text-shadow:none;}
.sc0_c03053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03053{-webkit-text-stroke:0px transparent;}
.sc0_c03053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03053{word-spacing:-15.126048px;}
.wsb_c03053{word-spacing:-12.474000px;}
.ws6_c03053{word-spacing:-12.459744px;}
.wsa_c03053{word-spacing:-12.416976px;}
.ws9_c03053{word-spacing:-12.117600px;}
.ws4_c03053{word-spacing:-11.637648px;}
.ws2_c03053{word-spacing:-11.266992px;}
.ws14_c03053{word-spacing:-2.471040px;}
.ws16_c03053{word-spacing:-1.083456px;}
.ws1d_c03053{word-spacing:-1.031184px;}
.ws1e_c03053{word-spacing:-1.016928px;}
.ws12_c03053{word-spacing:-0.974160px;}
.ws1c_c03053{word-spacing:-0.719712px;}
.ws1f_c03053{word-spacing:-0.313632px;}
.ws15_c03053{word-spacing:-0.118800px;}
.ws19_c03053{word-spacing:-0.099792px;}
.ws1b_c03053{word-spacing:-0.085536px;}
.ws18_c03053{word-spacing:-0.076032px;}
.ws13_c03053{word-spacing:0.000000px;}
.ws17_c03053{word-spacing:0.432432px;}
.ws1a_c03053{word-spacing:0.836352px;}
.ws10_c03053{word-spacing:23.755248px;}
.wsc_c03053{word-spacing:33.300288px;}
.ws11_c03053{word-spacing:34.836912px;}
.ws8_c03053{word-spacing:36.143712px;}
.ws1_c03053{word-spacing:37.759392px;}
.ws0_c03053{word-spacing:38.020752px;}
.ws3_c03053{word-spacing:39.218256px;}
.ws5_c03053{word-spacing:39.902544px;}
.ws7_c03053{word-spacing:42.026688px;}
.wsf_c03053{word-spacing:55.436832px;}
.wse_c03053{word-spacing:61.923312px;}
._b_c03053{margin-left:-3.084048px;}
._0_c03053{margin-left:-1.948320px;}
._5_c03053{width:1.054944px;}
._3_c03053{width:2.067120px;}
._4_c03053{width:3.302640px;}
._2_c03053{width:11.138688px;}
._7_c03053{width:21.650112px;}
._a_c03053{width:30.569616px;}
._1_c03053{width:50.252400px;}
._6_c03053{width:51.982128px;}
._9_c03053{width:71.707680px;}
._8_c03053{width:75.157632px;}
.fc0_c03053{color:rgb(0,0,0);}
.fs0_c03053{font-size:47.520000px;}
.fs1_c03053{font-size:60.480000px;}
.y0_c03053{bottom:0.000000px;}
.y1b_c03053{bottom:146.999550px;}
.y1d_c03053{bottom:186.600234px;}
.y1c_c03053{bottom:196.320450px;}
.y1a_c03053{bottom:245.999154px;}
.y19_c03053{bottom:260.758866px;}
.y18_c03053{bottom:275.878542px;}
.y17_c03053{bottom:356.878758px;}
.y15_c03053{bottom:406.559730px;}
.y11_c03053{bottom:424.560306px;}
.y16_c03053{bottom:458.759262px;}
.y14_c03053{bottom:491.879514px;}
.y13_c03053{bottom:509.880090px;}
.y10_c03053{bottom:543.000342px;}
.y12_c03053{bottom:559.559874px;}
.yf_c03053{bottom:577.560450px;}
.y1e_c03053{bottom:614.280450px;}
.yb_c03053{bottom:667.558326px;}
.yd_c03053{bottom:707.160234px;}
.yc_c03053{bottom:716.880450px;}
.ya_c03053{bottom:796.438506px;}
.y9_c03053{bottom:877.438722px;}
.y7_c03053{bottom:926.759730px;}
.y3_c03053{bottom:944.760306px;}
.y8_c03053{bottom:979.319226px;}
.y6_c03053{bottom:1012.439478px;}
.y5_c03053{bottom:1030.440054px;}
.y2_c03053{bottom:1063.560306px;}
.y4_c03053{bottom:1079.759874px;}
.y1_c03053{bottom:1097.760450px;}
.ye_c03053{bottom:1134.840450px;}
.h3_c03053{height:32.530781px;}
.h1_c03053{height:41.696016px;}
.h2_c03053{height:41.812031px;}
.h4_c03053{height:54.654737px;}
.h0_c03053{height:1263.000000px;}
.w1_c03053{width:892.500000px;}
.w0_c03053{width:892.830000px;}
.x0_c03053{left:0.000000px;}
.xd_c03053{left:117.000000px;}
.x8_c03053{left:440.999856px;}
.x4_c03053{left:445.680576px;}
.xb_c03053{left:451.080000px;}
.x7_c03053{left:455.399604px;}
.x5_c03053{left:461.880144px;}
.x1_c03053{left:463.320000px;}
.xa_c03053{left:483.480360px;}
.x9_c03053{left:492.119496px;}
.x6_c03053{left:493.200576px;}
.xc_c03053{left:506.880360px;}
.x3_c03053{left:511.919892px;}
.x2_c03053{left:526.679604px;}
.xe_c03053{left:569.880036px;}
@media print{
.v0_c03053{vertical-align:0.000000pt;}
.v1_c03053{vertical-align:1.279488pt;}
.ls10_c03053{letter-spacing:-1.064448pt;}
.lsd_c03053{letter-spacing:-0.705408pt;}
.ls8_c03053{letter-spacing:-0.544896pt;}
.lsa_c03053{letter-spacing:-0.511104pt;}
.ls12_c03053{letter-spacing:-0.321024pt;}
.lse_c03053{letter-spacing:-0.253440pt;}
.ls14_c03053{letter-spacing:-0.244992pt;}
.lsf_c03053{letter-spacing:-0.232320pt;}
.ls7_c03053{letter-spacing:-0.215424pt;}
.ls5_c03053{letter-spacing:-0.105600pt;}
.ls19_c03053{letter-spacing:-0.042240pt;}
.ls17_c03053{letter-spacing:0.000000pt;}
.ls2_c03053{letter-spacing:0.005376pt;}
.ls6_c03053{letter-spacing:0.114048pt;}
.ls11_c03053{letter-spacing:0.211200pt;}
.lsc_c03053{letter-spacing:0.451968pt;}
.ls16_c03053{letter-spacing:0.456960pt;}
.ls13_c03053{letter-spacing:0.477312pt;}
.lsb_c03053{letter-spacing:0.515328pt;}
.ls15_c03053{letter-spacing:0.528000pt;}
.ls9_c03053{letter-spacing:0.532224pt;}
.ls3_c03053{letter-spacing:0.544896pt;}
.ls18_c03053{letter-spacing:0.582912pt;}
.ls0_c03053{letter-spacing:0.595584pt;}
.ls4_c03053{letter-spacing:0.637824pt;}
.ls1_c03053{letter-spacing:0.642048pt;}
.wsd_c03053{word-spacing:-13.445376pt;}
.wsb_c03053{word-spacing:-11.088000pt;}
.ws6_c03053{word-spacing:-11.075328pt;}
.wsa_c03053{word-spacing:-11.037312pt;}
.ws9_c03053{word-spacing:-10.771200pt;}
.ws4_c03053{word-spacing:-10.344576pt;}
.ws2_c03053{word-spacing:-10.015104pt;}
.ws14_c03053{word-spacing:-2.196480pt;}
.ws16_c03053{word-spacing:-0.963072pt;}
.ws1d_c03053{word-spacing:-0.916608pt;}
.ws1e_c03053{word-spacing:-0.903936pt;}
.ws12_c03053{word-spacing:-0.865920pt;}
.ws1c_c03053{word-spacing:-0.639744pt;}
.ws1f_c03053{word-spacing:-0.278784pt;}
.ws15_c03053{word-spacing:-0.105600pt;}
.ws19_c03053{word-spacing:-0.088704pt;}
.ws1b_c03053{word-spacing:-0.076032pt;}
.ws18_c03053{word-spacing:-0.067584pt;}
.ws13_c03053{word-spacing:0.000000pt;}
.ws17_c03053{word-spacing:0.384384pt;}
.ws1a_c03053{word-spacing:0.743424pt;}
.ws10_c03053{word-spacing:21.115776pt;}
.wsc_c03053{word-spacing:29.600256pt;}
.ws11_c03053{word-spacing:30.966144pt;}
.ws8_c03053{word-spacing:32.127744pt;}
.ws1_c03053{word-spacing:33.563904pt;}
.ws0_c03053{word-spacing:33.796224pt;}
.ws3_c03053{word-spacing:34.860672pt;}
.ws5_c03053{word-spacing:35.468928pt;}
.ws7_c03053{word-spacing:37.357056pt;}
.wsf_c03053{word-spacing:49.277184pt;}
.wse_c03053{word-spacing:55.042944pt;}
._b_c03053{margin-left:-2.741376pt;}
._0_c03053{margin-left:-1.731840pt;}
._5_c03053{width:0.937728pt;}
._3_c03053{width:1.837440pt;}
._4_c03053{width:2.935680pt;}
._2_c03053{width:9.901056pt;}
._7_c03053{width:19.244544pt;}
._a_c03053{width:27.172992pt;}
._1_c03053{width:44.668800pt;}
._6_c03053{width:46.206336pt;}
._9_c03053{width:63.740160pt;}
._8_c03053{width:66.806784pt;}
.fs0_c03053{font-size:42.240000pt;}
.fs1_c03053{font-size:53.760000pt;}
.y0_c03053{bottom:0.000000pt;}
.y1b_c03053{bottom:130.666267pt;}
.y1d_c03053{bottom:165.866875pt;}
.y1c_c03053{bottom:174.507067pt;}
.y1a_c03053{bottom:218.665915pt;}
.y19_c03053{bottom:231.785659pt;}
.y18_c03053{bottom:245.225371pt;}
.y17_c03053{bottom:317.225563pt;}
.y15_c03053{bottom:361.386427pt;}
.y11_c03053{bottom:377.386939pt;}
.y16_c03053{bottom:407.786011pt;}
.y14_c03053{bottom:437.226235pt;}
.y13_c03053{bottom:453.226747pt;}
.y10_c03053{bottom:482.666971pt;}
.y12_c03053{bottom:497.386555pt;}
.yf_c03053{bottom:513.387067pt;}
.y1e_c03053{bottom:546.027067pt;}
.yb_c03053{bottom:593.385179pt;}
.yd_c03053{bottom:628.586875pt;}
.yc_c03053{bottom:637.227067pt;}
.ya_c03053{bottom:707.945339pt;}
.y9_c03053{bottom:779.945531pt;}
.y7_c03053{bottom:823.786427pt;}
.y3_c03053{bottom:839.786939pt;}
.y8_c03053{bottom:870.505979pt;}
.y6_c03053{bottom:899.946203pt;}
.y5_c03053{bottom:915.946715pt;}
.y2_c03053{bottom:945.386939pt;}
.y4_c03053{bottom:959.786555pt;}
.y1_c03053{bottom:975.787067pt;}
.ye_c03053{bottom:1008.747067pt;}
.h3_c03053{height:28.916250pt;}
.h1_c03053{height:37.063125pt;}
.h2_c03053{height:37.166250pt;}
.h4_c03053{height:48.581988pt;}
.h0_c03053{height:1122.666667pt;}
.w1_c03053{width:793.333333pt;}
.w0_c03053{width:793.626667pt;}
.x0_c03053{left:0.000000pt;}
.xd_c03053{left:104.000000pt;}
.x8_c03053{left:391.999872pt;}
.x4_c03053{left:396.160512pt;}
.xb_c03053{left:400.960000pt;}
.x7_c03053{left:404.799648pt;}
.x5_c03053{left:410.560128pt;}
.x1_c03053{left:411.840000pt;}
.xa_c03053{left:429.760320pt;}
.x9_c03053{left:437.439552pt;}
.x6_c03053{left:438.400512pt;}
.xc_c03053{left:450.560320pt;}
.x3_c03053{left:455.039904pt;}
.x2_c03053{left:468.159648pt;}
.xe_c03053{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03054 {
    display:none;
  }
  .loading-indicator_c03054.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03054 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03054 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03054" -> "#page-container .classname_c03054")
 */
.pf_c03054 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03054 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03054.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03054 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03054 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03054 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03054 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03054 {overflow:visible;}
  }
}
.c_c03054 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03054 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03054:after { /* webkit #35443 */
  content: '';
}
.t_c03054:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03054 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03054 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03054 { /* info for Javascript */
  display:none;
}
.l_c03054 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03054 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03054 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03054:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03054 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03054.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03054.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03054 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03054;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03054{font-family:ff1_c03054;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03054;src:url('chunks/assets/font_1bd54a0e28dc26aa9e957605.woff2')format("woff");}.ff2_c03054{font-family:ff2_c03054;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03054;src:url('chunks/assets/font_501d5e6f24ab400933c978cf.woff2')format("woff");}.ff3_c03054{font-family:ff3_c03054;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03054{vertical-align:0.000000px;}
.v2_c03054{vertical-align:1.439424px;}
.v1_c03054{vertical-align:33.121440px;}
.ls10_c03054{letter-spacing:-1.197504px;}
.ls1b_c03054{letter-spacing:-0.793584px;}
.lsc_c03054{letter-spacing:-0.765072px;}
.ls1a_c03054{letter-spacing:-0.722304px;}
.ls9_c03054{letter-spacing:-0.613008px;}
.lsa_c03054{letter-spacing:-0.574992px;}
.ls1c_c03054{letter-spacing:-0.380160px;}
.ls16_c03054{letter-spacing:-0.370656px;}
.ls12_c03054{letter-spacing:-0.361152px;}
.ls6_c03054{letter-spacing:-0.289872px;}
.ls14_c03054{letter-spacing:-0.275616px;}
.ls19_c03054{letter-spacing:-0.266112px;}
.lsf_c03054{letter-spacing:-0.261360px;}
.ls8_c03054{letter-spacing:-0.242352px;}
.lse_c03054{letter-spacing:-0.237600px;}
.ls5_c03054{letter-spacing:-0.118800px;}
.ls18_c03054{letter-spacing:0.000000px;}
.ls2_c03054{letter-spacing:0.006048px;}
.ls7_c03054{letter-spacing:0.128304px;}
.ls11_c03054{letter-spacing:0.237600px;}
.lsd_c03054{letter-spacing:0.508464px;}
.ls17_c03054{letter-spacing:0.514080px;}
.ls13_c03054{letter-spacing:0.536976px;}
.lsb_c03054{letter-spacing:0.579744px;}
.ls15_c03054{letter-spacing:0.594000px;}
.ls0_c03054{letter-spacing:0.598752px;}
.ls3_c03054{letter-spacing:0.613008px;}
.ls4_c03054{letter-spacing:0.717552px;}
.ls1_c03054{letter-spacing:0.722304px;}
.sc__c03054{text-shadow:none;}
.sc0_c03054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03054{-webkit-text-stroke:0px transparent;}
.sc0_c03054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12_c03054{word-spacing:-15.126048px;}
.ws1_c03054{word-spacing:-12.478752px;}
.ws18_c03054{word-spacing:-12.474000px;}
.wse_c03054{word-spacing:-12.416976px;}
.wsc_c03054{word-spacing:-12.117600px;}
.ws0_c03054{word-spacing:-11.761200px;}
.ws5_c03054{word-spacing:-11.637648px;}
.ws3_c03054{word-spacing:-11.266992px;}
.ws1d_c03054{word-spacing:-1.083456px;}
.ws19_c03054{word-spacing:-0.974160px;}
.ws21_c03054{word-spacing:-0.719712px;}
.ws1c_c03054{word-spacing:-0.118800px;}
.ws1f_c03054{word-spacing:-0.099792px;}
.ws22_c03054{word-spacing:-0.095040px;}
.ws20_c03054{word-spacing:-0.085536px;}
.ws1b_c03054{word-spacing:-0.071280px;}
.ws1a_c03054{word-spacing:0.000000px;}
.ws25_c03054{word-spacing:0.019008px;}
.ws23_c03054{word-spacing:0.361152px;}
.ws1e_c03054{word-spacing:0.403920px;}
.ws24_c03054{word-spacing:0.432432px;}
.ws10_c03054{word-spacing:2.903472px;}
.ws14_c03054{word-spacing:11.357280px;}
.ws15_c03054{word-spacing:13.595472px;}
.wsa_c03054{word-spacing:21.355488px;}
.wsf_c03054{word-spacing:30.298752px;}
.ws16_c03054{word-spacing:30.954528px;}
.ws11_c03054{word-spacing:33.300288px;}
.ws17_c03054{word-spacing:34.836912px;}
.ws9_c03054{word-spacing:36.143712px;}
.ws7_c03054{word-spacing:36.742464px;}
.ws2_c03054{word-spacing:37.759392px;}
.ws13_c03054{word-spacing:38.020752px;}
.ws4_c03054{word-spacing:39.218256px;}
.ws6_c03054{word-spacing:39.902544px;}
.ws8_c03054{word-spacing:42.026688px;}
.wsd_c03054{word-spacing:59.043600px;}
.wsb_c03054{word-spacing:63.596016px;}
._0_c03054{margin-left:-1.948320px;}
._2_c03054{width:1.506384px;}
._4_c03054{width:3.302640px;}
._8_c03054{width:16.826832px;}
._7_c03054{width:23.745744px;}
._b_c03054{width:26.416368px;}
._9_c03054{width:30.156192px;}
._a_c03054{width:33.116688px;}
._5_c03054{width:37.146384px;}
._d_c03054{width:47.329920px;}
._c_c03054{width:48.641472px;}
._1_c03054{width:50.252400px;}
._3_c03054{width:51.435648px;}
._6_c03054{width:65.615616px;}
.fc0_c03054{color:rgb(0,0,0);}
.fs0_c03054{font-size:47.520000px;}
.fs1_c03054{font-size:60.480000px;}
.y0_c03054{bottom:0.000000px;}
.y4_c03054{bottom:18.360450px;}
.y20_c03054{bottom:146.998362px;}
.y22_c03054{bottom:186.600234px;}
.y21_c03054{bottom:196.320450px;}
.y1f_c03054{bottom:260.758866px;}
.y1e_c03054{bottom:275.878542px;}
.y1d_c03054{bottom:341.759082px;}
.y1c_c03054{bottom:356.878758px;}
.y1a_c03054{bottom:406.559730px;}
.y16_c03054{bottom:424.560306px;}
.y1b_c03054{bottom:458.759262px;}
.y19_c03054{bottom:491.879514px;}
.y18_c03054{bottom:509.880090px;}
.y15_c03054{bottom:543.000342px;}
.y17_c03054{bottom:559.559874px;}
.y14_c03054{bottom:577.560450px;}
.y23_c03054{bottom:614.280450px;}
.yf_c03054{bottom:667.559658px;}
.y12_c03054{bottom:700.320918px;}
.y11_c03054{bottom:707.160234px;}
.y10_c03054{bottom:716.880450px;}
.ye_c03054{bottom:781.320162px;}
.yd_c03054{bottom:796.439838px;}
.yc_c03054{bottom:862.319190px;}
.yb_c03054{bottom:877.438866px;}
.y9_c03054{bottom:926.759874px;}
.y5_c03054{bottom:944.760450px;}
.ya_c03054{bottom:979.319370px;}
.y8_c03054{bottom:1012.439622px;}
.y7_c03054{bottom:1030.440198px;}
.y3_c03054{bottom:1045.200000px;}
.y2_c03054{bottom:1063.560306px;}
.y6_c03054{bottom:1079.760018px;}
.y1_c03054{bottom:1097.760450px;}
.y13_c03054{bottom:1134.840450px;}
.h3_c03054{height:29.520000px;}
.h2_c03054{height:32.530781px;}
.h1_c03054{height:41.696016px;}
.h4_c03054{height:41.812031px;}
.h6_c03054{height:54.654737px;}
.h5_c03054{height:74.817456px;}
.h0_c03054{height:1263.000000px;}
.w2_c03054{width:215.280000px;}
.w1_c03054{width:892.500000px;}
.w0_c03054{width:892.830000px;}
.x0_c03054{left:0.000000px;}
.xe_c03054{left:117.000000px;}
.x9_c03054{left:440.999964px;}
.x5_c03054{left:445.680684px;}
.xc_c03054{left:451.080000px;}
.x8_c03054{left:455.399712px;}
.x6_c03054{left:461.880252px;}
.x1_c03054{left:463.320000px;}
.xb_c03054{left:483.480468px;}
.xa_c03054{left:492.119604px;}
.x7_c03054{left:493.200684px;}
.xd_c03054{left:506.880360px;}
.x4_c03054{left:511.920000px;}
.x2_c03054{left:526.679604px;}
.x3_c03054{left:569.520000px;}
@media print{
.v0_c03054{vertical-align:0.000000pt;}
.v2_c03054{vertical-align:1.279488pt;}
.v1_c03054{vertical-align:29.441280pt;}
.ls10_c03054{letter-spacing:-1.064448pt;}
.ls1b_c03054{letter-spacing:-0.705408pt;}
.lsc_c03054{letter-spacing:-0.680064pt;}
.ls1a_c03054{letter-spacing:-0.642048pt;}
.ls9_c03054{letter-spacing:-0.544896pt;}
.lsa_c03054{letter-spacing:-0.511104pt;}
.ls1c_c03054{letter-spacing:-0.337920pt;}
.ls16_c03054{letter-spacing:-0.329472pt;}
.ls12_c03054{letter-spacing:-0.321024pt;}
.ls6_c03054{letter-spacing:-0.257664pt;}
.ls14_c03054{letter-spacing:-0.244992pt;}
.ls19_c03054{letter-spacing:-0.236544pt;}
.lsf_c03054{letter-spacing:-0.232320pt;}
.ls8_c03054{letter-spacing:-0.215424pt;}
.lse_c03054{letter-spacing:-0.211200pt;}
.ls5_c03054{letter-spacing:-0.105600pt;}
.ls18_c03054{letter-spacing:0.000000pt;}
.ls2_c03054{letter-spacing:0.005376pt;}
.ls7_c03054{letter-spacing:0.114048pt;}
.ls11_c03054{letter-spacing:0.211200pt;}
.lsd_c03054{letter-spacing:0.451968pt;}
.ls17_c03054{letter-spacing:0.456960pt;}
.ls13_c03054{letter-spacing:0.477312pt;}
.lsb_c03054{letter-spacing:0.515328pt;}
.ls15_c03054{letter-spacing:0.528000pt;}
.ls0_c03054{letter-spacing:0.532224pt;}
.ls3_c03054{letter-spacing:0.544896pt;}
.ls4_c03054{letter-spacing:0.637824pt;}
.ls1_c03054{letter-spacing:0.642048pt;}
.ws12_c03054{word-spacing:-13.445376pt;}
.ws1_c03054{word-spacing:-11.092224pt;}
.ws18_c03054{word-spacing:-11.088000pt;}
.wse_c03054{word-spacing:-11.037312pt;}
.wsc_c03054{word-spacing:-10.771200pt;}
.ws0_c03054{word-spacing:-10.454400pt;}
.ws5_c03054{word-spacing:-10.344576pt;}
.ws3_c03054{word-spacing:-10.015104pt;}
.ws1d_c03054{word-spacing:-0.963072pt;}
.ws19_c03054{word-spacing:-0.865920pt;}
.ws21_c03054{word-spacing:-0.639744pt;}
.ws1c_c03054{word-spacing:-0.105600pt;}
.ws1f_c03054{word-spacing:-0.088704pt;}
.ws22_c03054{word-spacing:-0.084480pt;}
.ws20_c03054{word-spacing:-0.076032pt;}
.ws1b_c03054{word-spacing:-0.063360pt;}
.ws1a_c03054{word-spacing:0.000000pt;}
.ws25_c03054{word-spacing:0.016896pt;}
.ws23_c03054{word-spacing:0.321024pt;}
.ws1e_c03054{word-spacing:0.359040pt;}
.ws24_c03054{word-spacing:0.384384pt;}
.ws10_c03054{word-spacing:2.580864pt;}
.ws14_c03054{word-spacing:10.095360pt;}
.ws15_c03054{word-spacing:12.084864pt;}
.wsa_c03054{word-spacing:18.982656pt;}
.wsf_c03054{word-spacing:26.932224pt;}
.ws16_c03054{word-spacing:27.515136pt;}
.ws11_c03054{word-spacing:29.600256pt;}
.ws17_c03054{word-spacing:30.966144pt;}
.ws9_c03054{word-spacing:32.127744pt;}
.ws7_c03054{word-spacing:32.659968pt;}
.ws2_c03054{word-spacing:33.563904pt;}
.ws13_c03054{word-spacing:33.796224pt;}
.ws4_c03054{word-spacing:34.860672pt;}
.ws6_c03054{word-spacing:35.468928pt;}
.ws8_c03054{word-spacing:37.357056pt;}
.wsd_c03054{word-spacing:52.483200pt;}
.wsb_c03054{word-spacing:56.529792pt;}
._0_c03054{margin-left:-1.731840pt;}
._2_c03054{width:1.339008pt;}
._4_c03054{width:2.935680pt;}
._8_c03054{width:14.957184pt;}
._7_c03054{width:21.107328pt;}
._b_c03054{width:23.481216pt;}
._9_c03054{width:26.805504pt;}
._a_c03054{width:29.437056pt;}
._5_c03054{width:33.019008pt;}
._d_c03054{width:42.071040pt;}
._c_c03054{width:43.236864pt;}
._1_c03054{width:44.668800pt;}
._3_c03054{width:45.720576pt;}
._6_c03054{width:58.324992pt;}
.fs0_c03054{font-size:42.240000pt;}
.fs1_c03054{font-size:53.760000pt;}
.y0_c03054{bottom:0.000000pt;}
.y4_c03054{bottom:16.320400pt;}
.y20_c03054{bottom:130.665211pt;}
.y22_c03054{bottom:165.866875pt;}
.y21_c03054{bottom:174.507067pt;}
.y1f_c03054{bottom:231.785659pt;}
.y1e_c03054{bottom:245.225371pt;}
.y1d_c03054{bottom:303.785851pt;}
.y1c_c03054{bottom:317.225563pt;}
.y1a_c03054{bottom:361.386427pt;}
.y16_c03054{bottom:377.386939pt;}
.y1b_c03054{bottom:407.786011pt;}
.y19_c03054{bottom:437.226235pt;}
.y18_c03054{bottom:453.226747pt;}
.y15_c03054{bottom:482.666971pt;}
.y17_c03054{bottom:497.386555pt;}
.y14_c03054{bottom:513.387067pt;}
.y23_c03054{bottom:546.027067pt;}
.yf_c03054{bottom:593.386363pt;}
.y12_c03054{bottom:622.507483pt;}
.y11_c03054{bottom:628.586875pt;}
.y10_c03054{bottom:637.227067pt;}
.ye_c03054{bottom:694.506811pt;}
.yd_c03054{bottom:707.946523pt;}
.yc_c03054{bottom:766.505947pt;}
.yb_c03054{bottom:779.945659pt;}
.y9_c03054{bottom:823.786555pt;}
.y5_c03054{bottom:839.787067pt;}
.ya_c03054{bottom:870.506107pt;}
.y8_c03054{bottom:899.946331pt;}
.y7_c03054{bottom:915.946843pt;}
.y3_c03054{bottom:929.066667pt;}
.y2_c03054{bottom:945.386939pt;}
.y6_c03054{bottom:959.786683pt;}
.y1_c03054{bottom:975.787067pt;}
.y13_c03054{bottom:1008.747067pt;}
.h3_c03054{height:26.240000pt;}
.h2_c03054{height:28.916250pt;}
.h1_c03054{height:37.063125pt;}
.h4_c03054{height:37.166250pt;}
.h6_c03054{height:48.581988pt;}
.h5_c03054{height:66.504405pt;}
.h0_c03054{height:1122.666667pt;}
.w2_c03054{width:191.360000pt;}
.w1_c03054{width:793.333333pt;}
.w0_c03054{width:793.626667pt;}
.x0_c03054{left:0.000000pt;}
.xe_c03054{left:104.000000pt;}
.x9_c03054{left:391.999968pt;}
.x5_c03054{left:396.160608pt;}
.xc_c03054{left:400.960000pt;}
.x8_c03054{left:404.799744pt;}
.x6_c03054{left:410.560224pt;}
.x1_c03054{left:411.840000pt;}
.xb_c03054{left:429.760416pt;}
.xa_c03054{left:437.439648pt;}
.x7_c03054{left:438.400608pt;}
.xd_c03054{left:450.560320pt;}
.x4_c03054{left:455.040000pt;}
.x2_c03054{left:468.159648pt;}
.x3_c03054{left:506.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03055 {
    display:none;
  }
  .loading-indicator_c03055.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03055 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03055 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03055" -> "#page-container .classname_c03055")
 */
.pf_c03055 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03055 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03055.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03055 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03055 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03055 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03055 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03055 {overflow:visible;}
  }
}
.c_c03055 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03055 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03055:after { /* webkit #35443 */
  content: '';
}
.t_c03055:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03055 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03055 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03055 { /* info for Javascript */
  display:none;
}
.l_c03055 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03055 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03055 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03055:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03055 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03055.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03055.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03055 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03055{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03055;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03055{font-family:ff1_c03055;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03055;src:url('chunks/assets/font_b1c59800a431b33b52f54ead.woff2')format("woff");}.ff2_c03055{font-family:ff2_c03055;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03055;src:url('chunks/assets/font_867a608421d3490868d117f0.woff2')format("woff");}.ff3_c03055{font-family:ff3_c03055;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03055{vertical-align:0.000000px;}
.v1_c03055{vertical-align:1.439424px;}
.ls12_c03055{letter-spacing:-0.693792px;}
.ls8_c03055{letter-spacing:-0.613008px;}
.ls9_c03055{letter-spacing:-0.574992px;}
.lse_c03055{letter-spacing:-0.275616px;}
.lsc_c03055{letter-spacing:-0.261360px;}
.ls7_c03055{letter-spacing:-0.242352px;}
.ls5_c03055{letter-spacing:-0.118800px;}
.ls11_c03055{letter-spacing:0.000000px;}
.ls2_c03055{letter-spacing:0.006048px;}
.ls6_c03055{letter-spacing:0.128304px;}
.lsb_c03055{letter-spacing:0.508464px;}
.ls10_c03055{letter-spacing:0.514080px;}
.lsd_c03055{letter-spacing:0.536976px;}
.lsa_c03055{letter-spacing:0.579744px;}
.lsf_c03055{letter-spacing:0.594000px;}
.ls0_c03055{letter-spacing:0.598752px;}
.ls4_c03055{letter-spacing:0.613008px;}
.ls3_c03055{letter-spacing:0.717552px;}
.ls1_c03055{letter-spacing:0.722304px;}
.sc__c03055{text-shadow:none;}
.sc0_c03055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03055{-webkit-text-stroke:0px transparent;}
.sc0_c03055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03055{word-spacing:-15.126048px;}
.ws1_c03055{word-spacing:-12.478752px;}
.wsb_c03055{word-spacing:-12.474000px;}
.ws9_c03055{word-spacing:-12.459744px;}
.wsa_c03055{word-spacing:-12.416976px;}
.ws0_c03055{word-spacing:-11.761200px;}
.ws5_c03055{word-spacing:-11.637648px;}
.ws3_c03055{word-spacing:-11.266992px;}
.ws13_c03055{word-spacing:-1.083456px;}
.ws17_c03055{word-spacing:-1.078704px;}
.ws10_c03055{word-spacing:-0.974160px;}
.ws16_c03055{word-spacing:-0.719712px;}
.ws12_c03055{word-spacing:-0.118800px;}
.ws14_c03055{word-spacing:-0.099792px;}
.ws15_c03055{word-spacing:-0.085536px;}
.ws11_c03055{word-spacing:0.000000px;}
.ws18_c03055{word-spacing:0.332640px;}
.wsc_c03055{word-spacing:33.300288px;}
.wsf_c03055{word-spacing:36.143712px;}
.ws7_c03055{word-spacing:36.742464px;}
.ws2_c03055{word-spacing:37.759392px;}
.wse_c03055{word-spacing:38.020752px;}
.ws4_c03055{word-spacing:39.218256px;}
.ws6_c03055{word-spacing:39.902544px;}
.ws8_c03055{word-spacing:42.026688px;}
._0_c03055{margin-left:-1.948320px;}
._2_c03055{width:1.482624px;}
._4_c03055{width:3.302640px;}
._1_c03055{width:50.252400px;}
._3_c03055{width:51.530688px;}
.fc0_c03055{color:rgb(0,0,0);}
.fs0_c03055{font-size:47.520000px;}
.fs1_c03055{font-size:60.480000px;}
.y0_c03055{bottom:0.000000px;}
.y4_c03055{bottom:18.360450px;}
.y1b_c03055{bottom:146.998362px;}
.y1d_c03055{bottom:186.600234px;}
.y1c_c03055{bottom:196.320450px;}
.y1a_c03055{bottom:275.878542px;}
.y19_c03055{bottom:356.878758px;}
.y17_c03055{bottom:406.559730px;}
.y13_c03055{bottom:424.560306px;}
.y18_c03055{bottom:458.759262px;}
.y16_c03055{bottom:491.879514px;}
.y15_c03055{bottom:509.880090px;}
.y12_c03055{bottom:543.000342px;}
.y14_c03055{bottom:559.559874px;}
.y11_c03055{bottom:577.560450px;}
.y1e_c03055{bottom:614.280450px;}
.yd_c03055{bottom:667.558470px;}
.yf_c03055{bottom:707.160234px;}
.ye_c03055{bottom:716.880450px;}
.yc_c03055{bottom:796.438650px;}
.yb_c03055{bottom:877.438866px;}
.y9_c03055{bottom:926.759874px;}
.y5_c03055{bottom:944.760450px;}
.ya_c03055{bottom:979.319370px;}
.y8_c03055{bottom:1012.439622px;}
.y7_c03055{bottom:1030.440198px;}
.y3_c03055{bottom:1045.200000px;}
.y2_c03055{bottom:1063.560306px;}
.y6_c03055{bottom:1079.760018px;}
.y1_c03055{bottom:1097.760450px;}
.y10_c03055{bottom:1134.840450px;}
.h3_c03055{height:29.520000px;}
.h2_c03055{height:32.530781px;}
.h1_c03055{height:41.696016px;}
.h4_c03055{height:41.812031px;}
.h5_c03055{height:54.654737px;}
.h0_c03055{height:1263.000000px;}
.w2_c03055{width:215.280000px;}
.w1_c03055{width:892.500000px;}
.w0_c03055{width:892.830000px;}
.x0_c03055{left:0.000000px;}
.xe_c03055{left:117.000000px;}
.x9_c03055{left:440.999964px;}
.x5_c03055{left:445.680684px;}
.xc_c03055{left:451.080000px;}
.x8_c03055{left:455.399712px;}
.x6_c03055{left:461.880252px;}
.x1_c03055{left:463.320000px;}
.xb_c03055{left:483.480468px;}
.xa_c03055{left:492.119604px;}
.x7_c03055{left:493.200684px;}
.xd_c03055{left:506.880360px;}
.x4_c03055{left:511.920000px;}
.x2_c03055{left:526.679604px;}
.x3_c03055{left:569.520000px;}
@media print{
.v0_c03055{vertical-align:0.000000pt;}
.v1_c03055{vertical-align:1.279488pt;}
.ls12_c03055{letter-spacing:-0.616704pt;}
.ls8_c03055{letter-spacing:-0.544896pt;}
.ls9_c03055{letter-spacing:-0.511104pt;}
.lse_c03055{letter-spacing:-0.244992pt;}
.lsc_c03055{letter-spacing:-0.232320pt;}
.ls7_c03055{letter-spacing:-0.215424pt;}
.ls5_c03055{letter-spacing:-0.105600pt;}
.ls11_c03055{letter-spacing:0.000000pt;}
.ls2_c03055{letter-spacing:0.005376pt;}
.ls6_c03055{letter-spacing:0.114048pt;}
.lsb_c03055{letter-spacing:0.451968pt;}
.ls10_c03055{letter-spacing:0.456960pt;}
.lsd_c03055{letter-spacing:0.477312pt;}
.lsa_c03055{letter-spacing:0.515328pt;}
.lsf_c03055{letter-spacing:0.528000pt;}
.ls0_c03055{letter-spacing:0.532224pt;}
.ls4_c03055{letter-spacing:0.544896pt;}
.ls3_c03055{letter-spacing:0.637824pt;}
.ls1_c03055{letter-spacing:0.642048pt;}
.wsd_c03055{word-spacing:-13.445376pt;}
.ws1_c03055{word-spacing:-11.092224pt;}
.wsb_c03055{word-spacing:-11.088000pt;}
.ws9_c03055{word-spacing:-11.075328pt;}
.wsa_c03055{word-spacing:-11.037312pt;}
.ws0_c03055{word-spacing:-10.454400pt;}
.ws5_c03055{word-spacing:-10.344576pt;}
.ws3_c03055{word-spacing:-10.015104pt;}
.ws13_c03055{word-spacing:-0.963072pt;}
.ws17_c03055{word-spacing:-0.958848pt;}
.ws10_c03055{word-spacing:-0.865920pt;}
.ws16_c03055{word-spacing:-0.639744pt;}
.ws12_c03055{word-spacing:-0.105600pt;}
.ws14_c03055{word-spacing:-0.088704pt;}
.ws15_c03055{word-spacing:-0.076032pt;}
.ws11_c03055{word-spacing:0.000000pt;}
.ws18_c03055{word-spacing:0.295680pt;}
.wsc_c03055{word-spacing:29.600256pt;}
.wsf_c03055{word-spacing:32.127744pt;}
.ws7_c03055{word-spacing:32.659968pt;}
.ws2_c03055{word-spacing:33.563904pt;}
.wse_c03055{word-spacing:33.796224pt;}
.ws4_c03055{word-spacing:34.860672pt;}
.ws6_c03055{word-spacing:35.468928pt;}
.ws8_c03055{word-spacing:37.357056pt;}
._0_c03055{margin-left:-1.731840pt;}
._2_c03055{width:1.317888pt;}
._4_c03055{width:2.935680pt;}
._1_c03055{width:44.668800pt;}
._3_c03055{width:45.805056pt;}
.fs0_c03055{font-size:42.240000pt;}
.fs1_c03055{font-size:53.760000pt;}
.y0_c03055{bottom:0.000000pt;}
.y4_c03055{bottom:16.320400pt;}
.y1b_c03055{bottom:130.665211pt;}
.y1d_c03055{bottom:165.866875pt;}
.y1c_c03055{bottom:174.507067pt;}
.y1a_c03055{bottom:245.225371pt;}
.y19_c03055{bottom:317.225563pt;}
.y17_c03055{bottom:361.386427pt;}
.y13_c03055{bottom:377.386939pt;}
.y18_c03055{bottom:407.786011pt;}
.y16_c03055{bottom:437.226235pt;}
.y15_c03055{bottom:453.226747pt;}
.y12_c03055{bottom:482.666971pt;}
.y14_c03055{bottom:497.386555pt;}
.y11_c03055{bottom:513.387067pt;}
.y1e_c03055{bottom:546.027067pt;}
.yd_c03055{bottom:593.385307pt;}
.yf_c03055{bottom:628.586875pt;}
.ye_c03055{bottom:637.227067pt;}
.yc_c03055{bottom:707.945467pt;}
.yb_c03055{bottom:779.945659pt;}
.y9_c03055{bottom:823.786555pt;}
.y5_c03055{bottom:839.787067pt;}
.ya_c03055{bottom:870.506107pt;}
.y8_c03055{bottom:899.946331pt;}
.y7_c03055{bottom:915.946843pt;}
.y3_c03055{bottom:929.066667pt;}
.y2_c03055{bottom:945.386939pt;}
.y6_c03055{bottom:959.786683pt;}
.y1_c03055{bottom:975.787067pt;}
.y10_c03055{bottom:1008.747067pt;}
.h3_c03055{height:26.240000pt;}
.h2_c03055{height:28.916250pt;}
.h1_c03055{height:37.063125pt;}
.h4_c03055{height:37.166250pt;}
.h5_c03055{height:48.581988pt;}
.h0_c03055{height:1122.666667pt;}
.w2_c03055{width:191.360000pt;}
.w1_c03055{width:793.333333pt;}
.w0_c03055{width:793.626667pt;}
.x0_c03055{left:0.000000pt;}
.xe_c03055{left:104.000000pt;}
.x9_c03055{left:391.999968pt;}
.x5_c03055{left:396.160608pt;}
.xc_c03055{left:400.960000pt;}
.x8_c03055{left:404.799744pt;}
.x6_c03055{left:410.560224pt;}
.x1_c03055{left:411.840000pt;}
.xb_c03055{left:429.760416pt;}
.xa_c03055{left:437.439648pt;}
.x7_c03055{left:438.400608pt;}
.xd_c03055{left:450.560320pt;}
.x4_c03055{left:455.040000pt;}
.x2_c03055{left:468.159648pt;}
.x3_c03055{left:506.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03056 {
    display:none;
  }
  .loading-indicator_c03056.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03056 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03056 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03056" -> "#page-container .classname_c03056")
 */
.pf_c03056 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03056 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03056.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03056 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03056 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03056 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03056 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03056 {overflow:visible;}
  }
}
.c_c03056 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03056 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03056:after { /* webkit #35443 */
  content: '';
}
.t_c03056:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03056 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03056 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03056 { /* info for Javascript */
  display:none;
}
.l_c03056 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03056 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03056 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03056:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03056 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03056.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03056.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03056 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03056;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03056{font-family:ff1_c03056;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03056;src:url('chunks/assets/font_8be60aeb3e7db57cc46e9eef.woff2')format("woff");}.ff2_c03056{font-family:ff2_c03056;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03056;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03056{font-family:ff3_c03056;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03056{vertical-align:0.000000px;}
.v2_c03056{vertical-align:1.439424px;}
.v1_c03056{vertical-align:33.121440px;}
.lsc_c03056{letter-spacing:-0.793584px;}
.lsa_c03056{letter-spacing:-0.736560px;}
.ls6_c03056{letter-spacing:-0.613008px;}
.ls8_c03056{letter-spacing:-0.574992px;}
.lse_c03056{letter-spacing:-0.375408px;}
.ls10_c03056{letter-spacing:-0.275616px;}
.lsd_c03056{letter-spacing:-0.261360px;}
.ls5_c03056{letter-spacing:-0.242352px;}
.ls3_c03056{letter-spacing:-0.118800px;}
.ls14_c03056{letter-spacing:0.000000px;}
.ls1_c03056{letter-spacing:0.006048px;}
.ls4_c03056{letter-spacing:0.128304px;}
.lsb_c03056{letter-spacing:0.508464px;}
.ls13_c03056{letter-spacing:0.514080px;}
.lsf_c03056{letter-spacing:0.536976px;}
.ls9_c03056{letter-spacing:0.579744px;}
.ls11_c03056{letter-spacing:0.594000px;}
.ls7_c03056{letter-spacing:0.598752px;}
.ls2_c03056{letter-spacing:0.613008px;}
.ls0_c03056{letter-spacing:0.717552px;}
.ls12_c03056{letter-spacing:0.722304px;}
.sc__c03056{text-shadow:none;}
.sc0_c03056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03056{-webkit-text-stroke:0px transparent;}
.sc0_c03056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03056{word-spacing:-15.126048px;}
.wsf_c03056{word-spacing:-12.474000px;}
.wsd_c03056{word-spacing:-12.459744px;}
.wse_c03056{word-spacing:-12.416976px;}
.ws4_c03056{word-spacing:-11.637648px;}
.ws2_c03056{word-spacing:-11.266992px;}
.ws19_c03056{word-spacing:-1.083456px;}
.ws13_c03056{word-spacing:-1.078704px;}
.ws10_c03056{word-spacing:-0.974160px;}
.ws1a_c03056{word-spacing:-0.719712px;}
.ws12_c03056{word-spacing:-0.118800px;}
.ws16_c03056{word-spacing:-0.099792px;}
.ws18_c03056{word-spacing:-0.085536px;}
.ws11_c03056{word-spacing:0.000000px;}
.ws17_c03056{word-spacing:0.014256px;}
.ws14_c03056{word-spacing:0.375408px;}
.ws15_c03056{word-spacing:0.432432px;}
.wsa_c03056{word-spacing:30.298752px;}
.wsb_c03056{word-spacing:33.300288px;}
.ws9_c03056{word-spacing:34.836912px;}
.ws8_c03056{word-spacing:36.143712px;}
.ws6_c03056{word-spacing:36.742464px;}
.ws1_c03056{word-spacing:37.759392px;}
.ws0_c03056{word-spacing:38.020752px;}
.ws3_c03056{word-spacing:39.218256px;}
.ws5_c03056{word-spacing:39.902544px;}
.ws7_c03056{word-spacing:42.026688px;}
._0_c03056{margin-left:-1.948320px;}
._2_c03056{width:1.482624px;}
._4_c03056{width:3.302640px;}
._5_c03056{width:4.329072px;}
._1_c03056{width:50.252400px;}
._3_c03056{width:51.530688px;}
.fc0_c03056{color:rgb(0,0,0);}
.fs0_c03056{font-size:47.520000px;}
.fs1_c03056{font-size:60.480000px;}
.y0_c03056{bottom:0.000000px;}
.y19_c03056{bottom:146.998362px;}
.y1b_c03056{bottom:186.600234px;}
.y1a_c03056{bottom:196.320450px;}
.y18_c03056{bottom:275.878542px;}
.y17_c03056{bottom:356.878758px;}
.y15_c03056{bottom:406.559730px;}
.y11_c03056{bottom:424.560306px;}
.y16_c03056{bottom:458.759262px;}
.y14_c03056{bottom:491.879514px;}
.y13_c03056{bottom:509.880090px;}
.y10_c03056{bottom:543.000342px;}
.y12_c03056{bottom:559.559874px;}
.yf_c03056{bottom:577.560450px;}
.y1c_c03056{bottom:614.280450px;}
.yb_c03056{bottom:667.558326px;}
.yd_c03056{bottom:707.160234px;}
.yc_c03056{bottom:716.880450px;}
.ya_c03056{bottom:796.438506px;}
.y9_c03056{bottom:877.438722px;}
.y7_c03056{bottom:926.759730px;}
.y3_c03056{bottom:944.760306px;}
.y8_c03056{bottom:979.319226px;}
.y6_c03056{bottom:1012.439478px;}
.y5_c03056{bottom:1030.440054px;}
.y2_c03056{bottom:1063.560306px;}
.y4_c03056{bottom:1079.759874px;}
.y1_c03056{bottom:1097.760450px;}
.ye_c03056{bottom:1134.840450px;}
.h3_c03056{height:32.530781px;}
.h1_c03056{height:41.696016px;}
.h2_c03056{height:41.812031px;}
.h5_c03056{height:54.654737px;}
.h4_c03056{height:74.817456px;}
.h0_c03056{height:1263.000000px;}
.w1_c03056{width:892.500000px;}
.w0_c03056{width:892.830000px;}
.x0_c03056{left:0.000000px;}
.xd_c03056{left:117.000000px;}
.x8_c03056{left:440.999856px;}
.x4_c03056{left:445.680576px;}
.xb_c03056{left:451.080000px;}
.x7_c03056{left:455.399604px;}
.x5_c03056{left:461.880144px;}
.x1_c03056{left:463.320000px;}
.xa_c03056{left:483.480360px;}
.x9_c03056{left:492.119496px;}
.x6_c03056{left:493.200576px;}
.xc_c03056{left:506.880360px;}
.x3_c03056{left:511.919892px;}
.x2_c03056{left:526.679604px;}
@media print{
.v0_c03056{vertical-align:0.000000pt;}
.v2_c03056{vertical-align:1.279488pt;}
.v1_c03056{vertical-align:29.441280pt;}
.lsc_c03056{letter-spacing:-0.705408pt;}
.lsa_c03056{letter-spacing:-0.654720pt;}
.ls6_c03056{letter-spacing:-0.544896pt;}
.ls8_c03056{letter-spacing:-0.511104pt;}
.lse_c03056{letter-spacing:-0.333696pt;}
.ls10_c03056{letter-spacing:-0.244992pt;}
.lsd_c03056{letter-spacing:-0.232320pt;}
.ls5_c03056{letter-spacing:-0.215424pt;}
.ls3_c03056{letter-spacing:-0.105600pt;}
.ls14_c03056{letter-spacing:0.000000pt;}
.ls1_c03056{letter-spacing:0.005376pt;}
.ls4_c03056{letter-spacing:0.114048pt;}
.lsb_c03056{letter-spacing:0.451968pt;}
.ls13_c03056{letter-spacing:0.456960pt;}
.lsf_c03056{letter-spacing:0.477312pt;}
.ls9_c03056{letter-spacing:0.515328pt;}
.ls11_c03056{letter-spacing:0.528000pt;}
.ls7_c03056{letter-spacing:0.532224pt;}
.ls2_c03056{letter-spacing:0.544896pt;}
.ls0_c03056{letter-spacing:0.637824pt;}
.ls12_c03056{letter-spacing:0.642048pt;}
.wsc_c03056{word-spacing:-13.445376pt;}
.wsf_c03056{word-spacing:-11.088000pt;}
.wsd_c03056{word-spacing:-11.075328pt;}
.wse_c03056{word-spacing:-11.037312pt;}
.ws4_c03056{word-spacing:-10.344576pt;}
.ws2_c03056{word-spacing:-10.015104pt;}
.ws19_c03056{word-spacing:-0.963072pt;}
.ws13_c03056{word-spacing:-0.958848pt;}
.ws10_c03056{word-spacing:-0.865920pt;}
.ws1a_c03056{word-spacing:-0.639744pt;}
.ws12_c03056{word-spacing:-0.105600pt;}
.ws16_c03056{word-spacing:-0.088704pt;}
.ws18_c03056{word-spacing:-0.076032pt;}
.ws11_c03056{word-spacing:0.000000pt;}
.ws17_c03056{word-spacing:0.012672pt;}
.ws14_c03056{word-spacing:0.333696pt;}
.ws15_c03056{word-spacing:0.384384pt;}
.wsa_c03056{word-spacing:26.932224pt;}
.wsb_c03056{word-spacing:29.600256pt;}
.ws9_c03056{word-spacing:30.966144pt;}
.ws8_c03056{word-spacing:32.127744pt;}
.ws6_c03056{word-spacing:32.659968pt;}
.ws1_c03056{word-spacing:33.563904pt;}
.ws0_c03056{word-spacing:33.796224pt;}
.ws3_c03056{word-spacing:34.860672pt;}
.ws5_c03056{word-spacing:35.468928pt;}
.ws7_c03056{word-spacing:37.357056pt;}
._0_c03056{margin-left:-1.731840pt;}
._2_c03056{width:1.317888pt;}
._4_c03056{width:2.935680pt;}
._5_c03056{width:3.848064pt;}
._1_c03056{width:44.668800pt;}
._3_c03056{width:45.805056pt;}
.fs0_c03056{font-size:42.240000pt;}
.fs1_c03056{font-size:53.760000pt;}
.y0_c03056{bottom:0.000000pt;}
.y19_c03056{bottom:130.665211pt;}
.y1b_c03056{bottom:165.866875pt;}
.y1a_c03056{bottom:174.507067pt;}
.y18_c03056{bottom:245.225371pt;}
.y17_c03056{bottom:317.225563pt;}
.y15_c03056{bottom:361.386427pt;}
.y11_c03056{bottom:377.386939pt;}
.y16_c03056{bottom:407.786011pt;}
.y14_c03056{bottom:437.226235pt;}
.y13_c03056{bottom:453.226747pt;}
.y10_c03056{bottom:482.666971pt;}
.y12_c03056{bottom:497.386555pt;}
.yf_c03056{bottom:513.387067pt;}
.y1c_c03056{bottom:546.027067pt;}
.yb_c03056{bottom:593.385179pt;}
.yd_c03056{bottom:628.586875pt;}
.yc_c03056{bottom:637.227067pt;}
.ya_c03056{bottom:707.945339pt;}
.y9_c03056{bottom:779.945531pt;}
.y7_c03056{bottom:823.786427pt;}
.y3_c03056{bottom:839.786939pt;}
.y8_c03056{bottom:870.505979pt;}
.y6_c03056{bottom:899.946203pt;}
.y5_c03056{bottom:915.946715pt;}
.y2_c03056{bottom:945.386939pt;}
.y4_c03056{bottom:959.786555pt;}
.y1_c03056{bottom:975.787067pt;}
.ye_c03056{bottom:1008.747067pt;}
.h3_c03056{height:28.916250pt;}
.h1_c03056{height:37.063125pt;}
.h2_c03056{height:37.166250pt;}
.h5_c03056{height:48.581988pt;}
.h4_c03056{height:66.504405pt;}
.h0_c03056{height:1122.666667pt;}
.w1_c03056{width:793.333333pt;}
.w0_c03056{width:793.626667pt;}
.x0_c03056{left:0.000000pt;}
.xd_c03056{left:104.000000pt;}
.x8_c03056{left:391.999872pt;}
.x4_c03056{left:396.160512pt;}
.xb_c03056{left:400.960000pt;}
.x7_c03056{left:404.799648pt;}
.x5_c03056{left:410.560128pt;}
.x1_c03056{left:411.840000pt;}
.xa_c03056{left:429.760320pt;}
.x9_c03056{left:437.439552pt;}
.x6_c03056{left:438.400512pt;}
.xc_c03056{left:450.560320pt;}
.x3_c03056{left:455.039904pt;}
.x2_c03056{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03057 {
    display:none;
  }
  .loading-indicator_c03057.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03057 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03057 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03057" -> "#page-container .classname_c03057")
 */
.pf_c03057 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03057 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03057 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03057 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03057 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03057 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03057 {overflow:visible;}
  }
}
.c_c03057 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03057 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03057:after { /* webkit #35443 */
  content: '';
}
.t_c03057:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03057 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03057 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03057 { /* info for Javascript */
  display:none;
}
.l_c03057 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03057 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03057 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03057:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03057 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03057.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03057 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03057;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03057{font-family:ff1_c03057;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03057;src:url('chunks/assets/font_697c3fdf045b65bee140cbba.woff2')format("woff");}.ff2_c03057{font-family:ff2_c03057;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03057;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03057{font-family:ff3_c03057;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03057{vertical-align:0.000000px;}
.v1_c03057{vertical-align:1.439424px;}
.lsc_c03057{letter-spacing:-0.793584px;}
.ls7_c03057{letter-spacing:-0.613008px;}
.ls9_c03057{letter-spacing:-0.574992px;}
.lse_c03057{letter-spacing:-0.375408px;}
.ls10_c03057{letter-spacing:-0.275616px;}
.lsd_c03057{letter-spacing:-0.261360px;}
.ls6_c03057{letter-spacing:-0.242352px;}
.ls4_c03057{letter-spacing:-0.118800px;}
.ls13_c03057{letter-spacing:0.000000px;}
.ls1_c03057{letter-spacing:0.006048px;}
.ls5_c03057{letter-spacing:0.128304px;}
.lsb_c03057{letter-spacing:0.508464px;}
.ls12_c03057{letter-spacing:0.514080px;}
.lsf_c03057{letter-spacing:0.536976px;}
.lsa_c03057{letter-spacing:0.579744px;}
.ls11_c03057{letter-spacing:0.594000px;}
.ls8_c03057{letter-spacing:0.598752px;}
.ls2_c03057{letter-spacing:0.613008px;}
.ls14_c03057{letter-spacing:0.617760px;}
.ls3_c03057{letter-spacing:0.717552px;}
.ls0_c03057{letter-spacing:0.722304px;}
.sc__c03057{text-shadow:none;}
.sc0_c03057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03057{-webkit-text-stroke:0px transparent;}
.sc0_c03057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03057{word-spacing:-15.126048px;}
.wsa_c03057{word-spacing:-12.474000px;}
.ws6_c03057{word-spacing:-12.459744px;}
.wsd_c03057{word-spacing:-12.416976px;}
.ws4_c03057{word-spacing:-11.637648px;}
.ws2_c03057{word-spacing:-11.266992px;}
.ws11_c03057{word-spacing:-1.083456px;}
.ws17_c03057{word-spacing:-0.978912px;}
.wse_c03057{word-spacing:-0.974160px;}
.ws16_c03057{word-spacing:-0.719712px;}
.ws10_c03057{word-spacing:-0.118800px;}
.ws13_c03057{word-spacing:-0.099792px;}
.ws15_c03057{word-spacing:-0.085536px;}
.wsf_c03057{word-spacing:0.000000px;}
.ws14_c03057{word-spacing:0.014256px;}
.ws12_c03057{word-spacing:0.432432px;}
.wsb_c03057{word-spacing:33.300288px;}
.ws9_c03057{word-spacing:34.836912px;}
.ws8_c03057{word-spacing:36.143712px;}
.ws1_c03057{word-spacing:37.759392px;}
.ws0_c03057{word-spacing:38.020752px;}
.ws3_c03057{word-spacing:39.218256px;}
.ws5_c03057{word-spacing:39.902544px;}
.ws7_c03057{word-spacing:42.026688px;}
._0_c03057{margin-left:-1.948320px;}
._2_c03057{width:1.482624px;}
._4_c03057{width:3.302640px;}
._1_c03057{width:50.252400px;}
._3_c03057{width:51.530688px;}
.fc0_c03057{color:rgb(0,0,0);}
.fs0_c03057{font-size:47.520000px;}
.fs1_c03057{font-size:60.480000px;}
.y0_c03057{bottom:0.000000px;}
.y19_c03057{bottom:146.998362px;}
.y1b_c03057{bottom:186.600234px;}
.y1a_c03057{bottom:196.320450px;}
.y18_c03057{bottom:275.878542px;}
.y17_c03057{bottom:356.878758px;}
.y15_c03057{bottom:406.559730px;}
.y11_c03057{bottom:424.560306px;}
.y16_c03057{bottom:458.759262px;}
.y14_c03057{bottom:491.879514px;}
.y13_c03057{bottom:509.880090px;}
.y10_c03057{bottom:543.000342px;}
.y12_c03057{bottom:559.559874px;}
.yf_c03057{bottom:577.560450px;}
.y1c_c03057{bottom:614.280450px;}
.yb_c03057{bottom:667.558326px;}
.yd_c03057{bottom:707.160234px;}
.yc_c03057{bottom:716.880450px;}
.ya_c03057{bottom:796.438506px;}
.y9_c03057{bottom:877.438722px;}
.y7_c03057{bottom:926.759730px;}
.y3_c03057{bottom:944.760306px;}
.y8_c03057{bottom:979.319226px;}
.y6_c03057{bottom:1012.439478px;}
.y5_c03057{bottom:1030.440054px;}
.y2_c03057{bottom:1063.560306px;}
.y4_c03057{bottom:1079.759874px;}
.y1_c03057{bottom:1097.760450px;}
.ye_c03057{bottom:1134.840450px;}
.h3_c03057{height:32.530781px;}
.h1_c03057{height:41.696016px;}
.h2_c03057{height:41.812031px;}
.h4_c03057{height:54.654737px;}
.h0_c03057{height:1263.000000px;}
.w1_c03057{width:892.500000px;}
.w0_c03057{width:892.830000px;}
.x0_c03057{left:0.000000px;}
.xd_c03057{left:117.000000px;}
.x8_c03057{left:440.999856px;}
.x4_c03057{left:445.680576px;}
.xb_c03057{left:451.080000px;}
.x7_c03057{left:455.399604px;}
.x5_c03057{left:461.880144px;}
.x1_c03057{left:463.320000px;}
.xa_c03057{left:483.480360px;}
.x9_c03057{left:492.119496px;}
.x6_c03057{left:493.200576px;}
.xc_c03057{left:506.880360px;}
.x3_c03057{left:511.919892px;}
.x2_c03057{left:526.679604px;}
@media print{
.v0_c03057{vertical-align:0.000000pt;}
.v1_c03057{vertical-align:1.279488pt;}
.lsc_c03057{letter-spacing:-0.705408pt;}
.ls7_c03057{letter-spacing:-0.544896pt;}
.ls9_c03057{letter-spacing:-0.511104pt;}
.lse_c03057{letter-spacing:-0.333696pt;}
.ls10_c03057{letter-spacing:-0.244992pt;}
.lsd_c03057{letter-spacing:-0.232320pt;}
.ls6_c03057{letter-spacing:-0.215424pt;}
.ls4_c03057{letter-spacing:-0.105600pt;}
.ls13_c03057{letter-spacing:0.000000pt;}
.ls1_c03057{letter-spacing:0.005376pt;}
.ls5_c03057{letter-spacing:0.114048pt;}
.lsb_c03057{letter-spacing:0.451968pt;}
.ls12_c03057{letter-spacing:0.456960pt;}
.lsf_c03057{letter-spacing:0.477312pt;}
.lsa_c03057{letter-spacing:0.515328pt;}
.ls11_c03057{letter-spacing:0.528000pt;}
.ls8_c03057{letter-spacing:0.532224pt;}
.ls2_c03057{letter-spacing:0.544896pt;}
.ls14_c03057{letter-spacing:0.549120pt;}
.ls3_c03057{letter-spacing:0.637824pt;}
.ls0_c03057{letter-spacing:0.642048pt;}
.wsc_c03057{word-spacing:-13.445376pt;}
.wsa_c03057{word-spacing:-11.088000pt;}
.ws6_c03057{word-spacing:-11.075328pt;}
.wsd_c03057{word-spacing:-11.037312pt;}
.ws4_c03057{word-spacing:-10.344576pt;}
.ws2_c03057{word-spacing:-10.015104pt;}
.ws11_c03057{word-spacing:-0.963072pt;}
.ws17_c03057{word-spacing:-0.870144pt;}
.wse_c03057{word-spacing:-0.865920pt;}
.ws16_c03057{word-spacing:-0.639744pt;}
.ws10_c03057{word-spacing:-0.105600pt;}
.ws13_c03057{word-spacing:-0.088704pt;}
.ws15_c03057{word-spacing:-0.076032pt;}
.wsf_c03057{word-spacing:0.000000pt;}
.ws14_c03057{word-spacing:0.012672pt;}
.ws12_c03057{word-spacing:0.384384pt;}
.wsb_c03057{word-spacing:29.600256pt;}
.ws9_c03057{word-spacing:30.966144pt;}
.ws8_c03057{word-spacing:32.127744pt;}
.ws1_c03057{word-spacing:33.563904pt;}
.ws0_c03057{word-spacing:33.796224pt;}
.ws3_c03057{word-spacing:34.860672pt;}
.ws5_c03057{word-spacing:35.468928pt;}
.ws7_c03057{word-spacing:37.357056pt;}
._0_c03057{margin-left:-1.731840pt;}
._2_c03057{width:1.317888pt;}
._4_c03057{width:2.935680pt;}
._1_c03057{width:44.668800pt;}
._3_c03057{width:45.805056pt;}
.fs0_c03057{font-size:42.240000pt;}
.fs1_c03057{font-size:53.760000pt;}
.y0_c03057{bottom:0.000000pt;}
.y19_c03057{bottom:130.665211pt;}
.y1b_c03057{bottom:165.866875pt;}
.y1a_c03057{bottom:174.507067pt;}
.y18_c03057{bottom:245.225371pt;}
.y17_c03057{bottom:317.225563pt;}
.y15_c03057{bottom:361.386427pt;}
.y11_c03057{bottom:377.386939pt;}
.y16_c03057{bottom:407.786011pt;}
.y14_c03057{bottom:437.226235pt;}
.y13_c03057{bottom:453.226747pt;}
.y10_c03057{bottom:482.666971pt;}
.y12_c03057{bottom:497.386555pt;}
.yf_c03057{bottom:513.387067pt;}
.y1c_c03057{bottom:546.027067pt;}
.yb_c03057{bottom:593.385179pt;}
.yd_c03057{bottom:628.586875pt;}
.yc_c03057{bottom:637.227067pt;}
.ya_c03057{bottom:707.945339pt;}
.y9_c03057{bottom:779.945531pt;}
.y7_c03057{bottom:823.786427pt;}
.y3_c03057{bottom:839.786939pt;}
.y8_c03057{bottom:870.505979pt;}
.y6_c03057{bottom:899.946203pt;}
.y5_c03057{bottom:915.946715pt;}
.y2_c03057{bottom:945.386939pt;}
.y4_c03057{bottom:959.786555pt;}
.y1_c03057{bottom:975.787067pt;}
.ye_c03057{bottom:1008.747067pt;}
.h3_c03057{height:28.916250pt;}
.h1_c03057{height:37.063125pt;}
.h2_c03057{height:37.166250pt;}
.h4_c03057{height:48.581988pt;}
.h0_c03057{height:1122.666667pt;}
.w1_c03057{width:793.333333pt;}
.w0_c03057{width:793.626667pt;}
.x0_c03057{left:0.000000pt;}
.xd_c03057{left:104.000000pt;}
.x8_c03057{left:391.999872pt;}
.x4_c03057{left:396.160512pt;}
.xb_c03057{left:400.960000pt;}
.x7_c03057{left:404.799648pt;}
.x5_c03057{left:410.560128pt;}
.x1_c03057{left:411.840000pt;}
.xa_c03057{left:429.760320pt;}
.x9_c03057{left:437.439552pt;}
.x6_c03057{left:438.400512pt;}
.xc_c03057{left:450.560320pt;}
.x3_c03057{left:455.039904pt;}
.x2_c03057{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03058 {
    display:none;
  }
  .loading-indicator_c03058.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03058 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03058 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03058" -> "#page-container .classname_c03058")
 */
.pf_c03058 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03058 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03058.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03058 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03058 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03058 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03058 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03058 {overflow:visible;}
  }
}
.c_c03058 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03058 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03058:after { /* webkit #35443 */
  content: '';
}
.t_c03058:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03058 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03058 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03058 { /* info for Javascript */
  display:none;
}
.l_c03058 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03058 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03058 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03058:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03058 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03058.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03058.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03058 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03058;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03058{font-family:ff1_c03058;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03058;src:url('chunks/assets/font_b41eebcdf6c6dc5277d02833.woff2')format("woff");}.ff2_c03058{font-family:ff2_c03058;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03058;src:url('chunks/assets/font_e229a3a10de62677f343449d.woff2')format("woff");}.ff3_c03058{font-family:ff3_c03058;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03058{vertical-align:0.000000px;}
.v1_c03058{vertical-align:1.439424px;}
.ls16_c03058{letter-spacing:-0.793584px;}
.ls10_c03058{letter-spacing:-0.736560px;}
.ls1b_c03058{letter-spacing:-0.718272px;}
.lsd_c03058{letter-spacing:-0.693792px;}
.ls8_c03058{letter-spacing:-0.613008px;}
.lsa_c03058{letter-spacing:-0.574992px;}
.ls15_c03058{letter-spacing:-0.275616px;}
.ls11_c03058{letter-spacing:-0.270864px;}
.lse_c03058{letter-spacing:-0.261360px;}
.ls19_c03058{letter-spacing:-0.256608px;}
.ls7_c03058{letter-spacing:-0.242352px;}
.ls1a_c03058{letter-spacing:-0.175824px;}
.ls5_c03058{letter-spacing:-0.118800px;}
.ls14_c03058{letter-spacing:0.000000px;}
.ls1_c03058{letter-spacing:0.006048px;}
.ls6_c03058{letter-spacing:0.128304px;}
.lsc_c03058{letter-spacing:0.508464px;}
.ls13_c03058{letter-spacing:0.514080px;}
.lsf_c03058{letter-spacing:0.536976px;}
.lsb_c03058{letter-spacing:0.579744px;}
.ls12_c03058{letter-spacing:0.594000px;}
.ls9_c03058{letter-spacing:0.598752px;}
.ls3_c03058{letter-spacing:0.613008px;}
.ls17_c03058{letter-spacing:0.636768px;}
.ls0_c03058{letter-spacing:0.651024px;}
.ls18_c03058{letter-spacing:0.684288px;}
.ls4_c03058{letter-spacing:0.717552px;}
.ls2_c03058{letter-spacing:0.722304px;}
.sc__c03058{text-shadow:none;}
.sc0_c03058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03058{-webkit-text-stroke:0px transparent;}
.sc0_c03058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03058{word-spacing:-15.126048px;}
.wsb_c03058{word-spacing:-12.474000px;}
.ws6_c03058{word-spacing:-12.459744px;}
.ws4_c03058{word-spacing:-11.637648px;}
.ws5_c03058{word-spacing:-11.305008px;}
.ws2_c03058{word-spacing:-11.266992px;}
.ws1d_c03058{word-spacing:-1.083456px;}
.ws1b_c03058{word-spacing:-1.012176px;}
.ws19_c03058{word-spacing:-0.974160px;}
.ws22_c03058{word-spacing:-0.719712px;}
.ws1c_c03058{word-spacing:-0.118800px;}
.ws24_c03058{word-spacing:-0.104544px;}
.ws1f_c03058{word-spacing:-0.099792px;}
.ws20_c03058{word-spacing:-0.090288px;}
.ws21_c03058{word-spacing:-0.085536px;}
.ws1a_c03058{word-spacing:0.000000px;}
.ws1e_c03058{word-spacing:0.332640px;}
.ws25_c03058{word-spacing:0.359136px;}
.ws23_c03058{word-spacing:0.432432px;}
.ws10_c03058{word-spacing:2.257200px;}
.ws13_c03058{word-spacing:2.280960px;}
.ws14_c03058{word-spacing:2.513808px;}
.ws12_c03058{word-spacing:3.787344px;}
.wsf_c03058{word-spacing:4.181760px;}
.ws11_c03058{word-spacing:4.633200px;}
.wsa_c03058{word-spacing:6.629040px;}
.ws17_c03058{word-spacing:9.358416px;}
.ws18_c03058{word-spacing:12.235680px;}
.ws15_c03058{word-spacing:13.676256px;}
.ws16_c03058{word-spacing:29.515968px;}
.wsc_c03058{word-spacing:33.300288px;}
.ws9_c03058{word-spacing:34.836912px;}
.ws8_c03058{word-spacing:36.143712px;}
.ws1_c03058{word-spacing:37.759392px;}
.ws0_c03058{word-spacing:38.020752px;}
.ws3_c03058{word-spacing:39.218256px;}
.wse_c03058{word-spacing:39.902544px;}
.ws7_c03058{word-spacing:42.026688px;}
._0_c03058{margin-left:-1.948320px;}
._2_c03058{width:1.482624px;}
._4_c03058{width:3.302640px;}
._a_c03058{width:11.433312px;}
._8_c03058{width:16.798320px;}
._9_c03058{width:18.794160px;}
._6_c03058{width:19.982160px;}
._b_c03058{width:21.958992px;}
._7_c03058{width:23.451120px;}
._5_c03058{width:24.691392px;}
._f_c03058{width:25.881696px;}
._c_c03058{width:27.822960px;}
._d_c03058{width:44.110512px;}
._e_c03058{width:46.683360px;}
._1_c03058{width:50.252400px;}
._3_c03058{width:51.530688px;}
.fc0_c03058{color:rgb(0,0,0);}
.fs2_c03058{font-size:41.760000px;}
.fs0_c03058{font-size:47.520000px;}
.fs1_c03058{font-size:60.480000px;}
.y0_c03058{bottom:0.000000px;}
.y25_c03058{bottom:1.800450px;}
.y1e_c03058{bottom:147.000738px;}
.y24_c03058{bottom:160.320000px;}
.y23_c03058{bottom:174.001068px;}
.y22_c03058{bottom:185.880744px;}
.y20_c03058{bottom:186.600234px;}
.y1f_c03058{bottom:196.320450px;}
.y21_c03058{bottom:198.120600px;}
.y1d_c03058{bottom:246.000342px;}
.y1c_c03058{bottom:260.760054px;}
.y1b_c03058{bottom:275.879730px;}
.y1a_c03058{bottom:326.999370px;}
.y19_c03058{bottom:341.759082px;}
.y18_c03058{bottom:356.878758px;}
.y16_c03058{bottom:406.559730px;}
.y12_c03058{bottom:424.560306px;}
.y17_c03058{bottom:458.759262px;}
.y15_c03058{bottom:491.879514px;}
.y14_c03058{bottom:509.880090px;}
.y11_c03058{bottom:543.000342px;}
.y13_c03058{bottom:559.559874px;}
.y10_c03058{bottom:577.560450px;}
.y26_c03058{bottom:614.280450px;}
.yc_c03058{bottom:652.438650px;}
.yb_c03058{bottom:667.558326px;}
.ye_c03058{bottom:707.160234px;}
.yd_c03058{bottom:716.880450px;}
.ya_c03058{bottom:796.438506px;}
.y9_c03058{bottom:877.438722px;}
.y7_c03058{bottom:926.759730px;}
.y3_c03058{bottom:944.760306px;}
.y8_c03058{bottom:979.319226px;}
.y6_c03058{bottom:1012.439478px;}
.y5_c03058{bottom:1030.440054px;}
.y2_c03058{bottom:1063.560306px;}
.y4_c03058{bottom:1079.759874px;}
.y1_c03058{bottom:1097.760450px;}
.yf_c03058{bottom:1134.840450px;}
.h3_c03058{height:32.530781px;}
.h5_c03058{height:36.641953px;}
.h1_c03058{height:41.696016px;}
.h2_c03058{height:41.812031px;}
.h6_c03058{height:47.160000px;}
.h4_c03058{height:54.654737px;}
.h0_c03058{height:1263.000000px;}
.w2_c03058{width:215.280000px;}
.w1_c03058{width:892.500000px;}
.w0_c03058{width:892.830000px;}
.x0_c03058{left:0.000000px;}
.xe_c03058{left:117.000000px;}
.x8_c03058{left:441.001044px;}
.x4_c03058{left:445.680576px;}
.xc_c03058{left:451.080000px;}
.x7_c03058{left:455.400792px;}
.x5_c03058{left:461.880144px;}
.x1_c03058{left:463.320000px;}
.xa_c03058{left:483.481548px;}
.x9_c03058{left:492.120684px;}
.x6_c03058{left:493.200576px;}
.xd_c03058{left:506.880360px;}
.x3_c03058{left:511.919892px;}
.x2_c03058{left:526.679604px;}
.xb_c03058{left:569.881224px;}
@media print{
.v0_c03058{vertical-align:0.000000pt;}
.v1_c03058{vertical-align:1.279488pt;}
.ls16_c03058{letter-spacing:-0.705408pt;}
.ls10_c03058{letter-spacing:-0.654720pt;}
.ls1b_c03058{letter-spacing:-0.638464pt;}
.lsd_c03058{letter-spacing:-0.616704pt;}
.ls8_c03058{letter-spacing:-0.544896pt;}
.lsa_c03058{letter-spacing:-0.511104pt;}
.ls15_c03058{letter-spacing:-0.244992pt;}
.ls11_c03058{letter-spacing:-0.240768pt;}
.lse_c03058{letter-spacing:-0.232320pt;}
.ls19_c03058{letter-spacing:-0.228096pt;}
.ls7_c03058{letter-spacing:-0.215424pt;}
.ls1a_c03058{letter-spacing:-0.156288pt;}
.ls5_c03058{letter-spacing:-0.105600pt;}
.ls14_c03058{letter-spacing:0.000000pt;}
.ls1_c03058{letter-spacing:0.005376pt;}
.ls6_c03058{letter-spacing:0.114048pt;}
.lsc_c03058{letter-spacing:0.451968pt;}
.ls13_c03058{letter-spacing:0.456960pt;}
.lsf_c03058{letter-spacing:0.477312pt;}
.lsb_c03058{letter-spacing:0.515328pt;}
.ls12_c03058{letter-spacing:0.528000pt;}
.ls9_c03058{letter-spacing:0.532224pt;}
.ls3_c03058{letter-spacing:0.544896pt;}
.ls17_c03058{letter-spacing:0.566016pt;}
.ls0_c03058{letter-spacing:0.578688pt;}
.ls18_c03058{letter-spacing:0.608256pt;}
.ls4_c03058{letter-spacing:0.637824pt;}
.ls2_c03058{letter-spacing:0.642048pt;}
.wsd_c03058{word-spacing:-13.445376pt;}
.wsb_c03058{word-spacing:-11.088000pt;}
.ws6_c03058{word-spacing:-11.075328pt;}
.ws4_c03058{word-spacing:-10.344576pt;}
.ws5_c03058{word-spacing:-10.048896pt;}
.ws2_c03058{word-spacing:-10.015104pt;}
.ws1d_c03058{word-spacing:-0.963072pt;}
.ws1b_c03058{word-spacing:-0.899712pt;}
.ws19_c03058{word-spacing:-0.865920pt;}
.ws22_c03058{word-spacing:-0.639744pt;}
.ws1c_c03058{word-spacing:-0.105600pt;}
.ws24_c03058{word-spacing:-0.092928pt;}
.ws1f_c03058{word-spacing:-0.088704pt;}
.ws20_c03058{word-spacing:-0.080256pt;}
.ws21_c03058{word-spacing:-0.076032pt;}
.ws1a_c03058{word-spacing:0.000000pt;}
.ws1e_c03058{word-spacing:0.295680pt;}
.ws25_c03058{word-spacing:0.319232pt;}
.ws23_c03058{word-spacing:0.384384pt;}
.ws10_c03058{word-spacing:2.006400pt;}
.ws13_c03058{word-spacing:2.027520pt;}
.ws14_c03058{word-spacing:2.234496pt;}
.ws12_c03058{word-spacing:3.366528pt;}
.wsf_c03058{word-spacing:3.717120pt;}
.ws11_c03058{word-spacing:4.118400pt;}
.wsa_c03058{word-spacing:5.892480pt;}
.ws17_c03058{word-spacing:8.318592pt;}
.ws18_c03058{word-spacing:10.876160pt;}
.ws15_c03058{word-spacing:12.156672pt;}
.ws16_c03058{word-spacing:26.236416pt;}
.wsc_c03058{word-spacing:29.600256pt;}
.ws9_c03058{word-spacing:30.966144pt;}
.ws8_c03058{word-spacing:32.127744pt;}
.ws1_c03058{word-spacing:33.563904pt;}
.ws0_c03058{word-spacing:33.796224pt;}
.ws3_c03058{word-spacing:34.860672pt;}
.wse_c03058{word-spacing:35.468928pt;}
.ws7_c03058{word-spacing:37.357056pt;}
._0_c03058{margin-left:-1.731840pt;}
._2_c03058{width:1.317888pt;}
._4_c03058{width:2.935680pt;}
._a_c03058{width:10.162944pt;}
._8_c03058{width:14.931840pt;}
._9_c03058{width:16.705920pt;}
._6_c03058{width:17.761920pt;}
._b_c03058{width:19.519104pt;}
._7_c03058{width:20.845440pt;}
._5_c03058{width:21.947904pt;}
._f_c03058{width:23.005952pt;}
._c_c03058{width:24.731520pt;}
._d_c03058{width:39.209344pt;}
._e_c03058{width:41.496320pt;}
._1_c03058{width:44.668800pt;}
._3_c03058{width:45.805056pt;}
.fs2_c03058{font-size:37.120000pt;}
.fs0_c03058{font-size:42.240000pt;}
.fs1_c03058{font-size:53.760000pt;}
.y0_c03058{bottom:0.000000pt;}
.y25_c03058{bottom:1.600400pt;}
.y1e_c03058{bottom:130.667323pt;}
.y24_c03058{bottom:142.506667pt;}
.y23_c03058{bottom:154.667616pt;}
.y22_c03058{bottom:165.227328pt;}
.y20_c03058{bottom:165.866875pt;}
.y1f_c03058{bottom:174.507067pt;}
.y21_c03058{bottom:176.107200pt;}
.y1d_c03058{bottom:218.666971pt;}
.y1c_c03058{bottom:231.786715pt;}
.y1b_c03058{bottom:245.226427pt;}
.y1a_c03058{bottom:290.666107pt;}
.y19_c03058{bottom:303.785851pt;}
.y18_c03058{bottom:317.225563pt;}
.y16_c03058{bottom:361.386427pt;}
.y12_c03058{bottom:377.386939pt;}
.y17_c03058{bottom:407.786011pt;}
.y15_c03058{bottom:437.226235pt;}
.y14_c03058{bottom:453.226747pt;}
.y11_c03058{bottom:482.666971pt;}
.y13_c03058{bottom:497.386555pt;}
.y10_c03058{bottom:513.387067pt;}
.y26_c03058{bottom:546.027067pt;}
.yc_c03058{bottom:579.945467pt;}
.yb_c03058{bottom:593.385179pt;}
.ye_c03058{bottom:628.586875pt;}
.yd_c03058{bottom:637.227067pt;}
.ya_c03058{bottom:707.945339pt;}
.y9_c03058{bottom:779.945531pt;}
.y7_c03058{bottom:823.786427pt;}
.y3_c03058{bottom:839.786939pt;}
.y8_c03058{bottom:870.505979pt;}
.y6_c03058{bottom:899.946203pt;}
.y5_c03058{bottom:915.946715pt;}
.y2_c03058{bottom:945.386939pt;}
.y4_c03058{bottom:959.786555pt;}
.y1_c03058{bottom:975.787067pt;}
.yf_c03058{bottom:1008.747067pt;}
.h3_c03058{height:28.916250pt;}
.h5_c03058{height:32.570625pt;}
.h1_c03058{height:37.063125pt;}
.h2_c03058{height:37.166250pt;}
.h6_c03058{height:41.920000pt;}
.h4_c03058{height:48.581988pt;}
.h0_c03058{height:1122.666667pt;}
.w2_c03058{width:191.360000pt;}
.w1_c03058{width:793.333333pt;}
.w0_c03058{width:793.626667pt;}
.x0_c03058{left:0.000000pt;}
.xe_c03058{left:104.000000pt;}
.x8_c03058{left:392.000928pt;}
.x4_c03058{left:396.160512pt;}
.xc_c03058{left:400.960000pt;}
.x7_c03058{left:404.800704pt;}
.x5_c03058{left:410.560128pt;}
.x1_c03058{left:411.840000pt;}
.xa_c03058{left:429.761376pt;}
.x9_c03058{left:437.440608pt;}
.x6_c03058{left:438.400512pt;}
.xd_c03058{left:450.560320pt;}
.x3_c03058{left:455.039904pt;}
.x2_c03058{left:468.159648pt;}
.xb_c03058{left:506.561088pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03059 {
    display:none;
  }
  .loading-indicator_c03059.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03059 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03059 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03059" -> "#page-container .classname_c03059")
 */
.pf_c03059 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03059 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03059 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03059 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03059 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03059 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03059 {overflow:visible;}
  }
}
.c_c03059 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03059 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03059:after { /* webkit #35443 */
  content: '';
}
.t_c03059:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03059 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03059 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03059 { /* info for Javascript */
  display:none;
}
.l_c03059 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03059 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03059 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03059:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03059 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03059.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03059 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03059;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03059{font-family:ff1_c03059;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03059;src:url('chunks/assets/font_99975a17eb2c00b30a6718b3.woff2')format("woff");}.ff2_c03059{font-family:ff2_c03059;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03059;src:url('chunks/assets/font_cace60483a6b240d700f640b.woff2')format("woff");}.ff3_c03059{font-family:ff3_c03059;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03059{vertical-align:0.000000px;}
.v1_c03059{vertical-align:1.439424px;}
.v2_c03059{vertical-align:33.121440px;}
.lsd_c03059{letter-spacing:-0.793584px;}
.ls18_c03059{letter-spacing:-0.774576px;}
.ls14_c03059{letter-spacing:-0.718272px;}
.ls1c_c03059{letter-spacing:-0.665280px;}
.ls7_c03059{letter-spacing:-0.613008px;}
.lsa_c03059{letter-spacing:-0.574992px;}
.ls9_c03059{letter-spacing:-0.275616px;}
.ls12_c03059{letter-spacing:-0.261360px;}
.ls10_c03059{letter-spacing:-0.256608px;}
.ls6_c03059{letter-spacing:-0.242352px;}
.ls4_c03059{letter-spacing:-0.118800px;}
.ls16_c03059{letter-spacing:0.000000px;}
.ls1_c03059{letter-spacing:0.006048px;}
.ls19_c03059{letter-spacing:0.009504px;}
.ls5_c03059{letter-spacing:0.128304px;}
.lsc_c03059{letter-spacing:0.508464px;}
.ls15_c03059{letter-spacing:0.514080px;}
.ls11_c03059{letter-spacing:0.536976px;}
.lsb_c03059{letter-spacing:0.579744px;}
.ls13_c03059{letter-spacing:0.594000px;}
.ls8_c03059{letter-spacing:0.598752px;}
.ls2_c03059{letter-spacing:0.613008px;}
.lse_c03059{letter-spacing:0.636768px;}
.ls1b_c03059{letter-spacing:0.665280px;}
.ls1a_c03059{letter-spacing:0.670032px;}
.ls17_c03059{letter-spacing:0.679536px;}
.lsf_c03059{letter-spacing:0.693792px;}
.ls3_c03059{letter-spacing:0.717552px;}
.ls0_c03059{letter-spacing:0.722304px;}
.sc__c03059{text-shadow:none;}
.sc0_c03059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03059{-webkit-text-stroke:0px transparent;}
.sc0_c03059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14_c03059{word-spacing:-15.126048px;}
.ws1a_c03059{word-spacing:-12.545280px;}
.wsf_c03059{word-spacing:-12.474000px;}
.ws5_c03059{word-spacing:-12.459744px;}
.ws2_c03059{word-spacing:-11.266992px;}
.ws22_c03059{word-spacing:-1.083456px;}
.ws28_c03059{word-spacing:-1.040688px;}
.ws1e_c03059{word-spacing:-0.974160px;}
.ws27_c03059{word-spacing:-0.719712px;}
.ws2a_c03059{word-spacing:-0.370656px;}
.ws20_c03059{word-spacing:-0.118800px;}
.ws24_c03059{word-spacing:-0.104544px;}
.ws25_c03059{word-spacing:-0.099792px;}
.ws21_c03059{word-spacing:-0.085536px;}
.ws1f_c03059{word-spacing:0.000000px;}
.ws2b_c03059{word-spacing:0.304128px;}
.ws26_c03059{word-spacing:0.359136px;}
.ws29_c03059{word-spacing:0.413424px;}
.ws23_c03059{word-spacing:0.432432px;}
.ws1d_c03059{word-spacing:0.717552px;}
.wsb_c03059{word-spacing:2.114640px;}
.wsd_c03059{word-spacing:2.157408px;}
.ws9_c03059{word-spacing:2.257200px;}
.wsc_c03059{word-spacing:2.280960px;}
.ws8_c03059{word-spacing:4.181760px;}
.wsa_c03059{word-spacing:4.633200px;}
.ws1b_c03059{word-spacing:7.916832px;}
.ws11_c03059{word-spacing:9.358416px;}
.ws16_c03059{word-spacing:15.078096px;}
.ws17_c03059{word-spacing:15.339456px;}
.ws12_c03059{word-spacing:20.875824px;}
.ws10_c03059{word-spacing:29.515968px;}
.ws1c_c03059{word-spacing:30.298752px;}
.ws13_c03059{word-spacing:33.300288px;}
.ws18_c03059{word-spacing:33.943536px;}
.ws19_c03059{word-spacing:34.708608px;}
.wse_c03059{word-spacing:34.836912px;}
.ws7_c03059{word-spacing:36.143712px;}
.ws15_c03059{word-spacing:36.742464px;}
.ws1_c03059{word-spacing:37.759392px;}
.ws0_c03059{word-spacing:38.020752px;}
.ws3_c03059{word-spacing:39.218256px;}
.ws4_c03059{word-spacing:39.902544px;}
.ws6_c03059{word-spacing:42.026688px;}
._e_c03059{margin-left:-2.979504px;}
._0_c03059{margin-left:-1.948320px;}
._2_c03059{width:1.482624px;}
._10_c03059{width:3.188592px;}
._f_c03059{width:12.830400px;}
._14_c03059{width:15.472512px;}
._4_c03059{width:16.798320px;}
._5_c03059{width:18.794160px;}
._7_c03059{width:19.834848px;}
._6_c03059{width:21.707136px;}
._a_c03059{width:22.779648px;}
._b_c03059{width:25.879824px;}
._d_c03059{width:29.156832px;}
._11_c03059{width:30.408048px;}
._c_c03059{width:34.869312px;}
._8_c03059{width:44.110512px;}
._9_c03059{width:46.683360px;}
._13_c03059{width:48.997872px;}
._1_c03059{width:50.252400px;}
._3_c03059{width:51.530688px;}
._12_c03059{width:54.258336px;}
.fc0_c03059{color:rgb(0,0,0);}
.fs1_c03059{font-size:41.760000px;}
.fs0_c03059{font-size:47.520000px;}
.fs2_c03059{font-size:60.480000px;}
.y0_c03059{bottom:0.000000px;}
.y15_c03059{bottom:1.440450px;}
.y24_c03059{bottom:146.999550px;}
.y27_c03059{bottom:179.760918px;}
.y26_c03059{bottom:186.600234px;}
.y25_c03059{bottom:196.320450px;}
.y23_c03059{bottom:260.760054px;}
.y22_c03059{bottom:275.879730px;}
.y21_c03059{bottom:326.999370px;}
.y20_c03059{bottom:341.759082px;}
.y1f_c03059{bottom:356.878758px;}
.y1d_c03059{bottom:406.559730px;}
.y19_c03059{bottom:424.560306px;}
.y1e_c03059{bottom:458.759262px;}
.y1c_c03059{bottom:491.879514px;}
.y1b_c03059{bottom:509.880090px;}
.y18_c03059{bottom:543.000342px;}
.y1a_c03059{bottom:559.559874px;}
.y17_c03059{bottom:577.560450px;}
.y28_c03059{bottom:614.280450px;}
.ye_c03059{bottom:667.559514px;}
.y14_c03059{bottom:680.880000px;}
.y13_c03059{bottom:694.561098px;}
.y12_c03059{bottom:706.440774px;}
.y10_c03059{bottom:707.160234px;}
.yf_c03059{bottom:716.880450px;}
.y11_c03059{bottom:718.320450px;}
.yd_c03059{bottom:781.320018px;}
.yc_c03059{bottom:796.439694px;}
.yb_c03059{bottom:847.559334px;}
.ya_c03059{bottom:862.319046px;}
.y9_c03059{bottom:877.438722px;}
.y7_c03059{bottom:926.759730px;}
.y3_c03059{bottom:944.760306px;}
.y8_c03059{bottom:979.319226px;}
.y6_c03059{bottom:1012.439478px;}
.y5_c03059{bottom:1030.440054px;}
.y2_c03059{bottom:1063.560306px;}
.y4_c03059{bottom:1079.759874px;}
.y1_c03059{bottom:1097.760450px;}
.y16_c03059{bottom:1134.840450px;}
.h3_c03059{height:32.530781px;}
.h4_c03059{height:36.641953px;}
.h1_c03059{height:41.696016px;}
.h2_c03059{height:41.812031px;}
.h5_c03059{height:47.160000px;}
.h6_c03059{height:54.654737px;}
.h7_c03059{height:74.817456px;}
.h0_c03059{height:1263.000000px;}
.w2_c03059{width:215.280000px;}
.w1_c03059{width:892.500000px;}
.w0_c03059{width:892.830000px;}
.x0_c03059{left:0.000000px;}
.xe_c03059{left:117.000000px;}
.x8_c03059{left:440.999856px;}
.x4_c03059{left:445.680576px;}
.xc_c03059{left:451.080000px;}
.x7_c03059{left:455.399604px;}
.x5_c03059{left:461.880144px;}
.x1_c03059{left:463.320000px;}
.xb_c03059{left:483.481548px;}
.x9_c03059{left:492.119496px;}
.x6_c03059{left:493.200576px;}
.xd_c03059{left:506.880360px;}
.x3_c03059{left:511.919892px;}
.x2_c03059{left:526.679604px;}
.xa_c03059{left:569.881224px;}
@media print{
.v0_c03059{vertical-align:0.000000pt;}
.v1_c03059{vertical-align:1.279488pt;}
.v2_c03059{vertical-align:29.441280pt;}
.lsd_c03059{letter-spacing:-0.705408pt;}
.ls18_c03059{letter-spacing:-0.688512pt;}
.ls14_c03059{letter-spacing:-0.638464pt;}
.ls1c_c03059{letter-spacing:-0.591360pt;}
.ls7_c03059{letter-spacing:-0.544896pt;}
.lsa_c03059{letter-spacing:-0.511104pt;}
.ls9_c03059{letter-spacing:-0.244992pt;}
.ls12_c03059{letter-spacing:-0.232320pt;}
.ls10_c03059{letter-spacing:-0.228096pt;}
.ls6_c03059{letter-spacing:-0.215424pt;}
.ls4_c03059{letter-spacing:-0.105600pt;}
.ls16_c03059{letter-spacing:0.000000pt;}
.ls1_c03059{letter-spacing:0.005376pt;}
.ls19_c03059{letter-spacing:0.008448pt;}
.ls5_c03059{letter-spacing:0.114048pt;}
.lsc_c03059{letter-spacing:0.451968pt;}
.ls15_c03059{letter-spacing:0.456960pt;}
.ls11_c03059{letter-spacing:0.477312pt;}
.lsb_c03059{letter-spacing:0.515328pt;}
.ls13_c03059{letter-spacing:0.528000pt;}
.ls8_c03059{letter-spacing:0.532224pt;}
.ls2_c03059{letter-spacing:0.544896pt;}
.lse_c03059{letter-spacing:0.566016pt;}
.ls1b_c03059{letter-spacing:0.591360pt;}
.ls1a_c03059{letter-spacing:0.595584pt;}
.ls17_c03059{letter-spacing:0.604032pt;}
.lsf_c03059{letter-spacing:0.616704pt;}
.ls3_c03059{letter-spacing:0.637824pt;}
.ls0_c03059{letter-spacing:0.642048pt;}
.ws14_c03059{word-spacing:-13.445376pt;}
.ws1a_c03059{word-spacing:-11.151360pt;}
.wsf_c03059{word-spacing:-11.088000pt;}
.ws5_c03059{word-spacing:-11.075328pt;}
.ws2_c03059{word-spacing:-10.015104pt;}
.ws22_c03059{word-spacing:-0.963072pt;}
.ws28_c03059{word-spacing:-0.925056pt;}
.ws1e_c03059{word-spacing:-0.865920pt;}
.ws27_c03059{word-spacing:-0.639744pt;}
.ws2a_c03059{word-spacing:-0.329472pt;}
.ws20_c03059{word-spacing:-0.105600pt;}
.ws24_c03059{word-spacing:-0.092928pt;}
.ws25_c03059{word-spacing:-0.088704pt;}
.ws21_c03059{word-spacing:-0.076032pt;}
.ws1f_c03059{word-spacing:0.000000pt;}
.ws2b_c03059{word-spacing:0.270336pt;}
.ws26_c03059{word-spacing:0.319232pt;}
.ws29_c03059{word-spacing:0.367488pt;}
.ws23_c03059{word-spacing:0.384384pt;}
.ws1d_c03059{word-spacing:0.637824pt;}
.wsb_c03059{word-spacing:1.879680pt;}
.wsd_c03059{word-spacing:1.917696pt;}
.ws9_c03059{word-spacing:2.006400pt;}
.wsc_c03059{word-spacing:2.027520pt;}
.ws8_c03059{word-spacing:3.717120pt;}
.wsa_c03059{word-spacing:4.118400pt;}
.ws1b_c03059{word-spacing:7.037184pt;}
.ws11_c03059{word-spacing:8.318592pt;}
.ws16_c03059{word-spacing:13.402752pt;}
.ws17_c03059{word-spacing:13.635072pt;}
.ws12_c03059{word-spacing:18.556288pt;}
.ws10_c03059{word-spacing:26.236416pt;}
.ws1c_c03059{word-spacing:26.932224pt;}
.ws13_c03059{word-spacing:29.600256pt;}
.ws18_c03059{word-spacing:30.172032pt;}
.ws19_c03059{word-spacing:30.852096pt;}
.wse_c03059{word-spacing:30.966144pt;}
.ws7_c03059{word-spacing:32.127744pt;}
.ws15_c03059{word-spacing:32.659968pt;}
.ws1_c03059{word-spacing:33.563904pt;}
.ws0_c03059{word-spacing:33.796224pt;}
.ws3_c03059{word-spacing:34.860672pt;}
.ws4_c03059{word-spacing:35.468928pt;}
.ws6_c03059{word-spacing:37.357056pt;}
._e_c03059{margin-left:-2.648448pt;}
._0_c03059{margin-left:-1.731840pt;}
._2_c03059{width:1.317888pt;}
._10_c03059{width:2.834304pt;}
._f_c03059{width:11.404800pt;}
._14_c03059{width:13.753344pt;}
._4_c03059{width:14.931840pt;}
._5_c03059{width:16.705920pt;}
._7_c03059{width:17.630976pt;}
._6_c03059{width:19.295232pt;}
._a_c03059{width:20.248576pt;}
._b_c03059{width:23.004288pt;}
._d_c03059{width:25.917184pt;}
._11_c03059{width:27.029376pt;}
._c_c03059{width:30.994944pt;}
._8_c03059{width:39.209344pt;}
._9_c03059{width:41.496320pt;}
._13_c03059{width:43.553664pt;}
._1_c03059{width:44.668800pt;}
._3_c03059{width:45.805056pt;}
._12_c03059{width:48.229632pt;}
.fs1_c03059{font-size:37.120000pt;}
.fs0_c03059{font-size:42.240000pt;}
.fs2_c03059{font-size:53.760000pt;}
.y0_c03059{bottom:0.000000pt;}
.y15_c03059{bottom:1.280400pt;}
.y24_c03059{bottom:130.666267pt;}
.y27_c03059{bottom:159.787483pt;}
.y26_c03059{bottom:165.866875pt;}
.y25_c03059{bottom:174.507067pt;}
.y23_c03059{bottom:231.786715pt;}
.y22_c03059{bottom:245.226427pt;}
.y21_c03059{bottom:290.666107pt;}
.y20_c03059{bottom:303.785851pt;}
.y1f_c03059{bottom:317.225563pt;}
.y1d_c03059{bottom:361.386427pt;}
.y19_c03059{bottom:377.386939pt;}
.y1e_c03059{bottom:407.786011pt;}
.y1c_c03059{bottom:437.226235pt;}
.y1b_c03059{bottom:453.226747pt;}
.y18_c03059{bottom:482.666971pt;}
.y1a_c03059{bottom:497.386555pt;}
.y17_c03059{bottom:513.387067pt;}
.y28_c03059{bottom:546.027067pt;}
.ye_c03059{bottom:593.386235pt;}
.y14_c03059{bottom:605.226667pt;}
.y13_c03059{bottom:617.387643pt;}
.y12_c03059{bottom:627.947355pt;}
.y10_c03059{bottom:628.586875pt;}
.yf_c03059{bottom:637.227067pt;}
.y11_c03059{bottom:638.507067pt;}
.yd_c03059{bottom:694.506683pt;}
.yc_c03059{bottom:707.946395pt;}
.yb_c03059{bottom:753.386075pt;}
.ya_c03059{bottom:766.505819pt;}
.y9_c03059{bottom:779.945531pt;}
.y7_c03059{bottom:823.786427pt;}
.y3_c03059{bottom:839.786939pt;}
.y8_c03059{bottom:870.505979pt;}
.y6_c03059{bottom:899.946203pt;}
.y5_c03059{bottom:915.946715pt;}
.y2_c03059{bottom:945.386939pt;}
.y4_c03059{bottom:959.786555pt;}
.y1_c03059{bottom:975.787067pt;}
.y16_c03059{bottom:1008.747067pt;}
.h3_c03059{height:28.916250pt;}
.h4_c03059{height:32.570625pt;}
.h1_c03059{height:37.063125pt;}
.h2_c03059{height:37.166250pt;}
.h5_c03059{height:41.920000pt;}
.h6_c03059{height:48.581988pt;}
.h7_c03059{height:66.504405pt;}
.h0_c03059{height:1122.666667pt;}
.w2_c03059{width:191.360000pt;}
.w1_c03059{width:793.333333pt;}
.w0_c03059{width:793.626667pt;}
.x0_c03059{left:0.000000pt;}
.xe_c03059{left:104.000000pt;}
.x8_c03059{left:391.999872pt;}
.x4_c03059{left:396.160512pt;}
.xc_c03059{left:400.960000pt;}
.x7_c03059{left:404.799648pt;}
.x5_c03059{left:410.560128pt;}
.x1_c03059{left:411.840000pt;}
.xb_c03059{left:429.761376pt;}
.x9_c03059{left:437.439552pt;}
.x6_c03059{left:438.400512pt;}
.xd_c03059{left:450.560320pt;}
.x3_c03059{left:455.039904pt;}
.x2_c03059{left:468.159648pt;}
.xa_c03059{left:506.561088pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03060 {
    display:none;
  }
  .loading-indicator_c03060.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03060 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03060 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03060" -> "#page-container .classname_c03060")
 */
.pf_c03060 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03060 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03060.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03060 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03060 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03060 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03060 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03060 {overflow:visible;}
  }
}
.c_c03060 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03060 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03060:after { /* webkit #35443 */
  content: '';
}
.t_c03060:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03060 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03060 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03060 { /* info for Javascript */
  display:none;
}
.l_c03060 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03060 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03060 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03060:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03060 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03060.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03060.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03060 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03060{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03060;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03060{font-family:ff1_c03060;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03060;src:url('chunks/assets/font_005e2deb829cf2c8c11948e3.woff2')format("woff");}.ff2_c03060{font-family:ff2_c03060;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03060;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03060{font-family:ff3_c03060;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03060{vertical-align:0.000000px;}
.v1_c03060{vertical-align:1.439424px;}
.ls8_c03060{letter-spacing:-0.774576px;}
.ls6_c03060{letter-spacing:-0.613008px;}
.ls9_c03060{letter-spacing:-0.574992px;}
.lsa_c03060{letter-spacing:-0.361152px;}
.ls10_c03060{letter-spacing:-0.275616px;}
.lse_c03060{letter-spacing:-0.261360px;}
.ls5_c03060{letter-spacing:-0.242352px;}
.ls3_c03060{letter-spacing:-0.118800px;}
.ls13_c03060{letter-spacing:0.000000px;}
.ls0_c03060{letter-spacing:0.006048px;}
.ls4_c03060{letter-spacing:0.128304px;}
.lsc_c03060{letter-spacing:0.508464px;}
.ls12_c03060{letter-spacing:0.514080px;}
.lsf_c03060{letter-spacing:0.536976px;}
.lsb_c03060{letter-spacing:0.579744px;}
.ls11_c03060{letter-spacing:0.594000px;}
.ls7_c03060{letter-spacing:0.598752px;}
.ls1_c03060{letter-spacing:0.613008px;}
.ls2_c03060{letter-spacing:0.717552px;}
.lsd_c03060{letter-spacing:0.722304px;}
.sc__c03060{text-shadow:none;}
.sc0_c03060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03060{-webkit-text-stroke:0px transparent;}
.sc0_c03060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03060{word-spacing:-15.126048px;}
.ws9_c03060{word-spacing:-12.474000px;}
.ws7_c03060{word-spacing:-12.459744px;}
.ws8_c03060{word-spacing:-12.416976px;}
.ws2_c03060{word-spacing:-11.266992px;}
.ws10_c03060{word-spacing:-1.083456px;}
.wsc_c03060{word-spacing:-0.974160px;}
.ws13_c03060{word-spacing:-0.719712px;}
.wse_c03060{word-spacing:-0.118800px;}
.ws11_c03060{word-spacing:-0.099792px;}
.ws12_c03060{word-spacing:-0.085536px;}
.wsd_c03060{word-spacing:0.000000px;}
.wsf_c03060{word-spacing:0.413424px;}
.wsa_c03060{word-spacing:33.300288px;}
.ws5_c03060{word-spacing:36.742464px;}
.ws1_c03060{word-spacing:37.759392px;}
.ws0_c03060{word-spacing:38.020752px;}
.ws3_c03060{word-spacing:39.218256px;}
.ws4_c03060{word-spacing:39.902544px;}
.ws6_c03060{word-spacing:42.026688px;}
._0_c03060{margin-left:-1.948320px;}
._2_c03060{width:1.482624px;}
._4_c03060{width:3.640032px;}
._1_c03060{width:50.252400px;}
._3_c03060{width:51.530688px;}
.fc0_c03060{color:rgb(0,0,0);}
.fs0_c03060{font-size:47.520000px;}
.fs1_c03060{font-size:60.480000px;}
.y0_c03060{bottom:0.000000px;}
.y19_c03060{bottom:146.998362px;}
.y1b_c03060{bottom:186.600234px;}
.y1a_c03060{bottom:196.320450px;}
.y18_c03060{bottom:275.878542px;}
.y17_c03060{bottom:356.878758px;}
.y15_c03060{bottom:406.559730px;}
.y11_c03060{bottom:424.560306px;}
.y16_c03060{bottom:458.759262px;}
.y14_c03060{bottom:491.879514px;}
.y13_c03060{bottom:509.880090px;}
.y10_c03060{bottom:543.000342px;}
.y12_c03060{bottom:559.559874px;}
.yf_c03060{bottom:577.560450px;}
.y1c_c03060{bottom:614.280450px;}
.yb_c03060{bottom:667.558326px;}
.yd_c03060{bottom:707.160234px;}
.yc_c03060{bottom:716.880450px;}
.ya_c03060{bottom:796.438506px;}
.y9_c03060{bottom:877.438722px;}
.y7_c03060{bottom:926.759730px;}
.y3_c03060{bottom:944.760306px;}
.y8_c03060{bottom:979.319226px;}
.y6_c03060{bottom:1012.439478px;}
.y5_c03060{bottom:1030.440054px;}
.y2_c03060{bottom:1063.560306px;}
.y4_c03060{bottom:1079.759874px;}
.y1_c03060{bottom:1097.760450px;}
.ye_c03060{bottom:1134.840450px;}
.h3_c03060{height:32.530781px;}
.h1_c03060{height:41.696016px;}
.h2_c03060{height:41.812031px;}
.h4_c03060{height:54.654737px;}
.h0_c03060{height:1263.000000px;}
.w1_c03060{width:892.500000px;}
.w0_c03060{width:892.830000px;}
.x0_c03060{left:0.000000px;}
.xd_c03060{left:117.000000px;}
.x8_c03060{left:440.999856px;}
.x4_c03060{left:445.680576px;}
.xb_c03060{left:451.080000px;}
.x7_c03060{left:455.399604px;}
.x5_c03060{left:461.880144px;}
.x1_c03060{left:463.320000px;}
.xa_c03060{left:483.480360px;}
.x9_c03060{left:492.119496px;}
.x6_c03060{left:493.200576px;}
.xc_c03060{left:506.880360px;}
.x3_c03060{left:511.919892px;}
.x2_c03060{left:526.679604px;}
@media print{
.v0_c03060{vertical-align:0.000000pt;}
.v1_c03060{vertical-align:1.279488pt;}
.ls8_c03060{letter-spacing:-0.688512pt;}
.ls6_c03060{letter-spacing:-0.544896pt;}
.ls9_c03060{letter-spacing:-0.511104pt;}
.lsa_c03060{letter-spacing:-0.321024pt;}
.ls10_c03060{letter-spacing:-0.244992pt;}
.lse_c03060{letter-spacing:-0.232320pt;}
.ls5_c03060{letter-spacing:-0.215424pt;}
.ls3_c03060{letter-spacing:-0.105600pt;}
.ls13_c03060{letter-spacing:0.000000pt;}
.ls0_c03060{letter-spacing:0.005376pt;}
.ls4_c03060{letter-spacing:0.114048pt;}
.lsc_c03060{letter-spacing:0.451968pt;}
.ls12_c03060{letter-spacing:0.456960pt;}
.lsf_c03060{letter-spacing:0.477312pt;}
.lsb_c03060{letter-spacing:0.515328pt;}
.ls11_c03060{letter-spacing:0.528000pt;}
.ls7_c03060{letter-spacing:0.532224pt;}
.ls1_c03060{letter-spacing:0.544896pt;}
.ls2_c03060{letter-spacing:0.637824pt;}
.lsd_c03060{letter-spacing:0.642048pt;}
.wsb_c03060{word-spacing:-13.445376pt;}
.ws9_c03060{word-spacing:-11.088000pt;}
.ws7_c03060{word-spacing:-11.075328pt;}
.ws8_c03060{word-spacing:-11.037312pt;}
.ws2_c03060{word-spacing:-10.015104pt;}
.ws10_c03060{word-spacing:-0.963072pt;}
.wsc_c03060{word-spacing:-0.865920pt;}
.ws13_c03060{word-spacing:-0.639744pt;}
.wse_c03060{word-spacing:-0.105600pt;}
.ws11_c03060{word-spacing:-0.088704pt;}
.ws12_c03060{word-spacing:-0.076032pt;}
.wsd_c03060{word-spacing:0.000000pt;}
.wsf_c03060{word-spacing:0.367488pt;}
.wsa_c03060{word-spacing:29.600256pt;}
.ws5_c03060{word-spacing:32.659968pt;}
.ws1_c03060{word-spacing:33.563904pt;}
.ws0_c03060{word-spacing:33.796224pt;}
.ws3_c03060{word-spacing:34.860672pt;}
.ws4_c03060{word-spacing:35.468928pt;}
.ws6_c03060{word-spacing:37.357056pt;}
._0_c03060{margin-left:-1.731840pt;}
._2_c03060{width:1.317888pt;}
._4_c03060{width:3.235584pt;}
._1_c03060{width:44.668800pt;}
._3_c03060{width:45.805056pt;}
.fs0_c03060{font-size:42.240000pt;}
.fs1_c03060{font-size:53.760000pt;}
.y0_c03060{bottom:0.000000pt;}
.y19_c03060{bottom:130.665211pt;}
.y1b_c03060{bottom:165.866875pt;}
.y1a_c03060{bottom:174.507067pt;}
.y18_c03060{bottom:245.225371pt;}
.y17_c03060{bottom:317.225563pt;}
.y15_c03060{bottom:361.386427pt;}
.y11_c03060{bottom:377.386939pt;}
.y16_c03060{bottom:407.786011pt;}
.y14_c03060{bottom:437.226235pt;}
.y13_c03060{bottom:453.226747pt;}
.y10_c03060{bottom:482.666971pt;}
.y12_c03060{bottom:497.386555pt;}
.yf_c03060{bottom:513.387067pt;}
.y1c_c03060{bottom:546.027067pt;}
.yb_c03060{bottom:593.385179pt;}
.yd_c03060{bottom:628.586875pt;}
.yc_c03060{bottom:637.227067pt;}
.ya_c03060{bottom:707.945339pt;}
.y9_c03060{bottom:779.945531pt;}
.y7_c03060{bottom:823.786427pt;}
.y3_c03060{bottom:839.786939pt;}
.y8_c03060{bottom:870.505979pt;}
.y6_c03060{bottom:899.946203pt;}
.y5_c03060{bottom:915.946715pt;}
.y2_c03060{bottom:945.386939pt;}
.y4_c03060{bottom:959.786555pt;}
.y1_c03060{bottom:975.787067pt;}
.ye_c03060{bottom:1008.747067pt;}
.h3_c03060{height:28.916250pt;}
.h1_c03060{height:37.063125pt;}
.h2_c03060{height:37.166250pt;}
.h4_c03060{height:48.581988pt;}
.h0_c03060{height:1122.666667pt;}
.w1_c03060{width:793.333333pt;}
.w0_c03060{width:793.626667pt;}
.x0_c03060{left:0.000000pt;}
.xd_c03060{left:104.000000pt;}
.x8_c03060{left:391.999872pt;}
.x4_c03060{left:396.160512pt;}
.xb_c03060{left:400.960000pt;}
.x7_c03060{left:404.799648pt;}
.x5_c03060{left:410.560128pt;}
.x1_c03060{left:411.840000pt;}
.xa_c03060{left:429.760320pt;}
.x9_c03060{left:437.439552pt;}
.x6_c03060{left:438.400512pt;}
.xc_c03060{left:450.560320pt;}
.x3_c03060{left:455.039904pt;}
.x2_c03060{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03061 {
    display:none;
  }
  .loading-indicator_c03061.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03061 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03061 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03061" -> "#page-container .classname_c03061")
 */
.pf_c03061 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03061 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03061 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03061 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03061 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03061 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03061 {overflow:visible;}
  }
}
.c_c03061 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03061 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03061:after { /* webkit #35443 */
  content: '';
}
.t_c03061:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03061 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03061 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03061 { /* info for Javascript */
  display:none;
}
.l_c03061 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03061 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03061 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03061:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03061 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03061.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03061 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03061{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03061;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03061{font-family:ff1_c03061;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03061;src:url('chunks/assets/font_1c78cd597c313a3f543f3d37.woff2')format("woff");}.ff2_c03061{font-family:ff2_c03061;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03061;src:url('chunks/assets/font_fead0563e77072aa2d78d7d3.woff2')format("woff");}.ff3_c03061{font-family:ff3_c03061;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03061{vertical-align:0.000000px;}
.v2_c03061{vertical-align:1.439424px;}
.v1_c03061{vertical-align:33.121440px;}
.ls6_c03061{letter-spacing:-1.454112px;}
.lsb_c03061{letter-spacing:-1.197504px;}
.ls19_c03061{letter-spacing:-0.736560px;}
.lsf_c03061{letter-spacing:-0.722304px;}
.ls9_c03061{letter-spacing:-0.613008px;}
.lsc_c03061{letter-spacing:-0.574992px;}
.ls13_c03061{letter-spacing:-0.361152px;}
.ls15_c03061{letter-spacing:-0.275616px;}
.ls1a_c03061{letter-spacing:-0.270864px;}
.ls11_c03061{letter-spacing:-0.261360px;}
.ls8_c03061{letter-spacing:-0.242352px;}
.ls10_c03061{letter-spacing:-0.237600px;}
.ls5_c03061{letter-spacing:-0.118800px;}
.ls18_c03061{letter-spacing:0.000000px;}
.ls2_c03061{letter-spacing:0.006048px;}
.ls1b_c03061{letter-spacing:0.114048px;}
.ls7_c03061{letter-spacing:0.128304px;}
.ls12_c03061{letter-spacing:0.237600px;}
.lse_c03061{letter-spacing:0.508464px;}
.ls17_c03061{letter-spacing:0.514080px;}
.ls14_c03061{letter-spacing:0.536976px;}
.lsd_c03061{letter-spacing:0.579744px;}
.ls16_c03061{letter-spacing:0.594000px;}
.lsa_c03061{letter-spacing:0.598752px;}
.ls3_c03061{letter-spacing:0.613008px;}
.ls0_c03061{letter-spacing:0.617760px;}
.ls4_c03061{letter-spacing:0.717552px;}
.ls1_c03061{letter-spacing:0.722304px;}
.sc__c03061{text-shadow:none;}
.sc0_c03061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03061{-webkit-text-stroke:0px transparent;}
.sc0_c03061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c03061{word-spacing:-15.126048px;}
.ws7_c03061{word-spacing:-12.459744px;}
.wsc_c03061{word-spacing:-12.416976px;}
.wsb_c03061{word-spacing:-12.117600px;}
.ws0_c03061{word-spacing:-11.761200px;}
.ws3_c03061{word-spacing:-11.266992px;}
.ws5_c03061{word-spacing:-10.682496px;}
.ws1_c03061{word-spacing:-10.425888px;}
.ws17_c03061{word-spacing:-1.083456px;}
.ws15_c03061{word-spacing:-0.978912px;}
.ws13_c03061{word-spacing:-0.974160px;}
.ws1c_c03061{word-spacing:-0.719712px;}
.ws1e_c03061{word-spacing:-0.475200px;}
.ws16_c03061{word-spacing:-0.118800px;}
.ws19_c03061{word-spacing:-0.099792px;}
.ws1d_c03061{word-spacing:-0.090288px;}
.ws1b_c03061{word-spacing:-0.085536px;}
.ws14_c03061{word-spacing:0.000000px;}
.ws18_c03061{word-spacing:0.361152px;}
.ws1a_c03061{word-spacing:0.836352px;}
.ws12_c03061{word-spacing:6.629040px;}
.wsa_c03061{word-spacing:21.355488px;}
.wsd_c03061{word-spacing:30.298752px;}
.wse_c03061{word-spacing:33.300288px;}
.ws11_c03061{word-spacing:34.836912px;}
.ws9_c03061{word-spacing:36.143712px;}
.ws2_c03061{word-spacing:37.759392px;}
.ws10_c03061{word-spacing:38.020752px;}
.ws4_c03061{word-spacing:39.218256px;}
.ws6_c03061{word-spacing:39.902544px;}
.ws8_c03061{word-spacing:42.026688px;}
._0_c03061{margin-left:-1.948320px;}
._2_c03061{width:1.211760px;}
._4_c03061{width:2.242944px;}
._9_c03061{width:3.934656px;}
._b_c03061{width:19.982160px;}
._8_c03061{width:21.493296px;}
._c_c03061{width:23.451120px;}
._a_c03061{width:25.233120px;}
._6_c03061{width:30.436560px;}
._5_c03061{width:37.293696px;}
._1_c03061{width:50.252400px;}
._3_c03061{width:51.402384px;}
._7_c03061{width:52.566624px;}
.fc0_c03061{color:rgb(0,0,0);}
.fs0_c03061{font-size:47.520000px;}
.fs1_c03061{font-size:60.480000px;}
.y0_c03061{bottom:0.000000px;}
.y4_c03061{bottom:18.360450px;}
.y1e_c03061{bottom:131.878686px;}
.y1d_c03061{bottom:146.998362px;}
.y20_c03061{bottom:186.600234px;}
.y1f_c03061{bottom:196.320450px;}
.y1c_c03061{bottom:275.878542px;}
.y1b_c03061{bottom:356.878758px;}
.y19_c03061{bottom:406.559730px;}
.y15_c03061{bottom:424.560306px;}
.y1a_c03061{bottom:458.759262px;}
.y18_c03061{bottom:491.879514px;}
.y17_c03061{bottom:509.880090px;}
.y14_c03061{bottom:543.000342px;}
.y16_c03061{bottom:559.559874px;}
.y13_c03061{bottom:577.560450px;}
.y21_c03061{bottom:614.280450px;}
.yf_c03061{bottom:667.559658px;}
.y11_c03061{bottom:707.160234px;}
.y10_c03061{bottom:716.880450px;}
.ye_c03061{bottom:796.439838px;}
.yd_c03061{bottom:862.319190px;}
.yc_c03061{bottom:877.438866px;}
.ya_c03061{bottom:926.759874px;}
.y6_c03061{bottom:944.760450px;}
.yb_c03061{bottom:979.319370px;}
.y9_c03061{bottom:1012.439622px;}
.y8_c03061{bottom:1030.440198px;}
.y3_c03061{bottom:1045.200000px;}
.y2_c03061{bottom:1063.560306px;}
.y5_c03061{bottom:1063.560450px;}
.y7_c03061{bottom:1079.760018px;}
.y1_c03061{bottom:1097.760450px;}
.y12_c03061{bottom:1134.840450px;}
.h3_c03061{height:29.520000px;}
.h2_c03061{height:32.530781px;}
.h1_c03061{height:41.696016px;}
.h4_c03061{height:41.812031px;}
.h6_c03061{height:54.654737px;}
.h5_c03061{height:74.817456px;}
.h0_c03061{height:1263.000000px;}
.w2_c03061{width:215.280000px;}
.w1_c03061{width:892.500000px;}
.w0_c03061{width:892.830000px;}
.x0_c03061{left:0.000000px;}
.xf_c03061{left:117.000000px;}
.xa_c03061{left:440.999964px;}
.x6_c03061{left:445.680684px;}
.xd_c03061{left:451.080000px;}
.x9_c03061{left:455.399712px;}
.x7_c03061{left:461.880252px;}
.x1_c03061{left:463.320000px;}
.xc_c03061{left:483.480468px;}
.xb_c03061{left:492.119604px;}
.x8_c03061{left:493.200684px;}
.xe_c03061{left:506.880360px;}
.x5_c03061{left:511.920000px;}
.x2_c03061{left:526.679604px;}
.x3_c03061{left:569.520000px;}
.x4_c03061{left:595.080000px;}
@media print{
.v0_c03061{vertical-align:0.000000pt;}
.v2_c03061{vertical-align:1.279488pt;}
.v1_c03061{vertical-align:29.441280pt;}
.ls6_c03061{letter-spacing:-1.292544pt;}
.lsb_c03061{letter-spacing:-1.064448pt;}
.ls19_c03061{letter-spacing:-0.654720pt;}
.lsf_c03061{letter-spacing:-0.642048pt;}
.ls9_c03061{letter-spacing:-0.544896pt;}
.lsc_c03061{letter-spacing:-0.511104pt;}
.ls13_c03061{letter-spacing:-0.321024pt;}
.ls15_c03061{letter-spacing:-0.244992pt;}
.ls1a_c03061{letter-spacing:-0.240768pt;}
.ls11_c03061{letter-spacing:-0.232320pt;}
.ls8_c03061{letter-spacing:-0.215424pt;}
.ls10_c03061{letter-spacing:-0.211200pt;}
.ls5_c03061{letter-spacing:-0.105600pt;}
.ls18_c03061{letter-spacing:0.000000pt;}
.ls2_c03061{letter-spacing:0.005376pt;}
.ls1b_c03061{letter-spacing:0.101376pt;}
.ls7_c03061{letter-spacing:0.114048pt;}
.ls12_c03061{letter-spacing:0.211200pt;}
.lse_c03061{letter-spacing:0.451968pt;}
.ls17_c03061{letter-spacing:0.456960pt;}
.ls14_c03061{letter-spacing:0.477312pt;}
.lsd_c03061{letter-spacing:0.515328pt;}
.ls16_c03061{letter-spacing:0.528000pt;}
.lsa_c03061{letter-spacing:0.532224pt;}
.ls3_c03061{letter-spacing:0.544896pt;}
.ls0_c03061{letter-spacing:0.549120pt;}
.ls4_c03061{letter-spacing:0.637824pt;}
.ls1_c03061{letter-spacing:0.642048pt;}
.wsf_c03061{word-spacing:-13.445376pt;}
.ws7_c03061{word-spacing:-11.075328pt;}
.wsc_c03061{word-spacing:-11.037312pt;}
.wsb_c03061{word-spacing:-10.771200pt;}
.ws0_c03061{word-spacing:-10.454400pt;}
.ws3_c03061{word-spacing:-10.015104pt;}
.ws5_c03061{word-spacing:-9.495552pt;}
.ws1_c03061{word-spacing:-9.267456pt;}
.ws17_c03061{word-spacing:-0.963072pt;}
.ws15_c03061{word-spacing:-0.870144pt;}
.ws13_c03061{word-spacing:-0.865920pt;}
.ws1c_c03061{word-spacing:-0.639744pt;}
.ws1e_c03061{word-spacing:-0.422400pt;}
.ws16_c03061{word-spacing:-0.105600pt;}
.ws19_c03061{word-spacing:-0.088704pt;}
.ws1d_c03061{word-spacing:-0.080256pt;}
.ws1b_c03061{word-spacing:-0.076032pt;}
.ws14_c03061{word-spacing:0.000000pt;}
.ws18_c03061{word-spacing:0.321024pt;}
.ws1a_c03061{word-spacing:0.743424pt;}
.ws12_c03061{word-spacing:5.892480pt;}
.wsa_c03061{word-spacing:18.982656pt;}
.wsd_c03061{word-spacing:26.932224pt;}
.wse_c03061{word-spacing:29.600256pt;}
.ws11_c03061{word-spacing:30.966144pt;}
.ws9_c03061{word-spacing:32.127744pt;}
.ws2_c03061{word-spacing:33.563904pt;}
.ws10_c03061{word-spacing:33.796224pt;}
.ws4_c03061{word-spacing:34.860672pt;}
.ws6_c03061{word-spacing:35.468928pt;}
.ws8_c03061{word-spacing:37.357056pt;}
._0_c03061{margin-left:-1.731840pt;}
._2_c03061{width:1.077120pt;}
._4_c03061{width:1.993728pt;}
._9_c03061{width:3.497472pt;}
._b_c03061{width:17.761920pt;}
._8_c03061{width:19.105152pt;}
._c_c03061{width:20.845440pt;}
._a_c03061{width:22.429440pt;}
._6_c03061{width:27.054720pt;}
._5_c03061{width:33.149952pt;}
._1_c03061{width:44.668800pt;}
._3_c03061{width:45.691008pt;}
._7_c03061{width:46.725888pt;}
.fs0_c03061{font-size:42.240000pt;}
.fs1_c03061{font-size:53.760000pt;}
.y0_c03061{bottom:0.000000pt;}
.y4_c03061{bottom:16.320400pt;}
.y1e_c03061{bottom:117.225499pt;}
.y1d_c03061{bottom:130.665211pt;}
.y20_c03061{bottom:165.866875pt;}
.y1f_c03061{bottom:174.507067pt;}
.y1c_c03061{bottom:245.225371pt;}
.y1b_c03061{bottom:317.225563pt;}
.y19_c03061{bottom:361.386427pt;}
.y15_c03061{bottom:377.386939pt;}
.y1a_c03061{bottom:407.786011pt;}
.y18_c03061{bottom:437.226235pt;}
.y17_c03061{bottom:453.226747pt;}
.y14_c03061{bottom:482.666971pt;}
.y16_c03061{bottom:497.386555pt;}
.y13_c03061{bottom:513.387067pt;}
.y21_c03061{bottom:546.027067pt;}
.yf_c03061{bottom:593.386363pt;}
.y11_c03061{bottom:628.586875pt;}
.y10_c03061{bottom:637.227067pt;}
.ye_c03061{bottom:707.946523pt;}
.yd_c03061{bottom:766.505947pt;}
.yc_c03061{bottom:779.945659pt;}
.ya_c03061{bottom:823.786555pt;}
.y6_c03061{bottom:839.787067pt;}
.yb_c03061{bottom:870.506107pt;}
.y9_c03061{bottom:899.946331pt;}
.y8_c03061{bottom:915.946843pt;}
.y3_c03061{bottom:929.066667pt;}
.y2_c03061{bottom:945.386939pt;}
.y5_c03061{bottom:945.387067pt;}
.y7_c03061{bottom:959.786683pt;}
.y1_c03061{bottom:975.787067pt;}
.y12_c03061{bottom:1008.747067pt;}
.h3_c03061{height:26.240000pt;}
.h2_c03061{height:28.916250pt;}
.h1_c03061{height:37.063125pt;}
.h4_c03061{height:37.166250pt;}
.h6_c03061{height:48.581988pt;}
.h5_c03061{height:66.504405pt;}
.h0_c03061{height:1122.666667pt;}
.w2_c03061{width:191.360000pt;}
.w1_c03061{width:793.333333pt;}
.w0_c03061{width:793.626667pt;}
.x0_c03061{left:0.000000pt;}
.xf_c03061{left:104.000000pt;}
.xa_c03061{left:391.999968pt;}
.x6_c03061{left:396.160608pt;}
.xd_c03061{left:400.960000pt;}
.x9_c03061{left:404.799744pt;}
.x7_c03061{left:410.560224pt;}
.x1_c03061{left:411.840000pt;}
.xc_c03061{left:429.760416pt;}
.xb_c03061{left:437.439648pt;}
.x8_c03061{left:438.400608pt;}
.xe_c03061{left:450.560320pt;}
.x5_c03061{left:455.040000pt;}
.x2_c03061{left:468.159648pt;}
.x3_c03061{left:506.240000pt;}
.x4_c03061{left:528.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03062 {
    display:none;
  }
  .loading-indicator_c03062.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03062 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03062 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03062" -> "#page-container .classname_c03062")
 */
.pf_c03062 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03062 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03062.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03062 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03062 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03062 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03062 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03062 {overflow:visible;}
  }
}
.c_c03062 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03062 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03062:after { /* webkit #35443 */
  content: '';
}
.t_c03062:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03062 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03062 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03062 { /* info for Javascript */
  display:none;
}
.l_c03062 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03062 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03062 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03062:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03062 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03062.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03062.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03062 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03062;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03062{font-family:ff1_c03062;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03062;src:url('chunks/assets/font_00821029e01d1d733ad2e043.woff2')format("woff");}.ff2_c03062{font-family:ff2_c03062;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03062;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03062{font-family:ff3_c03062;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03062{vertical-align:0.000000px;}
.v2_c03062{vertical-align:1.439424px;}
.v1_c03062{vertical-align:33.121440px;}
.ls10_c03062{letter-spacing:-0.736560px;}
.lsd_c03062{letter-spacing:-0.722304px;}
.ls7_c03062{letter-spacing:-0.613008px;}
.lsa_c03062{letter-spacing:-0.574992px;}
.ls17_c03062{letter-spacing:-0.361152px;}
.ls9_c03062{letter-spacing:-0.275616px;}
.ls11_c03062{letter-spacing:-0.270864px;}
.lse_c03062{letter-spacing:-0.261360px;}
.ls6_c03062{letter-spacing:-0.242352px;}
.ls4_c03062{letter-spacing:-0.118800px;}
.ls16_c03062{letter-spacing:0.000000px;}
.ls1_c03062{letter-spacing:0.006048px;}
.ls14_c03062{letter-spacing:0.014256px;}
.ls13_c03062{letter-spacing:0.104544px;}
.ls5_c03062{letter-spacing:0.128304px;}
.lsc_c03062{letter-spacing:0.508464px;}
.ls15_c03062{letter-spacing:0.514080px;}
.lsf_c03062{letter-spacing:0.536976px;}
.lsb_c03062{letter-spacing:0.579744px;}
.ls12_c03062{letter-spacing:0.594000px;}
.ls8_c03062{letter-spacing:0.598752px;}
.ls2_c03062{letter-spacing:0.613008px;}
.ls3_c03062{letter-spacing:0.717552px;}
.ls0_c03062{letter-spacing:0.722304px;}
.sc__c03062{text-shadow:none;}
.sc0_c03062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03062{-webkit-text-stroke:0px transparent;}
.sc0_c03062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03062{word-spacing:-15.126048px;}
.ws5_c03062{word-spacing:-12.459744px;}
.wsb_c03062{word-spacing:-11.894256px;}
.ws2_c03062{word-spacing:-11.266992px;}
.ws13_c03062{word-spacing:-1.083456px;}
.wsf_c03062{word-spacing:-0.974160px;}
.ws17_c03062{word-spacing:-0.719712px;}
.ws11_c03062{word-spacing:-0.118800px;}
.ws15_c03062{word-spacing:-0.099792px;}
.ws16_c03062{word-spacing:-0.090288px;}
.ws12_c03062{word-spacing:-0.085536px;}
.ws10_c03062{word-spacing:0.000000px;}
.ws14_c03062{word-spacing:0.361152px;}
.ws8_c03062{word-spacing:6.629040px;}
.wsa_c03062{word-spacing:24.990768px;}
.ws9_c03062{word-spacing:30.298752px;}
.wsc_c03062{word-spacing:33.300288px;}
.ws7_c03062{word-spacing:34.836912px;}
.wse_c03062{word-spacing:36.742464px;}
.ws1_c03062{word-spacing:37.759392px;}
.ws0_c03062{word-spacing:38.020752px;}
.ws3_c03062{word-spacing:39.218256px;}
.ws4_c03062{word-spacing:39.902544px;}
.ws6_c03062{word-spacing:42.026688px;}
._0_c03062{margin-left:-1.948320px;}
._2_c03062{width:1.482624px;}
._4_c03062{width:3.934656px;}
._6_c03062{width:19.982160px;}
._7_c03062{width:23.451120px;}
._5_c03062{width:24.691392px;}
._9_c03062{width:35.535456px;}
._8_c03062{width:42.958080px;}
._1_c03062{width:50.252400px;}
._3_c03062{width:51.530688px;}
.fc0_c03062{color:rgb(0,0,0);}
.fs0_c03062{font-size:47.520000px;}
.fs1_c03062{font-size:60.480000px;}
.y0_c03062{bottom:0.000000px;}
.y1c_c03062{bottom:131.878686px;}
.y1b_c03062{bottom:146.998362px;}
.y1f_c03062{bottom:179.760918px;}
.y1e_c03062{bottom:186.600234px;}
.y1d_c03062{bottom:196.320450px;}
.y1a_c03062{bottom:275.878542px;}
.y19_c03062{bottom:356.878758px;}
.y17_c03062{bottom:406.559730px;}
.y13_c03062{bottom:424.560306px;}
.y18_c03062{bottom:458.759262px;}
.y16_c03062{bottom:491.879514px;}
.y15_c03062{bottom:509.880090px;}
.y12_c03062{bottom:543.000342px;}
.y14_c03062{bottom:559.559874px;}
.y11_c03062{bottom:577.560450px;}
.y20_c03062{bottom:614.280450px;}
.yc_c03062{bottom:652.438650px;}
.yb_c03062{bottom:667.558326px;}
.yf_c03062{bottom:700.320918px;}
.ye_c03062{bottom:707.160234px;}
.yd_c03062{bottom:716.880450px;}
.ya_c03062{bottom:796.438506px;}
.y9_c03062{bottom:877.438722px;}
.y7_c03062{bottom:926.759730px;}
.y3_c03062{bottom:944.760306px;}
.y8_c03062{bottom:979.319226px;}
.y6_c03062{bottom:1012.439478px;}
.y5_c03062{bottom:1030.440054px;}
.y2_c03062{bottom:1063.560306px;}
.y4_c03062{bottom:1079.759874px;}
.y1_c03062{bottom:1097.760450px;}
.y10_c03062{bottom:1134.840450px;}
.h3_c03062{height:32.530781px;}
.h1_c03062{height:41.696016px;}
.h2_c03062{height:41.812031px;}
.h5_c03062{height:54.654737px;}
.h4_c03062{height:74.817456px;}
.h0_c03062{height:1263.000000px;}
.w1_c03062{width:892.500000px;}
.w0_c03062{width:892.830000px;}
.x0_c03062{left:0.000000px;}
.xe_c03062{left:117.000000px;}
.x8_c03062{left:440.999856px;}
.x4_c03062{left:445.680576px;}
.xc_c03062{left:451.080000px;}
.x7_c03062{left:455.399604px;}
.x5_c03062{left:461.880144px;}
.x1_c03062{left:463.320000px;}
.xa_c03062{left:483.480360px;}
.x9_c03062{left:492.119496px;}
.x6_c03062{left:493.200576px;}
.xd_c03062{left:506.880360px;}
.x3_c03062{left:511.919892px;}
.x2_c03062{left:526.679604px;}
.xb_c03062{left:569.880036px;}
@media print{
.v0_c03062{vertical-align:0.000000pt;}
.v2_c03062{vertical-align:1.279488pt;}
.v1_c03062{vertical-align:29.441280pt;}
.ls10_c03062{letter-spacing:-0.654720pt;}
.lsd_c03062{letter-spacing:-0.642048pt;}
.ls7_c03062{letter-spacing:-0.544896pt;}
.lsa_c03062{letter-spacing:-0.511104pt;}
.ls17_c03062{letter-spacing:-0.321024pt;}
.ls9_c03062{letter-spacing:-0.244992pt;}
.ls11_c03062{letter-spacing:-0.240768pt;}
.lse_c03062{letter-spacing:-0.232320pt;}
.ls6_c03062{letter-spacing:-0.215424pt;}
.ls4_c03062{letter-spacing:-0.105600pt;}
.ls16_c03062{letter-spacing:0.000000pt;}
.ls1_c03062{letter-spacing:0.005376pt;}
.ls14_c03062{letter-spacing:0.012672pt;}
.ls13_c03062{letter-spacing:0.092928pt;}
.ls5_c03062{letter-spacing:0.114048pt;}
.lsc_c03062{letter-spacing:0.451968pt;}
.ls15_c03062{letter-spacing:0.456960pt;}
.lsf_c03062{letter-spacing:0.477312pt;}
.lsb_c03062{letter-spacing:0.515328pt;}
.ls12_c03062{letter-spacing:0.528000pt;}
.ls8_c03062{letter-spacing:0.532224pt;}
.ls2_c03062{letter-spacing:0.544896pt;}
.ls3_c03062{letter-spacing:0.637824pt;}
.ls0_c03062{letter-spacing:0.642048pt;}
.wsd_c03062{word-spacing:-13.445376pt;}
.ws5_c03062{word-spacing:-11.075328pt;}
.wsb_c03062{word-spacing:-10.572672pt;}
.ws2_c03062{word-spacing:-10.015104pt;}
.ws13_c03062{word-spacing:-0.963072pt;}
.wsf_c03062{word-spacing:-0.865920pt;}
.ws17_c03062{word-spacing:-0.639744pt;}
.ws11_c03062{word-spacing:-0.105600pt;}
.ws15_c03062{word-spacing:-0.088704pt;}
.ws16_c03062{word-spacing:-0.080256pt;}
.ws12_c03062{word-spacing:-0.076032pt;}
.ws10_c03062{word-spacing:0.000000pt;}
.ws14_c03062{word-spacing:0.321024pt;}
.ws8_c03062{word-spacing:5.892480pt;}
.wsa_c03062{word-spacing:22.214016pt;}
.ws9_c03062{word-spacing:26.932224pt;}
.wsc_c03062{word-spacing:29.600256pt;}
.ws7_c03062{word-spacing:30.966144pt;}
.wse_c03062{word-spacing:32.659968pt;}
.ws1_c03062{word-spacing:33.563904pt;}
.ws0_c03062{word-spacing:33.796224pt;}
.ws3_c03062{word-spacing:34.860672pt;}
.ws4_c03062{word-spacing:35.468928pt;}
.ws6_c03062{word-spacing:37.357056pt;}
._0_c03062{margin-left:-1.731840pt;}
._2_c03062{width:1.317888pt;}
._4_c03062{width:3.497472pt;}
._6_c03062{width:17.761920pt;}
._7_c03062{width:20.845440pt;}
._5_c03062{width:21.947904pt;}
._9_c03062{width:31.587072pt;}
._8_c03062{width:38.184960pt;}
._1_c03062{width:44.668800pt;}
._3_c03062{width:45.805056pt;}
.fs0_c03062{font-size:42.240000pt;}
.fs1_c03062{font-size:53.760000pt;}
.y0_c03062{bottom:0.000000pt;}
.y1c_c03062{bottom:117.225499pt;}
.y1b_c03062{bottom:130.665211pt;}
.y1f_c03062{bottom:159.787483pt;}
.y1e_c03062{bottom:165.866875pt;}
.y1d_c03062{bottom:174.507067pt;}
.y1a_c03062{bottom:245.225371pt;}
.y19_c03062{bottom:317.225563pt;}
.y17_c03062{bottom:361.386427pt;}
.y13_c03062{bottom:377.386939pt;}
.y18_c03062{bottom:407.786011pt;}
.y16_c03062{bottom:437.226235pt;}
.y15_c03062{bottom:453.226747pt;}
.y12_c03062{bottom:482.666971pt;}
.y14_c03062{bottom:497.386555pt;}
.y11_c03062{bottom:513.387067pt;}
.y20_c03062{bottom:546.027067pt;}
.yc_c03062{bottom:579.945467pt;}
.yb_c03062{bottom:593.385179pt;}
.yf_c03062{bottom:622.507483pt;}
.ye_c03062{bottom:628.586875pt;}
.yd_c03062{bottom:637.227067pt;}
.ya_c03062{bottom:707.945339pt;}
.y9_c03062{bottom:779.945531pt;}
.y7_c03062{bottom:823.786427pt;}
.y3_c03062{bottom:839.786939pt;}
.y8_c03062{bottom:870.505979pt;}
.y6_c03062{bottom:899.946203pt;}
.y5_c03062{bottom:915.946715pt;}
.y2_c03062{bottom:945.386939pt;}
.y4_c03062{bottom:959.786555pt;}
.y1_c03062{bottom:975.787067pt;}
.y10_c03062{bottom:1008.747067pt;}
.h3_c03062{height:28.916250pt;}
.h1_c03062{height:37.063125pt;}
.h2_c03062{height:37.166250pt;}
.h5_c03062{height:48.581988pt;}
.h4_c03062{height:66.504405pt;}
.h0_c03062{height:1122.666667pt;}
.w1_c03062{width:793.333333pt;}
.w0_c03062{width:793.626667pt;}
.x0_c03062{left:0.000000pt;}
.xe_c03062{left:104.000000pt;}
.x8_c03062{left:391.999872pt;}
.x4_c03062{left:396.160512pt;}
.xc_c03062{left:400.960000pt;}
.x7_c03062{left:404.799648pt;}
.x5_c03062{left:410.560128pt;}
.x1_c03062{left:411.840000pt;}
.xa_c03062{left:429.760320pt;}
.x9_c03062{left:437.439552pt;}
.x6_c03062{left:438.400512pt;}
.xd_c03062{left:450.560320pt;}
.x3_c03062{left:455.039904pt;}
.x2_c03062{left:468.159648pt;}
.xb_c03062{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03063 {
    display:none;
  }
  .loading-indicator_c03063.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03063 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03063 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03063" -> "#page-container .classname_c03063")
 */
.pf_c03063 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03063 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03063.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03063 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03063 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03063 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03063 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03063 {overflow:visible;}
  }
}
.c_c03063 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03063 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03063:after { /* webkit #35443 */
  content: '';
}
.t_c03063:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03063 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03063 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03063 { /* info for Javascript */
  display:none;
}
.l_c03063 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03063 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03063 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03063:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03063 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03063.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03063.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03063 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03063{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03063;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03063{font-family:ff1_c03063;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03063;src:url('chunks/assets/font_9ecfaca1c3ca229e0c2a6bc3.woff2')format("woff");}.ff2_c03063{font-family:ff2_c03063;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03063;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03063{font-family:ff3_c03063;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03063{vertical-align:0.000000px;}
.v1_c03063{vertical-align:1.439424px;}
.lsc_c03063{letter-spacing:-1.197504px;}
.lsa_c03063{letter-spacing:-0.722304px;}
.ls6_c03063{letter-spacing:-0.613008px;}
.ls8_c03063{letter-spacing:-0.574992px;}
.lsf_c03063{letter-spacing:-0.275616px;}
.lsd_c03063{letter-spacing:-0.261360px;}
.ls5_c03063{letter-spacing:-0.242352px;}
.ls3_c03063{letter-spacing:-0.118800px;}
.ls12_c03063{letter-spacing:0.000000px;}
.ls1_c03063{letter-spacing:0.006048px;}
.ls4_c03063{letter-spacing:0.128304px;}
.lsb_c03063{letter-spacing:0.508464px;}
.ls11_c03063{letter-spacing:0.514080px;}
.lse_c03063{letter-spacing:0.536976px;}
.ls9_c03063{letter-spacing:0.579744px;}
.ls10_c03063{letter-spacing:0.594000px;}
.ls7_c03063{letter-spacing:0.598752px;}
.ls2_c03063{letter-spacing:0.613008px;}
.ls0_c03063{letter-spacing:0.717552px;}
.sc__c03063{text-shadow:none;}
.sc0_c03063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03063{-webkit-text-stroke:0px transparent;}
.sc0_c03063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03063{word-spacing:-15.126048px;}
.wsa_c03063{word-spacing:-12.474000px;}
.ws8_c03063{word-spacing:-12.459744px;}
.ws9_c03063{word-spacing:-12.416976px;}
.ws4_c03063{word-spacing:-11.637648px;}
.ws2_c03063{word-spacing:-11.266992px;}
.ws10_c03063{word-spacing:-1.078704px;}
.wsd_c03063{word-spacing:-0.974160px;}
.ws15_c03063{word-spacing:-0.719712px;}
.wsf_c03063{word-spacing:-0.118800px;}
.ws13_c03063{word-spacing:-0.099792px;}
.ws14_c03063{word-spacing:-0.085536px;}
.wse_c03063{word-spacing:0.000000px;}
.ws11_c03063{word-spacing:0.361152px;}
.ws12_c03063{word-spacing:0.836352px;}
.wsb_c03063{word-spacing:33.300288px;}
.ws6_c03063{word-spacing:36.742464px;}
.ws1_c03063{word-spacing:37.759392px;}
.ws0_c03063{word-spacing:38.020752px;}
.ws3_c03063{word-spacing:39.218256px;}
.ws5_c03063{word-spacing:39.902544px;}
.ws7_c03063{word-spacing:42.026688px;}
._0_c03063{margin-left:-1.948320px;}
._2_c03063{width:1.482624px;}
._5_c03063{width:2.770416px;}
._4_c03063{width:4.329072px;}
._1_c03063{width:50.252400px;}
._3_c03063{width:51.530688px;}
.fc0_c03063{color:rgb(0,0,0);}
.fs0_c03063{font-size:47.520000px;}
.fs1_c03063{font-size:60.480000px;}
.y0_c03063{bottom:0.000000px;}
.y19_c03063{bottom:146.998362px;}
.y1b_c03063{bottom:186.600234px;}
.y1a_c03063{bottom:196.320450px;}
.y18_c03063{bottom:275.878542px;}
.y17_c03063{bottom:356.878758px;}
.y15_c03063{bottom:406.559730px;}
.y11_c03063{bottom:424.560306px;}
.y16_c03063{bottom:458.759262px;}
.y14_c03063{bottom:491.879514px;}
.y13_c03063{bottom:509.880090px;}
.y10_c03063{bottom:543.000342px;}
.y12_c03063{bottom:559.559874px;}
.yf_c03063{bottom:577.560450px;}
.y1c_c03063{bottom:614.280450px;}
.yb_c03063{bottom:667.558326px;}
.yd_c03063{bottom:707.160234px;}
.yc_c03063{bottom:716.880450px;}
.ya_c03063{bottom:796.438506px;}
.y9_c03063{bottom:877.438722px;}
.y7_c03063{bottom:926.759730px;}
.y3_c03063{bottom:944.760306px;}
.y8_c03063{bottom:979.319226px;}
.y6_c03063{bottom:1012.439478px;}
.y5_c03063{bottom:1030.440054px;}
.y2_c03063{bottom:1063.560306px;}
.y4_c03063{bottom:1079.759874px;}
.y1_c03063{bottom:1097.760450px;}
.ye_c03063{bottom:1134.840450px;}
.h3_c03063{height:32.530781px;}
.h1_c03063{height:41.696016px;}
.h2_c03063{height:41.812031px;}
.h4_c03063{height:54.654737px;}
.h0_c03063{height:1263.000000px;}
.w1_c03063{width:892.500000px;}
.w0_c03063{width:892.830000px;}
.x0_c03063{left:0.000000px;}
.xd_c03063{left:117.000000px;}
.x8_c03063{left:440.999856px;}
.x4_c03063{left:445.680576px;}
.xb_c03063{left:451.080000px;}
.x7_c03063{left:455.399604px;}
.x5_c03063{left:461.880144px;}
.x1_c03063{left:463.320000px;}
.xa_c03063{left:483.480360px;}
.x9_c03063{left:492.119496px;}
.x6_c03063{left:493.200576px;}
.xc_c03063{left:506.880360px;}
.x3_c03063{left:511.919892px;}
.x2_c03063{left:526.679604px;}
@media print{
.v0_c03063{vertical-align:0.000000pt;}
.v1_c03063{vertical-align:1.279488pt;}
.lsc_c03063{letter-spacing:-1.064448pt;}
.lsa_c03063{letter-spacing:-0.642048pt;}
.ls6_c03063{letter-spacing:-0.544896pt;}
.ls8_c03063{letter-spacing:-0.511104pt;}
.lsf_c03063{letter-spacing:-0.244992pt;}
.lsd_c03063{letter-spacing:-0.232320pt;}
.ls5_c03063{letter-spacing:-0.215424pt;}
.ls3_c03063{letter-spacing:-0.105600pt;}
.ls12_c03063{letter-spacing:0.000000pt;}
.ls1_c03063{letter-spacing:0.005376pt;}
.ls4_c03063{letter-spacing:0.114048pt;}
.lsb_c03063{letter-spacing:0.451968pt;}
.ls11_c03063{letter-spacing:0.456960pt;}
.lse_c03063{letter-spacing:0.477312pt;}
.ls9_c03063{letter-spacing:0.515328pt;}
.ls10_c03063{letter-spacing:0.528000pt;}
.ls7_c03063{letter-spacing:0.532224pt;}
.ls2_c03063{letter-spacing:0.544896pt;}
.ls0_c03063{letter-spacing:0.637824pt;}
.wsc_c03063{word-spacing:-13.445376pt;}
.wsa_c03063{word-spacing:-11.088000pt;}
.ws8_c03063{word-spacing:-11.075328pt;}
.ws9_c03063{word-spacing:-11.037312pt;}
.ws4_c03063{word-spacing:-10.344576pt;}
.ws2_c03063{word-spacing:-10.015104pt;}
.ws10_c03063{word-spacing:-0.958848pt;}
.wsd_c03063{word-spacing:-0.865920pt;}
.ws15_c03063{word-spacing:-0.639744pt;}
.wsf_c03063{word-spacing:-0.105600pt;}
.ws13_c03063{word-spacing:-0.088704pt;}
.ws14_c03063{word-spacing:-0.076032pt;}
.wse_c03063{word-spacing:0.000000pt;}
.ws11_c03063{word-spacing:0.321024pt;}
.ws12_c03063{word-spacing:0.743424pt;}
.wsb_c03063{word-spacing:29.600256pt;}
.ws6_c03063{word-spacing:32.659968pt;}
.ws1_c03063{word-spacing:33.563904pt;}
.ws0_c03063{word-spacing:33.796224pt;}
.ws3_c03063{word-spacing:34.860672pt;}
.ws5_c03063{word-spacing:35.468928pt;}
.ws7_c03063{word-spacing:37.357056pt;}
._0_c03063{margin-left:-1.731840pt;}
._2_c03063{width:1.317888pt;}
._5_c03063{width:2.462592pt;}
._4_c03063{width:3.848064pt;}
._1_c03063{width:44.668800pt;}
._3_c03063{width:45.805056pt;}
.fs0_c03063{font-size:42.240000pt;}
.fs1_c03063{font-size:53.760000pt;}
.y0_c03063{bottom:0.000000pt;}
.y19_c03063{bottom:130.665211pt;}
.y1b_c03063{bottom:165.866875pt;}
.y1a_c03063{bottom:174.507067pt;}
.y18_c03063{bottom:245.225371pt;}
.y17_c03063{bottom:317.225563pt;}
.y15_c03063{bottom:361.386427pt;}
.y11_c03063{bottom:377.386939pt;}
.y16_c03063{bottom:407.786011pt;}
.y14_c03063{bottom:437.226235pt;}
.y13_c03063{bottom:453.226747pt;}
.y10_c03063{bottom:482.666971pt;}
.y12_c03063{bottom:497.386555pt;}
.yf_c03063{bottom:513.387067pt;}
.y1c_c03063{bottom:546.027067pt;}
.yb_c03063{bottom:593.385179pt;}
.yd_c03063{bottom:628.586875pt;}
.yc_c03063{bottom:637.227067pt;}
.ya_c03063{bottom:707.945339pt;}
.y9_c03063{bottom:779.945531pt;}
.y7_c03063{bottom:823.786427pt;}
.y3_c03063{bottom:839.786939pt;}
.y8_c03063{bottom:870.505979pt;}
.y6_c03063{bottom:899.946203pt;}
.y5_c03063{bottom:915.946715pt;}
.y2_c03063{bottom:945.386939pt;}
.y4_c03063{bottom:959.786555pt;}
.y1_c03063{bottom:975.787067pt;}
.ye_c03063{bottom:1008.747067pt;}
.h3_c03063{height:28.916250pt;}
.h1_c03063{height:37.063125pt;}
.h2_c03063{height:37.166250pt;}
.h4_c03063{height:48.581988pt;}
.h0_c03063{height:1122.666667pt;}
.w1_c03063{width:793.333333pt;}
.w0_c03063{width:793.626667pt;}
.x0_c03063{left:0.000000pt;}
.xd_c03063{left:104.000000pt;}
.x8_c03063{left:391.999872pt;}
.x4_c03063{left:396.160512pt;}
.xb_c03063{left:400.960000pt;}
.x7_c03063{left:404.799648pt;}
.x5_c03063{left:410.560128pt;}
.x1_c03063{left:411.840000pt;}
.xa_c03063{left:429.760320pt;}
.x9_c03063{left:437.439552pt;}
.x6_c03063{left:438.400512pt;}
.xc_c03063{left:450.560320pt;}
.x3_c03063{left:455.039904pt;}
.x2_c03063{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03064 {
    display:none;
  }
  .loading-indicator_c03064.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03064 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03064 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03064" -> "#page-container .classname_c03064")
 */
.pf_c03064 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03064 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03064.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03064 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03064 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03064 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03064 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03064 {overflow:visible;}
  }
}
.c_c03064 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03064 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03064:after { /* webkit #35443 */
  content: '';
}
.t_c03064:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03064 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03064 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03064 { /* info for Javascript */
  display:none;
}
.l_c03064 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03064 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03064 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03064:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03064 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03064.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03064.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03064 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03064{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03064;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03064{font-family:ff1_c03064;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03064;src:url('chunks/assets/font_6fb56dc0f820c9eb775b9578.woff2')format("woff");}.ff2_c03064{font-family:ff2_c03064;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03064;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03064{font-family:ff3_c03064;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03064{vertical-align:0.000000px;}
.v1_c03064{vertical-align:1.439424px;}
.lsc_c03064{letter-spacing:-1.197504px;}
.lsa_c03064{letter-spacing:-0.722304px;}
.ls6_c03064{letter-spacing:-0.613008px;}
.ls8_c03064{letter-spacing:-0.574992px;}
.lsf_c03064{letter-spacing:-0.275616px;}
.lsd_c03064{letter-spacing:-0.261360px;}
.ls5_c03064{letter-spacing:-0.242352px;}
.ls3_c03064{letter-spacing:-0.118800px;}
.ls12_c03064{letter-spacing:0.000000px;}
.ls1_c03064{letter-spacing:0.006048px;}
.ls4_c03064{letter-spacing:0.128304px;}
.lsb_c03064{letter-spacing:0.508464px;}
.ls11_c03064{letter-spacing:0.514080px;}
.lse_c03064{letter-spacing:0.536976px;}
.ls9_c03064{letter-spacing:0.579744px;}
.ls10_c03064{letter-spacing:0.594000px;}
.ls7_c03064{letter-spacing:0.598752px;}
.ls2_c03064{letter-spacing:0.613008px;}
.ls0_c03064{letter-spacing:0.717552px;}
.sc__c03064{text-shadow:none;}
.sc0_c03064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03064{-webkit-text-stroke:0px transparent;}
.sc0_c03064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03064{word-spacing:-15.126048px;}
.wsa_c03064{word-spacing:-12.474000px;}
.ws8_c03064{word-spacing:-12.459744px;}
.ws9_c03064{word-spacing:-12.416976px;}
.ws4_c03064{word-spacing:-11.637648px;}
.ws2_c03064{word-spacing:-11.266992px;}
.ws10_c03064{word-spacing:-1.078704px;}
.wsd_c03064{word-spacing:-0.974160px;}
.ws15_c03064{word-spacing:-0.719712px;}
.wsf_c03064{word-spacing:-0.118800px;}
.ws13_c03064{word-spacing:-0.099792px;}
.ws14_c03064{word-spacing:-0.085536px;}
.wse_c03064{word-spacing:0.000000px;}
.ws11_c03064{word-spacing:0.361152px;}
.ws12_c03064{word-spacing:0.836352px;}
.wsb_c03064{word-spacing:33.300288px;}
.ws6_c03064{word-spacing:36.742464px;}
.ws1_c03064{word-spacing:37.759392px;}
.ws0_c03064{word-spacing:38.020752px;}
.ws3_c03064{word-spacing:39.218256px;}
.ws5_c03064{word-spacing:39.902544px;}
.ws7_c03064{word-spacing:42.026688px;}
._0_c03064{margin-left:-1.948320px;}
._2_c03064{width:1.482624px;}
._5_c03064{width:2.770416px;}
._4_c03064{width:4.329072px;}
._1_c03064{width:50.252400px;}
._3_c03064{width:51.530688px;}
.fc0_c03064{color:rgb(0,0,0);}
.fs0_c03064{font-size:47.520000px;}
.fs1_c03064{font-size:60.480000px;}
.y0_c03064{bottom:0.000000px;}
.y19_c03064{bottom:146.998362px;}
.y1b_c03064{bottom:186.600234px;}
.y1a_c03064{bottom:196.320450px;}
.y18_c03064{bottom:275.878542px;}
.y17_c03064{bottom:356.878758px;}
.y15_c03064{bottom:406.559730px;}
.y11_c03064{bottom:424.560306px;}
.y16_c03064{bottom:458.759262px;}
.y14_c03064{bottom:491.879514px;}
.y13_c03064{bottom:509.880090px;}
.y10_c03064{bottom:543.000342px;}
.y12_c03064{bottom:559.559874px;}
.yf_c03064{bottom:577.560450px;}
.y1c_c03064{bottom:614.280450px;}
.yb_c03064{bottom:667.558326px;}
.yd_c03064{bottom:707.160234px;}
.yc_c03064{bottom:716.880450px;}
.ya_c03064{bottom:796.438506px;}
.y9_c03064{bottom:877.438722px;}
.y7_c03064{bottom:926.759730px;}
.y3_c03064{bottom:944.760306px;}
.y8_c03064{bottom:979.319226px;}
.y6_c03064{bottom:1012.439478px;}
.y5_c03064{bottom:1030.440054px;}
.y2_c03064{bottom:1063.560306px;}
.y4_c03064{bottom:1079.759874px;}
.y1_c03064{bottom:1097.760450px;}
.ye_c03064{bottom:1134.840450px;}
.h3_c03064{height:32.530781px;}
.h1_c03064{height:41.696016px;}
.h2_c03064{height:41.812031px;}
.h4_c03064{height:54.654737px;}
.h0_c03064{height:1263.000000px;}
.w1_c03064{width:892.500000px;}
.w0_c03064{width:892.830000px;}
.x0_c03064{left:0.000000px;}
.xd_c03064{left:117.000000px;}
.x8_c03064{left:440.999856px;}
.x4_c03064{left:445.680576px;}
.xb_c03064{left:451.080000px;}
.x7_c03064{left:455.399604px;}
.x5_c03064{left:461.880144px;}
.x1_c03064{left:463.320000px;}
.xa_c03064{left:483.480360px;}
.x9_c03064{left:492.119496px;}
.x6_c03064{left:493.200576px;}
.xc_c03064{left:506.880360px;}
.x3_c03064{left:511.919892px;}
.x2_c03064{left:526.679604px;}
@media print{
.v0_c03064{vertical-align:0.000000pt;}
.v1_c03064{vertical-align:1.279488pt;}
.lsc_c03064{letter-spacing:-1.064448pt;}
.lsa_c03064{letter-spacing:-0.642048pt;}
.ls6_c03064{letter-spacing:-0.544896pt;}
.ls8_c03064{letter-spacing:-0.511104pt;}
.lsf_c03064{letter-spacing:-0.244992pt;}
.lsd_c03064{letter-spacing:-0.232320pt;}
.ls5_c03064{letter-spacing:-0.215424pt;}
.ls3_c03064{letter-spacing:-0.105600pt;}
.ls12_c03064{letter-spacing:0.000000pt;}
.ls1_c03064{letter-spacing:0.005376pt;}
.ls4_c03064{letter-spacing:0.114048pt;}
.lsb_c03064{letter-spacing:0.451968pt;}
.ls11_c03064{letter-spacing:0.456960pt;}
.lse_c03064{letter-spacing:0.477312pt;}
.ls9_c03064{letter-spacing:0.515328pt;}
.ls10_c03064{letter-spacing:0.528000pt;}
.ls7_c03064{letter-spacing:0.532224pt;}
.ls2_c03064{letter-spacing:0.544896pt;}
.ls0_c03064{letter-spacing:0.637824pt;}
.wsc_c03064{word-spacing:-13.445376pt;}
.wsa_c03064{word-spacing:-11.088000pt;}
.ws8_c03064{word-spacing:-11.075328pt;}
.ws9_c03064{word-spacing:-11.037312pt;}
.ws4_c03064{word-spacing:-10.344576pt;}
.ws2_c03064{word-spacing:-10.015104pt;}
.ws10_c03064{word-spacing:-0.958848pt;}
.wsd_c03064{word-spacing:-0.865920pt;}
.ws15_c03064{word-spacing:-0.639744pt;}
.wsf_c03064{word-spacing:-0.105600pt;}
.ws13_c03064{word-spacing:-0.088704pt;}
.ws14_c03064{word-spacing:-0.076032pt;}
.wse_c03064{word-spacing:0.000000pt;}
.ws11_c03064{word-spacing:0.321024pt;}
.ws12_c03064{word-spacing:0.743424pt;}
.wsb_c03064{word-spacing:29.600256pt;}
.ws6_c03064{word-spacing:32.659968pt;}
.ws1_c03064{word-spacing:33.563904pt;}
.ws0_c03064{word-spacing:33.796224pt;}
.ws3_c03064{word-spacing:34.860672pt;}
.ws5_c03064{word-spacing:35.468928pt;}
.ws7_c03064{word-spacing:37.357056pt;}
._0_c03064{margin-left:-1.731840pt;}
._2_c03064{width:1.317888pt;}
._5_c03064{width:2.462592pt;}
._4_c03064{width:3.848064pt;}
._1_c03064{width:44.668800pt;}
._3_c03064{width:45.805056pt;}
.fs0_c03064{font-size:42.240000pt;}
.fs1_c03064{font-size:53.760000pt;}
.y0_c03064{bottom:0.000000pt;}
.y19_c03064{bottom:130.665211pt;}
.y1b_c03064{bottom:165.866875pt;}
.y1a_c03064{bottom:174.507067pt;}
.y18_c03064{bottom:245.225371pt;}
.y17_c03064{bottom:317.225563pt;}
.y15_c03064{bottom:361.386427pt;}
.y11_c03064{bottom:377.386939pt;}
.y16_c03064{bottom:407.786011pt;}
.y14_c03064{bottom:437.226235pt;}
.y13_c03064{bottom:453.226747pt;}
.y10_c03064{bottom:482.666971pt;}
.y12_c03064{bottom:497.386555pt;}
.yf_c03064{bottom:513.387067pt;}
.y1c_c03064{bottom:546.027067pt;}
.yb_c03064{bottom:593.385179pt;}
.yd_c03064{bottom:628.586875pt;}
.yc_c03064{bottom:637.227067pt;}
.ya_c03064{bottom:707.945339pt;}
.y9_c03064{bottom:779.945531pt;}
.y7_c03064{bottom:823.786427pt;}
.y3_c03064{bottom:839.786939pt;}
.y8_c03064{bottom:870.505979pt;}
.y6_c03064{bottom:899.946203pt;}
.y5_c03064{bottom:915.946715pt;}
.y2_c03064{bottom:945.386939pt;}
.y4_c03064{bottom:959.786555pt;}
.y1_c03064{bottom:975.787067pt;}
.ye_c03064{bottom:1008.747067pt;}
.h3_c03064{height:28.916250pt;}
.h1_c03064{height:37.063125pt;}
.h2_c03064{height:37.166250pt;}
.h4_c03064{height:48.581988pt;}
.h0_c03064{height:1122.666667pt;}
.w1_c03064{width:793.333333pt;}
.w0_c03064{width:793.626667pt;}
.x0_c03064{left:0.000000pt;}
.xd_c03064{left:104.000000pt;}
.x8_c03064{left:391.999872pt;}
.x4_c03064{left:396.160512pt;}
.xb_c03064{left:400.960000pt;}
.x7_c03064{left:404.799648pt;}
.x5_c03064{left:410.560128pt;}
.x1_c03064{left:411.840000pt;}
.xa_c03064{left:429.760320pt;}
.x9_c03064{left:437.439552pt;}
.x6_c03064{left:438.400512pt;}
.xc_c03064{left:450.560320pt;}
.x3_c03064{left:455.039904pt;}
.x2_c03064{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03065 {
    display:none;
  }
  .loading-indicator_c03065.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03065 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03065 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03065" -> "#page-container .classname_c03065")
 */
.pf_c03065 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03065 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03065.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03065 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03065 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03065 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03065 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03065 {overflow:visible;}
  }
}
.c_c03065 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03065 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03065:after { /* webkit #35443 */
  content: '';
}
.t_c03065:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03065 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03065 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03065 { /* info for Javascript */
  display:none;
}
.l_c03065 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03065 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03065 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03065:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03065 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03065.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03065.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03065 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03065{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03065;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03065{font-family:ff1_c03065;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03065;src:url('chunks/assets/font_6fb56dc0f820c9eb775b9578.woff2')format("woff");}.ff2_c03065{font-family:ff2_c03065;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03065;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03065{font-family:ff3_c03065;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03065{vertical-align:0.000000px;}
.v1_c03065{vertical-align:1.439424px;}
.lsc_c03065{letter-spacing:-1.197504px;}
.lsa_c03065{letter-spacing:-0.722304px;}
.ls6_c03065{letter-spacing:-0.613008px;}
.ls8_c03065{letter-spacing:-0.574992px;}
.lsf_c03065{letter-spacing:-0.275616px;}
.lsd_c03065{letter-spacing:-0.261360px;}
.ls5_c03065{letter-spacing:-0.242352px;}
.ls3_c03065{letter-spacing:-0.118800px;}
.ls12_c03065{letter-spacing:0.000000px;}
.ls1_c03065{letter-spacing:0.006048px;}
.ls4_c03065{letter-spacing:0.128304px;}
.lsb_c03065{letter-spacing:0.508464px;}
.ls11_c03065{letter-spacing:0.514080px;}
.lse_c03065{letter-spacing:0.536976px;}
.ls9_c03065{letter-spacing:0.579744px;}
.ls10_c03065{letter-spacing:0.594000px;}
.ls7_c03065{letter-spacing:0.598752px;}
.ls2_c03065{letter-spacing:0.613008px;}
.ls0_c03065{letter-spacing:0.717552px;}
.sc__c03065{text-shadow:none;}
.sc0_c03065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03065{-webkit-text-stroke:0px transparent;}
.sc0_c03065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03065{word-spacing:-15.126048px;}
.wsa_c03065{word-spacing:-12.474000px;}
.ws8_c03065{word-spacing:-12.459744px;}
.ws9_c03065{word-spacing:-12.416976px;}
.ws4_c03065{word-spacing:-11.637648px;}
.ws2_c03065{word-spacing:-11.266992px;}
.ws10_c03065{word-spacing:-1.078704px;}
.wsd_c03065{word-spacing:-0.974160px;}
.ws15_c03065{word-spacing:-0.719712px;}
.wsf_c03065{word-spacing:-0.118800px;}
.ws13_c03065{word-spacing:-0.099792px;}
.ws14_c03065{word-spacing:-0.085536px;}
.wse_c03065{word-spacing:0.000000px;}
.ws11_c03065{word-spacing:0.361152px;}
.ws12_c03065{word-spacing:0.836352px;}
.wsb_c03065{word-spacing:33.300288px;}
.ws6_c03065{word-spacing:36.742464px;}
.ws1_c03065{word-spacing:37.759392px;}
.ws0_c03065{word-spacing:38.020752px;}
.ws3_c03065{word-spacing:39.218256px;}
.ws5_c03065{word-spacing:39.902544px;}
.ws7_c03065{word-spacing:42.026688px;}
._0_c03065{margin-left:-1.948320px;}
._2_c03065{width:1.482624px;}
._5_c03065{width:2.770416px;}
._4_c03065{width:4.329072px;}
._1_c03065{width:50.252400px;}
._3_c03065{width:51.530688px;}
.fc0_c03065{color:rgb(0,0,0);}
.fs0_c03065{font-size:47.520000px;}
.fs1_c03065{font-size:60.480000px;}
.y0_c03065{bottom:0.000000px;}
.y19_c03065{bottom:146.998362px;}
.y1b_c03065{bottom:186.600234px;}
.y1a_c03065{bottom:196.320450px;}
.y18_c03065{bottom:275.878542px;}
.y17_c03065{bottom:356.878758px;}
.y15_c03065{bottom:406.559730px;}
.y11_c03065{bottom:424.560306px;}
.y16_c03065{bottom:458.759262px;}
.y14_c03065{bottom:491.879514px;}
.y13_c03065{bottom:509.880090px;}
.y10_c03065{bottom:543.000342px;}
.y12_c03065{bottom:559.559874px;}
.yf_c03065{bottom:577.560450px;}
.y1c_c03065{bottom:614.280450px;}
.yb_c03065{bottom:667.558326px;}
.yd_c03065{bottom:707.160234px;}
.yc_c03065{bottom:716.880450px;}
.ya_c03065{bottom:796.438506px;}
.y9_c03065{bottom:877.438722px;}
.y7_c03065{bottom:926.759730px;}
.y3_c03065{bottom:944.760306px;}
.y8_c03065{bottom:979.319226px;}
.y6_c03065{bottom:1012.439478px;}
.y5_c03065{bottom:1030.440054px;}
.y2_c03065{bottom:1063.560306px;}
.y4_c03065{bottom:1079.759874px;}
.y1_c03065{bottom:1097.760450px;}
.ye_c03065{bottom:1134.840450px;}
.h3_c03065{height:32.530781px;}
.h1_c03065{height:41.696016px;}
.h2_c03065{height:41.812031px;}
.h4_c03065{height:54.654737px;}
.h0_c03065{height:1263.000000px;}
.w1_c03065{width:892.500000px;}
.w0_c03065{width:892.830000px;}
.x0_c03065{left:0.000000px;}
.xd_c03065{left:117.000000px;}
.x8_c03065{left:440.999856px;}
.x4_c03065{left:445.680576px;}
.xb_c03065{left:451.080000px;}
.x7_c03065{left:455.399604px;}
.x5_c03065{left:461.880144px;}
.x1_c03065{left:463.320000px;}
.xa_c03065{left:483.480360px;}
.x9_c03065{left:492.119496px;}
.x6_c03065{left:493.200576px;}
.xc_c03065{left:506.880360px;}
.x3_c03065{left:511.919892px;}
.x2_c03065{left:526.679604px;}
@media print{
.v0_c03065{vertical-align:0.000000pt;}
.v1_c03065{vertical-align:1.279488pt;}
.lsc_c03065{letter-spacing:-1.064448pt;}
.lsa_c03065{letter-spacing:-0.642048pt;}
.ls6_c03065{letter-spacing:-0.544896pt;}
.ls8_c03065{letter-spacing:-0.511104pt;}
.lsf_c03065{letter-spacing:-0.244992pt;}
.lsd_c03065{letter-spacing:-0.232320pt;}
.ls5_c03065{letter-spacing:-0.215424pt;}
.ls3_c03065{letter-spacing:-0.105600pt;}
.ls12_c03065{letter-spacing:0.000000pt;}
.ls1_c03065{letter-spacing:0.005376pt;}
.ls4_c03065{letter-spacing:0.114048pt;}
.lsb_c03065{letter-spacing:0.451968pt;}
.ls11_c03065{letter-spacing:0.456960pt;}
.lse_c03065{letter-spacing:0.477312pt;}
.ls9_c03065{letter-spacing:0.515328pt;}
.ls10_c03065{letter-spacing:0.528000pt;}
.ls7_c03065{letter-spacing:0.532224pt;}
.ls2_c03065{letter-spacing:0.544896pt;}
.ls0_c03065{letter-spacing:0.637824pt;}
.wsc_c03065{word-spacing:-13.445376pt;}
.wsa_c03065{word-spacing:-11.088000pt;}
.ws8_c03065{word-spacing:-11.075328pt;}
.ws9_c03065{word-spacing:-11.037312pt;}
.ws4_c03065{word-spacing:-10.344576pt;}
.ws2_c03065{word-spacing:-10.015104pt;}
.ws10_c03065{word-spacing:-0.958848pt;}
.wsd_c03065{word-spacing:-0.865920pt;}
.ws15_c03065{word-spacing:-0.639744pt;}
.wsf_c03065{word-spacing:-0.105600pt;}
.ws13_c03065{word-spacing:-0.088704pt;}
.ws14_c03065{word-spacing:-0.076032pt;}
.wse_c03065{word-spacing:0.000000pt;}
.ws11_c03065{word-spacing:0.321024pt;}
.ws12_c03065{word-spacing:0.743424pt;}
.wsb_c03065{word-spacing:29.600256pt;}
.ws6_c03065{word-spacing:32.659968pt;}
.ws1_c03065{word-spacing:33.563904pt;}
.ws0_c03065{word-spacing:33.796224pt;}
.ws3_c03065{word-spacing:34.860672pt;}
.ws5_c03065{word-spacing:35.468928pt;}
.ws7_c03065{word-spacing:37.357056pt;}
._0_c03065{margin-left:-1.731840pt;}
._2_c03065{width:1.317888pt;}
._5_c03065{width:2.462592pt;}
._4_c03065{width:3.848064pt;}
._1_c03065{width:44.668800pt;}
._3_c03065{width:45.805056pt;}
.fs0_c03065{font-size:42.240000pt;}
.fs1_c03065{font-size:53.760000pt;}
.y0_c03065{bottom:0.000000pt;}
.y19_c03065{bottom:130.665211pt;}
.y1b_c03065{bottom:165.866875pt;}
.y1a_c03065{bottom:174.507067pt;}
.y18_c03065{bottom:245.225371pt;}
.y17_c03065{bottom:317.225563pt;}
.y15_c03065{bottom:361.386427pt;}
.y11_c03065{bottom:377.386939pt;}
.y16_c03065{bottom:407.786011pt;}
.y14_c03065{bottom:437.226235pt;}
.y13_c03065{bottom:453.226747pt;}
.y10_c03065{bottom:482.666971pt;}
.y12_c03065{bottom:497.386555pt;}
.yf_c03065{bottom:513.387067pt;}
.y1c_c03065{bottom:546.027067pt;}
.yb_c03065{bottom:593.385179pt;}
.yd_c03065{bottom:628.586875pt;}
.yc_c03065{bottom:637.227067pt;}
.ya_c03065{bottom:707.945339pt;}
.y9_c03065{bottom:779.945531pt;}
.y7_c03065{bottom:823.786427pt;}
.y3_c03065{bottom:839.786939pt;}
.y8_c03065{bottom:870.505979pt;}
.y6_c03065{bottom:899.946203pt;}
.y5_c03065{bottom:915.946715pt;}
.y2_c03065{bottom:945.386939pt;}
.y4_c03065{bottom:959.786555pt;}
.y1_c03065{bottom:975.787067pt;}
.ye_c03065{bottom:1008.747067pt;}
.h3_c03065{height:28.916250pt;}
.h1_c03065{height:37.063125pt;}
.h2_c03065{height:37.166250pt;}
.h4_c03065{height:48.581988pt;}
.h0_c03065{height:1122.666667pt;}
.w1_c03065{width:793.333333pt;}
.w0_c03065{width:793.626667pt;}
.x0_c03065{left:0.000000pt;}
.xd_c03065{left:104.000000pt;}
.x8_c03065{left:391.999872pt;}
.x4_c03065{left:396.160512pt;}
.xb_c03065{left:400.960000pt;}
.x7_c03065{left:404.799648pt;}
.x5_c03065{left:410.560128pt;}
.x1_c03065{left:411.840000pt;}
.xa_c03065{left:429.760320pt;}
.x9_c03065{left:437.439552pt;}
.x6_c03065{left:438.400512pt;}
.xc_c03065{left:450.560320pt;}
.x3_c03065{left:455.039904pt;}
.x2_c03065{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03066 {
    display:none;
  }
  .loading-indicator_c03066.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03066 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03066 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03066" -> "#page-container .classname_c03066")
 */
.pf_c03066 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03066 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03066.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03066 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03066 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03066 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03066 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03066 {overflow:visible;}
  }
}
.c_c03066 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03066 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03066:after { /* webkit #35443 */
  content: '';
}
.t_c03066:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03066 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03066 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03066 { /* info for Javascript */
  display:none;
}
.l_c03066 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03066 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03066 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03066:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03066 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03066.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03066.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03066 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03066{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03066;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03066{font-family:ff1_c03066;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03066;src:url('chunks/assets/font_aa1d92c8b7d82d0819f91f19.woff2')format("woff");}.ff2_c03066{font-family:ff2_c03066;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03066;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03066{font-family:ff3_c03066;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03066{vertical-align:0.000000px;}
.v1_c03066{vertical-align:1.439424px;}
.lsc_c03066{letter-spacing:-1.197504px;}
.lsa_c03066{letter-spacing:-0.722304px;}
.ls6_c03066{letter-spacing:-0.613008px;}
.ls8_c03066{letter-spacing:-0.574992px;}
.lsf_c03066{letter-spacing:-0.275616px;}
.lsd_c03066{letter-spacing:-0.261360px;}
.ls5_c03066{letter-spacing:-0.242352px;}
.ls3_c03066{letter-spacing:-0.118800px;}
.ls12_c03066{letter-spacing:0.000000px;}
.ls1_c03066{letter-spacing:0.006048px;}
.ls4_c03066{letter-spacing:0.128304px;}
.lsb_c03066{letter-spacing:0.508464px;}
.ls11_c03066{letter-spacing:0.514080px;}
.lse_c03066{letter-spacing:0.536976px;}
.ls9_c03066{letter-spacing:0.579744px;}
.ls10_c03066{letter-spacing:0.594000px;}
.ls7_c03066{letter-spacing:0.598752px;}
.ls2_c03066{letter-spacing:0.613008px;}
.ls0_c03066{letter-spacing:0.717552px;}
.sc__c03066{text-shadow:none;}
.sc0_c03066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03066{-webkit-text-stroke:0px transparent;}
.sc0_c03066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03066{word-spacing:-15.126048px;}
.wsa_c03066{word-spacing:-12.474000px;}
.ws8_c03066{word-spacing:-12.459744px;}
.ws9_c03066{word-spacing:-12.416976px;}
.ws4_c03066{word-spacing:-11.637648px;}
.ws2_c03066{word-spacing:-11.266992px;}
.ws10_c03066{word-spacing:-1.078704px;}
.wsd_c03066{word-spacing:-0.974160px;}
.ws15_c03066{word-spacing:-0.719712px;}
.wsf_c03066{word-spacing:-0.118800px;}
.ws13_c03066{word-spacing:-0.099792px;}
.ws14_c03066{word-spacing:-0.085536px;}
.wse_c03066{word-spacing:0.000000px;}
.ws11_c03066{word-spacing:0.361152px;}
.ws12_c03066{word-spacing:0.836352px;}
.wsb_c03066{word-spacing:33.300288px;}
.ws6_c03066{word-spacing:36.742464px;}
.ws1_c03066{word-spacing:37.759392px;}
.ws0_c03066{word-spacing:38.020752px;}
.ws3_c03066{word-spacing:39.218256px;}
.ws5_c03066{word-spacing:39.902544px;}
.ws7_c03066{word-spacing:42.026688px;}
._0_c03066{margin-left:-1.948320px;}
._2_c03066{width:1.482624px;}
._5_c03066{width:2.770416px;}
._4_c03066{width:4.329072px;}
._1_c03066{width:50.252400px;}
._3_c03066{width:51.530688px;}
.fc0_c03066{color:rgb(0,0,0);}
.fs0_c03066{font-size:47.520000px;}
.fs1_c03066{font-size:60.480000px;}
.y0_c03066{bottom:0.000000px;}
.y19_c03066{bottom:146.998362px;}
.y1b_c03066{bottom:186.600234px;}
.y1a_c03066{bottom:196.320450px;}
.y18_c03066{bottom:275.878542px;}
.y17_c03066{bottom:356.878758px;}
.y15_c03066{bottom:406.559730px;}
.y11_c03066{bottom:424.560306px;}
.y16_c03066{bottom:458.759262px;}
.y14_c03066{bottom:491.879514px;}
.y13_c03066{bottom:509.880090px;}
.y10_c03066{bottom:543.000342px;}
.y12_c03066{bottom:559.559874px;}
.yf_c03066{bottom:577.560450px;}
.y1c_c03066{bottom:614.280450px;}
.yb_c03066{bottom:667.558326px;}
.yd_c03066{bottom:707.160234px;}
.yc_c03066{bottom:716.880450px;}
.ya_c03066{bottom:796.438506px;}
.y9_c03066{bottom:877.438722px;}
.y7_c03066{bottom:926.759730px;}
.y3_c03066{bottom:944.760306px;}
.y8_c03066{bottom:979.319226px;}
.y6_c03066{bottom:1012.439478px;}
.y5_c03066{bottom:1030.440054px;}
.y2_c03066{bottom:1063.560306px;}
.y4_c03066{bottom:1079.759874px;}
.y1_c03066{bottom:1097.760450px;}
.ye_c03066{bottom:1134.840450px;}
.h3_c03066{height:32.530781px;}
.h1_c03066{height:41.696016px;}
.h2_c03066{height:41.812031px;}
.h4_c03066{height:54.654737px;}
.h0_c03066{height:1263.000000px;}
.w1_c03066{width:892.500000px;}
.w0_c03066{width:892.830000px;}
.x0_c03066{left:0.000000px;}
.xd_c03066{left:117.000000px;}
.x8_c03066{left:440.999856px;}
.x4_c03066{left:445.680576px;}
.xb_c03066{left:451.080000px;}
.x7_c03066{left:455.399604px;}
.x5_c03066{left:461.880144px;}
.x1_c03066{left:463.320000px;}
.xa_c03066{left:483.480360px;}
.x9_c03066{left:492.119496px;}
.x6_c03066{left:493.200576px;}
.xc_c03066{left:506.880360px;}
.x3_c03066{left:511.919892px;}
.x2_c03066{left:526.679604px;}
@media print{
.v0_c03066{vertical-align:0.000000pt;}
.v1_c03066{vertical-align:1.279488pt;}
.lsc_c03066{letter-spacing:-1.064448pt;}
.lsa_c03066{letter-spacing:-0.642048pt;}
.ls6_c03066{letter-spacing:-0.544896pt;}
.ls8_c03066{letter-spacing:-0.511104pt;}
.lsf_c03066{letter-spacing:-0.244992pt;}
.lsd_c03066{letter-spacing:-0.232320pt;}
.ls5_c03066{letter-spacing:-0.215424pt;}
.ls3_c03066{letter-spacing:-0.105600pt;}
.ls12_c03066{letter-spacing:0.000000pt;}
.ls1_c03066{letter-spacing:0.005376pt;}
.ls4_c03066{letter-spacing:0.114048pt;}
.lsb_c03066{letter-spacing:0.451968pt;}
.ls11_c03066{letter-spacing:0.456960pt;}
.lse_c03066{letter-spacing:0.477312pt;}
.ls9_c03066{letter-spacing:0.515328pt;}
.ls10_c03066{letter-spacing:0.528000pt;}
.ls7_c03066{letter-spacing:0.532224pt;}
.ls2_c03066{letter-spacing:0.544896pt;}
.ls0_c03066{letter-spacing:0.637824pt;}
.wsc_c03066{word-spacing:-13.445376pt;}
.wsa_c03066{word-spacing:-11.088000pt;}
.ws8_c03066{word-spacing:-11.075328pt;}
.ws9_c03066{word-spacing:-11.037312pt;}
.ws4_c03066{word-spacing:-10.344576pt;}
.ws2_c03066{word-spacing:-10.015104pt;}
.ws10_c03066{word-spacing:-0.958848pt;}
.wsd_c03066{word-spacing:-0.865920pt;}
.ws15_c03066{word-spacing:-0.639744pt;}
.wsf_c03066{word-spacing:-0.105600pt;}
.ws13_c03066{word-spacing:-0.088704pt;}
.ws14_c03066{word-spacing:-0.076032pt;}
.wse_c03066{word-spacing:0.000000pt;}
.ws11_c03066{word-spacing:0.321024pt;}
.ws12_c03066{word-spacing:0.743424pt;}
.wsb_c03066{word-spacing:29.600256pt;}
.ws6_c03066{word-spacing:32.659968pt;}
.ws1_c03066{word-spacing:33.563904pt;}
.ws0_c03066{word-spacing:33.796224pt;}
.ws3_c03066{word-spacing:34.860672pt;}
.ws5_c03066{word-spacing:35.468928pt;}
.ws7_c03066{word-spacing:37.357056pt;}
._0_c03066{margin-left:-1.731840pt;}
._2_c03066{width:1.317888pt;}
._5_c03066{width:2.462592pt;}
._4_c03066{width:3.848064pt;}
._1_c03066{width:44.668800pt;}
._3_c03066{width:45.805056pt;}
.fs0_c03066{font-size:42.240000pt;}
.fs1_c03066{font-size:53.760000pt;}
.y0_c03066{bottom:0.000000pt;}
.y19_c03066{bottom:130.665211pt;}
.y1b_c03066{bottom:165.866875pt;}
.y1a_c03066{bottom:174.507067pt;}
.y18_c03066{bottom:245.225371pt;}
.y17_c03066{bottom:317.225563pt;}
.y15_c03066{bottom:361.386427pt;}
.y11_c03066{bottom:377.386939pt;}
.y16_c03066{bottom:407.786011pt;}
.y14_c03066{bottom:437.226235pt;}
.y13_c03066{bottom:453.226747pt;}
.y10_c03066{bottom:482.666971pt;}
.y12_c03066{bottom:497.386555pt;}
.yf_c03066{bottom:513.387067pt;}
.y1c_c03066{bottom:546.027067pt;}
.yb_c03066{bottom:593.385179pt;}
.yd_c03066{bottom:628.586875pt;}
.yc_c03066{bottom:637.227067pt;}
.ya_c03066{bottom:707.945339pt;}
.y9_c03066{bottom:779.945531pt;}
.y7_c03066{bottom:823.786427pt;}
.y3_c03066{bottom:839.786939pt;}
.y8_c03066{bottom:870.505979pt;}
.y6_c03066{bottom:899.946203pt;}
.y5_c03066{bottom:915.946715pt;}
.y2_c03066{bottom:945.386939pt;}
.y4_c03066{bottom:959.786555pt;}
.y1_c03066{bottom:975.787067pt;}
.ye_c03066{bottom:1008.747067pt;}
.h3_c03066{height:28.916250pt;}
.h1_c03066{height:37.063125pt;}
.h2_c03066{height:37.166250pt;}
.h4_c03066{height:48.581988pt;}
.h0_c03066{height:1122.666667pt;}
.w1_c03066{width:793.333333pt;}
.w0_c03066{width:793.626667pt;}
.x0_c03066{left:0.000000pt;}
.xd_c03066{left:104.000000pt;}
.x8_c03066{left:391.999872pt;}
.x4_c03066{left:396.160512pt;}
.xb_c03066{left:400.960000pt;}
.x7_c03066{left:404.799648pt;}
.x5_c03066{left:410.560128pt;}
.x1_c03066{left:411.840000pt;}
.xa_c03066{left:429.760320pt;}
.x9_c03066{left:437.439552pt;}
.x6_c03066{left:438.400512pt;}
.xc_c03066{left:450.560320pt;}
.x3_c03066{left:455.039904pt;}
.x2_c03066{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03067 {
    display:none;
  }
  .loading-indicator_c03067.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03067 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03067 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03067" -> "#page-container .classname_c03067")
 */
.pf_c03067 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03067 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03067.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03067 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03067 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03067 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03067 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03067 {overflow:visible;}
  }
}
.c_c03067 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03067 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03067:after { /* webkit #35443 */
  content: '';
}
.t_c03067:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03067 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03067 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03067 { /* info for Javascript */
  display:none;
}
.l_c03067 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03067 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03067 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03067:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03067 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03067.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03067.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03067 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03067{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03067;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03067{font-family:ff1_c03067;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03067;src:url('chunks/assets/font_9ecfaca1c3ca229e0c2a6bc3.woff2')format("woff");}.ff2_c03067{font-family:ff2_c03067;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03067;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03067{font-family:ff3_c03067;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03067{vertical-align:0.000000px;}
.v1_c03067{vertical-align:1.439424px;}
.lsc_c03067{letter-spacing:-1.197504px;}
.lsa_c03067{letter-spacing:-0.722304px;}
.ls6_c03067{letter-spacing:-0.613008px;}
.ls8_c03067{letter-spacing:-0.574992px;}
.lsf_c03067{letter-spacing:-0.275616px;}
.lsd_c03067{letter-spacing:-0.261360px;}
.ls5_c03067{letter-spacing:-0.242352px;}
.ls3_c03067{letter-spacing:-0.118800px;}
.ls12_c03067{letter-spacing:0.000000px;}
.ls1_c03067{letter-spacing:0.006048px;}
.ls4_c03067{letter-spacing:0.128304px;}
.lsb_c03067{letter-spacing:0.508464px;}
.ls11_c03067{letter-spacing:0.514080px;}
.lse_c03067{letter-spacing:0.536976px;}
.ls9_c03067{letter-spacing:0.579744px;}
.ls10_c03067{letter-spacing:0.594000px;}
.ls7_c03067{letter-spacing:0.598752px;}
.ls2_c03067{letter-spacing:0.613008px;}
.ls0_c03067{letter-spacing:0.717552px;}
.sc__c03067{text-shadow:none;}
.sc0_c03067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03067{-webkit-text-stroke:0px transparent;}
.sc0_c03067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03067{word-spacing:-15.126048px;}
.wsa_c03067{word-spacing:-12.474000px;}
.ws8_c03067{word-spacing:-12.459744px;}
.ws9_c03067{word-spacing:-12.416976px;}
.ws4_c03067{word-spacing:-11.637648px;}
.ws2_c03067{word-spacing:-11.266992px;}
.ws10_c03067{word-spacing:-1.078704px;}
.wsd_c03067{word-spacing:-0.974160px;}
.ws15_c03067{word-spacing:-0.719712px;}
.wsf_c03067{word-spacing:-0.118800px;}
.ws13_c03067{word-spacing:-0.099792px;}
.ws14_c03067{word-spacing:-0.085536px;}
.wse_c03067{word-spacing:0.000000px;}
.ws11_c03067{word-spacing:0.361152px;}
.ws12_c03067{word-spacing:0.836352px;}
.wsb_c03067{word-spacing:33.300288px;}
.ws6_c03067{word-spacing:36.742464px;}
.ws1_c03067{word-spacing:37.759392px;}
.ws0_c03067{word-spacing:38.020752px;}
.ws3_c03067{word-spacing:39.218256px;}
.ws5_c03067{word-spacing:39.902544px;}
.ws7_c03067{word-spacing:42.026688px;}
._0_c03067{margin-left:-1.948320px;}
._2_c03067{width:1.482624px;}
._5_c03067{width:2.770416px;}
._4_c03067{width:4.329072px;}
._1_c03067{width:50.252400px;}
._3_c03067{width:51.530688px;}
.fc0_c03067{color:rgb(0,0,0);}
.fs0_c03067{font-size:47.520000px;}
.fs1_c03067{font-size:60.480000px;}
.y0_c03067{bottom:0.000000px;}
.y19_c03067{bottom:146.998362px;}
.y1b_c03067{bottom:186.600234px;}
.y1a_c03067{bottom:196.320450px;}
.y18_c03067{bottom:275.878542px;}
.y17_c03067{bottom:356.878758px;}
.y15_c03067{bottom:406.559730px;}
.y11_c03067{bottom:424.560306px;}
.y16_c03067{bottom:458.759262px;}
.y14_c03067{bottom:491.879514px;}
.y13_c03067{bottom:509.880090px;}
.y10_c03067{bottom:543.000342px;}
.y12_c03067{bottom:559.559874px;}
.yf_c03067{bottom:577.560450px;}
.y1c_c03067{bottom:614.280450px;}
.yb_c03067{bottom:667.558326px;}
.yd_c03067{bottom:707.160234px;}
.yc_c03067{bottom:716.880450px;}
.ya_c03067{bottom:796.438506px;}
.y9_c03067{bottom:877.438722px;}
.y7_c03067{bottom:926.759730px;}
.y3_c03067{bottom:944.760306px;}
.y8_c03067{bottom:979.319226px;}
.y6_c03067{bottom:1012.439478px;}
.y5_c03067{bottom:1030.440054px;}
.y2_c03067{bottom:1063.560306px;}
.y4_c03067{bottom:1079.759874px;}
.y1_c03067{bottom:1097.760450px;}
.ye_c03067{bottom:1134.840450px;}
.h3_c03067{height:32.530781px;}
.h1_c03067{height:41.696016px;}
.h2_c03067{height:41.812031px;}
.h4_c03067{height:54.654737px;}
.h0_c03067{height:1263.000000px;}
.w1_c03067{width:892.500000px;}
.w0_c03067{width:892.830000px;}
.x0_c03067{left:0.000000px;}
.xd_c03067{left:117.000000px;}
.x8_c03067{left:440.999856px;}
.x4_c03067{left:445.680576px;}
.xb_c03067{left:451.080000px;}
.x7_c03067{left:455.399604px;}
.x5_c03067{left:461.880144px;}
.x1_c03067{left:463.320000px;}
.xa_c03067{left:483.480360px;}
.x9_c03067{left:492.119496px;}
.x6_c03067{left:493.200576px;}
.xc_c03067{left:506.880360px;}
.x3_c03067{left:511.919892px;}
.x2_c03067{left:526.679604px;}
@media print{
.v0_c03067{vertical-align:0.000000pt;}
.v1_c03067{vertical-align:1.279488pt;}
.lsc_c03067{letter-spacing:-1.064448pt;}
.lsa_c03067{letter-spacing:-0.642048pt;}
.ls6_c03067{letter-spacing:-0.544896pt;}
.ls8_c03067{letter-spacing:-0.511104pt;}
.lsf_c03067{letter-spacing:-0.244992pt;}
.lsd_c03067{letter-spacing:-0.232320pt;}
.ls5_c03067{letter-spacing:-0.215424pt;}
.ls3_c03067{letter-spacing:-0.105600pt;}
.ls12_c03067{letter-spacing:0.000000pt;}
.ls1_c03067{letter-spacing:0.005376pt;}
.ls4_c03067{letter-spacing:0.114048pt;}
.lsb_c03067{letter-spacing:0.451968pt;}
.ls11_c03067{letter-spacing:0.456960pt;}
.lse_c03067{letter-spacing:0.477312pt;}
.ls9_c03067{letter-spacing:0.515328pt;}
.ls10_c03067{letter-spacing:0.528000pt;}
.ls7_c03067{letter-spacing:0.532224pt;}
.ls2_c03067{letter-spacing:0.544896pt;}
.ls0_c03067{letter-spacing:0.637824pt;}
.wsc_c03067{word-spacing:-13.445376pt;}
.wsa_c03067{word-spacing:-11.088000pt;}
.ws8_c03067{word-spacing:-11.075328pt;}
.ws9_c03067{word-spacing:-11.037312pt;}
.ws4_c03067{word-spacing:-10.344576pt;}
.ws2_c03067{word-spacing:-10.015104pt;}
.ws10_c03067{word-spacing:-0.958848pt;}
.wsd_c03067{word-spacing:-0.865920pt;}
.ws15_c03067{word-spacing:-0.639744pt;}
.wsf_c03067{word-spacing:-0.105600pt;}
.ws13_c03067{word-spacing:-0.088704pt;}
.ws14_c03067{word-spacing:-0.076032pt;}
.wse_c03067{word-spacing:0.000000pt;}
.ws11_c03067{word-spacing:0.321024pt;}
.ws12_c03067{word-spacing:0.743424pt;}
.wsb_c03067{word-spacing:29.600256pt;}
.ws6_c03067{word-spacing:32.659968pt;}
.ws1_c03067{word-spacing:33.563904pt;}
.ws0_c03067{word-spacing:33.796224pt;}
.ws3_c03067{word-spacing:34.860672pt;}
.ws5_c03067{word-spacing:35.468928pt;}
.ws7_c03067{word-spacing:37.357056pt;}
._0_c03067{margin-left:-1.731840pt;}
._2_c03067{width:1.317888pt;}
._5_c03067{width:2.462592pt;}
._4_c03067{width:3.848064pt;}
._1_c03067{width:44.668800pt;}
._3_c03067{width:45.805056pt;}
.fs0_c03067{font-size:42.240000pt;}
.fs1_c03067{font-size:53.760000pt;}
.y0_c03067{bottom:0.000000pt;}
.y19_c03067{bottom:130.665211pt;}
.y1b_c03067{bottom:165.866875pt;}
.y1a_c03067{bottom:174.507067pt;}
.y18_c03067{bottom:245.225371pt;}
.y17_c03067{bottom:317.225563pt;}
.y15_c03067{bottom:361.386427pt;}
.y11_c03067{bottom:377.386939pt;}
.y16_c03067{bottom:407.786011pt;}
.y14_c03067{bottom:437.226235pt;}
.y13_c03067{bottom:453.226747pt;}
.y10_c03067{bottom:482.666971pt;}
.y12_c03067{bottom:497.386555pt;}
.yf_c03067{bottom:513.387067pt;}
.y1c_c03067{bottom:546.027067pt;}
.yb_c03067{bottom:593.385179pt;}
.yd_c03067{bottom:628.586875pt;}
.yc_c03067{bottom:637.227067pt;}
.ya_c03067{bottom:707.945339pt;}
.y9_c03067{bottom:779.945531pt;}
.y7_c03067{bottom:823.786427pt;}
.y3_c03067{bottom:839.786939pt;}
.y8_c03067{bottom:870.505979pt;}
.y6_c03067{bottom:899.946203pt;}
.y5_c03067{bottom:915.946715pt;}
.y2_c03067{bottom:945.386939pt;}
.y4_c03067{bottom:959.786555pt;}
.y1_c03067{bottom:975.787067pt;}
.ye_c03067{bottom:1008.747067pt;}
.h3_c03067{height:28.916250pt;}
.h1_c03067{height:37.063125pt;}
.h2_c03067{height:37.166250pt;}
.h4_c03067{height:48.581988pt;}
.h0_c03067{height:1122.666667pt;}
.w1_c03067{width:793.333333pt;}
.w0_c03067{width:793.626667pt;}
.x0_c03067{left:0.000000pt;}
.xd_c03067{left:104.000000pt;}
.x8_c03067{left:391.999872pt;}
.x4_c03067{left:396.160512pt;}
.xb_c03067{left:400.960000pt;}
.x7_c03067{left:404.799648pt;}
.x5_c03067{left:410.560128pt;}
.x1_c03067{left:411.840000pt;}
.xa_c03067{left:429.760320pt;}
.x9_c03067{left:437.439552pt;}
.x6_c03067{left:438.400512pt;}
.xc_c03067{left:450.560320pt;}
.x3_c03067{left:455.039904pt;}
.x2_c03067{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03068 {
    display:none;
  }
  .loading-indicator_c03068.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03068 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03068 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03068" -> "#page-container .classname_c03068")
 */
.pf_c03068 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03068 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03068.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03068 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03068 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03068 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03068 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03068 {overflow:visible;}
  }
}
.c_c03068 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03068 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03068:after { /* webkit #35443 */
  content: '';
}
.t_c03068:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03068 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03068 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03068 { /* info for Javascript */
  display:none;
}
.l_c03068 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03068 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03068 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03068:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03068 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03068.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03068.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03068 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03068;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03068{font-family:ff1_c03068;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03068;src:url('chunks/assets/font_82cdd49a901c3e364775e27a.woff2')format("woff");}.ff2_c03068{font-family:ff2_c03068;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03068;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03068{font-family:ff3_c03068;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03068{vertical-align:0.000000px;}
.v1_c03068{vertical-align:1.439424px;}
.lsd_c03068{letter-spacing:-1.197504px;}
.lsb_c03068{letter-spacing:-0.698544px;}
.ls7_c03068{letter-spacing:-0.613008px;}
.ls9_c03068{letter-spacing:-0.574992px;}
.ls10_c03068{letter-spacing:-0.275616px;}
.lse_c03068{letter-spacing:-0.261360px;}
.ls6_c03068{letter-spacing:-0.242352px;}
.ls4_c03068{letter-spacing:-0.118800px;}
.ls13_c03068{letter-spacing:0.000000px;}
.ls1_c03068{letter-spacing:0.006048px;}
.ls5_c03068{letter-spacing:0.128304px;}
.lsc_c03068{letter-spacing:0.508464px;}
.ls12_c03068{letter-spacing:0.514080px;}
.lsf_c03068{letter-spacing:0.536976px;}
.lsa_c03068{letter-spacing:0.579744px;}
.ls11_c03068{letter-spacing:0.594000px;}
.ls8_c03068{letter-spacing:0.598752px;}
.ls2_c03068{letter-spacing:0.613008px;}
.ls3_c03068{letter-spacing:0.717552px;}
.ls0_c03068{letter-spacing:0.722304px;}
.sc__c03068{text-shadow:none;}
.sc0_c03068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03068{-webkit-text-stroke:0px transparent;}
.sc0_c03068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03068{word-spacing:-15.126048px;}
.wsa_c03068{word-spacing:-12.474000px;}
.ws8_c03068{word-spacing:-12.459744px;}
.ws9_c03068{word-spacing:-12.416976px;}
.ws4_c03068{word-spacing:-11.637648px;}
.ws2_c03068{word-spacing:-11.266992px;}
.ws10_c03068{word-spacing:-1.083456px;}
.wsd_c03068{word-spacing:-0.974160px;}
.ws15_c03068{word-spacing:-0.719712px;}
.wsf_c03068{word-spacing:-0.118800px;}
.ws13_c03068{word-spacing:-0.099792px;}
.ws14_c03068{word-spacing:-0.085536px;}
.wse_c03068{word-spacing:0.000000px;}
.ws11_c03068{word-spacing:0.337392px;}
.ws12_c03068{word-spacing:0.836352px;}
.wsb_c03068{word-spacing:33.300288px;}
.ws6_c03068{word-spacing:36.742464px;}
.ws1_c03068{word-spacing:37.759392px;}
.ws0_c03068{word-spacing:38.020752px;}
.ws3_c03068{word-spacing:39.218256px;}
.ws5_c03068{word-spacing:39.902544px;}
.ws7_c03068{word-spacing:42.026688px;}
._0_c03068{margin-left:-1.948320px;}
._2_c03068{width:1.482624px;}
._5_c03068{width:2.770416px;}
._4_c03068{width:4.329072px;}
._1_c03068{width:50.252400px;}
._3_c03068{width:51.530688px;}
.fc0_c03068{color:rgb(0,0,0);}
.fs0_c03068{font-size:47.520000px;}
.fs1_c03068{font-size:60.480000px;}
.y0_c03068{bottom:0.000000px;}
.y19_c03068{bottom:146.998362px;}
.y1b_c03068{bottom:186.600234px;}
.y1a_c03068{bottom:196.320450px;}
.y18_c03068{bottom:275.878542px;}
.y17_c03068{bottom:356.878758px;}
.y15_c03068{bottom:406.559730px;}
.y11_c03068{bottom:424.560306px;}
.y16_c03068{bottom:458.759262px;}
.y14_c03068{bottom:491.879514px;}
.y13_c03068{bottom:509.880090px;}
.y10_c03068{bottom:543.000342px;}
.y12_c03068{bottom:559.559874px;}
.yf_c03068{bottom:577.560450px;}
.y1c_c03068{bottom:614.280450px;}
.yb_c03068{bottom:667.558326px;}
.yd_c03068{bottom:707.160234px;}
.yc_c03068{bottom:716.880450px;}
.ya_c03068{bottom:796.438506px;}
.y9_c03068{bottom:877.438722px;}
.y7_c03068{bottom:926.759730px;}
.y3_c03068{bottom:944.760306px;}
.y8_c03068{bottom:979.319226px;}
.y6_c03068{bottom:1012.439478px;}
.y5_c03068{bottom:1030.440054px;}
.y2_c03068{bottom:1063.560306px;}
.y4_c03068{bottom:1079.759874px;}
.y1_c03068{bottom:1097.760450px;}
.ye_c03068{bottom:1134.840450px;}
.h3_c03068{height:32.530781px;}
.h1_c03068{height:41.696016px;}
.h2_c03068{height:41.812031px;}
.h4_c03068{height:54.654737px;}
.h0_c03068{height:1263.000000px;}
.w1_c03068{width:892.500000px;}
.w0_c03068{width:892.830000px;}
.x0_c03068{left:0.000000px;}
.xd_c03068{left:117.000000px;}
.x8_c03068{left:440.999856px;}
.x4_c03068{left:445.680576px;}
.xb_c03068{left:451.080000px;}
.x7_c03068{left:455.399604px;}
.x5_c03068{left:461.880144px;}
.x1_c03068{left:463.320000px;}
.xa_c03068{left:483.480360px;}
.x9_c03068{left:492.119496px;}
.x6_c03068{left:493.200576px;}
.xc_c03068{left:506.880360px;}
.x3_c03068{left:511.919892px;}
.x2_c03068{left:526.679604px;}
@media print{
.v0_c03068{vertical-align:0.000000pt;}
.v1_c03068{vertical-align:1.279488pt;}
.lsd_c03068{letter-spacing:-1.064448pt;}
.lsb_c03068{letter-spacing:-0.620928pt;}
.ls7_c03068{letter-spacing:-0.544896pt;}
.ls9_c03068{letter-spacing:-0.511104pt;}
.ls10_c03068{letter-spacing:-0.244992pt;}
.lse_c03068{letter-spacing:-0.232320pt;}
.ls6_c03068{letter-spacing:-0.215424pt;}
.ls4_c03068{letter-spacing:-0.105600pt;}
.ls13_c03068{letter-spacing:0.000000pt;}
.ls1_c03068{letter-spacing:0.005376pt;}
.ls5_c03068{letter-spacing:0.114048pt;}
.lsc_c03068{letter-spacing:0.451968pt;}
.ls12_c03068{letter-spacing:0.456960pt;}
.lsf_c03068{letter-spacing:0.477312pt;}
.lsa_c03068{letter-spacing:0.515328pt;}
.ls11_c03068{letter-spacing:0.528000pt;}
.ls8_c03068{letter-spacing:0.532224pt;}
.ls2_c03068{letter-spacing:0.544896pt;}
.ls3_c03068{letter-spacing:0.637824pt;}
.ls0_c03068{letter-spacing:0.642048pt;}
.wsc_c03068{word-spacing:-13.445376pt;}
.wsa_c03068{word-spacing:-11.088000pt;}
.ws8_c03068{word-spacing:-11.075328pt;}
.ws9_c03068{word-spacing:-11.037312pt;}
.ws4_c03068{word-spacing:-10.344576pt;}
.ws2_c03068{word-spacing:-10.015104pt;}
.ws10_c03068{word-spacing:-0.963072pt;}
.wsd_c03068{word-spacing:-0.865920pt;}
.ws15_c03068{word-spacing:-0.639744pt;}
.wsf_c03068{word-spacing:-0.105600pt;}
.ws13_c03068{word-spacing:-0.088704pt;}
.ws14_c03068{word-spacing:-0.076032pt;}
.wse_c03068{word-spacing:0.000000pt;}
.ws11_c03068{word-spacing:0.299904pt;}
.ws12_c03068{word-spacing:0.743424pt;}
.wsb_c03068{word-spacing:29.600256pt;}
.ws6_c03068{word-spacing:32.659968pt;}
.ws1_c03068{word-spacing:33.563904pt;}
.ws0_c03068{word-spacing:33.796224pt;}
.ws3_c03068{word-spacing:34.860672pt;}
.ws5_c03068{word-spacing:35.468928pt;}
.ws7_c03068{word-spacing:37.357056pt;}
._0_c03068{margin-left:-1.731840pt;}
._2_c03068{width:1.317888pt;}
._5_c03068{width:2.462592pt;}
._4_c03068{width:3.848064pt;}
._1_c03068{width:44.668800pt;}
._3_c03068{width:45.805056pt;}
.fs0_c03068{font-size:42.240000pt;}
.fs1_c03068{font-size:53.760000pt;}
.y0_c03068{bottom:0.000000pt;}
.y19_c03068{bottom:130.665211pt;}
.y1b_c03068{bottom:165.866875pt;}
.y1a_c03068{bottom:174.507067pt;}
.y18_c03068{bottom:245.225371pt;}
.y17_c03068{bottom:317.225563pt;}
.y15_c03068{bottom:361.386427pt;}
.y11_c03068{bottom:377.386939pt;}
.y16_c03068{bottom:407.786011pt;}
.y14_c03068{bottom:437.226235pt;}
.y13_c03068{bottom:453.226747pt;}
.y10_c03068{bottom:482.666971pt;}
.y12_c03068{bottom:497.386555pt;}
.yf_c03068{bottom:513.387067pt;}
.y1c_c03068{bottom:546.027067pt;}
.yb_c03068{bottom:593.385179pt;}
.yd_c03068{bottom:628.586875pt;}
.yc_c03068{bottom:637.227067pt;}
.ya_c03068{bottom:707.945339pt;}
.y9_c03068{bottom:779.945531pt;}
.y7_c03068{bottom:823.786427pt;}
.y3_c03068{bottom:839.786939pt;}
.y8_c03068{bottom:870.505979pt;}
.y6_c03068{bottom:899.946203pt;}
.y5_c03068{bottom:915.946715pt;}
.y2_c03068{bottom:945.386939pt;}
.y4_c03068{bottom:959.786555pt;}
.y1_c03068{bottom:975.787067pt;}
.ye_c03068{bottom:1008.747067pt;}
.h3_c03068{height:28.916250pt;}
.h1_c03068{height:37.063125pt;}
.h2_c03068{height:37.166250pt;}
.h4_c03068{height:48.581988pt;}
.h0_c03068{height:1122.666667pt;}
.w1_c03068{width:793.333333pt;}
.w0_c03068{width:793.626667pt;}
.x0_c03068{left:0.000000pt;}
.xd_c03068{left:104.000000pt;}
.x8_c03068{left:391.999872pt;}
.x4_c03068{left:396.160512pt;}
.xb_c03068{left:400.960000pt;}
.x7_c03068{left:404.799648pt;}
.x5_c03068{left:410.560128pt;}
.x1_c03068{left:411.840000pt;}
.xa_c03068{left:429.760320pt;}
.x9_c03068{left:437.439552pt;}
.x6_c03068{left:438.400512pt;}
.xc_c03068{left:450.560320pt;}
.x3_c03068{left:455.039904pt;}
.x2_c03068{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03069 {
    display:none;
  }
  .loading-indicator_c03069.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03069 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03069 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03069" -> "#page-container .classname_c03069")
 */
.pf_c03069 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03069 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03069.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03069 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03069 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03069 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03069 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03069 {overflow:visible;}
  }
}
.c_c03069 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03069 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03069:after { /* webkit #35443 */
  content: '';
}
.t_c03069:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03069 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03069 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03069 { /* info for Javascript */
  display:none;
}
.l_c03069 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03069 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03069 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03069:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03069 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03069.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03069.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03069 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03069;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03069{font-family:ff1_c03069;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03069;src:url('chunks/assets/font_88d4f0b78e22bae22e4a25c8.woff2')format("woff");}.ff2_c03069{font-family:ff2_c03069;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03069;src:url('chunks/assets/font_f8e9a912692e382bbcb7005b.woff2')format("woff");}.ff3_c03069{font-family:ff3_c03069;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03069{vertical-align:0.000000px;}
.v1_c03069{vertical-align:1.439424px;}
.v2_c03069{vertical-align:33.121440px;}
.lsd_c03069{letter-spacing:-1.197504px;}
.lsb_c03069{letter-spacing:-0.698544px;}
.ls7_c03069{letter-spacing:-0.613008px;}
.ls9_c03069{letter-spacing:-0.574992px;}
.ls10_c03069{letter-spacing:-0.275616px;}
.lse_c03069{letter-spacing:-0.261360px;}
.ls6_c03069{letter-spacing:-0.242352px;}
.ls4_c03069{letter-spacing:-0.118800px;}
.ls13_c03069{letter-spacing:0.000000px;}
.ls1_c03069{letter-spacing:0.006048px;}
.ls14_c03069{letter-spacing:0.014256px;}
.ls5_c03069{letter-spacing:0.128304px;}
.lsc_c03069{letter-spacing:0.508464px;}
.ls12_c03069{letter-spacing:0.514080px;}
.lsf_c03069{letter-spacing:0.536976px;}
.lsa_c03069{letter-spacing:0.579744px;}
.ls11_c03069{letter-spacing:0.594000px;}
.ls8_c03069{letter-spacing:0.598752px;}
.ls2_c03069{letter-spacing:0.613008px;}
.ls3_c03069{letter-spacing:0.717552px;}
.ls0_c03069{letter-spacing:0.722304px;}
.sc__c03069{text-shadow:none;}
.sc0_c03069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03069{-webkit-text-stroke:0px transparent;}
.sc0_c03069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03069{word-spacing:-15.126048px;}
.wsa_c03069{word-spacing:-12.474000px;}
.ws8_c03069{word-spacing:-12.459744px;}
.ws9_c03069{word-spacing:-12.416976px;}
.ws4_c03069{word-spacing:-11.637648px;}
.ws2_c03069{word-spacing:-11.266992px;}
.ws14_c03069{word-spacing:-1.083456px;}
.ws11_c03069{word-spacing:-0.974160px;}
.ws19_c03069{word-spacing:-0.719712px;}
.ws1a_c03069{word-spacing:-0.375408px;}
.ws13_c03069{word-spacing:-0.118800px;}
.ws17_c03069{word-spacing:-0.099792px;}
.ws18_c03069{word-spacing:-0.085536px;}
.ws12_c03069{word-spacing:0.000000px;}
.ws15_c03069{word-spacing:0.337392px;}
.ws16_c03069{word-spacing:0.836352px;}
.wsf_c03069{word-spacing:4.747248px;}
.ws10_c03069{word-spacing:5.037120px;}
.wse_c03069{word-spacing:6.961680px;}
.wsd_c03069{word-spacing:30.298752px;}
.wsb_c03069{word-spacing:33.300288px;}
.ws6_c03069{word-spacing:36.742464px;}
.ws1_c03069{word-spacing:37.759392px;}
.ws0_c03069{word-spacing:38.020752px;}
.ws3_c03069{word-spacing:39.218256px;}
.ws5_c03069{word-spacing:39.902544px;}
.ws7_c03069{word-spacing:42.026688px;}
._0_c03069{margin-left:-1.948320px;}
._2_c03069{width:1.482624px;}
._5_c03069{width:2.770416px;}
._4_c03069{width:4.329072px;}
._7_c03069{width:18.366480px;}
._6_c03069{width:22.857120px;}
._1_c03069{width:50.252400px;}
._3_c03069{width:51.530688px;}
.fc0_c03069{color:rgb(0,0,0);}
.fs0_c03069{font-size:47.520000px;}
.fs1_c03069{font-size:60.480000px;}
.y0_c03069{bottom:0.000000px;}
.y19_c03069{bottom:146.998362px;}
.y1c_c03069{bottom:179.760918px;}
.y1b_c03069{bottom:186.600234px;}
.y1a_c03069{bottom:196.320450px;}
.y18_c03069{bottom:275.878542px;}
.y17_c03069{bottom:356.878758px;}
.y15_c03069{bottom:406.559730px;}
.y11_c03069{bottom:424.560306px;}
.y16_c03069{bottom:458.759262px;}
.y14_c03069{bottom:491.879514px;}
.y13_c03069{bottom:509.880090px;}
.y10_c03069{bottom:543.000342px;}
.y12_c03069{bottom:559.559874px;}
.yf_c03069{bottom:577.560450px;}
.y1d_c03069{bottom:614.280450px;}
.yb_c03069{bottom:667.558326px;}
.yd_c03069{bottom:707.160234px;}
.yc_c03069{bottom:716.880450px;}
.ya_c03069{bottom:796.438506px;}
.y9_c03069{bottom:877.438722px;}
.y7_c03069{bottom:926.759730px;}
.y3_c03069{bottom:944.760306px;}
.y8_c03069{bottom:979.319226px;}
.y6_c03069{bottom:1012.439478px;}
.y5_c03069{bottom:1030.440054px;}
.y2_c03069{bottom:1063.560306px;}
.y4_c03069{bottom:1079.759874px;}
.y1_c03069{bottom:1097.760450px;}
.ye_c03069{bottom:1134.840450px;}
.h3_c03069{height:32.530781px;}
.h1_c03069{height:41.696016px;}
.h2_c03069{height:41.812031px;}
.h4_c03069{height:54.654737px;}
.h5_c03069{height:74.933471px;}
.h0_c03069{height:1263.000000px;}
.w1_c03069{width:892.500000px;}
.w0_c03069{width:892.830000px;}
.x0_c03069{left:0.000000px;}
.xd_c03069{left:117.000000px;}
.x8_c03069{left:440.999856px;}
.x4_c03069{left:445.680576px;}
.xb_c03069{left:451.080000px;}
.x7_c03069{left:455.399604px;}
.x5_c03069{left:461.880144px;}
.x1_c03069{left:463.320000px;}
.xa_c03069{left:483.480360px;}
.x9_c03069{left:492.119496px;}
.x6_c03069{left:493.200576px;}
.xc_c03069{left:506.880360px;}
.x3_c03069{left:511.919892px;}
.x2_c03069{left:526.679604px;}
.xe_c03069{left:569.878812px;}
@media print{
.v0_c03069{vertical-align:0.000000pt;}
.v1_c03069{vertical-align:1.279488pt;}
.v2_c03069{vertical-align:29.441280pt;}
.lsd_c03069{letter-spacing:-1.064448pt;}
.lsb_c03069{letter-spacing:-0.620928pt;}
.ls7_c03069{letter-spacing:-0.544896pt;}
.ls9_c03069{letter-spacing:-0.511104pt;}
.ls10_c03069{letter-spacing:-0.244992pt;}
.lse_c03069{letter-spacing:-0.232320pt;}
.ls6_c03069{letter-spacing:-0.215424pt;}
.ls4_c03069{letter-spacing:-0.105600pt;}
.ls13_c03069{letter-spacing:0.000000pt;}
.ls1_c03069{letter-spacing:0.005376pt;}
.ls14_c03069{letter-spacing:0.012672pt;}
.ls5_c03069{letter-spacing:0.114048pt;}
.lsc_c03069{letter-spacing:0.451968pt;}
.ls12_c03069{letter-spacing:0.456960pt;}
.lsf_c03069{letter-spacing:0.477312pt;}
.lsa_c03069{letter-spacing:0.515328pt;}
.ls11_c03069{letter-spacing:0.528000pt;}
.ls8_c03069{letter-spacing:0.532224pt;}
.ls2_c03069{letter-spacing:0.544896pt;}
.ls3_c03069{letter-spacing:0.637824pt;}
.ls0_c03069{letter-spacing:0.642048pt;}
.wsc_c03069{word-spacing:-13.445376pt;}
.wsa_c03069{word-spacing:-11.088000pt;}
.ws8_c03069{word-spacing:-11.075328pt;}
.ws9_c03069{word-spacing:-11.037312pt;}
.ws4_c03069{word-spacing:-10.344576pt;}
.ws2_c03069{word-spacing:-10.015104pt;}
.ws14_c03069{word-spacing:-0.963072pt;}
.ws11_c03069{word-spacing:-0.865920pt;}
.ws19_c03069{word-spacing:-0.639744pt;}
.ws1a_c03069{word-spacing:-0.333696pt;}
.ws13_c03069{word-spacing:-0.105600pt;}
.ws17_c03069{word-spacing:-0.088704pt;}
.ws18_c03069{word-spacing:-0.076032pt;}
.ws12_c03069{word-spacing:0.000000pt;}
.ws15_c03069{word-spacing:0.299904pt;}
.ws16_c03069{word-spacing:0.743424pt;}
.wsf_c03069{word-spacing:4.219776pt;}
.ws10_c03069{word-spacing:4.477440pt;}
.wse_c03069{word-spacing:6.188160pt;}
.wsd_c03069{word-spacing:26.932224pt;}
.wsb_c03069{word-spacing:29.600256pt;}
.ws6_c03069{word-spacing:32.659968pt;}
.ws1_c03069{word-spacing:33.563904pt;}
.ws0_c03069{word-spacing:33.796224pt;}
.ws3_c03069{word-spacing:34.860672pt;}
.ws5_c03069{word-spacing:35.468928pt;}
.ws7_c03069{word-spacing:37.357056pt;}
._0_c03069{margin-left:-1.731840pt;}
._2_c03069{width:1.317888pt;}
._5_c03069{width:2.462592pt;}
._4_c03069{width:3.848064pt;}
._7_c03069{width:16.325760pt;}
._6_c03069{width:20.317440pt;}
._1_c03069{width:44.668800pt;}
._3_c03069{width:45.805056pt;}
.fs0_c03069{font-size:42.240000pt;}
.fs1_c03069{font-size:53.760000pt;}
.y0_c03069{bottom:0.000000pt;}
.y19_c03069{bottom:130.665211pt;}
.y1c_c03069{bottom:159.787483pt;}
.y1b_c03069{bottom:165.866875pt;}
.y1a_c03069{bottom:174.507067pt;}
.y18_c03069{bottom:245.225371pt;}
.y17_c03069{bottom:317.225563pt;}
.y15_c03069{bottom:361.386427pt;}
.y11_c03069{bottom:377.386939pt;}
.y16_c03069{bottom:407.786011pt;}
.y14_c03069{bottom:437.226235pt;}
.y13_c03069{bottom:453.226747pt;}
.y10_c03069{bottom:482.666971pt;}
.y12_c03069{bottom:497.386555pt;}
.yf_c03069{bottom:513.387067pt;}
.y1d_c03069{bottom:546.027067pt;}
.yb_c03069{bottom:593.385179pt;}
.yd_c03069{bottom:628.586875pt;}
.yc_c03069{bottom:637.227067pt;}
.ya_c03069{bottom:707.945339pt;}
.y9_c03069{bottom:779.945531pt;}
.y7_c03069{bottom:823.786427pt;}
.y3_c03069{bottom:839.786939pt;}
.y8_c03069{bottom:870.505979pt;}
.y6_c03069{bottom:899.946203pt;}
.y5_c03069{bottom:915.946715pt;}
.y2_c03069{bottom:945.386939pt;}
.y4_c03069{bottom:959.786555pt;}
.y1_c03069{bottom:975.787067pt;}
.ye_c03069{bottom:1008.747067pt;}
.h3_c03069{height:28.916250pt;}
.h1_c03069{height:37.063125pt;}
.h2_c03069{height:37.166250pt;}
.h4_c03069{height:48.581988pt;}
.h5_c03069{height:66.607530pt;}
.h0_c03069{height:1122.666667pt;}
.w1_c03069{width:793.333333pt;}
.w0_c03069{width:793.626667pt;}
.x0_c03069{left:0.000000pt;}
.xd_c03069{left:104.000000pt;}
.x8_c03069{left:391.999872pt;}
.x4_c03069{left:396.160512pt;}
.xb_c03069{left:400.960000pt;}
.x7_c03069{left:404.799648pt;}
.x5_c03069{left:410.560128pt;}
.x1_c03069{left:411.840000pt;}
.xa_c03069{left:429.760320pt;}
.x9_c03069{left:437.439552pt;}
.x6_c03069{left:438.400512pt;}
.xc_c03069{left:450.560320pt;}
.x3_c03069{left:455.039904pt;}
.x2_c03069{left:468.159648pt;}
.xe_c03069{left:506.558944pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03070 {
    display:none;
  }
  .loading-indicator_c03070.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03070 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03070 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03070" -> "#page-container .classname_c03070")
 */
.pf_c03070 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03070 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03070.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03070 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03070 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03070 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03070 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03070 {overflow:visible;}
  }
}
.c_c03070 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03070 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03070:after { /* webkit #35443 */
  content: '';
}
.t_c03070:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03070 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03070 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03070 { /* info for Javascript */
  display:none;
}
.l_c03070 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03070 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03070 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03070:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03070 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03070.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03070.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03070 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03070;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03070{font-family:ff1_c03070;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03070;src:url('chunks/assets/font_1e31b94942ebb31d36695359.woff2')format("woff");}.ff2_c03070{font-family:ff2_c03070;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03070;src:url('chunks/assets/font_a7746cbff499bd214618a34c.woff2')format("woff");}.ff3_c03070{font-family:ff3_c03070;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03070{vertical-align:0.000000px;}
.v1_c03070{vertical-align:1.439424px;}
.ls18_c03070{letter-spacing:-1.202256px;}
.lsd_c03070{letter-spacing:-1.197504px;}
.lsb_c03070{letter-spacing:-0.698544px;}
.ls7_c03070{letter-spacing:-0.613008px;}
.ls9_c03070{letter-spacing:-0.574992px;}
.ls17_c03070{letter-spacing:-0.361152px;}
.ls10_c03070{letter-spacing:-0.275616px;}
.lse_c03070{letter-spacing:-0.261360px;}
.ls6_c03070{letter-spacing:-0.242352px;}
.ls14_c03070{letter-spacing:-0.237600px;}
.ls15_c03070{letter-spacing:-0.228096px;}
.ls4_c03070{letter-spacing:-0.118800px;}
.ls13_c03070{letter-spacing:0.000000px;}
.ls1_c03070{letter-spacing:0.006048px;}
.ls5_c03070{letter-spacing:0.128304px;}
.ls19_c03070{letter-spacing:0.242352px;}
.lsc_c03070{letter-spacing:0.508464px;}
.ls12_c03070{letter-spacing:0.514080px;}
.lsf_c03070{letter-spacing:0.536976px;}
.lsa_c03070{letter-spacing:0.579744px;}
.ls11_c03070{letter-spacing:0.594000px;}
.ls8_c03070{letter-spacing:0.598752px;}
.ls2_c03070{letter-spacing:0.613008px;}
.ls16_c03070{letter-spacing:0.632016px;}
.ls3_c03070{letter-spacing:0.717552px;}
.ls0_c03070{letter-spacing:0.722304px;}
.sc__c03070{text-shadow:none;}
.sc0_c03070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03070{-webkit-text-stroke:0px transparent;}
.sc0_c03070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03070{word-spacing:-15.126048px;}
.wsa_c03070{word-spacing:-12.474000px;}
.ws8_c03070{word-spacing:-12.459744px;}
.ws9_c03070{word-spacing:-12.416976px;}
.ws12_c03070{word-spacing:-11.651904px;}
.ws4_c03070{word-spacing:-11.637648px;}
.ws19_c03070{word-spacing:-11.518848px;}
.ws2_c03070{word-spacing:-11.266992px;}
.wsd_c03070{word-spacing:-10.682496px;}
.ws24_c03070{word-spacing:-1.083456px;}
.ws21_c03070{word-spacing:-0.974160px;}
.ws1c_c03070{word-spacing:-0.722304px;}
.ws29_c03070{word-spacing:-0.719712px;}
.ws23_c03070{word-spacing:-0.118800px;}
.ws27_c03070{word-spacing:-0.099792px;}
.ws28_c03070{word-spacing:-0.085536px;}
.ws22_c03070{word-spacing:0.000000px;}
.ws25_c03070{word-spacing:0.337392px;}
.ws16_c03070{word-spacing:0.812592px;}
.ws26_c03070{word-spacing:0.836352px;}
.ws17_c03070{word-spacing:1.976832px;}
.ws15_c03070{word-spacing:3.521232px;}
.ws1d_c03070{word-spacing:4.690224px;}
.ws10_c03070{word-spacing:4.894560px;}
.wsf_c03070{word-spacing:5.583600px;}
.ws20_c03070{word-spacing:6.329664px;}
.ws1a_c03070{word-spacing:17.525376px;}
.ws18_c03070{word-spacing:18.955728px;}
.ws1f_c03070{word-spacing:22.225104px;}
.ws1b_c03070{word-spacing:26.634960px;}
.ws11_c03070{word-spacing:26.734752px;}
.ws13_c03070{word-spacing:26.763264px;}
.ws14_c03070{word-spacing:27.015120px;}
.wsb_c03070{word-spacing:33.300288px;}
.ws1e_c03070{word-spacing:34.836912px;}
.wse_c03070{word-spacing:36.143712px;}
.ws6_c03070{word-spacing:36.742464px;}
.ws1_c03070{word-spacing:37.759392px;}
.ws0_c03070{word-spacing:38.020752px;}
.ws3_c03070{word-spacing:39.218256px;}
.ws5_c03070{word-spacing:39.902544px;}
.ws7_c03070{word-spacing:42.026688px;}
._d_c03070{margin-left:-3.088800px;}
._0_c03070{margin-left:-1.948320px;}
._2_c03070{width:1.482624px;}
._5_c03070{width:2.770416px;}
._4_c03070{width:4.329072px;}
._f_c03070{width:14.678928px;}
._a_c03070{width:16.190064px;}
._6_c03070{width:17.976816px;}
._7_c03070{width:20.167488px;}
._8_c03070{width:22.695552px;}
._b_c03070{width:25.342416px;}
._10_c03070{width:32.708016px;}
._c_c03070{width:35.364384px;}
._e_c03070{width:37.916208px;}
._9_c03070{width:40.762656px;}
._1_c03070{width:50.252400px;}
._3_c03070{width:51.530688px;}
.fc0_c03070{color:rgb(0,0,0);}
.fs0_c03070{font-size:47.520000px;}
.fs1_c03070{font-size:60.480000px;}
.y0_c03070{bottom:0.000000px;}
.y21_c03070{bottom:116.761386px;}
.y20_c03070{bottom:131.881062px;}
.y1f_c03070{bottom:147.000738px;}
.y23_c03070{bottom:186.600234px;}
.y22_c03070{bottom:196.320450px;}
.y1e_c03070{bottom:230.880666px;}
.y1d_c03070{bottom:246.000342px;}
.y1c_c03070{bottom:260.760054px;}
.y1b_c03070{bottom:275.879730px;}
.y1a_c03070{bottom:311.879694px;}
.y19_c03070{bottom:326.999370px;}
.y18_c03070{bottom:341.759082px;}
.y17_c03070{bottom:356.878758px;}
.y15_c03070{bottom:406.559730px;}
.y11_c03070{bottom:424.560306px;}
.y16_c03070{bottom:458.759262px;}
.y14_c03070{bottom:491.879514px;}
.y13_c03070{bottom:509.880090px;}
.y10_c03070{bottom:543.000342px;}
.y12_c03070{bottom:559.559874px;}
.yf_c03070{bottom:577.560450px;}
.y24_c03070{bottom:614.280450px;}
.yb_c03070{bottom:667.558326px;}
.yd_c03070{bottom:707.160234px;}
.yc_c03070{bottom:716.880450px;}
.ya_c03070{bottom:796.438506px;}
.y9_c03070{bottom:877.438722px;}
.y7_c03070{bottom:926.759730px;}
.y3_c03070{bottom:944.760306px;}
.y8_c03070{bottom:979.319226px;}
.y6_c03070{bottom:1012.439478px;}
.y5_c03070{bottom:1030.440054px;}
.y2_c03070{bottom:1063.560306px;}
.y4_c03070{bottom:1079.759874px;}
.y1_c03070{bottom:1097.760450px;}
.ye_c03070{bottom:1134.840450px;}
.h3_c03070{height:32.530781px;}
.h1_c03070{height:41.696016px;}
.h2_c03070{height:41.812031px;}
.h4_c03070{height:54.654737px;}
.h0_c03070{height:1263.000000px;}
.w1_c03070{width:892.500000px;}
.w0_c03070{width:892.830000px;}
.x0_c03070{left:0.000000px;}
.xd_c03070{left:117.000000px;}
.x8_c03070{left:440.999856px;}
.x4_c03070{left:445.680576px;}
.xb_c03070{left:451.080000px;}
.x7_c03070{left:455.399604px;}
.x5_c03070{left:461.880144px;}
.x1_c03070{left:463.320000px;}
.xa_c03070{left:483.480360px;}
.x9_c03070{left:492.119496px;}
.x6_c03070{left:493.200576px;}
.xc_c03070{left:506.880360px;}
.x3_c03070{left:511.919892px;}
.x2_c03070{left:526.679604px;}
.xe_c03070{left:569.880036px;}
@media print{
.v0_c03070{vertical-align:0.000000pt;}
.v1_c03070{vertical-align:1.279488pt;}
.ls18_c03070{letter-spacing:-1.068672pt;}
.lsd_c03070{letter-spacing:-1.064448pt;}
.lsb_c03070{letter-spacing:-0.620928pt;}
.ls7_c03070{letter-spacing:-0.544896pt;}
.ls9_c03070{letter-spacing:-0.511104pt;}
.ls17_c03070{letter-spacing:-0.321024pt;}
.ls10_c03070{letter-spacing:-0.244992pt;}
.lse_c03070{letter-spacing:-0.232320pt;}
.ls6_c03070{letter-spacing:-0.215424pt;}
.ls14_c03070{letter-spacing:-0.211200pt;}
.ls15_c03070{letter-spacing:-0.202752pt;}
.ls4_c03070{letter-spacing:-0.105600pt;}
.ls13_c03070{letter-spacing:0.000000pt;}
.ls1_c03070{letter-spacing:0.005376pt;}
.ls5_c03070{letter-spacing:0.114048pt;}
.ls19_c03070{letter-spacing:0.215424pt;}
.lsc_c03070{letter-spacing:0.451968pt;}
.ls12_c03070{letter-spacing:0.456960pt;}
.lsf_c03070{letter-spacing:0.477312pt;}
.lsa_c03070{letter-spacing:0.515328pt;}
.ls11_c03070{letter-spacing:0.528000pt;}
.ls8_c03070{letter-spacing:0.532224pt;}
.ls2_c03070{letter-spacing:0.544896pt;}
.ls16_c03070{letter-spacing:0.561792pt;}
.ls3_c03070{letter-spacing:0.637824pt;}
.ls0_c03070{letter-spacing:0.642048pt;}
.wsc_c03070{word-spacing:-13.445376pt;}
.wsa_c03070{word-spacing:-11.088000pt;}
.ws8_c03070{word-spacing:-11.075328pt;}
.ws9_c03070{word-spacing:-11.037312pt;}
.ws12_c03070{word-spacing:-10.357248pt;}
.ws4_c03070{word-spacing:-10.344576pt;}
.ws19_c03070{word-spacing:-10.238976pt;}
.ws2_c03070{word-spacing:-10.015104pt;}
.wsd_c03070{word-spacing:-9.495552pt;}
.ws24_c03070{word-spacing:-0.963072pt;}
.ws21_c03070{word-spacing:-0.865920pt;}
.ws1c_c03070{word-spacing:-0.642048pt;}
.ws29_c03070{word-spacing:-0.639744pt;}
.ws23_c03070{word-spacing:-0.105600pt;}
.ws27_c03070{word-spacing:-0.088704pt;}
.ws28_c03070{word-spacing:-0.076032pt;}
.ws22_c03070{word-spacing:0.000000pt;}
.ws25_c03070{word-spacing:0.299904pt;}
.ws16_c03070{word-spacing:0.722304pt;}
.ws26_c03070{word-spacing:0.743424pt;}
.ws17_c03070{word-spacing:1.757184pt;}
.ws15_c03070{word-spacing:3.129984pt;}
.ws1d_c03070{word-spacing:4.169088pt;}
.ws10_c03070{word-spacing:4.350720pt;}
.wsf_c03070{word-spacing:4.963200pt;}
.ws20_c03070{word-spacing:5.626368pt;}
.ws1a_c03070{word-spacing:15.578112pt;}
.ws18_c03070{word-spacing:16.849536pt;}
.ws1f_c03070{word-spacing:19.755648pt;}
.ws1b_c03070{word-spacing:23.675520pt;}
.ws11_c03070{word-spacing:23.764224pt;}
.ws13_c03070{word-spacing:23.789568pt;}
.ws14_c03070{word-spacing:24.013440pt;}
.wsb_c03070{word-spacing:29.600256pt;}
.ws1e_c03070{word-spacing:30.966144pt;}
.wse_c03070{word-spacing:32.127744pt;}
.ws6_c03070{word-spacing:32.659968pt;}
.ws1_c03070{word-spacing:33.563904pt;}
.ws0_c03070{word-spacing:33.796224pt;}
.ws3_c03070{word-spacing:34.860672pt;}
.ws5_c03070{word-spacing:35.468928pt;}
.ws7_c03070{word-spacing:37.357056pt;}
._d_c03070{margin-left:-2.745600pt;}
._0_c03070{margin-left:-1.731840pt;}
._2_c03070{width:1.317888pt;}
._5_c03070{width:2.462592pt;}
._4_c03070{width:3.848064pt;}
._f_c03070{width:13.047936pt;}
._a_c03070{width:14.391168pt;}
._6_c03070{width:15.979392pt;}
._7_c03070{width:17.926656pt;}
._8_c03070{width:20.173824pt;}
._b_c03070{width:22.526592pt;}
._10_c03070{width:29.073792pt;}
._c_c03070{width:31.435008pt;}
._e_c03070{width:33.703296pt;}
._9_c03070{width:36.233472pt;}
._1_c03070{width:44.668800pt;}
._3_c03070{width:45.805056pt;}
.fs0_c03070{font-size:42.240000pt;}
.fs1_c03070{font-size:53.760000pt;}
.y0_c03070{bottom:0.000000pt;}
.y21_c03070{bottom:103.787899pt;}
.y20_c03070{bottom:117.227611pt;}
.y1f_c03070{bottom:130.667323pt;}
.y23_c03070{bottom:165.866875pt;}
.y22_c03070{bottom:174.507067pt;}
.y1e_c03070{bottom:205.227259pt;}
.y1d_c03070{bottom:218.666971pt;}
.y1c_c03070{bottom:231.786715pt;}
.y1b_c03070{bottom:245.226427pt;}
.y1a_c03070{bottom:277.226395pt;}
.y19_c03070{bottom:290.666107pt;}
.y18_c03070{bottom:303.785851pt;}
.y17_c03070{bottom:317.225563pt;}
.y15_c03070{bottom:361.386427pt;}
.y11_c03070{bottom:377.386939pt;}
.y16_c03070{bottom:407.786011pt;}
.y14_c03070{bottom:437.226235pt;}
.y13_c03070{bottom:453.226747pt;}
.y10_c03070{bottom:482.666971pt;}
.y12_c03070{bottom:497.386555pt;}
.yf_c03070{bottom:513.387067pt;}
.y24_c03070{bottom:546.027067pt;}
.yb_c03070{bottom:593.385179pt;}
.yd_c03070{bottom:628.586875pt;}
.yc_c03070{bottom:637.227067pt;}
.ya_c03070{bottom:707.945339pt;}
.y9_c03070{bottom:779.945531pt;}
.y7_c03070{bottom:823.786427pt;}
.y3_c03070{bottom:839.786939pt;}
.y8_c03070{bottom:870.505979pt;}
.y6_c03070{bottom:899.946203pt;}
.y5_c03070{bottom:915.946715pt;}
.y2_c03070{bottom:945.386939pt;}
.y4_c03070{bottom:959.786555pt;}
.y1_c03070{bottom:975.787067pt;}
.ye_c03070{bottom:1008.747067pt;}
.h3_c03070{height:28.916250pt;}
.h1_c03070{height:37.063125pt;}
.h2_c03070{height:37.166250pt;}
.h4_c03070{height:48.581988pt;}
.h0_c03070{height:1122.666667pt;}
.w1_c03070{width:793.333333pt;}
.w0_c03070{width:793.626667pt;}
.x0_c03070{left:0.000000pt;}
.xd_c03070{left:104.000000pt;}
.x8_c03070{left:391.999872pt;}
.x4_c03070{left:396.160512pt;}
.xb_c03070{left:400.960000pt;}
.x7_c03070{left:404.799648pt;}
.x5_c03070{left:410.560128pt;}
.x1_c03070{left:411.840000pt;}
.xa_c03070{left:429.760320pt;}
.x9_c03070{left:437.439552pt;}
.x6_c03070{left:438.400512pt;}
.xc_c03070{left:450.560320pt;}
.x3_c03070{left:455.039904pt;}
.x2_c03070{left:468.159648pt;}
.xe_c03070{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03071 {
    display:none;
  }
  .loading-indicator_c03071.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03071 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03071 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03071" -> "#page-container .classname_c03071")
 */
.pf_c03071 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03071 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03071.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03071 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03071 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03071 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03071 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03071 {overflow:visible;}
  }
}
.c_c03071 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03071 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03071:after { /* webkit #35443 */
  content: '';
}
.t_c03071:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03071 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03071 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03071 { /* info for Javascript */
  display:none;
}
.l_c03071 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03071 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03071 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03071:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03071 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03071.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03071.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03071 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03071{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03071;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03071{font-family:ff1_c03071;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03071;src:url('chunks/assets/font_9a4630958fd2f4b441e688fd.woff2')format("woff");}.ff2_c03071{font-family:ff2_c03071;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03071;src:url('chunks/assets/font_907d9f984d1cbaf74cfcca65.woff2')format("woff");}.ff3_c03071{font-family:ff3_c03071;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03071{vertical-align:0.000000px;}
.v1_c03071{vertical-align:1.439424px;}
.v2_c03071{vertical-align:33.121440px;}
.lsc_c03071{letter-spacing:-0.793584px;}
.ls7_c03071{letter-spacing:-0.613008px;}
.ls9_c03071{letter-spacing:-0.574992px;}
.lse_c03071{letter-spacing:-0.375408px;}
.ls17_c03071{letter-spacing:-0.361152px;}
.ls10_c03071{letter-spacing:-0.275616px;}
.lsd_c03071{letter-spacing:-0.261360px;}
.ls6_c03071{letter-spacing:-0.242352px;}
.ls4_c03071{letter-spacing:-0.118800px;}
.ls13_c03071{letter-spacing:0.000000px;}
.ls1_c03071{letter-spacing:0.006048px;}
.ls5_c03071{letter-spacing:0.128304px;}
.lsb_c03071{letter-spacing:0.508464px;}
.ls12_c03071{letter-spacing:0.514080px;}
.lsf_c03071{letter-spacing:0.536976px;}
.ls14_c03071{letter-spacing:0.570240px;}
.lsa_c03071{letter-spacing:0.579744px;}
.ls11_c03071{letter-spacing:0.594000px;}
.ls8_c03071{letter-spacing:0.598752px;}
.ls2_c03071{letter-spacing:0.613008px;}
.ls15_c03071{letter-spacing:0.655776px;}
.ls3_c03071{letter-spacing:0.717552px;}
.ls0_c03071{letter-spacing:0.722304px;}
.ls16_c03071{letter-spacing:22.681296px;}
.sc__c03071{text-shadow:none;}
.sc0_c03071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03071{-webkit-text-stroke:0px transparent;}
.sc0_c03071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03071{word-spacing:-34.561296px;}
.wsc_c03071{word-spacing:-15.126048px;}
.wsa_c03071{word-spacing:-12.474000px;}
.ws6_c03071{word-spacing:-12.459744px;}
.ws9_c03071{word-spacing:-12.416976px;}
.ws4_c03071{word-spacing:-11.637648px;}
.ws2_c03071{word-spacing:-11.266992px;}
.ws12_c03071{word-spacing:-1.083456px;}
.ws19_c03071{word-spacing:-1.016928px;}
.wsf_c03071{word-spacing:-0.974160px;}
.ws18_c03071{word-spacing:-0.931392px;}
.ws17_c03071{word-spacing:-0.719712px;}
.ws11_c03071{word-spacing:-0.118800px;}
.ws14_c03071{word-spacing:-0.099792px;}
.ws16_c03071{word-spacing:-0.085536px;}
.ws10_c03071{word-spacing:0.000000px;}
.ws15_c03071{word-spacing:0.014256px;}
.ws13_c03071{word-spacing:0.432432px;}
.wsd_c03071{word-spacing:30.298752px;}
.wsb_c03071{word-spacing:33.300288px;}
.ws8_c03071{word-spacing:36.143712px;}
.ws1_c03071{word-spacing:37.759392px;}
.ws0_c03071{word-spacing:38.020752px;}
.ws3_c03071{word-spacing:39.218256px;}
.ws5_c03071{word-spacing:39.902544px;}
.ws7_c03071{word-spacing:42.026688px;}
._7_c03071{margin-left:-23.954832px;}
._8_c03071{margin-left:-22.909392px;}
._6_c03071{margin-left:-21.887712px;}
._0_c03071{margin-left:-1.948320px;}
._2_c03071{width:1.482624px;}
._4_c03071{width:3.302640px;}
._5_c03071{width:9.798624px;}
._1_c03071{width:50.252400px;}
._3_c03071{width:51.530688px;}
.fc0_c03071{color:rgb(0,0,0);}
.fs0_c03071{font-size:47.520000px;}
.fs1_c03071{font-size:60.480000px;}
.y0_c03071{bottom:0.000000px;}
.y19_c03071{bottom:146.998362px;}
.y1c_c03071{bottom:179.760918px;}
.y1b_c03071{bottom:186.600234px;}
.y1a_c03071{bottom:196.320450px;}
.y18_c03071{bottom:275.878542px;}
.y17_c03071{bottom:356.878758px;}
.y15_c03071{bottom:406.559730px;}
.y11_c03071{bottom:424.560306px;}
.y16_c03071{bottom:458.759262px;}
.y14_c03071{bottom:491.879514px;}
.y13_c03071{bottom:509.880090px;}
.y10_c03071{bottom:543.000342px;}
.y12_c03071{bottom:559.559874px;}
.yf_c03071{bottom:577.560450px;}
.y1d_c03071{bottom:614.280450px;}
.yb_c03071{bottom:667.558326px;}
.yd_c03071{bottom:707.160234px;}
.yc_c03071{bottom:716.880450px;}
.ya_c03071{bottom:796.438506px;}
.y9_c03071{bottom:877.438722px;}
.y7_c03071{bottom:926.759730px;}
.y3_c03071{bottom:944.760306px;}
.y8_c03071{bottom:979.319226px;}
.y6_c03071{bottom:1012.439478px;}
.y5_c03071{bottom:1030.440054px;}
.y2_c03071{bottom:1063.560306px;}
.y4_c03071{bottom:1079.759874px;}
.y1_c03071{bottom:1097.760450px;}
.ye_c03071{bottom:1134.840450px;}
.h3_c03071{height:32.530781px;}
.h1_c03071{height:41.696016px;}
.h2_c03071{height:41.812031px;}
.h4_c03071{height:54.654737px;}
.h5_c03071{height:74.817456px;}
.h0_c03071{height:1263.000000px;}
.w1_c03071{width:892.500000px;}
.w0_c03071{width:892.830000px;}
.x0_c03071{left:0.000000px;}
.xd_c03071{left:117.000000px;}
.x8_c03071{left:440.999856px;}
.x4_c03071{left:445.680576px;}
.xb_c03071{left:451.080000px;}
.x7_c03071{left:455.399604px;}
.x5_c03071{left:461.880144px;}
.x1_c03071{left:463.320000px;}
.xa_c03071{left:483.480360px;}
.x9_c03071{left:492.119496px;}
.x6_c03071{left:493.200576px;}
.xc_c03071{left:506.880360px;}
.x3_c03071{left:511.919892px;}
.x2_c03071{left:526.679604px;}
.xe_c03071{left:569.880000px;}
@media print{
.v0_c03071{vertical-align:0.000000pt;}
.v1_c03071{vertical-align:1.279488pt;}
.v2_c03071{vertical-align:29.441280pt;}
.lsc_c03071{letter-spacing:-0.705408pt;}
.ls7_c03071{letter-spacing:-0.544896pt;}
.ls9_c03071{letter-spacing:-0.511104pt;}
.lse_c03071{letter-spacing:-0.333696pt;}
.ls17_c03071{letter-spacing:-0.321024pt;}
.ls10_c03071{letter-spacing:-0.244992pt;}
.lsd_c03071{letter-spacing:-0.232320pt;}
.ls6_c03071{letter-spacing:-0.215424pt;}
.ls4_c03071{letter-spacing:-0.105600pt;}
.ls13_c03071{letter-spacing:0.000000pt;}
.ls1_c03071{letter-spacing:0.005376pt;}
.ls5_c03071{letter-spacing:0.114048pt;}
.lsb_c03071{letter-spacing:0.451968pt;}
.ls12_c03071{letter-spacing:0.456960pt;}
.lsf_c03071{letter-spacing:0.477312pt;}
.ls14_c03071{letter-spacing:0.506880pt;}
.lsa_c03071{letter-spacing:0.515328pt;}
.ls11_c03071{letter-spacing:0.528000pt;}
.ls8_c03071{letter-spacing:0.532224pt;}
.ls2_c03071{letter-spacing:0.544896pt;}
.ls15_c03071{letter-spacing:0.582912pt;}
.ls3_c03071{letter-spacing:0.637824pt;}
.ls0_c03071{letter-spacing:0.642048pt;}
.ls16_c03071{letter-spacing:20.161152pt;}
.wse_c03071{word-spacing:-30.721152pt;}
.wsc_c03071{word-spacing:-13.445376pt;}
.wsa_c03071{word-spacing:-11.088000pt;}
.ws6_c03071{word-spacing:-11.075328pt;}
.ws9_c03071{word-spacing:-11.037312pt;}
.ws4_c03071{word-spacing:-10.344576pt;}
.ws2_c03071{word-spacing:-10.015104pt;}
.ws12_c03071{word-spacing:-0.963072pt;}
.ws19_c03071{word-spacing:-0.903936pt;}
.wsf_c03071{word-spacing:-0.865920pt;}
.ws18_c03071{word-spacing:-0.827904pt;}
.ws17_c03071{word-spacing:-0.639744pt;}
.ws11_c03071{word-spacing:-0.105600pt;}
.ws14_c03071{word-spacing:-0.088704pt;}
.ws16_c03071{word-spacing:-0.076032pt;}
.ws10_c03071{word-spacing:0.000000pt;}
.ws15_c03071{word-spacing:0.012672pt;}
.ws13_c03071{word-spacing:0.384384pt;}
.wsd_c03071{word-spacing:26.932224pt;}
.wsb_c03071{word-spacing:29.600256pt;}
.ws8_c03071{word-spacing:32.127744pt;}
.ws1_c03071{word-spacing:33.563904pt;}
.ws0_c03071{word-spacing:33.796224pt;}
.ws3_c03071{word-spacing:34.860672pt;}
.ws5_c03071{word-spacing:35.468928pt;}
.ws7_c03071{word-spacing:37.357056pt;}
._7_c03071{margin-left:-21.293184pt;}
._8_c03071{margin-left:-20.363904pt;}
._6_c03071{margin-left:-19.455744pt;}
._0_c03071{margin-left:-1.731840pt;}
._2_c03071{width:1.317888pt;}
._4_c03071{width:2.935680pt;}
._5_c03071{width:8.709888pt;}
._1_c03071{width:44.668800pt;}
._3_c03071{width:45.805056pt;}
.fs0_c03071{font-size:42.240000pt;}
.fs1_c03071{font-size:53.760000pt;}
.y0_c03071{bottom:0.000000pt;}
.y19_c03071{bottom:130.665211pt;}
.y1c_c03071{bottom:159.787483pt;}
.y1b_c03071{bottom:165.866875pt;}
.y1a_c03071{bottom:174.507067pt;}
.y18_c03071{bottom:245.225371pt;}
.y17_c03071{bottom:317.225563pt;}
.y15_c03071{bottom:361.386427pt;}
.y11_c03071{bottom:377.386939pt;}
.y16_c03071{bottom:407.786011pt;}
.y14_c03071{bottom:437.226235pt;}
.y13_c03071{bottom:453.226747pt;}
.y10_c03071{bottom:482.666971pt;}
.y12_c03071{bottom:497.386555pt;}
.yf_c03071{bottom:513.387067pt;}
.y1d_c03071{bottom:546.027067pt;}
.yb_c03071{bottom:593.385179pt;}
.yd_c03071{bottom:628.586875pt;}
.yc_c03071{bottom:637.227067pt;}
.ya_c03071{bottom:707.945339pt;}
.y9_c03071{bottom:779.945531pt;}
.y7_c03071{bottom:823.786427pt;}
.y3_c03071{bottom:839.786939pt;}
.y8_c03071{bottom:870.505979pt;}
.y6_c03071{bottom:899.946203pt;}
.y5_c03071{bottom:915.946715pt;}
.y2_c03071{bottom:945.386939pt;}
.y4_c03071{bottom:959.786555pt;}
.y1_c03071{bottom:975.787067pt;}
.ye_c03071{bottom:1008.747067pt;}
.h3_c03071{height:28.916250pt;}
.h1_c03071{height:37.063125pt;}
.h2_c03071{height:37.166250pt;}
.h4_c03071{height:48.581988pt;}
.h5_c03071{height:66.504405pt;}
.h0_c03071{height:1122.666667pt;}
.w1_c03071{width:793.333333pt;}
.w0_c03071{width:793.626667pt;}
.x0_c03071{left:0.000000pt;}
.xd_c03071{left:104.000000pt;}
.x8_c03071{left:391.999872pt;}
.x4_c03071{left:396.160512pt;}
.xb_c03071{left:400.960000pt;}
.x7_c03071{left:404.799648pt;}
.x5_c03071{left:410.560128pt;}
.x1_c03071{left:411.840000pt;}
.xa_c03071{left:429.760320pt;}
.x9_c03071{left:437.439552pt;}
.x6_c03071{left:438.400512pt;}
.xc_c03071{left:450.560320pt;}
.x3_c03071{left:455.039904pt;}
.x2_c03071{left:468.159648pt;}
.xe_c03071{left:506.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03072 {
    display:none;
  }
  .loading-indicator_c03072.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03072 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03072 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03072" -> "#page-container .classname_c03072")
 */
.pf_c03072 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03072 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03072.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03072 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03072 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03072 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03072 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03072 {overflow:visible;}
  }
}
.c_c03072 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03072 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03072:after { /* webkit #35443 */
  content: '';
}
.t_c03072:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03072 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03072 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03072 { /* info for Javascript */
  display:none;
}
.l_c03072 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03072 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03072 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03072:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03072 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03072.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03072.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03072 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03072{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03072;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03072{font-family:ff1_c03072;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03072;src:url('chunks/assets/font_36099d03eb0f1caca02fc953.woff2')format("woff");}.ff2_c03072{font-family:ff2_c03072;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03072;src:url('chunks/assets/font_87d398e417372f7762ebcdac.woff2')format("woff");}.ff3_c03072{font-family:ff3_c03072;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03072{vertical-align:0.000000px;}
.v2_c03072{vertical-align:1.439424px;}
.v1_c03072{vertical-align:33.121440px;}
.ls17_c03072{letter-spacing:-1.197504px;}
.lsc_c03072{letter-spacing:-0.793584px;}
.ls7_c03072{letter-spacing:-0.613008px;}
.ls9_c03072{letter-spacing:-0.574992px;}
.ls12_c03072{letter-spacing:-0.389664px;}
.lse_c03072{letter-spacing:-0.375408px;}
.ls19_c03072{letter-spacing:-0.361152px;}
.ls16_c03072{letter-spacing:-0.285120px;}
.ls10_c03072{letter-spacing:-0.275616px;}
.lsd_c03072{letter-spacing:-0.261360px;}
.ls6_c03072{letter-spacing:-0.242352px;}
.ls4_c03072{letter-spacing:-0.118800px;}
.ls14_c03072{letter-spacing:0.000000px;}
.ls1_c03072{letter-spacing:0.006048px;}
.ls5_c03072{letter-spacing:0.128304px;}
.ls18_c03072{letter-spacing:0.237600px;}
.lsb_c03072{letter-spacing:0.508464px;}
.ls13_c03072{letter-spacing:0.514080px;}
.lsf_c03072{letter-spacing:0.536976px;}
.lsa_c03072{letter-spacing:0.579744px;}
.ls11_c03072{letter-spacing:0.594000px;}
.ls8_c03072{letter-spacing:0.598752px;}
.ls2_c03072{letter-spacing:0.613008px;}
.ls15_c03072{letter-spacing:0.622512px;}
.ls3_c03072{letter-spacing:0.717552px;}
.ls0_c03072{letter-spacing:0.722304px;}
.ls1a_c03072{letter-spacing:22.681296px;}
.sc__c03072{text-shadow:none;}
.sc0_c03072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03072{-webkit-text-stroke:0px transparent;}
.sc0_c03072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c03072{word-spacing:-34.561296px;}
.wsc_c03072{word-spacing:-15.126048px;}
.ws6_c03072{word-spacing:-12.459744px;}
.ws9_c03072{word-spacing:-12.416976px;}
.wse_c03072{word-spacing:-12.117600px;}
.ws4_c03072{word-spacing:-11.637648px;}
.ws2_c03072{word-spacing:-11.266992px;}
.ws13_c03072{word-spacing:-1.083456px;}
.ws1a_c03072{word-spacing:-0.983664px;}
.ws10_c03072{word-spacing:-0.974160px;}
.ws19_c03072{word-spacing:-0.719712px;}
.ws12_c03072{word-spacing:-0.118800px;}
.ws15_c03072{word-spacing:-0.099792px;}
.ws17_c03072{word-spacing:-0.085536px;}
.ws1b_c03072{word-spacing:-0.076032px;}
.ws11_c03072{word-spacing:0.000000px;}
.ws16_c03072{word-spacing:0.014256px;}
.ws18_c03072{word-spacing:0.028512px;}
.ws14_c03072{word-spacing:0.432432px;}
.ws1c_c03072{word-spacing:0.836352px;}
.wsa_c03072{word-spacing:30.298752px;}
.wsb_c03072{word-spacing:33.300288px;}
.ws8_c03072{word-spacing:36.143712px;}
.wsd_c03072{word-spacing:36.742464px;}
.ws1_c03072{word-spacing:37.759392px;}
.ws0_c03072{word-spacing:38.020752px;}
.ws3_c03072{word-spacing:39.218256px;}
.ws5_c03072{word-spacing:39.902544px;}
.ws7_c03072{word-spacing:42.026688px;}
._9_c03072{margin-left:-23.954832px;}
._a_c03072{margin-left:-22.909392px;}
._8_c03072{margin-left:-21.887712px;}
._0_c03072{margin-left:-1.948320px;}
._2_c03072{width:1.482624px;}
._4_c03072{width:3.302640px;}
._6_c03072{width:9.427968px;}
._5_c03072{width:12.801888px;}
._7_c03072{width:21.445776px;}
._1_c03072{width:50.252400px;}
._3_c03072{width:51.530688px;}
.fc0_c03072{color:rgb(0,0,0);}
.fs0_c03072{font-size:47.520000px;}
.fs1_c03072{font-size:60.480000px;}
.y0_c03072{bottom:0.000000px;}
.y19_c03072{bottom:146.998362px;}
.y1c_c03072{bottom:179.760918px;}
.y1b_c03072{bottom:186.600234px;}
.y1a_c03072{bottom:196.320450px;}
.y18_c03072{bottom:275.878542px;}
.y17_c03072{bottom:356.878758px;}
.y15_c03072{bottom:406.559730px;}
.y11_c03072{bottom:424.560306px;}
.y16_c03072{bottom:458.759262px;}
.y14_c03072{bottom:491.879514px;}
.y13_c03072{bottom:509.880090px;}
.y10_c03072{bottom:543.000342px;}
.y12_c03072{bottom:559.559874px;}
.yf_c03072{bottom:577.560450px;}
.y1d_c03072{bottom:614.280450px;}
.yb_c03072{bottom:667.558326px;}
.yd_c03072{bottom:707.160234px;}
.yc_c03072{bottom:716.880450px;}
.ya_c03072{bottom:796.438506px;}
.y9_c03072{bottom:877.438722px;}
.y7_c03072{bottom:926.759730px;}
.y3_c03072{bottom:944.760306px;}
.y8_c03072{bottom:979.319226px;}
.y6_c03072{bottom:1012.439478px;}
.y5_c03072{bottom:1030.440054px;}
.y2_c03072{bottom:1063.560306px;}
.y4_c03072{bottom:1079.759874px;}
.y1_c03072{bottom:1097.760450px;}
.ye_c03072{bottom:1134.840450px;}
.h3_c03072{height:32.530781px;}
.h1_c03072{height:41.696016px;}
.h2_c03072{height:41.812031px;}
.h5_c03072{height:54.654737px;}
.h4_c03072{height:74.817456px;}
.h0_c03072{height:1263.000000px;}
.w1_c03072{width:892.500000px;}
.w0_c03072{width:892.830000px;}
.x0_c03072{left:0.000000px;}
.xd_c03072{left:117.000000px;}
.x8_c03072{left:440.999856px;}
.x4_c03072{left:445.680576px;}
.xb_c03072{left:451.080000px;}
.x7_c03072{left:455.399604px;}
.x5_c03072{left:461.880144px;}
.x1_c03072{left:463.320000px;}
.xa_c03072{left:483.480360px;}
.x9_c03072{left:492.119496px;}
.x6_c03072{left:493.200576px;}
.xc_c03072{left:506.880360px;}
.x3_c03072{left:511.919892px;}
.x2_c03072{left:526.679604px;}
.xe_c03072{left:569.880000px;}
@media print{
.v0_c03072{vertical-align:0.000000pt;}
.v2_c03072{vertical-align:1.279488pt;}
.v1_c03072{vertical-align:29.441280pt;}
.ls17_c03072{letter-spacing:-1.064448pt;}
.lsc_c03072{letter-spacing:-0.705408pt;}
.ls7_c03072{letter-spacing:-0.544896pt;}
.ls9_c03072{letter-spacing:-0.511104pt;}
.ls12_c03072{letter-spacing:-0.346368pt;}
.lse_c03072{letter-spacing:-0.333696pt;}
.ls19_c03072{letter-spacing:-0.321024pt;}
.ls16_c03072{letter-spacing:-0.253440pt;}
.ls10_c03072{letter-spacing:-0.244992pt;}
.lsd_c03072{letter-spacing:-0.232320pt;}
.ls6_c03072{letter-spacing:-0.215424pt;}
.ls4_c03072{letter-spacing:-0.105600pt;}
.ls14_c03072{letter-spacing:0.000000pt;}
.ls1_c03072{letter-spacing:0.005376pt;}
.ls5_c03072{letter-spacing:0.114048pt;}
.ls18_c03072{letter-spacing:0.211200pt;}
.lsb_c03072{letter-spacing:0.451968pt;}
.ls13_c03072{letter-spacing:0.456960pt;}
.lsf_c03072{letter-spacing:0.477312pt;}
.lsa_c03072{letter-spacing:0.515328pt;}
.ls11_c03072{letter-spacing:0.528000pt;}
.ls8_c03072{letter-spacing:0.532224pt;}
.ls2_c03072{letter-spacing:0.544896pt;}
.ls15_c03072{letter-spacing:0.553344pt;}
.ls3_c03072{letter-spacing:0.637824pt;}
.ls0_c03072{letter-spacing:0.642048pt;}
.ls1a_c03072{letter-spacing:20.161152pt;}
.wsf_c03072{word-spacing:-30.721152pt;}
.wsc_c03072{word-spacing:-13.445376pt;}
.ws6_c03072{word-spacing:-11.075328pt;}
.ws9_c03072{word-spacing:-11.037312pt;}
.wse_c03072{word-spacing:-10.771200pt;}
.ws4_c03072{word-spacing:-10.344576pt;}
.ws2_c03072{word-spacing:-10.015104pt;}
.ws13_c03072{word-spacing:-0.963072pt;}
.ws1a_c03072{word-spacing:-0.874368pt;}
.ws10_c03072{word-spacing:-0.865920pt;}
.ws19_c03072{word-spacing:-0.639744pt;}
.ws12_c03072{word-spacing:-0.105600pt;}
.ws15_c03072{word-spacing:-0.088704pt;}
.ws17_c03072{word-spacing:-0.076032pt;}
.ws1b_c03072{word-spacing:-0.067584pt;}
.ws11_c03072{word-spacing:0.000000pt;}
.ws16_c03072{word-spacing:0.012672pt;}
.ws18_c03072{word-spacing:0.025344pt;}
.ws14_c03072{word-spacing:0.384384pt;}
.ws1c_c03072{word-spacing:0.743424pt;}
.wsa_c03072{word-spacing:26.932224pt;}
.wsb_c03072{word-spacing:29.600256pt;}
.ws8_c03072{word-spacing:32.127744pt;}
.wsd_c03072{word-spacing:32.659968pt;}
.ws1_c03072{word-spacing:33.563904pt;}
.ws0_c03072{word-spacing:33.796224pt;}
.ws3_c03072{word-spacing:34.860672pt;}
.ws5_c03072{word-spacing:35.468928pt;}
.ws7_c03072{word-spacing:37.357056pt;}
._9_c03072{margin-left:-21.293184pt;}
._a_c03072{margin-left:-20.363904pt;}
._8_c03072{margin-left:-19.455744pt;}
._0_c03072{margin-left:-1.731840pt;}
._2_c03072{width:1.317888pt;}
._4_c03072{width:2.935680pt;}
._6_c03072{width:8.380416pt;}
._5_c03072{width:11.379456pt;}
._7_c03072{width:19.062912pt;}
._1_c03072{width:44.668800pt;}
._3_c03072{width:45.805056pt;}
.fs0_c03072{font-size:42.240000pt;}
.fs1_c03072{font-size:53.760000pt;}
.y0_c03072{bottom:0.000000pt;}
.y19_c03072{bottom:130.665211pt;}
.y1c_c03072{bottom:159.787483pt;}
.y1b_c03072{bottom:165.866875pt;}
.y1a_c03072{bottom:174.507067pt;}
.y18_c03072{bottom:245.225371pt;}
.y17_c03072{bottom:317.225563pt;}
.y15_c03072{bottom:361.386427pt;}
.y11_c03072{bottom:377.386939pt;}
.y16_c03072{bottom:407.786011pt;}
.y14_c03072{bottom:437.226235pt;}
.y13_c03072{bottom:453.226747pt;}
.y10_c03072{bottom:482.666971pt;}
.y12_c03072{bottom:497.386555pt;}
.yf_c03072{bottom:513.387067pt;}
.y1d_c03072{bottom:546.027067pt;}
.yb_c03072{bottom:593.385179pt;}
.yd_c03072{bottom:628.586875pt;}
.yc_c03072{bottom:637.227067pt;}
.ya_c03072{bottom:707.945339pt;}
.y9_c03072{bottom:779.945531pt;}
.y7_c03072{bottom:823.786427pt;}
.y3_c03072{bottom:839.786939pt;}
.y8_c03072{bottom:870.505979pt;}
.y6_c03072{bottom:899.946203pt;}
.y5_c03072{bottom:915.946715pt;}
.y2_c03072{bottom:945.386939pt;}
.y4_c03072{bottom:959.786555pt;}
.y1_c03072{bottom:975.787067pt;}
.ye_c03072{bottom:1008.747067pt;}
.h3_c03072{height:28.916250pt;}
.h1_c03072{height:37.063125pt;}
.h2_c03072{height:37.166250pt;}
.h5_c03072{height:48.581988pt;}
.h4_c03072{height:66.504405pt;}
.h0_c03072{height:1122.666667pt;}
.w1_c03072{width:793.333333pt;}
.w0_c03072{width:793.626667pt;}
.x0_c03072{left:0.000000pt;}
.xd_c03072{left:104.000000pt;}
.x8_c03072{left:391.999872pt;}
.x4_c03072{left:396.160512pt;}
.xb_c03072{left:400.960000pt;}
.x7_c03072{left:404.799648pt;}
.x5_c03072{left:410.560128pt;}
.x1_c03072{left:411.840000pt;}
.xa_c03072{left:429.760320pt;}
.x9_c03072{left:437.439552pt;}
.x6_c03072{left:438.400512pt;}
.xc_c03072{left:450.560320pt;}
.x3_c03072{left:455.039904pt;}
.x2_c03072{left:468.159648pt;}
.xe_c03072{left:506.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03073 {
    display:none;
  }
  .loading-indicator_c03073.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03073 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03073 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03073" -> "#page-container .classname_c03073")
 */
.pf_c03073 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03073 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03073.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03073 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03073 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03073 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03073 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03073 {overflow:visible;}
  }
}
.c_c03073 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03073 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03073:after { /* webkit #35443 */
  content: '';
}
.t_c03073:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03073 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03073 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03073 { /* info for Javascript */
  display:none;
}
.l_c03073 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03073 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03073 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03073:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03073 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03073.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03073.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03073 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03073{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03073;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03073{font-family:ff1_c03073;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03073;src:url('chunks/assets/font_402f2574f3a80354e00dd557.woff2')format("woff");}.ff2_c03073{font-family:ff2_c03073;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03073;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03073{font-family:ff3_c03073;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03073{vertical-align:0.000000px;}
.v1_c03073{vertical-align:1.439424px;}
.ls7_c03073{letter-spacing:-0.613008px;}
.lsa_c03073{letter-spacing:-0.574992px;}
.ls9_c03073{letter-spacing:-0.275616px;}
.lsd_c03073{letter-spacing:-0.261360px;}
.ls6_c03073{letter-spacing:-0.242352px;}
.ls4_c03073{letter-spacing:-0.118800px;}
.ls11_c03073{letter-spacing:0.000000px;}
.ls1_c03073{letter-spacing:0.006048px;}
.ls5_c03073{letter-spacing:0.128304px;}
.lsc_c03073{letter-spacing:0.508464px;}
.ls10_c03073{letter-spacing:0.514080px;}
.lse_c03073{letter-spacing:0.536976px;}
.lsb_c03073{letter-spacing:0.579744px;}
.lsf_c03073{letter-spacing:0.594000px;}
.ls8_c03073{letter-spacing:0.598752px;}
.ls2_c03073{letter-spacing:0.613008px;}
.ls3_c03073{letter-spacing:0.717552px;}
.ls0_c03073{letter-spacing:0.722304px;}
.sc__c03073{text-shadow:none;}
.sc0_c03073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03073{-webkit-text-stroke:0px transparent;}
.sc0_c03073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03073{word-spacing:-15.126048px;}
.ws9_c03073{word-spacing:-12.474000px;}
.ws7_c03073{word-spacing:-12.459744px;}
.ws8_c03073{word-spacing:-12.416976px;}
.ws2_c03073{word-spacing:-11.266992px;}
.ws10_c03073{word-spacing:-1.083456px;}
.wsc_c03073{word-spacing:-0.974160px;}
.ws12_c03073{word-spacing:-0.719712px;}
.wse_c03073{word-spacing:-0.118800px;}
.ws11_c03073{word-spacing:-0.099792px;}
.wsf_c03073{word-spacing:-0.085536px;}
.wsd_c03073{word-spacing:0.000000px;}
.wsa_c03073{word-spacing:33.300288px;}
.ws5_c03073{word-spacing:36.742464px;}
.ws1_c03073{word-spacing:37.759392px;}
.ws0_c03073{word-spacing:38.020752px;}
.ws3_c03073{word-spacing:39.218256px;}
.ws4_c03073{word-spacing:39.902544px;}
.ws6_c03073{word-spacing:42.026688px;}
._0_c03073{margin-left:-1.948320px;}
._2_c03073{width:1.482624px;}
._1_c03073{width:50.252400px;}
._3_c03073{width:51.530688px;}
.fc0_c03073{color:rgb(0,0,0);}
.fs0_c03073{font-size:47.520000px;}
.fs1_c03073{font-size:60.480000px;}
.y0_c03073{bottom:0.000000px;}
.y19_c03073{bottom:146.998362px;}
.y1b_c03073{bottom:186.600234px;}
.y1a_c03073{bottom:196.320450px;}
.y18_c03073{bottom:275.878542px;}
.y17_c03073{bottom:356.878758px;}
.y15_c03073{bottom:406.559730px;}
.y11_c03073{bottom:424.560306px;}
.y16_c03073{bottom:458.759262px;}
.y14_c03073{bottom:491.879514px;}
.y13_c03073{bottom:509.880090px;}
.y10_c03073{bottom:543.000342px;}
.y12_c03073{bottom:559.559874px;}
.yf_c03073{bottom:577.560450px;}
.y1c_c03073{bottom:614.280450px;}
.yb_c03073{bottom:667.558326px;}
.yd_c03073{bottom:707.160234px;}
.yc_c03073{bottom:716.880450px;}
.ya_c03073{bottom:796.438506px;}
.y9_c03073{bottom:877.438722px;}
.y7_c03073{bottom:926.759730px;}
.y3_c03073{bottom:944.760306px;}
.y8_c03073{bottom:979.319226px;}
.y6_c03073{bottom:1012.439478px;}
.y5_c03073{bottom:1030.440054px;}
.y2_c03073{bottom:1063.560306px;}
.y4_c03073{bottom:1079.759874px;}
.y1_c03073{bottom:1097.760450px;}
.ye_c03073{bottom:1134.840450px;}
.h3_c03073{height:32.530781px;}
.h1_c03073{height:41.696016px;}
.h2_c03073{height:41.812031px;}
.h4_c03073{height:54.654737px;}
.h0_c03073{height:1263.000000px;}
.w1_c03073{width:892.500000px;}
.w0_c03073{width:892.830000px;}
.x0_c03073{left:0.000000px;}
.xd_c03073{left:117.000000px;}
.x8_c03073{left:440.999856px;}
.x4_c03073{left:445.680576px;}
.xb_c03073{left:451.080000px;}
.x7_c03073{left:455.399604px;}
.x5_c03073{left:461.880144px;}
.x1_c03073{left:463.320000px;}
.xa_c03073{left:483.480360px;}
.x9_c03073{left:492.119496px;}
.x6_c03073{left:493.200576px;}
.xc_c03073{left:506.880360px;}
.x3_c03073{left:511.919892px;}
.x2_c03073{left:526.679604px;}
@media print{
.v0_c03073{vertical-align:0.000000pt;}
.v1_c03073{vertical-align:1.279488pt;}
.ls7_c03073{letter-spacing:-0.544896pt;}
.lsa_c03073{letter-spacing:-0.511104pt;}
.ls9_c03073{letter-spacing:-0.244992pt;}
.lsd_c03073{letter-spacing:-0.232320pt;}
.ls6_c03073{letter-spacing:-0.215424pt;}
.ls4_c03073{letter-spacing:-0.105600pt;}
.ls11_c03073{letter-spacing:0.000000pt;}
.ls1_c03073{letter-spacing:0.005376pt;}
.ls5_c03073{letter-spacing:0.114048pt;}
.lsc_c03073{letter-spacing:0.451968pt;}
.ls10_c03073{letter-spacing:0.456960pt;}
.lse_c03073{letter-spacing:0.477312pt;}
.lsb_c03073{letter-spacing:0.515328pt;}
.lsf_c03073{letter-spacing:0.528000pt;}
.ls8_c03073{letter-spacing:0.532224pt;}
.ls2_c03073{letter-spacing:0.544896pt;}
.ls3_c03073{letter-spacing:0.637824pt;}
.ls0_c03073{letter-spacing:0.642048pt;}
.wsb_c03073{word-spacing:-13.445376pt;}
.ws9_c03073{word-spacing:-11.088000pt;}
.ws7_c03073{word-spacing:-11.075328pt;}
.ws8_c03073{word-spacing:-11.037312pt;}
.ws2_c03073{word-spacing:-10.015104pt;}
.ws10_c03073{word-spacing:-0.963072pt;}
.wsc_c03073{word-spacing:-0.865920pt;}
.ws12_c03073{word-spacing:-0.639744pt;}
.wse_c03073{word-spacing:-0.105600pt;}
.ws11_c03073{word-spacing:-0.088704pt;}
.wsf_c03073{word-spacing:-0.076032pt;}
.wsd_c03073{word-spacing:0.000000pt;}
.wsa_c03073{word-spacing:29.600256pt;}
.ws5_c03073{word-spacing:32.659968pt;}
.ws1_c03073{word-spacing:33.563904pt;}
.ws0_c03073{word-spacing:33.796224pt;}
.ws3_c03073{word-spacing:34.860672pt;}
.ws4_c03073{word-spacing:35.468928pt;}
.ws6_c03073{word-spacing:37.357056pt;}
._0_c03073{margin-left:-1.731840pt;}
._2_c03073{width:1.317888pt;}
._1_c03073{width:44.668800pt;}
._3_c03073{width:45.805056pt;}
.fs0_c03073{font-size:42.240000pt;}
.fs1_c03073{font-size:53.760000pt;}
.y0_c03073{bottom:0.000000pt;}
.y19_c03073{bottom:130.665211pt;}
.y1b_c03073{bottom:165.866875pt;}
.y1a_c03073{bottom:174.507067pt;}
.y18_c03073{bottom:245.225371pt;}
.y17_c03073{bottom:317.225563pt;}
.y15_c03073{bottom:361.386427pt;}
.y11_c03073{bottom:377.386939pt;}
.y16_c03073{bottom:407.786011pt;}
.y14_c03073{bottom:437.226235pt;}
.y13_c03073{bottom:453.226747pt;}
.y10_c03073{bottom:482.666971pt;}
.y12_c03073{bottom:497.386555pt;}
.yf_c03073{bottom:513.387067pt;}
.y1c_c03073{bottom:546.027067pt;}
.yb_c03073{bottom:593.385179pt;}
.yd_c03073{bottom:628.586875pt;}
.yc_c03073{bottom:637.227067pt;}
.ya_c03073{bottom:707.945339pt;}
.y9_c03073{bottom:779.945531pt;}
.y7_c03073{bottom:823.786427pt;}
.y3_c03073{bottom:839.786939pt;}
.y8_c03073{bottom:870.505979pt;}
.y6_c03073{bottom:899.946203pt;}
.y5_c03073{bottom:915.946715pt;}
.y2_c03073{bottom:945.386939pt;}
.y4_c03073{bottom:959.786555pt;}
.y1_c03073{bottom:975.787067pt;}
.ye_c03073{bottom:1008.747067pt;}
.h3_c03073{height:28.916250pt;}
.h1_c03073{height:37.063125pt;}
.h2_c03073{height:37.166250pt;}
.h4_c03073{height:48.581988pt;}
.h0_c03073{height:1122.666667pt;}
.w1_c03073{width:793.333333pt;}
.w0_c03073{width:793.626667pt;}
.x0_c03073{left:0.000000pt;}
.xd_c03073{left:104.000000pt;}
.x8_c03073{left:391.999872pt;}
.x4_c03073{left:396.160512pt;}
.xb_c03073{left:400.960000pt;}
.x7_c03073{left:404.799648pt;}
.x5_c03073{left:410.560128pt;}
.x1_c03073{left:411.840000pt;}
.xa_c03073{left:429.760320pt;}
.x9_c03073{left:437.439552pt;}
.x6_c03073{left:438.400512pt;}
.xc_c03073{left:450.560320pt;}
.x3_c03073{left:455.039904pt;}
.x2_c03073{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03074 {
    display:none;
  }
  .loading-indicator_c03074.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03074 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03074 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03074" -> "#page-container .classname_c03074")
 */
.pf_c03074 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03074 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03074.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03074 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03074 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03074 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03074 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03074 {overflow:visible;}
  }
}
.c_c03074 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03074 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03074:after { /* webkit #35443 */
  content: '';
}
.t_c03074:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03074 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03074 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03074 { /* info for Javascript */
  display:none;
}
.l_c03074 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03074 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03074 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03074:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03074 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03074.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03074.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03074 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03074{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03074;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03074{font-family:ff1_c03074;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03074;src:url('chunks/assets/font_85ab4f1a25e6dc2271874a7d.woff2')format("woff");}.ff2_c03074{font-family:ff2_c03074;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03074;src:url('chunks/assets/font_f8e9a912692e382bbcb7005b.woff2')format("woff");}.ff3_c03074{font-family:ff3_c03074;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03074{vertical-align:0.000000px;}
.v1_c03074{vertical-align:1.439424px;}
.v2_c03074{vertical-align:33.121440px;}
.ls12_c03074{letter-spacing:-0.722304px;}
.ls7_c03074{letter-spacing:-0.613008px;}
.lsa_c03074{letter-spacing:-0.574992px;}
.ls9_c03074{letter-spacing:-0.275616px;}
.lsd_c03074{letter-spacing:-0.261360px;}
.ls6_c03074{letter-spacing:-0.242352px;}
.ls4_c03074{letter-spacing:-0.118800px;}
.ls11_c03074{letter-spacing:0.000000px;}
.ls1_c03074{letter-spacing:0.006048px;}
.ls5_c03074{letter-spacing:0.128304px;}
.lsc_c03074{letter-spacing:0.508464px;}
.ls10_c03074{letter-spacing:0.514080px;}
.lse_c03074{letter-spacing:0.536976px;}
.lsb_c03074{letter-spacing:0.579744px;}
.lsf_c03074{letter-spacing:0.594000px;}
.ls8_c03074{letter-spacing:0.598752px;}
.ls2_c03074{letter-spacing:0.613008px;}
.ls13_c03074{letter-spacing:0.660528px;}
.ls3_c03074{letter-spacing:0.717552px;}
.ls0_c03074{letter-spacing:0.722304px;}
.sc__c03074{text-shadow:none;}
.sc0_c03074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03074{-webkit-text-stroke:0px transparent;}
.sc0_c03074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03074{word-spacing:-15.126048px;}
.ws9_c03074{word-spacing:-12.474000px;}
.ws7_c03074{word-spacing:-12.459744px;}
.ws8_c03074{word-spacing:-12.416976px;}
.wsd_c03074{word-spacing:-12.388464px;}
.wsc_c03074{word-spacing:-11.637648px;}
.ws2_c03074{word-spacing:-11.266992px;}
.ws17_c03074{word-spacing:-1.083456px;}
.ws1b_c03074{word-spacing:-1.021680px;}
.ws13_c03074{word-spacing:-0.974160px;}
.ws19_c03074{word-spacing:-0.719712px;}
.ws15_c03074{word-spacing:-0.118800px;}
.ws18_c03074{word-spacing:-0.099792px;}
.ws16_c03074{word-spacing:-0.085536px;}
.ws14_c03074{word-spacing:0.000000px;}
.ws1a_c03074{word-spacing:0.361152px;}
.ws11_c03074{word-spacing:4.747248px;}
.ws12_c03074{word-spacing:5.037120px;}
.ws10_c03074{word-spacing:6.961680px;}
.wsf_c03074{word-spacing:30.298752px;}
.wsa_c03074{word-spacing:33.300288px;}
.wse_c03074{word-spacing:36.143712px;}
.ws5_c03074{word-spacing:36.742464px;}
.ws1_c03074{word-spacing:37.759392px;}
.ws0_c03074{word-spacing:38.020752px;}
.ws3_c03074{word-spacing:39.218256px;}
.ws4_c03074{word-spacing:39.902544px;}
.ws6_c03074{word-spacing:42.026688px;}
._0_c03074{margin-left:-1.948320px;}
._2_c03074{width:1.482624px;}
._4_c03074{width:3.302640px;}
._6_c03074{width:18.366480px;}
._5_c03074{width:22.857120px;}
._1_c03074{width:50.252400px;}
._3_c03074{width:51.530688px;}
.fc0_c03074{color:rgb(0,0,0);}
.fs0_c03074{font-size:47.520000px;}
.fs1_c03074{font-size:60.480000px;}
.y0_c03074{bottom:0.000000px;}
.y19_c03074{bottom:146.998362px;}
.y1c_c03074{bottom:179.760918px;}
.y1b_c03074{bottom:186.600234px;}
.y1a_c03074{bottom:196.320450px;}
.y18_c03074{bottom:275.878542px;}
.y17_c03074{bottom:356.878758px;}
.y15_c03074{bottom:406.559730px;}
.y11_c03074{bottom:424.560306px;}
.y16_c03074{bottom:458.759262px;}
.y14_c03074{bottom:491.879514px;}
.y13_c03074{bottom:509.880090px;}
.y10_c03074{bottom:543.000342px;}
.y12_c03074{bottom:559.559874px;}
.yf_c03074{bottom:577.560450px;}
.y1d_c03074{bottom:614.280450px;}
.yb_c03074{bottom:667.558326px;}
.yd_c03074{bottom:707.160234px;}
.yc_c03074{bottom:716.880450px;}
.ya_c03074{bottom:796.438506px;}
.y9_c03074{bottom:877.438722px;}
.y7_c03074{bottom:926.759730px;}
.y3_c03074{bottom:944.760306px;}
.y8_c03074{bottom:979.319226px;}
.y6_c03074{bottom:1012.439478px;}
.y5_c03074{bottom:1030.440054px;}
.y2_c03074{bottom:1063.560306px;}
.y4_c03074{bottom:1079.759874px;}
.y1_c03074{bottom:1097.760450px;}
.ye_c03074{bottom:1134.840450px;}
.h3_c03074{height:32.530781px;}
.h1_c03074{height:41.696016px;}
.h2_c03074{height:41.812031px;}
.h4_c03074{height:54.654737px;}
.h5_c03074{height:74.933471px;}
.h0_c03074{height:1263.000000px;}
.w1_c03074{width:892.500000px;}
.w0_c03074{width:892.830000px;}
.x0_c03074{left:0.000000px;}
.xd_c03074{left:117.000000px;}
.x8_c03074{left:440.999856px;}
.x4_c03074{left:445.680576px;}
.xb_c03074{left:451.080000px;}
.x7_c03074{left:455.399604px;}
.x5_c03074{left:461.880144px;}
.x1_c03074{left:463.320000px;}
.xa_c03074{left:483.480360px;}
.x9_c03074{left:492.119496px;}
.x6_c03074{left:493.200576px;}
.xc_c03074{left:506.880360px;}
.x3_c03074{left:511.919892px;}
.x2_c03074{left:526.679604px;}
.xe_c03074{left:569.878812px;}
@media print{
.v0_c03074{vertical-align:0.000000pt;}
.v1_c03074{vertical-align:1.279488pt;}
.v2_c03074{vertical-align:29.441280pt;}
.ls12_c03074{letter-spacing:-0.642048pt;}
.ls7_c03074{letter-spacing:-0.544896pt;}
.lsa_c03074{letter-spacing:-0.511104pt;}
.ls9_c03074{letter-spacing:-0.244992pt;}
.lsd_c03074{letter-spacing:-0.232320pt;}
.ls6_c03074{letter-spacing:-0.215424pt;}
.ls4_c03074{letter-spacing:-0.105600pt;}
.ls11_c03074{letter-spacing:0.000000pt;}
.ls1_c03074{letter-spacing:0.005376pt;}
.ls5_c03074{letter-spacing:0.114048pt;}
.lsc_c03074{letter-spacing:0.451968pt;}
.ls10_c03074{letter-spacing:0.456960pt;}
.lse_c03074{letter-spacing:0.477312pt;}
.lsb_c03074{letter-spacing:0.515328pt;}
.lsf_c03074{letter-spacing:0.528000pt;}
.ls8_c03074{letter-spacing:0.532224pt;}
.ls2_c03074{letter-spacing:0.544896pt;}
.ls13_c03074{letter-spacing:0.587136pt;}
.ls3_c03074{letter-spacing:0.637824pt;}
.ls0_c03074{letter-spacing:0.642048pt;}
.wsb_c03074{word-spacing:-13.445376pt;}
.ws9_c03074{word-spacing:-11.088000pt;}
.ws7_c03074{word-spacing:-11.075328pt;}
.ws8_c03074{word-spacing:-11.037312pt;}
.wsd_c03074{word-spacing:-11.011968pt;}
.wsc_c03074{word-spacing:-10.344576pt;}
.ws2_c03074{word-spacing:-10.015104pt;}
.ws17_c03074{word-spacing:-0.963072pt;}
.ws1b_c03074{word-spacing:-0.908160pt;}
.ws13_c03074{word-spacing:-0.865920pt;}
.ws19_c03074{word-spacing:-0.639744pt;}
.ws15_c03074{word-spacing:-0.105600pt;}
.ws18_c03074{word-spacing:-0.088704pt;}
.ws16_c03074{word-spacing:-0.076032pt;}
.ws14_c03074{word-spacing:0.000000pt;}
.ws1a_c03074{word-spacing:0.321024pt;}
.ws11_c03074{word-spacing:4.219776pt;}
.ws12_c03074{word-spacing:4.477440pt;}
.ws10_c03074{word-spacing:6.188160pt;}
.wsf_c03074{word-spacing:26.932224pt;}
.wsa_c03074{word-spacing:29.600256pt;}
.wse_c03074{word-spacing:32.127744pt;}
.ws5_c03074{word-spacing:32.659968pt;}
.ws1_c03074{word-spacing:33.563904pt;}
.ws0_c03074{word-spacing:33.796224pt;}
.ws3_c03074{word-spacing:34.860672pt;}
.ws4_c03074{word-spacing:35.468928pt;}
.ws6_c03074{word-spacing:37.357056pt;}
._0_c03074{margin-left:-1.731840pt;}
._2_c03074{width:1.317888pt;}
._4_c03074{width:2.935680pt;}
._6_c03074{width:16.325760pt;}
._5_c03074{width:20.317440pt;}
._1_c03074{width:44.668800pt;}
._3_c03074{width:45.805056pt;}
.fs0_c03074{font-size:42.240000pt;}
.fs1_c03074{font-size:53.760000pt;}
.y0_c03074{bottom:0.000000pt;}
.y19_c03074{bottom:130.665211pt;}
.y1c_c03074{bottom:159.787483pt;}
.y1b_c03074{bottom:165.866875pt;}
.y1a_c03074{bottom:174.507067pt;}
.y18_c03074{bottom:245.225371pt;}
.y17_c03074{bottom:317.225563pt;}
.y15_c03074{bottom:361.386427pt;}
.y11_c03074{bottom:377.386939pt;}
.y16_c03074{bottom:407.786011pt;}
.y14_c03074{bottom:437.226235pt;}
.y13_c03074{bottom:453.226747pt;}
.y10_c03074{bottom:482.666971pt;}
.y12_c03074{bottom:497.386555pt;}
.yf_c03074{bottom:513.387067pt;}
.y1d_c03074{bottom:546.027067pt;}
.yb_c03074{bottom:593.385179pt;}
.yd_c03074{bottom:628.586875pt;}
.yc_c03074{bottom:637.227067pt;}
.ya_c03074{bottom:707.945339pt;}
.y9_c03074{bottom:779.945531pt;}
.y7_c03074{bottom:823.786427pt;}
.y3_c03074{bottom:839.786939pt;}
.y8_c03074{bottom:870.505979pt;}
.y6_c03074{bottom:899.946203pt;}
.y5_c03074{bottom:915.946715pt;}
.y2_c03074{bottom:945.386939pt;}
.y4_c03074{bottom:959.786555pt;}
.y1_c03074{bottom:975.787067pt;}
.ye_c03074{bottom:1008.747067pt;}
.h3_c03074{height:28.916250pt;}
.h1_c03074{height:37.063125pt;}
.h2_c03074{height:37.166250pt;}
.h4_c03074{height:48.581988pt;}
.h5_c03074{height:66.607530pt;}
.h0_c03074{height:1122.666667pt;}
.w1_c03074{width:793.333333pt;}
.w0_c03074{width:793.626667pt;}
.x0_c03074{left:0.000000pt;}
.xd_c03074{left:104.000000pt;}
.x8_c03074{left:391.999872pt;}
.x4_c03074{left:396.160512pt;}
.xb_c03074{left:400.960000pt;}
.x7_c03074{left:404.799648pt;}
.x5_c03074{left:410.560128pt;}
.x1_c03074{left:411.840000pt;}
.xa_c03074{left:429.760320pt;}
.x9_c03074{left:437.439552pt;}
.x6_c03074{left:438.400512pt;}
.xc_c03074{left:450.560320pt;}
.x3_c03074{left:455.039904pt;}
.x2_c03074{left:468.159648pt;}
.xe_c03074{left:506.558944pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03075 {
    display:none;
  }
  .loading-indicator_c03075.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03075 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03075 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03075" -> "#page-container .classname_c03075")
 */
.pf_c03075 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03075 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03075.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03075 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03075 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03075 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03075 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03075 {overflow:visible;}
  }
}
.c_c03075 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03075 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03075:after { /* webkit #35443 */
  content: '';
}
.t_c03075:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03075 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03075 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03075 { /* info for Javascript */
  display:none;
}
.l_c03075 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03075 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03075 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03075:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03075 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03075.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03075.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03075 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03075{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03075;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03075{font-family:ff1_c03075;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03075;src:url('chunks/assets/font_c2ffd8840352542988142730.woff2')format("woff");}.ff2_c03075{font-family:ff2_c03075;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03075;src:url('chunks/assets/font_e3314ae48f4d91edf65703f4.woff2')format("woff");}.ff3_c03075{font-family:ff3_c03075;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03075{vertical-align:0.000000px;}
.v1_c03075{vertical-align:1.439424px;}
.v2_c03075{vertical-align:33.121440px;}
.lsc_c03075{letter-spacing:-0.793584px;}
.ls7_c03075{letter-spacing:-0.613008px;}
.ls9_c03075{letter-spacing:-0.574992px;}
.ls17_c03075{letter-spacing:-0.494208px;}
.ls11_c03075{letter-spacing:-0.380160px;}
.ls13_c03075{letter-spacing:-0.275616px;}
.lsf_c03075{letter-spacing:-0.261360px;}
.ls6_c03075{letter-spacing:-0.242352px;}
.ls4_c03075{letter-spacing:-0.118800px;}
.ls16_c03075{letter-spacing:0.000000px;}
.ls1_c03075{letter-spacing:0.006048px;}
.ls5_c03075{letter-spacing:0.128304px;}
.ls10_c03075{letter-spacing:0.209088px;}
.lse_c03075{letter-spacing:0.228096px;}
.lsb_c03075{letter-spacing:0.508464px;}
.ls15_c03075{letter-spacing:0.514080px;}
.ls12_c03075{letter-spacing:0.536976px;}
.ls18_c03075{letter-spacing:0.541728px;}
.lsa_c03075{letter-spacing:0.579744px;}
.ls14_c03075{letter-spacing:0.594000px;}
.ls8_c03075{letter-spacing:0.598752px;}
.ls3_c03075{letter-spacing:0.613008px;}
.lsd_c03075{letter-spacing:0.632016px;}
.ls2_c03075{letter-spacing:0.717552px;}
.ls0_c03075{letter-spacing:0.722304px;}
.sc__c03075{text-shadow:none;}
.sc0_c03075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03075{-webkit-text-stroke:0px transparent;}
.sc0_c03075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c03075{word-spacing:-15.126048px;}
.wse_c03075{word-spacing:-12.474000px;}
.ws6_c03075{word-spacing:-12.459744px;}
.wsd_c03075{word-spacing:-12.416976px;}
.ws4_c03075{word-spacing:-11.637648px;}
.ws2_c03075{word-spacing:-11.266992px;}
.wsb_c03075{word-spacing:-2.642112px;}
.ws17_c03075{word-spacing:-1.083456px;}
.ws1e_c03075{word-spacing:-1.078704px;}
.ws14_c03075{word-spacing:-0.974160px;}
.ws1d_c03075{word-spacing:-0.902880px;}
.ws1c_c03075{word-spacing:-0.719712px;}
.ws16_c03075{word-spacing:-0.118800px;}
.ws19_c03075{word-spacing:-0.099792px;}
.ws1b_c03075{word-spacing:-0.085536px;}
.ws15_c03075{word-spacing:0.000000px;}
.ws1a_c03075{word-spacing:0.019008px;}
.ws18_c03075{word-spacing:0.432432px;}
.ws13_c03075{word-spacing:3.141072px;}
.ws12_c03075{word-spacing:6.476976px;}
.ws9_c03075{word-spacing:15.676848px;}
.wsa_c03075{word-spacing:15.881184px;}
.ws11_c03075{word-spacing:30.298752px;}
.wsf_c03075{word-spacing:33.300288px;}
.ws8_c03075{word-spacing:36.143712px;}
.ws1_c03075{word-spacing:37.759392px;}
.ws0_c03075{word-spacing:38.020752px;}
.ws3_c03075{word-spacing:39.218256px;}
.ws5_c03075{word-spacing:39.902544px;}
.ws7_c03075{word-spacing:42.026688px;}
.wsc_c03075{word-spacing:57.903120px;}
._0_c03075{margin-left:-1.948320px;}
._2_c03075{width:1.482624px;}
._4_c03075{width:3.302640px;}
._a_c03075{width:21.022848px;}
._9_c03075{width:22.524480px;}
._5_c03075{width:34.499520px;}
._6_c03075{width:35.996400px;}
._1_c03075{width:50.252400px;}
._3_c03075{width:51.530688px;}
._8_c03075{width:66.204864px;}
._7_c03075{width:72.030816px;}
.fc0_c03075{color:rgb(0,0,0);}
.fs0_c03075{font-size:47.520000px;}
.fs1_c03075{font-size:60.480000px;}
.y0_c03075{bottom:0.000000px;}
.y1d_c03075{bottom:146.998362px;}
.y20_c03075{bottom:179.760918px;}
.y1f_c03075{bottom:186.600234px;}
.y1e_c03075{bottom:196.320450px;}
.y1c_c03075{bottom:260.758866px;}
.y1b_c03075{bottom:275.878542px;}
.y1a_c03075{bottom:341.759082px;}
.y19_c03075{bottom:356.878758px;}
.y17_c03075{bottom:406.559730px;}
.y13_c03075{bottom:424.560306px;}
.y18_c03075{bottom:458.759262px;}
.y16_c03075{bottom:491.879514px;}
.y15_c03075{bottom:509.880090px;}
.y12_c03075{bottom:543.000342px;}
.y14_c03075{bottom:559.559874px;}
.y11_c03075{bottom:577.560450px;}
.y21_c03075{bottom:614.280450px;}
.yd_c03075{bottom:667.559514px;}
.yf_c03075{bottom:707.160234px;}
.ye_c03075{bottom:716.880450px;}
.yc_c03075{bottom:781.320018px;}
.yb_c03075{bottom:796.439694px;}
.ya_c03075{bottom:862.319046px;}
.y9_c03075{bottom:877.438722px;}
.y7_c03075{bottom:926.759730px;}
.y3_c03075{bottom:944.760306px;}
.y8_c03075{bottom:979.319226px;}
.y6_c03075{bottom:1012.439478px;}
.y5_c03075{bottom:1030.440054px;}
.y2_c03075{bottom:1063.560306px;}
.y4_c03075{bottom:1079.759874px;}
.y1_c03075{bottom:1097.760450px;}
.y10_c03075{bottom:1134.840450px;}
.h3_c03075{height:32.530781px;}
.h1_c03075{height:41.696016px;}
.h2_c03075{height:41.812031px;}
.h4_c03075{height:54.654737px;}
.h5_c03075{height:74.817456px;}
.h0_c03075{height:1263.000000px;}
.w1_c03075{width:892.500000px;}
.w0_c03075{width:892.830000px;}
.x0_c03075{left:0.000000px;}
.xe_c03075{left:117.000000px;}
.x8_c03075{left:440.999856px;}
.x4_c03075{left:445.680576px;}
.xc_c03075{left:451.080000px;}
.x7_c03075{left:455.399604px;}
.x5_c03075{left:461.880144px;}
.x1_c03075{left:463.320000px;}
.xb_c03075{left:483.480360px;}
.x9_c03075{left:492.119496px;}
.x6_c03075{left:493.200576px;}
.xd_c03075{left:506.880360px;}
.x3_c03075{left:511.919892px;}
.x2_c03075{left:526.679604px;}
.xa_c03075{left:569.880036px;}
@media print{
.v0_c03075{vertical-align:0.000000pt;}
.v1_c03075{vertical-align:1.279488pt;}
.v2_c03075{vertical-align:29.441280pt;}
.lsc_c03075{letter-spacing:-0.705408pt;}
.ls7_c03075{letter-spacing:-0.544896pt;}
.ls9_c03075{letter-spacing:-0.511104pt;}
.ls17_c03075{letter-spacing:-0.439296pt;}
.ls11_c03075{letter-spacing:-0.337920pt;}
.ls13_c03075{letter-spacing:-0.244992pt;}
.lsf_c03075{letter-spacing:-0.232320pt;}
.ls6_c03075{letter-spacing:-0.215424pt;}
.ls4_c03075{letter-spacing:-0.105600pt;}
.ls16_c03075{letter-spacing:0.000000pt;}
.ls1_c03075{letter-spacing:0.005376pt;}
.ls5_c03075{letter-spacing:0.114048pt;}
.ls10_c03075{letter-spacing:0.185856pt;}
.lse_c03075{letter-spacing:0.202752pt;}
.lsb_c03075{letter-spacing:0.451968pt;}
.ls15_c03075{letter-spacing:0.456960pt;}
.ls12_c03075{letter-spacing:0.477312pt;}
.ls18_c03075{letter-spacing:0.481536pt;}
.lsa_c03075{letter-spacing:0.515328pt;}
.ls14_c03075{letter-spacing:0.528000pt;}
.ls8_c03075{letter-spacing:0.532224pt;}
.ls3_c03075{letter-spacing:0.544896pt;}
.lsd_c03075{letter-spacing:0.561792pt;}
.ls2_c03075{letter-spacing:0.637824pt;}
.ls0_c03075{letter-spacing:0.642048pt;}
.ws10_c03075{word-spacing:-13.445376pt;}
.wse_c03075{word-spacing:-11.088000pt;}
.ws6_c03075{word-spacing:-11.075328pt;}
.wsd_c03075{word-spacing:-11.037312pt;}
.ws4_c03075{word-spacing:-10.344576pt;}
.ws2_c03075{word-spacing:-10.015104pt;}
.wsb_c03075{word-spacing:-2.348544pt;}
.ws17_c03075{word-spacing:-0.963072pt;}
.ws1e_c03075{word-spacing:-0.958848pt;}
.ws14_c03075{word-spacing:-0.865920pt;}
.ws1d_c03075{word-spacing:-0.802560pt;}
.ws1c_c03075{word-spacing:-0.639744pt;}
.ws16_c03075{word-spacing:-0.105600pt;}
.ws19_c03075{word-spacing:-0.088704pt;}
.ws1b_c03075{word-spacing:-0.076032pt;}
.ws15_c03075{word-spacing:0.000000pt;}
.ws1a_c03075{word-spacing:0.016896pt;}
.ws18_c03075{word-spacing:0.384384pt;}
.ws13_c03075{word-spacing:2.792064pt;}
.ws12_c03075{word-spacing:5.757312pt;}
.ws9_c03075{word-spacing:13.934976pt;}
.wsa_c03075{word-spacing:14.116608pt;}
.ws11_c03075{word-spacing:26.932224pt;}
.wsf_c03075{word-spacing:29.600256pt;}
.ws8_c03075{word-spacing:32.127744pt;}
.ws1_c03075{word-spacing:33.563904pt;}
.ws0_c03075{word-spacing:33.796224pt;}
.ws3_c03075{word-spacing:34.860672pt;}
.ws5_c03075{word-spacing:35.468928pt;}
.ws7_c03075{word-spacing:37.357056pt;}
.wsc_c03075{word-spacing:51.469440pt;}
._0_c03075{margin-left:-1.731840pt;}
._2_c03075{width:1.317888pt;}
._4_c03075{width:2.935680pt;}
._a_c03075{width:18.686976pt;}
._9_c03075{width:20.021760pt;}
._5_c03075{width:30.666240pt;}
._6_c03075{width:31.996800pt;}
._1_c03075{width:44.668800pt;}
._3_c03075{width:45.805056pt;}
._8_c03075{width:58.848768pt;}
._7_c03075{width:64.027392pt;}
.fs0_c03075{font-size:42.240000pt;}
.fs1_c03075{font-size:53.760000pt;}
.y0_c03075{bottom:0.000000pt;}
.y1d_c03075{bottom:130.665211pt;}
.y20_c03075{bottom:159.787483pt;}
.y1f_c03075{bottom:165.866875pt;}
.y1e_c03075{bottom:174.507067pt;}
.y1c_c03075{bottom:231.785659pt;}
.y1b_c03075{bottom:245.225371pt;}
.y1a_c03075{bottom:303.785851pt;}
.y19_c03075{bottom:317.225563pt;}
.y17_c03075{bottom:361.386427pt;}
.y13_c03075{bottom:377.386939pt;}
.y18_c03075{bottom:407.786011pt;}
.y16_c03075{bottom:437.226235pt;}
.y15_c03075{bottom:453.226747pt;}
.y12_c03075{bottom:482.666971pt;}
.y14_c03075{bottom:497.386555pt;}
.y11_c03075{bottom:513.387067pt;}
.y21_c03075{bottom:546.027067pt;}
.yd_c03075{bottom:593.386235pt;}
.yf_c03075{bottom:628.586875pt;}
.ye_c03075{bottom:637.227067pt;}
.yc_c03075{bottom:694.506683pt;}
.yb_c03075{bottom:707.946395pt;}
.ya_c03075{bottom:766.505819pt;}
.y9_c03075{bottom:779.945531pt;}
.y7_c03075{bottom:823.786427pt;}
.y3_c03075{bottom:839.786939pt;}
.y8_c03075{bottom:870.505979pt;}
.y6_c03075{bottom:899.946203pt;}
.y5_c03075{bottom:915.946715pt;}
.y2_c03075{bottom:945.386939pt;}
.y4_c03075{bottom:959.786555pt;}
.y1_c03075{bottom:975.787067pt;}
.y10_c03075{bottom:1008.747067pt;}
.h3_c03075{height:28.916250pt;}
.h1_c03075{height:37.063125pt;}
.h2_c03075{height:37.166250pt;}
.h4_c03075{height:48.581988pt;}
.h5_c03075{height:66.504405pt;}
.h0_c03075{height:1122.666667pt;}
.w1_c03075{width:793.333333pt;}
.w0_c03075{width:793.626667pt;}
.x0_c03075{left:0.000000pt;}
.xe_c03075{left:104.000000pt;}
.x8_c03075{left:391.999872pt;}
.x4_c03075{left:396.160512pt;}
.xc_c03075{left:400.960000pt;}
.x7_c03075{left:404.799648pt;}
.x5_c03075{left:410.560128pt;}
.x1_c03075{left:411.840000pt;}
.xb_c03075{left:429.760320pt;}
.x9_c03075{left:437.439552pt;}
.x6_c03075{left:438.400512pt;}
.xd_c03075{left:450.560320pt;}
.x3_c03075{left:455.039904pt;}
.x2_c03075{left:468.159648pt;}
.xa_c03075{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03076 {
    display:none;
  }
  .loading-indicator_c03076.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03076 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03076 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03076" -> "#page-container .classname_c03076")
 */
.pf_c03076 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03076 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03076.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03076 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03076 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03076 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03076 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03076 {overflow:visible;}
  }
}
.c_c03076 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03076 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03076:after { /* webkit #35443 */
  content: '';
}
.t_c03076:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03076 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03076 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03076 { /* info for Javascript */
  display:none;
}
.l_c03076 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03076 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03076 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03076:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03076 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03076.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03076.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03076 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03076{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03076;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03076{font-family:ff1_c03076;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03076;src:url('chunks/assets/font_f6d3739ebc91c914b1e0809c.woff2')format("woff");}.ff2_c03076{font-family:ff2_c03076;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03076;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03076{font-family:ff3_c03076;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03076{vertical-align:0.000000px;}
.v2_c03076{vertical-align:1.439424px;}
.v1_c03076{vertical-align:33.121440px;}
.ls13_c03076{letter-spacing:-1.197504px;}
.lsc_c03076{letter-spacing:-0.693792px;}
.ls7_c03076{letter-spacing:-0.613008px;}
.ls9_c03076{letter-spacing:-0.574992px;}
.lsf_c03076{letter-spacing:-0.275616px;}
.lsd_c03076{letter-spacing:-0.261360px;}
.ls6_c03076{letter-spacing:-0.242352px;}
.ls14_c03076{letter-spacing:-0.232848px;}
.ls4_c03076{letter-spacing:-0.118800px;}
.ls12_c03076{letter-spacing:0.000000px;}
.ls1_c03076{letter-spacing:0.006048px;}
.ls5_c03076{letter-spacing:0.128304px;}
.lsb_c03076{letter-spacing:0.508464px;}
.ls11_c03076{letter-spacing:0.514080px;}
.lse_c03076{letter-spacing:0.536976px;}
.lsa_c03076{letter-spacing:0.579744px;}
.ls10_c03076{letter-spacing:0.594000px;}
.ls8_c03076{letter-spacing:0.598752px;}
.ls2_c03076{letter-spacing:0.613008px;}
.ls3_c03076{letter-spacing:0.717552px;}
.ls0_c03076{letter-spacing:0.722304px;}
.sc__c03076{text-shadow:none;}
.sc0_c03076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03076{-webkit-text-stroke:0px transparent;}
.sc0_c03076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03076{word-spacing:-15.126048px;}
.wse_c03076{word-spacing:-12.474000px;}
.ws9_c03076{word-spacing:-12.416976px;}
.ws4_c03076{word-spacing:-11.637648px;}
.ws2_c03076{word-spacing:-11.266992px;}
.ws12_c03076{word-spacing:-1.083456px;}
.ws16_c03076{word-spacing:-1.078704px;}
.wsf_c03076{word-spacing:-0.974160px;}
.ws17_c03076{word-spacing:-0.719712px;}
.ws19_c03076{word-spacing:-0.128304px;}
.ws11_c03076{word-spacing:-0.118800px;}
.ws14_c03076{word-spacing:-0.099792px;}
.ws15_c03076{word-spacing:-0.085536px;}
.ws10_c03076{word-spacing:0.000000px;}
.ws13_c03076{word-spacing:0.332640px;}
.ws18_c03076{word-spacing:0.836352px;}
.wsa_c03076{word-spacing:30.298752px;}
.wsc_c03076{word-spacing:33.300288px;}
.ws8_c03076{word-spacing:36.143712px;}
.ws6_c03076{word-spacing:36.742464px;}
.ws1_c03076{word-spacing:37.759392px;}
.ws0_c03076{word-spacing:38.020752px;}
.ws3_c03076{word-spacing:39.218256px;}
.ws5_c03076{word-spacing:39.902544px;}
.ws7_c03076{word-spacing:42.026688px;}
.wsb_c03076{word-spacing:42.473376px;}
._0_c03076{margin-left:-1.948320px;}
._2_c03076{width:1.482624px;}
._4_c03076{width:3.302640px;}
._1_c03076{width:50.252400px;}
._3_c03076{width:51.530688px;}
._6_c03076{width:56.325456px;}
._5_c03076{width:58.587408px;}
.fc0_c03076{color:rgb(0,0,0);}
.fs0_c03076{font-size:47.520000px;}
.fs1_c03076{font-size:60.480000px;}
.y0_c03076{bottom:0.000000px;}
.y1a_c03076{bottom:146.998362px;}
.y1c_c03076{bottom:186.600234px;}
.y1b_c03076{bottom:196.320450px;}
.y19_c03076{bottom:275.878542px;}
.y18_c03076{bottom:356.878758px;}
.y16_c03076{bottom:406.559730px;}
.y12_c03076{bottom:424.560306px;}
.y17_c03076{bottom:458.759262px;}
.y15_c03076{bottom:491.879514px;}
.y14_c03076{bottom:509.880090px;}
.y11_c03076{bottom:543.000342px;}
.y13_c03076{bottom:559.559874px;}
.y10_c03076{bottom:577.560450px;}
.y1d_c03076{bottom:614.280450px;}
.yb_c03076{bottom:667.558326px;}
.ye_c03076{bottom:700.320918px;}
.yd_c03076{bottom:707.160234px;}
.yc_c03076{bottom:716.880450px;}
.ya_c03076{bottom:796.438506px;}
.y9_c03076{bottom:877.438722px;}
.y7_c03076{bottom:926.759730px;}
.y3_c03076{bottom:944.760306px;}
.y8_c03076{bottom:979.319226px;}
.y6_c03076{bottom:1012.439478px;}
.y5_c03076{bottom:1030.440054px;}
.y2_c03076{bottom:1063.560306px;}
.y4_c03076{bottom:1079.759874px;}
.y1_c03076{bottom:1097.760450px;}
.yf_c03076{bottom:1134.840450px;}
.h3_c03076{height:32.530781px;}
.h1_c03076{height:41.696016px;}
.h2_c03076{height:41.812031px;}
.h5_c03076{height:54.654737px;}
.h4_c03076{height:74.817456px;}
.h0_c03076{height:1263.000000px;}
.w1_c03076{width:892.500000px;}
.w0_c03076{width:892.830000px;}
.x0_c03076{left:0.000000px;}
.xe_c03076{left:117.000000px;}
.x8_c03076{left:440.999856px;}
.x4_c03076{left:445.680576px;}
.xb_c03076{left:451.080000px;}
.x7_c03076{left:455.399604px;}
.x5_c03076{left:461.880144px;}
.x1_c03076{left:463.320000px;}
.xa_c03076{left:483.480360px;}
.x9_c03076{left:492.119496px;}
.x6_c03076{left:493.200576px;}
.xc_c03076{left:506.880360px;}
.x3_c03076{left:511.919892px;}
.x2_c03076{left:526.679604px;}
.xd_c03076{left:569.880000px;}
@media print{
.v0_c03076{vertical-align:0.000000pt;}
.v2_c03076{vertical-align:1.279488pt;}
.v1_c03076{vertical-align:29.441280pt;}
.ls13_c03076{letter-spacing:-1.064448pt;}
.lsc_c03076{letter-spacing:-0.616704pt;}
.ls7_c03076{letter-spacing:-0.544896pt;}
.ls9_c03076{letter-spacing:-0.511104pt;}
.lsf_c03076{letter-spacing:-0.244992pt;}
.lsd_c03076{letter-spacing:-0.232320pt;}
.ls6_c03076{letter-spacing:-0.215424pt;}
.ls14_c03076{letter-spacing:-0.206976pt;}
.ls4_c03076{letter-spacing:-0.105600pt;}
.ls12_c03076{letter-spacing:0.000000pt;}
.ls1_c03076{letter-spacing:0.005376pt;}
.ls5_c03076{letter-spacing:0.114048pt;}
.lsb_c03076{letter-spacing:0.451968pt;}
.ls11_c03076{letter-spacing:0.456960pt;}
.lse_c03076{letter-spacing:0.477312pt;}
.lsa_c03076{letter-spacing:0.515328pt;}
.ls10_c03076{letter-spacing:0.528000pt;}
.ls8_c03076{letter-spacing:0.532224pt;}
.ls2_c03076{letter-spacing:0.544896pt;}
.ls3_c03076{letter-spacing:0.637824pt;}
.ls0_c03076{letter-spacing:0.642048pt;}
.wsd_c03076{word-spacing:-13.445376pt;}
.wse_c03076{word-spacing:-11.088000pt;}
.ws9_c03076{word-spacing:-11.037312pt;}
.ws4_c03076{word-spacing:-10.344576pt;}
.ws2_c03076{word-spacing:-10.015104pt;}
.ws12_c03076{word-spacing:-0.963072pt;}
.ws16_c03076{word-spacing:-0.958848pt;}
.wsf_c03076{word-spacing:-0.865920pt;}
.ws17_c03076{word-spacing:-0.639744pt;}
.ws19_c03076{word-spacing:-0.114048pt;}
.ws11_c03076{word-spacing:-0.105600pt;}
.ws14_c03076{word-spacing:-0.088704pt;}
.ws15_c03076{word-spacing:-0.076032pt;}
.ws10_c03076{word-spacing:0.000000pt;}
.ws13_c03076{word-spacing:0.295680pt;}
.ws18_c03076{word-spacing:0.743424pt;}
.wsa_c03076{word-spacing:26.932224pt;}
.wsc_c03076{word-spacing:29.600256pt;}
.ws8_c03076{word-spacing:32.127744pt;}
.ws6_c03076{word-spacing:32.659968pt;}
.ws1_c03076{word-spacing:33.563904pt;}
.ws0_c03076{word-spacing:33.796224pt;}
.ws3_c03076{word-spacing:34.860672pt;}
.ws5_c03076{word-spacing:35.468928pt;}
.ws7_c03076{word-spacing:37.357056pt;}
.wsb_c03076{word-spacing:37.754112pt;}
._0_c03076{margin-left:-1.731840pt;}
._2_c03076{width:1.317888pt;}
._4_c03076{width:2.935680pt;}
._1_c03076{width:44.668800pt;}
._3_c03076{width:45.805056pt;}
._6_c03076{width:50.067072pt;}
._5_c03076{width:52.077696pt;}
.fs0_c03076{font-size:42.240000pt;}
.fs1_c03076{font-size:53.760000pt;}
.y0_c03076{bottom:0.000000pt;}
.y1a_c03076{bottom:130.665211pt;}
.y1c_c03076{bottom:165.866875pt;}
.y1b_c03076{bottom:174.507067pt;}
.y19_c03076{bottom:245.225371pt;}
.y18_c03076{bottom:317.225563pt;}
.y16_c03076{bottom:361.386427pt;}
.y12_c03076{bottom:377.386939pt;}
.y17_c03076{bottom:407.786011pt;}
.y15_c03076{bottom:437.226235pt;}
.y14_c03076{bottom:453.226747pt;}
.y11_c03076{bottom:482.666971pt;}
.y13_c03076{bottom:497.386555pt;}
.y10_c03076{bottom:513.387067pt;}
.y1d_c03076{bottom:546.027067pt;}
.yb_c03076{bottom:593.385179pt;}
.ye_c03076{bottom:622.507483pt;}
.yd_c03076{bottom:628.586875pt;}
.yc_c03076{bottom:637.227067pt;}
.ya_c03076{bottom:707.945339pt;}
.y9_c03076{bottom:779.945531pt;}
.y7_c03076{bottom:823.786427pt;}
.y3_c03076{bottom:839.786939pt;}
.y8_c03076{bottom:870.505979pt;}
.y6_c03076{bottom:899.946203pt;}
.y5_c03076{bottom:915.946715pt;}
.y2_c03076{bottom:945.386939pt;}
.y4_c03076{bottom:959.786555pt;}
.y1_c03076{bottom:975.787067pt;}
.yf_c03076{bottom:1008.747067pt;}
.h3_c03076{height:28.916250pt;}
.h1_c03076{height:37.063125pt;}
.h2_c03076{height:37.166250pt;}
.h5_c03076{height:48.581988pt;}
.h4_c03076{height:66.504405pt;}
.h0_c03076{height:1122.666667pt;}
.w1_c03076{width:793.333333pt;}
.w0_c03076{width:793.626667pt;}
.x0_c03076{left:0.000000pt;}
.xe_c03076{left:104.000000pt;}
.x8_c03076{left:391.999872pt;}
.x4_c03076{left:396.160512pt;}
.xb_c03076{left:400.960000pt;}
.x7_c03076{left:404.799648pt;}
.x5_c03076{left:410.560128pt;}
.x1_c03076{left:411.840000pt;}
.xa_c03076{left:429.760320pt;}
.x9_c03076{left:437.439552pt;}
.x6_c03076{left:438.400512pt;}
.xc_c03076{left:450.560320pt;}
.x3_c03076{left:455.039904pt;}
.x2_c03076{left:468.159648pt;}
.xd_c03076{left:506.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03077 {
    display:none;
  }
  .loading-indicator_c03077.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03077 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03077 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03077" -> "#page-container .classname_c03077")
 */
.pf_c03077 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03077 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03077.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03077 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03077 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03077 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03077 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03077 {overflow:visible;}
  }
}
.c_c03077 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03077 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03077:after { /* webkit #35443 */
  content: '';
}
.t_c03077:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03077 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03077 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03077 { /* info for Javascript */
  display:none;
}
.l_c03077 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03077 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03077 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03077:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03077 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03077.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03077.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03077 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03077{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03077;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03077{font-family:ff1_c03077;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03077;src:url('chunks/assets/font_6a2e5426e3aedced93e3bfbb.woff2')format("woff");}.ff2_c03077{font-family:ff2_c03077;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03077;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03077{font-family:ff3_c03077;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03077{vertical-align:0.000000px;}
.v1_c03077{vertical-align:1.439424px;}
.ls10_c03077{letter-spacing:-0.841104px;}
.ls12_c03077{letter-spacing:-0.774576px;}
.ls17_c03077{letter-spacing:-0.613008px;}
.ls9_c03077{letter-spacing:-0.574992px;}
.ls13_c03077{letter-spacing:-0.275616px;}
.ls8_c03077{letter-spacing:-0.266112px;}
.lse_c03077{letter-spacing:-0.261360px;}
.ls6_c03077{letter-spacing:-0.242352px;}
.ls11_c03077{letter-spacing:-0.237600px;}
.ls4_c03077{letter-spacing:-0.118800px;}
.ls16_c03077{letter-spacing:0.000000px;}
.ls0_c03077{letter-spacing:0.006048px;}
.lsd_c03077{letter-spacing:0.038016px;}
.ls5_c03077{letter-spacing:0.128304px;}
.lsc_c03077{letter-spacing:0.508464px;}
.ls15_c03077{letter-spacing:0.514080px;}
.lsf_c03077{letter-spacing:0.536976px;}
.lsb_c03077{letter-spacing:0.579744px;}
.ls14_c03077{letter-spacing:0.594000px;}
.ls7_c03077{letter-spacing:0.598752px;}
.ls2_c03077{letter-spacing:0.613008px;}
.lsa_c03077{letter-spacing:0.655776px;}
.ls3_c03077{letter-spacing:0.717552px;}
.ls1_c03077{letter-spacing:0.722304px;}
.sc__c03077{text-shadow:none;}
.sc0_c03077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03077{-webkit-text-stroke:0px transparent;}
.sc0_c03077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03077{word-spacing:-15.126048px;}
.wsb_c03077{word-spacing:-12.474000px;}
.ws7_c03077{word-spacing:-12.459744px;}
.ws10_c03077{word-spacing:-12.416976px;}
.wsf_c03077{word-spacing:-11.637648px;}
.wse_c03077{word-spacing:-11.266992px;}
.ws1b_c03077{word-spacing:-1.083456px;}
.ws15_c03077{word-spacing:-1.016928px;}
.ws11_c03077{word-spacing:-0.974160px;}
.ws1a_c03077{word-spacing:-0.719712px;}
.ws16_c03077{word-spacing:-0.399168px;}
.ws13_c03077{word-spacing:-0.118800px;}
.ws17_c03077{word-spacing:-0.099792px;}
.ws14_c03077{word-spacing:-0.095040px;}
.ws19_c03077{word-spacing:-0.085536px;}
.ws12_c03077{word-spacing:0.000000px;}
.ws18_c03077{word-spacing:0.413424px;}
.wsa_c03077{word-spacing:0.836352px;}
.ws2_c03077{word-spacing:1.330560px;}
.ws9_c03077{word-spacing:3.483216px;}
.wsc_c03077{word-spacing:33.300288px;}
.ws8_c03077{word-spacing:34.836912px;}
.ws5_c03077{word-spacing:36.742464px;}
.ws1_c03077{word-spacing:37.759392px;}
.ws0_c03077{word-spacing:38.020752px;}
.ws3_c03077{word-spacing:39.218256px;}
.ws4_c03077{word-spacing:39.902544px;}
.ws6_c03077{word-spacing:42.026688px;}
._0_c03077{margin-left:-1.948320px;}
._2_c03077{width:1.482624px;}
._9_c03077{width:3.302640px;}
._4_c03077{width:4.999104px;}
._8_c03077{width:14.479344px;}
._6_c03077{width:15.748128px;}
._5_c03077{width:17.363808px;}
._7_c03077{width:18.513792px;}
._1_c03077{width:50.252400px;}
._3_c03077{width:51.530688px;}
.fc0_c03077{color:rgb(0,0,0);}
.fs0_c03077{font-size:47.520000px;}
.fs1_c03077{font-size:60.480000px;}
.y0_c03077{bottom:0.000000px;}
.y1b_c03077{bottom:146.998362px;}
.y1d_c03077{bottom:186.600234px;}
.y1c_c03077{bottom:196.320450px;}
.y1a_c03077{bottom:275.878542px;}
.y19_c03077{bottom:356.878758px;}
.y17_c03077{bottom:406.559730px;}
.y13_c03077{bottom:424.560306px;}
.y18_c03077{bottom:458.759262px;}
.y16_c03077{bottom:491.879514px;}
.y15_c03077{bottom:509.880090px;}
.y12_c03077{bottom:543.000342px;}
.y14_c03077{bottom:559.559874px;}
.y11_c03077{bottom:577.560450px;}
.y1e_c03077{bottom:614.280450px;}
.yd_c03077{bottom:637.318974px;}
.yc_c03077{bottom:652.438650px;}
.yb_c03077{bottom:667.558326px;}
.yf_c03077{bottom:707.160234px;}
.ye_c03077{bottom:716.880450px;}
.ya_c03077{bottom:796.438506px;}
.y9_c03077{bottom:877.438722px;}
.y7_c03077{bottom:926.759730px;}
.y3_c03077{bottom:944.760306px;}
.y8_c03077{bottom:979.319226px;}
.y6_c03077{bottom:1012.439478px;}
.y5_c03077{bottom:1030.440054px;}
.y2_c03077{bottom:1063.560306px;}
.y4_c03077{bottom:1079.759874px;}
.y1_c03077{bottom:1097.760450px;}
.y10_c03077{bottom:1134.840450px;}
.h3_c03077{height:32.530781px;}
.h1_c03077{height:41.696016px;}
.h2_c03077{height:41.812031px;}
.h4_c03077{height:54.654737px;}
.h0_c03077{height:1263.000000px;}
.w1_c03077{width:892.500000px;}
.w0_c03077{width:892.830000px;}
.x0_c03077{left:0.000000px;}
.xe_c03077{left:117.000000px;}
.x8_c03077{left:440.999856px;}
.x4_c03077{left:445.680576px;}
.xc_c03077{left:451.080000px;}
.x7_c03077{left:455.399604px;}
.x5_c03077{left:461.880144px;}
.x1_c03077{left:463.320000px;}
.xa_c03077{left:483.480360px;}
.x9_c03077{left:492.119496px;}
.x6_c03077{left:493.200576px;}
.xd_c03077{left:506.880360px;}
.x3_c03077{left:511.919892px;}
.x2_c03077{left:526.679604px;}
.xb_c03077{left:569.880036px;}
@media print{
.v0_c03077{vertical-align:0.000000pt;}
.v1_c03077{vertical-align:1.279488pt;}
.ls10_c03077{letter-spacing:-0.747648pt;}
.ls12_c03077{letter-spacing:-0.688512pt;}
.ls17_c03077{letter-spacing:-0.544896pt;}
.ls9_c03077{letter-spacing:-0.511104pt;}
.ls13_c03077{letter-spacing:-0.244992pt;}
.ls8_c03077{letter-spacing:-0.236544pt;}
.lse_c03077{letter-spacing:-0.232320pt;}
.ls6_c03077{letter-spacing:-0.215424pt;}
.ls11_c03077{letter-spacing:-0.211200pt;}
.ls4_c03077{letter-spacing:-0.105600pt;}
.ls16_c03077{letter-spacing:0.000000pt;}
.ls0_c03077{letter-spacing:0.005376pt;}
.lsd_c03077{letter-spacing:0.033792pt;}
.ls5_c03077{letter-spacing:0.114048pt;}
.lsc_c03077{letter-spacing:0.451968pt;}
.ls15_c03077{letter-spacing:0.456960pt;}
.lsf_c03077{letter-spacing:0.477312pt;}
.lsb_c03077{letter-spacing:0.515328pt;}
.ls14_c03077{letter-spacing:0.528000pt;}
.ls7_c03077{letter-spacing:0.532224pt;}
.ls2_c03077{letter-spacing:0.544896pt;}
.lsa_c03077{letter-spacing:0.582912pt;}
.ls3_c03077{letter-spacing:0.637824pt;}
.ls1_c03077{letter-spacing:0.642048pt;}
.wsd_c03077{word-spacing:-13.445376pt;}
.wsb_c03077{word-spacing:-11.088000pt;}
.ws7_c03077{word-spacing:-11.075328pt;}
.ws10_c03077{word-spacing:-11.037312pt;}
.wsf_c03077{word-spacing:-10.344576pt;}
.wse_c03077{word-spacing:-10.015104pt;}
.ws1b_c03077{word-spacing:-0.963072pt;}
.ws15_c03077{word-spacing:-0.903936pt;}
.ws11_c03077{word-spacing:-0.865920pt;}
.ws1a_c03077{word-spacing:-0.639744pt;}
.ws16_c03077{word-spacing:-0.354816pt;}
.ws13_c03077{word-spacing:-0.105600pt;}
.ws17_c03077{word-spacing:-0.088704pt;}
.ws14_c03077{word-spacing:-0.084480pt;}
.ws19_c03077{word-spacing:-0.076032pt;}
.ws12_c03077{word-spacing:0.000000pt;}
.ws18_c03077{word-spacing:0.367488pt;}
.wsa_c03077{word-spacing:0.743424pt;}
.ws2_c03077{word-spacing:1.182720pt;}
.ws9_c03077{word-spacing:3.096192pt;}
.wsc_c03077{word-spacing:29.600256pt;}
.ws8_c03077{word-spacing:30.966144pt;}
.ws5_c03077{word-spacing:32.659968pt;}
.ws1_c03077{word-spacing:33.563904pt;}
.ws0_c03077{word-spacing:33.796224pt;}
.ws3_c03077{word-spacing:34.860672pt;}
.ws4_c03077{word-spacing:35.468928pt;}
.ws6_c03077{word-spacing:37.357056pt;}
._0_c03077{margin-left:-1.731840pt;}
._2_c03077{width:1.317888pt;}
._9_c03077{width:2.935680pt;}
._4_c03077{width:4.443648pt;}
._8_c03077{width:12.870528pt;}
._6_c03077{width:13.998336pt;}
._5_c03077{width:15.434496pt;}
._7_c03077{width:16.456704pt;}
._1_c03077{width:44.668800pt;}
._3_c03077{width:45.805056pt;}
.fs0_c03077{font-size:42.240000pt;}
.fs1_c03077{font-size:53.760000pt;}
.y0_c03077{bottom:0.000000pt;}
.y1b_c03077{bottom:130.665211pt;}
.y1d_c03077{bottom:165.866875pt;}
.y1c_c03077{bottom:174.507067pt;}
.y1a_c03077{bottom:245.225371pt;}
.y19_c03077{bottom:317.225563pt;}
.y17_c03077{bottom:361.386427pt;}
.y13_c03077{bottom:377.386939pt;}
.y18_c03077{bottom:407.786011pt;}
.y16_c03077{bottom:437.226235pt;}
.y15_c03077{bottom:453.226747pt;}
.y12_c03077{bottom:482.666971pt;}
.y14_c03077{bottom:497.386555pt;}
.y11_c03077{bottom:513.387067pt;}
.y1e_c03077{bottom:546.027067pt;}
.yd_c03077{bottom:566.505755pt;}
.yc_c03077{bottom:579.945467pt;}
.yb_c03077{bottom:593.385179pt;}
.yf_c03077{bottom:628.586875pt;}
.ye_c03077{bottom:637.227067pt;}
.ya_c03077{bottom:707.945339pt;}
.y9_c03077{bottom:779.945531pt;}
.y7_c03077{bottom:823.786427pt;}
.y3_c03077{bottom:839.786939pt;}
.y8_c03077{bottom:870.505979pt;}
.y6_c03077{bottom:899.946203pt;}
.y5_c03077{bottom:915.946715pt;}
.y2_c03077{bottom:945.386939pt;}
.y4_c03077{bottom:959.786555pt;}
.y1_c03077{bottom:975.787067pt;}
.y10_c03077{bottom:1008.747067pt;}
.h3_c03077{height:28.916250pt;}
.h1_c03077{height:37.063125pt;}
.h2_c03077{height:37.166250pt;}
.h4_c03077{height:48.581988pt;}
.h0_c03077{height:1122.666667pt;}
.w1_c03077{width:793.333333pt;}
.w0_c03077{width:793.626667pt;}
.x0_c03077{left:0.000000pt;}
.xe_c03077{left:104.000000pt;}
.x8_c03077{left:391.999872pt;}
.x4_c03077{left:396.160512pt;}
.xc_c03077{left:400.960000pt;}
.x7_c03077{left:404.799648pt;}
.x5_c03077{left:410.560128pt;}
.x1_c03077{left:411.840000pt;}
.xa_c03077{left:429.760320pt;}
.x9_c03077{left:437.439552pt;}
.x6_c03077{left:438.400512pt;}
.xd_c03077{left:450.560320pt;}
.x3_c03077{left:455.039904pt;}
.x2_c03077{left:468.159648pt;}
.xb_c03077{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03078 {
    display:none;
  }
  .loading-indicator_c03078.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03078 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03078 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03078" -> "#page-container .classname_c03078")
 */
.pf_c03078 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03078 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03078.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03078 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03078 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03078 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03078 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03078 {overflow:visible;}
  }
}
.c_c03078 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03078 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03078:after { /* webkit #35443 */
  content: '';
}
.t_c03078:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03078 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03078 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03078 { /* info for Javascript */
  display:none;
}
.l_c03078 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03078 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03078 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03078:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03078 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03078.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03078.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03078 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03078;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03078{font-family:ff1_c03078;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03078;src:url('chunks/assets/font_07c773baaa4d99422634e696.woff2')format("woff");}.ff2_c03078{font-family:ff2_c03078;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03078;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03078{font-family:ff3_c03078;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03078{vertical-align:0.000000px;}
.v2_c03078{vertical-align:1.439424px;}
.v1_c03078{vertical-align:33.121440px;}
.ls15_c03078{letter-spacing:-1.197504px;}
.lsc_c03078{letter-spacing:-0.793584px;}
.ls7_c03078{letter-spacing:-0.613008px;}
.ls9_c03078{letter-spacing:-0.574992px;}
.lsf_c03078{letter-spacing:-0.275616px;}
.lsd_c03078{letter-spacing:-0.261360px;}
.ls6_c03078{letter-spacing:-0.242352px;}
.ls4_c03078{letter-spacing:-0.118800px;}
.ls13_c03078{letter-spacing:0.000000px;}
.ls14_c03078{letter-spacing:0.004752px;}
.ls1_c03078{letter-spacing:0.006048px;}
.ls11_c03078{letter-spacing:0.099792px;}
.ls5_c03078{letter-spacing:0.128304px;}
.lsb_c03078{letter-spacing:0.508464px;}
.ls12_c03078{letter-spacing:0.514080px;}
.lse_c03078{letter-spacing:0.536976px;}
.lsa_c03078{letter-spacing:0.579744px;}
.ls10_c03078{letter-spacing:0.594000px;}
.ls8_c03078{letter-spacing:0.598752px;}
.ls3_c03078{letter-spacing:0.613008px;}
.ls2_c03078{letter-spacing:0.717552px;}
.ls0_c03078{letter-spacing:0.722304px;}
.sc__c03078{text-shadow:none;}
.sc0_c03078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03078{-webkit-text-stroke:0px transparent;}
.sc0_c03078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03078{word-spacing:-15.126048px;}
.wsf_c03078{word-spacing:-12.474000px;}
.ws6_c03078{word-spacing:-12.459744px;}
.wse_c03078{word-spacing:-12.416976px;}
.ws4_c03078{word-spacing:-11.637648px;}
.ws2_c03078{word-spacing:-11.266992px;}
.ws13_c03078{word-spacing:-1.083456px;}
.ws19_c03078{word-spacing:-1.078704px;}
.ws10_c03078{word-spacing:-0.974160px;}
.ws18_c03078{word-spacing:-0.719712px;}
.ws17_c03078{word-spacing:-0.460944px;}
.ws1a_c03078{word-spacing:-0.365904px;}
.ws12_c03078{word-spacing:-0.118800px;}
.ws15_c03078{word-spacing:-0.099792px;}
.ws16_c03078{word-spacing:-0.085536px;}
.ws11_c03078{word-spacing:0.000000px;}
.ws14_c03078{word-spacing:0.432432px;}
.ws1b_c03078{word-spacing:0.836352px;}
.wsa_c03078{word-spacing:30.298752px;}
.wsb_c03078{word-spacing:33.300288px;}
.ws9_c03078{word-spacing:34.836912px;}
.ws8_c03078{word-spacing:36.143712px;}
.wsd_c03078{word-spacing:36.742464px;}
.ws1_c03078{word-spacing:37.759392px;}
.ws0_c03078{word-spacing:38.020752px;}
.ws3_c03078{word-spacing:39.218256px;}
.ws5_c03078{word-spacing:39.902544px;}
.ws7_c03078{word-spacing:42.026688px;}
._0_c03078{margin-left:-1.948320px;}
._2_c03078{width:1.482624px;}
._4_c03078{width:3.302640px;}
._5_c03078{width:15.382224px;}
._1_c03078{width:50.252400px;}
._3_c03078{width:51.530688px;}
.fc0_c03078{color:rgb(0,0,0);}
.fs0_c03078{font-size:47.520000px;}
.fs1_c03078{font-size:60.480000px;}
.y0_c03078{bottom:0.000000px;}
.y19_c03078{bottom:146.998362px;}
.y1b_c03078{bottom:186.600234px;}
.y1a_c03078{bottom:196.320450px;}
.y18_c03078{bottom:275.878542px;}
.y17_c03078{bottom:356.878758px;}
.y15_c03078{bottom:406.559730px;}
.y11_c03078{bottom:424.560306px;}
.y16_c03078{bottom:458.759262px;}
.y14_c03078{bottom:491.879514px;}
.y13_c03078{bottom:509.880090px;}
.y10_c03078{bottom:543.000342px;}
.y12_c03078{bottom:559.559874px;}
.yf_c03078{bottom:577.560450px;}
.y1c_c03078{bottom:614.280450px;}
.yb_c03078{bottom:667.558326px;}
.yd_c03078{bottom:707.160234px;}
.yc_c03078{bottom:716.880450px;}
.ya_c03078{bottom:796.438506px;}
.y9_c03078{bottom:877.438722px;}
.y7_c03078{bottom:926.759730px;}
.y3_c03078{bottom:944.760306px;}
.y8_c03078{bottom:979.319226px;}
.y6_c03078{bottom:1012.439478px;}
.y5_c03078{bottom:1030.440054px;}
.y2_c03078{bottom:1063.560306px;}
.y4_c03078{bottom:1079.759874px;}
.y1_c03078{bottom:1097.760450px;}
.ye_c03078{bottom:1134.840450px;}
.h3_c03078{height:32.530781px;}
.h1_c03078{height:41.696016px;}
.h2_c03078{height:41.812031px;}
.h5_c03078{height:54.654737px;}
.h4_c03078{height:74.817456px;}
.h0_c03078{height:1263.000000px;}
.w1_c03078{width:892.500000px;}
.w0_c03078{width:892.830000px;}
.x0_c03078{left:0.000000px;}
.xd_c03078{left:117.000000px;}
.x8_c03078{left:440.999856px;}
.x4_c03078{left:445.680576px;}
.xb_c03078{left:451.080000px;}
.x7_c03078{left:455.399604px;}
.x5_c03078{left:461.880144px;}
.x1_c03078{left:463.320000px;}
.xa_c03078{left:483.480360px;}
.x9_c03078{left:492.119496px;}
.x6_c03078{left:493.200576px;}
.xc_c03078{left:506.880360px;}
.x3_c03078{left:511.919892px;}
.x2_c03078{left:526.679604px;}
@media print{
.v0_c03078{vertical-align:0.000000pt;}
.v2_c03078{vertical-align:1.279488pt;}
.v1_c03078{vertical-align:29.441280pt;}
.ls15_c03078{letter-spacing:-1.064448pt;}
.lsc_c03078{letter-spacing:-0.705408pt;}
.ls7_c03078{letter-spacing:-0.544896pt;}
.ls9_c03078{letter-spacing:-0.511104pt;}
.lsf_c03078{letter-spacing:-0.244992pt;}
.lsd_c03078{letter-spacing:-0.232320pt;}
.ls6_c03078{letter-spacing:-0.215424pt;}
.ls4_c03078{letter-spacing:-0.105600pt;}
.ls13_c03078{letter-spacing:0.000000pt;}
.ls14_c03078{letter-spacing:0.004224pt;}
.ls1_c03078{letter-spacing:0.005376pt;}
.ls11_c03078{letter-spacing:0.088704pt;}
.ls5_c03078{letter-spacing:0.114048pt;}
.lsb_c03078{letter-spacing:0.451968pt;}
.ls12_c03078{letter-spacing:0.456960pt;}
.lse_c03078{letter-spacing:0.477312pt;}
.lsa_c03078{letter-spacing:0.515328pt;}
.ls10_c03078{letter-spacing:0.528000pt;}
.ls8_c03078{letter-spacing:0.532224pt;}
.ls3_c03078{letter-spacing:0.544896pt;}
.ls2_c03078{letter-spacing:0.637824pt;}
.ls0_c03078{letter-spacing:0.642048pt;}
.wsc_c03078{word-spacing:-13.445376pt;}
.wsf_c03078{word-spacing:-11.088000pt;}
.ws6_c03078{word-spacing:-11.075328pt;}
.wse_c03078{word-spacing:-11.037312pt;}
.ws4_c03078{word-spacing:-10.344576pt;}
.ws2_c03078{word-spacing:-10.015104pt;}
.ws13_c03078{word-spacing:-0.963072pt;}
.ws19_c03078{word-spacing:-0.958848pt;}
.ws10_c03078{word-spacing:-0.865920pt;}
.ws18_c03078{word-spacing:-0.639744pt;}
.ws17_c03078{word-spacing:-0.409728pt;}
.ws1a_c03078{word-spacing:-0.325248pt;}
.ws12_c03078{word-spacing:-0.105600pt;}
.ws15_c03078{word-spacing:-0.088704pt;}
.ws16_c03078{word-spacing:-0.076032pt;}
.ws11_c03078{word-spacing:0.000000pt;}
.ws14_c03078{word-spacing:0.384384pt;}
.ws1b_c03078{word-spacing:0.743424pt;}
.wsa_c03078{word-spacing:26.932224pt;}
.wsb_c03078{word-spacing:29.600256pt;}
.ws9_c03078{word-spacing:30.966144pt;}
.ws8_c03078{word-spacing:32.127744pt;}
.wsd_c03078{word-spacing:32.659968pt;}
.ws1_c03078{word-spacing:33.563904pt;}
.ws0_c03078{word-spacing:33.796224pt;}
.ws3_c03078{word-spacing:34.860672pt;}
.ws5_c03078{word-spacing:35.468928pt;}
.ws7_c03078{word-spacing:37.357056pt;}
._0_c03078{margin-left:-1.731840pt;}
._2_c03078{width:1.317888pt;}
._4_c03078{width:2.935680pt;}
._5_c03078{width:13.673088pt;}
._1_c03078{width:44.668800pt;}
._3_c03078{width:45.805056pt;}
.fs0_c03078{font-size:42.240000pt;}
.fs1_c03078{font-size:53.760000pt;}
.y0_c03078{bottom:0.000000pt;}
.y19_c03078{bottom:130.665211pt;}
.y1b_c03078{bottom:165.866875pt;}
.y1a_c03078{bottom:174.507067pt;}
.y18_c03078{bottom:245.225371pt;}
.y17_c03078{bottom:317.225563pt;}
.y15_c03078{bottom:361.386427pt;}
.y11_c03078{bottom:377.386939pt;}
.y16_c03078{bottom:407.786011pt;}
.y14_c03078{bottom:437.226235pt;}
.y13_c03078{bottom:453.226747pt;}
.y10_c03078{bottom:482.666971pt;}
.y12_c03078{bottom:497.386555pt;}
.yf_c03078{bottom:513.387067pt;}
.y1c_c03078{bottom:546.027067pt;}
.yb_c03078{bottom:593.385179pt;}
.yd_c03078{bottom:628.586875pt;}
.yc_c03078{bottom:637.227067pt;}
.ya_c03078{bottom:707.945339pt;}
.y9_c03078{bottom:779.945531pt;}
.y7_c03078{bottom:823.786427pt;}
.y3_c03078{bottom:839.786939pt;}
.y8_c03078{bottom:870.505979pt;}
.y6_c03078{bottom:899.946203pt;}
.y5_c03078{bottom:915.946715pt;}
.y2_c03078{bottom:945.386939pt;}
.y4_c03078{bottom:959.786555pt;}
.y1_c03078{bottom:975.787067pt;}
.ye_c03078{bottom:1008.747067pt;}
.h3_c03078{height:28.916250pt;}
.h1_c03078{height:37.063125pt;}
.h2_c03078{height:37.166250pt;}
.h5_c03078{height:48.581988pt;}
.h4_c03078{height:66.504405pt;}
.h0_c03078{height:1122.666667pt;}
.w1_c03078{width:793.333333pt;}
.w0_c03078{width:793.626667pt;}
.x0_c03078{left:0.000000pt;}
.xd_c03078{left:104.000000pt;}
.x8_c03078{left:391.999872pt;}
.x4_c03078{left:396.160512pt;}
.xb_c03078{left:400.960000pt;}
.x7_c03078{left:404.799648pt;}
.x5_c03078{left:410.560128pt;}
.x1_c03078{left:411.840000pt;}
.xa_c03078{left:429.760320pt;}
.x9_c03078{left:437.439552pt;}
.x6_c03078{left:438.400512pt;}
.xc_c03078{left:450.560320pt;}
.x3_c03078{left:455.039904pt;}
.x2_c03078{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03079 {
    display:none;
  }
  .loading-indicator_c03079.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03079 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03079 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03079" -> "#page-container .classname_c03079")
 */
.pf_c03079 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03079 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03079.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03079 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03079 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03079 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03079 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03079 {overflow:visible;}
  }
}
.c_c03079 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03079 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03079:after { /* webkit #35443 */
  content: '';
}
.t_c03079:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03079 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03079 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03079 { /* info for Javascript */
  display:none;
}
.l_c03079 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03079 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03079 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03079:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03079 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03079.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03079.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03079 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03079{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03079;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03079{font-family:ff1_c03079;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03079;src:url('chunks/assets/font_6d18921003b2cc5ca8ae8ea1.woff2')format("woff");}.ff2_c03079{font-family:ff2_c03079;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03079;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03079{font-family:ff3_c03079;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03079{vertical-align:0.000000px;}
.v1_c03079{vertical-align:1.439424px;}
.lse_c03079{letter-spacing:-1.197504px;}
.lsc_c03079{letter-spacing:-0.698544px;}
.ls7_c03079{letter-spacing:-0.613008px;}
.lsa_c03079{letter-spacing:-0.574992px;}
.ls10_c03079{letter-spacing:-0.275616px;}
.ls9_c03079{letter-spacing:-0.261360px;}
.ls6_c03079{letter-spacing:-0.242352px;}
.ls4_c03079{letter-spacing:-0.118800px;}
.ls13_c03079{letter-spacing:0.000000px;}
.ls1_c03079{letter-spacing:0.006048px;}
.ls5_c03079{letter-spacing:0.128304px;}
.lsd_c03079{letter-spacing:0.508464px;}
.ls12_c03079{letter-spacing:0.514080px;}
.lsf_c03079{letter-spacing:0.536976px;}
.lsb_c03079{letter-spacing:0.579744px;}
.ls11_c03079{letter-spacing:0.594000px;}
.ls8_c03079{letter-spacing:0.598752px;}
.ls3_c03079{letter-spacing:0.613008px;}
.ls2_c03079{letter-spacing:0.717552px;}
.ls0_c03079{letter-spacing:0.722304px;}
.sc__c03079{text-shadow:none;}
.sc0_c03079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03079{-webkit-text-stroke:0px transparent;}
.sc0_c03079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03079{word-spacing:-15.126048px;}
.ws9_c03079{word-spacing:-12.474000px;}
.ws7_c03079{word-spacing:-12.459744px;}
.ws8_c03079{word-spacing:-12.416976px;}
.wsc_c03079{word-spacing:-11.637648px;}
.ws2_c03079{word-spacing:-11.266992px;}
.ws11_c03079{word-spacing:-1.083456px;}
.ws16_c03079{word-spacing:-1.078704px;}
.wsd_c03079{word-spacing:-0.974160px;}
.ws15_c03079{word-spacing:-0.719712px;}
.wsf_c03079{word-spacing:-0.118800px;}
.ws10_c03079{word-spacing:-0.099792px;}
.ws14_c03079{word-spacing:-0.085536px;}
.wse_c03079{word-spacing:0.000000px;}
.ws12_c03079{word-spacing:0.337392px;}
.ws13_c03079{word-spacing:0.836352px;}
.wsa_c03079{word-spacing:33.300288px;}
.ws5_c03079{word-spacing:36.742464px;}
.ws1_c03079{word-spacing:37.759392px;}
.ws0_c03079{word-spacing:38.020752px;}
.ws3_c03079{word-spacing:39.218256px;}
.ws4_c03079{word-spacing:39.902544px;}
.ws6_c03079{word-spacing:42.026688px;}
._0_c03079{margin-left:-1.948320px;}
._2_c03079{width:1.482624px;}
._5_c03079{width:2.770416px;}
._6_c03079{width:4.329072px;}
._4_c03079{width:15.382224px;}
._1_c03079{width:50.252400px;}
._3_c03079{width:51.530688px;}
.fc0_c03079{color:rgb(0,0,0);}
.fs0_c03079{font-size:47.520000px;}
.fs1_c03079{font-size:60.480000px;}
.y0_c03079{bottom:0.000000px;}
.y19_c03079{bottom:146.998362px;}
.y1b_c03079{bottom:186.600234px;}
.y1a_c03079{bottom:196.320450px;}
.y18_c03079{bottom:275.878542px;}
.y17_c03079{bottom:356.878758px;}
.y15_c03079{bottom:406.559730px;}
.y11_c03079{bottom:424.560306px;}
.y16_c03079{bottom:458.759262px;}
.y14_c03079{bottom:491.879514px;}
.y13_c03079{bottom:509.880090px;}
.y10_c03079{bottom:543.000342px;}
.y12_c03079{bottom:559.559874px;}
.yf_c03079{bottom:577.560450px;}
.y1c_c03079{bottom:614.280450px;}
.yb_c03079{bottom:667.558326px;}
.yd_c03079{bottom:707.160234px;}
.yc_c03079{bottom:716.880450px;}
.ya_c03079{bottom:796.438506px;}
.y9_c03079{bottom:877.438722px;}
.y7_c03079{bottom:926.759730px;}
.y3_c03079{bottom:944.760306px;}
.y8_c03079{bottom:979.319226px;}
.y6_c03079{bottom:1012.439478px;}
.y5_c03079{bottom:1030.440054px;}
.y2_c03079{bottom:1063.560306px;}
.y4_c03079{bottom:1079.759874px;}
.y1_c03079{bottom:1097.760450px;}
.ye_c03079{bottom:1134.840450px;}
.h3_c03079{height:32.530781px;}
.h1_c03079{height:41.696016px;}
.h2_c03079{height:41.812031px;}
.h4_c03079{height:54.654737px;}
.h0_c03079{height:1263.000000px;}
.w1_c03079{width:892.500000px;}
.w0_c03079{width:892.830000px;}
.x0_c03079{left:0.000000px;}
.xd_c03079{left:117.000000px;}
.x8_c03079{left:440.999856px;}
.x4_c03079{left:445.680576px;}
.xb_c03079{left:451.080000px;}
.x7_c03079{left:455.399604px;}
.x5_c03079{left:461.880144px;}
.x1_c03079{left:463.320000px;}
.xa_c03079{left:483.480360px;}
.x9_c03079{left:492.119496px;}
.x6_c03079{left:493.200576px;}
.xc_c03079{left:506.880360px;}
.x3_c03079{left:511.919892px;}
.x2_c03079{left:526.679604px;}
@media print{
.v0_c03079{vertical-align:0.000000pt;}
.v1_c03079{vertical-align:1.279488pt;}
.lse_c03079{letter-spacing:-1.064448pt;}
.lsc_c03079{letter-spacing:-0.620928pt;}
.ls7_c03079{letter-spacing:-0.544896pt;}
.lsa_c03079{letter-spacing:-0.511104pt;}
.ls10_c03079{letter-spacing:-0.244992pt;}
.ls9_c03079{letter-spacing:-0.232320pt;}
.ls6_c03079{letter-spacing:-0.215424pt;}
.ls4_c03079{letter-spacing:-0.105600pt;}
.ls13_c03079{letter-spacing:0.000000pt;}
.ls1_c03079{letter-spacing:0.005376pt;}
.ls5_c03079{letter-spacing:0.114048pt;}
.lsd_c03079{letter-spacing:0.451968pt;}
.ls12_c03079{letter-spacing:0.456960pt;}
.lsf_c03079{letter-spacing:0.477312pt;}
.lsb_c03079{letter-spacing:0.515328pt;}
.ls11_c03079{letter-spacing:0.528000pt;}
.ls8_c03079{letter-spacing:0.532224pt;}
.ls3_c03079{letter-spacing:0.544896pt;}
.ls2_c03079{letter-spacing:0.637824pt;}
.ls0_c03079{letter-spacing:0.642048pt;}
.wsb_c03079{word-spacing:-13.445376pt;}
.ws9_c03079{word-spacing:-11.088000pt;}
.ws7_c03079{word-spacing:-11.075328pt;}
.ws8_c03079{word-spacing:-11.037312pt;}
.wsc_c03079{word-spacing:-10.344576pt;}
.ws2_c03079{word-spacing:-10.015104pt;}
.ws11_c03079{word-spacing:-0.963072pt;}
.ws16_c03079{word-spacing:-0.958848pt;}
.wsd_c03079{word-spacing:-0.865920pt;}
.ws15_c03079{word-spacing:-0.639744pt;}
.wsf_c03079{word-spacing:-0.105600pt;}
.ws10_c03079{word-spacing:-0.088704pt;}
.ws14_c03079{word-spacing:-0.076032pt;}
.wse_c03079{word-spacing:0.000000pt;}
.ws12_c03079{word-spacing:0.299904pt;}
.ws13_c03079{word-spacing:0.743424pt;}
.wsa_c03079{word-spacing:29.600256pt;}
.ws5_c03079{word-spacing:32.659968pt;}
.ws1_c03079{word-spacing:33.563904pt;}
.ws0_c03079{word-spacing:33.796224pt;}
.ws3_c03079{word-spacing:34.860672pt;}
.ws4_c03079{word-spacing:35.468928pt;}
.ws6_c03079{word-spacing:37.357056pt;}
._0_c03079{margin-left:-1.731840pt;}
._2_c03079{width:1.317888pt;}
._5_c03079{width:2.462592pt;}
._6_c03079{width:3.848064pt;}
._4_c03079{width:13.673088pt;}
._1_c03079{width:44.668800pt;}
._3_c03079{width:45.805056pt;}
.fs0_c03079{font-size:42.240000pt;}
.fs1_c03079{font-size:53.760000pt;}
.y0_c03079{bottom:0.000000pt;}
.y19_c03079{bottom:130.665211pt;}
.y1b_c03079{bottom:165.866875pt;}
.y1a_c03079{bottom:174.507067pt;}
.y18_c03079{bottom:245.225371pt;}
.y17_c03079{bottom:317.225563pt;}
.y15_c03079{bottom:361.386427pt;}
.y11_c03079{bottom:377.386939pt;}
.y16_c03079{bottom:407.786011pt;}
.y14_c03079{bottom:437.226235pt;}
.y13_c03079{bottom:453.226747pt;}
.y10_c03079{bottom:482.666971pt;}
.y12_c03079{bottom:497.386555pt;}
.yf_c03079{bottom:513.387067pt;}
.y1c_c03079{bottom:546.027067pt;}
.yb_c03079{bottom:593.385179pt;}
.yd_c03079{bottom:628.586875pt;}
.yc_c03079{bottom:637.227067pt;}
.ya_c03079{bottom:707.945339pt;}
.y9_c03079{bottom:779.945531pt;}
.y7_c03079{bottom:823.786427pt;}
.y3_c03079{bottom:839.786939pt;}
.y8_c03079{bottom:870.505979pt;}
.y6_c03079{bottom:899.946203pt;}
.y5_c03079{bottom:915.946715pt;}
.y2_c03079{bottom:945.386939pt;}
.y4_c03079{bottom:959.786555pt;}
.y1_c03079{bottom:975.787067pt;}
.ye_c03079{bottom:1008.747067pt;}
.h3_c03079{height:28.916250pt;}
.h1_c03079{height:37.063125pt;}
.h2_c03079{height:37.166250pt;}
.h4_c03079{height:48.581988pt;}
.h0_c03079{height:1122.666667pt;}
.w1_c03079{width:793.333333pt;}
.w0_c03079{width:793.626667pt;}
.x0_c03079{left:0.000000pt;}
.xd_c03079{left:104.000000pt;}
.x8_c03079{left:391.999872pt;}
.x4_c03079{left:396.160512pt;}
.xb_c03079{left:400.960000pt;}
.x7_c03079{left:404.799648pt;}
.x5_c03079{left:410.560128pt;}
.x1_c03079{left:411.840000pt;}
.xa_c03079{left:429.760320pt;}
.x9_c03079{left:437.439552pt;}
.x6_c03079{left:438.400512pt;}
.xc_c03079{left:450.560320pt;}
.x3_c03079{left:455.039904pt;}
.x2_c03079{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03080 {
    display:none;
  }
  .loading-indicator_c03080.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03080 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03080 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03080" -> "#page-container .classname_c03080")
 */
.pf_c03080 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03080 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03080 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03080 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03080 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03080 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03080 {overflow:visible;}
  }
}
.c_c03080 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03080 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03080:after { /* webkit #35443 */
  content: '';
}
.t_c03080:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03080 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03080 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03080 { /* info for Javascript */
  display:none;
}
.l_c03080 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03080 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03080 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03080:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03080 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03080.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03080 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03080{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03080;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03080{font-family:ff1_c03080;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03080;src:url('chunks/assets/font_72c6ae189011d26d64fb9015.woff2')format("woff");}.ff2_c03080{font-family:ff2_c03080;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03080;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03080{font-family:ff3_c03080;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03080{vertical-align:0.000000px;}
.v1_c03080{vertical-align:1.439424px;}
.lsd_c03080{letter-spacing:-1.197504px;}
.lsb_c03080{letter-spacing:-0.698544px;}
.ls7_c03080{letter-spacing:-0.613008px;}
.ls9_c03080{letter-spacing:-0.574992px;}
.ls10_c03080{letter-spacing:-0.275616px;}
.lse_c03080{letter-spacing:-0.261360px;}
.ls6_c03080{letter-spacing:-0.242352px;}
.ls4_c03080{letter-spacing:-0.118800px;}
.ls13_c03080{letter-spacing:0.000000px;}
.ls1_c03080{letter-spacing:0.006048px;}
.ls5_c03080{letter-spacing:0.128304px;}
.lsc_c03080{letter-spacing:0.508464px;}
.ls12_c03080{letter-spacing:0.514080px;}
.lsf_c03080{letter-spacing:0.536976px;}
.lsa_c03080{letter-spacing:0.579744px;}
.ls11_c03080{letter-spacing:0.594000px;}
.ls8_c03080{letter-spacing:0.598752px;}
.ls3_c03080{letter-spacing:0.613008px;}
.ls2_c03080{letter-spacing:0.717552px;}
.ls0_c03080{letter-spacing:0.722304px;}
.sc__c03080{text-shadow:none;}
.sc0_c03080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03080{-webkit-text-stroke:0px transparent;}
.sc0_c03080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03080{word-spacing:-15.126048px;}
.wsa_c03080{word-spacing:-12.474000px;}
.ws8_c03080{word-spacing:-12.459744px;}
.ws9_c03080{word-spacing:-12.416976px;}
.ws4_c03080{word-spacing:-11.637648px;}
.ws2_c03080{word-spacing:-11.266992px;}
.ws10_c03080{word-spacing:-1.083456px;}
.ws16_c03080{word-spacing:-1.078704px;}
.wsd_c03080{word-spacing:-0.974160px;}
.ws15_c03080{word-spacing:-0.719712px;}
.wsf_c03080{word-spacing:-0.118800px;}
.ws13_c03080{word-spacing:-0.099792px;}
.ws14_c03080{word-spacing:-0.085536px;}
.wse_c03080{word-spacing:0.000000px;}
.ws11_c03080{word-spacing:0.337392px;}
.ws12_c03080{word-spacing:0.836352px;}
.wsb_c03080{word-spacing:33.300288px;}
.ws6_c03080{word-spacing:36.742464px;}
.ws1_c03080{word-spacing:37.759392px;}
.ws0_c03080{word-spacing:38.020752px;}
.ws3_c03080{word-spacing:39.218256px;}
.ws5_c03080{word-spacing:39.902544px;}
.ws7_c03080{word-spacing:42.026688px;}
._0_c03080{margin-left:-1.948320px;}
._2_c03080{width:1.482624px;}
._5_c03080{width:2.770416px;}
._4_c03080{width:4.329072px;}
._1_c03080{width:50.252400px;}
._3_c03080{width:51.530688px;}
.fc0_c03080{color:rgb(0,0,0);}
.fs0_c03080{font-size:47.520000px;}
.fs1_c03080{font-size:60.480000px;}
.y0_c03080{bottom:0.000000px;}
.y19_c03080{bottom:146.998362px;}
.y1b_c03080{bottom:186.600234px;}
.y1a_c03080{bottom:196.320450px;}
.y18_c03080{bottom:275.878542px;}
.y17_c03080{bottom:356.878758px;}
.y15_c03080{bottom:406.559730px;}
.y11_c03080{bottom:424.560306px;}
.y16_c03080{bottom:458.759262px;}
.y14_c03080{bottom:491.879514px;}
.y13_c03080{bottom:509.880090px;}
.y10_c03080{bottom:543.000342px;}
.y12_c03080{bottom:559.559874px;}
.yf_c03080{bottom:577.560450px;}
.y1c_c03080{bottom:614.280450px;}
.yb_c03080{bottom:667.558326px;}
.yd_c03080{bottom:707.160234px;}
.yc_c03080{bottom:716.880450px;}
.ya_c03080{bottom:796.438506px;}
.y9_c03080{bottom:877.438722px;}
.y7_c03080{bottom:926.759730px;}
.y3_c03080{bottom:944.760306px;}
.y8_c03080{bottom:979.319226px;}
.y6_c03080{bottom:1012.439478px;}
.y5_c03080{bottom:1030.440054px;}
.y2_c03080{bottom:1063.560306px;}
.y4_c03080{bottom:1079.759874px;}
.y1_c03080{bottom:1097.760450px;}
.ye_c03080{bottom:1134.840450px;}
.h3_c03080{height:32.530781px;}
.h1_c03080{height:41.696016px;}
.h2_c03080{height:41.812031px;}
.h4_c03080{height:54.654737px;}
.h0_c03080{height:1263.000000px;}
.w1_c03080{width:892.500000px;}
.w0_c03080{width:892.830000px;}
.x0_c03080{left:0.000000px;}
.xd_c03080{left:117.000000px;}
.x8_c03080{left:440.999856px;}
.x4_c03080{left:445.680576px;}
.xb_c03080{left:451.080000px;}
.x7_c03080{left:455.399604px;}
.x5_c03080{left:461.880144px;}
.x1_c03080{left:463.320000px;}
.xa_c03080{left:483.480360px;}
.x9_c03080{left:492.119496px;}
.x6_c03080{left:493.200576px;}
.xc_c03080{left:506.880360px;}
.x3_c03080{left:511.919892px;}
.x2_c03080{left:526.679604px;}
@media print{
.v0_c03080{vertical-align:0.000000pt;}
.v1_c03080{vertical-align:1.279488pt;}
.lsd_c03080{letter-spacing:-1.064448pt;}
.lsb_c03080{letter-spacing:-0.620928pt;}
.ls7_c03080{letter-spacing:-0.544896pt;}
.ls9_c03080{letter-spacing:-0.511104pt;}
.ls10_c03080{letter-spacing:-0.244992pt;}
.lse_c03080{letter-spacing:-0.232320pt;}
.ls6_c03080{letter-spacing:-0.215424pt;}
.ls4_c03080{letter-spacing:-0.105600pt;}
.ls13_c03080{letter-spacing:0.000000pt;}
.ls1_c03080{letter-spacing:0.005376pt;}
.ls5_c03080{letter-spacing:0.114048pt;}
.lsc_c03080{letter-spacing:0.451968pt;}
.ls12_c03080{letter-spacing:0.456960pt;}
.lsf_c03080{letter-spacing:0.477312pt;}
.lsa_c03080{letter-spacing:0.515328pt;}
.ls11_c03080{letter-spacing:0.528000pt;}
.ls8_c03080{letter-spacing:0.532224pt;}
.ls3_c03080{letter-spacing:0.544896pt;}
.ls2_c03080{letter-spacing:0.637824pt;}
.ls0_c03080{letter-spacing:0.642048pt;}
.wsc_c03080{word-spacing:-13.445376pt;}
.wsa_c03080{word-spacing:-11.088000pt;}
.ws8_c03080{word-spacing:-11.075328pt;}
.ws9_c03080{word-spacing:-11.037312pt;}
.ws4_c03080{word-spacing:-10.344576pt;}
.ws2_c03080{word-spacing:-10.015104pt;}
.ws10_c03080{word-spacing:-0.963072pt;}
.ws16_c03080{word-spacing:-0.958848pt;}
.wsd_c03080{word-spacing:-0.865920pt;}
.ws15_c03080{word-spacing:-0.639744pt;}
.wsf_c03080{word-spacing:-0.105600pt;}
.ws13_c03080{word-spacing:-0.088704pt;}
.ws14_c03080{word-spacing:-0.076032pt;}
.wse_c03080{word-spacing:0.000000pt;}
.ws11_c03080{word-spacing:0.299904pt;}
.ws12_c03080{word-spacing:0.743424pt;}
.wsb_c03080{word-spacing:29.600256pt;}
.ws6_c03080{word-spacing:32.659968pt;}
.ws1_c03080{word-spacing:33.563904pt;}
.ws0_c03080{word-spacing:33.796224pt;}
.ws3_c03080{word-spacing:34.860672pt;}
.ws5_c03080{word-spacing:35.468928pt;}
.ws7_c03080{word-spacing:37.357056pt;}
._0_c03080{margin-left:-1.731840pt;}
._2_c03080{width:1.317888pt;}
._5_c03080{width:2.462592pt;}
._4_c03080{width:3.848064pt;}
._1_c03080{width:44.668800pt;}
._3_c03080{width:45.805056pt;}
.fs0_c03080{font-size:42.240000pt;}
.fs1_c03080{font-size:53.760000pt;}
.y0_c03080{bottom:0.000000pt;}
.y19_c03080{bottom:130.665211pt;}
.y1b_c03080{bottom:165.866875pt;}
.y1a_c03080{bottom:174.507067pt;}
.y18_c03080{bottom:245.225371pt;}
.y17_c03080{bottom:317.225563pt;}
.y15_c03080{bottom:361.386427pt;}
.y11_c03080{bottom:377.386939pt;}
.y16_c03080{bottom:407.786011pt;}
.y14_c03080{bottom:437.226235pt;}
.y13_c03080{bottom:453.226747pt;}
.y10_c03080{bottom:482.666971pt;}
.y12_c03080{bottom:497.386555pt;}
.yf_c03080{bottom:513.387067pt;}
.y1c_c03080{bottom:546.027067pt;}
.yb_c03080{bottom:593.385179pt;}
.yd_c03080{bottom:628.586875pt;}
.yc_c03080{bottom:637.227067pt;}
.ya_c03080{bottom:707.945339pt;}
.y9_c03080{bottom:779.945531pt;}
.y7_c03080{bottom:823.786427pt;}
.y3_c03080{bottom:839.786939pt;}
.y8_c03080{bottom:870.505979pt;}
.y6_c03080{bottom:899.946203pt;}
.y5_c03080{bottom:915.946715pt;}
.y2_c03080{bottom:945.386939pt;}
.y4_c03080{bottom:959.786555pt;}
.y1_c03080{bottom:975.787067pt;}
.ye_c03080{bottom:1008.747067pt;}
.h3_c03080{height:28.916250pt;}
.h1_c03080{height:37.063125pt;}
.h2_c03080{height:37.166250pt;}
.h4_c03080{height:48.581988pt;}
.h0_c03080{height:1122.666667pt;}
.w1_c03080{width:793.333333pt;}
.w0_c03080{width:793.626667pt;}
.x0_c03080{left:0.000000pt;}
.xd_c03080{left:104.000000pt;}
.x8_c03080{left:391.999872pt;}
.x4_c03080{left:396.160512pt;}
.xb_c03080{left:400.960000pt;}
.x7_c03080{left:404.799648pt;}
.x5_c03080{left:410.560128pt;}
.x1_c03080{left:411.840000pt;}
.xa_c03080{left:429.760320pt;}
.x9_c03080{left:437.439552pt;}
.x6_c03080{left:438.400512pt;}
.xc_c03080{left:450.560320pt;}
.x3_c03080{left:455.039904pt;}
.x2_c03080{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03081 {
    display:none;
  }
  .loading-indicator_c03081.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03081 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03081 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03081" -> "#page-container .classname_c03081")
 */
.pf_c03081 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03081 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03081.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03081 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03081 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03081 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03081 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03081 {overflow:visible;}
  }
}
.c_c03081 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03081 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03081:after { /* webkit #35443 */
  content: '';
}
.t_c03081:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03081 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03081 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03081 { /* info for Javascript */
  display:none;
}
.l_c03081 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03081 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03081 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03081:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03081 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03081.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03081.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03081 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03081{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03081;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03081{font-family:ff1_c03081;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03081;src:url('chunks/assets/font_7fe17a0d05efc6610060d4e3.woff2')format("woff");}.ff2_c03081{font-family:ff2_c03081;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03081;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03081{font-family:ff3_c03081;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03081{vertical-align:0.000000px;}
.v1_c03081{vertical-align:1.439424px;}
.lsd_c03081{letter-spacing:-1.197504px;}
.ls10_c03081{letter-spacing:-0.760320px;}
.ls8_c03081{letter-spacing:-0.613008px;}
.lsa_c03081{letter-spacing:-0.574992px;}
.ls16_c03081{letter-spacing:-0.351648px;}
.ls11_c03081{letter-spacing:-0.275616px;}
.lse_c03081{letter-spacing:-0.261360px;}
.ls7_c03081{letter-spacing:-0.242352px;}
.ls5_c03081{letter-spacing:-0.118800px;}
.ls14_c03081{letter-spacing:0.000000px;}
.ls2_c03081{letter-spacing:0.006048px;}
.ls6_c03081{letter-spacing:0.128304px;}
.ls15_c03081{letter-spacing:0.242352px;}
.lsc_c03081{letter-spacing:0.508464px;}
.ls13_c03081{letter-spacing:0.514080px;}
.lsf_c03081{letter-spacing:0.536976px;}
.lsb_c03081{letter-spacing:0.579744px;}
.ls12_c03081{letter-spacing:0.594000px;}
.ls9_c03081{letter-spacing:0.598752px;}
.ls4_c03081{letter-spacing:0.613008px;}
.ls0_c03081{letter-spacing:0.651024px;}
.ls1_c03081{letter-spacing:0.717552px;}
.ls3_c03081{letter-spacing:0.722304px;}
.sc__c03081{text-shadow:none;}
.sc0_c03081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03081{-webkit-text-stroke:0px transparent;}
.sc0_c03081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03081{word-spacing:-15.126048px;}
.ws9_c03081{word-spacing:-12.474000px;}
.ws6_c03081{word-spacing:-12.459744px;}
.ws4_c03081{word-spacing:-11.637648px;}
.ws2_c03081{word-spacing:-11.266992px;}
.ws17_c03081{word-spacing:-1.083456px;}
.ws11_c03081{word-spacing:-1.078704px;}
.wsf_c03081{word-spacing:-1.012176px;}
.wsd_c03081{word-spacing:-0.974160px;}
.ws16_c03081{word-spacing:-0.719712px;}
.ws10_c03081{word-spacing:-0.118800px;}
.ws13_c03081{word-spacing:-0.099792px;}
.ws15_c03081{word-spacing:-0.085536px;}
.ws18_c03081{word-spacing:-0.009504px;}
.wse_c03081{word-spacing:0.000000px;}
.ws14_c03081{word-spacing:0.399168px;}
.ws12_c03081{word-spacing:0.836352px;}
.wsc_c03081{word-spacing:2.071872px;}
.wsa_c03081{word-spacing:33.300288px;}
.ws8_c03081{word-spacing:34.836912px;}
.ws1_c03081{word-spacing:37.759392px;}
.ws0_c03081{word-spacing:38.020752px;}
.ws3_c03081{word-spacing:39.218256px;}
.ws5_c03081{word-spacing:39.902544px;}
.ws7_c03081{word-spacing:42.026688px;}
._0_c03081{margin-left:-1.948320px;}
._2_c03081{width:1.482624px;}
._5_c03081{width:2.770416px;}
._4_c03081{width:4.329072px;}
._7_c03081{width:14.792976px;}
._6_c03081{width:16.299360px;}
._1_c03081{width:50.252400px;}
._3_c03081{width:51.530688px;}
.fc0_c03081{color:rgb(0,0,0);}
.fs0_c03081{font-size:47.520000px;}
.fs1_c03081{font-size:60.480000px;}
.y0_c03081{bottom:0.000000px;}
.y1a_c03081{bottom:131.878686px;}
.y19_c03081{bottom:146.998362px;}
.y1c_c03081{bottom:186.600234px;}
.y1b_c03081{bottom:196.320450px;}
.y18_c03081{bottom:275.878542px;}
.y17_c03081{bottom:356.878758px;}
.y15_c03081{bottom:406.559730px;}
.y11_c03081{bottom:424.560306px;}
.y16_c03081{bottom:458.759262px;}
.y14_c03081{bottom:491.879514px;}
.y13_c03081{bottom:509.880090px;}
.y10_c03081{bottom:543.000342px;}
.y12_c03081{bottom:559.559874px;}
.yf_c03081{bottom:577.560450px;}
.y1d_c03081{bottom:614.280450px;}
.yb_c03081{bottom:667.558326px;}
.yd_c03081{bottom:707.160234px;}
.yc_c03081{bottom:716.880450px;}
.ya_c03081{bottom:796.438506px;}
.y9_c03081{bottom:877.438722px;}
.y7_c03081{bottom:926.759730px;}
.y3_c03081{bottom:944.760306px;}
.y8_c03081{bottom:979.319226px;}
.y6_c03081{bottom:1012.439478px;}
.y5_c03081{bottom:1030.440054px;}
.y2_c03081{bottom:1063.560306px;}
.y4_c03081{bottom:1079.759874px;}
.y1_c03081{bottom:1097.760450px;}
.ye_c03081{bottom:1134.840450px;}
.h3_c03081{height:32.530781px;}
.h1_c03081{height:41.696016px;}
.h2_c03081{height:41.812031px;}
.h4_c03081{height:54.654737px;}
.h0_c03081{height:1263.000000px;}
.w1_c03081{width:892.500000px;}
.w0_c03081{width:892.830000px;}
.x0_c03081{left:0.000000px;}
.xd_c03081{left:117.000000px;}
.x8_c03081{left:440.999856px;}
.x4_c03081{left:445.680576px;}
.xb_c03081{left:451.080000px;}
.x7_c03081{left:455.399604px;}
.x5_c03081{left:461.880144px;}
.x1_c03081{left:463.320000px;}
.xa_c03081{left:483.480360px;}
.x9_c03081{left:492.119496px;}
.x6_c03081{left:493.200576px;}
.xc_c03081{left:506.880360px;}
.x3_c03081{left:511.919892px;}
.x2_c03081{left:526.679604px;}
.xe_c03081{left:569.880036px;}
@media print{
.v0_c03081{vertical-align:0.000000pt;}
.v1_c03081{vertical-align:1.279488pt;}
.lsd_c03081{letter-spacing:-1.064448pt;}
.ls10_c03081{letter-spacing:-0.675840pt;}
.ls8_c03081{letter-spacing:-0.544896pt;}
.lsa_c03081{letter-spacing:-0.511104pt;}
.ls16_c03081{letter-spacing:-0.312576pt;}
.ls11_c03081{letter-spacing:-0.244992pt;}
.lse_c03081{letter-spacing:-0.232320pt;}
.ls7_c03081{letter-spacing:-0.215424pt;}
.ls5_c03081{letter-spacing:-0.105600pt;}
.ls14_c03081{letter-spacing:0.000000pt;}
.ls2_c03081{letter-spacing:0.005376pt;}
.ls6_c03081{letter-spacing:0.114048pt;}
.ls15_c03081{letter-spacing:0.215424pt;}
.lsc_c03081{letter-spacing:0.451968pt;}
.ls13_c03081{letter-spacing:0.456960pt;}
.lsf_c03081{letter-spacing:0.477312pt;}
.lsb_c03081{letter-spacing:0.515328pt;}
.ls12_c03081{letter-spacing:0.528000pt;}
.ls9_c03081{letter-spacing:0.532224pt;}
.ls4_c03081{letter-spacing:0.544896pt;}
.ls0_c03081{letter-spacing:0.578688pt;}
.ls1_c03081{letter-spacing:0.637824pt;}
.ls3_c03081{letter-spacing:0.642048pt;}
.wsb_c03081{word-spacing:-13.445376pt;}
.ws9_c03081{word-spacing:-11.088000pt;}
.ws6_c03081{word-spacing:-11.075328pt;}
.ws4_c03081{word-spacing:-10.344576pt;}
.ws2_c03081{word-spacing:-10.015104pt;}
.ws17_c03081{word-spacing:-0.963072pt;}
.ws11_c03081{word-spacing:-0.958848pt;}
.wsf_c03081{word-spacing:-0.899712pt;}
.wsd_c03081{word-spacing:-0.865920pt;}
.ws16_c03081{word-spacing:-0.639744pt;}
.ws10_c03081{word-spacing:-0.105600pt;}
.ws13_c03081{word-spacing:-0.088704pt;}
.ws15_c03081{word-spacing:-0.076032pt;}
.ws18_c03081{word-spacing:-0.008448pt;}
.wse_c03081{word-spacing:0.000000pt;}
.ws14_c03081{word-spacing:0.354816pt;}
.ws12_c03081{word-spacing:0.743424pt;}
.wsc_c03081{word-spacing:1.841664pt;}
.wsa_c03081{word-spacing:29.600256pt;}
.ws8_c03081{word-spacing:30.966144pt;}
.ws1_c03081{word-spacing:33.563904pt;}
.ws0_c03081{word-spacing:33.796224pt;}
.ws3_c03081{word-spacing:34.860672pt;}
.ws5_c03081{word-spacing:35.468928pt;}
.ws7_c03081{word-spacing:37.357056pt;}
._0_c03081{margin-left:-1.731840pt;}
._2_c03081{width:1.317888pt;}
._5_c03081{width:2.462592pt;}
._4_c03081{width:3.848064pt;}
._7_c03081{width:13.149312pt;}
._6_c03081{width:14.488320pt;}
._1_c03081{width:44.668800pt;}
._3_c03081{width:45.805056pt;}
.fs0_c03081{font-size:42.240000pt;}
.fs1_c03081{font-size:53.760000pt;}
.y0_c03081{bottom:0.000000pt;}
.y1a_c03081{bottom:117.225499pt;}
.y19_c03081{bottom:130.665211pt;}
.y1c_c03081{bottom:165.866875pt;}
.y1b_c03081{bottom:174.507067pt;}
.y18_c03081{bottom:245.225371pt;}
.y17_c03081{bottom:317.225563pt;}
.y15_c03081{bottom:361.386427pt;}
.y11_c03081{bottom:377.386939pt;}
.y16_c03081{bottom:407.786011pt;}
.y14_c03081{bottom:437.226235pt;}
.y13_c03081{bottom:453.226747pt;}
.y10_c03081{bottom:482.666971pt;}
.y12_c03081{bottom:497.386555pt;}
.yf_c03081{bottom:513.387067pt;}
.y1d_c03081{bottom:546.027067pt;}
.yb_c03081{bottom:593.385179pt;}
.yd_c03081{bottom:628.586875pt;}
.yc_c03081{bottom:637.227067pt;}
.ya_c03081{bottom:707.945339pt;}
.y9_c03081{bottom:779.945531pt;}
.y7_c03081{bottom:823.786427pt;}
.y3_c03081{bottom:839.786939pt;}
.y8_c03081{bottom:870.505979pt;}
.y6_c03081{bottom:899.946203pt;}
.y5_c03081{bottom:915.946715pt;}
.y2_c03081{bottom:945.386939pt;}
.y4_c03081{bottom:959.786555pt;}
.y1_c03081{bottom:975.787067pt;}
.ye_c03081{bottom:1008.747067pt;}
.h3_c03081{height:28.916250pt;}
.h1_c03081{height:37.063125pt;}
.h2_c03081{height:37.166250pt;}
.h4_c03081{height:48.581988pt;}
.h0_c03081{height:1122.666667pt;}
.w1_c03081{width:793.333333pt;}
.w0_c03081{width:793.626667pt;}
.x0_c03081{left:0.000000pt;}
.xd_c03081{left:104.000000pt;}
.x8_c03081{left:391.999872pt;}
.x4_c03081{left:396.160512pt;}
.xb_c03081{left:400.960000pt;}
.x7_c03081{left:404.799648pt;}
.x5_c03081{left:410.560128pt;}
.x1_c03081{left:411.840000pt;}
.xa_c03081{left:429.760320pt;}
.x9_c03081{left:437.439552pt;}
.x6_c03081{left:438.400512pt;}
.xc_c03081{left:450.560320pt;}
.x3_c03081{left:455.039904pt;}
.x2_c03081{left:468.159648pt;}
.xe_c03081{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03082 {
    display:none;
  }
  .loading-indicator_c03082.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03082 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03082 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03082" -> "#page-container .classname_c03082")
 */
.pf_c03082 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03082 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03082.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03082 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03082 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03082 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03082 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03082 {overflow:visible;}
  }
}
.c_c03082 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03082 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03082:after { /* webkit #35443 */
  content: '';
}
.t_c03082:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03082 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03082 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03082 { /* info for Javascript */
  display:none;
}
.l_c03082 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03082 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03082 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03082:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03082 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03082.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03082.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03082 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03082;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03082{font-family:ff1_c03082;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03082;src:url('chunks/assets/font_817256457234ab0bc024f43d.woff2')format("woff");}.ff2_c03082{font-family:ff2_c03082;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03082;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03082{font-family:ff3_c03082;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03082{vertical-align:0.000000px;}
.v2_c03082{vertical-align:1.439424px;}
.v1_c03082{vertical-align:33.121440px;}
.ls1a_c03082{letter-spacing:-1.197504px;}
.ls11_c03082{letter-spacing:-0.841104px;}
.lsc_c03082{letter-spacing:-0.760320px;}
.ls1b_c03082{letter-spacing:-0.693792px;}
.ls18_c03082{letter-spacing:-0.613008px;}
.ls9_c03082{letter-spacing:-0.574992px;}
.ls19_c03082{letter-spacing:-0.361152px;}
.ls15_c03082{letter-spacing:-0.342144px;}
.ls13_c03082{letter-spacing:-0.275616px;}
.ls8_c03082{letter-spacing:-0.266112px;}
.lsf_c03082{letter-spacing:-0.261360px;}
.ls6_c03082{letter-spacing:-0.242352px;}
.ls12_c03082{letter-spacing:-0.237600px;}
.ls3_c03082{letter-spacing:-0.118800px;}
.ls17_c03082{letter-spacing:0.000000px;}
.ls0_c03082{letter-spacing:0.006048px;}
.lse_c03082{letter-spacing:0.038016px;}
.ls4_c03082{letter-spacing:0.128304px;}
.lsd_c03082{letter-spacing:0.508464px;}
.ls16_c03082{letter-spacing:0.514080px;}
.ls10_c03082{letter-spacing:0.536976px;}
.lsb_c03082{letter-spacing:0.579744px;}
.ls14_c03082{letter-spacing:0.594000px;}
.ls7_c03082{letter-spacing:0.598752px;}
.ls1_c03082{letter-spacing:0.613008px;}
.lsa_c03082{letter-spacing:0.665280px;}
.ls5_c03082{letter-spacing:0.670032px;}
.ls2_c03082{letter-spacing:0.717552px;}
.sc__c03082{text-shadow:none;}
.sc0_c03082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03082{-webkit-text-stroke:0px transparent;}
.sc0_c03082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03082{word-spacing:-15.126048px;}
.ws13_c03082{word-spacing:-12.474000px;}
.ws8_c03082{word-spacing:-12.459744px;}
.ws12_c03082{word-spacing:-12.416976px;}
.ws10_c03082{word-spacing:-11.637648px;}
.wsf_c03082{word-spacing:-11.266992px;}
.ws16_c03082{word-spacing:-1.031184px;}
.ws19_c03082{word-spacing:-1.026432px;}
.ws14_c03082{word-spacing:-0.974160px;}
.ws1f_c03082{word-spacing:-0.719712px;}
.ws1b_c03082{word-spacing:-0.399168px;}
.ws17_c03082{word-spacing:-0.118800px;}
.ws1c_c03082{word-spacing:-0.099792px;}
.ws18_c03082{word-spacing:-0.095040px;}
.ws1d_c03082{word-spacing:-0.085536px;}
.ws1e_c03082{word-spacing:-0.019008px;}
.ws15_c03082{word-spacing:0.000000px;}
.ws20_c03082{word-spacing:0.332640px;}
.ws1a_c03082{word-spacing:0.399168px;}
.wsb_c03082{word-spacing:0.836352px;}
.ws2_c03082{word-spacing:1.330560px;}
.wsa_c03082{word-spacing:3.483216px;}
.ws6_c03082{word-spacing:15.724368px;}
.wsc_c03082{word-spacing:30.298752px;}
.wsd_c03082{word-spacing:33.300288px;}
.ws9_c03082{word-spacing:34.836912px;}
.ws11_c03082{word-spacing:36.143712px;}
.ws5_c03082{word-spacing:36.742464px;}
.ws1_c03082{word-spacing:37.759392px;}
.ws0_c03082{word-spacing:38.020752px;}
.ws3_c03082{word-spacing:39.218256px;}
.ws4_c03082{word-spacing:39.902544px;}
.ws7_c03082{word-spacing:42.026688px;}
._0_c03082{margin-left:-1.948320px;}
._2_c03082{width:1.183248px;}
._5_c03082{width:2.318976px;}
._4_c03082{width:4.832784px;}
._b_c03082{width:14.332032px;}
._9_c03082{width:15.748128px;}
._8_c03082{width:17.663184px;}
._a_c03082{width:18.965232px;}
._6_c03082{width:29.120256px;}
._7_c03082{width:31.957200px;}
._1_c03082{width:50.252400px;}
._3_c03082{width:51.544944px;}
.fc0_c03082{color:rgb(0,0,0);}
.fs0_c03082{font-size:47.520000px;}
.fs1_c03082{font-size:60.480000px;}
.y0_c03082{bottom:0.000000px;}
.y1c_c03082{bottom:146.998362px;}
.y1e_c03082{bottom:186.600234px;}
.y1d_c03082{bottom:196.320450px;}
.y1b_c03082{bottom:275.878542px;}
.y1a_c03082{bottom:356.878758px;}
.y18_c03082{bottom:406.559730px;}
.y14_c03082{bottom:424.560306px;}
.y19_c03082{bottom:458.759262px;}
.y17_c03082{bottom:491.879514px;}
.y16_c03082{bottom:509.880090px;}
.y13_c03082{bottom:543.000342px;}
.y15_c03082{bottom:559.559874px;}
.y12_c03082{bottom:577.560450px;}
.y1f_c03082{bottom:614.280450px;}
.ye_c03082{bottom:637.320162px;}
.yd_c03082{bottom:652.439838px;}
.yc_c03082{bottom:667.559514px;}
.y10_c03082{bottom:707.160234px;}
.yf_c03082{bottom:716.880450px;}
.yb_c03082{bottom:796.439694px;}
.ya_c03082{bottom:877.439910px;}
.y8_c03082{bottom:912.000018px;}
.y7_c03082{bottom:926.759730px;}
.y3_c03082{bottom:944.760306px;}
.y9_c03082{bottom:979.320414px;}
.y6_c03082{bottom:1012.439478px;}
.y5_c03082{bottom:1030.440054px;}
.y2_c03082{bottom:1063.560306px;}
.y4_c03082{bottom:1079.759874px;}
.y1_c03082{bottom:1097.760450px;}
.y11_c03082{bottom:1134.840450px;}
.h3_c03082{height:32.530781px;}
.h1_c03082{height:41.696016px;}
.h2_c03082{height:41.812031px;}
.h5_c03082{height:54.654737px;}
.h4_c03082{height:74.817456px;}
.h0_c03082{height:1263.000000px;}
.w1_c03082{width:892.500000px;}
.w0_c03082{width:892.830000px;}
.x0_c03082{left:0.000000px;}
.xe_c03082{left:117.000000px;}
.x9_c03082{left:440.999856px;}
.x4_c03082{left:445.680576px;}
.xc_c03082{left:451.080000px;}
.x7_c03082{left:455.399604px;}
.x5_c03082{left:461.880144px;}
.x1_c03082{left:463.320000px;}
.xb_c03082{left:483.480360px;}
.xa_c03082{left:492.119496px;}
.x6_c03082{left:493.200576px;}
.xd_c03082{left:506.880360px;}
.x3_c03082{left:511.919892px;}
.x2_c03082{left:526.679604px;}
.x8_c03082{left:569.880036px;}
@media print{
.v0_c03082{vertical-align:0.000000pt;}
.v2_c03082{vertical-align:1.279488pt;}
.v1_c03082{vertical-align:29.441280pt;}
.ls1a_c03082{letter-spacing:-1.064448pt;}
.ls11_c03082{letter-spacing:-0.747648pt;}
.lsc_c03082{letter-spacing:-0.675840pt;}
.ls1b_c03082{letter-spacing:-0.616704pt;}
.ls18_c03082{letter-spacing:-0.544896pt;}
.ls9_c03082{letter-spacing:-0.511104pt;}
.ls19_c03082{letter-spacing:-0.321024pt;}
.ls15_c03082{letter-spacing:-0.304128pt;}
.ls13_c03082{letter-spacing:-0.244992pt;}
.ls8_c03082{letter-spacing:-0.236544pt;}
.lsf_c03082{letter-spacing:-0.232320pt;}
.ls6_c03082{letter-spacing:-0.215424pt;}
.ls12_c03082{letter-spacing:-0.211200pt;}
.ls3_c03082{letter-spacing:-0.105600pt;}
.ls17_c03082{letter-spacing:0.000000pt;}
.ls0_c03082{letter-spacing:0.005376pt;}
.lse_c03082{letter-spacing:0.033792pt;}
.ls4_c03082{letter-spacing:0.114048pt;}
.lsd_c03082{letter-spacing:0.451968pt;}
.ls16_c03082{letter-spacing:0.456960pt;}
.ls10_c03082{letter-spacing:0.477312pt;}
.lsb_c03082{letter-spacing:0.515328pt;}
.ls14_c03082{letter-spacing:0.528000pt;}
.ls7_c03082{letter-spacing:0.532224pt;}
.ls1_c03082{letter-spacing:0.544896pt;}
.lsa_c03082{letter-spacing:0.591360pt;}
.ls5_c03082{letter-spacing:0.595584pt;}
.ls2_c03082{letter-spacing:0.637824pt;}
.wse_c03082{word-spacing:-13.445376pt;}
.ws13_c03082{word-spacing:-11.088000pt;}
.ws8_c03082{word-spacing:-11.075328pt;}
.ws12_c03082{word-spacing:-11.037312pt;}
.ws10_c03082{word-spacing:-10.344576pt;}
.wsf_c03082{word-spacing:-10.015104pt;}
.ws16_c03082{word-spacing:-0.916608pt;}
.ws19_c03082{word-spacing:-0.912384pt;}
.ws14_c03082{word-spacing:-0.865920pt;}
.ws1f_c03082{word-spacing:-0.639744pt;}
.ws1b_c03082{word-spacing:-0.354816pt;}
.ws17_c03082{word-spacing:-0.105600pt;}
.ws1c_c03082{word-spacing:-0.088704pt;}
.ws18_c03082{word-spacing:-0.084480pt;}
.ws1d_c03082{word-spacing:-0.076032pt;}
.ws1e_c03082{word-spacing:-0.016896pt;}
.ws15_c03082{word-spacing:0.000000pt;}
.ws20_c03082{word-spacing:0.295680pt;}
.ws1a_c03082{word-spacing:0.354816pt;}
.wsb_c03082{word-spacing:0.743424pt;}
.ws2_c03082{word-spacing:1.182720pt;}
.wsa_c03082{word-spacing:3.096192pt;}
.ws6_c03082{word-spacing:13.977216pt;}
.wsc_c03082{word-spacing:26.932224pt;}
.wsd_c03082{word-spacing:29.600256pt;}
.ws9_c03082{word-spacing:30.966144pt;}
.ws11_c03082{word-spacing:32.127744pt;}
.ws5_c03082{word-spacing:32.659968pt;}
.ws1_c03082{word-spacing:33.563904pt;}
.ws0_c03082{word-spacing:33.796224pt;}
.ws3_c03082{word-spacing:34.860672pt;}
.ws4_c03082{word-spacing:35.468928pt;}
.ws7_c03082{word-spacing:37.357056pt;}
._0_c03082{margin-left:-1.731840pt;}
._2_c03082{width:1.051776pt;}
._5_c03082{width:2.061312pt;}
._4_c03082{width:4.295808pt;}
._b_c03082{width:12.739584pt;}
._9_c03082{width:13.998336pt;}
._8_c03082{width:15.700608pt;}
._a_c03082{width:16.857984pt;}
._6_c03082{width:25.884672pt;}
._7_c03082{width:28.406400pt;}
._1_c03082{width:44.668800pt;}
._3_c03082{width:45.817728pt;}
.fs0_c03082{font-size:42.240000pt;}
.fs1_c03082{font-size:53.760000pt;}
.y0_c03082{bottom:0.000000pt;}
.y1c_c03082{bottom:130.665211pt;}
.y1e_c03082{bottom:165.866875pt;}
.y1d_c03082{bottom:174.507067pt;}
.y1b_c03082{bottom:245.225371pt;}
.y1a_c03082{bottom:317.225563pt;}
.y18_c03082{bottom:361.386427pt;}
.y14_c03082{bottom:377.386939pt;}
.y19_c03082{bottom:407.786011pt;}
.y17_c03082{bottom:437.226235pt;}
.y16_c03082{bottom:453.226747pt;}
.y13_c03082{bottom:482.666971pt;}
.y15_c03082{bottom:497.386555pt;}
.y12_c03082{bottom:513.387067pt;}
.y1f_c03082{bottom:546.027067pt;}
.ye_c03082{bottom:566.506811pt;}
.yd_c03082{bottom:579.946523pt;}
.yc_c03082{bottom:593.386235pt;}
.y10_c03082{bottom:628.586875pt;}
.yf_c03082{bottom:637.227067pt;}
.yb_c03082{bottom:707.946395pt;}
.ya_c03082{bottom:779.946587pt;}
.y8_c03082{bottom:810.666683pt;}
.y7_c03082{bottom:823.786427pt;}
.y3_c03082{bottom:839.786939pt;}
.y9_c03082{bottom:870.507035pt;}
.y6_c03082{bottom:899.946203pt;}
.y5_c03082{bottom:915.946715pt;}
.y2_c03082{bottom:945.386939pt;}
.y4_c03082{bottom:959.786555pt;}
.y1_c03082{bottom:975.787067pt;}
.y11_c03082{bottom:1008.747067pt;}
.h3_c03082{height:28.916250pt;}
.h1_c03082{height:37.063125pt;}
.h2_c03082{height:37.166250pt;}
.h5_c03082{height:48.581988pt;}
.h4_c03082{height:66.504405pt;}
.h0_c03082{height:1122.666667pt;}
.w1_c03082{width:793.333333pt;}
.w0_c03082{width:793.626667pt;}
.x0_c03082{left:0.000000pt;}
.xe_c03082{left:104.000000pt;}
.x9_c03082{left:391.999872pt;}
.x4_c03082{left:396.160512pt;}
.xc_c03082{left:400.960000pt;}
.x7_c03082{left:404.799648pt;}
.x5_c03082{left:410.560128pt;}
.x1_c03082{left:411.840000pt;}
.xb_c03082{left:429.760320pt;}
.xa_c03082{left:437.439552pt;}
.x6_c03082{left:438.400512pt;}
.xd_c03082{left:450.560320pt;}
.x3_c03082{left:455.039904pt;}
.x2_c03082{left:468.159648pt;}
.x8_c03082{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03083 {
    display:none;
  }
  .loading-indicator_c03083.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03083 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03083 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03083" -> "#page-container .classname_c03083")
 */
.pf_c03083 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03083 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03083.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03083 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03083 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03083 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03083 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03083 {overflow:visible;}
  }
}
.c_c03083 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03083 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03083:after { /* webkit #35443 */
  content: '';
}
.t_c03083:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03083 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03083 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03083 { /* info for Javascript */
  display:none;
}
.l_c03083 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03083 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03083 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03083:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03083 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03083.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03083.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03083 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03083{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03083;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03083{font-family:ff1_c03083;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03083;src:url('chunks/assets/font_fd7a9d861881622eba9fd4cd.woff2')format("woff");}.ff2_c03083{font-family:ff2_c03083;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03083;src:url('chunks/assets/font_f91fffe4b4bba1f6d307fd0d.woff2')format("woff");}.ff3_c03083{font-family:ff3_c03083;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03083{vertical-align:0.000000px;}
.v1_c03083{vertical-align:1.439424px;}
.ls17_c03083{letter-spacing:-0.793584px;}
.ls19_c03083{letter-spacing:-0.755568px;}
.ls1b_c03083{letter-spacing:-0.722304px;}
.lsc_c03083{letter-spacing:-0.574992px;}
.ls10_c03083{letter-spacing:-0.365904px;}
.ls1a_c03083{letter-spacing:-0.342144px;}
.ls6_c03083{letter-spacing:-0.304128px;}
.lsb_c03083{letter-spacing:-0.285120px;}
.ls13_c03083{letter-spacing:-0.275616px;}
.ls11_c03083{letter-spacing:-0.261360px;}
.ls8_c03083{letter-spacing:-0.242352px;}
.ls9_c03083{letter-spacing:-0.237600px;}
.ls5_c03083{letter-spacing:-0.228096px;}
.ls4_c03083{letter-spacing:-0.118800px;}
.ls16_c03083{letter-spacing:0.000000px;}
.ls1_c03083{letter-spacing:0.006048px;}
.lse_c03083{letter-spacing:0.057024px;}
.ls7_c03083{letter-spacing:0.128304px;}
.lsf_c03083{letter-spacing:0.508464px;}
.ls15_c03083{letter-spacing:0.514080px;}
.ls12_c03083{letter-spacing:0.536976px;}
.lsd_c03083{letter-spacing:0.579744px;}
.ls14_c03083{letter-spacing:0.594000px;}
.lsa_c03083{letter-spacing:0.598752px;}
.ls2_c03083{letter-spacing:0.613008px;}
.ls18_c03083{letter-spacing:0.684288px;}
.ls3_c03083{letter-spacing:0.717552px;}
.ls0_c03083{letter-spacing:0.722304px;}
.sc__c03083{text-shadow:none;}
.sc0_c03083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03083{-webkit-text-stroke:0px transparent;}
.sc0_c03083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03083{word-spacing:-15.126048px;}
.wsa_c03083{word-spacing:-12.474000px;}
.ws8_c03083{word-spacing:-12.459744px;}
.ws9_c03083{word-spacing:-12.416976px;}
.ws7_c03083{word-spacing:-12.388464px;}
.ws0_c03083{word-spacing:-11.761200px;}
.ws1_c03083{word-spacing:-11.651904px;}
.ws3_c03083{word-spacing:-11.642400px;}
.ws14_c03083{word-spacing:-11.157696px;}
.ws1a_c03083{word-spacing:-1.083456px;}
.ws15_c03083{word-spacing:-0.974160px;}
.ws1f_c03083{word-spacing:-0.719712px;}
.ws1b_c03083{word-spacing:-0.418176px;}
.ws18_c03083{word-spacing:-0.118800px;}
.ws1d_c03083{word-spacing:-0.099792px;}
.ws1e_c03083{word-spacing:-0.085536px;}
.ws19_c03083{word-spacing:-0.076032px;}
.ws17_c03083{word-spacing:-0.057024px;}
.ws21_c03083{word-spacing:-0.019008px;}
.ws16_c03083{word-spacing:0.000000px;}
.ws1c_c03083{word-spacing:0.004752px;}
.ws20_c03083{word-spacing:0.432432px;}
.ws10_c03083{word-spacing:3.673296px;}
.ws11_c03083{word-spacing:10.297584px;}
.ws13_c03083{word-spacing:26.554176px;}
.wsb_c03083{word-spacing:33.300288px;}
.ws12_c03083{word-spacing:34.836912px;}
.wsf_c03083{word-spacing:36.143712px;}
.ws6_c03083{word-spacing:36.742464px;}
.ws2_c03083{word-spacing:37.759392px;}
.wsd_c03083{word-spacing:38.020752px;}
.ws4_c03083{word-spacing:39.218256px;}
.ws5_c03083{word-spacing:39.902544px;}
.wse_c03083{word-spacing:42.026688px;}
._0_c03083{margin-left:-1.948320px;}
._2_c03083{width:1.406592px;}
._4_c03083{width:6.011280px;}
._5_c03083{width:15.120864px;}
._6_c03083{width:18.865440px;}
._7_c03083{width:20.656944px;}
._9_c03083{width:22.648032px;}
._8_c03083{width:23.674464px;}
._b_c03083{width:36.272016px;}
._a_c03083{width:40.496544px;}
._1_c03083{width:50.252400px;}
._3_c03083{width:51.834816px;}
.fc0_c03083{color:rgb(0,0,0);}
.fs0_c03083{font-size:47.520000px;}
.fs1_c03083{font-size:60.480000px;}
.y0_c03083{bottom:0.000000px;}
.y4_c03083{bottom:18.360450px;}
.ye_c03083{bottom:66.240450px;}
.y22_c03083{bottom:131.879874px;}
.y21_c03083{bottom:146.999550px;}
.y24_c03083{bottom:186.600234px;}
.y23_c03083{bottom:196.320450px;}
.y20_c03083{bottom:275.879730px;}
.y1f_c03083{bottom:326.999370px;}
.y1e_c03083{bottom:341.759082px;}
.y1d_c03083{bottom:356.878758px;}
.y1b_c03083{bottom:406.559730px;}
.y17_c03083{bottom:424.560306px;}
.y1c_c03083{bottom:458.759262px;}
.y1a_c03083{bottom:491.879514px;}
.y19_c03083{bottom:509.880090px;}
.y16_c03083{bottom:543.000342px;}
.y18_c03083{bottom:559.559874px;}
.y15_c03083{bottom:577.560450px;}
.y25_c03083{bottom:614.280450px;}
.y11_c03083{bottom:667.560054px;}
.y13_c03083{bottom:707.160234px;}
.y12_c03083{bottom:716.880450px;}
.y10_c03083{bottom:796.440234px;}
.yd_c03083{bottom:811.200000px;}
.yc_c03083{bottom:877.438866px;}
.yf_c03083{bottom:877.440450px;}
.ya_c03083{bottom:926.759874px;}
.y6_c03083{bottom:944.760450px;}
.yb_c03083{bottom:979.319370px;}
.y9_c03083{bottom:1012.439622px;}
.y8_c03083{bottom:1030.440198px;}
.y3_c03083{bottom:1045.200000px;}
.y2_c03083{bottom:1063.560306px;}
.y5_c03083{bottom:1063.560450px;}
.y7_c03083{bottom:1079.760018px;}
.y1_c03083{bottom:1097.760450px;}
.y14_c03083{bottom:1134.840450px;}
.h3_c03083{height:29.520000px;}
.h2_c03083{height:32.530781px;}
.h1_c03083{height:41.696016px;}
.h4_c03083{height:41.812031px;}
.h6_c03083{height:54.654737px;}
.h5_c03083{height:78.840000px;}
.h0_c03083{height:1263.000000px;}
.w2_c03083{width:215.280000px;}
.w1_c03083{width:892.500000px;}
.w0_c03083{width:892.830000px;}
.x0_c03083{left:0.000000px;}
.x10_c03083{left:117.000000px;}
.xa_c03083{left:441.000504px;}
.x6_c03083{left:445.681224px;}
.xe_c03083{left:451.080000px;}
.x9_c03083{left:455.400252px;}
.x7_c03083{left:461.880792px;}
.x1_c03083{left:463.320000px;}
.xd_c03083{left:483.480000px;}
.xb_c03083{left:492.120144px;}
.x8_c03083{left:493.201224px;}
.xf_c03083{left:506.880360px;}
.x5_c03083{left:511.920540px;}
.x2_c03083{left:526.679604px;}
.x3_c03083{left:569.520000px;}
.x4_c03083{left:612.360000px;}
.xc_c03083{left:661.680000px;}
@media print{
.v0_c03083{vertical-align:0.000000pt;}
.v1_c03083{vertical-align:1.279488pt;}
.ls17_c03083{letter-spacing:-0.705408pt;}
.ls19_c03083{letter-spacing:-0.671616pt;}
.ls1b_c03083{letter-spacing:-0.642048pt;}
.lsc_c03083{letter-spacing:-0.511104pt;}
.ls10_c03083{letter-spacing:-0.325248pt;}
.ls1a_c03083{letter-spacing:-0.304128pt;}
.ls6_c03083{letter-spacing:-0.270336pt;}
.lsb_c03083{letter-spacing:-0.253440pt;}
.ls13_c03083{letter-spacing:-0.244992pt;}
.ls11_c03083{letter-spacing:-0.232320pt;}
.ls8_c03083{letter-spacing:-0.215424pt;}
.ls9_c03083{letter-spacing:-0.211200pt;}
.ls5_c03083{letter-spacing:-0.202752pt;}
.ls4_c03083{letter-spacing:-0.105600pt;}
.ls16_c03083{letter-spacing:0.000000pt;}
.ls1_c03083{letter-spacing:0.005376pt;}
.lse_c03083{letter-spacing:0.050688pt;}
.ls7_c03083{letter-spacing:0.114048pt;}
.lsf_c03083{letter-spacing:0.451968pt;}
.ls15_c03083{letter-spacing:0.456960pt;}
.ls12_c03083{letter-spacing:0.477312pt;}
.lsd_c03083{letter-spacing:0.515328pt;}
.ls14_c03083{letter-spacing:0.528000pt;}
.lsa_c03083{letter-spacing:0.532224pt;}
.ls2_c03083{letter-spacing:0.544896pt;}
.ls18_c03083{letter-spacing:0.608256pt;}
.ls3_c03083{letter-spacing:0.637824pt;}
.ls0_c03083{letter-spacing:0.642048pt;}
.wsc_c03083{word-spacing:-13.445376pt;}
.wsa_c03083{word-spacing:-11.088000pt;}
.ws8_c03083{word-spacing:-11.075328pt;}
.ws9_c03083{word-spacing:-11.037312pt;}
.ws7_c03083{word-spacing:-11.011968pt;}
.ws0_c03083{word-spacing:-10.454400pt;}
.ws1_c03083{word-spacing:-10.357248pt;}
.ws3_c03083{word-spacing:-10.348800pt;}
.ws14_c03083{word-spacing:-9.917952pt;}
.ws1a_c03083{word-spacing:-0.963072pt;}
.ws15_c03083{word-spacing:-0.865920pt;}
.ws1f_c03083{word-spacing:-0.639744pt;}
.ws1b_c03083{word-spacing:-0.371712pt;}
.ws18_c03083{word-spacing:-0.105600pt;}
.ws1d_c03083{word-spacing:-0.088704pt;}
.ws1e_c03083{word-spacing:-0.076032pt;}
.ws19_c03083{word-spacing:-0.067584pt;}
.ws17_c03083{word-spacing:-0.050688pt;}
.ws21_c03083{word-spacing:-0.016896pt;}
.ws16_c03083{word-spacing:0.000000pt;}
.ws1c_c03083{word-spacing:0.004224pt;}
.ws20_c03083{word-spacing:0.384384pt;}
.ws10_c03083{word-spacing:3.265152pt;}
.ws11_c03083{word-spacing:9.153408pt;}
.ws13_c03083{word-spacing:23.603712pt;}
.wsb_c03083{word-spacing:29.600256pt;}
.ws12_c03083{word-spacing:30.966144pt;}
.wsf_c03083{word-spacing:32.127744pt;}
.ws6_c03083{word-spacing:32.659968pt;}
.ws2_c03083{word-spacing:33.563904pt;}
.wsd_c03083{word-spacing:33.796224pt;}
.ws4_c03083{word-spacing:34.860672pt;}
.ws5_c03083{word-spacing:35.468928pt;}
.wse_c03083{word-spacing:37.357056pt;}
._0_c03083{margin-left:-1.731840pt;}
._2_c03083{width:1.250304pt;}
._4_c03083{width:5.343360pt;}
._5_c03083{width:13.440768pt;}
._6_c03083{width:16.769280pt;}
._7_c03083{width:18.361728pt;}
._9_c03083{width:20.131584pt;}
._8_c03083{width:21.043968pt;}
._b_c03083{width:32.241792pt;}
._a_c03083{width:35.996928pt;}
._1_c03083{width:44.668800pt;}
._3_c03083{width:46.075392pt;}
.fs0_c03083{font-size:42.240000pt;}
.fs1_c03083{font-size:53.760000pt;}
.y0_c03083{bottom:0.000000pt;}
.y4_c03083{bottom:16.320400pt;}
.ye_c03083{bottom:58.880400pt;}
.y22_c03083{bottom:117.226555pt;}
.y21_c03083{bottom:130.666267pt;}
.y24_c03083{bottom:165.866875pt;}
.y23_c03083{bottom:174.507067pt;}
.y20_c03083{bottom:245.226427pt;}
.y1f_c03083{bottom:290.666107pt;}
.y1e_c03083{bottom:303.785851pt;}
.y1d_c03083{bottom:317.225563pt;}
.y1b_c03083{bottom:361.386427pt;}
.y17_c03083{bottom:377.386939pt;}
.y1c_c03083{bottom:407.786011pt;}
.y1a_c03083{bottom:437.226235pt;}
.y19_c03083{bottom:453.226747pt;}
.y16_c03083{bottom:482.666971pt;}
.y18_c03083{bottom:497.386555pt;}
.y15_c03083{bottom:513.387067pt;}
.y25_c03083{bottom:546.027067pt;}
.y11_c03083{bottom:593.386715pt;}
.y13_c03083{bottom:628.586875pt;}
.y12_c03083{bottom:637.227067pt;}
.y10_c03083{bottom:707.946875pt;}
.yd_c03083{bottom:721.066667pt;}
.yc_c03083{bottom:779.945659pt;}
.yf_c03083{bottom:779.947067pt;}
.ya_c03083{bottom:823.786555pt;}
.y6_c03083{bottom:839.787067pt;}
.yb_c03083{bottom:870.506107pt;}
.y9_c03083{bottom:899.946331pt;}
.y8_c03083{bottom:915.946843pt;}
.y3_c03083{bottom:929.066667pt;}
.y2_c03083{bottom:945.386939pt;}
.y5_c03083{bottom:945.387067pt;}
.y7_c03083{bottom:959.786683pt;}
.y1_c03083{bottom:975.787067pt;}
.y14_c03083{bottom:1008.747067pt;}
.h3_c03083{height:26.240000pt;}
.h2_c03083{height:28.916250pt;}
.h1_c03083{height:37.063125pt;}
.h4_c03083{height:37.166250pt;}
.h6_c03083{height:48.581988pt;}
.h5_c03083{height:70.080000pt;}
.h0_c03083{height:1122.666667pt;}
.w2_c03083{width:191.360000pt;}
.w1_c03083{width:793.333333pt;}
.w0_c03083{width:793.626667pt;}
.x0_c03083{left:0.000000pt;}
.x10_c03083{left:104.000000pt;}
.xa_c03083{left:392.000448pt;}
.x6_c03083{left:396.161088pt;}
.xe_c03083{left:400.960000pt;}
.x9_c03083{left:404.800224pt;}
.x7_c03083{left:410.560704pt;}
.x1_c03083{left:411.840000pt;}
.xd_c03083{left:429.760000pt;}
.xb_c03083{left:437.440128pt;}
.x8_c03083{left:438.401088pt;}
.xf_c03083{left:450.560320pt;}
.x5_c03083{left:455.040480pt;}
.x2_c03083{left:468.159648pt;}
.x3_c03083{left:506.240000pt;}
.x4_c03083{left:544.320000pt;}
.xc_c03083{left:588.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03084 {
    display:none;
  }
  .loading-indicator_c03084.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03084 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03084 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03084" -> "#page-container .classname_c03084")
 */
.pf_c03084 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03084 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03084 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03084 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03084 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03084 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03084 {overflow:visible;}
  }
}
.c_c03084 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03084 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03084:after { /* webkit #35443 */
  content: '';
}
.t_c03084:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03084 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03084 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03084 { /* info for Javascript */
  display:none;
}
.l_c03084 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03084 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03084 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03084:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03084 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03084.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03084 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03084{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03084;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03084{font-family:ff1_c03084;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03084;src:url('chunks/assets/font_4e0a013380ef015f5617cde5.woff2')format("woff");}.ff2_c03084{font-family:ff2_c03084;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03084;src:url('chunks/assets/font_e3d6574896b951687f848866.woff2')format("woff");}.ff3_c03084{font-family:ff3_c03084;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03084{vertical-align:0.000000px;}
.v1_c03084{vertical-align:1.439424px;}
.ls17_c03084{letter-spacing:-1.197504px;}
.lse_c03084{letter-spacing:-0.793584px;}
.lsb_c03084{letter-spacing:-0.765072px;}
.lsa_c03084{letter-spacing:-0.574992px;}
.ls10_c03084{letter-spacing:-0.342144px;}
.ls16_c03084{letter-spacing:-0.294624px;}
.ls9_c03084{letter-spacing:-0.285120px;}
.ls12_c03084{letter-spacing:-0.275616px;}
.lsf_c03084{letter-spacing:-0.261360px;}
.ls6_c03084{letter-spacing:-0.242352px;}
.ls7_c03084{letter-spacing:-0.237600px;}
.ls4_c03084{letter-spacing:-0.118800px;}
.ls15_c03084{letter-spacing:0.000000px;}
.ls1_c03084{letter-spacing:0.006048px;}
.ls5_c03084{letter-spacing:0.128304px;}
.lsd_c03084{letter-spacing:0.508464px;}
.ls14_c03084{letter-spacing:0.514080px;}
.ls11_c03084{letter-spacing:0.536976px;}
.lsc_c03084{letter-spacing:0.579744px;}
.ls13_c03084{letter-spacing:0.594000px;}
.ls8_c03084{letter-spacing:0.598752px;}
.ls2_c03084{letter-spacing:0.613008px;}
.ls3_c03084{letter-spacing:0.717552px;}
.ls0_c03084{letter-spacing:0.722304px;}
.sc__c03084{text-shadow:none;}
.sc0_c03084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03084{-webkit-text-stroke:0px transparent;}
.sc0_c03084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03084{word-spacing:-15.126048px;}
.wsa_c03084{word-spacing:-12.474000px;}
.ws5_c03084{word-spacing:-12.459744px;}
.ws9_c03084{word-spacing:-12.416976px;}
.ws8_c03084{word-spacing:-12.008304px;}
.ws2_c03084{word-spacing:-11.642400px;}
.wsd_c03084{word-spacing:-11.637648px;}
.wsf_c03084{word-spacing:-10.682496px;}
.ws17_c03084{word-spacing:-1.083456px;}
.ws11_c03084{word-spacing:-0.974160px;}
.ws1b_c03084{word-spacing:-0.719712px;}
.ws1e_c03084{word-spacing:-0.123552px;}
.ws13_c03084{word-spacing:-0.118800px;}
.ws18_c03084{word-spacing:-0.099792px;}
.ws1a_c03084{word-spacing:-0.085536px;}
.ws14_c03084{word-spacing:-0.076032px;}
.ws1c_c03084{word-spacing:-0.066528px;}
.ws19_c03084{word-spacing:-0.019008px;}
.ws12_c03084{word-spacing:0.000000px;}
.ws15_c03084{word-spacing:0.403920px;}
.ws16_c03084{word-spacing:0.432432px;}
.ws1d_c03084{word-spacing:0.836352px;}
.wsb_c03084{word-spacing:33.300288px;}
.ws10_c03084{word-spacing:34.836912px;}
.ws7_c03084{word-spacing:36.143712px;}
.wse_c03084{word-spacing:36.742464px;}
.ws1_c03084{word-spacing:37.759392px;}
.ws0_c03084{word-spacing:38.020752px;}
.ws3_c03084{word-spacing:39.218256px;}
.ws4_c03084{word-spacing:39.902544px;}
.ws6_c03084{word-spacing:42.026688px;}
._0_c03084{margin-left:-1.948320px;}
._2_c03084{width:1.482624px;}
._7_c03084{width:2.974752px;}
._4_c03084{width:5.935248px;}
._6_c03084{width:7.779024px;}
._5_c03084{width:16.247088px;}
._1_c03084{width:50.252400px;}
._3_c03084{width:51.530688px;}
.fc0_c03084{color:rgb(0,0,0);}
.fs0_c03084{font-size:47.520000px;}
.fs1_c03084{font-size:60.480000px;}
.y0_c03084{bottom:0.000000px;}
.y19_c03084{bottom:146.998362px;}
.y1b_c03084{bottom:186.600234px;}
.y1a_c03084{bottom:196.320450px;}
.y18_c03084{bottom:275.878542px;}
.y17_c03084{bottom:356.878758px;}
.y15_c03084{bottom:406.559730px;}
.y11_c03084{bottom:424.560306px;}
.y16_c03084{bottom:458.759262px;}
.y14_c03084{bottom:491.879514px;}
.y13_c03084{bottom:509.880090px;}
.y10_c03084{bottom:543.000342px;}
.y12_c03084{bottom:559.559874px;}
.yf_c03084{bottom:577.560450px;}
.y1c_c03084{bottom:614.280450px;}
.yb_c03084{bottom:667.558326px;}
.yd_c03084{bottom:707.160234px;}
.yc_c03084{bottom:716.880450px;}
.ya_c03084{bottom:796.438506px;}
.y9_c03084{bottom:877.438722px;}
.y7_c03084{bottom:926.759730px;}
.y3_c03084{bottom:944.760306px;}
.y8_c03084{bottom:979.319226px;}
.y6_c03084{bottom:1012.439478px;}
.y5_c03084{bottom:1030.440054px;}
.y2_c03084{bottom:1063.560306px;}
.y4_c03084{bottom:1079.759874px;}
.y1_c03084{bottom:1097.760450px;}
.ye_c03084{bottom:1134.840450px;}
.h3_c03084{height:32.530781px;}
.h1_c03084{height:41.696016px;}
.h2_c03084{height:41.812031px;}
.h4_c03084{height:54.654737px;}
.h0_c03084{height:1263.000000px;}
.w1_c03084{width:892.500000px;}
.w0_c03084{width:892.830000px;}
.x0_c03084{left:0.000000px;}
.xd_c03084{left:117.000000px;}
.x8_c03084{left:440.999856px;}
.x4_c03084{left:445.680576px;}
.xb_c03084{left:451.080000px;}
.x7_c03084{left:455.399604px;}
.x5_c03084{left:461.880144px;}
.x1_c03084{left:463.320000px;}
.xa_c03084{left:483.480360px;}
.x9_c03084{left:492.119496px;}
.x6_c03084{left:493.200576px;}
.xc_c03084{left:506.880360px;}
.x3_c03084{left:511.919892px;}
.x2_c03084{left:526.679604px;}
@media print{
.v0_c03084{vertical-align:0.000000pt;}
.v1_c03084{vertical-align:1.279488pt;}
.ls17_c03084{letter-spacing:-1.064448pt;}
.lse_c03084{letter-spacing:-0.705408pt;}
.lsb_c03084{letter-spacing:-0.680064pt;}
.lsa_c03084{letter-spacing:-0.511104pt;}
.ls10_c03084{letter-spacing:-0.304128pt;}
.ls16_c03084{letter-spacing:-0.261888pt;}
.ls9_c03084{letter-spacing:-0.253440pt;}
.ls12_c03084{letter-spacing:-0.244992pt;}
.lsf_c03084{letter-spacing:-0.232320pt;}
.ls6_c03084{letter-spacing:-0.215424pt;}
.ls7_c03084{letter-spacing:-0.211200pt;}
.ls4_c03084{letter-spacing:-0.105600pt;}
.ls15_c03084{letter-spacing:0.000000pt;}
.ls1_c03084{letter-spacing:0.005376pt;}
.ls5_c03084{letter-spacing:0.114048pt;}
.lsd_c03084{letter-spacing:0.451968pt;}
.ls14_c03084{letter-spacing:0.456960pt;}
.ls11_c03084{letter-spacing:0.477312pt;}
.lsc_c03084{letter-spacing:0.515328pt;}
.ls13_c03084{letter-spacing:0.528000pt;}
.ls8_c03084{letter-spacing:0.532224pt;}
.ls2_c03084{letter-spacing:0.544896pt;}
.ls3_c03084{letter-spacing:0.637824pt;}
.ls0_c03084{letter-spacing:0.642048pt;}
.wsc_c03084{word-spacing:-13.445376pt;}
.wsa_c03084{word-spacing:-11.088000pt;}
.ws5_c03084{word-spacing:-11.075328pt;}
.ws9_c03084{word-spacing:-11.037312pt;}
.ws8_c03084{word-spacing:-10.674048pt;}
.ws2_c03084{word-spacing:-10.348800pt;}
.wsd_c03084{word-spacing:-10.344576pt;}
.wsf_c03084{word-spacing:-9.495552pt;}
.ws17_c03084{word-spacing:-0.963072pt;}
.ws11_c03084{word-spacing:-0.865920pt;}
.ws1b_c03084{word-spacing:-0.639744pt;}
.ws1e_c03084{word-spacing:-0.109824pt;}
.ws13_c03084{word-spacing:-0.105600pt;}
.ws18_c03084{word-spacing:-0.088704pt;}
.ws1a_c03084{word-spacing:-0.076032pt;}
.ws14_c03084{word-spacing:-0.067584pt;}
.ws1c_c03084{word-spacing:-0.059136pt;}
.ws19_c03084{word-spacing:-0.016896pt;}
.ws12_c03084{word-spacing:0.000000pt;}
.ws15_c03084{word-spacing:0.359040pt;}
.ws16_c03084{word-spacing:0.384384pt;}
.ws1d_c03084{word-spacing:0.743424pt;}
.wsb_c03084{word-spacing:29.600256pt;}
.ws10_c03084{word-spacing:30.966144pt;}
.ws7_c03084{word-spacing:32.127744pt;}
.wse_c03084{word-spacing:32.659968pt;}
.ws1_c03084{word-spacing:33.563904pt;}
.ws0_c03084{word-spacing:33.796224pt;}
.ws3_c03084{word-spacing:34.860672pt;}
.ws4_c03084{word-spacing:35.468928pt;}
.ws6_c03084{word-spacing:37.357056pt;}
._0_c03084{margin-left:-1.731840pt;}
._2_c03084{width:1.317888pt;}
._7_c03084{width:2.644224pt;}
._4_c03084{width:5.275776pt;}
._6_c03084{width:6.914688pt;}
._5_c03084{width:14.441856pt;}
._1_c03084{width:44.668800pt;}
._3_c03084{width:45.805056pt;}
.fs0_c03084{font-size:42.240000pt;}
.fs1_c03084{font-size:53.760000pt;}
.y0_c03084{bottom:0.000000pt;}
.y19_c03084{bottom:130.665211pt;}
.y1b_c03084{bottom:165.866875pt;}
.y1a_c03084{bottom:174.507067pt;}
.y18_c03084{bottom:245.225371pt;}
.y17_c03084{bottom:317.225563pt;}
.y15_c03084{bottom:361.386427pt;}
.y11_c03084{bottom:377.386939pt;}
.y16_c03084{bottom:407.786011pt;}
.y14_c03084{bottom:437.226235pt;}
.y13_c03084{bottom:453.226747pt;}
.y10_c03084{bottom:482.666971pt;}
.y12_c03084{bottom:497.386555pt;}
.yf_c03084{bottom:513.387067pt;}
.y1c_c03084{bottom:546.027067pt;}
.yb_c03084{bottom:593.385179pt;}
.yd_c03084{bottom:628.586875pt;}
.yc_c03084{bottom:637.227067pt;}
.ya_c03084{bottom:707.945339pt;}
.y9_c03084{bottom:779.945531pt;}
.y7_c03084{bottom:823.786427pt;}
.y3_c03084{bottom:839.786939pt;}
.y8_c03084{bottom:870.505979pt;}
.y6_c03084{bottom:899.946203pt;}
.y5_c03084{bottom:915.946715pt;}
.y2_c03084{bottom:945.386939pt;}
.y4_c03084{bottom:959.786555pt;}
.y1_c03084{bottom:975.787067pt;}
.ye_c03084{bottom:1008.747067pt;}
.h3_c03084{height:28.916250pt;}
.h1_c03084{height:37.063125pt;}
.h2_c03084{height:37.166250pt;}
.h4_c03084{height:48.581988pt;}
.h0_c03084{height:1122.666667pt;}
.w1_c03084{width:793.333333pt;}
.w0_c03084{width:793.626667pt;}
.x0_c03084{left:0.000000pt;}
.xd_c03084{left:104.000000pt;}
.x8_c03084{left:391.999872pt;}
.x4_c03084{left:396.160512pt;}
.xb_c03084{left:400.960000pt;}
.x7_c03084{left:404.799648pt;}
.x5_c03084{left:410.560128pt;}
.x1_c03084{left:411.840000pt;}
.xa_c03084{left:429.760320pt;}
.x9_c03084{left:437.439552pt;}
.x6_c03084{left:438.400512pt;}
.xc_c03084{left:450.560320pt;}
.x3_c03084{left:455.039904pt;}
.x2_c03084{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03085 {
    display:none;
  }
  .loading-indicator_c03085.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03085 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03085 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03085" -> "#page-container .classname_c03085")
 */
.pf_c03085 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03085 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03085.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03085 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03085 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03085 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03085 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03085 {overflow:visible;}
  }
}
.c_c03085 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03085 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03085:after { /* webkit #35443 */
  content: '';
}
.t_c03085:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03085 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03085 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03085 { /* info for Javascript */
  display:none;
}
.l_c03085 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03085 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03085 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03085:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03085 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03085.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03085.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03085 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03085;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03085{font-family:ff1_c03085;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03085;src:url('chunks/assets/font_7cca756b6edb16882fc89369.woff2')format("woff");}.ff2_c03085{font-family:ff2_c03085;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03085;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03085{font-family:ff3_c03085;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03085{vertical-align:0.000000px;}
.v1_c03085{vertical-align:1.439424px;}
.v2_c03085{vertical-align:33.121440px;}
.lsf_c03085{letter-spacing:-0.803088px;}
.ls17_c03085{letter-spacing:-0.793584px;}
.ls8_c03085{letter-spacing:-0.574992px;}
.ls18_c03085{letter-spacing:-0.327888px;}
.ls9_c03085{letter-spacing:-0.323136px;}
.ls10_c03085{letter-spacing:-0.289872px;}
.ls16_c03085{letter-spacing:-0.280368px;}
.ls11_c03085{letter-spacing:-0.275616px;}
.lsd_c03085{letter-spacing:-0.261360px;}
.ls6_c03085{letter-spacing:-0.242352px;}
.ls15_c03085{letter-spacing:-0.237600px;}
.ls4_c03085{letter-spacing:-0.118800px;}
.ls14_c03085{letter-spacing:0.000000px;}
.ls0_c03085{letter-spacing:0.006048px;}
.lsc_c03085{letter-spacing:0.038016px;}
.ls5_c03085{letter-spacing:0.128304px;}
.lsb_c03085{letter-spacing:0.508464px;}
.ls13_c03085{letter-spacing:0.514080px;}
.lse_c03085{letter-spacing:0.536976px;}
.lsa_c03085{letter-spacing:0.579744px;}
.ls12_c03085{letter-spacing:0.594000px;}
.ls7_c03085{letter-spacing:0.598752px;}
.ls2_c03085{letter-spacing:0.613008px;}
.ls3_c03085{letter-spacing:0.717552px;}
.ls1_c03085{letter-spacing:0.722304px;}
.sc__c03085{text-shadow:none;}
.sc0_c03085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03085{-webkit-text-stroke:0px transparent;}
.sc0_c03085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03085{word-spacing:-15.126048px;}
.wsb_c03085{word-spacing:-12.474000px;}
.ws8_c03085{word-spacing:-12.459744px;}
.ws11_c03085{word-spacing:-12.416976px;}
.wse_c03085{word-spacing:-11.642400px;}
.ws4_c03085{word-spacing:-11.637648px;}
.ws1d_c03085{word-spacing:-1.083456px;}
.ws13_c03085{word-spacing:-0.974160px;}
.ws1b_c03085{word-spacing:-0.719712px;}
.ws17_c03085{word-spacing:-0.399168px;}
.ws15_c03085{word-spacing:-0.118800px;}
.ws18_c03085{word-spacing:-0.099792px;}
.ws1a_c03085{word-spacing:-0.085536px;}
.ws1c_c03085{word-spacing:-0.080784px;}
.ws19_c03085{word-spacing:-0.071280px;}
.ws16_c03085{word-spacing:-0.038016px;}
.ws1f_c03085{word-spacing:-0.033264px;}
.ws14_c03085{word-spacing:0.000000px;}
.ws1e_c03085{word-spacing:0.432432px;}
.ws2_c03085{word-spacing:1.330560px;}
.wsa_c03085{word-spacing:4.633200px;}
.ws10_c03085{word-spacing:6.809616px;}
.ws12_c03085{word-spacing:30.298752px;}
.wsc_c03085{word-spacing:33.300288px;}
.ws9_c03085{word-spacing:34.836912px;}
.wsf_c03085{word-spacing:36.143712px;}
.ws6_c03085{word-spacing:36.742464px;}
.ws1_c03085{word-spacing:37.759392px;}
.ws0_c03085{word-spacing:38.020752px;}
.ws3_c03085{word-spacing:39.218256px;}
.ws5_c03085{word-spacing:39.902544px;}
.ws7_c03085{word-spacing:42.026688px;}
._0_c03085{margin-left:-1.948320px;}
._2_c03085{width:1.482624px;}
._7_c03085{width:3.065040px;}
._4_c03085{width:4.785264px;}
._5_c03085{width:18.418752px;}
._6_c03085{width:20.390832px;}
._8_c03085{width:25.375680px;}
._1_c03085{width:50.252400px;}
._3_c03085{width:51.530688px;}
.fc0_c03085{color:rgb(0,0,0);}
.fs0_c03085{font-size:47.520000px;}
.fs1_c03085{font-size:60.480000px;}
.y0_c03085{bottom:0.000000px;}
.y1b_c03085{bottom:146.998362px;}
.y1d_c03085{bottom:186.600234px;}
.y1c_c03085{bottom:196.320450px;}
.y1a_c03085{bottom:275.878542px;}
.y19_c03085{bottom:341.759082px;}
.y18_c03085{bottom:356.878758px;}
.y16_c03085{bottom:406.559730px;}
.y12_c03085{bottom:424.560306px;}
.y17_c03085{bottom:458.759262px;}
.y15_c03085{bottom:491.879514px;}
.y14_c03085{bottom:509.880090px;}
.y11_c03085{bottom:543.000342px;}
.y13_c03085{bottom:559.559874px;}
.y10_c03085{bottom:577.560450px;}
.y1e_c03085{bottom:614.280450px;}
.yc_c03085{bottom:652.438650px;}
.yb_c03085{bottom:667.558326px;}
.ye_c03085{bottom:707.160234px;}
.yd_c03085{bottom:716.880450px;}
.ya_c03085{bottom:796.438506px;}
.y9_c03085{bottom:877.438722px;}
.y7_c03085{bottom:926.759730px;}
.y3_c03085{bottom:944.760306px;}
.y8_c03085{bottom:979.319226px;}
.y6_c03085{bottom:1012.439478px;}
.y5_c03085{bottom:1030.440054px;}
.y2_c03085{bottom:1063.560306px;}
.y4_c03085{bottom:1079.759874px;}
.y1_c03085{bottom:1097.760450px;}
.yf_c03085{bottom:1134.840450px;}
.h3_c03085{height:32.530781px;}
.h1_c03085{height:41.696016px;}
.h2_c03085{height:41.812031px;}
.h4_c03085{height:54.654737px;}
.h5_c03085{height:74.817456px;}
.h0_c03085{height:1263.000000px;}
.w1_c03085{width:892.500000px;}
.w0_c03085{width:892.830000px;}
.x0_c03085{left:0.000000px;}
.xe_c03085{left:117.000000px;}
.x8_c03085{left:440.999856px;}
.x4_c03085{left:445.680576px;}
.xc_c03085{left:451.080000px;}
.x7_c03085{left:455.399604px;}
.x5_c03085{left:461.880144px;}
.x1_c03085{left:463.320000px;}
.xa_c03085{left:483.480360px;}
.x9_c03085{left:492.119496px;}
.x6_c03085{left:493.200576px;}
.xd_c03085{left:506.880360px;}
.x3_c03085{left:511.919892px;}
.x2_c03085{left:526.679604px;}
.xb_c03085{left:569.880036px;}
@media print{
.v0_c03085{vertical-align:0.000000pt;}
.v1_c03085{vertical-align:1.279488pt;}
.v2_c03085{vertical-align:29.441280pt;}
.lsf_c03085{letter-spacing:-0.713856pt;}
.ls17_c03085{letter-spacing:-0.705408pt;}
.ls8_c03085{letter-spacing:-0.511104pt;}
.ls18_c03085{letter-spacing:-0.291456pt;}
.ls9_c03085{letter-spacing:-0.287232pt;}
.ls10_c03085{letter-spacing:-0.257664pt;}
.ls16_c03085{letter-spacing:-0.249216pt;}
.ls11_c03085{letter-spacing:-0.244992pt;}
.lsd_c03085{letter-spacing:-0.232320pt;}
.ls6_c03085{letter-spacing:-0.215424pt;}
.ls15_c03085{letter-spacing:-0.211200pt;}
.ls4_c03085{letter-spacing:-0.105600pt;}
.ls14_c03085{letter-spacing:0.000000pt;}
.ls0_c03085{letter-spacing:0.005376pt;}
.lsc_c03085{letter-spacing:0.033792pt;}
.ls5_c03085{letter-spacing:0.114048pt;}
.lsb_c03085{letter-spacing:0.451968pt;}
.ls13_c03085{letter-spacing:0.456960pt;}
.lse_c03085{letter-spacing:0.477312pt;}
.lsa_c03085{letter-spacing:0.515328pt;}
.ls12_c03085{letter-spacing:0.528000pt;}
.ls7_c03085{letter-spacing:0.532224pt;}
.ls2_c03085{letter-spacing:0.544896pt;}
.ls3_c03085{letter-spacing:0.637824pt;}
.ls1_c03085{letter-spacing:0.642048pt;}
.wsd_c03085{word-spacing:-13.445376pt;}
.wsb_c03085{word-spacing:-11.088000pt;}
.ws8_c03085{word-spacing:-11.075328pt;}
.ws11_c03085{word-spacing:-11.037312pt;}
.wse_c03085{word-spacing:-10.348800pt;}
.ws4_c03085{word-spacing:-10.344576pt;}
.ws1d_c03085{word-spacing:-0.963072pt;}
.ws13_c03085{word-spacing:-0.865920pt;}
.ws1b_c03085{word-spacing:-0.639744pt;}
.ws17_c03085{word-spacing:-0.354816pt;}
.ws15_c03085{word-spacing:-0.105600pt;}
.ws18_c03085{word-spacing:-0.088704pt;}
.ws1a_c03085{word-spacing:-0.076032pt;}
.ws1c_c03085{word-spacing:-0.071808pt;}
.ws19_c03085{word-spacing:-0.063360pt;}
.ws16_c03085{word-spacing:-0.033792pt;}
.ws1f_c03085{word-spacing:-0.029568pt;}
.ws14_c03085{word-spacing:0.000000pt;}
.ws1e_c03085{word-spacing:0.384384pt;}
.ws2_c03085{word-spacing:1.182720pt;}
.wsa_c03085{word-spacing:4.118400pt;}
.ws10_c03085{word-spacing:6.052992pt;}
.ws12_c03085{word-spacing:26.932224pt;}
.wsc_c03085{word-spacing:29.600256pt;}
.ws9_c03085{word-spacing:30.966144pt;}
.wsf_c03085{word-spacing:32.127744pt;}
.ws6_c03085{word-spacing:32.659968pt;}
.ws1_c03085{word-spacing:33.563904pt;}
.ws0_c03085{word-spacing:33.796224pt;}
.ws3_c03085{word-spacing:34.860672pt;}
.ws5_c03085{word-spacing:35.468928pt;}
.ws7_c03085{word-spacing:37.357056pt;}
._0_c03085{margin-left:-1.731840pt;}
._2_c03085{width:1.317888pt;}
._7_c03085{width:2.724480pt;}
._4_c03085{width:4.253568pt;}
._5_c03085{width:16.372224pt;}
._6_c03085{width:18.125184pt;}
._8_c03085{width:22.556160pt;}
._1_c03085{width:44.668800pt;}
._3_c03085{width:45.805056pt;}
.fs0_c03085{font-size:42.240000pt;}
.fs1_c03085{font-size:53.760000pt;}
.y0_c03085{bottom:0.000000pt;}
.y1b_c03085{bottom:130.665211pt;}
.y1d_c03085{bottom:165.866875pt;}
.y1c_c03085{bottom:174.507067pt;}
.y1a_c03085{bottom:245.225371pt;}
.y19_c03085{bottom:303.785851pt;}
.y18_c03085{bottom:317.225563pt;}
.y16_c03085{bottom:361.386427pt;}
.y12_c03085{bottom:377.386939pt;}
.y17_c03085{bottom:407.786011pt;}
.y15_c03085{bottom:437.226235pt;}
.y14_c03085{bottom:453.226747pt;}
.y11_c03085{bottom:482.666971pt;}
.y13_c03085{bottom:497.386555pt;}
.y10_c03085{bottom:513.387067pt;}
.y1e_c03085{bottom:546.027067pt;}
.yc_c03085{bottom:579.945467pt;}
.yb_c03085{bottom:593.385179pt;}
.ye_c03085{bottom:628.586875pt;}
.yd_c03085{bottom:637.227067pt;}
.ya_c03085{bottom:707.945339pt;}
.y9_c03085{bottom:779.945531pt;}
.y7_c03085{bottom:823.786427pt;}
.y3_c03085{bottom:839.786939pt;}
.y8_c03085{bottom:870.505979pt;}
.y6_c03085{bottom:899.946203pt;}
.y5_c03085{bottom:915.946715pt;}
.y2_c03085{bottom:945.386939pt;}
.y4_c03085{bottom:959.786555pt;}
.y1_c03085{bottom:975.787067pt;}
.yf_c03085{bottom:1008.747067pt;}
.h3_c03085{height:28.916250pt;}
.h1_c03085{height:37.063125pt;}
.h2_c03085{height:37.166250pt;}
.h4_c03085{height:48.581988pt;}
.h5_c03085{height:66.504405pt;}
.h0_c03085{height:1122.666667pt;}
.w1_c03085{width:793.333333pt;}
.w0_c03085{width:793.626667pt;}
.x0_c03085{left:0.000000pt;}
.xe_c03085{left:104.000000pt;}
.x8_c03085{left:391.999872pt;}
.x4_c03085{left:396.160512pt;}
.xc_c03085{left:400.960000pt;}
.x7_c03085{left:404.799648pt;}
.x5_c03085{left:410.560128pt;}
.x1_c03085{left:411.840000pt;}
.xa_c03085{left:429.760320pt;}
.x9_c03085{left:437.439552pt;}
.x6_c03085{left:438.400512pt;}
.xd_c03085{left:450.560320pt;}
.x3_c03085{left:455.039904pt;}
.x2_c03085{left:468.159648pt;}
.xb_c03085{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03086 {
    display:none;
  }
  .loading-indicator_c03086.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03086 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03086 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03086" -> "#page-container .classname_c03086")
 */
.pf_c03086 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03086 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03086.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03086 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03086 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03086 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03086 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03086 {overflow:visible;}
  }
}
.c_c03086 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03086 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03086:after { /* webkit #35443 */
  content: '';
}
.t_c03086:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03086 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03086 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03086 { /* info for Javascript */
  display:none;
}
.l_c03086 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03086 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03086 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03086:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03086 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03086.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03086.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03086 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03086{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03086;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03086{font-family:ff1_c03086;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03086;src:url('chunks/assets/font_f993c4a74a22bd6a1bc93303.woff2')format("woff");}.ff2_c03086{font-family:ff2_c03086;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03086;src:url('chunks/assets/font_c39ea7af33db56f0122b2982.woff2')format("woff");}.ff3_c03086{font-family:ff3_c03086;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03086{vertical-align:0.000000px;}
.v1_c03086{vertical-align:1.439424px;}
.v2_c03086{vertical-align:5.759424px;}
.ls14_c03086{letter-spacing:-1.197504px;}
.lsc_c03086{letter-spacing:-0.722304px;}
.ls13_c03086{letter-spacing:-0.698544px;}
.ls7_c03086{letter-spacing:-0.613008px;}
.ls9_c03086{letter-spacing:-0.574992px;}
.lsf_c03086{letter-spacing:-0.275616px;}
.lsd_c03086{letter-spacing:-0.261360px;}
.ls6_c03086{letter-spacing:-0.242352px;}
.ls4_c03086{letter-spacing:-0.118800px;}
.ls12_c03086{letter-spacing:0.000000px;}
.ls1_c03086{letter-spacing:0.006048px;}
.ls5_c03086{letter-spacing:0.128304px;}
.lsb_c03086{letter-spacing:0.508464px;}
.ls11_c03086{letter-spacing:0.514080px;}
.lse_c03086{letter-spacing:0.536976px;}
.lsa_c03086{letter-spacing:0.579744px;}
.ls10_c03086{letter-spacing:0.594000px;}
.ls8_c03086{letter-spacing:0.598752px;}
.ls3_c03086{letter-spacing:0.613008px;}
.ls0_c03086{letter-spacing:0.717552px;}
.ls2_c03086{letter-spacing:0.722304px;}
.sc__c03086{text-shadow:none;}
.sc0_c03086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03086{-webkit-text-stroke:0px transparent;}
.sc0_c03086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03086{word-spacing:-15.126048px;}
.wsc_c03086{word-spacing:-12.602304px;}
.ws9_c03086{word-spacing:-12.474000px;}
.ws6_c03086{word-spacing:-12.459744px;}
.ws8_c03086{word-spacing:-12.416976px;}
.ws4_c03086{word-spacing:-11.637648px;}
.ws2_c03086{word-spacing:-11.266992px;}
.ws16_c03086{word-spacing:-1.083456px;}
.ws11_c03086{word-spacing:-1.078704px;}
.wse_c03086{word-spacing:-0.974160px;}
.ws15_c03086{word-spacing:-0.719712px;}
.ws10_c03086{word-spacing:-0.118800px;}
.ws13_c03086{word-spacing:-0.099792px;}
.ws14_c03086{word-spacing:-0.085536px;}
.wsf_c03086{word-spacing:0.000000px;}
.ws17_c03086{word-spacing:0.337392px;}
.ws12_c03086{word-spacing:0.361152px;}
.ws18_c03086{word-spacing:0.836352px;}
.wsa_c03086{word-spacing:33.300288px;}
.wsd_c03086{word-spacing:36.742464px;}
.ws1_c03086{word-spacing:37.759392px;}
.ws0_c03086{word-spacing:38.020752px;}
.ws3_c03086{word-spacing:39.218256px;}
.ws5_c03086{word-spacing:39.902544px;}
.ws7_c03086{word-spacing:42.026688px;}
._0_c03086{margin-left:-1.948320px;}
._2_c03086{width:1.482624px;}
._5_c03086{width:2.770416px;}
._4_c03086{width:4.329072px;}
._1_c03086{width:50.252400px;}
._3_c03086{width:51.530688px;}
.fc0_c03086{color:rgb(0,0,0);}
.fs0_c03086{font-size:47.520000px;}
.fs1_c03086{font-size:60.480000px;}
.y0_c03086{bottom:0.000000px;}
.y19_c03086{bottom:146.998362px;}
.y1b_c03086{bottom:186.600234px;}
.y1a_c03086{bottom:196.320450px;}
.y18_c03086{bottom:275.878542px;}
.y17_c03086{bottom:356.878758px;}
.y15_c03086{bottom:406.559730px;}
.y11_c03086{bottom:424.560306px;}
.y16_c03086{bottom:458.759262px;}
.y14_c03086{bottom:491.879514px;}
.y13_c03086{bottom:509.880090px;}
.y10_c03086{bottom:543.000342px;}
.y12_c03086{bottom:559.559874px;}
.yf_c03086{bottom:577.560450px;}
.y1c_c03086{bottom:614.280450px;}
.yb_c03086{bottom:667.558326px;}
.yd_c03086{bottom:707.160234px;}
.yc_c03086{bottom:716.880450px;}
.ya_c03086{bottom:796.438506px;}
.y9_c03086{bottom:877.438722px;}
.y7_c03086{bottom:926.759730px;}
.y3_c03086{bottom:944.760306px;}
.y8_c03086{bottom:979.319226px;}
.y6_c03086{bottom:1012.439478px;}
.y5_c03086{bottom:1030.440054px;}
.y2_c03086{bottom:1063.560306px;}
.y4_c03086{bottom:1079.759874px;}
.y1_c03086{bottom:1097.760450px;}
.ye_c03086{bottom:1134.840450px;}
.h3_c03086{height:32.530781px;}
.h1_c03086{height:41.696016px;}
.h2_c03086{height:41.812031px;}
.h5_c03086{height:47.571455px;}
.h4_c03086{height:54.654737px;}
.h0_c03086{height:1263.000000px;}
.w1_c03086{width:892.500000px;}
.w0_c03086{width:892.830000px;}
.x0_c03086{left:0.000000px;}
.xd_c03086{left:117.000000px;}
.x8_c03086{left:440.999856px;}
.x4_c03086{left:445.680576px;}
.xb_c03086{left:451.080000px;}
.x7_c03086{left:455.399604px;}
.x5_c03086{left:461.880144px;}
.x1_c03086{left:463.320000px;}
.xa_c03086{left:483.480360px;}
.x9_c03086{left:492.119496px;}
.x6_c03086{left:493.200576px;}
.xc_c03086{left:506.880360px;}
.x3_c03086{left:511.919892px;}
.x2_c03086{left:526.679604px;}
@media print{
.v0_c03086{vertical-align:0.000000pt;}
.v1_c03086{vertical-align:1.279488pt;}
.v2_c03086{vertical-align:5.119488pt;}
.ls14_c03086{letter-spacing:-1.064448pt;}
.lsc_c03086{letter-spacing:-0.642048pt;}
.ls13_c03086{letter-spacing:-0.620928pt;}
.ls7_c03086{letter-spacing:-0.544896pt;}
.ls9_c03086{letter-spacing:-0.511104pt;}
.lsf_c03086{letter-spacing:-0.244992pt;}
.lsd_c03086{letter-spacing:-0.232320pt;}
.ls6_c03086{letter-spacing:-0.215424pt;}
.ls4_c03086{letter-spacing:-0.105600pt;}
.ls12_c03086{letter-spacing:0.000000pt;}
.ls1_c03086{letter-spacing:0.005376pt;}
.ls5_c03086{letter-spacing:0.114048pt;}
.lsb_c03086{letter-spacing:0.451968pt;}
.ls11_c03086{letter-spacing:0.456960pt;}
.lse_c03086{letter-spacing:0.477312pt;}
.lsa_c03086{letter-spacing:0.515328pt;}
.ls10_c03086{letter-spacing:0.528000pt;}
.ls8_c03086{letter-spacing:0.532224pt;}
.ls3_c03086{letter-spacing:0.544896pt;}
.ls0_c03086{letter-spacing:0.637824pt;}
.ls2_c03086{letter-spacing:0.642048pt;}
.wsb_c03086{word-spacing:-13.445376pt;}
.wsc_c03086{word-spacing:-11.202048pt;}
.ws9_c03086{word-spacing:-11.088000pt;}
.ws6_c03086{word-spacing:-11.075328pt;}
.ws8_c03086{word-spacing:-11.037312pt;}
.ws4_c03086{word-spacing:-10.344576pt;}
.ws2_c03086{word-spacing:-10.015104pt;}
.ws16_c03086{word-spacing:-0.963072pt;}
.ws11_c03086{word-spacing:-0.958848pt;}
.wse_c03086{word-spacing:-0.865920pt;}
.ws15_c03086{word-spacing:-0.639744pt;}
.ws10_c03086{word-spacing:-0.105600pt;}
.ws13_c03086{word-spacing:-0.088704pt;}
.ws14_c03086{word-spacing:-0.076032pt;}
.wsf_c03086{word-spacing:0.000000pt;}
.ws17_c03086{word-spacing:0.299904pt;}
.ws12_c03086{word-spacing:0.321024pt;}
.ws18_c03086{word-spacing:0.743424pt;}
.wsa_c03086{word-spacing:29.600256pt;}
.wsd_c03086{word-spacing:32.659968pt;}
.ws1_c03086{word-spacing:33.563904pt;}
.ws0_c03086{word-spacing:33.796224pt;}
.ws3_c03086{word-spacing:34.860672pt;}
.ws5_c03086{word-spacing:35.468928pt;}
.ws7_c03086{word-spacing:37.357056pt;}
._0_c03086{margin-left:-1.731840pt;}
._2_c03086{width:1.317888pt;}
._5_c03086{width:2.462592pt;}
._4_c03086{width:3.848064pt;}
._1_c03086{width:44.668800pt;}
._3_c03086{width:45.805056pt;}
.fs0_c03086{font-size:42.240000pt;}
.fs1_c03086{font-size:53.760000pt;}
.y0_c03086{bottom:0.000000pt;}
.y19_c03086{bottom:130.665211pt;}
.y1b_c03086{bottom:165.866875pt;}
.y1a_c03086{bottom:174.507067pt;}
.y18_c03086{bottom:245.225371pt;}
.y17_c03086{bottom:317.225563pt;}
.y15_c03086{bottom:361.386427pt;}
.y11_c03086{bottom:377.386939pt;}
.y16_c03086{bottom:407.786011pt;}
.y14_c03086{bottom:437.226235pt;}
.y13_c03086{bottom:453.226747pt;}
.y10_c03086{bottom:482.666971pt;}
.y12_c03086{bottom:497.386555pt;}
.yf_c03086{bottom:513.387067pt;}
.y1c_c03086{bottom:546.027067pt;}
.yb_c03086{bottom:593.385179pt;}
.yd_c03086{bottom:628.586875pt;}
.yc_c03086{bottom:637.227067pt;}
.ya_c03086{bottom:707.945339pt;}
.y9_c03086{bottom:779.945531pt;}
.y7_c03086{bottom:823.786427pt;}
.y3_c03086{bottom:839.786939pt;}
.y8_c03086{bottom:870.505979pt;}
.y6_c03086{bottom:899.946203pt;}
.y5_c03086{bottom:915.946715pt;}
.y2_c03086{bottom:945.386939pt;}
.y4_c03086{bottom:959.786555pt;}
.y1_c03086{bottom:975.787067pt;}
.ye_c03086{bottom:1008.747067pt;}
.h3_c03086{height:28.916250pt;}
.h1_c03086{height:37.063125pt;}
.h2_c03086{height:37.166250pt;}
.h5_c03086{height:42.285738pt;}
.h4_c03086{height:48.581988pt;}
.h0_c03086{height:1122.666667pt;}
.w1_c03086{width:793.333333pt;}
.w0_c03086{width:793.626667pt;}
.x0_c03086{left:0.000000pt;}
.xd_c03086{left:104.000000pt;}
.x8_c03086{left:391.999872pt;}
.x4_c03086{left:396.160512pt;}
.xb_c03086{left:400.960000pt;}
.x7_c03086{left:404.799648pt;}
.x5_c03086{left:410.560128pt;}
.x1_c03086{left:411.840000pt;}
.xa_c03086{left:429.760320pt;}
.x9_c03086{left:437.439552pt;}
.x6_c03086{left:438.400512pt;}
.xc_c03086{left:450.560320pt;}
.x3_c03086{left:455.039904pt;}
.x2_c03086{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03087 {
    display:none;
  }
  .loading-indicator_c03087.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03087 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03087 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03087" -> "#page-container .classname_c03087")
 */
.pf_c03087 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03087 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03087.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03087 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03087 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03087 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03087 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03087 {overflow:visible;}
  }
}
.c_c03087 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03087 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03087:after { /* webkit #35443 */
  content: '';
}
.t_c03087:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03087 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03087 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03087 { /* info for Javascript */
  display:none;
}
.l_c03087 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03087 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03087 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03087:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03087 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03087.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03087.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03087 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03087{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03087;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03087{font-family:ff1_c03087;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03087;src:url('chunks/assets/font_da97684cb9bd30da15e78e59.woff2')format("woff");}.ff2_c03087{font-family:ff2_c03087;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03087;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03087{font-family:ff3_c03087;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03087{vertical-align:0.000000px;}
.v1_c03087{vertical-align:1.439424px;}
.lsc_c03087{letter-spacing:-1.197504px;}
.lsa_c03087{letter-spacing:-0.736560px;}
.ls6_c03087{letter-spacing:-0.613008px;}
.ls8_c03087{letter-spacing:-0.574992px;}
.lsf_c03087{letter-spacing:-0.275616px;}
.lsd_c03087{letter-spacing:-0.261360px;}
.ls5_c03087{letter-spacing:-0.242352px;}
.ls3_c03087{letter-spacing:-0.118800px;}
.ls12_c03087{letter-spacing:0.000000px;}
.ls1_c03087{letter-spacing:0.006048px;}
.ls4_c03087{letter-spacing:0.128304px;}
.lsb_c03087{letter-spacing:0.508464px;}
.ls11_c03087{letter-spacing:0.514080px;}
.lse_c03087{letter-spacing:0.536976px;}
.ls9_c03087{letter-spacing:0.579744px;}
.ls10_c03087{letter-spacing:0.594000px;}
.ls7_c03087{letter-spacing:0.598752px;}
.ls2_c03087{letter-spacing:0.613008px;}
.ls0_c03087{letter-spacing:0.717552px;}
.sc__c03087{text-shadow:none;}
.sc0_c03087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03087{-webkit-text-stroke:0px transparent;}
.sc0_c03087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03087{word-spacing:-15.126048px;}
.wsa_c03087{word-spacing:-12.474000px;}
.ws8_c03087{word-spacing:-12.459744px;}
.ws9_c03087{word-spacing:-12.416976px;}
.ws4_c03087{word-spacing:-11.637648px;}
.ws2_c03087{word-spacing:-11.266992px;}
.ws10_c03087{word-spacing:-1.078704px;}
.wsd_c03087{word-spacing:-0.974160px;}
.ws15_c03087{word-spacing:-0.719712px;}
.wsf_c03087{word-spacing:-0.118800px;}
.ws13_c03087{word-spacing:-0.099792px;}
.ws14_c03087{word-spacing:-0.085536px;}
.wse_c03087{word-spacing:0.000000px;}
.ws11_c03087{word-spacing:0.375408px;}
.ws12_c03087{word-spacing:0.836352px;}
.wsb_c03087{word-spacing:33.300288px;}
.ws6_c03087{word-spacing:36.742464px;}
.ws1_c03087{word-spacing:37.759392px;}
.ws0_c03087{word-spacing:38.020752px;}
.ws3_c03087{word-spacing:39.218256px;}
.ws5_c03087{word-spacing:39.902544px;}
.ws7_c03087{word-spacing:42.026688px;}
._0_c03087{margin-left:-1.948320px;}
._2_c03087{width:1.482624px;}
._5_c03087{width:2.770416px;}
._4_c03087{width:4.329072px;}
._1_c03087{width:50.252400px;}
._3_c03087{width:51.530688px;}
.fc0_c03087{color:rgb(0,0,0);}
.fs0_c03087{font-size:47.520000px;}
.fs1_c03087{font-size:60.480000px;}
.y0_c03087{bottom:0.000000px;}
.y19_c03087{bottom:146.998362px;}
.y1b_c03087{bottom:186.600234px;}
.y1a_c03087{bottom:196.320450px;}
.y18_c03087{bottom:275.878542px;}
.y17_c03087{bottom:356.878758px;}
.y15_c03087{bottom:406.559730px;}
.y11_c03087{bottom:424.560306px;}
.y16_c03087{bottom:458.759262px;}
.y14_c03087{bottom:491.879514px;}
.y13_c03087{bottom:509.880090px;}
.y10_c03087{bottom:543.000342px;}
.y12_c03087{bottom:559.559874px;}
.yf_c03087{bottom:577.560450px;}
.y1c_c03087{bottom:614.280450px;}
.yb_c03087{bottom:667.558326px;}
.yd_c03087{bottom:707.160234px;}
.yc_c03087{bottom:716.880450px;}
.ya_c03087{bottom:796.438506px;}
.y9_c03087{bottom:877.438722px;}
.y7_c03087{bottom:926.759730px;}
.y3_c03087{bottom:944.760306px;}
.y8_c03087{bottom:979.319226px;}
.y6_c03087{bottom:1012.439478px;}
.y5_c03087{bottom:1030.440054px;}
.y2_c03087{bottom:1063.560306px;}
.y4_c03087{bottom:1079.759874px;}
.y1_c03087{bottom:1097.760450px;}
.ye_c03087{bottom:1134.840450px;}
.h3_c03087{height:32.530781px;}
.h1_c03087{height:41.696016px;}
.h2_c03087{height:41.812031px;}
.h4_c03087{height:54.654737px;}
.h0_c03087{height:1263.000000px;}
.w1_c03087{width:892.500000px;}
.w0_c03087{width:892.830000px;}
.x0_c03087{left:0.000000px;}
.xd_c03087{left:117.000000px;}
.x8_c03087{left:440.999856px;}
.x4_c03087{left:445.680576px;}
.xb_c03087{left:451.080000px;}
.x7_c03087{left:455.399604px;}
.x5_c03087{left:461.880144px;}
.x1_c03087{left:463.320000px;}
.xa_c03087{left:483.480360px;}
.x9_c03087{left:492.119496px;}
.x6_c03087{left:493.200576px;}
.xc_c03087{left:506.880360px;}
.x3_c03087{left:511.919892px;}
.x2_c03087{left:526.679604px;}
@media print{
.v0_c03087{vertical-align:0.000000pt;}
.v1_c03087{vertical-align:1.279488pt;}
.lsc_c03087{letter-spacing:-1.064448pt;}
.lsa_c03087{letter-spacing:-0.654720pt;}
.ls6_c03087{letter-spacing:-0.544896pt;}
.ls8_c03087{letter-spacing:-0.511104pt;}
.lsf_c03087{letter-spacing:-0.244992pt;}
.lsd_c03087{letter-spacing:-0.232320pt;}
.ls5_c03087{letter-spacing:-0.215424pt;}
.ls3_c03087{letter-spacing:-0.105600pt;}
.ls12_c03087{letter-spacing:0.000000pt;}
.ls1_c03087{letter-spacing:0.005376pt;}
.ls4_c03087{letter-spacing:0.114048pt;}
.lsb_c03087{letter-spacing:0.451968pt;}
.ls11_c03087{letter-spacing:0.456960pt;}
.lse_c03087{letter-spacing:0.477312pt;}
.ls9_c03087{letter-spacing:0.515328pt;}
.ls10_c03087{letter-spacing:0.528000pt;}
.ls7_c03087{letter-spacing:0.532224pt;}
.ls2_c03087{letter-spacing:0.544896pt;}
.ls0_c03087{letter-spacing:0.637824pt;}
.wsc_c03087{word-spacing:-13.445376pt;}
.wsa_c03087{word-spacing:-11.088000pt;}
.ws8_c03087{word-spacing:-11.075328pt;}
.ws9_c03087{word-spacing:-11.037312pt;}
.ws4_c03087{word-spacing:-10.344576pt;}
.ws2_c03087{word-spacing:-10.015104pt;}
.ws10_c03087{word-spacing:-0.958848pt;}
.wsd_c03087{word-spacing:-0.865920pt;}
.ws15_c03087{word-spacing:-0.639744pt;}
.wsf_c03087{word-spacing:-0.105600pt;}
.ws13_c03087{word-spacing:-0.088704pt;}
.ws14_c03087{word-spacing:-0.076032pt;}
.wse_c03087{word-spacing:0.000000pt;}
.ws11_c03087{word-spacing:0.333696pt;}
.ws12_c03087{word-spacing:0.743424pt;}
.wsb_c03087{word-spacing:29.600256pt;}
.ws6_c03087{word-spacing:32.659968pt;}
.ws1_c03087{word-spacing:33.563904pt;}
.ws0_c03087{word-spacing:33.796224pt;}
.ws3_c03087{word-spacing:34.860672pt;}
.ws5_c03087{word-spacing:35.468928pt;}
.ws7_c03087{word-spacing:37.357056pt;}
._0_c03087{margin-left:-1.731840pt;}
._2_c03087{width:1.317888pt;}
._5_c03087{width:2.462592pt;}
._4_c03087{width:3.848064pt;}
._1_c03087{width:44.668800pt;}
._3_c03087{width:45.805056pt;}
.fs0_c03087{font-size:42.240000pt;}
.fs1_c03087{font-size:53.760000pt;}
.y0_c03087{bottom:0.000000pt;}
.y19_c03087{bottom:130.665211pt;}
.y1b_c03087{bottom:165.866875pt;}
.y1a_c03087{bottom:174.507067pt;}
.y18_c03087{bottom:245.225371pt;}
.y17_c03087{bottom:317.225563pt;}
.y15_c03087{bottom:361.386427pt;}
.y11_c03087{bottom:377.386939pt;}
.y16_c03087{bottom:407.786011pt;}
.y14_c03087{bottom:437.226235pt;}
.y13_c03087{bottom:453.226747pt;}
.y10_c03087{bottom:482.666971pt;}
.y12_c03087{bottom:497.386555pt;}
.yf_c03087{bottom:513.387067pt;}
.y1c_c03087{bottom:546.027067pt;}
.yb_c03087{bottom:593.385179pt;}
.yd_c03087{bottom:628.586875pt;}
.yc_c03087{bottom:637.227067pt;}
.ya_c03087{bottom:707.945339pt;}
.y9_c03087{bottom:779.945531pt;}
.y7_c03087{bottom:823.786427pt;}
.y3_c03087{bottom:839.786939pt;}
.y8_c03087{bottom:870.505979pt;}
.y6_c03087{bottom:899.946203pt;}
.y5_c03087{bottom:915.946715pt;}
.y2_c03087{bottom:945.386939pt;}
.y4_c03087{bottom:959.786555pt;}
.y1_c03087{bottom:975.787067pt;}
.ye_c03087{bottom:1008.747067pt;}
.h3_c03087{height:28.916250pt;}
.h1_c03087{height:37.063125pt;}
.h2_c03087{height:37.166250pt;}
.h4_c03087{height:48.581988pt;}
.h0_c03087{height:1122.666667pt;}
.w1_c03087{width:793.333333pt;}
.w0_c03087{width:793.626667pt;}
.x0_c03087{left:0.000000pt;}
.xd_c03087{left:104.000000pt;}
.x8_c03087{left:391.999872pt;}
.x4_c03087{left:396.160512pt;}
.xb_c03087{left:400.960000pt;}
.x7_c03087{left:404.799648pt;}
.x5_c03087{left:410.560128pt;}
.x1_c03087{left:411.840000pt;}
.xa_c03087{left:429.760320pt;}
.x9_c03087{left:437.439552pt;}
.x6_c03087{left:438.400512pt;}
.xc_c03087{left:450.560320pt;}
.x3_c03087{left:455.039904pt;}
.x2_c03087{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03088 {
    display:none;
  }
  .loading-indicator_c03088.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03088 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03088 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03088" -> "#page-container .classname_c03088")
 */
.pf_c03088 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03088 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03088.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03088 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03088 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03088 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03088 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03088 {overflow:visible;}
  }
}
.c_c03088 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03088 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03088:after { /* webkit #35443 */
  content: '';
}
.t_c03088:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03088 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03088 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03088 { /* info for Javascript */
  display:none;
}
.l_c03088 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03088 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03088 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03088:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03088 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03088.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03088.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03088 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03088{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03088;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03088{font-family:ff1_c03088;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03088;src:url('chunks/assets/font_533d0bb9f00fb29af2a5318a.woff2')format("woff");}.ff2_c03088{font-family:ff2_c03088;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03088;src:url('chunks/assets/font_2b6176c054a048a9662cb622.woff2')format("woff");}.ff3_c03088{font-family:ff3_c03088;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03088{vertical-align:0.000000px;}
.v2_c03088{vertical-align:1.439424px;}
.v1_c03088{vertical-align:33.121440px;}
.ls1d_c03088{letter-spacing:-1.197504px;}
.ls20_c03088{letter-spacing:-0.803088px;}
.ls1c_c03088{letter-spacing:-0.722304px;}
.ls11_c03088{letter-spacing:-0.698544px;}
.lsc_c03088{letter-spacing:-0.613008px;}
.lse_c03088{letter-spacing:-0.574992px;}
.ls1f_c03088{letter-spacing:-0.361152px;}
.ls15_c03088{letter-spacing:-0.275616px;}
.ls13_c03088{letter-spacing:-0.261360px;}
.lsb_c03088{letter-spacing:-0.242352px;}
.ls9_c03088{letter-spacing:-0.228096px;}
.ls8_c03088{letter-spacing:-0.118800px;}
.ls17_c03088{letter-spacing:-0.061776px;}
.lsf_c03088{letter-spacing:-0.014256px;}
.ls12_c03088{letter-spacing:0.000000px;}
.ls2_c03088{letter-spacing:0.006048px;}
.ls1a_c03088{letter-spacing:0.042768px;}
.lsa_c03088{letter-spacing:0.128304px;}
.ls22_c03088{letter-spacing:0.142560px;}
.ls1e_c03088{letter-spacing:0.242352px;}
.ls10_c03088{letter-spacing:0.508464px;}
.ls18_c03088{letter-spacing:0.514080px;}
.ls14_c03088{letter-spacing:0.536976px;}
.ls21_c03088{letter-spacing:0.551232px;}
.ls5_c03088{letter-spacing:0.579744px;}
.ls16_c03088{letter-spacing:0.594000px;}
.lsd_c03088{letter-spacing:0.598752px;}
.ls6_c03088{letter-spacing:0.613008px;}
.ls0_c03088{letter-spacing:0.622512px;}
.ls3_c03088{letter-spacing:0.636768px;}
.ls1b_c03088{letter-spacing:0.665280px;}
.ls4_c03088{letter-spacing:0.679536px;}
.ls19_c03088{letter-spacing:0.703296px;}
.ls7_c03088{letter-spacing:0.717552px;}
.ls1_c03088{letter-spacing:0.722304px;}
.sc__c03088{text-shadow:none;}
.sc0_c03088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03088{-webkit-text-stroke:0px transparent;}
.sc0_c03088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c03088{word-spacing:-15.126048px;}
.ws16_c03088{word-spacing:-12.122352px;}
.wsa_c03088{word-spacing:-11.880000px;}
.ws7_c03088{word-spacing:-11.865744px;}
.ws0_c03088{word-spacing:-11.761200px;}
.ws4_c03088{word-spacing:-11.637648px;}
.ws2_c03088{word-spacing:-11.266992px;}
.ws18_c03088{word-spacing:-2.166912px;}
.ws20_c03088{word-spacing:-1.083456px;}
.ws2a_c03088{word-spacing:-1.078704px;}
.ws26_c03088{word-spacing:-1.040688px;}
.ws25_c03088{word-spacing:-0.997920px;}
.ws1e_c03088{word-spacing:-0.983664px;}
.ws1c_c03088{word-spacing:-0.974160px;}
.ws29_c03088{word-spacing:-0.940896px;}
.ws24_c03088{word-spacing:-0.719712px;}
.ws11_c03088{word-spacing:-0.570240px;}
.ws13_c03088{word-spacing:-0.494208px;}
.ws27_c03088{word-spacing:-0.403920px;}
.ws23_c03088{word-spacing:-0.299376px;}
.ws1f_c03088{word-spacing:-0.118800px;}
.ws21_c03088{word-spacing:-0.099792px;}
.ws22_c03088{word-spacing:-0.085536px;}
.ws1d_c03088{word-spacing:0.000000px;}
.ws28_c03088{word-spacing:0.361152px;}
.ws10_c03088{word-spacing:1.330560px;}
.ws1a_c03088{word-spacing:1.924560px;}
.ws17_c03088{word-spacing:2.884464px;}
.ws9_c03088{word-spacing:2.984256px;}
.ws15_c03088{word-spacing:6.025536px;}
.ws14_c03088{word-spacing:8.002368px;}
.ws1b_c03088{word-spacing:17.145216px;}
.ws19_c03088{word-spacing:23.565168px;}
.ws12_c03088{word-spacing:26.634960px;}
.wsd_c03088{word-spacing:30.298752px;}
.wse_c03088{word-spacing:33.300288px;}
.wsc_c03088{word-spacing:34.836912px;}
.wsb_c03088{word-spacing:36.143712px;}
.ws6_c03088{word-spacing:36.742464px;}
.ws1_c03088{word-spacing:37.759392px;}
.ws3_c03088{word-spacing:39.218256px;}
.ws5_c03088{word-spacing:39.902544px;}
.ws8_c03088{word-spacing:42.026688px;}
._0_c03088{margin-left:-1.948320px;}
._2_c03088{width:1.482624px;}
._4_c03088{width:3.302640px;}
._8_c03088{width:6.899904px;}
._7_c03088{width:10.226304px;}
._10_c03088{width:12.345696px;}
._a_c03088{width:13.486176px;}
._f_c03088{width:14.512608px;}
._5_c03088{width:15.705360px;}
._9_c03088{width:17.587152px;}
._d_c03088{width:19.074528px;}
._e_c03088{width:20.466864px;}
._6_c03088{width:22.880880px;}
._11_c03088{width:31.462992px;}
._c_c03088{width:36.476352px;}
._b_c03088{width:43.171920px;}
._1_c03088{width:50.252400px;}
._3_c03088{width:51.530688px;}
.fc0_c03088{color:rgb(0,0,0);}
.fs0_c03088{font-size:47.520000px;}
.fs1_c03088{font-size:60.480000px;}
.y0_c03088{bottom:0.000000px;}
.y16_c03088{bottom:18.000450px;}
.y4_c03088{bottom:18.360450px;}
.y27_c03088{bottom:116.761494px;}
.y26_c03088{bottom:131.881170px;}
.y25_c03088{bottom:147.000846px;}
.y2a_c03088{bottom:179.760918px;}
.y29_c03088{bottom:186.600234px;}
.y28_c03088{bottom:196.320450px;}
.y24_c03088{bottom:260.761350px;}
.y23_c03088{bottom:275.881026px;}
.y22_c03088{bottom:311.880990px;}
.y21_c03088{bottom:327.000666px;}
.y20_c03088{bottom:341.760378px;}
.y1f_c03088{bottom:356.880054px;}
.y1d_c03088{bottom:391.440162px;}
.y1c_c03088{bottom:406.559838px;}
.y18_c03088{bottom:424.560414px;}
.y1e_c03088{bottom:458.760558px;}
.y1b_c03088{bottom:491.879622px;}
.y1a_c03088{bottom:509.880198px;}
.y15_c03088{bottom:525.000000px;}
.y14_c03088{bottom:543.000342px;}
.y17_c03088{bottom:543.000450px;}
.y19_c03088{bottom:559.559982px;}
.y13_c03088{bottom:577.560450px;}
.y2b_c03088{bottom:614.280450px;}
.yf_c03088{bottom:667.559658px;}
.y11_c03088{bottom:707.160234px;}
.y10_c03088{bottom:716.880450px;}
.ye_c03088{bottom:796.439838px;}
.yd_c03088{bottom:877.440054px;}
.ya_c03088{bottom:926.759874px;}
.y6_c03088{bottom:944.760450px;}
.yc_c03088{bottom:964.559658px;}
.yb_c03088{bottom:979.319370px;}
.y9_c03088{bottom:1012.439622px;}
.y8_c03088{bottom:1030.440198px;}
.y3_c03088{bottom:1045.200000px;}
.y2_c03088{bottom:1063.560306px;}
.y5_c03088{bottom:1063.560450px;}
.y7_c03088{bottom:1079.760018px;}
.y1_c03088{bottom:1097.760450px;}
.y12_c03088{bottom:1134.840450px;}
.h7_c03088{height:29.160000px;}
.h3_c03088{height:29.520000px;}
.h2_c03088{height:32.530781px;}
.h1_c03088{height:41.696016px;}
.h4_c03088{height:41.812031px;}
.h6_c03088{height:54.654737px;}
.h5_c03088{height:74.817456px;}
.h0_c03088{height:1263.000000px;}
.w2_c03088{width:215.280000px;}
.w1_c03088{width:892.500000px;}
.w0_c03088{width:892.830000px;}
.x0_c03088{left:0.000000px;}
.xf_c03088{left:117.000000px;}
.xa_c03088{left:441.000288px;}
.x6_c03088{left:445.681008px;}
.xd_c03088{left:451.080000px;}
.x9_c03088{left:455.400036px;}
.x7_c03088{left:461.880576px;}
.x1_c03088{left:463.320000px;}
.xc_c03088{left:483.480792px;}
.xb_c03088{left:492.119928px;}
.x8_c03088{left:493.201008px;}
.xe_c03088{left:506.880360px;}
.x5_c03088{left:511.920324px;}
.x2_c03088{left:526.679604px;}
.x3_c03088{left:569.520000px;}
.x4_c03088{left:586.440000px;}
@media print{
.v0_c03088{vertical-align:0.000000pt;}
.v2_c03088{vertical-align:1.279488pt;}
.v1_c03088{vertical-align:29.441280pt;}
.ls1d_c03088{letter-spacing:-1.064448pt;}
.ls20_c03088{letter-spacing:-0.713856pt;}
.ls1c_c03088{letter-spacing:-0.642048pt;}
.ls11_c03088{letter-spacing:-0.620928pt;}
.lsc_c03088{letter-spacing:-0.544896pt;}
.lse_c03088{letter-spacing:-0.511104pt;}
.ls1f_c03088{letter-spacing:-0.321024pt;}
.ls15_c03088{letter-spacing:-0.244992pt;}
.ls13_c03088{letter-spacing:-0.232320pt;}
.lsb_c03088{letter-spacing:-0.215424pt;}
.ls9_c03088{letter-spacing:-0.202752pt;}
.ls8_c03088{letter-spacing:-0.105600pt;}
.ls17_c03088{letter-spacing:-0.054912pt;}
.lsf_c03088{letter-spacing:-0.012672pt;}
.ls12_c03088{letter-spacing:0.000000pt;}
.ls2_c03088{letter-spacing:0.005376pt;}
.ls1a_c03088{letter-spacing:0.038016pt;}
.lsa_c03088{letter-spacing:0.114048pt;}
.ls22_c03088{letter-spacing:0.126720pt;}
.ls1e_c03088{letter-spacing:0.215424pt;}
.ls10_c03088{letter-spacing:0.451968pt;}
.ls18_c03088{letter-spacing:0.456960pt;}
.ls14_c03088{letter-spacing:0.477312pt;}
.ls21_c03088{letter-spacing:0.489984pt;}
.ls5_c03088{letter-spacing:0.515328pt;}
.ls16_c03088{letter-spacing:0.528000pt;}
.lsd_c03088{letter-spacing:0.532224pt;}
.ls6_c03088{letter-spacing:0.544896pt;}
.ls0_c03088{letter-spacing:0.553344pt;}
.ls3_c03088{letter-spacing:0.566016pt;}
.ls1b_c03088{letter-spacing:0.591360pt;}
.ls4_c03088{letter-spacing:0.604032pt;}
.ls19_c03088{letter-spacing:0.625152pt;}
.ls7_c03088{letter-spacing:0.637824pt;}
.ls1_c03088{letter-spacing:0.642048pt;}
.wsf_c03088{word-spacing:-13.445376pt;}
.ws16_c03088{word-spacing:-10.775424pt;}
.wsa_c03088{word-spacing:-10.560000pt;}
.ws7_c03088{word-spacing:-10.547328pt;}
.ws0_c03088{word-spacing:-10.454400pt;}
.ws4_c03088{word-spacing:-10.344576pt;}
.ws2_c03088{word-spacing:-10.015104pt;}
.ws18_c03088{word-spacing:-1.926144pt;}
.ws20_c03088{word-spacing:-0.963072pt;}
.ws2a_c03088{word-spacing:-0.958848pt;}
.ws26_c03088{word-spacing:-0.925056pt;}
.ws25_c03088{word-spacing:-0.887040pt;}
.ws1e_c03088{word-spacing:-0.874368pt;}
.ws1c_c03088{word-spacing:-0.865920pt;}
.ws29_c03088{word-spacing:-0.836352pt;}
.ws24_c03088{word-spacing:-0.639744pt;}
.ws11_c03088{word-spacing:-0.506880pt;}
.ws13_c03088{word-spacing:-0.439296pt;}
.ws27_c03088{word-spacing:-0.359040pt;}
.ws23_c03088{word-spacing:-0.266112pt;}
.ws1f_c03088{word-spacing:-0.105600pt;}
.ws21_c03088{word-spacing:-0.088704pt;}
.ws22_c03088{word-spacing:-0.076032pt;}
.ws1d_c03088{word-spacing:0.000000pt;}
.ws28_c03088{word-spacing:0.321024pt;}
.ws10_c03088{word-spacing:1.182720pt;}
.ws1a_c03088{word-spacing:1.710720pt;}
.ws17_c03088{word-spacing:2.563968pt;}
.ws9_c03088{word-spacing:2.652672pt;}
.ws15_c03088{word-spacing:5.356032pt;}
.ws14_c03088{word-spacing:7.113216pt;}
.ws1b_c03088{word-spacing:15.240192pt;}
.ws19_c03088{word-spacing:20.946816pt;}
.ws12_c03088{word-spacing:23.675520pt;}
.wsd_c03088{word-spacing:26.932224pt;}
.wse_c03088{word-spacing:29.600256pt;}
.wsc_c03088{word-spacing:30.966144pt;}
.wsb_c03088{word-spacing:32.127744pt;}
.ws6_c03088{word-spacing:32.659968pt;}
.ws1_c03088{word-spacing:33.563904pt;}
.ws3_c03088{word-spacing:34.860672pt;}
.ws5_c03088{word-spacing:35.468928pt;}
.ws8_c03088{word-spacing:37.357056pt;}
._0_c03088{margin-left:-1.731840pt;}
._2_c03088{width:1.317888pt;}
._4_c03088{width:2.935680pt;}
._8_c03088{width:6.133248pt;}
._7_c03088{width:9.090048pt;}
._10_c03088{width:10.973952pt;}
._a_c03088{width:11.987712pt;}
._f_c03088{width:12.900096pt;}
._5_c03088{width:13.960320pt;}
._9_c03088{width:15.633024pt;}
._d_c03088{width:16.955136pt;}
._e_c03088{width:18.192768pt;}
._6_c03088{width:20.338560pt;}
._11_c03088{width:27.967104pt;}
._c_c03088{width:32.423424pt;}
._b_c03088{width:38.375040pt;}
._1_c03088{width:44.668800pt;}
._3_c03088{width:45.805056pt;}
.fs0_c03088{font-size:42.240000pt;}
.fs1_c03088{font-size:53.760000pt;}
.y0_c03088{bottom:0.000000pt;}
.y16_c03088{bottom:16.000400pt;}
.y4_c03088{bottom:16.320400pt;}
.y27_c03088{bottom:103.787995pt;}
.y26_c03088{bottom:117.227707pt;}
.y25_c03088{bottom:130.667419pt;}
.y2a_c03088{bottom:159.787483pt;}
.y29_c03088{bottom:165.866875pt;}
.y28_c03088{bottom:174.507067pt;}
.y24_c03088{bottom:231.787867pt;}
.y23_c03088{bottom:245.227579pt;}
.y22_c03088{bottom:277.227547pt;}
.y21_c03088{bottom:290.667259pt;}
.y20_c03088{bottom:303.787003pt;}
.y1f_c03088{bottom:317.226715pt;}
.y1d_c03088{bottom:347.946811pt;}
.y1c_c03088{bottom:361.386523pt;}
.y18_c03088{bottom:377.387035pt;}
.y1e_c03088{bottom:407.787163pt;}
.y1b_c03088{bottom:437.226331pt;}
.y1a_c03088{bottom:453.226843pt;}
.y15_c03088{bottom:466.666667pt;}
.y14_c03088{bottom:482.666971pt;}
.y17_c03088{bottom:482.667067pt;}
.y19_c03088{bottom:497.386651pt;}
.y13_c03088{bottom:513.387067pt;}
.y2b_c03088{bottom:546.027067pt;}
.yf_c03088{bottom:593.386363pt;}
.y11_c03088{bottom:628.586875pt;}
.y10_c03088{bottom:637.227067pt;}
.ye_c03088{bottom:707.946523pt;}
.yd_c03088{bottom:779.946715pt;}
.ya_c03088{bottom:823.786555pt;}
.y6_c03088{bottom:839.787067pt;}
.yc_c03088{bottom:857.386363pt;}
.yb_c03088{bottom:870.506107pt;}
.y9_c03088{bottom:899.946331pt;}
.y8_c03088{bottom:915.946843pt;}
.y3_c03088{bottom:929.066667pt;}
.y2_c03088{bottom:945.386939pt;}
.y5_c03088{bottom:945.387067pt;}
.y7_c03088{bottom:959.786683pt;}
.y1_c03088{bottom:975.787067pt;}
.y12_c03088{bottom:1008.747067pt;}
.h7_c03088{height:25.920000pt;}
.h3_c03088{height:26.240000pt;}
.h2_c03088{height:28.916250pt;}
.h1_c03088{height:37.063125pt;}
.h4_c03088{height:37.166250pt;}
.h6_c03088{height:48.581988pt;}
.h5_c03088{height:66.504405pt;}
.h0_c03088{height:1122.666667pt;}
.w2_c03088{width:191.360000pt;}
.w1_c03088{width:793.333333pt;}
.w0_c03088{width:793.626667pt;}
.x0_c03088{left:0.000000pt;}
.xf_c03088{left:104.000000pt;}
.xa_c03088{left:392.000256pt;}
.x6_c03088{left:396.160896pt;}
.xd_c03088{left:400.960000pt;}
.x9_c03088{left:404.800032pt;}
.x7_c03088{left:410.560512pt;}
.x1_c03088{left:411.840000pt;}
.xc_c03088{left:429.760704pt;}
.xb_c03088{left:437.439936pt;}
.x8_c03088{left:438.400896pt;}
.xe_c03088{left:450.560320pt;}
.x5_c03088{left:455.040288pt;}
.x2_c03088{left:468.159648pt;}
.x3_c03088{left:506.240000pt;}
.x4_c03088{left:521.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03089 {
    display:none;
  }
  .loading-indicator_c03089.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03089 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03089 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03089" -> "#page-container .classname_c03089")
 */
.pf_c03089 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03089 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03089.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03089 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03089 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03089 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03089 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03089 {overflow:visible;}
  }
}
.c_c03089 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03089 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03089:after { /* webkit #35443 */
  content: '';
}
.t_c03089:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03089 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03089 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03089 { /* info for Javascript */
  display:none;
}
.l_c03089 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03089 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03089 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03089:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03089 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03089.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03089.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03089 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03089{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03089;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03089{font-family:ff1_c03089;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03089;src:url('chunks/assets/font_c60b2937657606be1db46599.woff2')format("woff");}.ff2_c03089{font-family:ff2_c03089;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03089;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03089{font-family:ff3_c03089;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03089{vertical-align:0.000000px;}
.v1_c03089{vertical-align:1.439424px;}
.ls11_c03089{letter-spacing:-0.774576px;}
.ls16_c03089{letter-spacing:-0.750816px;}
.ls9_c03089{letter-spacing:-0.574992px;}
.ls12_c03089{letter-spacing:-0.275616px;}
.ls8_c03089{letter-spacing:-0.266112px;}
.lsf_c03089{letter-spacing:-0.261360px;}
.ls6_c03089{letter-spacing:-0.242352px;}
.ls4_c03089{letter-spacing:-0.118800px;}
.ls15_c03089{letter-spacing:0.000000px;}
.ls1_c03089{letter-spacing:0.006048px;}
.lsc_c03089{letter-spacing:0.014256px;}
.lse_c03089{letter-spacing:0.038016px;}
.ls5_c03089{letter-spacing:0.128304px;}
.lsd_c03089{letter-spacing:0.508464px;}
.ls14_c03089{letter-spacing:0.514080px;}
.ls10_c03089{letter-spacing:0.536976px;}
.lsb_c03089{letter-spacing:0.579744px;}
.ls13_c03089{letter-spacing:0.594000px;}
.ls7_c03089{letter-spacing:0.598752px;}
.ls2_c03089{letter-spacing:0.613008px;}
.ls0_c03089{letter-spacing:0.651024px;}
.lsa_c03089{letter-spacing:0.655776px;}
.ls3_c03089{letter-spacing:0.717552px;}
.sc__c03089{text-shadow:none;}
.sc0_c03089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03089{-webkit-text-stroke:0px transparent;}
.sc0_c03089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03089{word-spacing:-15.126048px;}
.wsa_c03089{word-spacing:-12.474000px;}
.ws7_c03089{word-spacing:-12.459744px;}
.ws11_c03089{word-spacing:-1.016928px;}
.ws15_c03089{word-spacing:-1.012176px;}
.wsd_c03089{word-spacing:-0.974160px;}
.ws17_c03089{word-spacing:-0.719712px;}
.ws13_c03089{word-spacing:-0.399168px;}
.ws12_c03089{word-spacing:-0.375408px;}
.wsf_c03089{word-spacing:-0.118800px;}
.ws14_c03089{word-spacing:-0.099792px;}
.ws10_c03089{word-spacing:-0.095040px;}
.ws16_c03089{word-spacing:-0.085536px;}
.wse_c03089{word-spacing:0.000000px;}
.ws18_c03089{word-spacing:0.389664px;}
.ws2_c03089{word-spacing:1.330560px;}
.ws9_c03089{word-spacing:20.989584px;}
.wsb_c03089{word-spacing:33.300288px;}
.ws8_c03089{word-spacing:34.836912px;}
.ws5_c03089{word-spacing:36.742464px;}
.ws1_c03089{word-spacing:37.759392px;}
.ws0_c03089{word-spacing:38.020752px;}
.ws3_c03089{word-spacing:39.218256px;}
.ws4_c03089{word-spacing:39.902544px;}
.ws6_c03089{word-spacing:42.026688px;}
._0_c03089{margin-left:-1.948320px;}
._2_c03089{width:1.482624px;}
._4_c03089{width:4.999104px;}
._5_c03089{width:34.356960px;}
._1_c03089{width:50.252400px;}
._3_c03089{width:51.530688px;}
.fc0_c03089{color:rgb(0,0,0);}
.fs0_c03089{font-size:47.520000px;}
.fs1_c03089{font-size:60.480000px;}
.y0_c03089{bottom:0.000000px;}
.y1b_c03089{bottom:131.878686px;}
.y1a_c03089{bottom:146.998362px;}
.y1d_c03089{bottom:186.600234px;}
.y1c_c03089{bottom:196.320450px;}
.y19_c03089{bottom:275.878542px;}
.y18_c03089{bottom:356.878758px;}
.y16_c03089{bottom:406.559730px;}
.y12_c03089{bottom:424.560306px;}
.y17_c03089{bottom:458.759262px;}
.y15_c03089{bottom:491.879514px;}
.y14_c03089{bottom:509.880090px;}
.y11_c03089{bottom:543.000342px;}
.y13_c03089{bottom:559.559874px;}
.y10_c03089{bottom:577.560450px;}
.y1e_c03089{bottom:614.280450px;}
.yc_c03089{bottom:652.438650px;}
.yb_c03089{bottom:667.558326px;}
.ye_c03089{bottom:707.160234px;}
.yd_c03089{bottom:716.880450px;}
.ya_c03089{bottom:796.438506px;}
.y9_c03089{bottom:877.438722px;}
.y7_c03089{bottom:926.759730px;}
.y3_c03089{bottom:944.760306px;}
.y8_c03089{bottom:979.319226px;}
.y6_c03089{bottom:1012.439478px;}
.y5_c03089{bottom:1030.440054px;}
.y2_c03089{bottom:1063.560306px;}
.y4_c03089{bottom:1079.759874px;}
.y1_c03089{bottom:1097.760450px;}
.yf_c03089{bottom:1134.840450px;}
.h3_c03089{height:32.530781px;}
.h1_c03089{height:41.696016px;}
.h2_c03089{height:41.812031px;}
.h4_c03089{height:54.654737px;}
.h0_c03089{height:1263.000000px;}
.w1_c03089{width:892.500000px;}
.w0_c03089{width:892.830000px;}
.x0_c03089{left:0.000000px;}
.xe_c03089{left:117.000000px;}
.x8_c03089{left:440.999856px;}
.x4_c03089{left:445.680576px;}
.xc_c03089{left:451.080000px;}
.x7_c03089{left:455.399604px;}
.x5_c03089{left:461.880144px;}
.x1_c03089{left:463.320000px;}
.xa_c03089{left:483.480360px;}
.x9_c03089{left:492.119496px;}
.x6_c03089{left:493.200576px;}
.xd_c03089{left:506.880360px;}
.x3_c03089{left:511.919892px;}
.x2_c03089{left:526.679604px;}
.xb_c03089{left:569.880036px;}
@media print{
.v0_c03089{vertical-align:0.000000pt;}
.v1_c03089{vertical-align:1.279488pt;}
.ls11_c03089{letter-spacing:-0.688512pt;}
.ls16_c03089{letter-spacing:-0.667392pt;}
.ls9_c03089{letter-spacing:-0.511104pt;}
.ls12_c03089{letter-spacing:-0.244992pt;}
.ls8_c03089{letter-spacing:-0.236544pt;}
.lsf_c03089{letter-spacing:-0.232320pt;}
.ls6_c03089{letter-spacing:-0.215424pt;}
.ls4_c03089{letter-spacing:-0.105600pt;}
.ls15_c03089{letter-spacing:0.000000pt;}
.ls1_c03089{letter-spacing:0.005376pt;}
.lsc_c03089{letter-spacing:0.012672pt;}
.lse_c03089{letter-spacing:0.033792pt;}
.ls5_c03089{letter-spacing:0.114048pt;}
.lsd_c03089{letter-spacing:0.451968pt;}
.ls14_c03089{letter-spacing:0.456960pt;}
.ls10_c03089{letter-spacing:0.477312pt;}
.lsb_c03089{letter-spacing:0.515328pt;}
.ls13_c03089{letter-spacing:0.528000pt;}
.ls7_c03089{letter-spacing:0.532224pt;}
.ls2_c03089{letter-spacing:0.544896pt;}
.ls0_c03089{letter-spacing:0.578688pt;}
.lsa_c03089{letter-spacing:0.582912pt;}
.ls3_c03089{letter-spacing:0.637824pt;}
.wsc_c03089{word-spacing:-13.445376pt;}
.wsa_c03089{word-spacing:-11.088000pt;}
.ws7_c03089{word-spacing:-11.075328pt;}
.ws11_c03089{word-spacing:-0.903936pt;}
.ws15_c03089{word-spacing:-0.899712pt;}
.wsd_c03089{word-spacing:-0.865920pt;}
.ws17_c03089{word-spacing:-0.639744pt;}
.ws13_c03089{word-spacing:-0.354816pt;}
.ws12_c03089{word-spacing:-0.333696pt;}
.wsf_c03089{word-spacing:-0.105600pt;}
.ws14_c03089{word-spacing:-0.088704pt;}
.ws10_c03089{word-spacing:-0.084480pt;}
.ws16_c03089{word-spacing:-0.076032pt;}
.wse_c03089{word-spacing:0.000000pt;}
.ws18_c03089{word-spacing:0.346368pt;}
.ws2_c03089{word-spacing:1.182720pt;}
.ws9_c03089{word-spacing:18.657408pt;}
.wsb_c03089{word-spacing:29.600256pt;}
.ws8_c03089{word-spacing:30.966144pt;}
.ws5_c03089{word-spacing:32.659968pt;}
.ws1_c03089{word-spacing:33.563904pt;}
.ws0_c03089{word-spacing:33.796224pt;}
.ws3_c03089{word-spacing:34.860672pt;}
.ws4_c03089{word-spacing:35.468928pt;}
.ws6_c03089{word-spacing:37.357056pt;}
._0_c03089{margin-left:-1.731840pt;}
._2_c03089{width:1.317888pt;}
._4_c03089{width:4.443648pt;}
._5_c03089{width:30.539520pt;}
._1_c03089{width:44.668800pt;}
._3_c03089{width:45.805056pt;}
.fs0_c03089{font-size:42.240000pt;}
.fs1_c03089{font-size:53.760000pt;}
.y0_c03089{bottom:0.000000pt;}
.y1b_c03089{bottom:117.225499pt;}
.y1a_c03089{bottom:130.665211pt;}
.y1d_c03089{bottom:165.866875pt;}
.y1c_c03089{bottom:174.507067pt;}
.y19_c03089{bottom:245.225371pt;}
.y18_c03089{bottom:317.225563pt;}
.y16_c03089{bottom:361.386427pt;}
.y12_c03089{bottom:377.386939pt;}
.y17_c03089{bottom:407.786011pt;}
.y15_c03089{bottom:437.226235pt;}
.y14_c03089{bottom:453.226747pt;}
.y11_c03089{bottom:482.666971pt;}
.y13_c03089{bottom:497.386555pt;}
.y10_c03089{bottom:513.387067pt;}
.y1e_c03089{bottom:546.027067pt;}
.yc_c03089{bottom:579.945467pt;}
.yb_c03089{bottom:593.385179pt;}
.ye_c03089{bottom:628.586875pt;}
.yd_c03089{bottom:637.227067pt;}
.ya_c03089{bottom:707.945339pt;}
.y9_c03089{bottom:779.945531pt;}
.y7_c03089{bottom:823.786427pt;}
.y3_c03089{bottom:839.786939pt;}
.y8_c03089{bottom:870.505979pt;}
.y6_c03089{bottom:899.946203pt;}
.y5_c03089{bottom:915.946715pt;}
.y2_c03089{bottom:945.386939pt;}
.y4_c03089{bottom:959.786555pt;}
.y1_c03089{bottom:975.787067pt;}
.yf_c03089{bottom:1008.747067pt;}
.h3_c03089{height:28.916250pt;}
.h1_c03089{height:37.063125pt;}
.h2_c03089{height:37.166250pt;}
.h4_c03089{height:48.581988pt;}
.h0_c03089{height:1122.666667pt;}
.w1_c03089{width:793.333333pt;}
.w0_c03089{width:793.626667pt;}
.x0_c03089{left:0.000000pt;}
.xe_c03089{left:104.000000pt;}
.x8_c03089{left:391.999872pt;}
.x4_c03089{left:396.160512pt;}
.xc_c03089{left:400.960000pt;}
.x7_c03089{left:404.799648pt;}
.x5_c03089{left:410.560128pt;}
.x1_c03089{left:411.840000pt;}
.xa_c03089{left:429.760320pt;}
.x9_c03089{left:437.439552pt;}
.x6_c03089{left:438.400512pt;}
.xd_c03089{left:450.560320pt;}
.x3_c03089{left:455.039904pt;}
.x2_c03089{left:468.159648pt;}
.xb_c03089{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03090 {
    display:none;
  }
  .loading-indicator_c03090.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03090 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03090 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03090" -> "#page-container .classname_c03090")
 */
.pf_c03090 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03090 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03090.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03090 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03090 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03090 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03090 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03090 {overflow:visible;}
  }
}
.c_c03090 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03090 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03090:after { /* webkit #35443 */
  content: '';
}
.t_c03090:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03090 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03090 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03090 { /* info for Javascript */
  display:none;
}
.l_c03090 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03090 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03090 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03090:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03090 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03090.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03090.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03090 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03090;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03090{font-family:ff1_c03090;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03090;src:url('chunks/assets/font_da4ee63f43c47ae7cb04e9cb.woff2')format("woff");}.ff2_c03090{font-family:ff2_c03090;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03090;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03090{font-family:ff3_c03090;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03090{vertical-align:0.000000px;}
.v1_c03090{vertical-align:1.439424px;}
.ls11_c03090{letter-spacing:-0.774576px;}
.lsa_c03090{letter-spacing:-0.750816px;}
.ls9_c03090{letter-spacing:-0.574992px;}
.ls12_c03090{letter-spacing:-0.275616px;}
.ls8_c03090{letter-spacing:-0.266112px;}
.lsf_c03090{letter-spacing:-0.261360px;}
.ls6_c03090{letter-spacing:-0.242352px;}
.ls4_c03090{letter-spacing:-0.118800px;}
.ls15_c03090{letter-spacing:0.000000px;}
.ls1_c03090{letter-spacing:0.006048px;}
.ls17_c03090{letter-spacing:0.014256px;}
.lse_c03090{letter-spacing:0.038016px;}
.ls5_c03090{letter-spacing:0.128304px;}
.lsd_c03090{letter-spacing:0.508464px;}
.ls14_c03090{letter-spacing:0.514080px;}
.ls10_c03090{letter-spacing:0.536976px;}
.lsb_c03090{letter-spacing:0.579744px;}
.ls13_c03090{letter-spacing:0.594000px;}
.ls7_c03090{letter-spacing:0.598752px;}
.ls2_c03090{letter-spacing:0.613008px;}
.ls0_c03090{letter-spacing:0.651024px;}
.ls16_c03090{letter-spacing:0.655776px;}
.lsc_c03090{letter-spacing:0.689040px;}
.ls3_c03090{letter-spacing:0.717552px;}
.sc__c03090{text-shadow:none;}
.sc0_c03090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03090{-webkit-text-stroke:0px transparent;}
.sc0_c03090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03090{word-spacing:-15.126048px;}
.wsa_c03090{word-spacing:-12.474000px;}
.ws7_c03090{word-spacing:-12.459744px;}
.ws12_c03090{word-spacing:-1.050192px;}
.ws18_c03090{word-spacing:-1.016928px;}
.ws15_c03090{word-spacing:-1.012176px;}
.wsd_c03090{word-spacing:-0.974160px;}
.ws17_c03090{word-spacing:-0.719712px;}
.ws13_c03090{word-spacing:-0.399168px;}
.ws19_c03090{word-spacing:-0.375408px;}
.wsf_c03090{word-spacing:-0.118800px;}
.ws14_c03090{word-spacing:-0.099792px;}
.ws10_c03090{word-spacing:-0.095040px;}
.ws16_c03090{word-spacing:-0.085536px;}
.wse_c03090{word-spacing:0.000000px;}
.ws11_c03090{word-spacing:0.389664px;}
.ws2_c03090{word-spacing:1.330560px;}
.ws9_c03090{word-spacing:20.989584px;}
.wsb_c03090{word-spacing:33.300288px;}
.ws8_c03090{word-spacing:34.836912px;}
.ws5_c03090{word-spacing:36.742464px;}
.ws1_c03090{word-spacing:37.759392px;}
.ws0_c03090{word-spacing:38.020752px;}
.ws3_c03090{word-spacing:39.218256px;}
.ws4_c03090{word-spacing:39.902544px;}
.ws6_c03090{word-spacing:42.026688px;}
._0_c03090{margin-left:-1.948320px;}
._2_c03090{width:1.482624px;}
._4_c03090{width:4.999104px;}
._5_c03090{width:34.356960px;}
._1_c03090{width:50.252400px;}
._3_c03090{width:51.530688px;}
.fc0_c03090{color:rgb(0,0,0);}
.fs0_c03090{font-size:47.520000px;}
.fs1_c03090{font-size:60.480000px;}
.y0_c03090{bottom:0.000000px;}
.y1b_c03090{bottom:131.878686px;}
.y1a_c03090{bottom:146.998362px;}
.y1d_c03090{bottom:186.600234px;}
.y1c_c03090{bottom:196.320450px;}
.y19_c03090{bottom:275.878542px;}
.y18_c03090{bottom:356.878758px;}
.y16_c03090{bottom:406.559730px;}
.y12_c03090{bottom:424.560306px;}
.y17_c03090{bottom:458.759262px;}
.y15_c03090{bottom:491.879514px;}
.y14_c03090{bottom:509.880090px;}
.y11_c03090{bottom:543.000342px;}
.y13_c03090{bottom:559.559874px;}
.y10_c03090{bottom:577.560450px;}
.y1e_c03090{bottom:614.280450px;}
.yc_c03090{bottom:652.438650px;}
.yb_c03090{bottom:667.558326px;}
.ye_c03090{bottom:707.160234px;}
.yd_c03090{bottom:716.880450px;}
.ya_c03090{bottom:796.438506px;}
.y9_c03090{bottom:877.438722px;}
.y7_c03090{bottom:926.759730px;}
.y3_c03090{bottom:944.760306px;}
.y8_c03090{bottom:979.319226px;}
.y6_c03090{bottom:1012.439478px;}
.y5_c03090{bottom:1030.440054px;}
.y2_c03090{bottom:1063.560306px;}
.y4_c03090{bottom:1079.759874px;}
.y1_c03090{bottom:1097.760450px;}
.yf_c03090{bottom:1134.840450px;}
.h3_c03090{height:32.530781px;}
.h1_c03090{height:41.696016px;}
.h2_c03090{height:41.812031px;}
.h4_c03090{height:54.654737px;}
.h0_c03090{height:1263.000000px;}
.w1_c03090{width:892.500000px;}
.w0_c03090{width:892.830000px;}
.x0_c03090{left:0.000000px;}
.xe_c03090{left:117.000000px;}
.x8_c03090{left:440.999856px;}
.x4_c03090{left:445.680576px;}
.xc_c03090{left:451.080000px;}
.x7_c03090{left:455.399604px;}
.x5_c03090{left:461.880144px;}
.x1_c03090{left:463.320000px;}
.xa_c03090{left:483.480360px;}
.x9_c03090{left:492.119496px;}
.x6_c03090{left:493.200576px;}
.xd_c03090{left:506.880360px;}
.x3_c03090{left:511.919892px;}
.x2_c03090{left:526.679604px;}
.xb_c03090{left:569.880036px;}
@media print{
.v0_c03090{vertical-align:0.000000pt;}
.v1_c03090{vertical-align:1.279488pt;}
.ls11_c03090{letter-spacing:-0.688512pt;}
.lsa_c03090{letter-spacing:-0.667392pt;}
.ls9_c03090{letter-spacing:-0.511104pt;}
.ls12_c03090{letter-spacing:-0.244992pt;}
.ls8_c03090{letter-spacing:-0.236544pt;}
.lsf_c03090{letter-spacing:-0.232320pt;}
.ls6_c03090{letter-spacing:-0.215424pt;}
.ls4_c03090{letter-spacing:-0.105600pt;}
.ls15_c03090{letter-spacing:0.000000pt;}
.ls1_c03090{letter-spacing:0.005376pt;}
.ls17_c03090{letter-spacing:0.012672pt;}
.lse_c03090{letter-spacing:0.033792pt;}
.ls5_c03090{letter-spacing:0.114048pt;}
.lsd_c03090{letter-spacing:0.451968pt;}
.ls14_c03090{letter-spacing:0.456960pt;}
.ls10_c03090{letter-spacing:0.477312pt;}
.lsb_c03090{letter-spacing:0.515328pt;}
.ls13_c03090{letter-spacing:0.528000pt;}
.ls7_c03090{letter-spacing:0.532224pt;}
.ls2_c03090{letter-spacing:0.544896pt;}
.ls0_c03090{letter-spacing:0.578688pt;}
.ls16_c03090{letter-spacing:0.582912pt;}
.lsc_c03090{letter-spacing:0.612480pt;}
.ls3_c03090{letter-spacing:0.637824pt;}
.wsc_c03090{word-spacing:-13.445376pt;}
.wsa_c03090{word-spacing:-11.088000pt;}
.ws7_c03090{word-spacing:-11.075328pt;}
.ws12_c03090{word-spacing:-0.933504pt;}
.ws18_c03090{word-spacing:-0.903936pt;}
.ws15_c03090{word-spacing:-0.899712pt;}
.wsd_c03090{word-spacing:-0.865920pt;}
.ws17_c03090{word-spacing:-0.639744pt;}
.ws13_c03090{word-spacing:-0.354816pt;}
.ws19_c03090{word-spacing:-0.333696pt;}
.wsf_c03090{word-spacing:-0.105600pt;}
.ws14_c03090{word-spacing:-0.088704pt;}
.ws10_c03090{word-spacing:-0.084480pt;}
.ws16_c03090{word-spacing:-0.076032pt;}
.wse_c03090{word-spacing:0.000000pt;}
.ws11_c03090{word-spacing:0.346368pt;}
.ws2_c03090{word-spacing:1.182720pt;}
.ws9_c03090{word-spacing:18.657408pt;}
.wsb_c03090{word-spacing:29.600256pt;}
.ws8_c03090{word-spacing:30.966144pt;}
.ws5_c03090{word-spacing:32.659968pt;}
.ws1_c03090{word-spacing:33.563904pt;}
.ws0_c03090{word-spacing:33.796224pt;}
.ws3_c03090{word-spacing:34.860672pt;}
.ws4_c03090{word-spacing:35.468928pt;}
.ws6_c03090{word-spacing:37.357056pt;}
._0_c03090{margin-left:-1.731840pt;}
._2_c03090{width:1.317888pt;}
._4_c03090{width:4.443648pt;}
._5_c03090{width:30.539520pt;}
._1_c03090{width:44.668800pt;}
._3_c03090{width:45.805056pt;}
.fs0_c03090{font-size:42.240000pt;}
.fs1_c03090{font-size:53.760000pt;}
.y0_c03090{bottom:0.000000pt;}
.y1b_c03090{bottom:117.225499pt;}
.y1a_c03090{bottom:130.665211pt;}
.y1d_c03090{bottom:165.866875pt;}
.y1c_c03090{bottom:174.507067pt;}
.y19_c03090{bottom:245.225371pt;}
.y18_c03090{bottom:317.225563pt;}
.y16_c03090{bottom:361.386427pt;}
.y12_c03090{bottom:377.386939pt;}
.y17_c03090{bottom:407.786011pt;}
.y15_c03090{bottom:437.226235pt;}
.y14_c03090{bottom:453.226747pt;}
.y11_c03090{bottom:482.666971pt;}
.y13_c03090{bottom:497.386555pt;}
.y10_c03090{bottom:513.387067pt;}
.y1e_c03090{bottom:546.027067pt;}
.yc_c03090{bottom:579.945467pt;}
.yb_c03090{bottom:593.385179pt;}
.ye_c03090{bottom:628.586875pt;}
.yd_c03090{bottom:637.227067pt;}
.ya_c03090{bottom:707.945339pt;}
.y9_c03090{bottom:779.945531pt;}
.y7_c03090{bottom:823.786427pt;}
.y3_c03090{bottom:839.786939pt;}
.y8_c03090{bottom:870.505979pt;}
.y6_c03090{bottom:899.946203pt;}
.y5_c03090{bottom:915.946715pt;}
.y2_c03090{bottom:945.386939pt;}
.y4_c03090{bottom:959.786555pt;}
.y1_c03090{bottom:975.787067pt;}
.yf_c03090{bottom:1008.747067pt;}
.h3_c03090{height:28.916250pt;}
.h1_c03090{height:37.063125pt;}
.h2_c03090{height:37.166250pt;}
.h4_c03090{height:48.581988pt;}
.h0_c03090{height:1122.666667pt;}
.w1_c03090{width:793.333333pt;}
.w0_c03090{width:793.626667pt;}
.x0_c03090{left:0.000000pt;}
.xe_c03090{left:104.000000pt;}
.x8_c03090{left:391.999872pt;}
.x4_c03090{left:396.160512pt;}
.xc_c03090{left:400.960000pt;}
.x7_c03090{left:404.799648pt;}
.x5_c03090{left:410.560128pt;}
.x1_c03090{left:411.840000pt;}
.xa_c03090{left:429.760320pt;}
.x9_c03090{left:437.439552pt;}
.x6_c03090{left:438.400512pt;}
.xd_c03090{left:450.560320pt;}
.x3_c03090{left:455.039904pt;}
.x2_c03090{left:468.159648pt;}
.xb_c03090{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03091 {
    display:none;
  }
  .loading-indicator_c03091.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03091 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03091 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03091" -> "#page-container .classname_c03091")
 */
.pf_c03091 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03091 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03091.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03091 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03091 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03091 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03091 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03091 {overflow:visible;}
  }
}
.c_c03091 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03091 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03091:after { /* webkit #35443 */
  content: '';
}
.t_c03091:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03091 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03091 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03091 { /* info for Javascript */
  display:none;
}
.l_c03091 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03091 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03091 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03091:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03091 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03091.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03091.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03091 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03091{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03091;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03091{font-family:ff1_c03091;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03091;src:url('chunks/assets/font_da4ee63f43c47ae7cb04e9cb.woff2')format("woff");}.ff2_c03091{font-family:ff2_c03091;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03091;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03091{font-family:ff3_c03091;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03091{vertical-align:0.000000px;}
.v1_c03091{vertical-align:1.439424px;}
.ls17_c03091{letter-spacing:-1.197504px;}
.ls11_c03091{letter-spacing:-0.774576px;}
.ls9_c03091{letter-spacing:-0.574992px;}
.ls16_c03091{letter-spacing:-0.323136px;}
.ls12_c03091{letter-spacing:-0.275616px;}
.ls8_c03091{letter-spacing:-0.266112px;}
.lsf_c03091{letter-spacing:-0.261360px;}
.ls6_c03091{letter-spacing:-0.242352px;}
.ls4_c03091{letter-spacing:-0.118800px;}
.ls15_c03091{letter-spacing:0.000000px;}
.ls1_c03091{letter-spacing:0.006048px;}
.lsc_c03091{letter-spacing:0.014256px;}
.lse_c03091{letter-spacing:0.038016px;}
.ls5_c03091{letter-spacing:0.128304px;}
.lsd_c03091{letter-spacing:0.508464px;}
.ls14_c03091{letter-spacing:0.514080px;}
.ls10_c03091{letter-spacing:0.536976px;}
.lsb_c03091{letter-spacing:0.579744px;}
.ls13_c03091{letter-spacing:0.594000px;}
.ls7_c03091{letter-spacing:0.598752px;}
.ls2_c03091{letter-spacing:0.613008px;}
.ls0_c03091{letter-spacing:0.651024px;}
.lsa_c03091{letter-spacing:0.655776px;}
.ls3_c03091{letter-spacing:0.717552px;}
.sc__c03091{text-shadow:none;}
.sc0_c03091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03091{-webkit-text-stroke:0px transparent;}
.sc0_c03091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03091{word-spacing:-15.126048px;}
.wsa_c03091{word-spacing:-12.474000px;}
.ws7_c03091{word-spacing:-12.459744px;}
.wsd_c03091{word-spacing:-11.637648px;}
.wse_c03091{word-spacing:-10.682496px;}
.ws13_c03091{word-spacing:-1.016928px;}
.ws17_c03091{word-spacing:-1.012176px;}
.wsf_c03091{word-spacing:-0.974160px;}
.ws19_c03091{word-spacing:-0.719712px;}
.ws15_c03091{word-spacing:-0.399168px;}
.ws14_c03091{word-spacing:-0.375408px;}
.ws11_c03091{word-spacing:-0.118800px;}
.ws16_c03091{word-spacing:-0.099792px;}
.ws12_c03091{word-spacing:-0.095040px;}
.ws18_c03091{word-spacing:-0.085536px;}
.ws1a_c03091{word-spacing:-0.038016px;}
.ws10_c03091{word-spacing:0.000000px;}
.ws2_c03091{word-spacing:1.330560px;}
.ws9_c03091{word-spacing:20.989584px;}
.wsb_c03091{word-spacing:33.300288px;}
.ws8_c03091{word-spacing:34.836912px;}
.ws5_c03091{word-spacing:36.742464px;}
.ws1_c03091{word-spacing:37.759392px;}
.ws0_c03091{word-spacing:38.020752px;}
.ws3_c03091{word-spacing:39.218256px;}
.ws4_c03091{word-spacing:39.902544px;}
.ws6_c03091{word-spacing:42.026688px;}
._0_c03091{margin-left:-1.948320px;}
._2_c03091{width:1.482624px;}
._6_c03091{width:2.974752px;}
._4_c03091{width:4.999104px;}
._5_c03091{width:34.356960px;}
._1_c03091{width:50.252400px;}
._3_c03091{width:51.530688px;}
.fc0_c03091{color:rgb(0,0,0);}
.fs0_c03091{font-size:47.520000px;}
.fs1_c03091{font-size:60.480000px;}
.y0_c03091{bottom:0.000000px;}
.y1b_c03091{bottom:131.878686px;}
.y1a_c03091{bottom:146.998362px;}
.y1d_c03091{bottom:186.600234px;}
.y1c_c03091{bottom:196.320450px;}
.y19_c03091{bottom:275.878542px;}
.y18_c03091{bottom:356.878758px;}
.y16_c03091{bottom:406.559730px;}
.y12_c03091{bottom:424.560306px;}
.y17_c03091{bottom:458.759262px;}
.y15_c03091{bottom:491.879514px;}
.y14_c03091{bottom:509.880090px;}
.y11_c03091{bottom:543.000342px;}
.y13_c03091{bottom:559.559874px;}
.y10_c03091{bottom:577.560450px;}
.y1e_c03091{bottom:614.280450px;}
.yc_c03091{bottom:652.438650px;}
.yb_c03091{bottom:667.558326px;}
.ye_c03091{bottom:707.160234px;}
.yd_c03091{bottom:716.880450px;}
.ya_c03091{bottom:796.438506px;}
.y9_c03091{bottom:877.438722px;}
.y7_c03091{bottom:926.759730px;}
.y3_c03091{bottom:944.760306px;}
.y8_c03091{bottom:979.319226px;}
.y6_c03091{bottom:1012.439478px;}
.y5_c03091{bottom:1030.440054px;}
.y2_c03091{bottom:1063.560306px;}
.y4_c03091{bottom:1079.759874px;}
.y1_c03091{bottom:1097.760450px;}
.yf_c03091{bottom:1134.840450px;}
.h3_c03091{height:32.530781px;}
.h1_c03091{height:41.696016px;}
.h2_c03091{height:41.812031px;}
.h4_c03091{height:54.654737px;}
.h0_c03091{height:1263.000000px;}
.w1_c03091{width:892.500000px;}
.w0_c03091{width:892.830000px;}
.x0_c03091{left:0.000000px;}
.xe_c03091{left:117.000000px;}
.x8_c03091{left:440.999856px;}
.x4_c03091{left:445.680576px;}
.xc_c03091{left:451.080000px;}
.x7_c03091{left:455.399604px;}
.x5_c03091{left:461.880144px;}
.x1_c03091{left:463.320000px;}
.xa_c03091{left:483.480360px;}
.x9_c03091{left:492.119496px;}
.x6_c03091{left:493.200576px;}
.xd_c03091{left:506.880360px;}
.x3_c03091{left:511.919892px;}
.x2_c03091{left:526.679604px;}
.xb_c03091{left:569.880036px;}
@media print{
.v0_c03091{vertical-align:0.000000pt;}
.v1_c03091{vertical-align:1.279488pt;}
.ls17_c03091{letter-spacing:-1.064448pt;}
.ls11_c03091{letter-spacing:-0.688512pt;}
.ls9_c03091{letter-spacing:-0.511104pt;}
.ls16_c03091{letter-spacing:-0.287232pt;}
.ls12_c03091{letter-spacing:-0.244992pt;}
.ls8_c03091{letter-spacing:-0.236544pt;}
.lsf_c03091{letter-spacing:-0.232320pt;}
.ls6_c03091{letter-spacing:-0.215424pt;}
.ls4_c03091{letter-spacing:-0.105600pt;}
.ls15_c03091{letter-spacing:0.000000pt;}
.ls1_c03091{letter-spacing:0.005376pt;}
.lsc_c03091{letter-spacing:0.012672pt;}
.lse_c03091{letter-spacing:0.033792pt;}
.ls5_c03091{letter-spacing:0.114048pt;}
.lsd_c03091{letter-spacing:0.451968pt;}
.ls14_c03091{letter-spacing:0.456960pt;}
.ls10_c03091{letter-spacing:0.477312pt;}
.lsb_c03091{letter-spacing:0.515328pt;}
.ls13_c03091{letter-spacing:0.528000pt;}
.ls7_c03091{letter-spacing:0.532224pt;}
.ls2_c03091{letter-spacing:0.544896pt;}
.ls0_c03091{letter-spacing:0.578688pt;}
.lsa_c03091{letter-spacing:0.582912pt;}
.ls3_c03091{letter-spacing:0.637824pt;}
.wsc_c03091{word-spacing:-13.445376pt;}
.wsa_c03091{word-spacing:-11.088000pt;}
.ws7_c03091{word-spacing:-11.075328pt;}
.wsd_c03091{word-spacing:-10.344576pt;}
.wse_c03091{word-spacing:-9.495552pt;}
.ws13_c03091{word-spacing:-0.903936pt;}
.ws17_c03091{word-spacing:-0.899712pt;}
.wsf_c03091{word-spacing:-0.865920pt;}
.ws19_c03091{word-spacing:-0.639744pt;}
.ws15_c03091{word-spacing:-0.354816pt;}
.ws14_c03091{word-spacing:-0.333696pt;}
.ws11_c03091{word-spacing:-0.105600pt;}
.ws16_c03091{word-spacing:-0.088704pt;}
.ws12_c03091{word-spacing:-0.084480pt;}
.ws18_c03091{word-spacing:-0.076032pt;}
.ws1a_c03091{word-spacing:-0.033792pt;}
.ws10_c03091{word-spacing:0.000000pt;}
.ws2_c03091{word-spacing:1.182720pt;}
.ws9_c03091{word-spacing:18.657408pt;}
.wsb_c03091{word-spacing:29.600256pt;}
.ws8_c03091{word-spacing:30.966144pt;}
.ws5_c03091{word-spacing:32.659968pt;}
.ws1_c03091{word-spacing:33.563904pt;}
.ws0_c03091{word-spacing:33.796224pt;}
.ws3_c03091{word-spacing:34.860672pt;}
.ws4_c03091{word-spacing:35.468928pt;}
.ws6_c03091{word-spacing:37.357056pt;}
._0_c03091{margin-left:-1.731840pt;}
._2_c03091{width:1.317888pt;}
._6_c03091{width:2.644224pt;}
._4_c03091{width:4.443648pt;}
._5_c03091{width:30.539520pt;}
._1_c03091{width:44.668800pt;}
._3_c03091{width:45.805056pt;}
.fs0_c03091{font-size:42.240000pt;}
.fs1_c03091{font-size:53.760000pt;}
.y0_c03091{bottom:0.000000pt;}
.y1b_c03091{bottom:117.225499pt;}
.y1a_c03091{bottom:130.665211pt;}
.y1d_c03091{bottom:165.866875pt;}
.y1c_c03091{bottom:174.507067pt;}
.y19_c03091{bottom:245.225371pt;}
.y18_c03091{bottom:317.225563pt;}
.y16_c03091{bottom:361.386427pt;}
.y12_c03091{bottom:377.386939pt;}
.y17_c03091{bottom:407.786011pt;}
.y15_c03091{bottom:437.226235pt;}
.y14_c03091{bottom:453.226747pt;}
.y11_c03091{bottom:482.666971pt;}
.y13_c03091{bottom:497.386555pt;}
.y10_c03091{bottom:513.387067pt;}
.y1e_c03091{bottom:546.027067pt;}
.yc_c03091{bottom:579.945467pt;}
.yb_c03091{bottom:593.385179pt;}
.ye_c03091{bottom:628.586875pt;}
.yd_c03091{bottom:637.227067pt;}
.ya_c03091{bottom:707.945339pt;}
.y9_c03091{bottom:779.945531pt;}
.y7_c03091{bottom:823.786427pt;}
.y3_c03091{bottom:839.786939pt;}
.y8_c03091{bottom:870.505979pt;}
.y6_c03091{bottom:899.946203pt;}
.y5_c03091{bottom:915.946715pt;}
.y2_c03091{bottom:945.386939pt;}
.y4_c03091{bottom:959.786555pt;}
.y1_c03091{bottom:975.787067pt;}
.yf_c03091{bottom:1008.747067pt;}
.h3_c03091{height:28.916250pt;}
.h1_c03091{height:37.063125pt;}
.h2_c03091{height:37.166250pt;}
.h4_c03091{height:48.581988pt;}
.h0_c03091{height:1122.666667pt;}
.w1_c03091{width:793.333333pt;}
.w0_c03091{width:793.626667pt;}
.x0_c03091{left:0.000000pt;}
.xe_c03091{left:104.000000pt;}
.x8_c03091{left:391.999872pt;}
.x4_c03091{left:396.160512pt;}
.xc_c03091{left:400.960000pt;}
.x7_c03091{left:404.799648pt;}
.x5_c03091{left:410.560128pt;}
.x1_c03091{left:411.840000pt;}
.xa_c03091{left:429.760320pt;}
.x9_c03091{left:437.439552pt;}
.x6_c03091{left:438.400512pt;}
.xd_c03091{left:450.560320pt;}
.x3_c03091{left:455.039904pt;}
.x2_c03091{left:468.159648pt;}
.xb_c03091{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03092 {
    display:none;
  }
  .loading-indicator_c03092.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03092 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03092 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03092" -> "#page-container .classname_c03092")
 */
.pf_c03092 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03092 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03092.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03092 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03092 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03092 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03092 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03092 {overflow:visible;}
  }
}
.c_c03092 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03092 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03092:after { /* webkit #35443 */
  content: '';
}
.t_c03092:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03092 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03092 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03092 { /* info for Javascript */
  display:none;
}
.l_c03092 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03092 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03092 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03092:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03092 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03092.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03092.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03092 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03092{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03092;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03092{font-family:ff1_c03092;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03092;src:url('chunks/assets/font_e5b68eee5a189766d6199481.woff2')format("woff");}.ff2_c03092{font-family:ff2_c03092;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03092;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03092{font-family:ff3_c03092;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03092{vertical-align:0.000000px;}
.v1_c03092{vertical-align:1.439424px;}
.ls10_c03092{letter-spacing:-0.774576px;}
.ls8_c03092{letter-spacing:-0.574992px;}
.ls9_c03092{letter-spacing:-0.323136px;}
.ls11_c03092{letter-spacing:-0.275616px;}
.lse_c03092{letter-spacing:-0.261360px;}
.lsb_c03092{letter-spacing:-0.251856px;}
.ls6_c03092{letter-spacing:-0.242352px;}
.ls4_c03092{letter-spacing:-0.118800px;}
.ls14_c03092{letter-spacing:0.000000px;}
.ls1_c03092{letter-spacing:0.006048px;}
.lsd_c03092{letter-spacing:0.038016px;}
.ls5_c03092{letter-spacing:0.128304px;}
.lsc_c03092{letter-spacing:0.508464px;}
.ls13_c03092{letter-spacing:0.514080px;}
.lsf_c03092{letter-spacing:0.536976px;}
.lsa_c03092{letter-spacing:0.579744px;}
.ls12_c03092{letter-spacing:0.594000px;}
.ls7_c03092{letter-spacing:0.598752px;}
.ls2_c03092{letter-spacing:0.613008px;}
.ls0_c03092{letter-spacing:0.651024px;}
.ls3_c03092{letter-spacing:0.717552px;}
.sc__c03092{text-shadow:none;}
.sc0_c03092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03092{-webkit-text-stroke:0px transparent;}
.sc0_c03092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03092{word-spacing:-15.126048px;}
.wsb_c03092{word-spacing:-12.474000px;}
.ws8_c03092{word-spacing:-12.459744px;}
.ws4_c03092{word-spacing:-11.637648px;}
.ws15_c03092{word-spacing:-1.012176px;}
.wse_c03092{word-spacing:-0.974160px;}
.ws17_c03092{word-spacing:-0.719712px;}
.ws13_c03092{word-spacing:-0.399168px;}
.ws10_c03092{word-spacing:-0.118800px;}
.ws12_c03092{word-spacing:-0.109296px;}
.ws14_c03092{word-spacing:-0.099792px;}
.ws16_c03092{word-spacing:-0.085536px;}
.ws11_c03092{word-spacing:-0.038016px;}
.wsf_c03092{word-spacing:0.000000px;}
.ws2_c03092{word-spacing:1.330560px;}
.wsa_c03092{word-spacing:20.989584px;}
.wsc_c03092{word-spacing:33.300288px;}
.ws9_c03092{word-spacing:34.836912px;}
.ws6_c03092{word-spacing:36.742464px;}
.ws1_c03092{word-spacing:37.759392px;}
.ws0_c03092{word-spacing:38.020752px;}
.ws3_c03092{word-spacing:39.218256px;}
.ws5_c03092{word-spacing:39.902544px;}
.ws7_c03092{word-spacing:42.026688px;}
._0_c03092{margin-left:-1.948320px;}
._2_c03092{width:1.482624px;}
._4_c03092{width:4.785264px;}
._5_c03092{width:34.356960px;}
._1_c03092{width:50.252400px;}
._3_c03092{width:51.530688px;}
.fc0_c03092{color:rgb(0,0,0);}
.fs0_c03092{font-size:47.520000px;}
.fs1_c03092{font-size:60.480000px;}
.y0_c03092{bottom:0.000000px;}
.y1b_c03092{bottom:131.878686px;}
.y1a_c03092{bottom:146.998362px;}
.y1d_c03092{bottom:186.600234px;}
.y1c_c03092{bottom:196.320450px;}
.y19_c03092{bottom:275.878542px;}
.y18_c03092{bottom:356.878758px;}
.y16_c03092{bottom:406.559730px;}
.y12_c03092{bottom:424.560306px;}
.y17_c03092{bottom:458.759262px;}
.y15_c03092{bottom:491.879514px;}
.y14_c03092{bottom:509.880090px;}
.y11_c03092{bottom:543.000342px;}
.y13_c03092{bottom:559.559874px;}
.y10_c03092{bottom:577.560450px;}
.y1e_c03092{bottom:614.280450px;}
.yc_c03092{bottom:652.438650px;}
.yb_c03092{bottom:667.558326px;}
.ye_c03092{bottom:707.160234px;}
.yd_c03092{bottom:716.880450px;}
.ya_c03092{bottom:796.438506px;}
.y9_c03092{bottom:877.438722px;}
.y7_c03092{bottom:926.759730px;}
.y3_c03092{bottom:944.760306px;}
.y8_c03092{bottom:979.319226px;}
.y6_c03092{bottom:1012.439478px;}
.y5_c03092{bottom:1030.440054px;}
.y2_c03092{bottom:1063.560306px;}
.y4_c03092{bottom:1079.759874px;}
.y1_c03092{bottom:1097.760450px;}
.yf_c03092{bottom:1134.840450px;}
.h3_c03092{height:32.530781px;}
.h1_c03092{height:41.696016px;}
.h2_c03092{height:41.812031px;}
.h4_c03092{height:54.654737px;}
.h0_c03092{height:1263.000000px;}
.w1_c03092{width:892.500000px;}
.w0_c03092{width:892.830000px;}
.x0_c03092{left:0.000000px;}
.xe_c03092{left:117.000000px;}
.x8_c03092{left:440.999856px;}
.x4_c03092{left:445.680576px;}
.xc_c03092{left:451.080000px;}
.x7_c03092{left:455.399604px;}
.x5_c03092{left:461.880144px;}
.x1_c03092{left:463.320000px;}
.xa_c03092{left:483.480360px;}
.x9_c03092{left:492.119496px;}
.x6_c03092{left:493.200576px;}
.xd_c03092{left:506.880360px;}
.x3_c03092{left:511.919892px;}
.x2_c03092{left:526.679604px;}
.xb_c03092{left:569.880036px;}
@media print{
.v0_c03092{vertical-align:0.000000pt;}
.v1_c03092{vertical-align:1.279488pt;}
.ls10_c03092{letter-spacing:-0.688512pt;}
.ls8_c03092{letter-spacing:-0.511104pt;}
.ls9_c03092{letter-spacing:-0.287232pt;}
.ls11_c03092{letter-spacing:-0.244992pt;}
.lse_c03092{letter-spacing:-0.232320pt;}
.lsb_c03092{letter-spacing:-0.223872pt;}
.ls6_c03092{letter-spacing:-0.215424pt;}
.ls4_c03092{letter-spacing:-0.105600pt;}
.ls14_c03092{letter-spacing:0.000000pt;}
.ls1_c03092{letter-spacing:0.005376pt;}
.lsd_c03092{letter-spacing:0.033792pt;}
.ls5_c03092{letter-spacing:0.114048pt;}
.lsc_c03092{letter-spacing:0.451968pt;}
.ls13_c03092{letter-spacing:0.456960pt;}
.lsf_c03092{letter-spacing:0.477312pt;}
.lsa_c03092{letter-spacing:0.515328pt;}
.ls12_c03092{letter-spacing:0.528000pt;}
.ls7_c03092{letter-spacing:0.532224pt;}
.ls2_c03092{letter-spacing:0.544896pt;}
.ls0_c03092{letter-spacing:0.578688pt;}
.ls3_c03092{letter-spacing:0.637824pt;}
.wsd_c03092{word-spacing:-13.445376pt;}
.wsb_c03092{word-spacing:-11.088000pt;}
.ws8_c03092{word-spacing:-11.075328pt;}
.ws4_c03092{word-spacing:-10.344576pt;}
.ws15_c03092{word-spacing:-0.899712pt;}
.wse_c03092{word-spacing:-0.865920pt;}
.ws17_c03092{word-spacing:-0.639744pt;}
.ws13_c03092{word-spacing:-0.354816pt;}
.ws10_c03092{word-spacing:-0.105600pt;}
.ws12_c03092{word-spacing:-0.097152pt;}
.ws14_c03092{word-spacing:-0.088704pt;}
.ws16_c03092{word-spacing:-0.076032pt;}
.ws11_c03092{word-spacing:-0.033792pt;}
.wsf_c03092{word-spacing:0.000000pt;}
.ws2_c03092{word-spacing:1.182720pt;}
.wsa_c03092{word-spacing:18.657408pt;}
.wsc_c03092{word-spacing:29.600256pt;}
.ws9_c03092{word-spacing:30.966144pt;}
.ws6_c03092{word-spacing:32.659968pt;}
.ws1_c03092{word-spacing:33.563904pt;}
.ws0_c03092{word-spacing:33.796224pt;}
.ws3_c03092{word-spacing:34.860672pt;}
.ws5_c03092{word-spacing:35.468928pt;}
.ws7_c03092{word-spacing:37.357056pt;}
._0_c03092{margin-left:-1.731840pt;}
._2_c03092{width:1.317888pt;}
._4_c03092{width:4.253568pt;}
._5_c03092{width:30.539520pt;}
._1_c03092{width:44.668800pt;}
._3_c03092{width:45.805056pt;}
.fs0_c03092{font-size:42.240000pt;}
.fs1_c03092{font-size:53.760000pt;}
.y0_c03092{bottom:0.000000pt;}
.y1b_c03092{bottom:117.225499pt;}
.y1a_c03092{bottom:130.665211pt;}
.y1d_c03092{bottom:165.866875pt;}
.y1c_c03092{bottom:174.507067pt;}
.y19_c03092{bottom:245.225371pt;}
.y18_c03092{bottom:317.225563pt;}
.y16_c03092{bottom:361.386427pt;}
.y12_c03092{bottom:377.386939pt;}
.y17_c03092{bottom:407.786011pt;}
.y15_c03092{bottom:437.226235pt;}
.y14_c03092{bottom:453.226747pt;}
.y11_c03092{bottom:482.666971pt;}
.y13_c03092{bottom:497.386555pt;}
.y10_c03092{bottom:513.387067pt;}
.y1e_c03092{bottom:546.027067pt;}
.yc_c03092{bottom:579.945467pt;}
.yb_c03092{bottom:593.385179pt;}
.ye_c03092{bottom:628.586875pt;}
.yd_c03092{bottom:637.227067pt;}
.ya_c03092{bottom:707.945339pt;}
.y9_c03092{bottom:779.945531pt;}
.y7_c03092{bottom:823.786427pt;}
.y3_c03092{bottom:839.786939pt;}
.y8_c03092{bottom:870.505979pt;}
.y6_c03092{bottom:899.946203pt;}
.y5_c03092{bottom:915.946715pt;}
.y2_c03092{bottom:945.386939pt;}
.y4_c03092{bottom:959.786555pt;}
.y1_c03092{bottom:975.787067pt;}
.yf_c03092{bottom:1008.747067pt;}
.h3_c03092{height:28.916250pt;}
.h1_c03092{height:37.063125pt;}
.h2_c03092{height:37.166250pt;}
.h4_c03092{height:48.581988pt;}
.h0_c03092{height:1122.666667pt;}
.w1_c03092{width:793.333333pt;}
.w0_c03092{width:793.626667pt;}
.x0_c03092{left:0.000000pt;}
.xe_c03092{left:104.000000pt;}
.x8_c03092{left:391.999872pt;}
.x4_c03092{left:396.160512pt;}
.xc_c03092{left:400.960000pt;}
.x7_c03092{left:404.799648pt;}
.x5_c03092{left:410.560128pt;}
.x1_c03092{left:411.840000pt;}
.xa_c03092{left:429.760320pt;}
.x9_c03092{left:437.439552pt;}
.x6_c03092{left:438.400512pt;}
.xd_c03092{left:450.560320pt;}
.x3_c03092{left:455.039904pt;}
.x2_c03092{left:468.159648pt;}
.xb_c03092{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03093 {
    display:none;
  }
  .loading-indicator_c03093.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03093 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03093 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03093" -> "#page-container .classname_c03093")
 */
.pf_c03093 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03093 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03093.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03093 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03093 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03093 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03093 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03093 {overflow:visible;}
  }
}
.c_c03093 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03093 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03093:after { /* webkit #35443 */
  content: '';
}
.t_c03093:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03093 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03093 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03093 { /* info for Javascript */
  display:none;
}
.l_c03093 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03093 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03093 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03093:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03093 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03093.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03093.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03093 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03093{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03093;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03093{font-family:ff1_c03093;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03093;src:url('chunks/assets/font_c31eb7c47aec4d1499b1e26f.woff2')format("woff");}.ff2_c03093{font-family:ff2_c03093;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03093;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03093{font-family:ff3_c03093;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03093{vertical-align:0.000000px;}
.v1_c03093{vertical-align:1.439424px;}
.ls6_c03093{letter-spacing:-1.667952px;}
.lsc_c03093{letter-spacing:-1.197504px;}
.ls10_c03093{letter-spacing:-0.793584px;}
.ls1c_c03093{letter-spacing:-0.736560px;}
.lse_c03093{letter-spacing:-0.722304px;}
.ls12_c03093{letter-spacing:-0.684288px;}
.ls9_c03093{letter-spacing:-0.613008px;}
.lsb_c03093{letter-spacing:-0.574992px;}
.ls15_c03093{letter-spacing:-0.394416px;}
.ls17_c03093{letter-spacing:-0.275616px;}
.ls1d_c03093{letter-spacing:-0.270864px;}
.ls13_c03093{letter-spacing:-0.261360px;}
.ls8_c03093{letter-spacing:-0.242352px;}
.ls5_c03093{letter-spacing:-0.118800px;}
.ls1a_c03093{letter-spacing:0.000000px;}
.ls1_c03093{letter-spacing:0.006048px;}
.ls7_c03093{letter-spacing:0.128304px;}
.lsf_c03093{letter-spacing:0.508464px;}
.ls19_c03093{letter-spacing:0.514080px;}
.ls16_c03093{letter-spacing:0.536976px;}
.lsd_c03093{letter-spacing:0.579744px;}
.ls18_c03093{letter-spacing:0.594000px;}
.lsa_c03093{letter-spacing:0.598752px;}
.ls0_c03093{letter-spacing:0.603504px;}
.ls3_c03093{letter-spacing:0.613008px;}
.ls1b_c03093{letter-spacing:0.617760px;}
.ls2_c03093{letter-spacing:0.651024px;}
.ls11_c03093{letter-spacing:0.684288px;}
.ls4_c03093{letter-spacing:0.717552px;}
.ls14_c03093{letter-spacing:0.722304px;}
.sc__c03093{text-shadow:none;}
.sc0_c03093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03093{-webkit-text-stroke:0px transparent;}
.sc0_c03093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c03093{word-spacing:-15.126048px;}
.wse_c03093{word-spacing:-12.474000px;}
.ws12_c03093{word-spacing:-12.459744px;}
.wsd_c03093{word-spacing:-12.416976px;}
.ws0_c03093{word-spacing:-11.761200px;}
.ws5_c03093{word-spacing:-11.637648px;}
.ws3_c03093{word-spacing:-11.266992px;}
.ws7_c03093{word-spacing:-10.682496px;}
.ws1_c03093{word-spacing:-10.212048px;}
.ws20_c03093{word-spacing:-1.012176px;}
.ws21_c03093{word-spacing:-0.978912px;}
.ws15_c03093{word-spacing:-0.974160px;}
.ws17_c03093{word-spacing:-0.964656px;}
.ws1f_c03093{word-spacing:-0.719712px;}
.ws18_c03093{word-spacing:-0.118800px;}
.ws1c_c03093{word-spacing:-0.099792px;}
.ws22_c03093{word-spacing:-0.090288px;}
.ws1e_c03093{word-spacing:-0.085536px;}
.ws16_c03093{word-spacing:0.000000px;}
.ws1d_c03093{word-spacing:0.033264px;}
.ws1b_c03093{word-spacing:0.323136px;}
.ws19_c03093{word-spacing:0.361152px;}
.ws1a_c03093{word-spacing:0.432432px;}
.wsb_c03093{word-spacing:5.227200px;}
.ws14_c03093{word-spacing:6.629040px;}
.wsc_c03093{word-spacing:23.755248px;}
.wsf_c03093{word-spacing:33.300288px;}
.ws13_c03093{word-spacing:34.836912px;}
.wsa_c03093{word-spacing:36.143712px;}
.ws8_c03093{word-spacing:36.742464px;}
.ws2_c03093{word-spacing:37.759392px;}
.ws11_c03093{word-spacing:38.020752px;}
.ws4_c03093{word-spacing:39.218256px;}
.ws6_c03093{word-spacing:39.902544px;}
.ws9_c03093{word-spacing:42.026688px;}
._9_c03093{margin-left:-3.084048px;}
._0_c03093{margin-left:-1.948320px;}
._2_c03093{width:1.425600px;}
._3_c03093{width:3.141072px;}
._a_c03093{width:20.039184px;}
._5_c03093{width:21.403008px;}
._6_c03093{width:22.828608px;}
._7_c03093{width:24.748416px;}
._b_c03093{width:25.808112px;}
._8_c03093{width:30.735936px;}
._1_c03093{width:50.252400px;}
._4_c03093{width:51.758784px;}
.fc0_c03093{color:rgb(0,0,0);}
.fs0_c03093{font-size:47.520000px;}
.fs1_c03093{font-size:60.480000px;}
.y0_c03093{bottom:0.000000px;}
.y4_c03093{bottom:18.360450px;}
.y1f_c03093{bottom:131.878686px;}
.y1e_c03093{bottom:146.998362px;}
.y21_c03093{bottom:186.600234px;}
.y20_c03093{bottom:196.320450px;}
.y1d_c03093{bottom:275.878542px;}
.y1c_c03093{bottom:356.878758px;}
.y1a_c03093{bottom:406.559730px;}
.y16_c03093{bottom:424.560306px;}
.y1b_c03093{bottom:458.759262px;}
.y19_c03093{bottom:491.879514px;}
.y18_c03093{bottom:509.880090px;}
.y15_c03093{bottom:543.000342px;}
.y17_c03093{bottom:559.559874px;}
.y14_c03093{bottom:577.560450px;}
.y22_c03093{bottom:614.280450px;}
.y10_c03093{bottom:667.559658px;}
.y12_c03093{bottom:707.160234px;}
.y11_c03093{bottom:716.880450px;}
.yf_c03093{bottom:781.320162px;}
.ye_c03093{bottom:796.439838px;}
.yd_c03093{bottom:862.319190px;}
.yc_c03093{bottom:877.438866px;}
.ya_c03093{bottom:926.759874px;}
.y6_c03093{bottom:944.760450px;}
.yb_c03093{bottom:979.319370px;}
.y9_c03093{bottom:1012.439622px;}
.y8_c03093{bottom:1030.440198px;}
.y3_c03093{bottom:1045.200000px;}
.y2_c03093{bottom:1063.560306px;}
.y5_c03093{bottom:1063.560450px;}
.y7_c03093{bottom:1079.760018px;}
.y1_c03093{bottom:1097.760450px;}
.y13_c03093{bottom:1134.840450px;}
.h3_c03093{height:29.520000px;}
.h2_c03093{height:32.530781px;}
.h1_c03093{height:41.696016px;}
.h4_c03093{height:41.812031px;}
.h5_c03093{height:54.654737px;}
.h0_c03093{height:1263.000000px;}
.w2_c03093{width:215.280000px;}
.w1_c03093{width:892.500000px;}
.w0_c03093{width:892.830000px;}
.x0_c03093{left:0.000000px;}
.xf_c03093{left:117.000000px;}
.xa_c03093{left:440.999352px;}
.x6_c03093{left:445.680072px;}
.xd_c03093{left:451.080000px;}
.x9_c03093{left:455.399100px;}
.x7_c03093{left:461.879640px;}
.x1_c03093{left:463.320000px;}
.xc_c03093{left:483.479856px;}
.xb_c03093{left:492.118992px;}
.x8_c03093{left:493.200072px;}
.xe_c03093{left:506.880360px;}
.x5_c03093{left:511.919388px;}
.x2_c03093{left:526.679604px;}
.x3_c03093{left:569.520000px;}
.x4_c03093{left:600.840000px;}
@media print{
.v0_c03093{vertical-align:0.000000pt;}
.v1_c03093{vertical-align:1.279488pt;}
.ls6_c03093{letter-spacing:-1.482624pt;}
.lsc_c03093{letter-spacing:-1.064448pt;}
.ls10_c03093{letter-spacing:-0.705408pt;}
.ls1c_c03093{letter-spacing:-0.654720pt;}
.lse_c03093{letter-spacing:-0.642048pt;}
.ls12_c03093{letter-spacing:-0.608256pt;}
.ls9_c03093{letter-spacing:-0.544896pt;}
.lsb_c03093{letter-spacing:-0.511104pt;}
.ls15_c03093{letter-spacing:-0.350592pt;}
.ls17_c03093{letter-spacing:-0.244992pt;}
.ls1d_c03093{letter-spacing:-0.240768pt;}
.ls13_c03093{letter-spacing:-0.232320pt;}
.ls8_c03093{letter-spacing:-0.215424pt;}
.ls5_c03093{letter-spacing:-0.105600pt;}
.ls1a_c03093{letter-spacing:0.000000pt;}
.ls1_c03093{letter-spacing:0.005376pt;}
.ls7_c03093{letter-spacing:0.114048pt;}
.lsf_c03093{letter-spacing:0.451968pt;}
.ls19_c03093{letter-spacing:0.456960pt;}
.ls16_c03093{letter-spacing:0.477312pt;}
.lsd_c03093{letter-spacing:0.515328pt;}
.ls18_c03093{letter-spacing:0.528000pt;}
.lsa_c03093{letter-spacing:0.532224pt;}
.ls0_c03093{letter-spacing:0.536448pt;}
.ls3_c03093{letter-spacing:0.544896pt;}
.ls1b_c03093{letter-spacing:0.549120pt;}
.ls2_c03093{letter-spacing:0.578688pt;}
.ls11_c03093{letter-spacing:0.608256pt;}
.ls4_c03093{letter-spacing:0.637824pt;}
.ls14_c03093{letter-spacing:0.642048pt;}
.ws10_c03093{word-spacing:-13.445376pt;}
.wse_c03093{word-spacing:-11.088000pt;}
.ws12_c03093{word-spacing:-11.075328pt;}
.wsd_c03093{word-spacing:-11.037312pt;}
.ws0_c03093{word-spacing:-10.454400pt;}
.ws5_c03093{word-spacing:-10.344576pt;}
.ws3_c03093{word-spacing:-10.015104pt;}
.ws7_c03093{word-spacing:-9.495552pt;}
.ws1_c03093{word-spacing:-9.077376pt;}
.ws20_c03093{word-spacing:-0.899712pt;}
.ws21_c03093{word-spacing:-0.870144pt;}
.ws15_c03093{word-spacing:-0.865920pt;}
.ws17_c03093{word-spacing:-0.857472pt;}
.ws1f_c03093{word-spacing:-0.639744pt;}
.ws18_c03093{word-spacing:-0.105600pt;}
.ws1c_c03093{word-spacing:-0.088704pt;}
.ws22_c03093{word-spacing:-0.080256pt;}
.ws1e_c03093{word-spacing:-0.076032pt;}
.ws16_c03093{word-spacing:0.000000pt;}
.ws1d_c03093{word-spacing:0.029568pt;}
.ws1b_c03093{word-spacing:0.287232pt;}
.ws19_c03093{word-spacing:0.321024pt;}
.ws1a_c03093{word-spacing:0.384384pt;}
.wsb_c03093{word-spacing:4.646400pt;}
.ws14_c03093{word-spacing:5.892480pt;}
.wsc_c03093{word-spacing:21.115776pt;}
.wsf_c03093{word-spacing:29.600256pt;}
.ws13_c03093{word-spacing:30.966144pt;}
.wsa_c03093{word-spacing:32.127744pt;}
.ws8_c03093{word-spacing:32.659968pt;}
.ws2_c03093{word-spacing:33.563904pt;}
.ws11_c03093{word-spacing:33.796224pt;}
.ws4_c03093{word-spacing:34.860672pt;}
.ws6_c03093{word-spacing:35.468928pt;}
.ws9_c03093{word-spacing:37.357056pt;}
._9_c03093{margin-left:-2.741376pt;}
._0_c03093{margin-left:-1.731840pt;}
._2_c03093{width:1.267200pt;}
._3_c03093{width:2.792064pt;}
._a_c03093{width:17.812608pt;}
._5_c03093{width:19.024896pt;}
._6_c03093{width:20.292096pt;}
._7_c03093{width:21.998592pt;}
._b_c03093{width:22.940544pt;}
._8_c03093{width:27.320832pt;}
._1_c03093{width:44.668800pt;}
._4_c03093{width:46.007808pt;}
.fs0_c03093{font-size:42.240000pt;}
.fs1_c03093{font-size:53.760000pt;}
.y0_c03093{bottom:0.000000pt;}
.y4_c03093{bottom:16.320400pt;}
.y1f_c03093{bottom:117.225499pt;}
.y1e_c03093{bottom:130.665211pt;}
.y21_c03093{bottom:165.866875pt;}
.y20_c03093{bottom:174.507067pt;}
.y1d_c03093{bottom:245.225371pt;}
.y1c_c03093{bottom:317.225563pt;}
.y1a_c03093{bottom:361.386427pt;}
.y16_c03093{bottom:377.386939pt;}
.y1b_c03093{bottom:407.786011pt;}
.y19_c03093{bottom:437.226235pt;}
.y18_c03093{bottom:453.226747pt;}
.y15_c03093{bottom:482.666971pt;}
.y17_c03093{bottom:497.386555pt;}
.y14_c03093{bottom:513.387067pt;}
.y22_c03093{bottom:546.027067pt;}
.y10_c03093{bottom:593.386363pt;}
.y12_c03093{bottom:628.586875pt;}
.y11_c03093{bottom:637.227067pt;}
.yf_c03093{bottom:694.506811pt;}
.ye_c03093{bottom:707.946523pt;}
.yd_c03093{bottom:766.505947pt;}
.yc_c03093{bottom:779.945659pt;}
.ya_c03093{bottom:823.786555pt;}
.y6_c03093{bottom:839.787067pt;}
.yb_c03093{bottom:870.506107pt;}
.y9_c03093{bottom:899.946331pt;}
.y8_c03093{bottom:915.946843pt;}
.y3_c03093{bottom:929.066667pt;}
.y2_c03093{bottom:945.386939pt;}
.y5_c03093{bottom:945.387067pt;}
.y7_c03093{bottom:959.786683pt;}
.y1_c03093{bottom:975.787067pt;}
.y13_c03093{bottom:1008.747067pt;}
.h3_c03093{height:26.240000pt;}
.h2_c03093{height:28.916250pt;}
.h1_c03093{height:37.063125pt;}
.h4_c03093{height:37.166250pt;}
.h5_c03093{height:48.581988pt;}
.h0_c03093{height:1122.666667pt;}
.w2_c03093{width:191.360000pt;}
.w1_c03093{width:793.333333pt;}
.w0_c03093{width:793.626667pt;}
.x0_c03093{left:0.000000pt;}
.xf_c03093{left:104.000000pt;}
.xa_c03093{left:391.999424pt;}
.x6_c03093{left:396.160064pt;}
.xd_c03093{left:400.960000pt;}
.x9_c03093{left:404.799200pt;}
.x7_c03093{left:410.559680pt;}
.x1_c03093{left:411.840000pt;}
.xc_c03093{left:429.759872pt;}
.xb_c03093{left:437.439104pt;}
.x8_c03093{left:438.400064pt;}
.xe_c03093{left:450.560320pt;}
.x5_c03093{left:455.039456pt;}
.x2_c03093{left:468.159648pt;}
.x3_c03093{left:506.240000pt;}
.x4_c03093{left:534.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03094 {
    display:none;
  }
  .loading-indicator_c03094.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03094 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03094 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03094" -> "#page-container .classname_c03094")
 */
.pf_c03094 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03094 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03094 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03094 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03094 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03094 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03094 {overflow:visible;}
  }
}
.c_c03094 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03094 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03094:after { /* webkit #35443 */
  content: '';
}
.t_c03094:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03094 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03094 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03094 { /* info for Javascript */
  display:none;
}
.l_c03094 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03094 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03094 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03094:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03094 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03094.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03094 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03094;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03094{font-family:ff1_c03094;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03094;src:url('chunks/assets/font_4ebfe41abc00ed66799f537a.woff2')format("woff");}.ff2_c03094{font-family:ff2_c03094;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03094;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03094{font-family:ff3_c03094;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03094{vertical-align:0.000000px;}
.v1_c03094{vertical-align:1.439424px;}
.lsa_c03094{letter-spacing:-1.197504px;}
.lsd_c03094{letter-spacing:-0.793584px;}
.ls16_c03094{letter-spacing:-0.755568px;}
.ls10_c03094{letter-spacing:-0.736560px;}
.ls7_c03094{letter-spacing:-0.613008px;}
.ls9_c03094{letter-spacing:-0.574992px;}
.ls17_c03094{letter-spacing:-0.275616px;}
.ls11_c03094{letter-spacing:-0.270864px;}
.lse_c03094{letter-spacing:-0.261360px;}
.ls6_c03094{letter-spacing:-0.242352px;}
.ls4_c03094{letter-spacing:-0.118800px;}
.ls14_c03094{letter-spacing:0.000000px;}
.ls1_c03094{letter-spacing:0.006048px;}
.ls5_c03094{letter-spacing:0.128304px;}
.ls15_c03094{letter-spacing:0.242352px;}
.lsc_c03094{letter-spacing:0.508464px;}
.ls13_c03094{letter-spacing:0.514080px;}
.lsf_c03094{letter-spacing:0.536976px;}
.lsb_c03094{letter-spacing:0.579744px;}
.ls12_c03094{letter-spacing:0.594000px;}
.ls8_c03094{letter-spacing:0.598752px;}
.ls3_c03094{letter-spacing:0.613008px;}
.ls0_c03094{letter-spacing:0.651024px;}
.ls2_c03094{letter-spacing:0.717552px;}
.sc__c03094{text-shadow:none;}
.sc0_c03094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03094{-webkit-text-stroke:0px transparent;}
.sc0_c03094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03094{word-spacing:-15.126048px;}
.wsc_c03094{word-spacing:-12.474000px;}
.ws7_c03094{word-spacing:-12.459744px;}
.ws12_c03094{word-spacing:-12.416976px;}
.wsf_c03094{word-spacing:-12.122352px;}
.ws4_c03094{word-spacing:-11.637648px;}
.ws2_c03094{word-spacing:-11.266992px;}
.ws10_c03094{word-spacing:-11.124432px;}
.ws6_c03094{word-spacing:-10.682496px;}
.ws1c_c03094{word-spacing:-1.078704px;}
.ws15_c03094{word-spacing:-1.012176px;}
.ws13_c03094{word-spacing:-0.974160px;}
.ws1b_c03094{word-spacing:-0.719712px;}
.ws16_c03094{word-spacing:-0.118800px;}
.ws18_c03094{word-spacing:-0.099792px;}
.ws19_c03094{word-spacing:-0.090288px;}
.ws1a_c03094{word-spacing:-0.085536px;}
.ws14_c03094{word-spacing:0.000000px;}
.ws1d_c03094{word-spacing:0.375408px;}
.ws17_c03094{word-spacing:0.432432px;}
.ws1e_c03094{word-spacing:0.836352px;}
.wsb_c03094{word-spacing:6.629040px;}
.wsd_c03094{word-spacing:33.300288px;}
.wsa_c03094{word-spacing:34.836912px;}
.ws9_c03094{word-spacing:36.143712px;}
.ws11_c03094{word-spacing:36.742464px;}
.ws1_c03094{word-spacing:37.759392px;}
.ws0_c03094{word-spacing:38.020752px;}
.ws3_c03094{word-spacing:39.218256px;}
.ws5_c03094{word-spacing:39.902544px;}
.ws8_c03094{word-spacing:42.026688px;}
._0_c03094{margin-left:-1.948320px;}
._2_c03094{width:1.482624px;}
._4_c03094{width:3.302640px;}
._6_c03094{width:19.982160px;}
._7_c03094{width:23.451120px;}
._5_c03094{width:24.691392px;}
._1_c03094{width:50.252400px;}
._3_c03094{width:51.530688px;}
.fc0_c03094{color:rgb(0,0,0);}
.fs0_c03094{font-size:47.520000px;}
.fs1_c03094{font-size:60.480000px;}
.y0_c03094{bottom:0.000000px;}
.y1a_c03094{bottom:146.998362px;}
.y1c_c03094{bottom:186.600234px;}
.y1b_c03094{bottom:196.320450px;}
.y19_c03094{bottom:275.878542px;}
.y18_c03094{bottom:356.878758px;}
.y16_c03094{bottom:406.559730px;}
.y12_c03094{bottom:424.560306px;}
.y17_c03094{bottom:458.759262px;}
.y15_c03094{bottom:491.879514px;}
.y14_c03094{bottom:509.880090px;}
.y11_c03094{bottom:543.000342px;}
.y13_c03094{bottom:559.559874px;}
.y10_c03094{bottom:577.560450px;}
.y1d_c03094{bottom:614.280450px;}
.yc_c03094{bottom:652.438650px;}
.yb_c03094{bottom:667.558326px;}
.ye_c03094{bottom:707.160234px;}
.yd_c03094{bottom:716.880450px;}
.ya_c03094{bottom:796.438506px;}
.y9_c03094{bottom:877.438722px;}
.y7_c03094{bottom:926.759730px;}
.y3_c03094{bottom:944.760306px;}
.y8_c03094{bottom:979.319226px;}
.y6_c03094{bottom:1012.439478px;}
.y5_c03094{bottom:1030.440054px;}
.y2_c03094{bottom:1063.560306px;}
.y4_c03094{bottom:1079.759874px;}
.y1_c03094{bottom:1097.760450px;}
.yf_c03094{bottom:1134.840450px;}
.h3_c03094{height:32.530781px;}
.h1_c03094{height:41.696016px;}
.h2_c03094{height:41.812031px;}
.h4_c03094{height:54.654737px;}
.h0_c03094{height:1263.000000px;}
.w1_c03094{width:892.500000px;}
.w0_c03094{width:892.830000px;}
.x0_c03094{left:0.000000px;}
.xe_c03094{left:117.000000px;}
.x8_c03094{left:440.999856px;}
.x4_c03094{left:445.680576px;}
.xc_c03094{left:451.080000px;}
.x7_c03094{left:455.399604px;}
.x5_c03094{left:461.880144px;}
.x1_c03094{left:463.320000px;}
.xa_c03094{left:483.480360px;}
.x9_c03094{left:492.119496px;}
.x6_c03094{left:493.200576px;}
.xd_c03094{left:506.880360px;}
.x3_c03094{left:511.919892px;}
.x2_c03094{left:526.679604px;}
.xb_c03094{left:569.880036px;}
@media print{
.v0_c03094{vertical-align:0.000000pt;}
.v1_c03094{vertical-align:1.279488pt;}
.lsa_c03094{letter-spacing:-1.064448pt;}
.lsd_c03094{letter-spacing:-0.705408pt;}
.ls16_c03094{letter-spacing:-0.671616pt;}
.ls10_c03094{letter-spacing:-0.654720pt;}
.ls7_c03094{letter-spacing:-0.544896pt;}
.ls9_c03094{letter-spacing:-0.511104pt;}
.ls17_c03094{letter-spacing:-0.244992pt;}
.ls11_c03094{letter-spacing:-0.240768pt;}
.lse_c03094{letter-spacing:-0.232320pt;}
.ls6_c03094{letter-spacing:-0.215424pt;}
.ls4_c03094{letter-spacing:-0.105600pt;}
.ls14_c03094{letter-spacing:0.000000pt;}
.ls1_c03094{letter-spacing:0.005376pt;}
.ls5_c03094{letter-spacing:0.114048pt;}
.ls15_c03094{letter-spacing:0.215424pt;}
.lsc_c03094{letter-spacing:0.451968pt;}
.ls13_c03094{letter-spacing:0.456960pt;}
.lsf_c03094{letter-spacing:0.477312pt;}
.lsb_c03094{letter-spacing:0.515328pt;}
.ls12_c03094{letter-spacing:0.528000pt;}
.ls8_c03094{letter-spacing:0.532224pt;}
.ls3_c03094{letter-spacing:0.544896pt;}
.ls0_c03094{letter-spacing:0.578688pt;}
.ls2_c03094{letter-spacing:0.637824pt;}
.wse_c03094{word-spacing:-13.445376pt;}
.wsc_c03094{word-spacing:-11.088000pt;}
.ws7_c03094{word-spacing:-11.075328pt;}
.ws12_c03094{word-spacing:-11.037312pt;}
.wsf_c03094{word-spacing:-10.775424pt;}
.ws4_c03094{word-spacing:-10.344576pt;}
.ws2_c03094{word-spacing:-10.015104pt;}
.ws10_c03094{word-spacing:-9.888384pt;}
.ws6_c03094{word-spacing:-9.495552pt;}
.ws1c_c03094{word-spacing:-0.958848pt;}
.ws15_c03094{word-spacing:-0.899712pt;}
.ws13_c03094{word-spacing:-0.865920pt;}
.ws1b_c03094{word-spacing:-0.639744pt;}
.ws16_c03094{word-spacing:-0.105600pt;}
.ws18_c03094{word-spacing:-0.088704pt;}
.ws19_c03094{word-spacing:-0.080256pt;}
.ws1a_c03094{word-spacing:-0.076032pt;}
.ws14_c03094{word-spacing:0.000000pt;}
.ws1d_c03094{word-spacing:0.333696pt;}
.ws17_c03094{word-spacing:0.384384pt;}
.ws1e_c03094{word-spacing:0.743424pt;}
.wsb_c03094{word-spacing:5.892480pt;}
.wsd_c03094{word-spacing:29.600256pt;}
.wsa_c03094{word-spacing:30.966144pt;}
.ws9_c03094{word-spacing:32.127744pt;}
.ws11_c03094{word-spacing:32.659968pt;}
.ws1_c03094{word-spacing:33.563904pt;}
.ws0_c03094{word-spacing:33.796224pt;}
.ws3_c03094{word-spacing:34.860672pt;}
.ws5_c03094{word-spacing:35.468928pt;}
.ws8_c03094{word-spacing:37.357056pt;}
._0_c03094{margin-left:-1.731840pt;}
._2_c03094{width:1.317888pt;}
._4_c03094{width:2.935680pt;}
._6_c03094{width:17.761920pt;}
._7_c03094{width:20.845440pt;}
._5_c03094{width:21.947904pt;}
._1_c03094{width:44.668800pt;}
._3_c03094{width:45.805056pt;}
.fs0_c03094{font-size:42.240000pt;}
.fs1_c03094{font-size:53.760000pt;}
.y0_c03094{bottom:0.000000pt;}
.y1a_c03094{bottom:130.665211pt;}
.y1c_c03094{bottom:165.866875pt;}
.y1b_c03094{bottom:174.507067pt;}
.y19_c03094{bottom:245.225371pt;}
.y18_c03094{bottom:317.225563pt;}
.y16_c03094{bottom:361.386427pt;}
.y12_c03094{bottom:377.386939pt;}
.y17_c03094{bottom:407.786011pt;}
.y15_c03094{bottom:437.226235pt;}
.y14_c03094{bottom:453.226747pt;}
.y11_c03094{bottom:482.666971pt;}
.y13_c03094{bottom:497.386555pt;}
.y10_c03094{bottom:513.387067pt;}
.y1d_c03094{bottom:546.027067pt;}
.yc_c03094{bottom:579.945467pt;}
.yb_c03094{bottom:593.385179pt;}
.ye_c03094{bottom:628.586875pt;}
.yd_c03094{bottom:637.227067pt;}
.ya_c03094{bottom:707.945339pt;}
.y9_c03094{bottom:779.945531pt;}
.y7_c03094{bottom:823.786427pt;}
.y3_c03094{bottom:839.786939pt;}
.y8_c03094{bottom:870.505979pt;}
.y6_c03094{bottom:899.946203pt;}
.y5_c03094{bottom:915.946715pt;}
.y2_c03094{bottom:945.386939pt;}
.y4_c03094{bottom:959.786555pt;}
.y1_c03094{bottom:975.787067pt;}
.yf_c03094{bottom:1008.747067pt;}
.h3_c03094{height:28.916250pt;}
.h1_c03094{height:37.063125pt;}
.h2_c03094{height:37.166250pt;}
.h4_c03094{height:48.581988pt;}
.h0_c03094{height:1122.666667pt;}
.w1_c03094{width:793.333333pt;}
.w0_c03094{width:793.626667pt;}
.x0_c03094{left:0.000000pt;}
.xe_c03094{left:104.000000pt;}
.x8_c03094{left:391.999872pt;}
.x4_c03094{left:396.160512pt;}
.xc_c03094{left:400.960000pt;}
.x7_c03094{left:404.799648pt;}
.x5_c03094{left:410.560128pt;}
.x1_c03094{left:411.840000pt;}
.xa_c03094{left:429.760320pt;}
.x9_c03094{left:437.439552pt;}
.x6_c03094{left:438.400512pt;}
.xd_c03094{left:450.560320pt;}
.x3_c03094{left:455.039904pt;}
.x2_c03094{left:468.159648pt;}
.xb_c03094{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03095 {
    display:none;
  }
  .loading-indicator_c03095.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03095 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03095 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03095" -> "#page-container .classname_c03095")
 */
.pf_c03095 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03095 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03095.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03095 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03095 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03095 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03095 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03095 {overflow:visible;}
  }
}
.c_c03095 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03095 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03095:after { /* webkit #35443 */
  content: '';
}
.t_c03095:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03095 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03095 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03095 { /* info for Javascript */
  display:none;
}
.l_c03095 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03095 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03095 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03095:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03095 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03095.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03095.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03095 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03095{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03095;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03095{font-family:ff1_c03095;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03095;src:url('chunks/assets/font_1733859278b61bbaaaed9b18.woff2')format("woff");}.ff2_c03095{font-family:ff2_c03095;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03095;src:url('chunks/assets/font_fa1d718fd3c9b4ee2fb948bd.woff2')format("woff");}.ff3_c03095{font-family:ff3_c03095;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03095{vertical-align:0.000000px;}
.v1_c03095{vertical-align:1.439424px;}
.lse_c03095{letter-spacing:-1.197504px;}
.ls18_c03095{letter-spacing:-0.779328px;}
.lsc_c03095{letter-spacing:-0.698544px;}
.ls8_c03095{letter-spacing:-0.613008px;}
.lsa_c03095{letter-spacing:-0.574992px;}
.ls16_c03095{letter-spacing:-0.308880px;}
.ls11_c03095{letter-spacing:-0.275616px;}
.lsf_c03095{letter-spacing:-0.261360px;}
.ls7_c03095{letter-spacing:-0.242352px;}
.ls5_c03095{letter-spacing:-0.118800px;}
.ls14_c03095{letter-spacing:0.000000px;}
.ls1_c03095{letter-spacing:0.006048px;}
.ls15_c03095{letter-spacing:0.061776px;}
.ls6_c03095{letter-spacing:0.128304px;}
.lsd_c03095{letter-spacing:0.508464px;}
.ls13_c03095{letter-spacing:0.514080px;}
.ls10_c03095{letter-spacing:0.536976px;}
.lsb_c03095{letter-spacing:0.579744px;}
.ls12_c03095{letter-spacing:0.594000px;}
.ls9_c03095{letter-spacing:0.598752px;}
.ls3_c03095{letter-spacing:0.613008px;}
.ls2_c03095{letter-spacing:0.651024px;}
.ls4_c03095{letter-spacing:0.717552px;}
.ls0_c03095{letter-spacing:0.722304px;}
.ls17_c03095{letter-spacing:16.346880px;}
.sc__c03095{text-shadow:none;}
.sc0_c03095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03095{-webkit-text-stroke:0px transparent;}
.sc0_c03095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03095{word-spacing:-28.226880px;}
.wsc_c03095{word-spacing:-15.126048px;}
.wsa_c03095{word-spacing:-12.474000px;}
.ws8_c03095{word-spacing:-12.459744px;}
.ws9_c03095{word-spacing:-12.416976px;}
.ws4_c03095{word-spacing:-11.637648px;}
.ws2_c03095{word-spacing:-11.266992px;}
.ws12_c03095{word-spacing:-1.083456px;}
.ws1a_c03095{word-spacing:-1.078704px;}
.ws18_c03095{word-spacing:-1.012176px;}
.wsf_c03095{word-spacing:-0.974160px;}
.ws17_c03095{word-spacing:-0.719712px;}
.ws19_c03095{word-spacing:-0.422928px;}
.ws11_c03095{word-spacing:-0.118800px;}
.ws15_c03095{word-spacing:-0.099792px;}
.ws16_c03095{word-spacing:-0.085536px;}
.ws1b_c03095{word-spacing:-0.052272px;}
.ws10_c03095{word-spacing:0.000000px;}
.ws13_c03095{word-spacing:0.337392px;}
.ws1c_c03095{word-spacing:0.418176px;}
.ws14_c03095{word-spacing:0.836352px;}
.wsb_c03095{word-spacing:33.300288px;}
.wsd_c03095{word-spacing:34.836912px;}
.ws6_c03095{word-spacing:36.742464px;}
.ws1_c03095{word-spacing:37.759392px;}
.ws0_c03095{word-spacing:38.020752px;}
.ws3_c03095{word-spacing:39.218256px;}
.ws5_c03095{word-spacing:39.902544px;}
.ws7_c03095{word-spacing:42.026688px;}
._a_c03095{margin-left:-18.214416px;}
._8_c03095{margin-left:-16.983648px;}
._9_c03095{margin-left:-15.139872px;}
._0_c03095{margin-left:-1.948320px;}
._2_c03095{width:1.482624px;}
._5_c03095{width:2.770416px;}
._4_c03095{width:4.329072px;}
._7_c03095{width:6.263136px;}
._6_c03095{width:10.145520px;}
._1_c03095{width:50.252400px;}
._3_c03095{width:51.530688px;}
.fc0_c03095{color:rgb(0,0,0);}
.fs0_c03095{font-size:47.520000px;}
.fs1_c03095{font-size:60.480000px;}
.y0_c03095{bottom:0.000000px;}
.y1a_c03095{bottom:131.878686px;}
.y19_c03095{bottom:146.998362px;}
.y1c_c03095{bottom:186.600234px;}
.y1b_c03095{bottom:196.320450px;}
.y18_c03095{bottom:275.878542px;}
.y17_c03095{bottom:356.878758px;}
.y15_c03095{bottom:406.559730px;}
.y11_c03095{bottom:424.560306px;}
.y16_c03095{bottom:458.759262px;}
.y14_c03095{bottom:491.879514px;}
.y13_c03095{bottom:509.880090px;}
.y10_c03095{bottom:543.000342px;}
.y12_c03095{bottom:559.559874px;}
.yf_c03095{bottom:577.560450px;}
.y1d_c03095{bottom:614.280450px;}
.yb_c03095{bottom:667.558326px;}
.yd_c03095{bottom:707.160234px;}
.yc_c03095{bottom:716.880450px;}
.ya_c03095{bottom:796.438506px;}
.y9_c03095{bottom:877.438722px;}
.y7_c03095{bottom:926.759730px;}
.y3_c03095{bottom:944.760306px;}
.y8_c03095{bottom:979.319226px;}
.y6_c03095{bottom:1012.439478px;}
.y5_c03095{bottom:1030.440054px;}
.y2_c03095{bottom:1063.560306px;}
.y4_c03095{bottom:1079.759874px;}
.y1_c03095{bottom:1097.760450px;}
.ye_c03095{bottom:1134.840450px;}
.h3_c03095{height:32.530781px;}
.h1_c03095{height:41.696016px;}
.h2_c03095{height:41.812031px;}
.h4_c03095{height:54.654737px;}
.h0_c03095{height:1263.000000px;}
.w1_c03095{width:892.500000px;}
.w0_c03095{width:892.830000px;}
.x0_c03095{left:0.000000px;}
.xd_c03095{left:117.000000px;}
.x8_c03095{left:440.999856px;}
.x4_c03095{left:445.680576px;}
.xb_c03095{left:451.080000px;}
.x7_c03095{left:455.399604px;}
.x5_c03095{left:461.880144px;}
.x1_c03095{left:463.320000px;}
.xa_c03095{left:483.480360px;}
.x9_c03095{left:492.119496px;}
.x6_c03095{left:493.200576px;}
.xc_c03095{left:506.880360px;}
.x3_c03095{left:511.919892px;}
.x2_c03095{left:526.679604px;}
.xe_c03095{left:569.880036px;}
@media print{
.v0_c03095{vertical-align:0.000000pt;}
.v1_c03095{vertical-align:1.279488pt;}
.lse_c03095{letter-spacing:-1.064448pt;}
.ls18_c03095{letter-spacing:-0.692736pt;}
.lsc_c03095{letter-spacing:-0.620928pt;}
.ls8_c03095{letter-spacing:-0.544896pt;}
.lsa_c03095{letter-spacing:-0.511104pt;}
.ls16_c03095{letter-spacing:-0.274560pt;}
.ls11_c03095{letter-spacing:-0.244992pt;}
.lsf_c03095{letter-spacing:-0.232320pt;}
.ls7_c03095{letter-spacing:-0.215424pt;}
.ls5_c03095{letter-spacing:-0.105600pt;}
.ls14_c03095{letter-spacing:0.000000pt;}
.ls1_c03095{letter-spacing:0.005376pt;}
.ls15_c03095{letter-spacing:0.054912pt;}
.ls6_c03095{letter-spacing:0.114048pt;}
.lsd_c03095{letter-spacing:0.451968pt;}
.ls13_c03095{letter-spacing:0.456960pt;}
.ls10_c03095{letter-spacing:0.477312pt;}
.lsb_c03095{letter-spacing:0.515328pt;}
.ls12_c03095{letter-spacing:0.528000pt;}
.ls9_c03095{letter-spacing:0.532224pt;}
.ls3_c03095{letter-spacing:0.544896pt;}
.ls2_c03095{letter-spacing:0.578688pt;}
.ls4_c03095{letter-spacing:0.637824pt;}
.ls0_c03095{letter-spacing:0.642048pt;}
.ls17_c03095{letter-spacing:14.530560pt;}
.wse_c03095{word-spacing:-25.090560pt;}
.wsc_c03095{word-spacing:-13.445376pt;}
.wsa_c03095{word-spacing:-11.088000pt;}
.ws8_c03095{word-spacing:-11.075328pt;}
.ws9_c03095{word-spacing:-11.037312pt;}
.ws4_c03095{word-spacing:-10.344576pt;}
.ws2_c03095{word-spacing:-10.015104pt;}
.ws12_c03095{word-spacing:-0.963072pt;}
.ws1a_c03095{word-spacing:-0.958848pt;}
.ws18_c03095{word-spacing:-0.899712pt;}
.wsf_c03095{word-spacing:-0.865920pt;}
.ws17_c03095{word-spacing:-0.639744pt;}
.ws19_c03095{word-spacing:-0.375936pt;}
.ws11_c03095{word-spacing:-0.105600pt;}
.ws15_c03095{word-spacing:-0.088704pt;}
.ws16_c03095{word-spacing:-0.076032pt;}
.ws1b_c03095{word-spacing:-0.046464pt;}
.ws10_c03095{word-spacing:0.000000pt;}
.ws13_c03095{word-spacing:0.299904pt;}
.ws1c_c03095{word-spacing:0.371712pt;}
.ws14_c03095{word-spacing:0.743424pt;}
.wsb_c03095{word-spacing:29.600256pt;}
.wsd_c03095{word-spacing:30.966144pt;}
.ws6_c03095{word-spacing:32.659968pt;}
.ws1_c03095{word-spacing:33.563904pt;}
.ws0_c03095{word-spacing:33.796224pt;}
.ws3_c03095{word-spacing:34.860672pt;}
.ws5_c03095{word-spacing:35.468928pt;}
.ws7_c03095{word-spacing:37.357056pt;}
._a_c03095{margin-left:-16.190592pt;}
._8_c03095{margin-left:-15.096576pt;}
._9_c03095{margin-left:-13.457664pt;}
._0_c03095{margin-left:-1.731840pt;}
._2_c03095{width:1.317888pt;}
._5_c03095{width:2.462592pt;}
._4_c03095{width:3.848064pt;}
._7_c03095{width:5.567232pt;}
._6_c03095{width:9.018240pt;}
._1_c03095{width:44.668800pt;}
._3_c03095{width:45.805056pt;}
.fs0_c03095{font-size:42.240000pt;}
.fs1_c03095{font-size:53.760000pt;}
.y0_c03095{bottom:0.000000pt;}
.y1a_c03095{bottom:117.225499pt;}
.y19_c03095{bottom:130.665211pt;}
.y1c_c03095{bottom:165.866875pt;}
.y1b_c03095{bottom:174.507067pt;}
.y18_c03095{bottom:245.225371pt;}
.y17_c03095{bottom:317.225563pt;}
.y15_c03095{bottom:361.386427pt;}
.y11_c03095{bottom:377.386939pt;}
.y16_c03095{bottom:407.786011pt;}
.y14_c03095{bottom:437.226235pt;}
.y13_c03095{bottom:453.226747pt;}
.y10_c03095{bottom:482.666971pt;}
.y12_c03095{bottom:497.386555pt;}
.yf_c03095{bottom:513.387067pt;}
.y1d_c03095{bottom:546.027067pt;}
.yb_c03095{bottom:593.385179pt;}
.yd_c03095{bottom:628.586875pt;}
.yc_c03095{bottom:637.227067pt;}
.ya_c03095{bottom:707.945339pt;}
.y9_c03095{bottom:779.945531pt;}
.y7_c03095{bottom:823.786427pt;}
.y3_c03095{bottom:839.786939pt;}
.y8_c03095{bottom:870.505979pt;}
.y6_c03095{bottom:899.946203pt;}
.y5_c03095{bottom:915.946715pt;}
.y2_c03095{bottom:945.386939pt;}
.y4_c03095{bottom:959.786555pt;}
.y1_c03095{bottom:975.787067pt;}
.ye_c03095{bottom:1008.747067pt;}
.h3_c03095{height:28.916250pt;}
.h1_c03095{height:37.063125pt;}
.h2_c03095{height:37.166250pt;}
.h4_c03095{height:48.581988pt;}
.h0_c03095{height:1122.666667pt;}
.w1_c03095{width:793.333333pt;}
.w0_c03095{width:793.626667pt;}
.x0_c03095{left:0.000000pt;}
.xd_c03095{left:104.000000pt;}
.x8_c03095{left:391.999872pt;}
.x4_c03095{left:396.160512pt;}
.xb_c03095{left:400.960000pt;}
.x7_c03095{left:404.799648pt;}
.x5_c03095{left:410.560128pt;}
.x1_c03095{left:411.840000pt;}
.xa_c03095{left:429.760320pt;}
.x9_c03095{left:437.439552pt;}
.x6_c03095{left:438.400512pt;}
.xc_c03095{left:450.560320pt;}
.x3_c03095{left:455.039904pt;}
.x2_c03095{left:468.159648pt;}
.xe_c03095{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03096 {
    display:none;
  }
  .loading-indicator_c03096.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03096 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03096 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03096" -> "#page-container .classname_c03096")
 */
.pf_c03096 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03096 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03096.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03096 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03096 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03096 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03096 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03096 {overflow:visible;}
  }
}
.c_c03096 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03096 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03096:after { /* webkit #35443 */
  content: '';
}
.t_c03096:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03096 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03096 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03096 { /* info for Javascript */
  display:none;
}
.l_c03096 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03096 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03096 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03096:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03096 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03096.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03096.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03096 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03096;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03096{font-family:ff1_c03096;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03096;src:url('chunks/assets/font_7984bcd299aac0d0290be950.woff2')format("woff");}.ff2_c03096{font-family:ff2_c03096;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03096;src:url('chunks/assets/font_f6e1b576e4a2dc16f07e9924.woff2')format("woff");}.ff3_c03096{font-family:ff3_c03096;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03096{vertical-align:0.000000px;}
.v1_c03096{vertical-align:1.439424px;}
.ls12_c03096{letter-spacing:-1.197504px;}
.lsd_c03096{letter-spacing:-0.803088px;}
.ls1a_c03096{letter-spacing:-0.722304px;}
.ls21_c03096{letter-spacing:-0.718272px;}
.lsb_c03096{letter-spacing:-0.574992px;}
.ls14_c03096{letter-spacing:-0.361152px;}
.ls10_c03096{letter-spacing:-0.285120px;}
.ls20_c03096{letter-spacing:-0.275616px;}
.lsa_c03096{letter-spacing:-0.270864px;}
.ls11_c03096{letter-spacing:-0.261360px;}
.ls9_c03096{letter-spacing:-0.242352px;}
.ls19_c03096{letter-spacing:-0.237600px;}
.ls7_c03096{letter-spacing:-0.118800px;}
.ls18_c03096{letter-spacing:0.000000px;}
.ls2_c03096{letter-spacing:0.006048px;}
.ls1b_c03096{letter-spacing:0.028512px;}
.lsf_c03096{letter-spacing:0.061776px;}
.ls8_c03096{letter-spacing:0.128304px;}
.ls13_c03096{letter-spacing:0.237600px;}
.ls22_c03096{letter-spacing:0.467712px;}
.ls23_c03096{letter-spacing:0.484416px;}
.lse_c03096{letter-spacing:0.508464px;}
.ls17_c03096{letter-spacing:0.514080px;}
.ls15_c03096{letter-spacing:0.536976px;}
.lsc_c03096{letter-spacing:0.579744px;}
.ls16_c03096{letter-spacing:0.594000px;}
.ls3_c03096{letter-spacing:0.598752px;}
.ls6_c03096{letter-spacing:0.613008px;}
.ls1_c03096{letter-spacing:0.627264px;}
.ls1d_c03096{letter-spacing:0.655776px;}
.ls4_c03096{letter-spacing:0.665280px;}
.ls1e_c03096{letter-spacing:0.670032px;}
.ls1c_c03096{letter-spacing:0.698544px;}
.ls5_c03096{letter-spacing:0.717552px;}
.ls0_c03096{letter-spacing:0.722304px;}
.ls1f_c03096{letter-spacing:51.478416px;}
.sc__c03096{text-shadow:none;}
.sc0_c03096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03096{-webkit-text-stroke:0px transparent;}
.sc0_c03096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a_c03096{word-spacing:-63.358416px;}
.wsd_c03096{word-spacing:-15.126048px;}
.ws1_c03096{word-spacing:-12.602304px;}
.ws17_c03096{word-spacing:-12.545280px;}
.wsb_c03096{word-spacing:-12.474000px;}
.ws9_c03096{word-spacing:-12.117600px;}
.ws0_c03096{word-spacing:-11.761200px;}
.wse_c03096{word-spacing:-11.642400px;}
.ws3_c03096{word-spacing:-11.637648px;}
.ws2f_c03096{word-spacing:-2.518560px;}
.ws2c_c03096{word-spacing:-2.399760px;}
.ws24_c03096{word-spacing:-1.083456px;}
.ws2d_c03096{word-spacing:-1.026432px;}
.ws21_c03096{word-spacing:-0.988416px;}
.ws1f_c03096{word-spacing:-0.974160px;}
.ws31_c03096{word-spacing:-0.843552px;}
.ws2b_c03096{word-spacing:-0.719712px;}
.ws12_c03096{word-spacing:-0.594000px;}
.ws26_c03096{word-spacing:-0.422928px;}
.ws2e_c03096{word-spacing:-0.389664px;}
.ws22_c03096{word-spacing:-0.118800px;}
.ws28_c03096{word-spacing:-0.099792px;}
.ws23_c03096{word-spacing:-0.090288px;}
.ws2a_c03096{word-spacing:-0.085536px;}
.ws27_c03096{word-spacing:-0.076032px;}
.ws20_c03096{word-spacing:0.000000px;}
.ws32_c03096{word-spacing:0.359136px;}
.ws30_c03096{word-spacing:0.361152px;}
.ws25_c03096{word-spacing:0.441936px;}
.ws19_c03096{word-spacing:0.717552px;}
.ws29_c03096{word-spacing:0.836352px;}
.ws1c_c03096{word-spacing:6.476976px;}
.ws11_c03096{word-spacing:6.638544px;}
.ws15_c03096{word-spacing:7.166016px;}
.ws18_c03096{word-spacing:8.643888px;}
.ws10_c03096{word-spacing:9.470736px;}
.ws16_c03096{word-spacing:10.345104px;}
.ws14_c03096{word-spacing:14.165712px;}
.ws1b_c03096{word-spacing:19.435680px;}
.ws13_c03096{word-spacing:24.002352px;}
.ws1d_c03096{word-spacing:28.860336px;}
.wsf_c03096{word-spacing:30.393792px;}
.ws1e_c03096{word-spacing:32.397408px;}
.wsc_c03096{word-spacing:33.300288px;}
.wsa_c03096{word-spacing:34.836912px;}
.ws8_c03096{word-spacing:36.143712px;}
.ws6_c03096{word-spacing:36.742464px;}
.ws2_c03096{word-spacing:37.759392px;}
.ws4_c03096{word-spacing:39.218256px;}
.ws5_c03096{word-spacing:39.902544px;}
.ws7_c03096{word-spacing:42.026688px;}
._e_c03096{margin-left:-52.675920px;}
._10_c03096{margin-left:-51.554448px;}
._f_c03096{margin-left:-49.962528px;}
._0_c03096{margin-left:-1.948320px;}
._2_c03096{width:1.482624px;}
._4_c03096{width:3.411936px;}
._a_c03096{width:13.500432px;}
._c_c03096{width:15.581808px;}
._b_c03096{width:17.720208px;}
._5_c03096{width:21.445776px;}
._8_c03096{width:22.728816px;}
._7_c03096{width:24.672384px;}
._9_c03096{width:26.882064px;}
._12_c03096{width:30.260736px;}
._11_c03096{width:35.017488px;}
._d_c03096{width:41.223600px;}
._6_c03096{width:44.825616px;}
._13_c03096{width:46.774368px;}
._1_c03096{width:50.252400px;}
._3_c03096{width:51.530688px;}
.fc0_c03096{color:rgb(0,0,0);}
.fs2_c03096{font-size:41.760000px;}
.fs0_c03096{font-size:47.520000px;}
.fs1_c03096{font-size:60.480000px;}
.y0_c03096{bottom:0.000000px;}
.y15_c03096{bottom:18.000450px;}
.y4_c03096{bottom:18.360450px;}
.y27_c03096{bottom:147.002034px;}
.y2c_c03096{bottom:174.001068px;}
.y2b_c03096{bottom:185.880744px;}
.y29_c03096{bottom:186.600234px;}
.y28_c03096{bottom:196.320450px;}
.y2a_c03096{bottom:198.120600px;}
.y26_c03096{bottom:230.881962px;}
.y25_c03096{bottom:246.001638px;}
.y24_c03096{bottom:260.761350px;}
.y23_c03096{bottom:275.881026px;}
.y22_c03096{bottom:296.761314px;}
.y21_c03096{bottom:311.880990px;}
.y20_c03096{bottom:327.000666px;}
.y1f_c03096{bottom:341.760378px;}
.y1e_c03096{bottom:356.880054px;}
.y1c_c03096{bottom:391.440162px;}
.y1b_c03096{bottom:406.559838px;}
.y17_c03096{bottom:424.560414px;}
.y1d_c03096{bottom:458.760558px;}
.y1a_c03096{bottom:491.879622px;}
.y19_c03096{bottom:509.880198px;}
.y14_c03096{bottom:525.000000px;}
.y13_c03096{bottom:543.000342px;}
.y16_c03096{bottom:543.000450px;}
.y18_c03096{bottom:559.559982px;}
.y12_c03096{bottom:577.560450px;}
.y2d_c03096{bottom:614.280450px;}
.ye_c03096{bottom:667.558470px;}
.y10_c03096{bottom:707.160234px;}
.yf_c03096{bottom:716.880450px;}
.yd_c03096{bottom:796.438650px;}
.yc_c03096{bottom:877.438866px;}
.ya_c03096{bottom:926.759874px;}
.y6_c03096{bottom:944.760450px;}
.yb_c03096{bottom:979.319370px;}
.y9_c03096{bottom:1012.439622px;}
.y8_c03096{bottom:1030.440198px;}
.y3_c03096{bottom:1045.200000px;}
.y2_c03096{bottom:1063.560306px;}
.y5_c03096{bottom:1063.560450px;}
.y7_c03096{bottom:1079.760018px;}
.y1_c03096{bottom:1097.760450px;}
.y11_c03096{bottom:1134.840450px;}
.h6_c03096{height:29.160000px;}
.h3_c03096{height:29.520000px;}
.h2_c03096{height:32.530781px;}
.h7_c03096{height:36.641953px;}
.h1_c03096{height:41.696016px;}
.h4_c03096{height:41.812031px;}
.h5_c03096{height:54.654737px;}
.h0_c03096{height:1263.000000px;}
.w2_c03096{width:215.280000px;}
.w1_c03096{width:892.500000px;}
.w0_c03096{width:892.830000px;}
.x0_c03096{left:0.000000px;}
.xf_c03096{left:117.000000px;}
.xa_c03096{left:441.000360px;}
.x6_c03096{left:445.681080px;}
.xd_c03096{left:451.080000px;}
.x9_c03096{left:455.400108px;}
.x7_c03096{left:461.880648px;}
.x1_c03096{left:463.320000px;}
.xc_c03096{left:483.480864px;}
.xb_c03096{left:492.120000px;}
.x8_c03096{left:493.201080px;}
.xe_c03096{left:506.880360px;}
.x5_c03096{left:511.920396px;}
.x2_c03096{left:526.679604px;}
.x3_c03096{left:569.520000px;}
.x4_c03096{left:599.040000px;}
@media print{
.v0_c03096{vertical-align:0.000000pt;}
.v1_c03096{vertical-align:1.279488pt;}
.ls12_c03096{letter-spacing:-1.064448pt;}
.lsd_c03096{letter-spacing:-0.713856pt;}
.ls1a_c03096{letter-spacing:-0.642048pt;}
.ls21_c03096{letter-spacing:-0.638464pt;}
.lsb_c03096{letter-spacing:-0.511104pt;}
.ls14_c03096{letter-spacing:-0.321024pt;}
.ls10_c03096{letter-spacing:-0.253440pt;}
.ls20_c03096{letter-spacing:-0.244992pt;}
.lsa_c03096{letter-spacing:-0.240768pt;}
.ls11_c03096{letter-spacing:-0.232320pt;}
.ls9_c03096{letter-spacing:-0.215424pt;}
.ls19_c03096{letter-spacing:-0.211200pt;}
.ls7_c03096{letter-spacing:-0.105600pt;}
.ls18_c03096{letter-spacing:0.000000pt;}
.ls2_c03096{letter-spacing:0.005376pt;}
.ls1b_c03096{letter-spacing:0.025344pt;}
.lsf_c03096{letter-spacing:0.054912pt;}
.ls8_c03096{letter-spacing:0.114048pt;}
.ls13_c03096{letter-spacing:0.211200pt;}
.ls22_c03096{letter-spacing:0.415744pt;}
.ls23_c03096{letter-spacing:0.430592pt;}
.lse_c03096{letter-spacing:0.451968pt;}
.ls17_c03096{letter-spacing:0.456960pt;}
.ls15_c03096{letter-spacing:0.477312pt;}
.lsc_c03096{letter-spacing:0.515328pt;}
.ls16_c03096{letter-spacing:0.528000pt;}
.ls3_c03096{letter-spacing:0.532224pt;}
.ls6_c03096{letter-spacing:0.544896pt;}
.ls1_c03096{letter-spacing:0.557568pt;}
.ls1d_c03096{letter-spacing:0.582912pt;}
.ls4_c03096{letter-spacing:0.591360pt;}
.ls1e_c03096{letter-spacing:0.595584pt;}
.ls1c_c03096{letter-spacing:0.620928pt;}
.ls5_c03096{letter-spacing:0.637824pt;}
.ls0_c03096{letter-spacing:0.642048pt;}
.ls1f_c03096{letter-spacing:45.758592pt;}
.ws1a_c03096{word-spacing:-56.318592pt;}
.wsd_c03096{word-spacing:-13.445376pt;}
.ws1_c03096{word-spacing:-11.202048pt;}
.ws17_c03096{word-spacing:-11.151360pt;}
.wsb_c03096{word-spacing:-11.088000pt;}
.ws9_c03096{word-spacing:-10.771200pt;}
.ws0_c03096{word-spacing:-10.454400pt;}
.wse_c03096{word-spacing:-10.348800pt;}
.ws3_c03096{word-spacing:-10.344576pt;}
.ws2f_c03096{word-spacing:-2.238720pt;}
.ws2c_c03096{word-spacing:-2.133120pt;}
.ws24_c03096{word-spacing:-0.963072pt;}
.ws2d_c03096{word-spacing:-0.912384pt;}
.ws21_c03096{word-spacing:-0.878592pt;}
.ws1f_c03096{word-spacing:-0.865920pt;}
.ws31_c03096{word-spacing:-0.749824pt;}
.ws2b_c03096{word-spacing:-0.639744pt;}
.ws12_c03096{word-spacing:-0.528000pt;}
.ws26_c03096{word-spacing:-0.375936pt;}
.ws2e_c03096{word-spacing:-0.346368pt;}
.ws22_c03096{word-spacing:-0.105600pt;}
.ws28_c03096{word-spacing:-0.088704pt;}
.ws23_c03096{word-spacing:-0.080256pt;}
.ws2a_c03096{word-spacing:-0.076032pt;}
.ws27_c03096{word-spacing:-0.067584pt;}
.ws20_c03096{word-spacing:0.000000pt;}
.ws32_c03096{word-spacing:0.319232pt;}
.ws30_c03096{word-spacing:0.321024pt;}
.ws25_c03096{word-spacing:0.392832pt;}
.ws19_c03096{word-spacing:0.637824pt;}
.ws29_c03096{word-spacing:0.743424pt;}
.ws1c_c03096{word-spacing:5.757312pt;}
.ws11_c03096{word-spacing:5.900928pt;}
.ws15_c03096{word-spacing:6.369792pt;}
.ws18_c03096{word-spacing:7.683456pt;}
.ws10_c03096{word-spacing:8.418432pt;}
.ws16_c03096{word-spacing:9.195648pt;}
.ws14_c03096{word-spacing:12.591744pt;}
.ws1b_c03096{word-spacing:17.276160pt;}
.ws13_c03096{word-spacing:21.335424pt;}
.ws1d_c03096{word-spacing:25.653632pt;}
.wsf_c03096{word-spacing:27.016704pt;}
.ws1e_c03096{word-spacing:28.797696pt;}
.wsc_c03096{word-spacing:29.600256pt;}
.wsa_c03096{word-spacing:30.966144pt;}
.ws8_c03096{word-spacing:32.127744pt;}
.ws6_c03096{word-spacing:32.659968pt;}
.ws2_c03096{word-spacing:33.563904pt;}
.ws4_c03096{word-spacing:34.860672pt;}
.ws5_c03096{word-spacing:35.468928pt;}
.ws7_c03096{word-spacing:37.357056pt;}
._e_c03096{margin-left:-46.823040pt;}
._10_c03096{margin-left:-45.826176pt;}
._f_c03096{margin-left:-44.411136pt;}
._0_c03096{margin-left:-1.731840pt;}
._2_c03096{width:1.317888pt;}
._4_c03096{width:3.032832pt;}
._a_c03096{width:12.000384pt;}
._c_c03096{width:13.850496pt;}
._b_c03096{width:15.751296pt;}
._5_c03096{width:19.062912pt;}
._8_c03096{width:20.203392pt;}
._7_c03096{width:21.931008pt;}
._9_c03096{width:23.895168pt;}
._12_c03096{width:26.898432pt;}
._11_c03096{width:31.126656pt;}
._d_c03096{width:36.643200pt;}
._6_c03096{width:39.844992pt;}
._13_c03096{width:41.577216pt;}
._1_c03096{width:44.668800pt;}
._3_c03096{width:45.805056pt;}
.fs2_c03096{font-size:37.120000pt;}
.fs0_c03096{font-size:42.240000pt;}
.fs1_c03096{font-size:53.760000pt;}
.y0_c03096{bottom:0.000000pt;}
.y15_c03096{bottom:16.000400pt;}
.y4_c03096{bottom:16.320400pt;}
.y27_c03096{bottom:130.668475pt;}
.y2c_c03096{bottom:154.667616pt;}
.y2b_c03096{bottom:165.227328pt;}
.y29_c03096{bottom:165.866875pt;}
.y28_c03096{bottom:174.507067pt;}
.y2a_c03096{bottom:176.107200pt;}
.y26_c03096{bottom:205.228411pt;}
.y25_c03096{bottom:218.668123pt;}
.y24_c03096{bottom:231.787867pt;}
.y23_c03096{bottom:245.227579pt;}
.y22_c03096{bottom:263.787835pt;}
.y21_c03096{bottom:277.227547pt;}
.y20_c03096{bottom:290.667259pt;}
.y1f_c03096{bottom:303.787003pt;}
.y1e_c03096{bottom:317.226715pt;}
.y1c_c03096{bottom:347.946811pt;}
.y1b_c03096{bottom:361.386523pt;}
.y17_c03096{bottom:377.387035pt;}
.y1d_c03096{bottom:407.787163pt;}
.y1a_c03096{bottom:437.226331pt;}
.y19_c03096{bottom:453.226843pt;}
.y14_c03096{bottom:466.666667pt;}
.y13_c03096{bottom:482.666971pt;}
.y16_c03096{bottom:482.667067pt;}
.y18_c03096{bottom:497.386651pt;}
.y12_c03096{bottom:513.387067pt;}
.y2d_c03096{bottom:546.027067pt;}
.ye_c03096{bottom:593.385307pt;}
.y10_c03096{bottom:628.586875pt;}
.yf_c03096{bottom:637.227067pt;}
.yd_c03096{bottom:707.945467pt;}
.yc_c03096{bottom:779.945659pt;}
.ya_c03096{bottom:823.786555pt;}
.y6_c03096{bottom:839.787067pt;}
.yb_c03096{bottom:870.506107pt;}
.y9_c03096{bottom:899.946331pt;}
.y8_c03096{bottom:915.946843pt;}
.y3_c03096{bottom:929.066667pt;}
.y2_c03096{bottom:945.386939pt;}
.y5_c03096{bottom:945.387067pt;}
.y7_c03096{bottom:959.786683pt;}
.y1_c03096{bottom:975.787067pt;}
.y11_c03096{bottom:1008.747067pt;}
.h6_c03096{height:25.920000pt;}
.h3_c03096{height:26.240000pt;}
.h2_c03096{height:28.916250pt;}
.h7_c03096{height:32.570625pt;}
.h1_c03096{height:37.063125pt;}
.h4_c03096{height:37.166250pt;}
.h5_c03096{height:48.581988pt;}
.h0_c03096{height:1122.666667pt;}
.w2_c03096{width:191.360000pt;}
.w1_c03096{width:793.333333pt;}
.w0_c03096{width:793.626667pt;}
.x0_c03096{left:0.000000pt;}
.xf_c03096{left:104.000000pt;}
.xa_c03096{left:392.000320pt;}
.x6_c03096{left:396.160960pt;}
.xd_c03096{left:400.960000pt;}
.x9_c03096{left:404.800096pt;}
.x7_c03096{left:410.560576pt;}
.x1_c03096{left:411.840000pt;}
.xc_c03096{left:429.760768pt;}
.xb_c03096{left:437.440000pt;}
.x8_c03096{left:438.400960pt;}
.xe_c03096{left:450.560320pt;}
.x5_c03096{left:455.040352pt;}
.x2_c03096{left:468.159648pt;}
.x3_c03096{left:506.240000pt;}
.x4_c03096{left:532.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03097 {
    display:none;
  }
  .loading-indicator_c03097.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03097 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03097 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03097" -> "#page-container .classname_c03097")
 */
.pf_c03097 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03097 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03097.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03097 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03097 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03097 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03097 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03097 {overflow:visible;}
  }
}
.c_c03097 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03097 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03097:after { /* webkit #35443 */
  content: '';
}
.t_c03097:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03097 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03097 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03097 { /* info for Javascript */
  display:none;
}
.l_c03097 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03097 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03097 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03097:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03097 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03097.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03097.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03097 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03097{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03097;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03097{font-family:ff1_c03097;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03097;src:url('chunks/assets/font_6d6cd515bfcc89a1af537e5a.woff2')format("woff");}.ff2_c03097{font-family:ff2_c03097;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03097;src:url('chunks/assets/font_15c9a95c92d34916018d049f.woff2')format("woff");}.ff3_c03097{font-family:ff3_c03097;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03097{vertical-align:0.000000px;}
.v1_c03097{vertical-align:1.439424px;}
.lsb_c03097{letter-spacing:-1.197504px;}
.ls16_c03097{letter-spacing:-0.765072px;}
.ls10_c03097{letter-spacing:-0.722304px;}
.lsa_c03097{letter-spacing:-0.574992px;}
.lsd_c03097{letter-spacing:-0.441936px;}
.ls17_c03097{letter-spacing:-0.427680px;}
.ls9_c03097{letter-spacing:-0.280368px;}
.ls11_c03097{letter-spacing:-0.275616px;}
.lse_c03097{letter-spacing:-0.261360px;}
.ls15_c03097{letter-spacing:-0.256608px;}
.ls7_c03097{letter-spacing:-0.242352px;}
.ls5_c03097{letter-spacing:-0.118800px;}
.ls14_c03097{letter-spacing:0.000000px;}
.ls3_c03097{letter-spacing:0.006048px;}
.ls6_c03097{letter-spacing:0.128304px;}
.lsc_c03097{letter-spacing:0.508464px;}
.ls13_c03097{letter-spacing:0.514080px;}
.lsf_c03097{letter-spacing:0.536976px;}
.ls1_c03097{letter-spacing:0.579744px;}
.ls12_c03097{letter-spacing:0.594000px;}
.ls8_c03097{letter-spacing:0.598752px;}
.ls4_c03097{letter-spacing:0.613008px;}
.ls0_c03097{letter-spacing:0.717552px;}
.ls2_c03097{letter-spacing:0.722304px;}
.sc__c03097{text-shadow:none;}
.sc0_c03097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03097{-webkit-text-stroke:0px transparent;}
.sc0_c03097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03097{word-spacing:-15.126048px;}
.wsa_c03097{word-spacing:-12.474000px;}
.wsd_c03097{word-spacing:-12.459744px;}
.ws2_c03097{word-spacing:-11.637648px;}
.ws6_c03097{word-spacing:-10.682496px;}
.ws15_c03097{word-spacing:-1.083456px;}
.ws12_c03097{word-spacing:-1.078704px;}
.wse_c03097{word-spacing:-0.974160px;}
.ws14_c03097{word-spacing:-0.940896px;}
.ws19_c03097{word-spacing:-0.719712px;}
.ws10_c03097{word-spacing:-0.118800px;}
.ws1a_c03097{word-spacing:-0.104544px;}
.ws16_c03097{word-spacing:-0.099792px;}
.ws18_c03097{word-spacing:-0.085536px;}
.ws11_c03097{word-spacing:-0.080784px;}
.wsf_c03097{word-spacing:0.000000px;}
.ws1c_c03097{word-spacing:0.066528px;}
.ws13_c03097{word-spacing:0.080784px;}
.ws17_c03097{word-spacing:0.361152px;}
.ws1b_c03097{word-spacing:0.403920px;}
.wsb_c03097{word-spacing:33.300288px;}
.ws9_c03097{word-spacing:34.836912px;}
.ws8_c03097{word-spacing:36.143712px;}
.ws5_c03097{word-spacing:36.742464px;}
.ws1_c03097{word-spacing:37.759392px;}
.ws0_c03097{word-spacing:38.020752px;}
.ws3_c03097{word-spacing:39.218256px;}
.ws4_c03097{word-spacing:39.902544px;}
.ws7_c03097{word-spacing:42.026688px;}
._0_c03097{margin-left:-1.948320px;}
._2_c03097{width:1.482624px;}
._5_c03097{width:2.974752px;}
._4_c03097{width:13.742784px;}
._1_c03097{width:50.252400px;}
._3_c03097{width:51.530688px;}
.fc0_c03097{color:rgb(0,0,0);}
.fs0_c03097{font-size:47.520000px;}
.fs1_c03097{font-size:60.480000px;}
.y0_c03097{bottom:0.000000px;}
.y19_c03097{bottom:146.998362px;}
.y1b_c03097{bottom:186.600234px;}
.y1a_c03097{bottom:196.320450px;}
.y18_c03097{bottom:275.878542px;}
.y17_c03097{bottom:356.878758px;}
.y15_c03097{bottom:406.559730px;}
.y11_c03097{bottom:424.560306px;}
.y16_c03097{bottom:458.759262px;}
.y14_c03097{bottom:491.879514px;}
.y13_c03097{bottom:509.880090px;}
.y10_c03097{bottom:543.000342px;}
.y12_c03097{bottom:559.559874px;}
.yf_c03097{bottom:577.560450px;}
.y1c_c03097{bottom:614.280450px;}
.yb_c03097{bottom:667.558326px;}
.yd_c03097{bottom:707.160234px;}
.yc_c03097{bottom:716.880450px;}
.ya_c03097{bottom:796.438506px;}
.y9_c03097{bottom:877.438722px;}
.y7_c03097{bottom:926.759730px;}
.y3_c03097{bottom:944.760306px;}
.y8_c03097{bottom:979.319226px;}
.y6_c03097{bottom:1012.439478px;}
.y5_c03097{bottom:1030.440054px;}
.y2_c03097{bottom:1063.560306px;}
.y4_c03097{bottom:1079.759874px;}
.y1_c03097{bottom:1097.760450px;}
.ye_c03097{bottom:1134.840450px;}
.h3_c03097{height:32.530781px;}
.h1_c03097{height:41.696016px;}
.h2_c03097{height:41.812031px;}
.h4_c03097{height:54.654737px;}
.h0_c03097{height:1263.000000px;}
.w1_c03097{width:892.500000px;}
.w0_c03097{width:892.830000px;}
.x0_c03097{left:0.000000px;}
.xd_c03097{left:117.000000px;}
.x8_c03097{left:440.999856px;}
.x4_c03097{left:445.680576px;}
.xb_c03097{left:451.080000px;}
.x7_c03097{left:455.399604px;}
.x5_c03097{left:461.880144px;}
.x1_c03097{left:463.320000px;}
.xa_c03097{left:483.480360px;}
.x9_c03097{left:492.119496px;}
.x6_c03097{left:493.200576px;}
.xc_c03097{left:506.880360px;}
.x3_c03097{left:511.919892px;}
.x2_c03097{left:526.679604px;}
@media print{
.v0_c03097{vertical-align:0.000000pt;}
.v1_c03097{vertical-align:1.279488pt;}
.lsb_c03097{letter-spacing:-1.064448pt;}
.ls16_c03097{letter-spacing:-0.680064pt;}
.ls10_c03097{letter-spacing:-0.642048pt;}
.lsa_c03097{letter-spacing:-0.511104pt;}
.lsd_c03097{letter-spacing:-0.392832pt;}
.ls17_c03097{letter-spacing:-0.380160pt;}
.ls9_c03097{letter-spacing:-0.249216pt;}
.ls11_c03097{letter-spacing:-0.244992pt;}
.lse_c03097{letter-spacing:-0.232320pt;}
.ls15_c03097{letter-spacing:-0.228096pt;}
.ls7_c03097{letter-spacing:-0.215424pt;}
.ls5_c03097{letter-spacing:-0.105600pt;}
.ls14_c03097{letter-spacing:0.000000pt;}
.ls3_c03097{letter-spacing:0.005376pt;}
.ls6_c03097{letter-spacing:0.114048pt;}
.lsc_c03097{letter-spacing:0.451968pt;}
.ls13_c03097{letter-spacing:0.456960pt;}
.lsf_c03097{letter-spacing:0.477312pt;}
.ls1_c03097{letter-spacing:0.515328pt;}
.ls12_c03097{letter-spacing:0.528000pt;}
.ls8_c03097{letter-spacing:0.532224pt;}
.ls4_c03097{letter-spacing:0.544896pt;}
.ls0_c03097{letter-spacing:0.637824pt;}
.ls2_c03097{letter-spacing:0.642048pt;}
.wsc_c03097{word-spacing:-13.445376pt;}
.wsa_c03097{word-spacing:-11.088000pt;}
.wsd_c03097{word-spacing:-11.075328pt;}
.ws2_c03097{word-spacing:-10.344576pt;}
.ws6_c03097{word-spacing:-9.495552pt;}
.ws15_c03097{word-spacing:-0.963072pt;}
.ws12_c03097{word-spacing:-0.958848pt;}
.wse_c03097{word-spacing:-0.865920pt;}
.ws14_c03097{word-spacing:-0.836352pt;}
.ws19_c03097{word-spacing:-0.639744pt;}
.ws10_c03097{word-spacing:-0.105600pt;}
.ws1a_c03097{word-spacing:-0.092928pt;}
.ws16_c03097{word-spacing:-0.088704pt;}
.ws18_c03097{word-spacing:-0.076032pt;}
.ws11_c03097{word-spacing:-0.071808pt;}
.wsf_c03097{word-spacing:0.000000pt;}
.ws1c_c03097{word-spacing:0.059136pt;}
.ws13_c03097{word-spacing:0.071808pt;}
.ws17_c03097{word-spacing:0.321024pt;}
.ws1b_c03097{word-spacing:0.359040pt;}
.wsb_c03097{word-spacing:29.600256pt;}
.ws9_c03097{word-spacing:30.966144pt;}
.ws8_c03097{word-spacing:32.127744pt;}
.ws5_c03097{word-spacing:32.659968pt;}
.ws1_c03097{word-spacing:33.563904pt;}
.ws0_c03097{word-spacing:33.796224pt;}
.ws3_c03097{word-spacing:34.860672pt;}
.ws4_c03097{word-spacing:35.468928pt;}
.ws7_c03097{word-spacing:37.357056pt;}
._0_c03097{margin-left:-1.731840pt;}
._2_c03097{width:1.317888pt;}
._5_c03097{width:2.644224pt;}
._4_c03097{width:12.215808pt;}
._1_c03097{width:44.668800pt;}
._3_c03097{width:45.805056pt;}
.fs0_c03097{font-size:42.240000pt;}
.fs1_c03097{font-size:53.760000pt;}
.y0_c03097{bottom:0.000000pt;}
.y19_c03097{bottom:130.665211pt;}
.y1b_c03097{bottom:165.866875pt;}
.y1a_c03097{bottom:174.507067pt;}
.y18_c03097{bottom:245.225371pt;}
.y17_c03097{bottom:317.225563pt;}
.y15_c03097{bottom:361.386427pt;}
.y11_c03097{bottom:377.386939pt;}
.y16_c03097{bottom:407.786011pt;}
.y14_c03097{bottom:437.226235pt;}
.y13_c03097{bottom:453.226747pt;}
.y10_c03097{bottom:482.666971pt;}
.y12_c03097{bottom:497.386555pt;}
.yf_c03097{bottom:513.387067pt;}
.y1c_c03097{bottom:546.027067pt;}
.yb_c03097{bottom:593.385179pt;}
.yd_c03097{bottom:628.586875pt;}
.yc_c03097{bottom:637.227067pt;}
.ya_c03097{bottom:707.945339pt;}
.y9_c03097{bottom:779.945531pt;}
.y7_c03097{bottom:823.786427pt;}
.y3_c03097{bottom:839.786939pt;}
.y8_c03097{bottom:870.505979pt;}
.y6_c03097{bottom:899.946203pt;}
.y5_c03097{bottom:915.946715pt;}
.y2_c03097{bottom:945.386939pt;}
.y4_c03097{bottom:959.786555pt;}
.y1_c03097{bottom:975.787067pt;}
.ye_c03097{bottom:1008.747067pt;}
.h3_c03097{height:28.916250pt;}
.h1_c03097{height:37.063125pt;}
.h2_c03097{height:37.166250pt;}
.h4_c03097{height:48.581988pt;}
.h0_c03097{height:1122.666667pt;}
.w1_c03097{width:793.333333pt;}
.w0_c03097{width:793.626667pt;}
.x0_c03097{left:0.000000pt;}
.xd_c03097{left:104.000000pt;}
.x8_c03097{left:391.999872pt;}
.x4_c03097{left:396.160512pt;}
.xb_c03097{left:400.960000pt;}
.x7_c03097{left:404.799648pt;}
.x5_c03097{left:410.560128pt;}
.x1_c03097{left:411.840000pt;}
.xa_c03097{left:429.760320pt;}
.x9_c03097{left:437.439552pt;}
.x6_c03097{left:438.400512pt;}
.xc_c03097{left:450.560320pt;}
.x3_c03097{left:455.039904pt;}
.x2_c03097{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03098 {
    display:none;
  }
  .loading-indicator_c03098.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03098 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03098 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03098" -> "#page-container .classname_c03098")
 */
.pf_c03098 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03098 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03098.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03098 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03098 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03098 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03098 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03098 {overflow:visible;}
  }
}
.c_c03098 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03098 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03098:after { /* webkit #35443 */
  content: '';
}
.t_c03098:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03098 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03098 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03098 { /* info for Javascript */
  display:none;
}
.l_c03098 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03098 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03098 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03098:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03098 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03098.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03098.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03098 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03098{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03098;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03098{font-family:ff1_c03098;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03098;src:url('chunks/assets/font_d488ce44edd52eec9f137e50.woff2')format("woff");}.ff2_c03098{font-family:ff2_c03098;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03098;src:url('chunks/assets/font_48d1e705db079f9cff8193fa.woff2')format("woff");}.ff3_c03098{font-family:ff3_c03098;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4_c03098{vertical-align:-1.440720px;}
.v0_c03098{vertical-align:0.000000px;}
.v2_c03098{vertical-align:1.439424px;}
.v3_c03098{vertical-align:12.962016px;}
.v1_c03098{vertical-align:33.121440px;}
.lsc_c03098{letter-spacing:-1.197504px;}
.ls20_c03098{letter-spacing:-0.741312px;}
.ls1d_c03098{letter-spacing:-0.730800px;}
.ls14_c03098{letter-spacing:-0.722304px;}
.ls1c_c03098{letter-spacing:-0.718272px;}
.ls9_c03098{letter-spacing:-0.574992px;}
.ls12_c03098{letter-spacing:-0.361152px;}
.ls17_c03098{letter-spacing:-0.304128px;}
.ls15_c03098{letter-spacing:-0.275616px;}
.ls1b_c03098{letter-spacing:-0.266112px;}
.ls10_c03098{letter-spacing:-0.261360px;}
.ls6_c03098{letter-spacing:-0.242352px;}
.lse_c03098{letter-spacing:-0.209088px;}
.ls5_c03098{letter-spacing:-0.118800px;}
.ls19_c03098{letter-spacing:0.000000px;}
.ls2_c03098{letter-spacing:0.006048px;}
.ls7_c03098{letter-spacing:0.128304px;}
.ls1f_c03098{letter-spacing:0.150336px;}
.ls21_c03098{letter-spacing:0.152064px;}
.ls1_c03098{letter-spacing:0.237600px;}
.lsd_c03098{letter-spacing:0.508464px;}
.ls18_c03098{letter-spacing:0.514080px;}
.ls13_c03098{letter-spacing:0.536976px;}
.lsb_c03098{letter-spacing:0.579744px;}
.ls16_c03098{letter-spacing:0.594000px;}
.ls8_c03098{letter-spacing:0.598752px;}
.ls3_c03098{letter-spacing:0.613008px;}
.lsf_c03098{letter-spacing:0.665280px;}
.ls11_c03098{letter-spacing:0.670032px;}
.ls4_c03098{letter-spacing:0.717552px;}
.ls1e_c03098{letter-spacing:0.718272px;}
.ls0_c03098{letter-spacing:0.722304px;}
.lsa_c03098{letter-spacing:32.399136px;}
.ls1a_c03098{letter-spacing:38.158560px;}
.sc__c03098{text-shadow:none;}
.sc0_c03098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03098{-webkit-text-stroke:0px transparent;}
.sc0_c03098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14_c03098{word-spacing:-50.038560px;}
.ws6_c03098{word-spacing:-44.279136px;}
.ws13_c03098{word-spacing:-15.126048px;}
.ws16_c03098{word-spacing:-12.602304px;}
.wsf_c03098{word-spacing:-12.550032px;}
.wsd_c03098{word-spacing:-12.117600px;}
.ws1d_c03098{word-spacing:-11.158272px;}
.ws26_c03098{word-spacing:-1.083456px;}
.ws22_c03098{word-spacing:-0.974160px;}
.ws2b_c03098{word-spacing:-0.719712px;}
.ws2f_c03098{word-spacing:-0.513216px;}
.ws2e_c03098{word-spacing:-0.509472px;}
.ws24_c03098{word-spacing:-0.118800px;}
.ws27_c03098{word-spacing:-0.099792px;}
.ws2c_c03098{word-spacing:-0.095040px;}
.ws29_c03098{word-spacing:-0.085536px;}
.ws2a_c03098{word-spacing:-0.057024px;}
.ws23_c03098{word-spacing:0.000000px;}
.ws2d_c03098{word-spacing:0.359136px;}
.ws28_c03098{word-spacing:0.361152px;}
.ws1e_c03098{word-spacing:0.718272px;}
.ws25_c03098{word-spacing:0.836352px;}
.ws19_c03098{word-spacing:6.476976px;}
.wsa_c03098{word-spacing:8.453808px;}
.ws15_c03098{word-spacing:9.470736px;}
.ws20_c03098{word-spacing:9.484992px;}
.ws1c_c03098{word-spacing:10.753200px;}
.ws2_c03098{word-spacing:10.924848px;}
.wse_c03098{word-spacing:13.196304px;}
.ws18_c03098{word-spacing:15.117120px;}
.ws1f_c03098{word-spacing:16.076016px;}
.ws1a_c03098{word-spacing:16.194528px;}
.wsb_c03098{word-spacing:16.555968px;}
.ws1b_c03098{word-spacing:19.460160px;}
.wsc_c03098{word-spacing:19.796832px;}
.ws11_c03098{word-spacing:30.298752px;}
.ws12_c03098{word-spacing:33.300288px;}
.ws4_c03098{word-spacing:33.962544px;}
.ws21_c03098{word-spacing:34.751376px;}
.ws10_c03098{word-spacing:34.836912px;}
.ws17_c03098{word-spacing:36.143568px;}
.ws9_c03098{word-spacing:36.143712px;}
.ws7_c03098{word-spacing:36.742464px;}
.ws1_c03098{word-spacing:37.759392px;}
.ws0_c03098{word-spacing:38.020752px;}
.ws3_c03098{word-spacing:39.218256px;}
.ws5_c03098{word-spacing:39.902544px;}
.ws8_c03098{word-spacing:42.026688px;}
._15_c03098{margin-left:-38.990160px;}
._14_c03098{margin-left:-36.965808px;}
._7_c03098{margin-left:-34.024320px;}
._6_c03098{margin-left:-32.760288px;}
._5_c03098{margin-left:-31.206384px;}
._0_c03098{margin-left:-1.948320px;}
._2_c03098{width:1.054944px;}
._a_c03098{width:2.071872px;}
._9_c03098{width:3.402432px;}
._8_c03098{width:6.909408px;}
._13_c03098{width:13.015728px;}
._17_c03098{width:15.033600px;}
._16_c03098{width:18.394992px;}
._12_c03098{width:20.856528px;}
._19_c03098{width:22.419936px;}
._b_c03098{width:23.817024px;}
._1a_c03098{width:24.829200px;}
._c_c03098{width:25.988688px;}
._d_c03098{width:28.554768px;}
._e_c03098{width:30.716928px;}
._18_c03098{width:31.990464px;}
._f_c03098{width:33.544368px;}
._11_c03098{width:35.839584px;}
._10_c03098{width:38.443680px;}
._4_c03098{width:42.867792px;}
._1b_c03098{width:48.983616px;}
._1_c03098{width:50.252400px;}
._3_c03098{width:52.186464px;}
.fc0_c03098{color:rgb(0,0,0);}
.fs2_c03098{font-size:41.760000px;}
.fs0_c03098{font-size:47.520000px;}
.fs1_c03098{font-size:60.480000px;}
.y0_c03098{bottom:0.000000px;}
.y27_c03098{bottom:116.760918px;}
.y26_c03098{bottom:131.880594px;}
.y25_c03098{bottom:147.000270px;}
.y29_c03098{bottom:186.600234px;}
.y28_c03098{bottom:196.320450px;}
.y24_c03098{bottom:260.760774px;}
.y23_c03098{bottom:275.880450px;}
.y22_c03098{bottom:311.521206px;}
.y21_c03098{bottom:324.121242px;}
.y20_c03098{bottom:336.000918px;}
.y1f_c03098{bottom:347.880594px;}
.y1e_c03098{bottom:356.879946px;}
.y1c_c03098{bottom:391.440054px;}
.y1b_c03098{bottom:406.559730px;}
.y16_c03098{bottom:424.560306px;}
.y1d_c03098{bottom:458.760450px;}
.y1a_c03098{bottom:476.759838px;}
.y19_c03098{bottom:491.879514px;}
.y18_c03098{bottom:509.880090px;}
.y15_c03098{bottom:543.000342px;}
.y17_c03098{bottom:559.559874px;}
.y14_c03098{bottom:577.560450px;}
.y2a_c03098{bottom:614.280450px;}
.y10_c03098{bottom:667.559514px;}
.y12_c03098{bottom:707.160234px;}
.y11_c03098{bottom:716.880450px;}
.yf_c03098{bottom:781.320018px;}
.ye_c03098{bottom:796.439694px;}
.yd_c03098{bottom:832.439658px;}
.yc_c03098{bottom:847.559334px;}
.yb_c03098{bottom:862.319046px;}
.ya_c03098{bottom:877.438722px;}
.y8_c03098{bottom:926.759730px;}
.y3_c03098{bottom:944.760306px;}
.y9_c03098{bottom:979.319226px;}
.y7_c03098{bottom:997.319802px;}
.y6_c03098{bottom:1012.439478px;}
.y5_c03098{bottom:1030.440054px;}
.y2_c03098{bottom:1063.560306px;}
.y4_c03098{bottom:1079.759874px;}
.y1_c03098{bottom:1097.760450px;}
.y13_c03098{bottom:1134.840450px;}
.h3_c03098{height:32.530781px;}
.h7_c03098{height:36.641953px;}
.h8_c03098{height:38.082673px;}
.h1_c03098{height:41.696016px;}
.h2_c03098{height:41.812031px;}
.h6_c03098{height:49.603969px;}
.h5_c03098{height:54.654737px;}
.h4_c03098{height:74.817456px;}
.h0_c03098{height:1263.000000px;}
.w1_c03098{width:892.500000px;}
.w0_c03098{width:892.830000px;}
.x0_c03098{left:0.000000px;}
.xe_c03098{left:117.000000px;}
.x9_c03098{left:440.999856px;}
.x4_c03098{left:445.680576px;}
.xc_c03098{left:451.080000px;}
.x8_c03098{left:455.399604px;}
.x5_c03098{left:461.880144px;}
.x1_c03098{left:463.320000px;}
.xb_c03098{left:483.480360px;}
.xa_c03098{left:492.119496px;}
.x6_c03098{left:493.200576px;}
.xd_c03098{left:506.880360px;}
.x3_c03098{left:511.919892px;}
.x2_c03098{left:526.679604px;}
.x7_c03098{left:569.880036px;}
@media print{
.v4_c03098{vertical-align:-1.280640pt;}
.v0_c03098{vertical-align:0.000000pt;}
.v2_c03098{vertical-align:1.279488pt;}
.v3_c03098{vertical-align:11.521792pt;}
.v1_c03098{vertical-align:29.441280pt;}
.lsc_c03098{letter-spacing:-1.064448pt;}
.ls20_c03098{letter-spacing:-0.658944pt;}
.ls1d_c03098{letter-spacing:-0.649600pt;}
.ls14_c03098{letter-spacing:-0.642048pt;}
.ls1c_c03098{letter-spacing:-0.638464pt;}
.ls9_c03098{letter-spacing:-0.511104pt;}
.ls12_c03098{letter-spacing:-0.321024pt;}
.ls17_c03098{letter-spacing:-0.270336pt;}
.ls15_c03098{letter-spacing:-0.244992pt;}
.ls1b_c03098{letter-spacing:-0.236544pt;}
.ls10_c03098{letter-spacing:-0.232320pt;}
.ls6_c03098{letter-spacing:-0.215424pt;}
.lse_c03098{letter-spacing:-0.185856pt;}
.ls5_c03098{letter-spacing:-0.105600pt;}
.ls19_c03098{letter-spacing:0.000000pt;}
.ls2_c03098{letter-spacing:0.005376pt;}
.ls7_c03098{letter-spacing:0.114048pt;}
.ls1f_c03098{letter-spacing:0.133632pt;}
.ls21_c03098{letter-spacing:0.135168pt;}
.ls1_c03098{letter-spacing:0.211200pt;}
.lsd_c03098{letter-spacing:0.451968pt;}
.ls18_c03098{letter-spacing:0.456960pt;}
.ls13_c03098{letter-spacing:0.477312pt;}
.lsb_c03098{letter-spacing:0.515328pt;}
.ls16_c03098{letter-spacing:0.528000pt;}
.ls8_c03098{letter-spacing:0.532224pt;}
.ls3_c03098{letter-spacing:0.544896pt;}
.lsf_c03098{letter-spacing:0.591360pt;}
.ls11_c03098{letter-spacing:0.595584pt;}
.ls4_c03098{letter-spacing:0.637824pt;}
.ls1e_c03098{letter-spacing:0.638464pt;}
.ls0_c03098{letter-spacing:0.642048pt;}
.lsa_c03098{letter-spacing:28.799232pt;}
.ls1a_c03098{letter-spacing:33.918720pt;}
.ws14_c03098{word-spacing:-44.478720pt;}
.ws6_c03098{word-spacing:-39.359232pt;}
.ws13_c03098{word-spacing:-13.445376pt;}
.ws16_c03098{word-spacing:-11.202048pt;}
.wsf_c03098{word-spacing:-11.155584pt;}
.wsd_c03098{word-spacing:-10.771200pt;}
.ws1d_c03098{word-spacing:-9.918464pt;}
.ws26_c03098{word-spacing:-0.963072pt;}
.ws22_c03098{word-spacing:-0.865920pt;}
.ws2b_c03098{word-spacing:-0.639744pt;}
.ws2f_c03098{word-spacing:-0.456192pt;}
.ws2e_c03098{word-spacing:-0.452864pt;}
.ws24_c03098{word-spacing:-0.105600pt;}
.ws27_c03098{word-spacing:-0.088704pt;}
.ws2c_c03098{word-spacing:-0.084480pt;}
.ws29_c03098{word-spacing:-0.076032pt;}
.ws2a_c03098{word-spacing:-0.050688pt;}
.ws23_c03098{word-spacing:0.000000pt;}
.ws2d_c03098{word-spacing:0.319232pt;}
.ws28_c03098{word-spacing:0.321024pt;}
.ws1e_c03098{word-spacing:0.638464pt;}
.ws25_c03098{word-spacing:0.743424pt;}
.ws19_c03098{word-spacing:5.757312pt;}
.wsa_c03098{word-spacing:7.514496pt;}
.ws15_c03098{word-spacing:8.418432pt;}
.ws20_c03098{word-spacing:8.431104pt;}
.ws1c_c03098{word-spacing:9.558400pt;}
.ws2_c03098{word-spacing:9.710976pt;}
.wse_c03098{word-spacing:11.730048pt;}
.ws18_c03098{word-spacing:13.437440pt;}
.ws1f_c03098{word-spacing:14.289792pt;}
.ws1a_c03098{word-spacing:14.395136pt;}
.wsb_c03098{word-spacing:14.716416pt;}
.ws1b_c03098{word-spacing:17.297920pt;}
.wsc_c03098{word-spacing:17.597184pt;}
.ws11_c03098{word-spacing:26.932224pt;}
.ws12_c03098{word-spacing:29.600256pt;}
.ws4_c03098{word-spacing:30.188928pt;}
.ws21_c03098{word-spacing:30.890112pt;}
.ws10_c03098{word-spacing:30.966144pt;}
.ws17_c03098{word-spacing:32.127616pt;}
.ws9_c03098{word-spacing:32.127744pt;}
.ws7_c03098{word-spacing:32.659968pt;}
.ws1_c03098{word-spacing:33.563904pt;}
.ws0_c03098{word-spacing:33.796224pt;}
.ws3_c03098{word-spacing:34.860672pt;}
.ws5_c03098{word-spacing:35.468928pt;}
.ws8_c03098{word-spacing:37.357056pt;}
._15_c03098{margin-left:-34.657920pt;}
._14_c03098{margin-left:-32.858496pt;}
._7_c03098{margin-left:-30.243840pt;}
._6_c03098{margin-left:-29.120256pt;}
._5_c03098{margin-left:-27.739008pt;}
._0_c03098{margin-left:-1.731840pt;}
._2_c03098{width:0.937728pt;}
._a_c03098{width:1.841664pt;}
._9_c03098{width:3.024384pt;}
._8_c03098{width:6.141696pt;}
._13_c03098{width:11.569536pt;}
._17_c03098{width:13.363200pt;}
._16_c03098{width:16.351104pt;}
._12_c03098{width:18.539136pt;}
._19_c03098{width:19.928832pt;}
._b_c03098{width:21.170688pt;}
._1a_c03098{width:22.070400pt;}
._c_c03098{width:23.101056pt;}
._d_c03098{width:25.382016pt;}
._e_c03098{width:27.303936pt;}
._18_c03098{width:28.435968pt;}
._f_c03098{width:29.817216pt;}
._11_c03098{width:31.857408pt;}
._10_c03098{width:34.172160pt;}
._4_c03098{width:38.104704pt;}
._1b_c03098{width:43.540992pt;}
._1_c03098{width:44.668800pt;}
._3_c03098{width:46.387968pt;}
.fs2_c03098{font-size:37.120000pt;}
.fs0_c03098{font-size:42.240000pt;}
.fs1_c03098{font-size:53.760000pt;}
.y0_c03098{bottom:0.000000pt;}
.y27_c03098{bottom:103.787483pt;}
.y26_c03098{bottom:117.227195pt;}
.y25_c03098{bottom:130.666907pt;}
.y29_c03098{bottom:165.866875pt;}
.y28_c03098{bottom:174.507067pt;}
.y24_c03098{bottom:231.787355pt;}
.y23_c03098{bottom:245.227067pt;}
.y22_c03098{bottom:276.907739pt;}
.y21_c03098{bottom:288.107771pt;}
.y20_c03098{bottom:298.667483pt;}
.y1f_c03098{bottom:309.227195pt;}
.y1e_c03098{bottom:317.226619pt;}
.y1c_c03098{bottom:347.946715pt;}
.y1b_c03098{bottom:361.386427pt;}
.y16_c03098{bottom:377.386939pt;}
.y1d_c03098{bottom:407.787067pt;}
.y1a_c03098{bottom:423.786523pt;}
.y19_c03098{bottom:437.226235pt;}
.y18_c03098{bottom:453.226747pt;}
.y15_c03098{bottom:482.666971pt;}
.y17_c03098{bottom:497.386555pt;}
.y14_c03098{bottom:513.387067pt;}
.y2a_c03098{bottom:546.027067pt;}
.y10_c03098{bottom:593.386235pt;}
.y12_c03098{bottom:628.586875pt;}
.y11_c03098{bottom:637.227067pt;}
.yf_c03098{bottom:694.506683pt;}
.ye_c03098{bottom:707.946395pt;}
.yd_c03098{bottom:739.946363pt;}
.yc_c03098{bottom:753.386075pt;}
.yb_c03098{bottom:766.505819pt;}
.ya_c03098{bottom:779.945531pt;}
.y8_c03098{bottom:823.786427pt;}
.y3_c03098{bottom:839.786939pt;}
.y9_c03098{bottom:870.505979pt;}
.y7_c03098{bottom:886.506491pt;}
.y6_c03098{bottom:899.946203pt;}
.y5_c03098{bottom:915.946715pt;}
.y2_c03098{bottom:945.386939pt;}
.y4_c03098{bottom:959.786555pt;}
.y1_c03098{bottom:975.787067pt;}
.y13_c03098{bottom:1008.747067pt;}
.h3_c03098{height:28.916250pt;}
.h7_c03098{height:32.570625pt;}
.h8_c03098{height:33.851265pt;}
.h1_c03098{height:37.063125pt;}
.h2_c03098{height:37.166250pt;}
.h6_c03098{height:44.092417pt;}
.h5_c03098{height:48.581988pt;}
.h4_c03098{height:66.504405pt;}
.h0_c03098{height:1122.666667pt;}
.w1_c03098{width:793.333333pt;}
.w0_c03098{width:793.626667pt;}
.x0_c03098{left:0.000000pt;}
.xe_c03098{left:104.000000pt;}
.x9_c03098{left:391.999872pt;}
.x4_c03098{left:396.160512pt;}
.xc_c03098{left:400.960000pt;}
.x8_c03098{left:404.799648pt;}
.x5_c03098{left:410.560128pt;}
.x1_c03098{left:411.840000pt;}
.xb_c03098{left:429.760320pt;}
.xa_c03098{left:437.439552pt;}
.x6_c03098{left:438.400512pt;}
.xd_c03098{left:450.560320pt;}
.x3_c03098{left:455.039904pt;}
.x2_c03098{left:468.159648pt;}
.x7_c03098{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03099 {
    display:none;
  }
  .loading-indicator_c03099.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03099 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03099 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03099" -> "#page-container .classname_c03099")
 */
.pf_c03099 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03099 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03099.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03099 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03099 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03099 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03099 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03099 {overflow:visible;}
  }
}
.c_c03099 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03099 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03099:after { /* webkit #35443 */
  content: '';
}
.t_c03099:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03099 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03099 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03099 { /* info for Javascript */
  display:none;
}
.l_c03099 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03099 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03099 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03099:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03099 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03099.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03099.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03099 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03099{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03099;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03099{font-family:ff1_c03099;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03099;src:url('chunks/assets/font_0a8cfc465ce83b7ef5a1b5c4.woff2')format("woff");}.ff2_c03099{font-family:ff2_c03099;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03099;src:url('chunks/assets/font_ae653a74cdbb3875ee0f65f9.woff2')format("woff");}.ff3_c03099{font-family:ff3_c03099;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03099{vertical-align:0.000000px;}
.v1_c03099{vertical-align:1.439424px;}
.ls9_c03099{letter-spacing:-0.793584px;}
.lsa_c03099{letter-spacing:-0.574992px;}
.ls17_c03099{letter-spacing:-0.394416px;}
.ls11_c03099{letter-spacing:-0.275616px;}
.lsf_c03099{letter-spacing:-0.261360px;}
.ls6_c03099{letter-spacing:-0.242352px;}
.ls16_c03099{letter-spacing:-0.232848px;}
.ls4_c03099{letter-spacing:-0.118800px;}
.ls14_c03099{letter-spacing:0.000000px;}
.ls1_c03099{letter-spacing:0.006048px;}
.ls5_c03099{letter-spacing:0.128304px;}
.ls15_c03099{letter-spacing:0.242352px;}
.lsd_c03099{letter-spacing:0.508464px;}
.ls13_c03099{letter-spacing:0.514080px;}
.ls10_c03099{letter-spacing:0.536976px;}
.ls7_c03099{letter-spacing:0.560736px;}
.lsc_c03099{letter-spacing:0.579744px;}
.ls12_c03099{letter-spacing:0.594000px;}
.ls8_c03099{letter-spacing:0.598752px;}
.ls2_c03099{letter-spacing:0.613008px;}
.lse_c03099{letter-spacing:0.670032px;}
.ls3_c03099{letter-spacing:0.717552px;}
.ls0_c03099{letter-spacing:0.722304px;}
.lsb_c03099{letter-spacing:33.838992px;}
.sc__c03099{text-shadow:none;}
.sc0_c03099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03099{-webkit-text-stroke:0px transparent;}
.sc0_c03099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c03099{word-spacing:-45.718992px;}
.wsb_c03099{word-spacing:-15.126048px;}
.ws9_c03099{word-spacing:-12.474000px;}
.ws6_c03099{word-spacing:-12.459744px;}
.ws8_c03099{word-spacing:-12.416976px;}
.wsf_c03099{word-spacing:-12.388464px;}
.wse_c03099{word-spacing:-11.305008px;}
.ws16_c03099{word-spacing:-1.083456px;}
.ws15_c03099{word-spacing:-1.031184px;}
.ws11_c03099{word-spacing:-0.974160px;}
.ws19_c03099{word-spacing:-0.719712px;}
.ws1a_c03099{word-spacing:-0.128304px;}
.ws13_c03099{word-spacing:-0.118800px;}
.ws17_c03099{word-spacing:-0.099792px;}
.ws18_c03099{word-spacing:-0.085536px;}
.ws12_c03099{word-spacing:0.000000px;}
.ws1b_c03099{word-spacing:0.033264px;}
.ws14_c03099{word-spacing:0.432432px;}
.wsd_c03099{word-spacing:3.982176px;}
.ws2_c03099{word-spacing:4.999104px;}
.wsc_c03099{word-spacing:7.831296px;}
.wsa_c03099{word-spacing:33.300288px;}
.ws10_c03099{word-spacing:36.143712px;}
.ws1_c03099{word-spacing:37.759392px;}
.ws0_c03099{word-spacing:38.020752px;}
.ws3_c03099{word-spacing:39.218256px;}
.ws4_c03099{word-spacing:39.902544px;}
.ws7_c03099{word-spacing:42.026688px;}
._6_c03099{margin-left:-35.126784px;}
._5_c03099{margin-left:-33.302016px;}
._0_c03099{margin-left:-1.948320px;}
._2_c03099{width:1.482624px;}
._7_c03099{width:5.892480px;}
._4_c03099{width:14.945040px;}
._8_c03099{width:21.417264px;}
._1_c03099{width:50.252400px;}
._3_c03099{width:51.530688px;}
.fc0_c03099{color:rgb(0,0,0);}
.fs0_c03099{font-size:47.520000px;}
.fs1_c03099{font-size:60.480000px;}
.y0_c03099{bottom:0.000000px;}
.yc_c03099{bottom:66.240450px;}
.y1d_c03099{bottom:146.998362px;}
.y1f_c03099{bottom:186.600234px;}
.y1e_c03099{bottom:196.320450px;}
.y1c_c03099{bottom:275.878542px;}
.y1b_c03099{bottom:356.878758px;}
.y19_c03099{bottom:406.559730px;}
.y15_c03099{bottom:424.560306px;}
.y1a_c03099{bottom:458.759262px;}
.y18_c03099{bottom:491.879514px;}
.y17_c03099{bottom:509.880090px;}
.y14_c03099{bottom:543.000342px;}
.y16_c03099{bottom:559.559874px;}
.y13_c03099{bottom:577.560450px;}
.y20_c03099{bottom:614.280450px;}
.yf_c03099{bottom:667.560054px;}
.y11_c03099{bottom:707.160234px;}
.y10_c03099{bottom:716.880450px;}
.ye_c03099{bottom:796.440234px;}
.yb_c03099{bottom:811.200000px;}
.ya_c03099{bottom:877.438722px;}
.yd_c03099{bottom:877.440450px;}
.y8_c03099{bottom:926.759730px;}
.y3_c03099{bottom:944.760306px;}
.y9_c03099{bottom:979.319226px;}
.y7_c03099{bottom:997.319802px;}
.y6_c03099{bottom:1012.439478px;}
.y5_c03099{bottom:1030.440054px;}
.y2_c03099{bottom:1063.560306px;}
.y4_c03099{bottom:1079.759874px;}
.y1_c03099{bottom:1097.760450px;}
.y12_c03099{bottom:1134.840450px;}
.h3_c03099{height:32.530781px;}
.h1_c03099{height:41.696016px;}
.h2_c03099{height:41.812031px;}
.h5_c03099{height:54.654737px;}
.h4_c03099{height:78.840000px;}
.h0_c03099{height:1263.000000px;}
.w2_c03099{width:215.280000px;}
.w1_c03099{width:892.500000px;}
.w0_c03099{width:892.830000px;}
.x0_c03099{left:0.000000px;}
.xf_c03099{left:117.000000px;}
.x9_c03099{left:440.999856px;}
.x4_c03099{left:445.680576px;}
.xd_c03099{left:451.080000px;}
.x8_c03099{left:455.399604px;}
.x5_c03099{left:461.880144px;}
.x1_c03099{left:463.320000px;}
.xc_c03099{left:483.481044px;}
.xa_c03099{left:492.119496px;}
.x6_c03099{left:493.200576px;}
.xe_c03099{left:506.880360px;}
.x3_c03099{left:511.919892px;}
.x2_c03099{left:526.679604px;}
.x7_c03099{left:569.880036px;}
.xb_c03099{left:660.240000px;}
@media print{
.v0_c03099{vertical-align:0.000000pt;}
.v1_c03099{vertical-align:1.279488pt;}
.ls9_c03099{letter-spacing:-0.705408pt;}
.lsa_c03099{letter-spacing:-0.511104pt;}
.ls17_c03099{letter-spacing:-0.350592pt;}
.ls11_c03099{letter-spacing:-0.244992pt;}
.lsf_c03099{letter-spacing:-0.232320pt;}
.ls6_c03099{letter-spacing:-0.215424pt;}
.ls16_c03099{letter-spacing:-0.206976pt;}
.ls4_c03099{letter-spacing:-0.105600pt;}
.ls14_c03099{letter-spacing:0.000000pt;}
.ls1_c03099{letter-spacing:0.005376pt;}
.ls5_c03099{letter-spacing:0.114048pt;}
.ls15_c03099{letter-spacing:0.215424pt;}
.lsd_c03099{letter-spacing:0.451968pt;}
.ls13_c03099{letter-spacing:0.456960pt;}
.ls10_c03099{letter-spacing:0.477312pt;}
.ls7_c03099{letter-spacing:0.498432pt;}
.lsc_c03099{letter-spacing:0.515328pt;}
.ls12_c03099{letter-spacing:0.528000pt;}
.ls8_c03099{letter-spacing:0.532224pt;}
.ls2_c03099{letter-spacing:0.544896pt;}
.lse_c03099{letter-spacing:0.595584pt;}
.ls3_c03099{letter-spacing:0.637824pt;}
.ls0_c03099{letter-spacing:0.642048pt;}
.lsb_c03099{letter-spacing:30.079104pt;}
.ws5_c03099{word-spacing:-40.639104pt;}
.wsb_c03099{word-spacing:-13.445376pt;}
.ws9_c03099{word-spacing:-11.088000pt;}
.ws6_c03099{word-spacing:-11.075328pt;}
.ws8_c03099{word-spacing:-11.037312pt;}
.wsf_c03099{word-spacing:-11.011968pt;}
.wse_c03099{word-spacing:-10.048896pt;}
.ws16_c03099{word-spacing:-0.963072pt;}
.ws15_c03099{word-spacing:-0.916608pt;}
.ws11_c03099{word-spacing:-0.865920pt;}
.ws19_c03099{word-spacing:-0.639744pt;}
.ws1a_c03099{word-spacing:-0.114048pt;}
.ws13_c03099{word-spacing:-0.105600pt;}
.ws17_c03099{word-spacing:-0.088704pt;}
.ws18_c03099{word-spacing:-0.076032pt;}
.ws12_c03099{word-spacing:0.000000pt;}
.ws1b_c03099{word-spacing:0.029568pt;}
.ws14_c03099{word-spacing:0.384384pt;}
.wsd_c03099{word-spacing:3.539712pt;}
.ws2_c03099{word-spacing:4.443648pt;}
.wsc_c03099{word-spacing:6.961152pt;}
.wsa_c03099{word-spacing:29.600256pt;}
.ws10_c03099{word-spacing:32.127744pt;}
.ws1_c03099{word-spacing:33.563904pt;}
.ws0_c03099{word-spacing:33.796224pt;}
.ws3_c03099{word-spacing:34.860672pt;}
.ws4_c03099{word-spacing:35.468928pt;}
.ws7_c03099{word-spacing:37.357056pt;}
._6_c03099{margin-left:-31.223808pt;}
._5_c03099{margin-left:-29.601792pt;}
._0_c03099{margin-left:-1.731840pt;}
._2_c03099{width:1.317888pt;}
._7_c03099{width:5.237760pt;}
._4_c03099{width:13.284480pt;}
._8_c03099{width:19.037568pt;}
._1_c03099{width:44.668800pt;}
._3_c03099{width:45.805056pt;}
.fs0_c03099{font-size:42.240000pt;}
.fs1_c03099{font-size:53.760000pt;}
.y0_c03099{bottom:0.000000pt;}
.yc_c03099{bottom:58.880400pt;}
.y1d_c03099{bottom:130.665211pt;}
.y1f_c03099{bottom:165.866875pt;}
.y1e_c03099{bottom:174.507067pt;}
.y1c_c03099{bottom:245.225371pt;}
.y1b_c03099{bottom:317.225563pt;}
.y19_c03099{bottom:361.386427pt;}
.y15_c03099{bottom:377.386939pt;}
.y1a_c03099{bottom:407.786011pt;}
.y18_c03099{bottom:437.226235pt;}
.y17_c03099{bottom:453.226747pt;}
.y14_c03099{bottom:482.666971pt;}
.y16_c03099{bottom:497.386555pt;}
.y13_c03099{bottom:513.387067pt;}
.y20_c03099{bottom:546.027067pt;}
.yf_c03099{bottom:593.386715pt;}
.y11_c03099{bottom:628.586875pt;}
.y10_c03099{bottom:637.227067pt;}
.ye_c03099{bottom:707.946875pt;}
.yb_c03099{bottom:721.066667pt;}
.ya_c03099{bottom:779.945531pt;}
.yd_c03099{bottom:779.947067pt;}
.y8_c03099{bottom:823.786427pt;}
.y3_c03099{bottom:839.786939pt;}
.y9_c03099{bottom:870.505979pt;}
.y7_c03099{bottom:886.506491pt;}
.y6_c03099{bottom:899.946203pt;}
.y5_c03099{bottom:915.946715pt;}
.y2_c03099{bottom:945.386939pt;}
.y4_c03099{bottom:959.786555pt;}
.y1_c03099{bottom:975.787067pt;}
.y12_c03099{bottom:1008.747067pt;}
.h3_c03099{height:28.916250pt;}
.h1_c03099{height:37.063125pt;}
.h2_c03099{height:37.166250pt;}
.h5_c03099{height:48.581988pt;}
.h4_c03099{height:70.080000pt;}
.h0_c03099{height:1122.666667pt;}
.w2_c03099{width:191.360000pt;}
.w1_c03099{width:793.333333pt;}
.w0_c03099{width:793.626667pt;}
.x0_c03099{left:0.000000pt;}
.xf_c03099{left:104.000000pt;}
.x9_c03099{left:391.999872pt;}
.x4_c03099{left:396.160512pt;}
.xd_c03099{left:400.960000pt;}
.x8_c03099{left:404.799648pt;}
.x5_c03099{left:410.560128pt;}
.x1_c03099{left:411.840000pt;}
.xc_c03099{left:429.760928pt;}
.xa_c03099{left:437.439552pt;}
.x6_c03099{left:438.400512pt;}
.xe_c03099{left:450.560320pt;}
.x3_c03099{left:455.039904pt;}
.x2_c03099{left:468.159648pt;}
.x7_c03099{left:506.560032pt;}
.xb_c03099{left:586.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03100 {
    display:none;
  }
  .loading-indicator_c03100.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03100 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03100 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03100" -> "#page-container .classname_c03100")
 */
.pf_c03100 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03100 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03100.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03100 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03100 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03100 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03100 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03100 {overflow:visible;}
  }
}
.c_c03100 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03100 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03100:after { /* webkit #35443 */
  content: '';
}
.t_c03100:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03100 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03100 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03100 { /* info for Javascript */
  display:none;
}
.l_c03100 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03100 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03100 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03100:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03100 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03100.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03100.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03100 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03100{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03100;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03100{font-family:ff1_c03100;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03100;src:url('chunks/assets/font_6d029b5135519b5a81b012ae.woff2')format("woff");}.ff2_c03100{font-family:ff2_c03100;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03100;src:url('chunks/assets/font_ae653a74cdbb3875ee0f65f9.woff2')format("woff");}.ff3_c03100{font-family:ff3_c03100;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03100{vertical-align:0.000000px;}
.v2_c03100{vertical-align:1.439424px;}
.v1_c03100{vertical-align:33.121440px;}
.ls17_c03100{letter-spacing:-0.774576px;}
.ls18_c03100{letter-spacing:-0.698544px;}
.ls9_c03100{letter-spacing:-0.574992px;}
.lse_c03100{letter-spacing:-0.394416px;}
.ls14_c03100{letter-spacing:-0.361152px;}
.ls19_c03100{letter-spacing:-0.337392px;}
.ls10_c03100{letter-spacing:-0.275616px;}
.lsd_c03100{letter-spacing:-0.261360px;}
.ls13_c03100{letter-spacing:-0.251856px;}
.ls5_c03100{letter-spacing:-0.242352px;}
.ls3_c03100{letter-spacing:-0.118800px;}
.ls12_c03100{letter-spacing:-0.014256px;}
.ls16_c03100{letter-spacing:0.000000px;}
.ls0_c03100{letter-spacing:0.006048px;}
.ls4_c03100{letter-spacing:0.128304px;}
.ls8_c03100{letter-spacing:0.242352px;}
.lsb_c03100{letter-spacing:0.508464px;}
.ls15_c03100{letter-spacing:0.514080px;}
.lsf_c03100{letter-spacing:0.536976px;}
.ls6_c03100{letter-spacing:0.560736px;}
.lsa_c03100{letter-spacing:0.579744px;}
.ls11_c03100{letter-spacing:0.594000px;}
.ls7_c03100{letter-spacing:0.598752px;}
.ls1_c03100{letter-spacing:0.613008px;}
.ls2_c03100{letter-spacing:0.717552px;}
.lsc_c03100{letter-spacing:0.722304px;}
.sc__c03100{text-shadow:none;}
.sc0_c03100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03100{-webkit-text-stroke:0px transparent;}
.sc0_c03100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03100{word-spacing:-15.126048px;}
.ws7_c03100{word-spacing:-12.459744px;}
.ws15_c03100{word-spacing:-12.416976px;}
.ws8_c03100{word-spacing:-12.388464px;}
.wse_c03100{word-spacing:-12.122352px;}
.wsf_c03100{word-spacing:-11.637648px;}
.ws6_c03100{word-spacing:-11.305008px;}
.ws11_c03100{word-spacing:-11.105424px;}
.ws19_c03100{word-spacing:-1.083456px;}
.ws16_c03100{word-spacing:-0.974160px;}
.ws1f_c03100{word-spacing:-0.719712px;}
.ws1d_c03100{word-spacing:-0.346896px;}
.ws18_c03100{word-spacing:-0.118800px;}
.ws1e_c03100{word-spacing:-0.109296px;}
.ws1a_c03100{word-spacing:-0.099792px;}
.ws1c_c03100{word-spacing:-0.085536px;}
.ws20_c03100{word-spacing:-0.023760px;}
.ws17_c03100{word-spacing:0.000000px;}
.ws1b_c03100{word-spacing:0.033264px;}
.ws5_c03100{word-spacing:3.982176px;}
.ws2_c03100{word-spacing:4.999104px;}
.ws4_c03100{word-spacing:7.831296px;}
.ws13_c03100{word-spacing:9.641808px;}
.ws14_c03100{word-spacing:26.026704px;}
.wsb_c03100{word-spacing:30.298752px;}
.wsc_c03100{word-spacing:33.300288px;}
.wsa_c03100{word-spacing:34.836912px;}
.ws9_c03100{word-spacing:36.143712px;}
.ws1_c03100{word-spacing:37.759392px;}
.ws0_c03100{word-spacing:38.020752px;}
.ws3_c03100{word-spacing:39.218256px;}
.ws10_c03100{word-spacing:39.902544px;}
.ws12_c03100{word-spacing:42.026688px;}
._0_c03100{margin-left:-1.948320px;}
._2_c03100{width:1.482624px;}
._6_c03100{width:3.307392px;}
._5_c03100{width:17.839008px;}
._4_c03100{width:21.417264px;}
._7_c03100{width:34.380720px;}
._8_c03100{width:38.804832px;}
._9_c03100{width:44.421696px;}
._1_c03100{width:50.252400px;}
._3_c03100{width:51.530688px;}
.fc0_c03100{color:rgb(0,0,0);}
.fs0_c03100{font-size:47.520000px;}
.fs1_c03100{font-size:60.480000px;}
.y0_c03100{bottom:0.000000px;}
.y1a_c03100{bottom:146.999550px;}
.y1c_c03100{bottom:186.600234px;}
.y1b_c03100{bottom:196.320450px;}
.y19_c03100{bottom:275.879730px;}
.y18_c03100{bottom:356.879946px;}
.y15_c03100{bottom:406.559730px;}
.y11_c03100{bottom:424.560306px;}
.y17_c03100{bottom:443.999550px;}
.y16_c03100{bottom:458.759262px;}
.y14_c03100{bottom:491.879514px;}
.y13_c03100{bottom:509.880090px;}
.y10_c03100{bottom:543.000342px;}
.y12_c03100{bottom:559.559874px;}
.yf_c03100{bottom:577.560450px;}
.y1d_c03100{bottom:614.280450px;}
.yb_c03100{bottom:667.558326px;}
.yd_c03100{bottom:707.160234px;}
.yc_c03100{bottom:716.880450px;}
.ya_c03100{bottom:796.438506px;}
.y9_c03100{bottom:877.438722px;}
.y7_c03100{bottom:926.759730px;}
.y3_c03100{bottom:944.760306px;}
.y8_c03100{bottom:979.319226px;}
.y6_c03100{bottom:1012.439478px;}
.y5_c03100{bottom:1030.440054px;}
.y2_c03100{bottom:1063.560306px;}
.y4_c03100{bottom:1079.759874px;}
.y1_c03100{bottom:1097.760450px;}
.ye_c03100{bottom:1134.840450px;}
.h3_c03100{height:32.530781px;}
.h1_c03100{height:41.696016px;}
.h2_c03100{height:41.812031px;}
.h5_c03100{height:54.654737px;}
.h6_c03100{height:74.817456px;}
.h4_c03100{height:74.933471px;}
.h0_c03100{height:1263.000000px;}
.w1_c03100{width:892.500000px;}
.w0_c03100{width:892.830000px;}
.x0_c03100{left:0.000000px;}
.xd_c03100{left:117.000000px;}
.x8_c03100{left:440.999856px;}
.x4_c03100{left:445.680576px;}
.xb_c03100{left:451.080000px;}
.x7_c03100{left:455.399604px;}
.x5_c03100{left:461.880144px;}
.x1_c03100{left:463.320000px;}
.xa_c03100{left:483.480360px;}
.x9_c03100{left:492.119496px;}
.x6_c03100{left:493.199388px;}
.xc_c03100{left:506.880360px;}
.x3_c03100{left:511.919892px;}
.x2_c03100{left:526.679604px;}
.xe_c03100{left:569.880036px;}
@media print{
.v0_c03100{vertical-align:0.000000pt;}
.v2_c03100{vertical-align:1.279488pt;}
.v1_c03100{vertical-align:29.441280pt;}
.ls17_c03100{letter-spacing:-0.688512pt;}
.ls18_c03100{letter-spacing:-0.620928pt;}
.ls9_c03100{letter-spacing:-0.511104pt;}
.lse_c03100{letter-spacing:-0.350592pt;}
.ls14_c03100{letter-spacing:-0.321024pt;}
.ls19_c03100{letter-spacing:-0.299904pt;}
.ls10_c03100{letter-spacing:-0.244992pt;}
.lsd_c03100{letter-spacing:-0.232320pt;}
.ls13_c03100{letter-spacing:-0.223872pt;}
.ls5_c03100{letter-spacing:-0.215424pt;}
.ls3_c03100{letter-spacing:-0.105600pt;}
.ls12_c03100{letter-spacing:-0.012672pt;}
.ls16_c03100{letter-spacing:0.000000pt;}
.ls0_c03100{letter-spacing:0.005376pt;}
.ls4_c03100{letter-spacing:0.114048pt;}
.ls8_c03100{letter-spacing:0.215424pt;}
.lsb_c03100{letter-spacing:0.451968pt;}
.ls15_c03100{letter-spacing:0.456960pt;}
.lsf_c03100{letter-spacing:0.477312pt;}
.ls6_c03100{letter-spacing:0.498432pt;}
.lsa_c03100{letter-spacing:0.515328pt;}
.ls11_c03100{letter-spacing:0.528000pt;}
.ls7_c03100{letter-spacing:0.532224pt;}
.ls1_c03100{letter-spacing:0.544896pt;}
.ls2_c03100{letter-spacing:0.637824pt;}
.lsc_c03100{letter-spacing:0.642048pt;}
.wsd_c03100{word-spacing:-13.445376pt;}
.ws7_c03100{word-spacing:-11.075328pt;}
.ws15_c03100{word-spacing:-11.037312pt;}
.ws8_c03100{word-spacing:-11.011968pt;}
.wse_c03100{word-spacing:-10.775424pt;}
.wsf_c03100{word-spacing:-10.344576pt;}
.ws6_c03100{word-spacing:-10.048896pt;}
.ws11_c03100{word-spacing:-9.871488pt;}
.ws19_c03100{word-spacing:-0.963072pt;}
.ws16_c03100{word-spacing:-0.865920pt;}
.ws1f_c03100{word-spacing:-0.639744pt;}
.ws1d_c03100{word-spacing:-0.308352pt;}
.ws18_c03100{word-spacing:-0.105600pt;}
.ws1e_c03100{word-spacing:-0.097152pt;}
.ws1a_c03100{word-spacing:-0.088704pt;}
.ws1c_c03100{word-spacing:-0.076032pt;}
.ws20_c03100{word-spacing:-0.021120pt;}
.ws17_c03100{word-spacing:0.000000pt;}
.ws1b_c03100{word-spacing:0.029568pt;}
.ws5_c03100{word-spacing:3.539712pt;}
.ws2_c03100{word-spacing:4.443648pt;}
.ws4_c03100{word-spacing:6.961152pt;}
.ws13_c03100{word-spacing:8.570496pt;}
.ws14_c03100{word-spacing:23.134848pt;}
.wsb_c03100{word-spacing:26.932224pt;}
.wsc_c03100{word-spacing:29.600256pt;}
.wsa_c03100{word-spacing:30.966144pt;}
.ws9_c03100{word-spacing:32.127744pt;}
.ws1_c03100{word-spacing:33.563904pt;}
.ws0_c03100{word-spacing:33.796224pt;}
.ws3_c03100{word-spacing:34.860672pt;}
.ws10_c03100{word-spacing:35.468928pt;}
.ws12_c03100{word-spacing:37.357056pt;}
._0_c03100{margin-left:-1.731840pt;}
._2_c03100{width:1.317888pt;}
._6_c03100{width:2.939904pt;}
._5_c03100{width:15.856896pt;}
._4_c03100{width:19.037568pt;}
._7_c03100{width:30.560640pt;}
._8_c03100{width:34.493184pt;}
._9_c03100{width:39.485952pt;}
._1_c03100{width:44.668800pt;}
._3_c03100{width:45.805056pt;}
.fs0_c03100{font-size:42.240000pt;}
.fs1_c03100{font-size:53.760000pt;}
.y0_c03100{bottom:0.000000pt;}
.y1a_c03100{bottom:130.666267pt;}
.y1c_c03100{bottom:165.866875pt;}
.y1b_c03100{bottom:174.507067pt;}
.y19_c03100{bottom:245.226427pt;}
.y18_c03100{bottom:317.226619pt;}
.y15_c03100{bottom:361.386427pt;}
.y11_c03100{bottom:377.386939pt;}
.y17_c03100{bottom:394.666267pt;}
.y16_c03100{bottom:407.786011pt;}
.y14_c03100{bottom:437.226235pt;}
.y13_c03100{bottom:453.226747pt;}
.y10_c03100{bottom:482.666971pt;}
.y12_c03100{bottom:497.386555pt;}
.yf_c03100{bottom:513.387067pt;}
.y1d_c03100{bottom:546.027067pt;}
.yb_c03100{bottom:593.385179pt;}
.yd_c03100{bottom:628.586875pt;}
.yc_c03100{bottom:637.227067pt;}
.ya_c03100{bottom:707.945339pt;}
.y9_c03100{bottom:779.945531pt;}
.y7_c03100{bottom:823.786427pt;}
.y3_c03100{bottom:839.786939pt;}
.y8_c03100{bottom:870.505979pt;}
.y6_c03100{bottom:899.946203pt;}
.y5_c03100{bottom:915.946715pt;}
.y2_c03100{bottom:945.386939pt;}
.y4_c03100{bottom:959.786555pt;}
.y1_c03100{bottom:975.787067pt;}
.ye_c03100{bottom:1008.747067pt;}
.h3_c03100{height:28.916250pt;}
.h1_c03100{height:37.063125pt;}
.h2_c03100{height:37.166250pt;}
.h5_c03100{height:48.581988pt;}
.h6_c03100{height:66.504405pt;}
.h4_c03100{height:66.607530pt;}
.h0_c03100{height:1122.666667pt;}
.w1_c03100{width:793.333333pt;}
.w0_c03100{width:793.626667pt;}
.x0_c03100{left:0.000000pt;}
.xd_c03100{left:104.000000pt;}
.x8_c03100{left:391.999872pt;}
.x4_c03100{left:396.160512pt;}
.xb_c03100{left:400.960000pt;}
.x7_c03100{left:404.799648pt;}
.x5_c03100{left:410.560128pt;}
.x1_c03100{left:411.840000pt;}
.xa_c03100{left:429.760320pt;}
.x9_c03100{left:437.439552pt;}
.x6_c03100{left:438.399456pt;}
.xc_c03100{left:450.560320pt;}
.x3_c03100{left:455.039904pt;}
.x2_c03100{left:468.159648pt;}
.xe_c03100{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03101 {
    display:none;
  }
  .loading-indicator_c03101.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03101 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03101 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03101" -> "#page-container .classname_c03101")
 */
.pf_c03101 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03101 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03101 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03101 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03101 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03101 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03101 {overflow:visible;}
  }
}
.c_c03101 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03101 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03101:after { /* webkit #35443 */
  content: '';
}
.t_c03101:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03101 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03101 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03101 { /* info for Javascript */
  display:none;
}
.l_c03101 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03101 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03101 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03101:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03101 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03101.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03101 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03101{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03101;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03101{font-family:ff1_c03101;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03101;src:url('chunks/assets/font_e143b4de12b0cf36e8dca9c6.woff2')format("woff");}.ff2_c03101{font-family:ff2_c03101;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03101;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03101{font-family:ff3_c03101;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03101{vertical-align:0.000000px;}
.v2_c03101{vertical-align:1.439424px;}
.v1_c03101{vertical-align:33.121440px;}
.lsd_c03101{letter-spacing:-0.836352px;}
.ls9_c03101{letter-spacing:-0.774576px;}
.ls16_c03101{letter-spacing:-0.698544px;}
.ls8_c03101{letter-spacing:-0.574992px;}
.ls12_c03101{letter-spacing:-0.337392px;}
.ls10_c03101{letter-spacing:-0.275616px;}
.lse_c03101{letter-spacing:-0.261360px;}
.ls5_c03101{letter-spacing:-0.242352px;}
.lsc_c03101{letter-spacing:-0.194832px;}
.ls3_c03101{letter-spacing:-0.118800px;}
.ls14_c03101{letter-spacing:0.000000px;}
.ls0_c03101{letter-spacing:0.006048px;}
.ls4_c03101{letter-spacing:0.128304px;}
.ls6_c03101{letter-spacing:0.242352px;}
.lsb_c03101{letter-spacing:0.508464px;}
.ls13_c03101{letter-spacing:0.514080px;}
.lsf_c03101{letter-spacing:0.536976px;}
.ls15_c03101{letter-spacing:0.560736px;}
.lsa_c03101{letter-spacing:0.579744px;}
.ls11_c03101{letter-spacing:0.594000px;}
.ls7_c03101{letter-spacing:0.598752px;}
.ls1_c03101{letter-spacing:0.613008px;}
.ls2_c03101{letter-spacing:0.717552px;}
.sc__c03101{text-shadow:none;}
.sc0_c03101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03101{-webkit-text-stroke:0px transparent;}
.sc0_c03101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03101{word-spacing:-15.126048px;}
.ws7_c03101{word-spacing:-12.459744px;}
.wsa_c03101{word-spacing:-12.416976px;}
.ws2_c03101{word-spacing:-12.122352px;}
.ws4_c03101{word-spacing:-11.637648px;}
.ws6_c03101{word-spacing:-11.105424px;}
.ws10_c03101{word-spacing:-0.974160px;}
.ws17_c03101{word-spacing:-0.719712px;}
.ws12_c03101{word-spacing:-0.118800px;}
.ws14_c03101{word-spacing:-0.099792px;}
.ws15_c03101{word-spacing:-0.085536px;}
.ws16_c03101{word-spacing:-0.023760px;}
.ws11_c03101{word-spacing:0.000000px;}
.ws13_c03101{word-spacing:0.475200px;}
.ws9_c03101{word-spacing:12.055824px;}
.wse_c03101{word-spacing:22.638528px;}
.wsf_c03101{word-spacing:26.026704px;}
.wsb_c03101{word-spacing:30.298752px;}
.wsc_c03101{word-spacing:33.300288px;}
.ws1_c03101{word-spacing:37.759392px;}
.ws0_c03101{word-spacing:38.020752px;}
.ws3_c03101{word-spacing:39.218256px;}
.ws5_c03101{word-spacing:39.902544px;}
.ws8_c03101{word-spacing:42.026688px;}
._0_c03101{margin-left:-1.948320px;}
._2_c03101{width:1.482624px;}
._4_c03101{width:3.307392px;}
._7_c03101{width:22.681296px;}
._5_c03101{width:26.055216px;}
._6_c03101{width:29.723760px;}
._9_c03101{width:38.804832px;}
._8_c03101{width:42.734736px;}
._a_c03101{width:44.421696px;}
._1_c03101{width:50.252400px;}
._3_c03101{width:51.530688px;}
.fc0_c03101{color:rgb(0,0,0);}
.fs0_c03101{font-size:47.520000px;}
.fs1_c03101{font-size:60.480000px;}
.y0_c03101{bottom:0.000000px;}
.y1b_c03101{bottom:146.999550px;}
.y1d_c03101{bottom:186.600234px;}
.y1c_c03101{bottom:196.320450px;}
.y1a_c03101{bottom:275.879730px;}
.y19_c03101{bottom:356.879946px;}
.y16_c03101{bottom:406.559730px;}
.y12_c03101{bottom:424.560306px;}
.y18_c03101{bottom:443.999550px;}
.y17_c03101{bottom:458.759262px;}
.y15_c03101{bottom:491.879514px;}
.y14_c03101{bottom:509.880090px;}
.y11_c03101{bottom:543.000342px;}
.y13_c03101{bottom:559.559874px;}
.y10_c03101{bottom:577.560450px;}
.y1e_c03101{bottom:614.280450px;}
.yc_c03101{bottom:667.559514px;}
.ye_c03101{bottom:707.160234px;}
.yd_c03101{bottom:716.880450px;}
.yb_c03101{bottom:796.439694px;}
.ya_c03101{bottom:877.439910px;}
.y7_c03101{bottom:926.759730px;}
.y3_c03101{bottom:944.760306px;}
.y9_c03101{bottom:964.559514px;}
.y8_c03101{bottom:979.319226px;}
.y6_c03101{bottom:1012.439478px;}
.y5_c03101{bottom:1030.440054px;}
.y2_c03101{bottom:1063.560306px;}
.y4_c03101{bottom:1079.759874px;}
.y1_c03101{bottom:1097.760450px;}
.yf_c03101{bottom:1134.840450px;}
.h3_c03101{height:32.530781px;}
.h1_c03101{height:41.696016px;}
.h2_c03101{height:41.812031px;}
.h5_c03101{height:54.654737px;}
.h4_c03101{height:74.817456px;}
.h0_c03101{height:1263.000000px;}
.w1_c03101{width:892.500000px;}
.w0_c03101{width:892.830000px;}
.x0_c03101{left:0.000000px;}
.xe_c03101{left:117.000000px;}
.x8_c03101{left:440.999856px;}
.x4_c03101{left:445.680576px;}
.xc_c03101{left:451.080000px;}
.x7_c03101{left:455.399604px;}
.x5_c03101{left:461.880144px;}
.x1_c03101{left:463.320000px;}
.xb_c03101{left:483.480360px;}
.xa_c03101{left:492.119496px;}
.x6_c03101{left:493.200576px;}
.xd_c03101{left:506.880360px;}
.x3_c03101{left:511.919892px;}
.x2_c03101{left:526.679604px;}
.x9_c03101{left:569.880036px;}
@media print{
.v0_c03101{vertical-align:0.000000pt;}
.v2_c03101{vertical-align:1.279488pt;}
.v1_c03101{vertical-align:29.441280pt;}
.lsd_c03101{letter-spacing:-0.743424pt;}
.ls9_c03101{letter-spacing:-0.688512pt;}
.ls16_c03101{letter-spacing:-0.620928pt;}
.ls8_c03101{letter-spacing:-0.511104pt;}
.ls12_c03101{letter-spacing:-0.299904pt;}
.ls10_c03101{letter-spacing:-0.244992pt;}
.lse_c03101{letter-spacing:-0.232320pt;}
.ls5_c03101{letter-spacing:-0.215424pt;}
.lsc_c03101{letter-spacing:-0.173184pt;}
.ls3_c03101{letter-spacing:-0.105600pt;}
.ls14_c03101{letter-spacing:0.000000pt;}
.ls0_c03101{letter-spacing:0.005376pt;}
.ls4_c03101{letter-spacing:0.114048pt;}
.ls6_c03101{letter-spacing:0.215424pt;}
.lsb_c03101{letter-spacing:0.451968pt;}
.ls13_c03101{letter-spacing:0.456960pt;}
.lsf_c03101{letter-spacing:0.477312pt;}
.ls15_c03101{letter-spacing:0.498432pt;}
.lsa_c03101{letter-spacing:0.515328pt;}
.ls11_c03101{letter-spacing:0.528000pt;}
.ls7_c03101{letter-spacing:0.532224pt;}
.ls1_c03101{letter-spacing:0.544896pt;}
.ls2_c03101{letter-spacing:0.637824pt;}
.wsd_c03101{word-spacing:-13.445376pt;}
.ws7_c03101{word-spacing:-11.075328pt;}
.wsa_c03101{word-spacing:-11.037312pt;}
.ws2_c03101{word-spacing:-10.775424pt;}
.ws4_c03101{word-spacing:-10.344576pt;}
.ws6_c03101{word-spacing:-9.871488pt;}
.ws10_c03101{word-spacing:-0.865920pt;}
.ws17_c03101{word-spacing:-0.639744pt;}
.ws12_c03101{word-spacing:-0.105600pt;}
.ws14_c03101{word-spacing:-0.088704pt;}
.ws15_c03101{word-spacing:-0.076032pt;}
.ws16_c03101{word-spacing:-0.021120pt;}
.ws11_c03101{word-spacing:0.000000pt;}
.ws13_c03101{word-spacing:0.422400pt;}
.ws9_c03101{word-spacing:10.716288pt;}
.wse_c03101{word-spacing:20.123136pt;}
.wsf_c03101{word-spacing:23.134848pt;}
.wsb_c03101{word-spacing:26.932224pt;}
.wsc_c03101{word-spacing:29.600256pt;}
.ws1_c03101{word-spacing:33.563904pt;}
.ws0_c03101{word-spacing:33.796224pt;}
.ws3_c03101{word-spacing:34.860672pt;}
.ws5_c03101{word-spacing:35.468928pt;}
.ws8_c03101{word-spacing:37.357056pt;}
._0_c03101{margin-left:-1.731840pt;}
._2_c03101{width:1.317888pt;}
._4_c03101{width:2.939904pt;}
._7_c03101{width:20.161152pt;}
._5_c03101{width:23.160192pt;}
._6_c03101{width:26.421120pt;}
._9_c03101{width:34.493184pt;}
._8_c03101{width:37.986432pt;}
._a_c03101{width:39.485952pt;}
._1_c03101{width:44.668800pt;}
._3_c03101{width:45.805056pt;}
.fs0_c03101{font-size:42.240000pt;}
.fs1_c03101{font-size:53.760000pt;}
.y0_c03101{bottom:0.000000pt;}
.y1b_c03101{bottom:130.666267pt;}
.y1d_c03101{bottom:165.866875pt;}
.y1c_c03101{bottom:174.507067pt;}
.y1a_c03101{bottom:245.226427pt;}
.y19_c03101{bottom:317.226619pt;}
.y16_c03101{bottom:361.386427pt;}
.y12_c03101{bottom:377.386939pt;}
.y18_c03101{bottom:394.666267pt;}
.y17_c03101{bottom:407.786011pt;}
.y15_c03101{bottom:437.226235pt;}
.y14_c03101{bottom:453.226747pt;}
.y11_c03101{bottom:482.666971pt;}
.y13_c03101{bottom:497.386555pt;}
.y10_c03101{bottom:513.387067pt;}
.y1e_c03101{bottom:546.027067pt;}
.yc_c03101{bottom:593.386235pt;}
.ye_c03101{bottom:628.586875pt;}
.yd_c03101{bottom:637.227067pt;}
.yb_c03101{bottom:707.946395pt;}
.ya_c03101{bottom:779.946587pt;}
.y7_c03101{bottom:823.786427pt;}
.y3_c03101{bottom:839.786939pt;}
.y9_c03101{bottom:857.386235pt;}
.y8_c03101{bottom:870.505979pt;}
.y6_c03101{bottom:899.946203pt;}
.y5_c03101{bottom:915.946715pt;}
.y2_c03101{bottom:945.386939pt;}
.y4_c03101{bottom:959.786555pt;}
.y1_c03101{bottom:975.787067pt;}
.yf_c03101{bottom:1008.747067pt;}
.h3_c03101{height:28.916250pt;}
.h1_c03101{height:37.063125pt;}
.h2_c03101{height:37.166250pt;}
.h5_c03101{height:48.581988pt;}
.h4_c03101{height:66.504405pt;}
.h0_c03101{height:1122.666667pt;}
.w1_c03101{width:793.333333pt;}
.w0_c03101{width:793.626667pt;}
.x0_c03101{left:0.000000pt;}
.xe_c03101{left:104.000000pt;}
.x8_c03101{left:391.999872pt;}
.x4_c03101{left:396.160512pt;}
.xc_c03101{left:400.960000pt;}
.x7_c03101{left:404.799648pt;}
.x5_c03101{left:410.560128pt;}
.x1_c03101{left:411.840000pt;}
.xb_c03101{left:429.760320pt;}
.xa_c03101{left:437.439552pt;}
.x6_c03101{left:438.400512pt;}
.xd_c03101{left:450.560320pt;}
.x3_c03101{left:455.039904pt;}
.x2_c03101{left:468.159648pt;}
.x9_c03101{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03102 {
    display:none;
  }
  .loading-indicator_c03102.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03102 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03102 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03102" -> "#page-container .classname_c03102")
 */
.pf_c03102 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03102 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03102.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03102 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03102 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03102 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03102 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03102 {overflow:visible;}
  }
}
.c_c03102 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03102 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03102:after { /* webkit #35443 */
  content: '';
}
.t_c03102:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03102 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03102 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03102 { /* info for Javascript */
  display:none;
}
.l_c03102 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03102 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03102 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03102:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03102 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03102.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03102.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03102 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03102{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03102;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03102{font-family:ff1_c03102;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03102;src:url('chunks/assets/font_9bbbf974cb927d7296b56f81.woff2')format("woff");}.ff2_c03102{font-family:ff2_c03102;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03102;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03102{font-family:ff3_c03102;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03102{vertical-align:0.000000px;}
.v2_c03102{vertical-align:1.439424px;}
.v1_c03102{vertical-align:33.121440px;}
.ls9_c03102{letter-spacing:-0.774576px;}
.ls8_c03102{letter-spacing:-0.574992px;}
.ls11_c03102{letter-spacing:-0.337392px;}
.lsd_c03102{letter-spacing:-0.294624px;}
.lsf_c03102{letter-spacing:-0.275616px;}
.lse_c03102{letter-spacing:-0.261360px;}
.ls5_c03102{letter-spacing:-0.242352px;}
.ls3_c03102{letter-spacing:-0.118800px;}
.ls13_c03102{letter-spacing:0.000000px;}
.ls0_c03102{letter-spacing:0.006048px;}
.ls4_c03102{letter-spacing:0.128304px;}
.ls6_c03102{letter-spacing:0.242352px;}
.lsb_c03102{letter-spacing:0.508464px;}
.ls12_c03102{letter-spacing:0.514080px;}
.lsc_c03102{letter-spacing:0.536976px;}
.lsa_c03102{letter-spacing:0.579744px;}
.ls10_c03102{letter-spacing:0.594000px;}
.ls7_c03102{letter-spacing:0.598752px;}
.ls1_c03102{letter-spacing:0.613008px;}
.ls14_c03102{letter-spacing:0.632016px;}
.ls2_c03102{letter-spacing:0.717552px;}
.sc__c03102{text-shadow:none;}
.sc0_c03102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03102{-webkit-text-stroke:0px transparent;}
.sc0_c03102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03102{word-spacing:-15.126048px;}
.ws7_c03102{word-spacing:-12.459744px;}
.wsa_c03102{word-spacing:-12.416976px;}
.ws2_c03102{word-spacing:-12.122352px;}
.ws4_c03102{word-spacing:-11.637648px;}
.ws6_c03102{word-spacing:-11.105424px;}
.ws17_c03102{word-spacing:-0.993168px;}
.wsf_c03102{word-spacing:-0.974160px;}
.ws16_c03102{word-spacing:-0.719712px;}
.ws11_c03102{word-spacing:-0.118800px;}
.ws13_c03102{word-spacing:-0.099792px;}
.ws14_c03102{word-spacing:-0.085536px;}
.ws12_c03102{word-spacing:-0.066528px;}
.ws15_c03102{word-spacing:-0.023760px;}
.ws10_c03102{word-spacing:0.000000px;}
.ws9_c03102{word-spacing:3.967920px;}
.wse_c03102{word-spacing:13.533696px;}
.wsb_c03102{word-spacing:30.298752px;}
.wsc_c03102{word-spacing:33.300288px;}
.ws1_c03102{word-spacing:37.759392px;}
.ws0_c03102{word-spacing:38.020752px;}
.ws3_c03102{word-spacing:39.218256px;}
.ws5_c03102{word-spacing:39.902544px;}
.ws8_c03102{word-spacing:42.026688px;}
._0_c03102{margin-left:-1.948320px;}
._2_c03102{width:1.482624px;}
._4_c03102{width:3.307392px;}
._6_c03102{width:14.569632px;}
._5_c03102{width:25.789104px;}
._8_c03102{width:27.433296px;}
._7_c03102{width:28.877904px;}
._1_c03102{width:50.252400px;}
._3_c03102{width:51.530688px;}
.fc0_c03102{color:rgb(0,0,0);}
.fs0_c03102{font-size:47.520000px;}
.fs1_c03102{font-size:60.480000px;}
.y0_c03102{bottom:0.000000px;}
.y1b_c03102{bottom:146.999550px;}
.y1d_c03102{bottom:186.600234px;}
.y1c_c03102{bottom:196.320450px;}
.y1a_c03102{bottom:275.879730px;}
.y19_c03102{bottom:356.879946px;}
.y16_c03102{bottom:406.559730px;}
.y12_c03102{bottom:424.560306px;}
.y18_c03102{bottom:443.999550px;}
.y17_c03102{bottom:458.759262px;}
.y15_c03102{bottom:491.879514px;}
.y14_c03102{bottom:509.880090px;}
.y11_c03102{bottom:543.000342px;}
.y13_c03102{bottom:559.559874px;}
.y10_c03102{bottom:577.560450px;}
.y1e_c03102{bottom:614.280450px;}
.yc_c03102{bottom:667.559514px;}
.ye_c03102{bottom:707.160234px;}
.yd_c03102{bottom:716.880450px;}
.yb_c03102{bottom:796.439694px;}
.ya_c03102{bottom:877.439910px;}
.y7_c03102{bottom:926.759730px;}
.y3_c03102{bottom:944.760306px;}
.y9_c03102{bottom:964.559514px;}
.y8_c03102{bottom:979.319226px;}
.y6_c03102{bottom:1012.439478px;}
.y5_c03102{bottom:1030.440054px;}
.y2_c03102{bottom:1063.560306px;}
.y4_c03102{bottom:1079.759874px;}
.y1_c03102{bottom:1097.760450px;}
.yf_c03102{bottom:1134.840450px;}
.h3_c03102{height:32.530781px;}
.h1_c03102{height:41.696016px;}
.h2_c03102{height:41.812031px;}
.h5_c03102{height:54.654737px;}
.h4_c03102{height:74.817456px;}
.h0_c03102{height:1263.000000px;}
.w1_c03102{width:892.500000px;}
.w0_c03102{width:892.830000px;}
.x0_c03102{left:0.000000px;}
.xe_c03102{left:117.000000px;}
.x8_c03102{left:440.999856px;}
.x4_c03102{left:445.680576px;}
.xc_c03102{left:451.080000px;}
.x7_c03102{left:455.399604px;}
.x5_c03102{left:461.880144px;}
.x1_c03102{left:463.320000px;}
.xb_c03102{left:483.480360px;}
.xa_c03102{left:492.119496px;}
.x6_c03102{left:493.200576px;}
.xd_c03102{left:506.880360px;}
.x3_c03102{left:511.919892px;}
.x2_c03102{left:526.679604px;}
.x9_c03102{left:569.880036px;}
@media print{
.v0_c03102{vertical-align:0.000000pt;}
.v2_c03102{vertical-align:1.279488pt;}
.v1_c03102{vertical-align:29.441280pt;}
.ls9_c03102{letter-spacing:-0.688512pt;}
.ls8_c03102{letter-spacing:-0.511104pt;}
.ls11_c03102{letter-spacing:-0.299904pt;}
.lsd_c03102{letter-spacing:-0.261888pt;}
.lsf_c03102{letter-spacing:-0.244992pt;}
.lse_c03102{letter-spacing:-0.232320pt;}
.ls5_c03102{letter-spacing:-0.215424pt;}
.ls3_c03102{letter-spacing:-0.105600pt;}
.ls13_c03102{letter-spacing:0.000000pt;}
.ls0_c03102{letter-spacing:0.005376pt;}
.ls4_c03102{letter-spacing:0.114048pt;}
.ls6_c03102{letter-spacing:0.215424pt;}
.lsb_c03102{letter-spacing:0.451968pt;}
.ls12_c03102{letter-spacing:0.456960pt;}
.lsc_c03102{letter-spacing:0.477312pt;}
.lsa_c03102{letter-spacing:0.515328pt;}
.ls10_c03102{letter-spacing:0.528000pt;}
.ls7_c03102{letter-spacing:0.532224pt;}
.ls1_c03102{letter-spacing:0.544896pt;}
.ls14_c03102{letter-spacing:0.561792pt;}
.ls2_c03102{letter-spacing:0.637824pt;}
.wsd_c03102{word-spacing:-13.445376pt;}
.ws7_c03102{word-spacing:-11.075328pt;}
.wsa_c03102{word-spacing:-11.037312pt;}
.ws2_c03102{word-spacing:-10.775424pt;}
.ws4_c03102{word-spacing:-10.344576pt;}
.ws6_c03102{word-spacing:-9.871488pt;}
.ws17_c03102{word-spacing:-0.882816pt;}
.wsf_c03102{word-spacing:-0.865920pt;}
.ws16_c03102{word-spacing:-0.639744pt;}
.ws11_c03102{word-spacing:-0.105600pt;}
.ws13_c03102{word-spacing:-0.088704pt;}
.ws14_c03102{word-spacing:-0.076032pt;}
.ws12_c03102{word-spacing:-0.059136pt;}
.ws15_c03102{word-spacing:-0.021120pt;}
.ws10_c03102{word-spacing:0.000000pt;}
.ws9_c03102{word-spacing:3.527040pt;}
.wse_c03102{word-spacing:12.029952pt;}
.wsb_c03102{word-spacing:26.932224pt;}
.wsc_c03102{word-spacing:29.600256pt;}
.ws1_c03102{word-spacing:33.563904pt;}
.ws0_c03102{word-spacing:33.796224pt;}
.ws3_c03102{word-spacing:34.860672pt;}
.ws5_c03102{word-spacing:35.468928pt;}
.ws8_c03102{word-spacing:37.357056pt;}
._0_c03102{margin-left:-1.731840pt;}
._2_c03102{width:1.317888pt;}
._4_c03102{width:2.939904pt;}
._6_c03102{width:12.950784pt;}
._5_c03102{width:22.923648pt;}
._8_c03102{width:24.385152pt;}
._7_c03102{width:25.669248pt;}
._1_c03102{width:44.668800pt;}
._3_c03102{width:45.805056pt;}
.fs0_c03102{font-size:42.240000pt;}
.fs1_c03102{font-size:53.760000pt;}
.y0_c03102{bottom:0.000000pt;}
.y1b_c03102{bottom:130.666267pt;}
.y1d_c03102{bottom:165.866875pt;}
.y1c_c03102{bottom:174.507067pt;}
.y1a_c03102{bottom:245.226427pt;}
.y19_c03102{bottom:317.226619pt;}
.y16_c03102{bottom:361.386427pt;}
.y12_c03102{bottom:377.386939pt;}
.y18_c03102{bottom:394.666267pt;}
.y17_c03102{bottom:407.786011pt;}
.y15_c03102{bottom:437.226235pt;}
.y14_c03102{bottom:453.226747pt;}
.y11_c03102{bottom:482.666971pt;}
.y13_c03102{bottom:497.386555pt;}
.y10_c03102{bottom:513.387067pt;}
.y1e_c03102{bottom:546.027067pt;}
.yc_c03102{bottom:593.386235pt;}
.ye_c03102{bottom:628.586875pt;}
.yd_c03102{bottom:637.227067pt;}
.yb_c03102{bottom:707.946395pt;}
.ya_c03102{bottom:779.946587pt;}
.y7_c03102{bottom:823.786427pt;}
.y3_c03102{bottom:839.786939pt;}
.y9_c03102{bottom:857.386235pt;}
.y8_c03102{bottom:870.505979pt;}
.y6_c03102{bottom:899.946203pt;}
.y5_c03102{bottom:915.946715pt;}
.y2_c03102{bottom:945.386939pt;}
.y4_c03102{bottom:959.786555pt;}
.y1_c03102{bottom:975.787067pt;}
.yf_c03102{bottom:1008.747067pt;}
.h3_c03102{height:28.916250pt;}
.h1_c03102{height:37.063125pt;}
.h2_c03102{height:37.166250pt;}
.h5_c03102{height:48.581988pt;}
.h4_c03102{height:66.504405pt;}
.h0_c03102{height:1122.666667pt;}
.w1_c03102{width:793.333333pt;}
.w0_c03102{width:793.626667pt;}
.x0_c03102{left:0.000000pt;}
.xe_c03102{left:104.000000pt;}
.x8_c03102{left:391.999872pt;}
.x4_c03102{left:396.160512pt;}
.xc_c03102{left:400.960000pt;}
.x7_c03102{left:404.799648pt;}
.x5_c03102{left:410.560128pt;}
.x1_c03102{left:411.840000pt;}
.xb_c03102{left:429.760320pt;}
.xa_c03102{left:437.439552pt;}
.x6_c03102{left:438.400512pt;}
.xd_c03102{left:450.560320pt;}
.x3_c03102{left:455.039904pt;}
.x2_c03102{left:468.159648pt;}
.x9_c03102{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03103 {
    display:none;
  }
  .loading-indicator_c03103.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03103 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03103 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03103" -> "#page-container .classname_c03103")
 */
.pf_c03103 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03103 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03103.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03103 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03103 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03103 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03103 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03103 {overflow:visible;}
  }
}
.c_c03103 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03103 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03103:after { /* webkit #35443 */
  content: '';
}
.t_c03103:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03103 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03103 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03103 { /* info for Javascript */
  display:none;
}
.l_c03103 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03103 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03103 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03103:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03103 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03103.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03103.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03103 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03103{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03103;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03103{font-family:ff1_c03103;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03103;src:url('chunks/assets/font_7217017fc6788d69a1e8b092.woff2')format("woff");}.ff2_c03103{font-family:ff2_c03103;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03103;src:url('chunks/assets/font_c00a600bf158ae09f28ad9f5.woff2')format("woff");}.ff3_c03103{font-family:ff3_c03103;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03103{vertical-align:0.000000px;}
.v2_c03103{vertical-align:1.439424px;}
.v1_c03103{vertical-align:33.121440px;}
.lsb_c03103{letter-spacing:-1.197504px;}
.ls19_c03103{letter-spacing:-0.755568px;}
.ls1a_c03103{letter-spacing:-0.722304px;}
.lsa_c03103{letter-spacing:-0.574992px;}
.ls9_c03103{letter-spacing:-0.508464px;}
.ls15_c03103{letter-spacing:-0.361152px;}
.ls12_c03103{letter-spacing:-0.275616px;}
.lsf_c03103{letter-spacing:-0.261360px;}
.ls16_c03103{letter-spacing:-0.256608px;}
.ls6_c03103{letter-spacing:-0.242352px;}
.ls4_c03103{letter-spacing:-0.118800px;}
.ls18_c03103{letter-spacing:0.000000px;}
.ls0_c03103{letter-spacing:0.006048px;}
.ls14_c03103{letter-spacing:0.009504px;}
.ls5_c03103{letter-spacing:0.128304px;}
.lsd_c03103{letter-spacing:0.242352px;}
.ls7_c03103{letter-spacing:0.508464px;}
.ls17_c03103{letter-spacing:0.514080px;}
.ls11_c03103{letter-spacing:0.536976px;}
.lsc_c03103{letter-spacing:0.579744px;}
.ls13_c03103{letter-spacing:0.594000px;}
.ls8_c03103{letter-spacing:0.598752px;}
.ls2_c03103{letter-spacing:0.613008px;}
.ls1_c03103{letter-spacing:0.641520px;}
.lse_c03103{letter-spacing:0.651024px;}
.ls3_c03103{letter-spacing:0.717552px;}
.ls10_c03103{letter-spacing:0.722304px;}
.sc__c03103{text-shadow:none;}
.sc0_c03103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03103{-webkit-text-stroke:0px transparent;}
.sc0_c03103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c03103{word-spacing:-15.126048px;}
.ws15_c03103{word-spacing:-12.474000px;}
.ws7_c03103{word-spacing:-12.459744px;}
.wsb_c03103{word-spacing:-12.416976px;}
.ws2_c03103{word-spacing:-12.388464px;}
.ws11_c03103{word-spacing:-11.761200px;}
.ws12_c03103{word-spacing:-11.637648px;}
.ws4_c03103{word-spacing:-11.371536px;}
.ws6_c03103{word-spacing:-10.682496px;}
.ws1b_c03103{word-spacing:-1.083456px;}
.ws19_c03103{word-spacing:-1.012176px;}
.ws1f_c03103{word-spacing:-1.002672px;}
.ws16_c03103{word-spacing:-0.974160px;}
.ws1e_c03103{word-spacing:-0.719712px;}
.ws18_c03103{word-spacing:-0.118800px;}
.ws1d_c03103{word-spacing:-0.104544px;}
.ws1a_c03103{word-spacing:-0.099792px;}
.ws1c_c03103{word-spacing:-0.085536px;}
.ws17_c03103{word-spacing:0.000000px;}
.ws20_c03103{word-spacing:0.394416px;}
.wsa_c03103{word-spacing:2.157408px;}
.wse_c03103{word-spacing:8.639136px;}
.ws14_c03103{word-spacing:19.084032px;}
.wsc_c03103{word-spacing:30.298752px;}
.wsf_c03103{word-spacing:33.300288px;}
.ws13_c03103{word-spacing:34.836912px;}
.ws9_c03103{word-spacing:36.143712px;}
.ws1_c03103{word-spacing:37.759392px;}
.ws0_c03103{word-spacing:38.020752px;}
.ws3_c03103{word-spacing:39.218256px;}
.ws5_c03103{word-spacing:39.902544px;}
.ws8_c03103{word-spacing:42.026688px;}
.wsd_c03103{word-spacing:49.663152px;}
._0_c03103{margin-left:-1.948320px;}
._2_c03103{width:1.482624px;}
._9_c03103{width:2.680128px;}
._5_c03103{width:12.412224px;}
._6_c03103{width:13.619232px;}
._4_c03103{width:19.858608px;}
._a_c03103{width:32.237568px;}
._b_c03103{width:34.005312px;}
._c_c03103{width:35.283600px;}
._1_c03103{width:50.252400px;}
._3_c03103{width:51.530688px;}
._7_c03103{width:65.468304px;}
._8_c03103{width:66.675312px;}
.fc0_c03103{color:rgb(0,0,0);}
.fs0_c03103{font-size:47.520000px;}
.fs1_c03103{font-size:60.480000px;}
.y0_c03103{bottom:0.000000px;}
.y14_c03103{bottom:18.000450px;}
.y1f_c03103{bottom:131.878794px;}
.y1e_c03103{bottom:146.998470px;}
.y21_c03103{bottom:186.598074px;}
.y20_c03103{bottom:196.318290px;}
.y1d_c03103{bottom:275.878650px;}
.y1c_c03103{bottom:356.878866px;}
.y1a_c03103{bottom:406.559838px;}
.y16_c03103{bottom:424.560414px;}
.y1b_c03103{bottom:458.759370px;}
.y19_c03103{bottom:491.879622px;}
.y18_c03103{bottom:509.880198px;}
.y13_c03103{bottom:525.000000px;}
.y12_c03103{bottom:543.000342px;}
.y15_c03103{bottom:543.000450px;}
.y17_c03103{bottom:559.559982px;}
.y11_c03103{bottom:577.560450px;}
.y22_c03103{bottom:614.280450px;}
.yc_c03103{bottom:667.558326px;}
.yf_c03103{bottom:700.320918px;}
.ye_c03103{bottom:707.160234px;}
.yd_c03103{bottom:716.880450px;}
.yb_c03103{bottom:781.318830px;}
.ya_c03103{bottom:796.438506px;}
.y9_c03103{bottom:877.438722px;}
.y7_c03103{bottom:926.759730px;}
.y3_c03103{bottom:944.760306px;}
.y8_c03103{bottom:979.319226px;}
.y6_c03103{bottom:1012.439478px;}
.y5_c03103{bottom:1030.440054px;}
.y2_c03103{bottom:1063.560306px;}
.y4_c03103{bottom:1079.759874px;}
.y1_c03103{bottom:1097.760450px;}
.y10_c03103{bottom:1134.840450px;}
.h6_c03103{height:29.160000px;}
.h3_c03103{height:32.530781px;}
.h1_c03103{height:41.696016px;}
.h2_c03103{height:41.812031px;}
.h5_c03103{height:54.654737px;}
.h4_c03103{height:74.817456px;}
.h0_c03103{height:1263.000000px;}
.w2_c03103{width:215.280000px;}
.w1_c03103{width:892.500000px;}
.w0_c03103{width:892.830000px;}
.x0_c03103{left:0.000000px;}
.xe_c03103{left:117.000000px;}
.x8_c03103{left:440.999856px;}
.x4_c03103{left:445.680576px;}
.xc_c03103{left:451.080000px;}
.x7_c03103{left:455.399604px;}
.x5_c03103{left:461.880144px;}
.x1_c03103{left:463.320000px;}
.xb_c03103{left:483.480360px;}
.x9_c03103{left:492.119496px;}
.x6_c03103{left:493.200576px;}
.xd_c03103{left:506.880360px;}
.x3_c03103{left:511.919892px;}
.x2_c03103{left:526.679604px;}
.xa_c03103{left:569.880036px;}
.xf_c03103{left:665.640000px;}
@media print{
.v0_c03103{vertical-align:0.000000pt;}
.v2_c03103{vertical-align:1.279488pt;}
.v1_c03103{vertical-align:29.441280pt;}
.lsb_c03103{letter-spacing:-1.064448pt;}
.ls19_c03103{letter-spacing:-0.671616pt;}
.ls1a_c03103{letter-spacing:-0.642048pt;}
.lsa_c03103{letter-spacing:-0.511104pt;}
.ls9_c03103{letter-spacing:-0.451968pt;}
.ls15_c03103{letter-spacing:-0.321024pt;}
.ls12_c03103{letter-spacing:-0.244992pt;}
.lsf_c03103{letter-spacing:-0.232320pt;}
.ls16_c03103{letter-spacing:-0.228096pt;}
.ls6_c03103{letter-spacing:-0.215424pt;}
.ls4_c03103{letter-spacing:-0.105600pt;}
.ls18_c03103{letter-spacing:0.000000pt;}
.ls0_c03103{letter-spacing:0.005376pt;}
.ls14_c03103{letter-spacing:0.008448pt;}
.ls5_c03103{letter-spacing:0.114048pt;}
.lsd_c03103{letter-spacing:0.215424pt;}
.ls7_c03103{letter-spacing:0.451968pt;}
.ls17_c03103{letter-spacing:0.456960pt;}
.ls11_c03103{letter-spacing:0.477312pt;}
.lsc_c03103{letter-spacing:0.515328pt;}
.ls13_c03103{letter-spacing:0.528000pt;}
.ls8_c03103{letter-spacing:0.532224pt;}
.ls2_c03103{letter-spacing:0.544896pt;}
.ls1_c03103{letter-spacing:0.570240pt;}
.lse_c03103{letter-spacing:0.578688pt;}
.ls3_c03103{letter-spacing:0.637824pt;}
.ls10_c03103{letter-spacing:0.642048pt;}
.ws10_c03103{word-spacing:-13.445376pt;}
.ws15_c03103{word-spacing:-11.088000pt;}
.ws7_c03103{word-spacing:-11.075328pt;}
.wsb_c03103{word-spacing:-11.037312pt;}
.ws2_c03103{word-spacing:-11.011968pt;}
.ws11_c03103{word-spacing:-10.454400pt;}
.ws12_c03103{word-spacing:-10.344576pt;}
.ws4_c03103{word-spacing:-10.108032pt;}
.ws6_c03103{word-spacing:-9.495552pt;}
.ws1b_c03103{word-spacing:-0.963072pt;}
.ws19_c03103{word-spacing:-0.899712pt;}
.ws1f_c03103{word-spacing:-0.891264pt;}
.ws16_c03103{word-spacing:-0.865920pt;}
.ws1e_c03103{word-spacing:-0.639744pt;}
.ws18_c03103{word-spacing:-0.105600pt;}
.ws1d_c03103{word-spacing:-0.092928pt;}
.ws1a_c03103{word-spacing:-0.088704pt;}
.ws1c_c03103{word-spacing:-0.076032pt;}
.ws17_c03103{word-spacing:0.000000pt;}
.ws20_c03103{word-spacing:0.350592pt;}
.wsa_c03103{word-spacing:1.917696pt;}
.wse_c03103{word-spacing:7.679232pt;}
.ws14_c03103{word-spacing:16.963584pt;}
.wsc_c03103{word-spacing:26.932224pt;}
.wsf_c03103{word-spacing:29.600256pt;}
.ws13_c03103{word-spacing:30.966144pt;}
.ws9_c03103{word-spacing:32.127744pt;}
.ws1_c03103{word-spacing:33.563904pt;}
.ws0_c03103{word-spacing:33.796224pt;}
.ws3_c03103{word-spacing:34.860672pt;}
.ws5_c03103{word-spacing:35.468928pt;}
.ws8_c03103{word-spacing:37.357056pt;}
.wsd_c03103{word-spacing:44.145024pt;}
._0_c03103{margin-left:-1.731840pt;}
._2_c03103{width:1.317888pt;}
._9_c03103{width:2.382336pt;}
._5_c03103{width:11.033088pt;}
._6_c03103{width:12.105984pt;}
._4_c03103{width:17.652096pt;}
._a_c03103{width:28.655616pt;}
._b_c03103{width:30.226944pt;}
._c_c03103{width:31.363200pt;}
._1_c03103{width:44.668800pt;}
._3_c03103{width:45.805056pt;}
._7_c03103{width:58.194048pt;}
._8_c03103{width:59.266944pt;}
.fs0_c03103{font-size:42.240000pt;}
.fs1_c03103{font-size:53.760000pt;}
.y0_c03103{bottom:0.000000pt;}
.y14_c03103{bottom:16.000400pt;}
.y1f_c03103{bottom:117.225595pt;}
.y1e_c03103{bottom:130.665307pt;}
.y21_c03103{bottom:165.864955pt;}
.y20_c03103{bottom:174.505147pt;}
.y1d_c03103{bottom:245.225467pt;}
.y1c_c03103{bottom:317.225659pt;}
.y1a_c03103{bottom:361.386523pt;}
.y16_c03103{bottom:377.387035pt;}
.y1b_c03103{bottom:407.786107pt;}
.y19_c03103{bottom:437.226331pt;}
.y18_c03103{bottom:453.226843pt;}
.y13_c03103{bottom:466.666667pt;}
.y12_c03103{bottom:482.666971pt;}
.y15_c03103{bottom:482.667067pt;}
.y17_c03103{bottom:497.386651pt;}
.y11_c03103{bottom:513.387067pt;}
.y22_c03103{bottom:546.027067pt;}
.yc_c03103{bottom:593.385179pt;}
.yf_c03103{bottom:622.507483pt;}
.ye_c03103{bottom:628.586875pt;}
.yd_c03103{bottom:637.227067pt;}
.yb_c03103{bottom:694.505627pt;}
.ya_c03103{bottom:707.945339pt;}
.y9_c03103{bottom:779.945531pt;}
.y7_c03103{bottom:823.786427pt;}
.y3_c03103{bottom:839.786939pt;}
.y8_c03103{bottom:870.505979pt;}
.y6_c03103{bottom:899.946203pt;}
.y5_c03103{bottom:915.946715pt;}
.y2_c03103{bottom:945.386939pt;}
.y4_c03103{bottom:959.786555pt;}
.y1_c03103{bottom:975.787067pt;}
.y10_c03103{bottom:1008.747067pt;}
.h6_c03103{height:25.920000pt;}
.h3_c03103{height:28.916250pt;}
.h1_c03103{height:37.063125pt;}
.h2_c03103{height:37.166250pt;}
.h5_c03103{height:48.581988pt;}
.h4_c03103{height:66.504405pt;}
.h0_c03103{height:1122.666667pt;}
.w2_c03103{width:191.360000pt;}
.w1_c03103{width:793.333333pt;}
.w0_c03103{width:793.626667pt;}
.x0_c03103{left:0.000000pt;}
.xe_c03103{left:104.000000pt;}
.x8_c03103{left:391.999872pt;}
.x4_c03103{left:396.160512pt;}
.xc_c03103{left:400.960000pt;}
.x7_c03103{left:404.799648pt;}
.x5_c03103{left:410.560128pt;}
.x1_c03103{left:411.840000pt;}
.xb_c03103{left:429.760320pt;}
.x9_c03103{left:437.439552pt;}
.x6_c03103{left:438.400512pt;}
.xd_c03103{left:450.560320pt;}
.x3_c03103{left:455.039904pt;}
.x2_c03103{left:468.159648pt;}
.xa_c03103{left:506.560032pt;}
.xf_c03103{left:591.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03104 {
    display:none;
  }
  .loading-indicator_c03104.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03104 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03104 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03104" -> "#page-container .classname_c03104")
 */
.pf_c03104 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03104 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03104.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03104 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03104 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03104 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03104 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03104 {overflow:visible;}
  }
}
.c_c03104 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03104 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03104:after { /* webkit #35443 */
  content: '';
}
.t_c03104:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03104 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03104 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03104 { /* info for Javascript */
  display:none;
}
.l_c03104 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03104 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03104 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03104:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03104 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03104.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03104.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03104 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03104{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03104;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03104{font-family:ff1_c03104;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03104;src:url('chunks/assets/font_f17931f9a70dfa0a6dbd2dfd.woff2')format("woff");}.ff2_c03104{font-family:ff2_c03104;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03104;src:url('chunks/assets/font_53ec35d3de4acdd9d4934470.woff2')format("woff");}.ff3_c03104{font-family:ff3_c03104;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03104{vertical-align:0.000000px;}
.v1_c03104{vertical-align:1.439424px;}
.lse_c03104{letter-spacing:-1.197504px;}
.ls9_c03104{letter-spacing:-0.817344px;}
.lsb_c03104{letter-spacing:-0.574992px;}
.ls11_c03104{letter-spacing:-0.275616px;}
.lsf_c03104{letter-spacing:-0.261360px;}
.ls8_c03104{letter-spacing:-0.242352px;}
.ls5_c03104{letter-spacing:-0.118800px;}
.ls14_c03104{letter-spacing:0.000000px;}
.ls2_c03104{letter-spacing:0.006048px;}
.ls7_c03104{letter-spacing:0.128304px;}
.lsd_c03104{letter-spacing:0.508464px;}
.ls13_c03104{letter-spacing:0.514080px;}
.ls10_c03104{letter-spacing:0.536976px;}
.ls0_c03104{letter-spacing:0.551232px;}
.lsc_c03104{letter-spacing:0.579744px;}
.ls12_c03104{letter-spacing:0.594000px;}
.lsa_c03104{letter-spacing:0.598752px;}
.ls3_c03104{letter-spacing:0.613008px;}
.ls1_c03104{letter-spacing:0.679536px;}
.ls4_c03104{letter-spacing:0.717552px;}
.ls6_c03104{letter-spacing:0.722304px;}
.sc__c03104{text-shadow:none;}
.sc0_c03104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03104{-webkit-text-stroke:0px transparent;}
.sc0_c03104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03104{word-spacing:-15.126048px;}
.wsa_c03104{word-spacing:-12.474000px;}
.ws7_c03104{word-spacing:-12.459744px;}
.ws1_c03104{word-spacing:-12.431232px;}
.ws9_c03104{word-spacing:-12.416976px;}
.wsd_c03104{word-spacing:-12.388464px;}
.ws0_c03104{word-spacing:-11.761200px;}
.ws6_c03104{word-spacing:-11.305008px;}
.ws2_c03104{word-spacing:-2.523312px;}
.ws15_c03104{word-spacing:-1.083456px;}
.ws13_c03104{word-spacing:-1.040688px;}
.wse_c03104{word-spacing:-0.974160px;}
.ws17_c03104{word-spacing:-0.719712px;}
.ws10_c03104{word-spacing:-0.118800px;}
.ws14_c03104{word-spacing:-0.099792px;}
.ws16_c03104{word-spacing:-0.085536px;}
.wsf_c03104{word-spacing:0.000000px;}
.ws11_c03104{word-spacing:0.456192px;}
.ws12_c03104{word-spacing:0.836352px;}
.ws5_c03104{word-spacing:4.951584px;}
.wsb_c03104{word-spacing:33.300288px;}
.ws3_c03104{word-spacing:37.759392px;}
.ws4_c03104{word-spacing:39.218256px;}
.ws8_c03104{word-spacing:42.026688px;}
._0_c03104{margin-left:-1.948320px;}
._2_c03104{width:1.482624px;}
._6_c03104{width:2.770416px;}
._5_c03104{width:13.248576px;}
._4_c03104{width:17.368560px;}
._1_c03104{width:50.252400px;}
._3_c03104{width:51.530688px;}
.fc0_c03104{color:rgb(0,0,0);}
.fs0_c03104{font-size:47.520000px;}
.fs1_c03104{font-size:60.480000px;}
.y0_c03104{bottom:0.000000px;}
.y18_c03104{bottom:18.000450px;}
.y4_c03104{bottom:18.360450px;}
.y22_c03104{bottom:65.880450px;}
.ye_c03104{bottom:66.240450px;}
.y25_c03104{bottom:147.000054px;}
.y27_c03104{bottom:186.600234px;}
.y26_c03104{bottom:196.320450px;}
.y24_c03104{bottom:275.880234px;}
.y21_c03104{bottom:291.000000px;}
.y20_c03104{bottom:356.878866px;}
.y23_c03104{bottom:356.880450px;}
.y1e_c03104{bottom:406.559838px;}
.y1a_c03104{bottom:424.560414px;}
.y1f_c03104{bottom:458.759370px;}
.y1d_c03104{bottom:491.879622px;}
.y1c_c03104{bottom:509.880198px;}
.y17_c03104{bottom:525.000000px;}
.y16_c03104{bottom:543.000342px;}
.y19_c03104{bottom:543.000450px;}
.y1b_c03104{bottom:559.559982px;}
.y15_c03104{bottom:577.560450px;}
.y28_c03104{bottom:614.280450px;}
.y11_c03104{bottom:667.560054px;}
.y13_c03104{bottom:707.160234px;}
.y12_c03104{bottom:716.880450px;}
.y10_c03104{bottom:796.440234px;}
.yd_c03104{bottom:811.200000px;}
.yc_c03104{bottom:877.438866px;}
.yf_c03104{bottom:877.440450px;}
.ya_c03104{bottom:926.759874px;}
.y6_c03104{bottom:944.760450px;}
.yb_c03104{bottom:979.319370px;}
.y9_c03104{bottom:1012.439622px;}
.y8_c03104{bottom:1030.440198px;}
.y3_c03104{bottom:1045.200000px;}
.y2_c03104{bottom:1063.560306px;}
.y5_c03104{bottom:1063.560450px;}
.y7_c03104{bottom:1079.760018px;}
.y1_c03104{bottom:1097.760450px;}
.y14_c03104{bottom:1134.840450px;}
.h7_c03104{height:29.160000px;}
.h3_c03104{height:29.520000px;}
.h2_c03104{height:32.530781px;}
.h1_c03104{height:41.696016px;}
.h4_c03104{height:41.812031px;}
.h6_c03104{height:54.654737px;}
.h8_c03104{height:78.480000px;}
.h5_c03104{height:78.840000px;}
.h0_c03104{height:1263.000000px;}
.w2_c03104{width:215.280000px;}
.w1_c03104{width:892.500000px;}
.w0_c03104{width:892.830000px;}
.x0_c03104{left:0.000000px;}
.x10_c03104{left:117.000000px;}
.xa_c03104{left:441.000900px;}
.x6_c03104{left:445.680432px;}
.xe_c03104{left:451.080000px;}
.x9_c03104{left:455.400648px;}
.x7_c03104{left:461.880000px;}
.x1_c03104{left:463.320000px;}
.xd_c03104{left:483.480144px;}
.xb_c03104{left:492.120540px;}
.x8_c03104{left:493.200432px;}
.xf_c03104{left:506.880360px;}
.x5_c03104{left:511.919748px;}
.x2_c03104{left:526.679604px;}
.x3_c03104{left:569.520000px;}
.x4_c03104{left:616.320000px;}
.xc_c03104{left:663.120000px;}
@media print{
.v0_c03104{vertical-align:0.000000pt;}
.v1_c03104{vertical-align:1.279488pt;}
.lse_c03104{letter-spacing:-1.064448pt;}
.ls9_c03104{letter-spacing:-0.726528pt;}
.lsb_c03104{letter-spacing:-0.511104pt;}
.ls11_c03104{letter-spacing:-0.244992pt;}
.lsf_c03104{letter-spacing:-0.232320pt;}
.ls8_c03104{letter-spacing:-0.215424pt;}
.ls5_c03104{letter-spacing:-0.105600pt;}
.ls14_c03104{letter-spacing:0.000000pt;}
.ls2_c03104{letter-spacing:0.005376pt;}
.ls7_c03104{letter-spacing:0.114048pt;}
.lsd_c03104{letter-spacing:0.451968pt;}
.ls13_c03104{letter-spacing:0.456960pt;}
.ls10_c03104{letter-spacing:0.477312pt;}
.ls0_c03104{letter-spacing:0.489984pt;}
.lsc_c03104{letter-spacing:0.515328pt;}
.ls12_c03104{letter-spacing:0.528000pt;}
.lsa_c03104{letter-spacing:0.532224pt;}
.ls3_c03104{letter-spacing:0.544896pt;}
.ls1_c03104{letter-spacing:0.604032pt;}
.ls4_c03104{letter-spacing:0.637824pt;}
.ls6_c03104{letter-spacing:0.642048pt;}
.wsc_c03104{word-spacing:-13.445376pt;}
.wsa_c03104{word-spacing:-11.088000pt;}
.ws7_c03104{word-spacing:-11.075328pt;}
.ws1_c03104{word-spacing:-11.049984pt;}
.ws9_c03104{word-spacing:-11.037312pt;}
.wsd_c03104{word-spacing:-11.011968pt;}
.ws0_c03104{word-spacing:-10.454400pt;}
.ws6_c03104{word-spacing:-10.048896pt;}
.ws2_c03104{word-spacing:-2.242944pt;}
.ws15_c03104{word-spacing:-0.963072pt;}
.ws13_c03104{word-spacing:-0.925056pt;}
.wse_c03104{word-spacing:-0.865920pt;}
.ws17_c03104{word-spacing:-0.639744pt;}
.ws10_c03104{word-spacing:-0.105600pt;}
.ws14_c03104{word-spacing:-0.088704pt;}
.ws16_c03104{word-spacing:-0.076032pt;}
.wsf_c03104{word-spacing:0.000000pt;}
.ws11_c03104{word-spacing:0.405504pt;}
.ws12_c03104{word-spacing:0.743424pt;}
.ws5_c03104{word-spacing:4.401408pt;}
.wsb_c03104{word-spacing:29.600256pt;}
.ws3_c03104{word-spacing:33.563904pt;}
.ws4_c03104{word-spacing:34.860672pt;}
.ws8_c03104{word-spacing:37.357056pt;}
._0_c03104{margin-left:-1.731840pt;}
._2_c03104{width:1.317888pt;}
._6_c03104{width:2.462592pt;}
._5_c03104{width:11.776512pt;}
._4_c03104{width:15.438720pt;}
._1_c03104{width:44.668800pt;}
._3_c03104{width:45.805056pt;}
.fs0_c03104{font-size:42.240000pt;}
.fs1_c03104{font-size:53.760000pt;}
.y0_c03104{bottom:0.000000pt;}
.y18_c03104{bottom:16.000400pt;}
.y4_c03104{bottom:16.320400pt;}
.y22_c03104{bottom:58.560400pt;}
.ye_c03104{bottom:58.880400pt;}
.y25_c03104{bottom:130.666715pt;}
.y27_c03104{bottom:165.866875pt;}
.y26_c03104{bottom:174.507067pt;}
.y24_c03104{bottom:245.226875pt;}
.y21_c03104{bottom:258.666667pt;}
.y20_c03104{bottom:317.225659pt;}
.y23_c03104{bottom:317.227067pt;}
.y1e_c03104{bottom:361.386523pt;}
.y1a_c03104{bottom:377.387035pt;}
.y1f_c03104{bottom:407.786107pt;}
.y1d_c03104{bottom:437.226331pt;}
.y1c_c03104{bottom:453.226843pt;}
.y17_c03104{bottom:466.666667pt;}
.y16_c03104{bottom:482.666971pt;}
.y19_c03104{bottom:482.667067pt;}
.y1b_c03104{bottom:497.386651pt;}
.y15_c03104{bottom:513.387067pt;}
.y28_c03104{bottom:546.027067pt;}
.y11_c03104{bottom:593.386715pt;}
.y13_c03104{bottom:628.586875pt;}
.y12_c03104{bottom:637.227067pt;}
.y10_c03104{bottom:707.946875pt;}
.yd_c03104{bottom:721.066667pt;}
.yc_c03104{bottom:779.945659pt;}
.yf_c03104{bottom:779.947067pt;}
.ya_c03104{bottom:823.786555pt;}
.y6_c03104{bottom:839.787067pt;}
.yb_c03104{bottom:870.506107pt;}
.y9_c03104{bottom:899.946331pt;}
.y8_c03104{bottom:915.946843pt;}
.y3_c03104{bottom:929.066667pt;}
.y2_c03104{bottom:945.386939pt;}
.y5_c03104{bottom:945.387067pt;}
.y7_c03104{bottom:959.786683pt;}
.y1_c03104{bottom:975.787067pt;}
.y14_c03104{bottom:1008.747067pt;}
.h7_c03104{height:25.920000pt;}
.h3_c03104{height:26.240000pt;}
.h2_c03104{height:28.916250pt;}
.h1_c03104{height:37.063125pt;}
.h4_c03104{height:37.166250pt;}
.h6_c03104{height:48.581988pt;}
.h8_c03104{height:69.760000pt;}
.h5_c03104{height:70.080000pt;}
.h0_c03104{height:1122.666667pt;}
.w2_c03104{width:191.360000pt;}
.w1_c03104{width:793.333333pt;}
.w0_c03104{width:793.626667pt;}
.x0_c03104{left:0.000000pt;}
.x10_c03104{left:104.000000pt;}
.xa_c03104{left:392.000800pt;}
.x6_c03104{left:396.160384pt;}
.xe_c03104{left:400.960000pt;}
.x9_c03104{left:404.800576pt;}
.x7_c03104{left:410.560000pt;}
.x1_c03104{left:411.840000pt;}
.xd_c03104{left:429.760128pt;}
.xb_c03104{left:437.440480pt;}
.x8_c03104{left:438.400384pt;}
.xf_c03104{left:450.560320pt;}
.x5_c03104{left:455.039776pt;}
.x2_c03104{left:468.159648pt;}
.x3_c03104{left:506.240000pt;}
.x4_c03104{left:547.840000pt;}
.xc_c03104{left:589.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03105 {
    display:none;
  }
  .loading-indicator_c03105.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03105 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03105 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03105" -> "#page-container .classname_c03105")
 */
.pf_c03105 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03105 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03105.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03105 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03105 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03105 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03105 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03105 {overflow:visible;}
  }
}
.c_c03105 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03105 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03105:after { /* webkit #35443 */
  content: '';
}
.t_c03105:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03105 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03105 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03105 { /* info for Javascript */
  display:none;
}
.l_c03105 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03105 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03105 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03105:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03105 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03105.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03105.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03105 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03105{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03105;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03105{font-family:ff1_c03105;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03105;src:url('chunks/assets/font_1f0cabc2a09123f6ccdd711c.woff2')format("woff");}.ff2_c03105{font-family:ff2_c03105;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03105;src:url('chunks/assets/font_53ec35d3de4acdd9d4934470.woff2')format("woff");}.ff3_c03105{font-family:ff3_c03105;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03105{vertical-align:0.000000px;}
.v1_c03105{vertical-align:1.439424px;}
.ls18_c03105{letter-spacing:-0.860112px;}
.lsa_c03105{letter-spacing:-0.817344px;}
.lse_c03105{letter-spacing:-0.774576px;}
.lsd_c03105{letter-spacing:-0.574992px;}
.ls11_c03105{letter-spacing:-0.403920px;}
.ls13_c03105{letter-spacing:-0.394416px;}
.lsc_c03105{letter-spacing:-0.275616px;}
.ls12_c03105{letter-spacing:-0.261360px;}
.ls9_c03105{letter-spacing:-0.242352px;}
.ls6_c03105{letter-spacing:-0.118800px;}
.ls17_c03105{letter-spacing:0.000000px;}
.ls2_c03105{letter-spacing:0.006048px;}
.ls3_c03105{letter-spacing:0.071280px;}
.ls8_c03105{letter-spacing:0.128304px;}
.ls10_c03105{letter-spacing:0.508464px;}
.ls16_c03105{letter-spacing:0.514080px;}
.ls14_c03105{letter-spacing:0.536976px;}
.ls0_c03105{letter-spacing:0.551232px;}
.lsf_c03105{letter-spacing:0.579744px;}
.ls15_c03105{letter-spacing:0.594000px;}
.lsb_c03105{letter-spacing:0.598752px;}
.ls4_c03105{letter-spacing:0.613008px;}
.ls1_c03105{letter-spacing:0.679536px;}
.ls5_c03105{letter-spacing:0.717552px;}
.ls7_c03105{letter-spacing:0.722304px;}
.sc__c03105{text-shadow:none;}
.sc0_c03105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03105{-webkit-text-stroke:0px transparent;}
.sc0_c03105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03105{word-spacing:-15.126048px;}
.wsa_c03105{word-spacing:-12.474000px;}
.ws7_c03105{word-spacing:-12.459744px;}
.ws1_c03105{word-spacing:-12.431232px;}
.ws9_c03105{word-spacing:-12.416976px;}
.wse_c03105{word-spacing:-11.951280px;}
.ws0_c03105{word-spacing:-11.761200px;}
.ws6_c03105{word-spacing:-11.105424px;}
.ws2_c03105{word-spacing:-2.523312px;}
.ws19_c03105{word-spacing:-1.083456px;}
.ws15_c03105{word-spacing:-1.040688px;}
.wsf_c03105{word-spacing:-0.974160px;}
.ws18_c03105{word-spacing:-0.719712px;}
.ws11_c03105{word-spacing:-0.118800px;}
.ws16_c03105{word-spacing:-0.099792px;}
.ws13_c03105{word-spacing:-0.085536px;}
.ws10_c03105{word-spacing:0.000000px;}
.ws17_c03105{word-spacing:0.033264px;}
.ws14_c03105{word-spacing:0.042768px;}
.ws12_c03105{word-spacing:0.456192px;}
.wsd_c03105{word-spacing:22.719312px;}
.wsb_c03105{word-spacing:33.300288px;}
.ws3_c03105{word-spacing:37.759392px;}
.ws4_c03105{word-spacing:39.218256px;}
.ws5_c03105{word-spacing:39.902544px;}
.ws8_c03105{word-spacing:42.026688px;}
._0_c03105{margin-left:-1.948320px;}
._2_c03105{width:1.482624px;}
._6_c03105{width:2.485296px;}
._5_c03105{width:13.248576px;}
._4_c03105{width:17.368560px;}
._9_c03105{width:31.106592px;}
._8_c03105{width:32.636736px;}
._7_c03105{width:36.295776px;}
._1_c03105{width:50.252400px;}
._3_c03105{width:51.530688px;}
.fc0_c03105{color:rgb(0,0,0);}
.fs0_c03105{font-size:47.520000px;}
.fs1_c03105{font-size:60.480000px;}
.y0_c03105{bottom:0.000000px;}
.y18_c03105{bottom:18.000450px;}
.y4_c03105{bottom:18.360450px;}
.y23_c03105{bottom:65.880450px;}
.ye_c03105{bottom:66.240450px;}
.y26_c03105{bottom:147.000054px;}
.y28_c03105{bottom:186.600234px;}
.y27_c03105{bottom:196.320450px;}
.y25_c03105{bottom:275.880234px;}
.y22_c03105{bottom:291.000000px;}
.y21_c03105{bottom:356.880054px;}
.y24_c03105{bottom:356.880450px;}
.y1e_c03105{bottom:406.559838px;}
.y1a_c03105{bottom:424.560414px;}
.y20_c03105{bottom:443.999658px;}
.y1f_c03105{bottom:458.759370px;}
.y1d_c03105{bottom:491.879622px;}
.y1c_c03105{bottom:509.880198px;}
.y17_c03105{bottom:525.000000px;}
.y16_c03105{bottom:543.000342px;}
.y19_c03105{bottom:543.000450px;}
.y1b_c03105{bottom:559.559982px;}
.y15_c03105{bottom:577.560450px;}
.y29_c03105{bottom:614.280450px;}
.y11_c03105{bottom:667.560054px;}
.y13_c03105{bottom:707.160234px;}
.y12_c03105{bottom:716.880450px;}
.y10_c03105{bottom:796.440234px;}
.yd_c03105{bottom:811.200000px;}
.yc_c03105{bottom:877.438866px;}
.yf_c03105{bottom:877.440450px;}
.ya_c03105{bottom:926.759874px;}
.y6_c03105{bottom:944.760450px;}
.yb_c03105{bottom:979.319370px;}
.y9_c03105{bottom:1012.439622px;}
.y8_c03105{bottom:1030.440198px;}
.y3_c03105{bottom:1045.200000px;}
.y2_c03105{bottom:1063.560306px;}
.y5_c03105{bottom:1063.560450px;}
.y7_c03105{bottom:1079.760018px;}
.y1_c03105{bottom:1097.760450px;}
.y14_c03105{bottom:1134.840450px;}
.h7_c03105{height:29.160000px;}
.h3_c03105{height:29.520000px;}
.h2_c03105{height:32.530781px;}
.h1_c03105{height:41.696016px;}
.h4_c03105{height:41.812031px;}
.h6_c03105{height:54.654737px;}
.h8_c03105{height:78.480000px;}
.h5_c03105{height:78.840000px;}
.h0_c03105{height:1263.000000px;}
.w2_c03105{width:215.280000px;}
.w1_c03105{width:892.500000px;}
.w0_c03105{width:892.830000px;}
.x0_c03105{left:0.000000px;}
.x10_c03105{left:117.000000px;}
.xa_c03105{left:440.999712px;}
.x6_c03105{left:445.680432px;}
.xe_c03105{left:451.080000px;}
.x9_c03105{left:455.399460px;}
.x7_c03105{left:461.880000px;}
.x1_c03105{left:463.320000px;}
.xd_c03105{left:483.480144px;}
.xb_c03105{left:492.119352px;}
.x8_c03105{left:493.200432px;}
.xf_c03105{left:506.880360px;}
.x5_c03105{left:511.919748px;}
.x2_c03105{left:526.679604px;}
.x3_c03105{left:569.520000px;}
.x4_c03105{left:616.320000px;}
.xc_c03105{left:663.120000px;}
@media print{
.v0_c03105{vertical-align:0.000000pt;}
.v1_c03105{vertical-align:1.279488pt;}
.ls18_c03105{letter-spacing:-0.764544pt;}
.lsa_c03105{letter-spacing:-0.726528pt;}
.lse_c03105{letter-spacing:-0.688512pt;}
.lsd_c03105{letter-spacing:-0.511104pt;}
.ls11_c03105{letter-spacing:-0.359040pt;}
.ls13_c03105{letter-spacing:-0.350592pt;}
.lsc_c03105{letter-spacing:-0.244992pt;}
.ls12_c03105{letter-spacing:-0.232320pt;}
.ls9_c03105{letter-spacing:-0.215424pt;}
.ls6_c03105{letter-spacing:-0.105600pt;}
.ls17_c03105{letter-spacing:0.000000pt;}
.ls2_c03105{letter-spacing:0.005376pt;}
.ls3_c03105{letter-spacing:0.063360pt;}
.ls8_c03105{letter-spacing:0.114048pt;}
.ls10_c03105{letter-spacing:0.451968pt;}
.ls16_c03105{letter-spacing:0.456960pt;}
.ls14_c03105{letter-spacing:0.477312pt;}
.ls0_c03105{letter-spacing:0.489984pt;}
.lsf_c03105{letter-spacing:0.515328pt;}
.ls15_c03105{letter-spacing:0.528000pt;}
.lsb_c03105{letter-spacing:0.532224pt;}
.ls4_c03105{letter-spacing:0.544896pt;}
.ls1_c03105{letter-spacing:0.604032pt;}
.ls5_c03105{letter-spacing:0.637824pt;}
.ls7_c03105{letter-spacing:0.642048pt;}
.wsc_c03105{word-spacing:-13.445376pt;}
.wsa_c03105{word-spacing:-11.088000pt;}
.ws7_c03105{word-spacing:-11.075328pt;}
.ws1_c03105{word-spacing:-11.049984pt;}
.ws9_c03105{word-spacing:-11.037312pt;}
.wse_c03105{word-spacing:-10.623360pt;}
.ws0_c03105{word-spacing:-10.454400pt;}
.ws6_c03105{word-spacing:-9.871488pt;}
.ws2_c03105{word-spacing:-2.242944pt;}
.ws19_c03105{word-spacing:-0.963072pt;}
.ws15_c03105{word-spacing:-0.925056pt;}
.wsf_c03105{word-spacing:-0.865920pt;}
.ws18_c03105{word-spacing:-0.639744pt;}
.ws11_c03105{word-spacing:-0.105600pt;}
.ws16_c03105{word-spacing:-0.088704pt;}
.ws13_c03105{word-spacing:-0.076032pt;}
.ws10_c03105{word-spacing:0.000000pt;}
.ws17_c03105{word-spacing:0.029568pt;}
.ws14_c03105{word-spacing:0.038016pt;}
.ws12_c03105{word-spacing:0.405504pt;}
.wsd_c03105{word-spacing:20.194944pt;}
.wsb_c03105{word-spacing:29.600256pt;}
.ws3_c03105{word-spacing:33.563904pt;}
.ws4_c03105{word-spacing:34.860672pt;}
.ws5_c03105{word-spacing:35.468928pt;}
.ws8_c03105{word-spacing:37.357056pt;}
._0_c03105{margin-left:-1.731840pt;}
._2_c03105{width:1.317888pt;}
._6_c03105{width:2.209152pt;}
._5_c03105{width:11.776512pt;}
._4_c03105{width:15.438720pt;}
._9_c03105{width:27.650304pt;}
._8_c03105{width:29.010432pt;}
._7_c03105{width:32.262912pt;}
._1_c03105{width:44.668800pt;}
._3_c03105{width:45.805056pt;}
.fs0_c03105{font-size:42.240000pt;}
.fs1_c03105{font-size:53.760000pt;}
.y0_c03105{bottom:0.000000pt;}
.y18_c03105{bottom:16.000400pt;}
.y4_c03105{bottom:16.320400pt;}
.y23_c03105{bottom:58.560400pt;}
.ye_c03105{bottom:58.880400pt;}
.y26_c03105{bottom:130.666715pt;}
.y28_c03105{bottom:165.866875pt;}
.y27_c03105{bottom:174.507067pt;}
.y25_c03105{bottom:245.226875pt;}
.y22_c03105{bottom:258.666667pt;}
.y21_c03105{bottom:317.226715pt;}
.y24_c03105{bottom:317.227067pt;}
.y1e_c03105{bottom:361.386523pt;}
.y1a_c03105{bottom:377.387035pt;}
.y20_c03105{bottom:394.666363pt;}
.y1f_c03105{bottom:407.786107pt;}
.y1d_c03105{bottom:437.226331pt;}
.y1c_c03105{bottom:453.226843pt;}
.y17_c03105{bottom:466.666667pt;}
.y16_c03105{bottom:482.666971pt;}
.y19_c03105{bottom:482.667067pt;}
.y1b_c03105{bottom:497.386651pt;}
.y15_c03105{bottom:513.387067pt;}
.y29_c03105{bottom:546.027067pt;}
.y11_c03105{bottom:593.386715pt;}
.y13_c03105{bottom:628.586875pt;}
.y12_c03105{bottom:637.227067pt;}
.y10_c03105{bottom:707.946875pt;}
.yd_c03105{bottom:721.066667pt;}
.yc_c03105{bottom:779.945659pt;}
.yf_c03105{bottom:779.947067pt;}
.ya_c03105{bottom:823.786555pt;}
.y6_c03105{bottom:839.787067pt;}
.yb_c03105{bottom:870.506107pt;}
.y9_c03105{bottom:899.946331pt;}
.y8_c03105{bottom:915.946843pt;}
.y3_c03105{bottom:929.066667pt;}
.y2_c03105{bottom:945.386939pt;}
.y5_c03105{bottom:945.387067pt;}
.y7_c03105{bottom:959.786683pt;}
.y1_c03105{bottom:975.787067pt;}
.y14_c03105{bottom:1008.747067pt;}
.h7_c03105{height:25.920000pt;}
.h3_c03105{height:26.240000pt;}
.h2_c03105{height:28.916250pt;}
.h1_c03105{height:37.063125pt;}
.h4_c03105{height:37.166250pt;}
.h6_c03105{height:48.581988pt;}
.h8_c03105{height:69.760000pt;}
.h5_c03105{height:70.080000pt;}
.h0_c03105{height:1122.666667pt;}
.w2_c03105{width:191.360000pt;}
.w1_c03105{width:793.333333pt;}
.w0_c03105{width:793.626667pt;}
.x0_c03105{left:0.000000pt;}
.x10_c03105{left:104.000000pt;}
.xa_c03105{left:391.999744pt;}
.x6_c03105{left:396.160384pt;}
.xe_c03105{left:400.960000pt;}
.x9_c03105{left:404.799520pt;}
.x7_c03105{left:410.560000pt;}
.x1_c03105{left:411.840000pt;}
.xd_c03105{left:429.760128pt;}
.xb_c03105{left:437.439424pt;}
.x8_c03105{left:438.400384pt;}
.xf_c03105{left:450.560320pt;}
.x5_c03105{left:455.039776pt;}
.x2_c03105{left:468.159648pt;}
.x3_c03105{left:506.240000pt;}
.x4_c03105{left:547.840000pt;}
.xc_c03105{left:589.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03106 {
    display:none;
  }
  .loading-indicator_c03106.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03106 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03106 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03106" -> "#page-container .classname_c03106")
 */
.pf_c03106 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03106 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03106.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03106 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03106 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03106 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03106 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03106 {overflow:visible;}
  }
}
.c_c03106 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03106 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03106:after { /* webkit #35443 */
  content: '';
}
.t_c03106:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03106 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03106 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03106 { /* info for Javascript */
  display:none;
}
.l_c03106 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03106 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03106 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03106:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03106 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03106.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03106.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03106 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03106{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03106;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03106{font-family:ff1_c03106;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03106;src:url('chunks/assets/font_f80904387158a760ae3a6faa.woff2')format("woff");}.ff2_c03106{font-family:ff2_c03106;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03106;src:url('chunks/assets/font_53ec35d3de4acdd9d4934470.woff2')format("woff");}.ff3_c03106{font-family:ff3_c03106;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03106{vertical-align:0.000000px;}
.v1_c03106{vertical-align:1.439424px;}
.ls9_c03106{letter-spacing:-0.817344px;}
.ls16_c03106{letter-spacing:-0.760320px;}
.lsb_c03106{letter-spacing:-0.755568px;}
.lsc_c03106{letter-spacing:-0.574992px;}
.ls10_c03106{letter-spacing:-0.394416px;}
.ls12_c03106{letter-spacing:-0.275616px;}
.lsf_c03106{letter-spacing:-0.261360px;}
.ls8_c03106{letter-spacing:-0.242352px;}
.ls5_c03106{letter-spacing:-0.118800px;}
.ls15_c03106{letter-spacing:0.000000px;}
.ls2_c03106{letter-spacing:0.006048px;}
.ls7_c03106{letter-spacing:0.128304px;}
.lse_c03106{letter-spacing:0.508464px;}
.ls14_c03106{letter-spacing:0.514080px;}
.ls11_c03106{letter-spacing:0.536976px;}
.ls0_c03106{letter-spacing:0.551232px;}
.lsd_c03106{letter-spacing:0.579744px;}
.ls13_c03106{letter-spacing:0.594000px;}
.lsa_c03106{letter-spacing:0.598752px;}
.ls3_c03106{letter-spacing:0.613008px;}
.ls1_c03106{letter-spacing:0.679536px;}
.ls4_c03106{letter-spacing:0.717552px;}
.ls6_c03106{letter-spacing:0.722304px;}
.sc__c03106{text-shadow:none;}
.sc0_c03106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03106{-webkit-text-stroke:0px transparent;}
.sc0_c03106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03106{word-spacing:-15.126048px;}
.wsa_c03106{word-spacing:-12.474000px;}
.ws7_c03106{word-spacing:-12.459744px;}
.ws1_c03106{word-spacing:-12.431232px;}
.ws9_c03106{word-spacing:-12.416976px;}
.ws8_c03106{word-spacing:-12.388464px;}
.ws0_c03106{word-spacing:-11.761200px;}
.ws6_c03106{word-spacing:-11.305008px;}
.ws5_c03106{word-spacing:-11.124432px;}
.ws2_c03106{word-spacing:-2.523312px;}
.ws12_c03106{word-spacing:-1.040688px;}
.wse_c03106{word-spacing:-0.974160px;}
.ws16_c03106{word-spacing:-0.719712px;}
.ws10_c03106{word-spacing:-0.118800px;}
.ws13_c03106{word-spacing:-0.099792px;}
.ws15_c03106{word-spacing:-0.085536px;}
.wsf_c03106{word-spacing:0.000000px;}
.ws14_c03106{word-spacing:0.033264px;}
.ws17_c03106{word-spacing:0.399168px;}
.ws11_c03106{word-spacing:0.456192px;}
.wsd_c03106{word-spacing:4.951584px;}
.wsb_c03106{word-spacing:33.300288px;}
.ws3_c03106{word-spacing:37.759392px;}
.ws4_c03106{word-spacing:39.218256px;}
._0_c03106{margin-left:-1.948320px;}
._2_c03106{width:1.482624px;}
._6_c03106{width:3.369168px;}
._5_c03106{width:13.248576px;}
._7_c03106{width:15.971472px;}
._4_c03106{width:17.368560px;}
._1_c03106{width:50.252400px;}
._3_c03106{width:51.530688px;}
.fc0_c03106{color:rgb(0,0,0);}
.fs0_c03106{font-size:47.520000px;}
.fs1_c03106{font-size:60.480000px;}
.y0_c03106{bottom:0.000000px;}
.y18_c03106{bottom:18.000450px;}
.y4_c03106{bottom:18.360450px;}
.y22_c03106{bottom:65.880450px;}
.ye_c03106{bottom:66.240450px;}
.y25_c03106{bottom:147.000054px;}
.y27_c03106{bottom:186.600234px;}
.y26_c03106{bottom:196.320450px;}
.y24_c03106{bottom:275.880234px;}
.y21_c03106{bottom:291.000000px;}
.y20_c03106{bottom:356.878866px;}
.y23_c03106{bottom:356.880450px;}
.y1e_c03106{bottom:406.559838px;}
.y1a_c03106{bottom:424.560414px;}
.y1f_c03106{bottom:458.759370px;}
.y1d_c03106{bottom:491.879622px;}
.y1c_c03106{bottom:509.880198px;}
.y17_c03106{bottom:525.000000px;}
.y16_c03106{bottom:543.000342px;}
.y19_c03106{bottom:543.000450px;}
.y1b_c03106{bottom:559.559982px;}
.y15_c03106{bottom:577.560450px;}
.y28_c03106{bottom:614.280450px;}
.y11_c03106{bottom:667.560054px;}
.y13_c03106{bottom:707.160234px;}
.y12_c03106{bottom:716.880450px;}
.y10_c03106{bottom:796.440234px;}
.yd_c03106{bottom:811.200000px;}
.yc_c03106{bottom:877.438866px;}
.yf_c03106{bottom:877.440450px;}
.ya_c03106{bottom:926.759874px;}
.y6_c03106{bottom:944.760450px;}
.yb_c03106{bottom:979.319370px;}
.y9_c03106{bottom:1012.439622px;}
.y8_c03106{bottom:1030.440198px;}
.y3_c03106{bottom:1045.200000px;}
.y2_c03106{bottom:1063.560306px;}
.y5_c03106{bottom:1063.560450px;}
.y7_c03106{bottom:1079.760018px;}
.y1_c03106{bottom:1097.760450px;}
.y14_c03106{bottom:1134.840450px;}
.h7_c03106{height:29.160000px;}
.h3_c03106{height:29.520000px;}
.h2_c03106{height:32.530781px;}
.h1_c03106{height:41.696016px;}
.h4_c03106{height:41.812031px;}
.h6_c03106{height:54.654737px;}
.h8_c03106{height:78.480000px;}
.h5_c03106{height:78.840000px;}
.h0_c03106{height:1263.000000px;}
.w2_c03106{width:215.280000px;}
.w1_c03106{width:892.500000px;}
.w0_c03106{width:892.830000px;}
.x0_c03106{left:0.000000px;}
.x10_c03106{left:117.000000px;}
.xa_c03106{left:441.000900px;}
.x6_c03106{left:445.680432px;}
.xe_c03106{left:451.080000px;}
.x9_c03106{left:455.400648px;}
.x7_c03106{left:461.880000px;}
.x1_c03106{left:463.320000px;}
.xd_c03106{left:483.480144px;}
.xb_c03106{left:492.120540px;}
.x8_c03106{left:493.200432px;}
.xf_c03106{left:506.880360px;}
.x5_c03106{left:511.919748px;}
.x2_c03106{left:526.679604px;}
.x3_c03106{left:569.520000px;}
.x4_c03106{left:616.320000px;}
.xc_c03106{left:663.120000px;}
@media print{
.v0_c03106{vertical-align:0.000000pt;}
.v1_c03106{vertical-align:1.279488pt;}
.ls9_c03106{letter-spacing:-0.726528pt;}
.ls16_c03106{letter-spacing:-0.675840pt;}
.lsb_c03106{letter-spacing:-0.671616pt;}
.lsc_c03106{letter-spacing:-0.511104pt;}
.ls10_c03106{letter-spacing:-0.350592pt;}
.ls12_c03106{letter-spacing:-0.244992pt;}
.lsf_c03106{letter-spacing:-0.232320pt;}
.ls8_c03106{letter-spacing:-0.215424pt;}
.ls5_c03106{letter-spacing:-0.105600pt;}
.ls15_c03106{letter-spacing:0.000000pt;}
.ls2_c03106{letter-spacing:0.005376pt;}
.ls7_c03106{letter-spacing:0.114048pt;}
.lse_c03106{letter-spacing:0.451968pt;}
.ls14_c03106{letter-spacing:0.456960pt;}
.ls11_c03106{letter-spacing:0.477312pt;}
.ls0_c03106{letter-spacing:0.489984pt;}
.lsd_c03106{letter-spacing:0.515328pt;}
.ls13_c03106{letter-spacing:0.528000pt;}
.lsa_c03106{letter-spacing:0.532224pt;}
.ls3_c03106{letter-spacing:0.544896pt;}
.ls1_c03106{letter-spacing:0.604032pt;}
.ls4_c03106{letter-spacing:0.637824pt;}
.ls6_c03106{letter-spacing:0.642048pt;}
.wsc_c03106{word-spacing:-13.445376pt;}
.wsa_c03106{word-spacing:-11.088000pt;}
.ws7_c03106{word-spacing:-11.075328pt;}
.ws1_c03106{word-spacing:-11.049984pt;}
.ws9_c03106{word-spacing:-11.037312pt;}
.ws8_c03106{word-spacing:-11.011968pt;}
.ws0_c03106{word-spacing:-10.454400pt;}
.ws6_c03106{word-spacing:-10.048896pt;}
.ws5_c03106{word-spacing:-9.888384pt;}
.ws2_c03106{word-spacing:-2.242944pt;}
.ws12_c03106{word-spacing:-0.925056pt;}
.wse_c03106{word-spacing:-0.865920pt;}
.ws16_c03106{word-spacing:-0.639744pt;}
.ws10_c03106{word-spacing:-0.105600pt;}
.ws13_c03106{word-spacing:-0.088704pt;}
.ws15_c03106{word-spacing:-0.076032pt;}
.wsf_c03106{word-spacing:0.000000pt;}
.ws14_c03106{word-spacing:0.029568pt;}
.ws17_c03106{word-spacing:0.354816pt;}
.ws11_c03106{word-spacing:0.405504pt;}
.wsd_c03106{word-spacing:4.401408pt;}
.wsb_c03106{word-spacing:29.600256pt;}
.ws3_c03106{word-spacing:33.563904pt;}
.ws4_c03106{word-spacing:34.860672pt;}
._0_c03106{margin-left:-1.731840pt;}
._2_c03106{width:1.317888pt;}
._6_c03106{width:2.994816pt;}
._5_c03106{width:11.776512pt;}
._7_c03106{width:14.196864pt;}
._4_c03106{width:15.438720pt;}
._1_c03106{width:44.668800pt;}
._3_c03106{width:45.805056pt;}
.fs0_c03106{font-size:42.240000pt;}
.fs1_c03106{font-size:53.760000pt;}
.y0_c03106{bottom:0.000000pt;}
.y18_c03106{bottom:16.000400pt;}
.y4_c03106{bottom:16.320400pt;}
.y22_c03106{bottom:58.560400pt;}
.ye_c03106{bottom:58.880400pt;}
.y25_c03106{bottom:130.666715pt;}
.y27_c03106{bottom:165.866875pt;}
.y26_c03106{bottom:174.507067pt;}
.y24_c03106{bottom:245.226875pt;}
.y21_c03106{bottom:258.666667pt;}
.y20_c03106{bottom:317.225659pt;}
.y23_c03106{bottom:317.227067pt;}
.y1e_c03106{bottom:361.386523pt;}
.y1a_c03106{bottom:377.387035pt;}
.y1f_c03106{bottom:407.786107pt;}
.y1d_c03106{bottom:437.226331pt;}
.y1c_c03106{bottom:453.226843pt;}
.y17_c03106{bottom:466.666667pt;}
.y16_c03106{bottom:482.666971pt;}
.y19_c03106{bottom:482.667067pt;}
.y1b_c03106{bottom:497.386651pt;}
.y15_c03106{bottom:513.387067pt;}
.y28_c03106{bottom:546.027067pt;}
.y11_c03106{bottom:593.386715pt;}
.y13_c03106{bottom:628.586875pt;}
.y12_c03106{bottom:637.227067pt;}
.y10_c03106{bottom:707.946875pt;}
.yd_c03106{bottom:721.066667pt;}
.yc_c03106{bottom:779.945659pt;}
.yf_c03106{bottom:779.947067pt;}
.ya_c03106{bottom:823.786555pt;}
.y6_c03106{bottom:839.787067pt;}
.yb_c03106{bottom:870.506107pt;}
.y9_c03106{bottom:899.946331pt;}
.y8_c03106{bottom:915.946843pt;}
.y3_c03106{bottom:929.066667pt;}
.y2_c03106{bottom:945.386939pt;}
.y5_c03106{bottom:945.387067pt;}
.y7_c03106{bottom:959.786683pt;}
.y1_c03106{bottom:975.787067pt;}
.y14_c03106{bottom:1008.747067pt;}
.h7_c03106{height:25.920000pt;}
.h3_c03106{height:26.240000pt;}
.h2_c03106{height:28.916250pt;}
.h1_c03106{height:37.063125pt;}
.h4_c03106{height:37.166250pt;}
.h6_c03106{height:48.581988pt;}
.h8_c03106{height:69.760000pt;}
.h5_c03106{height:70.080000pt;}
.h0_c03106{height:1122.666667pt;}
.w2_c03106{width:191.360000pt;}
.w1_c03106{width:793.333333pt;}
.w0_c03106{width:793.626667pt;}
.x0_c03106{left:0.000000pt;}
.x10_c03106{left:104.000000pt;}
.xa_c03106{left:392.000800pt;}
.x6_c03106{left:396.160384pt;}
.xe_c03106{left:400.960000pt;}
.x9_c03106{left:404.800576pt;}
.x7_c03106{left:410.560000pt;}
.x1_c03106{left:411.840000pt;}
.xd_c03106{left:429.760128pt;}
.xb_c03106{left:437.440480pt;}
.x8_c03106{left:438.400384pt;}
.xf_c03106{left:450.560320pt;}
.x5_c03106{left:455.039776pt;}
.x2_c03106{left:468.159648pt;}
.x3_c03106{left:506.240000pt;}
.x4_c03106{left:547.840000pt;}
.xc_c03106{left:589.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03107 {
    display:none;
  }
  .loading-indicator_c03107.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03107 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03107 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03107" -> "#page-container .classname_c03107")
 */
.pf_c03107 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03107 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03107.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03107 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03107 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03107 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03107 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03107 {overflow:visible;}
  }
}
.c_c03107 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03107 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03107:after { /* webkit #35443 */
  content: '';
}
.t_c03107:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03107 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03107 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03107 { /* info for Javascript */
  display:none;
}
.l_c03107 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03107 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03107 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03107:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03107 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03107.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03107.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03107 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03107{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03107;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03107{font-family:ff1_c03107;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03107;src:url('chunks/assets/font_aff8829d91a2bd28ff7bb514.woff2')format("woff");}.ff2_c03107{font-family:ff2_c03107;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03107;src:url('chunks/assets/font_9696af566228cf81dabefd17.woff2')format("woff");}.ff3_c03107{font-family:ff3_c03107;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03107{vertical-align:0.000000px;}
.v2_c03107{vertical-align:1.439424px;}
.v1_c03107{vertical-align:17.284320px;}
.v3_c03107{vertical-align:33.121440px;}
.lse_c03107{letter-spacing:-1.360800px;}
.ls17_c03107{letter-spacing:-0.836352px;}
.ls18_c03107{letter-spacing:-0.826848px;}
.ls9_c03107{letter-spacing:-0.817344px;}
.ls19_c03107{letter-spacing:-0.774576px;}
.ls1a_c03107{letter-spacing:-0.741312px;}
.ls10_c03107{letter-spacing:-0.720000px;}
.lsb_c03107{letter-spacing:-0.574992px;}
.ls1b_c03107{letter-spacing:-0.375408px;}
.ls13_c03107{letter-spacing:-0.275616px;}
.ls11_c03107{letter-spacing:-0.261360px;}
.ls8_c03107{letter-spacing:-0.242352px;}
.ls5_c03107{letter-spacing:-0.118800px;}
.ls16_c03107{letter-spacing:0.000000px;}
.ls2_c03107{letter-spacing:0.006048px;}
.ls7_c03107{letter-spacing:0.128304px;}
.lsd_c03107{letter-spacing:0.508464px;}
.ls15_c03107{letter-spacing:0.514080px;}
.ls12_c03107{letter-spacing:0.536976px;}
.ls0_c03107{letter-spacing:0.551232px;}
.lsc_c03107{letter-spacing:0.579744px;}
.ls14_c03107{letter-spacing:0.594000px;}
.lsa_c03107{letter-spacing:0.598752px;}
.ls3_c03107{letter-spacing:0.613008px;}
.ls1_c03107{letter-spacing:0.679536px;}
.ls4_c03107{letter-spacing:0.717552px;}
.ls6_c03107{letter-spacing:0.722304px;}
.lsf_c03107{letter-spacing:0.734400px;}
.sc__c03107{text-shadow:none;}
.sc0_c03107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03107{-webkit-text-stroke:0px transparent;}
.sc0_c03107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03107{word-spacing:-15.126048px;}
.wsc_c03107{word-spacing:-12.474000px;}
.ws7_c03107{word-spacing:-12.459744px;}
.ws1_c03107{word-spacing:-12.431232px;}
.wsb_c03107{word-spacing:-12.416976px;}
.ws12_c03107{word-spacing:-12.388464px;}
.ws0_c03107{word-spacing:-11.761200px;}
.ws5_c03107{word-spacing:-11.637648px;}
.ws6_c03107{word-spacing:-11.305008px;}
.ws11_c03107{word-spacing:-11.105424px;}
.ws2_c03107{word-spacing:-2.523312px;}
.ws1e_c03107{word-spacing:-1.083456px;}
.ws1c_c03107{word-spacing:-1.040688px;}
.ws17_c03107{word-spacing:-0.974160px;}
.ws20_c03107{word-spacing:-0.719712px;}
.wsa_c03107{word-spacing:-0.529200px;}
.ws19_c03107{word-spacing:-0.118800px;}
.ws1d_c03107{word-spacing:-0.099792px;}
.ws1f_c03107{word-spacing:-0.085536px;}
.ws18_c03107{word-spacing:0.000000px;}
.ws24_c03107{word-spacing:0.014256px;}
.ws1b_c03107{word-spacing:0.360000px;}
.ws23_c03107{word-spacing:0.380160px;}
.ws1a_c03107{word-spacing:0.456192px;}
.ws22_c03107{word-spacing:0.465696px;}
.ws21_c03107{word-spacing:0.475200px;}
.ws14_c03107{word-spacing:3.511728px;}
.ws15_c03107{word-spacing:7.341840px;}
.ws9_c03107{word-spacing:7.401600px;}
.ws16_c03107{word-spacing:30.298752px;}
.wsd_c03107{word-spacing:33.300288px;}
.ws13_c03107{word-spacing:34.836912px;}
.ws3_c03107{word-spacing:37.759392px;}
.wsf_c03107{word-spacing:38.020752px;}
.ws4_c03107{word-spacing:39.218256px;}
.ws10_c03107{word-spacing:39.902544px;}
.ws8_c03107{word-spacing:42.022368px;}
._0_c03107{margin-left:-1.948320px;}
._2_c03107{width:1.482624px;}
._6_c03107{width:3.307392px;}
._a_c03107{width:5.745168px;}
._7_c03107{width:10.633968px;}
._8_c03107{width:11.964960px;}
._5_c03107{width:13.248576px;}
._4_c03107{width:17.368560px;}
._c_c03107{width:18.841680px;}
._d_c03107{width:20.466864px;}
._9_c03107{width:21.773664px;}
._e_c03107{width:22.828608px;}
._b_c03107{width:24.016608px;}
._1_c03107{width:50.252400px;}
._3_c03107{width:51.530688px;}
.fc0_c03107{color:rgb(0,0,0);}
.fs1_c03107{font-size:36.000000px;}
.fs0_c03107{font-size:47.520000px;}
.fs2_c03107{font-size:60.480000px;}
.y0_c03107{bottom:0.000000px;}
.y4_c03107{bottom:18.360450px;}
.y10_c03107{bottom:66.240450px;}
.y22_c03107{bottom:116.759010px;}
.y21_c03107{bottom:131.878686px;}
.y20_c03107{bottom:146.998362px;}
.y24_c03107{bottom:186.600234px;}
.y23_c03107{bottom:196.320450px;}
.y1f_c03107{bottom:275.878542px;}
.y1e_c03107{bottom:356.878758px;}
.y1c_c03107{bottom:406.559730px;}
.y18_c03107{bottom:424.560306px;}
.y1d_c03107{bottom:458.759262px;}
.y1b_c03107{bottom:491.879514px;}
.y1a_c03107{bottom:509.880090px;}
.y17_c03107{bottom:543.000342px;}
.y19_c03107{bottom:559.559874px;}
.y16_c03107{bottom:577.560450px;}
.y25_c03107{bottom:614.280450px;}
.y12_c03107{bottom:667.560054px;}
.y14_c03107{bottom:707.160234px;}
.y13_c03107{bottom:716.880450px;}
.y11_c03107{bottom:796.440234px;}
.yf_c03107{bottom:811.200000px;}
.ye_c03107{bottom:877.440450px;}
.ya_c03107{bottom:926.759874px;}
.y6_c03107{bottom:944.760450px;}
.yd_c03107{bottom:965.640450px;}
.yc_c03107{bottom:974.640450px;}
.yb_c03107{bottom:979.319370px;}
.y9_c03107{bottom:1012.439622px;}
.y8_c03107{bottom:1030.440198px;}
.y3_c03107{bottom:1045.200000px;}
.y2_c03107{bottom:1063.560306px;}
.y5_c03107{bottom:1063.560450px;}
.y7_c03107{bottom:1079.760018px;}
.y1_c03107{bottom:1097.760450px;}
.y15_c03107{bottom:1134.840450px;}
.h3_c03107{height:29.520000px;}
.h6_c03107{height:31.587891px;}
.h2_c03107{height:32.530781px;}
.h1_c03107{height:41.696016px;}
.h4_c03107{height:41.812031px;}
.h5_c03107{height:48.872211px;}
.h8_c03107{height:54.654737px;}
.h9_c03107{height:74.817456px;}
.h7_c03107{height:78.840000px;}
.h0_c03107{height:1263.000000px;}
.w2_c03107{width:215.280000px;}
.w1_c03107{width:892.500000px;}
.w0_c03107{width:892.830000px;}
.x0_c03107{left:0.000000px;}
.x10_c03107{left:117.000000px;}
.xa_c03107{left:441.000900px;}
.x6_c03107{left:445.680432px;}
.xe_c03107{left:451.080000px;}
.x9_c03107{left:455.400648px;}
.x7_c03107{left:461.880000px;}
.x1_c03107{left:463.320000px;}
.xd_c03107{left:483.480144px;}
.xb_c03107{left:492.120000px;}
.x8_c03107{left:493.200432px;}
.xf_c03107{left:506.880360px;}
.x5_c03107{left:511.919748px;}
.x2_c03107{left:526.679604px;}
.x3_c03107{left:569.520000px;}
.x4_c03107{left:616.320000px;}
.xc_c03107{left:663.120000px;}
@media print{
.v0_c03107{vertical-align:0.000000pt;}
.v2_c03107{vertical-align:1.279488pt;}
.v1_c03107{vertical-align:15.363840pt;}
.v3_c03107{vertical-align:29.441280pt;}
.lse_c03107{letter-spacing:-1.209600pt;}
.ls17_c03107{letter-spacing:-0.743424pt;}
.ls18_c03107{letter-spacing:-0.734976pt;}
.ls9_c03107{letter-spacing:-0.726528pt;}
.ls19_c03107{letter-spacing:-0.688512pt;}
.ls1a_c03107{letter-spacing:-0.658944pt;}
.ls10_c03107{letter-spacing:-0.640000pt;}
.lsb_c03107{letter-spacing:-0.511104pt;}
.ls1b_c03107{letter-spacing:-0.333696pt;}
.ls13_c03107{letter-spacing:-0.244992pt;}
.ls11_c03107{letter-spacing:-0.232320pt;}
.ls8_c03107{letter-spacing:-0.215424pt;}
.ls5_c03107{letter-spacing:-0.105600pt;}
.ls16_c03107{letter-spacing:0.000000pt;}
.ls2_c03107{letter-spacing:0.005376pt;}
.ls7_c03107{letter-spacing:0.114048pt;}
.lsd_c03107{letter-spacing:0.451968pt;}
.ls15_c03107{letter-spacing:0.456960pt;}
.ls12_c03107{letter-spacing:0.477312pt;}
.ls0_c03107{letter-spacing:0.489984pt;}
.lsc_c03107{letter-spacing:0.515328pt;}
.ls14_c03107{letter-spacing:0.528000pt;}
.lsa_c03107{letter-spacing:0.532224pt;}
.ls3_c03107{letter-spacing:0.544896pt;}
.ls1_c03107{letter-spacing:0.604032pt;}
.ls4_c03107{letter-spacing:0.637824pt;}
.ls6_c03107{letter-spacing:0.642048pt;}
.lsf_c03107{letter-spacing:0.652800pt;}
.wse_c03107{word-spacing:-13.445376pt;}
.wsc_c03107{word-spacing:-11.088000pt;}
.ws7_c03107{word-spacing:-11.075328pt;}
.ws1_c03107{word-spacing:-11.049984pt;}
.wsb_c03107{word-spacing:-11.037312pt;}
.ws12_c03107{word-spacing:-11.011968pt;}
.ws0_c03107{word-spacing:-10.454400pt;}
.ws5_c03107{word-spacing:-10.344576pt;}
.ws6_c03107{word-spacing:-10.048896pt;}
.ws11_c03107{word-spacing:-9.871488pt;}
.ws2_c03107{word-spacing:-2.242944pt;}
.ws1e_c03107{word-spacing:-0.963072pt;}
.ws1c_c03107{word-spacing:-0.925056pt;}
.ws17_c03107{word-spacing:-0.865920pt;}
.ws20_c03107{word-spacing:-0.639744pt;}
.wsa_c03107{word-spacing:-0.470400pt;}
.ws19_c03107{word-spacing:-0.105600pt;}
.ws1d_c03107{word-spacing:-0.088704pt;}
.ws1f_c03107{word-spacing:-0.076032pt;}
.ws18_c03107{word-spacing:0.000000pt;}
.ws24_c03107{word-spacing:0.012672pt;}
.ws1b_c03107{word-spacing:0.320000pt;}
.ws23_c03107{word-spacing:0.337920pt;}
.ws1a_c03107{word-spacing:0.405504pt;}
.ws22_c03107{word-spacing:0.413952pt;}
.ws21_c03107{word-spacing:0.422400pt;}
.ws14_c03107{word-spacing:3.121536pt;}
.ws15_c03107{word-spacing:6.526080pt;}
.ws9_c03107{word-spacing:6.579200pt;}
.ws16_c03107{word-spacing:26.932224pt;}
.wsd_c03107{word-spacing:29.600256pt;}
.ws13_c03107{word-spacing:30.966144pt;}
.ws3_c03107{word-spacing:33.563904pt;}
.wsf_c03107{word-spacing:33.796224pt;}
.ws4_c03107{word-spacing:34.860672pt;}
.ws10_c03107{word-spacing:35.468928pt;}
.ws8_c03107{word-spacing:37.353216pt;}
._0_c03107{margin-left:-1.731840pt;}
._2_c03107{width:1.317888pt;}
._6_c03107{width:2.939904pt;}
._a_c03107{width:5.106816pt;}
._7_c03107{width:9.452416pt;}
._8_c03107{width:10.635520pt;}
._5_c03107{width:11.776512pt;}
._4_c03107{width:15.438720pt;}
._c_c03107{width:16.748160pt;}
._d_c03107{width:18.192768pt;}
._9_c03107{width:19.354368pt;}
._e_c03107{width:20.292096pt;}
._b_c03107{width:21.348096pt;}
._1_c03107{width:44.668800pt;}
._3_c03107{width:45.805056pt;}
.fs1_c03107{font-size:32.000000pt;}
.fs0_c03107{font-size:42.240000pt;}
.fs2_c03107{font-size:53.760000pt;}
.y0_c03107{bottom:0.000000pt;}
.y4_c03107{bottom:16.320400pt;}
.y10_c03107{bottom:58.880400pt;}
.y22_c03107{bottom:103.785787pt;}
.y21_c03107{bottom:117.225499pt;}
.y20_c03107{bottom:130.665211pt;}
.y24_c03107{bottom:165.866875pt;}
.y23_c03107{bottom:174.507067pt;}
.y1f_c03107{bottom:245.225371pt;}
.y1e_c03107{bottom:317.225563pt;}
.y1c_c03107{bottom:361.386427pt;}
.y18_c03107{bottom:377.386939pt;}
.y1d_c03107{bottom:407.786011pt;}
.y1b_c03107{bottom:437.226235pt;}
.y1a_c03107{bottom:453.226747pt;}
.y17_c03107{bottom:482.666971pt;}
.y19_c03107{bottom:497.386555pt;}
.y16_c03107{bottom:513.387067pt;}
.y25_c03107{bottom:546.027067pt;}
.y12_c03107{bottom:593.386715pt;}
.y14_c03107{bottom:628.586875pt;}
.y13_c03107{bottom:637.227067pt;}
.y11_c03107{bottom:707.946875pt;}
.yf_c03107{bottom:721.066667pt;}
.ye_c03107{bottom:779.947067pt;}
.ya_c03107{bottom:823.786555pt;}
.y6_c03107{bottom:839.787067pt;}
.yd_c03107{bottom:858.347067pt;}
.yc_c03107{bottom:866.347067pt;}
.yb_c03107{bottom:870.506107pt;}
.y9_c03107{bottom:899.946331pt;}
.y8_c03107{bottom:915.946843pt;}
.y3_c03107{bottom:929.066667pt;}
.y2_c03107{bottom:945.386939pt;}
.y5_c03107{bottom:945.387067pt;}
.y7_c03107{bottom:959.786683pt;}
.y1_c03107{bottom:975.787067pt;}
.y15_c03107{bottom:1008.747067pt;}
.h3_c03107{height:26.240000pt;}
.h6_c03107{height:28.078125pt;}
.h2_c03107{height:28.916250pt;}
.h1_c03107{height:37.063125pt;}
.h4_c03107{height:37.166250pt;}
.h5_c03107{height:43.441965pt;}
.h8_c03107{height:48.581988pt;}
.h9_c03107{height:66.504405pt;}
.h7_c03107{height:70.080000pt;}
.h0_c03107{height:1122.666667pt;}
.w2_c03107{width:191.360000pt;}
.w1_c03107{width:793.333333pt;}
.w0_c03107{width:793.626667pt;}
.x0_c03107{left:0.000000pt;}
.x10_c03107{left:104.000000pt;}
.xa_c03107{left:392.000800pt;}
.x6_c03107{left:396.160384pt;}
.xe_c03107{left:400.960000pt;}
.x9_c03107{left:404.800576pt;}
.x7_c03107{left:410.560000pt;}
.x1_c03107{left:411.840000pt;}
.xd_c03107{left:429.760128pt;}
.xb_c03107{left:437.440000pt;}
.x8_c03107{left:438.400384pt;}
.xf_c03107{left:450.560320pt;}
.x5_c03107{left:455.039776pt;}
.x2_c03107{left:468.159648pt;}
.x3_c03107{left:506.240000pt;}
.x4_c03107{left:547.840000pt;}
.xc_c03107{left:589.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03108 {
    display:none;
  }
  .loading-indicator_c03108.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03108 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03108 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03108" -> "#page-container .classname_c03108")
 */
.pf_c03108 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03108 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03108.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03108 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03108 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03108 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03108 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03108 {overflow:visible;}
  }
}
.c_c03108 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03108 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03108:after { /* webkit #35443 */
  content: '';
}
.t_c03108:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03108 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03108 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03108 { /* info for Javascript */
  display:none;
}
.l_c03108 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03108 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03108 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03108:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03108 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03108.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03108.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03108 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03108{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03108;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03108{font-family:ff1_c03108;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03108;src:url('chunks/assets/font_9e484ae63a16a4fa26ccef05.woff2')format("woff");}.ff2_c03108{font-family:ff2_c03108;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03108;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03108{font-family:ff3_c03108;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03108{vertical-align:0.000000px;}
.v1_c03108{vertical-align:1.439424px;}
.ls6_c03108{letter-spacing:-0.613008px;}
.ls8_c03108{letter-spacing:-0.574992px;}
.lse_c03108{letter-spacing:-0.275616px;}
.lsc_c03108{letter-spacing:-0.261360px;}
.ls5_c03108{letter-spacing:-0.242352px;}
.ls3_c03108{letter-spacing:-0.118800px;}
.ls11_c03108{letter-spacing:0.000000px;}
.ls1_c03108{letter-spacing:0.006048px;}
.ls4_c03108{letter-spacing:0.128304px;}
.lsa_c03108{letter-spacing:0.508464px;}
.ls10_c03108{letter-spacing:0.514080px;}
.lsd_c03108{letter-spacing:0.536976px;}
.ls9_c03108{letter-spacing:0.579744px;}
.lsf_c03108{letter-spacing:0.594000px;}
.ls7_c03108{letter-spacing:0.598752px;}
.ls2_c03108{letter-spacing:0.613008px;}
.ls0_c03108{letter-spacing:0.717552px;}
.lsb_c03108{letter-spacing:0.722304px;}
.sc__c03108{text-shadow:none;}
.sc0_c03108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03108{-webkit-text-stroke:0px transparent;}
.sc0_c03108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03108{word-spacing:-15.126048px;}
.wsa_c03108{word-spacing:-12.474000px;}
.ws8_c03108{word-spacing:-12.459744px;}
.ws9_c03108{word-spacing:-12.416976px;}
.ws4_c03108{word-spacing:-11.637648px;}
.ws2_c03108{word-spacing:-11.266992px;}
.ws11_c03108{word-spacing:-1.083456px;}
.ws10_c03108{word-spacing:-1.078704px;}
.wsd_c03108{word-spacing:-0.974160px;}
.ws14_c03108{word-spacing:-0.719712px;}
.wsf_c03108{word-spacing:-0.118800px;}
.ws12_c03108{word-spacing:-0.099792px;}
.ws13_c03108{word-spacing:-0.085536px;}
.wse_c03108{word-spacing:0.000000px;}
.wsb_c03108{word-spacing:33.300288px;}
.ws6_c03108{word-spacing:36.742464px;}
.ws1_c03108{word-spacing:37.759392px;}
.ws0_c03108{word-spacing:38.020752px;}
.ws3_c03108{word-spacing:39.218256px;}
.ws5_c03108{word-spacing:39.902544px;}
.ws7_c03108{word-spacing:42.026688px;}
._0_c03108{margin-left:-1.948320px;}
._2_c03108{width:1.482624px;}
._4_c03108{width:3.302640px;}
._1_c03108{width:50.252400px;}
._3_c03108{width:51.530688px;}
.fc0_c03108{color:rgb(0,0,0);}
.fs0_c03108{font-size:47.520000px;}
.fs1_c03108{font-size:60.480000px;}
.y0_c03108{bottom:0.000000px;}
.y19_c03108{bottom:146.998362px;}
.y1b_c03108{bottom:186.600234px;}
.y1a_c03108{bottom:196.320450px;}
.y18_c03108{bottom:275.878542px;}
.y17_c03108{bottom:356.878758px;}
.y15_c03108{bottom:406.559730px;}
.y11_c03108{bottom:424.560306px;}
.y16_c03108{bottom:458.759262px;}
.y14_c03108{bottom:491.879514px;}
.y13_c03108{bottom:509.880090px;}
.y10_c03108{bottom:543.000342px;}
.y12_c03108{bottom:559.559874px;}
.yf_c03108{bottom:577.560450px;}
.y1c_c03108{bottom:614.280450px;}
.yb_c03108{bottom:667.558326px;}
.yd_c03108{bottom:707.160234px;}
.yc_c03108{bottom:716.880450px;}
.ya_c03108{bottom:796.438506px;}
.y9_c03108{bottom:877.438722px;}
.y7_c03108{bottom:926.759730px;}
.y3_c03108{bottom:944.760306px;}
.y8_c03108{bottom:979.319226px;}
.y6_c03108{bottom:1012.439478px;}
.y5_c03108{bottom:1030.440054px;}
.y2_c03108{bottom:1063.560306px;}
.y4_c03108{bottom:1079.759874px;}
.y1_c03108{bottom:1097.760450px;}
.ye_c03108{bottom:1134.840450px;}
.h3_c03108{height:32.530781px;}
.h1_c03108{height:41.696016px;}
.h2_c03108{height:41.812031px;}
.h4_c03108{height:54.654737px;}
.h0_c03108{height:1263.000000px;}
.w1_c03108{width:892.500000px;}
.w0_c03108{width:892.830000px;}
.x0_c03108{left:0.000000px;}
.xd_c03108{left:117.000000px;}
.x8_c03108{left:440.999856px;}
.x4_c03108{left:445.680576px;}
.xb_c03108{left:451.080000px;}
.x7_c03108{left:455.399604px;}
.x5_c03108{left:461.880144px;}
.x1_c03108{left:463.320000px;}
.xa_c03108{left:483.480360px;}
.x9_c03108{left:492.119496px;}
.x6_c03108{left:493.200576px;}
.xc_c03108{left:506.880360px;}
.x3_c03108{left:511.919892px;}
.x2_c03108{left:526.679604px;}
@media print{
.v0_c03108{vertical-align:0.000000pt;}
.v1_c03108{vertical-align:1.279488pt;}
.ls6_c03108{letter-spacing:-0.544896pt;}
.ls8_c03108{letter-spacing:-0.511104pt;}
.lse_c03108{letter-spacing:-0.244992pt;}
.lsc_c03108{letter-spacing:-0.232320pt;}
.ls5_c03108{letter-spacing:-0.215424pt;}
.ls3_c03108{letter-spacing:-0.105600pt;}
.ls11_c03108{letter-spacing:0.000000pt;}
.ls1_c03108{letter-spacing:0.005376pt;}
.ls4_c03108{letter-spacing:0.114048pt;}
.lsa_c03108{letter-spacing:0.451968pt;}
.ls10_c03108{letter-spacing:0.456960pt;}
.lsd_c03108{letter-spacing:0.477312pt;}
.ls9_c03108{letter-spacing:0.515328pt;}
.lsf_c03108{letter-spacing:0.528000pt;}
.ls7_c03108{letter-spacing:0.532224pt;}
.ls2_c03108{letter-spacing:0.544896pt;}
.ls0_c03108{letter-spacing:0.637824pt;}
.lsb_c03108{letter-spacing:0.642048pt;}
.wsc_c03108{word-spacing:-13.445376pt;}
.wsa_c03108{word-spacing:-11.088000pt;}
.ws8_c03108{word-spacing:-11.075328pt;}
.ws9_c03108{word-spacing:-11.037312pt;}
.ws4_c03108{word-spacing:-10.344576pt;}
.ws2_c03108{word-spacing:-10.015104pt;}
.ws11_c03108{word-spacing:-0.963072pt;}
.ws10_c03108{word-spacing:-0.958848pt;}
.wsd_c03108{word-spacing:-0.865920pt;}
.ws14_c03108{word-spacing:-0.639744pt;}
.wsf_c03108{word-spacing:-0.105600pt;}
.ws12_c03108{word-spacing:-0.088704pt;}
.ws13_c03108{word-spacing:-0.076032pt;}
.wse_c03108{word-spacing:0.000000pt;}
.wsb_c03108{word-spacing:29.600256pt;}
.ws6_c03108{word-spacing:32.659968pt;}
.ws1_c03108{word-spacing:33.563904pt;}
.ws0_c03108{word-spacing:33.796224pt;}
.ws3_c03108{word-spacing:34.860672pt;}
.ws5_c03108{word-spacing:35.468928pt;}
.ws7_c03108{word-spacing:37.357056pt;}
._0_c03108{margin-left:-1.731840pt;}
._2_c03108{width:1.317888pt;}
._4_c03108{width:2.935680pt;}
._1_c03108{width:44.668800pt;}
._3_c03108{width:45.805056pt;}
.fs0_c03108{font-size:42.240000pt;}
.fs1_c03108{font-size:53.760000pt;}
.y0_c03108{bottom:0.000000pt;}
.y19_c03108{bottom:130.665211pt;}
.y1b_c03108{bottom:165.866875pt;}
.y1a_c03108{bottom:174.507067pt;}
.y18_c03108{bottom:245.225371pt;}
.y17_c03108{bottom:317.225563pt;}
.y15_c03108{bottom:361.386427pt;}
.y11_c03108{bottom:377.386939pt;}
.y16_c03108{bottom:407.786011pt;}
.y14_c03108{bottom:437.226235pt;}
.y13_c03108{bottom:453.226747pt;}
.y10_c03108{bottom:482.666971pt;}
.y12_c03108{bottom:497.386555pt;}
.yf_c03108{bottom:513.387067pt;}
.y1c_c03108{bottom:546.027067pt;}
.yb_c03108{bottom:593.385179pt;}
.yd_c03108{bottom:628.586875pt;}
.yc_c03108{bottom:637.227067pt;}
.ya_c03108{bottom:707.945339pt;}
.y9_c03108{bottom:779.945531pt;}
.y7_c03108{bottom:823.786427pt;}
.y3_c03108{bottom:839.786939pt;}
.y8_c03108{bottom:870.505979pt;}
.y6_c03108{bottom:899.946203pt;}
.y5_c03108{bottom:915.946715pt;}
.y2_c03108{bottom:945.386939pt;}
.y4_c03108{bottom:959.786555pt;}
.y1_c03108{bottom:975.787067pt;}
.ye_c03108{bottom:1008.747067pt;}
.h3_c03108{height:28.916250pt;}
.h1_c03108{height:37.063125pt;}
.h2_c03108{height:37.166250pt;}
.h4_c03108{height:48.581988pt;}
.h0_c03108{height:1122.666667pt;}
.w1_c03108{width:793.333333pt;}
.w0_c03108{width:793.626667pt;}
.x0_c03108{left:0.000000pt;}
.xd_c03108{left:104.000000pt;}
.x8_c03108{left:391.999872pt;}
.x4_c03108{left:396.160512pt;}
.xb_c03108{left:400.960000pt;}
.x7_c03108{left:404.799648pt;}
.x5_c03108{left:410.560128pt;}
.x1_c03108{left:411.840000pt;}
.xa_c03108{left:429.760320pt;}
.x9_c03108{left:437.439552pt;}
.x6_c03108{left:438.400512pt;}
.xc_c03108{left:450.560320pt;}
.x3_c03108{left:455.039904pt;}
.x2_c03108{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03109 {
    display:none;
  }
  .loading-indicator_c03109.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03109 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03109 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03109" -> "#page-container .classname_c03109")
 */
.pf_c03109 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03109 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03109.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03109 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03109 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03109 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03109 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03109 {overflow:visible;}
  }
}
.c_c03109 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03109 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03109:after { /* webkit #35443 */
  content: '';
}
.t_c03109:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03109 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03109 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03109 { /* info for Javascript */
  display:none;
}
.l_c03109 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03109 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03109 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03109:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03109 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03109.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03109.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03109 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03109{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03109;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03109{font-family:ff1_c03109;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03109;src:url('chunks/assets/font_19507324c1f9fd2421e82598.woff2')format("woff");}.ff2_c03109{font-family:ff2_c03109;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03109;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03109{font-family:ff3_c03109;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03109{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03109{vertical-align:0.000000px;}
.v1_c03109{vertical-align:1.439424px;}
.ls6_c03109{letter-spacing:-0.613008px;}
.ls8_c03109{letter-spacing:-0.574992px;}
.lse_c03109{letter-spacing:-0.275616px;}
.lsc_c03109{letter-spacing:-0.261360px;}
.ls5_c03109{letter-spacing:-0.242352px;}
.ls3_c03109{letter-spacing:-0.118800px;}
.ls11_c03109{letter-spacing:0.000000px;}
.ls1_c03109{letter-spacing:0.006048px;}
.ls4_c03109{letter-spacing:0.128304px;}
.lsa_c03109{letter-spacing:0.508464px;}
.ls10_c03109{letter-spacing:0.514080px;}
.lsd_c03109{letter-spacing:0.536976px;}
.ls9_c03109{letter-spacing:0.579744px;}
.lsf_c03109{letter-spacing:0.594000px;}
.ls7_c03109{letter-spacing:0.598752px;}
.ls2_c03109{letter-spacing:0.613008px;}
.ls0_c03109{letter-spacing:0.717552px;}
.lsb_c03109{letter-spacing:0.722304px;}
.sc__c03109{text-shadow:none;}
.sc0_c03109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03109{-webkit-text-stroke:0px transparent;}
.sc0_c03109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03109{word-spacing:-15.126048px;}
.wsa_c03109{word-spacing:-12.474000px;}
.ws8_c03109{word-spacing:-12.459744px;}
.ws9_c03109{word-spacing:-12.416976px;}
.ws4_c03109{word-spacing:-11.637648px;}
.ws2_c03109{word-spacing:-11.266992px;}
.ws11_c03109{word-spacing:-1.083456px;}
.ws10_c03109{word-spacing:-1.078704px;}
.wsd_c03109{word-spacing:-0.974160px;}
.ws14_c03109{word-spacing:-0.719712px;}
.wsf_c03109{word-spacing:-0.118800px;}
.ws12_c03109{word-spacing:-0.099792px;}
.ws13_c03109{word-spacing:-0.085536px;}
.wse_c03109{word-spacing:0.000000px;}
.wsb_c03109{word-spacing:33.300288px;}
.ws6_c03109{word-spacing:36.742464px;}
.ws1_c03109{word-spacing:37.759392px;}
.ws0_c03109{word-spacing:38.020752px;}
.ws3_c03109{word-spacing:39.218256px;}
.ws5_c03109{word-spacing:39.902544px;}
.ws7_c03109{word-spacing:42.026688px;}
._0_c03109{margin-left:-1.948320px;}
._2_c03109{width:1.482624px;}
._4_c03109{width:3.302640px;}
._1_c03109{width:50.252400px;}
._3_c03109{width:51.530688px;}
.fc0_c03109{color:rgb(0,0,0);}
.fs0_c03109{font-size:47.520000px;}
.fs1_c03109{font-size:60.480000px;}
.y0_c03109{bottom:0.000000px;}
.y19_c03109{bottom:146.998362px;}
.y1b_c03109{bottom:186.600234px;}
.y1a_c03109{bottom:196.320450px;}
.y18_c03109{bottom:275.878542px;}
.y17_c03109{bottom:356.878758px;}
.y15_c03109{bottom:406.559730px;}
.y11_c03109{bottom:424.560306px;}
.y16_c03109{bottom:458.759262px;}
.y14_c03109{bottom:491.879514px;}
.y13_c03109{bottom:509.880090px;}
.y10_c03109{bottom:543.000342px;}
.y12_c03109{bottom:559.559874px;}
.yf_c03109{bottom:577.560450px;}
.y1c_c03109{bottom:614.280450px;}
.yb_c03109{bottom:667.558326px;}
.yd_c03109{bottom:707.160234px;}
.yc_c03109{bottom:716.880450px;}
.ya_c03109{bottom:796.438506px;}
.y9_c03109{bottom:877.438722px;}
.y7_c03109{bottom:926.759730px;}
.y3_c03109{bottom:944.760306px;}
.y8_c03109{bottom:979.319226px;}
.y6_c03109{bottom:1012.439478px;}
.y5_c03109{bottom:1030.440054px;}
.y2_c03109{bottom:1063.560306px;}
.y4_c03109{bottom:1079.759874px;}
.y1_c03109{bottom:1097.760450px;}
.ye_c03109{bottom:1134.840450px;}
.h3_c03109{height:32.530781px;}
.h1_c03109{height:41.696016px;}
.h2_c03109{height:41.812031px;}
.h4_c03109{height:54.654737px;}
.h0_c03109{height:1263.000000px;}
.w1_c03109{width:892.500000px;}
.w0_c03109{width:892.830000px;}
.x0_c03109{left:0.000000px;}
.xd_c03109{left:117.000000px;}
.x8_c03109{left:440.999856px;}
.x4_c03109{left:445.680576px;}
.xb_c03109{left:451.080000px;}
.x7_c03109{left:455.399604px;}
.x5_c03109{left:461.880144px;}
.x1_c03109{left:463.320000px;}
.xa_c03109{left:483.480360px;}
.x9_c03109{left:492.119496px;}
.x6_c03109{left:493.200576px;}
.xc_c03109{left:506.880360px;}
.x3_c03109{left:511.919892px;}
.x2_c03109{left:526.679604px;}
@media print{
.v0_c03109{vertical-align:0.000000pt;}
.v1_c03109{vertical-align:1.279488pt;}
.ls6_c03109{letter-spacing:-0.544896pt;}
.ls8_c03109{letter-spacing:-0.511104pt;}
.lse_c03109{letter-spacing:-0.244992pt;}
.lsc_c03109{letter-spacing:-0.232320pt;}
.ls5_c03109{letter-spacing:-0.215424pt;}
.ls3_c03109{letter-spacing:-0.105600pt;}
.ls11_c03109{letter-spacing:0.000000pt;}
.ls1_c03109{letter-spacing:0.005376pt;}
.ls4_c03109{letter-spacing:0.114048pt;}
.lsa_c03109{letter-spacing:0.451968pt;}
.ls10_c03109{letter-spacing:0.456960pt;}
.lsd_c03109{letter-spacing:0.477312pt;}
.ls9_c03109{letter-spacing:0.515328pt;}
.lsf_c03109{letter-spacing:0.528000pt;}
.ls7_c03109{letter-spacing:0.532224pt;}
.ls2_c03109{letter-spacing:0.544896pt;}
.ls0_c03109{letter-spacing:0.637824pt;}
.lsb_c03109{letter-spacing:0.642048pt;}
.wsc_c03109{word-spacing:-13.445376pt;}
.wsa_c03109{word-spacing:-11.088000pt;}
.ws8_c03109{word-spacing:-11.075328pt;}
.ws9_c03109{word-spacing:-11.037312pt;}
.ws4_c03109{word-spacing:-10.344576pt;}
.ws2_c03109{word-spacing:-10.015104pt;}
.ws11_c03109{word-spacing:-0.963072pt;}
.ws10_c03109{word-spacing:-0.958848pt;}
.wsd_c03109{word-spacing:-0.865920pt;}
.ws14_c03109{word-spacing:-0.639744pt;}
.wsf_c03109{word-spacing:-0.105600pt;}
.ws12_c03109{word-spacing:-0.088704pt;}
.ws13_c03109{word-spacing:-0.076032pt;}
.wse_c03109{word-spacing:0.000000pt;}
.wsb_c03109{word-spacing:29.600256pt;}
.ws6_c03109{word-spacing:32.659968pt;}
.ws1_c03109{word-spacing:33.563904pt;}
.ws0_c03109{word-spacing:33.796224pt;}
.ws3_c03109{word-spacing:34.860672pt;}
.ws5_c03109{word-spacing:35.468928pt;}
.ws7_c03109{word-spacing:37.357056pt;}
._0_c03109{margin-left:-1.731840pt;}
._2_c03109{width:1.317888pt;}
._4_c03109{width:2.935680pt;}
._1_c03109{width:44.668800pt;}
._3_c03109{width:45.805056pt;}
.fs0_c03109{font-size:42.240000pt;}
.fs1_c03109{font-size:53.760000pt;}
.y0_c03109{bottom:0.000000pt;}
.y19_c03109{bottom:130.665211pt;}
.y1b_c03109{bottom:165.866875pt;}
.y1a_c03109{bottom:174.507067pt;}
.y18_c03109{bottom:245.225371pt;}
.y17_c03109{bottom:317.225563pt;}
.y15_c03109{bottom:361.386427pt;}
.y11_c03109{bottom:377.386939pt;}
.y16_c03109{bottom:407.786011pt;}
.y14_c03109{bottom:437.226235pt;}
.y13_c03109{bottom:453.226747pt;}
.y10_c03109{bottom:482.666971pt;}
.y12_c03109{bottom:497.386555pt;}
.yf_c03109{bottom:513.387067pt;}
.y1c_c03109{bottom:546.027067pt;}
.yb_c03109{bottom:593.385179pt;}
.yd_c03109{bottom:628.586875pt;}
.yc_c03109{bottom:637.227067pt;}
.ya_c03109{bottom:707.945339pt;}
.y9_c03109{bottom:779.945531pt;}
.y7_c03109{bottom:823.786427pt;}
.y3_c03109{bottom:839.786939pt;}
.y8_c03109{bottom:870.505979pt;}
.y6_c03109{bottom:899.946203pt;}
.y5_c03109{bottom:915.946715pt;}
.y2_c03109{bottom:945.386939pt;}
.y4_c03109{bottom:959.786555pt;}
.y1_c03109{bottom:975.787067pt;}
.ye_c03109{bottom:1008.747067pt;}
.h3_c03109{height:28.916250pt;}
.h1_c03109{height:37.063125pt;}
.h2_c03109{height:37.166250pt;}
.h4_c03109{height:48.581988pt;}
.h0_c03109{height:1122.666667pt;}
.w1_c03109{width:793.333333pt;}
.w0_c03109{width:793.626667pt;}
.x0_c03109{left:0.000000pt;}
.xd_c03109{left:104.000000pt;}
.x8_c03109{left:391.999872pt;}
.x4_c03109{left:396.160512pt;}
.xb_c03109{left:400.960000pt;}
.x7_c03109{left:404.799648pt;}
.x5_c03109{left:410.560128pt;}
.x1_c03109{left:411.840000pt;}
.xa_c03109{left:429.760320pt;}
.x9_c03109{left:437.439552pt;}
.x6_c03109{left:438.400512pt;}
.xc_c03109{left:450.560320pt;}
.x3_c03109{left:455.039904pt;}
.x2_c03109{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03110 {
    display:none;
  }
  .loading-indicator_c03110.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03110 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03110 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03110" -> "#page-container .classname_c03110")
 */
.pf_c03110 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03110 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03110.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03110 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03110 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03110 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03110 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03110 {overflow:visible;}
  }
}
.c_c03110 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03110 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03110:after { /* webkit #35443 */
  content: '';
}
.t_c03110:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03110 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03110 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03110 { /* info for Javascript */
  display:none;
}
.l_c03110 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03110 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03110 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03110:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03110 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03110.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03110.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03110 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03110{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03110;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03110{font-family:ff1_c03110;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03110;src:url('chunks/assets/font_0e055c7ec8ffb1d7706d7c9d.woff2')format("woff");}.ff2_c03110{font-family:ff2_c03110;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03110;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03110{font-family:ff3_c03110;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03110{vertical-align:0.000000px;}
.v1_c03110{vertical-align:1.439424px;}
.lsc_c03110{letter-spacing:-0.684288px;}
.ls6_c03110{letter-spacing:-0.613008px;}
.ls8_c03110{letter-spacing:-0.574992px;}
.lse_c03110{letter-spacing:-0.394416px;}
.ls10_c03110{letter-spacing:-0.275616px;}
.lsd_c03110{letter-spacing:-0.261360px;}
.ls5_c03110{letter-spacing:-0.242352px;}
.ls3_c03110{letter-spacing:-0.118800px;}
.ls13_c03110{letter-spacing:0.000000px;}
.ls1_c03110{letter-spacing:0.006048px;}
.ls4_c03110{letter-spacing:0.128304px;}
.lsa_c03110{letter-spacing:0.508464px;}
.ls12_c03110{letter-spacing:0.514080px;}
.lsf_c03110{letter-spacing:0.536976px;}
.ls9_c03110{letter-spacing:0.579744px;}
.ls11_c03110{letter-spacing:0.594000px;}
.ls7_c03110{letter-spacing:0.598752px;}
.ls2_c03110{letter-spacing:0.613008px;}
.ls0_c03110{letter-spacing:0.717552px;}
.lsb_c03110{letter-spacing:0.722304px;}
.sc__c03110{text-shadow:none;}
.sc0_c03110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03110{-webkit-text-stroke:0px transparent;}
.sc0_c03110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03110{word-spacing:-15.126048px;}
.wsa_c03110{word-spacing:-12.474000px;}
.wsd_c03110{word-spacing:-12.459744px;}
.ws9_c03110{word-spacing:-12.416976px;}
.ws4_c03110{word-spacing:-11.637648px;}
.ws2_c03110{word-spacing:-11.266992px;}
.ws12_c03110{word-spacing:-1.083456px;}
.ws11_c03110{word-spacing:-1.078704px;}
.wse_c03110{word-spacing:-0.974160px;}
.ws17_c03110{word-spacing:-0.719712px;}
.ws10_c03110{word-spacing:-0.118800px;}
.ws14_c03110{word-spacing:-0.099792px;}
.ws16_c03110{word-spacing:-0.085536px;}
.wsf_c03110{word-spacing:0.000000px;}
.ws15_c03110{word-spacing:0.033264px;}
.ws13_c03110{word-spacing:0.323136px;}
.wsb_c03110{word-spacing:33.300288px;}
.ws8_c03110{word-spacing:36.143712px;}
.ws6_c03110{word-spacing:36.742464px;}
.ws1_c03110{word-spacing:37.759392px;}
.ws0_c03110{word-spacing:38.020752px;}
.ws3_c03110{word-spacing:39.218256px;}
.ws5_c03110{word-spacing:39.902544px;}
.ws7_c03110{word-spacing:42.026688px;}
._0_c03110{margin-left:-1.948320px;}
._2_c03110{width:1.482624px;}
._4_c03110{width:3.302640px;}
._1_c03110{width:50.252400px;}
._3_c03110{width:51.530688px;}
.fc0_c03110{color:rgb(0,0,0);}
.fs0_c03110{font-size:47.520000px;}
.fs1_c03110{font-size:60.480000px;}
.y0_c03110{bottom:0.000000px;}
.y19_c03110{bottom:146.998362px;}
.y1b_c03110{bottom:186.600234px;}
.y1a_c03110{bottom:196.320450px;}
.y18_c03110{bottom:275.878542px;}
.y17_c03110{bottom:356.878758px;}
.y15_c03110{bottom:406.559730px;}
.y11_c03110{bottom:424.560306px;}
.y16_c03110{bottom:458.759262px;}
.y14_c03110{bottom:491.879514px;}
.y13_c03110{bottom:509.880090px;}
.y10_c03110{bottom:543.000342px;}
.y12_c03110{bottom:559.559874px;}
.yf_c03110{bottom:577.560450px;}
.y1c_c03110{bottom:614.280450px;}
.yb_c03110{bottom:667.558326px;}
.yd_c03110{bottom:707.160234px;}
.yc_c03110{bottom:716.880450px;}
.ya_c03110{bottom:796.438506px;}
.y9_c03110{bottom:877.438722px;}
.y7_c03110{bottom:926.759730px;}
.y3_c03110{bottom:944.760306px;}
.y8_c03110{bottom:979.319226px;}
.y6_c03110{bottom:1012.439478px;}
.y5_c03110{bottom:1030.440054px;}
.y2_c03110{bottom:1063.560306px;}
.y4_c03110{bottom:1079.759874px;}
.y1_c03110{bottom:1097.760450px;}
.ye_c03110{bottom:1134.840450px;}
.h3_c03110{height:32.530781px;}
.h1_c03110{height:41.696016px;}
.h2_c03110{height:41.812031px;}
.h4_c03110{height:54.654737px;}
.h0_c03110{height:1263.000000px;}
.w1_c03110{width:892.500000px;}
.w0_c03110{width:892.830000px;}
.x0_c03110{left:0.000000px;}
.xd_c03110{left:117.000000px;}
.x8_c03110{left:440.999856px;}
.x4_c03110{left:445.680576px;}
.xb_c03110{left:451.080000px;}
.x7_c03110{left:455.399604px;}
.x5_c03110{left:461.880144px;}
.x1_c03110{left:463.320000px;}
.xa_c03110{left:483.480360px;}
.x9_c03110{left:492.119496px;}
.x6_c03110{left:493.200576px;}
.xc_c03110{left:506.880360px;}
.x3_c03110{left:511.919892px;}
.x2_c03110{left:526.679604px;}
@media print{
.v0_c03110{vertical-align:0.000000pt;}
.v1_c03110{vertical-align:1.279488pt;}
.lsc_c03110{letter-spacing:-0.608256pt;}
.ls6_c03110{letter-spacing:-0.544896pt;}
.ls8_c03110{letter-spacing:-0.511104pt;}
.lse_c03110{letter-spacing:-0.350592pt;}
.ls10_c03110{letter-spacing:-0.244992pt;}
.lsd_c03110{letter-spacing:-0.232320pt;}
.ls5_c03110{letter-spacing:-0.215424pt;}
.ls3_c03110{letter-spacing:-0.105600pt;}
.ls13_c03110{letter-spacing:0.000000pt;}
.ls1_c03110{letter-spacing:0.005376pt;}
.ls4_c03110{letter-spacing:0.114048pt;}
.lsa_c03110{letter-spacing:0.451968pt;}
.ls12_c03110{letter-spacing:0.456960pt;}
.lsf_c03110{letter-spacing:0.477312pt;}
.ls9_c03110{letter-spacing:0.515328pt;}
.ls11_c03110{letter-spacing:0.528000pt;}
.ls7_c03110{letter-spacing:0.532224pt;}
.ls2_c03110{letter-spacing:0.544896pt;}
.ls0_c03110{letter-spacing:0.637824pt;}
.lsb_c03110{letter-spacing:0.642048pt;}
.wsc_c03110{word-spacing:-13.445376pt;}
.wsa_c03110{word-spacing:-11.088000pt;}
.wsd_c03110{word-spacing:-11.075328pt;}
.ws9_c03110{word-spacing:-11.037312pt;}
.ws4_c03110{word-spacing:-10.344576pt;}
.ws2_c03110{word-spacing:-10.015104pt;}
.ws12_c03110{word-spacing:-0.963072pt;}
.ws11_c03110{word-spacing:-0.958848pt;}
.wse_c03110{word-spacing:-0.865920pt;}
.ws17_c03110{word-spacing:-0.639744pt;}
.ws10_c03110{word-spacing:-0.105600pt;}
.ws14_c03110{word-spacing:-0.088704pt;}
.ws16_c03110{word-spacing:-0.076032pt;}
.wsf_c03110{word-spacing:0.000000pt;}
.ws15_c03110{word-spacing:0.029568pt;}
.ws13_c03110{word-spacing:0.287232pt;}
.wsb_c03110{word-spacing:29.600256pt;}
.ws8_c03110{word-spacing:32.127744pt;}
.ws6_c03110{word-spacing:32.659968pt;}
.ws1_c03110{word-spacing:33.563904pt;}
.ws0_c03110{word-spacing:33.796224pt;}
.ws3_c03110{word-spacing:34.860672pt;}
.ws5_c03110{word-spacing:35.468928pt;}
.ws7_c03110{word-spacing:37.357056pt;}
._0_c03110{margin-left:-1.731840pt;}
._2_c03110{width:1.317888pt;}
._4_c03110{width:2.935680pt;}
._1_c03110{width:44.668800pt;}
._3_c03110{width:45.805056pt;}
.fs0_c03110{font-size:42.240000pt;}
.fs1_c03110{font-size:53.760000pt;}
.y0_c03110{bottom:0.000000pt;}
.y19_c03110{bottom:130.665211pt;}
.y1b_c03110{bottom:165.866875pt;}
.y1a_c03110{bottom:174.507067pt;}
.y18_c03110{bottom:245.225371pt;}
.y17_c03110{bottom:317.225563pt;}
.y15_c03110{bottom:361.386427pt;}
.y11_c03110{bottom:377.386939pt;}
.y16_c03110{bottom:407.786011pt;}
.y14_c03110{bottom:437.226235pt;}
.y13_c03110{bottom:453.226747pt;}
.y10_c03110{bottom:482.666971pt;}
.y12_c03110{bottom:497.386555pt;}
.yf_c03110{bottom:513.387067pt;}
.y1c_c03110{bottom:546.027067pt;}
.yb_c03110{bottom:593.385179pt;}
.yd_c03110{bottom:628.586875pt;}
.yc_c03110{bottom:637.227067pt;}
.ya_c03110{bottom:707.945339pt;}
.y9_c03110{bottom:779.945531pt;}
.y7_c03110{bottom:823.786427pt;}
.y3_c03110{bottom:839.786939pt;}
.y8_c03110{bottom:870.505979pt;}
.y6_c03110{bottom:899.946203pt;}
.y5_c03110{bottom:915.946715pt;}
.y2_c03110{bottom:945.386939pt;}
.y4_c03110{bottom:959.786555pt;}
.y1_c03110{bottom:975.787067pt;}
.ye_c03110{bottom:1008.747067pt;}
.h3_c03110{height:28.916250pt;}
.h1_c03110{height:37.063125pt;}
.h2_c03110{height:37.166250pt;}
.h4_c03110{height:48.581988pt;}
.h0_c03110{height:1122.666667pt;}
.w1_c03110{width:793.333333pt;}
.w0_c03110{width:793.626667pt;}
.x0_c03110{left:0.000000pt;}
.xd_c03110{left:104.000000pt;}
.x8_c03110{left:391.999872pt;}
.x4_c03110{left:396.160512pt;}
.xb_c03110{left:400.960000pt;}
.x7_c03110{left:404.799648pt;}
.x5_c03110{left:410.560128pt;}
.x1_c03110{left:411.840000pt;}
.xa_c03110{left:429.760320pt;}
.x9_c03110{left:437.439552pt;}
.x6_c03110{left:438.400512pt;}
.xc_c03110{left:450.560320pt;}
.x3_c03110{left:455.039904pt;}
.x2_c03110{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03111 {
    display:none;
  }
  .loading-indicator_c03111.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03111 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03111 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03111" -> "#page-container .classname_c03111")
 */
.pf_c03111 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03111 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03111.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03111 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03111 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03111 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03111 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03111 {overflow:visible;}
  }
}
.c_c03111 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03111 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03111:after { /* webkit #35443 */
  content: '';
}
.t_c03111:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03111 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03111 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03111 { /* info for Javascript */
  display:none;
}
.l_c03111 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03111 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03111 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03111:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03111 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03111.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03111.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03111 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03111{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03111;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03111{font-family:ff1_c03111;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03111;src:url('chunks/assets/font_379af76f011f147c5b9b0826.woff2')format("woff");}.ff2_c03111{font-family:ff2_c03111;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03111;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03111{font-family:ff3_c03111;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03111{vertical-align:0.000000px;}
.v1_c03111{vertical-align:1.439424px;}
.ls6_c03111{letter-spacing:-0.613008px;}
.ls8_c03111{letter-spacing:-0.574992px;}
.lse_c03111{letter-spacing:-0.275616px;}
.lsc_c03111{letter-spacing:-0.261360px;}
.ls5_c03111{letter-spacing:-0.242352px;}
.ls3_c03111{letter-spacing:-0.118800px;}
.ls11_c03111{letter-spacing:0.000000px;}
.ls1_c03111{letter-spacing:0.006048px;}
.ls4_c03111{letter-spacing:0.128304px;}
.lsa_c03111{letter-spacing:0.508464px;}
.ls10_c03111{letter-spacing:0.514080px;}
.lsd_c03111{letter-spacing:0.536976px;}
.ls9_c03111{letter-spacing:0.579744px;}
.lsf_c03111{letter-spacing:0.594000px;}
.ls7_c03111{letter-spacing:0.598752px;}
.ls2_c03111{letter-spacing:0.613008px;}
.ls0_c03111{letter-spacing:0.717552px;}
.lsb_c03111{letter-spacing:0.722304px;}
.sc__c03111{text-shadow:none;}
.sc0_c03111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03111{-webkit-text-stroke:0px transparent;}
.sc0_c03111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03111{word-spacing:-15.126048px;}
.wsa_c03111{word-spacing:-12.474000px;}
.ws8_c03111{word-spacing:-12.459744px;}
.ws9_c03111{word-spacing:-12.416976px;}
.ws4_c03111{word-spacing:-11.637648px;}
.ws2_c03111{word-spacing:-11.266992px;}
.ws11_c03111{word-spacing:-1.083456px;}
.ws10_c03111{word-spacing:-1.078704px;}
.wsd_c03111{word-spacing:-0.974160px;}
.ws14_c03111{word-spacing:-0.719712px;}
.wsf_c03111{word-spacing:-0.118800px;}
.ws12_c03111{word-spacing:-0.099792px;}
.ws13_c03111{word-spacing:-0.085536px;}
.wse_c03111{word-spacing:0.000000px;}
.wsb_c03111{word-spacing:33.300288px;}
.ws6_c03111{word-spacing:36.742464px;}
.ws1_c03111{word-spacing:37.759392px;}
.ws0_c03111{word-spacing:38.020752px;}
.ws3_c03111{word-spacing:39.218256px;}
.ws5_c03111{word-spacing:39.902544px;}
.ws7_c03111{word-spacing:42.026688px;}
._0_c03111{margin-left:-1.948320px;}
._2_c03111{width:1.482624px;}
._4_c03111{width:3.302640px;}
._1_c03111{width:50.252400px;}
._3_c03111{width:51.530688px;}
.fc0_c03111{color:rgb(0,0,0);}
.fs0_c03111{font-size:47.520000px;}
.fs1_c03111{font-size:60.480000px;}
.y0_c03111{bottom:0.000000px;}
.y19_c03111{bottom:146.998362px;}
.y1b_c03111{bottom:186.600234px;}
.y1a_c03111{bottom:196.320450px;}
.y18_c03111{bottom:275.878542px;}
.y17_c03111{bottom:356.878758px;}
.y15_c03111{bottom:406.559730px;}
.y11_c03111{bottom:424.560306px;}
.y16_c03111{bottom:458.759262px;}
.y14_c03111{bottom:491.879514px;}
.y13_c03111{bottom:509.880090px;}
.y10_c03111{bottom:543.000342px;}
.y12_c03111{bottom:559.559874px;}
.yf_c03111{bottom:577.560450px;}
.y1c_c03111{bottom:614.280450px;}
.yb_c03111{bottom:667.558326px;}
.yd_c03111{bottom:707.160234px;}
.yc_c03111{bottom:716.880450px;}
.ya_c03111{bottom:796.438506px;}
.y9_c03111{bottom:877.438722px;}
.y7_c03111{bottom:926.759730px;}
.y3_c03111{bottom:944.760306px;}
.y8_c03111{bottom:979.319226px;}
.y6_c03111{bottom:1012.439478px;}
.y5_c03111{bottom:1030.440054px;}
.y2_c03111{bottom:1063.560306px;}
.y4_c03111{bottom:1079.759874px;}
.y1_c03111{bottom:1097.760450px;}
.ye_c03111{bottom:1134.840450px;}
.h3_c03111{height:32.530781px;}
.h1_c03111{height:41.696016px;}
.h2_c03111{height:41.812031px;}
.h4_c03111{height:54.654737px;}
.h0_c03111{height:1263.000000px;}
.w1_c03111{width:892.500000px;}
.w0_c03111{width:892.830000px;}
.x0_c03111{left:0.000000px;}
.xd_c03111{left:117.000000px;}
.x8_c03111{left:440.999856px;}
.x4_c03111{left:445.680576px;}
.xb_c03111{left:451.080000px;}
.x7_c03111{left:455.399604px;}
.x5_c03111{left:461.880144px;}
.x1_c03111{left:463.320000px;}
.xa_c03111{left:483.480360px;}
.x9_c03111{left:492.119496px;}
.x6_c03111{left:493.200576px;}
.xc_c03111{left:506.880360px;}
.x3_c03111{left:511.919892px;}
.x2_c03111{left:526.679604px;}
@media print{
.v0_c03111{vertical-align:0.000000pt;}
.v1_c03111{vertical-align:1.279488pt;}
.ls6_c03111{letter-spacing:-0.544896pt;}
.ls8_c03111{letter-spacing:-0.511104pt;}
.lse_c03111{letter-spacing:-0.244992pt;}
.lsc_c03111{letter-spacing:-0.232320pt;}
.ls5_c03111{letter-spacing:-0.215424pt;}
.ls3_c03111{letter-spacing:-0.105600pt;}
.ls11_c03111{letter-spacing:0.000000pt;}
.ls1_c03111{letter-spacing:0.005376pt;}
.ls4_c03111{letter-spacing:0.114048pt;}
.lsa_c03111{letter-spacing:0.451968pt;}
.ls10_c03111{letter-spacing:0.456960pt;}
.lsd_c03111{letter-spacing:0.477312pt;}
.ls9_c03111{letter-spacing:0.515328pt;}
.lsf_c03111{letter-spacing:0.528000pt;}
.ls7_c03111{letter-spacing:0.532224pt;}
.ls2_c03111{letter-spacing:0.544896pt;}
.ls0_c03111{letter-spacing:0.637824pt;}
.lsb_c03111{letter-spacing:0.642048pt;}
.wsc_c03111{word-spacing:-13.445376pt;}
.wsa_c03111{word-spacing:-11.088000pt;}
.ws8_c03111{word-spacing:-11.075328pt;}
.ws9_c03111{word-spacing:-11.037312pt;}
.ws4_c03111{word-spacing:-10.344576pt;}
.ws2_c03111{word-spacing:-10.015104pt;}
.ws11_c03111{word-spacing:-0.963072pt;}
.ws10_c03111{word-spacing:-0.958848pt;}
.wsd_c03111{word-spacing:-0.865920pt;}
.ws14_c03111{word-spacing:-0.639744pt;}
.wsf_c03111{word-spacing:-0.105600pt;}
.ws12_c03111{word-spacing:-0.088704pt;}
.ws13_c03111{word-spacing:-0.076032pt;}
.wse_c03111{word-spacing:0.000000pt;}
.wsb_c03111{word-spacing:29.600256pt;}
.ws6_c03111{word-spacing:32.659968pt;}
.ws1_c03111{word-spacing:33.563904pt;}
.ws0_c03111{word-spacing:33.796224pt;}
.ws3_c03111{word-spacing:34.860672pt;}
.ws5_c03111{word-spacing:35.468928pt;}
.ws7_c03111{word-spacing:37.357056pt;}
._0_c03111{margin-left:-1.731840pt;}
._2_c03111{width:1.317888pt;}
._4_c03111{width:2.935680pt;}
._1_c03111{width:44.668800pt;}
._3_c03111{width:45.805056pt;}
.fs0_c03111{font-size:42.240000pt;}
.fs1_c03111{font-size:53.760000pt;}
.y0_c03111{bottom:0.000000pt;}
.y19_c03111{bottom:130.665211pt;}
.y1b_c03111{bottom:165.866875pt;}
.y1a_c03111{bottom:174.507067pt;}
.y18_c03111{bottom:245.225371pt;}
.y17_c03111{bottom:317.225563pt;}
.y15_c03111{bottom:361.386427pt;}
.y11_c03111{bottom:377.386939pt;}
.y16_c03111{bottom:407.786011pt;}
.y14_c03111{bottom:437.226235pt;}
.y13_c03111{bottom:453.226747pt;}
.y10_c03111{bottom:482.666971pt;}
.y12_c03111{bottom:497.386555pt;}
.yf_c03111{bottom:513.387067pt;}
.y1c_c03111{bottom:546.027067pt;}
.yb_c03111{bottom:593.385179pt;}
.yd_c03111{bottom:628.586875pt;}
.yc_c03111{bottom:637.227067pt;}
.ya_c03111{bottom:707.945339pt;}
.y9_c03111{bottom:779.945531pt;}
.y7_c03111{bottom:823.786427pt;}
.y3_c03111{bottom:839.786939pt;}
.y8_c03111{bottom:870.505979pt;}
.y6_c03111{bottom:899.946203pt;}
.y5_c03111{bottom:915.946715pt;}
.y2_c03111{bottom:945.386939pt;}
.y4_c03111{bottom:959.786555pt;}
.y1_c03111{bottom:975.787067pt;}
.ye_c03111{bottom:1008.747067pt;}
.h3_c03111{height:28.916250pt;}
.h1_c03111{height:37.063125pt;}
.h2_c03111{height:37.166250pt;}
.h4_c03111{height:48.581988pt;}
.h0_c03111{height:1122.666667pt;}
.w1_c03111{width:793.333333pt;}
.w0_c03111{width:793.626667pt;}
.x0_c03111{left:0.000000pt;}
.xd_c03111{left:104.000000pt;}
.x8_c03111{left:391.999872pt;}
.x4_c03111{left:396.160512pt;}
.xb_c03111{left:400.960000pt;}
.x7_c03111{left:404.799648pt;}
.x5_c03111{left:410.560128pt;}
.x1_c03111{left:411.840000pt;}
.xa_c03111{left:429.760320pt;}
.x9_c03111{left:437.439552pt;}
.x6_c03111{left:438.400512pt;}
.xc_c03111{left:450.560320pt;}
.x3_c03111{left:455.039904pt;}
.x2_c03111{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03112 {
    display:none;
  }
  .loading-indicator_c03112.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03112 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03112 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03112" -> "#page-container .classname_c03112")
 */
.pf_c03112 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03112 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03112.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03112 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03112 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03112 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03112 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03112 {overflow:visible;}
  }
}
.c_c03112 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03112 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03112:after { /* webkit #35443 */
  content: '';
}
.t_c03112:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03112 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03112 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03112 { /* info for Javascript */
  display:none;
}
.l_c03112 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03112 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03112 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03112:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03112 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03112.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03112.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03112 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03112{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03112;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03112{font-family:ff1_c03112;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03112;src:url('chunks/assets/font_c71af9913d0798403832eafb.woff2')format("woff");}.ff2_c03112{font-family:ff2_c03112;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03112;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03112{font-family:ff3_c03112;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03112{vertical-align:0.000000px;}
.v1_c03112{vertical-align:1.439424px;}
.ls6_c03112{letter-spacing:-0.613008px;}
.ls8_c03112{letter-spacing:-0.574992px;}
.lse_c03112{letter-spacing:-0.275616px;}
.lsc_c03112{letter-spacing:-0.261360px;}
.ls5_c03112{letter-spacing:-0.242352px;}
.ls3_c03112{letter-spacing:-0.118800px;}
.ls11_c03112{letter-spacing:0.000000px;}
.ls1_c03112{letter-spacing:0.006048px;}
.ls4_c03112{letter-spacing:0.128304px;}
.lsa_c03112{letter-spacing:0.508464px;}
.ls10_c03112{letter-spacing:0.514080px;}
.lsd_c03112{letter-spacing:0.536976px;}
.ls9_c03112{letter-spacing:0.579744px;}
.lsf_c03112{letter-spacing:0.594000px;}
.ls7_c03112{letter-spacing:0.598752px;}
.ls2_c03112{letter-spacing:0.613008px;}
.ls0_c03112{letter-spacing:0.717552px;}
.lsb_c03112{letter-spacing:0.722304px;}
.sc__c03112{text-shadow:none;}
.sc0_c03112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03112{-webkit-text-stroke:0px transparent;}
.sc0_c03112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03112{word-spacing:-15.126048px;}
.wsa_c03112{word-spacing:-12.474000px;}
.ws8_c03112{word-spacing:-12.459744px;}
.ws9_c03112{word-spacing:-12.416976px;}
.ws4_c03112{word-spacing:-11.637648px;}
.ws2_c03112{word-spacing:-11.266992px;}
.ws11_c03112{word-spacing:-1.083456px;}
.ws10_c03112{word-spacing:-1.078704px;}
.wsd_c03112{word-spacing:-0.974160px;}
.ws14_c03112{word-spacing:-0.719712px;}
.wsf_c03112{word-spacing:-0.118800px;}
.ws12_c03112{word-spacing:-0.099792px;}
.ws13_c03112{word-spacing:-0.085536px;}
.wse_c03112{word-spacing:0.000000px;}
.wsb_c03112{word-spacing:33.300288px;}
.ws6_c03112{word-spacing:36.742464px;}
.ws1_c03112{word-spacing:37.759392px;}
.ws0_c03112{word-spacing:38.020752px;}
.ws3_c03112{word-spacing:39.218256px;}
.ws5_c03112{word-spacing:39.902544px;}
.ws7_c03112{word-spacing:42.026688px;}
._0_c03112{margin-left:-1.948320px;}
._2_c03112{width:1.482624px;}
._4_c03112{width:3.302640px;}
._1_c03112{width:50.252400px;}
._3_c03112{width:51.530688px;}
.fc0_c03112{color:rgb(0,0,0);}
.fs0_c03112{font-size:47.520000px;}
.fs1_c03112{font-size:60.480000px;}
.y0_c03112{bottom:0.000000px;}
.y19_c03112{bottom:146.998362px;}
.y1b_c03112{bottom:186.600234px;}
.y1a_c03112{bottom:196.320450px;}
.y18_c03112{bottom:275.878542px;}
.y17_c03112{bottom:356.878758px;}
.y15_c03112{bottom:406.559730px;}
.y11_c03112{bottom:424.560306px;}
.y16_c03112{bottom:458.759262px;}
.y14_c03112{bottom:491.879514px;}
.y13_c03112{bottom:509.880090px;}
.y10_c03112{bottom:543.000342px;}
.y12_c03112{bottom:559.559874px;}
.yf_c03112{bottom:577.560450px;}
.y1c_c03112{bottom:614.280450px;}
.yb_c03112{bottom:667.558326px;}
.yd_c03112{bottom:707.160234px;}
.yc_c03112{bottom:716.880450px;}
.ya_c03112{bottom:796.438506px;}
.y9_c03112{bottom:877.438722px;}
.y7_c03112{bottom:926.759730px;}
.y3_c03112{bottom:944.760306px;}
.y8_c03112{bottom:979.319226px;}
.y6_c03112{bottom:1012.439478px;}
.y5_c03112{bottom:1030.440054px;}
.y2_c03112{bottom:1063.560306px;}
.y4_c03112{bottom:1079.759874px;}
.y1_c03112{bottom:1097.760450px;}
.ye_c03112{bottom:1134.840450px;}
.h3_c03112{height:32.530781px;}
.h1_c03112{height:41.696016px;}
.h2_c03112{height:41.812031px;}
.h4_c03112{height:54.654737px;}
.h0_c03112{height:1263.000000px;}
.w1_c03112{width:892.500000px;}
.w0_c03112{width:892.830000px;}
.x0_c03112{left:0.000000px;}
.xd_c03112{left:117.000000px;}
.x8_c03112{left:440.999856px;}
.x4_c03112{left:445.680576px;}
.xb_c03112{left:451.080000px;}
.x7_c03112{left:455.399604px;}
.x5_c03112{left:461.880144px;}
.x1_c03112{left:463.320000px;}
.xa_c03112{left:483.480360px;}
.x9_c03112{left:492.119496px;}
.x6_c03112{left:493.200576px;}
.xc_c03112{left:506.880360px;}
.x3_c03112{left:511.919892px;}
.x2_c03112{left:526.679604px;}
@media print{
.v0_c03112{vertical-align:0.000000pt;}
.v1_c03112{vertical-align:1.279488pt;}
.ls6_c03112{letter-spacing:-0.544896pt;}
.ls8_c03112{letter-spacing:-0.511104pt;}
.lse_c03112{letter-spacing:-0.244992pt;}
.lsc_c03112{letter-spacing:-0.232320pt;}
.ls5_c03112{letter-spacing:-0.215424pt;}
.ls3_c03112{letter-spacing:-0.105600pt;}
.ls11_c03112{letter-spacing:0.000000pt;}
.ls1_c03112{letter-spacing:0.005376pt;}
.ls4_c03112{letter-spacing:0.114048pt;}
.lsa_c03112{letter-spacing:0.451968pt;}
.ls10_c03112{letter-spacing:0.456960pt;}
.lsd_c03112{letter-spacing:0.477312pt;}
.ls9_c03112{letter-spacing:0.515328pt;}
.lsf_c03112{letter-spacing:0.528000pt;}
.ls7_c03112{letter-spacing:0.532224pt;}
.ls2_c03112{letter-spacing:0.544896pt;}
.ls0_c03112{letter-spacing:0.637824pt;}
.lsb_c03112{letter-spacing:0.642048pt;}
.wsc_c03112{word-spacing:-13.445376pt;}
.wsa_c03112{word-spacing:-11.088000pt;}
.ws8_c03112{word-spacing:-11.075328pt;}
.ws9_c03112{word-spacing:-11.037312pt;}
.ws4_c03112{word-spacing:-10.344576pt;}
.ws2_c03112{word-spacing:-10.015104pt;}
.ws11_c03112{word-spacing:-0.963072pt;}
.ws10_c03112{word-spacing:-0.958848pt;}
.wsd_c03112{word-spacing:-0.865920pt;}
.ws14_c03112{word-spacing:-0.639744pt;}
.wsf_c03112{word-spacing:-0.105600pt;}
.ws12_c03112{word-spacing:-0.088704pt;}
.ws13_c03112{word-spacing:-0.076032pt;}
.wse_c03112{word-spacing:0.000000pt;}
.wsb_c03112{word-spacing:29.600256pt;}
.ws6_c03112{word-spacing:32.659968pt;}
.ws1_c03112{word-spacing:33.563904pt;}
.ws0_c03112{word-spacing:33.796224pt;}
.ws3_c03112{word-spacing:34.860672pt;}
.ws5_c03112{word-spacing:35.468928pt;}
.ws7_c03112{word-spacing:37.357056pt;}
._0_c03112{margin-left:-1.731840pt;}
._2_c03112{width:1.317888pt;}
._4_c03112{width:2.935680pt;}
._1_c03112{width:44.668800pt;}
._3_c03112{width:45.805056pt;}
.fs0_c03112{font-size:42.240000pt;}
.fs1_c03112{font-size:53.760000pt;}
.y0_c03112{bottom:0.000000pt;}
.y19_c03112{bottom:130.665211pt;}
.y1b_c03112{bottom:165.866875pt;}
.y1a_c03112{bottom:174.507067pt;}
.y18_c03112{bottom:245.225371pt;}
.y17_c03112{bottom:317.225563pt;}
.y15_c03112{bottom:361.386427pt;}
.y11_c03112{bottom:377.386939pt;}
.y16_c03112{bottom:407.786011pt;}
.y14_c03112{bottom:437.226235pt;}
.y13_c03112{bottom:453.226747pt;}
.y10_c03112{bottom:482.666971pt;}
.y12_c03112{bottom:497.386555pt;}
.yf_c03112{bottom:513.387067pt;}
.y1c_c03112{bottom:546.027067pt;}
.yb_c03112{bottom:593.385179pt;}
.yd_c03112{bottom:628.586875pt;}
.yc_c03112{bottom:637.227067pt;}
.ya_c03112{bottom:707.945339pt;}
.y9_c03112{bottom:779.945531pt;}
.y7_c03112{bottom:823.786427pt;}
.y3_c03112{bottom:839.786939pt;}
.y8_c03112{bottom:870.505979pt;}
.y6_c03112{bottom:899.946203pt;}
.y5_c03112{bottom:915.946715pt;}
.y2_c03112{bottom:945.386939pt;}
.y4_c03112{bottom:959.786555pt;}
.y1_c03112{bottom:975.787067pt;}
.ye_c03112{bottom:1008.747067pt;}
.h3_c03112{height:28.916250pt;}
.h1_c03112{height:37.063125pt;}
.h2_c03112{height:37.166250pt;}
.h4_c03112{height:48.581988pt;}
.h0_c03112{height:1122.666667pt;}
.w1_c03112{width:793.333333pt;}
.w0_c03112{width:793.626667pt;}
.x0_c03112{left:0.000000pt;}
.xd_c03112{left:104.000000pt;}
.x8_c03112{left:391.999872pt;}
.x4_c03112{left:396.160512pt;}
.xb_c03112{left:400.960000pt;}
.x7_c03112{left:404.799648pt;}
.x5_c03112{left:410.560128pt;}
.x1_c03112{left:411.840000pt;}
.xa_c03112{left:429.760320pt;}
.x9_c03112{left:437.439552pt;}
.x6_c03112{left:438.400512pt;}
.xc_c03112{left:450.560320pt;}
.x3_c03112{left:455.039904pt;}
.x2_c03112{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03113 {
    display:none;
  }
  .loading-indicator_c03113.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03113 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03113 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03113" -> "#page-container .classname_c03113")
 */
.pf_c03113 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03113 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03113.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03113 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03113 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03113 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03113 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03113 {overflow:visible;}
  }
}
.c_c03113 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03113 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03113:after { /* webkit #35443 */
  content: '';
}
.t_c03113:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03113 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03113 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03113 { /* info for Javascript */
  display:none;
}
.l_c03113 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03113 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03113 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03113:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03113 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03113.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03113.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03113 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03113{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03113;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03113{font-family:ff1_c03113;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03113;src:url('chunks/assets/font_a880d723c38ee644a3f127d9.woff2')format("woff");}.ff2_c03113{font-family:ff2_c03113;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03113;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03113{font-family:ff3_c03113;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03113{vertical-align:0.000000px;}
.v1_c03113{vertical-align:1.439424px;}
.ls12_c03113{letter-spacing:-0.793584px;}
.ls7_c03113{letter-spacing:-0.613008px;}
.ls9_c03113{letter-spacing:-0.574992px;}
.ls13_c03113{letter-spacing:-0.375408px;}
.lse_c03113{letter-spacing:-0.275616px;}
.lsc_c03113{letter-spacing:-0.261360px;}
.ls6_c03113{letter-spacing:-0.242352px;}
.ls4_c03113{letter-spacing:-0.118800px;}
.ls11_c03113{letter-spacing:0.000000px;}
.ls1_c03113{letter-spacing:0.006048px;}
.ls5_c03113{letter-spacing:0.128304px;}
.lsb_c03113{letter-spacing:0.508464px;}
.ls10_c03113{letter-spacing:0.514080px;}
.lsd_c03113{letter-spacing:0.536976px;}
.lsa_c03113{letter-spacing:0.579744px;}
.lsf_c03113{letter-spacing:0.594000px;}
.ls8_c03113{letter-spacing:0.598752px;}
.ls2_c03113{letter-spacing:0.613008px;}
.ls3_c03113{letter-spacing:0.717552px;}
.ls0_c03113{letter-spacing:0.722304px;}
.sc__c03113{text-shadow:none;}
.sc0_c03113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03113{-webkit-text-stroke:0px transparent;}
.sc0_c03113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03113{word-spacing:-15.126048px;}
.wsa_c03113{word-spacing:-12.474000px;}
.ws8_c03113{word-spacing:-12.459744px;}
.ws9_c03113{word-spacing:-12.416976px;}
.ws4_c03113{word-spacing:-11.637648px;}
.ws2_c03113{word-spacing:-11.266992px;}
.ws11_c03113{word-spacing:-1.083456px;}
.wse_c03113{word-spacing:-0.974160px;}
.ws14_c03113{word-spacing:-0.719712px;}
.ws10_c03113{word-spacing:-0.118800px;}
.ws12_c03113{word-spacing:-0.099792px;}
.ws13_c03113{word-spacing:-0.085536px;}
.wsf_c03113{word-spacing:0.000000px;}
.ws16_c03113{word-spacing:0.014256px;}
.ws15_c03113{word-spacing:0.432432px;}
.wsb_c03113{word-spacing:33.300288px;}
.wsd_c03113{word-spacing:36.143712px;}
.ws6_c03113{word-spacing:36.742464px;}
.ws1_c03113{word-spacing:37.759392px;}
.ws0_c03113{word-spacing:38.020752px;}
.ws3_c03113{word-spacing:39.218256px;}
.ws5_c03113{word-spacing:39.902544px;}
.ws7_c03113{word-spacing:42.026688px;}
._0_c03113{margin-left:-1.948320px;}
._2_c03113{width:1.482624px;}
._4_c03113{width:3.302640px;}
._1_c03113{width:50.252400px;}
._3_c03113{width:51.530688px;}
.fc0_c03113{color:rgb(0,0,0);}
.fs0_c03113{font-size:47.520000px;}
.fs1_c03113{font-size:60.480000px;}
.y0_c03113{bottom:0.000000px;}
.y19_c03113{bottom:146.998362px;}
.y1b_c03113{bottom:186.600234px;}
.y1a_c03113{bottom:196.320450px;}
.y18_c03113{bottom:275.878542px;}
.y17_c03113{bottom:356.878758px;}
.y15_c03113{bottom:406.559730px;}
.y11_c03113{bottom:424.560306px;}
.y16_c03113{bottom:458.759262px;}
.y14_c03113{bottom:491.879514px;}
.y13_c03113{bottom:509.880090px;}
.y10_c03113{bottom:543.000342px;}
.y12_c03113{bottom:559.559874px;}
.yf_c03113{bottom:577.560450px;}
.y1c_c03113{bottom:614.280450px;}
.yb_c03113{bottom:667.558326px;}
.yd_c03113{bottom:707.160234px;}
.yc_c03113{bottom:716.880450px;}
.ya_c03113{bottom:796.438506px;}
.y9_c03113{bottom:877.438722px;}
.y7_c03113{bottom:926.759730px;}
.y3_c03113{bottom:944.760306px;}
.y8_c03113{bottom:979.319226px;}
.y6_c03113{bottom:1012.439478px;}
.y5_c03113{bottom:1030.440054px;}
.y2_c03113{bottom:1063.560306px;}
.y4_c03113{bottom:1079.759874px;}
.y1_c03113{bottom:1097.760450px;}
.ye_c03113{bottom:1134.840450px;}
.h3_c03113{height:32.530781px;}
.h1_c03113{height:41.696016px;}
.h2_c03113{height:41.812031px;}
.h4_c03113{height:54.654737px;}
.h0_c03113{height:1263.000000px;}
.w1_c03113{width:892.500000px;}
.w0_c03113{width:892.830000px;}
.x0_c03113{left:0.000000px;}
.xd_c03113{left:117.000000px;}
.x8_c03113{left:440.999856px;}
.x4_c03113{left:445.680576px;}
.xb_c03113{left:451.080000px;}
.x7_c03113{left:455.399604px;}
.x5_c03113{left:461.880144px;}
.x1_c03113{left:463.320000px;}
.xa_c03113{left:483.480360px;}
.x9_c03113{left:492.119496px;}
.x6_c03113{left:493.200576px;}
.xc_c03113{left:506.880360px;}
.x3_c03113{left:511.919892px;}
.x2_c03113{left:526.679604px;}
@media print{
.v0_c03113{vertical-align:0.000000pt;}
.v1_c03113{vertical-align:1.279488pt;}
.ls12_c03113{letter-spacing:-0.705408pt;}
.ls7_c03113{letter-spacing:-0.544896pt;}
.ls9_c03113{letter-spacing:-0.511104pt;}
.ls13_c03113{letter-spacing:-0.333696pt;}
.lse_c03113{letter-spacing:-0.244992pt;}
.lsc_c03113{letter-spacing:-0.232320pt;}
.ls6_c03113{letter-spacing:-0.215424pt;}
.ls4_c03113{letter-spacing:-0.105600pt;}
.ls11_c03113{letter-spacing:0.000000pt;}
.ls1_c03113{letter-spacing:0.005376pt;}
.ls5_c03113{letter-spacing:0.114048pt;}
.lsb_c03113{letter-spacing:0.451968pt;}
.ls10_c03113{letter-spacing:0.456960pt;}
.lsd_c03113{letter-spacing:0.477312pt;}
.lsa_c03113{letter-spacing:0.515328pt;}
.lsf_c03113{letter-spacing:0.528000pt;}
.ls8_c03113{letter-spacing:0.532224pt;}
.ls2_c03113{letter-spacing:0.544896pt;}
.ls3_c03113{letter-spacing:0.637824pt;}
.ls0_c03113{letter-spacing:0.642048pt;}
.wsc_c03113{word-spacing:-13.445376pt;}
.wsa_c03113{word-spacing:-11.088000pt;}
.ws8_c03113{word-spacing:-11.075328pt;}
.ws9_c03113{word-spacing:-11.037312pt;}
.ws4_c03113{word-spacing:-10.344576pt;}
.ws2_c03113{word-spacing:-10.015104pt;}
.ws11_c03113{word-spacing:-0.963072pt;}
.wse_c03113{word-spacing:-0.865920pt;}
.ws14_c03113{word-spacing:-0.639744pt;}
.ws10_c03113{word-spacing:-0.105600pt;}
.ws12_c03113{word-spacing:-0.088704pt;}
.ws13_c03113{word-spacing:-0.076032pt;}
.wsf_c03113{word-spacing:0.000000pt;}
.ws16_c03113{word-spacing:0.012672pt;}
.ws15_c03113{word-spacing:0.384384pt;}
.wsb_c03113{word-spacing:29.600256pt;}
.wsd_c03113{word-spacing:32.127744pt;}
.ws6_c03113{word-spacing:32.659968pt;}
.ws1_c03113{word-spacing:33.563904pt;}
.ws0_c03113{word-spacing:33.796224pt;}
.ws3_c03113{word-spacing:34.860672pt;}
.ws5_c03113{word-spacing:35.468928pt;}
.ws7_c03113{word-spacing:37.357056pt;}
._0_c03113{margin-left:-1.731840pt;}
._2_c03113{width:1.317888pt;}
._4_c03113{width:2.935680pt;}
._1_c03113{width:44.668800pt;}
._3_c03113{width:45.805056pt;}
.fs0_c03113{font-size:42.240000pt;}
.fs1_c03113{font-size:53.760000pt;}
.y0_c03113{bottom:0.000000pt;}
.y19_c03113{bottom:130.665211pt;}
.y1b_c03113{bottom:165.866875pt;}
.y1a_c03113{bottom:174.507067pt;}
.y18_c03113{bottom:245.225371pt;}
.y17_c03113{bottom:317.225563pt;}
.y15_c03113{bottom:361.386427pt;}
.y11_c03113{bottom:377.386939pt;}
.y16_c03113{bottom:407.786011pt;}
.y14_c03113{bottom:437.226235pt;}
.y13_c03113{bottom:453.226747pt;}
.y10_c03113{bottom:482.666971pt;}
.y12_c03113{bottom:497.386555pt;}
.yf_c03113{bottom:513.387067pt;}
.y1c_c03113{bottom:546.027067pt;}
.yb_c03113{bottom:593.385179pt;}
.yd_c03113{bottom:628.586875pt;}
.yc_c03113{bottom:637.227067pt;}
.ya_c03113{bottom:707.945339pt;}
.y9_c03113{bottom:779.945531pt;}
.y7_c03113{bottom:823.786427pt;}
.y3_c03113{bottom:839.786939pt;}
.y8_c03113{bottom:870.505979pt;}
.y6_c03113{bottom:899.946203pt;}
.y5_c03113{bottom:915.946715pt;}
.y2_c03113{bottom:945.386939pt;}
.y4_c03113{bottom:959.786555pt;}
.y1_c03113{bottom:975.787067pt;}
.ye_c03113{bottom:1008.747067pt;}
.h3_c03113{height:28.916250pt;}
.h1_c03113{height:37.063125pt;}
.h2_c03113{height:37.166250pt;}
.h4_c03113{height:48.581988pt;}
.h0_c03113{height:1122.666667pt;}
.w1_c03113{width:793.333333pt;}
.w0_c03113{width:793.626667pt;}
.x0_c03113{left:0.000000pt;}
.xd_c03113{left:104.000000pt;}
.x8_c03113{left:391.999872pt;}
.x4_c03113{left:396.160512pt;}
.xb_c03113{left:400.960000pt;}
.x7_c03113{left:404.799648pt;}
.x5_c03113{left:410.560128pt;}
.x1_c03113{left:411.840000pt;}
.xa_c03113{left:429.760320pt;}
.x9_c03113{left:437.439552pt;}
.x6_c03113{left:438.400512pt;}
.xc_c03113{left:450.560320pt;}
.x3_c03113{left:455.039904pt;}
.x2_c03113{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03114 {
    display:none;
  }
  .loading-indicator_c03114.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03114 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03114 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03114" -> "#page-container .classname_c03114")
 */
.pf_c03114 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03114 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03114.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03114 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03114 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03114 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03114 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03114 {overflow:visible;}
  }
}
.c_c03114 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03114 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03114:after { /* webkit #35443 */
  content: '';
}
.t_c03114:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03114 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03114 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03114 { /* info for Javascript */
  display:none;
}
.l_c03114 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03114 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03114 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03114:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03114 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03114.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03114.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03114 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03114{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03114;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03114{font-family:ff1_c03114;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03114;src:url('chunks/assets/font_baf424c6f11f97e8ba8b24e6.woff2')format("woff");}.ff2_c03114{font-family:ff2_c03114;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03114;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03114{font-family:ff3_c03114;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03114{vertical-align:0.000000px;}
.v1_c03114{vertical-align:1.439424px;}
.lsa_c03114{letter-spacing:-0.807840px;}
.lsc_c03114{letter-spacing:-0.793584px;}
.ls6_c03114{letter-spacing:-0.613008px;}
.ls8_c03114{letter-spacing:-0.574992px;}
.lsf_c03114{letter-spacing:-0.275616px;}
.lsd_c03114{letter-spacing:-0.261360px;}
.ls5_c03114{letter-spacing:-0.242352px;}
.ls3_c03114{letter-spacing:-0.118800px;}
.ls12_c03114{letter-spacing:0.000000px;}
.ls1_c03114{letter-spacing:0.006048px;}
.ls4_c03114{letter-spacing:0.128304px;}
.lsb_c03114{letter-spacing:0.508464px;}
.ls11_c03114{letter-spacing:0.514080px;}
.lse_c03114{letter-spacing:0.536976px;}
.ls9_c03114{letter-spacing:0.579744px;}
.ls10_c03114{letter-spacing:0.594000px;}
.ls7_c03114{letter-spacing:0.598752px;}
.ls2_c03114{letter-spacing:0.613008px;}
.ls0_c03114{letter-spacing:0.717552px;}
.sc__c03114{text-shadow:none;}
.sc0_c03114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03114{-webkit-text-stroke:0px transparent;}
.sc0_c03114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03114{word-spacing:-15.126048px;}
.wsa_c03114{word-spacing:-12.474000px;}
.ws8_c03114{word-spacing:-12.459744px;}
.ws9_c03114{word-spacing:-12.416976px;}
.ws4_c03114{word-spacing:-11.637648px;}
.ws2_c03114{word-spacing:-11.266992px;}
.ws10_c03114{word-spacing:-1.078704px;}
.wsd_c03114{word-spacing:-0.974160px;}
.ws15_c03114{word-spacing:-0.719712px;}
.wsf_c03114{word-spacing:-0.118800px;}
.ws13_c03114{word-spacing:-0.099792px;}
.ws14_c03114{word-spacing:-0.085536px;}
.wse_c03114{word-spacing:0.000000px;}
.ws12_c03114{word-spacing:0.432432px;}
.ws11_c03114{word-spacing:0.446688px;}
.wsb_c03114{word-spacing:33.300288px;}
.ws6_c03114{word-spacing:36.742464px;}
.ws1_c03114{word-spacing:37.759392px;}
.ws0_c03114{word-spacing:38.020752px;}
.ws3_c03114{word-spacing:39.218256px;}
.ws5_c03114{word-spacing:39.902544px;}
.ws7_c03114{word-spacing:42.026688px;}
._0_c03114{margin-left:-1.948320px;}
._2_c03114{width:1.482624px;}
._4_c03114{width:3.302640px;}
._1_c03114{width:50.252400px;}
._3_c03114{width:51.530688px;}
.fc0_c03114{color:rgb(0,0,0);}
.fs0_c03114{font-size:47.520000px;}
.fs1_c03114{font-size:60.480000px;}
.y0_c03114{bottom:0.000000px;}
.y19_c03114{bottom:146.998362px;}
.y1b_c03114{bottom:186.600234px;}
.y1a_c03114{bottom:196.320450px;}
.y18_c03114{bottom:275.878542px;}
.y17_c03114{bottom:356.878758px;}
.y15_c03114{bottom:406.559730px;}
.y11_c03114{bottom:424.560306px;}
.y16_c03114{bottom:458.759262px;}
.y14_c03114{bottom:491.879514px;}
.y13_c03114{bottom:509.880090px;}
.y10_c03114{bottom:543.000342px;}
.y12_c03114{bottom:559.559874px;}
.yf_c03114{bottom:577.560450px;}
.y1c_c03114{bottom:614.280450px;}
.yb_c03114{bottom:667.558326px;}
.yd_c03114{bottom:707.160234px;}
.yc_c03114{bottom:716.880450px;}
.ya_c03114{bottom:796.438506px;}
.y9_c03114{bottom:877.438722px;}
.y7_c03114{bottom:926.759730px;}
.y3_c03114{bottom:944.760306px;}
.y8_c03114{bottom:979.319226px;}
.y6_c03114{bottom:1012.439478px;}
.y5_c03114{bottom:1030.440054px;}
.y2_c03114{bottom:1063.560306px;}
.y4_c03114{bottom:1079.759874px;}
.y1_c03114{bottom:1097.760450px;}
.ye_c03114{bottom:1134.840450px;}
.h3_c03114{height:32.530781px;}
.h1_c03114{height:41.696016px;}
.h2_c03114{height:41.812031px;}
.h4_c03114{height:54.654737px;}
.h0_c03114{height:1263.000000px;}
.w1_c03114{width:892.500000px;}
.w0_c03114{width:892.830000px;}
.x0_c03114{left:0.000000px;}
.xd_c03114{left:117.000000px;}
.x8_c03114{left:440.999856px;}
.x4_c03114{left:445.680576px;}
.xb_c03114{left:451.080000px;}
.x7_c03114{left:455.399604px;}
.x5_c03114{left:461.880144px;}
.x1_c03114{left:463.320000px;}
.xa_c03114{left:483.480360px;}
.x9_c03114{left:492.119496px;}
.x6_c03114{left:493.200576px;}
.xc_c03114{left:506.880360px;}
.x3_c03114{left:511.919892px;}
.x2_c03114{left:526.679604px;}
@media print{
.v0_c03114{vertical-align:0.000000pt;}
.v1_c03114{vertical-align:1.279488pt;}
.lsa_c03114{letter-spacing:-0.718080pt;}
.lsc_c03114{letter-spacing:-0.705408pt;}
.ls6_c03114{letter-spacing:-0.544896pt;}
.ls8_c03114{letter-spacing:-0.511104pt;}
.lsf_c03114{letter-spacing:-0.244992pt;}
.lsd_c03114{letter-spacing:-0.232320pt;}
.ls5_c03114{letter-spacing:-0.215424pt;}
.ls3_c03114{letter-spacing:-0.105600pt;}
.ls12_c03114{letter-spacing:0.000000pt;}
.ls1_c03114{letter-spacing:0.005376pt;}
.ls4_c03114{letter-spacing:0.114048pt;}
.lsb_c03114{letter-spacing:0.451968pt;}
.ls11_c03114{letter-spacing:0.456960pt;}
.lse_c03114{letter-spacing:0.477312pt;}
.ls9_c03114{letter-spacing:0.515328pt;}
.ls10_c03114{letter-spacing:0.528000pt;}
.ls7_c03114{letter-spacing:0.532224pt;}
.ls2_c03114{letter-spacing:0.544896pt;}
.ls0_c03114{letter-spacing:0.637824pt;}
.wsc_c03114{word-spacing:-13.445376pt;}
.wsa_c03114{word-spacing:-11.088000pt;}
.ws8_c03114{word-spacing:-11.075328pt;}
.ws9_c03114{word-spacing:-11.037312pt;}
.ws4_c03114{word-spacing:-10.344576pt;}
.ws2_c03114{word-spacing:-10.015104pt;}
.ws10_c03114{word-spacing:-0.958848pt;}
.wsd_c03114{word-spacing:-0.865920pt;}
.ws15_c03114{word-spacing:-0.639744pt;}
.wsf_c03114{word-spacing:-0.105600pt;}
.ws13_c03114{word-spacing:-0.088704pt;}
.ws14_c03114{word-spacing:-0.076032pt;}
.wse_c03114{word-spacing:0.000000pt;}
.ws12_c03114{word-spacing:0.384384pt;}
.ws11_c03114{word-spacing:0.397056pt;}
.wsb_c03114{word-spacing:29.600256pt;}
.ws6_c03114{word-spacing:32.659968pt;}
.ws1_c03114{word-spacing:33.563904pt;}
.ws0_c03114{word-spacing:33.796224pt;}
.ws3_c03114{word-spacing:34.860672pt;}
.ws5_c03114{word-spacing:35.468928pt;}
.ws7_c03114{word-spacing:37.357056pt;}
._0_c03114{margin-left:-1.731840pt;}
._2_c03114{width:1.317888pt;}
._4_c03114{width:2.935680pt;}
._1_c03114{width:44.668800pt;}
._3_c03114{width:45.805056pt;}
.fs0_c03114{font-size:42.240000pt;}
.fs1_c03114{font-size:53.760000pt;}
.y0_c03114{bottom:0.000000pt;}
.y19_c03114{bottom:130.665211pt;}
.y1b_c03114{bottom:165.866875pt;}
.y1a_c03114{bottom:174.507067pt;}
.y18_c03114{bottom:245.225371pt;}
.y17_c03114{bottom:317.225563pt;}
.y15_c03114{bottom:361.386427pt;}
.y11_c03114{bottom:377.386939pt;}
.y16_c03114{bottom:407.786011pt;}
.y14_c03114{bottom:437.226235pt;}
.y13_c03114{bottom:453.226747pt;}
.y10_c03114{bottom:482.666971pt;}
.y12_c03114{bottom:497.386555pt;}
.yf_c03114{bottom:513.387067pt;}
.y1c_c03114{bottom:546.027067pt;}
.yb_c03114{bottom:593.385179pt;}
.yd_c03114{bottom:628.586875pt;}
.yc_c03114{bottom:637.227067pt;}
.ya_c03114{bottom:707.945339pt;}
.y9_c03114{bottom:779.945531pt;}
.y7_c03114{bottom:823.786427pt;}
.y3_c03114{bottom:839.786939pt;}
.y8_c03114{bottom:870.505979pt;}
.y6_c03114{bottom:899.946203pt;}
.y5_c03114{bottom:915.946715pt;}
.y2_c03114{bottom:945.386939pt;}
.y4_c03114{bottom:959.786555pt;}
.y1_c03114{bottom:975.787067pt;}
.ye_c03114{bottom:1008.747067pt;}
.h3_c03114{height:28.916250pt;}
.h1_c03114{height:37.063125pt;}
.h2_c03114{height:37.166250pt;}
.h4_c03114{height:48.581988pt;}
.h0_c03114{height:1122.666667pt;}
.w1_c03114{width:793.333333pt;}
.w0_c03114{width:793.626667pt;}
.x0_c03114{left:0.000000pt;}
.xd_c03114{left:104.000000pt;}
.x8_c03114{left:391.999872pt;}
.x4_c03114{left:396.160512pt;}
.xb_c03114{left:400.960000pt;}
.x7_c03114{left:404.799648pt;}
.x5_c03114{left:410.560128pt;}
.x1_c03114{left:411.840000pt;}
.xa_c03114{left:429.760320pt;}
.x9_c03114{left:437.439552pt;}
.x6_c03114{left:438.400512pt;}
.xc_c03114{left:450.560320pt;}
.x3_c03114{left:455.039904pt;}
.x2_c03114{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03115 {
    display:none;
  }
  .loading-indicator_c03115.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03115 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03115 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03115" -> "#page-container .classname_c03115")
 */
.pf_c03115 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03115 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03115 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03115 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03115 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03115 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03115 {overflow:visible;}
  }
}
.c_c03115 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03115 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03115:after { /* webkit #35443 */
  content: '';
}
.t_c03115:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03115 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03115 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03115 { /* info for Javascript */
  display:none;
}
.l_c03115 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03115 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03115 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03115:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03115 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03115.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03115 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03115{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03115;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03115{font-family:ff1_c03115;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03115;src:url('chunks/assets/font_27e34549126520a4a4a2e067.woff2')format("woff");}.ff2_c03115{font-family:ff2_c03115;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03115;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03115{font-family:ff3_c03115;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03115{vertical-align:0.000000px;}
.v1_c03115{vertical-align:1.439424px;}
.lsc_c03115{letter-spacing:-0.793584px;}
.ls7_c03115{letter-spacing:-0.613008px;}
.ls9_c03115{letter-spacing:-0.574992px;}
.lse_c03115{letter-spacing:-0.375408px;}
.ls10_c03115{letter-spacing:-0.275616px;}
.lsd_c03115{letter-spacing:-0.261360px;}
.ls6_c03115{letter-spacing:-0.242352px;}
.ls4_c03115{letter-spacing:-0.118800px;}
.ls13_c03115{letter-spacing:0.000000px;}
.ls1_c03115{letter-spacing:0.006048px;}
.ls5_c03115{letter-spacing:0.128304px;}
.lsb_c03115{letter-spacing:0.508464px;}
.ls12_c03115{letter-spacing:0.514080px;}
.lsf_c03115{letter-spacing:0.536976px;}
.lsa_c03115{letter-spacing:0.579744px;}
.ls11_c03115{letter-spacing:0.594000px;}
.ls8_c03115{letter-spacing:0.598752px;}
.ls2_c03115{letter-spacing:0.613008px;}
.ls3_c03115{letter-spacing:0.717552px;}
.ls0_c03115{letter-spacing:0.722304px;}
.sc__c03115{text-shadow:none;}
.sc0_c03115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03115{-webkit-text-stroke:0px transparent;}
.sc0_c03115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03115{word-spacing:-15.126048px;}
.wsa_c03115{word-spacing:-12.474000px;}
.ws6_c03115{word-spacing:-12.459744px;}
.ws9_c03115{word-spacing:-12.416976px;}
.ws4_c03115{word-spacing:-11.637648px;}
.ws2_c03115{word-spacing:-11.266992px;}
.ws10_c03115{word-spacing:-1.083456px;}
.wsd_c03115{word-spacing:-0.974160px;}
.ws15_c03115{word-spacing:-0.719712px;}
.wsf_c03115{word-spacing:-0.118800px;}
.ws12_c03115{word-spacing:-0.099792px;}
.ws14_c03115{word-spacing:-0.085536px;}
.wse_c03115{word-spacing:0.000000px;}
.ws13_c03115{word-spacing:0.014256px;}
.ws11_c03115{word-spacing:0.432432px;}
.wsb_c03115{word-spacing:33.300288px;}
.ws8_c03115{word-spacing:36.143712px;}
.ws1_c03115{word-spacing:37.759392px;}
.ws0_c03115{word-spacing:38.020752px;}
.ws3_c03115{word-spacing:39.218256px;}
.ws5_c03115{word-spacing:39.902544px;}
.ws7_c03115{word-spacing:42.026688px;}
._0_c03115{margin-left:-1.948320px;}
._2_c03115{width:1.482624px;}
._4_c03115{width:3.302640px;}
._1_c03115{width:50.252400px;}
._3_c03115{width:51.530688px;}
.fc0_c03115{color:rgb(0,0,0);}
.fs0_c03115{font-size:47.520000px;}
.fs1_c03115{font-size:60.480000px;}
.y0_c03115{bottom:0.000000px;}
.y19_c03115{bottom:146.998362px;}
.y1b_c03115{bottom:186.600234px;}
.y1a_c03115{bottom:196.320450px;}
.y18_c03115{bottom:275.878542px;}
.y17_c03115{bottom:356.878758px;}
.y15_c03115{bottom:406.559730px;}
.y11_c03115{bottom:424.560306px;}
.y16_c03115{bottom:458.759262px;}
.y14_c03115{bottom:491.879514px;}
.y13_c03115{bottom:509.880090px;}
.y10_c03115{bottom:543.000342px;}
.y12_c03115{bottom:559.559874px;}
.yf_c03115{bottom:577.560450px;}
.y1c_c03115{bottom:614.280450px;}
.yb_c03115{bottom:667.558326px;}
.yd_c03115{bottom:707.160234px;}
.yc_c03115{bottom:716.880450px;}
.ya_c03115{bottom:796.438506px;}
.y9_c03115{bottom:877.438722px;}
.y7_c03115{bottom:926.759730px;}
.y3_c03115{bottom:944.760306px;}
.y8_c03115{bottom:979.319226px;}
.y6_c03115{bottom:1012.439478px;}
.y5_c03115{bottom:1030.440054px;}
.y2_c03115{bottom:1063.560306px;}
.y4_c03115{bottom:1079.759874px;}
.y1_c03115{bottom:1097.760450px;}
.ye_c03115{bottom:1134.840450px;}
.h3_c03115{height:32.530781px;}
.h1_c03115{height:41.696016px;}
.h2_c03115{height:41.812031px;}
.h4_c03115{height:54.654737px;}
.h0_c03115{height:1263.000000px;}
.w1_c03115{width:892.500000px;}
.w0_c03115{width:892.830000px;}
.x0_c03115{left:0.000000px;}
.xd_c03115{left:117.000000px;}
.x8_c03115{left:440.999856px;}
.x4_c03115{left:445.680576px;}
.xb_c03115{left:451.080000px;}
.x7_c03115{left:455.399604px;}
.x5_c03115{left:461.880144px;}
.x1_c03115{left:463.320000px;}
.xa_c03115{left:483.480360px;}
.x9_c03115{left:492.119496px;}
.x6_c03115{left:493.200576px;}
.xc_c03115{left:506.880360px;}
.x3_c03115{left:511.919892px;}
.x2_c03115{left:526.679604px;}
@media print{
.v0_c03115{vertical-align:0.000000pt;}
.v1_c03115{vertical-align:1.279488pt;}
.lsc_c03115{letter-spacing:-0.705408pt;}
.ls7_c03115{letter-spacing:-0.544896pt;}
.ls9_c03115{letter-spacing:-0.511104pt;}
.lse_c03115{letter-spacing:-0.333696pt;}
.ls10_c03115{letter-spacing:-0.244992pt;}
.lsd_c03115{letter-spacing:-0.232320pt;}
.ls6_c03115{letter-spacing:-0.215424pt;}
.ls4_c03115{letter-spacing:-0.105600pt;}
.ls13_c03115{letter-spacing:0.000000pt;}
.ls1_c03115{letter-spacing:0.005376pt;}
.ls5_c03115{letter-spacing:0.114048pt;}
.lsb_c03115{letter-spacing:0.451968pt;}
.ls12_c03115{letter-spacing:0.456960pt;}
.lsf_c03115{letter-spacing:0.477312pt;}
.lsa_c03115{letter-spacing:0.515328pt;}
.ls11_c03115{letter-spacing:0.528000pt;}
.ls8_c03115{letter-spacing:0.532224pt;}
.ls2_c03115{letter-spacing:0.544896pt;}
.ls3_c03115{letter-spacing:0.637824pt;}
.ls0_c03115{letter-spacing:0.642048pt;}
.wsc_c03115{word-spacing:-13.445376pt;}
.wsa_c03115{word-spacing:-11.088000pt;}
.ws6_c03115{word-spacing:-11.075328pt;}
.ws9_c03115{word-spacing:-11.037312pt;}
.ws4_c03115{word-spacing:-10.344576pt;}
.ws2_c03115{word-spacing:-10.015104pt;}
.ws10_c03115{word-spacing:-0.963072pt;}
.wsd_c03115{word-spacing:-0.865920pt;}
.ws15_c03115{word-spacing:-0.639744pt;}
.wsf_c03115{word-spacing:-0.105600pt;}
.ws12_c03115{word-spacing:-0.088704pt;}
.ws14_c03115{word-spacing:-0.076032pt;}
.wse_c03115{word-spacing:0.000000pt;}
.ws13_c03115{word-spacing:0.012672pt;}
.ws11_c03115{word-spacing:0.384384pt;}
.wsb_c03115{word-spacing:29.600256pt;}
.ws8_c03115{word-spacing:32.127744pt;}
.ws1_c03115{word-spacing:33.563904pt;}
.ws0_c03115{word-spacing:33.796224pt;}
.ws3_c03115{word-spacing:34.860672pt;}
.ws5_c03115{word-spacing:35.468928pt;}
.ws7_c03115{word-spacing:37.357056pt;}
._0_c03115{margin-left:-1.731840pt;}
._2_c03115{width:1.317888pt;}
._4_c03115{width:2.935680pt;}
._1_c03115{width:44.668800pt;}
._3_c03115{width:45.805056pt;}
.fs0_c03115{font-size:42.240000pt;}
.fs1_c03115{font-size:53.760000pt;}
.y0_c03115{bottom:0.000000pt;}
.y19_c03115{bottom:130.665211pt;}
.y1b_c03115{bottom:165.866875pt;}
.y1a_c03115{bottom:174.507067pt;}
.y18_c03115{bottom:245.225371pt;}
.y17_c03115{bottom:317.225563pt;}
.y15_c03115{bottom:361.386427pt;}
.y11_c03115{bottom:377.386939pt;}
.y16_c03115{bottom:407.786011pt;}
.y14_c03115{bottom:437.226235pt;}
.y13_c03115{bottom:453.226747pt;}
.y10_c03115{bottom:482.666971pt;}
.y12_c03115{bottom:497.386555pt;}
.yf_c03115{bottom:513.387067pt;}
.y1c_c03115{bottom:546.027067pt;}
.yb_c03115{bottom:593.385179pt;}
.yd_c03115{bottom:628.586875pt;}
.yc_c03115{bottom:637.227067pt;}
.ya_c03115{bottom:707.945339pt;}
.y9_c03115{bottom:779.945531pt;}
.y7_c03115{bottom:823.786427pt;}
.y3_c03115{bottom:839.786939pt;}
.y8_c03115{bottom:870.505979pt;}
.y6_c03115{bottom:899.946203pt;}
.y5_c03115{bottom:915.946715pt;}
.y2_c03115{bottom:945.386939pt;}
.y4_c03115{bottom:959.786555pt;}
.y1_c03115{bottom:975.787067pt;}
.ye_c03115{bottom:1008.747067pt;}
.h3_c03115{height:28.916250pt;}
.h1_c03115{height:37.063125pt;}
.h2_c03115{height:37.166250pt;}
.h4_c03115{height:48.581988pt;}
.h0_c03115{height:1122.666667pt;}
.w1_c03115{width:793.333333pt;}
.w0_c03115{width:793.626667pt;}
.x0_c03115{left:0.000000pt;}
.xd_c03115{left:104.000000pt;}
.x8_c03115{left:391.999872pt;}
.x4_c03115{left:396.160512pt;}
.xb_c03115{left:400.960000pt;}
.x7_c03115{left:404.799648pt;}
.x5_c03115{left:410.560128pt;}
.x1_c03115{left:411.840000pt;}
.xa_c03115{left:429.760320pt;}
.x9_c03115{left:437.439552pt;}
.x6_c03115{left:438.400512pt;}
.xc_c03115{left:450.560320pt;}
.x3_c03115{left:455.039904pt;}
.x2_c03115{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03116 {
    display:none;
  }
  .loading-indicator_c03116.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03116 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03116 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03116" -> "#page-container .classname_c03116")
 */
.pf_c03116 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03116 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03116.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03116 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03116 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03116 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03116 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03116 {overflow:visible;}
  }
}
.c_c03116 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03116 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03116:after { /* webkit #35443 */
  content: '';
}
.t_c03116:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03116 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03116 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03116 { /* info for Javascript */
  display:none;
}
.l_c03116 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03116 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03116 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03116:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03116 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03116.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03116.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03116 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03116{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03116;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03116{font-family:ff1_c03116;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03116;src:url('chunks/assets/font_504e8f90b910612e23a9f1cd.woff2')format("woff");}.ff2_c03116{font-family:ff2_c03116;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03116;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03116{font-family:ff3_c03116;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03116{vertical-align:0.000000px;}
.v1_c03116{vertical-align:1.439424px;}
.lsc_c03116{letter-spacing:-0.793584px;}
.lsd_c03116{letter-spacing:-0.684288px;}
.ls7_c03116{letter-spacing:-0.613008px;}
.ls9_c03116{letter-spacing:-0.574992px;}
.lsf_c03116{letter-spacing:-0.394416px;}
.ls11_c03116{letter-spacing:-0.275616px;}
.lse_c03116{letter-spacing:-0.261360px;}
.ls6_c03116{letter-spacing:-0.242352px;}
.ls4_c03116{letter-spacing:-0.118800px;}
.ls14_c03116{letter-spacing:0.000000px;}
.ls1_c03116{letter-spacing:0.006048px;}
.ls5_c03116{letter-spacing:0.128304px;}
.lsb_c03116{letter-spacing:0.508464px;}
.ls13_c03116{letter-spacing:0.514080px;}
.ls10_c03116{letter-spacing:0.536976px;}
.lsa_c03116{letter-spacing:0.579744px;}
.ls12_c03116{letter-spacing:0.594000px;}
.ls8_c03116{letter-spacing:0.598752px;}
.ls2_c03116{letter-spacing:0.613008px;}
.ls3_c03116{letter-spacing:0.717552px;}
.ls0_c03116{letter-spacing:0.722304px;}
.sc__c03116{text-shadow:none;}
.sc0_c03116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03116{-webkit-text-stroke:0px transparent;}
.sc0_c03116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03116{word-spacing:-15.126048px;}
.wsa_c03116{word-spacing:-12.474000px;}
.ws6_c03116{word-spacing:-12.459744px;}
.ws9_c03116{word-spacing:-12.416976px;}
.ws4_c03116{word-spacing:-11.637648px;}
.ws2_c03116{word-spacing:-11.266992px;}
.ws10_c03116{word-spacing:-1.083456px;}
.wsd_c03116{word-spacing:-0.974160px;}
.ws16_c03116{word-spacing:-0.719712px;}
.wsf_c03116{word-spacing:-0.118800px;}
.ws13_c03116{word-spacing:-0.099792px;}
.ws15_c03116{word-spacing:-0.085536px;}
.wse_c03116{word-spacing:0.000000px;}
.ws14_c03116{word-spacing:0.033264px;}
.ws12_c03116{word-spacing:0.323136px;}
.ws11_c03116{word-spacing:0.432432px;}
.wsb_c03116{word-spacing:33.300288px;}
.ws8_c03116{word-spacing:36.143712px;}
.ws1_c03116{word-spacing:37.759392px;}
.ws0_c03116{word-spacing:38.020752px;}
.ws3_c03116{word-spacing:39.218256px;}
.ws5_c03116{word-spacing:39.902544px;}
.ws7_c03116{word-spacing:42.026688px;}
._0_c03116{margin-left:-1.948320px;}
._2_c03116{width:1.482624px;}
._4_c03116{width:3.302640px;}
._1_c03116{width:50.252400px;}
._3_c03116{width:51.530688px;}
.fc0_c03116{color:rgb(0,0,0);}
.fs0_c03116{font-size:47.520000px;}
.fs1_c03116{font-size:60.480000px;}
.y0_c03116{bottom:0.000000px;}
.y19_c03116{bottom:146.998362px;}
.y1b_c03116{bottom:186.600234px;}
.y1a_c03116{bottom:196.320450px;}
.y18_c03116{bottom:275.878542px;}
.y17_c03116{bottom:356.878758px;}
.y15_c03116{bottom:406.559730px;}
.y11_c03116{bottom:424.560306px;}
.y16_c03116{bottom:458.759262px;}
.y14_c03116{bottom:491.879514px;}
.y13_c03116{bottom:509.880090px;}
.y10_c03116{bottom:543.000342px;}
.y12_c03116{bottom:559.559874px;}
.yf_c03116{bottom:577.560450px;}
.y1c_c03116{bottom:614.280450px;}
.yb_c03116{bottom:667.558326px;}
.yd_c03116{bottom:707.160234px;}
.yc_c03116{bottom:716.880450px;}
.ya_c03116{bottom:796.438506px;}
.y9_c03116{bottom:877.438722px;}
.y7_c03116{bottom:926.759730px;}
.y3_c03116{bottom:944.760306px;}
.y8_c03116{bottom:979.319226px;}
.y6_c03116{bottom:1012.439478px;}
.y5_c03116{bottom:1030.440054px;}
.y2_c03116{bottom:1063.560306px;}
.y4_c03116{bottom:1079.759874px;}
.y1_c03116{bottom:1097.760450px;}
.ye_c03116{bottom:1134.840450px;}
.h3_c03116{height:32.530781px;}
.h1_c03116{height:41.696016px;}
.h2_c03116{height:41.812031px;}
.h4_c03116{height:54.654737px;}
.h0_c03116{height:1263.000000px;}
.w1_c03116{width:892.500000px;}
.w0_c03116{width:892.830000px;}
.x0_c03116{left:0.000000px;}
.xd_c03116{left:117.000000px;}
.x8_c03116{left:440.999856px;}
.x4_c03116{left:445.680576px;}
.xb_c03116{left:451.080000px;}
.x7_c03116{left:455.399604px;}
.x5_c03116{left:461.880144px;}
.x1_c03116{left:463.320000px;}
.xa_c03116{left:483.480360px;}
.x9_c03116{left:492.119496px;}
.x6_c03116{left:493.200576px;}
.xc_c03116{left:506.880360px;}
.x3_c03116{left:511.919892px;}
.x2_c03116{left:526.679604px;}
@media print{
.v0_c03116{vertical-align:0.000000pt;}
.v1_c03116{vertical-align:1.279488pt;}
.lsc_c03116{letter-spacing:-0.705408pt;}
.lsd_c03116{letter-spacing:-0.608256pt;}
.ls7_c03116{letter-spacing:-0.544896pt;}
.ls9_c03116{letter-spacing:-0.511104pt;}
.lsf_c03116{letter-spacing:-0.350592pt;}
.ls11_c03116{letter-spacing:-0.244992pt;}
.lse_c03116{letter-spacing:-0.232320pt;}
.ls6_c03116{letter-spacing:-0.215424pt;}
.ls4_c03116{letter-spacing:-0.105600pt;}
.ls14_c03116{letter-spacing:0.000000pt;}
.ls1_c03116{letter-spacing:0.005376pt;}
.ls5_c03116{letter-spacing:0.114048pt;}
.lsb_c03116{letter-spacing:0.451968pt;}
.ls13_c03116{letter-spacing:0.456960pt;}
.ls10_c03116{letter-spacing:0.477312pt;}
.lsa_c03116{letter-spacing:0.515328pt;}
.ls12_c03116{letter-spacing:0.528000pt;}
.ls8_c03116{letter-spacing:0.532224pt;}
.ls2_c03116{letter-spacing:0.544896pt;}
.ls3_c03116{letter-spacing:0.637824pt;}
.ls0_c03116{letter-spacing:0.642048pt;}
.wsc_c03116{word-spacing:-13.445376pt;}
.wsa_c03116{word-spacing:-11.088000pt;}
.ws6_c03116{word-spacing:-11.075328pt;}
.ws9_c03116{word-spacing:-11.037312pt;}
.ws4_c03116{word-spacing:-10.344576pt;}
.ws2_c03116{word-spacing:-10.015104pt;}
.ws10_c03116{word-spacing:-0.963072pt;}
.wsd_c03116{word-spacing:-0.865920pt;}
.ws16_c03116{word-spacing:-0.639744pt;}
.wsf_c03116{word-spacing:-0.105600pt;}
.ws13_c03116{word-spacing:-0.088704pt;}
.ws15_c03116{word-spacing:-0.076032pt;}
.wse_c03116{word-spacing:0.000000pt;}
.ws14_c03116{word-spacing:0.029568pt;}
.ws12_c03116{word-spacing:0.287232pt;}
.ws11_c03116{word-spacing:0.384384pt;}
.wsb_c03116{word-spacing:29.600256pt;}
.ws8_c03116{word-spacing:32.127744pt;}
.ws1_c03116{word-spacing:33.563904pt;}
.ws0_c03116{word-spacing:33.796224pt;}
.ws3_c03116{word-spacing:34.860672pt;}
.ws5_c03116{word-spacing:35.468928pt;}
.ws7_c03116{word-spacing:37.357056pt;}
._0_c03116{margin-left:-1.731840pt;}
._2_c03116{width:1.317888pt;}
._4_c03116{width:2.935680pt;}
._1_c03116{width:44.668800pt;}
._3_c03116{width:45.805056pt;}
.fs0_c03116{font-size:42.240000pt;}
.fs1_c03116{font-size:53.760000pt;}
.y0_c03116{bottom:0.000000pt;}
.y19_c03116{bottom:130.665211pt;}
.y1b_c03116{bottom:165.866875pt;}
.y1a_c03116{bottom:174.507067pt;}
.y18_c03116{bottom:245.225371pt;}
.y17_c03116{bottom:317.225563pt;}
.y15_c03116{bottom:361.386427pt;}
.y11_c03116{bottom:377.386939pt;}
.y16_c03116{bottom:407.786011pt;}
.y14_c03116{bottom:437.226235pt;}
.y13_c03116{bottom:453.226747pt;}
.y10_c03116{bottom:482.666971pt;}
.y12_c03116{bottom:497.386555pt;}
.yf_c03116{bottom:513.387067pt;}
.y1c_c03116{bottom:546.027067pt;}
.yb_c03116{bottom:593.385179pt;}
.yd_c03116{bottom:628.586875pt;}
.yc_c03116{bottom:637.227067pt;}
.ya_c03116{bottom:707.945339pt;}
.y9_c03116{bottom:779.945531pt;}
.y7_c03116{bottom:823.786427pt;}
.y3_c03116{bottom:839.786939pt;}
.y8_c03116{bottom:870.505979pt;}
.y6_c03116{bottom:899.946203pt;}
.y5_c03116{bottom:915.946715pt;}
.y2_c03116{bottom:945.386939pt;}
.y4_c03116{bottom:959.786555pt;}
.y1_c03116{bottom:975.787067pt;}
.ye_c03116{bottom:1008.747067pt;}
.h3_c03116{height:28.916250pt;}
.h1_c03116{height:37.063125pt;}
.h2_c03116{height:37.166250pt;}
.h4_c03116{height:48.581988pt;}
.h0_c03116{height:1122.666667pt;}
.w1_c03116{width:793.333333pt;}
.w0_c03116{width:793.626667pt;}
.x0_c03116{left:0.000000pt;}
.xd_c03116{left:104.000000pt;}
.x8_c03116{left:391.999872pt;}
.x4_c03116{left:396.160512pt;}
.xb_c03116{left:400.960000pt;}
.x7_c03116{left:404.799648pt;}
.x5_c03116{left:410.560128pt;}
.x1_c03116{left:411.840000pt;}
.xa_c03116{left:429.760320pt;}
.x9_c03116{left:437.439552pt;}
.x6_c03116{left:438.400512pt;}
.xc_c03116{left:450.560320pt;}
.x3_c03116{left:455.039904pt;}
.x2_c03116{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03117 {
    display:none;
  }
  .loading-indicator_c03117.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03117 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03117 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03117" -> "#page-container .classname_c03117")
 */
.pf_c03117 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03117 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03117 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03117 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03117 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03117 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03117 {overflow:visible;}
  }
}
.c_c03117 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03117 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03117:after { /* webkit #35443 */
  content: '';
}
.t_c03117:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03117 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03117 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03117 { /* info for Javascript */
  display:none;
}
.l_c03117 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03117 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03117 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03117:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03117 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03117.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03117 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03117{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03117;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03117{font-family:ff1_c03117;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03117;src:url('chunks/assets/font_1884f400a4c6b5771da6acf8.woff2')format("woff");}.ff2_c03117{font-family:ff2_c03117;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03117;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03117{font-family:ff3_c03117;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03117{vertical-align:0.000000px;}
.v1_c03117{vertical-align:1.439424px;}
.v2_c03117{vertical-align:33.121440px;}
.lsc_c03117{letter-spacing:-1.197504px;}
.ls7_c03117{letter-spacing:-0.613008px;}
.ls9_c03117{letter-spacing:-0.574992px;}
.ls15_c03117{letter-spacing:-0.308880px;}
.lsf_c03117{letter-spacing:-0.275616px;}
.lsd_c03117{letter-spacing:-0.261360px;}
.ls6_c03117{letter-spacing:-0.242352px;}
.ls4_c03117{letter-spacing:-0.118800px;}
.ls12_c03117{letter-spacing:0.000000px;}
.ls1_c03117{letter-spacing:0.006048px;}
.ls5_c03117{letter-spacing:0.128304px;}
.lsb_c03117{letter-spacing:0.508464px;}
.ls11_c03117{letter-spacing:0.514080px;}
.lse_c03117{letter-spacing:0.536976px;}
.ls13_c03117{letter-spacing:0.560736px;}
.lsa_c03117{letter-spacing:0.579744px;}
.ls10_c03117{letter-spacing:0.594000px;}
.ls8_c03117{letter-spacing:0.598752px;}
.ls2_c03117{letter-spacing:0.613008px;}
.ls14_c03117{letter-spacing:0.651024px;}
.ls3_c03117{letter-spacing:0.717552px;}
.ls0_c03117{letter-spacing:0.722304px;}
.sc__c03117{text-shadow:none;}
.sc0_c03117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03117{-webkit-text-stroke:0px transparent;}
.sc0_c03117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03117{word-spacing:-15.126048px;}
.ws9_c03117{word-spacing:-12.474000px;}
.ws6_c03117{word-spacing:-12.459744px;}
.ws8_c03117{word-spacing:-12.416976px;}
.wse_c03117{word-spacing:-12.388464px;}
.ws4_c03117{word-spacing:-11.637648px;}
.wsd_c03117{word-spacing:-11.305008px;}
.ws2_c03117{word-spacing:-11.266992px;}
.ws16_c03117{word-spacing:-1.083456px;}
.ws1c_c03117{word-spacing:-1.012176px;}
.ws13_c03117{word-spacing:-0.974160px;}
.ws1b_c03117{word-spacing:-0.921888px;}
.ws1a_c03117{word-spacing:-0.719712px;}
.ws15_c03117{word-spacing:-0.118800px;}
.ws18_c03117{word-spacing:-0.099792px;}
.ws19_c03117{word-spacing:-0.085536px;}
.ws14_c03117{word-spacing:0.000000px;}
.ws17_c03117{word-spacing:0.836352px;}
.wsc_c03117{word-spacing:4.999104px;}
.ws11_c03117{word-spacing:7.964352px;}
.ws12_c03117{word-spacing:9.356688px;}
.ws10_c03117{word-spacing:30.298752px;}
.wsa_c03117{word-spacing:33.300288px;}
.wsf_c03117{word-spacing:36.143712px;}
.ws1_c03117{word-spacing:37.759392px;}
.ws0_c03117{word-spacing:38.020752px;}
.ws3_c03117{word-spacing:39.218256px;}
.ws5_c03117{word-spacing:39.902544px;}
.ws7_c03117{word-spacing:42.026688px;}
._0_c03117{margin-left:-1.948320px;}
._2_c03117{width:1.482624px;}
._4_c03117{width:3.302640px;}
._8_c03117{width:19.193328px;}
._6_c03117{width:20.913552px;}
._5_c03117{width:24.163920px;}
._7_c03117{width:27.704160px;}
._1_c03117{width:50.252400px;}
._3_c03117{width:51.530688px;}
.fc0_c03117{color:rgb(0,0,0);}
.fs0_c03117{font-size:47.520000px;}
.fs1_c03117{font-size:60.480000px;}
.y0_c03117{bottom:0.000000px;}
.y19_c03117{bottom:146.998362px;}
.y1d_c03117{bottom:165.001206px;}
.y1c_c03117{bottom:179.760918px;}
.y1b_c03117{bottom:186.600234px;}
.y1a_c03117{bottom:196.320450px;}
.y18_c03117{bottom:275.878542px;}
.y17_c03117{bottom:356.878758px;}
.y15_c03117{bottom:406.559730px;}
.y11_c03117{bottom:424.560306px;}
.y16_c03117{bottom:458.759262px;}
.y14_c03117{bottom:491.879514px;}
.y13_c03117{bottom:509.880090px;}
.y10_c03117{bottom:543.000342px;}
.y12_c03117{bottom:559.559874px;}
.yf_c03117{bottom:577.560450px;}
.y1e_c03117{bottom:614.280450px;}
.yb_c03117{bottom:667.558326px;}
.yd_c03117{bottom:707.160234px;}
.yc_c03117{bottom:716.880450px;}
.ya_c03117{bottom:796.438506px;}
.y9_c03117{bottom:877.438722px;}
.y7_c03117{bottom:926.759730px;}
.y3_c03117{bottom:944.760306px;}
.y8_c03117{bottom:979.319226px;}
.y6_c03117{bottom:1012.439478px;}
.y5_c03117{bottom:1030.440054px;}
.y2_c03117{bottom:1063.560306px;}
.y4_c03117{bottom:1079.759874px;}
.y1_c03117{bottom:1097.760450px;}
.ye_c03117{bottom:1134.840450px;}
.h3_c03117{height:32.530781px;}
.h1_c03117{height:41.696016px;}
.h2_c03117{height:41.812031px;}
.h4_c03117{height:54.654737px;}
.h5_c03117{height:74.817456px;}
.h0_c03117{height:1263.000000px;}
.w1_c03117{width:892.500000px;}
.w0_c03117{width:892.830000px;}
.x0_c03117{left:0.000000px;}
.xd_c03117{left:117.000000px;}
.x8_c03117{left:440.999856px;}
.x4_c03117{left:445.680576px;}
.xb_c03117{left:451.080000px;}
.x7_c03117{left:455.399604px;}
.x5_c03117{left:461.880144px;}
.x1_c03117{left:463.320000px;}
.xa_c03117{left:483.480360px;}
.x9_c03117{left:492.119496px;}
.x6_c03117{left:493.200576px;}
.xc_c03117{left:506.880360px;}
.x3_c03117{left:511.919892px;}
.x2_c03117{left:526.679604px;}
.xe_c03117{left:569.880000px;}
@media print{
.v0_c03117{vertical-align:0.000000pt;}
.v1_c03117{vertical-align:1.279488pt;}
.v2_c03117{vertical-align:29.441280pt;}
.lsc_c03117{letter-spacing:-1.064448pt;}
.ls7_c03117{letter-spacing:-0.544896pt;}
.ls9_c03117{letter-spacing:-0.511104pt;}
.ls15_c03117{letter-spacing:-0.274560pt;}
.lsf_c03117{letter-spacing:-0.244992pt;}
.lsd_c03117{letter-spacing:-0.232320pt;}
.ls6_c03117{letter-spacing:-0.215424pt;}
.ls4_c03117{letter-spacing:-0.105600pt;}
.ls12_c03117{letter-spacing:0.000000pt;}
.ls1_c03117{letter-spacing:0.005376pt;}
.ls5_c03117{letter-spacing:0.114048pt;}
.lsb_c03117{letter-spacing:0.451968pt;}
.ls11_c03117{letter-spacing:0.456960pt;}
.lse_c03117{letter-spacing:0.477312pt;}
.ls13_c03117{letter-spacing:0.498432pt;}
.lsa_c03117{letter-spacing:0.515328pt;}
.ls10_c03117{letter-spacing:0.528000pt;}
.ls8_c03117{letter-spacing:0.532224pt;}
.ls2_c03117{letter-spacing:0.544896pt;}
.ls14_c03117{letter-spacing:0.578688pt;}
.ls3_c03117{letter-spacing:0.637824pt;}
.ls0_c03117{letter-spacing:0.642048pt;}
.wsb_c03117{word-spacing:-13.445376pt;}
.ws9_c03117{word-spacing:-11.088000pt;}
.ws6_c03117{word-spacing:-11.075328pt;}
.ws8_c03117{word-spacing:-11.037312pt;}
.wse_c03117{word-spacing:-11.011968pt;}
.ws4_c03117{word-spacing:-10.344576pt;}
.wsd_c03117{word-spacing:-10.048896pt;}
.ws2_c03117{word-spacing:-10.015104pt;}
.ws16_c03117{word-spacing:-0.963072pt;}
.ws1c_c03117{word-spacing:-0.899712pt;}
.ws13_c03117{word-spacing:-0.865920pt;}
.ws1b_c03117{word-spacing:-0.819456pt;}
.ws1a_c03117{word-spacing:-0.639744pt;}
.ws15_c03117{word-spacing:-0.105600pt;}
.ws18_c03117{word-spacing:-0.088704pt;}
.ws19_c03117{word-spacing:-0.076032pt;}
.ws14_c03117{word-spacing:0.000000pt;}
.ws17_c03117{word-spacing:0.743424pt;}
.wsc_c03117{word-spacing:4.443648pt;}
.ws11_c03117{word-spacing:7.079424pt;}
.ws12_c03117{word-spacing:8.317056pt;}
.ws10_c03117{word-spacing:26.932224pt;}
.wsa_c03117{word-spacing:29.600256pt;}
.wsf_c03117{word-spacing:32.127744pt;}
.ws1_c03117{word-spacing:33.563904pt;}
.ws0_c03117{word-spacing:33.796224pt;}
.ws3_c03117{word-spacing:34.860672pt;}
.ws5_c03117{word-spacing:35.468928pt;}
.ws7_c03117{word-spacing:37.357056pt;}
._0_c03117{margin-left:-1.731840pt;}
._2_c03117{width:1.317888pt;}
._4_c03117{width:2.935680pt;}
._8_c03117{width:17.060736pt;}
._6_c03117{width:18.589824pt;}
._5_c03117{width:21.479040pt;}
._7_c03117{width:24.625920pt;}
._1_c03117{width:44.668800pt;}
._3_c03117{width:45.805056pt;}
.fs0_c03117{font-size:42.240000pt;}
.fs1_c03117{font-size:53.760000pt;}
.y0_c03117{bottom:0.000000pt;}
.y19_c03117{bottom:130.665211pt;}
.y1d_c03117{bottom:146.667739pt;}
.y1c_c03117{bottom:159.787483pt;}
.y1b_c03117{bottom:165.866875pt;}
.y1a_c03117{bottom:174.507067pt;}
.y18_c03117{bottom:245.225371pt;}
.y17_c03117{bottom:317.225563pt;}
.y15_c03117{bottom:361.386427pt;}
.y11_c03117{bottom:377.386939pt;}
.y16_c03117{bottom:407.786011pt;}
.y14_c03117{bottom:437.226235pt;}
.y13_c03117{bottom:453.226747pt;}
.y10_c03117{bottom:482.666971pt;}
.y12_c03117{bottom:497.386555pt;}
.yf_c03117{bottom:513.387067pt;}
.y1e_c03117{bottom:546.027067pt;}
.yb_c03117{bottom:593.385179pt;}
.yd_c03117{bottom:628.586875pt;}
.yc_c03117{bottom:637.227067pt;}
.ya_c03117{bottom:707.945339pt;}
.y9_c03117{bottom:779.945531pt;}
.y7_c03117{bottom:823.786427pt;}
.y3_c03117{bottom:839.786939pt;}
.y8_c03117{bottom:870.505979pt;}
.y6_c03117{bottom:899.946203pt;}
.y5_c03117{bottom:915.946715pt;}
.y2_c03117{bottom:945.386939pt;}
.y4_c03117{bottom:959.786555pt;}
.y1_c03117{bottom:975.787067pt;}
.ye_c03117{bottom:1008.747067pt;}
.h3_c03117{height:28.916250pt;}
.h1_c03117{height:37.063125pt;}
.h2_c03117{height:37.166250pt;}
.h4_c03117{height:48.581988pt;}
.h5_c03117{height:66.504405pt;}
.h0_c03117{height:1122.666667pt;}
.w1_c03117{width:793.333333pt;}
.w0_c03117{width:793.626667pt;}
.x0_c03117{left:0.000000pt;}
.xd_c03117{left:104.000000pt;}
.x8_c03117{left:391.999872pt;}
.x4_c03117{left:396.160512pt;}
.xb_c03117{left:400.960000pt;}
.x7_c03117{left:404.799648pt;}
.x5_c03117{left:410.560128pt;}
.x1_c03117{left:411.840000pt;}
.xa_c03117{left:429.760320pt;}
.x9_c03117{left:437.439552pt;}
.x6_c03117{left:438.400512pt;}
.xc_c03117{left:450.560320pt;}
.x3_c03117{left:455.039904pt;}
.x2_c03117{left:468.159648pt;}
.xe_c03117{left:506.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03118 {
    display:none;
  }
  .loading-indicator_c03118.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03118 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03118 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03118" -> "#page-container .classname_c03118")
 */
.pf_c03118 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03118 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03118.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03118 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03118 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03118 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03118 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03118 {overflow:visible;}
  }
}
.c_c03118 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03118 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03118:after { /* webkit #35443 */
  content: '';
}
.t_c03118:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03118 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03118 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03118 { /* info for Javascript */
  display:none;
}
.l_c03118 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03118 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03118 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03118:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03118 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03118.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03118.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03118 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03118{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03118;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03118{font-family:ff1_c03118;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03118;src:url('chunks/assets/font_47314862818f055fbc955db0.woff2')format("woff");}.ff2_c03118{font-family:ff2_c03118;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03118;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03118{font-family:ff3_c03118;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03118{vertical-align:0.000000px;}
.v1_c03118{vertical-align:1.439424px;}
.lsc_c03118{letter-spacing:-1.197504px;}
.ls6_c03118{letter-spacing:-0.613008px;}
.ls8_c03118{letter-spacing:-0.574992px;}
.ls9_c03118{letter-spacing:-0.361152px;}
.lsf_c03118{letter-spacing:-0.275616px;}
.lsd_c03118{letter-spacing:-0.261360px;}
.ls5_c03118{letter-spacing:-0.242352px;}
.ls3_c03118{letter-spacing:-0.118800px;}
.ls12_c03118{letter-spacing:0.000000px;}
.ls0_c03118{letter-spacing:0.006048px;}
.ls4_c03118{letter-spacing:0.128304px;}
.lsb_c03118{letter-spacing:0.508464px;}
.ls11_c03118{letter-spacing:0.514080px;}
.lse_c03118{letter-spacing:0.536976px;}
.lsa_c03118{letter-spacing:0.579744px;}
.ls10_c03118{letter-spacing:0.594000px;}
.ls7_c03118{letter-spacing:0.598752px;}
.ls2_c03118{letter-spacing:0.613008px;}
.ls1_c03118{letter-spacing:0.717552px;}
.sc__c03118{text-shadow:none;}
.sc0_c03118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03118{-webkit-text-stroke:0px transparent;}
.sc0_c03118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03118{word-spacing:-15.126048px;}
.wsa_c03118{word-spacing:-12.474000px;}
.ws8_c03118{word-spacing:-12.459744px;}
.ws9_c03118{word-spacing:-12.416976px;}
.ws4_c03118{word-spacing:-11.637648px;}
.ws2_c03118{word-spacing:-11.266992px;}
.ws14_c03118{word-spacing:-1.078704px;}
.wsd_c03118{word-spacing:-0.974160px;}
.ws13_c03118{word-spacing:-0.719712px;}
.wsf_c03118{word-spacing:-0.118800px;}
.ws11_c03118{word-spacing:-0.099792px;}
.ws12_c03118{word-spacing:-0.085536px;}
.wse_c03118{word-spacing:0.000000px;}
.ws10_c03118{word-spacing:0.836352px;}
.wsb_c03118{word-spacing:33.300288px;}
.ws6_c03118{word-spacing:36.742464px;}
.ws1_c03118{word-spacing:37.759392px;}
.ws0_c03118{word-spacing:38.020752px;}
.ws3_c03118{word-spacing:39.218256px;}
.ws5_c03118{word-spacing:39.902544px;}
.ws7_c03118{word-spacing:42.026688px;}
._0_c03118{margin-left:-1.948320px;}
._2_c03118{width:1.482624px;}
._4_c03118{width:3.302640px;}
._1_c03118{width:50.252400px;}
._3_c03118{width:51.530688px;}
.fc0_c03118{color:rgb(0,0,0);}
.fs0_c03118{font-size:47.520000px;}
.fs1_c03118{font-size:60.480000px;}
.y0_c03118{bottom:0.000000px;}
.y19_c03118{bottom:146.998362px;}
.y1b_c03118{bottom:186.600234px;}
.y1a_c03118{bottom:196.320450px;}
.y18_c03118{bottom:275.878542px;}
.y17_c03118{bottom:356.878758px;}
.y15_c03118{bottom:406.559730px;}
.y11_c03118{bottom:424.560306px;}
.y16_c03118{bottom:458.759262px;}
.y14_c03118{bottom:491.879514px;}
.y13_c03118{bottom:509.880090px;}
.y10_c03118{bottom:543.000342px;}
.y12_c03118{bottom:559.559874px;}
.yf_c03118{bottom:577.560450px;}
.y1c_c03118{bottom:614.280450px;}
.yb_c03118{bottom:667.558326px;}
.yd_c03118{bottom:707.160234px;}
.yc_c03118{bottom:716.880450px;}
.ya_c03118{bottom:796.438506px;}
.y9_c03118{bottom:877.438722px;}
.y7_c03118{bottom:926.759730px;}
.y3_c03118{bottom:944.760306px;}
.y8_c03118{bottom:979.319226px;}
.y6_c03118{bottom:1012.439478px;}
.y5_c03118{bottom:1030.440054px;}
.y2_c03118{bottom:1063.560306px;}
.y4_c03118{bottom:1079.759874px;}
.y1_c03118{bottom:1097.760450px;}
.ye_c03118{bottom:1134.840450px;}
.h3_c03118{height:32.530781px;}
.h1_c03118{height:41.696016px;}
.h2_c03118{height:41.812031px;}
.h4_c03118{height:54.654737px;}
.h0_c03118{height:1263.000000px;}
.w1_c03118{width:892.500000px;}
.w0_c03118{width:892.830000px;}
.x0_c03118{left:0.000000px;}
.xd_c03118{left:117.000000px;}
.x8_c03118{left:440.999856px;}
.x4_c03118{left:445.680576px;}
.xb_c03118{left:451.080000px;}
.x7_c03118{left:455.399604px;}
.x5_c03118{left:461.880144px;}
.x1_c03118{left:463.320000px;}
.xa_c03118{left:483.480360px;}
.x9_c03118{left:492.119496px;}
.x6_c03118{left:493.200576px;}
.xc_c03118{left:506.880360px;}
.x3_c03118{left:511.919892px;}
.x2_c03118{left:526.679604px;}
@media print{
.v0_c03118{vertical-align:0.000000pt;}
.v1_c03118{vertical-align:1.279488pt;}
.lsc_c03118{letter-spacing:-1.064448pt;}
.ls6_c03118{letter-spacing:-0.544896pt;}
.ls8_c03118{letter-spacing:-0.511104pt;}
.ls9_c03118{letter-spacing:-0.321024pt;}
.lsf_c03118{letter-spacing:-0.244992pt;}
.lsd_c03118{letter-spacing:-0.232320pt;}
.ls5_c03118{letter-spacing:-0.215424pt;}
.ls3_c03118{letter-spacing:-0.105600pt;}
.ls12_c03118{letter-spacing:0.000000pt;}
.ls0_c03118{letter-spacing:0.005376pt;}
.ls4_c03118{letter-spacing:0.114048pt;}
.lsb_c03118{letter-spacing:0.451968pt;}
.ls11_c03118{letter-spacing:0.456960pt;}
.lse_c03118{letter-spacing:0.477312pt;}
.lsa_c03118{letter-spacing:0.515328pt;}
.ls10_c03118{letter-spacing:0.528000pt;}
.ls7_c03118{letter-spacing:0.532224pt;}
.ls2_c03118{letter-spacing:0.544896pt;}
.ls1_c03118{letter-spacing:0.637824pt;}
.wsc_c03118{word-spacing:-13.445376pt;}
.wsa_c03118{word-spacing:-11.088000pt;}
.ws8_c03118{word-spacing:-11.075328pt;}
.ws9_c03118{word-spacing:-11.037312pt;}
.ws4_c03118{word-spacing:-10.344576pt;}
.ws2_c03118{word-spacing:-10.015104pt;}
.ws14_c03118{word-spacing:-0.958848pt;}
.wsd_c03118{word-spacing:-0.865920pt;}
.ws13_c03118{word-spacing:-0.639744pt;}
.wsf_c03118{word-spacing:-0.105600pt;}
.ws11_c03118{word-spacing:-0.088704pt;}
.ws12_c03118{word-spacing:-0.076032pt;}
.wse_c03118{word-spacing:0.000000pt;}
.ws10_c03118{word-spacing:0.743424pt;}
.wsb_c03118{word-spacing:29.600256pt;}
.ws6_c03118{word-spacing:32.659968pt;}
.ws1_c03118{word-spacing:33.563904pt;}
.ws0_c03118{word-spacing:33.796224pt;}
.ws3_c03118{word-spacing:34.860672pt;}
.ws5_c03118{word-spacing:35.468928pt;}
.ws7_c03118{word-spacing:37.357056pt;}
._0_c03118{margin-left:-1.731840pt;}
._2_c03118{width:1.317888pt;}
._4_c03118{width:2.935680pt;}
._1_c03118{width:44.668800pt;}
._3_c03118{width:45.805056pt;}
.fs0_c03118{font-size:42.240000pt;}
.fs1_c03118{font-size:53.760000pt;}
.y0_c03118{bottom:0.000000pt;}
.y19_c03118{bottom:130.665211pt;}
.y1b_c03118{bottom:165.866875pt;}
.y1a_c03118{bottom:174.507067pt;}
.y18_c03118{bottom:245.225371pt;}
.y17_c03118{bottom:317.225563pt;}
.y15_c03118{bottom:361.386427pt;}
.y11_c03118{bottom:377.386939pt;}
.y16_c03118{bottom:407.786011pt;}
.y14_c03118{bottom:437.226235pt;}
.y13_c03118{bottom:453.226747pt;}
.y10_c03118{bottom:482.666971pt;}
.y12_c03118{bottom:497.386555pt;}
.yf_c03118{bottom:513.387067pt;}
.y1c_c03118{bottom:546.027067pt;}
.yb_c03118{bottom:593.385179pt;}
.yd_c03118{bottom:628.586875pt;}
.yc_c03118{bottom:637.227067pt;}
.ya_c03118{bottom:707.945339pt;}
.y9_c03118{bottom:779.945531pt;}
.y7_c03118{bottom:823.786427pt;}
.y3_c03118{bottom:839.786939pt;}
.y8_c03118{bottom:870.505979pt;}
.y6_c03118{bottom:899.946203pt;}
.y5_c03118{bottom:915.946715pt;}
.y2_c03118{bottom:945.386939pt;}
.y4_c03118{bottom:959.786555pt;}
.y1_c03118{bottom:975.787067pt;}
.ye_c03118{bottom:1008.747067pt;}
.h3_c03118{height:28.916250pt;}
.h1_c03118{height:37.063125pt;}
.h2_c03118{height:37.166250pt;}
.h4_c03118{height:48.581988pt;}
.h0_c03118{height:1122.666667pt;}
.w1_c03118{width:793.333333pt;}
.w0_c03118{width:793.626667pt;}
.x0_c03118{left:0.000000pt;}
.xd_c03118{left:104.000000pt;}
.x8_c03118{left:391.999872pt;}
.x4_c03118{left:396.160512pt;}
.xb_c03118{left:400.960000pt;}
.x7_c03118{left:404.799648pt;}
.x5_c03118{left:410.560128pt;}
.x1_c03118{left:411.840000pt;}
.xa_c03118{left:429.760320pt;}
.x9_c03118{left:437.439552pt;}
.x6_c03118{left:438.400512pt;}
.xc_c03118{left:450.560320pt;}
.x3_c03118{left:455.039904pt;}
.x2_c03118{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03119 {
    display:none;
  }
  .loading-indicator_c03119.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03119 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03119 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03119" -> "#page-container .classname_c03119")
 */
.pf_c03119 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03119 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03119.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03119 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03119 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03119 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03119 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03119 {overflow:visible;}
  }
}
.c_c03119 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03119 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03119:after { /* webkit #35443 */
  content: '';
}
.t_c03119:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03119 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03119 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03119 { /* info for Javascript */
  display:none;
}
.l_c03119 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03119 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03119 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03119:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03119 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03119.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03119.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03119 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03119{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03119;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03119{font-family:ff1_c03119;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03119;src:url('chunks/assets/font_19bd125fe45397d5a623193c.woff2')format("woff");}.ff2_c03119{font-family:ff2_c03119;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03119;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03119{font-family:ff3_c03119;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03119{vertical-align:0.000000px;}
.v1_c03119{vertical-align:1.439424px;}
.lsb_c03119{letter-spacing:-1.197504px;}
.ls6_c03119{letter-spacing:-0.613008px;}
.ls8_c03119{letter-spacing:-0.574992px;}
.lse_c03119{letter-spacing:-0.275616px;}
.lsc_c03119{letter-spacing:-0.261360px;}
.ls5_c03119{letter-spacing:-0.242352px;}
.ls3_c03119{letter-spacing:-0.118800px;}
.ls11_c03119{letter-spacing:0.000000px;}
.ls1_c03119{letter-spacing:0.006048px;}
.ls4_c03119{letter-spacing:0.128304px;}
.lsa_c03119{letter-spacing:0.508464px;}
.ls10_c03119{letter-spacing:0.514080px;}
.lsd_c03119{letter-spacing:0.536976px;}
.ls9_c03119{letter-spacing:0.579744px;}
.lsf_c03119{letter-spacing:0.594000px;}
.ls7_c03119{letter-spacing:0.598752px;}
.ls2_c03119{letter-spacing:0.613008px;}
.ls0_c03119{letter-spacing:0.717552px;}
.sc__c03119{text-shadow:none;}
.sc0_c03119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03119{-webkit-text-stroke:0px transparent;}
.sc0_c03119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03119{word-spacing:-15.126048px;}
.wsa_c03119{word-spacing:-12.474000px;}
.ws8_c03119{word-spacing:-12.459744px;}
.ws9_c03119{word-spacing:-12.416976px;}
.ws4_c03119{word-spacing:-11.637648px;}
.ws2_c03119{word-spacing:-11.266992px;}
.ws10_c03119{word-spacing:-1.078704px;}
.wsd_c03119{word-spacing:-0.974160px;}
.ws14_c03119{word-spacing:-0.719712px;}
.wsf_c03119{word-spacing:-0.118800px;}
.ws12_c03119{word-spacing:-0.099792px;}
.ws13_c03119{word-spacing:-0.085536px;}
.wse_c03119{word-spacing:0.000000px;}
.ws11_c03119{word-spacing:0.836352px;}
.wsb_c03119{word-spacing:33.300288px;}
.ws6_c03119{word-spacing:36.742464px;}
.ws1_c03119{word-spacing:37.759392px;}
.ws0_c03119{word-spacing:38.020752px;}
.ws3_c03119{word-spacing:39.218256px;}
.ws5_c03119{word-spacing:39.902544px;}
.ws7_c03119{word-spacing:42.026688px;}
._0_c03119{margin-left:-1.948320px;}
._2_c03119{width:1.482624px;}
._4_c03119{width:3.302640px;}
._1_c03119{width:50.252400px;}
._3_c03119{width:51.530688px;}
.fc0_c03119{color:rgb(0,0,0);}
.fs0_c03119{font-size:47.520000px;}
.fs1_c03119{font-size:60.480000px;}
.y0_c03119{bottom:0.000000px;}
.y19_c03119{bottom:146.998362px;}
.y1b_c03119{bottom:186.600234px;}
.y1a_c03119{bottom:196.320450px;}
.y18_c03119{bottom:275.878542px;}
.y17_c03119{bottom:356.878758px;}
.y15_c03119{bottom:406.559730px;}
.y11_c03119{bottom:424.560306px;}
.y16_c03119{bottom:458.759262px;}
.y14_c03119{bottom:491.879514px;}
.y13_c03119{bottom:509.880090px;}
.y10_c03119{bottom:543.000342px;}
.y12_c03119{bottom:559.559874px;}
.yf_c03119{bottom:577.560450px;}
.y1c_c03119{bottom:614.280450px;}
.yb_c03119{bottom:667.558326px;}
.yd_c03119{bottom:707.160234px;}
.yc_c03119{bottom:716.880450px;}
.ya_c03119{bottom:796.438506px;}
.y9_c03119{bottom:877.438722px;}
.y7_c03119{bottom:926.759730px;}
.y3_c03119{bottom:944.760306px;}
.y8_c03119{bottom:979.319226px;}
.y6_c03119{bottom:1012.439478px;}
.y5_c03119{bottom:1030.440054px;}
.y2_c03119{bottom:1063.560306px;}
.y4_c03119{bottom:1079.759874px;}
.y1_c03119{bottom:1097.760450px;}
.ye_c03119{bottom:1134.840450px;}
.h3_c03119{height:32.530781px;}
.h1_c03119{height:41.696016px;}
.h2_c03119{height:41.812031px;}
.h4_c03119{height:54.654737px;}
.h0_c03119{height:1263.000000px;}
.w1_c03119{width:892.500000px;}
.w0_c03119{width:892.830000px;}
.x0_c03119{left:0.000000px;}
.xd_c03119{left:117.000000px;}
.x8_c03119{left:440.999856px;}
.x4_c03119{left:445.680576px;}
.xb_c03119{left:451.080000px;}
.x7_c03119{left:455.399604px;}
.x5_c03119{left:461.880144px;}
.x1_c03119{left:463.320000px;}
.xa_c03119{left:483.480360px;}
.x9_c03119{left:492.119496px;}
.x6_c03119{left:493.200576px;}
.xc_c03119{left:506.880360px;}
.x3_c03119{left:511.919892px;}
.x2_c03119{left:526.679604px;}
@media print{
.v0_c03119{vertical-align:0.000000pt;}
.v1_c03119{vertical-align:1.279488pt;}
.lsb_c03119{letter-spacing:-1.064448pt;}
.ls6_c03119{letter-spacing:-0.544896pt;}
.ls8_c03119{letter-spacing:-0.511104pt;}
.lse_c03119{letter-spacing:-0.244992pt;}
.lsc_c03119{letter-spacing:-0.232320pt;}
.ls5_c03119{letter-spacing:-0.215424pt;}
.ls3_c03119{letter-spacing:-0.105600pt;}
.ls11_c03119{letter-spacing:0.000000pt;}
.ls1_c03119{letter-spacing:0.005376pt;}
.ls4_c03119{letter-spacing:0.114048pt;}
.lsa_c03119{letter-spacing:0.451968pt;}
.ls10_c03119{letter-spacing:0.456960pt;}
.lsd_c03119{letter-spacing:0.477312pt;}
.ls9_c03119{letter-spacing:0.515328pt;}
.lsf_c03119{letter-spacing:0.528000pt;}
.ls7_c03119{letter-spacing:0.532224pt;}
.ls2_c03119{letter-spacing:0.544896pt;}
.ls0_c03119{letter-spacing:0.637824pt;}
.wsc_c03119{word-spacing:-13.445376pt;}
.wsa_c03119{word-spacing:-11.088000pt;}
.ws8_c03119{word-spacing:-11.075328pt;}
.ws9_c03119{word-spacing:-11.037312pt;}
.ws4_c03119{word-spacing:-10.344576pt;}
.ws2_c03119{word-spacing:-10.015104pt;}
.ws10_c03119{word-spacing:-0.958848pt;}
.wsd_c03119{word-spacing:-0.865920pt;}
.ws14_c03119{word-spacing:-0.639744pt;}
.wsf_c03119{word-spacing:-0.105600pt;}
.ws12_c03119{word-spacing:-0.088704pt;}
.ws13_c03119{word-spacing:-0.076032pt;}
.wse_c03119{word-spacing:0.000000pt;}
.ws11_c03119{word-spacing:0.743424pt;}
.wsb_c03119{word-spacing:29.600256pt;}
.ws6_c03119{word-spacing:32.659968pt;}
.ws1_c03119{word-spacing:33.563904pt;}
.ws0_c03119{word-spacing:33.796224pt;}
.ws3_c03119{word-spacing:34.860672pt;}
.ws5_c03119{word-spacing:35.468928pt;}
.ws7_c03119{word-spacing:37.357056pt;}
._0_c03119{margin-left:-1.731840pt;}
._2_c03119{width:1.317888pt;}
._4_c03119{width:2.935680pt;}
._1_c03119{width:44.668800pt;}
._3_c03119{width:45.805056pt;}
.fs0_c03119{font-size:42.240000pt;}
.fs1_c03119{font-size:53.760000pt;}
.y0_c03119{bottom:0.000000pt;}
.y19_c03119{bottom:130.665211pt;}
.y1b_c03119{bottom:165.866875pt;}
.y1a_c03119{bottom:174.507067pt;}
.y18_c03119{bottom:245.225371pt;}
.y17_c03119{bottom:317.225563pt;}
.y15_c03119{bottom:361.386427pt;}
.y11_c03119{bottom:377.386939pt;}
.y16_c03119{bottom:407.786011pt;}
.y14_c03119{bottom:437.226235pt;}
.y13_c03119{bottom:453.226747pt;}
.y10_c03119{bottom:482.666971pt;}
.y12_c03119{bottom:497.386555pt;}
.yf_c03119{bottom:513.387067pt;}
.y1c_c03119{bottom:546.027067pt;}
.yb_c03119{bottom:593.385179pt;}
.yd_c03119{bottom:628.586875pt;}
.yc_c03119{bottom:637.227067pt;}
.ya_c03119{bottom:707.945339pt;}
.y9_c03119{bottom:779.945531pt;}
.y7_c03119{bottom:823.786427pt;}
.y3_c03119{bottom:839.786939pt;}
.y8_c03119{bottom:870.505979pt;}
.y6_c03119{bottom:899.946203pt;}
.y5_c03119{bottom:915.946715pt;}
.y2_c03119{bottom:945.386939pt;}
.y4_c03119{bottom:959.786555pt;}
.y1_c03119{bottom:975.787067pt;}
.ye_c03119{bottom:1008.747067pt;}
.h3_c03119{height:28.916250pt;}
.h1_c03119{height:37.063125pt;}
.h2_c03119{height:37.166250pt;}
.h4_c03119{height:48.581988pt;}
.h0_c03119{height:1122.666667pt;}
.w1_c03119{width:793.333333pt;}
.w0_c03119{width:793.626667pt;}
.x0_c03119{left:0.000000pt;}
.xd_c03119{left:104.000000pt;}
.x8_c03119{left:391.999872pt;}
.x4_c03119{left:396.160512pt;}
.xb_c03119{left:400.960000pt;}
.x7_c03119{left:404.799648pt;}
.x5_c03119{left:410.560128pt;}
.x1_c03119{left:411.840000pt;}
.xa_c03119{left:429.760320pt;}
.x9_c03119{left:437.439552pt;}
.x6_c03119{left:438.400512pt;}
.xc_c03119{left:450.560320pt;}
.x3_c03119{left:455.039904pt;}
.x2_c03119{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03120 {
    display:none;
  }
  .loading-indicator_c03120.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03120 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03120 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03120" -> "#page-container .classname_c03120")
 */
.pf_c03120 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03120 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03120.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03120 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03120 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03120 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03120 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03120 {overflow:visible;}
  }
}
.c_c03120 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03120 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03120:after { /* webkit #35443 */
  content: '';
}
.t_c03120:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03120 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03120 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03120 { /* info for Javascript */
  display:none;
}
.l_c03120 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03120 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03120 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03120:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03120 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03120.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03120.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03120 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03120{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03120;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03120{font-family:ff1_c03120;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03120;src:url('chunks/assets/font_7d254542553ba2c96e6e9d36.woff2')format("woff");}.ff2_c03120{font-family:ff2_c03120;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03120;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03120{font-family:ff3_c03120;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03120{vertical-align:0.000000px;}
.v1_c03120{vertical-align:1.439424px;}
.lsb_c03120{letter-spacing:-1.197504px;}
.ls6_c03120{letter-spacing:-0.613008px;}
.ls8_c03120{letter-spacing:-0.574992px;}
.lse_c03120{letter-spacing:-0.275616px;}
.lsc_c03120{letter-spacing:-0.261360px;}
.ls5_c03120{letter-spacing:-0.242352px;}
.ls3_c03120{letter-spacing:-0.118800px;}
.ls11_c03120{letter-spacing:0.000000px;}
.ls1_c03120{letter-spacing:0.006048px;}
.ls4_c03120{letter-spacing:0.128304px;}
.lsa_c03120{letter-spacing:0.508464px;}
.ls10_c03120{letter-spacing:0.514080px;}
.lsd_c03120{letter-spacing:0.536976px;}
.ls9_c03120{letter-spacing:0.579744px;}
.lsf_c03120{letter-spacing:0.594000px;}
.ls7_c03120{letter-spacing:0.598752px;}
.ls2_c03120{letter-spacing:0.613008px;}
.ls0_c03120{letter-spacing:0.717552px;}
.sc__c03120{text-shadow:none;}
.sc0_c03120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03120{-webkit-text-stroke:0px transparent;}
.sc0_c03120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03120{word-spacing:-15.126048px;}
.wsa_c03120{word-spacing:-12.474000px;}
.ws8_c03120{word-spacing:-12.459744px;}
.ws9_c03120{word-spacing:-12.416976px;}
.ws4_c03120{word-spacing:-11.637648px;}
.ws2_c03120{word-spacing:-11.266992px;}
.ws10_c03120{word-spacing:-1.078704px;}
.wsd_c03120{word-spacing:-0.974160px;}
.ws14_c03120{word-spacing:-0.719712px;}
.wsf_c03120{word-spacing:-0.118800px;}
.ws12_c03120{word-spacing:-0.099792px;}
.ws13_c03120{word-spacing:-0.085536px;}
.wse_c03120{word-spacing:0.000000px;}
.ws11_c03120{word-spacing:0.836352px;}
.wsb_c03120{word-spacing:33.300288px;}
.ws6_c03120{word-spacing:36.742464px;}
.ws1_c03120{word-spacing:37.759392px;}
.ws0_c03120{word-spacing:38.020752px;}
.ws3_c03120{word-spacing:39.218256px;}
.ws5_c03120{word-spacing:39.902544px;}
.ws7_c03120{word-spacing:42.026688px;}
._0_c03120{margin-left:-1.948320px;}
._2_c03120{width:1.482624px;}
._4_c03120{width:3.302640px;}
._1_c03120{width:50.252400px;}
._3_c03120{width:51.530688px;}
.fc0_c03120{color:rgb(0,0,0);}
.fs0_c03120{font-size:47.520000px;}
.fs1_c03120{font-size:60.480000px;}
.y0_c03120{bottom:0.000000px;}
.y19_c03120{bottom:146.998362px;}
.y1b_c03120{bottom:186.600234px;}
.y1a_c03120{bottom:196.320450px;}
.y18_c03120{bottom:275.878542px;}
.y17_c03120{bottom:356.878758px;}
.y15_c03120{bottom:406.559730px;}
.y11_c03120{bottom:424.560306px;}
.y16_c03120{bottom:458.759262px;}
.y14_c03120{bottom:491.879514px;}
.y13_c03120{bottom:509.880090px;}
.y10_c03120{bottom:543.000342px;}
.y12_c03120{bottom:559.559874px;}
.yf_c03120{bottom:577.560450px;}
.y1c_c03120{bottom:614.280450px;}
.yb_c03120{bottom:667.558326px;}
.yd_c03120{bottom:707.160234px;}
.yc_c03120{bottom:716.880450px;}
.ya_c03120{bottom:796.438506px;}
.y9_c03120{bottom:877.438722px;}
.y7_c03120{bottom:926.759730px;}
.y3_c03120{bottom:944.760306px;}
.y8_c03120{bottom:979.319226px;}
.y6_c03120{bottom:1012.439478px;}
.y5_c03120{bottom:1030.440054px;}
.y2_c03120{bottom:1063.560306px;}
.y4_c03120{bottom:1079.759874px;}
.y1_c03120{bottom:1097.760450px;}
.ye_c03120{bottom:1134.840450px;}
.h3_c03120{height:32.530781px;}
.h1_c03120{height:41.696016px;}
.h2_c03120{height:41.812031px;}
.h4_c03120{height:54.654737px;}
.h0_c03120{height:1263.000000px;}
.w1_c03120{width:892.500000px;}
.w0_c03120{width:892.830000px;}
.x0_c03120{left:0.000000px;}
.xd_c03120{left:117.000000px;}
.x8_c03120{left:440.999856px;}
.x4_c03120{left:445.680576px;}
.xb_c03120{left:451.080000px;}
.x7_c03120{left:455.399604px;}
.x5_c03120{left:461.880144px;}
.x1_c03120{left:463.320000px;}
.xa_c03120{left:483.480360px;}
.x9_c03120{left:492.119496px;}
.x6_c03120{left:493.200576px;}
.xc_c03120{left:506.880360px;}
.x3_c03120{left:511.919892px;}
.x2_c03120{left:526.679604px;}
@media print{
.v0_c03120{vertical-align:0.000000pt;}
.v1_c03120{vertical-align:1.279488pt;}
.lsb_c03120{letter-spacing:-1.064448pt;}
.ls6_c03120{letter-spacing:-0.544896pt;}
.ls8_c03120{letter-spacing:-0.511104pt;}
.lse_c03120{letter-spacing:-0.244992pt;}
.lsc_c03120{letter-spacing:-0.232320pt;}
.ls5_c03120{letter-spacing:-0.215424pt;}
.ls3_c03120{letter-spacing:-0.105600pt;}
.ls11_c03120{letter-spacing:0.000000pt;}
.ls1_c03120{letter-spacing:0.005376pt;}
.ls4_c03120{letter-spacing:0.114048pt;}
.lsa_c03120{letter-spacing:0.451968pt;}
.ls10_c03120{letter-spacing:0.456960pt;}
.lsd_c03120{letter-spacing:0.477312pt;}
.ls9_c03120{letter-spacing:0.515328pt;}
.lsf_c03120{letter-spacing:0.528000pt;}
.ls7_c03120{letter-spacing:0.532224pt;}
.ls2_c03120{letter-spacing:0.544896pt;}
.ls0_c03120{letter-spacing:0.637824pt;}
.wsc_c03120{word-spacing:-13.445376pt;}
.wsa_c03120{word-spacing:-11.088000pt;}
.ws8_c03120{word-spacing:-11.075328pt;}
.ws9_c03120{word-spacing:-11.037312pt;}
.ws4_c03120{word-spacing:-10.344576pt;}
.ws2_c03120{word-spacing:-10.015104pt;}
.ws10_c03120{word-spacing:-0.958848pt;}
.wsd_c03120{word-spacing:-0.865920pt;}
.ws14_c03120{word-spacing:-0.639744pt;}
.wsf_c03120{word-spacing:-0.105600pt;}
.ws12_c03120{word-spacing:-0.088704pt;}
.ws13_c03120{word-spacing:-0.076032pt;}
.wse_c03120{word-spacing:0.000000pt;}
.ws11_c03120{word-spacing:0.743424pt;}
.wsb_c03120{word-spacing:29.600256pt;}
.ws6_c03120{word-spacing:32.659968pt;}
.ws1_c03120{word-spacing:33.563904pt;}
.ws0_c03120{word-spacing:33.796224pt;}
.ws3_c03120{word-spacing:34.860672pt;}
.ws5_c03120{word-spacing:35.468928pt;}
.ws7_c03120{word-spacing:37.357056pt;}
._0_c03120{margin-left:-1.731840pt;}
._2_c03120{width:1.317888pt;}
._4_c03120{width:2.935680pt;}
._1_c03120{width:44.668800pt;}
._3_c03120{width:45.805056pt;}
.fs0_c03120{font-size:42.240000pt;}
.fs1_c03120{font-size:53.760000pt;}
.y0_c03120{bottom:0.000000pt;}
.y19_c03120{bottom:130.665211pt;}
.y1b_c03120{bottom:165.866875pt;}
.y1a_c03120{bottom:174.507067pt;}
.y18_c03120{bottom:245.225371pt;}
.y17_c03120{bottom:317.225563pt;}
.y15_c03120{bottom:361.386427pt;}
.y11_c03120{bottom:377.386939pt;}
.y16_c03120{bottom:407.786011pt;}
.y14_c03120{bottom:437.226235pt;}
.y13_c03120{bottom:453.226747pt;}
.y10_c03120{bottom:482.666971pt;}
.y12_c03120{bottom:497.386555pt;}
.yf_c03120{bottom:513.387067pt;}
.y1c_c03120{bottom:546.027067pt;}
.yb_c03120{bottom:593.385179pt;}
.yd_c03120{bottom:628.586875pt;}
.yc_c03120{bottom:637.227067pt;}
.ya_c03120{bottom:707.945339pt;}
.y9_c03120{bottom:779.945531pt;}
.y7_c03120{bottom:823.786427pt;}
.y3_c03120{bottom:839.786939pt;}
.y8_c03120{bottom:870.505979pt;}
.y6_c03120{bottom:899.946203pt;}
.y5_c03120{bottom:915.946715pt;}
.y2_c03120{bottom:945.386939pt;}
.y4_c03120{bottom:959.786555pt;}
.y1_c03120{bottom:975.787067pt;}
.ye_c03120{bottom:1008.747067pt;}
.h3_c03120{height:28.916250pt;}
.h1_c03120{height:37.063125pt;}
.h2_c03120{height:37.166250pt;}
.h4_c03120{height:48.581988pt;}
.h0_c03120{height:1122.666667pt;}
.w1_c03120{width:793.333333pt;}
.w0_c03120{width:793.626667pt;}
.x0_c03120{left:0.000000pt;}
.xd_c03120{left:104.000000pt;}
.x8_c03120{left:391.999872pt;}
.x4_c03120{left:396.160512pt;}
.xb_c03120{left:400.960000pt;}
.x7_c03120{left:404.799648pt;}
.x5_c03120{left:410.560128pt;}
.x1_c03120{left:411.840000pt;}
.xa_c03120{left:429.760320pt;}
.x9_c03120{left:437.439552pt;}
.x6_c03120{left:438.400512pt;}
.xc_c03120{left:450.560320pt;}
.x3_c03120{left:455.039904pt;}
.x2_c03120{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03121 {
    display:none;
  }
  .loading-indicator_c03121.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03121 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03121 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03121" -> "#page-container .classname_c03121")
 */
.pf_c03121 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03121 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03121.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03121 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03121 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03121 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03121 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03121 {overflow:visible;}
  }
}
.c_c03121 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03121 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03121:after { /* webkit #35443 */
  content: '';
}
.t_c03121:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03121 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03121 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03121 { /* info for Javascript */
  display:none;
}
.l_c03121 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03121 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03121 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03121:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03121 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03121.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03121.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03121 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03121{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03121;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03121{font-family:ff1_c03121;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03121;src:url('chunks/assets/font_b1ef2d9d92d55cee3612ad86.woff2')format("woff");}.ff2_c03121{font-family:ff2_c03121;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03121;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03121{font-family:ff3_c03121;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03121{vertical-align:0.000000px;}
.v1_c03121{vertical-align:1.439424px;}
.lsb_c03121{letter-spacing:-1.197504px;}
.ls6_c03121{letter-spacing:-0.613008px;}
.ls8_c03121{letter-spacing:-0.574992px;}
.lse_c03121{letter-spacing:-0.275616px;}
.lsc_c03121{letter-spacing:-0.261360px;}
.ls5_c03121{letter-spacing:-0.242352px;}
.ls3_c03121{letter-spacing:-0.118800px;}
.ls11_c03121{letter-spacing:0.000000px;}
.ls1_c03121{letter-spacing:0.006048px;}
.ls4_c03121{letter-spacing:0.128304px;}
.lsa_c03121{letter-spacing:0.508464px;}
.ls10_c03121{letter-spacing:0.514080px;}
.lsd_c03121{letter-spacing:0.536976px;}
.ls9_c03121{letter-spacing:0.579744px;}
.lsf_c03121{letter-spacing:0.594000px;}
.ls7_c03121{letter-spacing:0.598752px;}
.ls2_c03121{letter-spacing:0.613008px;}
.ls0_c03121{letter-spacing:0.717552px;}
.sc__c03121{text-shadow:none;}
.sc0_c03121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03121{-webkit-text-stroke:0px transparent;}
.sc0_c03121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03121{word-spacing:-15.126048px;}
.wsa_c03121{word-spacing:-12.474000px;}
.ws8_c03121{word-spacing:-12.459744px;}
.ws9_c03121{word-spacing:-12.416976px;}
.ws4_c03121{word-spacing:-11.637648px;}
.ws2_c03121{word-spacing:-11.266992px;}
.ws10_c03121{word-spacing:-1.078704px;}
.wsd_c03121{word-spacing:-0.974160px;}
.ws14_c03121{word-spacing:-0.719712px;}
.wsf_c03121{word-spacing:-0.118800px;}
.ws12_c03121{word-spacing:-0.099792px;}
.ws13_c03121{word-spacing:-0.085536px;}
.wse_c03121{word-spacing:0.000000px;}
.ws11_c03121{word-spacing:0.836352px;}
.wsb_c03121{word-spacing:33.300288px;}
.ws6_c03121{word-spacing:36.742464px;}
.ws1_c03121{word-spacing:37.759392px;}
.ws0_c03121{word-spacing:38.020752px;}
.ws3_c03121{word-spacing:39.218256px;}
.ws5_c03121{word-spacing:39.902544px;}
.ws7_c03121{word-spacing:42.026688px;}
._0_c03121{margin-left:-1.948320px;}
._2_c03121{width:1.482624px;}
._4_c03121{width:3.302640px;}
._1_c03121{width:50.252400px;}
._3_c03121{width:51.530688px;}
.fc0_c03121{color:rgb(0,0,0);}
.fs0_c03121{font-size:47.520000px;}
.fs1_c03121{font-size:60.480000px;}
.y0_c03121{bottom:0.000000px;}
.y19_c03121{bottom:146.998362px;}
.y1b_c03121{bottom:186.600234px;}
.y1a_c03121{bottom:196.320450px;}
.y18_c03121{bottom:275.878542px;}
.y17_c03121{bottom:356.878758px;}
.y15_c03121{bottom:406.559730px;}
.y11_c03121{bottom:424.560306px;}
.y16_c03121{bottom:458.759262px;}
.y14_c03121{bottom:491.879514px;}
.y13_c03121{bottom:509.880090px;}
.y10_c03121{bottom:543.000342px;}
.y12_c03121{bottom:559.559874px;}
.yf_c03121{bottom:577.560450px;}
.y1c_c03121{bottom:614.280450px;}
.yb_c03121{bottom:667.558326px;}
.yd_c03121{bottom:707.160234px;}
.yc_c03121{bottom:716.880450px;}
.ya_c03121{bottom:796.438506px;}
.y9_c03121{bottom:877.438722px;}
.y7_c03121{bottom:926.759730px;}
.y3_c03121{bottom:944.760306px;}
.y8_c03121{bottom:979.319226px;}
.y6_c03121{bottom:1012.439478px;}
.y5_c03121{bottom:1030.440054px;}
.y2_c03121{bottom:1063.560306px;}
.y4_c03121{bottom:1079.759874px;}
.y1_c03121{bottom:1097.760450px;}
.ye_c03121{bottom:1134.840450px;}
.h3_c03121{height:32.530781px;}
.h1_c03121{height:41.696016px;}
.h2_c03121{height:41.812031px;}
.h4_c03121{height:54.654737px;}
.h0_c03121{height:1263.000000px;}
.w1_c03121{width:892.500000px;}
.w0_c03121{width:892.830000px;}
.x0_c03121{left:0.000000px;}
.xd_c03121{left:117.000000px;}
.x8_c03121{left:440.999856px;}
.x4_c03121{left:445.680576px;}
.xb_c03121{left:451.080000px;}
.x7_c03121{left:455.399604px;}
.x5_c03121{left:461.880144px;}
.x1_c03121{left:463.320000px;}
.xa_c03121{left:483.480360px;}
.x9_c03121{left:492.119496px;}
.x6_c03121{left:493.200576px;}
.xc_c03121{left:506.880360px;}
.x3_c03121{left:511.919892px;}
.x2_c03121{left:526.679604px;}
@media print{
.v0_c03121{vertical-align:0.000000pt;}
.v1_c03121{vertical-align:1.279488pt;}
.lsb_c03121{letter-spacing:-1.064448pt;}
.ls6_c03121{letter-spacing:-0.544896pt;}
.ls8_c03121{letter-spacing:-0.511104pt;}
.lse_c03121{letter-spacing:-0.244992pt;}
.lsc_c03121{letter-spacing:-0.232320pt;}
.ls5_c03121{letter-spacing:-0.215424pt;}
.ls3_c03121{letter-spacing:-0.105600pt;}
.ls11_c03121{letter-spacing:0.000000pt;}
.ls1_c03121{letter-spacing:0.005376pt;}
.ls4_c03121{letter-spacing:0.114048pt;}
.lsa_c03121{letter-spacing:0.451968pt;}
.ls10_c03121{letter-spacing:0.456960pt;}
.lsd_c03121{letter-spacing:0.477312pt;}
.ls9_c03121{letter-spacing:0.515328pt;}
.lsf_c03121{letter-spacing:0.528000pt;}
.ls7_c03121{letter-spacing:0.532224pt;}
.ls2_c03121{letter-spacing:0.544896pt;}
.ls0_c03121{letter-spacing:0.637824pt;}
.wsc_c03121{word-spacing:-13.445376pt;}
.wsa_c03121{word-spacing:-11.088000pt;}
.ws8_c03121{word-spacing:-11.075328pt;}
.ws9_c03121{word-spacing:-11.037312pt;}
.ws4_c03121{word-spacing:-10.344576pt;}
.ws2_c03121{word-spacing:-10.015104pt;}
.ws10_c03121{word-spacing:-0.958848pt;}
.wsd_c03121{word-spacing:-0.865920pt;}
.ws14_c03121{word-spacing:-0.639744pt;}
.wsf_c03121{word-spacing:-0.105600pt;}
.ws12_c03121{word-spacing:-0.088704pt;}
.ws13_c03121{word-spacing:-0.076032pt;}
.wse_c03121{word-spacing:0.000000pt;}
.ws11_c03121{word-spacing:0.743424pt;}
.wsb_c03121{word-spacing:29.600256pt;}
.ws6_c03121{word-spacing:32.659968pt;}
.ws1_c03121{word-spacing:33.563904pt;}
.ws0_c03121{word-spacing:33.796224pt;}
.ws3_c03121{word-spacing:34.860672pt;}
.ws5_c03121{word-spacing:35.468928pt;}
.ws7_c03121{word-spacing:37.357056pt;}
._0_c03121{margin-left:-1.731840pt;}
._2_c03121{width:1.317888pt;}
._4_c03121{width:2.935680pt;}
._1_c03121{width:44.668800pt;}
._3_c03121{width:45.805056pt;}
.fs0_c03121{font-size:42.240000pt;}
.fs1_c03121{font-size:53.760000pt;}
.y0_c03121{bottom:0.000000pt;}
.y19_c03121{bottom:130.665211pt;}
.y1b_c03121{bottom:165.866875pt;}
.y1a_c03121{bottom:174.507067pt;}
.y18_c03121{bottom:245.225371pt;}
.y17_c03121{bottom:317.225563pt;}
.y15_c03121{bottom:361.386427pt;}
.y11_c03121{bottom:377.386939pt;}
.y16_c03121{bottom:407.786011pt;}
.y14_c03121{bottom:437.226235pt;}
.y13_c03121{bottom:453.226747pt;}
.y10_c03121{bottom:482.666971pt;}
.y12_c03121{bottom:497.386555pt;}
.yf_c03121{bottom:513.387067pt;}
.y1c_c03121{bottom:546.027067pt;}
.yb_c03121{bottom:593.385179pt;}
.yd_c03121{bottom:628.586875pt;}
.yc_c03121{bottom:637.227067pt;}
.ya_c03121{bottom:707.945339pt;}
.y9_c03121{bottom:779.945531pt;}
.y7_c03121{bottom:823.786427pt;}
.y3_c03121{bottom:839.786939pt;}
.y8_c03121{bottom:870.505979pt;}
.y6_c03121{bottom:899.946203pt;}
.y5_c03121{bottom:915.946715pt;}
.y2_c03121{bottom:945.386939pt;}
.y4_c03121{bottom:959.786555pt;}
.y1_c03121{bottom:975.787067pt;}
.ye_c03121{bottom:1008.747067pt;}
.h3_c03121{height:28.916250pt;}
.h1_c03121{height:37.063125pt;}
.h2_c03121{height:37.166250pt;}
.h4_c03121{height:48.581988pt;}
.h0_c03121{height:1122.666667pt;}
.w1_c03121{width:793.333333pt;}
.w0_c03121{width:793.626667pt;}
.x0_c03121{left:0.000000pt;}
.xd_c03121{left:104.000000pt;}
.x8_c03121{left:391.999872pt;}
.x4_c03121{left:396.160512pt;}
.xb_c03121{left:400.960000pt;}
.x7_c03121{left:404.799648pt;}
.x5_c03121{left:410.560128pt;}
.x1_c03121{left:411.840000pt;}
.xa_c03121{left:429.760320pt;}
.x9_c03121{left:437.439552pt;}
.x6_c03121{left:438.400512pt;}
.xc_c03121{left:450.560320pt;}
.x3_c03121{left:455.039904pt;}
.x2_c03121{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03122 {
    display:none;
  }
  .loading-indicator_c03122.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03122 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03122 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03122" -> "#page-container .classname_c03122")
 */
.pf_c03122 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03122 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03122.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03122 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03122 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03122 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03122 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03122 {overflow:visible;}
  }
}
.c_c03122 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03122 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03122:after { /* webkit #35443 */
  content: '';
}
.t_c03122:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03122 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03122 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03122 { /* info for Javascript */
  display:none;
}
.l_c03122 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03122 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03122 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03122:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03122 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03122.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03122.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03122 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03122{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03122;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03122{font-family:ff1_c03122;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03122;src:url('chunks/assets/font_5c529070bb1e22be39a72e62.woff2')format("woff");}.ff2_c03122{font-family:ff2_c03122;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03122;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03122{font-family:ff3_c03122;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03122{vertical-align:0.000000px;}
.v1_c03122{vertical-align:1.439424px;}
.lsb_c03122{letter-spacing:-1.197504px;}
.ls6_c03122{letter-spacing:-0.613008px;}
.ls8_c03122{letter-spacing:-0.574992px;}
.ls12_c03122{letter-spacing:-0.361152px;}
.lse_c03122{letter-spacing:-0.275616px;}
.lsc_c03122{letter-spacing:-0.261360px;}
.ls5_c03122{letter-spacing:-0.242352px;}
.ls3_c03122{letter-spacing:-0.118800px;}
.ls11_c03122{letter-spacing:0.000000px;}
.ls1_c03122{letter-spacing:0.006048px;}
.ls4_c03122{letter-spacing:0.128304px;}
.lsa_c03122{letter-spacing:0.508464px;}
.ls10_c03122{letter-spacing:0.514080px;}
.lsd_c03122{letter-spacing:0.536976px;}
.ls9_c03122{letter-spacing:0.579744px;}
.lsf_c03122{letter-spacing:0.594000px;}
.ls7_c03122{letter-spacing:0.598752px;}
.ls2_c03122{letter-spacing:0.613008px;}
.ls0_c03122{letter-spacing:0.717552px;}
.sc__c03122{text-shadow:none;}
.sc0_c03122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03122{-webkit-text-stroke:0px transparent;}
.sc0_c03122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03122{word-spacing:-15.126048px;}
.wsa_c03122{word-spacing:-12.474000px;}
.ws8_c03122{word-spacing:-12.459744px;}
.ws9_c03122{word-spacing:-12.416976px;}
.ws4_c03122{word-spacing:-11.637648px;}
.ws2_c03122{word-spacing:-11.266992px;}
.ws10_c03122{word-spacing:-1.078704px;}
.wsd_c03122{word-spacing:-0.974160px;}
.ws14_c03122{word-spacing:-0.719712px;}
.wsf_c03122{word-spacing:-0.118800px;}
.ws12_c03122{word-spacing:-0.099792px;}
.ws13_c03122{word-spacing:-0.085536px;}
.wse_c03122{word-spacing:0.000000px;}
.ws11_c03122{word-spacing:0.836352px;}
.wsb_c03122{word-spacing:33.300288px;}
.ws6_c03122{word-spacing:36.742464px;}
.ws1_c03122{word-spacing:37.759392px;}
.ws0_c03122{word-spacing:38.020752px;}
.ws3_c03122{word-spacing:39.218256px;}
.ws5_c03122{word-spacing:39.902544px;}
.ws7_c03122{word-spacing:42.026688px;}
._0_c03122{margin-left:-1.948320px;}
._2_c03122{width:1.482624px;}
._4_c03122{width:3.302640px;}
._1_c03122{width:50.252400px;}
._3_c03122{width:51.530688px;}
.fc0_c03122{color:rgb(0,0,0);}
.fs0_c03122{font-size:47.520000px;}
.fs1_c03122{font-size:60.480000px;}
.y0_c03122{bottom:0.000000px;}
.y19_c03122{bottom:146.998362px;}
.y1b_c03122{bottom:186.600234px;}
.y1a_c03122{bottom:196.320450px;}
.y18_c03122{bottom:275.878542px;}
.y17_c03122{bottom:356.878758px;}
.y15_c03122{bottom:406.559730px;}
.y11_c03122{bottom:424.560306px;}
.y16_c03122{bottom:458.759262px;}
.y14_c03122{bottom:491.879514px;}
.y13_c03122{bottom:509.880090px;}
.y10_c03122{bottom:543.000342px;}
.y12_c03122{bottom:559.559874px;}
.yf_c03122{bottom:577.560450px;}
.y1c_c03122{bottom:614.280450px;}
.yb_c03122{bottom:667.558326px;}
.yd_c03122{bottom:707.160234px;}
.yc_c03122{bottom:716.880450px;}
.ya_c03122{bottom:796.438506px;}
.y9_c03122{bottom:877.438722px;}
.y7_c03122{bottom:926.759730px;}
.y3_c03122{bottom:944.760306px;}
.y8_c03122{bottom:979.319226px;}
.y6_c03122{bottom:1012.439478px;}
.y5_c03122{bottom:1030.440054px;}
.y2_c03122{bottom:1063.560306px;}
.y4_c03122{bottom:1079.759874px;}
.y1_c03122{bottom:1097.760450px;}
.ye_c03122{bottom:1134.840450px;}
.h3_c03122{height:32.530781px;}
.h1_c03122{height:41.696016px;}
.h2_c03122{height:41.812031px;}
.h4_c03122{height:54.654737px;}
.h0_c03122{height:1263.000000px;}
.w1_c03122{width:892.500000px;}
.w0_c03122{width:892.830000px;}
.x0_c03122{left:0.000000px;}
.xd_c03122{left:117.000000px;}
.x8_c03122{left:440.999856px;}
.x4_c03122{left:445.680576px;}
.xb_c03122{left:451.080000px;}
.x7_c03122{left:455.399604px;}
.x5_c03122{left:461.880144px;}
.x1_c03122{left:463.320000px;}
.xa_c03122{left:483.480360px;}
.x9_c03122{left:492.119496px;}
.x6_c03122{left:493.200576px;}
.xc_c03122{left:506.880360px;}
.x3_c03122{left:511.919892px;}
.x2_c03122{left:526.679604px;}
@media print{
.v0_c03122{vertical-align:0.000000pt;}
.v1_c03122{vertical-align:1.279488pt;}
.lsb_c03122{letter-spacing:-1.064448pt;}
.ls6_c03122{letter-spacing:-0.544896pt;}
.ls8_c03122{letter-spacing:-0.511104pt;}
.ls12_c03122{letter-spacing:-0.321024pt;}
.lse_c03122{letter-spacing:-0.244992pt;}
.lsc_c03122{letter-spacing:-0.232320pt;}
.ls5_c03122{letter-spacing:-0.215424pt;}
.ls3_c03122{letter-spacing:-0.105600pt;}
.ls11_c03122{letter-spacing:0.000000pt;}
.ls1_c03122{letter-spacing:0.005376pt;}
.ls4_c03122{letter-spacing:0.114048pt;}
.lsa_c03122{letter-spacing:0.451968pt;}
.ls10_c03122{letter-spacing:0.456960pt;}
.lsd_c03122{letter-spacing:0.477312pt;}
.ls9_c03122{letter-spacing:0.515328pt;}
.lsf_c03122{letter-spacing:0.528000pt;}
.ls7_c03122{letter-spacing:0.532224pt;}
.ls2_c03122{letter-spacing:0.544896pt;}
.ls0_c03122{letter-spacing:0.637824pt;}
.wsc_c03122{word-spacing:-13.445376pt;}
.wsa_c03122{word-spacing:-11.088000pt;}
.ws8_c03122{word-spacing:-11.075328pt;}
.ws9_c03122{word-spacing:-11.037312pt;}
.ws4_c03122{word-spacing:-10.344576pt;}
.ws2_c03122{word-spacing:-10.015104pt;}
.ws10_c03122{word-spacing:-0.958848pt;}
.wsd_c03122{word-spacing:-0.865920pt;}
.ws14_c03122{word-spacing:-0.639744pt;}
.wsf_c03122{word-spacing:-0.105600pt;}
.ws12_c03122{word-spacing:-0.088704pt;}
.ws13_c03122{word-spacing:-0.076032pt;}
.wse_c03122{word-spacing:0.000000pt;}
.ws11_c03122{word-spacing:0.743424pt;}
.wsb_c03122{word-spacing:29.600256pt;}
.ws6_c03122{word-spacing:32.659968pt;}
.ws1_c03122{word-spacing:33.563904pt;}
.ws0_c03122{word-spacing:33.796224pt;}
.ws3_c03122{word-spacing:34.860672pt;}
.ws5_c03122{word-spacing:35.468928pt;}
.ws7_c03122{word-spacing:37.357056pt;}
._0_c03122{margin-left:-1.731840pt;}
._2_c03122{width:1.317888pt;}
._4_c03122{width:2.935680pt;}
._1_c03122{width:44.668800pt;}
._3_c03122{width:45.805056pt;}
.fs0_c03122{font-size:42.240000pt;}
.fs1_c03122{font-size:53.760000pt;}
.y0_c03122{bottom:0.000000pt;}
.y19_c03122{bottom:130.665211pt;}
.y1b_c03122{bottom:165.866875pt;}
.y1a_c03122{bottom:174.507067pt;}
.y18_c03122{bottom:245.225371pt;}
.y17_c03122{bottom:317.225563pt;}
.y15_c03122{bottom:361.386427pt;}
.y11_c03122{bottom:377.386939pt;}
.y16_c03122{bottom:407.786011pt;}
.y14_c03122{bottom:437.226235pt;}
.y13_c03122{bottom:453.226747pt;}
.y10_c03122{bottom:482.666971pt;}
.y12_c03122{bottom:497.386555pt;}
.yf_c03122{bottom:513.387067pt;}
.y1c_c03122{bottom:546.027067pt;}
.yb_c03122{bottom:593.385179pt;}
.yd_c03122{bottom:628.586875pt;}
.yc_c03122{bottom:637.227067pt;}
.ya_c03122{bottom:707.945339pt;}
.y9_c03122{bottom:779.945531pt;}
.y7_c03122{bottom:823.786427pt;}
.y3_c03122{bottom:839.786939pt;}
.y8_c03122{bottom:870.505979pt;}
.y6_c03122{bottom:899.946203pt;}
.y5_c03122{bottom:915.946715pt;}
.y2_c03122{bottom:945.386939pt;}
.y4_c03122{bottom:959.786555pt;}
.y1_c03122{bottom:975.787067pt;}
.ye_c03122{bottom:1008.747067pt;}
.h3_c03122{height:28.916250pt;}
.h1_c03122{height:37.063125pt;}
.h2_c03122{height:37.166250pt;}
.h4_c03122{height:48.581988pt;}
.h0_c03122{height:1122.666667pt;}
.w1_c03122{width:793.333333pt;}
.w0_c03122{width:793.626667pt;}
.x0_c03122{left:0.000000pt;}
.xd_c03122{left:104.000000pt;}
.x8_c03122{left:391.999872pt;}
.x4_c03122{left:396.160512pt;}
.xb_c03122{left:400.960000pt;}
.x7_c03122{left:404.799648pt;}
.x5_c03122{left:410.560128pt;}
.x1_c03122{left:411.840000pt;}
.xa_c03122{left:429.760320pt;}
.x9_c03122{left:437.439552pt;}
.x6_c03122{left:438.400512pt;}
.xc_c03122{left:450.560320pt;}
.x3_c03122{left:455.039904pt;}
.x2_c03122{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03123 {
    display:none;
  }
  .loading-indicator_c03123.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03123 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03123 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03123" -> "#page-container .classname_c03123")
 */
.pf_c03123 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03123 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03123.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03123 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03123 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03123 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03123 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03123 {overflow:visible;}
  }
}
.c_c03123 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03123 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03123:after { /* webkit #35443 */
  content: '';
}
.t_c03123:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03123 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03123 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03123 { /* info for Javascript */
  display:none;
}
.l_c03123 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03123 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03123 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03123:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03123 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03123.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03123.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03123 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03123{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03123;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03123{font-family:ff1_c03123;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03123;src:url('chunks/assets/font_5c529070bb1e22be39a72e62.woff2')format("woff");}.ff2_c03123{font-family:ff2_c03123;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03123;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03123{font-family:ff3_c03123;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03123{vertical-align:0.000000px;}
.v1_c03123{vertical-align:1.439424px;}
.lsc_c03123{letter-spacing:-1.197504px;}
.ls6_c03123{letter-spacing:-0.613008px;}
.ls8_c03123{letter-spacing:-0.574992px;}
.ls9_c03123{letter-spacing:-0.361152px;}
.lsf_c03123{letter-spacing:-0.275616px;}
.lsd_c03123{letter-spacing:-0.261360px;}
.ls5_c03123{letter-spacing:-0.242352px;}
.ls3_c03123{letter-spacing:-0.118800px;}
.ls12_c03123{letter-spacing:0.000000px;}
.ls0_c03123{letter-spacing:0.006048px;}
.ls4_c03123{letter-spacing:0.128304px;}
.lsb_c03123{letter-spacing:0.508464px;}
.ls11_c03123{letter-spacing:0.514080px;}
.lse_c03123{letter-spacing:0.536976px;}
.lsa_c03123{letter-spacing:0.579744px;}
.ls10_c03123{letter-spacing:0.594000px;}
.ls7_c03123{letter-spacing:0.598752px;}
.ls1_c03123{letter-spacing:0.613008px;}
.ls2_c03123{letter-spacing:0.717552px;}
.sc__c03123{text-shadow:none;}
.sc0_c03123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03123{-webkit-text-stroke:0px transparent;}
.sc0_c03123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03123{word-spacing:-15.126048px;}
.wsa_c03123{word-spacing:-12.474000px;}
.ws8_c03123{word-spacing:-12.459744px;}
.ws9_c03123{word-spacing:-12.416976px;}
.ws4_c03123{word-spacing:-11.637648px;}
.ws2_c03123{word-spacing:-11.266992px;}
.wsd_c03123{word-spacing:-0.974160px;}
.ws13_c03123{word-spacing:-0.719712px;}
.wsf_c03123{word-spacing:-0.118800px;}
.ws11_c03123{word-spacing:-0.099792px;}
.ws12_c03123{word-spacing:-0.085536px;}
.wse_c03123{word-spacing:0.000000px;}
.ws10_c03123{word-spacing:0.836352px;}
.wsb_c03123{word-spacing:33.300288px;}
.ws6_c03123{word-spacing:36.742464px;}
.ws1_c03123{word-spacing:37.759392px;}
.ws0_c03123{word-spacing:38.020752px;}
.ws3_c03123{word-spacing:39.218256px;}
.ws5_c03123{word-spacing:39.902544px;}
.ws7_c03123{word-spacing:42.026688px;}
._0_c03123{margin-left:-1.948320px;}
._2_c03123{width:1.482624px;}
._4_c03123{width:3.302640px;}
._1_c03123{width:50.252400px;}
._3_c03123{width:51.530688px;}
.fc0_c03123{color:rgb(0,0,0);}
.fs0_c03123{font-size:47.520000px;}
.fs1_c03123{font-size:60.480000px;}
.y0_c03123{bottom:0.000000px;}
.y19_c03123{bottom:146.998362px;}
.y1b_c03123{bottom:186.600234px;}
.y1a_c03123{bottom:196.320450px;}
.y18_c03123{bottom:275.878542px;}
.y17_c03123{bottom:356.878758px;}
.y15_c03123{bottom:406.559730px;}
.y11_c03123{bottom:424.560306px;}
.y16_c03123{bottom:458.759262px;}
.y14_c03123{bottom:491.879514px;}
.y13_c03123{bottom:509.880090px;}
.y10_c03123{bottom:543.000342px;}
.y12_c03123{bottom:559.559874px;}
.yf_c03123{bottom:577.560450px;}
.y1c_c03123{bottom:614.280450px;}
.yb_c03123{bottom:667.558326px;}
.yd_c03123{bottom:707.160234px;}
.yc_c03123{bottom:716.880450px;}
.ya_c03123{bottom:796.438506px;}
.y9_c03123{bottom:877.438722px;}
.y7_c03123{bottom:926.759730px;}
.y3_c03123{bottom:944.760306px;}
.y8_c03123{bottom:979.319226px;}
.y6_c03123{bottom:1012.439478px;}
.y5_c03123{bottom:1030.440054px;}
.y2_c03123{bottom:1063.560306px;}
.y4_c03123{bottom:1079.759874px;}
.y1_c03123{bottom:1097.760450px;}
.ye_c03123{bottom:1134.840450px;}
.h3_c03123{height:32.530781px;}
.h1_c03123{height:41.696016px;}
.h2_c03123{height:41.812031px;}
.h4_c03123{height:54.654737px;}
.h0_c03123{height:1263.000000px;}
.w1_c03123{width:892.500000px;}
.w0_c03123{width:892.830000px;}
.x0_c03123{left:0.000000px;}
.xd_c03123{left:117.000000px;}
.x8_c03123{left:440.999856px;}
.x4_c03123{left:445.680576px;}
.xb_c03123{left:451.080000px;}
.x7_c03123{left:455.399604px;}
.x5_c03123{left:461.880144px;}
.x1_c03123{left:463.320000px;}
.xa_c03123{left:483.480360px;}
.x9_c03123{left:492.119496px;}
.x6_c03123{left:493.200576px;}
.xc_c03123{left:506.880360px;}
.x3_c03123{left:511.919892px;}
.x2_c03123{left:526.679604px;}
@media print{
.v0_c03123{vertical-align:0.000000pt;}
.v1_c03123{vertical-align:1.279488pt;}
.lsc_c03123{letter-spacing:-1.064448pt;}
.ls6_c03123{letter-spacing:-0.544896pt;}
.ls8_c03123{letter-spacing:-0.511104pt;}
.ls9_c03123{letter-spacing:-0.321024pt;}
.lsf_c03123{letter-spacing:-0.244992pt;}
.lsd_c03123{letter-spacing:-0.232320pt;}
.ls5_c03123{letter-spacing:-0.215424pt;}
.ls3_c03123{letter-spacing:-0.105600pt;}
.ls12_c03123{letter-spacing:0.000000pt;}
.ls0_c03123{letter-spacing:0.005376pt;}
.ls4_c03123{letter-spacing:0.114048pt;}
.lsb_c03123{letter-spacing:0.451968pt;}
.ls11_c03123{letter-spacing:0.456960pt;}
.lse_c03123{letter-spacing:0.477312pt;}
.lsa_c03123{letter-spacing:0.515328pt;}
.ls10_c03123{letter-spacing:0.528000pt;}
.ls7_c03123{letter-spacing:0.532224pt;}
.ls1_c03123{letter-spacing:0.544896pt;}
.ls2_c03123{letter-spacing:0.637824pt;}
.wsc_c03123{word-spacing:-13.445376pt;}
.wsa_c03123{word-spacing:-11.088000pt;}
.ws8_c03123{word-spacing:-11.075328pt;}
.ws9_c03123{word-spacing:-11.037312pt;}
.ws4_c03123{word-spacing:-10.344576pt;}
.ws2_c03123{word-spacing:-10.015104pt;}
.wsd_c03123{word-spacing:-0.865920pt;}
.ws13_c03123{word-spacing:-0.639744pt;}
.wsf_c03123{word-spacing:-0.105600pt;}
.ws11_c03123{word-spacing:-0.088704pt;}
.ws12_c03123{word-spacing:-0.076032pt;}
.wse_c03123{word-spacing:0.000000pt;}
.ws10_c03123{word-spacing:0.743424pt;}
.wsb_c03123{word-spacing:29.600256pt;}
.ws6_c03123{word-spacing:32.659968pt;}
.ws1_c03123{word-spacing:33.563904pt;}
.ws0_c03123{word-spacing:33.796224pt;}
.ws3_c03123{word-spacing:34.860672pt;}
.ws5_c03123{word-spacing:35.468928pt;}
.ws7_c03123{word-spacing:37.357056pt;}
._0_c03123{margin-left:-1.731840pt;}
._2_c03123{width:1.317888pt;}
._4_c03123{width:2.935680pt;}
._1_c03123{width:44.668800pt;}
._3_c03123{width:45.805056pt;}
.fs0_c03123{font-size:42.240000pt;}
.fs1_c03123{font-size:53.760000pt;}
.y0_c03123{bottom:0.000000pt;}
.y19_c03123{bottom:130.665211pt;}
.y1b_c03123{bottom:165.866875pt;}
.y1a_c03123{bottom:174.507067pt;}
.y18_c03123{bottom:245.225371pt;}
.y17_c03123{bottom:317.225563pt;}
.y15_c03123{bottom:361.386427pt;}
.y11_c03123{bottom:377.386939pt;}
.y16_c03123{bottom:407.786011pt;}
.y14_c03123{bottom:437.226235pt;}
.y13_c03123{bottom:453.226747pt;}
.y10_c03123{bottom:482.666971pt;}
.y12_c03123{bottom:497.386555pt;}
.yf_c03123{bottom:513.387067pt;}
.y1c_c03123{bottom:546.027067pt;}
.yb_c03123{bottom:593.385179pt;}
.yd_c03123{bottom:628.586875pt;}
.yc_c03123{bottom:637.227067pt;}
.ya_c03123{bottom:707.945339pt;}
.y9_c03123{bottom:779.945531pt;}
.y7_c03123{bottom:823.786427pt;}
.y3_c03123{bottom:839.786939pt;}
.y8_c03123{bottom:870.505979pt;}
.y6_c03123{bottom:899.946203pt;}
.y5_c03123{bottom:915.946715pt;}
.y2_c03123{bottom:945.386939pt;}
.y4_c03123{bottom:959.786555pt;}
.y1_c03123{bottom:975.787067pt;}
.ye_c03123{bottom:1008.747067pt;}
.h3_c03123{height:28.916250pt;}
.h1_c03123{height:37.063125pt;}
.h2_c03123{height:37.166250pt;}
.h4_c03123{height:48.581988pt;}
.h0_c03123{height:1122.666667pt;}
.w1_c03123{width:793.333333pt;}
.w0_c03123{width:793.626667pt;}
.x0_c03123{left:0.000000pt;}
.xd_c03123{left:104.000000pt;}
.x8_c03123{left:391.999872pt;}
.x4_c03123{left:396.160512pt;}
.xb_c03123{left:400.960000pt;}
.x7_c03123{left:404.799648pt;}
.x5_c03123{left:410.560128pt;}
.x1_c03123{left:411.840000pt;}
.xa_c03123{left:429.760320pt;}
.x9_c03123{left:437.439552pt;}
.x6_c03123{left:438.400512pt;}
.xc_c03123{left:450.560320pt;}
.x3_c03123{left:455.039904pt;}
.x2_c03123{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03124 {
    display:none;
  }
  .loading-indicator_c03124.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03124 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03124 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03124" -> "#page-container .classname_c03124")
 */
.pf_c03124 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03124 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03124.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03124 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03124 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03124 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03124 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03124 {overflow:visible;}
  }
}
.c_c03124 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03124 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03124:after { /* webkit #35443 */
  content: '';
}
.t_c03124:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03124 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03124 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03124 { /* info for Javascript */
  display:none;
}
.l_c03124 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03124 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03124 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03124:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03124 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03124.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03124.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03124 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03124{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03124;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03124{font-family:ff1_c03124;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03124;src:url('chunks/assets/font_5c529070bb1e22be39a72e62.woff2')format("woff");}.ff2_c03124{font-family:ff2_c03124;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03124;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03124{font-family:ff3_c03124;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03124{vertical-align:0.000000px;}
.v1_c03124{vertical-align:1.439424px;}
.lsc_c03124{letter-spacing:-1.197504px;}
.ls6_c03124{letter-spacing:-0.613008px;}
.ls8_c03124{letter-spacing:-0.574992px;}
.ls9_c03124{letter-spacing:-0.361152px;}
.lsf_c03124{letter-spacing:-0.275616px;}
.lsd_c03124{letter-spacing:-0.261360px;}
.ls5_c03124{letter-spacing:-0.242352px;}
.ls3_c03124{letter-spacing:-0.118800px;}
.ls12_c03124{letter-spacing:0.000000px;}
.ls0_c03124{letter-spacing:0.006048px;}
.ls4_c03124{letter-spacing:0.128304px;}
.lsb_c03124{letter-spacing:0.508464px;}
.ls11_c03124{letter-spacing:0.514080px;}
.lse_c03124{letter-spacing:0.536976px;}
.lsa_c03124{letter-spacing:0.579744px;}
.ls10_c03124{letter-spacing:0.594000px;}
.ls7_c03124{letter-spacing:0.598752px;}
.ls1_c03124{letter-spacing:0.613008px;}
.ls2_c03124{letter-spacing:0.717552px;}
.sc__c03124{text-shadow:none;}
.sc0_c03124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03124{-webkit-text-stroke:0px transparent;}
.sc0_c03124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03124{word-spacing:-15.126048px;}
.wsa_c03124{word-spacing:-12.474000px;}
.ws8_c03124{word-spacing:-12.459744px;}
.ws9_c03124{word-spacing:-12.416976px;}
.ws4_c03124{word-spacing:-11.637648px;}
.ws2_c03124{word-spacing:-11.266992px;}
.wsd_c03124{word-spacing:-0.974160px;}
.ws13_c03124{word-spacing:-0.719712px;}
.wsf_c03124{word-spacing:-0.118800px;}
.ws11_c03124{word-spacing:-0.099792px;}
.ws12_c03124{word-spacing:-0.085536px;}
.wse_c03124{word-spacing:0.000000px;}
.ws10_c03124{word-spacing:0.836352px;}
.wsb_c03124{word-spacing:33.300288px;}
.ws6_c03124{word-spacing:36.742464px;}
.ws1_c03124{word-spacing:37.759392px;}
.ws0_c03124{word-spacing:38.020752px;}
.ws3_c03124{word-spacing:39.218256px;}
.ws5_c03124{word-spacing:39.902544px;}
.ws7_c03124{word-spacing:42.026688px;}
._0_c03124{margin-left:-1.948320px;}
._2_c03124{width:1.482624px;}
._4_c03124{width:3.302640px;}
._1_c03124{width:50.252400px;}
._3_c03124{width:51.530688px;}
.fc0_c03124{color:rgb(0,0,0);}
.fs0_c03124{font-size:47.520000px;}
.fs1_c03124{font-size:60.480000px;}
.y0_c03124{bottom:0.000000px;}
.y19_c03124{bottom:146.998362px;}
.y1b_c03124{bottom:186.600234px;}
.y1a_c03124{bottom:196.320450px;}
.y18_c03124{bottom:275.878542px;}
.y17_c03124{bottom:356.878758px;}
.y15_c03124{bottom:406.559730px;}
.y11_c03124{bottom:424.560306px;}
.y16_c03124{bottom:458.759262px;}
.y14_c03124{bottom:491.879514px;}
.y13_c03124{bottom:509.880090px;}
.y10_c03124{bottom:543.000342px;}
.y12_c03124{bottom:559.559874px;}
.yf_c03124{bottom:577.560450px;}
.y1c_c03124{bottom:614.280450px;}
.yb_c03124{bottom:667.558326px;}
.yd_c03124{bottom:707.160234px;}
.yc_c03124{bottom:716.880450px;}
.ya_c03124{bottom:796.438506px;}
.y9_c03124{bottom:877.438722px;}
.y7_c03124{bottom:926.759730px;}
.y3_c03124{bottom:944.760306px;}
.y8_c03124{bottom:979.319226px;}
.y6_c03124{bottom:1012.439478px;}
.y5_c03124{bottom:1030.440054px;}
.y2_c03124{bottom:1063.560306px;}
.y4_c03124{bottom:1079.759874px;}
.y1_c03124{bottom:1097.760450px;}
.ye_c03124{bottom:1134.840450px;}
.h3_c03124{height:32.530781px;}
.h1_c03124{height:41.696016px;}
.h2_c03124{height:41.812031px;}
.h4_c03124{height:54.654737px;}
.h0_c03124{height:1263.000000px;}
.w1_c03124{width:892.500000px;}
.w0_c03124{width:892.830000px;}
.x0_c03124{left:0.000000px;}
.xd_c03124{left:117.000000px;}
.x8_c03124{left:440.999856px;}
.x4_c03124{left:445.680576px;}
.xb_c03124{left:451.080000px;}
.x7_c03124{left:455.399604px;}
.x5_c03124{left:461.880144px;}
.x1_c03124{left:463.320000px;}
.xa_c03124{left:483.480360px;}
.x9_c03124{left:492.119496px;}
.x6_c03124{left:493.200576px;}
.xc_c03124{left:506.880360px;}
.x3_c03124{left:511.919892px;}
.x2_c03124{left:526.679604px;}
@media print{
.v0_c03124{vertical-align:0.000000pt;}
.v1_c03124{vertical-align:1.279488pt;}
.lsc_c03124{letter-spacing:-1.064448pt;}
.ls6_c03124{letter-spacing:-0.544896pt;}
.ls8_c03124{letter-spacing:-0.511104pt;}
.ls9_c03124{letter-spacing:-0.321024pt;}
.lsf_c03124{letter-spacing:-0.244992pt;}
.lsd_c03124{letter-spacing:-0.232320pt;}
.ls5_c03124{letter-spacing:-0.215424pt;}
.ls3_c03124{letter-spacing:-0.105600pt;}
.ls12_c03124{letter-spacing:0.000000pt;}
.ls0_c03124{letter-spacing:0.005376pt;}
.ls4_c03124{letter-spacing:0.114048pt;}
.lsb_c03124{letter-spacing:0.451968pt;}
.ls11_c03124{letter-spacing:0.456960pt;}
.lse_c03124{letter-spacing:0.477312pt;}
.lsa_c03124{letter-spacing:0.515328pt;}
.ls10_c03124{letter-spacing:0.528000pt;}
.ls7_c03124{letter-spacing:0.532224pt;}
.ls1_c03124{letter-spacing:0.544896pt;}
.ls2_c03124{letter-spacing:0.637824pt;}
.wsc_c03124{word-spacing:-13.445376pt;}
.wsa_c03124{word-spacing:-11.088000pt;}
.ws8_c03124{word-spacing:-11.075328pt;}
.ws9_c03124{word-spacing:-11.037312pt;}
.ws4_c03124{word-spacing:-10.344576pt;}
.ws2_c03124{word-spacing:-10.015104pt;}
.wsd_c03124{word-spacing:-0.865920pt;}
.ws13_c03124{word-spacing:-0.639744pt;}
.wsf_c03124{word-spacing:-0.105600pt;}
.ws11_c03124{word-spacing:-0.088704pt;}
.ws12_c03124{word-spacing:-0.076032pt;}
.wse_c03124{word-spacing:0.000000pt;}
.ws10_c03124{word-spacing:0.743424pt;}
.wsb_c03124{word-spacing:29.600256pt;}
.ws6_c03124{word-spacing:32.659968pt;}
.ws1_c03124{word-spacing:33.563904pt;}
.ws0_c03124{word-spacing:33.796224pt;}
.ws3_c03124{word-spacing:34.860672pt;}
.ws5_c03124{word-spacing:35.468928pt;}
.ws7_c03124{word-spacing:37.357056pt;}
._0_c03124{margin-left:-1.731840pt;}
._2_c03124{width:1.317888pt;}
._4_c03124{width:2.935680pt;}
._1_c03124{width:44.668800pt;}
._3_c03124{width:45.805056pt;}
.fs0_c03124{font-size:42.240000pt;}
.fs1_c03124{font-size:53.760000pt;}
.y0_c03124{bottom:0.000000pt;}
.y19_c03124{bottom:130.665211pt;}
.y1b_c03124{bottom:165.866875pt;}
.y1a_c03124{bottom:174.507067pt;}
.y18_c03124{bottom:245.225371pt;}
.y17_c03124{bottom:317.225563pt;}
.y15_c03124{bottom:361.386427pt;}
.y11_c03124{bottom:377.386939pt;}
.y16_c03124{bottom:407.786011pt;}
.y14_c03124{bottom:437.226235pt;}
.y13_c03124{bottom:453.226747pt;}
.y10_c03124{bottom:482.666971pt;}
.y12_c03124{bottom:497.386555pt;}
.yf_c03124{bottom:513.387067pt;}
.y1c_c03124{bottom:546.027067pt;}
.yb_c03124{bottom:593.385179pt;}
.yd_c03124{bottom:628.586875pt;}
.yc_c03124{bottom:637.227067pt;}
.ya_c03124{bottom:707.945339pt;}
.y9_c03124{bottom:779.945531pt;}
.y7_c03124{bottom:823.786427pt;}
.y3_c03124{bottom:839.786939pt;}
.y8_c03124{bottom:870.505979pt;}
.y6_c03124{bottom:899.946203pt;}
.y5_c03124{bottom:915.946715pt;}
.y2_c03124{bottom:945.386939pt;}
.y4_c03124{bottom:959.786555pt;}
.y1_c03124{bottom:975.787067pt;}
.ye_c03124{bottom:1008.747067pt;}
.h3_c03124{height:28.916250pt;}
.h1_c03124{height:37.063125pt;}
.h2_c03124{height:37.166250pt;}
.h4_c03124{height:48.581988pt;}
.h0_c03124{height:1122.666667pt;}
.w1_c03124{width:793.333333pt;}
.w0_c03124{width:793.626667pt;}
.x0_c03124{left:0.000000pt;}
.xd_c03124{left:104.000000pt;}
.x8_c03124{left:391.999872pt;}
.x4_c03124{left:396.160512pt;}
.xb_c03124{left:400.960000pt;}
.x7_c03124{left:404.799648pt;}
.x5_c03124{left:410.560128pt;}
.x1_c03124{left:411.840000pt;}
.xa_c03124{left:429.760320pt;}
.x9_c03124{left:437.439552pt;}
.x6_c03124{left:438.400512pt;}
.xc_c03124{left:450.560320pt;}
.x3_c03124{left:455.039904pt;}
.x2_c03124{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03125 {
    display:none;
  }
  .loading-indicator_c03125.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03125 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03125 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03125" -> "#page-container .classname_c03125")
 */
.pf_c03125 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03125 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03125.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03125 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03125 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03125 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03125 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03125 {overflow:visible;}
  }
}
.c_c03125 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03125 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03125:after { /* webkit #35443 */
  content: '';
}
.t_c03125:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03125 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03125 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03125 { /* info for Javascript */
  display:none;
}
.l_c03125 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03125 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03125 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03125:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03125 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03125.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03125.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03125 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03125{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03125;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03125{font-family:ff1_c03125;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03125;src:url('chunks/assets/font_6184d77393e1b2d8ff0027c0.woff2')format("woff");}.ff2_c03125{font-family:ff2_c03125;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03125;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03125{font-family:ff3_c03125;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03125{vertical-align:0.000000px;}
.v1_c03125{vertical-align:1.439424px;}
.lsd_c03125{letter-spacing:-1.197504px;}
.ls7_c03125{letter-spacing:-0.613008px;}
.ls9_c03125{letter-spacing:-0.574992px;}
.lsa_c03125{letter-spacing:-0.361152px;}
.ls10_c03125{letter-spacing:-0.275616px;}
.lse_c03125{letter-spacing:-0.261360px;}
.ls6_c03125{letter-spacing:-0.242352px;}
.ls4_c03125{letter-spacing:-0.118800px;}
.ls13_c03125{letter-spacing:0.000000px;}
.ls0_c03125{letter-spacing:0.006048px;}
.ls5_c03125{letter-spacing:0.128304px;}
.lsc_c03125{letter-spacing:0.508464px;}
.ls12_c03125{letter-spacing:0.514080px;}
.lsf_c03125{letter-spacing:0.536976px;}
.lsb_c03125{letter-spacing:0.579744px;}
.ls11_c03125{letter-spacing:0.594000px;}
.ls8_c03125{letter-spacing:0.598752px;}
.ls2_c03125{letter-spacing:0.613008px;}
.ls3_c03125{letter-spacing:0.717552px;}
.ls1_c03125{letter-spacing:0.722304px;}
.sc__c03125{text-shadow:none;}
.sc0_c03125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03125{-webkit-text-stroke:0px transparent;}
.sc0_c03125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03125{word-spacing:-15.126048px;}
.wsa_c03125{word-spacing:-12.474000px;}
.ws8_c03125{word-spacing:-12.459744px;}
.ws9_c03125{word-spacing:-12.416976px;}
.ws4_c03125{word-spacing:-11.637648px;}
.ws2_c03125{word-spacing:-11.266992px;}
.ws14_c03125{word-spacing:-1.083456px;}
.wsd_c03125{word-spacing:-0.974160px;}
.ws13_c03125{word-spacing:-0.719712px;}
.wsf_c03125{word-spacing:-0.118800px;}
.ws11_c03125{word-spacing:-0.099792px;}
.ws12_c03125{word-spacing:-0.085536px;}
.wse_c03125{word-spacing:0.000000px;}
.ws10_c03125{word-spacing:0.836352px;}
.wsb_c03125{word-spacing:33.300288px;}
.ws6_c03125{word-spacing:36.742464px;}
.ws1_c03125{word-spacing:37.759392px;}
.ws0_c03125{word-spacing:38.020752px;}
.ws3_c03125{word-spacing:39.218256px;}
.ws5_c03125{word-spacing:39.902544px;}
.ws7_c03125{word-spacing:42.026688px;}
._0_c03125{margin-left:-1.948320px;}
._2_c03125{width:1.482624px;}
._4_c03125{width:3.302640px;}
._1_c03125{width:50.252400px;}
._3_c03125{width:51.530688px;}
.fc0_c03125{color:rgb(0,0,0);}
.fs0_c03125{font-size:47.520000px;}
.fs1_c03125{font-size:60.480000px;}
.y0_c03125{bottom:0.000000px;}
.y19_c03125{bottom:146.998362px;}
.y1b_c03125{bottom:186.600234px;}
.y1a_c03125{bottom:196.320450px;}
.y18_c03125{bottom:275.878542px;}
.y17_c03125{bottom:356.878758px;}
.y15_c03125{bottom:406.559730px;}
.y11_c03125{bottom:424.560306px;}
.y16_c03125{bottom:458.759262px;}
.y14_c03125{bottom:491.879514px;}
.y13_c03125{bottom:509.880090px;}
.y10_c03125{bottom:543.000342px;}
.y12_c03125{bottom:559.559874px;}
.yf_c03125{bottom:577.560450px;}
.y1c_c03125{bottom:614.280450px;}
.yb_c03125{bottom:667.558326px;}
.yd_c03125{bottom:707.160234px;}
.yc_c03125{bottom:716.880450px;}
.ya_c03125{bottom:796.438506px;}
.y9_c03125{bottom:877.438722px;}
.y7_c03125{bottom:926.759730px;}
.y3_c03125{bottom:944.760306px;}
.y8_c03125{bottom:979.319226px;}
.y6_c03125{bottom:1012.439478px;}
.y5_c03125{bottom:1030.440054px;}
.y2_c03125{bottom:1063.560306px;}
.y4_c03125{bottom:1079.759874px;}
.y1_c03125{bottom:1097.760450px;}
.ye_c03125{bottom:1134.840450px;}
.h3_c03125{height:32.530781px;}
.h1_c03125{height:41.696016px;}
.h2_c03125{height:41.812031px;}
.h4_c03125{height:54.654737px;}
.h0_c03125{height:1263.000000px;}
.w1_c03125{width:892.500000px;}
.w0_c03125{width:892.830000px;}
.x0_c03125{left:0.000000px;}
.xd_c03125{left:117.000000px;}
.x8_c03125{left:440.999856px;}
.x4_c03125{left:445.680576px;}
.xb_c03125{left:451.080000px;}
.x7_c03125{left:455.399604px;}
.x5_c03125{left:461.880144px;}
.x1_c03125{left:463.320000px;}
.xa_c03125{left:483.480360px;}
.x9_c03125{left:492.119496px;}
.x6_c03125{left:493.200576px;}
.xc_c03125{left:506.880360px;}
.x3_c03125{left:511.919892px;}
.x2_c03125{left:526.679604px;}
@media print{
.v0_c03125{vertical-align:0.000000pt;}
.v1_c03125{vertical-align:1.279488pt;}
.lsd_c03125{letter-spacing:-1.064448pt;}
.ls7_c03125{letter-spacing:-0.544896pt;}
.ls9_c03125{letter-spacing:-0.511104pt;}
.lsa_c03125{letter-spacing:-0.321024pt;}
.ls10_c03125{letter-spacing:-0.244992pt;}
.lse_c03125{letter-spacing:-0.232320pt;}
.ls6_c03125{letter-spacing:-0.215424pt;}
.ls4_c03125{letter-spacing:-0.105600pt;}
.ls13_c03125{letter-spacing:0.000000pt;}
.ls0_c03125{letter-spacing:0.005376pt;}
.ls5_c03125{letter-spacing:0.114048pt;}
.lsc_c03125{letter-spacing:0.451968pt;}
.ls12_c03125{letter-spacing:0.456960pt;}
.lsf_c03125{letter-spacing:0.477312pt;}
.lsb_c03125{letter-spacing:0.515328pt;}
.ls11_c03125{letter-spacing:0.528000pt;}
.ls8_c03125{letter-spacing:0.532224pt;}
.ls2_c03125{letter-spacing:0.544896pt;}
.ls3_c03125{letter-spacing:0.637824pt;}
.ls1_c03125{letter-spacing:0.642048pt;}
.wsc_c03125{word-spacing:-13.445376pt;}
.wsa_c03125{word-spacing:-11.088000pt;}
.ws8_c03125{word-spacing:-11.075328pt;}
.ws9_c03125{word-spacing:-11.037312pt;}
.ws4_c03125{word-spacing:-10.344576pt;}
.ws2_c03125{word-spacing:-10.015104pt;}
.ws14_c03125{word-spacing:-0.963072pt;}
.wsd_c03125{word-spacing:-0.865920pt;}
.ws13_c03125{word-spacing:-0.639744pt;}
.wsf_c03125{word-spacing:-0.105600pt;}
.ws11_c03125{word-spacing:-0.088704pt;}
.ws12_c03125{word-spacing:-0.076032pt;}
.wse_c03125{word-spacing:0.000000pt;}
.ws10_c03125{word-spacing:0.743424pt;}
.wsb_c03125{word-spacing:29.600256pt;}
.ws6_c03125{word-spacing:32.659968pt;}
.ws1_c03125{word-spacing:33.563904pt;}
.ws0_c03125{word-spacing:33.796224pt;}
.ws3_c03125{word-spacing:34.860672pt;}
.ws5_c03125{word-spacing:35.468928pt;}
.ws7_c03125{word-spacing:37.357056pt;}
._0_c03125{margin-left:-1.731840pt;}
._2_c03125{width:1.317888pt;}
._4_c03125{width:2.935680pt;}
._1_c03125{width:44.668800pt;}
._3_c03125{width:45.805056pt;}
.fs0_c03125{font-size:42.240000pt;}
.fs1_c03125{font-size:53.760000pt;}
.y0_c03125{bottom:0.000000pt;}
.y19_c03125{bottom:130.665211pt;}
.y1b_c03125{bottom:165.866875pt;}
.y1a_c03125{bottom:174.507067pt;}
.y18_c03125{bottom:245.225371pt;}
.y17_c03125{bottom:317.225563pt;}
.y15_c03125{bottom:361.386427pt;}
.y11_c03125{bottom:377.386939pt;}
.y16_c03125{bottom:407.786011pt;}
.y14_c03125{bottom:437.226235pt;}
.y13_c03125{bottom:453.226747pt;}
.y10_c03125{bottom:482.666971pt;}
.y12_c03125{bottom:497.386555pt;}
.yf_c03125{bottom:513.387067pt;}
.y1c_c03125{bottom:546.027067pt;}
.yb_c03125{bottom:593.385179pt;}
.yd_c03125{bottom:628.586875pt;}
.yc_c03125{bottom:637.227067pt;}
.ya_c03125{bottom:707.945339pt;}
.y9_c03125{bottom:779.945531pt;}
.y7_c03125{bottom:823.786427pt;}
.y3_c03125{bottom:839.786939pt;}
.y8_c03125{bottom:870.505979pt;}
.y6_c03125{bottom:899.946203pt;}
.y5_c03125{bottom:915.946715pt;}
.y2_c03125{bottom:945.386939pt;}
.y4_c03125{bottom:959.786555pt;}
.y1_c03125{bottom:975.787067pt;}
.ye_c03125{bottom:1008.747067pt;}
.h3_c03125{height:28.916250pt;}
.h1_c03125{height:37.063125pt;}
.h2_c03125{height:37.166250pt;}
.h4_c03125{height:48.581988pt;}
.h0_c03125{height:1122.666667pt;}
.w1_c03125{width:793.333333pt;}
.w0_c03125{width:793.626667pt;}
.x0_c03125{left:0.000000pt;}
.xd_c03125{left:104.000000pt;}
.x8_c03125{left:391.999872pt;}
.x4_c03125{left:396.160512pt;}
.xb_c03125{left:400.960000pt;}
.x7_c03125{left:404.799648pt;}
.x5_c03125{left:410.560128pt;}
.x1_c03125{left:411.840000pt;}
.xa_c03125{left:429.760320pt;}
.x9_c03125{left:437.439552pt;}
.x6_c03125{left:438.400512pt;}
.xc_c03125{left:450.560320pt;}
.x3_c03125{left:455.039904pt;}
.x2_c03125{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03126 {
    display:none;
  }
  .loading-indicator_c03126.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03126 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03126 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03126" -> "#page-container .classname_c03126")
 */
.pf_c03126 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03126 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03126.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03126 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03126 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03126 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03126 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03126 {overflow:visible;}
  }
}
.c_c03126 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03126 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03126:after { /* webkit #35443 */
  content: '';
}
.t_c03126:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03126 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03126 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03126 { /* info for Javascript */
  display:none;
}
.l_c03126 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03126 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03126 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03126:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03126 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03126.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03126.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03126 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03126{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03126;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03126{font-family:ff1_c03126;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03126;src:url('chunks/assets/font_b1ef2d9d92d55cee3612ad86.woff2')format("woff");}.ff2_c03126{font-family:ff2_c03126;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03126;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03126{font-family:ff3_c03126;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03126{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03126{vertical-align:0.000000px;}
.v1_c03126{vertical-align:1.439424px;}
.lsc_c03126{letter-spacing:-1.197504px;}
.ls7_c03126{letter-spacing:-0.613008px;}
.ls9_c03126{letter-spacing:-0.574992px;}
.lsf_c03126{letter-spacing:-0.275616px;}
.lsd_c03126{letter-spacing:-0.261360px;}
.ls6_c03126{letter-spacing:-0.242352px;}
.ls4_c03126{letter-spacing:-0.118800px;}
.ls12_c03126{letter-spacing:0.000000px;}
.ls1_c03126{letter-spacing:0.006048px;}
.ls5_c03126{letter-spacing:0.128304px;}
.lsb_c03126{letter-spacing:0.508464px;}
.ls11_c03126{letter-spacing:0.514080px;}
.lse_c03126{letter-spacing:0.536976px;}
.lsa_c03126{letter-spacing:0.579744px;}
.ls10_c03126{letter-spacing:0.594000px;}
.ls8_c03126{letter-spacing:0.598752px;}
.ls2_c03126{letter-spacing:0.613008px;}
.ls3_c03126{letter-spacing:0.717552px;}
.ls0_c03126{letter-spacing:0.722304px;}
.sc__c03126{text-shadow:none;}
.sc0_c03126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03126{-webkit-text-stroke:0px transparent;}
.sc0_c03126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03126{word-spacing:-15.126048px;}
.wsa_c03126{word-spacing:-12.474000px;}
.ws8_c03126{word-spacing:-12.459744px;}
.ws9_c03126{word-spacing:-12.416976px;}
.ws4_c03126{word-spacing:-11.637648px;}
.ws2_c03126{word-spacing:-11.266992px;}
.ws10_c03126{word-spacing:-1.083456px;}
.wsd_c03126{word-spacing:-0.974160px;}
.ws14_c03126{word-spacing:-0.719712px;}
.wsf_c03126{word-spacing:-0.118800px;}
.ws12_c03126{word-spacing:-0.099792px;}
.ws13_c03126{word-spacing:-0.085536px;}
.wse_c03126{word-spacing:0.000000px;}
.ws11_c03126{word-spacing:0.836352px;}
.wsb_c03126{word-spacing:33.300288px;}
.ws6_c03126{word-spacing:36.742464px;}
.ws1_c03126{word-spacing:37.759392px;}
.ws0_c03126{word-spacing:38.020752px;}
.ws3_c03126{word-spacing:39.218256px;}
.ws5_c03126{word-spacing:39.902544px;}
.ws7_c03126{word-spacing:42.026688px;}
._0_c03126{margin-left:-1.948320px;}
._2_c03126{width:1.482624px;}
._4_c03126{width:3.302640px;}
._1_c03126{width:50.252400px;}
._3_c03126{width:51.530688px;}
.fc0_c03126{color:rgb(0,0,0);}
.fs0_c03126{font-size:47.520000px;}
.fs1_c03126{font-size:60.480000px;}
.y0_c03126{bottom:0.000000px;}
.y19_c03126{bottom:146.998362px;}
.y1b_c03126{bottom:186.600234px;}
.y1a_c03126{bottom:196.320450px;}
.y18_c03126{bottom:275.878542px;}
.y17_c03126{bottom:356.878758px;}
.y15_c03126{bottom:406.559730px;}
.y11_c03126{bottom:424.560306px;}
.y16_c03126{bottom:458.759262px;}
.y14_c03126{bottom:491.879514px;}
.y13_c03126{bottom:509.880090px;}
.y10_c03126{bottom:543.000342px;}
.y12_c03126{bottom:559.559874px;}
.yf_c03126{bottom:577.560450px;}
.y1c_c03126{bottom:614.280450px;}
.yb_c03126{bottom:667.558326px;}
.yd_c03126{bottom:707.160234px;}
.yc_c03126{bottom:716.880450px;}
.ya_c03126{bottom:796.438506px;}
.y9_c03126{bottom:877.438722px;}
.y7_c03126{bottom:926.759730px;}
.y3_c03126{bottom:944.760306px;}
.y8_c03126{bottom:979.319226px;}
.y6_c03126{bottom:1012.439478px;}
.y5_c03126{bottom:1030.440054px;}
.y2_c03126{bottom:1063.560306px;}
.y4_c03126{bottom:1079.759874px;}
.y1_c03126{bottom:1097.760450px;}
.ye_c03126{bottom:1134.840450px;}
.h3_c03126{height:32.530781px;}
.h1_c03126{height:41.696016px;}
.h2_c03126{height:41.812031px;}
.h4_c03126{height:54.654737px;}
.h0_c03126{height:1263.000000px;}
.w1_c03126{width:892.500000px;}
.w0_c03126{width:892.830000px;}
.x0_c03126{left:0.000000px;}
.xd_c03126{left:117.000000px;}
.x8_c03126{left:440.999856px;}
.x4_c03126{left:445.680576px;}
.xb_c03126{left:451.080000px;}
.x7_c03126{left:455.399604px;}
.x5_c03126{left:461.880144px;}
.x1_c03126{left:463.320000px;}
.xa_c03126{left:483.480360px;}
.x9_c03126{left:492.119496px;}
.x6_c03126{left:493.200576px;}
.xc_c03126{left:506.880360px;}
.x3_c03126{left:511.919892px;}
.x2_c03126{left:526.679604px;}
@media print{
.v0_c03126{vertical-align:0.000000pt;}
.v1_c03126{vertical-align:1.279488pt;}
.lsc_c03126{letter-spacing:-1.064448pt;}
.ls7_c03126{letter-spacing:-0.544896pt;}
.ls9_c03126{letter-spacing:-0.511104pt;}
.lsf_c03126{letter-spacing:-0.244992pt;}
.lsd_c03126{letter-spacing:-0.232320pt;}
.ls6_c03126{letter-spacing:-0.215424pt;}
.ls4_c03126{letter-spacing:-0.105600pt;}
.ls12_c03126{letter-spacing:0.000000pt;}
.ls1_c03126{letter-spacing:0.005376pt;}
.ls5_c03126{letter-spacing:0.114048pt;}
.lsb_c03126{letter-spacing:0.451968pt;}
.ls11_c03126{letter-spacing:0.456960pt;}
.lse_c03126{letter-spacing:0.477312pt;}
.lsa_c03126{letter-spacing:0.515328pt;}
.ls10_c03126{letter-spacing:0.528000pt;}
.ls8_c03126{letter-spacing:0.532224pt;}
.ls2_c03126{letter-spacing:0.544896pt;}
.ls3_c03126{letter-spacing:0.637824pt;}
.ls0_c03126{letter-spacing:0.642048pt;}
.wsc_c03126{word-spacing:-13.445376pt;}
.wsa_c03126{word-spacing:-11.088000pt;}
.ws8_c03126{word-spacing:-11.075328pt;}
.ws9_c03126{word-spacing:-11.037312pt;}
.ws4_c03126{word-spacing:-10.344576pt;}
.ws2_c03126{word-spacing:-10.015104pt;}
.ws10_c03126{word-spacing:-0.963072pt;}
.wsd_c03126{word-spacing:-0.865920pt;}
.ws14_c03126{word-spacing:-0.639744pt;}
.wsf_c03126{word-spacing:-0.105600pt;}
.ws12_c03126{word-spacing:-0.088704pt;}
.ws13_c03126{word-spacing:-0.076032pt;}
.wse_c03126{word-spacing:0.000000pt;}
.ws11_c03126{word-spacing:0.743424pt;}
.wsb_c03126{word-spacing:29.600256pt;}
.ws6_c03126{word-spacing:32.659968pt;}
.ws1_c03126{word-spacing:33.563904pt;}
.ws0_c03126{word-spacing:33.796224pt;}
.ws3_c03126{word-spacing:34.860672pt;}
.ws5_c03126{word-spacing:35.468928pt;}
.ws7_c03126{word-spacing:37.357056pt;}
._0_c03126{margin-left:-1.731840pt;}
._2_c03126{width:1.317888pt;}
._4_c03126{width:2.935680pt;}
._1_c03126{width:44.668800pt;}
._3_c03126{width:45.805056pt;}
.fs0_c03126{font-size:42.240000pt;}
.fs1_c03126{font-size:53.760000pt;}
.y0_c03126{bottom:0.000000pt;}
.y19_c03126{bottom:130.665211pt;}
.y1b_c03126{bottom:165.866875pt;}
.y1a_c03126{bottom:174.507067pt;}
.y18_c03126{bottom:245.225371pt;}
.y17_c03126{bottom:317.225563pt;}
.y15_c03126{bottom:361.386427pt;}
.y11_c03126{bottom:377.386939pt;}
.y16_c03126{bottom:407.786011pt;}
.y14_c03126{bottom:437.226235pt;}
.y13_c03126{bottom:453.226747pt;}
.y10_c03126{bottom:482.666971pt;}
.y12_c03126{bottom:497.386555pt;}
.yf_c03126{bottom:513.387067pt;}
.y1c_c03126{bottom:546.027067pt;}
.yb_c03126{bottom:593.385179pt;}
.yd_c03126{bottom:628.586875pt;}
.yc_c03126{bottom:637.227067pt;}
.ya_c03126{bottom:707.945339pt;}
.y9_c03126{bottom:779.945531pt;}
.y7_c03126{bottom:823.786427pt;}
.y3_c03126{bottom:839.786939pt;}
.y8_c03126{bottom:870.505979pt;}
.y6_c03126{bottom:899.946203pt;}
.y5_c03126{bottom:915.946715pt;}
.y2_c03126{bottom:945.386939pt;}
.y4_c03126{bottom:959.786555pt;}
.y1_c03126{bottom:975.787067pt;}
.ye_c03126{bottom:1008.747067pt;}
.h3_c03126{height:28.916250pt;}
.h1_c03126{height:37.063125pt;}
.h2_c03126{height:37.166250pt;}
.h4_c03126{height:48.581988pt;}
.h0_c03126{height:1122.666667pt;}
.w1_c03126{width:793.333333pt;}
.w0_c03126{width:793.626667pt;}
.x0_c03126{left:0.000000pt;}
.xd_c03126{left:104.000000pt;}
.x8_c03126{left:391.999872pt;}
.x4_c03126{left:396.160512pt;}
.xb_c03126{left:400.960000pt;}
.x7_c03126{left:404.799648pt;}
.x5_c03126{left:410.560128pt;}
.x1_c03126{left:411.840000pt;}
.xa_c03126{left:429.760320pt;}
.x9_c03126{left:437.439552pt;}
.x6_c03126{left:438.400512pt;}
.xc_c03126{left:450.560320pt;}
.x3_c03126{left:455.039904pt;}
.x2_c03126{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03127 {
    display:none;
  }
  .loading-indicator_c03127.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03127 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03127 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03127" -> "#page-container .classname_c03127")
 */
.pf_c03127 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03127 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03127.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03127 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03127 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03127 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03127 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03127 {overflow:visible;}
  }
}
.c_c03127 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03127 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03127:after { /* webkit #35443 */
  content: '';
}
.t_c03127:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03127 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03127 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03127 { /* info for Javascript */
  display:none;
}
.l_c03127 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03127 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03127 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03127:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03127 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03127.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03127.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03127 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03127{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03127;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03127{font-family:ff1_c03127;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03127;src:url('chunks/assets/font_339d3f4171e44639267d2e37.woff2')format("woff");}.ff2_c03127{font-family:ff2_c03127;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03127;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03127{font-family:ff3_c03127;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03127{vertical-align:0.000000px;}
.v1_c03127{vertical-align:1.439424px;}
.lsb_c03127{letter-spacing:-1.197504px;}
.ls6_c03127{letter-spacing:-0.613008px;}
.ls8_c03127{letter-spacing:-0.574992px;}
.lse_c03127{letter-spacing:-0.275616px;}
.lsc_c03127{letter-spacing:-0.261360px;}
.ls5_c03127{letter-spacing:-0.242352px;}
.ls3_c03127{letter-spacing:-0.118800px;}
.ls11_c03127{letter-spacing:0.000000px;}
.ls1_c03127{letter-spacing:0.006048px;}
.ls4_c03127{letter-spacing:0.128304px;}
.lsa_c03127{letter-spacing:0.508464px;}
.ls10_c03127{letter-spacing:0.514080px;}
.lsd_c03127{letter-spacing:0.536976px;}
.ls9_c03127{letter-spacing:0.579744px;}
.lsf_c03127{letter-spacing:0.594000px;}
.ls7_c03127{letter-spacing:0.598752px;}
.ls2_c03127{letter-spacing:0.613008px;}
.ls0_c03127{letter-spacing:0.717552px;}
.sc__c03127{text-shadow:none;}
.sc0_c03127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03127{-webkit-text-stroke:0px transparent;}
.sc0_c03127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03127{word-spacing:-15.126048px;}
.wsa_c03127{word-spacing:-12.474000px;}
.ws8_c03127{word-spacing:-12.459744px;}
.ws9_c03127{word-spacing:-12.416976px;}
.ws4_c03127{word-spacing:-11.637648px;}
.ws2_c03127{word-spacing:-11.266992px;}
.ws10_c03127{word-spacing:-1.078704px;}
.wsd_c03127{word-spacing:-0.974160px;}
.ws14_c03127{word-spacing:-0.719712px;}
.wsf_c03127{word-spacing:-0.118800px;}
.ws12_c03127{word-spacing:-0.099792px;}
.ws13_c03127{word-spacing:-0.085536px;}
.wse_c03127{word-spacing:0.000000px;}
.ws11_c03127{word-spacing:0.836352px;}
.wsb_c03127{word-spacing:33.300288px;}
.ws6_c03127{word-spacing:36.742464px;}
.ws1_c03127{word-spacing:37.759392px;}
.ws0_c03127{word-spacing:38.020752px;}
.ws3_c03127{word-spacing:39.218256px;}
.ws5_c03127{word-spacing:39.902544px;}
.ws7_c03127{word-spacing:42.026688px;}
._0_c03127{margin-left:-1.948320px;}
._2_c03127{width:1.482624px;}
._4_c03127{width:3.302640px;}
._1_c03127{width:50.252400px;}
._3_c03127{width:51.530688px;}
.fc0_c03127{color:rgb(0,0,0);}
.fs0_c03127{font-size:47.520000px;}
.fs1_c03127{font-size:60.480000px;}
.y0_c03127{bottom:0.000000px;}
.y19_c03127{bottom:146.998362px;}
.y1b_c03127{bottom:186.600234px;}
.y1a_c03127{bottom:196.320450px;}
.y18_c03127{bottom:275.878542px;}
.y17_c03127{bottom:356.878758px;}
.y15_c03127{bottom:406.559730px;}
.y11_c03127{bottom:424.560306px;}
.y16_c03127{bottom:458.759262px;}
.y14_c03127{bottom:491.879514px;}
.y13_c03127{bottom:509.880090px;}
.y10_c03127{bottom:543.000342px;}
.y12_c03127{bottom:559.559874px;}
.yf_c03127{bottom:577.560450px;}
.y1c_c03127{bottom:614.280450px;}
.yb_c03127{bottom:667.558326px;}
.yd_c03127{bottom:707.160234px;}
.yc_c03127{bottom:716.880450px;}
.ya_c03127{bottom:796.438506px;}
.y9_c03127{bottom:877.438722px;}
.y7_c03127{bottom:926.759730px;}
.y3_c03127{bottom:944.760306px;}
.y8_c03127{bottom:979.319226px;}
.y6_c03127{bottom:1012.439478px;}
.y5_c03127{bottom:1030.440054px;}
.y2_c03127{bottom:1063.560306px;}
.y4_c03127{bottom:1079.759874px;}
.y1_c03127{bottom:1097.760450px;}
.ye_c03127{bottom:1134.840450px;}
.h3_c03127{height:32.530781px;}
.h1_c03127{height:41.696016px;}
.h2_c03127{height:41.812031px;}
.h4_c03127{height:54.654737px;}
.h0_c03127{height:1263.000000px;}
.w1_c03127{width:892.500000px;}
.w0_c03127{width:892.830000px;}
.x0_c03127{left:0.000000px;}
.xd_c03127{left:117.000000px;}
.x8_c03127{left:440.999856px;}
.x4_c03127{left:445.680576px;}
.xb_c03127{left:451.080000px;}
.x7_c03127{left:455.399604px;}
.x5_c03127{left:461.880144px;}
.x1_c03127{left:463.320000px;}
.xa_c03127{left:483.480360px;}
.x9_c03127{left:492.119496px;}
.x6_c03127{left:493.200576px;}
.xc_c03127{left:506.880360px;}
.x3_c03127{left:511.919892px;}
.x2_c03127{left:526.679604px;}
@media print{
.v0_c03127{vertical-align:0.000000pt;}
.v1_c03127{vertical-align:1.279488pt;}
.lsb_c03127{letter-spacing:-1.064448pt;}
.ls6_c03127{letter-spacing:-0.544896pt;}
.ls8_c03127{letter-spacing:-0.511104pt;}
.lse_c03127{letter-spacing:-0.244992pt;}
.lsc_c03127{letter-spacing:-0.232320pt;}
.ls5_c03127{letter-spacing:-0.215424pt;}
.ls3_c03127{letter-spacing:-0.105600pt;}
.ls11_c03127{letter-spacing:0.000000pt;}
.ls1_c03127{letter-spacing:0.005376pt;}
.ls4_c03127{letter-spacing:0.114048pt;}
.lsa_c03127{letter-spacing:0.451968pt;}
.ls10_c03127{letter-spacing:0.456960pt;}
.lsd_c03127{letter-spacing:0.477312pt;}
.ls9_c03127{letter-spacing:0.515328pt;}
.lsf_c03127{letter-spacing:0.528000pt;}
.ls7_c03127{letter-spacing:0.532224pt;}
.ls2_c03127{letter-spacing:0.544896pt;}
.ls0_c03127{letter-spacing:0.637824pt;}
.wsc_c03127{word-spacing:-13.445376pt;}
.wsa_c03127{word-spacing:-11.088000pt;}
.ws8_c03127{word-spacing:-11.075328pt;}
.ws9_c03127{word-spacing:-11.037312pt;}
.ws4_c03127{word-spacing:-10.344576pt;}
.ws2_c03127{word-spacing:-10.015104pt;}
.ws10_c03127{word-spacing:-0.958848pt;}
.wsd_c03127{word-spacing:-0.865920pt;}
.ws14_c03127{word-spacing:-0.639744pt;}
.wsf_c03127{word-spacing:-0.105600pt;}
.ws12_c03127{word-spacing:-0.088704pt;}
.ws13_c03127{word-spacing:-0.076032pt;}
.wse_c03127{word-spacing:0.000000pt;}
.ws11_c03127{word-spacing:0.743424pt;}
.wsb_c03127{word-spacing:29.600256pt;}
.ws6_c03127{word-spacing:32.659968pt;}
.ws1_c03127{word-spacing:33.563904pt;}
.ws0_c03127{word-spacing:33.796224pt;}
.ws3_c03127{word-spacing:34.860672pt;}
.ws5_c03127{word-spacing:35.468928pt;}
.ws7_c03127{word-spacing:37.357056pt;}
._0_c03127{margin-left:-1.731840pt;}
._2_c03127{width:1.317888pt;}
._4_c03127{width:2.935680pt;}
._1_c03127{width:44.668800pt;}
._3_c03127{width:45.805056pt;}
.fs0_c03127{font-size:42.240000pt;}
.fs1_c03127{font-size:53.760000pt;}
.y0_c03127{bottom:0.000000pt;}
.y19_c03127{bottom:130.665211pt;}
.y1b_c03127{bottom:165.866875pt;}
.y1a_c03127{bottom:174.507067pt;}
.y18_c03127{bottom:245.225371pt;}
.y17_c03127{bottom:317.225563pt;}
.y15_c03127{bottom:361.386427pt;}
.y11_c03127{bottom:377.386939pt;}
.y16_c03127{bottom:407.786011pt;}
.y14_c03127{bottom:437.226235pt;}
.y13_c03127{bottom:453.226747pt;}
.y10_c03127{bottom:482.666971pt;}
.y12_c03127{bottom:497.386555pt;}
.yf_c03127{bottom:513.387067pt;}
.y1c_c03127{bottom:546.027067pt;}
.yb_c03127{bottom:593.385179pt;}
.yd_c03127{bottom:628.586875pt;}
.yc_c03127{bottom:637.227067pt;}
.ya_c03127{bottom:707.945339pt;}
.y9_c03127{bottom:779.945531pt;}
.y7_c03127{bottom:823.786427pt;}
.y3_c03127{bottom:839.786939pt;}
.y8_c03127{bottom:870.505979pt;}
.y6_c03127{bottom:899.946203pt;}
.y5_c03127{bottom:915.946715pt;}
.y2_c03127{bottom:945.386939pt;}
.y4_c03127{bottom:959.786555pt;}
.y1_c03127{bottom:975.787067pt;}
.ye_c03127{bottom:1008.747067pt;}
.h3_c03127{height:28.916250pt;}
.h1_c03127{height:37.063125pt;}
.h2_c03127{height:37.166250pt;}
.h4_c03127{height:48.581988pt;}
.h0_c03127{height:1122.666667pt;}
.w1_c03127{width:793.333333pt;}
.w0_c03127{width:793.626667pt;}
.x0_c03127{left:0.000000pt;}
.xd_c03127{left:104.000000pt;}
.x8_c03127{left:391.999872pt;}
.x4_c03127{left:396.160512pt;}
.xb_c03127{left:400.960000pt;}
.x7_c03127{left:404.799648pt;}
.x5_c03127{left:410.560128pt;}
.x1_c03127{left:411.840000pt;}
.xa_c03127{left:429.760320pt;}
.x9_c03127{left:437.439552pt;}
.x6_c03127{left:438.400512pt;}
.xc_c03127{left:450.560320pt;}
.x3_c03127{left:455.039904pt;}
.x2_c03127{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03128 {
    display:none;
  }
  .loading-indicator_c03128.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03128 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03128 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03128" -> "#page-container .classname_c03128")
 */
.pf_c03128 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03128 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03128.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03128 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03128 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03128 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03128 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03128 {overflow:visible;}
  }
}
.c_c03128 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03128 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03128:after { /* webkit #35443 */
  content: '';
}
.t_c03128:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03128 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03128 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03128 { /* info for Javascript */
  display:none;
}
.l_c03128 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03128 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03128 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03128:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03128 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03128.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03128.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03128 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03128{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03128;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03128{font-family:ff1_c03128;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03128;src:url('chunks/assets/font_a975d06c3a4a5f1dd66ce195.woff2')format("woff");}.ff2_c03128{font-family:ff2_c03128;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03128;src:url('chunks/assets/font_86303d2fb523b90fdbd49016.woff2')format("woff");}.ff3_c03128{font-family:ff3_c03128;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03128{vertical-align:0.000000px;}
.v1_c03128{vertical-align:1.439424px;}
.lsb_c03128{letter-spacing:-1.197504px;}
.lse_c03128{letter-spacing:-0.793584px;}
.ls16_c03128{letter-spacing:-0.613008px;}
.lsa_c03128{letter-spacing:-0.574992px;}
.ls10_c03128{letter-spacing:-0.342144px;}
.ls12_c03128{letter-spacing:-0.275616px;}
.lsf_c03128{letter-spacing:-0.261360px;}
.ls7_c03128{letter-spacing:-0.242352px;}
.ls17_c03128{letter-spacing:-0.237600px;}
.ls4_c03128{letter-spacing:-0.118800px;}
.ls15_c03128{letter-spacing:0.000000px;}
.ls0_c03128{letter-spacing:0.006048px;}
.ls6_c03128{letter-spacing:0.128304px;}
.ls5_c03128{letter-spacing:0.242352px;}
.lsd_c03128{letter-spacing:0.508464px;}
.ls14_c03128{letter-spacing:0.514080px;}
.ls11_c03128{letter-spacing:0.536976px;}
.ls8_c03128{letter-spacing:0.560736px;}
.lsc_c03128{letter-spacing:0.579744px;}
.ls13_c03128{letter-spacing:0.594000px;}
.ls9_c03128{letter-spacing:0.598752px;}
.ls2_c03128{letter-spacing:0.613008px;}
.ls3_c03128{letter-spacing:0.717552px;}
.ls1_c03128{letter-spacing:0.722304px;}
.sc__c03128{text-shadow:none;}
.sc0_c03128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03128{-webkit-text-stroke:0px transparent;}
.sc0_c03128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03128{word-spacing:-15.126048px;}
.wsc_c03128{word-spacing:-12.474000px;}
.ws8_c03128{word-spacing:-12.459744px;}
.wsb_c03128{word-spacing:-12.416976px;}
.ws9_c03128{word-spacing:-12.388464px;}
.ws5_c03128{word-spacing:-11.637648px;}
.wsf_c03128{word-spacing:-11.266992px;}
.ws7_c03128{word-spacing:-10.682496px;}
.ws1a_c03128{word-spacing:-1.083456px;}
.ws12_c03128{word-spacing:-0.974160px;}
.ws19_c03128{word-spacing:-0.719712px;}
.ws1_c03128{word-spacing:-0.123552px;}
.ws14_c03128{word-spacing:-0.118800px;}
.ws16_c03128{word-spacing:-0.099792px;}
.ws18_c03128{word-spacing:-0.085536px;}
.ws17_c03128{word-spacing:-0.019008px;}
.ws13_c03128{word-spacing:0.000000px;}
.ws15_c03128{word-spacing:0.432432px;}
.ws1b_c03128{word-spacing:0.836352px;}
.ws10_c03128{word-spacing:4.942080px;}
.ws3_c03128{word-spacing:4.999104px;}
.wsd_c03128{word-spacing:33.300288px;}
.wsa_c03128{word-spacing:36.143712px;}
.ws2_c03128{word-spacing:37.759392px;}
.ws0_c03128{word-spacing:38.020752px;}
.ws4_c03128{word-spacing:39.218256px;}
.ws6_c03128{word-spacing:39.902544px;}
.ws11_c03128{word-spacing:42.026688px;}
._0_c03128{margin-left:-1.948320px;}
._2_c03128{width:1.482624px;}
._4_c03128{width:3.302640px;}
._1_c03128{width:50.252400px;}
._3_c03128{width:51.530688px;}
.fc0_c03128{color:rgb(0,0,0);}
.fs0_c03128{font-size:47.520000px;}
.fs1_c03128{font-size:60.480000px;}
.y0_c03128{bottom:0.000000px;}
.y19_c03128{bottom:146.998362px;}
.y1b_c03128{bottom:186.600234px;}
.y1a_c03128{bottom:196.320450px;}
.y18_c03128{bottom:275.878542px;}
.y17_c03128{bottom:356.878758px;}
.y15_c03128{bottom:406.559730px;}
.y11_c03128{bottom:424.560306px;}
.y16_c03128{bottom:458.759262px;}
.y14_c03128{bottom:491.879514px;}
.y13_c03128{bottom:509.880090px;}
.y10_c03128{bottom:543.000342px;}
.y12_c03128{bottom:559.559874px;}
.yf_c03128{bottom:577.560450px;}
.y1c_c03128{bottom:614.280450px;}
.yb_c03128{bottom:667.558326px;}
.yd_c03128{bottom:707.160234px;}
.yc_c03128{bottom:716.880450px;}
.ya_c03128{bottom:796.438506px;}
.y9_c03128{bottom:877.438722px;}
.y7_c03128{bottom:926.759730px;}
.y3_c03128{bottom:944.760306px;}
.y8_c03128{bottom:979.319226px;}
.y6_c03128{bottom:1012.439478px;}
.y5_c03128{bottom:1030.440054px;}
.y2_c03128{bottom:1063.560306px;}
.y4_c03128{bottom:1079.759874px;}
.y1_c03128{bottom:1097.760450px;}
.ye_c03128{bottom:1134.840450px;}
.h3_c03128{height:32.530781px;}
.h1_c03128{height:41.696016px;}
.h2_c03128{height:41.812031px;}
.h4_c03128{height:54.654737px;}
.h0_c03128{height:1263.000000px;}
.w1_c03128{width:892.500000px;}
.w0_c03128{width:892.830000px;}
.x0_c03128{left:0.000000px;}
.xd_c03128{left:117.000000px;}
.x8_c03128{left:440.999856px;}
.x4_c03128{left:445.680576px;}
.xb_c03128{left:451.080000px;}
.x7_c03128{left:455.399604px;}
.x5_c03128{left:461.880144px;}
.x1_c03128{left:463.320000px;}
.xa_c03128{left:483.480360px;}
.x9_c03128{left:492.119496px;}
.x6_c03128{left:493.200576px;}
.xc_c03128{left:506.880360px;}
.x3_c03128{left:511.919892px;}
.x2_c03128{left:526.679604px;}
@media print{
.v0_c03128{vertical-align:0.000000pt;}
.v1_c03128{vertical-align:1.279488pt;}
.lsb_c03128{letter-spacing:-1.064448pt;}
.lse_c03128{letter-spacing:-0.705408pt;}
.ls16_c03128{letter-spacing:-0.544896pt;}
.lsa_c03128{letter-spacing:-0.511104pt;}
.ls10_c03128{letter-spacing:-0.304128pt;}
.ls12_c03128{letter-spacing:-0.244992pt;}
.lsf_c03128{letter-spacing:-0.232320pt;}
.ls7_c03128{letter-spacing:-0.215424pt;}
.ls17_c03128{letter-spacing:-0.211200pt;}
.ls4_c03128{letter-spacing:-0.105600pt;}
.ls15_c03128{letter-spacing:0.000000pt;}
.ls0_c03128{letter-spacing:0.005376pt;}
.ls6_c03128{letter-spacing:0.114048pt;}
.ls5_c03128{letter-spacing:0.215424pt;}
.lsd_c03128{letter-spacing:0.451968pt;}
.ls14_c03128{letter-spacing:0.456960pt;}
.ls11_c03128{letter-spacing:0.477312pt;}
.ls8_c03128{letter-spacing:0.498432pt;}
.lsc_c03128{letter-spacing:0.515328pt;}
.ls13_c03128{letter-spacing:0.528000pt;}
.ls9_c03128{letter-spacing:0.532224pt;}
.ls2_c03128{letter-spacing:0.544896pt;}
.ls3_c03128{letter-spacing:0.637824pt;}
.ls1_c03128{letter-spacing:0.642048pt;}
.wse_c03128{word-spacing:-13.445376pt;}
.wsc_c03128{word-spacing:-11.088000pt;}
.ws8_c03128{word-spacing:-11.075328pt;}
.wsb_c03128{word-spacing:-11.037312pt;}
.ws9_c03128{word-spacing:-11.011968pt;}
.ws5_c03128{word-spacing:-10.344576pt;}
.wsf_c03128{word-spacing:-10.015104pt;}
.ws7_c03128{word-spacing:-9.495552pt;}
.ws1a_c03128{word-spacing:-0.963072pt;}
.ws12_c03128{word-spacing:-0.865920pt;}
.ws19_c03128{word-spacing:-0.639744pt;}
.ws1_c03128{word-spacing:-0.109824pt;}
.ws14_c03128{word-spacing:-0.105600pt;}
.ws16_c03128{word-spacing:-0.088704pt;}
.ws18_c03128{word-spacing:-0.076032pt;}
.ws17_c03128{word-spacing:-0.016896pt;}
.ws13_c03128{word-spacing:0.000000pt;}
.ws15_c03128{word-spacing:0.384384pt;}
.ws1b_c03128{word-spacing:0.743424pt;}
.ws10_c03128{word-spacing:4.392960pt;}
.ws3_c03128{word-spacing:4.443648pt;}
.wsd_c03128{word-spacing:29.600256pt;}
.wsa_c03128{word-spacing:32.127744pt;}
.ws2_c03128{word-spacing:33.563904pt;}
.ws0_c03128{word-spacing:33.796224pt;}
.ws4_c03128{word-spacing:34.860672pt;}
.ws6_c03128{word-spacing:35.468928pt;}
.ws11_c03128{word-spacing:37.357056pt;}
._0_c03128{margin-left:-1.731840pt;}
._2_c03128{width:1.317888pt;}
._4_c03128{width:2.935680pt;}
._1_c03128{width:44.668800pt;}
._3_c03128{width:45.805056pt;}
.fs0_c03128{font-size:42.240000pt;}
.fs1_c03128{font-size:53.760000pt;}
.y0_c03128{bottom:0.000000pt;}
.y19_c03128{bottom:130.665211pt;}
.y1b_c03128{bottom:165.866875pt;}
.y1a_c03128{bottom:174.507067pt;}
.y18_c03128{bottom:245.225371pt;}
.y17_c03128{bottom:317.225563pt;}
.y15_c03128{bottom:361.386427pt;}
.y11_c03128{bottom:377.386939pt;}
.y16_c03128{bottom:407.786011pt;}
.y14_c03128{bottom:437.226235pt;}
.y13_c03128{bottom:453.226747pt;}
.y10_c03128{bottom:482.666971pt;}
.y12_c03128{bottom:497.386555pt;}
.yf_c03128{bottom:513.387067pt;}
.y1c_c03128{bottom:546.027067pt;}
.yb_c03128{bottom:593.385179pt;}
.yd_c03128{bottom:628.586875pt;}
.yc_c03128{bottom:637.227067pt;}
.ya_c03128{bottom:707.945339pt;}
.y9_c03128{bottom:779.945531pt;}
.y7_c03128{bottom:823.786427pt;}
.y3_c03128{bottom:839.786939pt;}
.y8_c03128{bottom:870.505979pt;}
.y6_c03128{bottom:899.946203pt;}
.y5_c03128{bottom:915.946715pt;}
.y2_c03128{bottom:945.386939pt;}
.y4_c03128{bottom:959.786555pt;}
.y1_c03128{bottom:975.787067pt;}
.ye_c03128{bottom:1008.747067pt;}
.h3_c03128{height:28.916250pt;}
.h1_c03128{height:37.063125pt;}
.h2_c03128{height:37.166250pt;}
.h4_c03128{height:48.581988pt;}
.h0_c03128{height:1122.666667pt;}
.w1_c03128{width:793.333333pt;}
.w0_c03128{width:793.626667pt;}
.x0_c03128{left:0.000000pt;}
.xd_c03128{left:104.000000pt;}
.x8_c03128{left:391.999872pt;}
.x4_c03128{left:396.160512pt;}
.xb_c03128{left:400.960000pt;}
.x7_c03128{left:404.799648pt;}
.x5_c03128{left:410.560128pt;}
.x1_c03128{left:411.840000pt;}
.xa_c03128{left:429.760320pt;}
.x9_c03128{left:437.439552pt;}
.x6_c03128{left:438.400512pt;}
.xc_c03128{left:450.560320pt;}
.x3_c03128{left:455.039904pt;}
.x2_c03128{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03129 {
    display:none;
  }
  .loading-indicator_c03129.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03129 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03129 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03129" -> "#page-container .classname_c03129")
 */
.pf_c03129 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03129 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03129.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03129 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03129 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03129 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03129 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03129 {overflow:visible;}
  }
}
.c_c03129 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03129 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03129:after { /* webkit #35443 */
  content: '';
}
.t_c03129:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03129 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03129 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03129 { /* info for Javascript */
  display:none;
}
.l_c03129 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03129 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03129 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03129:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03129 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03129.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03129.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03129 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03129{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03129;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03129{font-family:ff1_c03129;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03129;src:url('chunks/assets/font_4b07251e20af351b1a29a1f2.woff2')format("woff");}.ff2_c03129{font-family:ff2_c03129;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03129;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03129{font-family:ff3_c03129;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03129{vertical-align:0.000000px;}
.v1_c03129{vertical-align:1.439424px;}
.lsd_c03129{letter-spacing:-1.197504px;}
.ls7_c03129{letter-spacing:-0.613008px;}
.lsa_c03129{letter-spacing:-0.574992px;}
.ls10_c03129{letter-spacing:-0.275616px;}
.lse_c03129{letter-spacing:-0.261360px;}
.ls6_c03129{letter-spacing:-0.242352px;}
.ls9_c03129{letter-spacing:-0.237600px;}
.ls4_c03129{letter-spacing:-0.118800px;}
.ls13_c03129{letter-spacing:0.000000px;}
.ls1_c03129{letter-spacing:0.006048px;}
.ls5_c03129{letter-spacing:0.128304px;}
.lsc_c03129{letter-spacing:0.508464px;}
.ls12_c03129{letter-spacing:0.514080px;}
.lsf_c03129{letter-spacing:0.536976px;}
.lsb_c03129{letter-spacing:0.579744px;}
.ls11_c03129{letter-spacing:0.594000px;}
.ls8_c03129{letter-spacing:0.598752px;}
.ls2_c03129{letter-spacing:0.613008px;}
.ls3_c03129{letter-spacing:0.717552px;}
.ls0_c03129{letter-spacing:0.722304px;}
.sc__c03129{text-shadow:none;}
.sc0_c03129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03129{-webkit-text-stroke:0px transparent;}
.sc0_c03129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03129{word-spacing:-15.126048px;}
.ws9_c03129{word-spacing:-12.474000px;}
.ws6_c03129{word-spacing:-12.459744px;}
.ws8_c03129{word-spacing:-12.416976px;}
.ws2_c03129{word-spacing:-11.266992px;}
.wsf_c03129{word-spacing:-1.083456px;}
.wsc_c03129{word-spacing:-0.974160px;}
.ws13_c03129{word-spacing:-0.719712px;}
.wse_c03129{word-spacing:-0.118800px;}
.ws11_c03129{word-spacing:-0.099792px;}
.ws12_c03129{word-spacing:-0.085536px;}
.wsd_c03129{word-spacing:0.000000px;}
.ws10_c03129{word-spacing:0.836352px;}
.ws4_c03129{word-spacing:4.942080px;}
.wsa_c03129{word-spacing:33.300288px;}
.ws1_c03129{word-spacing:37.759392px;}
.ws0_c03129{word-spacing:38.020752px;}
.ws3_c03129{word-spacing:39.218256px;}
.ws5_c03129{word-spacing:39.902544px;}
.ws7_c03129{word-spacing:42.026688px;}
._0_c03129{margin-left:-1.948320px;}
._2_c03129{width:1.482624px;}
._4_c03129{width:2.770416px;}
._1_c03129{width:50.252400px;}
._3_c03129{width:51.530688px;}
.fc0_c03129{color:rgb(0,0,0);}
.fs0_c03129{font-size:47.520000px;}
.fs1_c03129{font-size:60.480000px;}
.y0_c03129{bottom:0.000000px;}
.y19_c03129{bottom:146.998362px;}
.y1b_c03129{bottom:186.600234px;}
.y1a_c03129{bottom:196.320450px;}
.y18_c03129{bottom:275.878542px;}
.y17_c03129{bottom:356.878758px;}
.y15_c03129{bottom:406.559730px;}
.y11_c03129{bottom:424.560306px;}
.y16_c03129{bottom:458.759262px;}
.y14_c03129{bottom:491.879514px;}
.y13_c03129{bottom:509.880090px;}
.y10_c03129{bottom:543.000342px;}
.y12_c03129{bottom:559.559874px;}
.yf_c03129{bottom:577.560450px;}
.y1c_c03129{bottom:614.280450px;}
.yb_c03129{bottom:667.558326px;}
.yd_c03129{bottom:707.160234px;}
.yc_c03129{bottom:716.880450px;}
.ya_c03129{bottom:796.438506px;}
.y9_c03129{bottom:877.438722px;}
.y7_c03129{bottom:926.759730px;}
.y3_c03129{bottom:944.760306px;}
.y8_c03129{bottom:979.319226px;}
.y6_c03129{bottom:1012.439478px;}
.y5_c03129{bottom:1030.440054px;}
.y2_c03129{bottom:1063.560306px;}
.y4_c03129{bottom:1079.759874px;}
.y1_c03129{bottom:1097.760450px;}
.ye_c03129{bottom:1134.840450px;}
.h3_c03129{height:32.530781px;}
.h1_c03129{height:41.696016px;}
.h2_c03129{height:41.812031px;}
.h4_c03129{height:54.654737px;}
.h0_c03129{height:1263.000000px;}
.w1_c03129{width:892.500000px;}
.w0_c03129{width:892.830000px;}
.x0_c03129{left:0.000000px;}
.xd_c03129{left:117.000000px;}
.x8_c03129{left:440.999856px;}
.x4_c03129{left:445.680576px;}
.xb_c03129{left:451.080000px;}
.x7_c03129{left:455.399604px;}
.x5_c03129{left:461.880144px;}
.x1_c03129{left:463.320000px;}
.xa_c03129{left:483.480360px;}
.x9_c03129{left:492.119496px;}
.x6_c03129{left:493.200576px;}
.xc_c03129{left:506.880360px;}
.x3_c03129{left:511.919892px;}
.x2_c03129{left:526.679604px;}
@media print{
.v0_c03129{vertical-align:0.000000pt;}
.v1_c03129{vertical-align:1.279488pt;}
.lsd_c03129{letter-spacing:-1.064448pt;}
.ls7_c03129{letter-spacing:-0.544896pt;}
.lsa_c03129{letter-spacing:-0.511104pt;}
.ls10_c03129{letter-spacing:-0.244992pt;}
.lse_c03129{letter-spacing:-0.232320pt;}
.ls6_c03129{letter-spacing:-0.215424pt;}
.ls9_c03129{letter-spacing:-0.211200pt;}
.ls4_c03129{letter-spacing:-0.105600pt;}
.ls13_c03129{letter-spacing:0.000000pt;}
.ls1_c03129{letter-spacing:0.005376pt;}
.ls5_c03129{letter-spacing:0.114048pt;}
.lsc_c03129{letter-spacing:0.451968pt;}
.ls12_c03129{letter-spacing:0.456960pt;}
.lsf_c03129{letter-spacing:0.477312pt;}
.lsb_c03129{letter-spacing:0.515328pt;}
.ls11_c03129{letter-spacing:0.528000pt;}
.ls8_c03129{letter-spacing:0.532224pt;}
.ls2_c03129{letter-spacing:0.544896pt;}
.ls3_c03129{letter-spacing:0.637824pt;}
.ls0_c03129{letter-spacing:0.642048pt;}
.wsb_c03129{word-spacing:-13.445376pt;}
.ws9_c03129{word-spacing:-11.088000pt;}
.ws6_c03129{word-spacing:-11.075328pt;}
.ws8_c03129{word-spacing:-11.037312pt;}
.ws2_c03129{word-spacing:-10.015104pt;}
.wsf_c03129{word-spacing:-0.963072pt;}
.wsc_c03129{word-spacing:-0.865920pt;}
.ws13_c03129{word-spacing:-0.639744pt;}
.wse_c03129{word-spacing:-0.105600pt;}
.ws11_c03129{word-spacing:-0.088704pt;}
.ws12_c03129{word-spacing:-0.076032pt;}
.wsd_c03129{word-spacing:0.000000pt;}
.ws10_c03129{word-spacing:0.743424pt;}
.ws4_c03129{word-spacing:4.392960pt;}
.wsa_c03129{word-spacing:29.600256pt;}
.ws1_c03129{word-spacing:33.563904pt;}
.ws0_c03129{word-spacing:33.796224pt;}
.ws3_c03129{word-spacing:34.860672pt;}
.ws5_c03129{word-spacing:35.468928pt;}
.ws7_c03129{word-spacing:37.357056pt;}
._0_c03129{margin-left:-1.731840pt;}
._2_c03129{width:1.317888pt;}
._4_c03129{width:2.462592pt;}
._1_c03129{width:44.668800pt;}
._3_c03129{width:45.805056pt;}
.fs0_c03129{font-size:42.240000pt;}
.fs1_c03129{font-size:53.760000pt;}
.y0_c03129{bottom:0.000000pt;}
.y19_c03129{bottom:130.665211pt;}
.y1b_c03129{bottom:165.866875pt;}
.y1a_c03129{bottom:174.507067pt;}
.y18_c03129{bottom:245.225371pt;}
.y17_c03129{bottom:317.225563pt;}
.y15_c03129{bottom:361.386427pt;}
.y11_c03129{bottom:377.386939pt;}
.y16_c03129{bottom:407.786011pt;}
.y14_c03129{bottom:437.226235pt;}
.y13_c03129{bottom:453.226747pt;}
.y10_c03129{bottom:482.666971pt;}
.y12_c03129{bottom:497.386555pt;}
.yf_c03129{bottom:513.387067pt;}
.y1c_c03129{bottom:546.027067pt;}
.yb_c03129{bottom:593.385179pt;}
.yd_c03129{bottom:628.586875pt;}
.yc_c03129{bottom:637.227067pt;}
.ya_c03129{bottom:707.945339pt;}
.y9_c03129{bottom:779.945531pt;}
.y7_c03129{bottom:823.786427pt;}
.y3_c03129{bottom:839.786939pt;}
.y8_c03129{bottom:870.505979pt;}
.y6_c03129{bottom:899.946203pt;}
.y5_c03129{bottom:915.946715pt;}
.y2_c03129{bottom:945.386939pt;}
.y4_c03129{bottom:959.786555pt;}
.y1_c03129{bottom:975.787067pt;}
.ye_c03129{bottom:1008.747067pt;}
.h3_c03129{height:28.916250pt;}
.h1_c03129{height:37.063125pt;}
.h2_c03129{height:37.166250pt;}
.h4_c03129{height:48.581988pt;}
.h0_c03129{height:1122.666667pt;}
.w1_c03129{width:793.333333pt;}
.w0_c03129{width:793.626667pt;}
.x0_c03129{left:0.000000pt;}
.xd_c03129{left:104.000000pt;}
.x8_c03129{left:391.999872pt;}
.x4_c03129{left:396.160512pt;}
.xb_c03129{left:400.960000pt;}
.x7_c03129{left:404.799648pt;}
.x5_c03129{left:410.560128pt;}
.x1_c03129{left:411.840000pt;}
.xa_c03129{left:429.760320pt;}
.x9_c03129{left:437.439552pt;}
.x6_c03129{left:438.400512pt;}
.xc_c03129{left:450.560320pt;}
.x3_c03129{left:455.039904pt;}
.x2_c03129{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03130 {
    display:none;
  }
  .loading-indicator_c03130.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03130 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03130 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03130" -> "#page-container .classname_c03130")
 */
.pf_c03130 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03130 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03130.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03130 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03130 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03130 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03130 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03130 {overflow:visible;}
  }
}
.c_c03130 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03130 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03130:after { /* webkit #35443 */
  content: '';
}
.t_c03130:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03130 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03130 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03130 { /* info for Javascript */
  display:none;
}
.l_c03130 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03130 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03130 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03130:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03130 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03130.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03130.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03130 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03130{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03130;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03130{font-family:ff1_c03130;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03130;src:url('chunks/assets/font_66591c8ef08d87289fd68858.woff2')format("woff");}.ff2_c03130{font-family:ff2_c03130;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03130;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03130{font-family:ff3_c03130;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03130{vertical-align:0.000000px;}
.v1_c03130{vertical-align:1.439424px;}
.lsd_c03130{letter-spacing:-1.197504px;}
.ls7_c03130{letter-spacing:-0.613008px;}
.lsa_c03130{letter-spacing:-0.574992px;}
.ls10_c03130{letter-spacing:-0.275616px;}
.lse_c03130{letter-spacing:-0.261360px;}
.ls6_c03130{letter-spacing:-0.242352px;}
.ls9_c03130{letter-spacing:-0.237600px;}
.ls4_c03130{letter-spacing:-0.118800px;}
.ls13_c03130{letter-spacing:0.000000px;}
.ls1_c03130{letter-spacing:0.006048px;}
.ls5_c03130{letter-spacing:0.128304px;}
.lsc_c03130{letter-spacing:0.508464px;}
.ls12_c03130{letter-spacing:0.514080px;}
.lsf_c03130{letter-spacing:0.536976px;}
.lsb_c03130{letter-spacing:0.579744px;}
.ls11_c03130{letter-spacing:0.594000px;}
.ls8_c03130{letter-spacing:0.598752px;}
.ls2_c03130{letter-spacing:0.613008px;}
.ls3_c03130{letter-spacing:0.717552px;}
.ls0_c03130{letter-spacing:0.722304px;}
.sc__c03130{text-shadow:none;}
.sc0_c03130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03130{-webkit-text-stroke:0px transparent;}
.sc0_c03130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03130{word-spacing:-15.126048px;}
.ws9_c03130{word-spacing:-12.474000px;}
.ws6_c03130{word-spacing:-12.459744px;}
.ws8_c03130{word-spacing:-12.416976px;}
.ws2_c03130{word-spacing:-11.266992px;}
.ws10_c03130{word-spacing:-1.083456px;}
.wsd_c03130{word-spacing:-0.974160px;}
.ws14_c03130{word-spacing:-0.719712px;}
.wsf_c03130{word-spacing:-0.118800px;}
.ws12_c03130{word-spacing:-0.099792px;}
.ws13_c03130{word-spacing:-0.085536px;}
.wse_c03130{word-spacing:0.000000px;}
.ws11_c03130{word-spacing:0.836352px;}
.ws4_c03130{word-spacing:4.942080px;}
.wsa_c03130{word-spacing:33.300288px;}
.wsc_c03130{word-spacing:36.742464px;}
.ws1_c03130{word-spacing:37.759392px;}
.ws0_c03130{word-spacing:38.020752px;}
.ws3_c03130{word-spacing:39.218256px;}
.ws5_c03130{word-spacing:39.902544px;}
.ws7_c03130{word-spacing:42.026688px;}
._0_c03130{margin-left:-1.948320px;}
._2_c03130{width:1.482624px;}
._4_c03130{width:2.770416px;}
._1_c03130{width:50.252400px;}
._3_c03130{width:51.530688px;}
.fc0_c03130{color:rgb(0,0,0);}
.fs0_c03130{font-size:47.520000px;}
.fs1_c03130{font-size:60.480000px;}
.y0_c03130{bottom:0.000000px;}
.y19_c03130{bottom:146.998362px;}
.y1b_c03130{bottom:186.600234px;}
.y1a_c03130{bottom:196.320450px;}
.y18_c03130{bottom:275.878542px;}
.y17_c03130{bottom:356.878758px;}
.y15_c03130{bottom:406.559730px;}
.y11_c03130{bottom:424.560306px;}
.y16_c03130{bottom:458.759262px;}
.y14_c03130{bottom:491.879514px;}
.y13_c03130{bottom:509.880090px;}
.y10_c03130{bottom:543.000342px;}
.y12_c03130{bottom:559.559874px;}
.yf_c03130{bottom:577.560450px;}
.y1c_c03130{bottom:614.280450px;}
.yb_c03130{bottom:667.558326px;}
.yd_c03130{bottom:707.160234px;}
.yc_c03130{bottom:716.880450px;}
.ya_c03130{bottom:796.438506px;}
.y9_c03130{bottom:877.438722px;}
.y7_c03130{bottom:926.759730px;}
.y3_c03130{bottom:944.760306px;}
.y8_c03130{bottom:979.319226px;}
.y6_c03130{bottom:1012.439478px;}
.y5_c03130{bottom:1030.440054px;}
.y2_c03130{bottom:1063.560306px;}
.y4_c03130{bottom:1079.759874px;}
.y1_c03130{bottom:1097.760450px;}
.ye_c03130{bottom:1134.840450px;}
.h3_c03130{height:32.530781px;}
.h1_c03130{height:41.696016px;}
.h2_c03130{height:41.812031px;}
.h4_c03130{height:54.654737px;}
.h0_c03130{height:1263.000000px;}
.w1_c03130{width:892.500000px;}
.w0_c03130{width:892.830000px;}
.x0_c03130{left:0.000000px;}
.xd_c03130{left:117.000000px;}
.x8_c03130{left:440.999856px;}
.x4_c03130{left:445.680576px;}
.xb_c03130{left:451.080000px;}
.x7_c03130{left:455.399604px;}
.x5_c03130{left:461.880144px;}
.x1_c03130{left:463.320000px;}
.xa_c03130{left:483.480360px;}
.x9_c03130{left:492.119496px;}
.x6_c03130{left:493.200576px;}
.xc_c03130{left:506.880360px;}
.x3_c03130{left:511.919892px;}
.x2_c03130{left:526.679604px;}
@media print{
.v0_c03130{vertical-align:0.000000pt;}
.v1_c03130{vertical-align:1.279488pt;}
.lsd_c03130{letter-spacing:-1.064448pt;}
.ls7_c03130{letter-spacing:-0.544896pt;}
.lsa_c03130{letter-spacing:-0.511104pt;}
.ls10_c03130{letter-spacing:-0.244992pt;}
.lse_c03130{letter-spacing:-0.232320pt;}
.ls6_c03130{letter-spacing:-0.215424pt;}
.ls9_c03130{letter-spacing:-0.211200pt;}
.ls4_c03130{letter-spacing:-0.105600pt;}
.ls13_c03130{letter-spacing:0.000000pt;}
.ls1_c03130{letter-spacing:0.005376pt;}
.ls5_c03130{letter-spacing:0.114048pt;}
.lsc_c03130{letter-spacing:0.451968pt;}
.ls12_c03130{letter-spacing:0.456960pt;}
.lsf_c03130{letter-spacing:0.477312pt;}
.lsb_c03130{letter-spacing:0.515328pt;}
.ls11_c03130{letter-spacing:0.528000pt;}
.ls8_c03130{letter-spacing:0.532224pt;}
.ls2_c03130{letter-spacing:0.544896pt;}
.ls3_c03130{letter-spacing:0.637824pt;}
.ls0_c03130{letter-spacing:0.642048pt;}
.wsb_c03130{word-spacing:-13.445376pt;}
.ws9_c03130{word-spacing:-11.088000pt;}
.ws6_c03130{word-spacing:-11.075328pt;}
.ws8_c03130{word-spacing:-11.037312pt;}
.ws2_c03130{word-spacing:-10.015104pt;}
.ws10_c03130{word-spacing:-0.963072pt;}
.wsd_c03130{word-spacing:-0.865920pt;}
.ws14_c03130{word-spacing:-0.639744pt;}
.wsf_c03130{word-spacing:-0.105600pt;}
.ws12_c03130{word-spacing:-0.088704pt;}
.ws13_c03130{word-spacing:-0.076032pt;}
.wse_c03130{word-spacing:0.000000pt;}
.ws11_c03130{word-spacing:0.743424pt;}
.ws4_c03130{word-spacing:4.392960pt;}
.wsa_c03130{word-spacing:29.600256pt;}
.wsc_c03130{word-spacing:32.659968pt;}
.ws1_c03130{word-spacing:33.563904pt;}
.ws0_c03130{word-spacing:33.796224pt;}
.ws3_c03130{word-spacing:34.860672pt;}
.ws5_c03130{word-spacing:35.468928pt;}
.ws7_c03130{word-spacing:37.357056pt;}
._0_c03130{margin-left:-1.731840pt;}
._2_c03130{width:1.317888pt;}
._4_c03130{width:2.462592pt;}
._1_c03130{width:44.668800pt;}
._3_c03130{width:45.805056pt;}
.fs0_c03130{font-size:42.240000pt;}
.fs1_c03130{font-size:53.760000pt;}
.y0_c03130{bottom:0.000000pt;}
.y19_c03130{bottom:130.665211pt;}
.y1b_c03130{bottom:165.866875pt;}
.y1a_c03130{bottom:174.507067pt;}
.y18_c03130{bottom:245.225371pt;}
.y17_c03130{bottom:317.225563pt;}
.y15_c03130{bottom:361.386427pt;}
.y11_c03130{bottom:377.386939pt;}
.y16_c03130{bottom:407.786011pt;}
.y14_c03130{bottom:437.226235pt;}
.y13_c03130{bottom:453.226747pt;}
.y10_c03130{bottom:482.666971pt;}
.y12_c03130{bottom:497.386555pt;}
.yf_c03130{bottom:513.387067pt;}
.y1c_c03130{bottom:546.027067pt;}
.yb_c03130{bottom:593.385179pt;}
.yd_c03130{bottom:628.586875pt;}
.yc_c03130{bottom:637.227067pt;}
.ya_c03130{bottom:707.945339pt;}
.y9_c03130{bottom:779.945531pt;}
.y7_c03130{bottom:823.786427pt;}
.y3_c03130{bottom:839.786939pt;}
.y8_c03130{bottom:870.505979pt;}
.y6_c03130{bottom:899.946203pt;}
.y5_c03130{bottom:915.946715pt;}
.y2_c03130{bottom:945.386939pt;}
.y4_c03130{bottom:959.786555pt;}
.y1_c03130{bottom:975.787067pt;}
.ye_c03130{bottom:1008.747067pt;}
.h3_c03130{height:28.916250pt;}
.h1_c03130{height:37.063125pt;}
.h2_c03130{height:37.166250pt;}
.h4_c03130{height:48.581988pt;}
.h0_c03130{height:1122.666667pt;}
.w1_c03130{width:793.333333pt;}
.w0_c03130{width:793.626667pt;}
.x0_c03130{left:0.000000pt;}
.xd_c03130{left:104.000000pt;}
.x8_c03130{left:391.999872pt;}
.x4_c03130{left:396.160512pt;}
.xb_c03130{left:400.960000pt;}
.x7_c03130{left:404.799648pt;}
.x5_c03130{left:410.560128pt;}
.x1_c03130{left:411.840000pt;}
.xa_c03130{left:429.760320pt;}
.x9_c03130{left:437.439552pt;}
.x6_c03130{left:438.400512pt;}
.xc_c03130{left:450.560320pt;}
.x3_c03130{left:455.039904pt;}
.x2_c03130{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03131 {
    display:none;
  }
  .loading-indicator_c03131.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03131 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03131 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03131" -> "#page-container .classname_c03131")
 */
.pf_c03131 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03131 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03131.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03131 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03131 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03131 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03131 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03131 {overflow:visible;}
  }
}
.c_c03131 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03131 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03131:after { /* webkit #35443 */
  content: '';
}
.t_c03131:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03131 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03131 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03131 { /* info for Javascript */
  display:none;
}
.l_c03131 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03131 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03131 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03131:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03131 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03131.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03131.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03131 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03131{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03131;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03131{font-family:ff1_c03131;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03131;src:url('chunks/assets/font_6ffc532667d46d5a11ae9098.woff2')format("woff");}.ff2_c03131{font-family:ff2_c03131;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03131;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03131{font-family:ff3_c03131;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03131{vertical-align:0.000000px;}
.v1_c03131{vertical-align:1.439424px;}
.lsd_c03131{letter-spacing:-1.197504px;}
.ls7_c03131{letter-spacing:-0.613008px;}
.lsa_c03131{letter-spacing:-0.574992px;}
.ls10_c03131{letter-spacing:-0.275616px;}
.lse_c03131{letter-spacing:-0.261360px;}
.ls6_c03131{letter-spacing:-0.242352px;}
.ls9_c03131{letter-spacing:-0.237600px;}
.ls4_c03131{letter-spacing:-0.118800px;}
.ls13_c03131{letter-spacing:0.000000px;}
.ls1_c03131{letter-spacing:0.006048px;}
.ls5_c03131{letter-spacing:0.128304px;}
.lsc_c03131{letter-spacing:0.508464px;}
.ls12_c03131{letter-spacing:0.514080px;}
.lsf_c03131{letter-spacing:0.536976px;}
.lsb_c03131{letter-spacing:0.579744px;}
.ls11_c03131{letter-spacing:0.594000px;}
.ls8_c03131{letter-spacing:0.598752px;}
.ls2_c03131{letter-spacing:0.613008px;}
.ls3_c03131{letter-spacing:0.717552px;}
.ls0_c03131{letter-spacing:0.722304px;}
.sc__c03131{text-shadow:none;}
.sc0_c03131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03131{-webkit-text-stroke:0px transparent;}
.sc0_c03131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03131{word-spacing:-15.126048px;}
.wsa_c03131{word-spacing:-12.474000px;}
.ws8_c03131{word-spacing:-12.459744px;}
.ws9_c03131{word-spacing:-12.416976px;}
.ws2_c03131{word-spacing:-11.266992px;}
.ws10_c03131{word-spacing:-1.083456px;}
.wsd_c03131{word-spacing:-0.974160px;}
.ws14_c03131{word-spacing:-0.719712px;}
.wsf_c03131{word-spacing:-0.118800px;}
.ws12_c03131{word-spacing:-0.099792px;}
.ws13_c03131{word-spacing:-0.085536px;}
.wse_c03131{word-spacing:0.000000px;}
.ws11_c03131{word-spacing:0.836352px;}
.ws4_c03131{word-spacing:4.942080px;}
.wsb_c03131{word-spacing:33.300288px;}
.ws6_c03131{word-spacing:36.742464px;}
.ws1_c03131{word-spacing:37.759392px;}
.ws0_c03131{word-spacing:38.020752px;}
.ws3_c03131{word-spacing:39.218256px;}
.ws5_c03131{word-spacing:39.902544px;}
.ws7_c03131{word-spacing:42.026688px;}
._0_c03131{margin-left:-1.948320px;}
._2_c03131{width:1.482624px;}
._4_c03131{width:2.770416px;}
._1_c03131{width:50.252400px;}
._3_c03131{width:51.530688px;}
.fc0_c03131{color:rgb(0,0,0);}
.fs0_c03131{font-size:47.520000px;}
.fs1_c03131{font-size:60.480000px;}
.y0_c03131{bottom:0.000000px;}
.y19_c03131{bottom:146.998362px;}
.y1b_c03131{bottom:186.600234px;}
.y1a_c03131{bottom:196.320450px;}
.y18_c03131{bottom:275.878542px;}
.y17_c03131{bottom:356.878758px;}
.y15_c03131{bottom:406.559730px;}
.y11_c03131{bottom:424.560306px;}
.y16_c03131{bottom:458.759262px;}
.y14_c03131{bottom:491.879514px;}
.y13_c03131{bottom:509.880090px;}
.y10_c03131{bottom:543.000342px;}
.y12_c03131{bottom:559.559874px;}
.yf_c03131{bottom:577.560450px;}
.y1c_c03131{bottom:614.280450px;}
.yb_c03131{bottom:667.558326px;}
.yd_c03131{bottom:707.160234px;}
.yc_c03131{bottom:716.880450px;}
.ya_c03131{bottom:796.438506px;}
.y9_c03131{bottom:877.438722px;}
.y7_c03131{bottom:926.759730px;}
.y3_c03131{bottom:944.760306px;}
.y8_c03131{bottom:979.319226px;}
.y6_c03131{bottom:1012.439478px;}
.y5_c03131{bottom:1030.440054px;}
.y2_c03131{bottom:1063.560306px;}
.y4_c03131{bottom:1079.759874px;}
.y1_c03131{bottom:1097.760450px;}
.ye_c03131{bottom:1134.840450px;}
.h3_c03131{height:32.530781px;}
.h1_c03131{height:41.696016px;}
.h2_c03131{height:41.812031px;}
.h4_c03131{height:54.654737px;}
.h0_c03131{height:1263.000000px;}
.w1_c03131{width:892.500000px;}
.w0_c03131{width:892.830000px;}
.x0_c03131{left:0.000000px;}
.xd_c03131{left:117.000000px;}
.x8_c03131{left:440.999856px;}
.x4_c03131{left:445.680576px;}
.xb_c03131{left:451.080000px;}
.x7_c03131{left:455.399604px;}
.x5_c03131{left:461.880144px;}
.x1_c03131{left:463.320000px;}
.xa_c03131{left:483.480360px;}
.x9_c03131{left:492.119496px;}
.x6_c03131{left:493.200576px;}
.xc_c03131{left:506.880360px;}
.x3_c03131{left:511.919892px;}
.x2_c03131{left:526.679604px;}
@media print{
.v0_c03131{vertical-align:0.000000pt;}
.v1_c03131{vertical-align:1.279488pt;}
.lsd_c03131{letter-spacing:-1.064448pt;}
.ls7_c03131{letter-spacing:-0.544896pt;}
.lsa_c03131{letter-spacing:-0.511104pt;}
.ls10_c03131{letter-spacing:-0.244992pt;}
.lse_c03131{letter-spacing:-0.232320pt;}
.ls6_c03131{letter-spacing:-0.215424pt;}
.ls9_c03131{letter-spacing:-0.211200pt;}
.ls4_c03131{letter-spacing:-0.105600pt;}
.ls13_c03131{letter-spacing:0.000000pt;}
.ls1_c03131{letter-spacing:0.005376pt;}
.ls5_c03131{letter-spacing:0.114048pt;}
.lsc_c03131{letter-spacing:0.451968pt;}
.ls12_c03131{letter-spacing:0.456960pt;}
.lsf_c03131{letter-spacing:0.477312pt;}
.lsb_c03131{letter-spacing:0.515328pt;}
.ls11_c03131{letter-spacing:0.528000pt;}
.ls8_c03131{letter-spacing:0.532224pt;}
.ls2_c03131{letter-spacing:0.544896pt;}
.ls3_c03131{letter-spacing:0.637824pt;}
.ls0_c03131{letter-spacing:0.642048pt;}
.wsc_c03131{word-spacing:-13.445376pt;}
.wsa_c03131{word-spacing:-11.088000pt;}
.ws8_c03131{word-spacing:-11.075328pt;}
.ws9_c03131{word-spacing:-11.037312pt;}
.ws2_c03131{word-spacing:-10.015104pt;}
.ws10_c03131{word-spacing:-0.963072pt;}
.wsd_c03131{word-spacing:-0.865920pt;}
.ws14_c03131{word-spacing:-0.639744pt;}
.wsf_c03131{word-spacing:-0.105600pt;}
.ws12_c03131{word-spacing:-0.088704pt;}
.ws13_c03131{word-spacing:-0.076032pt;}
.wse_c03131{word-spacing:0.000000pt;}
.ws11_c03131{word-spacing:0.743424pt;}
.ws4_c03131{word-spacing:4.392960pt;}
.wsb_c03131{word-spacing:29.600256pt;}
.ws6_c03131{word-spacing:32.659968pt;}
.ws1_c03131{word-spacing:33.563904pt;}
.ws0_c03131{word-spacing:33.796224pt;}
.ws3_c03131{word-spacing:34.860672pt;}
.ws5_c03131{word-spacing:35.468928pt;}
.ws7_c03131{word-spacing:37.357056pt;}
._0_c03131{margin-left:-1.731840pt;}
._2_c03131{width:1.317888pt;}
._4_c03131{width:2.462592pt;}
._1_c03131{width:44.668800pt;}
._3_c03131{width:45.805056pt;}
.fs0_c03131{font-size:42.240000pt;}
.fs1_c03131{font-size:53.760000pt;}
.y0_c03131{bottom:0.000000pt;}
.y19_c03131{bottom:130.665211pt;}
.y1b_c03131{bottom:165.866875pt;}
.y1a_c03131{bottom:174.507067pt;}
.y18_c03131{bottom:245.225371pt;}
.y17_c03131{bottom:317.225563pt;}
.y15_c03131{bottom:361.386427pt;}
.y11_c03131{bottom:377.386939pt;}
.y16_c03131{bottom:407.786011pt;}
.y14_c03131{bottom:437.226235pt;}
.y13_c03131{bottom:453.226747pt;}
.y10_c03131{bottom:482.666971pt;}
.y12_c03131{bottom:497.386555pt;}
.yf_c03131{bottom:513.387067pt;}
.y1c_c03131{bottom:546.027067pt;}
.yb_c03131{bottom:593.385179pt;}
.yd_c03131{bottom:628.586875pt;}
.yc_c03131{bottom:637.227067pt;}
.ya_c03131{bottom:707.945339pt;}
.y9_c03131{bottom:779.945531pt;}
.y7_c03131{bottom:823.786427pt;}
.y3_c03131{bottom:839.786939pt;}
.y8_c03131{bottom:870.505979pt;}
.y6_c03131{bottom:899.946203pt;}
.y5_c03131{bottom:915.946715pt;}
.y2_c03131{bottom:945.386939pt;}
.y4_c03131{bottom:959.786555pt;}
.y1_c03131{bottom:975.787067pt;}
.ye_c03131{bottom:1008.747067pt;}
.h3_c03131{height:28.916250pt;}
.h1_c03131{height:37.063125pt;}
.h2_c03131{height:37.166250pt;}
.h4_c03131{height:48.581988pt;}
.h0_c03131{height:1122.666667pt;}
.w1_c03131{width:793.333333pt;}
.w0_c03131{width:793.626667pt;}
.x0_c03131{left:0.000000pt;}
.xd_c03131{left:104.000000pt;}
.x8_c03131{left:391.999872pt;}
.x4_c03131{left:396.160512pt;}
.xb_c03131{left:400.960000pt;}
.x7_c03131{left:404.799648pt;}
.x5_c03131{left:410.560128pt;}
.x1_c03131{left:411.840000pt;}
.xa_c03131{left:429.760320pt;}
.x9_c03131{left:437.439552pt;}
.x6_c03131{left:438.400512pt;}
.xc_c03131{left:450.560320pt;}
.x3_c03131{left:455.039904pt;}
.x2_c03131{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03132 {
    display:none;
  }
  .loading-indicator_c03132.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03132 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03132 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03132" -> "#page-container .classname_c03132")
 */
.pf_c03132 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03132 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03132.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03132 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03132 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03132 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03132 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03132 {overflow:visible;}
  }
}
.c_c03132 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03132 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03132:after { /* webkit #35443 */
  content: '';
}
.t_c03132:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03132 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03132 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03132 { /* info for Javascript */
  display:none;
}
.l_c03132 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03132 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03132 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03132:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03132 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03132.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03132.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03132 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03132{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03132;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03132{font-family:ff1_c03132;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03132;src:url('chunks/assets/font_ba8ff876426ec9dba15ca2f0.woff2')format("woff");}.ff2_c03132{font-family:ff2_c03132;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03132;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03132{font-family:ff3_c03132;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03132{vertical-align:0.000000px;}
.v1_c03132{vertical-align:1.439424px;}
.lsd_c03132{letter-spacing:-1.197504px;}
.ls7_c03132{letter-spacing:-0.613008px;}
.lsa_c03132{letter-spacing:-0.574992px;}
.ls10_c03132{letter-spacing:-0.275616px;}
.lse_c03132{letter-spacing:-0.261360px;}
.ls6_c03132{letter-spacing:-0.242352px;}
.ls9_c03132{letter-spacing:-0.237600px;}
.ls4_c03132{letter-spacing:-0.118800px;}
.ls13_c03132{letter-spacing:0.000000px;}
.ls1_c03132{letter-spacing:0.006048px;}
.ls5_c03132{letter-spacing:0.128304px;}
.lsc_c03132{letter-spacing:0.508464px;}
.ls12_c03132{letter-spacing:0.514080px;}
.lsf_c03132{letter-spacing:0.536976px;}
.lsb_c03132{letter-spacing:0.579744px;}
.ls11_c03132{letter-spacing:0.594000px;}
.ls8_c03132{letter-spacing:0.598752px;}
.ls2_c03132{letter-spacing:0.613008px;}
.ls3_c03132{letter-spacing:0.717552px;}
.ls0_c03132{letter-spacing:0.722304px;}
.sc__c03132{text-shadow:none;}
.sc0_c03132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03132{-webkit-text-stroke:0px transparent;}
.sc0_c03132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03132{word-spacing:-15.126048px;}
.wsa_c03132{word-spacing:-12.474000px;}
.ws8_c03132{word-spacing:-12.459744px;}
.ws9_c03132{word-spacing:-12.416976px;}
.ws2_c03132{word-spacing:-11.266992px;}
.ws10_c03132{word-spacing:-1.083456px;}
.wsd_c03132{word-spacing:-0.974160px;}
.ws14_c03132{word-spacing:-0.719712px;}
.wsf_c03132{word-spacing:-0.118800px;}
.ws12_c03132{word-spacing:-0.099792px;}
.ws13_c03132{word-spacing:-0.085536px;}
.wse_c03132{word-spacing:0.000000px;}
.ws11_c03132{word-spacing:0.836352px;}
.ws4_c03132{word-spacing:4.942080px;}
.wsb_c03132{word-spacing:33.300288px;}
.ws6_c03132{word-spacing:36.742464px;}
.ws1_c03132{word-spacing:37.759392px;}
.ws0_c03132{word-spacing:38.020752px;}
.ws3_c03132{word-spacing:39.218256px;}
.ws5_c03132{word-spacing:39.902544px;}
.ws7_c03132{word-spacing:42.026688px;}
._0_c03132{margin-left:-1.948320px;}
._2_c03132{width:1.482624px;}
._4_c03132{width:2.770416px;}
._1_c03132{width:50.252400px;}
._3_c03132{width:51.530688px;}
.fc0_c03132{color:rgb(0,0,0);}
.fs0_c03132{font-size:47.520000px;}
.fs1_c03132{font-size:60.480000px;}
.y0_c03132{bottom:0.000000px;}
.y19_c03132{bottom:146.998362px;}
.y1b_c03132{bottom:186.600234px;}
.y1a_c03132{bottom:196.320450px;}
.y18_c03132{bottom:275.878542px;}
.y17_c03132{bottom:356.878758px;}
.y15_c03132{bottom:406.559730px;}
.y11_c03132{bottom:424.560306px;}
.y16_c03132{bottom:458.759262px;}
.y14_c03132{bottom:491.879514px;}
.y13_c03132{bottom:509.880090px;}
.y10_c03132{bottom:543.000342px;}
.y12_c03132{bottom:559.559874px;}
.yf_c03132{bottom:577.560450px;}
.y1c_c03132{bottom:614.280450px;}
.yb_c03132{bottom:667.558326px;}
.yd_c03132{bottom:707.160234px;}
.yc_c03132{bottom:716.880450px;}
.ya_c03132{bottom:796.438506px;}
.y9_c03132{bottom:877.438722px;}
.y7_c03132{bottom:926.759730px;}
.y3_c03132{bottom:944.760306px;}
.y8_c03132{bottom:979.319226px;}
.y6_c03132{bottom:1012.439478px;}
.y5_c03132{bottom:1030.440054px;}
.y2_c03132{bottom:1063.560306px;}
.y4_c03132{bottom:1079.759874px;}
.y1_c03132{bottom:1097.760450px;}
.ye_c03132{bottom:1134.840450px;}
.h3_c03132{height:32.530781px;}
.h1_c03132{height:41.696016px;}
.h2_c03132{height:41.812031px;}
.h4_c03132{height:54.654737px;}
.h0_c03132{height:1263.000000px;}
.w1_c03132{width:892.500000px;}
.w0_c03132{width:892.830000px;}
.x0_c03132{left:0.000000px;}
.xd_c03132{left:117.000000px;}
.x8_c03132{left:440.999856px;}
.x4_c03132{left:445.680576px;}
.xb_c03132{left:451.080000px;}
.x7_c03132{left:455.399604px;}
.x5_c03132{left:461.880144px;}
.x1_c03132{left:463.320000px;}
.xa_c03132{left:483.480360px;}
.x9_c03132{left:492.119496px;}
.x6_c03132{left:493.200576px;}
.xc_c03132{left:506.880360px;}
.x3_c03132{left:511.919892px;}
.x2_c03132{left:526.679604px;}
@media print{
.v0_c03132{vertical-align:0.000000pt;}
.v1_c03132{vertical-align:1.279488pt;}
.lsd_c03132{letter-spacing:-1.064448pt;}
.ls7_c03132{letter-spacing:-0.544896pt;}
.lsa_c03132{letter-spacing:-0.511104pt;}
.ls10_c03132{letter-spacing:-0.244992pt;}
.lse_c03132{letter-spacing:-0.232320pt;}
.ls6_c03132{letter-spacing:-0.215424pt;}
.ls9_c03132{letter-spacing:-0.211200pt;}
.ls4_c03132{letter-spacing:-0.105600pt;}
.ls13_c03132{letter-spacing:0.000000pt;}
.ls1_c03132{letter-spacing:0.005376pt;}
.ls5_c03132{letter-spacing:0.114048pt;}
.lsc_c03132{letter-spacing:0.451968pt;}
.ls12_c03132{letter-spacing:0.456960pt;}
.lsf_c03132{letter-spacing:0.477312pt;}
.lsb_c03132{letter-spacing:0.515328pt;}
.ls11_c03132{letter-spacing:0.528000pt;}
.ls8_c03132{letter-spacing:0.532224pt;}
.ls2_c03132{letter-spacing:0.544896pt;}
.ls3_c03132{letter-spacing:0.637824pt;}
.ls0_c03132{letter-spacing:0.642048pt;}
.wsc_c03132{word-spacing:-13.445376pt;}
.wsa_c03132{word-spacing:-11.088000pt;}
.ws8_c03132{word-spacing:-11.075328pt;}
.ws9_c03132{word-spacing:-11.037312pt;}
.ws2_c03132{word-spacing:-10.015104pt;}
.ws10_c03132{word-spacing:-0.963072pt;}
.wsd_c03132{word-spacing:-0.865920pt;}
.ws14_c03132{word-spacing:-0.639744pt;}
.wsf_c03132{word-spacing:-0.105600pt;}
.ws12_c03132{word-spacing:-0.088704pt;}
.ws13_c03132{word-spacing:-0.076032pt;}
.wse_c03132{word-spacing:0.000000pt;}
.ws11_c03132{word-spacing:0.743424pt;}
.ws4_c03132{word-spacing:4.392960pt;}
.wsb_c03132{word-spacing:29.600256pt;}
.ws6_c03132{word-spacing:32.659968pt;}
.ws1_c03132{word-spacing:33.563904pt;}
.ws0_c03132{word-spacing:33.796224pt;}
.ws3_c03132{word-spacing:34.860672pt;}
.ws5_c03132{word-spacing:35.468928pt;}
.ws7_c03132{word-spacing:37.357056pt;}
._0_c03132{margin-left:-1.731840pt;}
._2_c03132{width:1.317888pt;}
._4_c03132{width:2.462592pt;}
._1_c03132{width:44.668800pt;}
._3_c03132{width:45.805056pt;}
.fs0_c03132{font-size:42.240000pt;}
.fs1_c03132{font-size:53.760000pt;}
.y0_c03132{bottom:0.000000pt;}
.y19_c03132{bottom:130.665211pt;}
.y1b_c03132{bottom:165.866875pt;}
.y1a_c03132{bottom:174.507067pt;}
.y18_c03132{bottom:245.225371pt;}
.y17_c03132{bottom:317.225563pt;}
.y15_c03132{bottom:361.386427pt;}
.y11_c03132{bottom:377.386939pt;}
.y16_c03132{bottom:407.786011pt;}
.y14_c03132{bottom:437.226235pt;}
.y13_c03132{bottom:453.226747pt;}
.y10_c03132{bottom:482.666971pt;}
.y12_c03132{bottom:497.386555pt;}
.yf_c03132{bottom:513.387067pt;}
.y1c_c03132{bottom:546.027067pt;}
.yb_c03132{bottom:593.385179pt;}
.yd_c03132{bottom:628.586875pt;}
.yc_c03132{bottom:637.227067pt;}
.ya_c03132{bottom:707.945339pt;}
.y9_c03132{bottom:779.945531pt;}
.y7_c03132{bottom:823.786427pt;}
.y3_c03132{bottom:839.786939pt;}
.y8_c03132{bottom:870.505979pt;}
.y6_c03132{bottom:899.946203pt;}
.y5_c03132{bottom:915.946715pt;}
.y2_c03132{bottom:945.386939pt;}
.y4_c03132{bottom:959.786555pt;}
.y1_c03132{bottom:975.787067pt;}
.ye_c03132{bottom:1008.747067pt;}
.h3_c03132{height:28.916250pt;}
.h1_c03132{height:37.063125pt;}
.h2_c03132{height:37.166250pt;}
.h4_c03132{height:48.581988pt;}
.h0_c03132{height:1122.666667pt;}
.w1_c03132{width:793.333333pt;}
.w0_c03132{width:793.626667pt;}
.x0_c03132{left:0.000000pt;}
.xd_c03132{left:104.000000pt;}
.x8_c03132{left:391.999872pt;}
.x4_c03132{left:396.160512pt;}
.xb_c03132{left:400.960000pt;}
.x7_c03132{left:404.799648pt;}
.x5_c03132{left:410.560128pt;}
.x1_c03132{left:411.840000pt;}
.xa_c03132{left:429.760320pt;}
.x9_c03132{left:437.439552pt;}
.x6_c03132{left:438.400512pt;}
.xc_c03132{left:450.560320pt;}
.x3_c03132{left:455.039904pt;}
.x2_c03132{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03133 {
    display:none;
  }
  .loading-indicator_c03133.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03133 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03133 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03133" -> "#page-container .classname_c03133")
 */
.pf_c03133 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03133 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03133.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03133 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03133 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03133 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03133 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03133 {overflow:visible;}
  }
}
.c_c03133 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03133 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03133:after { /* webkit #35443 */
  content: '';
}
.t_c03133:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03133 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03133 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03133 { /* info for Javascript */
  display:none;
}
.l_c03133 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03133 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03133 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03133:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03133 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03133.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03133.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03133 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03133{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03133;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03133{font-family:ff1_c03133;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03133;src:url('chunks/assets/font_1f5cde6498aac14570e8748e.woff2')format("woff");}.ff2_c03133{font-family:ff2_c03133;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03133;src:url('chunks/assets/font_677ff7acebdea848990722c7.woff2')format("woff");}.ff3_c03133{font-family:ff3_c03133;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03133{vertical-align:0.000000px;}
.v1_c03133{vertical-align:1.439424px;}
.lsd_c03133{letter-spacing:-1.197504px;}
.ls16_c03133{letter-spacing:-0.793584px;}
.ls18_c03133{letter-spacing:-0.765072px;}
.lsb_c03133{letter-spacing:-0.574992px;}
.ls10_c03133{letter-spacing:-0.394416px;}
.ls12_c03133{letter-spacing:-0.275616px;}
.lsf_c03133{letter-spacing:-0.261360px;}
.ls7_c03133{letter-spacing:-0.242352px;}
.lsa_c03133{letter-spacing:-0.237600px;}
.ls17_c03133{letter-spacing:-0.194832px;}
.ls5_c03133{letter-spacing:-0.118800px;}
.ls15_c03133{letter-spacing:0.000000px;}
.ls1_c03133{letter-spacing:0.006048px;}
.ls6_c03133{letter-spacing:0.128304px;}
.lsc_c03133{letter-spacing:0.508464px;}
.ls14_c03133{letter-spacing:0.514080px;}
.ls11_c03133{letter-spacing:0.536976px;}
.ls8_c03133{letter-spacing:0.560736px;}
.ls2_c03133{letter-spacing:0.579744px;}
.ls13_c03133{letter-spacing:0.594000px;}
.ls9_c03133{letter-spacing:0.598752px;}
.ls3_c03133{letter-spacing:0.613008px;}
.lse_c03133{letter-spacing:0.617760px;}
.ls4_c03133{letter-spacing:0.717552px;}
.ls0_c03133{letter-spacing:0.722304px;}
.sc__c03133{text-shadow:none;}
.sc0_c03133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03133{-webkit-text-stroke:0px transparent;}
.sc0_c03133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03133{word-spacing:-15.126048px;}
.wsa_c03133{word-spacing:-12.474000px;}
.ws6_c03133{word-spacing:-12.459744px;}
.ws9_c03133{word-spacing:-12.416976px;}
.wse_c03133{word-spacing:-11.637648px;}
.ws14_c03133{word-spacing:-1.083456px;}
.ws16_c03133{word-spacing:-0.978912px;}
.ws11_c03133{word-spacing:-0.974160px;}
.ws1c_c03133{word-spacing:-0.945648px;}
.ws1a_c03133{word-spacing:-0.719712px;}
.ws13_c03133{word-spacing:-0.118800px;}
.ws17_c03133{word-spacing:-0.099792px;}
.ws19_c03133{word-spacing:-0.085536px;}
.ws12_c03133{word-spacing:0.000000px;}
.ws18_c03133{word-spacing:0.033264px;}
.ws1d_c03133{word-spacing:0.403920px;}
.ws1b_c03133{word-spacing:0.432432px;}
.ws15_c03133{word-spacing:0.836352px;}
.wsd_c03133{word-spacing:1.330560px;}
.ws10_c03133{word-spacing:4.576176px;}
.ws4_c03133{word-spacing:4.942080px;}
.ws2_c03133{word-spacing:4.999104px;}
.wsb_c03133{word-spacing:33.300288px;}
.wsf_c03133{word-spacing:34.836912px;}
.ws8_c03133{word-spacing:36.143712px;}
.ws1_c03133{word-spacing:37.759392px;}
.ws0_c03133{word-spacing:38.020752px;}
.ws3_c03133{word-spacing:39.218256px;}
.ws5_c03133{word-spacing:39.902544px;}
.ws7_c03133{word-spacing:42.026688px;}
._6_c03133{margin-left:-3.079296px;}
._0_c03133{margin-left:-1.948320px;}
._2_c03133{width:1.482624px;}
._4_c03133{width:2.770416px;}
._5_c03133{width:6.263136px;}
._7_c03133{width:13.305600px;}
._1_c03133{width:50.252400px;}
._3_c03133{width:51.530688px;}
.fc0_c03133{color:rgb(0,0,0);}
.fs0_c03133{font-size:47.520000px;}
.fs1_c03133{font-size:60.480000px;}
.y0_c03133{bottom:0.000000px;}
.y1a_c03133{bottom:131.878686px;}
.y19_c03133{bottom:146.998362px;}
.y1c_c03133{bottom:186.600234px;}
.y1b_c03133{bottom:196.320450px;}
.y18_c03133{bottom:275.878542px;}
.y17_c03133{bottom:356.878758px;}
.y15_c03133{bottom:406.559730px;}
.y11_c03133{bottom:424.560306px;}
.y16_c03133{bottom:458.759262px;}
.y14_c03133{bottom:491.879514px;}
.y13_c03133{bottom:509.880090px;}
.y10_c03133{bottom:543.000342px;}
.y12_c03133{bottom:559.559874px;}
.yf_c03133{bottom:577.560450px;}
.y1d_c03133{bottom:614.280450px;}
.yb_c03133{bottom:667.558326px;}
.yd_c03133{bottom:707.160234px;}
.yc_c03133{bottom:716.880450px;}
.ya_c03133{bottom:796.438506px;}
.y9_c03133{bottom:877.438722px;}
.y7_c03133{bottom:926.759730px;}
.y3_c03133{bottom:944.760306px;}
.y8_c03133{bottom:979.319226px;}
.y6_c03133{bottom:1012.439478px;}
.y5_c03133{bottom:1030.440054px;}
.y2_c03133{bottom:1063.560306px;}
.y4_c03133{bottom:1079.759874px;}
.y1_c03133{bottom:1097.760450px;}
.ye_c03133{bottom:1134.840450px;}
.h3_c03133{height:32.530781px;}
.h1_c03133{height:41.696016px;}
.h2_c03133{height:41.812031px;}
.h4_c03133{height:54.654737px;}
.h0_c03133{height:1263.000000px;}
.w1_c03133{width:892.500000px;}
.w0_c03133{width:892.830000px;}
.x0_c03133{left:0.000000px;}
.xd_c03133{left:117.000000px;}
.x8_c03133{left:440.999856px;}
.x4_c03133{left:445.680576px;}
.xb_c03133{left:451.080000px;}
.x7_c03133{left:455.399604px;}
.x5_c03133{left:461.880144px;}
.x1_c03133{left:463.320000px;}
.xa_c03133{left:483.480360px;}
.x9_c03133{left:492.119496px;}
.x6_c03133{left:493.200576px;}
.xc_c03133{left:506.880360px;}
.x3_c03133{left:511.919892px;}
.x2_c03133{left:526.679604px;}
.xe_c03133{left:569.880036px;}
@media print{
.v0_c03133{vertical-align:0.000000pt;}
.v1_c03133{vertical-align:1.279488pt;}
.lsd_c03133{letter-spacing:-1.064448pt;}
.ls16_c03133{letter-spacing:-0.705408pt;}
.ls18_c03133{letter-spacing:-0.680064pt;}
.lsb_c03133{letter-spacing:-0.511104pt;}
.ls10_c03133{letter-spacing:-0.350592pt;}
.ls12_c03133{letter-spacing:-0.244992pt;}
.lsf_c03133{letter-spacing:-0.232320pt;}
.ls7_c03133{letter-spacing:-0.215424pt;}
.lsa_c03133{letter-spacing:-0.211200pt;}
.ls17_c03133{letter-spacing:-0.173184pt;}
.ls5_c03133{letter-spacing:-0.105600pt;}
.ls15_c03133{letter-spacing:0.000000pt;}
.ls1_c03133{letter-spacing:0.005376pt;}
.ls6_c03133{letter-spacing:0.114048pt;}
.lsc_c03133{letter-spacing:0.451968pt;}
.ls14_c03133{letter-spacing:0.456960pt;}
.ls11_c03133{letter-spacing:0.477312pt;}
.ls8_c03133{letter-spacing:0.498432pt;}
.ls2_c03133{letter-spacing:0.515328pt;}
.ls13_c03133{letter-spacing:0.528000pt;}
.ls9_c03133{letter-spacing:0.532224pt;}
.ls3_c03133{letter-spacing:0.544896pt;}
.lse_c03133{letter-spacing:0.549120pt;}
.ls4_c03133{letter-spacing:0.637824pt;}
.ls0_c03133{letter-spacing:0.642048pt;}
.wsc_c03133{word-spacing:-13.445376pt;}
.wsa_c03133{word-spacing:-11.088000pt;}
.ws6_c03133{word-spacing:-11.075328pt;}
.ws9_c03133{word-spacing:-11.037312pt;}
.wse_c03133{word-spacing:-10.344576pt;}
.ws14_c03133{word-spacing:-0.963072pt;}
.ws16_c03133{word-spacing:-0.870144pt;}
.ws11_c03133{word-spacing:-0.865920pt;}
.ws1c_c03133{word-spacing:-0.840576pt;}
.ws1a_c03133{word-spacing:-0.639744pt;}
.ws13_c03133{word-spacing:-0.105600pt;}
.ws17_c03133{word-spacing:-0.088704pt;}
.ws19_c03133{word-spacing:-0.076032pt;}
.ws12_c03133{word-spacing:0.000000pt;}
.ws18_c03133{word-spacing:0.029568pt;}
.ws1d_c03133{word-spacing:0.359040pt;}
.ws1b_c03133{word-spacing:0.384384pt;}
.ws15_c03133{word-spacing:0.743424pt;}
.wsd_c03133{word-spacing:1.182720pt;}
.ws10_c03133{word-spacing:4.067712pt;}
.ws4_c03133{word-spacing:4.392960pt;}
.ws2_c03133{word-spacing:4.443648pt;}
.wsb_c03133{word-spacing:29.600256pt;}
.wsf_c03133{word-spacing:30.966144pt;}
.ws8_c03133{word-spacing:32.127744pt;}
.ws1_c03133{word-spacing:33.563904pt;}
.ws0_c03133{word-spacing:33.796224pt;}
.ws3_c03133{word-spacing:34.860672pt;}
.ws5_c03133{word-spacing:35.468928pt;}
.ws7_c03133{word-spacing:37.357056pt;}
._6_c03133{margin-left:-2.737152pt;}
._0_c03133{margin-left:-1.731840pt;}
._2_c03133{width:1.317888pt;}
._4_c03133{width:2.462592pt;}
._5_c03133{width:5.567232pt;}
._7_c03133{width:11.827200pt;}
._1_c03133{width:44.668800pt;}
._3_c03133{width:45.805056pt;}
.fs0_c03133{font-size:42.240000pt;}
.fs1_c03133{font-size:53.760000pt;}
.y0_c03133{bottom:0.000000pt;}
.y1a_c03133{bottom:117.225499pt;}
.y19_c03133{bottom:130.665211pt;}
.y1c_c03133{bottom:165.866875pt;}
.y1b_c03133{bottom:174.507067pt;}
.y18_c03133{bottom:245.225371pt;}
.y17_c03133{bottom:317.225563pt;}
.y15_c03133{bottom:361.386427pt;}
.y11_c03133{bottom:377.386939pt;}
.y16_c03133{bottom:407.786011pt;}
.y14_c03133{bottom:437.226235pt;}
.y13_c03133{bottom:453.226747pt;}
.y10_c03133{bottom:482.666971pt;}
.y12_c03133{bottom:497.386555pt;}
.yf_c03133{bottom:513.387067pt;}
.y1d_c03133{bottom:546.027067pt;}
.yb_c03133{bottom:593.385179pt;}
.yd_c03133{bottom:628.586875pt;}
.yc_c03133{bottom:637.227067pt;}
.ya_c03133{bottom:707.945339pt;}
.y9_c03133{bottom:779.945531pt;}
.y7_c03133{bottom:823.786427pt;}
.y3_c03133{bottom:839.786939pt;}
.y8_c03133{bottom:870.505979pt;}
.y6_c03133{bottom:899.946203pt;}
.y5_c03133{bottom:915.946715pt;}
.y2_c03133{bottom:945.386939pt;}
.y4_c03133{bottom:959.786555pt;}
.y1_c03133{bottom:975.787067pt;}
.ye_c03133{bottom:1008.747067pt;}
.h3_c03133{height:28.916250pt;}
.h1_c03133{height:37.063125pt;}
.h2_c03133{height:37.166250pt;}
.h4_c03133{height:48.581988pt;}
.h0_c03133{height:1122.666667pt;}
.w1_c03133{width:793.333333pt;}
.w0_c03133{width:793.626667pt;}
.x0_c03133{left:0.000000pt;}
.xd_c03133{left:104.000000pt;}
.x8_c03133{left:391.999872pt;}
.x4_c03133{left:396.160512pt;}
.xb_c03133{left:400.960000pt;}
.x7_c03133{left:404.799648pt;}
.x5_c03133{left:410.560128pt;}
.x1_c03133{left:411.840000pt;}
.xa_c03133{left:429.760320pt;}
.x9_c03133{left:437.439552pt;}
.x6_c03133{left:438.400512pt;}
.xc_c03133{left:450.560320pt;}
.x3_c03133{left:455.039904pt;}
.x2_c03133{left:468.159648pt;}
.xe_c03133{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03134 {
    display:none;
  }
  .loading-indicator_c03134.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03134 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03134 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03134" -> "#page-container .classname_c03134")
 */
.pf_c03134 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03134 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03134.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03134 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03134 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03134 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03134 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03134 {overflow:visible;}
  }
}
.c_c03134 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03134 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03134:after { /* webkit #35443 */
  content: '';
}
.t_c03134:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03134 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03134 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03134 { /* info for Javascript */
  display:none;
}
.l_c03134 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03134 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03134 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03134:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03134 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03134.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03134.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03134 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03134{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03134;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03134{font-family:ff1_c03134;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03134;src:url('chunks/assets/font_a6b0f621625868618c2363e3.woff2')format("woff");}.ff2_c03134{font-family:ff2_c03134;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03134;src:url('chunks/assets/font_b1277293899bcd0931379d88.woff2')format("woff");}.ff3_c03134{font-family:ff3_c03134;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03134{vertical-align:0.000000px;}
.v1_c03134{vertical-align:1.439424px;}
.ls14_c03134{letter-spacing:-0.817344px;}
.ls10_c03134{letter-spacing:-0.717552px;}
.ls8_c03134{letter-spacing:-0.574992px;}
.ls9_c03134{letter-spacing:-0.327888px;}
.ls19_c03134{letter-spacing:-0.275616px;}
.ls15_c03134{letter-spacing:-0.270864px;}
.ls11_c03134{letter-spacing:-0.261360px;}
.lsf_c03134{letter-spacing:-0.256608px;}
.lsc_c03134{letter-spacing:-0.251856px;}
.ls6_c03134{letter-spacing:-0.242352px;}
.ls4_c03134{letter-spacing:-0.118800px;}
.ls18_c03134{letter-spacing:0.000000px;}
.ls0_c03134{letter-spacing:0.006048px;}
.lse_c03134{letter-spacing:0.038016px;}
.ls5_c03134{letter-spacing:0.128304px;}
.ls12_c03134{letter-spacing:0.242352px;}
.lsd_c03134{letter-spacing:0.508464px;}
.ls17_c03134{letter-spacing:0.514080px;}
.ls13_c03134{letter-spacing:0.536976px;}
.lsa_c03134{letter-spacing:0.579744px;}
.ls16_c03134{letter-spacing:0.594000px;}
.ls7_c03134{letter-spacing:0.598752px;}
.ls2_c03134{letter-spacing:0.613008px;}
.lsb_c03134{letter-spacing:0.646272px;}
.ls1_c03134{letter-spacing:0.655776px;}
.ls3_c03134{letter-spacing:0.717552px;}
.sc__c03134{text-shadow:none;}
.sc0_c03134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03134{-webkit-text-stroke:0px transparent;}
.sc0_c03134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c03134{word-spacing:-15.126048px;}
.wsd_c03134{word-spacing:-12.474000px;}
.ws10_c03134{word-spacing:-12.459744px;}
.ws11_c03134{word-spacing:-12.416976px;}
.ws4_c03134{word-spacing:-11.637648px;}
.ws1f_c03134{word-spacing:-1.016928px;}
.ws12_c03134{word-spacing:-0.974160px;}
.ws1e_c03134{word-spacing:-0.719712px;}
.ws1b_c03134{word-spacing:-0.603504px;}
.ws17_c03134{word-spacing:-0.399168px;}
.ws14_c03134{word-spacing:-0.118800px;}
.ws16_c03134{word-spacing:-0.109296px;}
.ws18_c03134{word-spacing:-0.104544px;}
.ws1a_c03134{word-spacing:-0.099792px;}
.ws1c_c03134{word-spacing:-0.090288px;}
.ws1d_c03134{word-spacing:-0.085536px;}
.ws15_c03134{word-spacing:-0.033264px;}
.ws13_c03134{word-spacing:0.000000px;}
.ws19_c03134{word-spacing:0.356400px;}
.ws2_c03134{word-spacing:1.330560px;}
.wsb_c03134{word-spacing:9.271152px;}
.ws7_c03134{word-spacing:13.947120px;}
.wsc_c03134{word-spacing:27.704160px;}
.wse_c03134{word-spacing:33.300288px;}
.wsa_c03134{word-spacing:34.836912px;}
.ws9_c03134{word-spacing:36.143712px;}
.ws6_c03134{word-spacing:36.742464px;}
.ws1_c03134{word-spacing:37.759392px;}
.ws0_c03134{word-spacing:38.020752px;}
.ws3_c03134{word-spacing:39.218256px;}
.ws5_c03134{word-spacing:39.902544px;}
.ws8_c03134{word-spacing:42.026688px;}
._0_c03134{margin-left:-1.948320px;}
._2_c03134{width:1.482624px;}
._4_c03134{width:4.785264px;}
._7_c03134{width:14.284512px;}
._9_c03134{width:18.988992px;}
._8_c03134{width:22.724064px;}
._6_c03134{width:30.754944px;}
._5_c03134{width:34.922448px;}
._a_c03134{width:44.241120px;}
._1_c03134{width:50.252400px;}
._3_c03134{width:51.530688px;}
.fc0_c03134{color:rgb(0,0,0);}
.fs0_c03134{font-size:47.520000px;}
.fs1_c03134{font-size:60.480000px;}
.y0_c03134{bottom:0.000000px;}
.y1c_c03134{bottom:146.998362px;}
.y1e_c03134{bottom:186.600234px;}
.y1d_c03134{bottom:196.320450px;}
.y1b_c03134{bottom:275.878542px;}
.y1a_c03134{bottom:356.878758px;}
.y18_c03134{bottom:406.559730px;}
.y14_c03134{bottom:424.560306px;}
.y19_c03134{bottom:458.759262px;}
.y17_c03134{bottom:491.879514px;}
.y16_c03134{bottom:509.880090px;}
.y13_c03134{bottom:543.000342px;}
.y15_c03134{bottom:559.559874px;}
.y12_c03134{bottom:577.560450px;}
.y1f_c03134{bottom:614.280450px;}
.ye_c03134{bottom:637.320162px;}
.yd_c03134{bottom:652.439838px;}
.yc_c03134{bottom:667.559514px;}
.y10_c03134{bottom:707.160234px;}
.yf_c03134{bottom:716.880450px;}
.yb_c03134{bottom:796.439694px;}
.ya_c03134{bottom:877.439910px;}
.y8_c03134{bottom:912.000018px;}
.y7_c03134{bottom:926.759730px;}
.y3_c03134{bottom:944.760306px;}
.y9_c03134{bottom:979.320414px;}
.y6_c03134{bottom:1012.439478px;}
.y5_c03134{bottom:1030.440054px;}
.y2_c03134{bottom:1063.560306px;}
.y4_c03134{bottom:1079.759874px;}
.y1_c03134{bottom:1097.760450px;}
.y11_c03134{bottom:1134.840450px;}
.h3_c03134{height:32.530781px;}
.h1_c03134{height:41.696016px;}
.h2_c03134{height:41.812031px;}
.h4_c03134{height:54.654737px;}
.h0_c03134{height:1263.000000px;}
.w1_c03134{width:892.500000px;}
.w0_c03134{width:892.830000px;}
.x0_c03134{left:0.000000px;}
.xe_c03134{left:117.000000px;}
.x9_c03134{left:440.999856px;}
.x4_c03134{left:445.680576px;}
.xc_c03134{left:451.080000px;}
.x7_c03134{left:455.399604px;}
.x5_c03134{left:461.880144px;}
.x1_c03134{left:463.320000px;}
.xb_c03134{left:483.480360px;}
.xa_c03134{left:492.119496px;}
.x6_c03134{left:493.200576px;}
.xd_c03134{left:506.880360px;}
.x3_c03134{left:511.919892px;}
.x2_c03134{left:526.679604px;}
.x8_c03134{left:569.880036px;}
@media print{
.v0_c03134{vertical-align:0.000000pt;}
.v1_c03134{vertical-align:1.279488pt;}
.ls14_c03134{letter-spacing:-0.726528pt;}
.ls10_c03134{letter-spacing:-0.637824pt;}
.ls8_c03134{letter-spacing:-0.511104pt;}
.ls9_c03134{letter-spacing:-0.291456pt;}
.ls19_c03134{letter-spacing:-0.244992pt;}
.ls15_c03134{letter-spacing:-0.240768pt;}
.ls11_c03134{letter-spacing:-0.232320pt;}
.lsf_c03134{letter-spacing:-0.228096pt;}
.lsc_c03134{letter-spacing:-0.223872pt;}
.ls6_c03134{letter-spacing:-0.215424pt;}
.ls4_c03134{letter-spacing:-0.105600pt;}
.ls18_c03134{letter-spacing:0.000000pt;}
.ls0_c03134{letter-spacing:0.005376pt;}
.lse_c03134{letter-spacing:0.033792pt;}
.ls5_c03134{letter-spacing:0.114048pt;}
.ls12_c03134{letter-spacing:0.215424pt;}
.lsd_c03134{letter-spacing:0.451968pt;}
.ls17_c03134{letter-spacing:0.456960pt;}
.ls13_c03134{letter-spacing:0.477312pt;}
.lsa_c03134{letter-spacing:0.515328pt;}
.ls16_c03134{letter-spacing:0.528000pt;}
.ls7_c03134{letter-spacing:0.532224pt;}
.ls2_c03134{letter-spacing:0.544896pt;}
.lsb_c03134{letter-spacing:0.574464pt;}
.ls1_c03134{letter-spacing:0.582912pt;}
.ls3_c03134{letter-spacing:0.637824pt;}
.wsf_c03134{word-spacing:-13.445376pt;}
.wsd_c03134{word-spacing:-11.088000pt;}
.ws10_c03134{word-spacing:-11.075328pt;}
.ws11_c03134{word-spacing:-11.037312pt;}
.ws4_c03134{word-spacing:-10.344576pt;}
.ws1f_c03134{word-spacing:-0.903936pt;}
.ws12_c03134{word-spacing:-0.865920pt;}
.ws1e_c03134{word-spacing:-0.639744pt;}
.ws1b_c03134{word-spacing:-0.536448pt;}
.ws17_c03134{word-spacing:-0.354816pt;}
.ws14_c03134{word-spacing:-0.105600pt;}
.ws16_c03134{word-spacing:-0.097152pt;}
.ws18_c03134{word-spacing:-0.092928pt;}
.ws1a_c03134{word-spacing:-0.088704pt;}
.ws1c_c03134{word-spacing:-0.080256pt;}
.ws1d_c03134{word-spacing:-0.076032pt;}
.ws15_c03134{word-spacing:-0.029568pt;}
.ws13_c03134{word-spacing:0.000000pt;}
.ws19_c03134{word-spacing:0.316800pt;}
.ws2_c03134{word-spacing:1.182720pt;}
.wsb_c03134{word-spacing:8.241024pt;}
.ws7_c03134{word-spacing:12.397440pt;}
.wsc_c03134{word-spacing:24.625920pt;}
.wse_c03134{word-spacing:29.600256pt;}
.wsa_c03134{word-spacing:30.966144pt;}
.ws9_c03134{word-spacing:32.127744pt;}
.ws6_c03134{word-spacing:32.659968pt;}
.ws1_c03134{word-spacing:33.563904pt;}
.ws0_c03134{word-spacing:33.796224pt;}
.ws3_c03134{word-spacing:34.860672pt;}
.ws5_c03134{word-spacing:35.468928pt;}
.ws8_c03134{word-spacing:37.357056pt;}
._0_c03134{margin-left:-1.731840pt;}
._2_c03134{width:1.317888pt;}
._4_c03134{width:4.253568pt;}
._7_c03134{width:12.697344pt;}
._9_c03134{width:16.879104pt;}
._8_c03134{width:20.199168pt;}
._6_c03134{width:27.337728pt;}
._5_c03134{width:31.042176pt;}
._a_c03134{width:39.325440pt;}
._1_c03134{width:44.668800pt;}
._3_c03134{width:45.805056pt;}
.fs0_c03134{font-size:42.240000pt;}
.fs1_c03134{font-size:53.760000pt;}
.y0_c03134{bottom:0.000000pt;}
.y1c_c03134{bottom:130.665211pt;}
.y1e_c03134{bottom:165.866875pt;}
.y1d_c03134{bottom:174.507067pt;}
.y1b_c03134{bottom:245.225371pt;}
.y1a_c03134{bottom:317.225563pt;}
.y18_c03134{bottom:361.386427pt;}
.y14_c03134{bottom:377.386939pt;}
.y19_c03134{bottom:407.786011pt;}
.y17_c03134{bottom:437.226235pt;}
.y16_c03134{bottom:453.226747pt;}
.y13_c03134{bottom:482.666971pt;}
.y15_c03134{bottom:497.386555pt;}
.y12_c03134{bottom:513.387067pt;}
.y1f_c03134{bottom:546.027067pt;}
.ye_c03134{bottom:566.506811pt;}
.yd_c03134{bottom:579.946523pt;}
.yc_c03134{bottom:593.386235pt;}
.y10_c03134{bottom:628.586875pt;}
.yf_c03134{bottom:637.227067pt;}
.yb_c03134{bottom:707.946395pt;}
.ya_c03134{bottom:779.946587pt;}
.y8_c03134{bottom:810.666683pt;}
.y7_c03134{bottom:823.786427pt;}
.y3_c03134{bottom:839.786939pt;}
.y9_c03134{bottom:870.507035pt;}
.y6_c03134{bottom:899.946203pt;}
.y5_c03134{bottom:915.946715pt;}
.y2_c03134{bottom:945.386939pt;}
.y4_c03134{bottom:959.786555pt;}
.y1_c03134{bottom:975.787067pt;}
.y11_c03134{bottom:1008.747067pt;}
.h3_c03134{height:28.916250pt;}
.h1_c03134{height:37.063125pt;}
.h2_c03134{height:37.166250pt;}
.h4_c03134{height:48.581988pt;}
.h0_c03134{height:1122.666667pt;}
.w1_c03134{width:793.333333pt;}
.w0_c03134{width:793.626667pt;}
.x0_c03134{left:0.000000pt;}
.xe_c03134{left:104.000000pt;}
.x9_c03134{left:391.999872pt;}
.x4_c03134{left:396.160512pt;}
.xc_c03134{left:400.960000pt;}
.x7_c03134{left:404.799648pt;}
.x5_c03134{left:410.560128pt;}
.x1_c03134{left:411.840000pt;}
.xb_c03134{left:429.760320pt;}
.xa_c03134{left:437.439552pt;}
.x6_c03134{left:438.400512pt;}
.xd_c03134{left:450.560320pt;}
.x3_c03134{left:455.039904pt;}
.x2_c03134{left:468.159648pt;}
.x8_c03134{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03135 {
    display:none;
  }
  .loading-indicator_c03135.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03135 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03135 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03135" -> "#page-container .classname_c03135")
 */
.pf_c03135 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03135 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03135.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03135 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03135 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03135 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03135 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03135 {overflow:visible;}
  }
}
.c_c03135 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03135 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03135:after { /* webkit #35443 */
  content: '';
}
.t_c03135:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03135 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03135 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03135 { /* info for Javascript */
  display:none;
}
.l_c03135 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03135 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03135 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03135:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03135 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03135.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03135.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03135 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03135{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03135;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03135{font-family:ff1_c03135;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03135;src:url('chunks/assets/font_2850a6b0b2a96acb6eb3eb3a.woff2')format("woff");}.ff2_c03135{font-family:ff2_c03135;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03135;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03135{font-family:ff3_c03135;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03135{vertical-align:0.000000px;}
.v2_c03135{vertical-align:1.439424px;}
.v1_c03135{vertical-align:33.121440px;}
.ls9_c03135{letter-spacing:-0.736560px;}
.lsd_c03135{letter-spacing:-0.703296px;}
.lsa_c03135{letter-spacing:-0.574992px;}
.lsf_c03135{letter-spacing:-0.394416px;}
.ls18_c03135{letter-spacing:-0.332640px;}
.ls11_c03135{letter-spacing:-0.275616px;}
.ls17_c03135{letter-spacing:-0.261360px;}
.lse_c03135{letter-spacing:-0.256608px;}
.ls6_c03135{letter-spacing:-0.242352px;}
.ls4_c03135{letter-spacing:-0.118800px;}
.ls15_c03135{letter-spacing:0.000000px;}
.ls1_c03135{letter-spacing:0.006048px;}
.ls13_c03135{letter-spacing:0.076032px;}
.ls5_c03135{letter-spacing:0.128304px;}
.lsc_c03135{letter-spacing:0.508464px;}
.ls14_c03135{letter-spacing:0.514080px;}
.ls10_c03135{letter-spacing:0.536976px;}
.ls7_c03135{letter-spacing:0.560736px;}
.lsb_c03135{letter-spacing:0.579744px;}
.ls12_c03135{letter-spacing:0.594000px;}
.ls8_c03135{letter-spacing:0.598752px;}
.ls2_c03135{letter-spacing:0.613008px;}
.ls16_c03135{letter-spacing:0.670032px;}
.ls3_c03135{letter-spacing:0.717552px;}
.ls0_c03135{letter-spacing:0.722304px;}
.sc__c03135{text-shadow:none;}
.sc0_c03135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03135{-webkit-text-stroke:0px transparent;}
.sc0_c03135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03135{word-spacing:-15.126048px;}
.ws5_c03135{word-spacing:-12.459744px;}
.ws9_c03135{word-spacing:-12.416976px;}
.ws6_c03135{word-spacing:-12.388464px;}
.ws4_c03135{word-spacing:-11.305008px;}
.ws16_c03135{word-spacing:-1.083456px;}
.ws18_c03135{word-spacing:-1.031184px;}
.wse_c03135{word-spacing:-0.974160px;}
.ws17_c03135{word-spacing:-0.719712px;}
.ws10_c03135{word-spacing:-0.118800px;}
.ws12_c03135{word-spacing:-0.104544px;}
.ws13_c03135{word-spacing:-0.099792px;}
.ws15_c03135{word-spacing:-0.085536px;}
.ws19_c03135{word-spacing:-0.028512px;}
.wsf_c03135{word-spacing:0.000000px;}
.ws14_c03135{word-spacing:0.033264px;}
.ws11_c03135{word-spacing:0.375408px;}
.ws2_c03135{word-spacing:4.999104px;}
.ws8_c03135{word-spacing:23.726736px;}
.wsb_c03135{word-spacing:25.047792px;}
.wsa_c03135{word-spacing:30.298752px;}
.wsc_c03135{word-spacing:33.300288px;}
.ws7_c03135{word-spacing:36.143712px;}
.ws1_c03135{word-spacing:37.759392px;}
.ws0_c03135{word-spacing:38.020752px;}
.ws3_c03135{word-spacing:39.218256px;}
._0_c03135{margin-left:-1.948320px;}
._2_c03135{width:1.482624px;}
._4_c03135{width:16.513200px;}
._7_c03135{width:31.909680px;}
._5_c03135{width:33.511104px;}
._6_c03135{width:38.709792px;}
._1_c03135{width:50.252400px;}
._3_c03135{width:51.530688px;}
.fc0_c03135{color:rgb(0,0,0);}
.fs0_c03135{font-size:47.520000px;}
.fs1_c03135{font-size:60.480000px;}
.y0_c03135{bottom:0.000000px;}
.y1b_c03135{bottom:146.998362px;}
.y1d_c03135{bottom:186.600234px;}
.y1c_c03135{bottom:196.320450px;}
.y1a_c03135{bottom:275.878542px;}
.y19_c03135{bottom:356.878758px;}
.y17_c03135{bottom:406.559730px;}
.y13_c03135{bottom:424.560306px;}
.y18_c03135{bottom:458.759262px;}
.y16_c03135{bottom:491.879514px;}
.y15_c03135{bottom:509.880090px;}
.y12_c03135{bottom:543.000342px;}
.y14_c03135{bottom:559.559874px;}
.y11_c03135{bottom:577.560450px;}
.y1e_c03135{bottom:614.280450px;}
.yc_c03135{bottom:667.559514px;}
.yf_c03135{bottom:700.320918px;}
.ye_c03135{bottom:707.160234px;}
.yd_c03135{bottom:716.880450px;}
.yb_c03135{bottom:796.439694px;}
.ya_c03135{bottom:862.319046px;}
.y9_c03135{bottom:877.438722px;}
.y7_c03135{bottom:926.759730px;}
.y3_c03135{bottom:944.760306px;}
.y8_c03135{bottom:979.319226px;}
.y6_c03135{bottom:1012.439478px;}
.y5_c03135{bottom:1030.440054px;}
.y2_c03135{bottom:1063.560306px;}
.y4_c03135{bottom:1079.759874px;}
.y1_c03135{bottom:1097.760450px;}
.y10_c03135{bottom:1134.840450px;}
.h3_c03135{height:32.530781px;}
.h1_c03135{height:41.696016px;}
.h2_c03135{height:41.812031px;}
.h5_c03135{height:54.654737px;}
.h4_c03135{height:74.817456px;}
.h0_c03135{height:1263.000000px;}
.w1_c03135{width:892.500000px;}
.w0_c03135{width:892.830000px;}
.x0_c03135{left:0.000000px;}
.xe_c03135{left:117.000000px;}
.x8_c03135{left:441.001044px;}
.x4_c03135{left:445.680576px;}
.xc_c03135{left:451.080000px;}
.x7_c03135{left:455.400792px;}
.x5_c03135{left:461.880144px;}
.x1_c03135{left:463.320000px;}
.xb_c03135{left:483.481548px;}
.x9_c03135{left:492.120684px;}
.x6_c03135{left:493.200576px;}
.xd_c03135{left:506.880360px;}
.x3_c03135{left:511.919892px;}
.x2_c03135{left:526.679604px;}
.xa_c03135{left:569.881224px;}
@media print{
.v0_c03135{vertical-align:0.000000pt;}
.v2_c03135{vertical-align:1.279488pt;}
.v1_c03135{vertical-align:29.441280pt;}
.ls9_c03135{letter-spacing:-0.654720pt;}
.lsd_c03135{letter-spacing:-0.625152pt;}
.lsa_c03135{letter-spacing:-0.511104pt;}
.lsf_c03135{letter-spacing:-0.350592pt;}
.ls18_c03135{letter-spacing:-0.295680pt;}
.ls11_c03135{letter-spacing:-0.244992pt;}
.ls17_c03135{letter-spacing:-0.232320pt;}
.lse_c03135{letter-spacing:-0.228096pt;}
.ls6_c03135{letter-spacing:-0.215424pt;}
.ls4_c03135{letter-spacing:-0.105600pt;}
.ls15_c03135{letter-spacing:0.000000pt;}
.ls1_c03135{letter-spacing:0.005376pt;}
.ls13_c03135{letter-spacing:0.067584pt;}
.ls5_c03135{letter-spacing:0.114048pt;}
.lsc_c03135{letter-spacing:0.451968pt;}
.ls14_c03135{letter-spacing:0.456960pt;}
.ls10_c03135{letter-spacing:0.477312pt;}
.ls7_c03135{letter-spacing:0.498432pt;}
.lsb_c03135{letter-spacing:0.515328pt;}
.ls12_c03135{letter-spacing:0.528000pt;}
.ls8_c03135{letter-spacing:0.532224pt;}
.ls2_c03135{letter-spacing:0.544896pt;}
.ls16_c03135{letter-spacing:0.595584pt;}
.ls3_c03135{letter-spacing:0.637824pt;}
.ls0_c03135{letter-spacing:0.642048pt;}
.wsd_c03135{word-spacing:-13.445376pt;}
.ws5_c03135{word-spacing:-11.075328pt;}
.ws9_c03135{word-spacing:-11.037312pt;}
.ws6_c03135{word-spacing:-11.011968pt;}
.ws4_c03135{word-spacing:-10.048896pt;}
.ws16_c03135{word-spacing:-0.963072pt;}
.ws18_c03135{word-spacing:-0.916608pt;}
.wse_c03135{word-spacing:-0.865920pt;}
.ws17_c03135{word-spacing:-0.639744pt;}
.ws10_c03135{word-spacing:-0.105600pt;}
.ws12_c03135{word-spacing:-0.092928pt;}
.ws13_c03135{word-spacing:-0.088704pt;}
.ws15_c03135{word-spacing:-0.076032pt;}
.ws19_c03135{word-spacing:-0.025344pt;}
.wsf_c03135{word-spacing:0.000000pt;}
.ws14_c03135{word-spacing:0.029568pt;}
.ws11_c03135{word-spacing:0.333696pt;}
.ws2_c03135{word-spacing:4.443648pt;}
.ws8_c03135{word-spacing:21.090432pt;}
.wsb_c03135{word-spacing:22.264704pt;}
.wsa_c03135{word-spacing:26.932224pt;}
.wsc_c03135{word-spacing:29.600256pt;}
.ws7_c03135{word-spacing:32.127744pt;}
.ws1_c03135{word-spacing:33.563904pt;}
.ws0_c03135{word-spacing:33.796224pt;}
.ws3_c03135{word-spacing:34.860672pt;}
._0_c03135{margin-left:-1.731840pt;}
._2_c03135{width:1.317888pt;}
._4_c03135{width:14.678400pt;}
._7_c03135{width:28.364160pt;}
._5_c03135{width:29.787648pt;}
._6_c03135{width:34.408704pt;}
._1_c03135{width:44.668800pt;}
._3_c03135{width:45.805056pt;}
.fs0_c03135{font-size:42.240000pt;}
.fs1_c03135{font-size:53.760000pt;}
.y0_c03135{bottom:0.000000pt;}
.y1b_c03135{bottom:130.665211pt;}
.y1d_c03135{bottom:165.866875pt;}
.y1c_c03135{bottom:174.507067pt;}
.y1a_c03135{bottom:245.225371pt;}
.y19_c03135{bottom:317.225563pt;}
.y17_c03135{bottom:361.386427pt;}
.y13_c03135{bottom:377.386939pt;}
.y18_c03135{bottom:407.786011pt;}
.y16_c03135{bottom:437.226235pt;}
.y15_c03135{bottom:453.226747pt;}
.y12_c03135{bottom:482.666971pt;}
.y14_c03135{bottom:497.386555pt;}
.y11_c03135{bottom:513.387067pt;}
.y1e_c03135{bottom:546.027067pt;}
.yc_c03135{bottom:593.386235pt;}
.yf_c03135{bottom:622.507483pt;}
.ye_c03135{bottom:628.586875pt;}
.yd_c03135{bottom:637.227067pt;}
.yb_c03135{bottom:707.946395pt;}
.ya_c03135{bottom:766.505819pt;}
.y9_c03135{bottom:779.945531pt;}
.y7_c03135{bottom:823.786427pt;}
.y3_c03135{bottom:839.786939pt;}
.y8_c03135{bottom:870.505979pt;}
.y6_c03135{bottom:899.946203pt;}
.y5_c03135{bottom:915.946715pt;}
.y2_c03135{bottom:945.386939pt;}
.y4_c03135{bottom:959.786555pt;}
.y1_c03135{bottom:975.787067pt;}
.y10_c03135{bottom:1008.747067pt;}
.h3_c03135{height:28.916250pt;}
.h1_c03135{height:37.063125pt;}
.h2_c03135{height:37.166250pt;}
.h5_c03135{height:48.581988pt;}
.h4_c03135{height:66.504405pt;}
.h0_c03135{height:1122.666667pt;}
.w1_c03135{width:793.333333pt;}
.w0_c03135{width:793.626667pt;}
.x0_c03135{left:0.000000pt;}
.xe_c03135{left:104.000000pt;}
.x8_c03135{left:392.000928pt;}
.x4_c03135{left:396.160512pt;}
.xc_c03135{left:400.960000pt;}
.x7_c03135{left:404.800704pt;}
.x5_c03135{left:410.560128pt;}
.x1_c03135{left:411.840000pt;}
.xb_c03135{left:429.761376pt;}
.x9_c03135{left:437.440608pt;}
.x6_c03135{left:438.400512pt;}
.xd_c03135{left:450.560320pt;}
.x3_c03135{left:455.039904pt;}
.x2_c03135{left:468.159648pt;}
.xa_c03135{left:506.561088pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03136 {
    display:none;
  }
  .loading-indicator_c03136.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03136 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03136 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03136" -> "#page-container .classname_c03136")
 */
.pf_c03136 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03136 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03136.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03136 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03136 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03136 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03136 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03136 {overflow:visible;}
  }
}
.c_c03136 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03136 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03136:after { /* webkit #35443 */
  content: '';
}
.t_c03136:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03136 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03136 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03136 { /* info for Javascript */
  display:none;
}
.l_c03136 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03136 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03136 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03136:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03136 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03136.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03136.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03136 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03136{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03136;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03136{font-family:ff1_c03136;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03136;src:url('chunks/assets/font_5924696f1bc38d53e1dc8d35.woff2')format("woff");}.ff2_c03136{font-family:ff2_c03136;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03136;src:url('chunks/assets/font_89ea2b9589ffce281406d111.woff2')format("woff");}.ff3_c03136{font-family:ff3_c03136;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03136{vertical-align:0.000000px;}
.v1_c03136{vertical-align:1.439424px;}
.ls8_c03136{letter-spacing:-1.197504px;}
.ls10_c03136{letter-spacing:-0.788832px;}
.lsf_c03136{letter-spacing:-0.779328px;}
.lsa_c03136{letter-spacing:-0.574992px;}
.ls19_c03136{letter-spacing:-0.361152px;}
.ls11_c03136{letter-spacing:-0.346896px;}
.ls12_c03136{letter-spacing:-0.275616px;}
.lsd_c03136{letter-spacing:-0.261360px;}
.ls7_c03136{letter-spacing:-0.242352px;}
.ls5_c03136{letter-spacing:-0.118800px;}
.ls15_c03136{letter-spacing:0.000000px;}
.ls2_c03136{letter-spacing:0.006048px;}
.ls6_c03136{letter-spacing:0.128304px;}
.ls16_c03136{letter-spacing:0.185328px;}
.ls18_c03136{letter-spacing:0.237600px;}
.ls17_c03136{letter-spacing:0.242352px;}
.lsc_c03136{letter-spacing:0.508464px;}
.ls14_c03136{letter-spacing:0.514080px;}
.lse_c03136{letter-spacing:0.536976px;}
.lsb_c03136{letter-spacing:0.579744px;}
.ls13_c03136{letter-spacing:0.594000px;}
.ls9_c03136{letter-spacing:0.598752px;}
.ls3_c03136{letter-spacing:0.613008px;}
.ls0_c03136{letter-spacing:0.693792px;}
.ls4_c03136{letter-spacing:0.717552px;}
.ls1_c03136{letter-spacing:0.722304px;}
.sc__c03136{text-shadow:none;}
.sc0_c03136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03136{-webkit-text-stroke:0px transparent;}
.sc0_c03136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03136{word-spacing:-15.126048px;}
.wsb_c03136{word-spacing:-12.474000px;}
.ws5_c03136{word-spacing:-12.459744px;}
.ws11_c03136{word-spacing:-12.416976px;}
.ws6_c03136{word-spacing:-12.388464px;}
.ws10_c03136{word-spacing:-12.117600px;}
.ws4_c03136{word-spacing:-11.305008px;}
.ws2_c03136{word-spacing:-10.682496px;}
.ws16_c03136{word-spacing:-1.083456px;}
.ws15_c03136{word-spacing:-1.054944px;}
.ws12_c03136{word-spacing:-0.974160px;}
.ws1a_c03136{word-spacing:-0.719712px;}
.ws1b_c03136{word-spacing:-0.546480px;}
.ws14_c03136{word-spacing:-0.118800px;}
.ws17_c03136{word-spacing:-0.099792px;}
.ws19_c03136{word-spacing:-0.085536px;}
.ws18_c03136{word-spacing:-0.014256px;}
.ws13_c03136{word-spacing:0.000000px;}
.ws1c_c03136{word-spacing:0.836352px;}
.wse_c03136{word-spacing:6.605280px;}
.wsa_c03136{word-spacing:16.128288px;}
.ws9_c03136{word-spacing:27.837216px;}
.wsc_c03136{word-spacing:33.300288px;}
.ws8_c03136{word-spacing:34.836912px;}
.ws7_c03136{word-spacing:36.143712px;}
.ws1_c03136{word-spacing:37.759392px;}
.ws0_c03136{word-spacing:38.020752px;}
.ws3_c03136{word-spacing:39.218256px;}
.wsf_c03136{word-spacing:42.026688px;}
._0_c03136{margin-left:-1.948320px;}
._2_c03136{width:1.482624px;}
._7_c03136{width:21.445776px;}
._6_c03136{width:28.806624px;}
._5_c03136{width:33.054912px;}
._4_c03136{width:42.078960px;}
._1_c03136{width:50.252400px;}
._3_c03136{width:51.530688px;}
.fc0_c03136{color:rgb(0,0,0);}
.fs0_c03136{font-size:47.520000px;}
.fs1_c03136{font-size:60.480000px;}
.y0_c03136{bottom:0.000000px;}
.y1b_c03136{bottom:146.998362px;}
.y1d_c03136{bottom:186.600234px;}
.y1c_c03136{bottom:196.320450px;}
.y1a_c03136{bottom:275.878542px;}
.y19_c03136{bottom:356.878758px;}
.y17_c03136{bottom:406.559730px;}
.y13_c03136{bottom:424.560306px;}
.y18_c03136{bottom:458.759262px;}
.y16_c03136{bottom:491.879514px;}
.y15_c03136{bottom:509.880090px;}
.y12_c03136{bottom:543.000342px;}
.y14_c03136{bottom:559.559874px;}
.y11_c03136{bottom:577.560450px;}
.y1e_c03136{bottom:614.280450px;}
.yd_c03136{bottom:637.318974px;}
.yc_c03136{bottom:652.438650px;}
.yb_c03136{bottom:667.558326px;}
.yf_c03136{bottom:707.160234px;}
.ye_c03136{bottom:716.880450px;}
.ya_c03136{bottom:796.438506px;}
.y9_c03136{bottom:877.438722px;}
.y7_c03136{bottom:926.759730px;}
.y3_c03136{bottom:944.760306px;}
.y8_c03136{bottom:979.319226px;}
.y6_c03136{bottom:1012.439478px;}
.y5_c03136{bottom:1030.440054px;}
.y2_c03136{bottom:1063.560306px;}
.y4_c03136{bottom:1079.759874px;}
.y1_c03136{bottom:1097.760450px;}
.y10_c03136{bottom:1134.840450px;}
.h3_c03136{height:32.530781px;}
.h1_c03136{height:41.696016px;}
.h2_c03136{height:41.812031px;}
.h4_c03136{height:54.654737px;}
.h0_c03136{height:1263.000000px;}
.w1_c03136{width:892.500000px;}
.w0_c03136{width:892.830000px;}
.x0_c03136{left:0.000000px;}
.xe_c03136{left:117.000000px;}
.x8_c03136{left:441.001044px;}
.x4_c03136{left:445.680576px;}
.xc_c03136{left:451.080000px;}
.x7_c03136{left:455.400792px;}
.x5_c03136{left:461.880144px;}
.x1_c03136{left:463.320000px;}
.xa_c03136{left:483.481548px;}
.x9_c03136{left:492.120684px;}
.x6_c03136{left:493.200576px;}
.xd_c03136{left:506.880360px;}
.x3_c03136{left:511.919892px;}
.x2_c03136{left:526.679604px;}
.xb_c03136{left:569.881224px;}
@media print{
.v0_c03136{vertical-align:0.000000pt;}
.v1_c03136{vertical-align:1.279488pt;}
.ls8_c03136{letter-spacing:-1.064448pt;}
.ls10_c03136{letter-spacing:-0.701184pt;}
.lsf_c03136{letter-spacing:-0.692736pt;}
.lsa_c03136{letter-spacing:-0.511104pt;}
.ls19_c03136{letter-spacing:-0.321024pt;}
.ls11_c03136{letter-spacing:-0.308352pt;}
.ls12_c03136{letter-spacing:-0.244992pt;}
.lsd_c03136{letter-spacing:-0.232320pt;}
.ls7_c03136{letter-spacing:-0.215424pt;}
.ls5_c03136{letter-spacing:-0.105600pt;}
.ls15_c03136{letter-spacing:0.000000pt;}
.ls2_c03136{letter-spacing:0.005376pt;}
.ls6_c03136{letter-spacing:0.114048pt;}
.ls16_c03136{letter-spacing:0.164736pt;}
.ls18_c03136{letter-spacing:0.211200pt;}
.ls17_c03136{letter-spacing:0.215424pt;}
.lsc_c03136{letter-spacing:0.451968pt;}
.ls14_c03136{letter-spacing:0.456960pt;}
.lse_c03136{letter-spacing:0.477312pt;}
.lsb_c03136{letter-spacing:0.515328pt;}
.ls13_c03136{letter-spacing:0.528000pt;}
.ls9_c03136{letter-spacing:0.532224pt;}
.ls3_c03136{letter-spacing:0.544896pt;}
.ls0_c03136{letter-spacing:0.616704pt;}
.ls4_c03136{letter-spacing:0.637824pt;}
.ls1_c03136{letter-spacing:0.642048pt;}
.wsd_c03136{word-spacing:-13.445376pt;}
.wsb_c03136{word-spacing:-11.088000pt;}
.ws5_c03136{word-spacing:-11.075328pt;}
.ws11_c03136{word-spacing:-11.037312pt;}
.ws6_c03136{word-spacing:-11.011968pt;}
.ws10_c03136{word-spacing:-10.771200pt;}
.ws4_c03136{word-spacing:-10.048896pt;}
.ws2_c03136{word-spacing:-9.495552pt;}
.ws16_c03136{word-spacing:-0.963072pt;}
.ws15_c03136{word-spacing:-0.937728pt;}
.ws12_c03136{word-spacing:-0.865920pt;}
.ws1a_c03136{word-spacing:-0.639744pt;}
.ws1b_c03136{word-spacing:-0.485760pt;}
.ws14_c03136{word-spacing:-0.105600pt;}
.ws17_c03136{word-spacing:-0.088704pt;}
.ws19_c03136{word-spacing:-0.076032pt;}
.ws18_c03136{word-spacing:-0.012672pt;}
.ws13_c03136{word-spacing:0.000000pt;}
.ws1c_c03136{word-spacing:0.743424pt;}
.wse_c03136{word-spacing:5.871360pt;}
.wsa_c03136{word-spacing:14.336256pt;}
.ws9_c03136{word-spacing:24.744192pt;}
.wsc_c03136{word-spacing:29.600256pt;}
.ws8_c03136{word-spacing:30.966144pt;}
.ws7_c03136{word-spacing:32.127744pt;}
.ws1_c03136{word-spacing:33.563904pt;}
.ws0_c03136{word-spacing:33.796224pt;}
.ws3_c03136{word-spacing:34.860672pt;}
.wsf_c03136{word-spacing:37.357056pt;}
._0_c03136{margin-left:-1.731840pt;}
._2_c03136{width:1.317888pt;}
._7_c03136{width:19.062912pt;}
._6_c03136{width:25.605888pt;}
._5_c03136{width:29.382144pt;}
._4_c03136{width:37.403520pt;}
._1_c03136{width:44.668800pt;}
._3_c03136{width:45.805056pt;}
.fs0_c03136{font-size:42.240000pt;}
.fs1_c03136{font-size:53.760000pt;}
.y0_c03136{bottom:0.000000pt;}
.y1b_c03136{bottom:130.665211pt;}
.y1d_c03136{bottom:165.866875pt;}
.y1c_c03136{bottom:174.507067pt;}
.y1a_c03136{bottom:245.225371pt;}
.y19_c03136{bottom:317.225563pt;}
.y17_c03136{bottom:361.386427pt;}
.y13_c03136{bottom:377.386939pt;}
.y18_c03136{bottom:407.786011pt;}
.y16_c03136{bottom:437.226235pt;}
.y15_c03136{bottom:453.226747pt;}
.y12_c03136{bottom:482.666971pt;}
.y14_c03136{bottom:497.386555pt;}
.y11_c03136{bottom:513.387067pt;}
.y1e_c03136{bottom:546.027067pt;}
.yd_c03136{bottom:566.505755pt;}
.yc_c03136{bottom:579.945467pt;}
.yb_c03136{bottom:593.385179pt;}
.yf_c03136{bottom:628.586875pt;}
.ye_c03136{bottom:637.227067pt;}
.ya_c03136{bottom:707.945339pt;}
.y9_c03136{bottom:779.945531pt;}
.y7_c03136{bottom:823.786427pt;}
.y3_c03136{bottom:839.786939pt;}
.y8_c03136{bottom:870.505979pt;}
.y6_c03136{bottom:899.946203pt;}
.y5_c03136{bottom:915.946715pt;}
.y2_c03136{bottom:945.386939pt;}
.y4_c03136{bottom:959.786555pt;}
.y1_c03136{bottom:975.787067pt;}
.y10_c03136{bottom:1008.747067pt;}
.h3_c03136{height:28.916250pt;}
.h1_c03136{height:37.063125pt;}
.h2_c03136{height:37.166250pt;}
.h4_c03136{height:48.581988pt;}
.h0_c03136{height:1122.666667pt;}
.w1_c03136{width:793.333333pt;}
.w0_c03136{width:793.626667pt;}
.x0_c03136{left:0.000000pt;}
.xe_c03136{left:104.000000pt;}
.x8_c03136{left:392.000928pt;}
.x4_c03136{left:396.160512pt;}
.xc_c03136{left:400.960000pt;}
.x7_c03136{left:404.800704pt;}
.x5_c03136{left:410.560128pt;}
.x1_c03136{left:411.840000pt;}
.xa_c03136{left:429.761376pt;}
.x9_c03136{left:437.440608pt;}
.x6_c03136{left:438.400512pt;}
.xd_c03136{left:450.560320pt;}
.x3_c03136{left:455.039904pt;}
.x2_c03136{left:468.159648pt;}
.xb_c03136{left:506.561088pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03137 {
    display:none;
  }
  .loading-indicator_c03137.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03137 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03137 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03137" -> "#page-container .classname_c03137")
 */
.pf_c03137 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03137 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03137.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03137 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03137 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03137 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03137 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03137 {overflow:visible;}
  }
}
.c_c03137 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03137 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03137:after { /* webkit #35443 */
  content: '';
}
.t_c03137:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03137 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03137 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03137 { /* info for Javascript */
  display:none;
}
.l_c03137 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03137 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03137 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03137:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03137 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03137.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03137.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03137 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03137{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03137;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03137{font-family:ff1_c03137;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03137;src:url('chunks/assets/font_d59ec2451407589eb29d19da.woff2')format("woff");}.ff2_c03137{font-family:ff2_c03137;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03137;src:url('chunks/assets/font_42290435c49898e442b60241.woff2')format("woff");}.ff3_c03137{font-family:ff3_c03137;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03137{vertical-align:0.000000px;}
.v1_c03137{vertical-align:1.439424px;}
.ls16_c03137{letter-spacing:-1.197504px;}
.lse_c03137{letter-spacing:-0.788832px;}
.lsf_c03137{letter-spacing:-0.722304px;}
.ls9_c03137{letter-spacing:-0.574992px;}
.ls17_c03137{letter-spacing:-0.337392px;}
.ls10_c03137{letter-spacing:-0.275616px;}
.lsc_c03137{letter-spacing:-0.261360px;}
.ls6_c03137{letter-spacing:-0.242352px;}
.ls4_c03137{letter-spacing:-0.118800px;}
.ls13_c03137{letter-spacing:0.000000px;}
.ls1_c03137{letter-spacing:0.006048px;}
.ls15_c03137{letter-spacing:0.014256px;}
.ls5_c03137{letter-spacing:0.128304px;}
.ls7_c03137{letter-spacing:0.185328px;}
.lsb_c03137{letter-spacing:0.508464px;}
.ls12_c03137{letter-spacing:0.514080px;}
.lsd_c03137{letter-spacing:0.536976px;}
.lsa_c03137{letter-spacing:0.579744px;}
.ls11_c03137{letter-spacing:0.594000px;}
.ls8_c03137{letter-spacing:0.598752px;}
.ls14_c03137{letter-spacing:0.603504px;}
.ls3_c03137{letter-spacing:0.613008px;}
.ls0_c03137{letter-spacing:0.717552px;}
.ls2_c03137{letter-spacing:0.722304px;}
.sc__c03137{text-shadow:none;}
.sc0_c03137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03137{-webkit-text-stroke:0px transparent;}
.sc0_c03137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03137{word-spacing:-15.126048px;}
.wse_c03137{word-spacing:-12.602304px;}
.ws9_c03137{word-spacing:-12.474000px;}
.ws5_c03137{word-spacing:-12.459744px;}
.ws6_c03137{word-spacing:-12.388464px;}
.ws11_c03137{word-spacing:-11.157696px;}
.ws1d_c03137{word-spacing:-1.083456px;}
.ws16_c03137{word-spacing:-1.078704px;}
.ws12_c03137{word-spacing:-0.974160px;}
.ws1b_c03137{word-spacing:-0.964656px;}
.ws1a_c03137{word-spacing:-0.719712px;}
.ws15_c03137{word-spacing:-0.546480px;}
.ws1c_c03137{word-spacing:-0.375408px;}
.ws14_c03137{word-spacing:-0.118800px;}
.ws17_c03137{word-spacing:-0.099792px;}
.ws19_c03137{word-spacing:-0.085536px;}
.ws1e_c03137{word-spacing:-0.023760px;}
.ws13_c03137{word-spacing:0.000000px;}
.ws18_c03137{word-spacing:0.361152px;}
.ws3_c03137{word-spacing:6.605280px;}
.ws10_c03137{word-spacing:8.045136px;}
.ws8_c03137{word-spacing:21.887712px;}
.wsa_c03137{word-spacing:33.300288px;}
.ws7_c03137{word-spacing:34.836912px;}
.wsc_c03137{word-spacing:36.742464px;}
.ws1_c03137{word-spacing:37.759392px;}
.ws0_c03137{word-spacing:38.020752px;}
.ws2_c03137{word-spacing:39.218256px;}
.ws4_c03137{word-spacing:39.902544px;}
.wsd_c03137{word-spacing:42.026688px;}
.wsf_c03137{word-spacing:62.274960px;}
._0_c03137{margin-left:-1.948320px;}
._2_c03137{width:1.482624px;}
._8_c03137{width:2.789424px;}
._b_c03137{width:23.308560px;}
._a_c03137{width:24.781680px;}
._9_c03137{width:26.777520px;}
._c_c03137{width:29.281824px;}
._4_c03137{width:35.188560px;}
._5_c03137{width:36.861264px;}
._1_c03137{width:50.252400px;}
._3_c03137{width:51.530688px;}
._7_c03137{width:77.158224px;}
._6_c03137{width:80.094960px;}
.fc0_c03137{color:rgb(0,0,0);}
.fs0_c03137{font-size:47.520000px;}
.fs1_c03137{font-size:60.480000px;}
.y0_c03137{bottom:0.000000px;}
.y1a_c03137{bottom:65.880450px;}
.y1f_c03137{bottom:131.880378px;}
.y1e_c03137{bottom:147.000054px;}
.y21_c03137{bottom:186.600234px;}
.y20_c03137{bottom:196.320450px;}
.y1d_c03137{bottom:260.760558px;}
.y1c_c03137{bottom:275.880234px;}
.y19_c03137{bottom:291.000000px;}
.y18_c03137{bottom:356.878758px;}
.y1b_c03137{bottom:356.880450px;}
.y16_c03137{bottom:406.559730px;}
.y12_c03137{bottom:424.560306px;}
.y17_c03137{bottom:458.759262px;}
.y15_c03137{bottom:491.879514px;}
.y14_c03137{bottom:509.880090px;}
.y11_c03137{bottom:543.000342px;}
.y13_c03137{bottom:559.559874px;}
.y10_c03137{bottom:577.560450px;}
.y22_c03137{bottom:614.280450px;}
.yc_c03137{bottom:652.438650px;}
.yb_c03137{bottom:667.558326px;}
.ye_c03137{bottom:707.160234px;}
.yd_c03137{bottom:716.880450px;}
.ya_c03137{bottom:796.438506px;}
.y9_c03137{bottom:877.438722px;}
.y7_c03137{bottom:926.759730px;}
.y3_c03137{bottom:944.760306px;}
.y8_c03137{bottom:979.319226px;}
.y6_c03137{bottom:1012.439478px;}
.y5_c03137{bottom:1030.440054px;}
.y2_c03137{bottom:1063.560306px;}
.y4_c03137{bottom:1079.759874px;}
.y1_c03137{bottom:1097.760450px;}
.yf_c03137{bottom:1134.840450px;}
.h3_c03137{height:32.530781px;}
.h1_c03137{height:41.696016px;}
.h2_c03137{height:41.812031px;}
.h4_c03137{height:54.654737px;}
.h5_c03137{height:78.480000px;}
.h0_c03137{height:1263.000000px;}
.w2_c03137{width:215.280000px;}
.w1_c03137{width:892.500000px;}
.w0_c03137{width:892.830000px;}
.x0_c03137{left:0.000000px;}
.xe_c03137{left:117.000000px;}
.x8_c03137{left:440.999856px;}
.x4_c03137{left:445.680576px;}
.xc_c03137{left:451.080000px;}
.x7_c03137{left:455.399604px;}
.x5_c03137{left:461.880144px;}
.x1_c03137{left:463.320000px;}
.xa_c03137{left:483.480360px;}
.x9_c03137{left:492.119496px;}
.x6_c03137{left:493.200576px;}
.xd_c03137{left:506.880360px;}
.x3_c03137{left:511.919892px;}
.x2_c03137{left:526.679604px;}
.xb_c03137{left:569.880036px;}
.xf_c03137{left:617.400000px;}
@media print{
.v0_c03137{vertical-align:0.000000pt;}
.v1_c03137{vertical-align:1.279488pt;}
.ls16_c03137{letter-spacing:-1.064448pt;}
.lse_c03137{letter-spacing:-0.701184pt;}
.lsf_c03137{letter-spacing:-0.642048pt;}
.ls9_c03137{letter-spacing:-0.511104pt;}
.ls17_c03137{letter-spacing:-0.299904pt;}
.ls10_c03137{letter-spacing:-0.244992pt;}
.lsc_c03137{letter-spacing:-0.232320pt;}
.ls6_c03137{letter-spacing:-0.215424pt;}
.ls4_c03137{letter-spacing:-0.105600pt;}
.ls13_c03137{letter-spacing:0.000000pt;}
.ls1_c03137{letter-spacing:0.005376pt;}
.ls15_c03137{letter-spacing:0.012672pt;}
.ls5_c03137{letter-spacing:0.114048pt;}
.ls7_c03137{letter-spacing:0.164736pt;}
.lsb_c03137{letter-spacing:0.451968pt;}
.ls12_c03137{letter-spacing:0.456960pt;}
.lsd_c03137{letter-spacing:0.477312pt;}
.lsa_c03137{letter-spacing:0.515328pt;}
.ls11_c03137{letter-spacing:0.528000pt;}
.ls8_c03137{letter-spacing:0.532224pt;}
.ls14_c03137{letter-spacing:0.536448pt;}
.ls3_c03137{letter-spacing:0.544896pt;}
.ls0_c03137{letter-spacing:0.637824pt;}
.ls2_c03137{letter-spacing:0.642048pt;}
.wsb_c03137{word-spacing:-13.445376pt;}
.wse_c03137{word-spacing:-11.202048pt;}
.ws9_c03137{word-spacing:-11.088000pt;}
.ws5_c03137{word-spacing:-11.075328pt;}
.ws6_c03137{word-spacing:-11.011968pt;}
.ws11_c03137{word-spacing:-9.917952pt;}
.ws1d_c03137{word-spacing:-0.963072pt;}
.ws16_c03137{word-spacing:-0.958848pt;}
.ws12_c03137{word-spacing:-0.865920pt;}
.ws1b_c03137{word-spacing:-0.857472pt;}
.ws1a_c03137{word-spacing:-0.639744pt;}
.ws15_c03137{word-spacing:-0.485760pt;}
.ws1c_c03137{word-spacing:-0.333696pt;}
.ws14_c03137{word-spacing:-0.105600pt;}
.ws17_c03137{word-spacing:-0.088704pt;}
.ws19_c03137{word-spacing:-0.076032pt;}
.ws1e_c03137{word-spacing:-0.021120pt;}
.ws13_c03137{word-spacing:0.000000pt;}
.ws18_c03137{word-spacing:0.321024pt;}
.ws3_c03137{word-spacing:5.871360pt;}
.ws10_c03137{word-spacing:7.151232pt;}
.ws8_c03137{word-spacing:19.455744pt;}
.wsa_c03137{word-spacing:29.600256pt;}
.ws7_c03137{word-spacing:30.966144pt;}
.wsc_c03137{word-spacing:32.659968pt;}
.ws1_c03137{word-spacing:33.563904pt;}
.ws0_c03137{word-spacing:33.796224pt;}
.ws2_c03137{word-spacing:34.860672pt;}
.ws4_c03137{word-spacing:35.468928pt;}
.wsd_c03137{word-spacing:37.357056pt;}
.wsf_c03137{word-spacing:55.355520pt;}
._0_c03137{margin-left:-1.731840pt;}
._2_c03137{width:1.317888pt;}
._8_c03137{width:2.479488pt;}
._b_c03137{width:20.718720pt;}
._a_c03137{width:22.028160pt;}
._9_c03137{width:23.802240pt;}
._c_c03137{width:26.028288pt;}
._4_c03137{width:31.278720pt;}
._5_c03137{width:32.765568pt;}
._1_c03137{width:44.668800pt;}
._3_c03137{width:45.805056pt;}
._7_c03137{width:68.585088pt;}
._6_c03137{width:71.195520pt;}
.fs0_c03137{font-size:42.240000pt;}
.fs1_c03137{font-size:53.760000pt;}
.y0_c03137{bottom:0.000000pt;}
.y1a_c03137{bottom:58.560400pt;}
.y1f_c03137{bottom:117.227003pt;}
.y1e_c03137{bottom:130.666715pt;}
.y21_c03137{bottom:165.866875pt;}
.y20_c03137{bottom:174.507067pt;}
.y1d_c03137{bottom:231.787163pt;}
.y1c_c03137{bottom:245.226875pt;}
.y19_c03137{bottom:258.666667pt;}
.y18_c03137{bottom:317.225563pt;}
.y1b_c03137{bottom:317.227067pt;}
.y16_c03137{bottom:361.386427pt;}
.y12_c03137{bottom:377.386939pt;}
.y17_c03137{bottom:407.786011pt;}
.y15_c03137{bottom:437.226235pt;}
.y14_c03137{bottom:453.226747pt;}
.y11_c03137{bottom:482.666971pt;}
.y13_c03137{bottom:497.386555pt;}
.y10_c03137{bottom:513.387067pt;}
.y22_c03137{bottom:546.027067pt;}
.yc_c03137{bottom:579.945467pt;}
.yb_c03137{bottom:593.385179pt;}
.ye_c03137{bottom:628.586875pt;}
.yd_c03137{bottom:637.227067pt;}
.ya_c03137{bottom:707.945339pt;}
.y9_c03137{bottom:779.945531pt;}
.y7_c03137{bottom:823.786427pt;}
.y3_c03137{bottom:839.786939pt;}
.y8_c03137{bottom:870.505979pt;}
.y6_c03137{bottom:899.946203pt;}
.y5_c03137{bottom:915.946715pt;}
.y2_c03137{bottom:945.386939pt;}
.y4_c03137{bottom:959.786555pt;}
.y1_c03137{bottom:975.787067pt;}
.yf_c03137{bottom:1008.747067pt;}
.h3_c03137{height:28.916250pt;}
.h1_c03137{height:37.063125pt;}
.h2_c03137{height:37.166250pt;}
.h4_c03137{height:48.581988pt;}
.h5_c03137{height:69.760000pt;}
.h0_c03137{height:1122.666667pt;}
.w2_c03137{width:191.360000pt;}
.w1_c03137{width:793.333333pt;}
.w0_c03137{width:793.626667pt;}
.x0_c03137{left:0.000000pt;}
.xe_c03137{left:104.000000pt;}
.x8_c03137{left:391.999872pt;}
.x4_c03137{left:396.160512pt;}
.xc_c03137{left:400.960000pt;}
.x7_c03137{left:404.799648pt;}
.x5_c03137{left:410.560128pt;}
.x1_c03137{left:411.840000pt;}
.xa_c03137{left:429.760320pt;}
.x9_c03137{left:437.439552pt;}
.x6_c03137{left:438.400512pt;}
.xd_c03137{left:450.560320pt;}
.x3_c03137{left:455.039904pt;}
.x2_c03137{left:468.159648pt;}
.xb_c03137{left:506.560032pt;}
.xf_c03137{left:548.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03138 {
    display:none;
  }
  .loading-indicator_c03138.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03138 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03138 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03138" -> "#page-container .classname_c03138")
 */
.pf_c03138 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03138 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03138.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03138 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03138 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03138 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03138 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03138 {overflow:visible;}
  }
}
.c_c03138 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03138 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03138:after { /* webkit #35443 */
  content: '';
}
.t_c03138:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03138 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03138 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03138 { /* info for Javascript */
  display:none;
}
.l_c03138 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03138 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03138 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03138:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03138 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03138.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03138.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03138 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03138{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03138;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03138{font-family:ff1_c03138;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03138;src:url('chunks/assets/font_f8c7761a75cdc3b1fc70b971.woff2')format("woff");}.ff2_c03138{font-family:ff2_c03138;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03138;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03138{font-family:ff3_c03138;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03138{vertical-align:0.000000px;}
.v1_c03138{vertical-align:1.439424px;}
.lsd_c03138{letter-spacing:-0.845856px;}
.ls15_c03138{letter-spacing:-0.803088px;}
.ls14_c03138{letter-spacing:-0.731808px;}
.ls8_c03138{letter-spacing:-0.574992px;}
.lsf_c03138{letter-spacing:-0.275616px;}
.lse_c03138{letter-spacing:-0.266112px;}
.lsb_c03138{letter-spacing:-0.261360px;}
.ls5_c03138{letter-spacing:-0.242352px;}
.ls3_c03138{letter-spacing:-0.118800px;}
.ls12_c03138{letter-spacing:0.000000px;}
.ls0_c03138{letter-spacing:0.006048px;}
.ls4_c03138{letter-spacing:0.128304px;}
.ls6_c03138{letter-spacing:0.185328px;}
.ls13_c03138{letter-spacing:0.242352px;}
.lsa_c03138{letter-spacing:0.508464px;}
.ls11_c03138{letter-spacing:0.514080px;}
.lsc_c03138{letter-spacing:0.536976px;}
.ls9_c03138{letter-spacing:0.579744px;}
.ls10_c03138{letter-spacing:0.594000px;}
.ls7_c03138{letter-spacing:0.598752px;}
.ls2_c03138{letter-spacing:0.613008px;}
.ls1_c03138{letter-spacing:0.717552px;}
.sc__c03138{text-shadow:none;}
.sc0_c03138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03138{-webkit-text-stroke:0px transparent;}
.sc0_c03138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03138{word-spacing:-15.126048px;}
.ws9_c03138{word-spacing:-12.474000px;}
.ws5_c03138{word-spacing:-12.459744px;}
.ws6_c03138{word-spacing:-12.388464px;}
.ws4_c03138{word-spacing:-11.305008px;}
.ws17_c03138{word-spacing:-1.078704px;}
.wsf_c03138{word-spacing:-0.974160px;}
.ws16_c03138{word-spacing:-0.719712px;}
.ws12_c03138{word-spacing:-0.546480px;}
.ws11_c03138{word-spacing:-0.118800px;}
.ws13_c03138{word-spacing:-0.099792px;}
.ws14_c03138{word-spacing:-0.095040px;}
.ws15_c03138{word-spacing:-0.085536px;}
.ws10_c03138{word-spacing:0.000000px;}
.ws18_c03138{word-spacing:0.441936px;}
.ws3_c03138{word-spacing:6.605280px;}
.wse_c03138{word-spacing:10.463904px;}
.ws8_c03138{word-spacing:17.682192px;}
.wsa_c03138{word-spacing:33.300288px;}
.ws7_c03138{word-spacing:34.836912px;}
.ws1_c03138{word-spacing:37.759392px;}
.ws0_c03138{word-spacing:38.020752px;}
.ws2_c03138{word-spacing:39.218256px;}
.wsc_c03138{word-spacing:39.902544px;}
.wsd_c03138{word-spacing:42.026688px;}
._0_c03138{margin-left:-1.948320px;}
._2_c03138{width:1.482624px;}
._9_c03138{width:23.237280px;}
._7_c03138{width:24.871968px;}
._8_c03138{width:29.106000px;}
._4_c03138{width:30.778704px;}
._6_c03138{width:34.328448px;}
._5_c03138{width:39.864528px;}
._1_c03138{width:50.252400px;}
._3_c03138{width:51.530688px;}
.fc0_c03138{color:rgb(0,0,0);}
.fs0_c03138{font-size:47.520000px;}
.fs1_c03138{font-size:60.480000px;}
.y0_c03138{bottom:0.000000px;}
.y1b_c03138{bottom:131.878686px;}
.y1a_c03138{bottom:146.998362px;}
.y1d_c03138{bottom:186.600234px;}
.y1c_c03138{bottom:196.320450px;}
.y19_c03138{bottom:275.878542px;}
.y18_c03138{bottom:356.878758px;}
.y16_c03138{bottom:406.559730px;}
.y12_c03138{bottom:424.560306px;}
.y17_c03138{bottom:458.759262px;}
.y15_c03138{bottom:491.879514px;}
.y14_c03138{bottom:509.880090px;}
.y11_c03138{bottom:543.000342px;}
.y13_c03138{bottom:559.559874px;}
.y10_c03138{bottom:577.560450px;}
.y1e_c03138{bottom:614.280450px;}
.yc_c03138{bottom:652.438650px;}
.yb_c03138{bottom:667.558326px;}
.ye_c03138{bottom:707.160234px;}
.yd_c03138{bottom:716.880450px;}
.ya_c03138{bottom:796.438506px;}
.y9_c03138{bottom:877.438722px;}
.y7_c03138{bottom:926.759730px;}
.y3_c03138{bottom:944.760306px;}
.y8_c03138{bottom:979.319226px;}
.y6_c03138{bottom:1012.439478px;}
.y5_c03138{bottom:1030.440054px;}
.y2_c03138{bottom:1063.560306px;}
.y4_c03138{bottom:1079.759874px;}
.y1_c03138{bottom:1097.760450px;}
.yf_c03138{bottom:1134.840450px;}
.h3_c03138{height:32.530781px;}
.h1_c03138{height:41.696016px;}
.h2_c03138{height:41.812031px;}
.h4_c03138{height:54.654737px;}
.h0_c03138{height:1263.000000px;}
.w1_c03138{width:892.500000px;}
.w0_c03138{width:892.830000px;}
.x0_c03138{left:0.000000px;}
.xe_c03138{left:117.000000px;}
.x8_c03138{left:441.001044px;}
.x4_c03138{left:445.680576px;}
.xc_c03138{left:451.080000px;}
.x7_c03138{left:455.400792px;}
.x5_c03138{left:461.880144px;}
.x1_c03138{left:463.320000px;}
.xa_c03138{left:483.481548px;}
.x9_c03138{left:492.120684px;}
.x6_c03138{left:493.200576px;}
.xd_c03138{left:506.880360px;}
.x3_c03138{left:511.919892px;}
.x2_c03138{left:526.679604px;}
.xb_c03138{left:569.881224px;}
@media print{
.v0_c03138{vertical-align:0.000000pt;}
.v1_c03138{vertical-align:1.279488pt;}
.lsd_c03138{letter-spacing:-0.751872pt;}
.ls15_c03138{letter-spacing:-0.713856pt;}
.ls14_c03138{letter-spacing:-0.650496pt;}
.ls8_c03138{letter-spacing:-0.511104pt;}
.lsf_c03138{letter-spacing:-0.244992pt;}
.lse_c03138{letter-spacing:-0.236544pt;}
.lsb_c03138{letter-spacing:-0.232320pt;}
.ls5_c03138{letter-spacing:-0.215424pt;}
.ls3_c03138{letter-spacing:-0.105600pt;}
.ls12_c03138{letter-spacing:0.000000pt;}
.ls0_c03138{letter-spacing:0.005376pt;}
.ls4_c03138{letter-spacing:0.114048pt;}
.ls6_c03138{letter-spacing:0.164736pt;}
.ls13_c03138{letter-spacing:0.215424pt;}
.lsa_c03138{letter-spacing:0.451968pt;}
.ls11_c03138{letter-spacing:0.456960pt;}
.lsc_c03138{letter-spacing:0.477312pt;}
.ls9_c03138{letter-spacing:0.515328pt;}
.ls10_c03138{letter-spacing:0.528000pt;}
.ls7_c03138{letter-spacing:0.532224pt;}
.ls2_c03138{letter-spacing:0.544896pt;}
.ls1_c03138{letter-spacing:0.637824pt;}
.wsb_c03138{word-spacing:-13.445376pt;}
.ws9_c03138{word-spacing:-11.088000pt;}
.ws5_c03138{word-spacing:-11.075328pt;}
.ws6_c03138{word-spacing:-11.011968pt;}
.ws4_c03138{word-spacing:-10.048896pt;}
.ws17_c03138{word-spacing:-0.958848pt;}
.wsf_c03138{word-spacing:-0.865920pt;}
.ws16_c03138{word-spacing:-0.639744pt;}
.ws12_c03138{word-spacing:-0.485760pt;}
.ws11_c03138{word-spacing:-0.105600pt;}
.ws13_c03138{word-spacing:-0.088704pt;}
.ws14_c03138{word-spacing:-0.084480pt;}
.ws15_c03138{word-spacing:-0.076032pt;}
.ws10_c03138{word-spacing:0.000000pt;}
.ws18_c03138{word-spacing:0.392832pt;}
.ws3_c03138{word-spacing:5.871360pt;}
.wse_c03138{word-spacing:9.301248pt;}
.ws8_c03138{word-spacing:15.717504pt;}
.wsa_c03138{word-spacing:29.600256pt;}
.ws7_c03138{word-spacing:30.966144pt;}
.ws1_c03138{word-spacing:33.563904pt;}
.ws0_c03138{word-spacing:33.796224pt;}
.ws2_c03138{word-spacing:34.860672pt;}
.wsc_c03138{word-spacing:35.468928pt;}
.wsd_c03138{word-spacing:37.357056pt;}
._0_c03138{margin-left:-1.731840pt;}
._2_c03138{width:1.317888pt;}
._9_c03138{width:20.655360pt;}
._7_c03138{width:22.108416pt;}
._8_c03138{width:25.872000pt;}
._4_c03138{width:27.358848pt;}
._6_c03138{width:30.514176pt;}
._5_c03138{width:35.435136pt;}
._1_c03138{width:44.668800pt;}
._3_c03138{width:45.805056pt;}
.fs0_c03138{font-size:42.240000pt;}
.fs1_c03138{font-size:53.760000pt;}
.y0_c03138{bottom:0.000000pt;}
.y1b_c03138{bottom:117.225499pt;}
.y1a_c03138{bottom:130.665211pt;}
.y1d_c03138{bottom:165.866875pt;}
.y1c_c03138{bottom:174.507067pt;}
.y19_c03138{bottom:245.225371pt;}
.y18_c03138{bottom:317.225563pt;}
.y16_c03138{bottom:361.386427pt;}
.y12_c03138{bottom:377.386939pt;}
.y17_c03138{bottom:407.786011pt;}
.y15_c03138{bottom:437.226235pt;}
.y14_c03138{bottom:453.226747pt;}
.y11_c03138{bottom:482.666971pt;}
.y13_c03138{bottom:497.386555pt;}
.y10_c03138{bottom:513.387067pt;}
.y1e_c03138{bottom:546.027067pt;}
.yc_c03138{bottom:579.945467pt;}
.yb_c03138{bottom:593.385179pt;}
.ye_c03138{bottom:628.586875pt;}
.yd_c03138{bottom:637.227067pt;}
.ya_c03138{bottom:707.945339pt;}
.y9_c03138{bottom:779.945531pt;}
.y7_c03138{bottom:823.786427pt;}
.y3_c03138{bottom:839.786939pt;}
.y8_c03138{bottom:870.505979pt;}
.y6_c03138{bottom:899.946203pt;}
.y5_c03138{bottom:915.946715pt;}
.y2_c03138{bottom:945.386939pt;}
.y4_c03138{bottom:959.786555pt;}
.y1_c03138{bottom:975.787067pt;}
.yf_c03138{bottom:1008.747067pt;}
.h3_c03138{height:28.916250pt;}
.h1_c03138{height:37.063125pt;}
.h2_c03138{height:37.166250pt;}
.h4_c03138{height:48.581988pt;}
.h0_c03138{height:1122.666667pt;}
.w1_c03138{width:793.333333pt;}
.w0_c03138{width:793.626667pt;}
.x0_c03138{left:0.000000pt;}
.xe_c03138{left:104.000000pt;}
.x8_c03138{left:392.000928pt;}
.x4_c03138{left:396.160512pt;}
.xc_c03138{left:400.960000pt;}
.x7_c03138{left:404.800704pt;}
.x5_c03138{left:410.560128pt;}
.x1_c03138{left:411.840000pt;}
.xa_c03138{left:429.761376pt;}
.x9_c03138{left:437.440608pt;}
.x6_c03138{left:438.400512pt;}
.xd_c03138{left:450.560320pt;}
.x3_c03138{left:455.039904pt;}
.x2_c03138{left:468.159648pt;}
.xb_c03138{left:506.561088pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03139 {
    display:none;
  }
  .loading-indicator_c03139.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03139 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03139 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03139" -> "#page-container .classname_c03139")
 */
.pf_c03139 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03139 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03139.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03139 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03139 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03139 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03139 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03139 {overflow:visible;}
  }
}
.c_c03139 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03139 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03139:after { /* webkit #35443 */
  content: '';
}
.t_c03139:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03139 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03139 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03139 { /* info for Javascript */
  display:none;
}
.l_c03139 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03139 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03139 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03139:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03139 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03139.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03139.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03139 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03139{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03139;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03139{font-family:ff1_c03139;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03139;src:url('chunks/assets/font_ca679a18221630ac3e986cb1.woff2')format("woff");}.ff2_c03139{font-family:ff2_c03139;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03139;src:url('chunks/assets/font_e67b8611903ded29730be2a5.woff2')format("woff");}.ff3_c03139{font-family:ff3_c03139;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03139{vertical-align:0.000000px;}
.v1_c03139{vertical-align:1.439424px;}
.lse_c03139{letter-spacing:-0.826848px;}
.ls14_c03139{letter-spacing:-0.788832px;}
.lsf_c03139{letter-spacing:-0.717552px;}
.ls8_c03139{letter-spacing:-0.574992px;}
.ls10_c03139{letter-spacing:-0.275616px;}
.lsc_c03139{letter-spacing:-0.261360px;}
.ls5_c03139{letter-spacing:-0.242352px;}
.ls15_c03139{letter-spacing:-0.223344px;}
.ls3_c03139{letter-spacing:-0.118800px;}
.ls13_c03139{letter-spacing:0.000000px;}
.ls1_c03139{letter-spacing:0.006048px;}
.ls4_c03139{letter-spacing:0.128304px;}
.ls6_c03139{letter-spacing:0.185328px;}
.lsb_c03139{letter-spacing:0.242352px;}
.lsa_c03139{letter-spacing:0.508464px;}
.ls12_c03139{letter-spacing:0.514080px;}
.lsd_c03139{letter-spacing:0.536976px;}
.ls9_c03139{letter-spacing:0.579744px;}
.ls11_c03139{letter-spacing:0.594000px;}
.ls7_c03139{letter-spacing:0.598752px;}
.ls2_c03139{letter-spacing:0.613008px;}
.ls0_c03139{letter-spacing:0.717552px;}
.sc__c03139{text-shadow:none;}
.sc0_c03139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03139{-webkit-text-stroke:0px transparent;}
.sc0_c03139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03139{word-spacing:-15.126048px;}
.ws9_c03139{word-spacing:-12.474000px;}
.ws5_c03139{word-spacing:-12.459744px;}
.ws11_c03139{word-spacing:-1.078704px;}
.wsd_c03139{word-spacing:-0.974160px;}
.ws15_c03139{word-spacing:-0.719712px;}
.ws10_c03139{word-spacing:-0.546480px;}
.ws16_c03139{word-spacing:-0.137808px;}
.wsf_c03139{word-spacing:-0.118800px;}
.ws12_c03139{word-spacing:-0.099792px;}
.ws14_c03139{word-spacing:-0.085536px;}
.wse_c03139{word-spacing:0.000000px;}
.ws13_c03139{word-spacing:0.356400px;}
.wsc_c03139{word-spacing:4.604688px;}
.ws3_c03139{word-spacing:6.605280px;}
.ws8_c03139{word-spacing:7.560432px;}
.wsa_c03139{word-spacing:33.300288px;}
.ws7_c03139{word-spacing:34.836912px;}
.ws1_c03139{word-spacing:37.759392px;}
.ws0_c03139{word-spacing:38.020752px;}
.ws2_c03139{word-spacing:39.218256px;}
.ws4_c03139{word-spacing:39.902544px;}
.ws6_c03139{word-spacing:42.026688px;}
._0_c03139{margin-left:-1.948320px;}
._2_c03139{width:1.482624px;}
._6_c03139{width:17.739216px;}
._4_c03139{width:21.407760px;}
._5_c03139{width:28.203120px;}
._1_c03139{width:50.252400px;}
._3_c03139{width:51.530688px;}
.fc0_c03139{color:rgb(0,0,0);}
.fs0_c03139{font-size:47.520000px;}
.fs1_c03139{font-size:60.480000px;}
.y0_c03139{bottom:0.000000px;}
.y1b_c03139{bottom:131.878686px;}
.y1a_c03139{bottom:146.998362px;}
.y1d_c03139{bottom:186.600234px;}
.y1c_c03139{bottom:196.320450px;}
.y19_c03139{bottom:275.878542px;}
.y18_c03139{bottom:356.878758px;}
.y16_c03139{bottom:406.559730px;}
.y12_c03139{bottom:424.560306px;}
.y17_c03139{bottom:458.759262px;}
.y15_c03139{bottom:491.879514px;}
.y14_c03139{bottom:509.880090px;}
.y11_c03139{bottom:543.000342px;}
.y13_c03139{bottom:559.559874px;}
.y10_c03139{bottom:577.560450px;}
.y1e_c03139{bottom:614.280450px;}
.yc_c03139{bottom:652.438650px;}
.yb_c03139{bottom:667.558326px;}
.ye_c03139{bottom:707.160234px;}
.yd_c03139{bottom:716.880450px;}
.ya_c03139{bottom:796.438506px;}
.y9_c03139{bottom:877.438722px;}
.y7_c03139{bottom:926.759730px;}
.y3_c03139{bottom:944.760306px;}
.y8_c03139{bottom:979.319226px;}
.y6_c03139{bottom:1012.439478px;}
.y5_c03139{bottom:1030.440054px;}
.y2_c03139{bottom:1063.560306px;}
.y4_c03139{bottom:1079.759874px;}
.y1_c03139{bottom:1097.760450px;}
.yf_c03139{bottom:1134.840450px;}
.h3_c03139{height:32.530781px;}
.h1_c03139{height:41.696016px;}
.h2_c03139{height:41.812031px;}
.h4_c03139{height:54.654737px;}
.h0_c03139{height:1263.000000px;}
.w1_c03139{width:892.500000px;}
.w0_c03139{width:892.830000px;}
.x0_c03139{left:0.000000px;}
.xe_c03139{left:117.000000px;}
.x8_c03139{left:440.999856px;}
.x4_c03139{left:445.680576px;}
.xc_c03139{left:451.080000px;}
.x7_c03139{left:455.399604px;}
.x5_c03139{left:461.880144px;}
.x1_c03139{left:463.320000px;}
.xa_c03139{left:483.480360px;}
.x9_c03139{left:492.119496px;}
.x6_c03139{left:493.200576px;}
.xd_c03139{left:506.880360px;}
.x3_c03139{left:511.919892px;}
.x2_c03139{left:526.679604px;}
.xb_c03139{left:569.880036px;}
@media print{
.v0_c03139{vertical-align:0.000000pt;}
.v1_c03139{vertical-align:1.279488pt;}
.lse_c03139{letter-spacing:-0.734976pt;}
.ls14_c03139{letter-spacing:-0.701184pt;}
.lsf_c03139{letter-spacing:-0.637824pt;}
.ls8_c03139{letter-spacing:-0.511104pt;}
.ls10_c03139{letter-spacing:-0.244992pt;}
.lsc_c03139{letter-spacing:-0.232320pt;}
.ls5_c03139{letter-spacing:-0.215424pt;}
.ls15_c03139{letter-spacing:-0.198528pt;}
.ls3_c03139{letter-spacing:-0.105600pt;}
.ls13_c03139{letter-spacing:0.000000pt;}
.ls1_c03139{letter-spacing:0.005376pt;}
.ls4_c03139{letter-spacing:0.114048pt;}
.ls6_c03139{letter-spacing:0.164736pt;}
.lsb_c03139{letter-spacing:0.215424pt;}
.lsa_c03139{letter-spacing:0.451968pt;}
.ls12_c03139{letter-spacing:0.456960pt;}
.lsd_c03139{letter-spacing:0.477312pt;}
.ls9_c03139{letter-spacing:0.515328pt;}
.ls11_c03139{letter-spacing:0.528000pt;}
.ls7_c03139{letter-spacing:0.532224pt;}
.ls2_c03139{letter-spacing:0.544896pt;}
.ls0_c03139{letter-spacing:0.637824pt;}
.wsb_c03139{word-spacing:-13.445376pt;}
.ws9_c03139{word-spacing:-11.088000pt;}
.ws5_c03139{word-spacing:-11.075328pt;}
.ws11_c03139{word-spacing:-0.958848pt;}
.wsd_c03139{word-spacing:-0.865920pt;}
.ws15_c03139{word-spacing:-0.639744pt;}
.ws10_c03139{word-spacing:-0.485760pt;}
.ws16_c03139{word-spacing:-0.122496pt;}
.wsf_c03139{word-spacing:-0.105600pt;}
.ws12_c03139{word-spacing:-0.088704pt;}
.ws14_c03139{word-spacing:-0.076032pt;}
.wse_c03139{word-spacing:0.000000pt;}
.ws13_c03139{word-spacing:0.316800pt;}
.wsc_c03139{word-spacing:4.093056pt;}
.ws3_c03139{word-spacing:5.871360pt;}
.ws8_c03139{word-spacing:6.720384pt;}
.wsa_c03139{word-spacing:29.600256pt;}
.ws7_c03139{word-spacing:30.966144pt;}
.ws1_c03139{word-spacing:33.563904pt;}
.ws0_c03139{word-spacing:33.796224pt;}
.ws2_c03139{word-spacing:34.860672pt;}
.ws4_c03139{word-spacing:35.468928pt;}
.ws6_c03139{word-spacing:37.357056pt;}
._0_c03139{margin-left:-1.731840pt;}
._2_c03139{width:1.317888pt;}
._6_c03139{width:15.768192pt;}
._4_c03139{width:19.029120pt;}
._5_c03139{width:25.069440pt;}
._1_c03139{width:44.668800pt;}
._3_c03139{width:45.805056pt;}
.fs0_c03139{font-size:42.240000pt;}
.fs1_c03139{font-size:53.760000pt;}
.y0_c03139{bottom:0.000000pt;}
.y1b_c03139{bottom:117.225499pt;}
.y1a_c03139{bottom:130.665211pt;}
.y1d_c03139{bottom:165.866875pt;}
.y1c_c03139{bottom:174.507067pt;}
.y19_c03139{bottom:245.225371pt;}
.y18_c03139{bottom:317.225563pt;}
.y16_c03139{bottom:361.386427pt;}
.y12_c03139{bottom:377.386939pt;}
.y17_c03139{bottom:407.786011pt;}
.y15_c03139{bottom:437.226235pt;}
.y14_c03139{bottom:453.226747pt;}
.y11_c03139{bottom:482.666971pt;}
.y13_c03139{bottom:497.386555pt;}
.y10_c03139{bottom:513.387067pt;}
.y1e_c03139{bottom:546.027067pt;}
.yc_c03139{bottom:579.945467pt;}
.yb_c03139{bottom:593.385179pt;}
.ye_c03139{bottom:628.586875pt;}
.yd_c03139{bottom:637.227067pt;}
.ya_c03139{bottom:707.945339pt;}
.y9_c03139{bottom:779.945531pt;}
.y7_c03139{bottom:823.786427pt;}
.y3_c03139{bottom:839.786939pt;}
.y8_c03139{bottom:870.505979pt;}
.y6_c03139{bottom:899.946203pt;}
.y5_c03139{bottom:915.946715pt;}
.y2_c03139{bottom:945.386939pt;}
.y4_c03139{bottom:959.786555pt;}
.y1_c03139{bottom:975.787067pt;}
.yf_c03139{bottom:1008.747067pt;}
.h3_c03139{height:28.916250pt;}
.h1_c03139{height:37.063125pt;}
.h2_c03139{height:37.166250pt;}
.h4_c03139{height:48.581988pt;}
.h0_c03139{height:1122.666667pt;}
.w1_c03139{width:793.333333pt;}
.w0_c03139{width:793.626667pt;}
.x0_c03139{left:0.000000pt;}
.xe_c03139{left:104.000000pt;}
.x8_c03139{left:391.999872pt;}
.x4_c03139{left:396.160512pt;}
.xc_c03139{left:400.960000pt;}
.x7_c03139{left:404.799648pt;}
.x5_c03139{left:410.560128pt;}
.x1_c03139{left:411.840000pt;}
.xa_c03139{left:429.760320pt;}
.x9_c03139{left:437.439552pt;}
.x6_c03139{left:438.400512pt;}
.xd_c03139{left:450.560320pt;}
.x3_c03139{left:455.039904pt;}
.x2_c03139{left:468.159648pt;}
.xb_c03139{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03140 {
    display:none;
  }
  .loading-indicator_c03140.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03140 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03140 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03140" -> "#page-container .classname_c03140")
 */
.pf_c03140 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03140 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03140.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03140 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03140 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03140 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03140 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03140 {overflow:visible;}
  }
}
.c_c03140 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03140 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03140:after { /* webkit #35443 */
  content: '';
}
.t_c03140:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03140 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03140 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03140 { /* info for Javascript */
  display:none;
}
.l_c03140 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03140 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03140 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03140:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03140 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03140.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03140.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03140 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03140{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03140;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03140{font-family:ff1_c03140;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03140;src:url('chunks/assets/font_141794ef8ac88d18d9c0fd36.woff2')format("woff");}.ff2_c03140{font-family:ff2_c03140;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03140;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03140{font-family:ff3_c03140;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03140{vertical-align:0.000000px;}
.v2_c03140{vertical-align:1.439424px;}
.v1_c03140{vertical-align:33.121440px;}
.lsd_c03140{letter-spacing:-0.793584px;}
.lsb_c03140{letter-spacing:-0.722304px;}
.ls7_c03140{letter-spacing:-0.613008px;}
.ls9_c03140{letter-spacing:-0.574992px;}
.ls11_c03140{letter-spacing:-0.275616px;}
.lsf_c03140{letter-spacing:-0.261360px;}
.ls6_c03140{letter-spacing:-0.242352px;}
.lse_c03140{letter-spacing:-0.237600px;}
.ls4_c03140{letter-spacing:-0.118800px;}
.ls15_c03140{letter-spacing:0.000000px;}
.ls1_c03140{letter-spacing:0.006048px;}
.ls5_c03140{letter-spacing:0.128304px;}
.ls13_c03140{letter-spacing:0.166320px;}
.lsc_c03140{letter-spacing:0.508464px;}
.ls14_c03140{letter-spacing:0.514080px;}
.ls10_c03140{letter-spacing:0.536976px;}
.lsa_c03140{letter-spacing:0.579744px;}
.ls12_c03140{letter-spacing:0.594000px;}
.ls8_c03140{letter-spacing:0.598752px;}
.ls3_c03140{letter-spacing:0.613008px;}
.ls2_c03140{letter-spacing:0.717552px;}
.ls0_c03140{letter-spacing:0.722304px;}
.sc__c03140{text-shadow:none;}
.sc0_c03140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03140{-webkit-text-stroke:0px transparent;}
.sc0_c03140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03140{word-spacing:-15.126048px;}
.wsf_c03140{word-spacing:-12.474000px;}
.wse_c03140{word-spacing:-12.459744px;}
.wsa_c03140{word-spacing:-12.416976px;}
.ws4_c03140{word-spacing:-11.637648px;}
.ws2_c03140{word-spacing:-11.266992px;}
.ws13_c03140{word-spacing:-1.083456px;}
.ws1a_c03140{word-spacing:-1.078704px;}
.ws10_c03140{word-spacing:-0.974160px;}
.ws19_c03140{word-spacing:-0.719712px;}
.ws18_c03140{word-spacing:-0.527472px;}
.ws12_c03140{word-spacing:-0.118800px;}
.ws16_c03140{word-spacing:-0.099792px;}
.ws17_c03140{word-spacing:-0.085536px;}
.ws11_c03140{word-spacing:0.000000px;}
.ws14_c03140{word-spacing:0.361152px;}
.ws15_c03140{word-spacing:0.432432px;}
.ws9_c03140{word-spacing:6.381936px;}
.wsb_c03140{word-spacing:30.298752px;}
.wsc_c03140{word-spacing:33.300288px;}
.ws8_c03140{word-spacing:36.143712px;}
.ws6_c03140{word-spacing:36.742464px;}
.ws1_c03140{word-spacing:37.759392px;}
.ws0_c03140{word-spacing:38.020752px;}
.ws3_c03140{word-spacing:39.218256px;}
.ws5_c03140{word-spacing:39.902544px;}
.ws7_c03140{word-spacing:42.026688px;}
._0_c03140{margin-left:-1.948320px;}
._2_c03140{width:1.482624px;}
._4_c03140{width:3.302640px;}
._7_c03140{width:15.263424px;}
._5_c03140{width:20.885040px;}
._6_c03140{width:22.206096px;}
._1_c03140{width:50.252400px;}
._3_c03140{width:51.530688px;}
.fc0_c03140{color:rgb(0,0,0);}
.fs0_c03140{font-size:47.520000px;}
.fs1_c03140{font-size:60.480000px;}
.y0_c03140{bottom:0.000000px;}
.y1a_c03140{bottom:146.998362px;}
.y1c_c03140{bottom:186.600234px;}
.y1b_c03140{bottom:196.320450px;}
.y19_c03140{bottom:275.878542px;}
.y18_c03140{bottom:356.878758px;}
.y16_c03140{bottom:406.559730px;}
.y12_c03140{bottom:424.560306px;}
.y17_c03140{bottom:458.759262px;}
.y15_c03140{bottom:491.879514px;}
.y14_c03140{bottom:509.880090px;}
.y11_c03140{bottom:543.000342px;}
.y13_c03140{bottom:559.559874px;}
.y10_c03140{bottom:577.560450px;}
.y1d_c03140{bottom:614.280450px;}
.yc_c03140{bottom:667.559514px;}
.ye_c03140{bottom:707.160234px;}
.yd_c03140{bottom:716.880450px;}
.yb_c03140{bottom:796.439694px;}
.ya_c03140{bottom:862.319046px;}
.y9_c03140{bottom:877.438722px;}
.y7_c03140{bottom:926.759730px;}
.y3_c03140{bottom:944.760306px;}
.y8_c03140{bottom:979.319226px;}
.y6_c03140{bottom:1012.439478px;}
.y5_c03140{bottom:1030.440054px;}
.y2_c03140{bottom:1063.560306px;}
.y4_c03140{bottom:1079.759874px;}
.y1_c03140{bottom:1097.760450px;}
.yf_c03140{bottom:1134.840450px;}
.h3_c03140{height:32.530781px;}
.h1_c03140{height:41.696016px;}
.h2_c03140{height:41.812031px;}
.h5_c03140{height:54.654737px;}
.h4_c03140{height:74.817456px;}
.h0_c03140{height:1263.000000px;}
.w1_c03140{width:892.500000px;}
.w0_c03140{width:892.830000px;}
.x0_c03140{left:0.000000px;}
.xe_c03140{left:117.000000px;}
.x8_c03140{left:440.999856px;}
.x4_c03140{left:445.680576px;}
.xc_c03140{left:451.080000px;}
.x7_c03140{left:455.399604px;}
.x5_c03140{left:461.880144px;}
.x1_c03140{left:463.320000px;}
.xb_c03140{left:483.480360px;}
.x9_c03140{left:492.119496px;}
.x6_c03140{left:493.200576px;}
.xd_c03140{left:506.880360px;}
.x3_c03140{left:511.919892px;}
.x2_c03140{left:526.679604px;}
.xa_c03140{left:569.880036px;}
@media print{
.v0_c03140{vertical-align:0.000000pt;}
.v2_c03140{vertical-align:1.279488pt;}
.v1_c03140{vertical-align:29.441280pt;}
.lsd_c03140{letter-spacing:-0.705408pt;}
.lsb_c03140{letter-spacing:-0.642048pt;}
.ls7_c03140{letter-spacing:-0.544896pt;}
.ls9_c03140{letter-spacing:-0.511104pt;}
.ls11_c03140{letter-spacing:-0.244992pt;}
.lsf_c03140{letter-spacing:-0.232320pt;}
.ls6_c03140{letter-spacing:-0.215424pt;}
.lse_c03140{letter-spacing:-0.211200pt;}
.ls4_c03140{letter-spacing:-0.105600pt;}
.ls15_c03140{letter-spacing:0.000000pt;}
.ls1_c03140{letter-spacing:0.005376pt;}
.ls5_c03140{letter-spacing:0.114048pt;}
.ls13_c03140{letter-spacing:0.147840pt;}
.lsc_c03140{letter-spacing:0.451968pt;}
.ls14_c03140{letter-spacing:0.456960pt;}
.ls10_c03140{letter-spacing:0.477312pt;}
.lsa_c03140{letter-spacing:0.515328pt;}
.ls12_c03140{letter-spacing:0.528000pt;}
.ls8_c03140{letter-spacing:0.532224pt;}
.ls3_c03140{letter-spacing:0.544896pt;}
.ls2_c03140{letter-spacing:0.637824pt;}
.ls0_c03140{letter-spacing:0.642048pt;}
.wsd_c03140{word-spacing:-13.445376pt;}
.wsf_c03140{word-spacing:-11.088000pt;}
.wse_c03140{word-spacing:-11.075328pt;}
.wsa_c03140{word-spacing:-11.037312pt;}
.ws4_c03140{word-spacing:-10.344576pt;}
.ws2_c03140{word-spacing:-10.015104pt;}
.ws13_c03140{word-spacing:-0.963072pt;}
.ws1a_c03140{word-spacing:-0.958848pt;}
.ws10_c03140{word-spacing:-0.865920pt;}
.ws19_c03140{word-spacing:-0.639744pt;}
.ws18_c03140{word-spacing:-0.468864pt;}
.ws12_c03140{word-spacing:-0.105600pt;}
.ws16_c03140{word-spacing:-0.088704pt;}
.ws17_c03140{word-spacing:-0.076032pt;}
.ws11_c03140{word-spacing:0.000000pt;}
.ws14_c03140{word-spacing:0.321024pt;}
.ws15_c03140{word-spacing:0.384384pt;}
.ws9_c03140{word-spacing:5.672832pt;}
.wsb_c03140{word-spacing:26.932224pt;}
.wsc_c03140{word-spacing:29.600256pt;}
.ws8_c03140{word-spacing:32.127744pt;}
.ws6_c03140{word-spacing:32.659968pt;}
.ws1_c03140{word-spacing:33.563904pt;}
.ws0_c03140{word-spacing:33.796224pt;}
.ws3_c03140{word-spacing:34.860672pt;}
.ws5_c03140{word-spacing:35.468928pt;}
.ws7_c03140{word-spacing:37.357056pt;}
._0_c03140{margin-left:-1.731840pt;}
._2_c03140{width:1.317888pt;}
._4_c03140{width:2.935680pt;}
._7_c03140{width:13.567488pt;}
._5_c03140{width:18.564480pt;}
._6_c03140{width:19.738752pt;}
._1_c03140{width:44.668800pt;}
._3_c03140{width:45.805056pt;}
.fs0_c03140{font-size:42.240000pt;}
.fs1_c03140{font-size:53.760000pt;}
.y0_c03140{bottom:0.000000pt;}
.y1a_c03140{bottom:130.665211pt;}
.y1c_c03140{bottom:165.866875pt;}
.y1b_c03140{bottom:174.507067pt;}
.y19_c03140{bottom:245.225371pt;}
.y18_c03140{bottom:317.225563pt;}
.y16_c03140{bottom:361.386427pt;}
.y12_c03140{bottom:377.386939pt;}
.y17_c03140{bottom:407.786011pt;}
.y15_c03140{bottom:437.226235pt;}
.y14_c03140{bottom:453.226747pt;}
.y11_c03140{bottom:482.666971pt;}
.y13_c03140{bottom:497.386555pt;}
.y10_c03140{bottom:513.387067pt;}
.y1d_c03140{bottom:546.027067pt;}
.yc_c03140{bottom:593.386235pt;}
.ye_c03140{bottom:628.586875pt;}
.yd_c03140{bottom:637.227067pt;}
.yb_c03140{bottom:707.946395pt;}
.ya_c03140{bottom:766.505819pt;}
.y9_c03140{bottom:779.945531pt;}
.y7_c03140{bottom:823.786427pt;}
.y3_c03140{bottom:839.786939pt;}
.y8_c03140{bottom:870.505979pt;}
.y6_c03140{bottom:899.946203pt;}
.y5_c03140{bottom:915.946715pt;}
.y2_c03140{bottom:945.386939pt;}
.y4_c03140{bottom:959.786555pt;}
.y1_c03140{bottom:975.787067pt;}
.yf_c03140{bottom:1008.747067pt;}
.h3_c03140{height:28.916250pt;}
.h1_c03140{height:37.063125pt;}
.h2_c03140{height:37.166250pt;}
.h5_c03140{height:48.581988pt;}
.h4_c03140{height:66.504405pt;}
.h0_c03140{height:1122.666667pt;}
.w1_c03140{width:793.333333pt;}
.w0_c03140{width:793.626667pt;}
.x0_c03140{left:0.000000pt;}
.xe_c03140{left:104.000000pt;}
.x8_c03140{left:391.999872pt;}
.x4_c03140{left:396.160512pt;}
.xc_c03140{left:400.960000pt;}
.x7_c03140{left:404.799648pt;}
.x5_c03140{left:410.560128pt;}
.x1_c03140{left:411.840000pt;}
.xb_c03140{left:429.760320pt;}
.x9_c03140{left:437.439552pt;}
.x6_c03140{left:438.400512pt;}
.xd_c03140{left:450.560320pt;}
.x3_c03140{left:455.039904pt;}
.x2_c03140{left:468.159648pt;}
.xa_c03140{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03141 {
    display:none;
  }
  .loading-indicator_c03141.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03141 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03141 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03141" -> "#page-container .classname_c03141")
 */
.pf_c03141 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03141 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03141.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03141 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03141 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03141 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03141 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03141 {overflow:visible;}
  }
}
.c_c03141 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03141 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03141:after { /* webkit #35443 */
  content: '';
}
.t_c03141:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03141 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03141 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03141 { /* info for Javascript */
  display:none;
}
.l_c03141 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03141 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03141 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03141:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03141 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03141.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03141.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03141 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03141{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03141;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03141{font-family:ff1_c03141;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03141;src:url('chunks/assets/font_71fe46ea5d9a703002da7acd.woff2')format("woff");}.ff2_c03141{font-family:ff2_c03141;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03141;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03141{font-family:ff3_c03141;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03141{vertical-align:0.000000px;}
.v1_c03141{vertical-align:1.439424px;}
.ls10_c03141{letter-spacing:-1.197504px;}
.lsd_c03141{letter-spacing:-0.793584px;}
.lsb_c03141{letter-spacing:-0.722304px;}
.ls7_c03141{letter-spacing:-0.613008px;}
.ls9_c03141{letter-spacing:-0.574992px;}
.ls12_c03141{letter-spacing:-0.275616px;}
.lsf_c03141{letter-spacing:-0.261360px;}
.ls6_c03141{letter-spacing:-0.242352px;}
.ls4_c03141{letter-spacing:-0.118800px;}
.ls15_c03141{letter-spacing:0.000000px;}
.ls2_c03141{letter-spacing:0.006048px;}
.ls5_c03141{letter-spacing:0.128304px;}
.lse_c03141{letter-spacing:0.242352px;}
.lsc_c03141{letter-spacing:0.508464px;}
.ls14_c03141{letter-spacing:0.514080px;}
.ls11_c03141{letter-spacing:0.536976px;}
.lsa_c03141{letter-spacing:0.579744px;}
.ls13_c03141{letter-spacing:0.594000px;}
.ls8_c03141{letter-spacing:0.598752px;}
.ls3_c03141{letter-spacing:0.613008px;}
.ls1_c03141{letter-spacing:0.717552px;}
.ls0_c03141{letter-spacing:0.722304px;}
.sc__c03141{text-shadow:none;}
.sc0_c03141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03141{-webkit-text-stroke:0px transparent;}
.sc0_c03141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03141{word-spacing:-15.126048px;}
.wsb_c03141{word-spacing:-12.474000px;}
.wse_c03141{word-spacing:-12.459744px;}
.wsa_c03141{word-spacing:-12.416976px;}
.ws4_c03141{word-spacing:-11.637648px;}
.ws2_c03141{word-spacing:-11.266992px;}
.ws12_c03141{word-spacing:-1.083456px;}
.ws17_c03141{word-spacing:-1.078704px;}
.wsf_c03141{word-spacing:-0.974160px;}
.ws19_c03141{word-spacing:-0.719712px;}
.ws15_c03141{word-spacing:-0.603504px;}
.ws11_c03141{word-spacing:-0.118800px;}
.ws16_c03141{word-spacing:-0.099792px;}
.ws18_c03141{word-spacing:-0.085536px;}
.ws10_c03141{word-spacing:0.000000px;}
.ws13_c03141{word-spacing:0.361152px;}
.ws14_c03141{word-spacing:0.432432px;}
.ws1a_c03141{word-spacing:0.836352px;}
.ws9_c03141{word-spacing:13.196304px;}
.wsc_c03141{word-spacing:33.300288px;}
.ws8_c03141{word-spacing:36.143712px;}
.ws6_c03141{word-spacing:36.742464px;}
.ws1_c03141{word-spacing:37.759392px;}
.ws0_c03141{word-spacing:38.020752px;}
.ws3_c03141{word-spacing:39.218256px;}
.ws5_c03141{word-spacing:39.902544px;}
.ws7_c03141{word-spacing:42.026688px;}
._0_c03141{margin-left:-1.948320px;}
._2_c03141{width:1.482624px;}
._4_c03141{width:3.302640px;}
._7_c03141{width:20.637936px;}
._6_c03141{width:21.759408px;}
._8_c03141{width:26.592192px;}
._5_c03141{width:28.255392px;}
._1_c03141{width:50.252400px;}
._3_c03141{width:51.530688px;}
.fc0_c03141{color:rgb(0,0,0);}
.fs0_c03141{font-size:47.520000px;}
.fs1_c03141{font-size:60.480000px;}
.y0_c03141{bottom:0.000000px;}
.y1a_c03141{bottom:146.998362px;}
.y1c_c03141{bottom:186.600234px;}
.y1b_c03141{bottom:196.320450px;}
.y19_c03141{bottom:275.878542px;}
.y18_c03141{bottom:356.878758px;}
.y16_c03141{bottom:406.559730px;}
.y12_c03141{bottom:424.560306px;}
.y17_c03141{bottom:458.759262px;}
.y15_c03141{bottom:491.879514px;}
.y14_c03141{bottom:509.880090px;}
.y11_c03141{bottom:543.000342px;}
.y13_c03141{bottom:559.559874px;}
.y10_c03141{bottom:577.560450px;}
.y1d_c03141{bottom:614.280450px;}
.yc_c03141{bottom:667.558326px;}
.ye_c03141{bottom:707.160234px;}
.yd_c03141{bottom:716.880450px;}
.yb_c03141{bottom:781.318830px;}
.ya_c03141{bottom:796.438506px;}
.y9_c03141{bottom:877.438722px;}
.y7_c03141{bottom:926.759730px;}
.y3_c03141{bottom:944.760306px;}
.y8_c03141{bottom:979.319226px;}
.y6_c03141{bottom:1012.439478px;}
.y5_c03141{bottom:1030.440054px;}
.y2_c03141{bottom:1063.560306px;}
.y4_c03141{bottom:1079.759874px;}
.y1_c03141{bottom:1097.760450px;}
.yf_c03141{bottom:1134.840450px;}
.h3_c03141{height:32.530781px;}
.h1_c03141{height:41.696016px;}
.h2_c03141{height:41.812031px;}
.h4_c03141{height:54.654737px;}
.h0_c03141{height:1263.000000px;}
.w1_c03141{width:892.500000px;}
.w0_c03141{width:892.830000px;}
.x0_c03141{left:0.000000px;}
.xe_c03141{left:117.000000px;}
.x8_c03141{left:440.999856px;}
.x4_c03141{left:445.680576px;}
.xc_c03141{left:451.080000px;}
.x7_c03141{left:455.399604px;}
.x5_c03141{left:461.880144px;}
.x1_c03141{left:463.320000px;}
.xb_c03141{left:483.480360px;}
.x9_c03141{left:492.119496px;}
.x6_c03141{left:493.200576px;}
.xd_c03141{left:506.880360px;}
.x3_c03141{left:511.919892px;}
.x2_c03141{left:526.679604px;}
.xa_c03141{left:569.880036px;}
@media print{
.v0_c03141{vertical-align:0.000000pt;}
.v1_c03141{vertical-align:1.279488pt;}
.ls10_c03141{letter-spacing:-1.064448pt;}
.lsd_c03141{letter-spacing:-0.705408pt;}
.lsb_c03141{letter-spacing:-0.642048pt;}
.ls7_c03141{letter-spacing:-0.544896pt;}
.ls9_c03141{letter-spacing:-0.511104pt;}
.ls12_c03141{letter-spacing:-0.244992pt;}
.lsf_c03141{letter-spacing:-0.232320pt;}
.ls6_c03141{letter-spacing:-0.215424pt;}
.ls4_c03141{letter-spacing:-0.105600pt;}
.ls15_c03141{letter-spacing:0.000000pt;}
.ls2_c03141{letter-spacing:0.005376pt;}
.ls5_c03141{letter-spacing:0.114048pt;}
.lse_c03141{letter-spacing:0.215424pt;}
.lsc_c03141{letter-spacing:0.451968pt;}
.ls14_c03141{letter-spacing:0.456960pt;}
.ls11_c03141{letter-spacing:0.477312pt;}
.lsa_c03141{letter-spacing:0.515328pt;}
.ls13_c03141{letter-spacing:0.528000pt;}
.ls8_c03141{letter-spacing:0.532224pt;}
.ls3_c03141{letter-spacing:0.544896pt;}
.ls1_c03141{letter-spacing:0.637824pt;}
.ls0_c03141{letter-spacing:0.642048pt;}
.wsd_c03141{word-spacing:-13.445376pt;}
.wsb_c03141{word-spacing:-11.088000pt;}
.wse_c03141{word-spacing:-11.075328pt;}
.wsa_c03141{word-spacing:-11.037312pt;}
.ws4_c03141{word-spacing:-10.344576pt;}
.ws2_c03141{word-spacing:-10.015104pt;}
.ws12_c03141{word-spacing:-0.963072pt;}
.ws17_c03141{word-spacing:-0.958848pt;}
.wsf_c03141{word-spacing:-0.865920pt;}
.ws19_c03141{word-spacing:-0.639744pt;}
.ws15_c03141{word-spacing:-0.536448pt;}
.ws11_c03141{word-spacing:-0.105600pt;}
.ws16_c03141{word-spacing:-0.088704pt;}
.ws18_c03141{word-spacing:-0.076032pt;}
.ws10_c03141{word-spacing:0.000000pt;}
.ws13_c03141{word-spacing:0.321024pt;}
.ws14_c03141{word-spacing:0.384384pt;}
.ws1a_c03141{word-spacing:0.743424pt;}
.ws9_c03141{word-spacing:11.730048pt;}
.wsc_c03141{word-spacing:29.600256pt;}
.ws8_c03141{word-spacing:32.127744pt;}
.ws6_c03141{word-spacing:32.659968pt;}
.ws1_c03141{word-spacing:33.563904pt;}
.ws0_c03141{word-spacing:33.796224pt;}
.ws3_c03141{word-spacing:34.860672pt;}
.ws5_c03141{word-spacing:35.468928pt;}
.ws7_c03141{word-spacing:37.357056pt;}
._0_c03141{margin-left:-1.731840pt;}
._2_c03141{width:1.317888pt;}
._4_c03141{width:2.935680pt;}
._7_c03141{width:18.344832pt;}
._6_c03141{width:19.341696pt;}
._8_c03141{width:23.637504pt;}
._5_c03141{width:25.115904pt;}
._1_c03141{width:44.668800pt;}
._3_c03141{width:45.805056pt;}
.fs0_c03141{font-size:42.240000pt;}
.fs1_c03141{font-size:53.760000pt;}
.y0_c03141{bottom:0.000000pt;}
.y1a_c03141{bottom:130.665211pt;}
.y1c_c03141{bottom:165.866875pt;}
.y1b_c03141{bottom:174.507067pt;}
.y19_c03141{bottom:245.225371pt;}
.y18_c03141{bottom:317.225563pt;}
.y16_c03141{bottom:361.386427pt;}
.y12_c03141{bottom:377.386939pt;}
.y17_c03141{bottom:407.786011pt;}
.y15_c03141{bottom:437.226235pt;}
.y14_c03141{bottom:453.226747pt;}
.y11_c03141{bottom:482.666971pt;}
.y13_c03141{bottom:497.386555pt;}
.y10_c03141{bottom:513.387067pt;}
.y1d_c03141{bottom:546.027067pt;}
.yc_c03141{bottom:593.385179pt;}
.ye_c03141{bottom:628.586875pt;}
.yd_c03141{bottom:637.227067pt;}
.yb_c03141{bottom:694.505627pt;}
.ya_c03141{bottom:707.945339pt;}
.y9_c03141{bottom:779.945531pt;}
.y7_c03141{bottom:823.786427pt;}
.y3_c03141{bottom:839.786939pt;}
.y8_c03141{bottom:870.505979pt;}
.y6_c03141{bottom:899.946203pt;}
.y5_c03141{bottom:915.946715pt;}
.y2_c03141{bottom:945.386939pt;}
.y4_c03141{bottom:959.786555pt;}
.y1_c03141{bottom:975.787067pt;}
.yf_c03141{bottom:1008.747067pt;}
.h3_c03141{height:28.916250pt;}
.h1_c03141{height:37.063125pt;}
.h2_c03141{height:37.166250pt;}
.h4_c03141{height:48.581988pt;}
.h0_c03141{height:1122.666667pt;}
.w1_c03141{width:793.333333pt;}
.w0_c03141{width:793.626667pt;}
.x0_c03141{left:0.000000pt;}
.xe_c03141{left:104.000000pt;}
.x8_c03141{left:391.999872pt;}
.x4_c03141{left:396.160512pt;}
.xc_c03141{left:400.960000pt;}
.x7_c03141{left:404.799648pt;}
.x5_c03141{left:410.560128pt;}
.x1_c03141{left:411.840000pt;}
.xb_c03141{left:429.760320pt;}
.x9_c03141{left:437.439552pt;}
.x6_c03141{left:438.400512pt;}
.xd_c03141{left:450.560320pt;}
.x3_c03141{left:455.039904pt;}
.x2_c03141{left:468.159648pt;}
.xa_c03141{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03142 {
    display:none;
  }
  .loading-indicator_c03142.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03142 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03142 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03142" -> "#page-container .classname_c03142")
 */
.pf_c03142 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03142 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03142.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03142 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03142 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03142 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03142 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03142 {overflow:visible;}
  }
}
.c_c03142 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03142 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03142:after { /* webkit #35443 */
  content: '';
}
.t_c03142:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03142 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03142 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03142 { /* info for Javascript */
  display:none;
}
.l_c03142 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03142 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03142 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03142:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03142 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03142.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03142.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03142 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03142{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03142;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03142{font-family:ff1_c03142;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03142;src:url('chunks/assets/font_cc900fd515dcb0289c023360.woff2')format("woff");}.ff2_c03142{font-family:ff2_c03142;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03142;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03142{font-family:ff3_c03142;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03142{vertical-align:0.000000px;}
.v2_c03142{vertical-align:1.439424px;}
.v1_c03142{vertical-align:33.121440px;}
.lsc_c03142{letter-spacing:-0.793584px;}
.ls7_c03142{letter-spacing:-0.613008px;}
.ls9_c03142{letter-spacing:-0.574992px;}
.ls15_c03142{letter-spacing:-0.394416px;}
.ls10_c03142{letter-spacing:-0.275616px;}
.lse_c03142{letter-spacing:-0.261360px;}
.ls6_c03142{letter-spacing:-0.242352px;}
.ls4_c03142{letter-spacing:-0.118800px;}
.ls14_c03142{letter-spacing:0.000000px;}
.ls1_c03142{letter-spacing:0.006048px;}
.ls5_c03142{letter-spacing:0.128304px;}
.ls12_c03142{letter-spacing:0.166320px;}
.lsd_c03142{letter-spacing:0.242352px;}
.lsb_c03142{letter-spacing:0.508464px;}
.ls13_c03142{letter-spacing:0.514080px;}
.lsf_c03142{letter-spacing:0.536976px;}
.lsa_c03142{letter-spacing:0.579744px;}
.ls11_c03142{letter-spacing:0.594000px;}
.ls8_c03142{letter-spacing:0.598752px;}
.ls3_c03142{letter-spacing:0.613008px;}
.ls2_c03142{letter-spacing:0.717552px;}
.ls0_c03142{letter-spacing:0.722304px;}
.sc__c03142{text-shadow:none;}
.sc0_c03142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03142{-webkit-text-stroke:0px transparent;}
.sc0_c03142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c03142{word-spacing:-15.126048px;}
.ws10_c03142{word-spacing:-12.474000px;}
.ws6_c03142{word-spacing:-12.459744px;}
.ws9_c03142{word-spacing:-12.416976px;}
.ws4_c03142{word-spacing:-11.637648px;}
.ws2_c03142{word-spacing:-11.266992px;}
.ws14_c03142{word-spacing:-1.083456px;}
.ws1a_c03142{word-spacing:-1.078704px;}
.ws11_c03142{word-spacing:-0.974160px;}
.ws19_c03142{word-spacing:-0.719712px;}
.ws16_c03142{word-spacing:-0.603504px;}
.ws13_c03142{word-spacing:-0.118800px;}
.ws17_c03142{word-spacing:-0.099792px;}
.ws18_c03142{word-spacing:-0.085536px;}
.ws12_c03142{word-spacing:0.000000px;}
.ws1b_c03142{word-spacing:0.033264px;}
.ws15_c03142{word-spacing:0.432432px;}
.wsa_c03142{word-spacing:30.298752px;}
.wse_c03142{word-spacing:33.300288px;}
.ws8_c03142{word-spacing:36.143712px;}
.ws1_c03142{word-spacing:37.759392px;}
.ws0_c03142{word-spacing:38.020752px;}
.ws3_c03142{word-spacing:39.218256px;}
.ws5_c03142{word-spacing:39.902544px;}
.ws7_c03142{word-spacing:42.026688px;}
.wsc_c03142{word-spacing:48.232800px;}
.wsb_c03142{word-spacing:52.229232px;}
.wsd_c03142{word-spacing:54.111024px;}
._8_c03142{margin-left:-3.093552px;}
._0_c03142{margin-left:-1.948320px;}
._2_c03142{width:1.482624px;}
._4_c03142{width:3.302640px;}
._1_c03142{width:50.252400px;}
._3_c03142{width:51.530688px;}
._6_c03142{width:63.971424px;}
._5_c03142{width:65.796192px;}
._7_c03142{width:69.574032px;}
.fc0_c03142{color:rgb(0,0,0);}
.fs0_c03142{font-size:47.520000px;}
.fs1_c03142{font-size:60.480000px;}
.y0_c03142{bottom:0.000000px;}
.y1b_c03142{bottom:146.998362px;}
.y1d_c03142{bottom:186.600234px;}
.y1c_c03142{bottom:196.320450px;}
.y1a_c03142{bottom:275.878542px;}
.y19_c03142{bottom:356.878758px;}
.y17_c03142{bottom:406.559730px;}
.y13_c03142{bottom:424.560306px;}
.y18_c03142{bottom:458.759262px;}
.y16_c03142{bottom:491.879514px;}
.y15_c03142{bottom:509.880090px;}
.y12_c03142{bottom:543.000342px;}
.y14_c03142{bottom:559.559874px;}
.y11_c03142{bottom:577.560450px;}
.y1e_c03142{bottom:614.280450px;}
.yb_c03142{bottom:667.558326px;}
.yf_c03142{bottom:685.561206px;}
.ye_c03142{bottom:700.320918px;}
.yd_c03142{bottom:707.160234px;}
.yc_c03142{bottom:716.880450px;}
.ya_c03142{bottom:796.438506px;}
.y9_c03142{bottom:877.438722px;}
.y7_c03142{bottom:926.759730px;}
.y3_c03142{bottom:944.760306px;}
.y8_c03142{bottom:979.319226px;}
.y6_c03142{bottom:1012.439478px;}
.y5_c03142{bottom:1030.440054px;}
.y2_c03142{bottom:1063.560306px;}
.y4_c03142{bottom:1079.759874px;}
.y1_c03142{bottom:1097.760450px;}
.y10_c03142{bottom:1134.840450px;}
.h3_c03142{height:32.530781px;}
.h1_c03142{height:41.696016px;}
.h2_c03142{height:41.812031px;}
.h5_c03142{height:54.654737px;}
.h4_c03142{height:74.817456px;}
.h0_c03142{height:1263.000000px;}
.w1_c03142{width:892.500000px;}
.w0_c03142{width:892.830000px;}
.x0_c03142{left:0.000000px;}
.xe_c03142{left:117.000000px;}
.x8_c03142{left:440.999856px;}
.x4_c03142{left:445.680576px;}
.xb_c03142{left:451.080000px;}
.x7_c03142{left:455.399604px;}
.x5_c03142{left:461.880144px;}
.x1_c03142{left:463.320000px;}
.xa_c03142{left:483.480360px;}
.x9_c03142{left:492.119496px;}
.x6_c03142{left:493.200576px;}
.xc_c03142{left:506.880360px;}
.x3_c03142{left:511.919892px;}
.x2_c03142{left:526.679604px;}
.xd_c03142{left:569.880000px;}
@media print{
.v0_c03142{vertical-align:0.000000pt;}
.v2_c03142{vertical-align:1.279488pt;}
.v1_c03142{vertical-align:29.441280pt;}
.lsc_c03142{letter-spacing:-0.705408pt;}
.ls7_c03142{letter-spacing:-0.544896pt;}
.ls9_c03142{letter-spacing:-0.511104pt;}
.ls15_c03142{letter-spacing:-0.350592pt;}
.ls10_c03142{letter-spacing:-0.244992pt;}
.lse_c03142{letter-spacing:-0.232320pt;}
.ls6_c03142{letter-spacing:-0.215424pt;}
.ls4_c03142{letter-spacing:-0.105600pt;}
.ls14_c03142{letter-spacing:0.000000pt;}
.ls1_c03142{letter-spacing:0.005376pt;}
.ls5_c03142{letter-spacing:0.114048pt;}
.ls12_c03142{letter-spacing:0.147840pt;}
.lsd_c03142{letter-spacing:0.215424pt;}
.lsb_c03142{letter-spacing:0.451968pt;}
.ls13_c03142{letter-spacing:0.456960pt;}
.lsf_c03142{letter-spacing:0.477312pt;}
.lsa_c03142{letter-spacing:0.515328pt;}
.ls11_c03142{letter-spacing:0.528000pt;}
.ls8_c03142{letter-spacing:0.532224pt;}
.ls3_c03142{letter-spacing:0.544896pt;}
.ls2_c03142{letter-spacing:0.637824pt;}
.ls0_c03142{letter-spacing:0.642048pt;}
.wsf_c03142{word-spacing:-13.445376pt;}
.ws10_c03142{word-spacing:-11.088000pt;}
.ws6_c03142{word-spacing:-11.075328pt;}
.ws9_c03142{word-spacing:-11.037312pt;}
.ws4_c03142{word-spacing:-10.344576pt;}
.ws2_c03142{word-spacing:-10.015104pt;}
.ws14_c03142{word-spacing:-0.963072pt;}
.ws1a_c03142{word-spacing:-0.958848pt;}
.ws11_c03142{word-spacing:-0.865920pt;}
.ws19_c03142{word-spacing:-0.639744pt;}
.ws16_c03142{word-spacing:-0.536448pt;}
.ws13_c03142{word-spacing:-0.105600pt;}
.ws17_c03142{word-spacing:-0.088704pt;}
.ws18_c03142{word-spacing:-0.076032pt;}
.ws12_c03142{word-spacing:0.000000pt;}
.ws1b_c03142{word-spacing:0.029568pt;}
.ws15_c03142{word-spacing:0.384384pt;}
.wsa_c03142{word-spacing:26.932224pt;}
.wse_c03142{word-spacing:29.600256pt;}
.ws8_c03142{word-spacing:32.127744pt;}
.ws1_c03142{word-spacing:33.563904pt;}
.ws0_c03142{word-spacing:33.796224pt;}
.ws3_c03142{word-spacing:34.860672pt;}
.ws5_c03142{word-spacing:35.468928pt;}
.ws7_c03142{word-spacing:37.357056pt;}
.wsc_c03142{word-spacing:42.873600pt;}
.wsb_c03142{word-spacing:46.425984pt;}
.wsd_c03142{word-spacing:48.098688pt;}
._8_c03142{margin-left:-2.749824pt;}
._0_c03142{margin-left:-1.731840pt;}
._2_c03142{width:1.317888pt;}
._4_c03142{width:2.935680pt;}
._1_c03142{width:44.668800pt;}
._3_c03142{width:45.805056pt;}
._6_c03142{width:56.863488pt;}
._5_c03142{width:58.485504pt;}
._7_c03142{width:61.843584pt;}
.fs0_c03142{font-size:42.240000pt;}
.fs1_c03142{font-size:53.760000pt;}
.y0_c03142{bottom:0.000000pt;}
.y1b_c03142{bottom:130.665211pt;}
.y1d_c03142{bottom:165.866875pt;}
.y1c_c03142{bottom:174.507067pt;}
.y1a_c03142{bottom:245.225371pt;}
.y19_c03142{bottom:317.225563pt;}
.y17_c03142{bottom:361.386427pt;}
.y13_c03142{bottom:377.386939pt;}
.y18_c03142{bottom:407.786011pt;}
.y16_c03142{bottom:437.226235pt;}
.y15_c03142{bottom:453.226747pt;}
.y12_c03142{bottom:482.666971pt;}
.y14_c03142{bottom:497.386555pt;}
.y11_c03142{bottom:513.387067pt;}
.y1e_c03142{bottom:546.027067pt;}
.yb_c03142{bottom:593.385179pt;}
.yf_c03142{bottom:609.387739pt;}
.ye_c03142{bottom:622.507483pt;}
.yd_c03142{bottom:628.586875pt;}
.yc_c03142{bottom:637.227067pt;}
.ya_c03142{bottom:707.945339pt;}
.y9_c03142{bottom:779.945531pt;}
.y7_c03142{bottom:823.786427pt;}
.y3_c03142{bottom:839.786939pt;}
.y8_c03142{bottom:870.505979pt;}
.y6_c03142{bottom:899.946203pt;}
.y5_c03142{bottom:915.946715pt;}
.y2_c03142{bottom:945.386939pt;}
.y4_c03142{bottom:959.786555pt;}
.y1_c03142{bottom:975.787067pt;}
.y10_c03142{bottom:1008.747067pt;}
.h3_c03142{height:28.916250pt;}
.h1_c03142{height:37.063125pt;}
.h2_c03142{height:37.166250pt;}
.h5_c03142{height:48.581988pt;}
.h4_c03142{height:66.504405pt;}
.h0_c03142{height:1122.666667pt;}
.w1_c03142{width:793.333333pt;}
.w0_c03142{width:793.626667pt;}
.x0_c03142{left:0.000000pt;}
.xe_c03142{left:104.000000pt;}
.x8_c03142{left:391.999872pt;}
.x4_c03142{left:396.160512pt;}
.xb_c03142{left:400.960000pt;}
.x7_c03142{left:404.799648pt;}
.x5_c03142{left:410.560128pt;}
.x1_c03142{left:411.840000pt;}
.xa_c03142{left:429.760320pt;}
.x9_c03142{left:437.439552pt;}
.x6_c03142{left:438.400512pt;}
.xc_c03142{left:450.560320pt;}
.x3_c03142{left:455.039904pt;}
.x2_c03142{left:468.159648pt;}
.xd_c03142{left:506.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03143 {
    display:none;
  }
  .loading-indicator_c03143.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03143 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03143 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03143" -> "#page-container .classname_c03143")
 */
.pf_c03143 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03143 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03143.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03143 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03143 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03143 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03143 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03143 {overflow:visible;}
  }
}
.c_c03143 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03143 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03143:after { /* webkit #35443 */
  content: '';
}
.t_c03143:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03143 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03143 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03143 { /* info for Javascript */
  display:none;
}
.l_c03143 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03143 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03143 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03143:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03143 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03143.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03143.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03143 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03143{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03143;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03143{font-family:ff1_c03143;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03143;src:url('chunks/assets/font_2d6ebab13e90651ba71f7833.woff2')format("woff");}.ff2_c03143{font-family:ff2_c03143;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03143;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03143{font-family:ff3_c03143;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03143{vertical-align:0.000000px;}
.v1_c03143{vertical-align:1.439424px;}
.lsc_c03143{letter-spacing:-1.197504px;}
.ls7_c03143{letter-spacing:-0.613008px;}
.ls9_c03143{letter-spacing:-0.574992px;}
.lsf_c03143{letter-spacing:-0.275616px;}
.lsd_c03143{letter-spacing:-0.261360px;}
.ls6_c03143{letter-spacing:-0.242352px;}
.ls4_c03143{letter-spacing:-0.118800px;}
.ls12_c03143{letter-spacing:0.000000px;}
.ls1_c03143{letter-spacing:0.006048px;}
.ls5_c03143{letter-spacing:0.128304px;}
.lsb_c03143{letter-spacing:0.508464px;}
.ls11_c03143{letter-spacing:0.514080px;}
.lse_c03143{letter-spacing:0.536976px;}
.lsa_c03143{letter-spacing:0.579744px;}
.ls10_c03143{letter-spacing:0.594000px;}
.ls8_c03143{letter-spacing:0.598752px;}
.ls2_c03143{letter-spacing:0.613008px;}
.ls3_c03143{letter-spacing:0.717552px;}
.ls0_c03143{letter-spacing:0.722304px;}
.sc__c03143{text-shadow:none;}
.sc0_c03143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03143{-webkit-text-stroke:0px transparent;}
.sc0_c03143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03143{word-spacing:-15.126048px;}
.wsa_c03143{word-spacing:-12.474000px;}
.ws8_c03143{word-spacing:-12.459744px;}
.ws9_c03143{word-spacing:-12.416976px;}
.ws4_c03143{word-spacing:-11.637648px;}
.ws2_c03143{word-spacing:-11.266992px;}
.ws10_c03143{word-spacing:-1.083456px;}
.wsd_c03143{word-spacing:-0.974160px;}
.ws14_c03143{word-spacing:-0.719712px;}
.wsf_c03143{word-spacing:-0.118800px;}
.ws12_c03143{word-spacing:-0.099792px;}
.ws13_c03143{word-spacing:-0.085536px;}
.wse_c03143{word-spacing:0.000000px;}
.ws11_c03143{word-spacing:0.836352px;}
.wsb_c03143{word-spacing:33.300288px;}
.ws6_c03143{word-spacing:36.742464px;}
.ws1_c03143{word-spacing:37.759392px;}
.ws0_c03143{word-spacing:38.020752px;}
.ws3_c03143{word-spacing:39.218256px;}
.ws5_c03143{word-spacing:39.902544px;}
.ws7_c03143{word-spacing:42.026688px;}
._0_c03143{margin-left:-1.948320px;}
._2_c03143{width:1.482624px;}
._4_c03143{width:3.302640px;}
._1_c03143{width:50.252400px;}
._3_c03143{width:51.530688px;}
.fc0_c03143{color:rgb(0,0,0);}
.fs0_c03143{font-size:47.520000px;}
.fs1_c03143{font-size:60.480000px;}
.y0_c03143{bottom:0.000000px;}
.y19_c03143{bottom:146.998362px;}
.y1b_c03143{bottom:186.600234px;}
.y1a_c03143{bottom:196.320450px;}
.y18_c03143{bottom:275.878542px;}
.y17_c03143{bottom:356.878758px;}
.y15_c03143{bottom:406.559730px;}
.y11_c03143{bottom:424.560306px;}
.y16_c03143{bottom:458.759262px;}
.y14_c03143{bottom:491.879514px;}
.y13_c03143{bottom:509.880090px;}
.y10_c03143{bottom:543.000342px;}
.y12_c03143{bottom:559.559874px;}
.yf_c03143{bottom:577.560450px;}
.y1c_c03143{bottom:614.280450px;}
.yb_c03143{bottom:667.558326px;}
.yd_c03143{bottom:707.160234px;}
.yc_c03143{bottom:716.880450px;}
.ya_c03143{bottom:796.438506px;}
.y9_c03143{bottom:877.438722px;}
.y7_c03143{bottom:926.759730px;}
.y3_c03143{bottom:944.760306px;}
.y8_c03143{bottom:979.319226px;}
.y6_c03143{bottom:1012.439478px;}
.y5_c03143{bottom:1030.440054px;}
.y2_c03143{bottom:1063.560306px;}
.y4_c03143{bottom:1079.759874px;}
.y1_c03143{bottom:1097.760450px;}
.ye_c03143{bottom:1134.840450px;}
.h3_c03143{height:32.530781px;}
.h1_c03143{height:41.696016px;}
.h2_c03143{height:41.812031px;}
.h4_c03143{height:54.654737px;}
.h0_c03143{height:1263.000000px;}
.w1_c03143{width:892.500000px;}
.w0_c03143{width:892.830000px;}
.x0_c03143{left:0.000000px;}
.xd_c03143{left:117.000000px;}
.x8_c03143{left:440.999856px;}
.x4_c03143{left:445.680576px;}
.xb_c03143{left:451.080000px;}
.x7_c03143{left:455.399604px;}
.x5_c03143{left:461.880144px;}
.x1_c03143{left:463.320000px;}
.xa_c03143{left:483.480360px;}
.x9_c03143{left:492.119496px;}
.x6_c03143{left:493.200576px;}
.xc_c03143{left:506.880360px;}
.x3_c03143{left:511.919892px;}
.x2_c03143{left:526.679604px;}
@media print{
.v0_c03143{vertical-align:0.000000pt;}
.v1_c03143{vertical-align:1.279488pt;}
.lsc_c03143{letter-spacing:-1.064448pt;}
.ls7_c03143{letter-spacing:-0.544896pt;}
.ls9_c03143{letter-spacing:-0.511104pt;}
.lsf_c03143{letter-spacing:-0.244992pt;}
.lsd_c03143{letter-spacing:-0.232320pt;}
.ls6_c03143{letter-spacing:-0.215424pt;}
.ls4_c03143{letter-spacing:-0.105600pt;}
.ls12_c03143{letter-spacing:0.000000pt;}
.ls1_c03143{letter-spacing:0.005376pt;}
.ls5_c03143{letter-spacing:0.114048pt;}
.lsb_c03143{letter-spacing:0.451968pt;}
.ls11_c03143{letter-spacing:0.456960pt;}
.lse_c03143{letter-spacing:0.477312pt;}
.lsa_c03143{letter-spacing:0.515328pt;}
.ls10_c03143{letter-spacing:0.528000pt;}
.ls8_c03143{letter-spacing:0.532224pt;}
.ls2_c03143{letter-spacing:0.544896pt;}
.ls3_c03143{letter-spacing:0.637824pt;}
.ls0_c03143{letter-spacing:0.642048pt;}
.wsc_c03143{word-spacing:-13.445376pt;}
.wsa_c03143{word-spacing:-11.088000pt;}
.ws8_c03143{word-spacing:-11.075328pt;}
.ws9_c03143{word-spacing:-11.037312pt;}
.ws4_c03143{word-spacing:-10.344576pt;}
.ws2_c03143{word-spacing:-10.015104pt;}
.ws10_c03143{word-spacing:-0.963072pt;}
.wsd_c03143{word-spacing:-0.865920pt;}
.ws14_c03143{word-spacing:-0.639744pt;}
.wsf_c03143{word-spacing:-0.105600pt;}
.ws12_c03143{word-spacing:-0.088704pt;}
.ws13_c03143{word-spacing:-0.076032pt;}
.wse_c03143{word-spacing:0.000000pt;}
.ws11_c03143{word-spacing:0.743424pt;}
.wsb_c03143{word-spacing:29.600256pt;}
.ws6_c03143{word-spacing:32.659968pt;}
.ws1_c03143{word-spacing:33.563904pt;}
.ws0_c03143{word-spacing:33.796224pt;}
.ws3_c03143{word-spacing:34.860672pt;}
.ws5_c03143{word-spacing:35.468928pt;}
.ws7_c03143{word-spacing:37.357056pt;}
._0_c03143{margin-left:-1.731840pt;}
._2_c03143{width:1.317888pt;}
._4_c03143{width:2.935680pt;}
._1_c03143{width:44.668800pt;}
._3_c03143{width:45.805056pt;}
.fs0_c03143{font-size:42.240000pt;}
.fs1_c03143{font-size:53.760000pt;}
.y0_c03143{bottom:0.000000pt;}
.y19_c03143{bottom:130.665211pt;}
.y1b_c03143{bottom:165.866875pt;}
.y1a_c03143{bottom:174.507067pt;}
.y18_c03143{bottom:245.225371pt;}
.y17_c03143{bottom:317.225563pt;}
.y15_c03143{bottom:361.386427pt;}
.y11_c03143{bottom:377.386939pt;}
.y16_c03143{bottom:407.786011pt;}
.y14_c03143{bottom:437.226235pt;}
.y13_c03143{bottom:453.226747pt;}
.y10_c03143{bottom:482.666971pt;}
.y12_c03143{bottom:497.386555pt;}
.yf_c03143{bottom:513.387067pt;}
.y1c_c03143{bottom:546.027067pt;}
.yb_c03143{bottom:593.385179pt;}
.yd_c03143{bottom:628.586875pt;}
.yc_c03143{bottom:637.227067pt;}
.ya_c03143{bottom:707.945339pt;}
.y9_c03143{bottom:779.945531pt;}
.y7_c03143{bottom:823.786427pt;}
.y3_c03143{bottom:839.786939pt;}
.y8_c03143{bottom:870.505979pt;}
.y6_c03143{bottom:899.946203pt;}
.y5_c03143{bottom:915.946715pt;}
.y2_c03143{bottom:945.386939pt;}
.y4_c03143{bottom:959.786555pt;}
.y1_c03143{bottom:975.787067pt;}
.ye_c03143{bottom:1008.747067pt;}
.h3_c03143{height:28.916250pt;}
.h1_c03143{height:37.063125pt;}
.h2_c03143{height:37.166250pt;}
.h4_c03143{height:48.581988pt;}
.h0_c03143{height:1122.666667pt;}
.w1_c03143{width:793.333333pt;}
.w0_c03143{width:793.626667pt;}
.x0_c03143{left:0.000000pt;}
.xd_c03143{left:104.000000pt;}
.x8_c03143{left:391.999872pt;}
.x4_c03143{left:396.160512pt;}
.xb_c03143{left:400.960000pt;}
.x7_c03143{left:404.799648pt;}
.x5_c03143{left:410.560128pt;}
.x1_c03143{left:411.840000pt;}
.xa_c03143{left:429.760320pt;}
.x9_c03143{left:437.439552pt;}
.x6_c03143{left:438.400512pt;}
.xc_c03143{left:450.560320pt;}
.x3_c03143{left:455.039904pt;}
.x2_c03143{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03144 {
    display:none;
  }
  .loading-indicator_c03144.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03144 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03144 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03144" -> "#page-container .classname_c03144")
 */
.pf_c03144 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03144 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03144.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03144 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03144 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03144 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03144 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03144 {overflow:visible;}
  }
}
.c_c03144 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03144 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03144:after { /* webkit #35443 */
  content: '';
}
.t_c03144:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03144 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03144 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03144 { /* info for Javascript */
  display:none;
}
.l_c03144 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03144 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03144 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03144:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03144 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03144.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03144.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03144 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03144{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03144;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03144{font-family:ff1_c03144;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03144;src:url('chunks/assets/font_451a1d734d6d0b97504e5c2e.woff2')format("woff");}.ff2_c03144{font-family:ff2_c03144;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03144;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03144{font-family:ff3_c03144;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03144{vertical-align:0.000000px;}
.v1_c03144{vertical-align:1.439424px;}
.lsc_c03144{letter-spacing:-1.197504px;}
.ls13_c03144{letter-spacing:-0.722304px;}
.ls7_c03144{letter-spacing:-0.613008px;}
.ls9_c03144{letter-spacing:-0.574992px;}
.lsf_c03144{letter-spacing:-0.275616px;}
.lsd_c03144{letter-spacing:-0.261360px;}
.ls6_c03144{letter-spacing:-0.242352px;}
.ls4_c03144{letter-spacing:-0.118800px;}
.ls12_c03144{letter-spacing:0.000000px;}
.ls1_c03144{letter-spacing:0.006048px;}
.ls5_c03144{letter-spacing:0.128304px;}
.lsb_c03144{letter-spacing:0.508464px;}
.ls11_c03144{letter-spacing:0.514080px;}
.lse_c03144{letter-spacing:0.536976px;}
.lsa_c03144{letter-spacing:0.579744px;}
.ls10_c03144{letter-spacing:0.594000px;}
.ls8_c03144{letter-spacing:0.598752px;}
.ls2_c03144{letter-spacing:0.613008px;}
.ls3_c03144{letter-spacing:0.717552px;}
.ls0_c03144{letter-spacing:0.722304px;}
.sc__c03144{text-shadow:none;}
.sc0_c03144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03144{-webkit-text-stroke:0px transparent;}
.sc0_c03144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03144{word-spacing:-15.126048px;}
.wsa_c03144{word-spacing:-12.474000px;}
.ws8_c03144{word-spacing:-12.459744px;}
.ws9_c03144{word-spacing:-12.416976px;}
.ws4_c03144{word-spacing:-11.637648px;}
.ws2_c03144{word-spacing:-11.266992px;}
.ws11_c03144{word-spacing:-1.083456px;}
.wse_c03144{word-spacing:-0.974160px;}
.ws15_c03144{word-spacing:-0.719712px;}
.ws10_c03144{word-spacing:-0.118800px;}
.ws13_c03144{word-spacing:-0.099792px;}
.ws14_c03144{word-spacing:-0.085536px;}
.wsf_c03144{word-spacing:0.000000px;}
.ws16_c03144{word-spacing:0.361152px;}
.ws12_c03144{word-spacing:0.836352px;}
.wsd_c03144{word-spacing:13.676256px;}
.wsb_c03144{word-spacing:33.300288px;}
.ws6_c03144{word-spacing:36.742464px;}
.ws1_c03144{word-spacing:37.759392px;}
.ws0_c03144{word-spacing:38.020752px;}
.ws3_c03144{word-spacing:39.218256px;}
.ws5_c03144{word-spacing:39.902544px;}
.ws7_c03144{word-spacing:42.026688px;}
._0_c03144{margin-left:-1.948320px;}
._2_c03144{width:1.482624px;}
._4_c03144{width:3.302640px;}
._8_c03144{width:27.837216px;}
._7_c03144{width:31.097088px;}
._6_c03144{width:32.931360px;}
._5_c03144{width:34.257168px;}
._1_c03144{width:50.252400px;}
._3_c03144{width:51.530688px;}
.fc0_c03144{color:rgb(0,0,0);}
.fs0_c03144{font-size:47.520000px;}
.fs1_c03144{font-size:60.480000px;}
.y0_c03144{bottom:0.000000px;}
.y1a_c03144{bottom:146.998362px;}
.y1c_c03144{bottom:186.600234px;}
.y1b_c03144{bottom:196.320450px;}
.y19_c03144{bottom:260.758866px;}
.y18_c03144{bottom:275.878542px;}
.y17_c03144{bottom:356.878758px;}
.y15_c03144{bottom:406.559730px;}
.y11_c03144{bottom:424.560306px;}
.y16_c03144{bottom:458.759262px;}
.y14_c03144{bottom:491.879514px;}
.y13_c03144{bottom:509.880090px;}
.y10_c03144{bottom:543.000342px;}
.y12_c03144{bottom:559.559874px;}
.yf_c03144{bottom:577.560450px;}
.y1d_c03144{bottom:614.280450px;}
.yb_c03144{bottom:667.558326px;}
.yd_c03144{bottom:707.160234px;}
.yc_c03144{bottom:716.880450px;}
.ya_c03144{bottom:796.438506px;}
.y9_c03144{bottom:877.438722px;}
.y7_c03144{bottom:926.759730px;}
.y3_c03144{bottom:944.760306px;}
.y8_c03144{bottom:979.319226px;}
.y6_c03144{bottom:1012.439478px;}
.y5_c03144{bottom:1030.440054px;}
.y2_c03144{bottom:1063.560306px;}
.y4_c03144{bottom:1079.759874px;}
.y1_c03144{bottom:1097.760450px;}
.ye_c03144{bottom:1134.840450px;}
.h3_c03144{height:32.530781px;}
.h1_c03144{height:41.696016px;}
.h2_c03144{height:41.812031px;}
.h4_c03144{height:54.654737px;}
.h0_c03144{height:1263.000000px;}
.w1_c03144{width:892.500000px;}
.w0_c03144{width:892.830000px;}
.x0_c03144{left:0.000000px;}
.xd_c03144{left:117.000000px;}
.x8_c03144{left:440.999856px;}
.x4_c03144{left:445.680576px;}
.xb_c03144{left:451.080000px;}
.x7_c03144{left:455.399604px;}
.x5_c03144{left:461.880144px;}
.x1_c03144{left:463.320000px;}
.xa_c03144{left:483.480360px;}
.x9_c03144{left:492.119496px;}
.x6_c03144{left:493.200576px;}
.xc_c03144{left:506.880360px;}
.x3_c03144{left:511.919892px;}
.x2_c03144{left:526.679604px;}
.xe_c03144{left:569.880036px;}
@media print{
.v0_c03144{vertical-align:0.000000pt;}
.v1_c03144{vertical-align:1.279488pt;}
.lsc_c03144{letter-spacing:-1.064448pt;}
.ls13_c03144{letter-spacing:-0.642048pt;}
.ls7_c03144{letter-spacing:-0.544896pt;}
.ls9_c03144{letter-spacing:-0.511104pt;}
.lsf_c03144{letter-spacing:-0.244992pt;}
.lsd_c03144{letter-spacing:-0.232320pt;}
.ls6_c03144{letter-spacing:-0.215424pt;}
.ls4_c03144{letter-spacing:-0.105600pt;}
.ls12_c03144{letter-spacing:0.000000pt;}
.ls1_c03144{letter-spacing:0.005376pt;}
.ls5_c03144{letter-spacing:0.114048pt;}
.lsb_c03144{letter-spacing:0.451968pt;}
.ls11_c03144{letter-spacing:0.456960pt;}
.lse_c03144{letter-spacing:0.477312pt;}
.lsa_c03144{letter-spacing:0.515328pt;}
.ls10_c03144{letter-spacing:0.528000pt;}
.ls8_c03144{letter-spacing:0.532224pt;}
.ls2_c03144{letter-spacing:0.544896pt;}
.ls3_c03144{letter-spacing:0.637824pt;}
.ls0_c03144{letter-spacing:0.642048pt;}
.wsc_c03144{word-spacing:-13.445376pt;}
.wsa_c03144{word-spacing:-11.088000pt;}
.ws8_c03144{word-spacing:-11.075328pt;}
.ws9_c03144{word-spacing:-11.037312pt;}
.ws4_c03144{word-spacing:-10.344576pt;}
.ws2_c03144{word-spacing:-10.015104pt;}
.ws11_c03144{word-spacing:-0.963072pt;}
.wse_c03144{word-spacing:-0.865920pt;}
.ws15_c03144{word-spacing:-0.639744pt;}
.ws10_c03144{word-spacing:-0.105600pt;}
.ws13_c03144{word-spacing:-0.088704pt;}
.ws14_c03144{word-spacing:-0.076032pt;}
.wsf_c03144{word-spacing:0.000000pt;}
.ws16_c03144{word-spacing:0.321024pt;}
.ws12_c03144{word-spacing:0.743424pt;}
.wsd_c03144{word-spacing:12.156672pt;}
.wsb_c03144{word-spacing:29.600256pt;}
.ws6_c03144{word-spacing:32.659968pt;}
.ws1_c03144{word-spacing:33.563904pt;}
.ws0_c03144{word-spacing:33.796224pt;}
.ws3_c03144{word-spacing:34.860672pt;}
.ws5_c03144{word-spacing:35.468928pt;}
.ws7_c03144{word-spacing:37.357056pt;}
._0_c03144{margin-left:-1.731840pt;}
._2_c03144{width:1.317888pt;}
._4_c03144{width:2.935680pt;}
._8_c03144{width:24.744192pt;}
._7_c03144{width:27.641856pt;}
._6_c03144{width:29.272320pt;}
._5_c03144{width:30.450816pt;}
._1_c03144{width:44.668800pt;}
._3_c03144{width:45.805056pt;}
.fs0_c03144{font-size:42.240000pt;}
.fs1_c03144{font-size:53.760000pt;}
.y0_c03144{bottom:0.000000pt;}
.y1a_c03144{bottom:130.665211pt;}
.y1c_c03144{bottom:165.866875pt;}
.y1b_c03144{bottom:174.507067pt;}
.y19_c03144{bottom:231.785659pt;}
.y18_c03144{bottom:245.225371pt;}
.y17_c03144{bottom:317.225563pt;}
.y15_c03144{bottom:361.386427pt;}
.y11_c03144{bottom:377.386939pt;}
.y16_c03144{bottom:407.786011pt;}
.y14_c03144{bottom:437.226235pt;}
.y13_c03144{bottom:453.226747pt;}
.y10_c03144{bottom:482.666971pt;}
.y12_c03144{bottom:497.386555pt;}
.yf_c03144{bottom:513.387067pt;}
.y1d_c03144{bottom:546.027067pt;}
.yb_c03144{bottom:593.385179pt;}
.yd_c03144{bottom:628.586875pt;}
.yc_c03144{bottom:637.227067pt;}
.ya_c03144{bottom:707.945339pt;}
.y9_c03144{bottom:779.945531pt;}
.y7_c03144{bottom:823.786427pt;}
.y3_c03144{bottom:839.786939pt;}
.y8_c03144{bottom:870.505979pt;}
.y6_c03144{bottom:899.946203pt;}
.y5_c03144{bottom:915.946715pt;}
.y2_c03144{bottom:945.386939pt;}
.y4_c03144{bottom:959.786555pt;}
.y1_c03144{bottom:975.787067pt;}
.ye_c03144{bottom:1008.747067pt;}
.h3_c03144{height:28.916250pt;}
.h1_c03144{height:37.063125pt;}
.h2_c03144{height:37.166250pt;}
.h4_c03144{height:48.581988pt;}
.h0_c03144{height:1122.666667pt;}
.w1_c03144{width:793.333333pt;}
.w0_c03144{width:793.626667pt;}
.x0_c03144{left:0.000000pt;}
.xd_c03144{left:104.000000pt;}
.x8_c03144{left:391.999872pt;}
.x4_c03144{left:396.160512pt;}
.xb_c03144{left:400.960000pt;}
.x7_c03144{left:404.799648pt;}
.x5_c03144{left:410.560128pt;}
.x1_c03144{left:411.840000pt;}
.xa_c03144{left:429.760320pt;}
.x9_c03144{left:437.439552pt;}
.x6_c03144{left:438.400512pt;}
.xc_c03144{left:450.560320pt;}
.x3_c03144{left:455.039904pt;}
.x2_c03144{left:468.159648pt;}
.xe_c03144{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03145 {
    display:none;
  }
  .loading-indicator_c03145.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03145 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03145 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03145" -> "#page-container .classname_c03145")
 */
.pf_c03145 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03145 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03145.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03145 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03145 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03145 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03145 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03145 {overflow:visible;}
  }
}
.c_c03145 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03145 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03145:after { /* webkit #35443 */
  content: '';
}
.t_c03145:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03145 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03145 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03145 { /* info for Javascript */
  display:none;
}
.l_c03145 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03145 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03145 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03145:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03145 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03145.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03145.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03145 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03145{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03145;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03145{font-family:ff1_c03145;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03145;src:url('chunks/assets/font_762ea41734004c221517c137.woff2')format("woff");}.ff2_c03145{font-family:ff2_c03145;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03145;src:url('chunks/assets/font_51c9aae409ac9d24fc9ab16f.woff2')format("woff");}.ff3_c03145{font-family:ff3_c03145;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03145{vertical-align:0.000000px;}
.v2_c03145{vertical-align:1.439424px;}
.v1_c03145{vertical-align:33.121440px;}
.lsc_c03145{letter-spacing:-0.722304px;}
.ls7_c03145{letter-spacing:-0.613008px;}
.ls9_c03145{letter-spacing:-0.574992px;}
.ls16_c03145{letter-spacing:-0.380160px;}
.lsf_c03145{letter-spacing:-0.275616px;}
.lsd_c03145{letter-spacing:-0.261360px;}
.ls6_c03145{letter-spacing:-0.242352px;}
.ls4_c03145{letter-spacing:-0.118800px;}
.ls15_c03145{letter-spacing:-0.023760px;}
.ls13_c03145{letter-spacing:0.000000px;}
.ls1_c03145{letter-spacing:0.006048px;}
.ls11_c03145{letter-spacing:0.090288px;}
.ls5_c03145{letter-spacing:0.128304px;}
.ls17_c03145{letter-spacing:0.166320px;}
.lsb_c03145{letter-spacing:0.508464px;}
.ls12_c03145{letter-spacing:0.514080px;}
.lse_c03145{letter-spacing:0.536976px;}
.lsa_c03145{letter-spacing:0.579744px;}
.ls10_c03145{letter-spacing:0.594000px;}
.ls8_c03145{letter-spacing:0.598752px;}
.ls2_c03145{letter-spacing:0.613008px;}
.ls14_c03145{letter-spacing:0.660528px;}
.ls3_c03145{letter-spacing:0.717552px;}
.ls0_c03145{letter-spacing:0.722304px;}
.sc__c03145{text-shadow:none;}
.sc0_c03145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03145{-webkit-text-stroke:0px transparent;}
.sc0_c03145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03145{word-spacing:-15.126048px;}
.wse_c03145{word-spacing:-12.540528px;}
.ws6_c03145{word-spacing:-12.459744px;}
.ws8_c03145{word-spacing:-12.416976px;}
.ws4_c03145{word-spacing:-11.637648px;}
.ws2_c03145{word-spacing:-11.266992px;}
.ws13_c03145{word-spacing:-1.083456px;}
.ws10_c03145{word-spacing:-0.974160px;}
.ws18_c03145{word-spacing:-0.719712px;}
.ws1a_c03145{word-spacing:-0.527472px;}
.ws17_c03145{word-spacing:-0.451440px;}
.ws12_c03145{word-spacing:-0.118800px;}
.ws15_c03145{word-spacing:-0.099792px;}
.ws16_c03145{word-spacing:-0.085536px;}
.ws11_c03145{word-spacing:0.000000px;}
.ws19_c03145{word-spacing:0.019008px;}
.ws14_c03145{word-spacing:0.361152px;}
.wsf_c03145{word-spacing:3.649536px;}
.wsd_c03145{word-spacing:6.591024px;}
.ws9_c03145{word-spacing:30.298752px;}
.wsa_c03145{word-spacing:33.300288px;}
.wsc_c03145{word-spacing:36.143712px;}
.ws1_c03145{word-spacing:37.759392px;}
.ws0_c03145{word-spacing:38.020752px;}
.ws3_c03145{word-spacing:39.218256px;}
.ws5_c03145{word-spacing:39.902544px;}
.ws7_c03145{word-spacing:42.026688px;}
._0_c03145{margin-left:-1.948320px;}
._2_c03145{width:1.482624px;}
._4_c03145{width:3.302640px;}
._a_c03145{width:14.099184px;}
._9_c03145{width:19.179072px;}
._8_c03145{width:21.217680px;}
._5_c03145{width:22.633776px;}
._6_c03145{width:25.465968px;}
._7_c03145{width:28.051056px;}
._1_c03145{width:50.252400px;}
._3_c03145{width:51.530688px;}
.fc0_c03145{color:rgb(0,0,0);}
.fs0_c03145{font-size:47.520000px;}
.fs1_c03145{font-size:60.480000px;}
.y0_c03145{bottom:0.000000px;}
.y1b_c03145{bottom:146.998362px;}
.y1d_c03145{bottom:186.600234px;}
.y1c_c03145{bottom:196.320450px;}
.y1a_c03145{bottom:260.758866px;}
.y19_c03145{bottom:275.878542px;}
.y18_c03145{bottom:341.759082px;}
.y17_c03145{bottom:356.878758px;}
.y15_c03145{bottom:406.559730px;}
.y11_c03145{bottom:424.560306px;}
.y16_c03145{bottom:458.759262px;}
.y14_c03145{bottom:491.879514px;}
.y13_c03145{bottom:509.880090px;}
.y10_c03145{bottom:543.000342px;}
.y12_c03145{bottom:559.559874px;}
.yf_c03145{bottom:577.560450px;}
.y1e_c03145{bottom:614.280450px;}
.yb_c03145{bottom:667.558326px;}
.yd_c03145{bottom:707.160234px;}
.yc_c03145{bottom:716.880450px;}
.ya_c03145{bottom:796.438506px;}
.y9_c03145{bottom:877.438722px;}
.y7_c03145{bottom:926.759730px;}
.y3_c03145{bottom:944.760306px;}
.y8_c03145{bottom:979.319226px;}
.y6_c03145{bottom:1012.439478px;}
.y5_c03145{bottom:1030.440054px;}
.y2_c03145{bottom:1063.560306px;}
.y4_c03145{bottom:1079.759874px;}
.y1_c03145{bottom:1097.760450px;}
.ye_c03145{bottom:1134.840450px;}
.h3_c03145{height:32.530781px;}
.h1_c03145{height:41.696016px;}
.h2_c03145{height:41.812031px;}
.h5_c03145{height:54.654737px;}
.h4_c03145{height:74.817456px;}
.h0_c03145{height:1263.000000px;}
.w1_c03145{width:892.500000px;}
.w0_c03145{width:892.830000px;}
.x0_c03145{left:0.000000px;}
.xd_c03145{left:117.000000px;}
.x8_c03145{left:440.999856px;}
.x4_c03145{left:445.680576px;}
.xb_c03145{left:451.080000px;}
.x7_c03145{left:455.399604px;}
.x5_c03145{left:461.880144px;}
.x1_c03145{left:463.320000px;}
.xa_c03145{left:483.480360px;}
.x9_c03145{left:492.119496px;}
.x6_c03145{left:493.200576px;}
.xc_c03145{left:506.880360px;}
.x3_c03145{left:511.919892px;}
.x2_c03145{left:526.679604px;}
.xe_c03145{left:569.880036px;}
@media print{
.v0_c03145{vertical-align:0.000000pt;}
.v2_c03145{vertical-align:1.279488pt;}
.v1_c03145{vertical-align:29.441280pt;}
.lsc_c03145{letter-spacing:-0.642048pt;}
.ls7_c03145{letter-spacing:-0.544896pt;}
.ls9_c03145{letter-spacing:-0.511104pt;}
.ls16_c03145{letter-spacing:-0.337920pt;}
.lsf_c03145{letter-spacing:-0.244992pt;}
.lsd_c03145{letter-spacing:-0.232320pt;}
.ls6_c03145{letter-spacing:-0.215424pt;}
.ls4_c03145{letter-spacing:-0.105600pt;}
.ls15_c03145{letter-spacing:-0.021120pt;}
.ls13_c03145{letter-spacing:0.000000pt;}
.ls1_c03145{letter-spacing:0.005376pt;}
.ls11_c03145{letter-spacing:0.080256pt;}
.ls5_c03145{letter-spacing:0.114048pt;}
.ls17_c03145{letter-spacing:0.147840pt;}
.lsb_c03145{letter-spacing:0.451968pt;}
.ls12_c03145{letter-spacing:0.456960pt;}
.lse_c03145{letter-spacing:0.477312pt;}
.lsa_c03145{letter-spacing:0.515328pt;}
.ls10_c03145{letter-spacing:0.528000pt;}
.ls8_c03145{letter-spacing:0.532224pt;}
.ls2_c03145{letter-spacing:0.544896pt;}
.ls14_c03145{letter-spacing:0.587136pt;}
.ls3_c03145{letter-spacing:0.637824pt;}
.ls0_c03145{letter-spacing:0.642048pt;}
.wsb_c03145{word-spacing:-13.445376pt;}
.wse_c03145{word-spacing:-11.147136pt;}
.ws6_c03145{word-spacing:-11.075328pt;}
.ws8_c03145{word-spacing:-11.037312pt;}
.ws4_c03145{word-spacing:-10.344576pt;}
.ws2_c03145{word-spacing:-10.015104pt;}
.ws13_c03145{word-spacing:-0.963072pt;}
.ws10_c03145{word-spacing:-0.865920pt;}
.ws18_c03145{word-spacing:-0.639744pt;}
.ws1a_c03145{word-spacing:-0.468864pt;}
.ws17_c03145{word-spacing:-0.401280pt;}
.ws12_c03145{word-spacing:-0.105600pt;}
.ws15_c03145{word-spacing:-0.088704pt;}
.ws16_c03145{word-spacing:-0.076032pt;}
.ws11_c03145{word-spacing:0.000000pt;}
.ws19_c03145{word-spacing:0.016896pt;}
.ws14_c03145{word-spacing:0.321024pt;}
.wsf_c03145{word-spacing:3.244032pt;}
.wsd_c03145{word-spacing:5.858688pt;}
.ws9_c03145{word-spacing:26.932224pt;}
.wsa_c03145{word-spacing:29.600256pt;}
.wsc_c03145{word-spacing:32.127744pt;}
.ws1_c03145{word-spacing:33.563904pt;}
.ws0_c03145{word-spacing:33.796224pt;}
.ws3_c03145{word-spacing:34.860672pt;}
.ws5_c03145{word-spacing:35.468928pt;}
.ws7_c03145{word-spacing:37.357056pt;}
._0_c03145{margin-left:-1.731840pt;}
._2_c03145{width:1.317888pt;}
._4_c03145{width:2.935680pt;}
._a_c03145{width:12.532608pt;}
._9_c03145{width:17.048064pt;}
._8_c03145{width:18.860160pt;}
._5_c03145{width:20.118912pt;}
._6_c03145{width:22.636416pt;}
._7_c03145{width:24.934272pt;}
._1_c03145{width:44.668800pt;}
._3_c03145{width:45.805056pt;}
.fs0_c03145{font-size:42.240000pt;}
.fs1_c03145{font-size:53.760000pt;}
.y0_c03145{bottom:0.000000pt;}
.y1b_c03145{bottom:130.665211pt;}
.y1d_c03145{bottom:165.866875pt;}
.y1c_c03145{bottom:174.507067pt;}
.y1a_c03145{bottom:231.785659pt;}
.y19_c03145{bottom:245.225371pt;}
.y18_c03145{bottom:303.785851pt;}
.y17_c03145{bottom:317.225563pt;}
.y15_c03145{bottom:361.386427pt;}
.y11_c03145{bottom:377.386939pt;}
.y16_c03145{bottom:407.786011pt;}
.y14_c03145{bottom:437.226235pt;}
.y13_c03145{bottom:453.226747pt;}
.y10_c03145{bottom:482.666971pt;}
.y12_c03145{bottom:497.386555pt;}
.yf_c03145{bottom:513.387067pt;}
.y1e_c03145{bottom:546.027067pt;}
.yb_c03145{bottom:593.385179pt;}
.yd_c03145{bottom:628.586875pt;}
.yc_c03145{bottom:637.227067pt;}
.ya_c03145{bottom:707.945339pt;}
.y9_c03145{bottom:779.945531pt;}
.y7_c03145{bottom:823.786427pt;}
.y3_c03145{bottom:839.786939pt;}
.y8_c03145{bottom:870.505979pt;}
.y6_c03145{bottom:899.946203pt;}
.y5_c03145{bottom:915.946715pt;}
.y2_c03145{bottom:945.386939pt;}
.y4_c03145{bottom:959.786555pt;}
.y1_c03145{bottom:975.787067pt;}
.ye_c03145{bottom:1008.747067pt;}
.h3_c03145{height:28.916250pt;}
.h1_c03145{height:37.063125pt;}
.h2_c03145{height:37.166250pt;}
.h5_c03145{height:48.581988pt;}
.h4_c03145{height:66.504405pt;}
.h0_c03145{height:1122.666667pt;}
.w1_c03145{width:793.333333pt;}
.w0_c03145{width:793.626667pt;}
.x0_c03145{left:0.000000pt;}
.xd_c03145{left:104.000000pt;}
.x8_c03145{left:391.999872pt;}
.x4_c03145{left:396.160512pt;}
.xb_c03145{left:400.960000pt;}
.x7_c03145{left:404.799648pt;}
.x5_c03145{left:410.560128pt;}
.x1_c03145{left:411.840000pt;}
.xa_c03145{left:429.760320pt;}
.x9_c03145{left:437.439552pt;}
.x6_c03145{left:438.400512pt;}
.xc_c03145{left:450.560320pt;}
.x3_c03145{left:455.039904pt;}
.x2_c03145{left:468.159648pt;}
.xe_c03145{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03146 {
    display:none;
  }
  .loading-indicator_c03146.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03146 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03146 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03146" -> "#page-container .classname_c03146")
 */
.pf_c03146 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03146 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03146.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03146 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03146 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03146 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03146 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03146 {overflow:visible;}
  }
}
.c_c03146 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03146 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03146:after { /* webkit #35443 */
  content: '';
}
.t_c03146:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03146 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03146 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03146 { /* info for Javascript */
  display:none;
}
.l_c03146 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03146 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03146 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03146:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03146 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03146.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03146.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03146 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03146{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03146;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03146{font-family:ff1_c03146;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03146;src:url('chunks/assets/font_157e8cc95a4f1967064dce5c.woff2')format("woff");}.ff2_c03146{font-family:ff2_c03146;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03146;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03146{font-family:ff3_c03146;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03146{vertical-align:0.000000px;}
.v1_c03146{vertical-align:1.439424px;}
.lsb_c03146{letter-spacing:-1.197504px;}
.ls6_c03146{letter-spacing:-0.613008px;}
.ls8_c03146{letter-spacing:-0.574992px;}
.lse_c03146{letter-spacing:-0.275616px;}
.lsc_c03146{letter-spacing:-0.261360px;}
.ls5_c03146{letter-spacing:-0.242352px;}
.ls3_c03146{letter-spacing:-0.118800px;}
.ls11_c03146{letter-spacing:0.000000px;}
.ls1_c03146{letter-spacing:0.006048px;}
.ls4_c03146{letter-spacing:0.128304px;}
.lsa_c03146{letter-spacing:0.508464px;}
.ls10_c03146{letter-spacing:0.514080px;}
.lsd_c03146{letter-spacing:0.536976px;}
.ls9_c03146{letter-spacing:0.579744px;}
.lsf_c03146{letter-spacing:0.594000px;}
.ls7_c03146{letter-spacing:0.598752px;}
.ls2_c03146{letter-spacing:0.613008px;}
.ls0_c03146{letter-spacing:0.717552px;}
.sc__c03146{text-shadow:none;}
.sc0_c03146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03146{-webkit-text-stroke:0px transparent;}
.sc0_c03146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03146{word-spacing:-15.126048px;}
.wsa_c03146{word-spacing:-12.474000px;}
.ws8_c03146{word-spacing:-12.459744px;}
.ws9_c03146{word-spacing:-12.416976px;}
.ws4_c03146{word-spacing:-11.637648px;}
.ws2_c03146{word-spacing:-11.266992px;}
.ws10_c03146{word-spacing:-1.078704px;}
.wsd_c03146{word-spacing:-0.974160px;}
.ws14_c03146{word-spacing:-0.719712px;}
.wsf_c03146{word-spacing:-0.118800px;}
.ws12_c03146{word-spacing:-0.099792px;}
.ws13_c03146{word-spacing:-0.085536px;}
.wse_c03146{word-spacing:0.000000px;}
.ws11_c03146{word-spacing:0.836352px;}
.wsb_c03146{word-spacing:33.300288px;}
.ws6_c03146{word-spacing:36.742464px;}
.ws1_c03146{word-spacing:37.759392px;}
.ws0_c03146{word-spacing:38.020752px;}
.ws3_c03146{word-spacing:39.218256px;}
.ws5_c03146{word-spacing:39.902544px;}
.ws7_c03146{word-spacing:42.026688px;}
._0_c03146{margin-left:-1.948320px;}
._2_c03146{width:1.482624px;}
._4_c03146{width:3.302640px;}
._1_c03146{width:50.252400px;}
._3_c03146{width:51.530688px;}
.fc0_c03146{color:rgb(0,0,0);}
.fs0_c03146{font-size:47.520000px;}
.fs1_c03146{font-size:60.480000px;}
.y0_c03146{bottom:0.000000px;}
.y19_c03146{bottom:146.998362px;}
.y1b_c03146{bottom:186.600234px;}
.y1a_c03146{bottom:196.320450px;}
.y18_c03146{bottom:275.878542px;}
.y17_c03146{bottom:356.878758px;}
.y15_c03146{bottom:406.559730px;}
.y11_c03146{bottom:424.560306px;}
.y16_c03146{bottom:458.759262px;}
.y14_c03146{bottom:491.879514px;}
.y13_c03146{bottom:509.880090px;}
.y10_c03146{bottom:543.000342px;}
.y12_c03146{bottom:559.559874px;}
.yf_c03146{bottom:577.560450px;}
.y1c_c03146{bottom:614.280450px;}
.yb_c03146{bottom:667.558326px;}
.yd_c03146{bottom:707.160234px;}
.yc_c03146{bottom:716.880450px;}
.ya_c03146{bottom:796.438506px;}
.y9_c03146{bottom:877.438722px;}
.y7_c03146{bottom:926.759730px;}
.y3_c03146{bottom:944.760306px;}
.y8_c03146{bottom:979.319226px;}
.y6_c03146{bottom:1012.439478px;}
.y5_c03146{bottom:1030.440054px;}
.y2_c03146{bottom:1063.560306px;}
.y4_c03146{bottom:1079.759874px;}
.y1_c03146{bottom:1097.760450px;}
.ye_c03146{bottom:1134.840450px;}
.h3_c03146{height:32.530781px;}
.h1_c03146{height:41.696016px;}
.h2_c03146{height:41.812031px;}
.h4_c03146{height:54.654737px;}
.h0_c03146{height:1263.000000px;}
.w1_c03146{width:892.500000px;}
.w0_c03146{width:892.830000px;}
.x0_c03146{left:0.000000px;}
.xd_c03146{left:117.000000px;}
.x8_c03146{left:440.999856px;}
.x4_c03146{left:445.680576px;}
.xb_c03146{left:451.080000px;}
.x7_c03146{left:455.399604px;}
.x5_c03146{left:461.880144px;}
.x1_c03146{left:463.320000px;}
.xa_c03146{left:483.480360px;}
.x9_c03146{left:492.119496px;}
.x6_c03146{left:493.200576px;}
.xc_c03146{left:506.880360px;}
.x3_c03146{left:511.919892px;}
.x2_c03146{left:526.679604px;}
@media print{
.v0_c03146{vertical-align:0.000000pt;}
.v1_c03146{vertical-align:1.279488pt;}
.lsb_c03146{letter-spacing:-1.064448pt;}
.ls6_c03146{letter-spacing:-0.544896pt;}
.ls8_c03146{letter-spacing:-0.511104pt;}
.lse_c03146{letter-spacing:-0.244992pt;}
.lsc_c03146{letter-spacing:-0.232320pt;}
.ls5_c03146{letter-spacing:-0.215424pt;}
.ls3_c03146{letter-spacing:-0.105600pt;}
.ls11_c03146{letter-spacing:0.000000pt;}
.ls1_c03146{letter-spacing:0.005376pt;}
.ls4_c03146{letter-spacing:0.114048pt;}
.lsa_c03146{letter-spacing:0.451968pt;}
.ls10_c03146{letter-spacing:0.456960pt;}
.lsd_c03146{letter-spacing:0.477312pt;}
.ls9_c03146{letter-spacing:0.515328pt;}
.lsf_c03146{letter-spacing:0.528000pt;}
.ls7_c03146{letter-spacing:0.532224pt;}
.ls2_c03146{letter-spacing:0.544896pt;}
.ls0_c03146{letter-spacing:0.637824pt;}
.wsc_c03146{word-spacing:-13.445376pt;}
.wsa_c03146{word-spacing:-11.088000pt;}
.ws8_c03146{word-spacing:-11.075328pt;}
.ws9_c03146{word-spacing:-11.037312pt;}
.ws4_c03146{word-spacing:-10.344576pt;}
.ws2_c03146{word-spacing:-10.015104pt;}
.ws10_c03146{word-spacing:-0.958848pt;}
.wsd_c03146{word-spacing:-0.865920pt;}
.ws14_c03146{word-spacing:-0.639744pt;}
.wsf_c03146{word-spacing:-0.105600pt;}
.ws12_c03146{word-spacing:-0.088704pt;}
.ws13_c03146{word-spacing:-0.076032pt;}
.wse_c03146{word-spacing:0.000000pt;}
.ws11_c03146{word-spacing:0.743424pt;}
.wsb_c03146{word-spacing:29.600256pt;}
.ws6_c03146{word-spacing:32.659968pt;}
.ws1_c03146{word-spacing:33.563904pt;}
.ws0_c03146{word-spacing:33.796224pt;}
.ws3_c03146{word-spacing:34.860672pt;}
.ws5_c03146{word-spacing:35.468928pt;}
.ws7_c03146{word-spacing:37.357056pt;}
._0_c03146{margin-left:-1.731840pt;}
._2_c03146{width:1.317888pt;}
._4_c03146{width:2.935680pt;}
._1_c03146{width:44.668800pt;}
._3_c03146{width:45.805056pt;}
.fs0_c03146{font-size:42.240000pt;}
.fs1_c03146{font-size:53.760000pt;}
.y0_c03146{bottom:0.000000pt;}
.y19_c03146{bottom:130.665211pt;}
.y1b_c03146{bottom:165.866875pt;}
.y1a_c03146{bottom:174.507067pt;}
.y18_c03146{bottom:245.225371pt;}
.y17_c03146{bottom:317.225563pt;}
.y15_c03146{bottom:361.386427pt;}
.y11_c03146{bottom:377.386939pt;}
.y16_c03146{bottom:407.786011pt;}
.y14_c03146{bottom:437.226235pt;}
.y13_c03146{bottom:453.226747pt;}
.y10_c03146{bottom:482.666971pt;}
.y12_c03146{bottom:497.386555pt;}
.yf_c03146{bottom:513.387067pt;}
.y1c_c03146{bottom:546.027067pt;}
.yb_c03146{bottom:593.385179pt;}
.yd_c03146{bottom:628.586875pt;}
.yc_c03146{bottom:637.227067pt;}
.ya_c03146{bottom:707.945339pt;}
.y9_c03146{bottom:779.945531pt;}
.y7_c03146{bottom:823.786427pt;}
.y3_c03146{bottom:839.786939pt;}
.y8_c03146{bottom:870.505979pt;}
.y6_c03146{bottom:899.946203pt;}
.y5_c03146{bottom:915.946715pt;}
.y2_c03146{bottom:945.386939pt;}
.y4_c03146{bottom:959.786555pt;}
.y1_c03146{bottom:975.787067pt;}
.ye_c03146{bottom:1008.747067pt;}
.h3_c03146{height:28.916250pt;}
.h1_c03146{height:37.063125pt;}
.h2_c03146{height:37.166250pt;}
.h4_c03146{height:48.581988pt;}
.h0_c03146{height:1122.666667pt;}
.w1_c03146{width:793.333333pt;}
.w0_c03146{width:793.626667pt;}
.x0_c03146{left:0.000000pt;}
.xd_c03146{left:104.000000pt;}
.x8_c03146{left:391.999872pt;}
.x4_c03146{left:396.160512pt;}
.xb_c03146{left:400.960000pt;}
.x7_c03146{left:404.799648pt;}
.x5_c03146{left:410.560128pt;}
.x1_c03146{left:411.840000pt;}
.xa_c03146{left:429.760320pt;}
.x9_c03146{left:437.439552pt;}
.x6_c03146{left:438.400512pt;}
.xc_c03146{left:450.560320pt;}
.x3_c03146{left:455.039904pt;}
.x2_c03146{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03147 {
    display:none;
  }
  .loading-indicator_c03147.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03147 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03147 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03147" -> "#page-container .classname_c03147")
 */
.pf_c03147 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03147 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03147.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03147 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03147 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03147 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03147 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03147 {overflow:visible;}
  }
}
.c_c03147 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03147 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03147:after { /* webkit #35443 */
  content: '';
}
.t_c03147:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03147 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03147 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03147 { /* info for Javascript */
  display:none;
}
.l_c03147 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03147 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03147 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03147:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03147 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03147.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03147.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03147 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03147{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03147;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03147{font-family:ff1_c03147;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03147;src:url('chunks/assets/font_193b6da1012da3081d5f3ef5.woff2')format("woff");}.ff2_c03147{font-family:ff2_c03147;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03147;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03147{font-family:ff3_c03147;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03147{vertical-align:0.000000px;}
.v1_c03147{vertical-align:1.439424px;}
.ls15_c03147{letter-spacing:-0.793584px;}
.ls14_c03147{letter-spacing:-0.774576px;}
.lsb_c03147{letter-spacing:-0.736560px;}
.lsd_c03147{letter-spacing:-0.722304px;}
.ls7_c03147{letter-spacing:-0.613008px;}
.ls9_c03147{letter-spacing:-0.574992px;}
.ls10_c03147{letter-spacing:-0.275616px;}
.ls16_c03147{letter-spacing:-0.270864px;}
.lse_c03147{letter-spacing:-0.261360px;}
.ls6_c03147{letter-spacing:-0.242352px;}
.ls4_c03147{letter-spacing:-0.118800px;}
.ls13_c03147{letter-spacing:0.000000px;}
.ls2_c03147{letter-spacing:0.006048px;}
.ls5_c03147{letter-spacing:0.128304px;}
.lsc_c03147{letter-spacing:0.508464px;}
.ls12_c03147{letter-spacing:0.514080px;}
.lsf_c03147{letter-spacing:0.536976px;}
.lsa_c03147{letter-spacing:0.579744px;}
.ls11_c03147{letter-spacing:0.594000px;}
.ls8_c03147{letter-spacing:0.598752px;}
.ls3_c03147{letter-spacing:0.613008px;}
.ls0_c03147{letter-spacing:0.651024px;}
.ls1_c03147{letter-spacing:0.717552px;}
.sc__c03147{text-shadow:none;}
.sc0_c03147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03147{-webkit-text-stroke:0px transparent;}
.sc0_c03147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03147{word-spacing:-15.126048px;}
.wsa_c03147{word-spacing:-12.474000px;}
.ws8_c03147{word-spacing:-12.459744px;}
.ws9_c03147{word-spacing:-12.416976px;}
.ws4_c03147{word-spacing:-11.637648px;}
.ws2_c03147{word-spacing:-11.266992px;}
.wsd_c03147{word-spacing:-11.105424px;}
.ws14_c03147{word-spacing:-1.078704px;}
.ws12_c03147{word-spacing:-1.012176px;}
.ws10_c03147{word-spacing:-0.974160px;}
.ws19_c03147{word-spacing:-0.719712px;}
.ws13_c03147{word-spacing:-0.118800px;}
.ws17_c03147{word-spacing:-0.099792px;}
.ws1b_c03147{word-spacing:-0.090288px;}
.ws18_c03147{word-spacing:-0.085536px;}
.ws11_c03147{word-spacing:0.000000px;}
.ws16_c03147{word-spacing:0.361152px;}
.ws15_c03147{word-spacing:0.375408px;}
.ws1a_c03147{word-spacing:0.432432px;}
.wsf_c03147{word-spacing:6.629040px;}
.wsb_c03147{word-spacing:33.300288px;}
.wse_c03147{word-spacing:34.836912px;}
.ws6_c03147{word-spacing:36.742464px;}
.ws1_c03147{word-spacing:37.759392px;}
.ws0_c03147{word-spacing:38.020752px;}
.ws3_c03147{word-spacing:39.218256px;}
.ws5_c03147{word-spacing:39.902544px;}
.ws7_c03147{word-spacing:42.026688px;}
._0_c03147{margin-left:-1.948320px;}
._2_c03147{width:1.482624px;}
._4_c03147{width:3.302640px;}
._6_c03147{width:19.982160px;}
._7_c03147{width:23.451120px;}
._5_c03147{width:24.691392px;}
._1_c03147{width:50.252400px;}
._3_c03147{width:51.530688px;}
.fc0_c03147{color:rgb(0,0,0);}
.fs0_c03147{font-size:47.520000px;}
.fs1_c03147{font-size:60.480000px;}
.y0_c03147{bottom:0.000000px;}
.y1a_c03147{bottom:131.878686px;}
.y19_c03147{bottom:146.998362px;}
.y1c_c03147{bottom:186.600234px;}
.y1b_c03147{bottom:196.320450px;}
.y18_c03147{bottom:275.878542px;}
.y17_c03147{bottom:356.878758px;}
.y15_c03147{bottom:406.559730px;}
.y11_c03147{bottom:424.560306px;}
.y16_c03147{bottom:458.759262px;}
.y14_c03147{bottom:491.879514px;}
.y13_c03147{bottom:509.880090px;}
.y10_c03147{bottom:543.000342px;}
.y12_c03147{bottom:559.559874px;}
.yf_c03147{bottom:577.560450px;}
.y1d_c03147{bottom:614.280450px;}
.yb_c03147{bottom:667.558326px;}
.yd_c03147{bottom:707.160234px;}
.yc_c03147{bottom:716.880450px;}
.ya_c03147{bottom:796.438506px;}
.y9_c03147{bottom:877.438722px;}
.y7_c03147{bottom:926.759730px;}
.y3_c03147{bottom:944.760306px;}
.y8_c03147{bottom:979.319226px;}
.y6_c03147{bottom:1012.439478px;}
.y5_c03147{bottom:1030.440054px;}
.y2_c03147{bottom:1063.560306px;}
.y4_c03147{bottom:1079.759874px;}
.y1_c03147{bottom:1097.760450px;}
.ye_c03147{bottom:1134.840450px;}
.h3_c03147{height:32.530781px;}
.h1_c03147{height:41.696016px;}
.h2_c03147{height:41.812031px;}
.h4_c03147{height:54.654737px;}
.h0_c03147{height:1263.000000px;}
.w1_c03147{width:892.500000px;}
.w0_c03147{width:892.830000px;}
.x0_c03147{left:0.000000px;}
.xd_c03147{left:117.000000px;}
.x8_c03147{left:440.999856px;}
.x4_c03147{left:445.680576px;}
.xb_c03147{left:451.080000px;}
.x7_c03147{left:455.399604px;}
.x5_c03147{left:461.880144px;}
.x1_c03147{left:463.320000px;}
.xa_c03147{left:483.480360px;}
.x9_c03147{left:492.119496px;}
.x6_c03147{left:493.200576px;}
.xc_c03147{left:506.880360px;}
.x3_c03147{left:511.919892px;}
.x2_c03147{left:526.679604px;}
.xe_c03147{left:569.880036px;}
@media print{
.v0_c03147{vertical-align:0.000000pt;}
.v1_c03147{vertical-align:1.279488pt;}
.ls15_c03147{letter-spacing:-0.705408pt;}
.ls14_c03147{letter-spacing:-0.688512pt;}
.lsb_c03147{letter-spacing:-0.654720pt;}
.lsd_c03147{letter-spacing:-0.642048pt;}
.ls7_c03147{letter-spacing:-0.544896pt;}
.ls9_c03147{letter-spacing:-0.511104pt;}
.ls10_c03147{letter-spacing:-0.244992pt;}
.ls16_c03147{letter-spacing:-0.240768pt;}
.lse_c03147{letter-spacing:-0.232320pt;}
.ls6_c03147{letter-spacing:-0.215424pt;}
.ls4_c03147{letter-spacing:-0.105600pt;}
.ls13_c03147{letter-spacing:0.000000pt;}
.ls2_c03147{letter-spacing:0.005376pt;}
.ls5_c03147{letter-spacing:0.114048pt;}
.lsc_c03147{letter-spacing:0.451968pt;}
.ls12_c03147{letter-spacing:0.456960pt;}
.lsf_c03147{letter-spacing:0.477312pt;}
.lsa_c03147{letter-spacing:0.515328pt;}
.ls11_c03147{letter-spacing:0.528000pt;}
.ls8_c03147{letter-spacing:0.532224pt;}
.ls3_c03147{letter-spacing:0.544896pt;}
.ls0_c03147{letter-spacing:0.578688pt;}
.ls1_c03147{letter-spacing:0.637824pt;}
.wsc_c03147{word-spacing:-13.445376pt;}
.wsa_c03147{word-spacing:-11.088000pt;}
.ws8_c03147{word-spacing:-11.075328pt;}
.ws9_c03147{word-spacing:-11.037312pt;}
.ws4_c03147{word-spacing:-10.344576pt;}
.ws2_c03147{word-spacing:-10.015104pt;}
.wsd_c03147{word-spacing:-9.871488pt;}
.ws14_c03147{word-spacing:-0.958848pt;}
.ws12_c03147{word-spacing:-0.899712pt;}
.ws10_c03147{word-spacing:-0.865920pt;}
.ws19_c03147{word-spacing:-0.639744pt;}
.ws13_c03147{word-spacing:-0.105600pt;}
.ws17_c03147{word-spacing:-0.088704pt;}
.ws1b_c03147{word-spacing:-0.080256pt;}
.ws18_c03147{word-spacing:-0.076032pt;}
.ws11_c03147{word-spacing:0.000000pt;}
.ws16_c03147{word-spacing:0.321024pt;}
.ws15_c03147{word-spacing:0.333696pt;}
.ws1a_c03147{word-spacing:0.384384pt;}
.wsf_c03147{word-spacing:5.892480pt;}
.wsb_c03147{word-spacing:29.600256pt;}
.wse_c03147{word-spacing:30.966144pt;}
.ws6_c03147{word-spacing:32.659968pt;}
.ws1_c03147{word-spacing:33.563904pt;}
.ws0_c03147{word-spacing:33.796224pt;}
.ws3_c03147{word-spacing:34.860672pt;}
.ws5_c03147{word-spacing:35.468928pt;}
.ws7_c03147{word-spacing:37.357056pt;}
._0_c03147{margin-left:-1.731840pt;}
._2_c03147{width:1.317888pt;}
._4_c03147{width:2.935680pt;}
._6_c03147{width:17.761920pt;}
._7_c03147{width:20.845440pt;}
._5_c03147{width:21.947904pt;}
._1_c03147{width:44.668800pt;}
._3_c03147{width:45.805056pt;}
.fs0_c03147{font-size:42.240000pt;}
.fs1_c03147{font-size:53.760000pt;}
.y0_c03147{bottom:0.000000pt;}
.y1a_c03147{bottom:117.225499pt;}
.y19_c03147{bottom:130.665211pt;}
.y1c_c03147{bottom:165.866875pt;}
.y1b_c03147{bottom:174.507067pt;}
.y18_c03147{bottom:245.225371pt;}
.y17_c03147{bottom:317.225563pt;}
.y15_c03147{bottom:361.386427pt;}
.y11_c03147{bottom:377.386939pt;}
.y16_c03147{bottom:407.786011pt;}
.y14_c03147{bottom:437.226235pt;}
.y13_c03147{bottom:453.226747pt;}
.y10_c03147{bottom:482.666971pt;}
.y12_c03147{bottom:497.386555pt;}
.yf_c03147{bottom:513.387067pt;}
.y1d_c03147{bottom:546.027067pt;}
.yb_c03147{bottom:593.385179pt;}
.yd_c03147{bottom:628.586875pt;}
.yc_c03147{bottom:637.227067pt;}
.ya_c03147{bottom:707.945339pt;}
.y9_c03147{bottom:779.945531pt;}
.y7_c03147{bottom:823.786427pt;}
.y3_c03147{bottom:839.786939pt;}
.y8_c03147{bottom:870.505979pt;}
.y6_c03147{bottom:899.946203pt;}
.y5_c03147{bottom:915.946715pt;}
.y2_c03147{bottom:945.386939pt;}
.y4_c03147{bottom:959.786555pt;}
.y1_c03147{bottom:975.787067pt;}
.ye_c03147{bottom:1008.747067pt;}
.h3_c03147{height:28.916250pt;}
.h1_c03147{height:37.063125pt;}
.h2_c03147{height:37.166250pt;}
.h4_c03147{height:48.581988pt;}
.h0_c03147{height:1122.666667pt;}
.w1_c03147{width:793.333333pt;}
.w0_c03147{width:793.626667pt;}
.x0_c03147{left:0.000000pt;}
.xd_c03147{left:104.000000pt;}
.x8_c03147{left:391.999872pt;}
.x4_c03147{left:396.160512pt;}
.xb_c03147{left:400.960000pt;}
.x7_c03147{left:404.799648pt;}
.x5_c03147{left:410.560128pt;}
.x1_c03147{left:411.840000pt;}
.xa_c03147{left:429.760320pt;}
.x9_c03147{left:437.439552pt;}
.x6_c03147{left:438.400512pt;}
.xc_c03147{left:450.560320pt;}
.x3_c03147{left:455.039904pt;}
.x2_c03147{left:468.159648pt;}
.xe_c03147{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03148 {
    display:none;
  }
  .loading-indicator_c03148.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03148 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03148 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03148" -> "#page-container .classname_c03148")
 */
.pf_c03148 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03148 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03148.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03148 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03148 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03148 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03148 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03148 {overflow:visible;}
  }
}
.c_c03148 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03148 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03148:after { /* webkit #35443 */
  content: '';
}
.t_c03148:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03148 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03148 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03148 { /* info for Javascript */
  display:none;
}
.l_c03148 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03148 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03148 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03148:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03148 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03148.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03148.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03148 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03148{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03148;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03148{font-family:ff1_c03148;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03148;src:url('chunks/assets/font_74b2d2868e765f5159a32728.woff2')format("woff");}.ff2_c03148{font-family:ff2_c03148;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03148;src:url('chunks/assets/font_94bdac09a3756a6c54a23b20.woff2')format("woff");}.ff3_c03148{font-family:ff3_c03148;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03148{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03148{vertical-align:0.000000px;}
.v1_c03148{vertical-align:1.439424px;}
.lsd_c03148{letter-spacing:-0.793584px;}
.ls11_c03148{letter-spacing:-0.736560px;}
.ls8_c03148{letter-spacing:-0.613008px;}
.lsa_c03148{letter-spacing:-0.574992px;}
.ls17_c03148{letter-spacing:-0.375408px;}
.ls18_c03148{letter-spacing:-0.275616px;}
.ls12_c03148{letter-spacing:-0.270864px;}
.lsf_c03148{letter-spacing:-0.261360px;}
.ls7_c03148{letter-spacing:-0.242352px;}
.ls5_c03148{letter-spacing:-0.118800px;}
.ls15_c03148{letter-spacing:0.000000px;}
.ls2_c03148{letter-spacing:0.006048px;}
.ls6_c03148{letter-spacing:0.128304px;}
.ls16_c03148{letter-spacing:0.228096px;}
.lse_c03148{letter-spacing:0.242352px;}
.lsc_c03148{letter-spacing:0.508464px;}
.ls14_c03148{letter-spacing:0.514080px;}
.ls10_c03148{letter-spacing:0.536976px;}
.lsb_c03148{letter-spacing:0.579744px;}
.ls13_c03148{letter-spacing:0.594000px;}
.ls9_c03148{letter-spacing:0.598752px;}
.ls3_c03148{letter-spacing:0.613008px;}
.ls0_c03148{letter-spacing:0.651024px;}
.ls4_c03148{letter-spacing:0.717552px;}
.ls1_c03148{letter-spacing:0.722304px;}
.sc__c03148{text-shadow:none;}
.sc0_c03148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03148{-webkit-text-stroke:0px transparent;}
.sc0_c03148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03148{word-spacing:-15.126048px;}
.wsb_c03148{word-spacing:-12.474000px;}
.ws6_c03148{word-spacing:-12.459744px;}
.wsf_c03148{word-spacing:-12.416976px;}
.wse_c03148{word-spacing:-12.388464px;}
.ws4_c03148{word-spacing:-11.637648px;}
.ws2_c03148{word-spacing:-11.266992px;}
.ws14_c03148{word-spacing:-1.083456px;}
.ws12_c03148{word-spacing:-1.012176px;}
.ws10_c03148{word-spacing:-0.974160px;}
.ws1a_c03148{word-spacing:-0.719712px;}
.ws16_c03148{word-spacing:-0.603504px;}
.ws1b_c03148{word-spacing:-0.589248px;}
.ws13_c03148{word-spacing:-0.118800px;}
.ws17_c03148{word-spacing:-0.099792px;}
.ws18_c03148{word-spacing:-0.090288px;}
.ws19_c03148{word-spacing:-0.085536px;}
.ws11_c03148{word-spacing:0.000000px;}
.ws1c_c03148{word-spacing:0.014256px;}
.ws15_c03148{word-spacing:0.432432px;}
.wsa_c03148{word-spacing:6.629040px;}
.wsc_c03148{word-spacing:33.300288px;}
.ws9_c03148{word-spacing:34.836912px;}
.ws8_c03148{word-spacing:36.143712px;}
.ws1_c03148{word-spacing:37.759392px;}
.ws0_c03148{word-spacing:38.020752px;}
.ws3_c03148{word-spacing:39.218256px;}
.ws5_c03148{word-spacing:39.902544px;}
.ws7_c03148{word-spacing:42.026688px;}
._0_c03148{margin-left:-1.948320px;}
._2_c03148{width:1.482624px;}
._4_c03148{width:3.302640px;}
._6_c03148{width:19.982160px;}
._7_c03148{width:23.451120px;}
._5_c03148{width:24.691392px;}
._1_c03148{width:50.252400px;}
._3_c03148{width:51.530688px;}
.fc0_c03148{color:rgb(0,0,0);}
.fs0_c03148{font-size:47.520000px;}
.fs1_c03148{font-size:60.480000px;}
.y0_c03148{bottom:0.000000px;}
.y1a_c03148{bottom:65.880450px;}
.y1d_c03148{bottom:147.000054px;}
.y1f_c03148{bottom:186.600234px;}
.y1e_c03148{bottom:196.320450px;}
.y1c_c03148{bottom:275.880234px;}
.y19_c03148{bottom:291.000000px;}
.y18_c03148{bottom:356.878758px;}
.y1b_c03148{bottom:356.880450px;}
.y16_c03148{bottom:406.559730px;}
.y12_c03148{bottom:424.560306px;}
.y17_c03148{bottom:458.759262px;}
.y15_c03148{bottom:491.879514px;}
.y14_c03148{bottom:509.880090px;}
.y11_c03148{bottom:543.000342px;}
.y13_c03148{bottom:559.559874px;}
.y10_c03148{bottom:577.560450px;}
.y20_c03148{bottom:614.280450px;}
.yc_c03148{bottom:652.438650px;}
.yb_c03148{bottom:667.558326px;}
.ye_c03148{bottom:707.160234px;}
.yd_c03148{bottom:716.880450px;}
.ya_c03148{bottom:796.438506px;}
.y9_c03148{bottom:877.438722px;}
.y7_c03148{bottom:926.759730px;}
.y3_c03148{bottom:944.760306px;}
.y8_c03148{bottom:979.319226px;}
.y6_c03148{bottom:1012.439478px;}
.y5_c03148{bottom:1030.440054px;}
.y2_c03148{bottom:1063.560306px;}
.y4_c03148{bottom:1079.759874px;}
.y1_c03148{bottom:1097.760450px;}
.yf_c03148{bottom:1134.840450px;}
.h3_c03148{height:32.530781px;}
.h1_c03148{height:41.696016px;}
.h2_c03148{height:41.812031px;}
.h4_c03148{height:54.654737px;}
.h5_c03148{height:78.480000px;}
.h0_c03148{height:1263.000000px;}
.w2_c03148{width:215.280000px;}
.w1_c03148{width:892.500000px;}
.w0_c03148{width:892.830000px;}
.x0_c03148{left:0.000000px;}
.xe_c03148{left:117.000000px;}
.x8_c03148{left:440.999856px;}
.x4_c03148{left:445.680576px;}
.xc_c03148{left:451.080000px;}
.x7_c03148{left:455.399604px;}
.x5_c03148{left:461.880144px;}
.x1_c03148{left:463.320000px;}
.xa_c03148{left:483.480360px;}
.x9_c03148{left:492.119496px;}
.x6_c03148{left:493.200576px;}
.xd_c03148{left:506.880360px;}
.x3_c03148{left:511.919892px;}
.x2_c03148{left:526.679604px;}
.xb_c03148{left:569.880036px;}
.xf_c03148{left:618.840000px;}
@media print{
.v0_c03148{vertical-align:0.000000pt;}
.v1_c03148{vertical-align:1.279488pt;}
.lsd_c03148{letter-spacing:-0.705408pt;}
.ls11_c03148{letter-spacing:-0.654720pt;}
.ls8_c03148{letter-spacing:-0.544896pt;}
.lsa_c03148{letter-spacing:-0.511104pt;}
.ls17_c03148{letter-spacing:-0.333696pt;}
.ls18_c03148{letter-spacing:-0.244992pt;}
.ls12_c03148{letter-spacing:-0.240768pt;}
.lsf_c03148{letter-spacing:-0.232320pt;}
.ls7_c03148{letter-spacing:-0.215424pt;}
.ls5_c03148{letter-spacing:-0.105600pt;}
.ls15_c03148{letter-spacing:0.000000pt;}
.ls2_c03148{letter-spacing:0.005376pt;}
.ls6_c03148{letter-spacing:0.114048pt;}
.ls16_c03148{letter-spacing:0.202752pt;}
.lse_c03148{letter-spacing:0.215424pt;}
.lsc_c03148{letter-spacing:0.451968pt;}
.ls14_c03148{letter-spacing:0.456960pt;}
.ls10_c03148{letter-spacing:0.477312pt;}
.lsb_c03148{letter-spacing:0.515328pt;}
.ls13_c03148{letter-spacing:0.528000pt;}
.ls9_c03148{letter-spacing:0.532224pt;}
.ls3_c03148{letter-spacing:0.544896pt;}
.ls0_c03148{letter-spacing:0.578688pt;}
.ls4_c03148{letter-spacing:0.637824pt;}
.ls1_c03148{letter-spacing:0.642048pt;}
.wsd_c03148{word-spacing:-13.445376pt;}
.wsb_c03148{word-spacing:-11.088000pt;}
.ws6_c03148{word-spacing:-11.075328pt;}
.wsf_c03148{word-spacing:-11.037312pt;}
.wse_c03148{word-spacing:-11.011968pt;}
.ws4_c03148{word-spacing:-10.344576pt;}
.ws2_c03148{word-spacing:-10.015104pt;}
.ws14_c03148{word-spacing:-0.963072pt;}
.ws12_c03148{word-spacing:-0.899712pt;}
.ws10_c03148{word-spacing:-0.865920pt;}
.ws1a_c03148{word-spacing:-0.639744pt;}
.ws16_c03148{word-spacing:-0.536448pt;}
.ws1b_c03148{word-spacing:-0.523776pt;}
.ws13_c03148{word-spacing:-0.105600pt;}
.ws17_c03148{word-spacing:-0.088704pt;}
.ws18_c03148{word-spacing:-0.080256pt;}
.ws19_c03148{word-spacing:-0.076032pt;}
.ws11_c03148{word-spacing:0.000000pt;}
.ws1c_c03148{word-spacing:0.012672pt;}
.ws15_c03148{word-spacing:0.384384pt;}
.wsa_c03148{word-spacing:5.892480pt;}
.wsc_c03148{word-spacing:29.600256pt;}
.ws9_c03148{word-spacing:30.966144pt;}
.ws8_c03148{word-spacing:32.127744pt;}
.ws1_c03148{word-spacing:33.563904pt;}
.ws0_c03148{word-spacing:33.796224pt;}
.ws3_c03148{word-spacing:34.860672pt;}
.ws5_c03148{word-spacing:35.468928pt;}
.ws7_c03148{word-spacing:37.357056pt;}
._0_c03148{margin-left:-1.731840pt;}
._2_c03148{width:1.317888pt;}
._4_c03148{width:2.935680pt;}
._6_c03148{width:17.761920pt;}
._7_c03148{width:20.845440pt;}
._5_c03148{width:21.947904pt;}
._1_c03148{width:44.668800pt;}
._3_c03148{width:45.805056pt;}
.fs0_c03148{font-size:42.240000pt;}
.fs1_c03148{font-size:53.760000pt;}
.y0_c03148{bottom:0.000000pt;}
.y1a_c03148{bottom:58.560400pt;}
.y1d_c03148{bottom:130.666715pt;}
.y1f_c03148{bottom:165.866875pt;}
.y1e_c03148{bottom:174.507067pt;}
.y1c_c03148{bottom:245.226875pt;}
.y19_c03148{bottom:258.666667pt;}
.y18_c03148{bottom:317.225563pt;}
.y1b_c03148{bottom:317.227067pt;}
.y16_c03148{bottom:361.386427pt;}
.y12_c03148{bottom:377.386939pt;}
.y17_c03148{bottom:407.786011pt;}
.y15_c03148{bottom:437.226235pt;}
.y14_c03148{bottom:453.226747pt;}
.y11_c03148{bottom:482.666971pt;}
.y13_c03148{bottom:497.386555pt;}
.y10_c03148{bottom:513.387067pt;}
.y20_c03148{bottom:546.027067pt;}
.yc_c03148{bottom:579.945467pt;}
.yb_c03148{bottom:593.385179pt;}
.ye_c03148{bottom:628.586875pt;}
.yd_c03148{bottom:637.227067pt;}
.ya_c03148{bottom:707.945339pt;}
.y9_c03148{bottom:779.945531pt;}
.y7_c03148{bottom:823.786427pt;}
.y3_c03148{bottom:839.786939pt;}
.y8_c03148{bottom:870.505979pt;}
.y6_c03148{bottom:899.946203pt;}
.y5_c03148{bottom:915.946715pt;}
.y2_c03148{bottom:945.386939pt;}
.y4_c03148{bottom:959.786555pt;}
.y1_c03148{bottom:975.787067pt;}
.yf_c03148{bottom:1008.747067pt;}
.h3_c03148{height:28.916250pt;}
.h1_c03148{height:37.063125pt;}
.h2_c03148{height:37.166250pt;}
.h4_c03148{height:48.581988pt;}
.h5_c03148{height:69.760000pt;}
.h0_c03148{height:1122.666667pt;}
.w2_c03148{width:191.360000pt;}
.w1_c03148{width:793.333333pt;}
.w0_c03148{width:793.626667pt;}
.x0_c03148{left:0.000000pt;}
.xe_c03148{left:104.000000pt;}
.x8_c03148{left:391.999872pt;}
.x4_c03148{left:396.160512pt;}
.xc_c03148{left:400.960000pt;}
.x7_c03148{left:404.799648pt;}
.x5_c03148{left:410.560128pt;}
.x1_c03148{left:411.840000pt;}
.xa_c03148{left:429.760320pt;}
.x9_c03148{left:437.439552pt;}
.x6_c03148{left:438.400512pt;}
.xd_c03148{left:450.560320pt;}
.x3_c03148{left:455.039904pt;}
.x2_c03148{left:468.159648pt;}
.xb_c03148{left:506.560032pt;}
.xf_c03148{left:550.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03149 {
    display:none;
  }
  .loading-indicator_c03149.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03149 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03149 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03149" -> "#page-container .classname_c03149")
 */
.pf_c03149 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03149 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03149.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03149 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03149 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03149 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03149 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03149 {overflow:visible;}
  }
}
.c_c03149 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03149 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03149:after { /* webkit #35443 */
  content: '';
}
.t_c03149:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03149 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03149 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03149 { /* info for Javascript */
  display:none;
}
.l_c03149 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03149 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03149 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03149:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03149 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03149.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03149.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03149 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03149{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03149;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03149{font-family:ff1_c03149;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03149;src:url('chunks/assets/font_e9270196d52e93b26e774577.woff2')format("woff");}.ff2_c03149{font-family:ff2_c03149;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03149;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03149{font-family:ff3_c03149;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03149{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03149{vertical-align:0.000000px;}
.v1_c03149{vertical-align:1.439424px;}
.ls14_c03149{letter-spacing:-1.254528px;}
.lsd_c03149{letter-spacing:-1.197504px;}
.lsc_c03149{letter-spacing:-0.793584px;}
.ls7_c03149{letter-spacing:-0.613008px;}
.ls9_c03149{letter-spacing:-0.574992px;}
.ls10_c03149{letter-spacing:-0.275616px;}
.lse_c03149{letter-spacing:-0.261360px;}
.ls6_c03149{letter-spacing:-0.242352px;}
.ls4_c03149{letter-spacing:-0.118800px;}
.ls13_c03149{letter-spacing:0.000000px;}
.ls2_c03149{letter-spacing:0.006048px;}
.ls5_c03149{letter-spacing:0.128304px;}
.lsb_c03149{letter-spacing:0.508464px;}
.ls12_c03149{letter-spacing:0.514080px;}
.lsf_c03149{letter-spacing:0.536976px;}
.lsa_c03149{letter-spacing:0.579744px;}
.ls11_c03149{letter-spacing:0.594000px;}
.ls8_c03149{letter-spacing:0.598752px;}
.ls3_c03149{letter-spacing:0.613008px;}
.ls1_c03149{letter-spacing:0.717552px;}
.ls0_c03149{letter-spacing:0.722304px;}
.sc__c03149{text-shadow:none;}
.sc0_c03149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03149{-webkit-text-stroke:0px transparent;}
.sc0_c03149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03149{word-spacing:-15.126048px;}
.wsb_c03149{word-spacing:-12.474000px;}
.ws6_c03149{word-spacing:-12.459744px;}
.wsa_c03149{word-spacing:-12.416976px;}
.ws4_c03149{word-spacing:-11.637648px;}
.ws2_c03149{word-spacing:-11.266992px;}
.ws12_c03149{word-spacing:-1.083456px;}
.ws16_c03149{word-spacing:-1.078704px;}
.wsf_c03149{word-spacing:-0.974160px;}
.ws18_c03149{word-spacing:-0.719712px;}
.ws11_c03149{word-spacing:-0.118800px;}
.ws15_c03149{word-spacing:-0.099792px;}
.ws17_c03149{word-spacing:-0.085536px;}
.ws10_c03149{word-spacing:0.000000px;}
.ws13_c03149{word-spacing:0.432432px;}
.ws14_c03149{word-spacing:0.836352px;}
.ws19_c03149{word-spacing:0.893376px;}
.ws9_c03149{word-spacing:13.196304px;}
.wsc_c03149{word-spacing:33.300288px;}
.ws8_c03149{word-spacing:36.143712px;}
.wse_c03149{word-spacing:36.742464px;}
.ws1_c03149{word-spacing:37.759392px;}
.ws0_c03149{word-spacing:38.020752px;}
.ws3_c03149{word-spacing:39.218256px;}
.ws5_c03149{word-spacing:39.902544px;}
.ws7_c03149{word-spacing:42.026688px;}
._0_c03149{margin-left:-1.948320px;}
._2_c03149{width:1.482624px;}
._4_c03149{width:3.302640px;}
._7_c03149{width:20.637936px;}
._6_c03149{width:21.759408px;}
._8_c03149{width:26.592192px;}
._5_c03149{width:28.255392px;}
._1_c03149{width:50.252400px;}
._3_c03149{width:51.530688px;}
.fc0_c03149{color:rgb(0,0,0);}
.fs0_c03149{font-size:47.520000px;}
.fs1_c03149{font-size:60.480000px;}
.y0_c03149{bottom:0.000000px;}
.y1a_c03149{bottom:146.998362px;}
.y1c_c03149{bottom:186.600234px;}
.y1b_c03149{bottom:196.320450px;}
.y19_c03149{bottom:275.878542px;}
.y18_c03149{bottom:356.878758px;}
.y16_c03149{bottom:406.559730px;}
.y12_c03149{bottom:424.560306px;}
.y17_c03149{bottom:458.759262px;}
.y15_c03149{bottom:491.879514px;}
.y14_c03149{bottom:509.880090px;}
.y11_c03149{bottom:543.000342px;}
.y13_c03149{bottom:559.559874px;}
.y10_c03149{bottom:577.560450px;}
.y1d_c03149{bottom:614.280450px;}
.yc_c03149{bottom:667.558326px;}
.ye_c03149{bottom:707.160234px;}
.yd_c03149{bottom:716.880450px;}
.yb_c03149{bottom:781.318830px;}
.ya_c03149{bottom:796.438506px;}
.y9_c03149{bottom:877.438722px;}
.y7_c03149{bottom:926.759730px;}
.y3_c03149{bottom:944.760306px;}
.y8_c03149{bottom:979.319226px;}
.y6_c03149{bottom:1012.439478px;}
.y5_c03149{bottom:1030.440054px;}
.y2_c03149{bottom:1063.560306px;}
.y4_c03149{bottom:1079.759874px;}
.y1_c03149{bottom:1097.760450px;}
.yf_c03149{bottom:1134.840450px;}
.h3_c03149{height:32.530781px;}
.h1_c03149{height:41.696016px;}
.h2_c03149{height:41.812031px;}
.h4_c03149{height:54.654737px;}
.h0_c03149{height:1263.000000px;}
.w1_c03149{width:892.500000px;}
.w0_c03149{width:892.830000px;}
.x0_c03149{left:0.000000px;}
.xe_c03149{left:117.000000px;}
.x8_c03149{left:440.999856px;}
.x4_c03149{left:445.680576px;}
.xc_c03149{left:451.080000px;}
.x7_c03149{left:455.399604px;}
.x5_c03149{left:461.880144px;}
.x1_c03149{left:463.320000px;}
.xb_c03149{left:483.480360px;}
.x9_c03149{left:492.119496px;}
.x6_c03149{left:493.200576px;}
.xd_c03149{left:506.880360px;}
.x3_c03149{left:511.919892px;}
.x2_c03149{left:526.679604px;}
.xa_c03149{left:569.880036px;}
@media print{
.v0_c03149{vertical-align:0.000000pt;}
.v1_c03149{vertical-align:1.279488pt;}
.ls14_c03149{letter-spacing:-1.115136pt;}
.lsd_c03149{letter-spacing:-1.064448pt;}
.lsc_c03149{letter-spacing:-0.705408pt;}
.ls7_c03149{letter-spacing:-0.544896pt;}
.ls9_c03149{letter-spacing:-0.511104pt;}
.ls10_c03149{letter-spacing:-0.244992pt;}
.lse_c03149{letter-spacing:-0.232320pt;}
.ls6_c03149{letter-spacing:-0.215424pt;}
.ls4_c03149{letter-spacing:-0.105600pt;}
.ls13_c03149{letter-spacing:0.000000pt;}
.ls2_c03149{letter-spacing:0.005376pt;}
.ls5_c03149{letter-spacing:0.114048pt;}
.lsb_c03149{letter-spacing:0.451968pt;}
.ls12_c03149{letter-spacing:0.456960pt;}
.lsf_c03149{letter-spacing:0.477312pt;}
.lsa_c03149{letter-spacing:0.515328pt;}
.ls11_c03149{letter-spacing:0.528000pt;}
.ls8_c03149{letter-spacing:0.532224pt;}
.ls3_c03149{letter-spacing:0.544896pt;}
.ls1_c03149{letter-spacing:0.637824pt;}
.ls0_c03149{letter-spacing:0.642048pt;}
.wsd_c03149{word-spacing:-13.445376pt;}
.wsb_c03149{word-spacing:-11.088000pt;}
.ws6_c03149{word-spacing:-11.075328pt;}
.wsa_c03149{word-spacing:-11.037312pt;}
.ws4_c03149{word-spacing:-10.344576pt;}
.ws2_c03149{word-spacing:-10.015104pt;}
.ws12_c03149{word-spacing:-0.963072pt;}
.ws16_c03149{word-spacing:-0.958848pt;}
.wsf_c03149{word-spacing:-0.865920pt;}
.ws18_c03149{word-spacing:-0.639744pt;}
.ws11_c03149{word-spacing:-0.105600pt;}
.ws15_c03149{word-spacing:-0.088704pt;}
.ws17_c03149{word-spacing:-0.076032pt;}
.ws10_c03149{word-spacing:0.000000pt;}
.ws13_c03149{word-spacing:0.384384pt;}
.ws14_c03149{word-spacing:0.743424pt;}
.ws19_c03149{word-spacing:0.794112pt;}
.ws9_c03149{word-spacing:11.730048pt;}
.wsc_c03149{word-spacing:29.600256pt;}
.ws8_c03149{word-spacing:32.127744pt;}
.wse_c03149{word-spacing:32.659968pt;}
.ws1_c03149{word-spacing:33.563904pt;}
.ws0_c03149{word-spacing:33.796224pt;}
.ws3_c03149{word-spacing:34.860672pt;}
.ws5_c03149{word-spacing:35.468928pt;}
.ws7_c03149{word-spacing:37.357056pt;}
._0_c03149{margin-left:-1.731840pt;}
._2_c03149{width:1.317888pt;}
._4_c03149{width:2.935680pt;}
._7_c03149{width:18.344832pt;}
._6_c03149{width:19.341696pt;}
._8_c03149{width:23.637504pt;}
._5_c03149{width:25.115904pt;}
._1_c03149{width:44.668800pt;}
._3_c03149{width:45.805056pt;}
.fs0_c03149{font-size:42.240000pt;}
.fs1_c03149{font-size:53.760000pt;}
.y0_c03149{bottom:0.000000pt;}
.y1a_c03149{bottom:130.665211pt;}
.y1c_c03149{bottom:165.866875pt;}
.y1b_c03149{bottom:174.507067pt;}
.y19_c03149{bottom:245.225371pt;}
.y18_c03149{bottom:317.225563pt;}
.y16_c03149{bottom:361.386427pt;}
.y12_c03149{bottom:377.386939pt;}
.y17_c03149{bottom:407.786011pt;}
.y15_c03149{bottom:437.226235pt;}
.y14_c03149{bottom:453.226747pt;}
.y11_c03149{bottom:482.666971pt;}
.y13_c03149{bottom:497.386555pt;}
.y10_c03149{bottom:513.387067pt;}
.y1d_c03149{bottom:546.027067pt;}
.yc_c03149{bottom:593.385179pt;}
.ye_c03149{bottom:628.586875pt;}
.yd_c03149{bottom:637.227067pt;}
.yb_c03149{bottom:694.505627pt;}
.ya_c03149{bottom:707.945339pt;}
.y9_c03149{bottom:779.945531pt;}
.y7_c03149{bottom:823.786427pt;}
.y3_c03149{bottom:839.786939pt;}
.y8_c03149{bottom:870.505979pt;}
.y6_c03149{bottom:899.946203pt;}
.y5_c03149{bottom:915.946715pt;}
.y2_c03149{bottom:945.386939pt;}
.y4_c03149{bottom:959.786555pt;}
.y1_c03149{bottom:975.787067pt;}
.yf_c03149{bottom:1008.747067pt;}
.h3_c03149{height:28.916250pt;}
.h1_c03149{height:37.063125pt;}
.h2_c03149{height:37.166250pt;}
.h4_c03149{height:48.581988pt;}
.h0_c03149{height:1122.666667pt;}
.w1_c03149{width:793.333333pt;}
.w0_c03149{width:793.626667pt;}
.x0_c03149{left:0.000000pt;}
.xe_c03149{left:104.000000pt;}
.x8_c03149{left:391.999872pt;}
.x4_c03149{left:396.160512pt;}
.xc_c03149{left:400.960000pt;}
.x7_c03149{left:404.799648pt;}
.x5_c03149{left:410.560128pt;}
.x1_c03149{left:411.840000pt;}
.xb_c03149{left:429.760320pt;}
.x9_c03149{left:437.439552pt;}
.x6_c03149{left:438.400512pt;}
.xd_c03149{left:450.560320pt;}
.x3_c03149{left:455.039904pt;}
.x2_c03149{left:468.159648pt;}
.xa_c03149{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03150 {
    display:none;
  }
  .loading-indicator_c03150.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03150 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03150 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03150" -> "#page-container .classname_c03150")
 */
.pf_c03150 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03150 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03150.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03150 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03150 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03150 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03150 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03150 {overflow:visible;}
  }
}
.c_c03150 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03150 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03150:after { /* webkit #35443 */
  content: '';
}
.t_c03150:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03150 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03150 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03150 { /* info for Javascript */
  display:none;
}
.l_c03150 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03150 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03150 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03150:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03150 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03150.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03150.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03150 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03150{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03150;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03150{font-family:ff1_c03150;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03150;src:url('chunks/assets/font_a003ad1e297470e57da4c0e4.woff2')format("woff");}.ff2_c03150{font-family:ff2_c03150;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03150;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03150{font-family:ff3_c03150;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03150{vertical-align:0.000000px;}
.v2_c03150{vertical-align:1.439424px;}
.v1_c03150{vertical-align:33.121440px;}
.lsc_c03150{letter-spacing:-1.254528px;}
.ls15_c03150{letter-spacing:-1.197504px;}
.ls7_c03150{letter-spacing:-0.613008px;}
.ls9_c03150{letter-spacing:-0.574992px;}
.ls11_c03150{letter-spacing:-0.275616px;}
.lsf_c03150{letter-spacing:-0.261360px;}
.ls6_c03150{letter-spacing:-0.242352px;}
.lsd_c03150{letter-spacing:-0.237600px;}
.ls4_c03150{letter-spacing:-0.118800px;}
.ls14_c03150{letter-spacing:0.000000px;}
.ls2_c03150{letter-spacing:0.006048px;}
.ls5_c03150{letter-spacing:0.128304px;}
.lsb_c03150{letter-spacing:0.508464px;}
.ls13_c03150{letter-spacing:0.514080px;}
.ls10_c03150{letter-spacing:0.536976px;}
.lsa_c03150{letter-spacing:0.579744px;}
.ls12_c03150{letter-spacing:0.594000px;}
.ls8_c03150{letter-spacing:0.598752px;}
.ls3_c03150{letter-spacing:0.613008px;}
.ls0_c03150{letter-spacing:0.651024px;}
.ls1_c03150{letter-spacing:0.717552px;}
.lse_c03150{letter-spacing:0.722304px;}
.sc__c03150{text-shadow:none;}
.sc0_c03150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03150{-webkit-text-stroke:0px transparent;}
.sc0_c03150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03150{word-spacing:-15.126048px;}
.wsf_c03150{word-spacing:-12.474000px;}
.wse_c03150{word-spacing:-12.459744px;}
.wsa_c03150{word-spacing:-12.416976px;}
.ws4_c03150{word-spacing:-11.637648px;}
.ws2_c03150{word-spacing:-11.266992px;}
.ws16_c03150{word-spacing:-1.083456px;}
.ws14_c03150{word-spacing:-1.078704px;}
.ws12_c03150{word-spacing:-1.012176px;}
.ws10_c03150{word-spacing:-0.974160px;}
.ws19_c03150{word-spacing:-0.719712px;}
.ws13_c03150{word-spacing:-0.118800px;}
.ws17_c03150{word-spacing:-0.099792px;}
.ws18_c03150{word-spacing:-0.085536px;}
.ws11_c03150{word-spacing:0.000000px;}
.ws1a_c03150{word-spacing:0.836352px;}
.ws15_c03150{word-spacing:0.893376px;}
.ws9_c03150{word-spacing:6.381936px;}
.wsb_c03150{word-spacing:30.298752px;}
.wsc_c03150{word-spacing:33.300288px;}
.ws8_c03150{word-spacing:36.143712px;}
.ws6_c03150{word-spacing:36.742464px;}
.ws1_c03150{word-spacing:37.759392px;}
.ws0_c03150{word-spacing:38.020752px;}
.ws3_c03150{word-spacing:39.218256px;}
.ws5_c03150{word-spacing:39.902544px;}
.ws7_c03150{word-spacing:42.026688px;}
._0_c03150{margin-left:-1.948320px;}
._2_c03150{width:1.482624px;}
._4_c03150{width:3.302640px;}
._7_c03150{width:15.263424px;}
._5_c03150{width:20.885040px;}
._6_c03150{width:22.206096px;}
._1_c03150{width:50.252400px;}
._3_c03150{width:51.530688px;}
.fc0_c03150{color:rgb(0,0,0);}
.fs0_c03150{font-size:47.520000px;}
.fs1_c03150{font-size:60.480000px;}
.y0_c03150{bottom:0.000000px;}
.y1a_c03150{bottom:146.998362px;}
.y1c_c03150{bottom:186.600234px;}
.y1b_c03150{bottom:196.320450px;}
.y19_c03150{bottom:275.878542px;}
.y18_c03150{bottom:356.878758px;}
.y16_c03150{bottom:406.559730px;}
.y12_c03150{bottom:424.560306px;}
.y17_c03150{bottom:458.759262px;}
.y15_c03150{bottom:491.879514px;}
.y14_c03150{bottom:509.880090px;}
.y11_c03150{bottom:543.000342px;}
.y13_c03150{bottom:559.559874px;}
.y10_c03150{bottom:577.560450px;}
.y1d_c03150{bottom:614.280450px;}
.yc_c03150{bottom:667.559514px;}
.ye_c03150{bottom:707.160234px;}
.yd_c03150{bottom:716.880450px;}
.yb_c03150{bottom:796.439694px;}
.ya_c03150{bottom:862.319046px;}
.y9_c03150{bottom:877.438722px;}
.y7_c03150{bottom:926.759730px;}
.y3_c03150{bottom:944.760306px;}
.y8_c03150{bottom:979.319226px;}
.y6_c03150{bottom:1012.439478px;}
.y5_c03150{bottom:1030.440054px;}
.y2_c03150{bottom:1063.560306px;}
.y4_c03150{bottom:1079.759874px;}
.y1_c03150{bottom:1097.760450px;}
.yf_c03150{bottom:1134.840450px;}
.h3_c03150{height:32.530781px;}
.h1_c03150{height:41.696016px;}
.h2_c03150{height:41.812031px;}
.h5_c03150{height:54.654737px;}
.h4_c03150{height:74.817456px;}
.h0_c03150{height:1263.000000px;}
.w1_c03150{width:892.500000px;}
.w0_c03150{width:892.830000px;}
.x0_c03150{left:0.000000px;}
.xe_c03150{left:117.000000px;}
.x8_c03150{left:440.999856px;}
.x4_c03150{left:445.680576px;}
.xc_c03150{left:451.080000px;}
.x7_c03150{left:455.399604px;}
.x5_c03150{left:461.880144px;}
.x1_c03150{left:463.320000px;}
.xb_c03150{left:483.480360px;}
.x9_c03150{left:492.119496px;}
.x6_c03150{left:493.200576px;}
.xd_c03150{left:506.880360px;}
.x3_c03150{left:511.919892px;}
.x2_c03150{left:526.679604px;}
.xa_c03150{left:569.880036px;}
@media print{
.v0_c03150{vertical-align:0.000000pt;}
.v2_c03150{vertical-align:1.279488pt;}
.v1_c03150{vertical-align:29.441280pt;}
.lsc_c03150{letter-spacing:-1.115136pt;}
.ls15_c03150{letter-spacing:-1.064448pt;}
.ls7_c03150{letter-spacing:-0.544896pt;}
.ls9_c03150{letter-spacing:-0.511104pt;}
.ls11_c03150{letter-spacing:-0.244992pt;}
.lsf_c03150{letter-spacing:-0.232320pt;}
.ls6_c03150{letter-spacing:-0.215424pt;}
.lsd_c03150{letter-spacing:-0.211200pt;}
.ls4_c03150{letter-spacing:-0.105600pt;}
.ls14_c03150{letter-spacing:0.000000pt;}
.ls2_c03150{letter-spacing:0.005376pt;}
.ls5_c03150{letter-spacing:0.114048pt;}
.lsb_c03150{letter-spacing:0.451968pt;}
.ls13_c03150{letter-spacing:0.456960pt;}
.ls10_c03150{letter-spacing:0.477312pt;}
.lsa_c03150{letter-spacing:0.515328pt;}
.ls12_c03150{letter-spacing:0.528000pt;}
.ls8_c03150{letter-spacing:0.532224pt;}
.ls3_c03150{letter-spacing:0.544896pt;}
.ls0_c03150{letter-spacing:0.578688pt;}
.ls1_c03150{letter-spacing:0.637824pt;}
.lse_c03150{letter-spacing:0.642048pt;}
.wsd_c03150{word-spacing:-13.445376pt;}
.wsf_c03150{word-spacing:-11.088000pt;}
.wse_c03150{word-spacing:-11.075328pt;}
.wsa_c03150{word-spacing:-11.037312pt;}
.ws4_c03150{word-spacing:-10.344576pt;}
.ws2_c03150{word-spacing:-10.015104pt;}
.ws16_c03150{word-spacing:-0.963072pt;}
.ws14_c03150{word-spacing:-0.958848pt;}
.ws12_c03150{word-spacing:-0.899712pt;}
.ws10_c03150{word-spacing:-0.865920pt;}
.ws19_c03150{word-spacing:-0.639744pt;}
.ws13_c03150{word-spacing:-0.105600pt;}
.ws17_c03150{word-spacing:-0.088704pt;}
.ws18_c03150{word-spacing:-0.076032pt;}
.ws11_c03150{word-spacing:0.000000pt;}
.ws1a_c03150{word-spacing:0.743424pt;}
.ws15_c03150{word-spacing:0.794112pt;}
.ws9_c03150{word-spacing:5.672832pt;}
.wsb_c03150{word-spacing:26.932224pt;}
.wsc_c03150{word-spacing:29.600256pt;}
.ws8_c03150{word-spacing:32.127744pt;}
.ws6_c03150{word-spacing:32.659968pt;}
.ws1_c03150{word-spacing:33.563904pt;}
.ws0_c03150{word-spacing:33.796224pt;}
.ws3_c03150{word-spacing:34.860672pt;}
.ws5_c03150{word-spacing:35.468928pt;}
.ws7_c03150{word-spacing:37.357056pt;}
._0_c03150{margin-left:-1.731840pt;}
._2_c03150{width:1.317888pt;}
._4_c03150{width:2.935680pt;}
._7_c03150{width:13.567488pt;}
._5_c03150{width:18.564480pt;}
._6_c03150{width:19.738752pt;}
._1_c03150{width:44.668800pt;}
._3_c03150{width:45.805056pt;}
.fs0_c03150{font-size:42.240000pt;}
.fs1_c03150{font-size:53.760000pt;}
.y0_c03150{bottom:0.000000pt;}
.y1a_c03150{bottom:130.665211pt;}
.y1c_c03150{bottom:165.866875pt;}
.y1b_c03150{bottom:174.507067pt;}
.y19_c03150{bottom:245.225371pt;}
.y18_c03150{bottom:317.225563pt;}
.y16_c03150{bottom:361.386427pt;}
.y12_c03150{bottom:377.386939pt;}
.y17_c03150{bottom:407.786011pt;}
.y15_c03150{bottom:437.226235pt;}
.y14_c03150{bottom:453.226747pt;}
.y11_c03150{bottom:482.666971pt;}
.y13_c03150{bottom:497.386555pt;}
.y10_c03150{bottom:513.387067pt;}
.y1d_c03150{bottom:546.027067pt;}
.yc_c03150{bottom:593.386235pt;}
.ye_c03150{bottom:628.586875pt;}
.yd_c03150{bottom:637.227067pt;}
.yb_c03150{bottom:707.946395pt;}
.ya_c03150{bottom:766.505819pt;}
.y9_c03150{bottom:779.945531pt;}
.y7_c03150{bottom:823.786427pt;}
.y3_c03150{bottom:839.786939pt;}
.y8_c03150{bottom:870.505979pt;}
.y6_c03150{bottom:899.946203pt;}
.y5_c03150{bottom:915.946715pt;}
.y2_c03150{bottom:945.386939pt;}
.y4_c03150{bottom:959.786555pt;}
.y1_c03150{bottom:975.787067pt;}
.yf_c03150{bottom:1008.747067pt;}
.h3_c03150{height:28.916250pt;}
.h1_c03150{height:37.063125pt;}
.h2_c03150{height:37.166250pt;}
.h5_c03150{height:48.581988pt;}
.h4_c03150{height:66.504405pt;}
.h0_c03150{height:1122.666667pt;}
.w1_c03150{width:793.333333pt;}
.w0_c03150{width:793.626667pt;}
.x0_c03150{left:0.000000pt;}
.xe_c03150{left:104.000000pt;}
.x8_c03150{left:391.999872pt;}
.x4_c03150{left:396.160512pt;}
.xc_c03150{left:400.960000pt;}
.x7_c03150{left:404.799648pt;}
.x5_c03150{left:410.560128pt;}
.x1_c03150{left:411.840000pt;}
.xb_c03150{left:429.760320pt;}
.x9_c03150{left:437.439552pt;}
.x6_c03150{left:438.400512pt;}
.xd_c03150{left:450.560320pt;}
.x3_c03150{left:455.039904pt;}
.x2_c03150{left:468.159648pt;}
.xa_c03150{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03151 {
    display:none;
  }
  .loading-indicator_c03151.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03151 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03151 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03151" -> "#page-container .classname_c03151")
 */
.pf_c03151 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03151 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03151.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03151 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03151 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03151 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03151 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03151 {overflow:visible;}
  }
}
.c_c03151 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03151 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03151:after { /* webkit #35443 */
  content: '';
}
.t_c03151:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03151 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03151 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03151 { /* info for Javascript */
  display:none;
}
.l_c03151 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03151 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03151 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03151:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03151 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03151.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03151.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03151 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03151{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03151;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03151{font-family:ff1_c03151;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03151;src:url('chunks/assets/font_157e8cc95a4f1967064dce5c.woff2')format("woff");}.ff2_c03151{font-family:ff2_c03151;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03151;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03151{font-family:ff3_c03151;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03151{vertical-align:0.000000px;}
.v1_c03151{vertical-align:1.439424px;}
.lsb_c03151{letter-spacing:-1.197504px;}
.ls6_c03151{letter-spacing:-0.613008px;}
.ls8_c03151{letter-spacing:-0.574992px;}
.lse_c03151{letter-spacing:-0.275616px;}
.lsc_c03151{letter-spacing:-0.261360px;}
.ls5_c03151{letter-spacing:-0.242352px;}
.ls3_c03151{letter-spacing:-0.118800px;}
.ls11_c03151{letter-spacing:0.000000px;}
.ls1_c03151{letter-spacing:0.006048px;}
.ls4_c03151{letter-spacing:0.128304px;}
.lsa_c03151{letter-spacing:0.508464px;}
.ls10_c03151{letter-spacing:0.514080px;}
.lsd_c03151{letter-spacing:0.536976px;}
.ls9_c03151{letter-spacing:0.579744px;}
.lsf_c03151{letter-spacing:0.594000px;}
.ls7_c03151{letter-spacing:0.598752px;}
.ls2_c03151{letter-spacing:0.613008px;}
.ls0_c03151{letter-spacing:0.717552px;}
.sc__c03151{text-shadow:none;}
.sc0_c03151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03151{-webkit-text-stroke:0px transparent;}
.sc0_c03151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03151{word-spacing:-15.126048px;}
.wsa_c03151{word-spacing:-12.474000px;}
.ws8_c03151{word-spacing:-12.459744px;}
.ws9_c03151{word-spacing:-12.416976px;}
.ws4_c03151{word-spacing:-11.637648px;}
.ws2_c03151{word-spacing:-11.266992px;}
.ws10_c03151{word-spacing:-1.078704px;}
.wsd_c03151{word-spacing:-0.974160px;}
.ws14_c03151{word-spacing:-0.719712px;}
.wsf_c03151{word-spacing:-0.118800px;}
.ws12_c03151{word-spacing:-0.099792px;}
.ws13_c03151{word-spacing:-0.085536px;}
.wse_c03151{word-spacing:0.000000px;}
.ws11_c03151{word-spacing:0.836352px;}
.wsb_c03151{word-spacing:33.300288px;}
.ws6_c03151{word-spacing:36.742464px;}
.ws1_c03151{word-spacing:37.759392px;}
.ws0_c03151{word-spacing:38.020752px;}
.ws3_c03151{word-spacing:39.218256px;}
.ws5_c03151{word-spacing:39.902544px;}
.ws7_c03151{word-spacing:42.026688px;}
._0_c03151{margin-left:-1.948320px;}
._2_c03151{width:1.482624px;}
._4_c03151{width:3.302640px;}
._1_c03151{width:50.252400px;}
._3_c03151{width:51.530688px;}
.fc0_c03151{color:rgb(0,0,0);}
.fs0_c03151{font-size:47.520000px;}
.fs1_c03151{font-size:60.480000px;}
.y0_c03151{bottom:0.000000px;}
.y19_c03151{bottom:146.998362px;}
.y1b_c03151{bottom:186.600234px;}
.y1a_c03151{bottom:196.320450px;}
.y18_c03151{bottom:275.878542px;}
.y17_c03151{bottom:356.878758px;}
.y15_c03151{bottom:406.559730px;}
.y11_c03151{bottom:424.560306px;}
.y16_c03151{bottom:458.759262px;}
.y14_c03151{bottom:491.879514px;}
.y13_c03151{bottom:509.880090px;}
.y10_c03151{bottom:543.000342px;}
.y12_c03151{bottom:559.559874px;}
.yf_c03151{bottom:577.560450px;}
.y1c_c03151{bottom:614.280450px;}
.yb_c03151{bottom:667.558326px;}
.yd_c03151{bottom:707.160234px;}
.yc_c03151{bottom:716.880450px;}
.ya_c03151{bottom:796.438506px;}
.y9_c03151{bottom:877.438722px;}
.y7_c03151{bottom:926.759730px;}
.y3_c03151{bottom:944.760306px;}
.y8_c03151{bottom:979.319226px;}
.y6_c03151{bottom:1012.439478px;}
.y5_c03151{bottom:1030.440054px;}
.y2_c03151{bottom:1063.560306px;}
.y4_c03151{bottom:1079.759874px;}
.y1_c03151{bottom:1097.760450px;}
.ye_c03151{bottom:1134.840450px;}
.h3_c03151{height:32.530781px;}
.h1_c03151{height:41.696016px;}
.h2_c03151{height:41.812031px;}
.h4_c03151{height:54.654737px;}
.h0_c03151{height:1263.000000px;}
.w1_c03151{width:892.500000px;}
.w0_c03151{width:892.830000px;}
.x0_c03151{left:0.000000px;}
.xd_c03151{left:117.000000px;}
.x8_c03151{left:440.999856px;}
.x4_c03151{left:445.680576px;}
.xb_c03151{left:451.080000px;}
.x7_c03151{left:455.399604px;}
.x5_c03151{left:461.880144px;}
.x1_c03151{left:463.320000px;}
.xa_c03151{left:483.480360px;}
.x9_c03151{left:492.119496px;}
.x6_c03151{left:493.200576px;}
.xc_c03151{left:506.880360px;}
.x3_c03151{left:511.919892px;}
.x2_c03151{left:526.679604px;}
@media print{
.v0_c03151{vertical-align:0.000000pt;}
.v1_c03151{vertical-align:1.279488pt;}
.lsb_c03151{letter-spacing:-1.064448pt;}
.ls6_c03151{letter-spacing:-0.544896pt;}
.ls8_c03151{letter-spacing:-0.511104pt;}
.lse_c03151{letter-spacing:-0.244992pt;}
.lsc_c03151{letter-spacing:-0.232320pt;}
.ls5_c03151{letter-spacing:-0.215424pt;}
.ls3_c03151{letter-spacing:-0.105600pt;}
.ls11_c03151{letter-spacing:0.000000pt;}
.ls1_c03151{letter-spacing:0.005376pt;}
.ls4_c03151{letter-spacing:0.114048pt;}
.lsa_c03151{letter-spacing:0.451968pt;}
.ls10_c03151{letter-spacing:0.456960pt;}
.lsd_c03151{letter-spacing:0.477312pt;}
.ls9_c03151{letter-spacing:0.515328pt;}
.lsf_c03151{letter-spacing:0.528000pt;}
.ls7_c03151{letter-spacing:0.532224pt;}
.ls2_c03151{letter-spacing:0.544896pt;}
.ls0_c03151{letter-spacing:0.637824pt;}
.wsc_c03151{word-spacing:-13.445376pt;}
.wsa_c03151{word-spacing:-11.088000pt;}
.ws8_c03151{word-spacing:-11.075328pt;}
.ws9_c03151{word-spacing:-11.037312pt;}
.ws4_c03151{word-spacing:-10.344576pt;}
.ws2_c03151{word-spacing:-10.015104pt;}
.ws10_c03151{word-spacing:-0.958848pt;}
.wsd_c03151{word-spacing:-0.865920pt;}
.ws14_c03151{word-spacing:-0.639744pt;}
.wsf_c03151{word-spacing:-0.105600pt;}
.ws12_c03151{word-spacing:-0.088704pt;}
.ws13_c03151{word-spacing:-0.076032pt;}
.wse_c03151{word-spacing:0.000000pt;}
.ws11_c03151{word-spacing:0.743424pt;}
.wsb_c03151{word-spacing:29.600256pt;}
.ws6_c03151{word-spacing:32.659968pt;}
.ws1_c03151{word-spacing:33.563904pt;}
.ws0_c03151{word-spacing:33.796224pt;}
.ws3_c03151{word-spacing:34.860672pt;}
.ws5_c03151{word-spacing:35.468928pt;}
.ws7_c03151{word-spacing:37.357056pt;}
._0_c03151{margin-left:-1.731840pt;}
._2_c03151{width:1.317888pt;}
._4_c03151{width:2.935680pt;}
._1_c03151{width:44.668800pt;}
._3_c03151{width:45.805056pt;}
.fs0_c03151{font-size:42.240000pt;}
.fs1_c03151{font-size:53.760000pt;}
.y0_c03151{bottom:0.000000pt;}
.y19_c03151{bottom:130.665211pt;}
.y1b_c03151{bottom:165.866875pt;}
.y1a_c03151{bottom:174.507067pt;}
.y18_c03151{bottom:245.225371pt;}
.y17_c03151{bottom:317.225563pt;}
.y15_c03151{bottom:361.386427pt;}
.y11_c03151{bottom:377.386939pt;}
.y16_c03151{bottom:407.786011pt;}
.y14_c03151{bottom:437.226235pt;}
.y13_c03151{bottom:453.226747pt;}
.y10_c03151{bottom:482.666971pt;}
.y12_c03151{bottom:497.386555pt;}
.yf_c03151{bottom:513.387067pt;}
.y1c_c03151{bottom:546.027067pt;}
.yb_c03151{bottom:593.385179pt;}
.yd_c03151{bottom:628.586875pt;}
.yc_c03151{bottom:637.227067pt;}
.ya_c03151{bottom:707.945339pt;}
.y9_c03151{bottom:779.945531pt;}
.y7_c03151{bottom:823.786427pt;}
.y3_c03151{bottom:839.786939pt;}
.y8_c03151{bottom:870.505979pt;}
.y6_c03151{bottom:899.946203pt;}
.y5_c03151{bottom:915.946715pt;}
.y2_c03151{bottom:945.386939pt;}
.y4_c03151{bottom:959.786555pt;}
.y1_c03151{bottom:975.787067pt;}
.ye_c03151{bottom:1008.747067pt;}
.h3_c03151{height:28.916250pt;}
.h1_c03151{height:37.063125pt;}
.h2_c03151{height:37.166250pt;}
.h4_c03151{height:48.581988pt;}
.h0_c03151{height:1122.666667pt;}
.w1_c03151{width:793.333333pt;}
.w0_c03151{width:793.626667pt;}
.x0_c03151{left:0.000000pt;}
.xd_c03151{left:104.000000pt;}
.x8_c03151{left:391.999872pt;}
.x4_c03151{left:396.160512pt;}
.xb_c03151{left:400.960000pt;}
.x7_c03151{left:404.799648pt;}
.x5_c03151{left:410.560128pt;}
.x1_c03151{left:411.840000pt;}
.xa_c03151{left:429.760320pt;}
.x9_c03151{left:437.439552pt;}
.x6_c03151{left:438.400512pt;}
.xc_c03151{left:450.560320pt;}
.x3_c03151{left:455.039904pt;}
.x2_c03151{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03152 {
    display:none;
  }
  .loading-indicator_c03152.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03152 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03152 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03152" -> "#page-container .classname_c03152")
 */
.pf_c03152 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03152 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03152.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03152 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03152 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03152 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03152 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03152 {overflow:visible;}
  }
}
.c_c03152 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03152 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03152:after { /* webkit #35443 */
  content: '';
}
.t_c03152:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03152 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03152 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03152 { /* info for Javascript */
  display:none;
}
.l_c03152 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03152 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03152 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03152:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03152 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03152.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03152.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03152 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03152{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03152;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03152{font-family:ff1_c03152;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03152;src:url('chunks/assets/font_6e0ff7241c6c08fbbd72bb2d.woff2')format("woff");}.ff2_c03152{font-family:ff2_c03152;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03152;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03152{font-family:ff3_c03152;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03152{vertical-align:0.000000px;}
.v1_c03152{vertical-align:1.439424px;}
.lsc_c03152{letter-spacing:-1.197504px;}
.ls13_c03152{letter-spacing:-0.793584px;}
.ls7_c03152{letter-spacing:-0.613008px;}
.ls9_c03152{letter-spacing:-0.574992px;}
.ls14_c03152{letter-spacing:-0.394416px;}
.lsf_c03152{letter-spacing:-0.275616px;}
.lsd_c03152{letter-spacing:-0.261360px;}
.ls6_c03152{letter-spacing:-0.242352px;}
.ls4_c03152{letter-spacing:-0.118800px;}
.ls12_c03152{letter-spacing:0.000000px;}
.ls1_c03152{letter-spacing:0.006048px;}
.ls5_c03152{letter-spacing:0.128304px;}
.lsb_c03152{letter-spacing:0.508464px;}
.ls11_c03152{letter-spacing:0.514080px;}
.lse_c03152{letter-spacing:0.536976px;}
.lsa_c03152{letter-spacing:0.579744px;}
.ls10_c03152{letter-spacing:0.594000px;}
.ls8_c03152{letter-spacing:0.598752px;}
.ls3_c03152{letter-spacing:0.613008px;}
.ls0_c03152{letter-spacing:0.717552px;}
.ls2_c03152{letter-spacing:0.722304px;}
.sc__c03152{text-shadow:none;}
.sc0_c03152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03152{-webkit-text-stroke:0px transparent;}
.sc0_c03152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03152{word-spacing:-15.126048px;}
.wsa_c03152{word-spacing:-12.474000px;}
.ws8_c03152{word-spacing:-12.459744px;}
.ws9_c03152{word-spacing:-12.416976px;}
.ws4_c03152{word-spacing:-11.637648px;}
.ws2_c03152{word-spacing:-11.266992px;}
.ws15_c03152{word-spacing:-1.083456px;}
.ws10_c03152{word-spacing:-1.078704px;}
.wsd_c03152{word-spacing:-0.974160px;}
.ws14_c03152{word-spacing:-0.719712px;}
.wsf_c03152{word-spacing:-0.118800px;}
.ws12_c03152{word-spacing:-0.099792px;}
.ws13_c03152{word-spacing:-0.085536px;}
.wse_c03152{word-spacing:0.000000px;}
.ws17_c03152{word-spacing:0.033264px;}
.ws16_c03152{word-spacing:0.432432px;}
.ws11_c03152{word-spacing:0.836352px;}
.wsb_c03152{word-spacing:33.300288px;}
.ws6_c03152{word-spacing:36.742464px;}
.ws1_c03152{word-spacing:37.759392px;}
.ws0_c03152{word-spacing:38.020752px;}
.ws3_c03152{word-spacing:39.218256px;}
.ws5_c03152{word-spacing:39.902544px;}
.ws7_c03152{word-spacing:42.026688px;}
._0_c03152{margin-left:-1.948320px;}
._2_c03152{width:1.482624px;}
._4_c03152{width:3.302640px;}
._1_c03152{width:50.252400px;}
._3_c03152{width:51.530688px;}
.fc0_c03152{color:rgb(0,0,0);}
.fs0_c03152{font-size:47.520000px;}
.fs1_c03152{font-size:60.480000px;}
.y0_c03152{bottom:0.000000px;}
.y19_c03152{bottom:146.998362px;}
.y1b_c03152{bottom:186.600234px;}
.y1a_c03152{bottom:196.320450px;}
.y18_c03152{bottom:275.878542px;}
.y17_c03152{bottom:356.878758px;}
.y15_c03152{bottom:406.559730px;}
.y11_c03152{bottom:424.560306px;}
.y16_c03152{bottom:458.759262px;}
.y14_c03152{bottom:491.879514px;}
.y13_c03152{bottom:509.880090px;}
.y10_c03152{bottom:543.000342px;}
.y12_c03152{bottom:559.559874px;}
.yf_c03152{bottom:577.560450px;}
.y1c_c03152{bottom:614.280450px;}
.yb_c03152{bottom:667.558326px;}
.yd_c03152{bottom:707.160234px;}
.yc_c03152{bottom:716.880450px;}
.ya_c03152{bottom:796.438506px;}
.y9_c03152{bottom:877.438722px;}
.y7_c03152{bottom:926.759730px;}
.y3_c03152{bottom:944.760306px;}
.y8_c03152{bottom:979.319226px;}
.y6_c03152{bottom:1012.439478px;}
.y5_c03152{bottom:1030.440054px;}
.y2_c03152{bottom:1063.560306px;}
.y4_c03152{bottom:1079.759874px;}
.y1_c03152{bottom:1097.760450px;}
.ye_c03152{bottom:1134.840450px;}
.h3_c03152{height:32.530781px;}
.h1_c03152{height:41.696016px;}
.h2_c03152{height:41.812031px;}
.h4_c03152{height:54.654737px;}
.h0_c03152{height:1263.000000px;}
.w1_c03152{width:892.500000px;}
.w0_c03152{width:892.830000px;}
.x0_c03152{left:0.000000px;}
.xd_c03152{left:117.000000px;}
.x8_c03152{left:440.999856px;}
.x4_c03152{left:445.680576px;}
.xb_c03152{left:451.080000px;}
.x7_c03152{left:455.399604px;}
.x5_c03152{left:461.880144px;}
.x1_c03152{left:463.320000px;}
.xa_c03152{left:483.480360px;}
.x9_c03152{left:492.119496px;}
.x6_c03152{left:493.200576px;}
.xc_c03152{left:506.880360px;}
.x3_c03152{left:511.919892px;}
.x2_c03152{left:526.679604px;}
@media print{
.v0_c03152{vertical-align:0.000000pt;}
.v1_c03152{vertical-align:1.279488pt;}
.lsc_c03152{letter-spacing:-1.064448pt;}
.ls13_c03152{letter-spacing:-0.705408pt;}
.ls7_c03152{letter-spacing:-0.544896pt;}
.ls9_c03152{letter-spacing:-0.511104pt;}
.ls14_c03152{letter-spacing:-0.350592pt;}
.lsf_c03152{letter-spacing:-0.244992pt;}
.lsd_c03152{letter-spacing:-0.232320pt;}
.ls6_c03152{letter-spacing:-0.215424pt;}
.ls4_c03152{letter-spacing:-0.105600pt;}
.ls12_c03152{letter-spacing:0.000000pt;}
.ls1_c03152{letter-spacing:0.005376pt;}
.ls5_c03152{letter-spacing:0.114048pt;}
.lsb_c03152{letter-spacing:0.451968pt;}
.ls11_c03152{letter-spacing:0.456960pt;}
.lse_c03152{letter-spacing:0.477312pt;}
.lsa_c03152{letter-spacing:0.515328pt;}
.ls10_c03152{letter-spacing:0.528000pt;}
.ls8_c03152{letter-spacing:0.532224pt;}
.ls3_c03152{letter-spacing:0.544896pt;}
.ls0_c03152{letter-spacing:0.637824pt;}
.ls2_c03152{letter-spacing:0.642048pt;}
.wsc_c03152{word-spacing:-13.445376pt;}
.wsa_c03152{word-spacing:-11.088000pt;}
.ws8_c03152{word-spacing:-11.075328pt;}
.ws9_c03152{word-spacing:-11.037312pt;}
.ws4_c03152{word-spacing:-10.344576pt;}
.ws2_c03152{word-spacing:-10.015104pt;}
.ws15_c03152{word-spacing:-0.963072pt;}
.ws10_c03152{word-spacing:-0.958848pt;}
.wsd_c03152{word-spacing:-0.865920pt;}
.ws14_c03152{word-spacing:-0.639744pt;}
.wsf_c03152{word-spacing:-0.105600pt;}
.ws12_c03152{word-spacing:-0.088704pt;}
.ws13_c03152{word-spacing:-0.076032pt;}
.wse_c03152{word-spacing:0.000000pt;}
.ws17_c03152{word-spacing:0.029568pt;}
.ws16_c03152{word-spacing:0.384384pt;}
.ws11_c03152{word-spacing:0.743424pt;}
.wsb_c03152{word-spacing:29.600256pt;}
.ws6_c03152{word-spacing:32.659968pt;}
.ws1_c03152{word-spacing:33.563904pt;}
.ws0_c03152{word-spacing:33.796224pt;}
.ws3_c03152{word-spacing:34.860672pt;}
.ws5_c03152{word-spacing:35.468928pt;}
.ws7_c03152{word-spacing:37.357056pt;}
._0_c03152{margin-left:-1.731840pt;}
._2_c03152{width:1.317888pt;}
._4_c03152{width:2.935680pt;}
._1_c03152{width:44.668800pt;}
._3_c03152{width:45.805056pt;}
.fs0_c03152{font-size:42.240000pt;}
.fs1_c03152{font-size:53.760000pt;}
.y0_c03152{bottom:0.000000pt;}
.y19_c03152{bottom:130.665211pt;}
.y1b_c03152{bottom:165.866875pt;}
.y1a_c03152{bottom:174.507067pt;}
.y18_c03152{bottom:245.225371pt;}
.y17_c03152{bottom:317.225563pt;}
.y15_c03152{bottom:361.386427pt;}
.y11_c03152{bottom:377.386939pt;}
.y16_c03152{bottom:407.786011pt;}
.y14_c03152{bottom:437.226235pt;}
.y13_c03152{bottom:453.226747pt;}
.y10_c03152{bottom:482.666971pt;}
.y12_c03152{bottom:497.386555pt;}
.yf_c03152{bottom:513.387067pt;}
.y1c_c03152{bottom:546.027067pt;}
.yb_c03152{bottom:593.385179pt;}
.yd_c03152{bottom:628.586875pt;}
.yc_c03152{bottom:637.227067pt;}
.ya_c03152{bottom:707.945339pt;}
.y9_c03152{bottom:779.945531pt;}
.y7_c03152{bottom:823.786427pt;}
.y3_c03152{bottom:839.786939pt;}
.y8_c03152{bottom:870.505979pt;}
.y6_c03152{bottom:899.946203pt;}
.y5_c03152{bottom:915.946715pt;}
.y2_c03152{bottom:945.386939pt;}
.y4_c03152{bottom:959.786555pt;}
.y1_c03152{bottom:975.787067pt;}
.ye_c03152{bottom:1008.747067pt;}
.h3_c03152{height:28.916250pt;}
.h1_c03152{height:37.063125pt;}
.h2_c03152{height:37.166250pt;}
.h4_c03152{height:48.581988pt;}
.h0_c03152{height:1122.666667pt;}
.w1_c03152{width:793.333333pt;}
.w0_c03152{width:793.626667pt;}
.x0_c03152{left:0.000000pt;}
.xd_c03152{left:104.000000pt;}
.x8_c03152{left:391.999872pt;}
.x4_c03152{left:396.160512pt;}
.xb_c03152{left:400.960000pt;}
.x7_c03152{left:404.799648pt;}
.x5_c03152{left:410.560128pt;}
.x1_c03152{left:411.840000pt;}
.xa_c03152{left:429.760320pt;}
.x9_c03152{left:437.439552pt;}
.x6_c03152{left:438.400512pt;}
.xc_c03152{left:450.560320pt;}
.x3_c03152{left:455.039904pt;}
.x2_c03152{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03153 {
    display:none;
  }
  .loading-indicator_c03153.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03153 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03153 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03153" -> "#page-container .classname_c03153")
 */
.pf_c03153 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03153 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03153.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03153 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03153 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03153 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03153 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03153 {overflow:visible;}
  }
}
.c_c03153 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03153 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03153:after { /* webkit #35443 */
  content: '';
}
.t_c03153:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03153 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03153 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03153 { /* info for Javascript */
  display:none;
}
.l_c03153 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03153 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03153 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03153:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03153 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03153.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03153.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03153 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03153{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03153;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03153{font-family:ff1_c03153;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03153;src:url('chunks/assets/font_de59dd2a703166d750710401.woff2')format("woff");}.ff2_c03153{font-family:ff2_c03153;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03153;src:url('chunks/assets/font_0d2aa565aa8f0e6d7fc9c653.woff2')format("woff");}.ff3_c03153{font-family:ff3_c03153;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03153{vertical-align:0.000000px;}
.v1_c03153{vertical-align:1.439424px;}
.lsa_c03153{letter-spacing:-0.860112px;}
.ls11_c03153{letter-spacing:-0.855360px;}
.ls8_c03153{letter-spacing:-0.574992px;}
.lsf_c03153{letter-spacing:-0.346896px;}
.lsd_c03153{letter-spacing:-0.275616px;}
.ls12_c03153{letter-spacing:-0.266112px;}
.lse_c03153{letter-spacing:-0.261360px;}
.ls6_c03153{letter-spacing:-0.242352px;}
.ls4_c03153{letter-spacing:-0.118800px;}
.ls15_c03153{letter-spacing:0.000000px;}
.ls2_c03153{letter-spacing:0.006048px;}
.lsc_c03153{letter-spacing:0.038016px;}
.ls5_c03153{letter-spacing:0.128304px;}
.lsb_c03153{letter-spacing:0.508464px;}
.ls14_c03153{letter-spacing:0.514080px;}
.ls10_c03153{letter-spacing:0.536976px;}
.ls9_c03153{letter-spacing:0.579744px;}
.ls13_c03153{letter-spacing:0.594000px;}
.ls7_c03153{letter-spacing:0.598752px;}
.ls3_c03153{letter-spacing:0.613008px;}
.ls0_c03153{letter-spacing:0.717552px;}
.ls1_c03153{letter-spacing:0.722304px;}
.sc__c03153{text-shadow:none;}
.sc0_c03153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03153{-webkit-text-stroke:0px transparent;}
.sc0_c03153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c03153{word-spacing:-15.126048px;}
.wse_c03153{word-spacing:-12.474000px;}
.ws4_c03153{word-spacing:-11.637648px;}
.ws8_c03153{word-spacing:-11.019888px;}
.ws18_c03153{word-spacing:-1.083456px;}
.ws15_c03153{word-spacing:-1.078704px;}
.ws12_c03153{word-spacing:-0.974160px;}
.ws1c_c03153{word-spacing:-0.719712px;}
.ws16_c03153{word-spacing:-0.399168px;}
.ws14_c03153{word-spacing:-0.118800px;}
.ws19_c03153{word-spacing:-0.099792px;}
.ws1b_c03153{word-spacing:-0.095040px;}
.ws17_c03153{word-spacing:-0.085536px;}
.ws1a_c03153{word-spacing:-0.014256px;}
.ws13_c03153{word-spacing:0.000000px;}
.ws2_c03153{word-spacing:1.330560px;}
.wsd_c03153{word-spacing:4.951584px;}
.ws7_c03153{word-spacing:9.960192px;}
.ws11_c03153{word-spacing:15.724368px;}
.wsc_c03153{word-spacing:16.470432px;}
.wsf_c03153{word-spacing:33.300288px;}
.wsb_c03153{word-spacing:34.836912px;}
.wsa_c03153{word-spacing:36.143712px;}
.ws6_c03153{word-spacing:36.742464px;}
.ws1_c03153{word-spacing:37.759392px;}
.ws0_c03153{word-spacing:38.020752px;}
.ws3_c03153{word-spacing:39.218256px;}
.ws5_c03153{word-spacing:39.902544px;}
.ws9_c03153{word-spacing:42.026688px;}
._0_c03153{margin-left:-1.948320px;}
._2_c03153{width:1.482624px;}
._4_c03153{width:6.942672px;}
._b_c03153{width:18.532800px;}
._c_c03153{width:21.165408px;}
._5_c03153{width:22.714560px;}
._6_c03153{width:24.757920px;}
._7_c03153{width:27.818208px;}
._9_c03153{width:29.562192px;}
._a_c03153{width:32.280336px;}
._8_c03153{width:35.697024px;}
._1_c03153{width:50.252400px;}
._3_c03153{width:51.530688px;}
.fc0_c03153{color:rgb(0,0,0);}
.fs0_c03153{font-size:47.520000px;}
.fs1_c03153{font-size:60.480000px;}
.y0_c03153{bottom:0.000000px;}
.y1f_c03153{bottom:116.760198px;}
.y1e_c03153{bottom:131.879874px;}
.y1d_c03153{bottom:146.999550px;}
.y21_c03153{bottom:186.600234px;}
.y20_c03153{bottom:196.320450px;}
.y1c_c03153{bottom:275.879730px;}
.y1b_c03153{bottom:356.879946px;}
.y19_c03153{bottom:391.440054px;}
.y18_c03153{bottom:406.559730px;}
.y14_c03153{bottom:424.560306px;}
.y1a_c03153{bottom:458.760450px;}
.y17_c03153{bottom:491.879514px;}
.y16_c03153{bottom:509.880090px;}
.y13_c03153{bottom:543.000342px;}
.y15_c03153{bottom:559.559874px;}
.y12_c03153{bottom:577.560450px;}
.y22_c03153{bottom:614.280450px;}
.ye_c03153{bottom:637.320162px;}
.yd_c03153{bottom:652.439838px;}
.yc_c03153{bottom:667.559514px;}
.y10_c03153{bottom:707.160234px;}
.yf_c03153{bottom:716.880450px;}
.yb_c03153{bottom:796.439694px;}
.ya_c03153{bottom:877.439910px;}
.y8_c03153{bottom:912.000018px;}
.y7_c03153{bottom:926.759730px;}
.y3_c03153{bottom:944.760306px;}
.y9_c03153{bottom:979.320414px;}
.y6_c03153{bottom:1012.439478px;}
.y5_c03153{bottom:1030.440054px;}
.y2_c03153{bottom:1063.560306px;}
.y4_c03153{bottom:1079.759874px;}
.y1_c03153{bottom:1097.760450px;}
.y11_c03153{bottom:1134.840450px;}
.h3_c03153{height:32.530781px;}
.h1_c03153{height:41.696016px;}
.h2_c03153{height:41.812031px;}
.h4_c03153{height:54.654737px;}
.h0_c03153{height:1263.000000px;}
.w1_c03153{width:892.500000px;}
.w0_c03153{width:892.830000px;}
.x0_c03153{left:0.000000px;}
.xe_c03153{left:117.000000px;}
.x9_c03153{left:440.999856px;}
.x4_c03153{left:445.680576px;}
.xc_c03153{left:451.080000px;}
.x7_c03153{left:455.399604px;}
.x5_c03153{left:461.880144px;}
.x1_c03153{left:463.320000px;}
.xb_c03153{left:483.480360px;}
.xa_c03153{left:492.119496px;}
.x6_c03153{left:493.200576px;}
.xd_c03153{left:506.880360px;}
.x3_c03153{left:511.919892px;}
.x2_c03153{left:526.679604px;}
.x8_c03153{left:569.880036px;}
@media print{
.v0_c03153{vertical-align:0.000000pt;}
.v1_c03153{vertical-align:1.279488pt;}
.lsa_c03153{letter-spacing:-0.764544pt;}
.ls11_c03153{letter-spacing:-0.760320pt;}
.ls8_c03153{letter-spacing:-0.511104pt;}
.lsf_c03153{letter-spacing:-0.308352pt;}
.lsd_c03153{letter-spacing:-0.244992pt;}
.ls12_c03153{letter-spacing:-0.236544pt;}
.lse_c03153{letter-spacing:-0.232320pt;}
.ls6_c03153{letter-spacing:-0.215424pt;}
.ls4_c03153{letter-spacing:-0.105600pt;}
.ls15_c03153{letter-spacing:0.000000pt;}
.ls2_c03153{letter-spacing:0.005376pt;}
.lsc_c03153{letter-spacing:0.033792pt;}
.ls5_c03153{letter-spacing:0.114048pt;}
.lsb_c03153{letter-spacing:0.451968pt;}
.ls14_c03153{letter-spacing:0.456960pt;}
.ls10_c03153{letter-spacing:0.477312pt;}
.ls9_c03153{letter-spacing:0.515328pt;}
.ls13_c03153{letter-spacing:0.528000pt;}
.ls7_c03153{letter-spacing:0.532224pt;}
.ls3_c03153{letter-spacing:0.544896pt;}
.ls0_c03153{letter-spacing:0.637824pt;}
.ls1_c03153{letter-spacing:0.642048pt;}
.ws10_c03153{word-spacing:-13.445376pt;}
.wse_c03153{word-spacing:-11.088000pt;}
.ws4_c03153{word-spacing:-10.344576pt;}
.ws8_c03153{word-spacing:-9.795456pt;}
.ws18_c03153{word-spacing:-0.963072pt;}
.ws15_c03153{word-spacing:-0.958848pt;}
.ws12_c03153{word-spacing:-0.865920pt;}
.ws1c_c03153{word-spacing:-0.639744pt;}
.ws16_c03153{word-spacing:-0.354816pt;}
.ws14_c03153{word-spacing:-0.105600pt;}
.ws19_c03153{word-spacing:-0.088704pt;}
.ws1b_c03153{word-spacing:-0.084480pt;}
.ws17_c03153{word-spacing:-0.076032pt;}
.ws1a_c03153{word-spacing:-0.012672pt;}
.ws13_c03153{word-spacing:0.000000pt;}
.ws2_c03153{word-spacing:1.182720pt;}
.wsd_c03153{word-spacing:4.401408pt;}
.ws7_c03153{word-spacing:8.853504pt;}
.ws11_c03153{word-spacing:13.977216pt;}
.wsc_c03153{word-spacing:14.640384pt;}
.wsf_c03153{word-spacing:29.600256pt;}
.wsb_c03153{word-spacing:30.966144pt;}
.wsa_c03153{word-spacing:32.127744pt;}
.ws6_c03153{word-spacing:32.659968pt;}
.ws1_c03153{word-spacing:33.563904pt;}
.ws0_c03153{word-spacing:33.796224pt;}
.ws3_c03153{word-spacing:34.860672pt;}
.ws5_c03153{word-spacing:35.468928pt;}
.ws9_c03153{word-spacing:37.357056pt;}
._0_c03153{margin-left:-1.731840pt;}
._2_c03153{width:1.317888pt;}
._4_c03153{width:6.171264pt;}
._b_c03153{width:16.473600pt;}
._c_c03153{width:18.813696pt;}
._5_c03153{width:20.190720pt;}
._6_c03153{width:22.007040pt;}
._7_c03153{width:24.727296pt;}
._9_c03153{width:26.277504pt;}
._a_c03153{width:28.693632pt;}
._8_c03153{width:31.730688pt;}
._1_c03153{width:44.668800pt;}
._3_c03153{width:45.805056pt;}
.fs0_c03153{font-size:42.240000pt;}
.fs1_c03153{font-size:53.760000pt;}
.y0_c03153{bottom:0.000000pt;}
.y1f_c03153{bottom:103.786843pt;}
.y1e_c03153{bottom:117.226555pt;}
.y1d_c03153{bottom:130.666267pt;}
.y21_c03153{bottom:165.866875pt;}
.y20_c03153{bottom:174.507067pt;}
.y1c_c03153{bottom:245.226427pt;}
.y1b_c03153{bottom:317.226619pt;}
.y19_c03153{bottom:347.946715pt;}
.y18_c03153{bottom:361.386427pt;}
.y14_c03153{bottom:377.386939pt;}
.y1a_c03153{bottom:407.787067pt;}
.y17_c03153{bottom:437.226235pt;}
.y16_c03153{bottom:453.226747pt;}
.y13_c03153{bottom:482.666971pt;}
.y15_c03153{bottom:497.386555pt;}
.y12_c03153{bottom:513.387067pt;}
.y22_c03153{bottom:546.027067pt;}
.ye_c03153{bottom:566.506811pt;}
.yd_c03153{bottom:579.946523pt;}
.yc_c03153{bottom:593.386235pt;}
.y10_c03153{bottom:628.586875pt;}
.yf_c03153{bottom:637.227067pt;}
.yb_c03153{bottom:707.946395pt;}
.ya_c03153{bottom:779.946587pt;}
.y8_c03153{bottom:810.666683pt;}
.y7_c03153{bottom:823.786427pt;}
.y3_c03153{bottom:839.786939pt;}
.y9_c03153{bottom:870.507035pt;}
.y6_c03153{bottom:899.946203pt;}
.y5_c03153{bottom:915.946715pt;}
.y2_c03153{bottom:945.386939pt;}
.y4_c03153{bottom:959.786555pt;}
.y1_c03153{bottom:975.787067pt;}
.y11_c03153{bottom:1008.747067pt;}
.h3_c03153{height:28.916250pt;}
.h1_c03153{height:37.063125pt;}
.h2_c03153{height:37.166250pt;}
.h4_c03153{height:48.581988pt;}
.h0_c03153{height:1122.666667pt;}
.w1_c03153{width:793.333333pt;}
.w0_c03153{width:793.626667pt;}
.x0_c03153{left:0.000000pt;}
.xe_c03153{left:104.000000pt;}
.x9_c03153{left:391.999872pt;}
.x4_c03153{left:396.160512pt;}
.xc_c03153{left:400.960000pt;}
.x7_c03153{left:404.799648pt;}
.x5_c03153{left:410.560128pt;}
.x1_c03153{left:411.840000pt;}
.xb_c03153{left:429.760320pt;}
.xa_c03153{left:437.439552pt;}
.x6_c03153{left:438.400512pt;}
.xd_c03153{left:450.560320pt;}
.x3_c03153{left:455.039904pt;}
.x2_c03153{left:468.159648pt;}
.x8_c03153{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03154 {
    display:none;
  }
  .loading-indicator_c03154.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03154 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03154 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03154" -> "#page-container .classname_c03154")
 */
.pf_c03154 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03154 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03154.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03154 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03154 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03154 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03154 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03154 {overflow:visible;}
  }
}
.c_c03154 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03154 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03154:after { /* webkit #35443 */
  content: '';
}
.t_c03154:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03154 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03154 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03154 { /* info for Javascript */
  display:none;
}
.l_c03154 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03154 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03154 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03154:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03154 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03154.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03154.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03154 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03154{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03154;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03154{font-family:ff1_c03154;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03154;src:url('chunks/assets/font_de59dd2a703166d750710401.woff2')format("woff");}.ff2_c03154{font-family:ff2_c03154;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03154;src:url('chunks/assets/font_0d2aa565aa8f0e6d7fc9c653.woff2')format("woff");}.ff3_c03154{font-family:ff3_c03154;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03154{vertical-align:0.000000px;}
.v1_c03154{vertical-align:1.439424px;}
.lsa_c03154{letter-spacing:-0.860112px;}
.ls11_c03154{letter-spacing:-0.855360px;}
.ls8_c03154{letter-spacing:-0.574992px;}
.lsf_c03154{letter-spacing:-0.346896px;}
.lsd_c03154{letter-spacing:-0.275616px;}
.ls12_c03154{letter-spacing:-0.266112px;}
.lse_c03154{letter-spacing:-0.261360px;}
.ls6_c03154{letter-spacing:-0.242352px;}
.ls4_c03154{letter-spacing:-0.118800px;}
.ls15_c03154{letter-spacing:0.000000px;}
.ls2_c03154{letter-spacing:0.006048px;}
.lsc_c03154{letter-spacing:0.038016px;}
.ls5_c03154{letter-spacing:0.128304px;}
.lsb_c03154{letter-spacing:0.508464px;}
.ls14_c03154{letter-spacing:0.514080px;}
.ls10_c03154{letter-spacing:0.536976px;}
.ls9_c03154{letter-spacing:0.579744px;}
.ls13_c03154{letter-spacing:0.594000px;}
.ls7_c03154{letter-spacing:0.598752px;}
.ls3_c03154{letter-spacing:0.613008px;}
.ls16_c03154{letter-spacing:0.670032px;}
.ls0_c03154{letter-spacing:0.717552px;}
.ls1_c03154{letter-spacing:0.722304px;}
.sc__c03154{text-shadow:none;}
.sc0_c03154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03154{-webkit-text-stroke:0px transparent;}
.sc0_c03154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c03154{word-spacing:-15.126048px;}
.wse_c03154{word-spacing:-12.474000px;}
.ws11_c03154{word-spacing:-12.459744px;}
.ws12_c03154{word-spacing:-12.416976px;}
.ws4_c03154{word-spacing:-11.637648px;}
.ws8_c03154{word-spacing:-11.019888px;}
.ws19_c03154{word-spacing:-1.083456px;}
.ws16_c03154{word-spacing:-1.078704px;}
.ws1e_c03154{word-spacing:-1.031184px;}
.ws13_c03154{word-spacing:-0.974160px;}
.ws1d_c03154{word-spacing:-0.719712px;}
.ws17_c03154{word-spacing:-0.399168px;}
.ws15_c03154{word-spacing:-0.118800px;}
.ws1a_c03154{word-spacing:-0.099792px;}
.ws1c_c03154{word-spacing:-0.095040px;}
.ws18_c03154{word-spacing:-0.085536px;}
.ws1b_c03154{word-spacing:-0.014256px;}
.ws14_c03154{word-spacing:0.000000px;}
.ws2_c03154{word-spacing:1.330560px;}
.wsd_c03154{word-spacing:4.951584px;}
.ws7_c03154{word-spacing:9.960192px;}
.wsc_c03154{word-spacing:16.470432px;}
.wsf_c03154{word-spacing:33.300288px;}
.wsb_c03154{word-spacing:34.836912px;}
.wsa_c03154{word-spacing:36.143712px;}
.ws6_c03154{word-spacing:36.742464px;}
.ws1_c03154{word-spacing:37.759392px;}
.ws0_c03154{word-spacing:38.020752px;}
.ws3_c03154{word-spacing:39.218256px;}
.ws5_c03154{word-spacing:39.902544px;}
.ws9_c03154{word-spacing:42.026688px;}
._0_c03154{margin-left:-1.948320px;}
._2_c03154{width:1.482624px;}
._4_c03154{width:6.942672px;}
._b_c03154{width:18.532800px;}
._c_c03154{width:21.165408px;}
._5_c03154{width:22.714560px;}
._6_c03154{width:24.757920px;}
._7_c03154{width:27.818208px;}
._9_c03154{width:29.562192px;}
._a_c03154{width:32.280336px;}
._8_c03154{width:35.697024px;}
._1_c03154{width:50.252400px;}
._3_c03154{width:51.530688px;}
.fc0_c03154{color:rgb(0,0,0);}
.fs0_c03154{font-size:47.520000px;}
.fs1_c03154{font-size:60.480000px;}
.y0_c03154{bottom:0.000000px;}
.y1c_c03154{bottom:146.998362px;}
.y1e_c03154{bottom:186.600234px;}
.y1d_c03154{bottom:196.320450px;}
.y1b_c03154{bottom:275.878542px;}
.y1a_c03154{bottom:356.878758px;}
.y18_c03154{bottom:406.559730px;}
.y14_c03154{bottom:424.560306px;}
.y19_c03154{bottom:458.759262px;}
.y17_c03154{bottom:491.879514px;}
.y16_c03154{bottom:509.880090px;}
.y13_c03154{bottom:543.000342px;}
.y15_c03154{bottom:559.559874px;}
.y12_c03154{bottom:577.560450px;}
.y1f_c03154{bottom:614.280450px;}
.ye_c03154{bottom:637.320162px;}
.yd_c03154{bottom:652.439838px;}
.yc_c03154{bottom:667.559514px;}
.y10_c03154{bottom:707.160234px;}
.yf_c03154{bottom:716.880450px;}
.yb_c03154{bottom:796.439694px;}
.ya_c03154{bottom:877.439910px;}
.y8_c03154{bottom:912.000018px;}
.y7_c03154{bottom:926.759730px;}
.y3_c03154{bottom:944.760306px;}
.y9_c03154{bottom:979.320414px;}
.y6_c03154{bottom:1012.439478px;}
.y5_c03154{bottom:1030.440054px;}
.y2_c03154{bottom:1063.560306px;}
.y4_c03154{bottom:1079.759874px;}
.y1_c03154{bottom:1097.760450px;}
.y11_c03154{bottom:1134.840450px;}
.h3_c03154{height:32.530781px;}
.h1_c03154{height:41.696016px;}
.h2_c03154{height:41.812031px;}
.h4_c03154{height:54.654737px;}
.h0_c03154{height:1263.000000px;}
.w1_c03154{width:892.500000px;}
.w0_c03154{width:892.830000px;}
.x0_c03154{left:0.000000px;}
.xe_c03154{left:117.000000px;}
.x9_c03154{left:440.999856px;}
.x4_c03154{left:445.680576px;}
.xc_c03154{left:451.080000px;}
.x7_c03154{left:455.399604px;}
.x5_c03154{left:461.880144px;}
.x1_c03154{left:463.320000px;}
.xb_c03154{left:483.480360px;}
.xa_c03154{left:492.119496px;}
.x6_c03154{left:493.200576px;}
.xd_c03154{left:506.880360px;}
.x3_c03154{left:511.919892px;}
.x2_c03154{left:526.679604px;}
.x8_c03154{left:569.880036px;}
@media print{
.v0_c03154{vertical-align:0.000000pt;}
.v1_c03154{vertical-align:1.279488pt;}
.lsa_c03154{letter-spacing:-0.764544pt;}
.ls11_c03154{letter-spacing:-0.760320pt;}
.ls8_c03154{letter-spacing:-0.511104pt;}
.lsf_c03154{letter-spacing:-0.308352pt;}
.lsd_c03154{letter-spacing:-0.244992pt;}
.ls12_c03154{letter-spacing:-0.236544pt;}
.lse_c03154{letter-spacing:-0.232320pt;}
.ls6_c03154{letter-spacing:-0.215424pt;}
.ls4_c03154{letter-spacing:-0.105600pt;}
.ls15_c03154{letter-spacing:0.000000pt;}
.ls2_c03154{letter-spacing:0.005376pt;}
.lsc_c03154{letter-spacing:0.033792pt;}
.ls5_c03154{letter-spacing:0.114048pt;}
.lsb_c03154{letter-spacing:0.451968pt;}
.ls14_c03154{letter-spacing:0.456960pt;}
.ls10_c03154{letter-spacing:0.477312pt;}
.ls9_c03154{letter-spacing:0.515328pt;}
.ls13_c03154{letter-spacing:0.528000pt;}
.ls7_c03154{letter-spacing:0.532224pt;}
.ls3_c03154{letter-spacing:0.544896pt;}
.ls16_c03154{letter-spacing:0.595584pt;}
.ls0_c03154{letter-spacing:0.637824pt;}
.ls1_c03154{letter-spacing:0.642048pt;}
.ws10_c03154{word-spacing:-13.445376pt;}
.wse_c03154{word-spacing:-11.088000pt;}
.ws11_c03154{word-spacing:-11.075328pt;}
.ws12_c03154{word-spacing:-11.037312pt;}
.ws4_c03154{word-spacing:-10.344576pt;}
.ws8_c03154{word-spacing:-9.795456pt;}
.ws19_c03154{word-spacing:-0.963072pt;}
.ws16_c03154{word-spacing:-0.958848pt;}
.ws1e_c03154{word-spacing:-0.916608pt;}
.ws13_c03154{word-spacing:-0.865920pt;}
.ws1d_c03154{word-spacing:-0.639744pt;}
.ws17_c03154{word-spacing:-0.354816pt;}
.ws15_c03154{word-spacing:-0.105600pt;}
.ws1a_c03154{word-spacing:-0.088704pt;}
.ws1c_c03154{word-spacing:-0.084480pt;}
.ws18_c03154{word-spacing:-0.076032pt;}
.ws1b_c03154{word-spacing:-0.012672pt;}
.ws14_c03154{word-spacing:0.000000pt;}
.ws2_c03154{word-spacing:1.182720pt;}
.wsd_c03154{word-spacing:4.401408pt;}
.ws7_c03154{word-spacing:8.853504pt;}
.wsc_c03154{word-spacing:14.640384pt;}
.wsf_c03154{word-spacing:29.600256pt;}
.wsb_c03154{word-spacing:30.966144pt;}
.wsa_c03154{word-spacing:32.127744pt;}
.ws6_c03154{word-spacing:32.659968pt;}
.ws1_c03154{word-spacing:33.563904pt;}
.ws0_c03154{word-spacing:33.796224pt;}
.ws3_c03154{word-spacing:34.860672pt;}
.ws5_c03154{word-spacing:35.468928pt;}
.ws9_c03154{word-spacing:37.357056pt;}
._0_c03154{margin-left:-1.731840pt;}
._2_c03154{width:1.317888pt;}
._4_c03154{width:6.171264pt;}
._b_c03154{width:16.473600pt;}
._c_c03154{width:18.813696pt;}
._5_c03154{width:20.190720pt;}
._6_c03154{width:22.007040pt;}
._7_c03154{width:24.727296pt;}
._9_c03154{width:26.277504pt;}
._a_c03154{width:28.693632pt;}
._8_c03154{width:31.730688pt;}
._1_c03154{width:44.668800pt;}
._3_c03154{width:45.805056pt;}
.fs0_c03154{font-size:42.240000pt;}
.fs1_c03154{font-size:53.760000pt;}
.y0_c03154{bottom:0.000000pt;}
.y1c_c03154{bottom:130.665211pt;}
.y1e_c03154{bottom:165.866875pt;}
.y1d_c03154{bottom:174.507067pt;}
.y1b_c03154{bottom:245.225371pt;}
.y1a_c03154{bottom:317.225563pt;}
.y18_c03154{bottom:361.386427pt;}
.y14_c03154{bottom:377.386939pt;}
.y19_c03154{bottom:407.786011pt;}
.y17_c03154{bottom:437.226235pt;}
.y16_c03154{bottom:453.226747pt;}
.y13_c03154{bottom:482.666971pt;}
.y15_c03154{bottom:497.386555pt;}
.y12_c03154{bottom:513.387067pt;}
.y1f_c03154{bottom:546.027067pt;}
.ye_c03154{bottom:566.506811pt;}
.yd_c03154{bottom:579.946523pt;}
.yc_c03154{bottom:593.386235pt;}
.y10_c03154{bottom:628.586875pt;}
.yf_c03154{bottom:637.227067pt;}
.yb_c03154{bottom:707.946395pt;}
.ya_c03154{bottom:779.946587pt;}
.y8_c03154{bottom:810.666683pt;}
.y7_c03154{bottom:823.786427pt;}
.y3_c03154{bottom:839.786939pt;}
.y9_c03154{bottom:870.507035pt;}
.y6_c03154{bottom:899.946203pt;}
.y5_c03154{bottom:915.946715pt;}
.y2_c03154{bottom:945.386939pt;}
.y4_c03154{bottom:959.786555pt;}
.y1_c03154{bottom:975.787067pt;}
.y11_c03154{bottom:1008.747067pt;}
.h3_c03154{height:28.916250pt;}
.h1_c03154{height:37.063125pt;}
.h2_c03154{height:37.166250pt;}
.h4_c03154{height:48.581988pt;}
.h0_c03154{height:1122.666667pt;}
.w1_c03154{width:793.333333pt;}
.w0_c03154{width:793.626667pt;}
.x0_c03154{left:0.000000pt;}
.xe_c03154{left:104.000000pt;}
.x9_c03154{left:391.999872pt;}
.x4_c03154{left:396.160512pt;}
.xc_c03154{left:400.960000pt;}
.x7_c03154{left:404.799648pt;}
.x5_c03154{left:410.560128pt;}
.x1_c03154{left:411.840000pt;}
.xb_c03154{left:429.760320pt;}
.xa_c03154{left:437.439552pt;}
.x6_c03154{left:438.400512pt;}
.xd_c03154{left:450.560320pt;}
.x3_c03154{left:455.039904pt;}
.x2_c03154{left:468.159648pt;}
.x8_c03154{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03155 {
    display:none;
  }
  .loading-indicator_c03155.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03155 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03155 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03155" -> "#page-container .classname_c03155")
 */
.pf_c03155 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03155 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03155.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03155 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03155 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03155 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03155 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03155 {overflow:visible;}
  }
}
.c_c03155 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03155 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03155:after { /* webkit #35443 */
  content: '';
}
.t_c03155:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03155 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03155 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03155 { /* info for Javascript */
  display:none;
}
.l_c03155 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03155 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03155 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03155:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03155 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03155.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03155.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03155 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03155{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03155;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03155{font-family:ff1_c03155;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03155;src:url('chunks/assets/font_e231b5804cde1e336e8790eb.woff2')format("woff");}.ff2_c03155{font-family:ff2_c03155;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03155;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03155{font-family:ff3_c03155;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03155{vertical-align:0.000000px;}
.v1_c03155{vertical-align:1.439424px;}
.lsd_c03155{letter-spacing:-1.197504px;}
.ls16_c03155{letter-spacing:-0.793584px;}
.ls15_c03155{letter-spacing:-0.774576px;}
.ls17_c03155{letter-spacing:-0.736560px;}
.ls8_c03155{letter-spacing:-0.613008px;}
.lsa_c03155{letter-spacing:-0.574992px;}
.ls18_c03155{letter-spacing:-0.304128px;}
.ls11_c03155{letter-spacing:-0.275616px;}
.lsf_c03155{letter-spacing:-0.261360px;}
.ls7_c03155{letter-spacing:-0.242352px;}
.ls5_c03155{letter-spacing:-0.118800px;}
.ls14_c03155{letter-spacing:0.000000px;}
.ls1_c03155{letter-spacing:0.006048px;}
.ls6_c03155{letter-spacing:0.128304px;}
.lse_c03155{letter-spacing:0.242352px;}
.lsc_c03155{letter-spacing:0.508464px;}
.ls13_c03155{letter-spacing:0.514080px;}
.ls10_c03155{letter-spacing:0.536976px;}
.lsb_c03155{letter-spacing:0.579744px;}
.ls12_c03155{letter-spacing:0.594000px;}
.ls9_c03155{letter-spacing:0.598752px;}
.ls3_c03155{letter-spacing:0.613008px;}
.ls2_c03155{letter-spacing:0.651024px;}
.ls4_c03155{letter-spacing:0.717552px;}
.ls0_c03155{letter-spacing:0.722304px;}
.sc__c03155{text-shadow:none;}
.sc0_c03155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03155{-webkit-text-stroke:0px transparent;}
.sc0_c03155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03155{word-spacing:-15.126048px;}
.wsa_c03155{word-spacing:-12.474000px;}
.wse_c03155{word-spacing:-12.459744px;}
.ws9_c03155{word-spacing:-12.416976px;}
.ws4_c03155{word-spacing:-11.637648px;}
.ws2_c03155{word-spacing:-11.266992px;}
.wsd_c03155{word-spacing:-11.105424px;}
.ws14_c03155{word-spacing:-1.083456px;}
.ws1a_c03155{word-spacing:-1.012176px;}
.ws11_c03155{word-spacing:-0.974160px;}
.ws19_c03155{word-spacing:-0.719712px;}
.ws16_c03155{word-spacing:-0.603504px;}
.ws13_c03155{word-spacing:-0.118800px;}
.ws17_c03155{word-spacing:-0.099792px;}
.ws18_c03155{word-spacing:-0.085536px;}
.ws1c_c03155{word-spacing:-0.057024px;}
.ws12_c03155{word-spacing:0.000000px;}
.ws1b_c03155{word-spacing:0.432432px;}
.ws15_c03155{word-spacing:0.836352px;}
.ws10_c03155{word-spacing:6.629040px;}
.wsb_c03155{word-spacing:33.300288px;}
.wsf_c03155{word-spacing:34.836912px;}
.ws8_c03155{word-spacing:36.143712px;}
.ws6_c03155{word-spacing:36.742464px;}
.ws1_c03155{word-spacing:37.759392px;}
.ws0_c03155{word-spacing:38.020752px;}
.ws3_c03155{word-spacing:39.218256px;}
.ws5_c03155{word-spacing:39.902544px;}
.ws7_c03155{word-spacing:42.026688px;}
._0_c03155{margin-left:-1.948320px;}
._2_c03155{width:1.482624px;}
._4_c03155{width:3.302640px;}
._6_c03155{width:19.982160px;}
._7_c03155{width:23.451120px;}
._5_c03155{width:24.691392px;}
._1_c03155{width:50.252400px;}
._3_c03155{width:51.530688px;}
.fc0_c03155{color:rgb(0,0,0);}
.fs0_c03155{font-size:47.520000px;}
.fs1_c03155{font-size:60.480000px;}
.y0_c03155{bottom:0.000000px;}
.y1a_c03155{bottom:131.878686px;}
.y19_c03155{bottom:146.998362px;}
.y1c_c03155{bottom:186.600234px;}
.y1b_c03155{bottom:196.320450px;}
.y18_c03155{bottom:275.878542px;}
.y17_c03155{bottom:356.878758px;}
.y15_c03155{bottom:406.559730px;}
.y11_c03155{bottom:424.560306px;}
.y16_c03155{bottom:458.759262px;}
.y14_c03155{bottom:491.879514px;}
.y13_c03155{bottom:509.880090px;}
.y10_c03155{bottom:543.000342px;}
.y12_c03155{bottom:559.559874px;}
.yf_c03155{bottom:577.560450px;}
.y1d_c03155{bottom:614.280450px;}
.yb_c03155{bottom:667.558326px;}
.yd_c03155{bottom:707.160234px;}
.yc_c03155{bottom:716.880450px;}
.ya_c03155{bottom:796.438506px;}
.y9_c03155{bottom:877.438722px;}
.y7_c03155{bottom:926.759730px;}
.y3_c03155{bottom:944.760306px;}
.y8_c03155{bottom:979.319226px;}
.y6_c03155{bottom:1012.439478px;}
.y5_c03155{bottom:1030.440054px;}
.y2_c03155{bottom:1063.560306px;}
.y4_c03155{bottom:1079.759874px;}
.y1_c03155{bottom:1097.760450px;}
.ye_c03155{bottom:1134.840450px;}
.h3_c03155{height:32.530781px;}
.h1_c03155{height:41.696016px;}
.h2_c03155{height:41.812031px;}
.h4_c03155{height:54.654737px;}
.h0_c03155{height:1263.000000px;}
.w1_c03155{width:892.500000px;}
.w0_c03155{width:892.830000px;}
.x0_c03155{left:0.000000px;}
.xd_c03155{left:117.000000px;}
.x8_c03155{left:440.999856px;}
.x4_c03155{left:445.680576px;}
.xb_c03155{left:451.080000px;}
.x7_c03155{left:455.399604px;}
.x5_c03155{left:461.880144px;}
.x1_c03155{left:463.320000px;}
.xa_c03155{left:483.480360px;}
.x9_c03155{left:492.119496px;}
.x6_c03155{left:493.200576px;}
.xc_c03155{left:506.880360px;}
.x3_c03155{left:511.919892px;}
.x2_c03155{left:526.679604px;}
.xe_c03155{left:569.880036px;}
@media print{
.v0_c03155{vertical-align:0.000000pt;}
.v1_c03155{vertical-align:1.279488pt;}
.lsd_c03155{letter-spacing:-1.064448pt;}
.ls16_c03155{letter-spacing:-0.705408pt;}
.ls15_c03155{letter-spacing:-0.688512pt;}
.ls17_c03155{letter-spacing:-0.654720pt;}
.ls8_c03155{letter-spacing:-0.544896pt;}
.lsa_c03155{letter-spacing:-0.511104pt;}
.ls18_c03155{letter-spacing:-0.270336pt;}
.ls11_c03155{letter-spacing:-0.244992pt;}
.lsf_c03155{letter-spacing:-0.232320pt;}
.ls7_c03155{letter-spacing:-0.215424pt;}
.ls5_c03155{letter-spacing:-0.105600pt;}
.ls14_c03155{letter-spacing:0.000000pt;}
.ls1_c03155{letter-spacing:0.005376pt;}
.ls6_c03155{letter-spacing:0.114048pt;}
.lse_c03155{letter-spacing:0.215424pt;}
.lsc_c03155{letter-spacing:0.451968pt;}
.ls13_c03155{letter-spacing:0.456960pt;}
.ls10_c03155{letter-spacing:0.477312pt;}
.lsb_c03155{letter-spacing:0.515328pt;}
.ls12_c03155{letter-spacing:0.528000pt;}
.ls9_c03155{letter-spacing:0.532224pt;}
.ls3_c03155{letter-spacing:0.544896pt;}
.ls2_c03155{letter-spacing:0.578688pt;}
.ls4_c03155{letter-spacing:0.637824pt;}
.ls0_c03155{letter-spacing:0.642048pt;}
.wsc_c03155{word-spacing:-13.445376pt;}
.wsa_c03155{word-spacing:-11.088000pt;}
.wse_c03155{word-spacing:-11.075328pt;}
.ws9_c03155{word-spacing:-11.037312pt;}
.ws4_c03155{word-spacing:-10.344576pt;}
.ws2_c03155{word-spacing:-10.015104pt;}
.wsd_c03155{word-spacing:-9.871488pt;}
.ws14_c03155{word-spacing:-0.963072pt;}
.ws1a_c03155{word-spacing:-0.899712pt;}
.ws11_c03155{word-spacing:-0.865920pt;}
.ws19_c03155{word-spacing:-0.639744pt;}
.ws16_c03155{word-spacing:-0.536448pt;}
.ws13_c03155{word-spacing:-0.105600pt;}
.ws17_c03155{word-spacing:-0.088704pt;}
.ws18_c03155{word-spacing:-0.076032pt;}
.ws1c_c03155{word-spacing:-0.050688pt;}
.ws12_c03155{word-spacing:0.000000pt;}
.ws1b_c03155{word-spacing:0.384384pt;}
.ws15_c03155{word-spacing:0.743424pt;}
.ws10_c03155{word-spacing:5.892480pt;}
.wsb_c03155{word-spacing:29.600256pt;}
.wsf_c03155{word-spacing:30.966144pt;}
.ws8_c03155{word-spacing:32.127744pt;}
.ws6_c03155{word-spacing:32.659968pt;}
.ws1_c03155{word-spacing:33.563904pt;}
.ws0_c03155{word-spacing:33.796224pt;}
.ws3_c03155{word-spacing:34.860672pt;}
.ws5_c03155{word-spacing:35.468928pt;}
.ws7_c03155{word-spacing:37.357056pt;}
._0_c03155{margin-left:-1.731840pt;}
._2_c03155{width:1.317888pt;}
._4_c03155{width:2.935680pt;}
._6_c03155{width:17.761920pt;}
._7_c03155{width:20.845440pt;}
._5_c03155{width:21.947904pt;}
._1_c03155{width:44.668800pt;}
._3_c03155{width:45.805056pt;}
.fs0_c03155{font-size:42.240000pt;}
.fs1_c03155{font-size:53.760000pt;}
.y0_c03155{bottom:0.000000pt;}
.y1a_c03155{bottom:117.225499pt;}
.y19_c03155{bottom:130.665211pt;}
.y1c_c03155{bottom:165.866875pt;}
.y1b_c03155{bottom:174.507067pt;}
.y18_c03155{bottom:245.225371pt;}
.y17_c03155{bottom:317.225563pt;}
.y15_c03155{bottom:361.386427pt;}
.y11_c03155{bottom:377.386939pt;}
.y16_c03155{bottom:407.786011pt;}
.y14_c03155{bottom:437.226235pt;}
.y13_c03155{bottom:453.226747pt;}
.y10_c03155{bottom:482.666971pt;}
.y12_c03155{bottom:497.386555pt;}
.yf_c03155{bottom:513.387067pt;}
.y1d_c03155{bottom:546.027067pt;}
.yb_c03155{bottom:593.385179pt;}
.yd_c03155{bottom:628.586875pt;}
.yc_c03155{bottom:637.227067pt;}
.ya_c03155{bottom:707.945339pt;}
.y9_c03155{bottom:779.945531pt;}
.y7_c03155{bottom:823.786427pt;}
.y3_c03155{bottom:839.786939pt;}
.y8_c03155{bottom:870.505979pt;}
.y6_c03155{bottom:899.946203pt;}
.y5_c03155{bottom:915.946715pt;}
.y2_c03155{bottom:945.386939pt;}
.y4_c03155{bottom:959.786555pt;}
.y1_c03155{bottom:975.787067pt;}
.ye_c03155{bottom:1008.747067pt;}
.h3_c03155{height:28.916250pt;}
.h1_c03155{height:37.063125pt;}
.h2_c03155{height:37.166250pt;}
.h4_c03155{height:48.581988pt;}
.h0_c03155{height:1122.666667pt;}
.w1_c03155{width:793.333333pt;}
.w0_c03155{width:793.626667pt;}
.x0_c03155{left:0.000000pt;}
.xd_c03155{left:104.000000pt;}
.x8_c03155{left:391.999872pt;}
.x4_c03155{left:396.160512pt;}
.xb_c03155{left:400.960000pt;}
.x7_c03155{left:404.799648pt;}
.x5_c03155{left:410.560128pt;}
.x1_c03155{left:411.840000pt;}
.xa_c03155{left:429.760320pt;}
.x9_c03155{left:437.439552pt;}
.x6_c03155{left:438.400512pt;}
.xc_c03155{left:450.560320pt;}
.x3_c03155{left:455.039904pt;}
.x2_c03155{left:468.159648pt;}
.xe_c03155{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03156 {
    display:none;
  }
  .loading-indicator_c03156.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03156 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03156 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03156" -> "#page-container .classname_c03156")
 */
.pf_c03156 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03156 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03156.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03156 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03156 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03156 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03156 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03156 {overflow:visible;}
  }
}
.c_c03156 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03156 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03156:after { /* webkit #35443 */
  content: '';
}
.t_c03156:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03156 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03156 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03156 { /* info for Javascript */
  display:none;
}
.l_c03156 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03156 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03156 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03156:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03156 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03156.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03156.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03156 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03156{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03156;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03156{font-family:ff1_c03156;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03156;src:url('chunks/assets/font_423c13840b68b1a30f9562b4.woff2')format("woff");}.ff2_c03156{font-family:ff2_c03156;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03156;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03156{font-family:ff3_c03156;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03156{vertical-align:0.000000px;}
.v1_c03156{vertical-align:1.439424px;}
.lse_c03156{letter-spacing:-0.793584px;}
.lsb_c03156{letter-spacing:-0.774576px;}
.ls11_c03156{letter-spacing:-0.736560px;}
.ls8_c03156{letter-spacing:-0.613008px;}
.lsa_c03156{letter-spacing:-0.574992px;}
.ls12_c03156{letter-spacing:-0.308880px;}
.ls13_c03156{letter-spacing:-0.275616px;}
.lsf_c03156{letter-spacing:-0.261360px;}
.ls7_c03156{letter-spacing:-0.242352px;}
.ls5_c03156{letter-spacing:-0.118800px;}
.ls16_c03156{letter-spacing:0.000000px;}
.ls1_c03156{letter-spacing:0.006048px;}
.ls6_c03156{letter-spacing:0.128304px;}
.ls17_c03156{letter-spacing:0.242352px;}
.lsd_c03156{letter-spacing:0.508464px;}
.ls15_c03156{letter-spacing:0.514080px;}
.ls10_c03156{letter-spacing:0.536976px;}
.lsc_c03156{letter-spacing:0.579744px;}
.ls14_c03156{letter-spacing:0.594000px;}
.ls9_c03156{letter-spacing:0.598752px;}
.ls3_c03156{letter-spacing:0.613008px;}
.ls0_c03156{letter-spacing:0.651024px;}
.ls4_c03156{letter-spacing:0.717552px;}
.ls2_c03156{letter-spacing:0.722304px;}
.sc__c03156{text-shadow:none;}
.sc0_c03156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03156{-webkit-text-stroke:0px transparent;}
.sc0_c03156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03156{word-spacing:-15.126048px;}
.wsc_c03156{word-spacing:-12.474000px;}
.ws7_c03156{word-spacing:-12.459744px;}
.wsf_c03156{word-spacing:-12.416976px;}
.ws4_c03156{word-spacing:-11.637648px;}
.ws2_c03156{word-spacing:-11.266992px;}
.ws6_c03156{word-spacing:-11.105424px;}
.ws15_c03156{word-spacing:-1.083456px;}
.ws12_c03156{word-spacing:-1.012176px;}
.ws10_c03156{word-spacing:-0.974160px;}
.ws19_c03156{word-spacing:-0.719712px;}
.ws1a_c03156{word-spacing:-0.603504px;}
.ws13_c03156{word-spacing:-0.118800px;}
.ws16_c03156{word-spacing:-0.099792px;}
.ws18_c03156{word-spacing:-0.085536px;}
.ws17_c03156{word-spacing:-0.052272px;}
.ws11_c03156{word-spacing:0.000000px;}
.ws14_c03156{word-spacing:0.432432px;}
.wsb_c03156{word-spacing:6.629040px;}
.wsd_c03156{word-spacing:33.300288px;}
.wsa_c03156{word-spacing:34.836912px;}
.ws9_c03156{word-spacing:36.143712px;}
.ws1_c03156{word-spacing:37.759392px;}
.ws0_c03156{word-spacing:38.020752px;}
.ws3_c03156{word-spacing:39.218256px;}
.ws5_c03156{word-spacing:39.902544px;}
.ws8_c03156{word-spacing:42.026688px;}
._0_c03156{margin-left:-1.948320px;}
._2_c03156{width:1.482624px;}
._4_c03156{width:3.302640px;}
._6_c03156{width:19.982160px;}
._7_c03156{width:23.451120px;}
._5_c03156{width:24.691392px;}
._1_c03156{width:50.252400px;}
._3_c03156{width:51.530688px;}
.fc0_c03156{color:rgb(0,0,0);}
.fs0_c03156{font-size:47.520000px;}
.fs1_c03156{font-size:60.480000px;}
.y0_c03156{bottom:0.000000px;}
.y1a_c03156{bottom:146.998362px;}
.y1c_c03156{bottom:186.600234px;}
.y1b_c03156{bottom:196.320450px;}
.y19_c03156{bottom:275.878542px;}
.y18_c03156{bottom:356.878758px;}
.y16_c03156{bottom:406.559730px;}
.y12_c03156{bottom:424.560306px;}
.y17_c03156{bottom:458.759262px;}
.y15_c03156{bottom:491.879514px;}
.y14_c03156{bottom:509.880090px;}
.y11_c03156{bottom:543.000342px;}
.y13_c03156{bottom:559.559874px;}
.y10_c03156{bottom:577.560450px;}
.y1d_c03156{bottom:614.280450px;}
.yc_c03156{bottom:652.438650px;}
.yb_c03156{bottom:667.558326px;}
.ye_c03156{bottom:707.160234px;}
.yd_c03156{bottom:716.880450px;}
.ya_c03156{bottom:796.438506px;}
.y9_c03156{bottom:877.438722px;}
.y7_c03156{bottom:926.759730px;}
.y3_c03156{bottom:944.760306px;}
.y8_c03156{bottom:979.319226px;}
.y6_c03156{bottom:1012.439478px;}
.y5_c03156{bottom:1030.440054px;}
.y2_c03156{bottom:1063.560306px;}
.y4_c03156{bottom:1079.759874px;}
.y1_c03156{bottom:1097.760450px;}
.yf_c03156{bottom:1134.840450px;}
.h3_c03156{height:32.530781px;}
.h1_c03156{height:41.696016px;}
.h2_c03156{height:41.812031px;}
.h4_c03156{height:54.654737px;}
.h0_c03156{height:1263.000000px;}
.w1_c03156{width:892.500000px;}
.w0_c03156{width:892.830000px;}
.x0_c03156{left:0.000000px;}
.xe_c03156{left:117.000000px;}
.x8_c03156{left:440.999856px;}
.x4_c03156{left:445.680576px;}
.xc_c03156{left:451.080000px;}
.x7_c03156{left:455.399604px;}
.x5_c03156{left:461.880144px;}
.x1_c03156{left:463.320000px;}
.xa_c03156{left:483.480360px;}
.x9_c03156{left:492.119496px;}
.x6_c03156{left:493.200576px;}
.xd_c03156{left:506.880360px;}
.x3_c03156{left:511.919892px;}
.x2_c03156{left:526.679604px;}
.xb_c03156{left:569.880036px;}
@media print{
.v0_c03156{vertical-align:0.000000pt;}
.v1_c03156{vertical-align:1.279488pt;}
.lse_c03156{letter-spacing:-0.705408pt;}
.lsb_c03156{letter-spacing:-0.688512pt;}
.ls11_c03156{letter-spacing:-0.654720pt;}
.ls8_c03156{letter-spacing:-0.544896pt;}
.lsa_c03156{letter-spacing:-0.511104pt;}
.ls12_c03156{letter-spacing:-0.274560pt;}
.ls13_c03156{letter-spacing:-0.244992pt;}
.lsf_c03156{letter-spacing:-0.232320pt;}
.ls7_c03156{letter-spacing:-0.215424pt;}
.ls5_c03156{letter-spacing:-0.105600pt;}
.ls16_c03156{letter-spacing:0.000000pt;}
.ls1_c03156{letter-spacing:0.005376pt;}
.ls6_c03156{letter-spacing:0.114048pt;}
.ls17_c03156{letter-spacing:0.215424pt;}
.lsd_c03156{letter-spacing:0.451968pt;}
.ls15_c03156{letter-spacing:0.456960pt;}
.ls10_c03156{letter-spacing:0.477312pt;}
.lsc_c03156{letter-spacing:0.515328pt;}
.ls14_c03156{letter-spacing:0.528000pt;}
.ls9_c03156{letter-spacing:0.532224pt;}
.ls3_c03156{letter-spacing:0.544896pt;}
.ls0_c03156{letter-spacing:0.578688pt;}
.ls4_c03156{letter-spacing:0.637824pt;}
.ls2_c03156{letter-spacing:0.642048pt;}
.wse_c03156{word-spacing:-13.445376pt;}
.wsc_c03156{word-spacing:-11.088000pt;}
.ws7_c03156{word-spacing:-11.075328pt;}
.wsf_c03156{word-spacing:-11.037312pt;}
.ws4_c03156{word-spacing:-10.344576pt;}
.ws2_c03156{word-spacing:-10.015104pt;}
.ws6_c03156{word-spacing:-9.871488pt;}
.ws15_c03156{word-spacing:-0.963072pt;}
.ws12_c03156{word-spacing:-0.899712pt;}
.ws10_c03156{word-spacing:-0.865920pt;}
.ws19_c03156{word-spacing:-0.639744pt;}
.ws1a_c03156{word-spacing:-0.536448pt;}
.ws13_c03156{word-spacing:-0.105600pt;}
.ws16_c03156{word-spacing:-0.088704pt;}
.ws18_c03156{word-spacing:-0.076032pt;}
.ws17_c03156{word-spacing:-0.046464pt;}
.ws11_c03156{word-spacing:0.000000pt;}
.ws14_c03156{word-spacing:0.384384pt;}
.wsb_c03156{word-spacing:5.892480pt;}
.wsd_c03156{word-spacing:29.600256pt;}
.wsa_c03156{word-spacing:30.966144pt;}
.ws9_c03156{word-spacing:32.127744pt;}
.ws1_c03156{word-spacing:33.563904pt;}
.ws0_c03156{word-spacing:33.796224pt;}
.ws3_c03156{word-spacing:34.860672pt;}
.ws5_c03156{word-spacing:35.468928pt;}
.ws8_c03156{word-spacing:37.357056pt;}
._0_c03156{margin-left:-1.731840pt;}
._2_c03156{width:1.317888pt;}
._4_c03156{width:2.935680pt;}
._6_c03156{width:17.761920pt;}
._7_c03156{width:20.845440pt;}
._5_c03156{width:21.947904pt;}
._1_c03156{width:44.668800pt;}
._3_c03156{width:45.805056pt;}
.fs0_c03156{font-size:42.240000pt;}
.fs1_c03156{font-size:53.760000pt;}
.y0_c03156{bottom:0.000000pt;}
.y1a_c03156{bottom:130.665211pt;}
.y1c_c03156{bottom:165.866875pt;}
.y1b_c03156{bottom:174.507067pt;}
.y19_c03156{bottom:245.225371pt;}
.y18_c03156{bottom:317.225563pt;}
.y16_c03156{bottom:361.386427pt;}
.y12_c03156{bottom:377.386939pt;}
.y17_c03156{bottom:407.786011pt;}
.y15_c03156{bottom:437.226235pt;}
.y14_c03156{bottom:453.226747pt;}
.y11_c03156{bottom:482.666971pt;}
.y13_c03156{bottom:497.386555pt;}
.y10_c03156{bottom:513.387067pt;}
.y1d_c03156{bottom:546.027067pt;}
.yc_c03156{bottom:579.945467pt;}
.yb_c03156{bottom:593.385179pt;}
.ye_c03156{bottom:628.586875pt;}
.yd_c03156{bottom:637.227067pt;}
.ya_c03156{bottom:707.945339pt;}
.y9_c03156{bottom:779.945531pt;}
.y7_c03156{bottom:823.786427pt;}
.y3_c03156{bottom:839.786939pt;}
.y8_c03156{bottom:870.505979pt;}
.y6_c03156{bottom:899.946203pt;}
.y5_c03156{bottom:915.946715pt;}
.y2_c03156{bottom:945.386939pt;}
.y4_c03156{bottom:959.786555pt;}
.y1_c03156{bottom:975.787067pt;}
.yf_c03156{bottom:1008.747067pt;}
.h3_c03156{height:28.916250pt;}
.h1_c03156{height:37.063125pt;}
.h2_c03156{height:37.166250pt;}
.h4_c03156{height:48.581988pt;}
.h0_c03156{height:1122.666667pt;}
.w1_c03156{width:793.333333pt;}
.w0_c03156{width:793.626667pt;}
.x0_c03156{left:0.000000pt;}
.xe_c03156{left:104.000000pt;}
.x8_c03156{left:391.999872pt;}
.x4_c03156{left:396.160512pt;}
.xc_c03156{left:400.960000pt;}
.x7_c03156{left:404.799648pt;}
.x5_c03156{left:410.560128pt;}
.x1_c03156{left:411.840000pt;}
.xa_c03156{left:429.760320pt;}
.x9_c03156{left:437.439552pt;}
.x6_c03156{left:438.400512pt;}
.xd_c03156{left:450.560320pt;}
.x3_c03156{left:455.039904pt;}
.x2_c03156{left:468.159648pt;}
.xb_c03156{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03157 {
    display:none;
  }
  .loading-indicator_c03157.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03157 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03157 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03157" -> "#page-container .classname_c03157")
 */
.pf_c03157 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03157 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03157.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03157 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03157 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03157 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03157 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03157 {overflow:visible;}
  }
}
.c_c03157 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03157 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03157:after { /* webkit #35443 */
  content: '';
}
.t_c03157:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03157 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03157 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03157 { /* info for Javascript */
  display:none;
}
.l_c03157 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03157 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03157 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03157:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03157 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03157.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03157.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03157 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03157{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03157;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03157{font-family:ff1_c03157;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03157;src:url('chunks/assets/font_8933ab74ac4dc78a8bca25d8.woff2')format("woff");}.ff2_c03157{font-family:ff2_c03157;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03157;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03157{font-family:ff3_c03157;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03157{vertical-align:0.000000px;}
.v1_c03157{vertical-align:1.439424px;}
.lsc_c03157{letter-spacing:-0.793584px;}
.ls7_c03157{letter-spacing:-0.613008px;}
.ls9_c03157{letter-spacing:-0.574992px;}
.ls10_c03157{letter-spacing:-0.275616px;}
.lse_c03157{letter-spacing:-0.261360px;}
.ls6_c03157{letter-spacing:-0.242352px;}
.ls4_c03157{letter-spacing:-0.118800px;}
.ls13_c03157{letter-spacing:0.000000px;}
.ls1_c03157{letter-spacing:0.006048px;}
.ls5_c03157{letter-spacing:0.128304px;}
.lsd_c03157{letter-spacing:0.242352px;}
.lsb_c03157{letter-spacing:0.508464px;}
.ls12_c03157{letter-spacing:0.514080px;}
.lsf_c03157{letter-spacing:0.536976px;}
.lsa_c03157{letter-spacing:0.579744px;}
.ls11_c03157{letter-spacing:0.594000px;}
.ls8_c03157{letter-spacing:0.598752px;}
.ls2_c03157{letter-spacing:0.613008px;}
.ls3_c03157{letter-spacing:0.717552px;}
.ls0_c03157{letter-spacing:0.722304px;}
.sc__c03157{text-shadow:none;}
.sc0_c03157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03157{-webkit-text-stroke:0px transparent;}
.sc0_c03157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03157{word-spacing:-15.126048px;}
.wsa_c03157{word-spacing:-12.474000px;}
.ws6_c03157{word-spacing:-12.459744px;}
.ws9_c03157{word-spacing:-12.416976px;}
.ws4_c03157{word-spacing:-11.637648px;}
.ws2_c03157{word-spacing:-11.266992px;}
.ws10_c03157{word-spacing:-1.083456px;}
.wsd_c03157{word-spacing:-0.974160px;}
.ws15_c03157{word-spacing:-0.719712px;}
.ws12_c03157{word-spacing:-0.603504px;}
.wsf_c03157{word-spacing:-0.118800px;}
.ws13_c03157{word-spacing:-0.099792px;}
.ws14_c03157{word-spacing:-0.085536px;}
.wse_c03157{word-spacing:0.000000px;}
.ws11_c03157{word-spacing:0.432432px;}
.wsb_c03157{word-spacing:33.300288px;}
.ws8_c03157{word-spacing:36.143712px;}
.ws1_c03157{word-spacing:37.759392px;}
.ws0_c03157{word-spacing:38.020752px;}
.ws3_c03157{word-spacing:39.218256px;}
.ws5_c03157{word-spacing:39.902544px;}
.ws7_c03157{word-spacing:42.026688px;}
._0_c03157{margin-left:-1.948320px;}
._2_c03157{width:1.482624px;}
._4_c03157{width:3.302640px;}
._1_c03157{width:50.252400px;}
._3_c03157{width:51.530688px;}
.fc0_c03157{color:rgb(0,0,0);}
.fs0_c03157{font-size:47.520000px;}
.fs1_c03157{font-size:60.480000px;}
.y0_c03157{bottom:0.000000px;}
.y19_c03157{bottom:146.998362px;}
.y1b_c03157{bottom:186.600234px;}
.y1a_c03157{bottom:196.320450px;}
.y18_c03157{bottom:275.878542px;}
.y17_c03157{bottom:356.878758px;}
.y15_c03157{bottom:406.559730px;}
.y11_c03157{bottom:424.560306px;}
.y16_c03157{bottom:458.759262px;}
.y14_c03157{bottom:491.879514px;}
.y13_c03157{bottom:509.880090px;}
.y10_c03157{bottom:543.000342px;}
.y12_c03157{bottom:559.559874px;}
.yf_c03157{bottom:577.560450px;}
.y1c_c03157{bottom:614.280450px;}
.yb_c03157{bottom:667.558326px;}
.yd_c03157{bottom:707.160234px;}
.yc_c03157{bottom:716.880450px;}
.ya_c03157{bottom:796.438506px;}
.y9_c03157{bottom:877.438722px;}
.y7_c03157{bottom:926.759730px;}
.y3_c03157{bottom:944.760306px;}
.y8_c03157{bottom:979.319226px;}
.y6_c03157{bottom:1012.439478px;}
.y5_c03157{bottom:1030.440054px;}
.y2_c03157{bottom:1063.560306px;}
.y4_c03157{bottom:1079.759874px;}
.y1_c03157{bottom:1097.760450px;}
.ye_c03157{bottom:1134.840450px;}
.h3_c03157{height:32.530781px;}
.h1_c03157{height:41.696016px;}
.h2_c03157{height:41.812031px;}
.h4_c03157{height:54.654737px;}
.h0_c03157{height:1263.000000px;}
.w1_c03157{width:892.500000px;}
.w0_c03157{width:892.830000px;}
.x0_c03157{left:0.000000px;}
.xd_c03157{left:117.000000px;}
.x8_c03157{left:440.999856px;}
.x4_c03157{left:445.680576px;}
.xb_c03157{left:451.080000px;}
.x7_c03157{left:455.399604px;}
.x5_c03157{left:461.880144px;}
.x1_c03157{left:463.320000px;}
.xa_c03157{left:483.480360px;}
.x9_c03157{left:492.119496px;}
.x6_c03157{left:493.200576px;}
.xc_c03157{left:506.880360px;}
.x3_c03157{left:511.919892px;}
.x2_c03157{left:526.679604px;}
@media print{
.v0_c03157{vertical-align:0.000000pt;}
.v1_c03157{vertical-align:1.279488pt;}
.lsc_c03157{letter-spacing:-0.705408pt;}
.ls7_c03157{letter-spacing:-0.544896pt;}
.ls9_c03157{letter-spacing:-0.511104pt;}
.ls10_c03157{letter-spacing:-0.244992pt;}
.lse_c03157{letter-spacing:-0.232320pt;}
.ls6_c03157{letter-spacing:-0.215424pt;}
.ls4_c03157{letter-spacing:-0.105600pt;}
.ls13_c03157{letter-spacing:0.000000pt;}
.ls1_c03157{letter-spacing:0.005376pt;}
.ls5_c03157{letter-spacing:0.114048pt;}
.lsd_c03157{letter-spacing:0.215424pt;}
.lsb_c03157{letter-spacing:0.451968pt;}
.ls12_c03157{letter-spacing:0.456960pt;}
.lsf_c03157{letter-spacing:0.477312pt;}
.lsa_c03157{letter-spacing:0.515328pt;}
.ls11_c03157{letter-spacing:0.528000pt;}
.ls8_c03157{letter-spacing:0.532224pt;}
.ls2_c03157{letter-spacing:0.544896pt;}
.ls3_c03157{letter-spacing:0.637824pt;}
.ls0_c03157{letter-spacing:0.642048pt;}
.wsc_c03157{word-spacing:-13.445376pt;}
.wsa_c03157{word-spacing:-11.088000pt;}
.ws6_c03157{word-spacing:-11.075328pt;}
.ws9_c03157{word-spacing:-11.037312pt;}
.ws4_c03157{word-spacing:-10.344576pt;}
.ws2_c03157{word-spacing:-10.015104pt;}
.ws10_c03157{word-spacing:-0.963072pt;}
.wsd_c03157{word-spacing:-0.865920pt;}
.ws15_c03157{word-spacing:-0.639744pt;}
.ws12_c03157{word-spacing:-0.536448pt;}
.wsf_c03157{word-spacing:-0.105600pt;}
.ws13_c03157{word-spacing:-0.088704pt;}
.ws14_c03157{word-spacing:-0.076032pt;}
.wse_c03157{word-spacing:0.000000pt;}
.ws11_c03157{word-spacing:0.384384pt;}
.wsb_c03157{word-spacing:29.600256pt;}
.ws8_c03157{word-spacing:32.127744pt;}
.ws1_c03157{word-spacing:33.563904pt;}
.ws0_c03157{word-spacing:33.796224pt;}
.ws3_c03157{word-spacing:34.860672pt;}
.ws5_c03157{word-spacing:35.468928pt;}
.ws7_c03157{word-spacing:37.357056pt;}
._0_c03157{margin-left:-1.731840pt;}
._2_c03157{width:1.317888pt;}
._4_c03157{width:2.935680pt;}
._1_c03157{width:44.668800pt;}
._3_c03157{width:45.805056pt;}
.fs0_c03157{font-size:42.240000pt;}
.fs1_c03157{font-size:53.760000pt;}
.y0_c03157{bottom:0.000000pt;}
.y19_c03157{bottom:130.665211pt;}
.y1b_c03157{bottom:165.866875pt;}
.y1a_c03157{bottom:174.507067pt;}
.y18_c03157{bottom:245.225371pt;}
.y17_c03157{bottom:317.225563pt;}
.y15_c03157{bottom:361.386427pt;}
.y11_c03157{bottom:377.386939pt;}
.y16_c03157{bottom:407.786011pt;}
.y14_c03157{bottom:437.226235pt;}
.y13_c03157{bottom:453.226747pt;}
.y10_c03157{bottom:482.666971pt;}
.y12_c03157{bottom:497.386555pt;}
.yf_c03157{bottom:513.387067pt;}
.y1c_c03157{bottom:546.027067pt;}
.yb_c03157{bottom:593.385179pt;}
.yd_c03157{bottom:628.586875pt;}
.yc_c03157{bottom:637.227067pt;}
.ya_c03157{bottom:707.945339pt;}
.y9_c03157{bottom:779.945531pt;}
.y7_c03157{bottom:823.786427pt;}
.y3_c03157{bottom:839.786939pt;}
.y8_c03157{bottom:870.505979pt;}
.y6_c03157{bottom:899.946203pt;}
.y5_c03157{bottom:915.946715pt;}
.y2_c03157{bottom:945.386939pt;}
.y4_c03157{bottom:959.786555pt;}
.y1_c03157{bottom:975.787067pt;}
.ye_c03157{bottom:1008.747067pt;}
.h3_c03157{height:28.916250pt;}
.h1_c03157{height:37.063125pt;}
.h2_c03157{height:37.166250pt;}
.h4_c03157{height:48.581988pt;}
.h0_c03157{height:1122.666667pt;}
.w1_c03157{width:793.333333pt;}
.w0_c03157{width:793.626667pt;}
.x0_c03157{left:0.000000pt;}
.xd_c03157{left:104.000000pt;}
.x8_c03157{left:391.999872pt;}
.x4_c03157{left:396.160512pt;}
.xb_c03157{left:400.960000pt;}
.x7_c03157{left:404.799648pt;}
.x5_c03157{left:410.560128pt;}
.x1_c03157{left:411.840000pt;}
.xa_c03157{left:429.760320pt;}
.x9_c03157{left:437.439552pt;}
.x6_c03157{left:438.400512pt;}
.xc_c03157{left:450.560320pt;}
.x3_c03157{left:455.039904pt;}
.x2_c03157{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03158 {
    display:none;
  }
  .loading-indicator_c03158.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03158 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03158 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03158" -> "#page-container .classname_c03158")
 */
.pf_c03158 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03158 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03158.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03158 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03158 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03158 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03158 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03158 {overflow:visible;}
  }
}
.c_c03158 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03158 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03158:after { /* webkit #35443 */
  content: '';
}
.t_c03158:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03158 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03158 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03158 { /* info for Javascript */
  display:none;
}
.l_c03158 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03158 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03158 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03158:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03158 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03158.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03158.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03158 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03158{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03158;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03158{font-family:ff1_c03158;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03158;src:url('chunks/assets/font_0d5b9102913a31a7ad7811bf.woff2')format("woff");}.ff2_c03158{font-family:ff2_c03158;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03158;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03158{font-family:ff3_c03158;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03158{vertical-align:0.000000px;}
.v1_c03158{vertical-align:1.439424px;}
.lsb_c03158{letter-spacing:-1.197504px;}
.ls6_c03158{letter-spacing:-0.613008px;}
.ls8_c03158{letter-spacing:-0.574992px;}
.lse_c03158{letter-spacing:-0.275616px;}
.lsc_c03158{letter-spacing:-0.261360px;}
.ls5_c03158{letter-spacing:-0.242352px;}
.ls3_c03158{letter-spacing:-0.118800px;}
.ls11_c03158{letter-spacing:0.000000px;}
.ls1_c03158{letter-spacing:0.006048px;}
.ls4_c03158{letter-spacing:0.128304px;}
.lsa_c03158{letter-spacing:0.508464px;}
.ls10_c03158{letter-spacing:0.514080px;}
.lsd_c03158{letter-spacing:0.536976px;}
.ls9_c03158{letter-spacing:0.579744px;}
.lsf_c03158{letter-spacing:0.594000px;}
.ls7_c03158{letter-spacing:0.598752px;}
.ls2_c03158{letter-spacing:0.613008px;}
.ls0_c03158{letter-spacing:0.717552px;}
.sc__c03158{text-shadow:none;}
.sc0_c03158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03158{-webkit-text-stroke:0px transparent;}
.sc0_c03158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03158{word-spacing:-15.126048px;}
.wsa_c03158{word-spacing:-12.474000px;}
.ws8_c03158{word-spacing:-12.459744px;}
.ws9_c03158{word-spacing:-12.416976px;}
.ws4_c03158{word-spacing:-11.637648px;}
.ws2_c03158{word-spacing:-11.266992px;}
.ws10_c03158{word-spacing:-1.078704px;}
.wsd_c03158{word-spacing:-0.974160px;}
.ws14_c03158{word-spacing:-0.719712px;}
.wsf_c03158{word-spacing:-0.118800px;}
.ws12_c03158{word-spacing:-0.099792px;}
.ws13_c03158{word-spacing:-0.085536px;}
.wse_c03158{word-spacing:0.000000px;}
.ws11_c03158{word-spacing:0.836352px;}
.wsb_c03158{word-spacing:33.300288px;}
.ws6_c03158{word-spacing:36.742464px;}
.ws1_c03158{word-spacing:37.759392px;}
.ws0_c03158{word-spacing:38.020752px;}
.ws3_c03158{word-spacing:39.218256px;}
.ws5_c03158{word-spacing:39.902544px;}
.ws7_c03158{word-spacing:42.026688px;}
._0_c03158{margin-left:-1.948320px;}
._2_c03158{width:1.482624px;}
._4_c03158{width:3.302640px;}
._1_c03158{width:50.252400px;}
._3_c03158{width:51.530688px;}
.fc0_c03158{color:rgb(0,0,0);}
.fs0_c03158{font-size:47.520000px;}
.fs1_c03158{font-size:60.480000px;}
.y0_c03158{bottom:0.000000px;}
.y19_c03158{bottom:146.998362px;}
.y1b_c03158{bottom:186.600234px;}
.y1a_c03158{bottom:196.320450px;}
.y18_c03158{bottom:275.878542px;}
.y17_c03158{bottom:356.878758px;}
.y15_c03158{bottom:406.559730px;}
.y11_c03158{bottom:424.560306px;}
.y16_c03158{bottom:458.759262px;}
.y14_c03158{bottom:491.879514px;}
.y13_c03158{bottom:509.880090px;}
.y10_c03158{bottom:543.000342px;}
.y12_c03158{bottom:559.559874px;}
.yf_c03158{bottom:577.560450px;}
.y1c_c03158{bottom:614.280450px;}
.yb_c03158{bottom:667.558326px;}
.yd_c03158{bottom:707.160234px;}
.yc_c03158{bottom:716.880450px;}
.ya_c03158{bottom:796.438506px;}
.y9_c03158{bottom:877.438722px;}
.y7_c03158{bottom:926.759730px;}
.y3_c03158{bottom:944.760306px;}
.y8_c03158{bottom:979.319226px;}
.y6_c03158{bottom:1012.439478px;}
.y5_c03158{bottom:1030.440054px;}
.y2_c03158{bottom:1063.560306px;}
.y4_c03158{bottom:1079.759874px;}
.y1_c03158{bottom:1097.760450px;}
.ye_c03158{bottom:1134.840450px;}
.h3_c03158{height:32.530781px;}
.h1_c03158{height:41.696016px;}
.h2_c03158{height:41.812031px;}
.h4_c03158{height:54.654737px;}
.h0_c03158{height:1263.000000px;}
.w1_c03158{width:892.500000px;}
.w0_c03158{width:892.830000px;}
.x0_c03158{left:0.000000px;}
.xd_c03158{left:117.000000px;}
.x8_c03158{left:440.999856px;}
.x4_c03158{left:445.680576px;}
.xb_c03158{left:451.080000px;}
.x7_c03158{left:455.399604px;}
.x5_c03158{left:461.880144px;}
.x1_c03158{left:463.320000px;}
.xa_c03158{left:483.480360px;}
.x9_c03158{left:492.119496px;}
.x6_c03158{left:493.200576px;}
.xc_c03158{left:506.880360px;}
.x3_c03158{left:511.919892px;}
.x2_c03158{left:526.679604px;}
@media print{
.v0_c03158{vertical-align:0.000000pt;}
.v1_c03158{vertical-align:1.279488pt;}
.lsb_c03158{letter-spacing:-1.064448pt;}
.ls6_c03158{letter-spacing:-0.544896pt;}
.ls8_c03158{letter-spacing:-0.511104pt;}
.lse_c03158{letter-spacing:-0.244992pt;}
.lsc_c03158{letter-spacing:-0.232320pt;}
.ls5_c03158{letter-spacing:-0.215424pt;}
.ls3_c03158{letter-spacing:-0.105600pt;}
.ls11_c03158{letter-spacing:0.000000pt;}
.ls1_c03158{letter-spacing:0.005376pt;}
.ls4_c03158{letter-spacing:0.114048pt;}
.lsa_c03158{letter-spacing:0.451968pt;}
.ls10_c03158{letter-spacing:0.456960pt;}
.lsd_c03158{letter-spacing:0.477312pt;}
.ls9_c03158{letter-spacing:0.515328pt;}
.lsf_c03158{letter-spacing:0.528000pt;}
.ls7_c03158{letter-spacing:0.532224pt;}
.ls2_c03158{letter-spacing:0.544896pt;}
.ls0_c03158{letter-spacing:0.637824pt;}
.wsc_c03158{word-spacing:-13.445376pt;}
.wsa_c03158{word-spacing:-11.088000pt;}
.ws8_c03158{word-spacing:-11.075328pt;}
.ws9_c03158{word-spacing:-11.037312pt;}
.ws4_c03158{word-spacing:-10.344576pt;}
.ws2_c03158{word-spacing:-10.015104pt;}
.ws10_c03158{word-spacing:-0.958848pt;}
.wsd_c03158{word-spacing:-0.865920pt;}
.ws14_c03158{word-spacing:-0.639744pt;}
.wsf_c03158{word-spacing:-0.105600pt;}
.ws12_c03158{word-spacing:-0.088704pt;}
.ws13_c03158{word-spacing:-0.076032pt;}
.wse_c03158{word-spacing:0.000000pt;}
.ws11_c03158{word-spacing:0.743424pt;}
.wsb_c03158{word-spacing:29.600256pt;}
.ws6_c03158{word-spacing:32.659968pt;}
.ws1_c03158{word-spacing:33.563904pt;}
.ws0_c03158{word-spacing:33.796224pt;}
.ws3_c03158{word-spacing:34.860672pt;}
.ws5_c03158{word-spacing:35.468928pt;}
.ws7_c03158{word-spacing:37.357056pt;}
._0_c03158{margin-left:-1.731840pt;}
._2_c03158{width:1.317888pt;}
._4_c03158{width:2.935680pt;}
._1_c03158{width:44.668800pt;}
._3_c03158{width:45.805056pt;}
.fs0_c03158{font-size:42.240000pt;}
.fs1_c03158{font-size:53.760000pt;}
.y0_c03158{bottom:0.000000pt;}
.y19_c03158{bottom:130.665211pt;}
.y1b_c03158{bottom:165.866875pt;}
.y1a_c03158{bottom:174.507067pt;}
.y18_c03158{bottom:245.225371pt;}
.y17_c03158{bottom:317.225563pt;}
.y15_c03158{bottom:361.386427pt;}
.y11_c03158{bottom:377.386939pt;}
.y16_c03158{bottom:407.786011pt;}
.y14_c03158{bottom:437.226235pt;}
.y13_c03158{bottom:453.226747pt;}
.y10_c03158{bottom:482.666971pt;}
.y12_c03158{bottom:497.386555pt;}
.yf_c03158{bottom:513.387067pt;}
.y1c_c03158{bottom:546.027067pt;}
.yb_c03158{bottom:593.385179pt;}
.yd_c03158{bottom:628.586875pt;}
.yc_c03158{bottom:637.227067pt;}
.ya_c03158{bottom:707.945339pt;}
.y9_c03158{bottom:779.945531pt;}
.y7_c03158{bottom:823.786427pt;}
.y3_c03158{bottom:839.786939pt;}
.y8_c03158{bottom:870.505979pt;}
.y6_c03158{bottom:899.946203pt;}
.y5_c03158{bottom:915.946715pt;}
.y2_c03158{bottom:945.386939pt;}
.y4_c03158{bottom:959.786555pt;}
.y1_c03158{bottom:975.787067pt;}
.ye_c03158{bottom:1008.747067pt;}
.h3_c03158{height:28.916250pt;}
.h1_c03158{height:37.063125pt;}
.h2_c03158{height:37.166250pt;}
.h4_c03158{height:48.581988pt;}
.h0_c03158{height:1122.666667pt;}
.w1_c03158{width:793.333333pt;}
.w0_c03158{width:793.626667pt;}
.x0_c03158{left:0.000000pt;}
.xd_c03158{left:104.000000pt;}
.x8_c03158{left:391.999872pt;}
.x4_c03158{left:396.160512pt;}
.xb_c03158{left:400.960000pt;}
.x7_c03158{left:404.799648pt;}
.x5_c03158{left:410.560128pt;}
.x1_c03158{left:411.840000pt;}
.xa_c03158{left:429.760320pt;}
.x9_c03158{left:437.439552pt;}
.x6_c03158{left:438.400512pt;}
.xc_c03158{left:450.560320pt;}
.x3_c03158{left:455.039904pt;}
.x2_c03158{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03159 {
    display:none;
  }
  .loading-indicator_c03159.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03159 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03159 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03159" -> "#page-container .classname_c03159")
 */
.pf_c03159 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03159 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03159.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03159 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03159 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03159 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03159 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03159 {overflow:visible;}
  }
}
.c_c03159 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03159 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03159:after { /* webkit #35443 */
  content: '';
}
.t_c03159:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03159 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03159 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03159 { /* info for Javascript */
  display:none;
}
.l_c03159 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03159 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03159 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03159:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03159 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03159.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03159.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03159 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03159{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03159;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03159{font-family:ff1_c03159;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03159;src:url('chunks/assets/font_5e05fd119a2d3caa24332be6.woff2')format("woff");}.ff2_c03159{font-family:ff2_c03159;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03159;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03159{font-family:ff3_c03159;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03159{vertical-align:0.000000px;}
.v1_c03159{vertical-align:1.439424px;}
.lsc_c03159{letter-spacing:-1.197504px;}
.ls7_c03159{letter-spacing:-0.613008px;}
.ls9_c03159{letter-spacing:-0.574992px;}
.ls10_c03159{letter-spacing:-0.275616px;}
.lse_c03159{letter-spacing:-0.261360px;}
.ls6_c03159{letter-spacing:-0.242352px;}
.ls4_c03159{letter-spacing:-0.118800px;}
.ls13_c03159{letter-spacing:0.000000px;}
.ls1_c03159{letter-spacing:0.006048px;}
.ls5_c03159{letter-spacing:0.128304px;}
.lsd_c03159{letter-spacing:0.242352px;}
.lsb_c03159{letter-spacing:0.508464px;}
.ls12_c03159{letter-spacing:0.514080px;}
.lsf_c03159{letter-spacing:0.536976px;}
.lsa_c03159{letter-spacing:0.579744px;}
.ls11_c03159{letter-spacing:0.594000px;}
.ls8_c03159{letter-spacing:0.598752px;}
.ls2_c03159{letter-spacing:0.613008px;}
.ls3_c03159{letter-spacing:0.717552px;}
.ls0_c03159{letter-spacing:0.722304px;}
.sc__c03159{text-shadow:none;}
.sc0_c03159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03159{-webkit-text-stroke:0px transparent;}
.sc0_c03159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03159{word-spacing:-15.126048px;}
.wsa_c03159{word-spacing:-12.474000px;}
.ws9_c03159{word-spacing:-12.416976px;}
.ws4_c03159{word-spacing:-11.637648px;}
.ws2_c03159{word-spacing:-11.266992px;}
.ws10_c03159{word-spacing:-1.083456px;}
.wsd_c03159{word-spacing:-0.974160px;}
.ws15_c03159{word-spacing:-0.719712px;}
.ws12_c03159{word-spacing:-0.603504px;}
.wsf_c03159{word-spacing:-0.118800px;}
.ws13_c03159{word-spacing:-0.099792px;}
.ws14_c03159{word-spacing:-0.085536px;}
.wse_c03159{word-spacing:0.000000px;}
.ws11_c03159{word-spacing:0.836352px;}
.wsb_c03159{word-spacing:33.300288px;}
.ws8_c03159{word-spacing:36.143712px;}
.ws6_c03159{word-spacing:36.742464px;}
.ws1_c03159{word-spacing:37.759392px;}
.ws0_c03159{word-spacing:38.020752px;}
.ws3_c03159{word-spacing:39.218256px;}
.ws5_c03159{word-spacing:39.902544px;}
.ws7_c03159{word-spacing:42.026688px;}
._0_c03159{margin-left:-1.948320px;}
._2_c03159{width:1.482624px;}
._4_c03159{width:3.302640px;}
._1_c03159{width:50.252400px;}
._3_c03159{width:51.530688px;}
.fc0_c03159{color:rgb(0,0,0);}
.fs0_c03159{font-size:47.520000px;}
.fs1_c03159{font-size:60.480000px;}
.y0_c03159{bottom:0.000000px;}
.y19_c03159{bottom:146.998362px;}
.y1b_c03159{bottom:186.600234px;}
.y1a_c03159{bottom:196.320450px;}
.y18_c03159{bottom:275.878542px;}
.y17_c03159{bottom:356.878758px;}
.y15_c03159{bottom:406.559730px;}
.y11_c03159{bottom:424.560306px;}
.y16_c03159{bottom:458.759262px;}
.y14_c03159{bottom:491.879514px;}
.y13_c03159{bottom:509.880090px;}
.y10_c03159{bottom:543.000342px;}
.y12_c03159{bottom:559.559874px;}
.yf_c03159{bottom:577.560450px;}
.y1c_c03159{bottom:614.280450px;}
.yb_c03159{bottom:667.558326px;}
.yd_c03159{bottom:707.160234px;}
.yc_c03159{bottom:716.880450px;}
.ya_c03159{bottom:796.438506px;}
.y9_c03159{bottom:877.438722px;}
.y7_c03159{bottom:926.759730px;}
.y3_c03159{bottom:944.760306px;}
.y8_c03159{bottom:979.319226px;}
.y6_c03159{bottom:1012.439478px;}
.y5_c03159{bottom:1030.440054px;}
.y2_c03159{bottom:1063.560306px;}
.y4_c03159{bottom:1079.759874px;}
.y1_c03159{bottom:1097.760450px;}
.ye_c03159{bottom:1134.840450px;}
.h3_c03159{height:32.530781px;}
.h1_c03159{height:41.696016px;}
.h2_c03159{height:41.812031px;}
.h4_c03159{height:54.654737px;}
.h0_c03159{height:1263.000000px;}
.w1_c03159{width:892.500000px;}
.w0_c03159{width:892.830000px;}
.x0_c03159{left:0.000000px;}
.xd_c03159{left:117.000000px;}
.x8_c03159{left:440.999856px;}
.x4_c03159{left:445.680576px;}
.xb_c03159{left:451.080000px;}
.x7_c03159{left:455.399604px;}
.x5_c03159{left:461.880144px;}
.x1_c03159{left:463.320000px;}
.xa_c03159{left:483.480360px;}
.x9_c03159{left:492.119496px;}
.x6_c03159{left:493.200576px;}
.xc_c03159{left:506.880360px;}
.x3_c03159{left:511.919892px;}
.x2_c03159{left:526.679604px;}
@media print{
.v0_c03159{vertical-align:0.000000pt;}
.v1_c03159{vertical-align:1.279488pt;}
.lsc_c03159{letter-spacing:-1.064448pt;}
.ls7_c03159{letter-spacing:-0.544896pt;}
.ls9_c03159{letter-spacing:-0.511104pt;}
.ls10_c03159{letter-spacing:-0.244992pt;}
.lse_c03159{letter-spacing:-0.232320pt;}
.ls6_c03159{letter-spacing:-0.215424pt;}
.ls4_c03159{letter-spacing:-0.105600pt;}
.ls13_c03159{letter-spacing:0.000000pt;}
.ls1_c03159{letter-spacing:0.005376pt;}
.ls5_c03159{letter-spacing:0.114048pt;}
.lsd_c03159{letter-spacing:0.215424pt;}
.lsb_c03159{letter-spacing:0.451968pt;}
.ls12_c03159{letter-spacing:0.456960pt;}
.lsf_c03159{letter-spacing:0.477312pt;}
.lsa_c03159{letter-spacing:0.515328pt;}
.ls11_c03159{letter-spacing:0.528000pt;}
.ls8_c03159{letter-spacing:0.532224pt;}
.ls2_c03159{letter-spacing:0.544896pt;}
.ls3_c03159{letter-spacing:0.637824pt;}
.ls0_c03159{letter-spacing:0.642048pt;}
.wsc_c03159{word-spacing:-13.445376pt;}
.wsa_c03159{word-spacing:-11.088000pt;}
.ws9_c03159{word-spacing:-11.037312pt;}
.ws4_c03159{word-spacing:-10.344576pt;}
.ws2_c03159{word-spacing:-10.015104pt;}
.ws10_c03159{word-spacing:-0.963072pt;}
.wsd_c03159{word-spacing:-0.865920pt;}
.ws15_c03159{word-spacing:-0.639744pt;}
.ws12_c03159{word-spacing:-0.536448pt;}
.wsf_c03159{word-spacing:-0.105600pt;}
.ws13_c03159{word-spacing:-0.088704pt;}
.ws14_c03159{word-spacing:-0.076032pt;}
.wse_c03159{word-spacing:0.000000pt;}
.ws11_c03159{word-spacing:0.743424pt;}
.wsb_c03159{word-spacing:29.600256pt;}
.ws8_c03159{word-spacing:32.127744pt;}
.ws6_c03159{word-spacing:32.659968pt;}
.ws1_c03159{word-spacing:33.563904pt;}
.ws0_c03159{word-spacing:33.796224pt;}
.ws3_c03159{word-spacing:34.860672pt;}
.ws5_c03159{word-spacing:35.468928pt;}
.ws7_c03159{word-spacing:37.357056pt;}
._0_c03159{margin-left:-1.731840pt;}
._2_c03159{width:1.317888pt;}
._4_c03159{width:2.935680pt;}
._1_c03159{width:44.668800pt;}
._3_c03159{width:45.805056pt;}
.fs0_c03159{font-size:42.240000pt;}
.fs1_c03159{font-size:53.760000pt;}
.y0_c03159{bottom:0.000000pt;}
.y19_c03159{bottom:130.665211pt;}
.y1b_c03159{bottom:165.866875pt;}
.y1a_c03159{bottom:174.507067pt;}
.y18_c03159{bottom:245.225371pt;}
.y17_c03159{bottom:317.225563pt;}
.y15_c03159{bottom:361.386427pt;}
.y11_c03159{bottom:377.386939pt;}
.y16_c03159{bottom:407.786011pt;}
.y14_c03159{bottom:437.226235pt;}
.y13_c03159{bottom:453.226747pt;}
.y10_c03159{bottom:482.666971pt;}
.y12_c03159{bottom:497.386555pt;}
.yf_c03159{bottom:513.387067pt;}
.y1c_c03159{bottom:546.027067pt;}
.yb_c03159{bottom:593.385179pt;}
.yd_c03159{bottom:628.586875pt;}
.yc_c03159{bottom:637.227067pt;}
.ya_c03159{bottom:707.945339pt;}
.y9_c03159{bottom:779.945531pt;}
.y7_c03159{bottom:823.786427pt;}
.y3_c03159{bottom:839.786939pt;}
.y8_c03159{bottom:870.505979pt;}
.y6_c03159{bottom:899.946203pt;}
.y5_c03159{bottom:915.946715pt;}
.y2_c03159{bottom:945.386939pt;}
.y4_c03159{bottom:959.786555pt;}
.y1_c03159{bottom:975.787067pt;}
.ye_c03159{bottom:1008.747067pt;}
.h3_c03159{height:28.916250pt;}
.h1_c03159{height:37.063125pt;}
.h2_c03159{height:37.166250pt;}
.h4_c03159{height:48.581988pt;}
.h0_c03159{height:1122.666667pt;}
.w1_c03159{width:793.333333pt;}
.w0_c03159{width:793.626667pt;}
.x0_c03159{left:0.000000pt;}
.xd_c03159{left:104.000000pt;}
.x8_c03159{left:391.999872pt;}
.x4_c03159{left:396.160512pt;}
.xb_c03159{left:400.960000pt;}
.x7_c03159{left:404.799648pt;}
.x5_c03159{left:410.560128pt;}
.x1_c03159{left:411.840000pt;}
.xa_c03159{left:429.760320pt;}
.x9_c03159{left:437.439552pt;}
.x6_c03159{left:438.400512pt;}
.xc_c03159{left:450.560320pt;}
.x3_c03159{left:455.039904pt;}
.x2_c03159{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03160 {
    display:none;
  }
  .loading-indicator_c03160.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03160 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03160 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03160" -> "#page-container .classname_c03160")
 */
.pf_c03160 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03160 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03160.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03160 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03160 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03160 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03160 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03160 {overflow:visible;}
  }
}
.c_c03160 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03160 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03160:after { /* webkit #35443 */
  content: '';
}
.t_c03160:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03160 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03160 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03160 { /* info for Javascript */
  display:none;
}
.l_c03160 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03160 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03160 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03160:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03160 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03160.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03160.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03160 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03160{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03160;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03160{font-family:ff1_c03160;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03160;src:url('chunks/assets/font_424e761cc3cf92117382af03.woff2')format("woff");}.ff2_c03160{font-family:ff2_c03160;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03160;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03160{font-family:ff3_c03160;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03160{vertical-align:0.000000px;}
.v2_c03160{vertical-align:1.439424px;}
.v1_c03160{vertical-align:33.121440px;}
.lsc_c03160{letter-spacing:-1.197504px;}
.ls7_c03160{letter-spacing:-0.613008px;}
.ls9_c03160{letter-spacing:-0.574992px;}
.ls10_c03160{letter-spacing:-0.275616px;}
.lse_c03160{letter-spacing:-0.261360px;}
.ls6_c03160{letter-spacing:-0.242352px;}
.ls4_c03160{letter-spacing:-0.118800px;}
.ls13_c03160{letter-spacing:0.000000px;}
.ls1_c03160{letter-spacing:0.006048px;}
.ls5_c03160{letter-spacing:0.128304px;}
.lsd_c03160{letter-spacing:0.242352px;}
.lsb_c03160{letter-spacing:0.508464px;}
.ls12_c03160{letter-spacing:0.514080px;}
.lsf_c03160{letter-spacing:0.536976px;}
.lsa_c03160{letter-spacing:0.579744px;}
.ls11_c03160{letter-spacing:0.594000px;}
.ls8_c03160{letter-spacing:0.598752px;}
.ls2_c03160{letter-spacing:0.613008px;}
.ls3_c03160{letter-spacing:0.717552px;}
.ls0_c03160{letter-spacing:0.722304px;}
.sc__c03160{text-shadow:none;}
.sc0_c03160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03160{-webkit-text-stroke:0px transparent;}
.sc0_c03160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03160{word-spacing:-15.126048px;}
.wse_c03160{word-spacing:-12.474000px;}
.wsd_c03160{word-spacing:-12.459744px;}
.ws9_c03160{word-spacing:-12.416976px;}
.ws4_c03160{word-spacing:-11.637648px;}
.ws2_c03160{word-spacing:-11.266992px;}
.ws12_c03160{word-spacing:-1.083456px;}
.wsf_c03160{word-spacing:-0.974160px;}
.ws17_c03160{word-spacing:-0.719712px;}
.ws14_c03160{word-spacing:-0.603504px;}
.ws11_c03160{word-spacing:-0.118800px;}
.ws15_c03160{word-spacing:-0.099792px;}
.ws16_c03160{word-spacing:-0.085536px;}
.ws10_c03160{word-spacing:0.000000px;}
.ws13_c03160{word-spacing:0.836352px;}
.wsa_c03160{word-spacing:30.298752px;}
.wsb_c03160{word-spacing:33.300288px;}
.ws8_c03160{word-spacing:36.143712px;}
.ws6_c03160{word-spacing:36.742464px;}
.ws1_c03160{word-spacing:37.759392px;}
.ws0_c03160{word-spacing:38.020752px;}
.ws3_c03160{word-spacing:39.218256px;}
.ws5_c03160{word-spacing:39.902544px;}
.ws7_c03160{word-spacing:42.026688px;}
._0_c03160{margin-left:-1.948320px;}
._2_c03160{width:1.482624px;}
._4_c03160{width:3.302640px;}
._1_c03160{width:50.252400px;}
._3_c03160{width:51.530688px;}
.fc0_c03160{color:rgb(0,0,0);}
.fs0_c03160{font-size:47.520000px;}
.fs1_c03160{font-size:60.480000px;}
.y0_c03160{bottom:0.000000px;}
.y19_c03160{bottom:146.998362px;}
.y1b_c03160{bottom:186.600234px;}
.y1a_c03160{bottom:196.320450px;}
.y18_c03160{bottom:275.878542px;}
.y17_c03160{bottom:356.878758px;}
.y15_c03160{bottom:406.559730px;}
.y11_c03160{bottom:424.560306px;}
.y16_c03160{bottom:458.759262px;}
.y14_c03160{bottom:491.879514px;}
.y13_c03160{bottom:509.880090px;}
.y10_c03160{bottom:543.000342px;}
.y12_c03160{bottom:559.559874px;}
.yf_c03160{bottom:577.560450px;}
.y1c_c03160{bottom:614.280450px;}
.yb_c03160{bottom:667.558326px;}
.yd_c03160{bottom:707.160234px;}
.yc_c03160{bottom:716.880450px;}
.ya_c03160{bottom:796.438506px;}
.y9_c03160{bottom:877.438722px;}
.y7_c03160{bottom:926.759730px;}
.y3_c03160{bottom:944.760306px;}
.y8_c03160{bottom:979.319226px;}
.y6_c03160{bottom:1012.439478px;}
.y5_c03160{bottom:1030.440054px;}
.y2_c03160{bottom:1063.560306px;}
.y4_c03160{bottom:1079.759874px;}
.y1_c03160{bottom:1097.760450px;}
.ye_c03160{bottom:1134.840450px;}
.h3_c03160{height:32.530781px;}
.h1_c03160{height:41.696016px;}
.h2_c03160{height:41.812031px;}
.h5_c03160{height:54.654737px;}
.h4_c03160{height:74.817456px;}
.h0_c03160{height:1263.000000px;}
.w1_c03160{width:892.500000px;}
.w0_c03160{width:892.830000px;}
.x0_c03160{left:0.000000px;}
.xd_c03160{left:117.000000px;}
.x8_c03160{left:440.999856px;}
.x4_c03160{left:445.680576px;}
.xb_c03160{left:451.080000px;}
.x7_c03160{left:455.399604px;}
.x5_c03160{left:461.880144px;}
.x1_c03160{left:463.320000px;}
.xa_c03160{left:483.480360px;}
.x9_c03160{left:492.119496px;}
.x6_c03160{left:493.200576px;}
.xc_c03160{left:506.880360px;}
.x3_c03160{left:511.919892px;}
.x2_c03160{left:526.679604px;}
@media print{
.v0_c03160{vertical-align:0.000000pt;}
.v2_c03160{vertical-align:1.279488pt;}
.v1_c03160{vertical-align:29.441280pt;}
.lsc_c03160{letter-spacing:-1.064448pt;}
.ls7_c03160{letter-spacing:-0.544896pt;}
.ls9_c03160{letter-spacing:-0.511104pt;}
.ls10_c03160{letter-spacing:-0.244992pt;}
.lse_c03160{letter-spacing:-0.232320pt;}
.ls6_c03160{letter-spacing:-0.215424pt;}
.ls4_c03160{letter-spacing:-0.105600pt;}
.ls13_c03160{letter-spacing:0.000000pt;}
.ls1_c03160{letter-spacing:0.005376pt;}
.ls5_c03160{letter-spacing:0.114048pt;}
.lsd_c03160{letter-spacing:0.215424pt;}
.lsb_c03160{letter-spacing:0.451968pt;}
.ls12_c03160{letter-spacing:0.456960pt;}
.lsf_c03160{letter-spacing:0.477312pt;}
.lsa_c03160{letter-spacing:0.515328pt;}
.ls11_c03160{letter-spacing:0.528000pt;}
.ls8_c03160{letter-spacing:0.532224pt;}
.ls2_c03160{letter-spacing:0.544896pt;}
.ls3_c03160{letter-spacing:0.637824pt;}
.ls0_c03160{letter-spacing:0.642048pt;}
.wsc_c03160{word-spacing:-13.445376pt;}
.wse_c03160{word-spacing:-11.088000pt;}
.wsd_c03160{word-spacing:-11.075328pt;}
.ws9_c03160{word-spacing:-11.037312pt;}
.ws4_c03160{word-spacing:-10.344576pt;}
.ws2_c03160{word-spacing:-10.015104pt;}
.ws12_c03160{word-spacing:-0.963072pt;}
.wsf_c03160{word-spacing:-0.865920pt;}
.ws17_c03160{word-spacing:-0.639744pt;}
.ws14_c03160{word-spacing:-0.536448pt;}
.ws11_c03160{word-spacing:-0.105600pt;}
.ws15_c03160{word-spacing:-0.088704pt;}
.ws16_c03160{word-spacing:-0.076032pt;}
.ws10_c03160{word-spacing:0.000000pt;}
.ws13_c03160{word-spacing:0.743424pt;}
.wsa_c03160{word-spacing:26.932224pt;}
.wsb_c03160{word-spacing:29.600256pt;}
.ws8_c03160{word-spacing:32.127744pt;}
.ws6_c03160{word-spacing:32.659968pt;}
.ws1_c03160{word-spacing:33.563904pt;}
.ws0_c03160{word-spacing:33.796224pt;}
.ws3_c03160{word-spacing:34.860672pt;}
.ws5_c03160{word-spacing:35.468928pt;}
.ws7_c03160{word-spacing:37.357056pt;}
._0_c03160{margin-left:-1.731840pt;}
._2_c03160{width:1.317888pt;}
._4_c03160{width:2.935680pt;}
._1_c03160{width:44.668800pt;}
._3_c03160{width:45.805056pt;}
.fs0_c03160{font-size:42.240000pt;}
.fs1_c03160{font-size:53.760000pt;}
.y0_c03160{bottom:0.000000pt;}
.y19_c03160{bottom:130.665211pt;}
.y1b_c03160{bottom:165.866875pt;}
.y1a_c03160{bottom:174.507067pt;}
.y18_c03160{bottom:245.225371pt;}
.y17_c03160{bottom:317.225563pt;}
.y15_c03160{bottom:361.386427pt;}
.y11_c03160{bottom:377.386939pt;}
.y16_c03160{bottom:407.786011pt;}
.y14_c03160{bottom:437.226235pt;}
.y13_c03160{bottom:453.226747pt;}
.y10_c03160{bottom:482.666971pt;}
.y12_c03160{bottom:497.386555pt;}
.yf_c03160{bottom:513.387067pt;}
.y1c_c03160{bottom:546.027067pt;}
.yb_c03160{bottom:593.385179pt;}
.yd_c03160{bottom:628.586875pt;}
.yc_c03160{bottom:637.227067pt;}
.ya_c03160{bottom:707.945339pt;}
.y9_c03160{bottom:779.945531pt;}
.y7_c03160{bottom:823.786427pt;}
.y3_c03160{bottom:839.786939pt;}
.y8_c03160{bottom:870.505979pt;}
.y6_c03160{bottom:899.946203pt;}
.y5_c03160{bottom:915.946715pt;}
.y2_c03160{bottom:945.386939pt;}
.y4_c03160{bottom:959.786555pt;}
.y1_c03160{bottom:975.787067pt;}
.ye_c03160{bottom:1008.747067pt;}
.h3_c03160{height:28.916250pt;}
.h1_c03160{height:37.063125pt;}
.h2_c03160{height:37.166250pt;}
.h5_c03160{height:48.581988pt;}
.h4_c03160{height:66.504405pt;}
.h0_c03160{height:1122.666667pt;}
.w1_c03160{width:793.333333pt;}
.w0_c03160{width:793.626667pt;}
.x0_c03160{left:0.000000pt;}
.xd_c03160{left:104.000000pt;}
.x8_c03160{left:391.999872pt;}
.x4_c03160{left:396.160512pt;}
.xb_c03160{left:400.960000pt;}
.x7_c03160{left:404.799648pt;}
.x5_c03160{left:410.560128pt;}
.x1_c03160{left:411.840000pt;}
.xa_c03160{left:429.760320pt;}
.x9_c03160{left:437.439552pt;}
.x6_c03160{left:438.400512pt;}
.xc_c03160{left:450.560320pt;}
.x3_c03160{left:455.039904pt;}
.x2_c03160{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03161 {
    display:none;
  }
  .loading-indicator_c03161.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03161 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03161 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03161" -> "#page-container .classname_c03161")
 */
.pf_c03161 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03161 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03161.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03161 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03161 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03161 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03161 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03161 {overflow:visible;}
  }
}
.c_c03161 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03161 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03161:after { /* webkit #35443 */
  content: '';
}
.t_c03161:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03161 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03161 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03161 { /* info for Javascript */
  display:none;
}
.l_c03161 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03161 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03161 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03161:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03161 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03161.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03161.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03161 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03161{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03161;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03161{font-family:ff1_c03161;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03161;src:url('chunks/assets/font_83b323e92069c937497fb81f.woff2')format("woff");}.ff2_c03161{font-family:ff2_c03161;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03161;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03161{font-family:ff3_c03161;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03161{vertical-align:0.000000px;}
.v1_c03161{vertical-align:1.439424px;}
.v2_c03161{vertical-align:33.121440px;}
.ls7_c03161{letter-spacing:-0.613008px;}
.ls9_c03161{letter-spacing:-0.574992px;}
.lse_c03161{letter-spacing:-0.275616px;}
.lsc_c03161{letter-spacing:-0.261360px;}
.ls6_c03161{letter-spacing:-0.242352px;}
.ls4_c03161{letter-spacing:-0.118800px;}
.ls11_c03161{letter-spacing:0.000000px;}
.ls1_c03161{letter-spacing:0.006048px;}
.ls5_c03161{letter-spacing:0.128304px;}
.ls12_c03161{letter-spacing:0.242352px;}
.lsb_c03161{letter-spacing:0.508464px;}
.ls10_c03161{letter-spacing:0.514080px;}
.lsd_c03161{letter-spacing:0.536976px;}
.lsa_c03161{letter-spacing:0.579744px;}
.lsf_c03161{letter-spacing:0.594000px;}
.ls8_c03161{letter-spacing:0.598752px;}
.ls3_c03161{letter-spacing:0.613008px;}
.ls0_c03161{letter-spacing:0.717552px;}
.ls2_c03161{letter-spacing:0.722304px;}
.sc__c03161{text-shadow:none;}
.sc0_c03161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03161{-webkit-text-stroke:0px transparent;}
.sc0_c03161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03161{word-spacing:-15.126048px;}
.wsa_c03161{word-spacing:-12.474000px;}
.ws8_c03161{word-spacing:-12.459744px;}
.ws9_c03161{word-spacing:-12.416976px;}
.ws4_c03161{word-spacing:-11.637648px;}
.ws2_c03161{word-spacing:-11.266992px;}
.ws13_c03161{word-spacing:-1.083456px;}
.ws12_c03161{word-spacing:-1.078704px;}
.wsf_c03161{word-spacing:-0.974160px;}
.ws16_c03161{word-spacing:-0.719712px;}
.ws17_c03161{word-spacing:-0.603504px;}
.ws11_c03161{word-spacing:-0.118800px;}
.ws14_c03161{word-spacing:-0.099792px;}
.ws15_c03161{word-spacing:-0.085536px;}
.ws10_c03161{word-spacing:0.000000px;}
.wse_c03161{word-spacing:30.298752px;}
.wsb_c03161{word-spacing:33.300288px;}
.wsd_c03161{word-spacing:36.143712px;}
.ws6_c03161{word-spacing:36.742464px;}
.ws1_c03161{word-spacing:37.759392px;}
.ws0_c03161{word-spacing:38.020752px;}
.ws3_c03161{word-spacing:39.218256px;}
.ws5_c03161{word-spacing:39.902544px;}
.ws7_c03161{word-spacing:42.026688px;}
._0_c03161{margin-left:-1.948320px;}
._2_c03161{width:1.482624px;}
._4_c03161{width:3.302640px;}
._1_c03161{width:50.252400px;}
._3_c03161{width:51.530688px;}
.fc0_c03161{color:rgb(0,0,0);}
.fs0_c03161{font-size:47.520000px;}
.fs1_c03161{font-size:60.480000px;}
.y0_c03161{bottom:0.000000px;}
.y19_c03161{bottom:146.998362px;}
.y1b_c03161{bottom:186.600234px;}
.y1a_c03161{bottom:196.320450px;}
.y18_c03161{bottom:275.878542px;}
.y17_c03161{bottom:356.878758px;}
.y15_c03161{bottom:406.559730px;}
.y11_c03161{bottom:424.560306px;}
.y16_c03161{bottom:458.759262px;}
.y14_c03161{bottom:491.879514px;}
.y13_c03161{bottom:509.880090px;}
.y10_c03161{bottom:543.000342px;}
.y12_c03161{bottom:559.559874px;}
.yf_c03161{bottom:577.560450px;}
.y1c_c03161{bottom:614.280450px;}
.yb_c03161{bottom:667.558326px;}
.yd_c03161{bottom:707.160234px;}
.yc_c03161{bottom:716.880450px;}
.ya_c03161{bottom:796.438506px;}
.y9_c03161{bottom:877.438722px;}
.y7_c03161{bottom:926.759730px;}
.y3_c03161{bottom:944.760306px;}
.y8_c03161{bottom:979.319226px;}
.y6_c03161{bottom:1012.439478px;}
.y5_c03161{bottom:1030.440054px;}
.y2_c03161{bottom:1063.560306px;}
.y4_c03161{bottom:1079.759874px;}
.y1_c03161{bottom:1097.760450px;}
.ye_c03161{bottom:1134.840450px;}
.h3_c03161{height:32.530781px;}
.h1_c03161{height:41.696016px;}
.h2_c03161{height:41.812031px;}
.h4_c03161{height:54.654737px;}
.h5_c03161{height:74.817456px;}
.h0_c03161{height:1263.000000px;}
.w1_c03161{width:892.500000px;}
.w0_c03161{width:892.830000px;}
.x0_c03161{left:0.000000px;}
.xd_c03161{left:117.000000px;}
.x8_c03161{left:440.999856px;}
.x4_c03161{left:445.680576px;}
.xb_c03161{left:451.080000px;}
.x7_c03161{left:455.399604px;}
.x5_c03161{left:461.880144px;}
.x1_c03161{left:463.320000px;}
.xa_c03161{left:483.480360px;}
.x9_c03161{left:492.119496px;}
.x6_c03161{left:493.200576px;}
.xc_c03161{left:506.880360px;}
.x3_c03161{left:511.919892px;}
.x2_c03161{left:526.679604px;}
@media print{
.v0_c03161{vertical-align:0.000000pt;}
.v1_c03161{vertical-align:1.279488pt;}
.v2_c03161{vertical-align:29.441280pt;}
.ls7_c03161{letter-spacing:-0.544896pt;}
.ls9_c03161{letter-spacing:-0.511104pt;}
.lse_c03161{letter-spacing:-0.244992pt;}
.lsc_c03161{letter-spacing:-0.232320pt;}
.ls6_c03161{letter-spacing:-0.215424pt;}
.ls4_c03161{letter-spacing:-0.105600pt;}
.ls11_c03161{letter-spacing:0.000000pt;}
.ls1_c03161{letter-spacing:0.005376pt;}
.ls5_c03161{letter-spacing:0.114048pt;}
.ls12_c03161{letter-spacing:0.215424pt;}
.lsb_c03161{letter-spacing:0.451968pt;}
.ls10_c03161{letter-spacing:0.456960pt;}
.lsd_c03161{letter-spacing:0.477312pt;}
.lsa_c03161{letter-spacing:0.515328pt;}
.lsf_c03161{letter-spacing:0.528000pt;}
.ls8_c03161{letter-spacing:0.532224pt;}
.ls3_c03161{letter-spacing:0.544896pt;}
.ls0_c03161{letter-spacing:0.637824pt;}
.ls2_c03161{letter-spacing:0.642048pt;}
.wsc_c03161{word-spacing:-13.445376pt;}
.wsa_c03161{word-spacing:-11.088000pt;}
.ws8_c03161{word-spacing:-11.075328pt;}
.ws9_c03161{word-spacing:-11.037312pt;}
.ws4_c03161{word-spacing:-10.344576pt;}
.ws2_c03161{word-spacing:-10.015104pt;}
.ws13_c03161{word-spacing:-0.963072pt;}
.ws12_c03161{word-spacing:-0.958848pt;}
.wsf_c03161{word-spacing:-0.865920pt;}
.ws16_c03161{word-spacing:-0.639744pt;}
.ws17_c03161{word-spacing:-0.536448pt;}
.ws11_c03161{word-spacing:-0.105600pt;}
.ws14_c03161{word-spacing:-0.088704pt;}
.ws15_c03161{word-spacing:-0.076032pt;}
.ws10_c03161{word-spacing:0.000000pt;}
.wse_c03161{word-spacing:26.932224pt;}
.wsb_c03161{word-spacing:29.600256pt;}
.wsd_c03161{word-spacing:32.127744pt;}
.ws6_c03161{word-spacing:32.659968pt;}
.ws1_c03161{word-spacing:33.563904pt;}
.ws0_c03161{word-spacing:33.796224pt;}
.ws3_c03161{word-spacing:34.860672pt;}
.ws5_c03161{word-spacing:35.468928pt;}
.ws7_c03161{word-spacing:37.357056pt;}
._0_c03161{margin-left:-1.731840pt;}
._2_c03161{width:1.317888pt;}
._4_c03161{width:2.935680pt;}
._1_c03161{width:44.668800pt;}
._3_c03161{width:45.805056pt;}
.fs0_c03161{font-size:42.240000pt;}
.fs1_c03161{font-size:53.760000pt;}
.y0_c03161{bottom:0.000000pt;}
.y19_c03161{bottom:130.665211pt;}
.y1b_c03161{bottom:165.866875pt;}
.y1a_c03161{bottom:174.507067pt;}
.y18_c03161{bottom:245.225371pt;}
.y17_c03161{bottom:317.225563pt;}
.y15_c03161{bottom:361.386427pt;}
.y11_c03161{bottom:377.386939pt;}
.y16_c03161{bottom:407.786011pt;}
.y14_c03161{bottom:437.226235pt;}
.y13_c03161{bottom:453.226747pt;}
.y10_c03161{bottom:482.666971pt;}
.y12_c03161{bottom:497.386555pt;}
.yf_c03161{bottom:513.387067pt;}
.y1c_c03161{bottom:546.027067pt;}
.yb_c03161{bottom:593.385179pt;}
.yd_c03161{bottom:628.586875pt;}
.yc_c03161{bottom:637.227067pt;}
.ya_c03161{bottom:707.945339pt;}
.y9_c03161{bottom:779.945531pt;}
.y7_c03161{bottom:823.786427pt;}
.y3_c03161{bottom:839.786939pt;}
.y8_c03161{bottom:870.505979pt;}
.y6_c03161{bottom:899.946203pt;}
.y5_c03161{bottom:915.946715pt;}
.y2_c03161{bottom:945.386939pt;}
.y4_c03161{bottom:959.786555pt;}
.y1_c03161{bottom:975.787067pt;}
.ye_c03161{bottom:1008.747067pt;}
.h3_c03161{height:28.916250pt;}
.h1_c03161{height:37.063125pt;}
.h2_c03161{height:37.166250pt;}
.h4_c03161{height:48.581988pt;}
.h5_c03161{height:66.504405pt;}
.h0_c03161{height:1122.666667pt;}
.w1_c03161{width:793.333333pt;}
.w0_c03161{width:793.626667pt;}
.x0_c03161{left:0.000000pt;}
.xd_c03161{left:104.000000pt;}
.x8_c03161{left:391.999872pt;}
.x4_c03161{left:396.160512pt;}
.xb_c03161{left:400.960000pt;}
.x7_c03161{left:404.799648pt;}
.x5_c03161{left:410.560128pt;}
.x1_c03161{left:411.840000pt;}
.xa_c03161{left:429.760320pt;}
.x9_c03161{left:437.439552pt;}
.x6_c03161{left:438.400512pt;}
.xc_c03161{left:450.560320pt;}
.x3_c03161{left:455.039904pt;}
.x2_c03161{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03162 {
    display:none;
  }
  .loading-indicator_c03162.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03162 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03162 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03162" -> "#page-container .classname_c03162")
 */
.pf_c03162 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03162 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03162.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03162 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03162 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03162 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03162 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03162 {overflow:visible;}
  }
}
.c_c03162 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03162 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03162:after { /* webkit #35443 */
  content: '';
}
.t_c03162:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03162 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03162 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03162 { /* info for Javascript */
  display:none;
}
.l_c03162 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03162 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03162 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03162:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03162 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03162.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03162.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03162 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03162{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03162;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03162{font-family:ff1_c03162;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03162;src:url('chunks/assets/font_3f3dbcce742aeee6e45ae587.woff2')format("woff");}.ff2_c03162{font-family:ff2_c03162;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03162;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03162{font-family:ff3_c03162;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03162{vertical-align:0.000000px;}
.v1_c03162{vertical-align:1.439424px;}
.ls15_c03162{letter-spacing:-1.254528px;}
.lsc_c03162{letter-spacing:-0.722304px;}
.lsd_c03162{letter-spacing:-0.689040px;}
.ls7_c03162{letter-spacing:-0.613008px;}
.ls9_c03162{letter-spacing:-0.574992px;}
.lsf_c03162{letter-spacing:-0.394416px;}
.ls11_c03162{letter-spacing:-0.275616px;}
.lse_c03162{letter-spacing:-0.261360px;}
.ls6_c03162{letter-spacing:-0.242352px;}
.ls4_c03162{letter-spacing:-0.118800px;}
.ls14_c03162{letter-spacing:0.000000px;}
.ls1_c03162{letter-spacing:0.006048px;}
.ls5_c03162{letter-spacing:0.128304px;}
.lsb_c03162{letter-spacing:0.508464px;}
.ls13_c03162{letter-spacing:0.514080px;}
.ls10_c03162{letter-spacing:0.536976px;}
.lsa_c03162{letter-spacing:0.579744px;}
.ls12_c03162{letter-spacing:0.594000px;}
.ls8_c03162{letter-spacing:0.598752px;}
.ls2_c03162{letter-spacing:0.613008px;}
.ls3_c03162{letter-spacing:0.717552px;}
.ls0_c03162{letter-spacing:0.722304px;}
.sc__c03162{text-shadow:none;}
.sc0_c03162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03162{-webkit-text-stroke:0px transparent;}
.sc0_c03162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03162{word-spacing:-15.126048px;}
.wsa_c03162{word-spacing:-12.474000px;}
.ws6_c03162{word-spacing:-12.459744px;}
.ws9_c03162{word-spacing:-12.416976px;}
.ws4_c03162{word-spacing:-11.637648px;}
.ws2_c03162{word-spacing:-11.266992px;}
.ws11_c03162{word-spacing:-1.083456px;}
.wse_c03162{word-spacing:-0.974160px;}
.ws17_c03162{word-spacing:-0.719712px;}
.ws10_c03162{word-spacing:-0.118800px;}
.ws14_c03162{word-spacing:-0.099792px;}
.ws16_c03162{word-spacing:-0.085536px;}
.wsf_c03162{word-spacing:0.000000px;}
.ws15_c03162{word-spacing:0.033264px;}
.ws13_c03162{word-spacing:0.327888px;}
.ws12_c03162{word-spacing:0.361152px;}
.ws18_c03162{word-spacing:0.893376px;}
.wsb_c03162{word-spacing:33.300288px;}
.ws8_c03162{word-spacing:36.143712px;}
.wsd_c03162{word-spacing:36.742464px;}
.ws1_c03162{word-spacing:37.759392px;}
.ws0_c03162{word-spacing:38.020752px;}
.ws3_c03162{word-spacing:39.218256px;}
.ws5_c03162{word-spacing:39.902544px;}
.ws7_c03162{word-spacing:42.026688px;}
._0_c03162{margin-left:-1.948320px;}
._2_c03162{width:1.482624px;}
._4_c03162{width:3.302640px;}
._1_c03162{width:50.252400px;}
._3_c03162{width:51.530688px;}
.fc0_c03162{color:rgb(0,0,0);}
.fs0_c03162{font-size:47.520000px;}
.fs1_c03162{font-size:60.480000px;}
.y0_c03162{bottom:0.000000px;}
.y19_c03162{bottom:146.998362px;}
.y1b_c03162{bottom:186.600234px;}
.y1a_c03162{bottom:196.320450px;}
.y18_c03162{bottom:275.878542px;}
.y17_c03162{bottom:356.878758px;}
.y15_c03162{bottom:406.559730px;}
.y11_c03162{bottom:424.560306px;}
.y16_c03162{bottom:458.759262px;}
.y14_c03162{bottom:491.879514px;}
.y13_c03162{bottom:509.880090px;}
.y10_c03162{bottom:543.000342px;}
.y12_c03162{bottom:559.559874px;}
.yf_c03162{bottom:577.560450px;}
.y1c_c03162{bottom:614.280450px;}
.yb_c03162{bottom:667.558326px;}
.yd_c03162{bottom:707.160234px;}
.yc_c03162{bottom:716.880450px;}
.ya_c03162{bottom:796.438506px;}
.y9_c03162{bottom:877.438722px;}
.y7_c03162{bottom:926.759730px;}
.y3_c03162{bottom:944.760306px;}
.y8_c03162{bottom:979.319226px;}
.y6_c03162{bottom:1012.439478px;}
.y5_c03162{bottom:1030.440054px;}
.y2_c03162{bottom:1063.560306px;}
.y4_c03162{bottom:1079.759874px;}
.y1_c03162{bottom:1097.760450px;}
.ye_c03162{bottom:1134.840450px;}
.h3_c03162{height:32.530781px;}
.h1_c03162{height:41.696016px;}
.h2_c03162{height:41.812031px;}
.h4_c03162{height:54.654737px;}
.h0_c03162{height:1263.000000px;}
.w1_c03162{width:892.500000px;}
.w0_c03162{width:892.830000px;}
.x0_c03162{left:0.000000px;}
.xd_c03162{left:117.000000px;}
.x8_c03162{left:440.999856px;}
.x4_c03162{left:445.680576px;}
.xb_c03162{left:451.080000px;}
.x7_c03162{left:455.399604px;}
.x5_c03162{left:461.880144px;}
.x1_c03162{left:463.320000px;}
.xa_c03162{left:483.480360px;}
.x9_c03162{left:492.119496px;}
.x6_c03162{left:493.200576px;}
.xc_c03162{left:506.880360px;}
.x3_c03162{left:511.919892px;}
.x2_c03162{left:526.679604px;}
@media print{
.v0_c03162{vertical-align:0.000000pt;}
.v1_c03162{vertical-align:1.279488pt;}
.ls15_c03162{letter-spacing:-1.115136pt;}
.lsc_c03162{letter-spacing:-0.642048pt;}
.lsd_c03162{letter-spacing:-0.612480pt;}
.ls7_c03162{letter-spacing:-0.544896pt;}
.ls9_c03162{letter-spacing:-0.511104pt;}
.lsf_c03162{letter-spacing:-0.350592pt;}
.ls11_c03162{letter-spacing:-0.244992pt;}
.lse_c03162{letter-spacing:-0.232320pt;}
.ls6_c03162{letter-spacing:-0.215424pt;}
.ls4_c03162{letter-spacing:-0.105600pt;}
.ls14_c03162{letter-spacing:0.000000pt;}
.ls1_c03162{letter-spacing:0.005376pt;}
.ls5_c03162{letter-spacing:0.114048pt;}
.lsb_c03162{letter-spacing:0.451968pt;}
.ls13_c03162{letter-spacing:0.456960pt;}
.ls10_c03162{letter-spacing:0.477312pt;}
.lsa_c03162{letter-spacing:0.515328pt;}
.ls12_c03162{letter-spacing:0.528000pt;}
.ls8_c03162{letter-spacing:0.532224pt;}
.ls2_c03162{letter-spacing:0.544896pt;}
.ls3_c03162{letter-spacing:0.637824pt;}
.ls0_c03162{letter-spacing:0.642048pt;}
.wsc_c03162{word-spacing:-13.445376pt;}
.wsa_c03162{word-spacing:-11.088000pt;}
.ws6_c03162{word-spacing:-11.075328pt;}
.ws9_c03162{word-spacing:-11.037312pt;}
.ws4_c03162{word-spacing:-10.344576pt;}
.ws2_c03162{word-spacing:-10.015104pt;}
.ws11_c03162{word-spacing:-0.963072pt;}
.wse_c03162{word-spacing:-0.865920pt;}
.ws17_c03162{word-spacing:-0.639744pt;}
.ws10_c03162{word-spacing:-0.105600pt;}
.ws14_c03162{word-spacing:-0.088704pt;}
.ws16_c03162{word-spacing:-0.076032pt;}
.wsf_c03162{word-spacing:0.000000pt;}
.ws15_c03162{word-spacing:0.029568pt;}
.ws13_c03162{word-spacing:0.291456pt;}
.ws12_c03162{word-spacing:0.321024pt;}
.ws18_c03162{word-spacing:0.794112pt;}
.wsb_c03162{word-spacing:29.600256pt;}
.ws8_c03162{word-spacing:32.127744pt;}
.wsd_c03162{word-spacing:32.659968pt;}
.ws1_c03162{word-spacing:33.563904pt;}
.ws0_c03162{word-spacing:33.796224pt;}
.ws3_c03162{word-spacing:34.860672pt;}
.ws5_c03162{word-spacing:35.468928pt;}
.ws7_c03162{word-spacing:37.357056pt;}
._0_c03162{margin-left:-1.731840pt;}
._2_c03162{width:1.317888pt;}
._4_c03162{width:2.935680pt;}
._1_c03162{width:44.668800pt;}
._3_c03162{width:45.805056pt;}
.fs0_c03162{font-size:42.240000pt;}
.fs1_c03162{font-size:53.760000pt;}
.y0_c03162{bottom:0.000000pt;}
.y19_c03162{bottom:130.665211pt;}
.y1b_c03162{bottom:165.866875pt;}
.y1a_c03162{bottom:174.507067pt;}
.y18_c03162{bottom:245.225371pt;}
.y17_c03162{bottom:317.225563pt;}
.y15_c03162{bottom:361.386427pt;}
.y11_c03162{bottom:377.386939pt;}
.y16_c03162{bottom:407.786011pt;}
.y14_c03162{bottom:437.226235pt;}
.y13_c03162{bottom:453.226747pt;}
.y10_c03162{bottom:482.666971pt;}
.y12_c03162{bottom:497.386555pt;}
.yf_c03162{bottom:513.387067pt;}
.y1c_c03162{bottom:546.027067pt;}
.yb_c03162{bottom:593.385179pt;}
.yd_c03162{bottom:628.586875pt;}
.yc_c03162{bottom:637.227067pt;}
.ya_c03162{bottom:707.945339pt;}
.y9_c03162{bottom:779.945531pt;}
.y7_c03162{bottom:823.786427pt;}
.y3_c03162{bottom:839.786939pt;}
.y8_c03162{bottom:870.505979pt;}
.y6_c03162{bottom:899.946203pt;}
.y5_c03162{bottom:915.946715pt;}
.y2_c03162{bottom:945.386939pt;}
.y4_c03162{bottom:959.786555pt;}
.y1_c03162{bottom:975.787067pt;}
.ye_c03162{bottom:1008.747067pt;}
.h3_c03162{height:28.916250pt;}
.h1_c03162{height:37.063125pt;}
.h2_c03162{height:37.166250pt;}
.h4_c03162{height:48.581988pt;}
.h0_c03162{height:1122.666667pt;}
.w1_c03162{width:793.333333pt;}
.w0_c03162{width:793.626667pt;}
.x0_c03162{left:0.000000pt;}
.xd_c03162{left:104.000000pt;}
.x8_c03162{left:391.999872pt;}
.x4_c03162{left:396.160512pt;}
.xb_c03162{left:400.960000pt;}
.x7_c03162{left:404.799648pt;}
.x5_c03162{left:410.560128pt;}
.x1_c03162{left:411.840000pt;}
.xa_c03162{left:429.760320pt;}
.x9_c03162{left:437.439552pt;}
.x6_c03162{left:438.400512pt;}
.xc_c03162{left:450.560320pt;}
.x3_c03162{left:455.039904pt;}
.x2_c03162{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03163 {
    display:none;
  }
  .loading-indicator_c03163.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03163 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03163 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03163" -> "#page-container .classname_c03163")
 */
.pf_c03163 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03163 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03163.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03163 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03163 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03163 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03163 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03163 {overflow:visible;}
  }
}
.c_c03163 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03163 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03163:after { /* webkit #35443 */
  content: '';
}
.t_c03163:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03163 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03163 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03163 { /* info for Javascript */
  display:none;
}
.l_c03163 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03163 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03163 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03163:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03163 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03163.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03163.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03163 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03163{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03163;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03163{font-family:ff1_c03163;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03163;src:url('chunks/assets/font_a365d2ae019ea135ddb922b0.woff2')format("woff");}.ff2_c03163{font-family:ff2_c03163;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03163;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03163{font-family:ff3_c03163;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03163{vertical-align:0.000000px;}
.v1_c03163{vertical-align:1.439424px;}
.lsc_c03163{letter-spacing:-1.254528px;}
.ls7_c03163{letter-spacing:-0.613008px;}
.ls9_c03163{letter-spacing:-0.574992px;}
.ls10_c03163{letter-spacing:-0.275616px;}
.lse_c03163{letter-spacing:-0.261360px;}
.ls6_c03163{letter-spacing:-0.242352px;}
.ls4_c03163{letter-spacing:-0.118800px;}
.ls13_c03163{letter-spacing:0.000000px;}
.ls1_c03163{letter-spacing:0.006048px;}
.ls5_c03163{letter-spacing:0.128304px;}
.lsd_c03163{letter-spacing:0.242352px;}
.lsb_c03163{letter-spacing:0.508464px;}
.ls12_c03163{letter-spacing:0.514080px;}
.lsf_c03163{letter-spacing:0.536976px;}
.lsa_c03163{letter-spacing:0.579744px;}
.ls11_c03163{letter-spacing:0.594000px;}
.ls8_c03163{letter-spacing:0.598752px;}
.ls2_c03163{letter-spacing:0.613008px;}
.ls3_c03163{letter-spacing:0.717552px;}
.ls0_c03163{letter-spacing:0.722304px;}
.sc__c03163{text-shadow:none;}
.sc0_c03163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03163{-webkit-text-stroke:0px transparent;}
.sc0_c03163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03163{word-spacing:-15.126048px;}
.wsa_c03163{word-spacing:-12.474000px;}
.wsd_c03163{word-spacing:-12.459744px;}
.ws9_c03163{word-spacing:-12.416976px;}
.ws4_c03163{word-spacing:-11.637648px;}
.ws2_c03163{word-spacing:-11.266992px;}
.ws11_c03163{word-spacing:-1.083456px;}
.wse_c03163{word-spacing:-0.974160px;}
.ws16_c03163{word-spacing:-0.719712px;}
.ws13_c03163{word-spacing:-0.603504px;}
.ws10_c03163{word-spacing:-0.118800px;}
.ws14_c03163{word-spacing:-0.099792px;}
.ws15_c03163{word-spacing:-0.085536px;}
.wsf_c03163{word-spacing:0.000000px;}
.ws12_c03163{word-spacing:0.893376px;}
.wsb_c03163{word-spacing:33.300288px;}
.ws8_c03163{word-spacing:36.143712px;}
.ws6_c03163{word-spacing:36.742464px;}
.ws1_c03163{word-spacing:37.759392px;}
.ws0_c03163{word-spacing:38.020752px;}
.ws3_c03163{word-spacing:39.218256px;}
.ws5_c03163{word-spacing:39.902544px;}
.ws7_c03163{word-spacing:42.026688px;}
._0_c03163{margin-left:-1.948320px;}
._2_c03163{width:1.482624px;}
._4_c03163{width:3.302640px;}
._1_c03163{width:50.252400px;}
._3_c03163{width:51.530688px;}
.fc0_c03163{color:rgb(0,0,0);}
.fs0_c03163{font-size:47.520000px;}
.fs1_c03163{font-size:60.480000px;}
.y0_c03163{bottom:0.000000px;}
.y19_c03163{bottom:146.998362px;}
.y1b_c03163{bottom:186.600234px;}
.y1a_c03163{bottom:196.320450px;}
.y18_c03163{bottom:275.878542px;}
.y17_c03163{bottom:356.878758px;}
.y15_c03163{bottom:406.559730px;}
.y11_c03163{bottom:424.560306px;}
.y16_c03163{bottom:458.759262px;}
.y14_c03163{bottom:491.879514px;}
.y13_c03163{bottom:509.880090px;}
.y10_c03163{bottom:543.000342px;}
.y12_c03163{bottom:559.559874px;}
.yf_c03163{bottom:577.560450px;}
.y1c_c03163{bottom:614.280450px;}
.yb_c03163{bottom:667.558326px;}
.yd_c03163{bottom:707.160234px;}
.yc_c03163{bottom:716.880450px;}
.ya_c03163{bottom:796.438506px;}
.y9_c03163{bottom:877.438722px;}
.y7_c03163{bottom:926.759730px;}
.y3_c03163{bottom:944.760306px;}
.y8_c03163{bottom:979.319226px;}
.y6_c03163{bottom:1012.439478px;}
.y5_c03163{bottom:1030.440054px;}
.y2_c03163{bottom:1063.560306px;}
.y4_c03163{bottom:1079.759874px;}
.y1_c03163{bottom:1097.760450px;}
.ye_c03163{bottom:1134.840450px;}
.h3_c03163{height:32.530781px;}
.h1_c03163{height:41.696016px;}
.h2_c03163{height:41.812031px;}
.h4_c03163{height:54.654737px;}
.h0_c03163{height:1263.000000px;}
.w1_c03163{width:892.500000px;}
.w0_c03163{width:892.830000px;}
.x0_c03163{left:0.000000px;}
.xd_c03163{left:117.000000px;}
.x8_c03163{left:440.999856px;}
.x4_c03163{left:445.680576px;}
.xb_c03163{left:451.080000px;}
.x7_c03163{left:455.399604px;}
.x5_c03163{left:461.880144px;}
.x1_c03163{left:463.320000px;}
.xa_c03163{left:483.480360px;}
.x9_c03163{left:492.119496px;}
.x6_c03163{left:493.200576px;}
.xc_c03163{left:506.880360px;}
.x3_c03163{left:511.919892px;}
.x2_c03163{left:526.679604px;}
@media print{
.v0_c03163{vertical-align:0.000000pt;}
.v1_c03163{vertical-align:1.279488pt;}
.lsc_c03163{letter-spacing:-1.115136pt;}
.ls7_c03163{letter-spacing:-0.544896pt;}
.ls9_c03163{letter-spacing:-0.511104pt;}
.ls10_c03163{letter-spacing:-0.244992pt;}
.lse_c03163{letter-spacing:-0.232320pt;}
.ls6_c03163{letter-spacing:-0.215424pt;}
.ls4_c03163{letter-spacing:-0.105600pt;}
.ls13_c03163{letter-spacing:0.000000pt;}
.ls1_c03163{letter-spacing:0.005376pt;}
.ls5_c03163{letter-spacing:0.114048pt;}
.lsd_c03163{letter-spacing:0.215424pt;}
.lsb_c03163{letter-spacing:0.451968pt;}
.ls12_c03163{letter-spacing:0.456960pt;}
.lsf_c03163{letter-spacing:0.477312pt;}
.lsa_c03163{letter-spacing:0.515328pt;}
.ls11_c03163{letter-spacing:0.528000pt;}
.ls8_c03163{letter-spacing:0.532224pt;}
.ls2_c03163{letter-spacing:0.544896pt;}
.ls3_c03163{letter-spacing:0.637824pt;}
.ls0_c03163{letter-spacing:0.642048pt;}
.wsc_c03163{word-spacing:-13.445376pt;}
.wsa_c03163{word-spacing:-11.088000pt;}
.wsd_c03163{word-spacing:-11.075328pt;}
.ws9_c03163{word-spacing:-11.037312pt;}
.ws4_c03163{word-spacing:-10.344576pt;}
.ws2_c03163{word-spacing:-10.015104pt;}
.ws11_c03163{word-spacing:-0.963072pt;}
.wse_c03163{word-spacing:-0.865920pt;}
.ws16_c03163{word-spacing:-0.639744pt;}
.ws13_c03163{word-spacing:-0.536448pt;}
.ws10_c03163{word-spacing:-0.105600pt;}
.ws14_c03163{word-spacing:-0.088704pt;}
.ws15_c03163{word-spacing:-0.076032pt;}
.wsf_c03163{word-spacing:0.000000pt;}
.ws12_c03163{word-spacing:0.794112pt;}
.wsb_c03163{word-spacing:29.600256pt;}
.ws8_c03163{word-spacing:32.127744pt;}
.ws6_c03163{word-spacing:32.659968pt;}
.ws1_c03163{word-spacing:33.563904pt;}
.ws0_c03163{word-spacing:33.796224pt;}
.ws3_c03163{word-spacing:34.860672pt;}
.ws5_c03163{word-spacing:35.468928pt;}
.ws7_c03163{word-spacing:37.357056pt;}
._0_c03163{margin-left:-1.731840pt;}
._2_c03163{width:1.317888pt;}
._4_c03163{width:2.935680pt;}
._1_c03163{width:44.668800pt;}
._3_c03163{width:45.805056pt;}
.fs0_c03163{font-size:42.240000pt;}
.fs1_c03163{font-size:53.760000pt;}
.y0_c03163{bottom:0.000000pt;}
.y19_c03163{bottom:130.665211pt;}
.y1b_c03163{bottom:165.866875pt;}
.y1a_c03163{bottom:174.507067pt;}
.y18_c03163{bottom:245.225371pt;}
.y17_c03163{bottom:317.225563pt;}
.y15_c03163{bottom:361.386427pt;}
.y11_c03163{bottom:377.386939pt;}
.y16_c03163{bottom:407.786011pt;}
.y14_c03163{bottom:437.226235pt;}
.y13_c03163{bottom:453.226747pt;}
.y10_c03163{bottom:482.666971pt;}
.y12_c03163{bottom:497.386555pt;}
.yf_c03163{bottom:513.387067pt;}
.y1c_c03163{bottom:546.027067pt;}
.yb_c03163{bottom:593.385179pt;}
.yd_c03163{bottom:628.586875pt;}
.yc_c03163{bottom:637.227067pt;}
.ya_c03163{bottom:707.945339pt;}
.y9_c03163{bottom:779.945531pt;}
.y7_c03163{bottom:823.786427pt;}
.y3_c03163{bottom:839.786939pt;}
.y8_c03163{bottom:870.505979pt;}
.y6_c03163{bottom:899.946203pt;}
.y5_c03163{bottom:915.946715pt;}
.y2_c03163{bottom:945.386939pt;}
.y4_c03163{bottom:959.786555pt;}
.y1_c03163{bottom:975.787067pt;}
.ye_c03163{bottom:1008.747067pt;}
.h3_c03163{height:28.916250pt;}
.h1_c03163{height:37.063125pt;}
.h2_c03163{height:37.166250pt;}
.h4_c03163{height:48.581988pt;}
.h0_c03163{height:1122.666667pt;}
.w1_c03163{width:793.333333pt;}
.w0_c03163{width:793.626667pt;}
.x0_c03163{left:0.000000pt;}
.xd_c03163{left:104.000000pt;}
.x8_c03163{left:391.999872pt;}
.x4_c03163{left:396.160512pt;}
.xb_c03163{left:400.960000pt;}
.x7_c03163{left:404.799648pt;}
.x5_c03163{left:410.560128pt;}
.x1_c03163{left:411.840000pt;}
.xa_c03163{left:429.760320pt;}
.x9_c03163{left:437.439552pt;}
.x6_c03163{left:438.400512pt;}
.xc_c03163{left:450.560320pt;}
.x3_c03163{left:455.039904pt;}
.x2_c03163{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03164 {
    display:none;
  }
  .loading-indicator_c03164.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03164 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03164 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03164" -> "#page-container .classname_c03164")
 */
.pf_c03164 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03164 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03164.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03164 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03164 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03164 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03164 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03164 {overflow:visible;}
  }
}
.c_c03164 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03164 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03164:after { /* webkit #35443 */
  content: '';
}
.t_c03164:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03164 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03164 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03164 { /* info for Javascript */
  display:none;
}
.l_c03164 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03164 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03164 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03164:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03164 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03164.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03164.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03164 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03164{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03164;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03164{font-family:ff1_c03164;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03164;src:url('chunks/assets/font_ba2292f029f7fb448767ca02.woff2')format("woff");}.ff2_c03164{font-family:ff2_c03164;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03164;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03164{font-family:ff3_c03164;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03164{vertical-align:0.000000px;}
.v1_c03164{vertical-align:1.439424px;}
.lsc_c03164{letter-spacing:-1.254528px;}
.ls7_c03164{letter-spacing:-0.613008px;}
.ls9_c03164{letter-spacing:-0.574992px;}
.lsf_c03164{letter-spacing:-0.275616px;}
.lsd_c03164{letter-spacing:-0.261360px;}
.ls6_c03164{letter-spacing:-0.242352px;}
.ls4_c03164{letter-spacing:-0.118800px;}
.ls12_c03164{letter-spacing:0.000000px;}
.ls1_c03164{letter-spacing:0.006048px;}
.ls5_c03164{letter-spacing:0.128304px;}
.lsb_c03164{letter-spacing:0.508464px;}
.ls11_c03164{letter-spacing:0.514080px;}
.lse_c03164{letter-spacing:0.536976px;}
.lsa_c03164{letter-spacing:0.579744px;}
.ls10_c03164{letter-spacing:0.594000px;}
.ls8_c03164{letter-spacing:0.598752px;}
.ls2_c03164{letter-spacing:0.613008px;}
.ls3_c03164{letter-spacing:0.717552px;}
.ls0_c03164{letter-spacing:0.722304px;}
.sc__c03164{text-shadow:none;}
.sc0_c03164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03164{-webkit-text-stroke:0px transparent;}
.sc0_c03164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03164{word-spacing:-15.126048px;}
.wsa_c03164{word-spacing:-12.474000px;}
.ws8_c03164{word-spacing:-12.459744px;}
.ws9_c03164{word-spacing:-12.416976px;}
.ws4_c03164{word-spacing:-11.637648px;}
.ws2_c03164{word-spacing:-11.266992px;}
.ws10_c03164{word-spacing:-1.083456px;}
.wsd_c03164{word-spacing:-0.974160px;}
.ws14_c03164{word-spacing:-0.719712px;}
.wsf_c03164{word-spacing:-0.118800px;}
.ws12_c03164{word-spacing:-0.099792px;}
.ws13_c03164{word-spacing:-0.085536px;}
.wse_c03164{word-spacing:0.000000px;}
.ws11_c03164{word-spacing:0.893376px;}
.wsb_c03164{word-spacing:33.300288px;}
.ws6_c03164{word-spacing:36.742464px;}
.ws1_c03164{word-spacing:37.759392px;}
.ws0_c03164{word-spacing:38.020752px;}
.ws3_c03164{word-spacing:39.218256px;}
.ws5_c03164{word-spacing:39.902544px;}
.ws7_c03164{word-spacing:42.026688px;}
._0_c03164{margin-left:-1.948320px;}
._2_c03164{width:1.482624px;}
._4_c03164{width:3.302640px;}
._1_c03164{width:50.252400px;}
._3_c03164{width:51.530688px;}
.fc0_c03164{color:rgb(0,0,0);}
.fs0_c03164{font-size:47.520000px;}
.fs1_c03164{font-size:60.480000px;}
.y0_c03164{bottom:0.000000px;}
.y19_c03164{bottom:146.998362px;}
.y1b_c03164{bottom:186.600234px;}
.y1a_c03164{bottom:196.320450px;}
.y18_c03164{bottom:275.878542px;}
.y17_c03164{bottom:356.878758px;}
.y15_c03164{bottom:406.559730px;}
.y11_c03164{bottom:424.560306px;}
.y16_c03164{bottom:458.759262px;}
.y14_c03164{bottom:491.879514px;}
.y13_c03164{bottom:509.880090px;}
.y10_c03164{bottom:543.000342px;}
.y12_c03164{bottom:559.559874px;}
.yf_c03164{bottom:577.560450px;}
.y1c_c03164{bottom:614.280450px;}
.yb_c03164{bottom:667.558326px;}
.yd_c03164{bottom:707.160234px;}
.yc_c03164{bottom:716.880450px;}
.ya_c03164{bottom:796.438506px;}
.y9_c03164{bottom:877.438722px;}
.y7_c03164{bottom:926.759730px;}
.y3_c03164{bottom:944.760306px;}
.y8_c03164{bottom:979.319226px;}
.y6_c03164{bottom:1012.439478px;}
.y5_c03164{bottom:1030.440054px;}
.y2_c03164{bottom:1063.560306px;}
.y4_c03164{bottom:1079.759874px;}
.y1_c03164{bottom:1097.760450px;}
.ye_c03164{bottom:1134.840450px;}
.h3_c03164{height:32.530781px;}
.h1_c03164{height:41.696016px;}
.h2_c03164{height:41.812031px;}
.h4_c03164{height:54.654737px;}
.h0_c03164{height:1263.000000px;}
.w1_c03164{width:892.500000px;}
.w0_c03164{width:892.830000px;}
.x0_c03164{left:0.000000px;}
.xd_c03164{left:117.000000px;}
.x8_c03164{left:440.999856px;}
.x4_c03164{left:445.680576px;}
.xb_c03164{left:451.080000px;}
.x7_c03164{left:455.399604px;}
.x5_c03164{left:461.880144px;}
.x1_c03164{left:463.320000px;}
.xa_c03164{left:483.480360px;}
.x9_c03164{left:492.119496px;}
.x6_c03164{left:493.200576px;}
.xc_c03164{left:506.880360px;}
.x3_c03164{left:511.919892px;}
.x2_c03164{left:526.679604px;}
@media print{
.v0_c03164{vertical-align:0.000000pt;}
.v1_c03164{vertical-align:1.279488pt;}
.lsc_c03164{letter-spacing:-1.115136pt;}
.ls7_c03164{letter-spacing:-0.544896pt;}
.ls9_c03164{letter-spacing:-0.511104pt;}
.lsf_c03164{letter-spacing:-0.244992pt;}
.lsd_c03164{letter-spacing:-0.232320pt;}
.ls6_c03164{letter-spacing:-0.215424pt;}
.ls4_c03164{letter-spacing:-0.105600pt;}
.ls12_c03164{letter-spacing:0.000000pt;}
.ls1_c03164{letter-spacing:0.005376pt;}
.ls5_c03164{letter-spacing:0.114048pt;}
.lsb_c03164{letter-spacing:0.451968pt;}
.ls11_c03164{letter-spacing:0.456960pt;}
.lse_c03164{letter-spacing:0.477312pt;}
.lsa_c03164{letter-spacing:0.515328pt;}
.ls10_c03164{letter-spacing:0.528000pt;}
.ls8_c03164{letter-spacing:0.532224pt;}
.ls2_c03164{letter-spacing:0.544896pt;}
.ls3_c03164{letter-spacing:0.637824pt;}
.ls0_c03164{letter-spacing:0.642048pt;}
.wsc_c03164{word-spacing:-13.445376pt;}
.wsa_c03164{word-spacing:-11.088000pt;}
.ws8_c03164{word-spacing:-11.075328pt;}
.ws9_c03164{word-spacing:-11.037312pt;}
.ws4_c03164{word-spacing:-10.344576pt;}
.ws2_c03164{word-spacing:-10.015104pt;}
.ws10_c03164{word-spacing:-0.963072pt;}
.wsd_c03164{word-spacing:-0.865920pt;}
.ws14_c03164{word-spacing:-0.639744pt;}
.wsf_c03164{word-spacing:-0.105600pt;}
.ws12_c03164{word-spacing:-0.088704pt;}
.ws13_c03164{word-spacing:-0.076032pt;}
.wse_c03164{word-spacing:0.000000pt;}
.ws11_c03164{word-spacing:0.794112pt;}
.wsb_c03164{word-spacing:29.600256pt;}
.ws6_c03164{word-spacing:32.659968pt;}
.ws1_c03164{word-spacing:33.563904pt;}
.ws0_c03164{word-spacing:33.796224pt;}
.ws3_c03164{word-spacing:34.860672pt;}
.ws5_c03164{word-spacing:35.468928pt;}
.ws7_c03164{word-spacing:37.357056pt;}
._0_c03164{margin-left:-1.731840pt;}
._2_c03164{width:1.317888pt;}
._4_c03164{width:2.935680pt;}
._1_c03164{width:44.668800pt;}
._3_c03164{width:45.805056pt;}
.fs0_c03164{font-size:42.240000pt;}
.fs1_c03164{font-size:53.760000pt;}
.y0_c03164{bottom:0.000000pt;}
.y19_c03164{bottom:130.665211pt;}
.y1b_c03164{bottom:165.866875pt;}
.y1a_c03164{bottom:174.507067pt;}
.y18_c03164{bottom:245.225371pt;}
.y17_c03164{bottom:317.225563pt;}
.y15_c03164{bottom:361.386427pt;}
.y11_c03164{bottom:377.386939pt;}
.y16_c03164{bottom:407.786011pt;}
.y14_c03164{bottom:437.226235pt;}
.y13_c03164{bottom:453.226747pt;}
.y10_c03164{bottom:482.666971pt;}
.y12_c03164{bottom:497.386555pt;}
.yf_c03164{bottom:513.387067pt;}
.y1c_c03164{bottom:546.027067pt;}
.yb_c03164{bottom:593.385179pt;}
.yd_c03164{bottom:628.586875pt;}
.yc_c03164{bottom:637.227067pt;}
.ya_c03164{bottom:707.945339pt;}
.y9_c03164{bottom:779.945531pt;}
.y7_c03164{bottom:823.786427pt;}
.y3_c03164{bottom:839.786939pt;}
.y8_c03164{bottom:870.505979pt;}
.y6_c03164{bottom:899.946203pt;}
.y5_c03164{bottom:915.946715pt;}
.y2_c03164{bottom:945.386939pt;}
.y4_c03164{bottom:959.786555pt;}
.y1_c03164{bottom:975.787067pt;}
.ye_c03164{bottom:1008.747067pt;}
.h3_c03164{height:28.916250pt;}
.h1_c03164{height:37.063125pt;}
.h2_c03164{height:37.166250pt;}
.h4_c03164{height:48.581988pt;}
.h0_c03164{height:1122.666667pt;}
.w1_c03164{width:793.333333pt;}
.w0_c03164{width:793.626667pt;}
.x0_c03164{left:0.000000pt;}
.xd_c03164{left:104.000000pt;}
.x8_c03164{left:391.999872pt;}
.x4_c03164{left:396.160512pt;}
.xb_c03164{left:400.960000pt;}
.x7_c03164{left:404.799648pt;}
.x5_c03164{left:410.560128pt;}
.x1_c03164{left:411.840000pt;}
.xa_c03164{left:429.760320pt;}
.x9_c03164{left:437.439552pt;}
.x6_c03164{left:438.400512pt;}
.xc_c03164{left:450.560320pt;}
.x3_c03164{left:455.039904pt;}
.x2_c03164{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03165 {
    display:none;
  }
  .loading-indicator_c03165.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03165 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03165 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03165" -> "#page-container .classname_c03165")
 */
.pf_c03165 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03165 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03165.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03165 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03165 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03165 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03165 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03165 {overflow:visible;}
  }
}
.c_c03165 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03165 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03165:after { /* webkit #35443 */
  content: '';
}
.t_c03165:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03165 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03165 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03165 { /* info for Javascript */
  display:none;
}
.l_c03165 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03165 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03165 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03165:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03165 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03165.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03165.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03165 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03165{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03165;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03165{font-family:ff1_c03165;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03165;src:url('chunks/assets/font_39290261b45479a0b73b63b7.woff2')format("woff");}.ff2_c03165{font-family:ff2_c03165;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03165;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03165{font-family:ff3_c03165;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03165{vertical-align:0.000000px;}
.v1_c03165{vertical-align:1.439424px;}
.lsb_c03165{letter-spacing:-1.197504px;}
.ls6_c03165{letter-spacing:-0.613008px;}
.ls8_c03165{letter-spacing:-0.574992px;}
.lse_c03165{letter-spacing:-0.275616px;}
.lsc_c03165{letter-spacing:-0.261360px;}
.ls5_c03165{letter-spacing:-0.242352px;}
.ls3_c03165{letter-spacing:-0.118800px;}
.ls11_c03165{letter-spacing:0.000000px;}
.ls1_c03165{letter-spacing:0.006048px;}
.ls4_c03165{letter-spacing:0.128304px;}
.lsa_c03165{letter-spacing:0.508464px;}
.ls10_c03165{letter-spacing:0.514080px;}
.lsd_c03165{letter-spacing:0.536976px;}
.ls9_c03165{letter-spacing:0.579744px;}
.lsf_c03165{letter-spacing:0.594000px;}
.ls7_c03165{letter-spacing:0.598752px;}
.ls2_c03165{letter-spacing:0.613008px;}
.ls0_c03165{letter-spacing:0.717552px;}
.sc__c03165{text-shadow:none;}
.sc0_c03165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03165{-webkit-text-stroke:0px transparent;}
.sc0_c03165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03165{word-spacing:-15.126048px;}
.wsa_c03165{word-spacing:-12.474000px;}
.ws8_c03165{word-spacing:-12.459744px;}
.ws9_c03165{word-spacing:-12.416976px;}
.ws4_c03165{word-spacing:-11.637648px;}
.ws2_c03165{word-spacing:-11.266992px;}
.ws10_c03165{word-spacing:-1.078704px;}
.wsd_c03165{word-spacing:-0.974160px;}
.ws14_c03165{word-spacing:-0.719712px;}
.wsf_c03165{word-spacing:-0.118800px;}
.ws12_c03165{word-spacing:-0.099792px;}
.ws13_c03165{word-spacing:-0.085536px;}
.wse_c03165{word-spacing:0.000000px;}
.ws11_c03165{word-spacing:0.836352px;}
.wsb_c03165{word-spacing:33.300288px;}
.ws6_c03165{word-spacing:36.742464px;}
.ws1_c03165{word-spacing:37.759392px;}
.ws0_c03165{word-spacing:38.020752px;}
.ws3_c03165{word-spacing:39.218256px;}
.ws5_c03165{word-spacing:39.902544px;}
.ws7_c03165{word-spacing:42.026688px;}
._0_c03165{margin-left:-1.948320px;}
._2_c03165{width:1.482624px;}
._4_c03165{width:3.302640px;}
._1_c03165{width:50.252400px;}
._3_c03165{width:51.530688px;}
.fc0_c03165{color:rgb(0,0,0);}
.fs0_c03165{font-size:47.520000px;}
.fs1_c03165{font-size:60.480000px;}
.y0_c03165{bottom:0.000000px;}
.y19_c03165{bottom:146.998362px;}
.y1b_c03165{bottom:186.600234px;}
.y1a_c03165{bottom:196.320450px;}
.y18_c03165{bottom:275.878542px;}
.y17_c03165{bottom:356.878758px;}
.y15_c03165{bottom:406.559730px;}
.y11_c03165{bottom:424.560306px;}
.y16_c03165{bottom:458.759262px;}
.y14_c03165{bottom:491.879514px;}
.y13_c03165{bottom:509.880090px;}
.y10_c03165{bottom:543.000342px;}
.y12_c03165{bottom:559.559874px;}
.yf_c03165{bottom:577.560450px;}
.y1c_c03165{bottom:614.280450px;}
.yb_c03165{bottom:667.558326px;}
.yd_c03165{bottom:707.160234px;}
.yc_c03165{bottom:716.880450px;}
.ya_c03165{bottom:796.438506px;}
.y9_c03165{bottom:877.438722px;}
.y7_c03165{bottom:926.759730px;}
.y3_c03165{bottom:944.760306px;}
.y8_c03165{bottom:979.319226px;}
.y6_c03165{bottom:1012.439478px;}
.y5_c03165{bottom:1030.440054px;}
.y2_c03165{bottom:1063.560306px;}
.y4_c03165{bottom:1079.759874px;}
.y1_c03165{bottom:1097.760450px;}
.ye_c03165{bottom:1134.840450px;}
.h3_c03165{height:32.530781px;}
.h1_c03165{height:41.696016px;}
.h2_c03165{height:41.812031px;}
.h4_c03165{height:54.654737px;}
.h0_c03165{height:1263.000000px;}
.w1_c03165{width:892.500000px;}
.w0_c03165{width:892.830000px;}
.x0_c03165{left:0.000000px;}
.xd_c03165{left:117.000000px;}
.x8_c03165{left:440.999856px;}
.x4_c03165{left:445.680576px;}
.xb_c03165{left:451.080000px;}
.x7_c03165{left:455.399604px;}
.x5_c03165{left:461.880144px;}
.x1_c03165{left:463.320000px;}
.xa_c03165{left:483.480360px;}
.x9_c03165{left:492.119496px;}
.x6_c03165{left:493.200576px;}
.xc_c03165{left:506.880360px;}
.x3_c03165{left:511.919892px;}
.x2_c03165{left:526.679604px;}
@media print{
.v0_c03165{vertical-align:0.000000pt;}
.v1_c03165{vertical-align:1.279488pt;}
.lsb_c03165{letter-spacing:-1.064448pt;}
.ls6_c03165{letter-spacing:-0.544896pt;}
.ls8_c03165{letter-spacing:-0.511104pt;}
.lse_c03165{letter-spacing:-0.244992pt;}
.lsc_c03165{letter-spacing:-0.232320pt;}
.ls5_c03165{letter-spacing:-0.215424pt;}
.ls3_c03165{letter-spacing:-0.105600pt;}
.ls11_c03165{letter-spacing:0.000000pt;}
.ls1_c03165{letter-spacing:0.005376pt;}
.ls4_c03165{letter-spacing:0.114048pt;}
.lsa_c03165{letter-spacing:0.451968pt;}
.ls10_c03165{letter-spacing:0.456960pt;}
.lsd_c03165{letter-spacing:0.477312pt;}
.ls9_c03165{letter-spacing:0.515328pt;}
.lsf_c03165{letter-spacing:0.528000pt;}
.ls7_c03165{letter-spacing:0.532224pt;}
.ls2_c03165{letter-spacing:0.544896pt;}
.ls0_c03165{letter-spacing:0.637824pt;}
.wsc_c03165{word-spacing:-13.445376pt;}
.wsa_c03165{word-spacing:-11.088000pt;}
.ws8_c03165{word-spacing:-11.075328pt;}
.ws9_c03165{word-spacing:-11.037312pt;}
.ws4_c03165{word-spacing:-10.344576pt;}
.ws2_c03165{word-spacing:-10.015104pt;}
.ws10_c03165{word-spacing:-0.958848pt;}
.wsd_c03165{word-spacing:-0.865920pt;}
.ws14_c03165{word-spacing:-0.639744pt;}
.wsf_c03165{word-spacing:-0.105600pt;}
.ws12_c03165{word-spacing:-0.088704pt;}
.ws13_c03165{word-spacing:-0.076032pt;}
.wse_c03165{word-spacing:0.000000pt;}
.ws11_c03165{word-spacing:0.743424pt;}
.wsb_c03165{word-spacing:29.600256pt;}
.ws6_c03165{word-spacing:32.659968pt;}
.ws1_c03165{word-spacing:33.563904pt;}
.ws0_c03165{word-spacing:33.796224pt;}
.ws3_c03165{word-spacing:34.860672pt;}
.ws5_c03165{word-spacing:35.468928pt;}
.ws7_c03165{word-spacing:37.357056pt;}
._0_c03165{margin-left:-1.731840pt;}
._2_c03165{width:1.317888pt;}
._4_c03165{width:2.935680pt;}
._1_c03165{width:44.668800pt;}
._3_c03165{width:45.805056pt;}
.fs0_c03165{font-size:42.240000pt;}
.fs1_c03165{font-size:53.760000pt;}
.y0_c03165{bottom:0.000000pt;}
.y19_c03165{bottom:130.665211pt;}
.y1b_c03165{bottom:165.866875pt;}
.y1a_c03165{bottom:174.507067pt;}
.y18_c03165{bottom:245.225371pt;}
.y17_c03165{bottom:317.225563pt;}
.y15_c03165{bottom:361.386427pt;}
.y11_c03165{bottom:377.386939pt;}
.y16_c03165{bottom:407.786011pt;}
.y14_c03165{bottom:437.226235pt;}
.y13_c03165{bottom:453.226747pt;}
.y10_c03165{bottom:482.666971pt;}
.y12_c03165{bottom:497.386555pt;}
.yf_c03165{bottom:513.387067pt;}
.y1c_c03165{bottom:546.027067pt;}
.yb_c03165{bottom:593.385179pt;}
.yd_c03165{bottom:628.586875pt;}
.yc_c03165{bottom:637.227067pt;}
.ya_c03165{bottom:707.945339pt;}
.y9_c03165{bottom:779.945531pt;}
.y7_c03165{bottom:823.786427pt;}
.y3_c03165{bottom:839.786939pt;}
.y8_c03165{bottom:870.505979pt;}
.y6_c03165{bottom:899.946203pt;}
.y5_c03165{bottom:915.946715pt;}
.y2_c03165{bottom:945.386939pt;}
.y4_c03165{bottom:959.786555pt;}
.y1_c03165{bottom:975.787067pt;}
.ye_c03165{bottom:1008.747067pt;}
.h3_c03165{height:28.916250pt;}
.h1_c03165{height:37.063125pt;}
.h2_c03165{height:37.166250pt;}
.h4_c03165{height:48.581988pt;}
.h0_c03165{height:1122.666667pt;}
.w1_c03165{width:793.333333pt;}
.w0_c03165{width:793.626667pt;}
.x0_c03165{left:0.000000pt;}
.xd_c03165{left:104.000000pt;}
.x8_c03165{left:391.999872pt;}
.x4_c03165{left:396.160512pt;}
.xb_c03165{left:400.960000pt;}
.x7_c03165{left:404.799648pt;}
.x5_c03165{left:410.560128pt;}
.x1_c03165{left:411.840000pt;}
.xa_c03165{left:429.760320pt;}
.x9_c03165{left:437.439552pt;}
.x6_c03165{left:438.400512pt;}
.xc_c03165{left:450.560320pt;}
.x3_c03165{left:455.039904pt;}
.x2_c03165{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03166 {
    display:none;
  }
  .loading-indicator_c03166.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03166 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03166 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03166" -> "#page-container .classname_c03166")
 */
.pf_c03166 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03166 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03166.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03166 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03166 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03166 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03166 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03166 {overflow:visible;}
  }
}
.c_c03166 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03166 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03166:after { /* webkit #35443 */
  content: '';
}
.t_c03166:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03166 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03166 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03166 { /* info for Javascript */
  display:none;
}
.l_c03166 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03166 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03166 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03166:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03166 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03166.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03166.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03166 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03166{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03166;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03166{font-family:ff1_c03166;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03166;src:url('chunks/assets/font_31ef05c6f79e35c1e18da4c8.woff2')format("woff");}.ff2_c03166{font-family:ff2_c03166;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03166;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03166{font-family:ff3_c03166;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03166{vertical-align:0.000000px;}
.v1_c03166{vertical-align:1.439424px;}
.lsb_c03166{letter-spacing:-1.197504px;}
.ls6_c03166{letter-spacing:-0.613008px;}
.ls8_c03166{letter-spacing:-0.574992px;}
.lse_c03166{letter-spacing:-0.275616px;}
.lsc_c03166{letter-spacing:-0.261360px;}
.ls5_c03166{letter-spacing:-0.242352px;}
.ls3_c03166{letter-spacing:-0.118800px;}
.ls11_c03166{letter-spacing:0.000000px;}
.ls1_c03166{letter-spacing:0.006048px;}
.ls4_c03166{letter-spacing:0.128304px;}
.lsa_c03166{letter-spacing:0.508464px;}
.ls10_c03166{letter-spacing:0.514080px;}
.lsd_c03166{letter-spacing:0.536976px;}
.ls9_c03166{letter-spacing:0.579744px;}
.lsf_c03166{letter-spacing:0.594000px;}
.ls7_c03166{letter-spacing:0.598752px;}
.ls2_c03166{letter-spacing:0.613008px;}
.ls0_c03166{letter-spacing:0.717552px;}
.sc__c03166{text-shadow:none;}
.sc0_c03166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03166{-webkit-text-stroke:0px transparent;}
.sc0_c03166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03166{word-spacing:-15.126048px;}
.wsa_c03166{word-spacing:-12.474000px;}
.ws8_c03166{word-spacing:-12.459744px;}
.ws9_c03166{word-spacing:-12.416976px;}
.ws4_c03166{word-spacing:-11.637648px;}
.ws2_c03166{word-spacing:-11.266992px;}
.ws10_c03166{word-spacing:-1.078704px;}
.wsd_c03166{word-spacing:-0.974160px;}
.ws14_c03166{word-spacing:-0.719712px;}
.wsf_c03166{word-spacing:-0.118800px;}
.ws12_c03166{word-spacing:-0.099792px;}
.ws13_c03166{word-spacing:-0.085536px;}
.wse_c03166{word-spacing:0.000000px;}
.ws11_c03166{word-spacing:0.836352px;}
.wsb_c03166{word-spacing:33.300288px;}
.ws6_c03166{word-spacing:36.742464px;}
.ws1_c03166{word-spacing:37.759392px;}
.ws0_c03166{word-spacing:38.020752px;}
.ws3_c03166{word-spacing:39.218256px;}
.ws5_c03166{word-spacing:39.902544px;}
.ws7_c03166{word-spacing:42.026688px;}
._0_c03166{margin-left:-1.948320px;}
._2_c03166{width:1.482624px;}
._4_c03166{width:3.302640px;}
._1_c03166{width:50.252400px;}
._3_c03166{width:51.530688px;}
.fc0_c03166{color:rgb(0,0,0);}
.fs0_c03166{font-size:47.520000px;}
.fs1_c03166{font-size:60.480000px;}
.y0_c03166{bottom:0.000000px;}
.y19_c03166{bottom:146.998362px;}
.y1b_c03166{bottom:186.600234px;}
.y1a_c03166{bottom:196.320450px;}
.y18_c03166{bottom:275.878542px;}
.y17_c03166{bottom:356.878758px;}
.y15_c03166{bottom:406.559730px;}
.y11_c03166{bottom:424.560306px;}
.y16_c03166{bottom:458.759262px;}
.y14_c03166{bottom:491.879514px;}
.y13_c03166{bottom:509.880090px;}
.y10_c03166{bottom:543.000342px;}
.y12_c03166{bottom:559.559874px;}
.yf_c03166{bottom:577.560450px;}
.y1c_c03166{bottom:614.280450px;}
.yb_c03166{bottom:667.558326px;}
.yd_c03166{bottom:707.160234px;}
.yc_c03166{bottom:716.880450px;}
.ya_c03166{bottom:796.438506px;}
.y9_c03166{bottom:877.438722px;}
.y7_c03166{bottom:926.759730px;}
.y3_c03166{bottom:944.760306px;}
.y8_c03166{bottom:979.319226px;}
.y6_c03166{bottom:1012.439478px;}
.y5_c03166{bottom:1030.440054px;}
.y2_c03166{bottom:1063.560306px;}
.y4_c03166{bottom:1079.759874px;}
.y1_c03166{bottom:1097.760450px;}
.ye_c03166{bottom:1134.840450px;}
.h3_c03166{height:32.530781px;}
.h1_c03166{height:41.696016px;}
.h2_c03166{height:41.812031px;}
.h4_c03166{height:54.654737px;}
.h0_c03166{height:1263.000000px;}
.w1_c03166{width:892.500000px;}
.w0_c03166{width:892.830000px;}
.x0_c03166{left:0.000000px;}
.xd_c03166{left:117.000000px;}
.x8_c03166{left:440.999856px;}
.x4_c03166{left:445.680576px;}
.xb_c03166{left:451.080000px;}
.x7_c03166{left:455.399604px;}
.x5_c03166{left:461.880144px;}
.x1_c03166{left:463.320000px;}
.xa_c03166{left:483.480360px;}
.x9_c03166{left:492.119496px;}
.x6_c03166{left:493.200576px;}
.xc_c03166{left:506.880360px;}
.x3_c03166{left:511.919892px;}
.x2_c03166{left:526.679604px;}
@media print{
.v0_c03166{vertical-align:0.000000pt;}
.v1_c03166{vertical-align:1.279488pt;}
.lsb_c03166{letter-spacing:-1.064448pt;}
.ls6_c03166{letter-spacing:-0.544896pt;}
.ls8_c03166{letter-spacing:-0.511104pt;}
.lse_c03166{letter-spacing:-0.244992pt;}
.lsc_c03166{letter-spacing:-0.232320pt;}
.ls5_c03166{letter-spacing:-0.215424pt;}
.ls3_c03166{letter-spacing:-0.105600pt;}
.ls11_c03166{letter-spacing:0.000000pt;}
.ls1_c03166{letter-spacing:0.005376pt;}
.ls4_c03166{letter-spacing:0.114048pt;}
.lsa_c03166{letter-spacing:0.451968pt;}
.ls10_c03166{letter-spacing:0.456960pt;}
.lsd_c03166{letter-spacing:0.477312pt;}
.ls9_c03166{letter-spacing:0.515328pt;}
.lsf_c03166{letter-spacing:0.528000pt;}
.ls7_c03166{letter-spacing:0.532224pt;}
.ls2_c03166{letter-spacing:0.544896pt;}
.ls0_c03166{letter-spacing:0.637824pt;}
.wsc_c03166{word-spacing:-13.445376pt;}
.wsa_c03166{word-spacing:-11.088000pt;}
.ws8_c03166{word-spacing:-11.075328pt;}
.ws9_c03166{word-spacing:-11.037312pt;}
.ws4_c03166{word-spacing:-10.344576pt;}
.ws2_c03166{word-spacing:-10.015104pt;}
.ws10_c03166{word-spacing:-0.958848pt;}
.wsd_c03166{word-spacing:-0.865920pt;}
.ws14_c03166{word-spacing:-0.639744pt;}
.wsf_c03166{word-spacing:-0.105600pt;}
.ws12_c03166{word-spacing:-0.088704pt;}
.ws13_c03166{word-spacing:-0.076032pt;}
.wse_c03166{word-spacing:0.000000pt;}
.ws11_c03166{word-spacing:0.743424pt;}
.wsb_c03166{word-spacing:29.600256pt;}
.ws6_c03166{word-spacing:32.659968pt;}
.ws1_c03166{word-spacing:33.563904pt;}
.ws0_c03166{word-spacing:33.796224pt;}
.ws3_c03166{word-spacing:34.860672pt;}
.ws5_c03166{word-spacing:35.468928pt;}
.ws7_c03166{word-spacing:37.357056pt;}
._0_c03166{margin-left:-1.731840pt;}
._2_c03166{width:1.317888pt;}
._4_c03166{width:2.935680pt;}
._1_c03166{width:44.668800pt;}
._3_c03166{width:45.805056pt;}
.fs0_c03166{font-size:42.240000pt;}
.fs1_c03166{font-size:53.760000pt;}
.y0_c03166{bottom:0.000000pt;}
.y19_c03166{bottom:130.665211pt;}
.y1b_c03166{bottom:165.866875pt;}
.y1a_c03166{bottom:174.507067pt;}
.y18_c03166{bottom:245.225371pt;}
.y17_c03166{bottom:317.225563pt;}
.y15_c03166{bottom:361.386427pt;}
.y11_c03166{bottom:377.386939pt;}
.y16_c03166{bottom:407.786011pt;}
.y14_c03166{bottom:437.226235pt;}
.y13_c03166{bottom:453.226747pt;}
.y10_c03166{bottom:482.666971pt;}
.y12_c03166{bottom:497.386555pt;}
.yf_c03166{bottom:513.387067pt;}
.y1c_c03166{bottom:546.027067pt;}
.yb_c03166{bottom:593.385179pt;}
.yd_c03166{bottom:628.586875pt;}
.yc_c03166{bottom:637.227067pt;}
.ya_c03166{bottom:707.945339pt;}
.y9_c03166{bottom:779.945531pt;}
.y7_c03166{bottom:823.786427pt;}
.y3_c03166{bottom:839.786939pt;}
.y8_c03166{bottom:870.505979pt;}
.y6_c03166{bottom:899.946203pt;}
.y5_c03166{bottom:915.946715pt;}
.y2_c03166{bottom:945.386939pt;}
.y4_c03166{bottom:959.786555pt;}
.y1_c03166{bottom:975.787067pt;}
.ye_c03166{bottom:1008.747067pt;}
.h3_c03166{height:28.916250pt;}
.h1_c03166{height:37.063125pt;}
.h2_c03166{height:37.166250pt;}
.h4_c03166{height:48.581988pt;}
.h0_c03166{height:1122.666667pt;}
.w1_c03166{width:793.333333pt;}
.w0_c03166{width:793.626667pt;}
.x0_c03166{left:0.000000pt;}
.xd_c03166{left:104.000000pt;}
.x8_c03166{left:391.999872pt;}
.x4_c03166{left:396.160512pt;}
.xb_c03166{left:400.960000pt;}
.x7_c03166{left:404.799648pt;}
.x5_c03166{left:410.560128pt;}
.x1_c03166{left:411.840000pt;}
.xa_c03166{left:429.760320pt;}
.x9_c03166{left:437.439552pt;}
.x6_c03166{left:438.400512pt;}
.xc_c03166{left:450.560320pt;}
.x3_c03166{left:455.039904pt;}
.x2_c03166{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03167 {
    display:none;
  }
  .loading-indicator_c03167.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03167 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03167 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03167" -> "#page-container .classname_c03167")
 */
.pf_c03167 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03167 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03167.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03167 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03167 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03167 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03167 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03167 {overflow:visible;}
  }
}
.c_c03167 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03167 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03167:after { /* webkit #35443 */
  content: '';
}
.t_c03167:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03167 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03167 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03167 { /* info for Javascript */
  display:none;
}
.l_c03167 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03167 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03167 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03167:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03167 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03167.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03167.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03167 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03167{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03167;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03167{font-family:ff1_c03167;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03167;src:url('chunks/assets/font_ec47f6bbba7e0ce9b1c367cd.woff2')format("woff");}.ff2_c03167{font-family:ff2_c03167;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03167;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03167{font-family:ff3_c03167;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03167{vertical-align:0.000000px;}
.v1_c03167{vertical-align:1.439424px;}
.lsb_c03167{letter-spacing:-1.197504px;}
.ls6_c03167{letter-spacing:-0.613008px;}
.ls8_c03167{letter-spacing:-0.574992px;}
.lse_c03167{letter-spacing:-0.275616px;}
.lsc_c03167{letter-spacing:-0.261360px;}
.ls5_c03167{letter-spacing:-0.242352px;}
.ls3_c03167{letter-spacing:-0.118800px;}
.ls11_c03167{letter-spacing:0.000000px;}
.ls1_c03167{letter-spacing:0.006048px;}
.ls4_c03167{letter-spacing:0.128304px;}
.lsa_c03167{letter-spacing:0.508464px;}
.ls10_c03167{letter-spacing:0.514080px;}
.lsd_c03167{letter-spacing:0.536976px;}
.ls9_c03167{letter-spacing:0.579744px;}
.lsf_c03167{letter-spacing:0.594000px;}
.ls7_c03167{letter-spacing:0.598752px;}
.ls2_c03167{letter-spacing:0.613008px;}
.ls0_c03167{letter-spacing:0.717552px;}
.sc__c03167{text-shadow:none;}
.sc0_c03167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03167{-webkit-text-stroke:0px transparent;}
.sc0_c03167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03167{word-spacing:-15.126048px;}
.wsa_c03167{word-spacing:-12.474000px;}
.ws8_c03167{word-spacing:-12.459744px;}
.ws9_c03167{word-spacing:-12.416976px;}
.ws4_c03167{word-spacing:-11.637648px;}
.ws2_c03167{word-spacing:-11.266992px;}
.ws10_c03167{word-spacing:-1.078704px;}
.wsd_c03167{word-spacing:-0.974160px;}
.ws14_c03167{word-spacing:-0.719712px;}
.wsf_c03167{word-spacing:-0.118800px;}
.ws12_c03167{word-spacing:-0.099792px;}
.ws13_c03167{word-spacing:-0.085536px;}
.wse_c03167{word-spacing:0.000000px;}
.ws11_c03167{word-spacing:0.836352px;}
.wsb_c03167{word-spacing:33.300288px;}
.ws6_c03167{word-spacing:36.742464px;}
.ws1_c03167{word-spacing:37.759392px;}
.ws0_c03167{word-spacing:38.020752px;}
.ws3_c03167{word-spacing:39.218256px;}
.ws5_c03167{word-spacing:39.902544px;}
.ws7_c03167{word-spacing:42.026688px;}
._0_c03167{margin-left:-1.948320px;}
._2_c03167{width:1.482624px;}
._4_c03167{width:3.302640px;}
._1_c03167{width:50.252400px;}
._3_c03167{width:51.530688px;}
.fc0_c03167{color:rgb(0,0,0);}
.fs0_c03167{font-size:47.520000px;}
.fs1_c03167{font-size:60.480000px;}
.y0_c03167{bottom:0.000000px;}
.y19_c03167{bottom:146.998362px;}
.y1b_c03167{bottom:186.600234px;}
.y1a_c03167{bottom:196.320450px;}
.y18_c03167{bottom:275.878542px;}
.y17_c03167{bottom:356.878758px;}
.y15_c03167{bottom:406.559730px;}
.y11_c03167{bottom:424.560306px;}
.y16_c03167{bottom:458.759262px;}
.y14_c03167{bottom:491.879514px;}
.y13_c03167{bottom:509.880090px;}
.y10_c03167{bottom:543.000342px;}
.y12_c03167{bottom:559.559874px;}
.yf_c03167{bottom:577.560450px;}
.y1c_c03167{bottom:614.280450px;}
.yb_c03167{bottom:667.558326px;}
.yd_c03167{bottom:707.160234px;}
.yc_c03167{bottom:716.880450px;}
.ya_c03167{bottom:796.438506px;}
.y9_c03167{bottom:877.438722px;}
.y7_c03167{bottom:926.759730px;}
.y3_c03167{bottom:944.760306px;}
.y8_c03167{bottom:979.319226px;}
.y6_c03167{bottom:1012.439478px;}
.y5_c03167{bottom:1030.440054px;}
.y2_c03167{bottom:1063.560306px;}
.y4_c03167{bottom:1079.759874px;}
.y1_c03167{bottom:1097.760450px;}
.ye_c03167{bottom:1134.840450px;}
.h3_c03167{height:32.530781px;}
.h1_c03167{height:41.696016px;}
.h2_c03167{height:41.812031px;}
.h4_c03167{height:54.654737px;}
.h0_c03167{height:1263.000000px;}
.w1_c03167{width:892.500000px;}
.w0_c03167{width:892.830000px;}
.x0_c03167{left:0.000000px;}
.xd_c03167{left:117.000000px;}
.x8_c03167{left:440.999856px;}
.x4_c03167{left:445.680576px;}
.xb_c03167{left:451.080000px;}
.x7_c03167{left:455.399604px;}
.x5_c03167{left:461.880144px;}
.x1_c03167{left:463.320000px;}
.xa_c03167{left:483.480360px;}
.x9_c03167{left:492.119496px;}
.x6_c03167{left:493.200576px;}
.xc_c03167{left:506.880360px;}
.x3_c03167{left:511.919892px;}
.x2_c03167{left:526.679604px;}
@media print{
.v0_c03167{vertical-align:0.000000pt;}
.v1_c03167{vertical-align:1.279488pt;}
.lsb_c03167{letter-spacing:-1.064448pt;}
.ls6_c03167{letter-spacing:-0.544896pt;}
.ls8_c03167{letter-spacing:-0.511104pt;}
.lse_c03167{letter-spacing:-0.244992pt;}
.lsc_c03167{letter-spacing:-0.232320pt;}
.ls5_c03167{letter-spacing:-0.215424pt;}
.ls3_c03167{letter-spacing:-0.105600pt;}
.ls11_c03167{letter-spacing:0.000000pt;}
.ls1_c03167{letter-spacing:0.005376pt;}
.ls4_c03167{letter-spacing:0.114048pt;}
.lsa_c03167{letter-spacing:0.451968pt;}
.ls10_c03167{letter-spacing:0.456960pt;}
.lsd_c03167{letter-spacing:0.477312pt;}
.ls9_c03167{letter-spacing:0.515328pt;}
.lsf_c03167{letter-spacing:0.528000pt;}
.ls7_c03167{letter-spacing:0.532224pt;}
.ls2_c03167{letter-spacing:0.544896pt;}
.ls0_c03167{letter-spacing:0.637824pt;}
.wsc_c03167{word-spacing:-13.445376pt;}
.wsa_c03167{word-spacing:-11.088000pt;}
.ws8_c03167{word-spacing:-11.075328pt;}
.ws9_c03167{word-spacing:-11.037312pt;}
.ws4_c03167{word-spacing:-10.344576pt;}
.ws2_c03167{word-spacing:-10.015104pt;}
.ws10_c03167{word-spacing:-0.958848pt;}
.wsd_c03167{word-spacing:-0.865920pt;}
.ws14_c03167{word-spacing:-0.639744pt;}
.wsf_c03167{word-spacing:-0.105600pt;}
.ws12_c03167{word-spacing:-0.088704pt;}
.ws13_c03167{word-spacing:-0.076032pt;}
.wse_c03167{word-spacing:0.000000pt;}
.ws11_c03167{word-spacing:0.743424pt;}
.wsb_c03167{word-spacing:29.600256pt;}
.ws6_c03167{word-spacing:32.659968pt;}
.ws1_c03167{word-spacing:33.563904pt;}
.ws0_c03167{word-spacing:33.796224pt;}
.ws3_c03167{word-spacing:34.860672pt;}
.ws5_c03167{word-spacing:35.468928pt;}
.ws7_c03167{word-spacing:37.357056pt;}
._0_c03167{margin-left:-1.731840pt;}
._2_c03167{width:1.317888pt;}
._4_c03167{width:2.935680pt;}
._1_c03167{width:44.668800pt;}
._3_c03167{width:45.805056pt;}
.fs0_c03167{font-size:42.240000pt;}
.fs1_c03167{font-size:53.760000pt;}
.y0_c03167{bottom:0.000000pt;}
.y19_c03167{bottom:130.665211pt;}
.y1b_c03167{bottom:165.866875pt;}
.y1a_c03167{bottom:174.507067pt;}
.y18_c03167{bottom:245.225371pt;}
.y17_c03167{bottom:317.225563pt;}
.y15_c03167{bottom:361.386427pt;}
.y11_c03167{bottom:377.386939pt;}
.y16_c03167{bottom:407.786011pt;}
.y14_c03167{bottom:437.226235pt;}
.y13_c03167{bottom:453.226747pt;}
.y10_c03167{bottom:482.666971pt;}
.y12_c03167{bottom:497.386555pt;}
.yf_c03167{bottom:513.387067pt;}
.y1c_c03167{bottom:546.027067pt;}
.yb_c03167{bottom:593.385179pt;}
.yd_c03167{bottom:628.586875pt;}
.yc_c03167{bottom:637.227067pt;}
.ya_c03167{bottom:707.945339pt;}
.y9_c03167{bottom:779.945531pt;}
.y7_c03167{bottom:823.786427pt;}
.y3_c03167{bottom:839.786939pt;}
.y8_c03167{bottom:870.505979pt;}
.y6_c03167{bottom:899.946203pt;}
.y5_c03167{bottom:915.946715pt;}
.y2_c03167{bottom:945.386939pt;}
.y4_c03167{bottom:959.786555pt;}
.y1_c03167{bottom:975.787067pt;}
.ye_c03167{bottom:1008.747067pt;}
.h3_c03167{height:28.916250pt;}
.h1_c03167{height:37.063125pt;}
.h2_c03167{height:37.166250pt;}
.h4_c03167{height:48.581988pt;}
.h0_c03167{height:1122.666667pt;}
.w1_c03167{width:793.333333pt;}
.w0_c03167{width:793.626667pt;}
.x0_c03167{left:0.000000pt;}
.xd_c03167{left:104.000000pt;}
.x8_c03167{left:391.999872pt;}
.x4_c03167{left:396.160512pt;}
.xb_c03167{left:400.960000pt;}
.x7_c03167{left:404.799648pt;}
.x5_c03167{left:410.560128pt;}
.x1_c03167{left:411.840000pt;}
.xa_c03167{left:429.760320pt;}
.x9_c03167{left:437.439552pt;}
.x6_c03167{left:438.400512pt;}
.xc_c03167{left:450.560320pt;}
.x3_c03167{left:455.039904pt;}
.x2_c03167{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03168 {
    display:none;
  }
  .loading-indicator_c03168.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03168 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03168 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03168" -> "#page-container .classname_c03168")
 */
.pf_c03168 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03168 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03168.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03168 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03168 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03168 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03168 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03168 {overflow:visible;}
  }
}
.c_c03168 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03168 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03168:after { /* webkit #35443 */
  content: '';
}
.t_c03168:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03168 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03168 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03168 { /* info for Javascript */
  display:none;
}
.l_c03168 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03168 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03168 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03168:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03168 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03168.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03168.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03168 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03168{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03168;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03168{font-family:ff1_c03168;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03168;src:url('chunks/assets/font_39290261b45479a0b73b63b7.woff2')format("woff");}.ff2_c03168{font-family:ff2_c03168;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03168;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03168{font-family:ff3_c03168;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03168{vertical-align:0.000000px;}
.v1_c03168{vertical-align:1.439424px;}
.lsb_c03168{letter-spacing:-1.197504px;}
.ls6_c03168{letter-spacing:-0.613008px;}
.ls8_c03168{letter-spacing:-0.574992px;}
.lse_c03168{letter-spacing:-0.275616px;}
.lsc_c03168{letter-spacing:-0.261360px;}
.ls5_c03168{letter-spacing:-0.242352px;}
.ls3_c03168{letter-spacing:-0.118800px;}
.ls11_c03168{letter-spacing:0.000000px;}
.ls1_c03168{letter-spacing:0.006048px;}
.ls4_c03168{letter-spacing:0.128304px;}
.lsa_c03168{letter-spacing:0.508464px;}
.ls10_c03168{letter-spacing:0.514080px;}
.lsd_c03168{letter-spacing:0.536976px;}
.ls9_c03168{letter-spacing:0.579744px;}
.lsf_c03168{letter-spacing:0.594000px;}
.ls7_c03168{letter-spacing:0.598752px;}
.ls2_c03168{letter-spacing:0.613008px;}
.ls0_c03168{letter-spacing:0.717552px;}
.sc__c03168{text-shadow:none;}
.sc0_c03168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03168{-webkit-text-stroke:0px transparent;}
.sc0_c03168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03168{word-spacing:-15.126048px;}
.wsa_c03168{word-spacing:-12.474000px;}
.ws8_c03168{word-spacing:-12.459744px;}
.ws9_c03168{word-spacing:-12.416976px;}
.ws4_c03168{word-spacing:-11.637648px;}
.ws2_c03168{word-spacing:-11.266992px;}
.ws10_c03168{word-spacing:-1.078704px;}
.wsd_c03168{word-spacing:-0.974160px;}
.ws14_c03168{word-spacing:-0.719712px;}
.wsf_c03168{word-spacing:-0.118800px;}
.ws12_c03168{word-spacing:-0.099792px;}
.ws13_c03168{word-spacing:-0.085536px;}
.wse_c03168{word-spacing:0.000000px;}
.ws11_c03168{word-spacing:0.836352px;}
.wsb_c03168{word-spacing:33.300288px;}
.ws6_c03168{word-spacing:36.742464px;}
.ws1_c03168{word-spacing:37.759392px;}
.ws0_c03168{word-spacing:38.020752px;}
.ws3_c03168{word-spacing:39.218256px;}
.ws5_c03168{word-spacing:39.902544px;}
.ws7_c03168{word-spacing:42.026688px;}
._0_c03168{margin-left:-1.948320px;}
._2_c03168{width:1.482624px;}
._4_c03168{width:3.302640px;}
._1_c03168{width:50.252400px;}
._3_c03168{width:51.530688px;}
.fc0_c03168{color:rgb(0,0,0);}
.fs0_c03168{font-size:47.520000px;}
.fs1_c03168{font-size:60.480000px;}
.y0_c03168{bottom:0.000000px;}
.y19_c03168{bottom:146.998362px;}
.y1b_c03168{bottom:186.600234px;}
.y1a_c03168{bottom:196.320450px;}
.y18_c03168{bottom:275.878542px;}
.y17_c03168{bottom:356.878758px;}
.y15_c03168{bottom:406.559730px;}
.y11_c03168{bottom:424.560306px;}
.y16_c03168{bottom:458.759262px;}
.y14_c03168{bottom:491.879514px;}
.y13_c03168{bottom:509.880090px;}
.y10_c03168{bottom:543.000342px;}
.y12_c03168{bottom:559.559874px;}
.yf_c03168{bottom:577.560450px;}
.y1c_c03168{bottom:614.280450px;}
.yb_c03168{bottom:667.558326px;}
.yd_c03168{bottom:707.160234px;}
.yc_c03168{bottom:716.880450px;}
.ya_c03168{bottom:796.438506px;}
.y9_c03168{bottom:877.438722px;}
.y7_c03168{bottom:926.759730px;}
.y3_c03168{bottom:944.760306px;}
.y8_c03168{bottom:979.319226px;}
.y6_c03168{bottom:1012.439478px;}
.y5_c03168{bottom:1030.440054px;}
.y2_c03168{bottom:1063.560306px;}
.y4_c03168{bottom:1079.759874px;}
.y1_c03168{bottom:1097.760450px;}
.ye_c03168{bottom:1134.840450px;}
.h3_c03168{height:32.530781px;}
.h1_c03168{height:41.696016px;}
.h2_c03168{height:41.812031px;}
.h4_c03168{height:54.654737px;}
.h0_c03168{height:1263.000000px;}
.w1_c03168{width:892.500000px;}
.w0_c03168{width:892.830000px;}
.x0_c03168{left:0.000000px;}
.xd_c03168{left:117.000000px;}
.x8_c03168{left:440.999856px;}
.x4_c03168{left:445.680576px;}
.xb_c03168{left:451.080000px;}
.x7_c03168{left:455.399604px;}
.x5_c03168{left:461.880144px;}
.x1_c03168{left:463.320000px;}
.xa_c03168{left:483.480360px;}
.x9_c03168{left:492.119496px;}
.x6_c03168{left:493.200576px;}
.xc_c03168{left:506.880360px;}
.x3_c03168{left:511.919892px;}
.x2_c03168{left:526.679604px;}
@media print{
.v0_c03168{vertical-align:0.000000pt;}
.v1_c03168{vertical-align:1.279488pt;}
.lsb_c03168{letter-spacing:-1.064448pt;}
.ls6_c03168{letter-spacing:-0.544896pt;}
.ls8_c03168{letter-spacing:-0.511104pt;}
.lse_c03168{letter-spacing:-0.244992pt;}
.lsc_c03168{letter-spacing:-0.232320pt;}
.ls5_c03168{letter-spacing:-0.215424pt;}
.ls3_c03168{letter-spacing:-0.105600pt;}
.ls11_c03168{letter-spacing:0.000000pt;}
.ls1_c03168{letter-spacing:0.005376pt;}
.ls4_c03168{letter-spacing:0.114048pt;}
.lsa_c03168{letter-spacing:0.451968pt;}
.ls10_c03168{letter-spacing:0.456960pt;}
.lsd_c03168{letter-spacing:0.477312pt;}
.ls9_c03168{letter-spacing:0.515328pt;}
.lsf_c03168{letter-spacing:0.528000pt;}
.ls7_c03168{letter-spacing:0.532224pt;}
.ls2_c03168{letter-spacing:0.544896pt;}
.ls0_c03168{letter-spacing:0.637824pt;}
.wsc_c03168{word-spacing:-13.445376pt;}
.wsa_c03168{word-spacing:-11.088000pt;}
.ws8_c03168{word-spacing:-11.075328pt;}
.ws9_c03168{word-spacing:-11.037312pt;}
.ws4_c03168{word-spacing:-10.344576pt;}
.ws2_c03168{word-spacing:-10.015104pt;}
.ws10_c03168{word-spacing:-0.958848pt;}
.wsd_c03168{word-spacing:-0.865920pt;}
.ws14_c03168{word-spacing:-0.639744pt;}
.wsf_c03168{word-spacing:-0.105600pt;}
.ws12_c03168{word-spacing:-0.088704pt;}
.ws13_c03168{word-spacing:-0.076032pt;}
.wse_c03168{word-spacing:0.000000pt;}
.ws11_c03168{word-spacing:0.743424pt;}
.wsb_c03168{word-spacing:29.600256pt;}
.ws6_c03168{word-spacing:32.659968pt;}
.ws1_c03168{word-spacing:33.563904pt;}
.ws0_c03168{word-spacing:33.796224pt;}
.ws3_c03168{word-spacing:34.860672pt;}
.ws5_c03168{word-spacing:35.468928pt;}
.ws7_c03168{word-spacing:37.357056pt;}
._0_c03168{margin-left:-1.731840pt;}
._2_c03168{width:1.317888pt;}
._4_c03168{width:2.935680pt;}
._1_c03168{width:44.668800pt;}
._3_c03168{width:45.805056pt;}
.fs0_c03168{font-size:42.240000pt;}
.fs1_c03168{font-size:53.760000pt;}
.y0_c03168{bottom:0.000000pt;}
.y19_c03168{bottom:130.665211pt;}
.y1b_c03168{bottom:165.866875pt;}
.y1a_c03168{bottom:174.507067pt;}
.y18_c03168{bottom:245.225371pt;}
.y17_c03168{bottom:317.225563pt;}
.y15_c03168{bottom:361.386427pt;}
.y11_c03168{bottom:377.386939pt;}
.y16_c03168{bottom:407.786011pt;}
.y14_c03168{bottom:437.226235pt;}
.y13_c03168{bottom:453.226747pt;}
.y10_c03168{bottom:482.666971pt;}
.y12_c03168{bottom:497.386555pt;}
.yf_c03168{bottom:513.387067pt;}
.y1c_c03168{bottom:546.027067pt;}
.yb_c03168{bottom:593.385179pt;}
.yd_c03168{bottom:628.586875pt;}
.yc_c03168{bottom:637.227067pt;}
.ya_c03168{bottom:707.945339pt;}
.y9_c03168{bottom:779.945531pt;}
.y7_c03168{bottom:823.786427pt;}
.y3_c03168{bottom:839.786939pt;}
.y8_c03168{bottom:870.505979pt;}
.y6_c03168{bottom:899.946203pt;}
.y5_c03168{bottom:915.946715pt;}
.y2_c03168{bottom:945.386939pt;}
.y4_c03168{bottom:959.786555pt;}
.y1_c03168{bottom:975.787067pt;}
.ye_c03168{bottom:1008.747067pt;}
.h3_c03168{height:28.916250pt;}
.h1_c03168{height:37.063125pt;}
.h2_c03168{height:37.166250pt;}
.h4_c03168{height:48.581988pt;}
.h0_c03168{height:1122.666667pt;}
.w1_c03168{width:793.333333pt;}
.w0_c03168{width:793.626667pt;}
.x0_c03168{left:0.000000pt;}
.xd_c03168{left:104.000000pt;}
.x8_c03168{left:391.999872pt;}
.x4_c03168{left:396.160512pt;}
.xb_c03168{left:400.960000pt;}
.x7_c03168{left:404.799648pt;}
.x5_c03168{left:410.560128pt;}
.x1_c03168{left:411.840000pt;}
.xa_c03168{left:429.760320pt;}
.x9_c03168{left:437.439552pt;}
.x6_c03168{left:438.400512pt;}
.xc_c03168{left:450.560320pt;}
.x3_c03168{left:455.039904pt;}
.x2_c03168{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03169 {
    display:none;
  }
  .loading-indicator_c03169.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03169 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03169 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03169" -> "#page-container .classname_c03169")
 */
.pf_c03169 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03169 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03169.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03169 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03169 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03169 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03169 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03169 {overflow:visible;}
  }
}
.c_c03169 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03169 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03169:after { /* webkit #35443 */
  content: '';
}
.t_c03169:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03169 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03169 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03169 { /* info for Javascript */
  display:none;
}
.l_c03169 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03169 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03169 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03169:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03169 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03169.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03169.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03169 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03169{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03169;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03169{font-family:ff1_c03169;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03169;src:url('chunks/assets/font_2d6ebab13e90651ba71f7833.woff2')format("woff");}.ff2_c03169{font-family:ff2_c03169;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03169;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03169{font-family:ff3_c03169;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03169{vertical-align:0.000000px;}
.v1_c03169{vertical-align:1.439424px;}
.lsb_c03169{letter-spacing:-1.197504px;}
.ls6_c03169{letter-spacing:-0.613008px;}
.ls8_c03169{letter-spacing:-0.574992px;}
.lse_c03169{letter-spacing:-0.275616px;}
.lsc_c03169{letter-spacing:-0.261360px;}
.ls5_c03169{letter-spacing:-0.242352px;}
.ls3_c03169{letter-spacing:-0.118800px;}
.ls11_c03169{letter-spacing:0.000000px;}
.ls1_c03169{letter-spacing:0.006048px;}
.ls4_c03169{letter-spacing:0.128304px;}
.lsa_c03169{letter-spacing:0.508464px;}
.ls10_c03169{letter-spacing:0.514080px;}
.lsd_c03169{letter-spacing:0.536976px;}
.ls9_c03169{letter-spacing:0.579744px;}
.lsf_c03169{letter-spacing:0.594000px;}
.ls7_c03169{letter-spacing:0.598752px;}
.ls2_c03169{letter-spacing:0.613008px;}
.ls0_c03169{letter-spacing:0.717552px;}
.sc__c03169{text-shadow:none;}
.sc0_c03169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03169{-webkit-text-stroke:0px transparent;}
.sc0_c03169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03169{word-spacing:-15.126048px;}
.wsa_c03169{word-spacing:-12.474000px;}
.ws8_c03169{word-spacing:-12.459744px;}
.ws9_c03169{word-spacing:-12.416976px;}
.ws4_c03169{word-spacing:-11.637648px;}
.ws2_c03169{word-spacing:-11.266992px;}
.ws10_c03169{word-spacing:-1.078704px;}
.wsd_c03169{word-spacing:-0.974160px;}
.ws14_c03169{word-spacing:-0.719712px;}
.wsf_c03169{word-spacing:-0.118800px;}
.ws12_c03169{word-spacing:-0.099792px;}
.ws13_c03169{word-spacing:-0.085536px;}
.wse_c03169{word-spacing:0.000000px;}
.ws11_c03169{word-spacing:0.836352px;}
.wsb_c03169{word-spacing:33.300288px;}
.ws6_c03169{word-spacing:36.742464px;}
.ws1_c03169{word-spacing:37.759392px;}
.ws0_c03169{word-spacing:38.020752px;}
.ws3_c03169{word-spacing:39.218256px;}
.ws5_c03169{word-spacing:39.902544px;}
.ws7_c03169{word-spacing:42.026688px;}
._0_c03169{margin-left:-1.948320px;}
._2_c03169{width:1.482624px;}
._4_c03169{width:3.302640px;}
._1_c03169{width:50.252400px;}
._3_c03169{width:51.530688px;}
.fc0_c03169{color:rgb(0,0,0);}
.fs0_c03169{font-size:47.520000px;}
.fs1_c03169{font-size:60.480000px;}
.y0_c03169{bottom:0.000000px;}
.y19_c03169{bottom:146.998362px;}
.y1b_c03169{bottom:186.600234px;}
.y1a_c03169{bottom:196.320450px;}
.y18_c03169{bottom:275.878542px;}
.y17_c03169{bottom:356.878758px;}
.y15_c03169{bottom:406.559730px;}
.y11_c03169{bottom:424.560306px;}
.y16_c03169{bottom:458.759262px;}
.y14_c03169{bottom:491.879514px;}
.y13_c03169{bottom:509.880090px;}
.y10_c03169{bottom:543.000342px;}
.y12_c03169{bottom:559.559874px;}
.yf_c03169{bottom:577.560450px;}
.y1c_c03169{bottom:614.280450px;}
.yb_c03169{bottom:667.558326px;}
.yd_c03169{bottom:707.160234px;}
.yc_c03169{bottom:716.880450px;}
.ya_c03169{bottom:796.438506px;}
.y9_c03169{bottom:877.438722px;}
.y7_c03169{bottom:926.759730px;}
.y3_c03169{bottom:944.760306px;}
.y8_c03169{bottom:979.319226px;}
.y6_c03169{bottom:1012.439478px;}
.y5_c03169{bottom:1030.440054px;}
.y2_c03169{bottom:1063.560306px;}
.y4_c03169{bottom:1079.759874px;}
.y1_c03169{bottom:1097.760450px;}
.ye_c03169{bottom:1134.840450px;}
.h3_c03169{height:32.530781px;}
.h1_c03169{height:41.696016px;}
.h2_c03169{height:41.812031px;}
.h4_c03169{height:54.654737px;}
.h0_c03169{height:1263.000000px;}
.w1_c03169{width:892.500000px;}
.w0_c03169{width:892.830000px;}
.x0_c03169{left:0.000000px;}
.xd_c03169{left:117.000000px;}
.x8_c03169{left:440.999856px;}
.x4_c03169{left:445.680576px;}
.xb_c03169{left:451.080000px;}
.x7_c03169{left:455.399604px;}
.x5_c03169{left:461.880144px;}
.x1_c03169{left:463.320000px;}
.xa_c03169{left:483.480360px;}
.x9_c03169{left:492.119496px;}
.x6_c03169{left:493.200576px;}
.xc_c03169{left:506.880360px;}
.x3_c03169{left:511.919892px;}
.x2_c03169{left:526.679604px;}
@media print{
.v0_c03169{vertical-align:0.000000pt;}
.v1_c03169{vertical-align:1.279488pt;}
.lsb_c03169{letter-spacing:-1.064448pt;}
.ls6_c03169{letter-spacing:-0.544896pt;}
.ls8_c03169{letter-spacing:-0.511104pt;}
.lse_c03169{letter-spacing:-0.244992pt;}
.lsc_c03169{letter-spacing:-0.232320pt;}
.ls5_c03169{letter-spacing:-0.215424pt;}
.ls3_c03169{letter-spacing:-0.105600pt;}
.ls11_c03169{letter-spacing:0.000000pt;}
.ls1_c03169{letter-spacing:0.005376pt;}
.ls4_c03169{letter-spacing:0.114048pt;}
.lsa_c03169{letter-spacing:0.451968pt;}
.ls10_c03169{letter-spacing:0.456960pt;}
.lsd_c03169{letter-spacing:0.477312pt;}
.ls9_c03169{letter-spacing:0.515328pt;}
.lsf_c03169{letter-spacing:0.528000pt;}
.ls7_c03169{letter-spacing:0.532224pt;}
.ls2_c03169{letter-spacing:0.544896pt;}
.ls0_c03169{letter-spacing:0.637824pt;}
.wsc_c03169{word-spacing:-13.445376pt;}
.wsa_c03169{word-spacing:-11.088000pt;}
.ws8_c03169{word-spacing:-11.075328pt;}
.ws9_c03169{word-spacing:-11.037312pt;}
.ws4_c03169{word-spacing:-10.344576pt;}
.ws2_c03169{word-spacing:-10.015104pt;}
.ws10_c03169{word-spacing:-0.958848pt;}
.wsd_c03169{word-spacing:-0.865920pt;}
.ws14_c03169{word-spacing:-0.639744pt;}
.wsf_c03169{word-spacing:-0.105600pt;}
.ws12_c03169{word-spacing:-0.088704pt;}
.ws13_c03169{word-spacing:-0.076032pt;}
.wse_c03169{word-spacing:0.000000pt;}
.ws11_c03169{word-spacing:0.743424pt;}
.wsb_c03169{word-spacing:29.600256pt;}
.ws6_c03169{word-spacing:32.659968pt;}
.ws1_c03169{word-spacing:33.563904pt;}
.ws0_c03169{word-spacing:33.796224pt;}
.ws3_c03169{word-spacing:34.860672pt;}
.ws5_c03169{word-spacing:35.468928pt;}
.ws7_c03169{word-spacing:37.357056pt;}
._0_c03169{margin-left:-1.731840pt;}
._2_c03169{width:1.317888pt;}
._4_c03169{width:2.935680pt;}
._1_c03169{width:44.668800pt;}
._3_c03169{width:45.805056pt;}
.fs0_c03169{font-size:42.240000pt;}
.fs1_c03169{font-size:53.760000pt;}
.y0_c03169{bottom:0.000000pt;}
.y19_c03169{bottom:130.665211pt;}
.y1b_c03169{bottom:165.866875pt;}
.y1a_c03169{bottom:174.507067pt;}
.y18_c03169{bottom:245.225371pt;}
.y17_c03169{bottom:317.225563pt;}
.y15_c03169{bottom:361.386427pt;}
.y11_c03169{bottom:377.386939pt;}
.y16_c03169{bottom:407.786011pt;}
.y14_c03169{bottom:437.226235pt;}
.y13_c03169{bottom:453.226747pt;}
.y10_c03169{bottom:482.666971pt;}
.y12_c03169{bottom:497.386555pt;}
.yf_c03169{bottom:513.387067pt;}
.y1c_c03169{bottom:546.027067pt;}
.yb_c03169{bottom:593.385179pt;}
.yd_c03169{bottom:628.586875pt;}
.yc_c03169{bottom:637.227067pt;}
.ya_c03169{bottom:707.945339pt;}
.y9_c03169{bottom:779.945531pt;}
.y7_c03169{bottom:823.786427pt;}
.y3_c03169{bottom:839.786939pt;}
.y8_c03169{bottom:870.505979pt;}
.y6_c03169{bottom:899.946203pt;}
.y5_c03169{bottom:915.946715pt;}
.y2_c03169{bottom:945.386939pt;}
.y4_c03169{bottom:959.786555pt;}
.y1_c03169{bottom:975.787067pt;}
.ye_c03169{bottom:1008.747067pt;}
.h3_c03169{height:28.916250pt;}
.h1_c03169{height:37.063125pt;}
.h2_c03169{height:37.166250pt;}
.h4_c03169{height:48.581988pt;}
.h0_c03169{height:1122.666667pt;}
.w1_c03169{width:793.333333pt;}
.w0_c03169{width:793.626667pt;}
.x0_c03169{left:0.000000pt;}
.xd_c03169{left:104.000000pt;}
.x8_c03169{left:391.999872pt;}
.x4_c03169{left:396.160512pt;}
.xb_c03169{left:400.960000pt;}
.x7_c03169{left:404.799648pt;}
.x5_c03169{left:410.560128pt;}
.x1_c03169{left:411.840000pt;}
.xa_c03169{left:429.760320pt;}
.x9_c03169{left:437.439552pt;}
.x6_c03169{left:438.400512pt;}
.xc_c03169{left:450.560320pt;}
.x3_c03169{left:455.039904pt;}
.x2_c03169{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03170 {
    display:none;
  }
  .loading-indicator_c03170.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03170 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03170 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03170" -> "#page-container .classname_c03170")
 */
.pf_c03170 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03170 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03170.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03170 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03170 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03170 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03170 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03170 {overflow:visible;}
  }
}
.c_c03170 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03170 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03170:after { /* webkit #35443 */
  content: '';
}
.t_c03170:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03170 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03170 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03170 { /* info for Javascript */
  display:none;
}
.l_c03170 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03170 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03170 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03170:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03170 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03170.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03170.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03170 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03170{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03170;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03170{font-family:ff1_c03170;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03170;src:url('chunks/assets/font_2d6ebab13e90651ba71f7833.woff2')format("woff");}.ff2_c03170{font-family:ff2_c03170;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03170;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03170{font-family:ff3_c03170;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03170{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03170{vertical-align:0.000000px;}
.v1_c03170{vertical-align:1.439424px;}
.lsb_c03170{letter-spacing:-1.197504px;}
.ls6_c03170{letter-spacing:-0.613008px;}
.ls8_c03170{letter-spacing:-0.574992px;}
.lse_c03170{letter-spacing:-0.275616px;}
.lsc_c03170{letter-spacing:-0.261360px;}
.ls5_c03170{letter-spacing:-0.242352px;}
.ls3_c03170{letter-spacing:-0.118800px;}
.ls11_c03170{letter-spacing:0.000000px;}
.ls1_c03170{letter-spacing:0.006048px;}
.ls4_c03170{letter-spacing:0.128304px;}
.lsa_c03170{letter-spacing:0.508464px;}
.ls10_c03170{letter-spacing:0.514080px;}
.lsd_c03170{letter-spacing:0.536976px;}
.ls9_c03170{letter-spacing:0.579744px;}
.lsf_c03170{letter-spacing:0.594000px;}
.ls7_c03170{letter-spacing:0.598752px;}
.ls2_c03170{letter-spacing:0.613008px;}
.ls0_c03170{letter-spacing:0.717552px;}
.sc__c03170{text-shadow:none;}
.sc0_c03170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03170{-webkit-text-stroke:0px transparent;}
.sc0_c03170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03170{word-spacing:-15.126048px;}
.wsa_c03170{word-spacing:-12.474000px;}
.ws8_c03170{word-spacing:-12.459744px;}
.ws9_c03170{word-spacing:-12.416976px;}
.ws4_c03170{word-spacing:-11.637648px;}
.ws2_c03170{word-spacing:-11.266992px;}
.ws10_c03170{word-spacing:-1.078704px;}
.wsd_c03170{word-spacing:-0.974160px;}
.ws14_c03170{word-spacing:-0.719712px;}
.wsf_c03170{word-spacing:-0.118800px;}
.ws12_c03170{word-spacing:-0.099792px;}
.ws13_c03170{word-spacing:-0.085536px;}
.wse_c03170{word-spacing:0.000000px;}
.ws11_c03170{word-spacing:0.836352px;}
.wsb_c03170{word-spacing:33.300288px;}
.ws6_c03170{word-spacing:36.742464px;}
.ws1_c03170{word-spacing:37.759392px;}
.ws0_c03170{word-spacing:38.020752px;}
.ws3_c03170{word-spacing:39.218256px;}
.ws5_c03170{word-spacing:39.902544px;}
.ws7_c03170{word-spacing:42.026688px;}
._0_c03170{margin-left:-1.948320px;}
._2_c03170{width:1.482624px;}
._4_c03170{width:3.302640px;}
._1_c03170{width:50.252400px;}
._3_c03170{width:51.530688px;}
.fc0_c03170{color:rgb(0,0,0);}
.fs0_c03170{font-size:47.520000px;}
.fs1_c03170{font-size:60.480000px;}
.y0_c03170{bottom:0.000000px;}
.y19_c03170{bottom:146.998362px;}
.y1b_c03170{bottom:186.600234px;}
.y1a_c03170{bottom:196.320450px;}
.y18_c03170{bottom:275.878542px;}
.y17_c03170{bottom:356.878758px;}
.y15_c03170{bottom:406.559730px;}
.y11_c03170{bottom:424.560306px;}
.y16_c03170{bottom:458.759262px;}
.y14_c03170{bottom:491.879514px;}
.y13_c03170{bottom:509.880090px;}
.y10_c03170{bottom:543.000342px;}
.y12_c03170{bottom:559.559874px;}
.yf_c03170{bottom:577.560450px;}
.y1c_c03170{bottom:614.280450px;}
.yb_c03170{bottom:667.558326px;}
.yd_c03170{bottom:707.160234px;}
.yc_c03170{bottom:716.880450px;}
.ya_c03170{bottom:796.438506px;}
.y9_c03170{bottom:877.438722px;}
.y7_c03170{bottom:926.759730px;}
.y3_c03170{bottom:944.760306px;}
.y8_c03170{bottom:979.319226px;}
.y6_c03170{bottom:1012.439478px;}
.y5_c03170{bottom:1030.440054px;}
.y2_c03170{bottom:1063.560306px;}
.y4_c03170{bottom:1079.759874px;}
.y1_c03170{bottom:1097.760450px;}
.ye_c03170{bottom:1134.840450px;}
.h3_c03170{height:32.530781px;}
.h1_c03170{height:41.696016px;}
.h2_c03170{height:41.812031px;}
.h4_c03170{height:54.654737px;}
.h0_c03170{height:1263.000000px;}
.w1_c03170{width:892.500000px;}
.w0_c03170{width:892.830000px;}
.x0_c03170{left:0.000000px;}
.xd_c03170{left:117.000000px;}
.x8_c03170{left:440.999856px;}
.x4_c03170{left:445.680576px;}
.xb_c03170{left:451.080000px;}
.x7_c03170{left:455.399604px;}
.x5_c03170{left:461.880144px;}
.x1_c03170{left:463.320000px;}
.xa_c03170{left:483.480360px;}
.x9_c03170{left:492.119496px;}
.x6_c03170{left:493.200576px;}
.xc_c03170{left:506.880360px;}
.x3_c03170{left:511.919892px;}
.x2_c03170{left:526.679604px;}
@media print{
.v0_c03170{vertical-align:0.000000pt;}
.v1_c03170{vertical-align:1.279488pt;}
.lsb_c03170{letter-spacing:-1.064448pt;}
.ls6_c03170{letter-spacing:-0.544896pt;}
.ls8_c03170{letter-spacing:-0.511104pt;}
.lse_c03170{letter-spacing:-0.244992pt;}
.lsc_c03170{letter-spacing:-0.232320pt;}
.ls5_c03170{letter-spacing:-0.215424pt;}
.ls3_c03170{letter-spacing:-0.105600pt;}
.ls11_c03170{letter-spacing:0.000000pt;}
.ls1_c03170{letter-spacing:0.005376pt;}
.ls4_c03170{letter-spacing:0.114048pt;}
.lsa_c03170{letter-spacing:0.451968pt;}
.ls10_c03170{letter-spacing:0.456960pt;}
.lsd_c03170{letter-spacing:0.477312pt;}
.ls9_c03170{letter-spacing:0.515328pt;}
.lsf_c03170{letter-spacing:0.528000pt;}
.ls7_c03170{letter-spacing:0.532224pt;}
.ls2_c03170{letter-spacing:0.544896pt;}
.ls0_c03170{letter-spacing:0.637824pt;}
.wsc_c03170{word-spacing:-13.445376pt;}
.wsa_c03170{word-spacing:-11.088000pt;}
.ws8_c03170{word-spacing:-11.075328pt;}
.ws9_c03170{word-spacing:-11.037312pt;}
.ws4_c03170{word-spacing:-10.344576pt;}
.ws2_c03170{word-spacing:-10.015104pt;}
.ws10_c03170{word-spacing:-0.958848pt;}
.wsd_c03170{word-spacing:-0.865920pt;}
.ws14_c03170{word-spacing:-0.639744pt;}
.wsf_c03170{word-spacing:-0.105600pt;}
.ws12_c03170{word-spacing:-0.088704pt;}
.ws13_c03170{word-spacing:-0.076032pt;}
.wse_c03170{word-spacing:0.000000pt;}
.ws11_c03170{word-spacing:0.743424pt;}
.wsb_c03170{word-spacing:29.600256pt;}
.ws6_c03170{word-spacing:32.659968pt;}
.ws1_c03170{word-spacing:33.563904pt;}
.ws0_c03170{word-spacing:33.796224pt;}
.ws3_c03170{word-spacing:34.860672pt;}
.ws5_c03170{word-spacing:35.468928pt;}
.ws7_c03170{word-spacing:37.357056pt;}
._0_c03170{margin-left:-1.731840pt;}
._2_c03170{width:1.317888pt;}
._4_c03170{width:2.935680pt;}
._1_c03170{width:44.668800pt;}
._3_c03170{width:45.805056pt;}
.fs0_c03170{font-size:42.240000pt;}
.fs1_c03170{font-size:53.760000pt;}
.y0_c03170{bottom:0.000000pt;}
.y19_c03170{bottom:130.665211pt;}
.y1b_c03170{bottom:165.866875pt;}
.y1a_c03170{bottom:174.507067pt;}
.y18_c03170{bottom:245.225371pt;}
.y17_c03170{bottom:317.225563pt;}
.y15_c03170{bottom:361.386427pt;}
.y11_c03170{bottom:377.386939pt;}
.y16_c03170{bottom:407.786011pt;}
.y14_c03170{bottom:437.226235pt;}
.y13_c03170{bottom:453.226747pt;}
.y10_c03170{bottom:482.666971pt;}
.y12_c03170{bottom:497.386555pt;}
.yf_c03170{bottom:513.387067pt;}
.y1c_c03170{bottom:546.027067pt;}
.yb_c03170{bottom:593.385179pt;}
.yd_c03170{bottom:628.586875pt;}
.yc_c03170{bottom:637.227067pt;}
.ya_c03170{bottom:707.945339pt;}
.y9_c03170{bottom:779.945531pt;}
.y7_c03170{bottom:823.786427pt;}
.y3_c03170{bottom:839.786939pt;}
.y8_c03170{bottom:870.505979pt;}
.y6_c03170{bottom:899.946203pt;}
.y5_c03170{bottom:915.946715pt;}
.y2_c03170{bottom:945.386939pt;}
.y4_c03170{bottom:959.786555pt;}
.y1_c03170{bottom:975.787067pt;}
.ye_c03170{bottom:1008.747067pt;}
.h3_c03170{height:28.916250pt;}
.h1_c03170{height:37.063125pt;}
.h2_c03170{height:37.166250pt;}
.h4_c03170{height:48.581988pt;}
.h0_c03170{height:1122.666667pt;}
.w1_c03170{width:793.333333pt;}
.w0_c03170{width:793.626667pt;}
.x0_c03170{left:0.000000pt;}
.xd_c03170{left:104.000000pt;}
.x8_c03170{left:391.999872pt;}
.x4_c03170{left:396.160512pt;}
.xb_c03170{left:400.960000pt;}
.x7_c03170{left:404.799648pt;}
.x5_c03170{left:410.560128pt;}
.x1_c03170{left:411.840000pt;}
.xa_c03170{left:429.760320pt;}
.x9_c03170{left:437.439552pt;}
.x6_c03170{left:438.400512pt;}
.xc_c03170{left:450.560320pt;}
.x3_c03170{left:455.039904pt;}
.x2_c03170{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03171 {
    display:none;
  }
  .loading-indicator_c03171.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03171 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03171 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03171" -> "#page-container .classname_c03171")
 */
.pf_c03171 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03171 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03171.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03171 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03171 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03171 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03171 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03171 {overflow:visible;}
  }
}
.c_c03171 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03171 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03171:after { /* webkit #35443 */
  content: '';
}
.t_c03171:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03171 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03171 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03171 { /* info for Javascript */
  display:none;
}
.l_c03171 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03171 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03171 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03171:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03171 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03171.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03171.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03171 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03171{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03171;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03171{font-family:ff1_c03171;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03171;src:url('chunks/assets/font_9624b7bbb659cbac93fe5f90.woff2')format("woff");}.ff2_c03171{font-family:ff2_c03171;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03171;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03171{font-family:ff3_c03171;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03171{vertical-align:0.000000px;}
.v1_c03171{vertical-align:1.439424px;}
.lsb_c03171{letter-spacing:-1.197504px;}
.ls6_c03171{letter-spacing:-0.613008px;}
.ls8_c03171{letter-spacing:-0.574992px;}
.lse_c03171{letter-spacing:-0.275616px;}
.lsc_c03171{letter-spacing:-0.261360px;}
.ls5_c03171{letter-spacing:-0.242352px;}
.ls3_c03171{letter-spacing:-0.118800px;}
.ls11_c03171{letter-spacing:0.000000px;}
.ls1_c03171{letter-spacing:0.006048px;}
.ls4_c03171{letter-spacing:0.128304px;}
.lsa_c03171{letter-spacing:0.508464px;}
.ls10_c03171{letter-spacing:0.514080px;}
.lsd_c03171{letter-spacing:0.536976px;}
.ls9_c03171{letter-spacing:0.579744px;}
.lsf_c03171{letter-spacing:0.594000px;}
.ls7_c03171{letter-spacing:0.598752px;}
.ls2_c03171{letter-spacing:0.613008px;}
.ls0_c03171{letter-spacing:0.717552px;}
.sc__c03171{text-shadow:none;}
.sc0_c03171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03171{-webkit-text-stroke:0px transparent;}
.sc0_c03171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03171{word-spacing:-15.126048px;}
.wsa_c03171{word-spacing:-12.474000px;}
.ws8_c03171{word-spacing:-12.459744px;}
.ws9_c03171{word-spacing:-12.416976px;}
.ws4_c03171{word-spacing:-11.637648px;}
.ws2_c03171{word-spacing:-11.266992px;}
.ws10_c03171{word-spacing:-1.078704px;}
.wsd_c03171{word-spacing:-0.974160px;}
.ws14_c03171{word-spacing:-0.719712px;}
.wsf_c03171{word-spacing:-0.118800px;}
.ws12_c03171{word-spacing:-0.099792px;}
.ws13_c03171{word-spacing:-0.085536px;}
.wse_c03171{word-spacing:0.000000px;}
.ws11_c03171{word-spacing:0.836352px;}
.wsb_c03171{word-spacing:33.300288px;}
.ws6_c03171{word-spacing:36.742464px;}
.ws1_c03171{word-spacing:37.759392px;}
.ws0_c03171{word-spacing:38.020752px;}
.ws3_c03171{word-spacing:39.218256px;}
.ws5_c03171{word-spacing:39.902544px;}
.ws7_c03171{word-spacing:42.026688px;}
._0_c03171{margin-left:-1.948320px;}
._2_c03171{width:1.482624px;}
._4_c03171{width:3.302640px;}
._1_c03171{width:50.252400px;}
._3_c03171{width:51.530688px;}
.fc0_c03171{color:rgb(0,0,0);}
.fs0_c03171{font-size:47.520000px;}
.fs1_c03171{font-size:60.480000px;}
.y0_c03171{bottom:0.000000px;}
.y19_c03171{bottom:146.998362px;}
.y1b_c03171{bottom:186.600234px;}
.y1a_c03171{bottom:196.320450px;}
.y18_c03171{bottom:275.878542px;}
.y17_c03171{bottom:356.878758px;}
.y15_c03171{bottom:406.559730px;}
.y11_c03171{bottom:424.560306px;}
.y16_c03171{bottom:458.759262px;}
.y14_c03171{bottom:491.879514px;}
.y13_c03171{bottom:509.880090px;}
.y10_c03171{bottom:543.000342px;}
.y12_c03171{bottom:559.559874px;}
.yf_c03171{bottom:577.560450px;}
.y1c_c03171{bottom:614.280450px;}
.yb_c03171{bottom:667.558326px;}
.yd_c03171{bottom:707.160234px;}
.yc_c03171{bottom:716.880450px;}
.ya_c03171{bottom:796.438506px;}
.y9_c03171{bottom:877.438722px;}
.y7_c03171{bottom:926.759730px;}
.y3_c03171{bottom:944.760306px;}
.y8_c03171{bottom:979.319226px;}
.y6_c03171{bottom:1012.439478px;}
.y5_c03171{bottom:1030.440054px;}
.y2_c03171{bottom:1063.560306px;}
.y4_c03171{bottom:1079.759874px;}
.y1_c03171{bottom:1097.760450px;}
.ye_c03171{bottom:1134.840450px;}
.h3_c03171{height:32.530781px;}
.h1_c03171{height:41.696016px;}
.h2_c03171{height:41.812031px;}
.h4_c03171{height:54.654737px;}
.h0_c03171{height:1263.000000px;}
.w1_c03171{width:892.500000px;}
.w0_c03171{width:892.830000px;}
.x0_c03171{left:0.000000px;}
.xd_c03171{left:117.000000px;}
.x8_c03171{left:440.999856px;}
.x4_c03171{left:445.680576px;}
.xb_c03171{left:451.080000px;}
.x7_c03171{left:455.399604px;}
.x5_c03171{left:461.880144px;}
.x1_c03171{left:463.320000px;}
.xa_c03171{left:483.480360px;}
.x9_c03171{left:492.119496px;}
.x6_c03171{left:493.200576px;}
.xc_c03171{left:506.880360px;}
.x3_c03171{left:511.919892px;}
.x2_c03171{left:526.679604px;}
@media print{
.v0_c03171{vertical-align:0.000000pt;}
.v1_c03171{vertical-align:1.279488pt;}
.lsb_c03171{letter-spacing:-1.064448pt;}
.ls6_c03171{letter-spacing:-0.544896pt;}
.ls8_c03171{letter-spacing:-0.511104pt;}
.lse_c03171{letter-spacing:-0.244992pt;}
.lsc_c03171{letter-spacing:-0.232320pt;}
.ls5_c03171{letter-spacing:-0.215424pt;}
.ls3_c03171{letter-spacing:-0.105600pt;}
.ls11_c03171{letter-spacing:0.000000pt;}
.ls1_c03171{letter-spacing:0.005376pt;}
.ls4_c03171{letter-spacing:0.114048pt;}
.lsa_c03171{letter-spacing:0.451968pt;}
.ls10_c03171{letter-spacing:0.456960pt;}
.lsd_c03171{letter-spacing:0.477312pt;}
.ls9_c03171{letter-spacing:0.515328pt;}
.lsf_c03171{letter-spacing:0.528000pt;}
.ls7_c03171{letter-spacing:0.532224pt;}
.ls2_c03171{letter-spacing:0.544896pt;}
.ls0_c03171{letter-spacing:0.637824pt;}
.wsc_c03171{word-spacing:-13.445376pt;}
.wsa_c03171{word-spacing:-11.088000pt;}
.ws8_c03171{word-spacing:-11.075328pt;}
.ws9_c03171{word-spacing:-11.037312pt;}
.ws4_c03171{word-spacing:-10.344576pt;}
.ws2_c03171{word-spacing:-10.015104pt;}
.ws10_c03171{word-spacing:-0.958848pt;}
.wsd_c03171{word-spacing:-0.865920pt;}
.ws14_c03171{word-spacing:-0.639744pt;}
.wsf_c03171{word-spacing:-0.105600pt;}
.ws12_c03171{word-spacing:-0.088704pt;}
.ws13_c03171{word-spacing:-0.076032pt;}
.wse_c03171{word-spacing:0.000000pt;}
.ws11_c03171{word-spacing:0.743424pt;}
.wsb_c03171{word-spacing:29.600256pt;}
.ws6_c03171{word-spacing:32.659968pt;}
.ws1_c03171{word-spacing:33.563904pt;}
.ws0_c03171{word-spacing:33.796224pt;}
.ws3_c03171{word-spacing:34.860672pt;}
.ws5_c03171{word-spacing:35.468928pt;}
.ws7_c03171{word-spacing:37.357056pt;}
._0_c03171{margin-left:-1.731840pt;}
._2_c03171{width:1.317888pt;}
._4_c03171{width:2.935680pt;}
._1_c03171{width:44.668800pt;}
._3_c03171{width:45.805056pt;}
.fs0_c03171{font-size:42.240000pt;}
.fs1_c03171{font-size:53.760000pt;}
.y0_c03171{bottom:0.000000pt;}
.y19_c03171{bottom:130.665211pt;}
.y1b_c03171{bottom:165.866875pt;}
.y1a_c03171{bottom:174.507067pt;}
.y18_c03171{bottom:245.225371pt;}
.y17_c03171{bottom:317.225563pt;}
.y15_c03171{bottom:361.386427pt;}
.y11_c03171{bottom:377.386939pt;}
.y16_c03171{bottom:407.786011pt;}
.y14_c03171{bottom:437.226235pt;}
.y13_c03171{bottom:453.226747pt;}
.y10_c03171{bottom:482.666971pt;}
.y12_c03171{bottom:497.386555pt;}
.yf_c03171{bottom:513.387067pt;}
.y1c_c03171{bottom:546.027067pt;}
.yb_c03171{bottom:593.385179pt;}
.yd_c03171{bottom:628.586875pt;}
.yc_c03171{bottom:637.227067pt;}
.ya_c03171{bottom:707.945339pt;}
.y9_c03171{bottom:779.945531pt;}
.y7_c03171{bottom:823.786427pt;}
.y3_c03171{bottom:839.786939pt;}
.y8_c03171{bottom:870.505979pt;}
.y6_c03171{bottom:899.946203pt;}
.y5_c03171{bottom:915.946715pt;}
.y2_c03171{bottom:945.386939pt;}
.y4_c03171{bottom:959.786555pt;}
.y1_c03171{bottom:975.787067pt;}
.ye_c03171{bottom:1008.747067pt;}
.h3_c03171{height:28.916250pt;}
.h1_c03171{height:37.063125pt;}
.h2_c03171{height:37.166250pt;}
.h4_c03171{height:48.581988pt;}
.h0_c03171{height:1122.666667pt;}
.w1_c03171{width:793.333333pt;}
.w0_c03171{width:793.626667pt;}
.x0_c03171{left:0.000000pt;}
.xd_c03171{left:104.000000pt;}
.x8_c03171{left:391.999872pt;}
.x4_c03171{left:396.160512pt;}
.xb_c03171{left:400.960000pt;}
.x7_c03171{left:404.799648pt;}
.x5_c03171{left:410.560128pt;}
.x1_c03171{left:411.840000pt;}
.xa_c03171{left:429.760320pt;}
.x9_c03171{left:437.439552pt;}
.x6_c03171{left:438.400512pt;}
.xc_c03171{left:450.560320pt;}
.x3_c03171{left:455.039904pt;}
.x2_c03171{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03172 {
    display:none;
  }
  .loading-indicator_c03172.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03172 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03172 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03172" -> "#page-container .classname_c03172")
 */
.pf_c03172 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03172 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03172.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03172 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03172 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03172 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03172 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03172 {overflow:visible;}
  }
}
.c_c03172 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03172 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03172:after { /* webkit #35443 */
  content: '';
}
.t_c03172:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03172 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03172 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03172 { /* info for Javascript */
  display:none;
}
.l_c03172 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03172 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03172 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03172:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03172 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03172.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03172.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03172 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03172{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03172;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03172{font-family:ff1_c03172;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03172;src:url('chunks/assets/font_2225e624a3882075c2e58625.woff2')format("woff");}.ff2_c03172{font-family:ff2_c03172;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03172;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03172{font-family:ff3_c03172;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03172{vertical-align:0.000000px;}
.v1_c03172{vertical-align:1.439424px;}
.lsb_c03172{letter-spacing:-1.197504px;}
.ls6_c03172{letter-spacing:-0.613008px;}
.ls8_c03172{letter-spacing:-0.574992px;}
.lse_c03172{letter-spacing:-0.275616px;}
.lsc_c03172{letter-spacing:-0.261360px;}
.ls5_c03172{letter-spacing:-0.242352px;}
.ls3_c03172{letter-spacing:-0.118800px;}
.ls11_c03172{letter-spacing:0.000000px;}
.ls1_c03172{letter-spacing:0.006048px;}
.ls4_c03172{letter-spacing:0.128304px;}
.lsa_c03172{letter-spacing:0.508464px;}
.ls10_c03172{letter-spacing:0.514080px;}
.lsd_c03172{letter-spacing:0.536976px;}
.ls9_c03172{letter-spacing:0.579744px;}
.lsf_c03172{letter-spacing:0.594000px;}
.ls7_c03172{letter-spacing:0.598752px;}
.ls2_c03172{letter-spacing:0.613008px;}
.ls0_c03172{letter-spacing:0.717552px;}
.sc__c03172{text-shadow:none;}
.sc0_c03172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03172{-webkit-text-stroke:0px transparent;}
.sc0_c03172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03172{word-spacing:-15.126048px;}
.wsa_c03172{word-spacing:-12.474000px;}
.ws8_c03172{word-spacing:-12.459744px;}
.ws9_c03172{word-spacing:-12.416976px;}
.ws4_c03172{word-spacing:-11.637648px;}
.ws2_c03172{word-spacing:-11.266992px;}
.ws10_c03172{word-spacing:-1.078704px;}
.wsd_c03172{word-spacing:-0.974160px;}
.ws14_c03172{word-spacing:-0.719712px;}
.wsf_c03172{word-spacing:-0.118800px;}
.ws12_c03172{word-spacing:-0.099792px;}
.ws13_c03172{word-spacing:-0.085536px;}
.wse_c03172{word-spacing:0.000000px;}
.ws11_c03172{word-spacing:0.836352px;}
.wsb_c03172{word-spacing:33.300288px;}
.ws6_c03172{word-spacing:36.742464px;}
.ws1_c03172{word-spacing:37.759392px;}
.ws0_c03172{word-spacing:38.020752px;}
.ws3_c03172{word-spacing:39.218256px;}
.ws5_c03172{word-spacing:39.902544px;}
.ws7_c03172{word-spacing:42.026688px;}
._0_c03172{margin-left:-1.948320px;}
._2_c03172{width:1.482624px;}
._4_c03172{width:3.302640px;}
._1_c03172{width:50.252400px;}
._3_c03172{width:51.530688px;}
.fc0_c03172{color:rgb(0,0,0);}
.fs0_c03172{font-size:47.520000px;}
.fs1_c03172{font-size:60.480000px;}
.y0_c03172{bottom:0.000000px;}
.y19_c03172{bottom:146.998362px;}
.y1b_c03172{bottom:186.600234px;}
.y1a_c03172{bottom:196.320450px;}
.y18_c03172{bottom:275.878542px;}
.y17_c03172{bottom:356.878758px;}
.y15_c03172{bottom:406.559730px;}
.y11_c03172{bottom:424.560306px;}
.y16_c03172{bottom:458.759262px;}
.y14_c03172{bottom:491.879514px;}
.y13_c03172{bottom:509.880090px;}
.y10_c03172{bottom:543.000342px;}
.y12_c03172{bottom:559.559874px;}
.yf_c03172{bottom:577.560450px;}
.y1c_c03172{bottom:614.280450px;}
.yb_c03172{bottom:667.558326px;}
.yd_c03172{bottom:707.160234px;}
.yc_c03172{bottom:716.880450px;}
.ya_c03172{bottom:796.438506px;}
.y9_c03172{bottom:877.438722px;}
.y7_c03172{bottom:926.759730px;}
.y3_c03172{bottom:944.760306px;}
.y8_c03172{bottom:979.319226px;}
.y6_c03172{bottom:1012.439478px;}
.y5_c03172{bottom:1030.440054px;}
.y2_c03172{bottom:1063.560306px;}
.y4_c03172{bottom:1079.759874px;}
.y1_c03172{bottom:1097.760450px;}
.ye_c03172{bottom:1134.840450px;}
.h3_c03172{height:32.530781px;}
.h1_c03172{height:41.696016px;}
.h2_c03172{height:41.812031px;}
.h4_c03172{height:54.654737px;}
.h0_c03172{height:1263.000000px;}
.w1_c03172{width:892.500000px;}
.w0_c03172{width:892.830000px;}
.x0_c03172{left:0.000000px;}
.xd_c03172{left:117.000000px;}
.x8_c03172{left:440.999856px;}
.x4_c03172{left:445.680576px;}
.xb_c03172{left:451.080000px;}
.x7_c03172{left:455.399604px;}
.x5_c03172{left:461.880144px;}
.x1_c03172{left:463.320000px;}
.xa_c03172{left:483.480360px;}
.x9_c03172{left:492.119496px;}
.x6_c03172{left:493.200576px;}
.xc_c03172{left:506.880360px;}
.x3_c03172{left:511.919892px;}
.x2_c03172{left:526.679604px;}
@media print{
.v0_c03172{vertical-align:0.000000pt;}
.v1_c03172{vertical-align:1.279488pt;}
.lsb_c03172{letter-spacing:-1.064448pt;}
.ls6_c03172{letter-spacing:-0.544896pt;}
.ls8_c03172{letter-spacing:-0.511104pt;}
.lse_c03172{letter-spacing:-0.244992pt;}
.lsc_c03172{letter-spacing:-0.232320pt;}
.ls5_c03172{letter-spacing:-0.215424pt;}
.ls3_c03172{letter-spacing:-0.105600pt;}
.ls11_c03172{letter-spacing:0.000000pt;}
.ls1_c03172{letter-spacing:0.005376pt;}
.ls4_c03172{letter-spacing:0.114048pt;}
.lsa_c03172{letter-spacing:0.451968pt;}
.ls10_c03172{letter-spacing:0.456960pt;}
.lsd_c03172{letter-spacing:0.477312pt;}
.ls9_c03172{letter-spacing:0.515328pt;}
.lsf_c03172{letter-spacing:0.528000pt;}
.ls7_c03172{letter-spacing:0.532224pt;}
.ls2_c03172{letter-spacing:0.544896pt;}
.ls0_c03172{letter-spacing:0.637824pt;}
.wsc_c03172{word-spacing:-13.445376pt;}
.wsa_c03172{word-spacing:-11.088000pt;}
.ws8_c03172{word-spacing:-11.075328pt;}
.ws9_c03172{word-spacing:-11.037312pt;}
.ws4_c03172{word-spacing:-10.344576pt;}
.ws2_c03172{word-spacing:-10.015104pt;}
.ws10_c03172{word-spacing:-0.958848pt;}
.wsd_c03172{word-spacing:-0.865920pt;}
.ws14_c03172{word-spacing:-0.639744pt;}
.wsf_c03172{word-spacing:-0.105600pt;}
.ws12_c03172{word-spacing:-0.088704pt;}
.ws13_c03172{word-spacing:-0.076032pt;}
.wse_c03172{word-spacing:0.000000pt;}
.ws11_c03172{word-spacing:0.743424pt;}
.wsb_c03172{word-spacing:29.600256pt;}
.ws6_c03172{word-spacing:32.659968pt;}
.ws1_c03172{word-spacing:33.563904pt;}
.ws0_c03172{word-spacing:33.796224pt;}
.ws3_c03172{word-spacing:34.860672pt;}
.ws5_c03172{word-spacing:35.468928pt;}
.ws7_c03172{word-spacing:37.357056pt;}
._0_c03172{margin-left:-1.731840pt;}
._2_c03172{width:1.317888pt;}
._4_c03172{width:2.935680pt;}
._1_c03172{width:44.668800pt;}
._3_c03172{width:45.805056pt;}
.fs0_c03172{font-size:42.240000pt;}
.fs1_c03172{font-size:53.760000pt;}
.y0_c03172{bottom:0.000000pt;}
.y19_c03172{bottom:130.665211pt;}
.y1b_c03172{bottom:165.866875pt;}
.y1a_c03172{bottom:174.507067pt;}
.y18_c03172{bottom:245.225371pt;}
.y17_c03172{bottom:317.225563pt;}
.y15_c03172{bottom:361.386427pt;}
.y11_c03172{bottom:377.386939pt;}
.y16_c03172{bottom:407.786011pt;}
.y14_c03172{bottom:437.226235pt;}
.y13_c03172{bottom:453.226747pt;}
.y10_c03172{bottom:482.666971pt;}
.y12_c03172{bottom:497.386555pt;}
.yf_c03172{bottom:513.387067pt;}
.y1c_c03172{bottom:546.027067pt;}
.yb_c03172{bottom:593.385179pt;}
.yd_c03172{bottom:628.586875pt;}
.yc_c03172{bottom:637.227067pt;}
.ya_c03172{bottom:707.945339pt;}
.y9_c03172{bottom:779.945531pt;}
.y7_c03172{bottom:823.786427pt;}
.y3_c03172{bottom:839.786939pt;}
.y8_c03172{bottom:870.505979pt;}
.y6_c03172{bottom:899.946203pt;}
.y5_c03172{bottom:915.946715pt;}
.y2_c03172{bottom:945.386939pt;}
.y4_c03172{bottom:959.786555pt;}
.y1_c03172{bottom:975.787067pt;}
.ye_c03172{bottom:1008.747067pt;}
.h3_c03172{height:28.916250pt;}
.h1_c03172{height:37.063125pt;}
.h2_c03172{height:37.166250pt;}
.h4_c03172{height:48.581988pt;}
.h0_c03172{height:1122.666667pt;}
.w1_c03172{width:793.333333pt;}
.w0_c03172{width:793.626667pt;}
.x0_c03172{left:0.000000pt;}
.xd_c03172{left:104.000000pt;}
.x8_c03172{left:391.999872pt;}
.x4_c03172{left:396.160512pt;}
.xb_c03172{left:400.960000pt;}
.x7_c03172{left:404.799648pt;}
.x5_c03172{left:410.560128pt;}
.x1_c03172{left:411.840000pt;}
.xa_c03172{left:429.760320pt;}
.x9_c03172{left:437.439552pt;}
.x6_c03172{left:438.400512pt;}
.xc_c03172{left:450.560320pt;}
.x3_c03172{left:455.039904pt;}
.x2_c03172{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03173 {
    display:none;
  }
  .loading-indicator_c03173.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03173 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03173 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03173" -> "#page-container .classname_c03173")
 */
.pf_c03173 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03173 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03173.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03173 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03173 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03173 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03173 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03173 {overflow:visible;}
  }
}
.c_c03173 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03173 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03173:after { /* webkit #35443 */
  content: '';
}
.t_c03173:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03173 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03173 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03173 { /* info for Javascript */
  display:none;
}
.l_c03173 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03173 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03173 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03173:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03173 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03173.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03173.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03173 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03173{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03173;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03173{font-family:ff1_c03173;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03173;src:url('chunks/assets/font_2d6ebab13e90651ba71f7833.woff2')format("woff");}.ff2_c03173{font-family:ff2_c03173;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03173;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03173{font-family:ff3_c03173;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03173{vertical-align:0.000000px;}
.v1_c03173{vertical-align:1.439424px;}
.lsb_c03173{letter-spacing:-1.197504px;}
.ls6_c03173{letter-spacing:-0.613008px;}
.ls8_c03173{letter-spacing:-0.574992px;}
.lse_c03173{letter-spacing:-0.275616px;}
.lsc_c03173{letter-spacing:-0.261360px;}
.ls5_c03173{letter-spacing:-0.242352px;}
.ls3_c03173{letter-spacing:-0.118800px;}
.ls11_c03173{letter-spacing:0.000000px;}
.ls1_c03173{letter-spacing:0.006048px;}
.ls4_c03173{letter-spacing:0.128304px;}
.lsa_c03173{letter-spacing:0.508464px;}
.ls10_c03173{letter-spacing:0.514080px;}
.lsd_c03173{letter-spacing:0.536976px;}
.ls9_c03173{letter-spacing:0.579744px;}
.lsf_c03173{letter-spacing:0.594000px;}
.ls7_c03173{letter-spacing:0.598752px;}
.ls2_c03173{letter-spacing:0.613008px;}
.ls0_c03173{letter-spacing:0.717552px;}
.sc__c03173{text-shadow:none;}
.sc0_c03173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03173{-webkit-text-stroke:0px transparent;}
.sc0_c03173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03173{word-spacing:-15.126048px;}
.wsa_c03173{word-spacing:-12.474000px;}
.ws8_c03173{word-spacing:-12.459744px;}
.ws9_c03173{word-spacing:-12.416976px;}
.ws4_c03173{word-spacing:-11.637648px;}
.ws2_c03173{word-spacing:-11.266992px;}
.ws10_c03173{word-spacing:-1.078704px;}
.wsd_c03173{word-spacing:-0.974160px;}
.ws14_c03173{word-spacing:-0.719712px;}
.wsf_c03173{word-spacing:-0.118800px;}
.ws12_c03173{word-spacing:-0.099792px;}
.ws13_c03173{word-spacing:-0.085536px;}
.wse_c03173{word-spacing:0.000000px;}
.ws11_c03173{word-spacing:0.836352px;}
.wsb_c03173{word-spacing:33.300288px;}
.ws6_c03173{word-spacing:36.742464px;}
.ws1_c03173{word-spacing:37.759392px;}
.ws0_c03173{word-spacing:38.020752px;}
.ws3_c03173{word-spacing:39.218256px;}
.ws5_c03173{word-spacing:39.902544px;}
.ws7_c03173{word-spacing:42.026688px;}
._0_c03173{margin-left:-1.948320px;}
._2_c03173{width:1.482624px;}
._4_c03173{width:3.302640px;}
._1_c03173{width:50.252400px;}
._3_c03173{width:51.530688px;}
.fc0_c03173{color:rgb(0,0,0);}
.fs0_c03173{font-size:47.520000px;}
.fs1_c03173{font-size:60.480000px;}
.y0_c03173{bottom:0.000000px;}
.y19_c03173{bottom:146.998362px;}
.y1b_c03173{bottom:186.600234px;}
.y1a_c03173{bottom:196.320450px;}
.y18_c03173{bottom:275.878542px;}
.y17_c03173{bottom:356.878758px;}
.y15_c03173{bottom:406.559730px;}
.y11_c03173{bottom:424.560306px;}
.y16_c03173{bottom:458.759262px;}
.y14_c03173{bottom:491.879514px;}
.y13_c03173{bottom:509.880090px;}
.y10_c03173{bottom:543.000342px;}
.y12_c03173{bottom:559.559874px;}
.yf_c03173{bottom:577.560450px;}
.y1c_c03173{bottom:614.280450px;}
.yb_c03173{bottom:667.558326px;}
.yd_c03173{bottom:707.160234px;}
.yc_c03173{bottom:716.880450px;}
.ya_c03173{bottom:796.438506px;}
.y9_c03173{bottom:877.438722px;}
.y7_c03173{bottom:926.759730px;}
.y3_c03173{bottom:944.760306px;}
.y8_c03173{bottom:979.319226px;}
.y6_c03173{bottom:1012.439478px;}
.y5_c03173{bottom:1030.440054px;}
.y2_c03173{bottom:1063.560306px;}
.y4_c03173{bottom:1079.759874px;}
.y1_c03173{bottom:1097.760450px;}
.ye_c03173{bottom:1134.840450px;}
.h3_c03173{height:32.530781px;}
.h1_c03173{height:41.696016px;}
.h2_c03173{height:41.812031px;}
.h4_c03173{height:54.654737px;}
.h0_c03173{height:1263.000000px;}
.w1_c03173{width:892.500000px;}
.w0_c03173{width:892.830000px;}
.x0_c03173{left:0.000000px;}
.xd_c03173{left:117.000000px;}
.x8_c03173{left:440.999856px;}
.x4_c03173{left:445.680576px;}
.xb_c03173{left:451.080000px;}
.x7_c03173{left:455.399604px;}
.x5_c03173{left:461.880144px;}
.x1_c03173{left:463.320000px;}
.xa_c03173{left:483.480360px;}
.x9_c03173{left:492.119496px;}
.x6_c03173{left:493.200576px;}
.xc_c03173{left:506.880360px;}
.x3_c03173{left:511.919892px;}
.x2_c03173{left:526.679604px;}
@media print{
.v0_c03173{vertical-align:0.000000pt;}
.v1_c03173{vertical-align:1.279488pt;}
.lsb_c03173{letter-spacing:-1.064448pt;}
.ls6_c03173{letter-spacing:-0.544896pt;}
.ls8_c03173{letter-spacing:-0.511104pt;}
.lse_c03173{letter-spacing:-0.244992pt;}
.lsc_c03173{letter-spacing:-0.232320pt;}
.ls5_c03173{letter-spacing:-0.215424pt;}
.ls3_c03173{letter-spacing:-0.105600pt;}
.ls11_c03173{letter-spacing:0.000000pt;}
.ls1_c03173{letter-spacing:0.005376pt;}
.ls4_c03173{letter-spacing:0.114048pt;}
.lsa_c03173{letter-spacing:0.451968pt;}
.ls10_c03173{letter-spacing:0.456960pt;}
.lsd_c03173{letter-spacing:0.477312pt;}
.ls9_c03173{letter-spacing:0.515328pt;}
.lsf_c03173{letter-spacing:0.528000pt;}
.ls7_c03173{letter-spacing:0.532224pt;}
.ls2_c03173{letter-spacing:0.544896pt;}
.ls0_c03173{letter-spacing:0.637824pt;}
.wsc_c03173{word-spacing:-13.445376pt;}
.wsa_c03173{word-spacing:-11.088000pt;}
.ws8_c03173{word-spacing:-11.075328pt;}
.ws9_c03173{word-spacing:-11.037312pt;}
.ws4_c03173{word-spacing:-10.344576pt;}
.ws2_c03173{word-spacing:-10.015104pt;}
.ws10_c03173{word-spacing:-0.958848pt;}
.wsd_c03173{word-spacing:-0.865920pt;}
.ws14_c03173{word-spacing:-0.639744pt;}
.wsf_c03173{word-spacing:-0.105600pt;}
.ws12_c03173{word-spacing:-0.088704pt;}
.ws13_c03173{word-spacing:-0.076032pt;}
.wse_c03173{word-spacing:0.000000pt;}
.ws11_c03173{word-spacing:0.743424pt;}
.wsb_c03173{word-spacing:29.600256pt;}
.ws6_c03173{word-spacing:32.659968pt;}
.ws1_c03173{word-spacing:33.563904pt;}
.ws0_c03173{word-spacing:33.796224pt;}
.ws3_c03173{word-spacing:34.860672pt;}
.ws5_c03173{word-spacing:35.468928pt;}
.ws7_c03173{word-spacing:37.357056pt;}
._0_c03173{margin-left:-1.731840pt;}
._2_c03173{width:1.317888pt;}
._4_c03173{width:2.935680pt;}
._1_c03173{width:44.668800pt;}
._3_c03173{width:45.805056pt;}
.fs0_c03173{font-size:42.240000pt;}
.fs1_c03173{font-size:53.760000pt;}
.y0_c03173{bottom:0.000000pt;}
.y19_c03173{bottom:130.665211pt;}
.y1b_c03173{bottom:165.866875pt;}
.y1a_c03173{bottom:174.507067pt;}
.y18_c03173{bottom:245.225371pt;}
.y17_c03173{bottom:317.225563pt;}
.y15_c03173{bottom:361.386427pt;}
.y11_c03173{bottom:377.386939pt;}
.y16_c03173{bottom:407.786011pt;}
.y14_c03173{bottom:437.226235pt;}
.y13_c03173{bottom:453.226747pt;}
.y10_c03173{bottom:482.666971pt;}
.y12_c03173{bottom:497.386555pt;}
.yf_c03173{bottom:513.387067pt;}
.y1c_c03173{bottom:546.027067pt;}
.yb_c03173{bottom:593.385179pt;}
.yd_c03173{bottom:628.586875pt;}
.yc_c03173{bottom:637.227067pt;}
.ya_c03173{bottom:707.945339pt;}
.y9_c03173{bottom:779.945531pt;}
.y7_c03173{bottom:823.786427pt;}
.y3_c03173{bottom:839.786939pt;}
.y8_c03173{bottom:870.505979pt;}
.y6_c03173{bottom:899.946203pt;}
.y5_c03173{bottom:915.946715pt;}
.y2_c03173{bottom:945.386939pt;}
.y4_c03173{bottom:959.786555pt;}
.y1_c03173{bottom:975.787067pt;}
.ye_c03173{bottom:1008.747067pt;}
.h3_c03173{height:28.916250pt;}
.h1_c03173{height:37.063125pt;}
.h2_c03173{height:37.166250pt;}
.h4_c03173{height:48.581988pt;}
.h0_c03173{height:1122.666667pt;}
.w1_c03173{width:793.333333pt;}
.w0_c03173{width:793.626667pt;}
.x0_c03173{left:0.000000pt;}
.xd_c03173{left:104.000000pt;}
.x8_c03173{left:391.999872pt;}
.x4_c03173{left:396.160512pt;}
.xb_c03173{left:400.960000pt;}
.x7_c03173{left:404.799648pt;}
.x5_c03173{left:410.560128pt;}
.x1_c03173{left:411.840000pt;}
.xa_c03173{left:429.760320pt;}
.x9_c03173{left:437.439552pt;}
.x6_c03173{left:438.400512pt;}
.xc_c03173{left:450.560320pt;}
.x3_c03173{left:455.039904pt;}
.x2_c03173{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03174 {
    display:none;
  }
  .loading-indicator_c03174.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03174 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03174 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03174" -> "#page-container .classname_c03174")
 */
.pf_c03174 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03174 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03174.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03174 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03174 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03174 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03174 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03174 {overflow:visible;}
  }
}
.c_c03174 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03174 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03174:after { /* webkit #35443 */
  content: '';
}
.t_c03174:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03174 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03174 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03174 { /* info for Javascript */
  display:none;
}
.l_c03174 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03174 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03174 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03174:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03174 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03174.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03174.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03174 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03174{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03174;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03174{font-family:ff1_c03174;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03174;src:url('chunks/assets/font_2d6ebab13e90651ba71f7833.woff2')format("woff");}.ff2_c03174{font-family:ff2_c03174;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03174;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03174{font-family:ff3_c03174;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03174{vertical-align:0.000000px;}
.v1_c03174{vertical-align:1.439424px;}
.lsb_c03174{letter-spacing:-1.197504px;}
.ls6_c03174{letter-spacing:-0.613008px;}
.ls8_c03174{letter-spacing:-0.574992px;}
.lse_c03174{letter-spacing:-0.275616px;}
.lsc_c03174{letter-spacing:-0.261360px;}
.ls5_c03174{letter-spacing:-0.242352px;}
.ls3_c03174{letter-spacing:-0.118800px;}
.ls11_c03174{letter-spacing:0.000000px;}
.ls1_c03174{letter-spacing:0.006048px;}
.ls4_c03174{letter-spacing:0.128304px;}
.lsa_c03174{letter-spacing:0.508464px;}
.ls10_c03174{letter-spacing:0.514080px;}
.lsd_c03174{letter-spacing:0.536976px;}
.ls9_c03174{letter-spacing:0.579744px;}
.lsf_c03174{letter-spacing:0.594000px;}
.ls7_c03174{letter-spacing:0.598752px;}
.ls2_c03174{letter-spacing:0.613008px;}
.ls0_c03174{letter-spacing:0.717552px;}
.sc__c03174{text-shadow:none;}
.sc0_c03174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03174{-webkit-text-stroke:0px transparent;}
.sc0_c03174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03174{word-spacing:-15.126048px;}
.wsa_c03174{word-spacing:-12.474000px;}
.ws8_c03174{word-spacing:-12.459744px;}
.ws9_c03174{word-spacing:-12.416976px;}
.ws4_c03174{word-spacing:-11.637648px;}
.ws2_c03174{word-spacing:-11.266992px;}
.ws10_c03174{word-spacing:-1.078704px;}
.wsd_c03174{word-spacing:-0.974160px;}
.ws14_c03174{word-spacing:-0.719712px;}
.wsf_c03174{word-spacing:-0.118800px;}
.ws12_c03174{word-spacing:-0.099792px;}
.ws13_c03174{word-spacing:-0.085536px;}
.wse_c03174{word-spacing:0.000000px;}
.ws11_c03174{word-spacing:0.836352px;}
.wsb_c03174{word-spacing:33.300288px;}
.ws6_c03174{word-spacing:36.742464px;}
.ws1_c03174{word-spacing:37.759392px;}
.ws0_c03174{word-spacing:38.020752px;}
.ws3_c03174{word-spacing:39.218256px;}
.ws5_c03174{word-spacing:39.902544px;}
.ws7_c03174{word-spacing:42.026688px;}
._0_c03174{margin-left:-1.948320px;}
._2_c03174{width:1.482624px;}
._4_c03174{width:3.302640px;}
._1_c03174{width:50.252400px;}
._3_c03174{width:51.530688px;}
.fc0_c03174{color:rgb(0,0,0);}
.fs0_c03174{font-size:47.520000px;}
.fs1_c03174{font-size:60.480000px;}
.y0_c03174{bottom:0.000000px;}
.y19_c03174{bottom:146.998362px;}
.y1b_c03174{bottom:186.600234px;}
.y1a_c03174{bottom:196.320450px;}
.y18_c03174{bottom:275.878542px;}
.y17_c03174{bottom:356.878758px;}
.y15_c03174{bottom:406.559730px;}
.y11_c03174{bottom:424.560306px;}
.y16_c03174{bottom:458.759262px;}
.y14_c03174{bottom:491.879514px;}
.y13_c03174{bottom:509.880090px;}
.y10_c03174{bottom:543.000342px;}
.y12_c03174{bottom:559.559874px;}
.yf_c03174{bottom:577.560450px;}
.y1c_c03174{bottom:614.280450px;}
.yb_c03174{bottom:667.558326px;}
.yd_c03174{bottom:707.160234px;}
.yc_c03174{bottom:716.880450px;}
.ya_c03174{bottom:796.438506px;}
.y9_c03174{bottom:877.438722px;}
.y7_c03174{bottom:926.759730px;}
.y3_c03174{bottom:944.760306px;}
.y8_c03174{bottom:979.319226px;}
.y6_c03174{bottom:1012.439478px;}
.y5_c03174{bottom:1030.440054px;}
.y2_c03174{bottom:1063.560306px;}
.y4_c03174{bottom:1079.759874px;}
.y1_c03174{bottom:1097.760450px;}
.ye_c03174{bottom:1134.840450px;}
.h3_c03174{height:32.530781px;}
.h1_c03174{height:41.696016px;}
.h2_c03174{height:41.812031px;}
.h4_c03174{height:54.654737px;}
.h0_c03174{height:1263.000000px;}
.w1_c03174{width:892.500000px;}
.w0_c03174{width:892.830000px;}
.x0_c03174{left:0.000000px;}
.xd_c03174{left:117.000000px;}
.x8_c03174{left:440.999856px;}
.x4_c03174{left:445.680576px;}
.xb_c03174{left:451.080000px;}
.x7_c03174{left:455.399604px;}
.x5_c03174{left:461.880144px;}
.x1_c03174{left:463.320000px;}
.xa_c03174{left:483.480360px;}
.x9_c03174{left:492.119496px;}
.x6_c03174{left:493.200576px;}
.xc_c03174{left:506.880360px;}
.x3_c03174{left:511.919892px;}
.x2_c03174{left:526.679604px;}
@media print{
.v0_c03174{vertical-align:0.000000pt;}
.v1_c03174{vertical-align:1.279488pt;}
.lsb_c03174{letter-spacing:-1.064448pt;}
.ls6_c03174{letter-spacing:-0.544896pt;}
.ls8_c03174{letter-spacing:-0.511104pt;}
.lse_c03174{letter-spacing:-0.244992pt;}
.lsc_c03174{letter-spacing:-0.232320pt;}
.ls5_c03174{letter-spacing:-0.215424pt;}
.ls3_c03174{letter-spacing:-0.105600pt;}
.ls11_c03174{letter-spacing:0.000000pt;}
.ls1_c03174{letter-spacing:0.005376pt;}
.ls4_c03174{letter-spacing:0.114048pt;}
.lsa_c03174{letter-spacing:0.451968pt;}
.ls10_c03174{letter-spacing:0.456960pt;}
.lsd_c03174{letter-spacing:0.477312pt;}
.ls9_c03174{letter-spacing:0.515328pt;}
.lsf_c03174{letter-spacing:0.528000pt;}
.ls7_c03174{letter-spacing:0.532224pt;}
.ls2_c03174{letter-spacing:0.544896pt;}
.ls0_c03174{letter-spacing:0.637824pt;}
.wsc_c03174{word-spacing:-13.445376pt;}
.wsa_c03174{word-spacing:-11.088000pt;}
.ws8_c03174{word-spacing:-11.075328pt;}
.ws9_c03174{word-spacing:-11.037312pt;}
.ws4_c03174{word-spacing:-10.344576pt;}
.ws2_c03174{word-spacing:-10.015104pt;}
.ws10_c03174{word-spacing:-0.958848pt;}
.wsd_c03174{word-spacing:-0.865920pt;}
.ws14_c03174{word-spacing:-0.639744pt;}
.wsf_c03174{word-spacing:-0.105600pt;}
.ws12_c03174{word-spacing:-0.088704pt;}
.ws13_c03174{word-spacing:-0.076032pt;}
.wse_c03174{word-spacing:0.000000pt;}
.ws11_c03174{word-spacing:0.743424pt;}
.wsb_c03174{word-spacing:29.600256pt;}
.ws6_c03174{word-spacing:32.659968pt;}
.ws1_c03174{word-spacing:33.563904pt;}
.ws0_c03174{word-spacing:33.796224pt;}
.ws3_c03174{word-spacing:34.860672pt;}
.ws5_c03174{word-spacing:35.468928pt;}
.ws7_c03174{word-spacing:37.357056pt;}
._0_c03174{margin-left:-1.731840pt;}
._2_c03174{width:1.317888pt;}
._4_c03174{width:2.935680pt;}
._1_c03174{width:44.668800pt;}
._3_c03174{width:45.805056pt;}
.fs0_c03174{font-size:42.240000pt;}
.fs1_c03174{font-size:53.760000pt;}
.y0_c03174{bottom:0.000000pt;}
.y19_c03174{bottom:130.665211pt;}
.y1b_c03174{bottom:165.866875pt;}
.y1a_c03174{bottom:174.507067pt;}
.y18_c03174{bottom:245.225371pt;}
.y17_c03174{bottom:317.225563pt;}
.y15_c03174{bottom:361.386427pt;}
.y11_c03174{bottom:377.386939pt;}
.y16_c03174{bottom:407.786011pt;}
.y14_c03174{bottom:437.226235pt;}
.y13_c03174{bottom:453.226747pt;}
.y10_c03174{bottom:482.666971pt;}
.y12_c03174{bottom:497.386555pt;}
.yf_c03174{bottom:513.387067pt;}
.y1c_c03174{bottom:546.027067pt;}
.yb_c03174{bottom:593.385179pt;}
.yd_c03174{bottom:628.586875pt;}
.yc_c03174{bottom:637.227067pt;}
.ya_c03174{bottom:707.945339pt;}
.y9_c03174{bottom:779.945531pt;}
.y7_c03174{bottom:823.786427pt;}
.y3_c03174{bottom:839.786939pt;}
.y8_c03174{bottom:870.505979pt;}
.y6_c03174{bottom:899.946203pt;}
.y5_c03174{bottom:915.946715pt;}
.y2_c03174{bottom:945.386939pt;}
.y4_c03174{bottom:959.786555pt;}
.y1_c03174{bottom:975.787067pt;}
.ye_c03174{bottom:1008.747067pt;}
.h3_c03174{height:28.916250pt;}
.h1_c03174{height:37.063125pt;}
.h2_c03174{height:37.166250pt;}
.h4_c03174{height:48.581988pt;}
.h0_c03174{height:1122.666667pt;}
.w1_c03174{width:793.333333pt;}
.w0_c03174{width:793.626667pt;}
.x0_c03174{left:0.000000pt;}
.xd_c03174{left:104.000000pt;}
.x8_c03174{left:391.999872pt;}
.x4_c03174{left:396.160512pt;}
.xb_c03174{left:400.960000pt;}
.x7_c03174{left:404.799648pt;}
.x5_c03174{left:410.560128pt;}
.x1_c03174{left:411.840000pt;}
.xa_c03174{left:429.760320pt;}
.x9_c03174{left:437.439552pt;}
.x6_c03174{left:438.400512pt;}
.xc_c03174{left:450.560320pt;}
.x3_c03174{left:455.039904pt;}
.x2_c03174{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03175 {
    display:none;
  }
  .loading-indicator_c03175.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03175 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03175 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03175" -> "#page-container .classname_c03175")
 */
.pf_c03175 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03175 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03175.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03175 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03175 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03175 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03175 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03175 {overflow:visible;}
  }
}
.c_c03175 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03175 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03175:after { /* webkit #35443 */
  content: '';
}
.t_c03175:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03175 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03175 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03175 { /* info for Javascript */
  display:none;
}
.l_c03175 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03175 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03175 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03175:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03175 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03175.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03175.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03175 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03175;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03175{font-family:ff1_c03175;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03175;src:url('chunks/assets/font_0a8da861195c276cf81f8a88.woff2')format("woff");}.ff2_c03175{font-family:ff2_c03175;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03175;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03175{font-family:ff3_c03175;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03175{vertical-align:0.000000px;}
.v1_c03175{vertical-align:1.439424px;}
.lsb_c03175{letter-spacing:-1.197504px;}
.ls6_c03175{letter-spacing:-0.613008px;}
.ls8_c03175{letter-spacing:-0.574992px;}
.lse_c03175{letter-spacing:-0.275616px;}
.lsc_c03175{letter-spacing:-0.261360px;}
.ls5_c03175{letter-spacing:-0.242352px;}
.ls3_c03175{letter-spacing:-0.118800px;}
.ls11_c03175{letter-spacing:0.000000px;}
.ls1_c03175{letter-spacing:0.006048px;}
.ls4_c03175{letter-spacing:0.128304px;}
.ls12_c03175{letter-spacing:0.242352px;}
.lsa_c03175{letter-spacing:0.508464px;}
.ls10_c03175{letter-spacing:0.514080px;}
.lsd_c03175{letter-spacing:0.536976px;}
.ls9_c03175{letter-spacing:0.579744px;}
.lsf_c03175{letter-spacing:0.594000px;}
.ls7_c03175{letter-spacing:0.598752px;}
.ls2_c03175{letter-spacing:0.613008px;}
.ls0_c03175{letter-spacing:0.717552px;}
.sc__c03175{text-shadow:none;}
.sc0_c03175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03175{-webkit-text-stroke:0px transparent;}
.sc0_c03175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03175{word-spacing:-15.126048px;}
.wsa_c03175{word-spacing:-12.474000px;}
.ws8_c03175{word-spacing:-12.459744px;}
.ws9_c03175{word-spacing:-12.416976px;}
.ws4_c03175{word-spacing:-11.637648px;}
.ws2_c03175{word-spacing:-11.266992px;}
.ws11_c03175{word-spacing:-1.078704px;}
.wse_c03175{word-spacing:-0.974160px;}
.ws15_c03175{word-spacing:-0.719712px;}
.ws16_c03175{word-spacing:-0.603504px;}
.ws10_c03175{word-spacing:-0.118800px;}
.ws13_c03175{word-spacing:-0.099792px;}
.ws14_c03175{word-spacing:-0.085536px;}
.wsf_c03175{word-spacing:0.000000px;}
.ws12_c03175{word-spacing:0.836352px;}
.wsb_c03175{word-spacing:33.300288px;}
.wsd_c03175{word-spacing:36.143712px;}
.ws6_c03175{word-spacing:36.742464px;}
.ws1_c03175{word-spacing:37.759392px;}
.ws0_c03175{word-spacing:38.020752px;}
.ws3_c03175{word-spacing:39.218256px;}
.ws5_c03175{word-spacing:39.902544px;}
.ws7_c03175{word-spacing:42.026688px;}
._0_c03175{margin-left:-1.948320px;}
._2_c03175{width:1.482624px;}
._4_c03175{width:3.302640px;}
._1_c03175{width:50.252400px;}
._3_c03175{width:51.530688px;}
.fc0_c03175{color:rgb(0,0,0);}
.fs0_c03175{font-size:47.520000px;}
.fs1_c03175{font-size:60.480000px;}
.y0_c03175{bottom:0.000000px;}
.y19_c03175{bottom:146.998362px;}
.y1b_c03175{bottom:186.600234px;}
.y1a_c03175{bottom:196.320450px;}
.y18_c03175{bottom:275.878542px;}
.y17_c03175{bottom:356.878758px;}
.y15_c03175{bottom:406.559730px;}
.y11_c03175{bottom:424.560306px;}
.y16_c03175{bottom:458.759262px;}
.y14_c03175{bottom:491.879514px;}
.y13_c03175{bottom:509.880090px;}
.y10_c03175{bottom:543.000342px;}
.y12_c03175{bottom:559.559874px;}
.yf_c03175{bottom:577.560450px;}
.y1c_c03175{bottom:614.280450px;}
.yb_c03175{bottom:667.558326px;}
.yd_c03175{bottom:707.160234px;}
.yc_c03175{bottom:716.880450px;}
.ya_c03175{bottom:796.438506px;}
.y9_c03175{bottom:877.438722px;}
.y7_c03175{bottom:926.759730px;}
.y3_c03175{bottom:944.760306px;}
.y8_c03175{bottom:979.319226px;}
.y6_c03175{bottom:1012.439478px;}
.y5_c03175{bottom:1030.440054px;}
.y2_c03175{bottom:1063.560306px;}
.y4_c03175{bottom:1079.759874px;}
.y1_c03175{bottom:1097.760450px;}
.ye_c03175{bottom:1134.840450px;}
.h3_c03175{height:32.530781px;}
.h1_c03175{height:41.696016px;}
.h2_c03175{height:41.812031px;}
.h4_c03175{height:54.654737px;}
.h0_c03175{height:1263.000000px;}
.w1_c03175{width:892.500000px;}
.w0_c03175{width:892.830000px;}
.x0_c03175{left:0.000000px;}
.xd_c03175{left:117.000000px;}
.x8_c03175{left:440.999856px;}
.x4_c03175{left:445.680576px;}
.xb_c03175{left:451.080000px;}
.x7_c03175{left:455.399604px;}
.x5_c03175{left:461.880144px;}
.x1_c03175{left:463.320000px;}
.xa_c03175{left:483.480360px;}
.x9_c03175{left:492.119496px;}
.x6_c03175{left:493.200576px;}
.xc_c03175{left:506.880360px;}
.x3_c03175{left:511.919892px;}
.x2_c03175{left:526.679604px;}
@media print{
.v0_c03175{vertical-align:0.000000pt;}
.v1_c03175{vertical-align:1.279488pt;}
.lsb_c03175{letter-spacing:-1.064448pt;}
.ls6_c03175{letter-spacing:-0.544896pt;}
.ls8_c03175{letter-spacing:-0.511104pt;}
.lse_c03175{letter-spacing:-0.244992pt;}
.lsc_c03175{letter-spacing:-0.232320pt;}
.ls5_c03175{letter-spacing:-0.215424pt;}
.ls3_c03175{letter-spacing:-0.105600pt;}
.ls11_c03175{letter-spacing:0.000000pt;}
.ls1_c03175{letter-spacing:0.005376pt;}
.ls4_c03175{letter-spacing:0.114048pt;}
.ls12_c03175{letter-spacing:0.215424pt;}
.lsa_c03175{letter-spacing:0.451968pt;}
.ls10_c03175{letter-spacing:0.456960pt;}
.lsd_c03175{letter-spacing:0.477312pt;}
.ls9_c03175{letter-spacing:0.515328pt;}
.lsf_c03175{letter-spacing:0.528000pt;}
.ls7_c03175{letter-spacing:0.532224pt;}
.ls2_c03175{letter-spacing:0.544896pt;}
.ls0_c03175{letter-spacing:0.637824pt;}
.wsc_c03175{word-spacing:-13.445376pt;}
.wsa_c03175{word-spacing:-11.088000pt;}
.ws8_c03175{word-spacing:-11.075328pt;}
.ws9_c03175{word-spacing:-11.037312pt;}
.ws4_c03175{word-spacing:-10.344576pt;}
.ws2_c03175{word-spacing:-10.015104pt;}
.ws11_c03175{word-spacing:-0.958848pt;}
.wse_c03175{word-spacing:-0.865920pt;}
.ws15_c03175{word-spacing:-0.639744pt;}
.ws16_c03175{word-spacing:-0.536448pt;}
.ws10_c03175{word-spacing:-0.105600pt;}
.ws13_c03175{word-spacing:-0.088704pt;}
.ws14_c03175{word-spacing:-0.076032pt;}
.wsf_c03175{word-spacing:0.000000pt;}
.ws12_c03175{word-spacing:0.743424pt;}
.wsb_c03175{word-spacing:29.600256pt;}
.wsd_c03175{word-spacing:32.127744pt;}
.ws6_c03175{word-spacing:32.659968pt;}
.ws1_c03175{word-spacing:33.563904pt;}
.ws0_c03175{word-spacing:33.796224pt;}
.ws3_c03175{word-spacing:34.860672pt;}
.ws5_c03175{word-spacing:35.468928pt;}
.ws7_c03175{word-spacing:37.357056pt;}
._0_c03175{margin-left:-1.731840pt;}
._2_c03175{width:1.317888pt;}
._4_c03175{width:2.935680pt;}
._1_c03175{width:44.668800pt;}
._3_c03175{width:45.805056pt;}
.fs0_c03175{font-size:42.240000pt;}
.fs1_c03175{font-size:53.760000pt;}
.y0_c03175{bottom:0.000000pt;}
.y19_c03175{bottom:130.665211pt;}
.y1b_c03175{bottom:165.866875pt;}
.y1a_c03175{bottom:174.507067pt;}
.y18_c03175{bottom:245.225371pt;}
.y17_c03175{bottom:317.225563pt;}
.y15_c03175{bottom:361.386427pt;}
.y11_c03175{bottom:377.386939pt;}
.y16_c03175{bottom:407.786011pt;}
.y14_c03175{bottom:437.226235pt;}
.y13_c03175{bottom:453.226747pt;}
.y10_c03175{bottom:482.666971pt;}
.y12_c03175{bottom:497.386555pt;}
.yf_c03175{bottom:513.387067pt;}
.y1c_c03175{bottom:546.027067pt;}
.yb_c03175{bottom:593.385179pt;}
.yd_c03175{bottom:628.586875pt;}
.yc_c03175{bottom:637.227067pt;}
.ya_c03175{bottom:707.945339pt;}
.y9_c03175{bottom:779.945531pt;}
.y7_c03175{bottom:823.786427pt;}
.y3_c03175{bottom:839.786939pt;}
.y8_c03175{bottom:870.505979pt;}
.y6_c03175{bottom:899.946203pt;}
.y5_c03175{bottom:915.946715pt;}
.y2_c03175{bottom:945.386939pt;}
.y4_c03175{bottom:959.786555pt;}
.y1_c03175{bottom:975.787067pt;}
.ye_c03175{bottom:1008.747067pt;}
.h3_c03175{height:28.916250pt;}
.h1_c03175{height:37.063125pt;}
.h2_c03175{height:37.166250pt;}
.h4_c03175{height:48.581988pt;}
.h0_c03175{height:1122.666667pt;}
.w1_c03175{width:793.333333pt;}
.w0_c03175{width:793.626667pt;}
.x0_c03175{left:0.000000pt;}
.xd_c03175{left:104.000000pt;}
.x8_c03175{left:391.999872pt;}
.x4_c03175{left:396.160512pt;}
.xb_c03175{left:400.960000pt;}
.x7_c03175{left:404.799648pt;}
.x5_c03175{left:410.560128pt;}
.x1_c03175{left:411.840000pt;}
.xa_c03175{left:429.760320pt;}
.x9_c03175{left:437.439552pt;}
.x6_c03175{left:438.400512pt;}
.xc_c03175{left:450.560320pt;}
.x3_c03175{left:455.039904pt;}
.x2_c03175{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03176 {
    display:none;
  }
  .loading-indicator_c03176.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03176 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03176 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03176" -> "#page-container .classname_c03176")
 */
.pf_c03176 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03176 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03176.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03176 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03176 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03176 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03176 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03176 {overflow:visible;}
  }
}
.c_c03176 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03176 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03176:after { /* webkit #35443 */
  content: '';
}
.t_c03176:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03176 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03176 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03176 { /* info for Javascript */
  display:none;
}
.l_c03176 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03176 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03176 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03176:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03176 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03176.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03176.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03176 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03176{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03176;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03176{font-family:ff1_c03176;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03176;src:url('chunks/assets/font_9624b7bbb659cbac93fe5f90.woff2')format("woff");}.ff2_c03176{font-family:ff2_c03176;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03176;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03176{font-family:ff3_c03176;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03176{vertical-align:0.000000px;}
.v1_c03176{vertical-align:1.439424px;}
.lsb_c03176{letter-spacing:-1.197504px;}
.ls6_c03176{letter-spacing:-0.613008px;}
.ls8_c03176{letter-spacing:-0.574992px;}
.lse_c03176{letter-spacing:-0.275616px;}
.lsc_c03176{letter-spacing:-0.261360px;}
.ls5_c03176{letter-spacing:-0.242352px;}
.ls3_c03176{letter-spacing:-0.118800px;}
.ls11_c03176{letter-spacing:0.000000px;}
.ls1_c03176{letter-spacing:0.006048px;}
.ls4_c03176{letter-spacing:0.128304px;}
.lsa_c03176{letter-spacing:0.508464px;}
.ls10_c03176{letter-spacing:0.514080px;}
.lsd_c03176{letter-spacing:0.536976px;}
.ls9_c03176{letter-spacing:0.579744px;}
.lsf_c03176{letter-spacing:0.594000px;}
.ls7_c03176{letter-spacing:0.598752px;}
.ls2_c03176{letter-spacing:0.613008px;}
.ls0_c03176{letter-spacing:0.717552px;}
.sc__c03176{text-shadow:none;}
.sc0_c03176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03176{-webkit-text-stroke:0px transparent;}
.sc0_c03176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03176{word-spacing:-15.126048px;}
.wsa_c03176{word-spacing:-12.474000px;}
.ws8_c03176{word-spacing:-12.459744px;}
.ws9_c03176{word-spacing:-12.416976px;}
.ws4_c03176{word-spacing:-11.637648px;}
.ws2_c03176{word-spacing:-11.266992px;}
.ws10_c03176{word-spacing:-1.078704px;}
.wsd_c03176{word-spacing:-0.974160px;}
.ws14_c03176{word-spacing:-0.719712px;}
.wsf_c03176{word-spacing:-0.118800px;}
.ws12_c03176{word-spacing:-0.099792px;}
.ws13_c03176{word-spacing:-0.085536px;}
.wse_c03176{word-spacing:0.000000px;}
.ws11_c03176{word-spacing:0.836352px;}
.wsb_c03176{word-spacing:33.300288px;}
.ws6_c03176{word-spacing:36.742464px;}
.ws1_c03176{word-spacing:37.759392px;}
.ws0_c03176{word-spacing:38.020752px;}
.ws3_c03176{word-spacing:39.218256px;}
.ws5_c03176{word-spacing:39.902544px;}
.ws7_c03176{word-spacing:42.026688px;}
._0_c03176{margin-left:-1.948320px;}
._2_c03176{width:1.482624px;}
._4_c03176{width:3.302640px;}
._1_c03176{width:50.252400px;}
._3_c03176{width:51.530688px;}
.fc0_c03176{color:rgb(0,0,0);}
.fs0_c03176{font-size:47.520000px;}
.fs1_c03176{font-size:60.480000px;}
.y0_c03176{bottom:0.000000px;}
.y19_c03176{bottom:146.998362px;}
.y1b_c03176{bottom:186.600234px;}
.y1a_c03176{bottom:196.320450px;}
.y18_c03176{bottom:275.878542px;}
.y17_c03176{bottom:356.878758px;}
.y15_c03176{bottom:406.559730px;}
.y11_c03176{bottom:424.560306px;}
.y16_c03176{bottom:458.759262px;}
.y14_c03176{bottom:491.879514px;}
.y13_c03176{bottom:509.880090px;}
.y10_c03176{bottom:543.000342px;}
.y12_c03176{bottom:559.559874px;}
.yf_c03176{bottom:577.560450px;}
.y1c_c03176{bottom:614.280450px;}
.yb_c03176{bottom:667.558326px;}
.yd_c03176{bottom:707.160234px;}
.yc_c03176{bottom:716.880450px;}
.ya_c03176{bottom:796.438506px;}
.y9_c03176{bottom:877.438722px;}
.y7_c03176{bottom:926.759730px;}
.y3_c03176{bottom:944.760306px;}
.y8_c03176{bottom:979.319226px;}
.y6_c03176{bottom:1012.439478px;}
.y5_c03176{bottom:1030.440054px;}
.y2_c03176{bottom:1063.560306px;}
.y4_c03176{bottom:1079.759874px;}
.y1_c03176{bottom:1097.760450px;}
.ye_c03176{bottom:1134.840450px;}
.h3_c03176{height:32.530781px;}
.h1_c03176{height:41.696016px;}
.h2_c03176{height:41.812031px;}
.h4_c03176{height:54.654737px;}
.h0_c03176{height:1263.000000px;}
.w1_c03176{width:892.500000px;}
.w0_c03176{width:892.830000px;}
.x0_c03176{left:0.000000px;}
.xd_c03176{left:117.000000px;}
.x8_c03176{left:440.999856px;}
.x4_c03176{left:445.680576px;}
.xb_c03176{left:451.080000px;}
.x7_c03176{left:455.399604px;}
.x5_c03176{left:461.880144px;}
.x1_c03176{left:463.320000px;}
.xa_c03176{left:483.480360px;}
.x9_c03176{left:492.119496px;}
.x6_c03176{left:493.200576px;}
.xc_c03176{left:506.880360px;}
.x3_c03176{left:511.919892px;}
.x2_c03176{left:526.679604px;}
@media print{
.v0_c03176{vertical-align:0.000000pt;}
.v1_c03176{vertical-align:1.279488pt;}
.lsb_c03176{letter-spacing:-1.064448pt;}
.ls6_c03176{letter-spacing:-0.544896pt;}
.ls8_c03176{letter-spacing:-0.511104pt;}
.lse_c03176{letter-spacing:-0.244992pt;}
.lsc_c03176{letter-spacing:-0.232320pt;}
.ls5_c03176{letter-spacing:-0.215424pt;}
.ls3_c03176{letter-spacing:-0.105600pt;}
.ls11_c03176{letter-spacing:0.000000pt;}
.ls1_c03176{letter-spacing:0.005376pt;}
.ls4_c03176{letter-spacing:0.114048pt;}
.lsa_c03176{letter-spacing:0.451968pt;}
.ls10_c03176{letter-spacing:0.456960pt;}
.lsd_c03176{letter-spacing:0.477312pt;}
.ls9_c03176{letter-spacing:0.515328pt;}
.lsf_c03176{letter-spacing:0.528000pt;}
.ls7_c03176{letter-spacing:0.532224pt;}
.ls2_c03176{letter-spacing:0.544896pt;}
.ls0_c03176{letter-spacing:0.637824pt;}
.wsc_c03176{word-spacing:-13.445376pt;}
.wsa_c03176{word-spacing:-11.088000pt;}
.ws8_c03176{word-spacing:-11.075328pt;}
.ws9_c03176{word-spacing:-11.037312pt;}
.ws4_c03176{word-spacing:-10.344576pt;}
.ws2_c03176{word-spacing:-10.015104pt;}
.ws10_c03176{word-spacing:-0.958848pt;}
.wsd_c03176{word-spacing:-0.865920pt;}
.ws14_c03176{word-spacing:-0.639744pt;}
.wsf_c03176{word-spacing:-0.105600pt;}
.ws12_c03176{word-spacing:-0.088704pt;}
.ws13_c03176{word-spacing:-0.076032pt;}
.wse_c03176{word-spacing:0.000000pt;}
.ws11_c03176{word-spacing:0.743424pt;}
.wsb_c03176{word-spacing:29.600256pt;}
.ws6_c03176{word-spacing:32.659968pt;}
.ws1_c03176{word-spacing:33.563904pt;}
.ws0_c03176{word-spacing:33.796224pt;}
.ws3_c03176{word-spacing:34.860672pt;}
.ws5_c03176{word-spacing:35.468928pt;}
.ws7_c03176{word-spacing:37.357056pt;}
._0_c03176{margin-left:-1.731840pt;}
._2_c03176{width:1.317888pt;}
._4_c03176{width:2.935680pt;}
._1_c03176{width:44.668800pt;}
._3_c03176{width:45.805056pt;}
.fs0_c03176{font-size:42.240000pt;}
.fs1_c03176{font-size:53.760000pt;}
.y0_c03176{bottom:0.000000pt;}
.y19_c03176{bottom:130.665211pt;}
.y1b_c03176{bottom:165.866875pt;}
.y1a_c03176{bottom:174.507067pt;}
.y18_c03176{bottom:245.225371pt;}
.y17_c03176{bottom:317.225563pt;}
.y15_c03176{bottom:361.386427pt;}
.y11_c03176{bottom:377.386939pt;}
.y16_c03176{bottom:407.786011pt;}
.y14_c03176{bottom:437.226235pt;}
.y13_c03176{bottom:453.226747pt;}
.y10_c03176{bottom:482.666971pt;}
.y12_c03176{bottom:497.386555pt;}
.yf_c03176{bottom:513.387067pt;}
.y1c_c03176{bottom:546.027067pt;}
.yb_c03176{bottom:593.385179pt;}
.yd_c03176{bottom:628.586875pt;}
.yc_c03176{bottom:637.227067pt;}
.ya_c03176{bottom:707.945339pt;}
.y9_c03176{bottom:779.945531pt;}
.y7_c03176{bottom:823.786427pt;}
.y3_c03176{bottom:839.786939pt;}
.y8_c03176{bottom:870.505979pt;}
.y6_c03176{bottom:899.946203pt;}
.y5_c03176{bottom:915.946715pt;}
.y2_c03176{bottom:945.386939pt;}
.y4_c03176{bottom:959.786555pt;}
.y1_c03176{bottom:975.787067pt;}
.ye_c03176{bottom:1008.747067pt;}
.h3_c03176{height:28.916250pt;}
.h1_c03176{height:37.063125pt;}
.h2_c03176{height:37.166250pt;}
.h4_c03176{height:48.581988pt;}
.h0_c03176{height:1122.666667pt;}
.w1_c03176{width:793.333333pt;}
.w0_c03176{width:793.626667pt;}
.x0_c03176{left:0.000000pt;}
.xd_c03176{left:104.000000pt;}
.x8_c03176{left:391.999872pt;}
.x4_c03176{left:396.160512pt;}
.xb_c03176{left:400.960000pt;}
.x7_c03176{left:404.799648pt;}
.x5_c03176{left:410.560128pt;}
.x1_c03176{left:411.840000pt;}
.xa_c03176{left:429.760320pt;}
.x9_c03176{left:437.439552pt;}
.x6_c03176{left:438.400512pt;}
.xc_c03176{left:450.560320pt;}
.x3_c03176{left:455.039904pt;}
.x2_c03176{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03177 {
    display:none;
  }
  .loading-indicator_c03177.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03177 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03177 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03177" -> "#page-container .classname_c03177")
 */
.pf_c03177 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03177 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03177.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03177 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03177 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03177 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03177 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03177 {overflow:visible;}
  }
}
.c_c03177 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03177 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03177:after { /* webkit #35443 */
  content: '';
}
.t_c03177:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03177 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03177 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03177 { /* info for Javascript */
  display:none;
}
.l_c03177 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03177 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03177 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03177:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03177 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03177.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03177.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03177 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03177{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03177;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03177{font-family:ff1_c03177;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03177;src:url('chunks/assets/font_2225e624a3882075c2e58625.woff2')format("woff");}.ff2_c03177{font-family:ff2_c03177;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03177;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03177{font-family:ff3_c03177;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03177{vertical-align:0.000000px;}
.v1_c03177{vertical-align:1.439424px;}
.lsb_c03177{letter-spacing:-1.197504px;}
.ls6_c03177{letter-spacing:-0.613008px;}
.ls8_c03177{letter-spacing:-0.574992px;}
.lse_c03177{letter-spacing:-0.275616px;}
.lsc_c03177{letter-spacing:-0.261360px;}
.ls5_c03177{letter-spacing:-0.242352px;}
.ls3_c03177{letter-spacing:-0.118800px;}
.ls11_c03177{letter-spacing:0.000000px;}
.ls1_c03177{letter-spacing:0.006048px;}
.ls4_c03177{letter-spacing:0.128304px;}
.lsa_c03177{letter-spacing:0.508464px;}
.ls10_c03177{letter-spacing:0.514080px;}
.lsd_c03177{letter-spacing:0.536976px;}
.ls9_c03177{letter-spacing:0.579744px;}
.lsf_c03177{letter-spacing:0.594000px;}
.ls7_c03177{letter-spacing:0.598752px;}
.ls2_c03177{letter-spacing:0.613008px;}
.ls0_c03177{letter-spacing:0.717552px;}
.sc__c03177{text-shadow:none;}
.sc0_c03177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03177{-webkit-text-stroke:0px transparent;}
.sc0_c03177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03177{word-spacing:-15.126048px;}
.wsa_c03177{word-spacing:-12.474000px;}
.ws8_c03177{word-spacing:-12.459744px;}
.ws9_c03177{word-spacing:-12.416976px;}
.ws4_c03177{word-spacing:-11.637648px;}
.ws2_c03177{word-spacing:-11.266992px;}
.ws10_c03177{word-spacing:-1.078704px;}
.wsd_c03177{word-spacing:-0.974160px;}
.ws14_c03177{word-spacing:-0.719712px;}
.wsf_c03177{word-spacing:-0.118800px;}
.ws12_c03177{word-spacing:-0.099792px;}
.ws13_c03177{word-spacing:-0.085536px;}
.wse_c03177{word-spacing:0.000000px;}
.ws11_c03177{word-spacing:0.836352px;}
.wsb_c03177{word-spacing:33.300288px;}
.ws6_c03177{word-spacing:36.742464px;}
.ws1_c03177{word-spacing:37.759392px;}
.ws0_c03177{word-spacing:38.020752px;}
.ws3_c03177{word-spacing:39.218256px;}
.ws5_c03177{word-spacing:39.902544px;}
.ws7_c03177{word-spacing:42.026688px;}
._0_c03177{margin-left:-1.948320px;}
._2_c03177{width:1.482624px;}
._4_c03177{width:3.302640px;}
._1_c03177{width:50.252400px;}
._3_c03177{width:51.530688px;}
.fc0_c03177{color:rgb(0,0,0);}
.fs0_c03177{font-size:47.520000px;}
.fs1_c03177{font-size:60.480000px;}
.y0_c03177{bottom:0.000000px;}
.y19_c03177{bottom:146.998362px;}
.y1b_c03177{bottom:186.600234px;}
.y1a_c03177{bottom:196.320450px;}
.y18_c03177{bottom:275.878542px;}
.y17_c03177{bottom:356.878758px;}
.y15_c03177{bottom:406.559730px;}
.y11_c03177{bottom:424.560306px;}
.y16_c03177{bottom:458.759262px;}
.y14_c03177{bottom:491.879514px;}
.y13_c03177{bottom:509.880090px;}
.y10_c03177{bottom:543.000342px;}
.y12_c03177{bottom:559.559874px;}
.yf_c03177{bottom:577.560450px;}
.y1c_c03177{bottom:614.280450px;}
.yb_c03177{bottom:667.558326px;}
.yd_c03177{bottom:707.160234px;}
.yc_c03177{bottom:716.880450px;}
.ya_c03177{bottom:796.438506px;}
.y9_c03177{bottom:877.438722px;}
.y7_c03177{bottom:926.759730px;}
.y3_c03177{bottom:944.760306px;}
.y8_c03177{bottom:979.319226px;}
.y6_c03177{bottom:1012.439478px;}
.y5_c03177{bottom:1030.440054px;}
.y2_c03177{bottom:1063.560306px;}
.y4_c03177{bottom:1079.759874px;}
.y1_c03177{bottom:1097.760450px;}
.ye_c03177{bottom:1134.840450px;}
.h3_c03177{height:32.530781px;}
.h1_c03177{height:41.696016px;}
.h2_c03177{height:41.812031px;}
.h4_c03177{height:54.654737px;}
.h0_c03177{height:1263.000000px;}
.w1_c03177{width:892.500000px;}
.w0_c03177{width:892.830000px;}
.x0_c03177{left:0.000000px;}
.xd_c03177{left:117.000000px;}
.x8_c03177{left:440.999856px;}
.x4_c03177{left:445.680576px;}
.xb_c03177{left:451.080000px;}
.x7_c03177{left:455.399604px;}
.x5_c03177{left:461.880144px;}
.x1_c03177{left:463.320000px;}
.xa_c03177{left:483.480360px;}
.x9_c03177{left:492.119496px;}
.x6_c03177{left:493.200576px;}
.xc_c03177{left:506.880360px;}
.x3_c03177{left:511.919892px;}
.x2_c03177{left:526.679604px;}
@media print{
.v0_c03177{vertical-align:0.000000pt;}
.v1_c03177{vertical-align:1.279488pt;}
.lsb_c03177{letter-spacing:-1.064448pt;}
.ls6_c03177{letter-spacing:-0.544896pt;}
.ls8_c03177{letter-spacing:-0.511104pt;}
.lse_c03177{letter-spacing:-0.244992pt;}
.lsc_c03177{letter-spacing:-0.232320pt;}
.ls5_c03177{letter-spacing:-0.215424pt;}
.ls3_c03177{letter-spacing:-0.105600pt;}
.ls11_c03177{letter-spacing:0.000000pt;}
.ls1_c03177{letter-spacing:0.005376pt;}
.ls4_c03177{letter-spacing:0.114048pt;}
.lsa_c03177{letter-spacing:0.451968pt;}
.ls10_c03177{letter-spacing:0.456960pt;}
.lsd_c03177{letter-spacing:0.477312pt;}
.ls9_c03177{letter-spacing:0.515328pt;}
.lsf_c03177{letter-spacing:0.528000pt;}
.ls7_c03177{letter-spacing:0.532224pt;}
.ls2_c03177{letter-spacing:0.544896pt;}
.ls0_c03177{letter-spacing:0.637824pt;}
.wsc_c03177{word-spacing:-13.445376pt;}
.wsa_c03177{word-spacing:-11.088000pt;}
.ws8_c03177{word-spacing:-11.075328pt;}
.ws9_c03177{word-spacing:-11.037312pt;}
.ws4_c03177{word-spacing:-10.344576pt;}
.ws2_c03177{word-spacing:-10.015104pt;}
.ws10_c03177{word-spacing:-0.958848pt;}
.wsd_c03177{word-spacing:-0.865920pt;}
.ws14_c03177{word-spacing:-0.639744pt;}
.wsf_c03177{word-spacing:-0.105600pt;}
.ws12_c03177{word-spacing:-0.088704pt;}
.ws13_c03177{word-spacing:-0.076032pt;}
.wse_c03177{word-spacing:0.000000pt;}
.ws11_c03177{word-spacing:0.743424pt;}
.wsb_c03177{word-spacing:29.600256pt;}
.ws6_c03177{word-spacing:32.659968pt;}
.ws1_c03177{word-spacing:33.563904pt;}
.ws0_c03177{word-spacing:33.796224pt;}
.ws3_c03177{word-spacing:34.860672pt;}
.ws5_c03177{word-spacing:35.468928pt;}
.ws7_c03177{word-spacing:37.357056pt;}
._0_c03177{margin-left:-1.731840pt;}
._2_c03177{width:1.317888pt;}
._4_c03177{width:2.935680pt;}
._1_c03177{width:44.668800pt;}
._3_c03177{width:45.805056pt;}
.fs0_c03177{font-size:42.240000pt;}
.fs1_c03177{font-size:53.760000pt;}
.y0_c03177{bottom:0.000000pt;}
.y19_c03177{bottom:130.665211pt;}
.y1b_c03177{bottom:165.866875pt;}
.y1a_c03177{bottom:174.507067pt;}
.y18_c03177{bottom:245.225371pt;}
.y17_c03177{bottom:317.225563pt;}
.y15_c03177{bottom:361.386427pt;}
.y11_c03177{bottom:377.386939pt;}
.y16_c03177{bottom:407.786011pt;}
.y14_c03177{bottom:437.226235pt;}
.y13_c03177{bottom:453.226747pt;}
.y10_c03177{bottom:482.666971pt;}
.y12_c03177{bottom:497.386555pt;}
.yf_c03177{bottom:513.387067pt;}
.y1c_c03177{bottom:546.027067pt;}
.yb_c03177{bottom:593.385179pt;}
.yd_c03177{bottom:628.586875pt;}
.yc_c03177{bottom:637.227067pt;}
.ya_c03177{bottom:707.945339pt;}
.y9_c03177{bottom:779.945531pt;}
.y7_c03177{bottom:823.786427pt;}
.y3_c03177{bottom:839.786939pt;}
.y8_c03177{bottom:870.505979pt;}
.y6_c03177{bottom:899.946203pt;}
.y5_c03177{bottom:915.946715pt;}
.y2_c03177{bottom:945.386939pt;}
.y4_c03177{bottom:959.786555pt;}
.y1_c03177{bottom:975.787067pt;}
.ye_c03177{bottom:1008.747067pt;}
.h3_c03177{height:28.916250pt;}
.h1_c03177{height:37.063125pt;}
.h2_c03177{height:37.166250pt;}
.h4_c03177{height:48.581988pt;}
.h0_c03177{height:1122.666667pt;}
.w1_c03177{width:793.333333pt;}
.w0_c03177{width:793.626667pt;}
.x0_c03177{left:0.000000pt;}
.xd_c03177{left:104.000000pt;}
.x8_c03177{left:391.999872pt;}
.x4_c03177{left:396.160512pt;}
.xb_c03177{left:400.960000pt;}
.x7_c03177{left:404.799648pt;}
.x5_c03177{left:410.560128pt;}
.x1_c03177{left:411.840000pt;}
.xa_c03177{left:429.760320pt;}
.x9_c03177{left:437.439552pt;}
.x6_c03177{left:438.400512pt;}
.xc_c03177{left:450.560320pt;}
.x3_c03177{left:455.039904pt;}
.x2_c03177{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03178 {
    display:none;
  }
  .loading-indicator_c03178.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03178 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03178 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03178" -> "#page-container .classname_c03178")
 */
.pf_c03178 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03178 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03178.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03178 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03178 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03178 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03178 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03178 {overflow:visible;}
  }
}
.c_c03178 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03178 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03178:after { /* webkit #35443 */
  content: '';
}
.t_c03178:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03178 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03178 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03178 { /* info for Javascript */
  display:none;
}
.l_c03178 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03178 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03178 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03178:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03178 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03178.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03178.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03178 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03178{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03178;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03178{font-family:ff1_c03178;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03178;src:url('chunks/assets/font_2d6ebab13e90651ba71f7833.woff2')format("woff");}.ff2_c03178{font-family:ff2_c03178;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03178;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03178{font-family:ff3_c03178;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03178{vertical-align:0.000000px;}
.v1_c03178{vertical-align:1.439424px;}
.lsb_c03178{letter-spacing:-1.197504px;}
.ls6_c03178{letter-spacing:-0.613008px;}
.ls8_c03178{letter-spacing:-0.574992px;}
.lse_c03178{letter-spacing:-0.275616px;}
.lsc_c03178{letter-spacing:-0.261360px;}
.ls5_c03178{letter-spacing:-0.242352px;}
.ls3_c03178{letter-spacing:-0.118800px;}
.ls11_c03178{letter-spacing:0.000000px;}
.ls1_c03178{letter-spacing:0.006048px;}
.ls4_c03178{letter-spacing:0.128304px;}
.lsa_c03178{letter-spacing:0.508464px;}
.ls10_c03178{letter-spacing:0.514080px;}
.lsd_c03178{letter-spacing:0.536976px;}
.ls9_c03178{letter-spacing:0.579744px;}
.lsf_c03178{letter-spacing:0.594000px;}
.ls7_c03178{letter-spacing:0.598752px;}
.ls2_c03178{letter-spacing:0.613008px;}
.ls0_c03178{letter-spacing:0.717552px;}
.sc__c03178{text-shadow:none;}
.sc0_c03178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03178{-webkit-text-stroke:0px transparent;}
.sc0_c03178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03178{word-spacing:-15.126048px;}
.wsa_c03178{word-spacing:-12.474000px;}
.ws8_c03178{word-spacing:-12.459744px;}
.ws9_c03178{word-spacing:-12.416976px;}
.ws4_c03178{word-spacing:-11.637648px;}
.ws2_c03178{word-spacing:-11.266992px;}
.ws10_c03178{word-spacing:-1.078704px;}
.wsd_c03178{word-spacing:-0.974160px;}
.ws14_c03178{word-spacing:-0.719712px;}
.wsf_c03178{word-spacing:-0.118800px;}
.ws12_c03178{word-spacing:-0.099792px;}
.ws13_c03178{word-spacing:-0.085536px;}
.wse_c03178{word-spacing:0.000000px;}
.ws11_c03178{word-spacing:0.836352px;}
.wsb_c03178{word-spacing:33.300288px;}
.ws6_c03178{word-spacing:36.742464px;}
.ws1_c03178{word-spacing:37.759392px;}
.ws0_c03178{word-spacing:38.020752px;}
.ws3_c03178{word-spacing:39.218256px;}
.ws5_c03178{word-spacing:39.902544px;}
.ws7_c03178{word-spacing:42.026688px;}
._0_c03178{margin-left:-1.948320px;}
._2_c03178{width:1.482624px;}
._4_c03178{width:3.302640px;}
._1_c03178{width:50.252400px;}
._3_c03178{width:51.530688px;}
.fc0_c03178{color:rgb(0,0,0);}
.fs0_c03178{font-size:47.520000px;}
.fs1_c03178{font-size:60.480000px;}
.y0_c03178{bottom:0.000000px;}
.y19_c03178{bottom:146.998362px;}
.y1b_c03178{bottom:186.600234px;}
.y1a_c03178{bottom:196.320450px;}
.y18_c03178{bottom:275.878542px;}
.y17_c03178{bottom:356.878758px;}
.y15_c03178{bottom:406.559730px;}
.y11_c03178{bottom:424.560306px;}
.y16_c03178{bottom:458.759262px;}
.y14_c03178{bottom:491.879514px;}
.y13_c03178{bottom:509.880090px;}
.y10_c03178{bottom:543.000342px;}
.y12_c03178{bottom:559.559874px;}
.yf_c03178{bottom:577.560450px;}
.y1c_c03178{bottom:614.280450px;}
.yb_c03178{bottom:667.558326px;}
.yd_c03178{bottom:707.160234px;}
.yc_c03178{bottom:716.880450px;}
.ya_c03178{bottom:796.438506px;}
.y9_c03178{bottom:877.438722px;}
.y7_c03178{bottom:926.759730px;}
.y3_c03178{bottom:944.760306px;}
.y8_c03178{bottom:979.319226px;}
.y6_c03178{bottom:1012.439478px;}
.y5_c03178{bottom:1030.440054px;}
.y2_c03178{bottom:1063.560306px;}
.y4_c03178{bottom:1079.759874px;}
.y1_c03178{bottom:1097.760450px;}
.ye_c03178{bottom:1134.840450px;}
.h3_c03178{height:32.530781px;}
.h1_c03178{height:41.696016px;}
.h2_c03178{height:41.812031px;}
.h4_c03178{height:54.654737px;}
.h0_c03178{height:1263.000000px;}
.w1_c03178{width:892.500000px;}
.w0_c03178{width:892.830000px;}
.x0_c03178{left:0.000000px;}
.xd_c03178{left:117.000000px;}
.x8_c03178{left:440.999856px;}
.x4_c03178{left:445.680576px;}
.xb_c03178{left:451.080000px;}
.x7_c03178{left:455.399604px;}
.x5_c03178{left:461.880144px;}
.x1_c03178{left:463.320000px;}
.xa_c03178{left:483.480360px;}
.x9_c03178{left:492.119496px;}
.x6_c03178{left:493.200576px;}
.xc_c03178{left:506.880360px;}
.x3_c03178{left:511.919892px;}
.x2_c03178{left:526.679604px;}
@media print{
.v0_c03178{vertical-align:0.000000pt;}
.v1_c03178{vertical-align:1.279488pt;}
.lsb_c03178{letter-spacing:-1.064448pt;}
.ls6_c03178{letter-spacing:-0.544896pt;}
.ls8_c03178{letter-spacing:-0.511104pt;}
.lse_c03178{letter-spacing:-0.244992pt;}
.lsc_c03178{letter-spacing:-0.232320pt;}
.ls5_c03178{letter-spacing:-0.215424pt;}
.ls3_c03178{letter-spacing:-0.105600pt;}
.ls11_c03178{letter-spacing:0.000000pt;}
.ls1_c03178{letter-spacing:0.005376pt;}
.ls4_c03178{letter-spacing:0.114048pt;}
.lsa_c03178{letter-spacing:0.451968pt;}
.ls10_c03178{letter-spacing:0.456960pt;}
.lsd_c03178{letter-spacing:0.477312pt;}
.ls9_c03178{letter-spacing:0.515328pt;}
.lsf_c03178{letter-spacing:0.528000pt;}
.ls7_c03178{letter-spacing:0.532224pt;}
.ls2_c03178{letter-spacing:0.544896pt;}
.ls0_c03178{letter-spacing:0.637824pt;}
.wsc_c03178{word-spacing:-13.445376pt;}
.wsa_c03178{word-spacing:-11.088000pt;}
.ws8_c03178{word-spacing:-11.075328pt;}
.ws9_c03178{word-spacing:-11.037312pt;}
.ws4_c03178{word-spacing:-10.344576pt;}
.ws2_c03178{word-spacing:-10.015104pt;}
.ws10_c03178{word-spacing:-0.958848pt;}
.wsd_c03178{word-spacing:-0.865920pt;}
.ws14_c03178{word-spacing:-0.639744pt;}
.wsf_c03178{word-spacing:-0.105600pt;}
.ws12_c03178{word-spacing:-0.088704pt;}
.ws13_c03178{word-spacing:-0.076032pt;}
.wse_c03178{word-spacing:0.000000pt;}
.ws11_c03178{word-spacing:0.743424pt;}
.wsb_c03178{word-spacing:29.600256pt;}
.ws6_c03178{word-spacing:32.659968pt;}
.ws1_c03178{word-spacing:33.563904pt;}
.ws0_c03178{word-spacing:33.796224pt;}
.ws3_c03178{word-spacing:34.860672pt;}
.ws5_c03178{word-spacing:35.468928pt;}
.ws7_c03178{word-spacing:37.357056pt;}
._0_c03178{margin-left:-1.731840pt;}
._2_c03178{width:1.317888pt;}
._4_c03178{width:2.935680pt;}
._1_c03178{width:44.668800pt;}
._3_c03178{width:45.805056pt;}
.fs0_c03178{font-size:42.240000pt;}
.fs1_c03178{font-size:53.760000pt;}
.y0_c03178{bottom:0.000000pt;}
.y19_c03178{bottom:130.665211pt;}
.y1b_c03178{bottom:165.866875pt;}
.y1a_c03178{bottom:174.507067pt;}
.y18_c03178{bottom:245.225371pt;}
.y17_c03178{bottom:317.225563pt;}
.y15_c03178{bottom:361.386427pt;}
.y11_c03178{bottom:377.386939pt;}
.y16_c03178{bottom:407.786011pt;}
.y14_c03178{bottom:437.226235pt;}
.y13_c03178{bottom:453.226747pt;}
.y10_c03178{bottom:482.666971pt;}
.y12_c03178{bottom:497.386555pt;}
.yf_c03178{bottom:513.387067pt;}
.y1c_c03178{bottom:546.027067pt;}
.yb_c03178{bottom:593.385179pt;}
.yd_c03178{bottom:628.586875pt;}
.yc_c03178{bottom:637.227067pt;}
.ya_c03178{bottom:707.945339pt;}
.y9_c03178{bottom:779.945531pt;}
.y7_c03178{bottom:823.786427pt;}
.y3_c03178{bottom:839.786939pt;}
.y8_c03178{bottom:870.505979pt;}
.y6_c03178{bottom:899.946203pt;}
.y5_c03178{bottom:915.946715pt;}
.y2_c03178{bottom:945.386939pt;}
.y4_c03178{bottom:959.786555pt;}
.y1_c03178{bottom:975.787067pt;}
.ye_c03178{bottom:1008.747067pt;}
.h3_c03178{height:28.916250pt;}
.h1_c03178{height:37.063125pt;}
.h2_c03178{height:37.166250pt;}
.h4_c03178{height:48.581988pt;}
.h0_c03178{height:1122.666667pt;}
.w1_c03178{width:793.333333pt;}
.w0_c03178{width:793.626667pt;}
.x0_c03178{left:0.000000pt;}
.xd_c03178{left:104.000000pt;}
.x8_c03178{left:391.999872pt;}
.x4_c03178{left:396.160512pt;}
.xb_c03178{left:400.960000pt;}
.x7_c03178{left:404.799648pt;}
.x5_c03178{left:410.560128pt;}
.x1_c03178{left:411.840000pt;}
.xa_c03178{left:429.760320pt;}
.x9_c03178{left:437.439552pt;}
.x6_c03178{left:438.400512pt;}
.xc_c03178{left:450.560320pt;}
.x3_c03178{left:455.039904pt;}
.x2_c03178{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03179 {
    display:none;
  }
  .loading-indicator_c03179.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03179 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03179 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03179" -> "#page-container .classname_c03179")
 */
.pf_c03179 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03179 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03179.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03179 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03179 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03179 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03179 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03179 {overflow:visible;}
  }
}
.c_c03179 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03179 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03179:after { /* webkit #35443 */
  content: '';
}
.t_c03179:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03179 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03179 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03179 { /* info for Javascript */
  display:none;
}
.l_c03179 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03179 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03179 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03179:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03179 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03179.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03179.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03179 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03179{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03179;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03179{font-family:ff1_c03179;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03179;src:url('chunks/assets/font_2d6ebab13e90651ba71f7833.woff2')format("woff");}.ff2_c03179{font-family:ff2_c03179;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03179;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03179{font-family:ff3_c03179;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03179{vertical-align:0.000000px;}
.v1_c03179{vertical-align:1.439424px;}
.lsb_c03179{letter-spacing:-1.197504px;}
.ls6_c03179{letter-spacing:-0.613008px;}
.ls8_c03179{letter-spacing:-0.574992px;}
.lse_c03179{letter-spacing:-0.275616px;}
.lsc_c03179{letter-spacing:-0.261360px;}
.ls5_c03179{letter-spacing:-0.242352px;}
.ls3_c03179{letter-spacing:-0.118800px;}
.ls11_c03179{letter-spacing:0.000000px;}
.ls1_c03179{letter-spacing:0.006048px;}
.ls4_c03179{letter-spacing:0.128304px;}
.lsa_c03179{letter-spacing:0.508464px;}
.ls10_c03179{letter-spacing:0.514080px;}
.lsd_c03179{letter-spacing:0.536976px;}
.ls9_c03179{letter-spacing:0.579744px;}
.lsf_c03179{letter-spacing:0.594000px;}
.ls7_c03179{letter-spacing:0.598752px;}
.ls2_c03179{letter-spacing:0.613008px;}
.ls0_c03179{letter-spacing:0.717552px;}
.sc__c03179{text-shadow:none;}
.sc0_c03179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03179{-webkit-text-stroke:0px transparent;}
.sc0_c03179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03179{word-spacing:-15.126048px;}
.wsa_c03179{word-spacing:-12.474000px;}
.ws8_c03179{word-spacing:-12.459744px;}
.ws9_c03179{word-spacing:-12.416976px;}
.ws4_c03179{word-spacing:-11.637648px;}
.ws2_c03179{word-spacing:-11.266992px;}
.ws10_c03179{word-spacing:-1.078704px;}
.wsd_c03179{word-spacing:-0.974160px;}
.ws14_c03179{word-spacing:-0.719712px;}
.wsf_c03179{word-spacing:-0.118800px;}
.ws12_c03179{word-spacing:-0.099792px;}
.ws13_c03179{word-spacing:-0.085536px;}
.wse_c03179{word-spacing:0.000000px;}
.ws11_c03179{word-spacing:0.836352px;}
.wsb_c03179{word-spacing:33.300288px;}
.ws6_c03179{word-spacing:36.742464px;}
.ws1_c03179{word-spacing:37.759392px;}
.ws0_c03179{word-spacing:38.020752px;}
.ws3_c03179{word-spacing:39.218256px;}
.ws5_c03179{word-spacing:39.902544px;}
.ws7_c03179{word-spacing:42.026688px;}
._0_c03179{margin-left:-1.948320px;}
._2_c03179{width:1.482624px;}
._4_c03179{width:3.302640px;}
._1_c03179{width:50.252400px;}
._3_c03179{width:51.530688px;}
.fc0_c03179{color:rgb(0,0,0);}
.fs0_c03179{font-size:47.520000px;}
.fs1_c03179{font-size:60.480000px;}
.y0_c03179{bottom:0.000000px;}
.y19_c03179{bottom:146.998362px;}
.y1b_c03179{bottom:186.600234px;}
.y1a_c03179{bottom:196.320450px;}
.y18_c03179{bottom:275.878542px;}
.y17_c03179{bottom:356.878758px;}
.y15_c03179{bottom:406.559730px;}
.y11_c03179{bottom:424.560306px;}
.y16_c03179{bottom:458.759262px;}
.y14_c03179{bottom:491.879514px;}
.y13_c03179{bottom:509.880090px;}
.y10_c03179{bottom:543.000342px;}
.y12_c03179{bottom:559.559874px;}
.yf_c03179{bottom:577.560450px;}
.y1c_c03179{bottom:614.280450px;}
.yb_c03179{bottom:667.558326px;}
.yd_c03179{bottom:707.160234px;}
.yc_c03179{bottom:716.880450px;}
.ya_c03179{bottom:796.438506px;}
.y9_c03179{bottom:877.438722px;}
.y7_c03179{bottom:926.759730px;}
.y3_c03179{bottom:944.760306px;}
.y8_c03179{bottom:979.319226px;}
.y6_c03179{bottom:1012.439478px;}
.y5_c03179{bottom:1030.440054px;}
.y2_c03179{bottom:1063.560306px;}
.y4_c03179{bottom:1079.759874px;}
.y1_c03179{bottom:1097.760450px;}
.ye_c03179{bottom:1134.840450px;}
.h3_c03179{height:32.530781px;}
.h1_c03179{height:41.696016px;}
.h2_c03179{height:41.812031px;}
.h4_c03179{height:54.654737px;}
.h0_c03179{height:1263.000000px;}
.w1_c03179{width:892.500000px;}
.w0_c03179{width:892.830000px;}
.x0_c03179{left:0.000000px;}
.xd_c03179{left:117.000000px;}
.x8_c03179{left:440.999856px;}
.x4_c03179{left:445.680576px;}
.xb_c03179{left:451.080000px;}
.x7_c03179{left:455.399604px;}
.x5_c03179{left:461.880144px;}
.x1_c03179{left:463.320000px;}
.xa_c03179{left:483.480360px;}
.x9_c03179{left:492.119496px;}
.x6_c03179{left:493.200576px;}
.xc_c03179{left:506.880360px;}
.x3_c03179{left:511.919892px;}
.x2_c03179{left:526.679604px;}
@media print{
.v0_c03179{vertical-align:0.000000pt;}
.v1_c03179{vertical-align:1.279488pt;}
.lsb_c03179{letter-spacing:-1.064448pt;}
.ls6_c03179{letter-spacing:-0.544896pt;}
.ls8_c03179{letter-spacing:-0.511104pt;}
.lse_c03179{letter-spacing:-0.244992pt;}
.lsc_c03179{letter-spacing:-0.232320pt;}
.ls5_c03179{letter-spacing:-0.215424pt;}
.ls3_c03179{letter-spacing:-0.105600pt;}
.ls11_c03179{letter-spacing:0.000000pt;}
.ls1_c03179{letter-spacing:0.005376pt;}
.ls4_c03179{letter-spacing:0.114048pt;}
.lsa_c03179{letter-spacing:0.451968pt;}
.ls10_c03179{letter-spacing:0.456960pt;}
.lsd_c03179{letter-spacing:0.477312pt;}
.ls9_c03179{letter-spacing:0.515328pt;}
.lsf_c03179{letter-spacing:0.528000pt;}
.ls7_c03179{letter-spacing:0.532224pt;}
.ls2_c03179{letter-spacing:0.544896pt;}
.ls0_c03179{letter-spacing:0.637824pt;}
.wsc_c03179{word-spacing:-13.445376pt;}
.wsa_c03179{word-spacing:-11.088000pt;}
.ws8_c03179{word-spacing:-11.075328pt;}
.ws9_c03179{word-spacing:-11.037312pt;}
.ws4_c03179{word-spacing:-10.344576pt;}
.ws2_c03179{word-spacing:-10.015104pt;}
.ws10_c03179{word-spacing:-0.958848pt;}
.wsd_c03179{word-spacing:-0.865920pt;}
.ws14_c03179{word-spacing:-0.639744pt;}
.wsf_c03179{word-spacing:-0.105600pt;}
.ws12_c03179{word-spacing:-0.088704pt;}
.ws13_c03179{word-spacing:-0.076032pt;}
.wse_c03179{word-spacing:0.000000pt;}
.ws11_c03179{word-spacing:0.743424pt;}
.wsb_c03179{word-spacing:29.600256pt;}
.ws6_c03179{word-spacing:32.659968pt;}
.ws1_c03179{word-spacing:33.563904pt;}
.ws0_c03179{word-spacing:33.796224pt;}
.ws3_c03179{word-spacing:34.860672pt;}
.ws5_c03179{word-spacing:35.468928pt;}
.ws7_c03179{word-spacing:37.357056pt;}
._0_c03179{margin-left:-1.731840pt;}
._2_c03179{width:1.317888pt;}
._4_c03179{width:2.935680pt;}
._1_c03179{width:44.668800pt;}
._3_c03179{width:45.805056pt;}
.fs0_c03179{font-size:42.240000pt;}
.fs1_c03179{font-size:53.760000pt;}
.y0_c03179{bottom:0.000000pt;}
.y19_c03179{bottom:130.665211pt;}
.y1b_c03179{bottom:165.866875pt;}
.y1a_c03179{bottom:174.507067pt;}
.y18_c03179{bottom:245.225371pt;}
.y17_c03179{bottom:317.225563pt;}
.y15_c03179{bottom:361.386427pt;}
.y11_c03179{bottom:377.386939pt;}
.y16_c03179{bottom:407.786011pt;}
.y14_c03179{bottom:437.226235pt;}
.y13_c03179{bottom:453.226747pt;}
.y10_c03179{bottom:482.666971pt;}
.y12_c03179{bottom:497.386555pt;}
.yf_c03179{bottom:513.387067pt;}
.y1c_c03179{bottom:546.027067pt;}
.yb_c03179{bottom:593.385179pt;}
.yd_c03179{bottom:628.586875pt;}
.yc_c03179{bottom:637.227067pt;}
.ya_c03179{bottom:707.945339pt;}
.y9_c03179{bottom:779.945531pt;}
.y7_c03179{bottom:823.786427pt;}
.y3_c03179{bottom:839.786939pt;}
.y8_c03179{bottom:870.505979pt;}
.y6_c03179{bottom:899.946203pt;}
.y5_c03179{bottom:915.946715pt;}
.y2_c03179{bottom:945.386939pt;}
.y4_c03179{bottom:959.786555pt;}
.y1_c03179{bottom:975.787067pt;}
.ye_c03179{bottom:1008.747067pt;}
.h3_c03179{height:28.916250pt;}
.h1_c03179{height:37.063125pt;}
.h2_c03179{height:37.166250pt;}
.h4_c03179{height:48.581988pt;}
.h0_c03179{height:1122.666667pt;}
.w1_c03179{width:793.333333pt;}
.w0_c03179{width:793.626667pt;}
.x0_c03179{left:0.000000pt;}
.xd_c03179{left:104.000000pt;}
.x8_c03179{left:391.999872pt;}
.x4_c03179{left:396.160512pt;}
.xb_c03179{left:400.960000pt;}
.x7_c03179{left:404.799648pt;}
.x5_c03179{left:410.560128pt;}
.x1_c03179{left:411.840000pt;}
.xa_c03179{left:429.760320pt;}
.x9_c03179{left:437.439552pt;}
.x6_c03179{left:438.400512pt;}
.xc_c03179{left:450.560320pt;}
.x3_c03179{left:455.039904pt;}
.x2_c03179{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03180 {
    display:none;
  }
  .loading-indicator_c03180.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03180 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03180 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03180" -> "#page-container .classname_c03180")
 */
.pf_c03180 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03180 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03180.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03180 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03180 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03180 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03180 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03180 {overflow:visible;}
  }
}
.c_c03180 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03180 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03180:after { /* webkit #35443 */
  content: '';
}
.t_c03180:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03180 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03180 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03180 { /* info for Javascript */
  display:none;
}
.l_c03180 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03180 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03180 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03180:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03180 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03180.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03180.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03180 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03180{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03180;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03180{font-family:ff1_c03180;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03180;src:url('chunks/assets/font_2d6ebab13e90651ba71f7833.woff2')format("woff");}.ff2_c03180{font-family:ff2_c03180;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03180;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03180{font-family:ff3_c03180;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03180{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03180{vertical-align:0.000000px;}
.v1_c03180{vertical-align:1.439424px;}
.lsb_c03180{letter-spacing:-1.197504px;}
.ls6_c03180{letter-spacing:-0.613008px;}
.ls8_c03180{letter-spacing:-0.574992px;}
.lse_c03180{letter-spacing:-0.275616px;}
.lsc_c03180{letter-spacing:-0.261360px;}
.ls5_c03180{letter-spacing:-0.242352px;}
.ls3_c03180{letter-spacing:-0.118800px;}
.ls11_c03180{letter-spacing:0.000000px;}
.ls1_c03180{letter-spacing:0.006048px;}
.ls4_c03180{letter-spacing:0.128304px;}
.lsa_c03180{letter-spacing:0.508464px;}
.ls10_c03180{letter-spacing:0.514080px;}
.lsd_c03180{letter-spacing:0.536976px;}
.ls9_c03180{letter-spacing:0.579744px;}
.lsf_c03180{letter-spacing:0.594000px;}
.ls7_c03180{letter-spacing:0.598752px;}
.ls2_c03180{letter-spacing:0.613008px;}
.ls0_c03180{letter-spacing:0.717552px;}
.sc__c03180{text-shadow:none;}
.sc0_c03180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03180{-webkit-text-stroke:0px transparent;}
.sc0_c03180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03180{word-spacing:-15.126048px;}
.wsa_c03180{word-spacing:-12.474000px;}
.ws8_c03180{word-spacing:-12.459744px;}
.ws9_c03180{word-spacing:-12.416976px;}
.ws4_c03180{word-spacing:-11.637648px;}
.ws2_c03180{word-spacing:-11.266992px;}
.ws10_c03180{word-spacing:-1.078704px;}
.wsd_c03180{word-spacing:-0.974160px;}
.ws14_c03180{word-spacing:-0.719712px;}
.wsf_c03180{word-spacing:-0.118800px;}
.ws12_c03180{word-spacing:-0.099792px;}
.ws13_c03180{word-spacing:-0.085536px;}
.wse_c03180{word-spacing:0.000000px;}
.ws11_c03180{word-spacing:0.836352px;}
.wsb_c03180{word-spacing:33.300288px;}
.ws6_c03180{word-spacing:36.742464px;}
.ws1_c03180{word-spacing:37.759392px;}
.ws0_c03180{word-spacing:38.020752px;}
.ws3_c03180{word-spacing:39.218256px;}
.ws5_c03180{word-spacing:39.902544px;}
.ws7_c03180{word-spacing:42.026688px;}
._0_c03180{margin-left:-1.948320px;}
._2_c03180{width:1.482624px;}
._4_c03180{width:3.302640px;}
._1_c03180{width:50.252400px;}
._3_c03180{width:51.530688px;}
.fc0_c03180{color:rgb(0,0,0);}
.fs0_c03180{font-size:47.520000px;}
.fs1_c03180{font-size:60.480000px;}
.y0_c03180{bottom:0.000000px;}
.y19_c03180{bottom:146.998362px;}
.y1b_c03180{bottom:186.600234px;}
.y1a_c03180{bottom:196.320450px;}
.y18_c03180{bottom:275.878542px;}
.y17_c03180{bottom:356.878758px;}
.y15_c03180{bottom:406.559730px;}
.y11_c03180{bottom:424.560306px;}
.y16_c03180{bottom:458.759262px;}
.y14_c03180{bottom:491.879514px;}
.y13_c03180{bottom:509.880090px;}
.y10_c03180{bottom:543.000342px;}
.y12_c03180{bottom:559.559874px;}
.yf_c03180{bottom:577.560450px;}
.y1c_c03180{bottom:614.280450px;}
.yb_c03180{bottom:667.558326px;}
.yd_c03180{bottom:707.160234px;}
.yc_c03180{bottom:716.880450px;}
.ya_c03180{bottom:796.438506px;}
.y9_c03180{bottom:877.438722px;}
.y7_c03180{bottom:926.759730px;}
.y3_c03180{bottom:944.760306px;}
.y8_c03180{bottom:979.319226px;}
.y6_c03180{bottom:1012.439478px;}
.y5_c03180{bottom:1030.440054px;}
.y2_c03180{bottom:1063.560306px;}
.y4_c03180{bottom:1079.759874px;}
.y1_c03180{bottom:1097.760450px;}
.ye_c03180{bottom:1134.840450px;}
.h3_c03180{height:32.530781px;}
.h1_c03180{height:41.696016px;}
.h2_c03180{height:41.812031px;}
.h4_c03180{height:54.654737px;}
.h0_c03180{height:1263.000000px;}
.w1_c03180{width:892.500000px;}
.w0_c03180{width:892.830000px;}
.x0_c03180{left:0.000000px;}
.xd_c03180{left:117.000000px;}
.x8_c03180{left:440.999856px;}
.x4_c03180{left:445.680576px;}
.xb_c03180{left:451.080000px;}
.x7_c03180{left:455.399604px;}
.x5_c03180{left:461.880144px;}
.x1_c03180{left:463.320000px;}
.xa_c03180{left:483.480360px;}
.x9_c03180{left:492.119496px;}
.x6_c03180{left:493.200576px;}
.xc_c03180{left:506.880360px;}
.x3_c03180{left:511.919892px;}
.x2_c03180{left:526.679604px;}
@media print{
.v0_c03180{vertical-align:0.000000pt;}
.v1_c03180{vertical-align:1.279488pt;}
.lsb_c03180{letter-spacing:-1.064448pt;}
.ls6_c03180{letter-spacing:-0.544896pt;}
.ls8_c03180{letter-spacing:-0.511104pt;}
.lse_c03180{letter-spacing:-0.244992pt;}
.lsc_c03180{letter-spacing:-0.232320pt;}
.ls5_c03180{letter-spacing:-0.215424pt;}
.ls3_c03180{letter-spacing:-0.105600pt;}
.ls11_c03180{letter-spacing:0.000000pt;}
.ls1_c03180{letter-spacing:0.005376pt;}
.ls4_c03180{letter-spacing:0.114048pt;}
.lsa_c03180{letter-spacing:0.451968pt;}
.ls10_c03180{letter-spacing:0.456960pt;}
.lsd_c03180{letter-spacing:0.477312pt;}
.ls9_c03180{letter-spacing:0.515328pt;}
.lsf_c03180{letter-spacing:0.528000pt;}
.ls7_c03180{letter-spacing:0.532224pt;}
.ls2_c03180{letter-spacing:0.544896pt;}
.ls0_c03180{letter-spacing:0.637824pt;}
.wsc_c03180{word-spacing:-13.445376pt;}
.wsa_c03180{word-spacing:-11.088000pt;}
.ws8_c03180{word-spacing:-11.075328pt;}
.ws9_c03180{word-spacing:-11.037312pt;}
.ws4_c03180{word-spacing:-10.344576pt;}
.ws2_c03180{word-spacing:-10.015104pt;}
.ws10_c03180{word-spacing:-0.958848pt;}
.wsd_c03180{word-spacing:-0.865920pt;}
.ws14_c03180{word-spacing:-0.639744pt;}
.wsf_c03180{word-spacing:-0.105600pt;}
.ws12_c03180{word-spacing:-0.088704pt;}
.ws13_c03180{word-spacing:-0.076032pt;}
.wse_c03180{word-spacing:0.000000pt;}
.ws11_c03180{word-spacing:0.743424pt;}
.wsb_c03180{word-spacing:29.600256pt;}
.ws6_c03180{word-spacing:32.659968pt;}
.ws1_c03180{word-spacing:33.563904pt;}
.ws0_c03180{word-spacing:33.796224pt;}
.ws3_c03180{word-spacing:34.860672pt;}
.ws5_c03180{word-spacing:35.468928pt;}
.ws7_c03180{word-spacing:37.357056pt;}
._0_c03180{margin-left:-1.731840pt;}
._2_c03180{width:1.317888pt;}
._4_c03180{width:2.935680pt;}
._1_c03180{width:44.668800pt;}
._3_c03180{width:45.805056pt;}
.fs0_c03180{font-size:42.240000pt;}
.fs1_c03180{font-size:53.760000pt;}
.y0_c03180{bottom:0.000000pt;}
.y19_c03180{bottom:130.665211pt;}
.y1b_c03180{bottom:165.866875pt;}
.y1a_c03180{bottom:174.507067pt;}
.y18_c03180{bottom:245.225371pt;}
.y17_c03180{bottom:317.225563pt;}
.y15_c03180{bottom:361.386427pt;}
.y11_c03180{bottom:377.386939pt;}
.y16_c03180{bottom:407.786011pt;}
.y14_c03180{bottom:437.226235pt;}
.y13_c03180{bottom:453.226747pt;}
.y10_c03180{bottom:482.666971pt;}
.y12_c03180{bottom:497.386555pt;}
.yf_c03180{bottom:513.387067pt;}
.y1c_c03180{bottom:546.027067pt;}
.yb_c03180{bottom:593.385179pt;}
.yd_c03180{bottom:628.586875pt;}
.yc_c03180{bottom:637.227067pt;}
.ya_c03180{bottom:707.945339pt;}
.y9_c03180{bottom:779.945531pt;}
.y7_c03180{bottom:823.786427pt;}
.y3_c03180{bottom:839.786939pt;}
.y8_c03180{bottom:870.505979pt;}
.y6_c03180{bottom:899.946203pt;}
.y5_c03180{bottom:915.946715pt;}
.y2_c03180{bottom:945.386939pt;}
.y4_c03180{bottom:959.786555pt;}
.y1_c03180{bottom:975.787067pt;}
.ye_c03180{bottom:1008.747067pt;}
.h3_c03180{height:28.916250pt;}
.h1_c03180{height:37.063125pt;}
.h2_c03180{height:37.166250pt;}
.h4_c03180{height:48.581988pt;}
.h0_c03180{height:1122.666667pt;}
.w1_c03180{width:793.333333pt;}
.w0_c03180{width:793.626667pt;}
.x0_c03180{left:0.000000pt;}
.xd_c03180{left:104.000000pt;}
.x8_c03180{left:391.999872pt;}
.x4_c03180{left:396.160512pt;}
.xb_c03180{left:400.960000pt;}
.x7_c03180{left:404.799648pt;}
.x5_c03180{left:410.560128pt;}
.x1_c03180{left:411.840000pt;}
.xa_c03180{left:429.760320pt;}
.x9_c03180{left:437.439552pt;}
.x6_c03180{left:438.400512pt;}
.xc_c03180{left:450.560320pt;}
.x3_c03180{left:455.039904pt;}
.x2_c03180{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03181 {
    display:none;
  }
  .loading-indicator_c03181.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03181 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03181 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03181" -> "#page-container .classname_c03181")
 */
.pf_c03181 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03181 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03181.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03181 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03181 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03181 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03181 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03181 {overflow:visible;}
  }
}
.c_c03181 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03181 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03181:after { /* webkit #35443 */
  content: '';
}
.t_c03181:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03181 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03181 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03181 { /* info for Javascript */
  display:none;
}
.l_c03181 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03181 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03181 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03181:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03181 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03181.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03181.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03181 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03181{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03181;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03181{font-family:ff1_c03181;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03181;src:url('chunks/assets/font_cc1630e3bed476c7bf0c8524.woff2')format("woff");}.ff2_c03181{font-family:ff2_c03181;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03181;src:url('chunks/assets/font_42a2742f5f8195f851d9d1f3.woff2')format("woff");}.ff3_c03181{font-family:ff3_c03181;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03181{vertical-align:0.000000px;}
.v1_c03181{vertical-align:1.439424px;}
.lsc_c03181{letter-spacing:-1.254528px;}
.ls13_c03181{letter-spacing:-1.197504px;}
.ls7_c03181{letter-spacing:-0.613008px;}
.ls9_c03181{letter-spacing:-0.574992px;}
.ls14_c03181{letter-spacing:-0.361152px;}
.lsf_c03181{letter-spacing:-0.275616px;}
.lsd_c03181{letter-spacing:-0.261360px;}
.ls6_c03181{letter-spacing:-0.242352px;}
.ls4_c03181{letter-spacing:-0.118800px;}
.ls12_c03181{letter-spacing:0.000000px;}
.ls1_c03181{letter-spacing:0.006048px;}
.ls5_c03181{letter-spacing:0.128304px;}
.lsb_c03181{letter-spacing:0.508464px;}
.ls11_c03181{letter-spacing:0.514080px;}
.lse_c03181{letter-spacing:0.536976px;}
.lsa_c03181{letter-spacing:0.579744px;}
.ls10_c03181{letter-spacing:0.594000px;}
.ls8_c03181{letter-spacing:0.598752px;}
.ls3_c03181{letter-spacing:0.613008px;}
.ls0_c03181{letter-spacing:0.717552px;}
.ls2_c03181{letter-spacing:0.722304px;}
.sc__c03181{text-shadow:none;}
.sc0_c03181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03181{-webkit-text-stroke:0px transparent;}
.sc0_c03181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03181{word-spacing:-15.126048px;}
.wsa_c03181{word-spacing:-12.474000px;}
.ws8_c03181{word-spacing:-12.459744px;}
.ws9_c03181{word-spacing:-12.416976px;}
.ws4_c03181{word-spacing:-11.637648px;}
.ws2_c03181{word-spacing:-11.266992px;}
.ws16_c03181{word-spacing:-1.083456px;}
.ws10_c03181{word-spacing:-1.078704px;}
.wsd_c03181{word-spacing:-0.974160px;}
.ws14_c03181{word-spacing:-0.719712px;}
.wsf_c03181{word-spacing:-0.118800px;}
.ws12_c03181{word-spacing:-0.099792px;}
.ws13_c03181{word-spacing:-0.085536px;}
.wse_c03181{word-spacing:0.000000px;}
.ws15_c03181{word-spacing:0.836352px;}
.ws11_c03181{word-spacing:0.893376px;}
.wsb_c03181{word-spacing:33.300288px;}
.ws6_c03181{word-spacing:36.742464px;}
.ws1_c03181{word-spacing:37.759392px;}
.ws0_c03181{word-spacing:38.020752px;}
.ws3_c03181{word-spacing:39.218256px;}
.ws5_c03181{word-spacing:39.902544px;}
.ws7_c03181{word-spacing:42.026688px;}
._0_c03181{margin-left:-1.948320px;}
._2_c03181{width:1.482624px;}
._5_c03181{width:2.561328px;}
._4_c03181{width:5.749920px;}
._6_c03181{width:21.445776px;}
._1_c03181{width:50.252400px;}
._3_c03181{width:51.530688px;}
.fc0_c03181{color:rgb(0,0,0);}
.fs0_c03181{font-size:47.520000px;}
.fs1_c03181{font-size:60.480000px;}
.y0_c03181{bottom:0.000000px;}
.y19_c03181{bottom:146.998362px;}
.y1b_c03181{bottom:186.600234px;}
.y1a_c03181{bottom:196.320450px;}
.y18_c03181{bottom:275.878542px;}
.y17_c03181{bottom:356.878758px;}
.y15_c03181{bottom:406.559730px;}
.y11_c03181{bottom:424.560306px;}
.y16_c03181{bottom:458.759262px;}
.y14_c03181{bottom:491.879514px;}
.y13_c03181{bottom:509.880090px;}
.y10_c03181{bottom:543.000342px;}
.y12_c03181{bottom:559.559874px;}
.yf_c03181{bottom:577.560450px;}
.y1c_c03181{bottom:614.280450px;}
.yb_c03181{bottom:667.558326px;}
.yd_c03181{bottom:707.160234px;}
.yc_c03181{bottom:716.880450px;}
.ya_c03181{bottom:796.438506px;}
.y9_c03181{bottom:877.438722px;}
.y7_c03181{bottom:926.759730px;}
.y3_c03181{bottom:944.760306px;}
.y8_c03181{bottom:979.319226px;}
.y6_c03181{bottom:1012.439478px;}
.y5_c03181{bottom:1030.440054px;}
.y2_c03181{bottom:1063.560306px;}
.y4_c03181{bottom:1079.759874px;}
.y1_c03181{bottom:1097.760450px;}
.ye_c03181{bottom:1134.840450px;}
.h3_c03181{height:32.530781px;}
.h1_c03181{height:41.696016px;}
.h2_c03181{height:41.812031px;}
.h4_c03181{height:54.654737px;}
.h0_c03181{height:1263.000000px;}
.w1_c03181{width:892.500000px;}
.w0_c03181{width:892.830000px;}
.x0_c03181{left:0.000000px;}
.xd_c03181{left:117.000000px;}
.x8_c03181{left:440.999856px;}
.x4_c03181{left:445.680576px;}
.xb_c03181{left:451.080000px;}
.x7_c03181{left:455.399604px;}
.x5_c03181{left:461.880144px;}
.x1_c03181{left:463.320000px;}
.xa_c03181{left:483.480360px;}
.x9_c03181{left:492.119496px;}
.x6_c03181{left:493.200576px;}
.xc_c03181{left:506.880360px;}
.x3_c03181{left:511.919892px;}
.x2_c03181{left:526.679604px;}
@media print{
.v0_c03181{vertical-align:0.000000pt;}
.v1_c03181{vertical-align:1.279488pt;}
.lsc_c03181{letter-spacing:-1.115136pt;}
.ls13_c03181{letter-spacing:-1.064448pt;}
.ls7_c03181{letter-spacing:-0.544896pt;}
.ls9_c03181{letter-spacing:-0.511104pt;}
.ls14_c03181{letter-spacing:-0.321024pt;}
.lsf_c03181{letter-spacing:-0.244992pt;}
.lsd_c03181{letter-spacing:-0.232320pt;}
.ls6_c03181{letter-spacing:-0.215424pt;}
.ls4_c03181{letter-spacing:-0.105600pt;}
.ls12_c03181{letter-spacing:0.000000pt;}
.ls1_c03181{letter-spacing:0.005376pt;}
.ls5_c03181{letter-spacing:0.114048pt;}
.lsb_c03181{letter-spacing:0.451968pt;}
.ls11_c03181{letter-spacing:0.456960pt;}
.lse_c03181{letter-spacing:0.477312pt;}
.lsa_c03181{letter-spacing:0.515328pt;}
.ls10_c03181{letter-spacing:0.528000pt;}
.ls8_c03181{letter-spacing:0.532224pt;}
.ls3_c03181{letter-spacing:0.544896pt;}
.ls0_c03181{letter-spacing:0.637824pt;}
.ls2_c03181{letter-spacing:0.642048pt;}
.wsc_c03181{word-spacing:-13.445376pt;}
.wsa_c03181{word-spacing:-11.088000pt;}
.ws8_c03181{word-spacing:-11.075328pt;}
.ws9_c03181{word-spacing:-11.037312pt;}
.ws4_c03181{word-spacing:-10.344576pt;}
.ws2_c03181{word-spacing:-10.015104pt;}
.ws16_c03181{word-spacing:-0.963072pt;}
.ws10_c03181{word-spacing:-0.958848pt;}
.wsd_c03181{word-spacing:-0.865920pt;}
.ws14_c03181{word-spacing:-0.639744pt;}
.wsf_c03181{word-spacing:-0.105600pt;}
.ws12_c03181{word-spacing:-0.088704pt;}
.ws13_c03181{word-spacing:-0.076032pt;}
.wse_c03181{word-spacing:0.000000pt;}
.ws15_c03181{word-spacing:0.743424pt;}
.ws11_c03181{word-spacing:0.794112pt;}
.wsb_c03181{word-spacing:29.600256pt;}
.ws6_c03181{word-spacing:32.659968pt;}
.ws1_c03181{word-spacing:33.563904pt;}
.ws0_c03181{word-spacing:33.796224pt;}
.ws3_c03181{word-spacing:34.860672pt;}
.ws5_c03181{word-spacing:35.468928pt;}
.ws7_c03181{word-spacing:37.357056pt;}
._0_c03181{margin-left:-1.731840pt;}
._2_c03181{width:1.317888pt;}
._5_c03181{width:2.276736pt;}
._4_c03181{width:5.111040pt;}
._6_c03181{width:19.062912pt;}
._1_c03181{width:44.668800pt;}
._3_c03181{width:45.805056pt;}
.fs0_c03181{font-size:42.240000pt;}
.fs1_c03181{font-size:53.760000pt;}
.y0_c03181{bottom:0.000000pt;}
.y19_c03181{bottom:130.665211pt;}
.y1b_c03181{bottom:165.866875pt;}
.y1a_c03181{bottom:174.507067pt;}
.y18_c03181{bottom:245.225371pt;}
.y17_c03181{bottom:317.225563pt;}
.y15_c03181{bottom:361.386427pt;}
.y11_c03181{bottom:377.386939pt;}
.y16_c03181{bottom:407.786011pt;}
.y14_c03181{bottom:437.226235pt;}
.y13_c03181{bottom:453.226747pt;}
.y10_c03181{bottom:482.666971pt;}
.y12_c03181{bottom:497.386555pt;}
.yf_c03181{bottom:513.387067pt;}
.y1c_c03181{bottom:546.027067pt;}
.yb_c03181{bottom:593.385179pt;}
.yd_c03181{bottom:628.586875pt;}
.yc_c03181{bottom:637.227067pt;}
.ya_c03181{bottom:707.945339pt;}
.y9_c03181{bottom:779.945531pt;}
.y7_c03181{bottom:823.786427pt;}
.y3_c03181{bottom:839.786939pt;}
.y8_c03181{bottom:870.505979pt;}
.y6_c03181{bottom:899.946203pt;}
.y5_c03181{bottom:915.946715pt;}
.y2_c03181{bottom:945.386939pt;}
.y4_c03181{bottom:959.786555pt;}
.y1_c03181{bottom:975.787067pt;}
.ye_c03181{bottom:1008.747067pt;}
.h3_c03181{height:28.916250pt;}
.h1_c03181{height:37.063125pt;}
.h2_c03181{height:37.166250pt;}
.h4_c03181{height:48.581988pt;}
.h0_c03181{height:1122.666667pt;}
.w1_c03181{width:793.333333pt;}
.w0_c03181{width:793.626667pt;}
.x0_c03181{left:0.000000pt;}
.xd_c03181{left:104.000000pt;}
.x8_c03181{left:391.999872pt;}
.x4_c03181{left:396.160512pt;}
.xb_c03181{left:400.960000pt;}
.x7_c03181{left:404.799648pt;}
.x5_c03181{left:410.560128pt;}
.x1_c03181{left:411.840000pt;}
.xa_c03181{left:429.760320pt;}
.x9_c03181{left:437.439552pt;}
.x6_c03181{left:438.400512pt;}
.xc_c03181{left:450.560320pt;}
.x3_c03181{left:455.039904pt;}
.x2_c03181{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03182 {
    display:none;
  }
  .loading-indicator_c03182.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03182 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03182 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03182" -> "#page-container .classname_c03182")
 */
.pf_c03182 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03182 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03182.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03182 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03182 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03182 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03182 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03182 {overflow:visible;}
  }
}
.c_c03182 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03182 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03182:after { /* webkit #35443 */
  content: '';
}
.t_c03182:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03182 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03182 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03182 { /* info for Javascript */
  display:none;
}
.l_c03182 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03182 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03182 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03182:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03182 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03182.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03182.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03182 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03182{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03182;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03182{font-family:ff1_c03182;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03182;src:url('chunks/assets/font_bc231ae97106f4ceb02d78a2.woff2')format("woff");}.ff2_c03182{font-family:ff2_c03182;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03182;src:url('chunks/assets/font_42a2742f5f8195f851d9d1f3.woff2')format("woff");}.ff3_c03182{font-family:ff3_c03182;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03182{vertical-align:0.000000px;}
.v1_c03182{vertical-align:1.439424px;}
.lsc_c03182{letter-spacing:-1.197504px;}
.ls7_c03182{letter-spacing:-0.613008px;}
.ls9_c03182{letter-spacing:-0.574992px;}
.lse_c03182{letter-spacing:-0.361152px;}
.ls11_c03182{letter-spacing:-0.275616px;}
.lsd_c03182{letter-spacing:-0.261360px;}
.ls6_c03182{letter-spacing:-0.242352px;}
.ls4_c03182{letter-spacing:-0.118800px;}
.lsf_c03182{letter-spacing:-0.047520px;}
.ls14_c03182{letter-spacing:0.000000px;}
.ls1_c03182{letter-spacing:0.006048px;}
.ls5_c03182{letter-spacing:0.128304px;}
.lsb_c03182{letter-spacing:0.508464px;}
.ls13_c03182{letter-spacing:0.514080px;}
.ls10_c03182{letter-spacing:0.536976px;}
.lsa_c03182{letter-spacing:0.579744px;}
.ls12_c03182{letter-spacing:0.594000px;}
.ls8_c03182{letter-spacing:0.598752px;}
.ls3_c03182{letter-spacing:0.613008px;}
.ls0_c03182{letter-spacing:0.717552px;}
.ls2_c03182{letter-spacing:0.722304px;}
.sc__c03182{text-shadow:none;}
.sc0_c03182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03182{-webkit-text-stroke:0px transparent;}
.sc0_c03182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03182{word-spacing:-15.126048px;}
.wsc_c03182{word-spacing:-12.474000px;}
.ws6_c03182{word-spacing:-12.459744px;}
.wsb_c03182{word-spacing:-12.416976px;}
.ws4_c03182{word-spacing:-11.637648px;}
.ws2_c03182{word-spacing:-11.266992px;}
.ws18_c03182{word-spacing:-1.083456px;}
.ws12_c03182{word-spacing:-1.078704px;}
.wsf_c03182{word-spacing:-0.974160px;}
.ws17_c03182{word-spacing:-0.719712px;}
.ws15_c03182{word-spacing:-0.313632px;}
.ws11_c03182{word-spacing:-0.118800px;}
.ws14_c03182{word-spacing:-0.099792px;}
.ws16_c03182{word-spacing:-0.085536px;}
.ws10_c03182{word-spacing:0.000000px;}
.ws13_c03182{word-spacing:0.836352px;}
.wsd_c03182{word-spacing:33.300288px;}
.ws1_c03182{word-spacing:37.759392px;}
.ws0_c03182{word-spacing:38.020752px;}
.ws3_c03182{word-spacing:39.218256px;}
.ws5_c03182{word-spacing:39.902544px;}
.ws7_c03182{word-spacing:42.026688px;}
.wsa_c03182{word-spacing:48.232800px;}
.ws9_c03182{word-spacing:53.284176px;}
.ws8_c03182{word-spacing:56.396736px;}
._0_c03182{margin-left:-1.948320px;}
._2_c03182{width:1.482624px;}
._5_c03182{width:2.770416px;}
._4_c03182{width:5.749920px;}
._8_c03182{width:21.445776px;}
._1_c03182{width:50.252400px;}
._3_c03182{width:51.530688px;}
._7_c03182{width:64.175760px;}
._6_c03182{width:68.124672px;}
.fc0_c03182{color:rgb(0,0,0);}
.fs0_c03182{font-size:47.520000px;}
.fs1_c03182{font-size:60.480000px;}
.y0_c03182{bottom:0.000000px;}
.y1a_c03182{bottom:146.998362px;}
.y1c_c03182{bottom:186.600234px;}
.y1b_c03182{bottom:196.320450px;}
.y19_c03182{bottom:275.878542px;}
.y18_c03182{bottom:356.878758px;}
.y16_c03182{bottom:406.559730px;}
.y12_c03182{bottom:424.560306px;}
.y17_c03182{bottom:458.759262px;}
.y15_c03182{bottom:491.879514px;}
.y14_c03182{bottom:509.880090px;}
.y11_c03182{bottom:543.000342px;}
.y13_c03182{bottom:559.559874px;}
.y10_c03182{bottom:577.560450px;}
.y1d_c03182{bottom:614.280450px;}
.yc_c03182{bottom:667.558326px;}
.ye_c03182{bottom:707.160234px;}
.yd_c03182{bottom:716.880450px;}
.yb_c03182{bottom:781.318830px;}
.ya_c03182{bottom:796.438506px;}
.y9_c03182{bottom:877.438722px;}
.y7_c03182{bottom:926.759730px;}
.y3_c03182{bottom:944.760306px;}
.y8_c03182{bottom:979.319226px;}
.y6_c03182{bottom:1012.439478px;}
.y5_c03182{bottom:1030.440054px;}
.y2_c03182{bottom:1063.560306px;}
.y4_c03182{bottom:1079.759874px;}
.y1_c03182{bottom:1097.760450px;}
.yf_c03182{bottom:1134.840450px;}
.h3_c03182{height:32.530781px;}
.h1_c03182{height:41.696016px;}
.h2_c03182{height:41.812031px;}
.h4_c03182{height:54.654737px;}
.h0_c03182{height:1263.000000px;}
.w1_c03182{width:892.500000px;}
.w0_c03182{width:892.830000px;}
.x0_c03182{left:0.000000px;}
.xe_c03182{left:117.000000px;}
.x8_c03182{left:440.999856px;}
.x4_c03182{left:445.680576px;}
.xc_c03182{left:451.080000px;}
.x7_c03182{left:455.399604px;}
.x5_c03182{left:461.880144px;}
.x1_c03182{left:463.320000px;}
.xb_c03182{left:483.480360px;}
.x9_c03182{left:492.119496px;}
.x6_c03182{left:493.200576px;}
.xd_c03182{left:506.880360px;}
.x3_c03182{left:511.919892px;}
.x2_c03182{left:526.679604px;}
.xa_c03182{left:569.880036px;}
@media print{
.v0_c03182{vertical-align:0.000000pt;}
.v1_c03182{vertical-align:1.279488pt;}
.lsc_c03182{letter-spacing:-1.064448pt;}
.ls7_c03182{letter-spacing:-0.544896pt;}
.ls9_c03182{letter-spacing:-0.511104pt;}
.lse_c03182{letter-spacing:-0.321024pt;}
.ls11_c03182{letter-spacing:-0.244992pt;}
.lsd_c03182{letter-spacing:-0.232320pt;}
.ls6_c03182{letter-spacing:-0.215424pt;}
.ls4_c03182{letter-spacing:-0.105600pt;}
.lsf_c03182{letter-spacing:-0.042240pt;}
.ls14_c03182{letter-spacing:0.000000pt;}
.ls1_c03182{letter-spacing:0.005376pt;}
.ls5_c03182{letter-spacing:0.114048pt;}
.lsb_c03182{letter-spacing:0.451968pt;}
.ls13_c03182{letter-spacing:0.456960pt;}
.ls10_c03182{letter-spacing:0.477312pt;}
.lsa_c03182{letter-spacing:0.515328pt;}
.ls12_c03182{letter-spacing:0.528000pt;}
.ls8_c03182{letter-spacing:0.532224pt;}
.ls3_c03182{letter-spacing:0.544896pt;}
.ls0_c03182{letter-spacing:0.637824pt;}
.ls2_c03182{letter-spacing:0.642048pt;}
.wse_c03182{word-spacing:-13.445376pt;}
.wsc_c03182{word-spacing:-11.088000pt;}
.ws6_c03182{word-spacing:-11.075328pt;}
.wsb_c03182{word-spacing:-11.037312pt;}
.ws4_c03182{word-spacing:-10.344576pt;}
.ws2_c03182{word-spacing:-10.015104pt;}
.ws18_c03182{word-spacing:-0.963072pt;}
.ws12_c03182{word-spacing:-0.958848pt;}
.wsf_c03182{word-spacing:-0.865920pt;}
.ws17_c03182{word-spacing:-0.639744pt;}
.ws15_c03182{word-spacing:-0.278784pt;}
.ws11_c03182{word-spacing:-0.105600pt;}
.ws14_c03182{word-spacing:-0.088704pt;}
.ws16_c03182{word-spacing:-0.076032pt;}
.ws10_c03182{word-spacing:0.000000pt;}
.ws13_c03182{word-spacing:0.743424pt;}
.wsd_c03182{word-spacing:29.600256pt;}
.ws1_c03182{word-spacing:33.563904pt;}
.ws0_c03182{word-spacing:33.796224pt;}
.ws3_c03182{word-spacing:34.860672pt;}
.ws5_c03182{word-spacing:35.468928pt;}
.ws7_c03182{word-spacing:37.357056pt;}
.wsa_c03182{word-spacing:42.873600pt;}
.ws9_c03182{word-spacing:47.363712pt;}
.ws8_c03182{word-spacing:50.130432pt;}
._0_c03182{margin-left:-1.731840pt;}
._2_c03182{width:1.317888pt;}
._5_c03182{width:2.462592pt;}
._4_c03182{width:5.111040pt;}
._8_c03182{width:19.062912pt;}
._1_c03182{width:44.668800pt;}
._3_c03182{width:45.805056pt;}
._7_c03182{width:57.045120pt;}
._6_c03182{width:60.555264pt;}
.fs0_c03182{font-size:42.240000pt;}
.fs1_c03182{font-size:53.760000pt;}
.y0_c03182{bottom:0.000000pt;}
.y1a_c03182{bottom:130.665211pt;}
.y1c_c03182{bottom:165.866875pt;}
.y1b_c03182{bottom:174.507067pt;}
.y19_c03182{bottom:245.225371pt;}
.y18_c03182{bottom:317.225563pt;}
.y16_c03182{bottom:361.386427pt;}
.y12_c03182{bottom:377.386939pt;}
.y17_c03182{bottom:407.786011pt;}
.y15_c03182{bottom:437.226235pt;}
.y14_c03182{bottom:453.226747pt;}
.y11_c03182{bottom:482.666971pt;}
.y13_c03182{bottom:497.386555pt;}
.y10_c03182{bottom:513.387067pt;}
.y1d_c03182{bottom:546.027067pt;}
.yc_c03182{bottom:593.385179pt;}
.ye_c03182{bottom:628.586875pt;}
.yd_c03182{bottom:637.227067pt;}
.yb_c03182{bottom:694.505627pt;}
.ya_c03182{bottom:707.945339pt;}
.y9_c03182{bottom:779.945531pt;}
.y7_c03182{bottom:823.786427pt;}
.y3_c03182{bottom:839.786939pt;}
.y8_c03182{bottom:870.505979pt;}
.y6_c03182{bottom:899.946203pt;}
.y5_c03182{bottom:915.946715pt;}
.y2_c03182{bottom:945.386939pt;}
.y4_c03182{bottom:959.786555pt;}
.y1_c03182{bottom:975.787067pt;}
.yf_c03182{bottom:1008.747067pt;}
.h3_c03182{height:28.916250pt;}
.h1_c03182{height:37.063125pt;}
.h2_c03182{height:37.166250pt;}
.h4_c03182{height:48.581988pt;}
.h0_c03182{height:1122.666667pt;}
.w1_c03182{width:793.333333pt;}
.w0_c03182{width:793.626667pt;}
.x0_c03182{left:0.000000pt;}
.xe_c03182{left:104.000000pt;}
.x8_c03182{left:391.999872pt;}
.x4_c03182{left:396.160512pt;}
.xc_c03182{left:400.960000pt;}
.x7_c03182{left:404.799648pt;}
.x5_c03182{left:410.560128pt;}
.x1_c03182{left:411.840000pt;}
.xb_c03182{left:429.760320pt;}
.x9_c03182{left:437.439552pt;}
.x6_c03182{left:438.400512pt;}
.xd_c03182{left:450.560320pt;}
.x3_c03182{left:455.039904pt;}
.x2_c03182{left:468.159648pt;}
.xa_c03182{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03183 {
    display:none;
  }
  .loading-indicator_c03183.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03183 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03183 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03183" -> "#page-container .classname_c03183")
 */
.pf_c03183 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03183 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03183.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03183 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03183 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03183 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03183 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03183 {overflow:visible;}
  }
}
.c_c03183 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03183 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03183:after { /* webkit #35443 */
  content: '';
}
.t_c03183:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03183 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03183 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03183 { /* info for Javascript */
  display:none;
}
.l_c03183 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03183 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03183 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03183:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03183 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03183.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03183.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03183 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03183;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03183{font-family:ff1_c03183;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03183;src:url('chunks/assets/font_84022de5b4c2c33701443961.woff2')format("woff");}.ff2_c03183{font-family:ff2_c03183;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03183;src:url('chunks/assets/font_42a2742f5f8195f851d9d1f3.woff2')format("woff");}.ff3_c03183{font-family:ff3_c03183;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03183{vertical-align:0.000000px;}
.v1_c03183{vertical-align:1.439424px;}
.lsc_c03183{letter-spacing:-1.197504px;}
.ls7_c03183{letter-spacing:-0.613008px;}
.ls9_c03183{letter-spacing:-0.574992px;}
.lse_c03183{letter-spacing:-0.361152px;}
.ls10_c03183{letter-spacing:-0.275616px;}
.lsd_c03183{letter-spacing:-0.261360px;}
.ls6_c03183{letter-spacing:-0.242352px;}
.ls4_c03183{letter-spacing:-0.118800px;}
.ls13_c03183{letter-spacing:0.000000px;}
.ls2_c03183{letter-spacing:0.006048px;}
.ls5_c03183{letter-spacing:0.128304px;}
.lsb_c03183{letter-spacing:0.508464px;}
.ls12_c03183{letter-spacing:0.514080px;}
.lsf_c03183{letter-spacing:0.536976px;}
.lsa_c03183{letter-spacing:0.579744px;}
.ls11_c03183{letter-spacing:0.594000px;}
.ls8_c03183{letter-spacing:0.598752px;}
.ls3_c03183{letter-spacing:0.613008px;}
.ls0_c03183{letter-spacing:0.717552px;}
.ls1_c03183{letter-spacing:0.722304px;}
.sc__c03183{text-shadow:none;}
.sc0_c03183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03183{-webkit-text-stroke:0px transparent;}
.sc0_c03183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03183{word-spacing:-15.126048px;}
.ws9_c03183{word-spacing:-12.474000px;}
.ws6_c03183{word-spacing:-12.459744px;}
.ws8_c03183{word-spacing:-12.416976px;}
.ws4_c03183{word-spacing:-11.637648px;}
.ws2_c03183{word-spacing:-11.266992px;}
.ws13_c03183{word-spacing:-1.083456px;}
.ws10_c03183{word-spacing:-1.078704px;}
.wsd_c03183{word-spacing:-0.974160px;}
.ws15_c03183{word-spacing:-0.719712px;}
.wsf_c03183{word-spacing:-0.118800px;}
.ws12_c03183{word-spacing:-0.099792px;}
.ws14_c03183{word-spacing:-0.085536px;}
.wse_c03183{word-spacing:0.000000px;}
.ws11_c03183{word-spacing:0.836352px;}
.wsa_c03183{word-spacing:33.300288px;}
.wsc_c03183{word-spacing:36.742464px;}
.ws1_c03183{word-spacing:37.759392px;}
.ws0_c03183{word-spacing:38.020752px;}
.ws3_c03183{word-spacing:39.218256px;}
.ws5_c03183{word-spacing:39.902544px;}
.ws7_c03183{word-spacing:42.026688px;}
._0_c03183{margin-left:-1.948320px;}
._2_c03183{width:1.482624px;}
._5_c03183{width:2.770416px;}
._4_c03183{width:5.749920px;}
._6_c03183{width:21.445776px;}
._1_c03183{width:50.252400px;}
._3_c03183{width:51.530688px;}
.fc0_c03183{color:rgb(0,0,0);}
.fs0_c03183{font-size:47.520000px;}
.fs1_c03183{font-size:60.480000px;}
.y0_c03183{bottom:0.000000px;}
.y19_c03183{bottom:146.998362px;}
.y1b_c03183{bottom:186.600234px;}
.y1a_c03183{bottom:196.320450px;}
.y18_c03183{bottom:275.878542px;}
.y17_c03183{bottom:356.878758px;}
.y15_c03183{bottom:406.559730px;}
.y11_c03183{bottom:424.560306px;}
.y16_c03183{bottom:458.759262px;}
.y14_c03183{bottom:491.879514px;}
.y13_c03183{bottom:509.880090px;}
.y10_c03183{bottom:543.000342px;}
.y12_c03183{bottom:559.559874px;}
.yf_c03183{bottom:577.560450px;}
.y1c_c03183{bottom:614.280450px;}
.yb_c03183{bottom:667.558326px;}
.yd_c03183{bottom:707.160234px;}
.yc_c03183{bottom:716.880450px;}
.ya_c03183{bottom:796.438506px;}
.y9_c03183{bottom:877.438722px;}
.y7_c03183{bottom:926.759730px;}
.y3_c03183{bottom:944.760306px;}
.y8_c03183{bottom:979.319226px;}
.y6_c03183{bottom:1012.439478px;}
.y5_c03183{bottom:1030.440054px;}
.y2_c03183{bottom:1063.560306px;}
.y4_c03183{bottom:1079.759874px;}
.y1_c03183{bottom:1097.760450px;}
.ye_c03183{bottom:1134.840450px;}
.h3_c03183{height:32.530781px;}
.h1_c03183{height:41.696016px;}
.h2_c03183{height:41.812031px;}
.h4_c03183{height:54.654737px;}
.h0_c03183{height:1263.000000px;}
.w1_c03183{width:892.500000px;}
.w0_c03183{width:892.830000px;}
.x0_c03183{left:0.000000px;}
.xd_c03183{left:117.000000px;}
.x8_c03183{left:440.999856px;}
.x4_c03183{left:445.680576px;}
.xb_c03183{left:451.080000px;}
.x7_c03183{left:455.399604px;}
.x5_c03183{left:461.880144px;}
.x1_c03183{left:463.320000px;}
.xa_c03183{left:483.480360px;}
.x9_c03183{left:492.119496px;}
.x6_c03183{left:493.200576px;}
.xc_c03183{left:506.880360px;}
.x3_c03183{left:511.919892px;}
.x2_c03183{left:526.679604px;}
@media print{
.v0_c03183{vertical-align:0.000000pt;}
.v1_c03183{vertical-align:1.279488pt;}
.lsc_c03183{letter-spacing:-1.064448pt;}
.ls7_c03183{letter-spacing:-0.544896pt;}
.ls9_c03183{letter-spacing:-0.511104pt;}
.lse_c03183{letter-spacing:-0.321024pt;}
.ls10_c03183{letter-spacing:-0.244992pt;}
.lsd_c03183{letter-spacing:-0.232320pt;}
.ls6_c03183{letter-spacing:-0.215424pt;}
.ls4_c03183{letter-spacing:-0.105600pt;}
.ls13_c03183{letter-spacing:0.000000pt;}
.ls2_c03183{letter-spacing:0.005376pt;}
.ls5_c03183{letter-spacing:0.114048pt;}
.lsb_c03183{letter-spacing:0.451968pt;}
.ls12_c03183{letter-spacing:0.456960pt;}
.lsf_c03183{letter-spacing:0.477312pt;}
.lsa_c03183{letter-spacing:0.515328pt;}
.ls11_c03183{letter-spacing:0.528000pt;}
.ls8_c03183{letter-spacing:0.532224pt;}
.ls3_c03183{letter-spacing:0.544896pt;}
.ls0_c03183{letter-spacing:0.637824pt;}
.ls1_c03183{letter-spacing:0.642048pt;}
.wsb_c03183{word-spacing:-13.445376pt;}
.ws9_c03183{word-spacing:-11.088000pt;}
.ws6_c03183{word-spacing:-11.075328pt;}
.ws8_c03183{word-spacing:-11.037312pt;}
.ws4_c03183{word-spacing:-10.344576pt;}
.ws2_c03183{word-spacing:-10.015104pt;}
.ws13_c03183{word-spacing:-0.963072pt;}
.ws10_c03183{word-spacing:-0.958848pt;}
.wsd_c03183{word-spacing:-0.865920pt;}
.ws15_c03183{word-spacing:-0.639744pt;}
.wsf_c03183{word-spacing:-0.105600pt;}
.ws12_c03183{word-spacing:-0.088704pt;}
.ws14_c03183{word-spacing:-0.076032pt;}
.wse_c03183{word-spacing:0.000000pt;}
.ws11_c03183{word-spacing:0.743424pt;}
.wsa_c03183{word-spacing:29.600256pt;}
.wsc_c03183{word-spacing:32.659968pt;}
.ws1_c03183{word-spacing:33.563904pt;}
.ws0_c03183{word-spacing:33.796224pt;}
.ws3_c03183{word-spacing:34.860672pt;}
.ws5_c03183{word-spacing:35.468928pt;}
.ws7_c03183{word-spacing:37.357056pt;}
._0_c03183{margin-left:-1.731840pt;}
._2_c03183{width:1.317888pt;}
._5_c03183{width:2.462592pt;}
._4_c03183{width:5.111040pt;}
._6_c03183{width:19.062912pt;}
._1_c03183{width:44.668800pt;}
._3_c03183{width:45.805056pt;}
.fs0_c03183{font-size:42.240000pt;}
.fs1_c03183{font-size:53.760000pt;}
.y0_c03183{bottom:0.000000pt;}
.y19_c03183{bottom:130.665211pt;}
.y1b_c03183{bottom:165.866875pt;}
.y1a_c03183{bottom:174.507067pt;}
.y18_c03183{bottom:245.225371pt;}
.y17_c03183{bottom:317.225563pt;}
.y15_c03183{bottom:361.386427pt;}
.y11_c03183{bottom:377.386939pt;}
.y16_c03183{bottom:407.786011pt;}
.y14_c03183{bottom:437.226235pt;}
.y13_c03183{bottom:453.226747pt;}
.y10_c03183{bottom:482.666971pt;}
.y12_c03183{bottom:497.386555pt;}
.yf_c03183{bottom:513.387067pt;}
.y1c_c03183{bottom:546.027067pt;}
.yb_c03183{bottom:593.385179pt;}
.yd_c03183{bottom:628.586875pt;}
.yc_c03183{bottom:637.227067pt;}
.ya_c03183{bottom:707.945339pt;}
.y9_c03183{bottom:779.945531pt;}
.y7_c03183{bottom:823.786427pt;}
.y3_c03183{bottom:839.786939pt;}
.y8_c03183{bottom:870.505979pt;}
.y6_c03183{bottom:899.946203pt;}
.y5_c03183{bottom:915.946715pt;}
.y2_c03183{bottom:945.386939pt;}
.y4_c03183{bottom:959.786555pt;}
.y1_c03183{bottom:975.787067pt;}
.ye_c03183{bottom:1008.747067pt;}
.h3_c03183{height:28.916250pt;}
.h1_c03183{height:37.063125pt;}
.h2_c03183{height:37.166250pt;}
.h4_c03183{height:48.581988pt;}
.h0_c03183{height:1122.666667pt;}
.w1_c03183{width:793.333333pt;}
.w0_c03183{width:793.626667pt;}
.x0_c03183{left:0.000000pt;}
.xd_c03183{left:104.000000pt;}
.x8_c03183{left:391.999872pt;}
.x4_c03183{left:396.160512pt;}
.xb_c03183{left:400.960000pt;}
.x7_c03183{left:404.799648pt;}
.x5_c03183{left:410.560128pt;}
.x1_c03183{left:411.840000pt;}
.xa_c03183{left:429.760320pt;}
.x9_c03183{left:437.439552pt;}
.x6_c03183{left:438.400512pt;}
.xc_c03183{left:450.560320pt;}
.x3_c03183{left:455.039904pt;}
.x2_c03183{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03184 {
    display:none;
  }
  .loading-indicator_c03184.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03184 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03184 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03184" -> "#page-container .classname_c03184")
 */
.pf_c03184 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03184 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03184.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03184 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03184 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03184 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03184 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03184 {overflow:visible;}
  }
}
.c_c03184 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03184 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03184:after { /* webkit #35443 */
  content: '';
}
.t_c03184:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03184 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03184 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03184 { /* info for Javascript */
  display:none;
}
.l_c03184 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03184 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03184 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03184:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03184 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03184.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03184.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03184 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03184;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03184{font-family:ff1_c03184;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03184;src:url('chunks/assets/font_fcf599db9b59f62cfc138fe3.woff2')format("woff");}.ff2_c03184{font-family:ff2_c03184;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03184;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03184{font-family:ff3_c03184;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03184{vertical-align:0.000000px;}
.v1_c03184{vertical-align:1.439424px;}
.lsb_c03184{letter-spacing:-1.197504px;}
.ls6_c03184{letter-spacing:-0.613008px;}
.ls8_c03184{letter-spacing:-0.574992px;}
.lse_c03184{letter-spacing:-0.275616px;}
.lsc_c03184{letter-spacing:-0.261360px;}
.ls5_c03184{letter-spacing:-0.242352px;}
.ls3_c03184{letter-spacing:-0.118800px;}
.ls11_c03184{letter-spacing:0.000000px;}
.ls1_c03184{letter-spacing:0.006048px;}
.ls4_c03184{letter-spacing:0.128304px;}
.lsa_c03184{letter-spacing:0.508464px;}
.ls10_c03184{letter-spacing:0.514080px;}
.lsd_c03184{letter-spacing:0.536976px;}
.ls9_c03184{letter-spacing:0.579744px;}
.lsf_c03184{letter-spacing:0.594000px;}
.ls7_c03184{letter-spacing:0.598752px;}
.ls2_c03184{letter-spacing:0.613008px;}
.ls0_c03184{letter-spacing:0.717552px;}
.sc__c03184{text-shadow:none;}
.sc0_c03184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03184{-webkit-text-stroke:0px transparent;}
.sc0_c03184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03184{word-spacing:-15.126048px;}
.wsa_c03184{word-spacing:-12.474000px;}
.ws8_c03184{word-spacing:-12.459744px;}
.ws9_c03184{word-spacing:-12.416976px;}
.ws4_c03184{word-spacing:-11.637648px;}
.ws2_c03184{word-spacing:-11.266992px;}
.ws10_c03184{word-spacing:-1.078704px;}
.wsd_c03184{word-spacing:-0.974160px;}
.ws14_c03184{word-spacing:-0.719712px;}
.wsf_c03184{word-spacing:-0.118800px;}
.ws12_c03184{word-spacing:-0.099792px;}
.ws13_c03184{word-spacing:-0.085536px;}
.wse_c03184{word-spacing:0.000000px;}
.ws11_c03184{word-spacing:0.836352px;}
.wsb_c03184{word-spacing:33.300288px;}
.ws6_c03184{word-spacing:36.742464px;}
.ws1_c03184{word-spacing:37.759392px;}
.ws0_c03184{word-spacing:38.020752px;}
.ws3_c03184{word-spacing:39.218256px;}
.ws5_c03184{word-spacing:39.902544px;}
.ws7_c03184{word-spacing:42.026688px;}
._0_c03184{margin-left:-1.948320px;}
._2_c03184{width:1.482624px;}
._4_c03184{width:3.302640px;}
._1_c03184{width:50.252400px;}
._3_c03184{width:51.530688px;}
.fc0_c03184{color:rgb(0,0,0);}
.fs0_c03184{font-size:47.520000px;}
.fs1_c03184{font-size:60.480000px;}
.y0_c03184{bottom:0.000000px;}
.y19_c03184{bottom:146.998362px;}
.y1b_c03184{bottom:186.600234px;}
.y1a_c03184{bottom:196.320450px;}
.y18_c03184{bottom:275.878542px;}
.y17_c03184{bottom:356.878758px;}
.y15_c03184{bottom:406.559730px;}
.y11_c03184{bottom:424.560306px;}
.y16_c03184{bottom:458.759262px;}
.y14_c03184{bottom:491.879514px;}
.y13_c03184{bottom:509.880090px;}
.y10_c03184{bottom:543.000342px;}
.y12_c03184{bottom:559.559874px;}
.yf_c03184{bottom:577.560450px;}
.y1c_c03184{bottom:614.280450px;}
.yb_c03184{bottom:667.558326px;}
.yd_c03184{bottom:707.160234px;}
.yc_c03184{bottom:716.880450px;}
.ya_c03184{bottom:796.438506px;}
.y9_c03184{bottom:877.438722px;}
.y7_c03184{bottom:926.759730px;}
.y3_c03184{bottom:944.760306px;}
.y8_c03184{bottom:979.319226px;}
.y6_c03184{bottom:1012.439478px;}
.y5_c03184{bottom:1030.440054px;}
.y2_c03184{bottom:1063.560306px;}
.y4_c03184{bottom:1079.759874px;}
.y1_c03184{bottom:1097.760450px;}
.ye_c03184{bottom:1134.840450px;}
.h3_c03184{height:32.530781px;}
.h1_c03184{height:41.696016px;}
.h2_c03184{height:41.812031px;}
.h4_c03184{height:54.654737px;}
.h0_c03184{height:1263.000000px;}
.w1_c03184{width:892.500000px;}
.w0_c03184{width:892.830000px;}
.x0_c03184{left:0.000000px;}
.xd_c03184{left:117.000000px;}
.x8_c03184{left:440.999856px;}
.x4_c03184{left:445.680576px;}
.xb_c03184{left:451.080000px;}
.x7_c03184{left:455.399604px;}
.x5_c03184{left:461.880144px;}
.x1_c03184{left:463.320000px;}
.xa_c03184{left:483.480360px;}
.x9_c03184{left:492.119496px;}
.x6_c03184{left:493.200576px;}
.xc_c03184{left:506.880360px;}
.x3_c03184{left:511.919892px;}
.x2_c03184{left:526.679604px;}
@media print{
.v0_c03184{vertical-align:0.000000pt;}
.v1_c03184{vertical-align:1.279488pt;}
.lsb_c03184{letter-spacing:-1.064448pt;}
.ls6_c03184{letter-spacing:-0.544896pt;}
.ls8_c03184{letter-spacing:-0.511104pt;}
.lse_c03184{letter-spacing:-0.244992pt;}
.lsc_c03184{letter-spacing:-0.232320pt;}
.ls5_c03184{letter-spacing:-0.215424pt;}
.ls3_c03184{letter-spacing:-0.105600pt;}
.ls11_c03184{letter-spacing:0.000000pt;}
.ls1_c03184{letter-spacing:0.005376pt;}
.ls4_c03184{letter-spacing:0.114048pt;}
.lsa_c03184{letter-spacing:0.451968pt;}
.ls10_c03184{letter-spacing:0.456960pt;}
.lsd_c03184{letter-spacing:0.477312pt;}
.ls9_c03184{letter-spacing:0.515328pt;}
.lsf_c03184{letter-spacing:0.528000pt;}
.ls7_c03184{letter-spacing:0.532224pt;}
.ls2_c03184{letter-spacing:0.544896pt;}
.ls0_c03184{letter-spacing:0.637824pt;}
.wsc_c03184{word-spacing:-13.445376pt;}
.wsa_c03184{word-spacing:-11.088000pt;}
.ws8_c03184{word-spacing:-11.075328pt;}
.ws9_c03184{word-spacing:-11.037312pt;}
.ws4_c03184{word-spacing:-10.344576pt;}
.ws2_c03184{word-spacing:-10.015104pt;}
.ws10_c03184{word-spacing:-0.958848pt;}
.wsd_c03184{word-spacing:-0.865920pt;}
.ws14_c03184{word-spacing:-0.639744pt;}
.wsf_c03184{word-spacing:-0.105600pt;}
.ws12_c03184{word-spacing:-0.088704pt;}
.ws13_c03184{word-spacing:-0.076032pt;}
.wse_c03184{word-spacing:0.000000pt;}
.ws11_c03184{word-spacing:0.743424pt;}
.wsb_c03184{word-spacing:29.600256pt;}
.ws6_c03184{word-spacing:32.659968pt;}
.ws1_c03184{word-spacing:33.563904pt;}
.ws0_c03184{word-spacing:33.796224pt;}
.ws3_c03184{word-spacing:34.860672pt;}
.ws5_c03184{word-spacing:35.468928pt;}
.ws7_c03184{word-spacing:37.357056pt;}
._0_c03184{margin-left:-1.731840pt;}
._2_c03184{width:1.317888pt;}
._4_c03184{width:2.935680pt;}
._1_c03184{width:44.668800pt;}
._3_c03184{width:45.805056pt;}
.fs0_c03184{font-size:42.240000pt;}
.fs1_c03184{font-size:53.760000pt;}
.y0_c03184{bottom:0.000000pt;}
.y19_c03184{bottom:130.665211pt;}
.y1b_c03184{bottom:165.866875pt;}
.y1a_c03184{bottom:174.507067pt;}
.y18_c03184{bottom:245.225371pt;}
.y17_c03184{bottom:317.225563pt;}
.y15_c03184{bottom:361.386427pt;}
.y11_c03184{bottom:377.386939pt;}
.y16_c03184{bottom:407.786011pt;}
.y14_c03184{bottom:437.226235pt;}
.y13_c03184{bottom:453.226747pt;}
.y10_c03184{bottom:482.666971pt;}
.y12_c03184{bottom:497.386555pt;}
.yf_c03184{bottom:513.387067pt;}
.y1c_c03184{bottom:546.027067pt;}
.yb_c03184{bottom:593.385179pt;}
.yd_c03184{bottom:628.586875pt;}
.yc_c03184{bottom:637.227067pt;}
.ya_c03184{bottom:707.945339pt;}
.y9_c03184{bottom:779.945531pt;}
.y7_c03184{bottom:823.786427pt;}
.y3_c03184{bottom:839.786939pt;}
.y8_c03184{bottom:870.505979pt;}
.y6_c03184{bottom:899.946203pt;}
.y5_c03184{bottom:915.946715pt;}
.y2_c03184{bottom:945.386939pt;}
.y4_c03184{bottom:959.786555pt;}
.y1_c03184{bottom:975.787067pt;}
.ye_c03184{bottom:1008.747067pt;}
.h3_c03184{height:28.916250pt;}
.h1_c03184{height:37.063125pt;}
.h2_c03184{height:37.166250pt;}
.h4_c03184{height:48.581988pt;}
.h0_c03184{height:1122.666667pt;}
.w1_c03184{width:793.333333pt;}
.w0_c03184{width:793.626667pt;}
.x0_c03184{left:0.000000pt;}
.xd_c03184{left:104.000000pt;}
.x8_c03184{left:391.999872pt;}
.x4_c03184{left:396.160512pt;}
.xb_c03184{left:400.960000pt;}
.x7_c03184{left:404.799648pt;}
.x5_c03184{left:410.560128pt;}
.x1_c03184{left:411.840000pt;}
.xa_c03184{left:429.760320pt;}
.x9_c03184{left:437.439552pt;}
.x6_c03184{left:438.400512pt;}
.xc_c03184{left:450.560320pt;}
.x3_c03184{left:455.039904pt;}
.x2_c03184{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03185 {
    display:none;
  }
  .loading-indicator_c03185.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03185 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03185 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03185" -> "#page-container .classname_c03185")
 */
.pf_c03185 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03185 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03185.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03185 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03185 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03185 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03185 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03185 {overflow:visible;}
  }
}
.c_c03185 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03185 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03185:after { /* webkit #35443 */
  content: '';
}
.t_c03185:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03185 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03185 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03185 { /* info for Javascript */
  display:none;
}
.l_c03185 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03185 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03185 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03185:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03185 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03185.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03185.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03185 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03185{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03185;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03185{font-family:ff1_c03185;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03185;src:url('chunks/assets/font_fcf599db9b59f62cfc138fe3.woff2')format("woff");}.ff2_c03185{font-family:ff2_c03185;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03185;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03185{font-family:ff3_c03185;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03185{vertical-align:0.000000px;}
.v1_c03185{vertical-align:1.439424px;}
.lsb_c03185{letter-spacing:-1.197504px;}
.ls6_c03185{letter-spacing:-0.613008px;}
.ls8_c03185{letter-spacing:-0.574992px;}
.lse_c03185{letter-spacing:-0.275616px;}
.lsc_c03185{letter-spacing:-0.261360px;}
.ls5_c03185{letter-spacing:-0.242352px;}
.ls3_c03185{letter-spacing:-0.118800px;}
.ls11_c03185{letter-spacing:0.000000px;}
.ls1_c03185{letter-spacing:0.006048px;}
.ls4_c03185{letter-spacing:0.128304px;}
.lsa_c03185{letter-spacing:0.508464px;}
.ls10_c03185{letter-spacing:0.514080px;}
.lsd_c03185{letter-spacing:0.536976px;}
.ls9_c03185{letter-spacing:0.579744px;}
.lsf_c03185{letter-spacing:0.594000px;}
.ls7_c03185{letter-spacing:0.598752px;}
.ls2_c03185{letter-spacing:0.613008px;}
.ls0_c03185{letter-spacing:0.717552px;}
.sc__c03185{text-shadow:none;}
.sc0_c03185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03185{-webkit-text-stroke:0px transparent;}
.sc0_c03185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03185{word-spacing:-15.126048px;}
.wsa_c03185{word-spacing:-12.474000px;}
.ws8_c03185{word-spacing:-12.459744px;}
.ws9_c03185{word-spacing:-12.416976px;}
.ws4_c03185{word-spacing:-11.637648px;}
.ws2_c03185{word-spacing:-11.266992px;}
.ws10_c03185{word-spacing:-1.078704px;}
.wsd_c03185{word-spacing:-0.974160px;}
.ws14_c03185{word-spacing:-0.719712px;}
.wsf_c03185{word-spacing:-0.118800px;}
.ws12_c03185{word-spacing:-0.099792px;}
.ws13_c03185{word-spacing:-0.085536px;}
.wse_c03185{word-spacing:0.000000px;}
.ws11_c03185{word-spacing:0.836352px;}
.wsb_c03185{word-spacing:33.300288px;}
.ws6_c03185{word-spacing:36.742464px;}
.ws1_c03185{word-spacing:37.759392px;}
.ws0_c03185{word-spacing:38.020752px;}
.ws3_c03185{word-spacing:39.218256px;}
.ws5_c03185{word-spacing:39.902544px;}
.ws7_c03185{word-spacing:42.026688px;}
._0_c03185{margin-left:-1.948320px;}
._2_c03185{width:1.482624px;}
._4_c03185{width:3.302640px;}
._1_c03185{width:50.252400px;}
._3_c03185{width:51.530688px;}
.fc0_c03185{color:rgb(0,0,0);}
.fs0_c03185{font-size:47.520000px;}
.fs1_c03185{font-size:60.480000px;}
.y0_c03185{bottom:0.000000px;}
.y19_c03185{bottom:146.998362px;}
.y1b_c03185{bottom:186.600234px;}
.y1a_c03185{bottom:196.320450px;}
.y18_c03185{bottom:275.878542px;}
.y17_c03185{bottom:356.878758px;}
.y15_c03185{bottom:406.559730px;}
.y11_c03185{bottom:424.560306px;}
.y16_c03185{bottom:458.759262px;}
.y14_c03185{bottom:491.879514px;}
.y13_c03185{bottom:509.880090px;}
.y10_c03185{bottom:543.000342px;}
.y12_c03185{bottom:559.559874px;}
.yf_c03185{bottom:577.560450px;}
.y1c_c03185{bottom:614.280450px;}
.yb_c03185{bottom:667.558326px;}
.yd_c03185{bottom:707.160234px;}
.yc_c03185{bottom:716.880450px;}
.ya_c03185{bottom:796.438506px;}
.y9_c03185{bottom:877.438722px;}
.y7_c03185{bottom:926.759730px;}
.y3_c03185{bottom:944.760306px;}
.y8_c03185{bottom:979.319226px;}
.y6_c03185{bottom:1012.439478px;}
.y5_c03185{bottom:1030.440054px;}
.y2_c03185{bottom:1063.560306px;}
.y4_c03185{bottom:1079.759874px;}
.y1_c03185{bottom:1097.760450px;}
.ye_c03185{bottom:1134.840450px;}
.h3_c03185{height:32.530781px;}
.h1_c03185{height:41.696016px;}
.h2_c03185{height:41.812031px;}
.h4_c03185{height:54.654737px;}
.h0_c03185{height:1263.000000px;}
.w1_c03185{width:892.500000px;}
.w0_c03185{width:892.830000px;}
.x0_c03185{left:0.000000px;}
.xd_c03185{left:117.000000px;}
.x8_c03185{left:440.999856px;}
.x4_c03185{left:445.680576px;}
.xb_c03185{left:451.080000px;}
.x7_c03185{left:455.399604px;}
.x5_c03185{left:461.880144px;}
.x1_c03185{left:463.320000px;}
.xa_c03185{left:483.480360px;}
.x9_c03185{left:492.119496px;}
.x6_c03185{left:493.200576px;}
.xc_c03185{left:506.880360px;}
.x3_c03185{left:511.919892px;}
.x2_c03185{left:526.679604px;}
@media print{
.v0_c03185{vertical-align:0.000000pt;}
.v1_c03185{vertical-align:1.279488pt;}
.lsb_c03185{letter-spacing:-1.064448pt;}
.ls6_c03185{letter-spacing:-0.544896pt;}
.ls8_c03185{letter-spacing:-0.511104pt;}
.lse_c03185{letter-spacing:-0.244992pt;}
.lsc_c03185{letter-spacing:-0.232320pt;}
.ls5_c03185{letter-spacing:-0.215424pt;}
.ls3_c03185{letter-spacing:-0.105600pt;}
.ls11_c03185{letter-spacing:0.000000pt;}
.ls1_c03185{letter-spacing:0.005376pt;}
.ls4_c03185{letter-spacing:0.114048pt;}
.lsa_c03185{letter-spacing:0.451968pt;}
.ls10_c03185{letter-spacing:0.456960pt;}
.lsd_c03185{letter-spacing:0.477312pt;}
.ls9_c03185{letter-spacing:0.515328pt;}
.lsf_c03185{letter-spacing:0.528000pt;}
.ls7_c03185{letter-spacing:0.532224pt;}
.ls2_c03185{letter-spacing:0.544896pt;}
.ls0_c03185{letter-spacing:0.637824pt;}
.wsc_c03185{word-spacing:-13.445376pt;}
.wsa_c03185{word-spacing:-11.088000pt;}
.ws8_c03185{word-spacing:-11.075328pt;}
.ws9_c03185{word-spacing:-11.037312pt;}
.ws4_c03185{word-spacing:-10.344576pt;}
.ws2_c03185{word-spacing:-10.015104pt;}
.ws10_c03185{word-spacing:-0.958848pt;}
.wsd_c03185{word-spacing:-0.865920pt;}
.ws14_c03185{word-spacing:-0.639744pt;}
.wsf_c03185{word-spacing:-0.105600pt;}
.ws12_c03185{word-spacing:-0.088704pt;}
.ws13_c03185{word-spacing:-0.076032pt;}
.wse_c03185{word-spacing:0.000000pt;}
.ws11_c03185{word-spacing:0.743424pt;}
.wsb_c03185{word-spacing:29.600256pt;}
.ws6_c03185{word-spacing:32.659968pt;}
.ws1_c03185{word-spacing:33.563904pt;}
.ws0_c03185{word-spacing:33.796224pt;}
.ws3_c03185{word-spacing:34.860672pt;}
.ws5_c03185{word-spacing:35.468928pt;}
.ws7_c03185{word-spacing:37.357056pt;}
._0_c03185{margin-left:-1.731840pt;}
._2_c03185{width:1.317888pt;}
._4_c03185{width:2.935680pt;}
._1_c03185{width:44.668800pt;}
._3_c03185{width:45.805056pt;}
.fs0_c03185{font-size:42.240000pt;}
.fs1_c03185{font-size:53.760000pt;}
.y0_c03185{bottom:0.000000pt;}
.y19_c03185{bottom:130.665211pt;}
.y1b_c03185{bottom:165.866875pt;}
.y1a_c03185{bottom:174.507067pt;}
.y18_c03185{bottom:245.225371pt;}
.y17_c03185{bottom:317.225563pt;}
.y15_c03185{bottom:361.386427pt;}
.y11_c03185{bottom:377.386939pt;}
.y16_c03185{bottom:407.786011pt;}
.y14_c03185{bottom:437.226235pt;}
.y13_c03185{bottom:453.226747pt;}
.y10_c03185{bottom:482.666971pt;}
.y12_c03185{bottom:497.386555pt;}
.yf_c03185{bottom:513.387067pt;}
.y1c_c03185{bottom:546.027067pt;}
.yb_c03185{bottom:593.385179pt;}
.yd_c03185{bottom:628.586875pt;}
.yc_c03185{bottom:637.227067pt;}
.ya_c03185{bottom:707.945339pt;}
.y9_c03185{bottom:779.945531pt;}
.y7_c03185{bottom:823.786427pt;}
.y3_c03185{bottom:839.786939pt;}
.y8_c03185{bottom:870.505979pt;}
.y6_c03185{bottom:899.946203pt;}
.y5_c03185{bottom:915.946715pt;}
.y2_c03185{bottom:945.386939pt;}
.y4_c03185{bottom:959.786555pt;}
.y1_c03185{bottom:975.787067pt;}
.ye_c03185{bottom:1008.747067pt;}
.h3_c03185{height:28.916250pt;}
.h1_c03185{height:37.063125pt;}
.h2_c03185{height:37.166250pt;}
.h4_c03185{height:48.581988pt;}
.h0_c03185{height:1122.666667pt;}
.w1_c03185{width:793.333333pt;}
.w0_c03185{width:793.626667pt;}
.x0_c03185{left:0.000000pt;}
.xd_c03185{left:104.000000pt;}
.x8_c03185{left:391.999872pt;}
.x4_c03185{left:396.160512pt;}
.xb_c03185{left:400.960000pt;}
.x7_c03185{left:404.799648pt;}
.x5_c03185{left:410.560128pt;}
.x1_c03185{left:411.840000pt;}
.xa_c03185{left:429.760320pt;}
.x9_c03185{left:437.439552pt;}
.x6_c03185{left:438.400512pt;}
.xc_c03185{left:450.560320pt;}
.x3_c03185{left:455.039904pt;}
.x2_c03185{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03186 {
    display:none;
  }
  .loading-indicator_c03186.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03186 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03186 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03186" -> "#page-container .classname_c03186")
 */
.pf_c03186 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03186 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03186.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03186 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03186 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03186 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03186 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03186 {overflow:visible;}
  }
}
.c_c03186 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03186 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03186:after { /* webkit #35443 */
  content: '';
}
.t_c03186:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03186 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03186 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03186 { /* info for Javascript */
  display:none;
}
.l_c03186 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03186 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03186 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03186:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03186 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03186.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03186.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03186 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03186{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03186;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03186{font-family:ff1_c03186;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03186;src:url('chunks/assets/font_9cbd62936348fad6897e90d5.woff2')format("woff");}.ff2_c03186{font-family:ff2_c03186;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03186;src:url('chunks/assets/font_b7a24d0609666ed0a0c48ba4.woff2')format("woff");}.ff3_c03186{font-family:ff3_c03186;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03186{vertical-align:0.000000px;}
.v1_c03186{vertical-align:1.439424px;}
.ls17_c03186{letter-spacing:-1.197504px;}
.ls11_c03186{letter-spacing:-0.793584px;}
.ls20_c03186{letter-spacing:-0.774576px;}
.lsf_c03186{letter-spacing:-0.769824px;}
.ls21_c03186{letter-spacing:-0.736560px;}
.ls1a_c03186{letter-spacing:-0.722304px;}
.lsc_c03186{letter-spacing:-0.574992px;}
.ls12_c03186{letter-spacing:-0.361152px;}
.ls18_c03186{letter-spacing:-0.304128px;}
.ls1f_c03186{letter-spacing:-0.289872px;}
.lsb_c03186{letter-spacing:-0.280368px;}
.ls1c_c03186{letter-spacing:-0.275616px;}
.ls22_c03186{letter-spacing:-0.270864px;}
.ls16_c03186{letter-spacing:-0.261360px;}
.ls7_c03186{letter-spacing:-0.242352px;}
.ls9_c03186{letter-spacing:-0.237600px;}
.ls6_c03186{letter-spacing:-0.118800px;}
.ls19_c03186{letter-spacing:-0.028512px;}
.ls14_c03186{letter-spacing:0.000000px;}
.ls5_c03186{letter-spacing:0.006048px;}
.lsd_c03186{letter-spacing:0.014256px;}
.ls8_c03186{letter-spacing:0.128304px;}
.ls13_c03186{letter-spacing:0.232848px;}
.ls10_c03186{letter-spacing:0.508464px;}
.ls1e_c03186{letter-spacing:0.514080px;}
.ls1b_c03186{letter-spacing:0.536976px;}
.lse_c03186{letter-spacing:0.579744px;}
.ls1d_c03186{letter-spacing:0.594000px;}
.lsa_c03186{letter-spacing:0.598752px;}
.ls2_c03186{letter-spacing:0.613008px;}
.ls15_c03186{letter-spacing:0.632016px;}
.ls4_c03186{letter-spacing:0.679536px;}
.ls0_c03186{letter-spacing:0.703296px;}
.ls1_c03186{letter-spacing:0.717552px;}
.ls3_c03186{letter-spacing:0.722304px;}
.sc__c03186{text-shadow:none;}
.sc0_c03186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03186{-webkit-text-stroke:0px transparent;}
.sc0_c03186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1b_c03186{word-spacing:-15.126048px;}
.wsc_c03186{word-spacing:-12.493008px;}
.ws19_c03186{word-spacing:-12.474000px;}
.ws8_c03186{word-spacing:-12.459744px;}
.ws18_c03186{word-spacing:-12.416976px;}
.ws3_c03186{word-spacing:-11.642400px;}
.ws13_c03186{word-spacing:-11.575872px;}
.ws1c_c03186{word-spacing:-11.105424px;}
.wsf_c03186{word-spacing:-2.062368px;}
.ws21_c03186{word-spacing:-1.064448px;}
.ws27_c03186{word-spacing:-1.040688px;}
.ws1f_c03186{word-spacing:-0.974160px;}
.ws11_c03186{word-spacing:-0.722304px;}
.ws2b_c03186{word-spacing:-0.719712px;}
.ws24_c03186{word-spacing:-0.375408px;}
.ws22_c03186{word-spacing:-0.118800px;}
.ws28_c03186{word-spacing:-0.099792px;}
.ws2d_c03186{word-spacing:-0.090288px;}
.ws2a_c03186{word-spacing:-0.085536px;}
.ws23_c03186{word-spacing:-0.080784px;}
.ws2c_c03186{word-spacing:-0.071280px;}
.ws20_c03186{word-spacing:0.000000px;}
.ws29_c03186{word-spacing:0.361152px;}
.ws25_c03186{word-spacing:0.408672px;}
.ws26_c03186{word-spacing:0.432432px;}
.wsd_c03186{word-spacing:0.817344px;}
.ws10_c03186{word-spacing:1.976832px;}
.wse_c03186{word-spacing:2.775168px;}
.ws17_c03186{word-spacing:5.037120px;}
.ws16_c03186{word-spacing:6.538752px;}
.ws1e_c03186{word-spacing:6.629040px;}
.ws1_c03186{word-spacing:13.804560px;}
.wsa_c03186{word-spacing:20.523888px;}
.ws9_c03186{word-spacing:21.588336px;}
.wsb_c03186{word-spacing:21.958992px;}
.ws15_c03186{word-spacing:30.954528px;}
.ws1a_c03186{word-spacing:33.300288px;}
.ws1d_c03186{word-spacing:34.836912px;}
.ws6_c03186{word-spacing:36.742464px;}
.ws2_c03186{word-spacing:37.759392px;}
.ws0_c03186{word-spacing:38.020752px;}
.ws4_c03186{word-spacing:39.218256px;}
.ws5_c03186{word-spacing:39.902544px;}
.ws7_c03186{word-spacing:42.026688px;}
.ws14_c03186{word-spacing:48.232800px;}
.ws12_c03186{word-spacing:56.396736px;}
._0_c03186{margin-left:-1.948320px;}
._3_c03186{width:1.710720px;}
._4_c03186{width:3.074544px;}
._7_c03186{width:10.668240px;}
._11_c03186{width:12.521520px;}
._12_c03186{width:14.764464px;}
._6_c03186{width:16.375392px;}
._10_c03186{width:19.511712px;}
._f_c03186{width:20.937312px;}
._13_c03186{width:22.686048px;}
._e_c03186{width:23.760000px;}
._2_c03186{width:26.492400px;}
._5_c03186{width:38.163312px;}
._d_c03186{width:47.329920px;}
._c_c03186{width:48.394368px;}
._1_c03186{width:50.252400px;}
._8_c03186{width:52.780464px;}
._a_c03186{width:62.427024px;}
._b_c03186{width:63.733824px;}
._9_c03186{width:69.383952px;}
.fc0_c03186{color:rgb(0,0,0);}
.fs0_c03186{font-size:47.520000px;}
.fs1_c03186{font-size:60.480000px;}
.y0_c03186{bottom:0.000000px;}
.y10_c03186{bottom:21.240450px;}
.yc_c03186{bottom:66.240450px;}
.y26_c03186{bottom:131.878686px;}
.y25_c03186{bottom:146.998362px;}
.y28_c03186{bottom:186.600234px;}
.y27_c03186{bottom:196.320450px;}
.y24_c03186{bottom:275.878542px;}
.y23_c03186{bottom:356.878758px;}
.y21_c03186{bottom:406.559730px;}
.y1d_c03186{bottom:424.560306px;}
.y22_c03186{bottom:458.759262px;}
.y20_c03186{bottom:491.879514px;}
.y1f_c03186{bottom:509.880090px;}
.y1c_c03186{bottom:543.000342px;}
.y1e_c03186{bottom:559.559874px;}
.y1b_c03186{bottom:577.560450px;}
.y29_c03186{bottom:614.280450px;}
.y17_c03186{bottom:667.561494px;}
.y19_c03186{bottom:707.160234px;}
.y18_c03186{bottom:716.880450px;}
.y16_c03186{bottom:736.321746px;}
.y15_c03186{bottom:751.441422px;}
.y14_c03186{bottom:766.561098px;}
.y13_c03186{bottom:781.320810px;}
.y12_c03186{bottom:796.440486px;}
.yb_c03186{bottom:811.200000px;}
.y11_c03186{bottom:832.440450px;}
.yf_c03186{bottom:847.561062px;}
.ye_c03186{bottom:862.320774px;}
.ya_c03186{bottom:877.438722px;}
.yd_c03186{bottom:877.440450px;}
.y8_c03186{bottom:926.759730px;}
.y4_c03186{bottom:944.760306px;}
.y9_c03186{bottom:979.319226px;}
.y7_c03186{bottom:1012.439478px;}
.y6_c03186{bottom:1030.440054px;}
.y3_c03186{bottom:1049.880486px;}
.y2_c03186{bottom:1063.560306px;}
.y5_c03186{bottom:1079.759874px;}
.y1_c03186{bottom:1097.760450px;}
.y1a_c03186{bottom:1134.840450px;}
.h3_c03186{height:32.530781px;}
.h1_c03186{height:41.696016px;}
.h2_c03186{height:41.812031px;}
.h5_c03186{height:54.654737px;}
.h4_c03186{height:78.840000px;}
.h0_c03186{height:1263.000000px;}
.w2_c03186{width:215.280000px;}
.w1_c03186{width:892.500000px;}
.w0_c03186{width:892.830000px;}
.x0_c03186{left:0.000000px;}
.x10_c03186{left:117.000000px;}
.x9_c03186{left:440.999856px;}
.x5_c03186{left:445.680576px;}
.xe_c03186{left:451.080000px;}
.x8_c03186{left:455.399604px;}
.x6_c03186{left:461.880144px;}
.x1_c03186{left:463.320000px;}
.xd_c03186{left:483.480252px;}
.xa_c03186{left:492.119496px;}
.x7_c03186{left:493.200576px;}
.xf_c03186{left:506.880360px;}
.x4_c03186{left:511.919892px;}
.x2_c03186{left:526.679604px;}
.x3_c03186{left:569.880036px;}
.xb_c03186{left:599.760000px;}
.xc_c03186{left:676.080000px;}
@media print{
.v0_c03186{vertical-align:0.000000pt;}
.v1_c03186{vertical-align:1.279488pt;}
.ls17_c03186{letter-spacing:-1.064448pt;}
.ls11_c03186{letter-spacing:-0.705408pt;}
.ls20_c03186{letter-spacing:-0.688512pt;}
.lsf_c03186{letter-spacing:-0.684288pt;}
.ls21_c03186{letter-spacing:-0.654720pt;}
.ls1a_c03186{letter-spacing:-0.642048pt;}
.lsc_c03186{letter-spacing:-0.511104pt;}
.ls12_c03186{letter-spacing:-0.321024pt;}
.ls18_c03186{letter-spacing:-0.270336pt;}
.ls1f_c03186{letter-spacing:-0.257664pt;}
.lsb_c03186{letter-spacing:-0.249216pt;}
.ls1c_c03186{letter-spacing:-0.244992pt;}
.ls22_c03186{letter-spacing:-0.240768pt;}
.ls16_c03186{letter-spacing:-0.232320pt;}
.ls7_c03186{letter-spacing:-0.215424pt;}
.ls9_c03186{letter-spacing:-0.211200pt;}
.ls6_c03186{letter-spacing:-0.105600pt;}
.ls19_c03186{letter-spacing:-0.025344pt;}
.ls14_c03186{letter-spacing:0.000000pt;}
.ls5_c03186{letter-spacing:0.005376pt;}
.lsd_c03186{letter-spacing:0.012672pt;}
.ls8_c03186{letter-spacing:0.114048pt;}
.ls13_c03186{letter-spacing:0.206976pt;}
.ls10_c03186{letter-spacing:0.451968pt;}
.ls1e_c03186{letter-spacing:0.456960pt;}
.ls1b_c03186{letter-spacing:0.477312pt;}
.lse_c03186{letter-spacing:0.515328pt;}
.ls1d_c03186{letter-spacing:0.528000pt;}
.lsa_c03186{letter-spacing:0.532224pt;}
.ls2_c03186{letter-spacing:0.544896pt;}
.ls15_c03186{letter-spacing:0.561792pt;}
.ls4_c03186{letter-spacing:0.604032pt;}
.ls0_c03186{letter-spacing:0.625152pt;}
.ls1_c03186{letter-spacing:0.637824pt;}
.ls3_c03186{letter-spacing:0.642048pt;}
.ws1b_c03186{word-spacing:-13.445376pt;}
.wsc_c03186{word-spacing:-11.104896pt;}
.ws19_c03186{word-spacing:-11.088000pt;}
.ws8_c03186{word-spacing:-11.075328pt;}
.ws18_c03186{word-spacing:-11.037312pt;}
.ws3_c03186{word-spacing:-10.348800pt;}
.ws13_c03186{word-spacing:-10.289664pt;}
.ws1c_c03186{word-spacing:-9.871488pt;}
.wsf_c03186{word-spacing:-1.833216pt;}
.ws21_c03186{word-spacing:-0.946176pt;}
.ws27_c03186{word-spacing:-0.925056pt;}
.ws1f_c03186{word-spacing:-0.865920pt;}
.ws11_c03186{word-spacing:-0.642048pt;}
.ws2b_c03186{word-spacing:-0.639744pt;}
.ws24_c03186{word-spacing:-0.333696pt;}
.ws22_c03186{word-spacing:-0.105600pt;}
.ws28_c03186{word-spacing:-0.088704pt;}
.ws2d_c03186{word-spacing:-0.080256pt;}
.ws2a_c03186{word-spacing:-0.076032pt;}
.ws23_c03186{word-spacing:-0.071808pt;}
.ws2c_c03186{word-spacing:-0.063360pt;}
.ws20_c03186{word-spacing:0.000000pt;}
.ws29_c03186{word-spacing:0.321024pt;}
.ws25_c03186{word-spacing:0.363264pt;}
.ws26_c03186{word-spacing:0.384384pt;}
.wsd_c03186{word-spacing:0.726528pt;}
.ws10_c03186{word-spacing:1.757184pt;}
.wse_c03186{word-spacing:2.466816pt;}
.ws17_c03186{word-spacing:4.477440pt;}
.ws16_c03186{word-spacing:5.812224pt;}
.ws1e_c03186{word-spacing:5.892480pt;}
.ws1_c03186{word-spacing:12.270720pt;}
.wsa_c03186{word-spacing:18.243456pt;}
.ws9_c03186{word-spacing:19.189632pt;}
.wsb_c03186{word-spacing:19.519104pt;}
.ws15_c03186{word-spacing:27.515136pt;}
.ws1a_c03186{word-spacing:29.600256pt;}
.ws1d_c03186{word-spacing:30.966144pt;}
.ws6_c03186{word-spacing:32.659968pt;}
.ws2_c03186{word-spacing:33.563904pt;}
.ws0_c03186{word-spacing:33.796224pt;}
.ws4_c03186{word-spacing:34.860672pt;}
.ws5_c03186{word-spacing:35.468928pt;}
.ws7_c03186{word-spacing:37.357056pt;}
.ws14_c03186{word-spacing:42.873600pt;}
.ws12_c03186{word-spacing:50.130432pt;}
._0_c03186{margin-left:-1.731840pt;}
._3_c03186{width:1.520640pt;}
._4_c03186{width:2.732928pt;}
._7_c03186{width:9.482880pt;}
._11_c03186{width:11.130240pt;}
._12_c03186{width:13.123968pt;}
._6_c03186{width:14.555904pt;}
._10_c03186{width:17.343744pt;}
._f_c03186{width:18.610944pt;}
._13_c03186{width:20.165376pt;}
._e_c03186{width:21.120000pt;}
._2_c03186{width:23.548800pt;}
._5_c03186{width:33.922944pt;}
._d_c03186{width:42.071040pt;}
._c_c03186{width:43.017216pt;}
._1_c03186{width:44.668800pt;}
._8_c03186{width:46.915968pt;}
._a_c03186{width:55.490688pt;}
._b_c03186{width:56.652288pt;}
._9_c03186{width:61.674624pt;}
.fs0_c03186{font-size:42.240000pt;}
.fs1_c03186{font-size:53.760000pt;}
.y0_c03186{bottom:0.000000pt;}
.y10_c03186{bottom:18.880400pt;}
.yc_c03186{bottom:58.880400pt;}
.y26_c03186{bottom:117.225499pt;}
.y25_c03186{bottom:130.665211pt;}
.y28_c03186{bottom:165.866875pt;}
.y27_c03186{bottom:174.507067pt;}
.y24_c03186{bottom:245.225371pt;}
.y23_c03186{bottom:317.225563pt;}
.y21_c03186{bottom:361.386427pt;}
.y1d_c03186{bottom:377.386939pt;}
.y22_c03186{bottom:407.786011pt;}
.y20_c03186{bottom:437.226235pt;}
.y1f_c03186{bottom:453.226747pt;}
.y1c_c03186{bottom:482.666971pt;}
.y1e_c03186{bottom:497.386555pt;}
.y1b_c03186{bottom:513.387067pt;}
.y29_c03186{bottom:546.027067pt;}
.y17_c03186{bottom:593.387995pt;}
.y19_c03186{bottom:628.586875pt;}
.y18_c03186{bottom:637.227067pt;}
.y16_c03186{bottom:654.508219pt;}
.y15_c03186{bottom:667.947931pt;}
.y14_c03186{bottom:681.387643pt;}
.y13_c03186{bottom:694.507387pt;}
.y12_c03186{bottom:707.947099pt;}
.yb_c03186{bottom:721.066667pt;}
.y11_c03186{bottom:739.947067pt;}
.yf_c03186{bottom:753.387611pt;}
.ye_c03186{bottom:766.507355pt;}
.ya_c03186{bottom:779.945531pt;}
.yd_c03186{bottom:779.947067pt;}
.y8_c03186{bottom:823.786427pt;}
.y4_c03186{bottom:839.786939pt;}
.y9_c03186{bottom:870.505979pt;}
.y7_c03186{bottom:899.946203pt;}
.y6_c03186{bottom:915.946715pt;}
.y3_c03186{bottom:933.227099pt;}
.y2_c03186{bottom:945.386939pt;}
.y5_c03186{bottom:959.786555pt;}
.y1_c03186{bottom:975.787067pt;}
.y1a_c03186{bottom:1008.747067pt;}
.h3_c03186{height:28.916250pt;}
.h1_c03186{height:37.063125pt;}
.h2_c03186{height:37.166250pt;}
.h5_c03186{height:48.581988pt;}
.h4_c03186{height:70.080000pt;}
.h0_c03186{height:1122.666667pt;}
.w2_c03186{width:191.360000pt;}
.w1_c03186{width:793.333333pt;}
.w0_c03186{width:793.626667pt;}
.x0_c03186{left:0.000000pt;}
.x10_c03186{left:104.000000pt;}
.x9_c03186{left:391.999872pt;}
.x5_c03186{left:396.160512pt;}
.xe_c03186{left:400.960000pt;}
.x8_c03186{left:404.799648pt;}
.x6_c03186{left:410.560128pt;}
.x1_c03186{left:411.840000pt;}
.xd_c03186{left:429.760224pt;}
.xa_c03186{left:437.439552pt;}
.x7_c03186{left:438.400512pt;}
.xf_c03186{left:450.560320pt;}
.x4_c03186{left:455.039904pt;}
.x2_c03186{left:468.159648pt;}
.x3_c03186{left:506.560032pt;}
.xb_c03186{left:533.120000pt;}
.xc_c03186{left:600.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03187 {
    display:none;
  }
  .loading-indicator_c03187.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03187 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03187 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03187" -> "#page-container .classname_c03187")
 */
.pf_c03187 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03187 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03187.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03187 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03187 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03187 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03187 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03187 {overflow:visible;}
  }
}
.c_c03187 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03187 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03187:after { /* webkit #35443 */
  content: '';
}
.t_c03187:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03187 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03187 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03187 { /* info for Javascript */
  display:none;
}
.l_c03187 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03187 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03187 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03187:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03187 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03187.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03187.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03187 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03187{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03187;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03187{font-family:ff1_c03187;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03187;src:url('chunks/assets/font_f2a3df0d4ca0d70847af426a.woff2')format("woff");}.ff2_c03187{font-family:ff2_c03187;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03187;src:url('chunks/assets/font_822ff517dfbfd6ed2445d06e.woff2')format("woff");}.ff3_c03187{font-family:ff3_c03187;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03187{vertical-align:0.000000px;}
.v1_c03187{vertical-align:1.439424px;}
.lse_c03187{letter-spacing:-0.793584px;}
.lsb_c03187{letter-spacing:-0.774576px;}
.ls12_c03187{letter-spacing:-0.736560px;}
.lsa_c03187{letter-spacing:-0.574992px;}
.lsf_c03187{letter-spacing:-0.304128px;}
.ls9_c03187{letter-spacing:-0.280368px;}
.ls13_c03187{letter-spacing:-0.270864px;}
.ls10_c03187{letter-spacing:-0.261360px;}
.ls5_c03187{letter-spacing:-0.242352px;}
.ls7_c03187{letter-spacing:-0.237600px;}
.ls4_c03187{letter-spacing:-0.118800px;}
.ls16_c03187{letter-spacing:0.000000px;}
.ls1_c03187{letter-spacing:0.006048px;}
.ls6_c03187{letter-spacing:0.128304px;}
.lsd_c03187{letter-spacing:0.508464px;}
.ls15_c03187{letter-spacing:0.514080px;}
.ls11_c03187{letter-spacing:0.536976px;}
.lsc_c03187{letter-spacing:0.579744px;}
.ls14_c03187{letter-spacing:0.594000px;}
.ls8_c03187{letter-spacing:0.598752px;}
.ls2_c03187{letter-spacing:0.613008px;}
.ls0_c03187{letter-spacing:0.703296px;}
.ls3_c03187{letter-spacing:0.717552px;}
.sc__c03187{text-shadow:none;}
.sc0_c03187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03187{-webkit-text-stroke:0px transparent;}
.sc0_c03187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03187{word-spacing:-15.126048px;}
.wsc_c03187{word-spacing:-12.474000px;}
.ws7_c03187{word-spacing:-12.459744px;}
.ws3_c03187{word-spacing:-11.642400px;}
.ws6_c03187{word-spacing:-11.105424px;}
.ws11_c03187{word-spacing:-1.064448px;}
.wsf_c03187{word-spacing:-0.974160px;}
.ws19_c03187{word-spacing:-0.719712px;}
.ws12_c03187{word-spacing:-0.118800px;}
.ws16_c03187{word-spacing:-0.099792px;}
.ws17_c03187{word-spacing:-0.090288px;}
.ws18_c03187{word-spacing:-0.085536px;}
.ws13_c03187{word-spacing:-0.080784px;}
.ws15_c03187{word-spacing:-0.057024px;}
.ws10_c03187{word-spacing:0.000000px;}
.ws14_c03187{word-spacing:0.432432px;}
.wsb_c03187{word-spacing:6.629040px;}
.ws1_c03187{word-spacing:13.804560px;}
.wsd_c03187{word-spacing:33.300288px;}
.wsa_c03187{word-spacing:34.836912px;}
.ws9_c03187{word-spacing:36.143712px;}
.ws2_c03187{word-spacing:37.759392px;}
.ws0_c03187{word-spacing:38.020752px;}
.ws4_c03187{word-spacing:39.218256px;}
.ws5_c03187{word-spacing:39.902544px;}
.ws8_c03187{word-spacing:42.026688px;}
._0_c03187{margin-left:-1.948320px;}
._3_c03187{width:1.710720px;}
._4_c03187{width:3.074544px;}
._6_c03187{width:19.982160px;}
._5_c03187{width:24.235200px;}
._2_c03187{width:26.492400px;}
._1_c03187{width:50.252400px;}
.fc0_c03187{color:rgb(0,0,0);}
.fs0_c03187{font-size:47.520000px;}
.fs1_c03187{font-size:60.480000px;}
.y0_c03187{bottom:0.000000px;}
.y1d_c03187{bottom:131.878686px;}
.y1c_c03187{bottom:146.998362px;}
.y1f_c03187{bottom:186.600234px;}
.y1e_c03187{bottom:196.320450px;}
.y1b_c03187{bottom:275.878542px;}
.y1a_c03187{bottom:356.878758px;}
.y18_c03187{bottom:406.559730px;}
.y14_c03187{bottom:424.560306px;}
.y19_c03187{bottom:458.759262px;}
.y17_c03187{bottom:491.879514px;}
.y16_c03187{bottom:509.880090px;}
.y13_c03187{bottom:529.320522px;}
.y12_c03187{bottom:543.000342px;}
.y15_c03187{bottom:559.559874px;}
.y11_c03187{bottom:577.560450px;}
.y20_c03187{bottom:614.280450px;}
.yd_c03187{bottom:652.438650px;}
.yc_c03187{bottom:667.558326px;}
.yf_c03187{bottom:707.160234px;}
.ye_c03187{bottom:716.880450px;}
.yb_c03187{bottom:796.438506px;}
.ya_c03187{bottom:877.438722px;}
.y8_c03187{bottom:926.759730px;}
.y4_c03187{bottom:944.760306px;}
.y9_c03187{bottom:979.319226px;}
.y7_c03187{bottom:1012.439478px;}
.y6_c03187{bottom:1030.440054px;}
.y3_c03187{bottom:1049.880486px;}
.y2_c03187{bottom:1063.560306px;}
.y5_c03187{bottom:1079.759874px;}
.y1_c03187{bottom:1097.760450px;}
.y10_c03187{bottom:1134.840450px;}
.h3_c03187{height:32.530781px;}
.h1_c03187{height:41.696016px;}
.h2_c03187{height:41.812031px;}
.h4_c03187{height:54.654737px;}
.h0_c03187{height:1263.000000px;}
.w1_c03187{width:892.500000px;}
.w0_c03187{width:892.830000px;}
.x0_c03187{left:0.000000px;}
.xe_c03187{left:117.000000px;}
.x9_c03187{left:440.999856px;}
.x5_c03187{left:445.680576px;}
.xc_c03187{left:451.080000px;}
.x8_c03187{left:455.399604px;}
.x6_c03187{left:461.880144px;}
.x1_c03187{left:463.320000px;}
.xb_c03187{left:483.480360px;}
.xa_c03187{left:492.119496px;}
.x7_c03187{left:493.200576px;}
.xd_c03187{left:506.880360px;}
.x4_c03187{left:511.919892px;}
.x2_c03187{left:526.679604px;}
.x3_c03187{left:569.880036px;}
@media print{
.v0_c03187{vertical-align:0.000000pt;}
.v1_c03187{vertical-align:1.279488pt;}
.lse_c03187{letter-spacing:-0.705408pt;}
.lsb_c03187{letter-spacing:-0.688512pt;}
.ls12_c03187{letter-spacing:-0.654720pt;}
.lsa_c03187{letter-spacing:-0.511104pt;}
.lsf_c03187{letter-spacing:-0.270336pt;}
.ls9_c03187{letter-spacing:-0.249216pt;}
.ls13_c03187{letter-spacing:-0.240768pt;}
.ls10_c03187{letter-spacing:-0.232320pt;}
.ls5_c03187{letter-spacing:-0.215424pt;}
.ls7_c03187{letter-spacing:-0.211200pt;}
.ls4_c03187{letter-spacing:-0.105600pt;}
.ls16_c03187{letter-spacing:0.000000pt;}
.ls1_c03187{letter-spacing:0.005376pt;}
.ls6_c03187{letter-spacing:0.114048pt;}
.lsd_c03187{letter-spacing:0.451968pt;}
.ls15_c03187{letter-spacing:0.456960pt;}
.ls11_c03187{letter-spacing:0.477312pt;}
.lsc_c03187{letter-spacing:0.515328pt;}
.ls14_c03187{letter-spacing:0.528000pt;}
.ls8_c03187{letter-spacing:0.532224pt;}
.ls2_c03187{letter-spacing:0.544896pt;}
.ls0_c03187{letter-spacing:0.625152pt;}
.ls3_c03187{letter-spacing:0.637824pt;}
.wse_c03187{word-spacing:-13.445376pt;}
.wsc_c03187{word-spacing:-11.088000pt;}
.ws7_c03187{word-spacing:-11.075328pt;}
.ws3_c03187{word-spacing:-10.348800pt;}
.ws6_c03187{word-spacing:-9.871488pt;}
.ws11_c03187{word-spacing:-0.946176pt;}
.wsf_c03187{word-spacing:-0.865920pt;}
.ws19_c03187{word-spacing:-0.639744pt;}
.ws12_c03187{word-spacing:-0.105600pt;}
.ws16_c03187{word-spacing:-0.088704pt;}
.ws17_c03187{word-spacing:-0.080256pt;}
.ws18_c03187{word-spacing:-0.076032pt;}
.ws13_c03187{word-spacing:-0.071808pt;}
.ws15_c03187{word-spacing:-0.050688pt;}
.ws10_c03187{word-spacing:0.000000pt;}
.ws14_c03187{word-spacing:0.384384pt;}
.wsb_c03187{word-spacing:5.892480pt;}
.ws1_c03187{word-spacing:12.270720pt;}
.wsd_c03187{word-spacing:29.600256pt;}
.wsa_c03187{word-spacing:30.966144pt;}
.ws9_c03187{word-spacing:32.127744pt;}
.ws2_c03187{word-spacing:33.563904pt;}
.ws0_c03187{word-spacing:33.796224pt;}
.ws4_c03187{word-spacing:34.860672pt;}
.ws5_c03187{word-spacing:35.468928pt;}
.ws8_c03187{word-spacing:37.357056pt;}
._0_c03187{margin-left:-1.731840pt;}
._3_c03187{width:1.520640pt;}
._4_c03187{width:2.732928pt;}
._6_c03187{width:17.761920pt;}
._5_c03187{width:21.542400pt;}
._2_c03187{width:23.548800pt;}
._1_c03187{width:44.668800pt;}
.fs0_c03187{font-size:42.240000pt;}
.fs1_c03187{font-size:53.760000pt;}
.y0_c03187{bottom:0.000000pt;}
.y1d_c03187{bottom:117.225499pt;}
.y1c_c03187{bottom:130.665211pt;}
.y1f_c03187{bottom:165.866875pt;}
.y1e_c03187{bottom:174.507067pt;}
.y1b_c03187{bottom:245.225371pt;}
.y1a_c03187{bottom:317.225563pt;}
.y18_c03187{bottom:361.386427pt;}
.y14_c03187{bottom:377.386939pt;}
.y19_c03187{bottom:407.786011pt;}
.y17_c03187{bottom:437.226235pt;}
.y16_c03187{bottom:453.226747pt;}
.y13_c03187{bottom:470.507131pt;}
.y12_c03187{bottom:482.666971pt;}
.y15_c03187{bottom:497.386555pt;}
.y11_c03187{bottom:513.387067pt;}
.y20_c03187{bottom:546.027067pt;}
.yd_c03187{bottom:579.945467pt;}
.yc_c03187{bottom:593.385179pt;}
.yf_c03187{bottom:628.586875pt;}
.ye_c03187{bottom:637.227067pt;}
.yb_c03187{bottom:707.945339pt;}
.ya_c03187{bottom:779.945531pt;}
.y8_c03187{bottom:823.786427pt;}
.y4_c03187{bottom:839.786939pt;}
.y9_c03187{bottom:870.505979pt;}
.y7_c03187{bottom:899.946203pt;}
.y6_c03187{bottom:915.946715pt;}
.y3_c03187{bottom:933.227099pt;}
.y2_c03187{bottom:945.386939pt;}
.y5_c03187{bottom:959.786555pt;}
.y1_c03187{bottom:975.787067pt;}
.y10_c03187{bottom:1008.747067pt;}
.h3_c03187{height:28.916250pt;}
.h1_c03187{height:37.063125pt;}
.h2_c03187{height:37.166250pt;}
.h4_c03187{height:48.581988pt;}
.h0_c03187{height:1122.666667pt;}
.w1_c03187{width:793.333333pt;}
.w0_c03187{width:793.626667pt;}
.x0_c03187{left:0.000000pt;}
.xe_c03187{left:104.000000pt;}
.x9_c03187{left:391.999872pt;}
.x5_c03187{left:396.160512pt;}
.xc_c03187{left:400.960000pt;}
.x8_c03187{left:404.799648pt;}
.x6_c03187{left:410.560128pt;}
.x1_c03187{left:411.840000pt;}
.xb_c03187{left:429.760320pt;}
.xa_c03187{left:437.439552pt;}
.x7_c03187{left:438.400512pt;}
.xd_c03187{left:450.560320pt;}
.x4_c03187{left:455.039904pt;}
.x2_c03187{left:468.159648pt;}
.x3_c03187{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03188 {
    display:none;
  }
  .loading-indicator_c03188.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03188 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03188 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03188" -> "#page-container .classname_c03188")
 */
.pf_c03188 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03188 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03188.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03188 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03188 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03188 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03188 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03188 {overflow:visible;}
  }
}
.c_c03188 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03188 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03188:after { /* webkit #35443 */
  content: '';
}
.t_c03188:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03188 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03188 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03188 { /* info for Javascript */
  display:none;
}
.l_c03188 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03188 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03188 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03188:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03188 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03188.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03188.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03188 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03188{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03188;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03188{font-family:ff1_c03188;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03188;src:url('chunks/assets/font_05777cccbc56d27080f3e503.woff2')format("woff");}.ff2_c03188{font-family:ff2_c03188;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03188;src:url('chunks/assets/font_822ff517dfbfd6ed2445d06e.woff2')format("woff");}.ff3_c03188{font-family:ff3_c03188;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03188{vertical-align:0.000000px;}
.v1_c03188{vertical-align:1.439424px;}
.lse_c03188{letter-spacing:-0.793584px;}
.lsb_c03188{letter-spacing:-0.774576px;}
.ls12_c03188{letter-spacing:-0.736560px;}
.lsa_c03188{letter-spacing:-0.574992px;}
.lsf_c03188{letter-spacing:-0.304128px;}
.ls9_c03188{letter-spacing:-0.280368px;}
.ls13_c03188{letter-spacing:-0.270864px;}
.ls10_c03188{letter-spacing:-0.261360px;}
.ls5_c03188{letter-spacing:-0.242352px;}
.ls7_c03188{letter-spacing:-0.237600px;}
.ls4_c03188{letter-spacing:-0.118800px;}
.ls16_c03188{letter-spacing:0.000000px;}
.ls1_c03188{letter-spacing:0.006048px;}
.ls6_c03188{letter-spacing:0.128304px;}
.lsd_c03188{letter-spacing:0.508464px;}
.ls15_c03188{letter-spacing:0.514080px;}
.ls11_c03188{letter-spacing:0.536976px;}
.lsc_c03188{letter-spacing:0.579744px;}
.ls14_c03188{letter-spacing:0.594000px;}
.ls8_c03188{letter-spacing:0.598752px;}
.ls2_c03188{letter-spacing:0.613008px;}
.ls0_c03188{letter-spacing:0.703296px;}
.ls3_c03188{letter-spacing:0.717552px;}
.sc__c03188{text-shadow:none;}
.sc0_c03188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03188{-webkit-text-stroke:0px transparent;}
.sc0_c03188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03188{word-spacing:-15.126048px;}
.wsc_c03188{word-spacing:-12.474000px;}
.ws7_c03188{word-spacing:-12.459744px;}
.ws3_c03188{word-spacing:-11.642400px;}
.ws6_c03188{word-spacing:-11.105424px;}
.ws11_c03188{word-spacing:-1.064448px;}
.wsf_c03188{word-spacing:-0.974160px;}
.ws19_c03188{word-spacing:-0.719712px;}
.ws12_c03188{word-spacing:-0.118800px;}
.ws16_c03188{word-spacing:-0.099792px;}
.ws17_c03188{word-spacing:-0.090288px;}
.ws18_c03188{word-spacing:-0.085536px;}
.ws13_c03188{word-spacing:-0.080784px;}
.ws15_c03188{word-spacing:-0.057024px;}
.ws10_c03188{word-spacing:0.000000px;}
.ws14_c03188{word-spacing:0.432432px;}
.wsb_c03188{word-spacing:6.629040px;}
.ws1_c03188{word-spacing:13.804560px;}
.wsd_c03188{word-spacing:33.300288px;}
.wsa_c03188{word-spacing:34.836912px;}
.ws9_c03188{word-spacing:36.143712px;}
.ws2_c03188{word-spacing:37.759392px;}
.ws0_c03188{word-spacing:38.020752px;}
.ws4_c03188{word-spacing:39.218256px;}
.ws5_c03188{word-spacing:39.902544px;}
.ws8_c03188{word-spacing:42.026688px;}
._0_c03188{margin-left:-1.948320px;}
._3_c03188{width:1.710720px;}
._4_c03188{width:3.074544px;}
._6_c03188{width:19.982160px;}
._5_c03188{width:24.235200px;}
._2_c03188{width:26.492400px;}
._1_c03188{width:50.252400px;}
.fc0_c03188{color:rgb(0,0,0);}
.fs0_c03188{font-size:47.520000px;}
.fs1_c03188{font-size:60.480000px;}
.y0_c03188{bottom:0.000000px;}
.y1d_c03188{bottom:131.878686px;}
.y1c_c03188{bottom:146.998362px;}
.y1f_c03188{bottom:186.600234px;}
.y1e_c03188{bottom:196.320450px;}
.y1b_c03188{bottom:275.878542px;}
.y1a_c03188{bottom:356.878758px;}
.y18_c03188{bottom:406.559730px;}
.y14_c03188{bottom:424.560306px;}
.y19_c03188{bottom:458.759262px;}
.y17_c03188{bottom:491.879514px;}
.y16_c03188{bottom:509.880090px;}
.y13_c03188{bottom:529.320522px;}
.y12_c03188{bottom:543.000342px;}
.y15_c03188{bottom:559.559874px;}
.y11_c03188{bottom:577.560450px;}
.y20_c03188{bottom:614.280450px;}
.yd_c03188{bottom:652.438650px;}
.yc_c03188{bottom:667.558326px;}
.yf_c03188{bottom:707.160234px;}
.ye_c03188{bottom:716.880450px;}
.yb_c03188{bottom:796.438506px;}
.ya_c03188{bottom:877.438722px;}
.y8_c03188{bottom:926.759730px;}
.y4_c03188{bottom:944.760306px;}
.y9_c03188{bottom:979.319226px;}
.y7_c03188{bottom:1012.439478px;}
.y6_c03188{bottom:1030.440054px;}
.y3_c03188{bottom:1049.880486px;}
.y2_c03188{bottom:1063.560306px;}
.y5_c03188{bottom:1079.759874px;}
.y1_c03188{bottom:1097.760450px;}
.y10_c03188{bottom:1134.840450px;}
.h3_c03188{height:32.530781px;}
.h1_c03188{height:41.696016px;}
.h2_c03188{height:41.812031px;}
.h4_c03188{height:54.654737px;}
.h0_c03188{height:1263.000000px;}
.w1_c03188{width:892.500000px;}
.w0_c03188{width:892.830000px;}
.x0_c03188{left:0.000000px;}
.xe_c03188{left:117.000000px;}
.x9_c03188{left:440.999856px;}
.x5_c03188{left:445.680576px;}
.xc_c03188{left:451.080000px;}
.x8_c03188{left:455.399604px;}
.x6_c03188{left:461.880144px;}
.x1_c03188{left:463.320000px;}
.xb_c03188{left:483.480360px;}
.xa_c03188{left:492.119496px;}
.x7_c03188{left:493.200576px;}
.xd_c03188{left:506.880360px;}
.x4_c03188{left:511.919892px;}
.x2_c03188{left:526.679604px;}
.x3_c03188{left:569.880036px;}
@media print{
.v0_c03188{vertical-align:0.000000pt;}
.v1_c03188{vertical-align:1.279488pt;}
.lse_c03188{letter-spacing:-0.705408pt;}
.lsb_c03188{letter-spacing:-0.688512pt;}
.ls12_c03188{letter-spacing:-0.654720pt;}
.lsa_c03188{letter-spacing:-0.511104pt;}
.lsf_c03188{letter-spacing:-0.270336pt;}
.ls9_c03188{letter-spacing:-0.249216pt;}
.ls13_c03188{letter-spacing:-0.240768pt;}
.ls10_c03188{letter-spacing:-0.232320pt;}
.ls5_c03188{letter-spacing:-0.215424pt;}
.ls7_c03188{letter-spacing:-0.211200pt;}
.ls4_c03188{letter-spacing:-0.105600pt;}
.ls16_c03188{letter-spacing:0.000000pt;}
.ls1_c03188{letter-spacing:0.005376pt;}
.ls6_c03188{letter-spacing:0.114048pt;}
.lsd_c03188{letter-spacing:0.451968pt;}
.ls15_c03188{letter-spacing:0.456960pt;}
.ls11_c03188{letter-spacing:0.477312pt;}
.lsc_c03188{letter-spacing:0.515328pt;}
.ls14_c03188{letter-spacing:0.528000pt;}
.ls8_c03188{letter-spacing:0.532224pt;}
.ls2_c03188{letter-spacing:0.544896pt;}
.ls0_c03188{letter-spacing:0.625152pt;}
.ls3_c03188{letter-spacing:0.637824pt;}
.wse_c03188{word-spacing:-13.445376pt;}
.wsc_c03188{word-spacing:-11.088000pt;}
.ws7_c03188{word-spacing:-11.075328pt;}
.ws3_c03188{word-spacing:-10.348800pt;}
.ws6_c03188{word-spacing:-9.871488pt;}
.ws11_c03188{word-spacing:-0.946176pt;}
.wsf_c03188{word-spacing:-0.865920pt;}
.ws19_c03188{word-spacing:-0.639744pt;}
.ws12_c03188{word-spacing:-0.105600pt;}
.ws16_c03188{word-spacing:-0.088704pt;}
.ws17_c03188{word-spacing:-0.080256pt;}
.ws18_c03188{word-spacing:-0.076032pt;}
.ws13_c03188{word-spacing:-0.071808pt;}
.ws15_c03188{word-spacing:-0.050688pt;}
.ws10_c03188{word-spacing:0.000000pt;}
.ws14_c03188{word-spacing:0.384384pt;}
.wsb_c03188{word-spacing:5.892480pt;}
.ws1_c03188{word-spacing:12.270720pt;}
.wsd_c03188{word-spacing:29.600256pt;}
.wsa_c03188{word-spacing:30.966144pt;}
.ws9_c03188{word-spacing:32.127744pt;}
.ws2_c03188{word-spacing:33.563904pt;}
.ws0_c03188{word-spacing:33.796224pt;}
.ws4_c03188{word-spacing:34.860672pt;}
.ws5_c03188{word-spacing:35.468928pt;}
.ws8_c03188{word-spacing:37.357056pt;}
._0_c03188{margin-left:-1.731840pt;}
._3_c03188{width:1.520640pt;}
._4_c03188{width:2.732928pt;}
._6_c03188{width:17.761920pt;}
._5_c03188{width:21.542400pt;}
._2_c03188{width:23.548800pt;}
._1_c03188{width:44.668800pt;}
.fs0_c03188{font-size:42.240000pt;}
.fs1_c03188{font-size:53.760000pt;}
.y0_c03188{bottom:0.000000pt;}
.y1d_c03188{bottom:117.225499pt;}
.y1c_c03188{bottom:130.665211pt;}
.y1f_c03188{bottom:165.866875pt;}
.y1e_c03188{bottom:174.507067pt;}
.y1b_c03188{bottom:245.225371pt;}
.y1a_c03188{bottom:317.225563pt;}
.y18_c03188{bottom:361.386427pt;}
.y14_c03188{bottom:377.386939pt;}
.y19_c03188{bottom:407.786011pt;}
.y17_c03188{bottom:437.226235pt;}
.y16_c03188{bottom:453.226747pt;}
.y13_c03188{bottom:470.507131pt;}
.y12_c03188{bottom:482.666971pt;}
.y15_c03188{bottom:497.386555pt;}
.y11_c03188{bottom:513.387067pt;}
.y20_c03188{bottom:546.027067pt;}
.yd_c03188{bottom:579.945467pt;}
.yc_c03188{bottom:593.385179pt;}
.yf_c03188{bottom:628.586875pt;}
.ye_c03188{bottom:637.227067pt;}
.yb_c03188{bottom:707.945339pt;}
.ya_c03188{bottom:779.945531pt;}
.y8_c03188{bottom:823.786427pt;}
.y4_c03188{bottom:839.786939pt;}
.y9_c03188{bottom:870.505979pt;}
.y7_c03188{bottom:899.946203pt;}
.y6_c03188{bottom:915.946715pt;}
.y3_c03188{bottom:933.227099pt;}
.y2_c03188{bottom:945.386939pt;}
.y5_c03188{bottom:959.786555pt;}
.y1_c03188{bottom:975.787067pt;}
.y10_c03188{bottom:1008.747067pt;}
.h3_c03188{height:28.916250pt;}
.h1_c03188{height:37.063125pt;}
.h2_c03188{height:37.166250pt;}
.h4_c03188{height:48.581988pt;}
.h0_c03188{height:1122.666667pt;}
.w1_c03188{width:793.333333pt;}
.w0_c03188{width:793.626667pt;}
.x0_c03188{left:0.000000pt;}
.xe_c03188{left:104.000000pt;}
.x9_c03188{left:391.999872pt;}
.x5_c03188{left:396.160512pt;}
.xc_c03188{left:400.960000pt;}
.x8_c03188{left:404.799648pt;}
.x6_c03188{left:410.560128pt;}
.x1_c03188{left:411.840000pt;}
.xb_c03188{left:429.760320pt;}
.xa_c03188{left:437.439552pt;}
.x7_c03188{left:438.400512pt;}
.xd_c03188{left:450.560320pt;}
.x4_c03188{left:455.039904pt;}
.x2_c03188{left:468.159648pt;}
.x3_c03188{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03189 {
    display:none;
  }
  .loading-indicator_c03189.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03189 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03189 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03189" -> "#page-container .classname_c03189")
 */
.pf_c03189 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03189 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03189.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03189 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03189 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03189 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03189 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03189 {overflow:visible;}
  }
}
.c_c03189 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03189 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03189:after { /* webkit #35443 */
  content: '';
}
.t_c03189:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03189 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03189 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03189 { /* info for Javascript */
  display:none;
}
.l_c03189 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03189 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03189 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03189:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03189 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03189.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03189.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03189 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03189{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03189;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03189{font-family:ff1_c03189;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03189;src:url('chunks/assets/font_cf017c9fab91b67a5bba10ed.woff2')format("woff");}.ff2_c03189{font-family:ff2_c03189;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03189;src:url('chunks/assets/font_e6039dc8c64b7406ff687b25.woff2')format("woff");}.ff3_c03189{font-family:ff3_c03189;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03189{vertical-align:0.000000px;}
.v1_c03189{vertical-align:1.439424px;}
.ls13_c03189{letter-spacing:-1.197504px;}
.ls11_c03189{letter-spacing:-0.807840px;}
.lse_c03189{letter-spacing:-0.793584px;}
.ls1b_c03189{letter-spacing:-0.720000px;}
.ls10_c03189{letter-spacing:-0.717552px;}
.ls19_c03189{letter-spacing:-0.694800px;}
.ls1c_c03189{letter-spacing:-0.648000px;}
.lsb_c03189{letter-spacing:-0.574992px;}
.ls1a_c03189{letter-spacing:-0.450000px;}
.ls18_c03189{letter-spacing:-0.388800px;}
.ls14_c03189{letter-spacing:-0.304128px;}
.lsa_c03189{letter-spacing:-0.280368px;}
.ls16_c03189{letter-spacing:-0.275616px;}
.ls12_c03189{letter-spacing:-0.261360px;}
.ls6_c03189{letter-spacing:-0.242352px;}
.ls8_c03189{letter-spacing:-0.237600px;}
.ls5_c03189{letter-spacing:-0.118800px;}
.ls1e_c03189{letter-spacing:0.000000px;}
.ls2_c03189{letter-spacing:0.006048px;}
.ls7_c03189{letter-spacing:0.128304px;}
.lsd_c03189{letter-spacing:0.508464px;}
.ls1d_c03189{letter-spacing:0.514080px;}
.ls15_c03189{letter-spacing:0.536976px;}
.lsc_c03189{letter-spacing:0.579744px;}
.ls17_c03189{letter-spacing:0.594000px;}
.ls9_c03189{letter-spacing:0.598752px;}
.ls3_c03189{letter-spacing:0.613008px;}
.lsf_c03189{letter-spacing:0.651024px;}
.ls0_c03189{letter-spacing:0.703296px;}
.ls4_c03189{letter-spacing:0.717552px;}
.ls1_c03189{letter-spacing:0.722304px;}
.sc__c03189{text-shadow:none;}
.sc0_c03189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03189{-webkit-text-stroke:0px transparent;}
.sc0_c03189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a_c03189{word-spacing:-15.126048px;}
.ws13_c03189{word-spacing:-12.474000px;}
.ws6_c03189{word-spacing:-12.459744px;}
.ws12_c03189{word-spacing:-12.416976px;}
.ws3_c03189{word-spacing:-11.642400px;}
.wsf_c03189{word-spacing:-11.575872px;}
.ws5_c03189{word-spacing:-11.305008px;}
.ws25_c03189{word-spacing:-1.083456px;}
.ws1f_c03189{word-spacing:-1.064448px;}
.ws1d_c03189{word-spacing:-0.974160px;}
.ws27_c03189{word-spacing:-0.719712px;}
.ws20_c03189{word-spacing:-0.118800px;}
.ws24_c03189{word-spacing:-0.099792px;}
.ws26_c03189{word-spacing:-0.085536px;}
.ws21_c03189{word-spacing:-0.080784px;}
.ws1e_c03189{word-spacing:0.000000px;}
.ws22_c03189{word-spacing:0.432432px;}
.ws23_c03189{word-spacing:0.446688px;}
.ws10_c03189{word-spacing:2.157408px;}
.wsa_c03189{word-spacing:2.257200px;}
.ws9_c03189{word-spacing:3.739824px;}
.wsc_c03189{word-spacing:4.181760px;}
.ws15_c03189{word-spacing:4.881600px;}
.ws18_c03189{word-spacing:4.896000px;}
.wsb_c03189{word-spacing:5.155920px;}
.ws14_c03189{word-spacing:5.817600px;}
.wsd_c03189{word-spacing:6.115824px;}
.ws1c_c03189{word-spacing:7.916832px;}
.ws16_c03189{word-spacing:9.043200px;}
.ws17_c03189{word-spacing:10.800000px;}
.wse_c03189{word-spacing:11.784960px;}
.ws11_c03189{word-spacing:13.676256px;}
.ws1_c03189{word-spacing:13.804560px;}
.ws19_c03189{word-spacing:33.300288px;}
.ws8_c03189{word-spacing:36.143712px;}
.ws2_c03189{word-spacing:37.759392px;}
.ws0_c03189{word-spacing:38.020752px;}
.ws4_c03189{word-spacing:39.218256px;}
.ws1b_c03189{word-spacing:39.902544px;}
.ws7_c03189{word-spacing:42.026688px;}
._c_c03189{margin-left:-3.088800px;}
._0_c03189{margin-left:-1.948320px;}
._3_c03189{width:1.710720px;}
._4_c03189{width:3.074544px;}
._7_c03189{width:13.148784px;}
._8_c03189{width:14.835744px;}
._e_c03189{width:16.492608px;}
._6_c03189{width:17.710704px;}
._5_c03189{width:20.314800px;}
._b_c03189{width:21.412512px;}
._d_c03189{width:22.834080px;}
._9_c03189{width:24.277968px;}
._2_c03189{width:26.492400px;}
._f_c03189{width:28.274400px;}
._1_c03189{width:50.252400px;}
._a_c03189{width:52.780464px;}
.fc0_c03189{color:rgb(0,0,0);}
.fs1_c03189{font-size:36.000000px;}
.fs0_c03189{font-size:47.520000px;}
.fs2_c03189{font-size:60.480000px;}
.y0_c03189{bottom:0.000000px;}
.y28_c03189{bottom:146.999550px;}
.y2e_c03189{bottom:172.200450px;}
.y2d_c03189{bottom:181.200450px;}
.y2a_c03189{bottom:186.600234px;}
.y2c_c03189{bottom:190.200450px;}
.y29_c03189{bottom:196.320450px;}
.y2b_c03189{bottom:199.200450px;}
.y27_c03189{bottom:260.760054px;}
.y26_c03189{bottom:275.879730px;}
.y25_c03189{bottom:311.879694px;}
.y24_c03189{bottom:326.999370px;}
.y23_c03189{bottom:341.759082px;}
.y22_c03189{bottom:356.878758px;}
.y20_c03189{bottom:406.559730px;}
.y1c_c03189{bottom:424.560306px;}
.y21_c03189{bottom:458.759262px;}
.y1f_c03189{bottom:491.879514px;}
.y1e_c03189{bottom:509.880090px;}
.y1b_c03189{bottom:529.320522px;}
.y1a_c03189{bottom:543.000342px;}
.y1d_c03189{bottom:559.559874px;}
.y19_c03189{bottom:577.560450px;}
.y2f_c03189{bottom:614.280450px;}
.y11_c03189{bottom:667.560702px;}
.y17_c03189{bottom:692.760450px;}
.y16_c03189{bottom:701.760450px;}
.y13_c03189{bottom:707.160234px;}
.y15_c03189{bottom:710.760450px;}
.y12_c03189{bottom:716.880450px;}
.y14_c03189{bottom:719.760450px;}
.y10_c03189{bottom:766.560306px;}
.yf_c03189{bottom:781.320018px;}
.ye_c03189{bottom:796.439694px;}
.yd_c03189{bottom:832.439658px;}
.yc_c03189{bottom:847.559334px;}
.yb_c03189{bottom:862.319046px;}
.ya_c03189{bottom:877.438722px;}
.y8_c03189{bottom:926.759730px;}
.y4_c03189{bottom:944.760306px;}
.y9_c03189{bottom:979.319226px;}
.y7_c03189{bottom:1012.439478px;}
.y6_c03189{bottom:1030.440054px;}
.y3_c03189{bottom:1049.880486px;}
.y2_c03189{bottom:1063.560306px;}
.y5_c03189{bottom:1079.759874px;}
.y1_c03189{bottom:1097.760450px;}
.y18_c03189{bottom:1134.840450px;}
.h4_c03189{height:31.587891px;}
.h3_c03189{height:32.530781px;}
.h1_c03189{height:41.696016px;}
.h2_c03189{height:41.812031px;}
.h5_c03189{height:54.654737px;}
.h0_c03189{height:1263.000000px;}
.w1_c03189{width:892.500000px;}
.w0_c03189{width:892.830000px;}
.x0_c03189{left:0.000000px;}
.xe_c03189{left:117.000000px;}
.x9_c03189{left:441.001044px;}
.x5_c03189{left:445.680576px;}
.xc_c03189{left:451.080000px;}
.x8_c03189{left:455.400792px;}
.x6_c03189{left:461.880144px;}
.x1_c03189{left:463.320000px;}
.xb_c03189{left:483.481548px;}
.xa_c03189{left:492.120684px;}
.x7_c03189{left:493.200576px;}
.xd_c03189{left:506.880360px;}
.x4_c03189{left:511.919892px;}
.x2_c03189{left:526.679604px;}
.x3_c03189{left:569.880036px;}
@media print{
.v0_c03189{vertical-align:0.000000pt;}
.v1_c03189{vertical-align:1.279488pt;}
.ls13_c03189{letter-spacing:-1.064448pt;}
.ls11_c03189{letter-spacing:-0.718080pt;}
.lse_c03189{letter-spacing:-0.705408pt;}
.ls1b_c03189{letter-spacing:-0.640000pt;}
.ls10_c03189{letter-spacing:-0.637824pt;}
.ls19_c03189{letter-spacing:-0.617600pt;}
.ls1c_c03189{letter-spacing:-0.576000pt;}
.lsb_c03189{letter-spacing:-0.511104pt;}
.ls1a_c03189{letter-spacing:-0.400000pt;}
.ls18_c03189{letter-spacing:-0.345600pt;}
.ls14_c03189{letter-spacing:-0.270336pt;}
.lsa_c03189{letter-spacing:-0.249216pt;}
.ls16_c03189{letter-spacing:-0.244992pt;}
.ls12_c03189{letter-spacing:-0.232320pt;}
.ls6_c03189{letter-spacing:-0.215424pt;}
.ls8_c03189{letter-spacing:-0.211200pt;}
.ls5_c03189{letter-spacing:-0.105600pt;}
.ls1e_c03189{letter-spacing:0.000000pt;}
.ls2_c03189{letter-spacing:0.005376pt;}
.ls7_c03189{letter-spacing:0.114048pt;}
.lsd_c03189{letter-spacing:0.451968pt;}
.ls1d_c03189{letter-spacing:0.456960pt;}
.ls15_c03189{letter-spacing:0.477312pt;}
.lsc_c03189{letter-spacing:0.515328pt;}
.ls17_c03189{letter-spacing:0.528000pt;}
.ls9_c03189{letter-spacing:0.532224pt;}
.ls3_c03189{letter-spacing:0.544896pt;}
.lsf_c03189{letter-spacing:0.578688pt;}
.ls0_c03189{letter-spacing:0.625152pt;}
.ls4_c03189{letter-spacing:0.637824pt;}
.ls1_c03189{letter-spacing:0.642048pt;}
.ws1a_c03189{word-spacing:-13.445376pt;}
.ws13_c03189{word-spacing:-11.088000pt;}
.ws6_c03189{word-spacing:-11.075328pt;}
.ws12_c03189{word-spacing:-11.037312pt;}
.ws3_c03189{word-spacing:-10.348800pt;}
.wsf_c03189{word-spacing:-10.289664pt;}
.ws5_c03189{word-spacing:-10.048896pt;}
.ws25_c03189{word-spacing:-0.963072pt;}
.ws1f_c03189{word-spacing:-0.946176pt;}
.ws1d_c03189{word-spacing:-0.865920pt;}
.ws27_c03189{word-spacing:-0.639744pt;}
.ws20_c03189{word-spacing:-0.105600pt;}
.ws24_c03189{word-spacing:-0.088704pt;}
.ws26_c03189{word-spacing:-0.076032pt;}
.ws21_c03189{word-spacing:-0.071808pt;}
.ws1e_c03189{word-spacing:0.000000pt;}
.ws22_c03189{word-spacing:0.384384pt;}
.ws23_c03189{word-spacing:0.397056pt;}
.ws10_c03189{word-spacing:1.917696pt;}
.wsa_c03189{word-spacing:2.006400pt;}
.ws9_c03189{word-spacing:3.324288pt;}
.wsc_c03189{word-spacing:3.717120pt;}
.ws15_c03189{word-spacing:4.339200pt;}
.ws18_c03189{word-spacing:4.352000pt;}
.wsb_c03189{word-spacing:4.583040pt;}
.ws14_c03189{word-spacing:5.171200pt;}
.wsd_c03189{word-spacing:5.436288pt;}
.ws1c_c03189{word-spacing:7.037184pt;}
.ws16_c03189{word-spacing:8.038400pt;}
.ws17_c03189{word-spacing:9.600000pt;}
.wse_c03189{word-spacing:10.475520pt;}
.ws11_c03189{word-spacing:12.156672pt;}
.ws1_c03189{word-spacing:12.270720pt;}
.ws19_c03189{word-spacing:29.600256pt;}
.ws8_c03189{word-spacing:32.127744pt;}
.ws2_c03189{word-spacing:33.563904pt;}
.ws0_c03189{word-spacing:33.796224pt;}
.ws4_c03189{word-spacing:34.860672pt;}
.ws1b_c03189{word-spacing:35.468928pt;}
.ws7_c03189{word-spacing:37.357056pt;}
._c_c03189{margin-left:-2.745600pt;}
._0_c03189{margin-left:-1.731840pt;}
._3_c03189{width:1.520640pt;}
._4_c03189{width:2.732928pt;}
._7_c03189{width:11.687808pt;}
._8_c03189{width:13.187328pt;}
._e_c03189{width:14.660096pt;}
._6_c03189{width:15.742848pt;}
._5_c03189{width:18.057600pt;}
._b_c03189{width:19.033344pt;}
._d_c03189{width:20.296960pt;}
._9_c03189{width:21.580416pt;}
._2_c03189{width:23.548800pt;}
._f_c03189{width:25.132800pt;}
._1_c03189{width:44.668800pt;}
._a_c03189{width:46.915968pt;}
.fs1_c03189{font-size:32.000000pt;}
.fs0_c03189{font-size:42.240000pt;}
.fs2_c03189{font-size:53.760000pt;}
.y0_c03189{bottom:0.000000pt;}
.y28_c03189{bottom:130.666267pt;}
.y2e_c03189{bottom:153.067067pt;}
.y2d_c03189{bottom:161.067067pt;}
.y2a_c03189{bottom:165.866875pt;}
.y2c_c03189{bottom:169.067067pt;}
.y29_c03189{bottom:174.507067pt;}
.y2b_c03189{bottom:177.067067pt;}
.y27_c03189{bottom:231.786715pt;}
.y26_c03189{bottom:245.226427pt;}
.y25_c03189{bottom:277.226395pt;}
.y24_c03189{bottom:290.666107pt;}
.y23_c03189{bottom:303.785851pt;}
.y22_c03189{bottom:317.225563pt;}
.y20_c03189{bottom:361.386427pt;}
.y1c_c03189{bottom:377.386939pt;}
.y21_c03189{bottom:407.786011pt;}
.y1f_c03189{bottom:437.226235pt;}
.y1e_c03189{bottom:453.226747pt;}
.y1b_c03189{bottom:470.507131pt;}
.y1a_c03189{bottom:482.666971pt;}
.y1d_c03189{bottom:497.386555pt;}
.y19_c03189{bottom:513.387067pt;}
.y2f_c03189{bottom:546.027067pt;}
.y11_c03189{bottom:593.387291pt;}
.y17_c03189{bottom:615.787067pt;}
.y16_c03189{bottom:623.787067pt;}
.y13_c03189{bottom:628.586875pt;}
.y15_c03189{bottom:631.787067pt;}
.y12_c03189{bottom:637.227067pt;}
.y14_c03189{bottom:639.787067pt;}
.y10_c03189{bottom:681.386939pt;}
.yf_c03189{bottom:694.506683pt;}
.ye_c03189{bottom:707.946395pt;}
.yd_c03189{bottom:739.946363pt;}
.yc_c03189{bottom:753.386075pt;}
.yb_c03189{bottom:766.505819pt;}
.ya_c03189{bottom:779.945531pt;}
.y8_c03189{bottom:823.786427pt;}
.y4_c03189{bottom:839.786939pt;}
.y9_c03189{bottom:870.505979pt;}
.y7_c03189{bottom:899.946203pt;}
.y6_c03189{bottom:915.946715pt;}
.y3_c03189{bottom:933.227099pt;}
.y2_c03189{bottom:945.386939pt;}
.y5_c03189{bottom:959.786555pt;}
.y1_c03189{bottom:975.787067pt;}
.y18_c03189{bottom:1008.747067pt;}
.h4_c03189{height:28.078125pt;}
.h3_c03189{height:28.916250pt;}
.h1_c03189{height:37.063125pt;}
.h2_c03189{height:37.166250pt;}
.h5_c03189{height:48.581988pt;}
.h0_c03189{height:1122.666667pt;}
.w1_c03189{width:793.333333pt;}
.w0_c03189{width:793.626667pt;}
.x0_c03189{left:0.000000pt;}
.xe_c03189{left:104.000000pt;}
.x9_c03189{left:392.000928pt;}
.x5_c03189{left:396.160512pt;}
.xc_c03189{left:400.960000pt;}
.x8_c03189{left:404.800704pt;}
.x6_c03189{left:410.560128pt;}
.x1_c03189{left:411.840000pt;}
.xb_c03189{left:429.761376pt;}
.xa_c03189{left:437.440608pt;}
.x7_c03189{left:438.400512pt;}
.xd_c03189{left:450.560320pt;}
.x4_c03189{left:455.039904pt;}
.x2_c03189{left:468.159648pt;}
.x3_c03189{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03190 {
    display:none;
  }
  .loading-indicator_c03190.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03190 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03190 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03190" -> "#page-container .classname_c03190")
 */
.pf_c03190 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03190 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03190.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03190 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03190 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03190 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03190 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03190 {overflow:visible;}
  }
}
.c_c03190 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03190 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03190:after { /* webkit #35443 */
  content: '';
}
.t_c03190:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03190 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03190 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03190 { /* info for Javascript */
  display:none;
}
.l_c03190 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03190 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03190 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03190:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03190 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03190.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03190.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03190 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03190{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03190;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03190{font-family:ff1_c03190;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03190;src:url('chunks/assets/font_29da5ffb550234b2135f1150.woff2')format("woff");}.ff2_c03190{font-family:ff2_c03190;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03190;src:url('chunks/assets/font_822ff517dfbfd6ed2445d06e.woff2')format("woff");}.ff3_c03190{font-family:ff3_c03190;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03190{vertical-align:0.000000px;}
.v1_c03190{vertical-align:1.439424px;}
.ls11_c03190{letter-spacing:-0.807840px;}
.lse_c03190{letter-spacing:-0.793584px;}
.ls19_c03190{letter-spacing:-0.720000px;}
.ls10_c03190{letter-spacing:-0.717552px;}
.ls17_c03190{letter-spacing:-0.694800px;}
.ls1a_c03190{letter-spacing:-0.648000px;}
.lsb_c03190{letter-spacing:-0.574992px;}
.ls18_c03190{letter-spacing:-0.450000px;}
.ls16_c03190{letter-spacing:-0.388800px;}
.lsa_c03190{letter-spacing:-0.280368px;}
.ls14_c03190{letter-spacing:-0.275616px;}
.ls12_c03190{letter-spacing:-0.261360px;}
.ls6_c03190{letter-spacing:-0.242352px;}
.ls8_c03190{letter-spacing:-0.237600px;}
.ls5_c03190{letter-spacing:-0.118800px;}
.ls1c_c03190{letter-spacing:0.000000px;}
.ls2_c03190{letter-spacing:0.006048px;}
.ls7_c03190{letter-spacing:0.128304px;}
.lsd_c03190{letter-spacing:0.508464px;}
.ls1b_c03190{letter-spacing:0.514080px;}
.ls13_c03190{letter-spacing:0.536976px;}
.lsc_c03190{letter-spacing:0.579744px;}
.ls15_c03190{letter-spacing:0.594000px;}
.ls9_c03190{letter-spacing:0.598752px;}
.ls3_c03190{letter-spacing:0.613008px;}
.lsf_c03190{letter-spacing:0.651024px;}
.ls0_c03190{letter-spacing:0.703296px;}
.ls4_c03190{letter-spacing:0.717552px;}
.ls1_c03190{letter-spacing:0.722304px;}
.sc__c03190{text-shadow:none;}
.sc0_c03190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03190{-webkit-text-stroke:0px transparent;}
.sc0_c03190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17_c03190{word-spacing:-15.126048px;}
.ws10_c03190{word-spacing:-12.474000px;}
.ws6_c03190{word-spacing:-12.459744px;}
.wsf_c03190{word-spacing:-12.416976px;}
.ws3_c03190{word-spacing:-11.642400px;}
.ws1d_c03190{word-spacing:-1.083456px;}
.ws1a_c03190{word-spacing:-1.064448px;}
.ws18_c03190{word-spacing:-0.974160px;}
.ws22_c03190{word-spacing:-0.719712px;}
.ws1b_c03190{word-spacing:-0.118800px;}
.ws20_c03190{word-spacing:-0.099792px;}
.ws21_c03190{word-spacing:-0.085536px;}
.ws1c_c03190{word-spacing:-0.080784px;}
.ws19_c03190{word-spacing:0.000000px;}
.ws1e_c03190{word-spacing:0.432432px;}
.ws1f_c03190{word-spacing:0.446688px;}
.wsa_c03190{word-spacing:2.257200px;}
.ws9_c03190{word-spacing:3.739824px;}
.wsc_c03190{word-spacing:4.181760px;}
.ws12_c03190{word-spacing:4.881600px;}
.ws15_c03190{word-spacing:4.896000px;}
.wsb_c03190{word-spacing:5.155920px;}
.ws11_c03190{word-spacing:5.817600px;}
.wsd_c03190{word-spacing:6.115824px;}
.wse_c03190{word-spacing:7.916832px;}
.ws13_c03190{word-spacing:9.043200px;}
.ws14_c03190{word-spacing:10.800000px;}
.ws1_c03190{word-spacing:13.804560px;}
.ws16_c03190{word-spacing:33.300288px;}
.ws8_c03190{word-spacing:36.143712px;}
.ws2_c03190{word-spacing:37.759392px;}
.ws0_c03190{word-spacing:38.020752px;}
.ws4_c03190{word-spacing:39.218256px;}
.ws5_c03190{word-spacing:39.902544px;}
.ws7_c03190{word-spacing:42.026688px;}
._0_c03190{margin-left:-1.948320px;}
._3_c03190{width:1.710720px;}
._4_c03190{width:3.074544px;}
._7_c03190{width:13.148784px;}
._8_c03190{width:14.835744px;}
._d_c03190{width:16.492608px;}
._6_c03190{width:17.710704px;}
._5_c03190{width:20.314800px;}
._c_c03190{width:22.476960px;}
._9_c03190{width:24.277968px;}
._2_c03190{width:26.492400px;}
._b_c03190{width:28.274400px;}
._1_c03190{width:50.252400px;}
._a_c03190{width:52.780464px;}
.fc0_c03190{color:rgb(0,0,0);}
.fs1_c03190{font-size:36.000000px;}
.fs0_c03190{font-size:47.520000px;}
.fs2_c03190{font-size:60.480000px;}
.y0_c03190{bottom:0.000000px;}
.y27_c03190{bottom:146.999550px;}
.y2d_c03190{bottom:172.200450px;}
.y2c_c03190{bottom:181.200450px;}
.y29_c03190{bottom:186.600234px;}
.y2b_c03190{bottom:190.200450px;}
.y28_c03190{bottom:196.320450px;}
.y2a_c03190{bottom:199.200450px;}
.y26_c03190{bottom:260.760054px;}
.y25_c03190{bottom:275.879730px;}
.y24_c03190{bottom:311.879694px;}
.y23_c03190{bottom:326.999370px;}
.y22_c03190{bottom:341.759082px;}
.y21_c03190{bottom:356.878758px;}
.y1f_c03190{bottom:406.559730px;}
.y1b_c03190{bottom:424.560306px;}
.y20_c03190{bottom:458.759262px;}
.y1e_c03190{bottom:491.879514px;}
.y1d_c03190{bottom:509.880090px;}
.y1a_c03190{bottom:529.320522px;}
.y19_c03190{bottom:543.000342px;}
.y1c_c03190{bottom:559.559874px;}
.y18_c03190{bottom:577.560450px;}
.y2e_c03190{bottom:614.280450px;}
.y10_c03190{bottom:667.559514px;}
.y16_c03190{bottom:692.760450px;}
.y15_c03190{bottom:701.760450px;}
.y12_c03190{bottom:707.160234px;}
.y14_c03190{bottom:710.760450px;}
.y11_c03190{bottom:716.880450px;}
.y13_c03190{bottom:719.760450px;}
.yf_c03190{bottom:781.320018px;}
.ye_c03190{bottom:796.439694px;}
.yd_c03190{bottom:832.439658px;}
.yc_c03190{bottom:847.559334px;}
.yb_c03190{bottom:862.319046px;}
.ya_c03190{bottom:877.438722px;}
.y8_c03190{bottom:926.759730px;}
.y4_c03190{bottom:944.760306px;}
.y9_c03190{bottom:979.319226px;}
.y7_c03190{bottom:1012.439478px;}
.y6_c03190{bottom:1030.440054px;}
.y3_c03190{bottom:1049.880486px;}
.y2_c03190{bottom:1063.560306px;}
.y5_c03190{bottom:1079.759874px;}
.y1_c03190{bottom:1097.760450px;}
.y17_c03190{bottom:1134.840450px;}
.h4_c03190{height:31.587891px;}
.h3_c03190{height:32.530781px;}
.h1_c03190{height:41.696016px;}
.h2_c03190{height:41.812031px;}
.h5_c03190{height:54.654737px;}
.h0_c03190{height:1263.000000px;}
.w1_c03190{width:892.500000px;}
.w0_c03190{width:892.830000px;}
.x0_c03190{left:0.000000px;}
.xe_c03190{left:117.000000px;}
.x9_c03190{left:440.999856px;}
.x5_c03190{left:445.680576px;}
.xc_c03190{left:451.080000px;}
.x8_c03190{left:455.399604px;}
.x6_c03190{left:461.880144px;}
.x1_c03190{left:463.320000px;}
.xb_c03190{left:483.480360px;}
.xa_c03190{left:492.119496px;}
.x7_c03190{left:493.200576px;}
.xd_c03190{left:506.880360px;}
.x4_c03190{left:511.919892px;}
.x2_c03190{left:526.679604px;}
.x3_c03190{left:569.880036px;}
@media print{
.v0_c03190{vertical-align:0.000000pt;}
.v1_c03190{vertical-align:1.279488pt;}
.ls11_c03190{letter-spacing:-0.718080pt;}
.lse_c03190{letter-spacing:-0.705408pt;}
.ls19_c03190{letter-spacing:-0.640000pt;}
.ls10_c03190{letter-spacing:-0.637824pt;}
.ls17_c03190{letter-spacing:-0.617600pt;}
.ls1a_c03190{letter-spacing:-0.576000pt;}
.lsb_c03190{letter-spacing:-0.511104pt;}
.ls18_c03190{letter-spacing:-0.400000pt;}
.ls16_c03190{letter-spacing:-0.345600pt;}
.lsa_c03190{letter-spacing:-0.249216pt;}
.ls14_c03190{letter-spacing:-0.244992pt;}
.ls12_c03190{letter-spacing:-0.232320pt;}
.ls6_c03190{letter-spacing:-0.215424pt;}
.ls8_c03190{letter-spacing:-0.211200pt;}
.ls5_c03190{letter-spacing:-0.105600pt;}
.ls1c_c03190{letter-spacing:0.000000pt;}
.ls2_c03190{letter-spacing:0.005376pt;}
.ls7_c03190{letter-spacing:0.114048pt;}
.lsd_c03190{letter-spacing:0.451968pt;}
.ls1b_c03190{letter-spacing:0.456960pt;}
.ls13_c03190{letter-spacing:0.477312pt;}
.lsc_c03190{letter-spacing:0.515328pt;}
.ls15_c03190{letter-spacing:0.528000pt;}
.ls9_c03190{letter-spacing:0.532224pt;}
.ls3_c03190{letter-spacing:0.544896pt;}
.lsf_c03190{letter-spacing:0.578688pt;}
.ls0_c03190{letter-spacing:0.625152pt;}
.ls4_c03190{letter-spacing:0.637824pt;}
.ls1_c03190{letter-spacing:0.642048pt;}
.ws17_c03190{word-spacing:-13.445376pt;}
.ws10_c03190{word-spacing:-11.088000pt;}
.ws6_c03190{word-spacing:-11.075328pt;}
.wsf_c03190{word-spacing:-11.037312pt;}
.ws3_c03190{word-spacing:-10.348800pt;}
.ws1d_c03190{word-spacing:-0.963072pt;}
.ws1a_c03190{word-spacing:-0.946176pt;}
.ws18_c03190{word-spacing:-0.865920pt;}
.ws22_c03190{word-spacing:-0.639744pt;}
.ws1b_c03190{word-spacing:-0.105600pt;}
.ws20_c03190{word-spacing:-0.088704pt;}
.ws21_c03190{word-spacing:-0.076032pt;}
.ws1c_c03190{word-spacing:-0.071808pt;}
.ws19_c03190{word-spacing:0.000000pt;}
.ws1e_c03190{word-spacing:0.384384pt;}
.ws1f_c03190{word-spacing:0.397056pt;}
.wsa_c03190{word-spacing:2.006400pt;}
.ws9_c03190{word-spacing:3.324288pt;}
.wsc_c03190{word-spacing:3.717120pt;}
.ws12_c03190{word-spacing:4.339200pt;}
.ws15_c03190{word-spacing:4.352000pt;}
.wsb_c03190{word-spacing:4.583040pt;}
.ws11_c03190{word-spacing:5.171200pt;}
.wsd_c03190{word-spacing:5.436288pt;}
.wse_c03190{word-spacing:7.037184pt;}
.ws13_c03190{word-spacing:8.038400pt;}
.ws14_c03190{word-spacing:9.600000pt;}
.ws1_c03190{word-spacing:12.270720pt;}
.ws16_c03190{word-spacing:29.600256pt;}
.ws8_c03190{word-spacing:32.127744pt;}
.ws2_c03190{word-spacing:33.563904pt;}
.ws0_c03190{word-spacing:33.796224pt;}
.ws4_c03190{word-spacing:34.860672pt;}
.ws5_c03190{word-spacing:35.468928pt;}
.ws7_c03190{word-spacing:37.357056pt;}
._0_c03190{margin-left:-1.731840pt;}
._3_c03190{width:1.520640pt;}
._4_c03190{width:2.732928pt;}
._7_c03190{width:11.687808pt;}
._8_c03190{width:13.187328pt;}
._d_c03190{width:14.660096pt;}
._6_c03190{width:15.742848pt;}
._5_c03190{width:18.057600pt;}
._c_c03190{width:19.979520pt;}
._9_c03190{width:21.580416pt;}
._2_c03190{width:23.548800pt;}
._b_c03190{width:25.132800pt;}
._1_c03190{width:44.668800pt;}
._a_c03190{width:46.915968pt;}
.fs1_c03190{font-size:32.000000pt;}
.fs0_c03190{font-size:42.240000pt;}
.fs2_c03190{font-size:53.760000pt;}
.y0_c03190{bottom:0.000000pt;}
.y27_c03190{bottom:130.666267pt;}
.y2d_c03190{bottom:153.067067pt;}
.y2c_c03190{bottom:161.067067pt;}
.y29_c03190{bottom:165.866875pt;}
.y2b_c03190{bottom:169.067067pt;}
.y28_c03190{bottom:174.507067pt;}
.y2a_c03190{bottom:177.067067pt;}
.y26_c03190{bottom:231.786715pt;}
.y25_c03190{bottom:245.226427pt;}
.y24_c03190{bottom:277.226395pt;}
.y23_c03190{bottom:290.666107pt;}
.y22_c03190{bottom:303.785851pt;}
.y21_c03190{bottom:317.225563pt;}
.y1f_c03190{bottom:361.386427pt;}
.y1b_c03190{bottom:377.386939pt;}
.y20_c03190{bottom:407.786011pt;}
.y1e_c03190{bottom:437.226235pt;}
.y1d_c03190{bottom:453.226747pt;}
.y1a_c03190{bottom:470.507131pt;}
.y19_c03190{bottom:482.666971pt;}
.y1c_c03190{bottom:497.386555pt;}
.y18_c03190{bottom:513.387067pt;}
.y2e_c03190{bottom:546.027067pt;}
.y10_c03190{bottom:593.386235pt;}
.y16_c03190{bottom:615.787067pt;}
.y15_c03190{bottom:623.787067pt;}
.y12_c03190{bottom:628.586875pt;}
.y14_c03190{bottom:631.787067pt;}
.y11_c03190{bottom:637.227067pt;}
.y13_c03190{bottom:639.787067pt;}
.yf_c03190{bottom:694.506683pt;}
.ye_c03190{bottom:707.946395pt;}
.yd_c03190{bottom:739.946363pt;}
.yc_c03190{bottom:753.386075pt;}
.yb_c03190{bottom:766.505819pt;}
.ya_c03190{bottom:779.945531pt;}
.y8_c03190{bottom:823.786427pt;}
.y4_c03190{bottom:839.786939pt;}
.y9_c03190{bottom:870.505979pt;}
.y7_c03190{bottom:899.946203pt;}
.y6_c03190{bottom:915.946715pt;}
.y3_c03190{bottom:933.227099pt;}
.y2_c03190{bottom:945.386939pt;}
.y5_c03190{bottom:959.786555pt;}
.y1_c03190{bottom:975.787067pt;}
.y17_c03190{bottom:1008.747067pt;}
.h4_c03190{height:28.078125pt;}
.h3_c03190{height:28.916250pt;}
.h1_c03190{height:37.063125pt;}
.h2_c03190{height:37.166250pt;}
.h5_c03190{height:48.581988pt;}
.h0_c03190{height:1122.666667pt;}
.w1_c03190{width:793.333333pt;}
.w0_c03190{width:793.626667pt;}
.x0_c03190{left:0.000000pt;}
.xe_c03190{left:104.000000pt;}
.x9_c03190{left:391.999872pt;}
.x5_c03190{left:396.160512pt;}
.xc_c03190{left:400.960000pt;}
.x8_c03190{left:404.799648pt;}
.x6_c03190{left:410.560128pt;}
.x1_c03190{left:411.840000pt;}
.xb_c03190{left:429.760320pt;}
.xa_c03190{left:437.439552pt;}
.x7_c03190{left:438.400512pt;}
.xd_c03190{left:450.560320pt;}
.x4_c03190{left:455.039904pt;}
.x2_c03190{left:468.159648pt;}
.x3_c03190{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03191 {
    display:none;
  }
  .loading-indicator_c03191.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03191 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03191 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03191" -> "#page-container .classname_c03191")
 */
.pf_c03191 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03191 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03191.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03191 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03191 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03191 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03191 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03191 {overflow:visible;}
  }
}
.c_c03191 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03191 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03191:after { /* webkit #35443 */
  content: '';
}
.t_c03191:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03191 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03191 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03191 { /* info for Javascript */
  display:none;
}
.l_c03191 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03191 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03191 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03191:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03191 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03191.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03191.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03191 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03191;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03191{font-family:ff1_c03191;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03191;src:url('chunks/assets/font_29da5ffb550234b2135f1150.woff2')format("woff");}.ff2_c03191{font-family:ff2_c03191;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03191;src:url('chunks/assets/font_822ff517dfbfd6ed2445d06e.woff2')format("woff");}.ff3_c03191{font-family:ff3_c03191;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03191{vertical-align:0.000000px;}
.v1_c03191{vertical-align:1.439424px;}
.ls11_c03191{letter-spacing:-0.798336px;}
.lse_c03191{letter-spacing:-0.793584px;}
.ls19_c03191{letter-spacing:-0.720000px;}
.ls10_c03191{letter-spacing:-0.717552px;}
.ls17_c03191{letter-spacing:-0.694800px;}
.ls1a_c03191{letter-spacing:-0.648000px;}
.lsb_c03191{letter-spacing:-0.574992px;}
.ls18_c03191{letter-spacing:-0.450000px;}
.ls16_c03191{letter-spacing:-0.388800px;}
.lsa_c03191{letter-spacing:-0.280368px;}
.ls14_c03191{letter-spacing:-0.275616px;}
.ls12_c03191{letter-spacing:-0.261360px;}
.ls6_c03191{letter-spacing:-0.242352px;}
.ls8_c03191{letter-spacing:-0.237600px;}
.ls5_c03191{letter-spacing:-0.118800px;}
.ls1c_c03191{letter-spacing:0.000000px;}
.ls2_c03191{letter-spacing:0.006048px;}
.ls7_c03191{letter-spacing:0.128304px;}
.lsd_c03191{letter-spacing:0.508464px;}
.ls1b_c03191{letter-spacing:0.514080px;}
.ls13_c03191{letter-spacing:0.536976px;}
.lsc_c03191{letter-spacing:0.579744px;}
.ls15_c03191{letter-spacing:0.594000px;}
.ls9_c03191{letter-spacing:0.598752px;}
.ls3_c03191{letter-spacing:0.613008px;}
.lsf_c03191{letter-spacing:0.651024px;}
.ls0_c03191{letter-spacing:0.703296px;}
.ls4_c03191{letter-spacing:0.717552px;}
.ls1_c03191{letter-spacing:0.722304px;}
.sc__c03191{text-shadow:none;}
.sc0_c03191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03191{-webkit-text-stroke:0px transparent;}
.sc0_c03191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws18_c03191{word-spacing:-15.126048px;}
.ws11_c03191{word-spacing:-12.474000px;}
.ws6_c03191{word-spacing:-12.459744px;}
.ws10_c03191{word-spacing:-12.416976px;}
.ws3_c03191{word-spacing:-11.642400px;}
.ws1e_c03191{word-spacing:-1.083456px;}
.ws1b_c03191{word-spacing:-1.064448px;}
.ws19_c03191{word-spacing:-0.974160px;}
.ws23_c03191{word-spacing:-0.719712px;}
.ws1c_c03191{word-spacing:-0.118800px;}
.ws21_c03191{word-spacing:-0.099792px;}
.ws22_c03191{word-spacing:-0.085536px;}
.ws1d_c03191{word-spacing:-0.080784px;}
.ws1a_c03191{word-spacing:0.000000px;}
.ws1f_c03191{word-spacing:0.432432px;}
.ws20_c03191{word-spacing:0.437184px;}
.wsa_c03191{word-spacing:2.257200px;}
.ws9_c03191{word-spacing:3.739824px;}
.wsc_c03191{word-spacing:4.181760px;}
.ws13_c03191{word-spacing:4.881600px;}
.ws16_c03191{word-spacing:4.896000px;}
.wsb_c03191{word-spacing:5.155920px;}
.ws12_c03191{word-spacing:5.817600px;}
.wsd_c03191{word-spacing:6.115824px;}
.wsf_c03191{word-spacing:7.916832px;}
.ws14_c03191{word-spacing:9.043200px;}
.ws15_c03191{word-spacing:10.800000px;}
.wse_c03191{word-spacing:12.350448px;}
.ws1_c03191{word-spacing:13.804560px;}
.ws17_c03191{word-spacing:33.300288px;}
.ws8_c03191{word-spacing:36.143712px;}
.ws2_c03191{word-spacing:37.759392px;}
.ws0_c03191{word-spacing:38.020752px;}
.ws4_c03191{word-spacing:39.218256px;}
.ws5_c03191{word-spacing:39.902544px;}
.ws7_c03191{word-spacing:42.026688px;}
._0_c03191{margin-left:-1.948320px;}
._3_c03191{width:1.710720px;}
._4_c03191{width:3.074544px;}
._7_c03191{width:13.148784px;}
._8_c03191{width:14.835744px;}
._10_c03191{width:16.492608px;}
._6_c03191{width:17.710704px;}
._5_c03191{width:20.314800px;}
._f_c03191{width:21.569328px;}
._e_c03191{width:22.966416px;}
._9_c03191{width:24.277968px;}
._2_c03191{width:26.492400px;}
._a_c03191{width:27.651888px;}
._b_c03191{width:28.892160px;}
._c_c03191{width:34.157376px;}
._1_c03191{width:50.252400px;}
._d_c03191{width:52.780464px;}
.fc0_c03191{color:rgb(0,0,0);}
.fs1_c03191{font-size:36.000000px;}
.fs0_c03191{font-size:47.520000px;}
.fs2_c03191{font-size:60.480000px;}
.y0_c03191{bottom:0.000000px;}
.y26_c03191{bottom:146.999550px;}
.y2c_c03191{bottom:172.200450px;}
.y2b_c03191{bottom:181.200450px;}
.y28_c03191{bottom:186.600234px;}
.y2a_c03191{bottom:190.200450px;}
.y27_c03191{bottom:196.320450px;}
.y29_c03191{bottom:199.200450px;}
.y25_c03191{bottom:275.879730px;}
.y24_c03191{bottom:326.999370px;}
.y23_c03191{bottom:341.759082px;}
.y22_c03191{bottom:356.878758px;}
.y20_c03191{bottom:406.559730px;}
.y1c_c03191{bottom:424.560306px;}
.y21_c03191{bottom:458.759262px;}
.y1f_c03191{bottom:491.879514px;}
.y1e_c03191{bottom:509.880090px;}
.y1b_c03191{bottom:529.320522px;}
.y1a_c03191{bottom:543.000342px;}
.y1d_c03191{bottom:559.559874px;}
.y19_c03191{bottom:577.560450px;}
.y2d_c03191{bottom:614.280450px;}
.y11_c03191{bottom:667.559514px;}
.y17_c03191{bottom:692.760450px;}
.y16_c03191{bottom:701.760450px;}
.y13_c03191{bottom:707.160234px;}
.y15_c03191{bottom:710.760450px;}
.y12_c03191{bottom:716.880450px;}
.y14_c03191{bottom:719.760450px;}
.y10_c03191{bottom:781.320018px;}
.yf_c03191{bottom:796.439694px;}
.ye_c03191{bottom:817.319982px;}
.yd_c03191{bottom:832.439658px;}
.yc_c03191{bottom:847.559334px;}
.yb_c03191{bottom:862.319046px;}
.ya_c03191{bottom:877.438722px;}
.y8_c03191{bottom:926.759730px;}
.y4_c03191{bottom:944.760306px;}
.y9_c03191{bottom:979.319226px;}
.y7_c03191{bottom:1012.439478px;}
.y6_c03191{bottom:1030.440054px;}
.y3_c03191{bottom:1049.880486px;}
.y2_c03191{bottom:1063.560306px;}
.y5_c03191{bottom:1079.759874px;}
.y1_c03191{bottom:1097.760450px;}
.y18_c03191{bottom:1134.840450px;}
.h4_c03191{height:31.587891px;}
.h3_c03191{height:32.530781px;}
.h1_c03191{height:41.696016px;}
.h2_c03191{height:41.812031px;}
.h5_c03191{height:54.654737px;}
.h0_c03191{height:1263.000000px;}
.w1_c03191{width:892.500000px;}
.w0_c03191{width:892.830000px;}
.x0_c03191{left:0.000000px;}
.xe_c03191{left:117.000000px;}
.x9_c03191{left:440.999856px;}
.x5_c03191{left:445.680576px;}
.xc_c03191{left:451.080000px;}
.x8_c03191{left:455.399604px;}
.x6_c03191{left:461.880144px;}
.x1_c03191{left:463.320000px;}
.xb_c03191{left:483.480360px;}
.xa_c03191{left:492.119496px;}
.x7_c03191{left:493.200576px;}
.xd_c03191{left:506.880360px;}
.x4_c03191{left:511.919892px;}
.x2_c03191{left:526.679604px;}
.x3_c03191{left:569.880036px;}
@media print{
.v0_c03191{vertical-align:0.000000pt;}
.v1_c03191{vertical-align:1.279488pt;}
.ls11_c03191{letter-spacing:-0.709632pt;}
.lse_c03191{letter-spacing:-0.705408pt;}
.ls19_c03191{letter-spacing:-0.640000pt;}
.ls10_c03191{letter-spacing:-0.637824pt;}
.ls17_c03191{letter-spacing:-0.617600pt;}
.ls1a_c03191{letter-spacing:-0.576000pt;}
.lsb_c03191{letter-spacing:-0.511104pt;}
.ls18_c03191{letter-spacing:-0.400000pt;}
.ls16_c03191{letter-spacing:-0.345600pt;}
.lsa_c03191{letter-spacing:-0.249216pt;}
.ls14_c03191{letter-spacing:-0.244992pt;}
.ls12_c03191{letter-spacing:-0.232320pt;}
.ls6_c03191{letter-spacing:-0.215424pt;}
.ls8_c03191{letter-spacing:-0.211200pt;}
.ls5_c03191{letter-spacing:-0.105600pt;}
.ls1c_c03191{letter-spacing:0.000000pt;}
.ls2_c03191{letter-spacing:0.005376pt;}
.ls7_c03191{letter-spacing:0.114048pt;}
.lsd_c03191{letter-spacing:0.451968pt;}
.ls1b_c03191{letter-spacing:0.456960pt;}
.ls13_c03191{letter-spacing:0.477312pt;}
.lsc_c03191{letter-spacing:0.515328pt;}
.ls15_c03191{letter-spacing:0.528000pt;}
.ls9_c03191{letter-spacing:0.532224pt;}
.ls3_c03191{letter-spacing:0.544896pt;}
.lsf_c03191{letter-spacing:0.578688pt;}
.ls0_c03191{letter-spacing:0.625152pt;}
.ls4_c03191{letter-spacing:0.637824pt;}
.ls1_c03191{letter-spacing:0.642048pt;}
.ws18_c03191{word-spacing:-13.445376pt;}
.ws11_c03191{word-spacing:-11.088000pt;}
.ws6_c03191{word-spacing:-11.075328pt;}
.ws10_c03191{word-spacing:-11.037312pt;}
.ws3_c03191{word-spacing:-10.348800pt;}
.ws1e_c03191{word-spacing:-0.963072pt;}
.ws1b_c03191{word-spacing:-0.946176pt;}
.ws19_c03191{word-spacing:-0.865920pt;}
.ws23_c03191{word-spacing:-0.639744pt;}
.ws1c_c03191{word-spacing:-0.105600pt;}
.ws21_c03191{word-spacing:-0.088704pt;}
.ws22_c03191{word-spacing:-0.076032pt;}
.ws1d_c03191{word-spacing:-0.071808pt;}
.ws1a_c03191{word-spacing:0.000000pt;}
.ws1f_c03191{word-spacing:0.384384pt;}
.ws20_c03191{word-spacing:0.388608pt;}
.wsa_c03191{word-spacing:2.006400pt;}
.ws9_c03191{word-spacing:3.324288pt;}
.wsc_c03191{word-spacing:3.717120pt;}
.ws13_c03191{word-spacing:4.339200pt;}
.ws16_c03191{word-spacing:4.352000pt;}
.wsb_c03191{word-spacing:4.583040pt;}
.ws12_c03191{word-spacing:5.171200pt;}
.wsd_c03191{word-spacing:5.436288pt;}
.wsf_c03191{word-spacing:7.037184pt;}
.ws14_c03191{word-spacing:8.038400pt;}
.ws15_c03191{word-spacing:9.600000pt;}
.wse_c03191{word-spacing:10.978176pt;}
.ws1_c03191{word-spacing:12.270720pt;}
.ws17_c03191{word-spacing:29.600256pt;}
.ws8_c03191{word-spacing:32.127744pt;}
.ws2_c03191{word-spacing:33.563904pt;}
.ws0_c03191{word-spacing:33.796224pt;}
.ws4_c03191{word-spacing:34.860672pt;}
.ws5_c03191{word-spacing:35.468928pt;}
.ws7_c03191{word-spacing:37.357056pt;}
._0_c03191{margin-left:-1.731840pt;}
._3_c03191{width:1.520640pt;}
._4_c03191{width:2.732928pt;}
._7_c03191{width:11.687808pt;}
._8_c03191{width:13.187328pt;}
._10_c03191{width:14.660096pt;}
._6_c03191{width:15.742848pt;}
._5_c03191{width:18.057600pt;}
._f_c03191{width:19.172736pt;}
._e_c03191{width:20.414592pt;}
._9_c03191{width:21.580416pt;}
._2_c03191{width:23.548800pt;}
._a_c03191{width:24.579456pt;}
._b_c03191{width:25.681920pt;}
._c_c03191{width:30.362112pt;}
._1_c03191{width:44.668800pt;}
._d_c03191{width:46.915968pt;}
.fs1_c03191{font-size:32.000000pt;}
.fs0_c03191{font-size:42.240000pt;}
.fs2_c03191{font-size:53.760000pt;}
.y0_c03191{bottom:0.000000pt;}
.y26_c03191{bottom:130.666267pt;}
.y2c_c03191{bottom:153.067067pt;}
.y2b_c03191{bottom:161.067067pt;}
.y28_c03191{bottom:165.866875pt;}
.y2a_c03191{bottom:169.067067pt;}
.y27_c03191{bottom:174.507067pt;}
.y29_c03191{bottom:177.067067pt;}
.y25_c03191{bottom:245.226427pt;}
.y24_c03191{bottom:290.666107pt;}
.y23_c03191{bottom:303.785851pt;}
.y22_c03191{bottom:317.225563pt;}
.y20_c03191{bottom:361.386427pt;}
.y1c_c03191{bottom:377.386939pt;}
.y21_c03191{bottom:407.786011pt;}
.y1f_c03191{bottom:437.226235pt;}
.y1e_c03191{bottom:453.226747pt;}
.y1b_c03191{bottom:470.507131pt;}
.y1a_c03191{bottom:482.666971pt;}
.y1d_c03191{bottom:497.386555pt;}
.y19_c03191{bottom:513.387067pt;}
.y2d_c03191{bottom:546.027067pt;}
.y11_c03191{bottom:593.386235pt;}
.y17_c03191{bottom:615.787067pt;}
.y16_c03191{bottom:623.787067pt;}
.y13_c03191{bottom:628.586875pt;}
.y15_c03191{bottom:631.787067pt;}
.y12_c03191{bottom:637.227067pt;}
.y14_c03191{bottom:639.787067pt;}
.y10_c03191{bottom:694.506683pt;}
.yf_c03191{bottom:707.946395pt;}
.ye_c03191{bottom:726.506651pt;}
.yd_c03191{bottom:739.946363pt;}
.yc_c03191{bottom:753.386075pt;}
.yb_c03191{bottom:766.505819pt;}
.ya_c03191{bottom:779.945531pt;}
.y8_c03191{bottom:823.786427pt;}
.y4_c03191{bottom:839.786939pt;}
.y9_c03191{bottom:870.505979pt;}
.y7_c03191{bottom:899.946203pt;}
.y6_c03191{bottom:915.946715pt;}
.y3_c03191{bottom:933.227099pt;}
.y2_c03191{bottom:945.386939pt;}
.y5_c03191{bottom:959.786555pt;}
.y1_c03191{bottom:975.787067pt;}
.y18_c03191{bottom:1008.747067pt;}
.h4_c03191{height:28.078125pt;}
.h3_c03191{height:28.916250pt;}
.h1_c03191{height:37.063125pt;}
.h2_c03191{height:37.166250pt;}
.h5_c03191{height:48.581988pt;}
.h0_c03191{height:1122.666667pt;}
.w1_c03191{width:793.333333pt;}
.w0_c03191{width:793.626667pt;}
.x0_c03191{left:0.000000pt;}
.xe_c03191{left:104.000000pt;}
.x9_c03191{left:391.999872pt;}
.x5_c03191{left:396.160512pt;}
.xc_c03191{left:400.960000pt;}
.x8_c03191{left:404.799648pt;}
.x6_c03191{left:410.560128pt;}
.x1_c03191{left:411.840000pt;}
.xb_c03191{left:429.760320pt;}
.xa_c03191{left:437.439552pt;}
.x7_c03191{left:438.400512pt;}
.xd_c03191{left:450.560320pt;}
.x4_c03191{left:455.039904pt;}
.x2_c03191{left:468.159648pt;}
.x3_c03191{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03192 {
    display:none;
  }
  .loading-indicator_c03192.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03192 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03192 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03192" -> "#page-container .classname_c03192")
 */
.pf_c03192 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03192 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03192.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03192 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03192 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03192 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03192 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03192 {overflow:visible;}
  }
}
.c_c03192 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03192 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03192:after { /* webkit #35443 */
  content: '';
}
.t_c03192:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03192 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03192 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03192 { /* info for Javascript */
  display:none;
}
.l_c03192 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03192 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03192 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03192:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03192 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03192.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03192.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03192 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03192{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03192;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03192{font-family:ff1_c03192;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03192;src:url('chunks/assets/font_2255de2d8c3d5d3ad4a766bc.woff2')format("woff");}.ff2_c03192{font-family:ff2_c03192;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03192;src:url('chunks/assets/font_9c0fea7ac90a408b35cfe25f.woff2')format("woff");}.ff3_c03192{font-family:ff3_c03192;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03192{vertical-align:0.000000px;}
.v1_c03192{vertical-align:1.439424px;}
.v2_c03192{vertical-align:33.121440px;}
.ls28_c03192{letter-spacing:-1.425600px;}
.ls14_c03192{letter-spacing:-1.197504px;}
.ls12_c03192{letter-spacing:-0.807840px;}
.lsf_c03192{letter-spacing:-0.793584px;}
.ls23_c03192{letter-spacing:-0.765072px;}
.ls29_c03192{letter-spacing:-0.760320px;}
.ls2a_c03192{letter-spacing:-0.722304px;}
.ls1c_c03192{letter-spacing:-0.720000px;}
.ls11_c03192{letter-spacing:-0.717552px;}
.ls1a_c03192{letter-spacing:-0.694800px;}
.ls1d_c03192{letter-spacing:-0.676800px;}
.ls1f_c03192{letter-spacing:-0.644400px;}
.lsc_c03192{letter-spacing:-0.574992px;}
.ls1e_c03192{letter-spacing:-0.396000px;}
.ls19_c03192{letter-spacing:-0.388800px;}
.ls24_c03192{letter-spacing:-0.361152px;}
.ls1b_c03192{letter-spacing:-0.360000px;}
.ls15_c03192{letter-spacing:-0.304128px;}
.lsb_c03192{letter-spacing:-0.280368px;}
.ls17_c03192{letter-spacing:-0.275616px;}
.ls13_c03192{letter-spacing:-0.261360px;}
.ls7_c03192{letter-spacing:-0.242352px;}
.ls9_c03192{letter-spacing:-0.237600px;}
.ls6_c03192{letter-spacing:-0.118800px;}
.ls2c_c03192{letter-spacing:-0.095040px;}
.ls21_c03192{letter-spacing:0.000000px;}
.ls2_c03192{letter-spacing:0.006048px;}
.ls2b_c03192{letter-spacing:0.009504px;}
.ls27_c03192{letter-spacing:0.038016px;}
.ls3_c03192{letter-spacing:0.123552px;}
.ls8_c03192{letter-spacing:0.128304px;}
.ls22_c03192{letter-spacing:0.228096px;}
.lse_c03192{letter-spacing:0.508464px;}
.ls20_c03192{letter-spacing:0.514080px;}
.ls16_c03192{letter-spacing:0.536976px;}
.lsd_c03192{letter-spacing:0.579744px;}
.ls18_c03192{letter-spacing:0.594000px;}
.lsa_c03192{letter-spacing:0.598752px;}
.ls4_c03192{letter-spacing:0.613008px;}
.ls10_c03192{letter-spacing:0.651024px;}
.ls26_c03192{letter-spacing:0.670032px;}
.ls25_c03192{letter-spacing:0.693792px;}
.ls0_c03192{letter-spacing:0.703296px;}
.ls5_c03192{letter-spacing:0.717552px;}
.ls1_c03192{letter-spacing:0.722304px;}
.sc__c03192{text-shadow:none;}
.sc0_c03192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03192{-webkit-text-stroke:0px transparent;}
.sc0_c03192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1c_c03192{word-spacing:-15.126048px;}
.ws11_c03192{word-spacing:-12.602304px;}
.ws13_c03192{word-spacing:-12.474000px;}
.ws6_c03192{word-spacing:-12.459744px;}
.ws12_c03192{word-spacing:-12.416976px;}
.ws1d_c03192{word-spacing:-11.761200px;}
.ws3_c03192{word-spacing:-11.642400px;}
.wsf_c03192{word-spacing:-11.575872px;}
.ws26_c03192{word-spacing:-10.454400px;}
.ws31_c03192{word-spacing:-1.083456px;}
.ws2e_c03192{word-spacing:-1.064448px;}
.ws39_c03192{word-spacing:-1.031184px;}
.ws2c_c03192{word-spacing:-0.974160px;}
.ws37_c03192{word-spacing:-0.719712px;}
.ws38_c03192{word-spacing:-0.589248px;}
.ws3c_c03192{word-spacing:-0.484704px;}
.ws3a_c03192{word-spacing:-0.399168px;}
.ws3d_c03192{word-spacing:-0.266112px;}
.ws2f_c03192{word-spacing:-0.118800px;}
.ws34_c03192{word-spacing:-0.099792px;}
.ws35_c03192{word-spacing:-0.085536px;}
.ws30_c03192{word-spacing:-0.080784px;}
.ws2d_c03192{word-spacing:0.000000px;}
.ws36_c03192{word-spacing:0.360000px;}
.ws3b_c03192{word-spacing:0.361152px;}
.ws32_c03192{word-spacing:0.432432px;}
.ws33_c03192{word-spacing:0.446688px;}
.ws1e_c03192{word-spacing:0.845856px;}
.ws1f_c03192{word-spacing:1.330560px;}
.ws10_c03192{word-spacing:2.157408px;}
.wsa_c03192{word-spacing:2.257200px;}
.ws20_c03192{word-spacing:3.331152px;}
.ws9_c03192{word-spacing:3.739824px;}
.wsc_c03192{word-spacing:4.181760px;}
.ws25_c03192{word-spacing:5.037120px;}
.wsb_c03192{word-spacing:5.155920px;}
.wsd_c03192{word-spacing:6.115824px;}
.ws18_c03192{word-spacing:6.393600px;}
.ws15_c03192{word-spacing:6.429600px;}
.ws22_c03192{word-spacing:6.648048px;}
.ws14_c03192{word-spacing:7.257600px;}
.ws19_c03192{word-spacing:8.726400px;}
.ws16_c03192{word-spacing:10.299600px;}
.ws1a_c03192{word-spacing:10.648800px;}
.ws17_c03192{word-spacing:10.800000px;}
.wse_c03192{word-spacing:11.784960px;}
.ws2b_c03192{word-spacing:12.236400px;}
.ws1_c03192{word-spacing:13.804560px;}
.ws2a_c03192{word-spacing:15.101856px;}
.ws28_c03192{word-spacing:16.280352px;}
.ws23_c03192{word-spacing:25.318656px;}
.ws24_c03192{word-spacing:27.328752px;}
.ws29_c03192{word-spacing:30.298752px;}
.ws1b_c03192{word-spacing:33.300288px;}
.ws27_c03192{word-spacing:34.836912px;}
.ws8_c03192{word-spacing:36.143712px;}
.ws21_c03192{word-spacing:36.742464px;}
.ws2_c03192{word-spacing:37.759392px;}
.ws0_c03192{word-spacing:38.020752px;}
.ws4_c03192{word-spacing:39.218256px;}
.ws5_c03192{word-spacing:39.902544px;}
.ws7_c03192{word-spacing:42.026688px;}
._0_c03192{margin-left:-1.948320px;}
._3_c03192{width:1.710720px;}
._4_c03192{width:3.074544px;}
._10_c03192{width:9.347184px;}
._7_c03192{width:13.148784px;}
._8_c03192{width:14.835744px;}
._b_c03192{width:16.361136px;}
._6_c03192{width:17.710704px;}
._5_c03192{width:20.314800px;}
._d_c03192{width:22.834080px;}
._9_c03192{width:24.277968px;}
._2_c03192{width:26.492400px;}
._12_c03192{width:28.668816px;}
._11_c03192{width:30.745440px;}
._c_c03192{width:35.944128px;}
._e_c03192{width:42.582672px;}
._f_c03192{width:43.661376px;}
._1_c03192{width:50.252400px;}
._a_c03192{width:52.780464px;}
.fc0_c03192{color:rgb(0,0,0);}
.fs1_c03192{font-size:36.000000px;}
.fs0_c03192{font-size:47.520000px;}
.fs2_c03192{font-size:60.480000px;}
.y0_c03192{bottom:0.000000px;}
.y1f_c03192{bottom:4.320450px;}
.y1d_c03192{bottom:18.000450px;}
.y2d_c03192{bottom:131.879802px;}
.y2c_c03192{bottom:146.999478px;}
.y30_c03192{bottom:179.760918px;}
.y2f_c03192{bottom:186.600234px;}
.y2e_c03192{bottom:196.320450px;}
.y2b_c03192{bottom:260.759982px;}
.y2a_c03192{bottom:275.879658px;}
.y29_c03192{bottom:341.760198px;}
.y28_c03192{bottom:356.879874px;}
.y26_c03192{bottom:391.439982px;}
.y25_c03192{bottom:406.559658px;}
.y21_c03192{bottom:424.560234px;}
.y27_c03192{bottom:458.760378px;}
.y24_c03192{bottom:491.879442px;}
.y23_c03192{bottom:509.880018px;}
.y1c_c03192{bottom:525.000000px;}
.y20_c03192{bottom:529.320450px;}
.y1b_c03192{bottom:543.000342px;}
.y1e_c03192{bottom:543.000450px;}
.y22_c03192{bottom:559.559802px;}
.y1a_c03192{bottom:577.560450px;}
.y31_c03192{bottom:614.280450px;}
.y12_c03192{bottom:667.560702px;}
.y18_c03192{bottom:692.760450px;}
.y17_c03192{bottom:701.760450px;}
.y14_c03192{bottom:707.160234px;}
.y16_c03192{bottom:710.760450px;}
.y13_c03192{bottom:716.880450px;}
.y15_c03192{bottom:719.760450px;}
.y11_c03192{bottom:751.440630px;}
.y10_c03192{bottom:766.560306px;}
.yf_c03192{bottom:781.320018px;}
.ye_c03192{bottom:796.439694px;}
.yd_c03192{bottom:832.439658px;}
.yc_c03192{bottom:847.559334px;}
.yb_c03192{bottom:862.319046px;}
.ya_c03192{bottom:877.438722px;}
.y8_c03192{bottom:926.759730px;}
.y4_c03192{bottom:944.760306px;}
.y9_c03192{bottom:979.319226px;}
.y7_c03192{bottom:1012.439478px;}
.y6_c03192{bottom:1030.440054px;}
.y3_c03192{bottom:1049.880486px;}
.y2_c03192{bottom:1063.560306px;}
.y5_c03192{bottom:1079.759874px;}
.y1_c03192{bottom:1097.760450px;}
.y19_c03192{bottom:1134.840450px;}
.h6_c03192{height:29.160000px;}
.h4_c03192{height:31.587891px;}
.h3_c03192{height:32.530781px;}
.h1_c03192{height:41.696016px;}
.h2_c03192{height:41.812031px;}
.h5_c03192{height:54.654737px;}
.h7_c03192{height:74.817456px;}
.h0_c03192{height:1263.000000px;}
.w2_c03192{width:215.280000px;}
.w1_c03192{width:892.500000px;}
.w0_c03192{width:892.830000px;}
.x0_c03192{left:0.000000px;}
.xe_c03192{left:117.000000px;}
.x9_c03192{left:440.999856px;}
.x5_c03192{left:445.680576px;}
.xc_c03192{left:451.080000px;}
.x8_c03192{left:455.399604px;}
.x6_c03192{left:461.880144px;}
.x1_c03192{left:463.320000px;}
.xb_c03192{left:483.480360px;}
.xa_c03192{left:492.119496px;}
.x7_c03192{left:493.200576px;}
.xd_c03192{left:506.880360px;}
.x4_c03192{left:511.919892px;}
.x2_c03192{left:526.679604px;}
.x3_c03192{left:569.880036px;}
.xf_c03192{left:577.440000px;}
.x10_c03192{left:632.160000px;}
@media print{
.v0_c03192{vertical-align:0.000000pt;}
.v1_c03192{vertical-align:1.279488pt;}
.v2_c03192{vertical-align:29.441280pt;}
.ls28_c03192{letter-spacing:-1.267200pt;}
.ls14_c03192{letter-spacing:-1.064448pt;}
.ls12_c03192{letter-spacing:-0.718080pt;}
.lsf_c03192{letter-spacing:-0.705408pt;}
.ls23_c03192{letter-spacing:-0.680064pt;}
.ls29_c03192{letter-spacing:-0.675840pt;}
.ls2a_c03192{letter-spacing:-0.642048pt;}
.ls1c_c03192{letter-spacing:-0.640000pt;}
.ls11_c03192{letter-spacing:-0.637824pt;}
.ls1a_c03192{letter-spacing:-0.617600pt;}
.ls1d_c03192{letter-spacing:-0.601600pt;}
.ls1f_c03192{letter-spacing:-0.572800pt;}
.lsc_c03192{letter-spacing:-0.511104pt;}
.ls1e_c03192{letter-spacing:-0.352000pt;}
.ls19_c03192{letter-spacing:-0.345600pt;}
.ls24_c03192{letter-spacing:-0.321024pt;}
.ls1b_c03192{letter-spacing:-0.320000pt;}
.ls15_c03192{letter-spacing:-0.270336pt;}
.lsb_c03192{letter-spacing:-0.249216pt;}
.ls17_c03192{letter-spacing:-0.244992pt;}
.ls13_c03192{letter-spacing:-0.232320pt;}
.ls7_c03192{letter-spacing:-0.215424pt;}
.ls9_c03192{letter-spacing:-0.211200pt;}
.ls6_c03192{letter-spacing:-0.105600pt;}
.ls2c_c03192{letter-spacing:-0.084480pt;}
.ls21_c03192{letter-spacing:0.000000pt;}
.ls2_c03192{letter-spacing:0.005376pt;}
.ls2b_c03192{letter-spacing:0.008448pt;}
.ls27_c03192{letter-spacing:0.033792pt;}
.ls3_c03192{letter-spacing:0.109824pt;}
.ls8_c03192{letter-spacing:0.114048pt;}
.ls22_c03192{letter-spacing:0.202752pt;}
.lse_c03192{letter-spacing:0.451968pt;}
.ls20_c03192{letter-spacing:0.456960pt;}
.ls16_c03192{letter-spacing:0.477312pt;}
.lsd_c03192{letter-spacing:0.515328pt;}
.ls18_c03192{letter-spacing:0.528000pt;}
.lsa_c03192{letter-spacing:0.532224pt;}
.ls4_c03192{letter-spacing:0.544896pt;}
.ls10_c03192{letter-spacing:0.578688pt;}
.ls26_c03192{letter-spacing:0.595584pt;}
.ls25_c03192{letter-spacing:0.616704pt;}
.ls0_c03192{letter-spacing:0.625152pt;}
.ls5_c03192{letter-spacing:0.637824pt;}
.ls1_c03192{letter-spacing:0.642048pt;}
.ws1c_c03192{word-spacing:-13.445376pt;}
.ws11_c03192{word-spacing:-11.202048pt;}
.ws13_c03192{word-spacing:-11.088000pt;}
.ws6_c03192{word-spacing:-11.075328pt;}
.ws12_c03192{word-spacing:-11.037312pt;}
.ws1d_c03192{word-spacing:-10.454400pt;}
.ws3_c03192{word-spacing:-10.348800pt;}
.wsf_c03192{word-spacing:-10.289664pt;}
.ws26_c03192{word-spacing:-9.292800pt;}
.ws31_c03192{word-spacing:-0.963072pt;}
.ws2e_c03192{word-spacing:-0.946176pt;}
.ws39_c03192{word-spacing:-0.916608pt;}
.ws2c_c03192{word-spacing:-0.865920pt;}
.ws37_c03192{word-spacing:-0.639744pt;}
.ws38_c03192{word-spacing:-0.523776pt;}
.ws3c_c03192{word-spacing:-0.430848pt;}
.ws3a_c03192{word-spacing:-0.354816pt;}
.ws3d_c03192{word-spacing:-0.236544pt;}
.ws2f_c03192{word-spacing:-0.105600pt;}
.ws34_c03192{word-spacing:-0.088704pt;}
.ws35_c03192{word-spacing:-0.076032pt;}
.ws30_c03192{word-spacing:-0.071808pt;}
.ws2d_c03192{word-spacing:0.000000pt;}
.ws36_c03192{word-spacing:0.320000pt;}
.ws3b_c03192{word-spacing:0.321024pt;}
.ws32_c03192{word-spacing:0.384384pt;}
.ws33_c03192{word-spacing:0.397056pt;}
.ws1e_c03192{word-spacing:0.751872pt;}
.ws1f_c03192{word-spacing:1.182720pt;}
.ws10_c03192{word-spacing:1.917696pt;}
.wsa_c03192{word-spacing:2.006400pt;}
.ws20_c03192{word-spacing:2.961024pt;}
.ws9_c03192{word-spacing:3.324288pt;}
.wsc_c03192{word-spacing:3.717120pt;}
.ws25_c03192{word-spacing:4.477440pt;}
.wsb_c03192{word-spacing:4.583040pt;}
.wsd_c03192{word-spacing:5.436288pt;}
.ws18_c03192{word-spacing:5.683200pt;}
.ws15_c03192{word-spacing:5.715200pt;}
.ws22_c03192{word-spacing:5.909376pt;}
.ws14_c03192{word-spacing:6.451200pt;}
.ws19_c03192{word-spacing:7.756800pt;}
.ws16_c03192{word-spacing:9.155200pt;}
.ws1a_c03192{word-spacing:9.465600pt;}
.ws17_c03192{word-spacing:9.600000pt;}
.wse_c03192{word-spacing:10.475520pt;}
.ws2b_c03192{word-spacing:10.876800pt;}
.ws1_c03192{word-spacing:12.270720pt;}
.ws2a_c03192{word-spacing:13.423872pt;}
.ws28_c03192{word-spacing:14.471424pt;}
.ws23_c03192{word-spacing:22.505472pt;}
.ws24_c03192{word-spacing:24.292224pt;}
.ws29_c03192{word-spacing:26.932224pt;}
.ws1b_c03192{word-spacing:29.600256pt;}
.ws27_c03192{word-spacing:30.966144pt;}
.ws8_c03192{word-spacing:32.127744pt;}
.ws21_c03192{word-spacing:32.659968pt;}
.ws2_c03192{word-spacing:33.563904pt;}
.ws0_c03192{word-spacing:33.796224pt;}
.ws4_c03192{word-spacing:34.860672pt;}
.ws5_c03192{word-spacing:35.468928pt;}
.ws7_c03192{word-spacing:37.357056pt;}
._0_c03192{margin-left:-1.731840pt;}
._3_c03192{width:1.520640pt;}
._4_c03192{width:2.732928pt;}
._10_c03192{width:8.308608pt;}
._7_c03192{width:11.687808pt;}
._8_c03192{width:13.187328pt;}
._b_c03192{width:14.543232pt;}
._6_c03192{width:15.742848pt;}
._5_c03192{width:18.057600pt;}
._d_c03192{width:20.296960pt;}
._9_c03192{width:21.580416pt;}
._2_c03192{width:23.548800pt;}
._12_c03192{width:25.483392pt;}
._11_c03192{width:27.329280pt;}
._c_c03192{width:31.950336pt;}
._e_c03192{width:37.851264pt;}
._f_c03192{width:38.810112pt;}
._1_c03192{width:44.668800pt;}
._a_c03192{width:46.915968pt;}
.fs1_c03192{font-size:32.000000pt;}
.fs0_c03192{font-size:42.240000pt;}
.fs2_c03192{font-size:53.760000pt;}
.y0_c03192{bottom:0.000000pt;}
.y1f_c03192{bottom:3.840400pt;}
.y1d_c03192{bottom:16.000400pt;}
.y2d_c03192{bottom:117.226491pt;}
.y2c_c03192{bottom:130.666203pt;}
.y30_c03192{bottom:159.787483pt;}
.y2f_c03192{bottom:165.866875pt;}
.y2e_c03192{bottom:174.507067pt;}
.y2b_c03192{bottom:231.786651pt;}
.y2a_c03192{bottom:245.226363pt;}
.y29_c03192{bottom:303.786843pt;}
.y28_c03192{bottom:317.226555pt;}
.y26_c03192{bottom:347.946651pt;}
.y25_c03192{bottom:361.386363pt;}
.y21_c03192{bottom:377.386875pt;}
.y27_c03192{bottom:407.787003pt;}
.y24_c03192{bottom:437.226171pt;}
.y23_c03192{bottom:453.226683pt;}
.y1c_c03192{bottom:466.666667pt;}
.y20_c03192{bottom:470.507067pt;}
.y1b_c03192{bottom:482.666971pt;}
.y1e_c03192{bottom:482.667067pt;}
.y22_c03192{bottom:497.386491pt;}
.y1a_c03192{bottom:513.387067pt;}
.y31_c03192{bottom:546.027067pt;}
.y12_c03192{bottom:593.387291pt;}
.y18_c03192{bottom:615.787067pt;}
.y17_c03192{bottom:623.787067pt;}
.y14_c03192{bottom:628.586875pt;}
.y16_c03192{bottom:631.787067pt;}
.y13_c03192{bottom:637.227067pt;}
.y15_c03192{bottom:639.787067pt;}
.y11_c03192{bottom:667.947227pt;}
.y10_c03192{bottom:681.386939pt;}
.yf_c03192{bottom:694.506683pt;}
.ye_c03192{bottom:707.946395pt;}
.yd_c03192{bottom:739.946363pt;}
.yc_c03192{bottom:753.386075pt;}
.yb_c03192{bottom:766.505819pt;}
.ya_c03192{bottom:779.945531pt;}
.y8_c03192{bottom:823.786427pt;}
.y4_c03192{bottom:839.786939pt;}
.y9_c03192{bottom:870.505979pt;}
.y7_c03192{bottom:899.946203pt;}
.y6_c03192{bottom:915.946715pt;}
.y3_c03192{bottom:933.227099pt;}
.y2_c03192{bottom:945.386939pt;}
.y5_c03192{bottom:959.786555pt;}
.y1_c03192{bottom:975.787067pt;}
.y19_c03192{bottom:1008.747067pt;}
.h6_c03192{height:25.920000pt;}
.h4_c03192{height:28.078125pt;}
.h3_c03192{height:28.916250pt;}
.h1_c03192{height:37.063125pt;}
.h2_c03192{height:37.166250pt;}
.h5_c03192{height:48.581988pt;}
.h7_c03192{height:66.504405pt;}
.h0_c03192{height:1122.666667pt;}
.w2_c03192{width:191.360000pt;}
.w1_c03192{width:793.333333pt;}
.w0_c03192{width:793.626667pt;}
.x0_c03192{left:0.000000pt;}
.xe_c03192{left:104.000000pt;}
.x9_c03192{left:391.999872pt;}
.x5_c03192{left:396.160512pt;}
.xc_c03192{left:400.960000pt;}
.x8_c03192{left:404.799648pt;}
.x6_c03192{left:410.560128pt;}
.x1_c03192{left:411.840000pt;}
.xb_c03192{left:429.760320pt;}
.xa_c03192{left:437.439552pt;}
.x7_c03192{left:438.400512pt;}
.xd_c03192{left:450.560320pt;}
.x4_c03192{left:455.039904pt;}
.x2_c03192{left:468.159648pt;}
.x3_c03192{left:506.560032pt;}
.xf_c03192{left:513.280000pt;}
.x10_c03192{left:561.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03193 {
    display:none;
  }
  .loading-indicator_c03193.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03193 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03193 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03193" -> "#page-container .classname_c03193")
 */
.pf_c03193 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03193 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03193.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03193 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03193 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03193 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03193 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03193 {overflow:visible;}
  }
}
.c_c03193 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03193 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03193:after { /* webkit #35443 */
  content: '';
}
.t_c03193:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03193 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03193 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03193 { /* info for Javascript */
  display:none;
}
.l_c03193 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03193 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03193 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03193:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03193 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03193.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03193.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03193 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03193{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03193;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03193{font-family:ff1_c03193;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03193;src:url('chunks/assets/font_89609e8a5272866d44c40db8.woff2')format("woff");}.ff2_c03193{font-family:ff2_c03193;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03193;src:url('chunks/assets/font_88032aeee0ecc9fed1b2b9c9.woff2')format("woff");}.ff3_c03193{font-family:ff3_c03193;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03193{vertical-align:0.000000px;}
.v2_c03193{vertical-align:1.439424px;}
.v1_c03193{vertical-align:33.121440px;}
.lsc_c03193{letter-spacing:-0.793584px;}
.ls16_c03193{letter-spacing:-0.788832px;}
.ls1b_c03193{letter-spacing:-0.765072px;}
.ls1e_c03193{letter-spacing:-0.736560px;}
.ls11_c03193{letter-spacing:-0.722304px;}
.lsd_c03193{letter-spacing:-0.574992px;}
.ls1d_c03193{letter-spacing:-0.304128px;}
.ls17_c03193{letter-spacing:-0.275616px;}
.ls1f_c03193{letter-spacing:-0.270864px;}
.ls12_c03193{letter-spacing:-0.261360px;}
.ls7_c03193{letter-spacing:-0.242352px;}
.ls5_c03193{letter-spacing:-0.118800px;}
.ls19_c03193{letter-spacing:-0.095040px;}
.ls14_c03193{letter-spacing:-0.047520px;}
.ls6_c03193{letter-spacing:0.000000px;}
.ls2_c03193{letter-spacing:0.006048px;}
.ls9_c03193{letter-spacing:0.014256px;}
.ls10_c03193{letter-spacing:0.038016px;}
.ls1_c03193{letter-spacing:0.123552px;}
.lsa_c03193{letter-spacing:0.128304px;}
.ls8_c03193{letter-spacing:0.228096px;}
.ls13_c03193{letter-spacing:0.237600px;}
.lsf_c03193{letter-spacing:0.508464px;}
.ls1a_c03193{letter-spacing:0.514080px;}
.ls15_c03193{letter-spacing:0.536976px;}
.lse_c03193{letter-spacing:0.579744px;}
.ls18_c03193{letter-spacing:0.594000px;}
.lsb_c03193{letter-spacing:0.598752px;}
.ls3_c03193{letter-spacing:0.613008px;}
.ls1c_c03193{letter-spacing:0.674784px;}
.ls4_c03193{letter-spacing:0.717552px;}
.ls0_c03193{letter-spacing:0.722304px;}
.sc__c03193{text-shadow:none;}
.sc0_c03193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03193{-webkit-text-stroke:0px transparent;}
.sc0_c03193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15_c03193{word-spacing:-15.126048px;}
.ws9_c03193{word-spacing:-12.602304px;}
.ws1a_c03193{word-spacing:-12.474000px;}
.ws18_c03193{word-spacing:-12.459744px;}
.ws13_c03193{word-spacing:-12.003552px;}
.ws0_c03193{word-spacing:-11.761200px;}
.ws20_c03193{word-spacing:-1.083456px;}
.ws28_c03193{word-spacing:-1.035936px;}
.ws1b_c03193{word-spacing:-0.974160px;}
.ws27_c03193{word-spacing:-0.719712px;}
.ws1d_c03193{word-spacing:-0.589248px;}
.ws21_c03193{word-spacing:-0.399168px;}
.ws23_c03193{word-spacing:-0.313632px;}
.ws26_c03193{word-spacing:-0.266112px;}
.ws1e_c03193{word-spacing:-0.118800px;}
.ws22_c03193{word-spacing:-0.099792px;}
.ws2a_c03193{word-spacing:-0.090288px;}
.ws25_c03193{word-spacing:-0.085536px;}
.ws29_c03193{word-spacing:-0.057024px;}
.ws1c_c03193{word-spacing:0.000000px;}
.ws24_c03193{word-spacing:0.427680px;}
.ws1f_c03193{word-spacing:0.432432px;}
.ws1_c03193{word-spacing:0.845856px;}
.ws3_c03193{word-spacing:1.330560px;}
.wsf_c03193{word-spacing:2.157408px;}
.ws7_c03193{word-spacing:2.271456px;}
.ws17_c03193{word-spacing:3.331152px;}
.ws19_c03193{word-spacing:6.629040px;}
.wse_c03193{word-spacing:11.765952px;}
.ws8_c03193{word-spacing:15.035328px;}
.ws11_c03193{word-spacing:17.915040px;}
.wsd_c03193{word-spacing:20.751984px;}
.wsc_c03193{word-spacing:20.984832px;}
.ws12_c03193{word-spacing:30.298752px;}
.ws14_c03193{word-spacing:33.300288px;}
.ws10_c03193{word-spacing:34.836912px;}
.wsb_c03193{word-spacing:36.143712px;}
.ws6_c03193{word-spacing:36.742464px;}
.ws2_c03193{word-spacing:37.759392px;}
.ws16_c03193{word-spacing:38.020752px;}
.ws4_c03193{word-spacing:39.218256px;}
.ws5_c03193{word-spacing:39.902544px;}
.wsa_c03193{word-spacing:42.026688px;}
._0_c03193{margin-left:-1.948320px;}
._2_c03193{width:1.221264px;}
._6_c03193{width:2.223936px;}
._10_c03193{width:12.260160px;}
._3_c03193{width:14.151456px;}
._8_c03193{width:16.218576px;}
._5_c03193{width:18.680112px;}
._7_c03193{width:20.352816px;}
._f_c03193{width:21.987504px;}
._13_c03193{width:23.584176px;}
._a_c03193{width:25.437456px;}
._9_c03193{width:29.909088px;}
._11_c03193{width:31.144608px;}
._12_c03193{width:32.641488px;}
._d_c03193{width:33.834240px;}
._b_c03193{width:35.801568px;}
._c_c03193{width:38.248848px;}
._1_c03193{width:50.252400px;}
._4_c03193{width:51.354864px;}
._e_c03193{width:52.538112px;}
.fc0_c03193{color:rgb(0,0,0);}
.fs0_c03193{font-size:47.520000px;}
.fs1_c03193{font-size:60.480000px;}
.y0_c03193{bottom:0.000000px;}
.y6_c03193{bottom:4.680450px;}
.y4_c03193{bottom:18.360450px;}
.y25_c03193{bottom:131.878686px;}
.y24_c03193{bottom:146.998362px;}
.y27_c03193{bottom:186.600234px;}
.y26_c03193{bottom:196.320450px;}
.y23_c03193{bottom:275.878542px;}
.y22_c03193{bottom:356.878758px;}
.y20_c03193{bottom:406.559730px;}
.y1c_c03193{bottom:424.560306px;}
.y21_c03193{bottom:458.759262px;}
.y1f_c03193{bottom:491.879514px;}
.y1e_c03193{bottom:509.880090px;}
.y1b_c03193{bottom:543.000342px;}
.y1d_c03193{bottom:559.559874px;}
.y1a_c03193{bottom:577.560450px;}
.y28_c03193{bottom:614.280450px;}
.y16_c03193{bottom:652.442178px;}
.y15_c03193{bottom:667.561854px;}
.y18_c03193{bottom:707.160234px;}
.y17_c03193{bottom:716.880450px;}
.y14_c03193{bottom:766.561458px;}
.y13_c03193{bottom:781.321170px;}
.y12_c03193{bottom:796.440846px;}
.y11_c03193{bottom:862.320198px;}
.y10_c03193{bottom:877.439874px;}
.ye_c03193{bottom:896.880306px;}
.yd_c03193{bottom:911.999982px;}
.yc_c03193{bottom:926.759694px;}
.y8_c03193{bottom:944.760270px;}
.yf_c03193{bottom:979.320378px;}
.yb_c03193{bottom:1012.439442px;}
.ya_c03193{bottom:1030.440018px;}
.y3_c03193{bottom:1045.200000px;}
.y7_c03193{bottom:1049.880450px;}
.y2_c03193{bottom:1063.560306px;}
.y5_c03193{bottom:1063.560450px;}
.y9_c03193{bottom:1079.759838px;}
.y1_c03193{bottom:1097.760450px;}
.y19_c03193{bottom:1134.840450px;}
.h3_c03193{height:29.520000px;}
.h2_c03193{height:32.530781px;}
.h1_c03193{height:41.696016px;}
.h4_c03193{height:41.812031px;}
.h6_c03193{height:54.654737px;}
.h5_c03193{height:74.817456px;}
.h0_c03193{height:1263.000000px;}
.w2_c03193{width:215.280000px;}
.w1_c03193{width:892.500000px;}
.w0_c03193{width:892.830000px;}
.x0_c03193{left:0.000000px;}
.x10_c03193{left:117.000000px;}
.xb_c03193{left:441.000144px;}
.x7_c03193{left:445.680864px;}
.xe_c03193{left:451.080000px;}
.xa_c03193{left:455.399892px;}
.x8_c03193{left:461.880432px;}
.x1_c03193{left:463.320000px;}
.xd_c03193{left:483.480648px;}
.xc_c03193{left:492.119784px;}
.x9_c03193{left:493.200864px;}
.xf_c03193{left:506.880360px;}
.x6_c03193{left:511.920180px;}
.x2_c03193{left:526.679604px;}
.x3_c03193{left:569.520000px;}
.x4_c03193{left:577.440000px;}
.x5_c03193{left:632.520000px;}
@media print{
.v0_c03193{vertical-align:0.000000pt;}
.v2_c03193{vertical-align:1.279488pt;}
.v1_c03193{vertical-align:29.441280pt;}
.lsc_c03193{letter-spacing:-0.705408pt;}
.ls16_c03193{letter-spacing:-0.701184pt;}
.ls1b_c03193{letter-spacing:-0.680064pt;}
.ls1e_c03193{letter-spacing:-0.654720pt;}
.ls11_c03193{letter-spacing:-0.642048pt;}
.lsd_c03193{letter-spacing:-0.511104pt;}
.ls1d_c03193{letter-spacing:-0.270336pt;}
.ls17_c03193{letter-spacing:-0.244992pt;}
.ls1f_c03193{letter-spacing:-0.240768pt;}
.ls12_c03193{letter-spacing:-0.232320pt;}
.ls7_c03193{letter-spacing:-0.215424pt;}
.ls5_c03193{letter-spacing:-0.105600pt;}
.ls19_c03193{letter-spacing:-0.084480pt;}
.ls14_c03193{letter-spacing:-0.042240pt;}
.ls6_c03193{letter-spacing:0.000000pt;}
.ls2_c03193{letter-spacing:0.005376pt;}
.ls9_c03193{letter-spacing:0.012672pt;}
.ls10_c03193{letter-spacing:0.033792pt;}
.ls1_c03193{letter-spacing:0.109824pt;}
.lsa_c03193{letter-spacing:0.114048pt;}
.ls8_c03193{letter-spacing:0.202752pt;}
.ls13_c03193{letter-spacing:0.211200pt;}
.lsf_c03193{letter-spacing:0.451968pt;}
.ls1a_c03193{letter-spacing:0.456960pt;}
.ls15_c03193{letter-spacing:0.477312pt;}
.lse_c03193{letter-spacing:0.515328pt;}
.ls18_c03193{letter-spacing:0.528000pt;}
.lsb_c03193{letter-spacing:0.532224pt;}
.ls3_c03193{letter-spacing:0.544896pt;}
.ls1c_c03193{letter-spacing:0.599808pt;}
.ls4_c03193{letter-spacing:0.637824pt;}
.ls0_c03193{letter-spacing:0.642048pt;}
.ws15_c03193{word-spacing:-13.445376pt;}
.ws9_c03193{word-spacing:-11.202048pt;}
.ws1a_c03193{word-spacing:-11.088000pt;}
.ws18_c03193{word-spacing:-11.075328pt;}
.ws13_c03193{word-spacing:-10.669824pt;}
.ws0_c03193{word-spacing:-10.454400pt;}
.ws20_c03193{word-spacing:-0.963072pt;}
.ws28_c03193{word-spacing:-0.920832pt;}
.ws1b_c03193{word-spacing:-0.865920pt;}
.ws27_c03193{word-spacing:-0.639744pt;}
.ws1d_c03193{word-spacing:-0.523776pt;}
.ws21_c03193{word-spacing:-0.354816pt;}
.ws23_c03193{word-spacing:-0.278784pt;}
.ws26_c03193{word-spacing:-0.236544pt;}
.ws1e_c03193{word-spacing:-0.105600pt;}
.ws22_c03193{word-spacing:-0.088704pt;}
.ws2a_c03193{word-spacing:-0.080256pt;}
.ws25_c03193{word-spacing:-0.076032pt;}
.ws29_c03193{word-spacing:-0.050688pt;}
.ws1c_c03193{word-spacing:0.000000pt;}
.ws24_c03193{word-spacing:0.380160pt;}
.ws1f_c03193{word-spacing:0.384384pt;}
.ws1_c03193{word-spacing:0.751872pt;}
.ws3_c03193{word-spacing:1.182720pt;}
.wsf_c03193{word-spacing:1.917696pt;}
.ws7_c03193{word-spacing:2.019072pt;}
.ws17_c03193{word-spacing:2.961024pt;}
.ws19_c03193{word-spacing:5.892480pt;}
.wse_c03193{word-spacing:10.458624pt;}
.ws8_c03193{word-spacing:13.364736pt;}
.ws11_c03193{word-spacing:15.924480pt;}
.wsd_c03193{word-spacing:18.446208pt;}
.wsc_c03193{word-spacing:18.653184pt;}
.ws12_c03193{word-spacing:26.932224pt;}
.ws14_c03193{word-spacing:29.600256pt;}
.ws10_c03193{word-spacing:30.966144pt;}
.wsb_c03193{word-spacing:32.127744pt;}
.ws6_c03193{word-spacing:32.659968pt;}
.ws2_c03193{word-spacing:33.563904pt;}
.ws16_c03193{word-spacing:33.796224pt;}
.ws4_c03193{word-spacing:34.860672pt;}
.ws5_c03193{word-spacing:35.468928pt;}
.wsa_c03193{word-spacing:37.357056pt;}
._0_c03193{margin-left:-1.731840pt;}
._2_c03193{width:1.085568pt;}
._6_c03193{width:1.976832pt;}
._10_c03193{width:10.897920pt;}
._3_c03193{width:12.579072pt;}
._8_c03193{width:14.416512pt;}
._5_c03193{width:16.604544pt;}
._7_c03193{width:18.091392pt;}
._f_c03193{width:19.544448pt;}
._13_c03193{width:20.963712pt;}
._a_c03193{width:22.611072pt;}
._9_c03193{width:26.585856pt;}
._11_c03193{width:27.684096pt;}
._12_c03193{width:29.014656pt;}
._d_c03193{width:30.074880pt;}
._b_c03193{width:31.823616pt;}
._c_c03193{width:33.998976pt;}
._1_c03193{width:44.668800pt;}
._4_c03193{width:45.648768pt;}
._e_c03193{width:46.700544pt;}
.fs0_c03193{font-size:42.240000pt;}
.fs1_c03193{font-size:53.760000pt;}
.y0_c03193{bottom:0.000000pt;}
.y6_c03193{bottom:4.160400pt;}
.y4_c03193{bottom:16.320400pt;}
.y25_c03193{bottom:117.225499pt;}
.y24_c03193{bottom:130.665211pt;}
.y27_c03193{bottom:165.866875pt;}
.y26_c03193{bottom:174.507067pt;}
.y23_c03193{bottom:245.225371pt;}
.y22_c03193{bottom:317.225563pt;}
.y20_c03193{bottom:361.386427pt;}
.y1c_c03193{bottom:377.386939pt;}
.y21_c03193{bottom:407.786011pt;}
.y1f_c03193{bottom:437.226235pt;}
.y1e_c03193{bottom:453.226747pt;}
.y1b_c03193{bottom:482.666971pt;}
.y1d_c03193{bottom:497.386555pt;}
.y1a_c03193{bottom:513.387067pt;}
.y28_c03193{bottom:546.027067pt;}
.y16_c03193{bottom:579.948603pt;}
.y15_c03193{bottom:593.388315pt;}
.y18_c03193{bottom:628.586875pt;}
.y17_c03193{bottom:637.227067pt;}
.y14_c03193{bottom:681.387963pt;}
.y13_c03193{bottom:694.507707pt;}
.y12_c03193{bottom:707.947419pt;}
.y11_c03193{bottom:766.506843pt;}
.y10_c03193{bottom:779.946555pt;}
.ye_c03193{bottom:797.226939pt;}
.yd_c03193{bottom:810.666651pt;}
.yc_c03193{bottom:823.786395pt;}
.y8_c03193{bottom:839.786907pt;}
.yf_c03193{bottom:870.507003pt;}
.yb_c03193{bottom:899.946171pt;}
.ya_c03193{bottom:915.946683pt;}
.y3_c03193{bottom:929.066667pt;}
.y7_c03193{bottom:933.227067pt;}
.y2_c03193{bottom:945.386939pt;}
.y5_c03193{bottom:945.387067pt;}
.y9_c03193{bottom:959.786523pt;}
.y1_c03193{bottom:975.787067pt;}
.y19_c03193{bottom:1008.747067pt;}
.h3_c03193{height:26.240000pt;}
.h2_c03193{height:28.916250pt;}
.h1_c03193{height:37.063125pt;}
.h4_c03193{height:37.166250pt;}
.h6_c03193{height:48.581988pt;}
.h5_c03193{height:66.504405pt;}
.h0_c03193{height:1122.666667pt;}
.w2_c03193{width:191.360000pt;}
.w1_c03193{width:793.333333pt;}
.w0_c03193{width:793.626667pt;}
.x0_c03193{left:0.000000pt;}
.x10_c03193{left:104.000000pt;}
.xb_c03193{left:392.000128pt;}
.x7_c03193{left:396.160768pt;}
.xe_c03193{left:400.960000pt;}
.xa_c03193{left:404.799904pt;}
.x8_c03193{left:410.560384pt;}
.x1_c03193{left:411.840000pt;}
.xd_c03193{left:429.760576pt;}
.xc_c03193{left:437.439808pt;}
.x9_c03193{left:438.400768pt;}
.xf_c03193{left:450.560320pt;}
.x6_c03193{left:455.040160pt;}
.x2_c03193{left:468.159648pt;}
.x3_c03193{left:506.240000pt;}
.x4_c03193{left:513.280000pt;}
.x5_c03193{left:562.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03194 {
    display:none;
  }
  .loading-indicator_c03194.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03194 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03194 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03194" -> "#page-container .classname_c03194")
 */
.pf_c03194 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03194 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03194.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03194 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03194 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03194 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03194 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03194 {overflow:visible;}
  }
}
.c_c03194 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03194 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03194:after { /* webkit #35443 */
  content: '';
}
.t_c03194:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03194 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03194 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03194 { /* info for Javascript */
  display:none;
}
.l_c03194 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03194 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03194 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03194:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03194 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03194.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03194.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03194 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03194{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03194;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03194{font-family:ff1_c03194;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03194;src:url('chunks/assets/font_0c3239e84f7875677103d547.woff2')format("woff");}.ff2_c03194{font-family:ff2_c03194;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03194;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03194{font-family:ff3_c03194;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03194{vertical-align:0.000000px;}
.v1_c03194{vertical-align:1.439424px;}
.ls7_c03194{letter-spacing:-0.765072px;}
.ls10_c03194{letter-spacing:-0.736560px;}
.ls8_c03194{letter-spacing:-0.574992px;}
.lsd_c03194{letter-spacing:-0.304128px;}
.ls11_c03194{letter-spacing:-0.270864px;}
.lse_c03194{letter-spacing:-0.261360px;}
.ls5_c03194{letter-spacing:-0.242352px;}
.ls3_c03194{letter-spacing:-0.118800px;}
.ls14_c03194{letter-spacing:0.000000px;}
.ls0_c03194{letter-spacing:0.006048px;}
.lsc_c03194{letter-spacing:0.038016px;}
.ls4_c03194{letter-spacing:0.128304px;}
.lsb_c03194{letter-spacing:0.508464px;}
.ls13_c03194{letter-spacing:0.514080px;}
.lsf_c03194{letter-spacing:0.536976px;}
.lsa_c03194{letter-spacing:0.579744px;}
.ls12_c03194{letter-spacing:0.594000px;}
.ls6_c03194{letter-spacing:0.598752px;}
.ls1_c03194{letter-spacing:0.613008px;}
.ls9_c03194{letter-spacing:0.674784px;}
.ls2_c03194{letter-spacing:0.717552px;}
.sc__c03194{text-shadow:none;}
.sc0_c03194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03194{-webkit-text-stroke:0px transparent;}
.sc0_c03194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03194{word-spacing:-15.126048px;}
.wsb_c03194{word-spacing:-12.474000px;}
.ws6_c03194{word-spacing:-12.459744px;}
.ws11_c03194{word-spacing:-1.035936px;}
.wse_c03194{word-spacing:-0.974160px;}
.ws17_c03194{word-spacing:-0.719712px;}
.ws12_c03194{word-spacing:-0.399168px;}
.ws10_c03194{word-spacing:-0.118800px;}
.ws14_c03194{word-spacing:-0.099792px;}
.ws15_c03194{word-spacing:-0.090288px;}
.ws16_c03194{word-spacing:-0.085536px;}
.ws13_c03194{word-spacing:-0.057024px;}
.wsf_c03194{word-spacing:0.000000px;}
.ws2_c03194{word-spacing:1.330560px;}
.ws4_c03194{word-spacing:3.331152px;}
.wsa_c03194{word-spacing:6.629040px;}
.wsc_c03194{word-spacing:33.300288px;}
.ws9_c03194{word-spacing:34.836912px;}
.ws8_c03194{word-spacing:36.143712px;}
.ws1_c03194{word-spacing:37.759392px;}
.ws0_c03194{word-spacing:38.020752px;}
.ws3_c03194{word-spacing:39.218256px;}
.ws5_c03194{word-spacing:39.902544px;}
.ws7_c03194{word-spacing:42.026688px;}
._0_c03194{margin-left:-1.948320px;}
._2_c03194{width:1.482624px;}
._5_c03194{width:19.982160px;}
._6_c03194{width:23.451120px;}
._4_c03194{width:24.691392px;}
._1_c03194{width:50.252400px;}
._3_c03194{width:51.530688px;}
.fc0_c03194{color:rgb(0,0,0);}
.fs0_c03194{font-size:47.520000px;}
.fs1_c03194{font-size:60.480000px;}
.y0_c03194{bottom:0.000000px;}
.y1b_c03194{bottom:131.878686px;}
.y1a_c03194{bottom:146.998362px;}
.y1d_c03194{bottom:186.600234px;}
.y1c_c03194{bottom:196.320450px;}
.y19_c03194{bottom:275.878542px;}
.y18_c03194{bottom:356.878758px;}
.y16_c03194{bottom:406.559730px;}
.y12_c03194{bottom:424.560306px;}
.y17_c03194{bottom:458.759262px;}
.y15_c03194{bottom:491.879514px;}
.y14_c03194{bottom:509.880090px;}
.y11_c03194{bottom:543.000342px;}
.y13_c03194{bottom:559.559874px;}
.y10_c03194{bottom:577.560450px;}
.y1e_c03194{bottom:614.280450px;}
.yc_c03194{bottom:652.438650px;}
.yb_c03194{bottom:667.558326px;}
.ye_c03194{bottom:707.160234px;}
.yd_c03194{bottom:716.880450px;}
.ya_c03194{bottom:796.438506px;}
.y9_c03194{bottom:877.438722px;}
.y7_c03194{bottom:926.759730px;}
.y3_c03194{bottom:944.760306px;}
.y8_c03194{bottom:979.319226px;}
.y6_c03194{bottom:1012.439478px;}
.y5_c03194{bottom:1030.440054px;}
.y2_c03194{bottom:1063.560306px;}
.y4_c03194{bottom:1079.759874px;}
.y1_c03194{bottom:1097.760450px;}
.yf_c03194{bottom:1134.840450px;}
.h3_c03194{height:32.530781px;}
.h1_c03194{height:41.696016px;}
.h2_c03194{height:41.812031px;}
.h4_c03194{height:54.654737px;}
.h0_c03194{height:1263.000000px;}
.w1_c03194{width:892.500000px;}
.w0_c03194{width:892.830000px;}
.x0_c03194{left:0.000000px;}
.xe_c03194{left:117.000000px;}
.x8_c03194{left:440.999856px;}
.x4_c03194{left:445.680576px;}
.xc_c03194{left:451.080000px;}
.x7_c03194{left:455.399604px;}
.x5_c03194{left:461.880144px;}
.x1_c03194{left:463.320000px;}
.xa_c03194{left:483.480360px;}
.x9_c03194{left:492.119496px;}
.x6_c03194{left:493.200576px;}
.xd_c03194{left:506.880360px;}
.x3_c03194{left:511.919892px;}
.x2_c03194{left:526.679604px;}
.xb_c03194{left:569.880036px;}
@media print{
.v0_c03194{vertical-align:0.000000pt;}
.v1_c03194{vertical-align:1.279488pt;}
.ls7_c03194{letter-spacing:-0.680064pt;}
.ls10_c03194{letter-spacing:-0.654720pt;}
.ls8_c03194{letter-spacing:-0.511104pt;}
.lsd_c03194{letter-spacing:-0.270336pt;}
.ls11_c03194{letter-spacing:-0.240768pt;}
.lse_c03194{letter-spacing:-0.232320pt;}
.ls5_c03194{letter-spacing:-0.215424pt;}
.ls3_c03194{letter-spacing:-0.105600pt;}
.ls14_c03194{letter-spacing:0.000000pt;}
.ls0_c03194{letter-spacing:0.005376pt;}
.lsc_c03194{letter-spacing:0.033792pt;}
.ls4_c03194{letter-spacing:0.114048pt;}
.lsb_c03194{letter-spacing:0.451968pt;}
.ls13_c03194{letter-spacing:0.456960pt;}
.lsf_c03194{letter-spacing:0.477312pt;}
.lsa_c03194{letter-spacing:0.515328pt;}
.ls12_c03194{letter-spacing:0.528000pt;}
.ls6_c03194{letter-spacing:0.532224pt;}
.ls1_c03194{letter-spacing:0.544896pt;}
.ls9_c03194{letter-spacing:0.599808pt;}
.ls2_c03194{letter-spacing:0.637824pt;}
.wsd_c03194{word-spacing:-13.445376pt;}
.wsb_c03194{word-spacing:-11.088000pt;}
.ws6_c03194{word-spacing:-11.075328pt;}
.ws11_c03194{word-spacing:-0.920832pt;}
.wse_c03194{word-spacing:-0.865920pt;}
.ws17_c03194{word-spacing:-0.639744pt;}
.ws12_c03194{word-spacing:-0.354816pt;}
.ws10_c03194{word-spacing:-0.105600pt;}
.ws14_c03194{word-spacing:-0.088704pt;}
.ws15_c03194{word-spacing:-0.080256pt;}
.ws16_c03194{word-spacing:-0.076032pt;}
.ws13_c03194{word-spacing:-0.050688pt;}
.wsf_c03194{word-spacing:0.000000pt;}
.ws2_c03194{word-spacing:1.182720pt;}
.ws4_c03194{word-spacing:2.961024pt;}
.wsa_c03194{word-spacing:5.892480pt;}
.wsc_c03194{word-spacing:29.600256pt;}
.ws9_c03194{word-spacing:30.966144pt;}
.ws8_c03194{word-spacing:32.127744pt;}
.ws1_c03194{word-spacing:33.563904pt;}
.ws0_c03194{word-spacing:33.796224pt;}
.ws3_c03194{word-spacing:34.860672pt;}
.ws5_c03194{word-spacing:35.468928pt;}
.ws7_c03194{word-spacing:37.357056pt;}
._0_c03194{margin-left:-1.731840pt;}
._2_c03194{width:1.317888pt;}
._5_c03194{width:17.761920pt;}
._6_c03194{width:20.845440pt;}
._4_c03194{width:21.947904pt;}
._1_c03194{width:44.668800pt;}
._3_c03194{width:45.805056pt;}
.fs0_c03194{font-size:42.240000pt;}
.fs1_c03194{font-size:53.760000pt;}
.y0_c03194{bottom:0.000000pt;}
.y1b_c03194{bottom:117.225499pt;}
.y1a_c03194{bottom:130.665211pt;}
.y1d_c03194{bottom:165.866875pt;}
.y1c_c03194{bottom:174.507067pt;}
.y19_c03194{bottom:245.225371pt;}
.y18_c03194{bottom:317.225563pt;}
.y16_c03194{bottom:361.386427pt;}
.y12_c03194{bottom:377.386939pt;}
.y17_c03194{bottom:407.786011pt;}
.y15_c03194{bottom:437.226235pt;}
.y14_c03194{bottom:453.226747pt;}
.y11_c03194{bottom:482.666971pt;}
.y13_c03194{bottom:497.386555pt;}
.y10_c03194{bottom:513.387067pt;}
.y1e_c03194{bottom:546.027067pt;}
.yc_c03194{bottom:579.945467pt;}
.yb_c03194{bottom:593.385179pt;}
.ye_c03194{bottom:628.586875pt;}
.yd_c03194{bottom:637.227067pt;}
.ya_c03194{bottom:707.945339pt;}
.y9_c03194{bottom:779.945531pt;}
.y7_c03194{bottom:823.786427pt;}
.y3_c03194{bottom:839.786939pt;}
.y8_c03194{bottom:870.505979pt;}
.y6_c03194{bottom:899.946203pt;}
.y5_c03194{bottom:915.946715pt;}
.y2_c03194{bottom:945.386939pt;}
.y4_c03194{bottom:959.786555pt;}
.y1_c03194{bottom:975.787067pt;}
.yf_c03194{bottom:1008.747067pt;}
.h3_c03194{height:28.916250pt;}
.h1_c03194{height:37.063125pt;}
.h2_c03194{height:37.166250pt;}
.h4_c03194{height:48.581988pt;}
.h0_c03194{height:1122.666667pt;}
.w1_c03194{width:793.333333pt;}
.w0_c03194{width:793.626667pt;}
.x0_c03194{left:0.000000pt;}
.xe_c03194{left:104.000000pt;}
.x8_c03194{left:391.999872pt;}
.x4_c03194{left:396.160512pt;}
.xc_c03194{left:400.960000pt;}
.x7_c03194{left:404.799648pt;}
.x5_c03194{left:410.560128pt;}
.x1_c03194{left:411.840000pt;}
.xa_c03194{left:429.760320pt;}
.x9_c03194{left:437.439552pt;}
.x6_c03194{left:438.400512pt;}
.xd_c03194{left:450.560320pt;}
.x3_c03194{left:455.039904pt;}
.x2_c03194{left:468.159648pt;}
.xb_c03194{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03195 {
    display:none;
  }
  .loading-indicator_c03195.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03195 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03195 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03195" -> "#page-container .classname_c03195")
 */
.pf_c03195 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03195 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03195.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03195 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03195 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03195 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03195 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03195 {overflow:visible;}
  }
}
.c_c03195 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03195 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03195:after { /* webkit #35443 */
  content: '';
}
.t_c03195:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03195 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03195 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03195 { /* info for Javascript */
  display:none;
}
.l_c03195 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03195 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03195 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03195:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03195 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03195.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03195.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03195 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03195{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03195;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03195{font-family:ff1_c03195;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03195;src:url('chunks/assets/font_0c3239e84f7875677103d547.woff2')format("woff");}.ff2_c03195{font-family:ff2_c03195;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03195;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03195{font-family:ff3_c03195;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03195{vertical-align:0.000000px;}
.v1_c03195{vertical-align:1.439424px;}
.ls7_c03195{letter-spacing:-0.765072px;}
.ls10_c03195{letter-spacing:-0.736560px;}
.ls8_c03195{letter-spacing:-0.574992px;}
.lsd_c03195{letter-spacing:-0.304128px;}
.ls11_c03195{letter-spacing:-0.270864px;}
.lse_c03195{letter-spacing:-0.261360px;}
.ls5_c03195{letter-spacing:-0.242352px;}
.ls3_c03195{letter-spacing:-0.118800px;}
.ls14_c03195{letter-spacing:0.000000px;}
.ls0_c03195{letter-spacing:0.006048px;}
.lsc_c03195{letter-spacing:0.038016px;}
.ls4_c03195{letter-spacing:0.128304px;}
.lsb_c03195{letter-spacing:0.508464px;}
.ls13_c03195{letter-spacing:0.514080px;}
.lsf_c03195{letter-spacing:0.536976px;}
.lsa_c03195{letter-spacing:0.579744px;}
.ls12_c03195{letter-spacing:0.594000px;}
.ls6_c03195{letter-spacing:0.598752px;}
.ls1_c03195{letter-spacing:0.613008px;}
.ls9_c03195{letter-spacing:0.674784px;}
.ls2_c03195{letter-spacing:0.717552px;}
.sc__c03195{text-shadow:none;}
.sc0_c03195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03195{-webkit-text-stroke:0px transparent;}
.sc0_c03195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03195{word-spacing:-15.126048px;}
.wsb_c03195{word-spacing:-12.474000px;}
.ws6_c03195{word-spacing:-12.459744px;}
.ws11_c03195{word-spacing:-1.035936px;}
.wse_c03195{word-spacing:-0.974160px;}
.ws17_c03195{word-spacing:-0.719712px;}
.ws12_c03195{word-spacing:-0.399168px;}
.ws10_c03195{word-spacing:-0.118800px;}
.ws14_c03195{word-spacing:-0.099792px;}
.ws15_c03195{word-spacing:-0.090288px;}
.ws16_c03195{word-spacing:-0.085536px;}
.ws13_c03195{word-spacing:-0.057024px;}
.wsf_c03195{word-spacing:0.000000px;}
.ws2_c03195{word-spacing:1.330560px;}
.ws4_c03195{word-spacing:3.331152px;}
.wsa_c03195{word-spacing:6.629040px;}
.wsc_c03195{word-spacing:33.300288px;}
.ws9_c03195{word-spacing:34.836912px;}
.ws8_c03195{word-spacing:36.143712px;}
.ws1_c03195{word-spacing:37.759392px;}
.ws0_c03195{word-spacing:38.020752px;}
.ws3_c03195{word-spacing:39.218256px;}
.ws5_c03195{word-spacing:39.902544px;}
.ws7_c03195{word-spacing:42.026688px;}
._0_c03195{margin-left:-1.948320px;}
._2_c03195{width:1.482624px;}
._5_c03195{width:19.982160px;}
._6_c03195{width:23.451120px;}
._4_c03195{width:24.691392px;}
._1_c03195{width:50.252400px;}
._3_c03195{width:51.530688px;}
.fc0_c03195{color:rgb(0,0,0);}
.fs0_c03195{font-size:47.520000px;}
.fs1_c03195{font-size:60.480000px;}
.y0_c03195{bottom:0.000000px;}
.y1b_c03195{bottom:131.878686px;}
.y1a_c03195{bottom:146.998362px;}
.y1d_c03195{bottom:186.600234px;}
.y1c_c03195{bottom:196.320450px;}
.y19_c03195{bottom:275.878542px;}
.y18_c03195{bottom:356.878758px;}
.y16_c03195{bottom:406.559730px;}
.y12_c03195{bottom:424.560306px;}
.y17_c03195{bottom:458.759262px;}
.y15_c03195{bottom:491.879514px;}
.y14_c03195{bottom:509.880090px;}
.y11_c03195{bottom:543.000342px;}
.y13_c03195{bottom:559.559874px;}
.y10_c03195{bottom:577.560450px;}
.y1e_c03195{bottom:614.280450px;}
.yc_c03195{bottom:652.438650px;}
.yb_c03195{bottom:667.558326px;}
.ye_c03195{bottom:707.160234px;}
.yd_c03195{bottom:716.880450px;}
.ya_c03195{bottom:796.438506px;}
.y9_c03195{bottom:877.438722px;}
.y7_c03195{bottom:926.759730px;}
.y3_c03195{bottom:944.760306px;}
.y8_c03195{bottom:979.319226px;}
.y6_c03195{bottom:1012.439478px;}
.y5_c03195{bottom:1030.440054px;}
.y2_c03195{bottom:1063.560306px;}
.y4_c03195{bottom:1079.759874px;}
.y1_c03195{bottom:1097.760450px;}
.yf_c03195{bottom:1134.840450px;}
.h3_c03195{height:32.530781px;}
.h1_c03195{height:41.696016px;}
.h2_c03195{height:41.812031px;}
.h4_c03195{height:54.654737px;}
.h0_c03195{height:1263.000000px;}
.w1_c03195{width:892.500000px;}
.w0_c03195{width:892.830000px;}
.x0_c03195{left:0.000000px;}
.xe_c03195{left:117.000000px;}
.x8_c03195{left:440.999856px;}
.x4_c03195{left:445.680576px;}
.xc_c03195{left:451.080000px;}
.x7_c03195{left:455.399604px;}
.x5_c03195{left:461.880144px;}
.x1_c03195{left:463.320000px;}
.xa_c03195{left:483.480360px;}
.x9_c03195{left:492.119496px;}
.x6_c03195{left:493.200576px;}
.xd_c03195{left:506.880360px;}
.x3_c03195{left:511.919892px;}
.x2_c03195{left:526.679604px;}
.xb_c03195{left:569.880036px;}
@media print{
.v0_c03195{vertical-align:0.000000pt;}
.v1_c03195{vertical-align:1.279488pt;}
.ls7_c03195{letter-spacing:-0.680064pt;}
.ls10_c03195{letter-spacing:-0.654720pt;}
.ls8_c03195{letter-spacing:-0.511104pt;}
.lsd_c03195{letter-spacing:-0.270336pt;}
.ls11_c03195{letter-spacing:-0.240768pt;}
.lse_c03195{letter-spacing:-0.232320pt;}
.ls5_c03195{letter-spacing:-0.215424pt;}
.ls3_c03195{letter-spacing:-0.105600pt;}
.ls14_c03195{letter-spacing:0.000000pt;}
.ls0_c03195{letter-spacing:0.005376pt;}
.lsc_c03195{letter-spacing:0.033792pt;}
.ls4_c03195{letter-spacing:0.114048pt;}
.lsb_c03195{letter-spacing:0.451968pt;}
.ls13_c03195{letter-spacing:0.456960pt;}
.lsf_c03195{letter-spacing:0.477312pt;}
.lsa_c03195{letter-spacing:0.515328pt;}
.ls12_c03195{letter-spacing:0.528000pt;}
.ls6_c03195{letter-spacing:0.532224pt;}
.ls1_c03195{letter-spacing:0.544896pt;}
.ls9_c03195{letter-spacing:0.599808pt;}
.ls2_c03195{letter-spacing:0.637824pt;}
.wsd_c03195{word-spacing:-13.445376pt;}
.wsb_c03195{word-spacing:-11.088000pt;}
.ws6_c03195{word-spacing:-11.075328pt;}
.ws11_c03195{word-spacing:-0.920832pt;}
.wse_c03195{word-spacing:-0.865920pt;}
.ws17_c03195{word-spacing:-0.639744pt;}
.ws12_c03195{word-spacing:-0.354816pt;}
.ws10_c03195{word-spacing:-0.105600pt;}
.ws14_c03195{word-spacing:-0.088704pt;}
.ws15_c03195{word-spacing:-0.080256pt;}
.ws16_c03195{word-spacing:-0.076032pt;}
.ws13_c03195{word-spacing:-0.050688pt;}
.wsf_c03195{word-spacing:0.000000pt;}
.ws2_c03195{word-spacing:1.182720pt;}
.ws4_c03195{word-spacing:2.961024pt;}
.wsa_c03195{word-spacing:5.892480pt;}
.wsc_c03195{word-spacing:29.600256pt;}
.ws9_c03195{word-spacing:30.966144pt;}
.ws8_c03195{word-spacing:32.127744pt;}
.ws1_c03195{word-spacing:33.563904pt;}
.ws0_c03195{word-spacing:33.796224pt;}
.ws3_c03195{word-spacing:34.860672pt;}
.ws5_c03195{word-spacing:35.468928pt;}
.ws7_c03195{word-spacing:37.357056pt;}
._0_c03195{margin-left:-1.731840pt;}
._2_c03195{width:1.317888pt;}
._5_c03195{width:17.761920pt;}
._6_c03195{width:20.845440pt;}
._4_c03195{width:21.947904pt;}
._1_c03195{width:44.668800pt;}
._3_c03195{width:45.805056pt;}
.fs0_c03195{font-size:42.240000pt;}
.fs1_c03195{font-size:53.760000pt;}
.y0_c03195{bottom:0.000000pt;}
.y1b_c03195{bottom:117.225499pt;}
.y1a_c03195{bottom:130.665211pt;}
.y1d_c03195{bottom:165.866875pt;}
.y1c_c03195{bottom:174.507067pt;}
.y19_c03195{bottom:245.225371pt;}
.y18_c03195{bottom:317.225563pt;}
.y16_c03195{bottom:361.386427pt;}
.y12_c03195{bottom:377.386939pt;}
.y17_c03195{bottom:407.786011pt;}
.y15_c03195{bottom:437.226235pt;}
.y14_c03195{bottom:453.226747pt;}
.y11_c03195{bottom:482.666971pt;}
.y13_c03195{bottom:497.386555pt;}
.y10_c03195{bottom:513.387067pt;}
.y1e_c03195{bottom:546.027067pt;}
.yc_c03195{bottom:579.945467pt;}
.yb_c03195{bottom:593.385179pt;}
.ye_c03195{bottom:628.586875pt;}
.yd_c03195{bottom:637.227067pt;}
.ya_c03195{bottom:707.945339pt;}
.y9_c03195{bottom:779.945531pt;}
.y7_c03195{bottom:823.786427pt;}
.y3_c03195{bottom:839.786939pt;}
.y8_c03195{bottom:870.505979pt;}
.y6_c03195{bottom:899.946203pt;}
.y5_c03195{bottom:915.946715pt;}
.y2_c03195{bottom:945.386939pt;}
.y4_c03195{bottom:959.786555pt;}
.y1_c03195{bottom:975.787067pt;}
.yf_c03195{bottom:1008.747067pt;}
.h3_c03195{height:28.916250pt;}
.h1_c03195{height:37.063125pt;}
.h2_c03195{height:37.166250pt;}
.h4_c03195{height:48.581988pt;}
.h0_c03195{height:1122.666667pt;}
.w1_c03195{width:793.333333pt;}
.w0_c03195{width:793.626667pt;}
.x0_c03195{left:0.000000pt;}
.xe_c03195{left:104.000000pt;}
.x8_c03195{left:391.999872pt;}
.x4_c03195{left:396.160512pt;}
.xc_c03195{left:400.960000pt;}
.x7_c03195{left:404.799648pt;}
.x5_c03195{left:410.560128pt;}
.x1_c03195{left:411.840000pt;}
.xa_c03195{left:429.760320pt;}
.x9_c03195{left:437.439552pt;}
.x6_c03195{left:438.400512pt;}
.xd_c03195{left:450.560320pt;}
.x3_c03195{left:455.039904pt;}
.x2_c03195{left:468.159648pt;}
.xb_c03195{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03196 {
    display:none;
  }
  .loading-indicator_c03196.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03196 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03196 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03196" -> "#page-container .classname_c03196")
 */
.pf_c03196 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03196 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03196.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03196 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03196 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03196 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03196 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03196 {overflow:visible;}
  }
}
.c_c03196 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03196 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03196:after { /* webkit #35443 */
  content: '';
}
.t_c03196:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03196 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03196 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03196 { /* info for Javascript */
  display:none;
}
.l_c03196 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03196 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03196 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03196:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03196 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03196.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03196.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03196 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03196{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03196;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03196{font-family:ff1_c03196;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03196;src:url('chunks/assets/font_0c3239e84f7875677103d547.woff2')format("woff");}.ff2_c03196{font-family:ff2_c03196;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03196;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03196{font-family:ff3_c03196;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03196{vertical-align:0.000000px;}
.v1_c03196{vertical-align:1.439424px;}
.ls7_c03196{letter-spacing:-0.765072px;}
.ls10_c03196{letter-spacing:-0.736560px;}
.ls8_c03196{letter-spacing:-0.574992px;}
.lsd_c03196{letter-spacing:-0.304128px;}
.ls11_c03196{letter-spacing:-0.270864px;}
.lse_c03196{letter-spacing:-0.261360px;}
.ls5_c03196{letter-spacing:-0.242352px;}
.ls3_c03196{letter-spacing:-0.118800px;}
.ls14_c03196{letter-spacing:0.000000px;}
.ls0_c03196{letter-spacing:0.006048px;}
.lsc_c03196{letter-spacing:0.038016px;}
.ls4_c03196{letter-spacing:0.128304px;}
.lsb_c03196{letter-spacing:0.508464px;}
.ls13_c03196{letter-spacing:0.514080px;}
.lsf_c03196{letter-spacing:0.536976px;}
.lsa_c03196{letter-spacing:0.579744px;}
.ls12_c03196{letter-spacing:0.594000px;}
.ls6_c03196{letter-spacing:0.598752px;}
.ls1_c03196{letter-spacing:0.613008px;}
.ls9_c03196{letter-spacing:0.674784px;}
.ls2_c03196{letter-spacing:0.717552px;}
.sc__c03196{text-shadow:none;}
.sc0_c03196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03196{-webkit-text-stroke:0px transparent;}
.sc0_c03196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03196{word-spacing:-15.126048px;}
.wsb_c03196{word-spacing:-12.474000px;}
.ws6_c03196{word-spacing:-12.459744px;}
.ws11_c03196{word-spacing:-1.035936px;}
.wse_c03196{word-spacing:-0.974160px;}
.ws17_c03196{word-spacing:-0.719712px;}
.ws12_c03196{word-spacing:-0.399168px;}
.ws10_c03196{word-spacing:-0.118800px;}
.ws14_c03196{word-spacing:-0.099792px;}
.ws15_c03196{word-spacing:-0.090288px;}
.ws16_c03196{word-spacing:-0.085536px;}
.ws13_c03196{word-spacing:-0.057024px;}
.wsf_c03196{word-spacing:0.000000px;}
.ws2_c03196{word-spacing:1.330560px;}
.ws4_c03196{word-spacing:3.331152px;}
.wsa_c03196{word-spacing:6.629040px;}
.wsc_c03196{word-spacing:33.300288px;}
.ws9_c03196{word-spacing:34.836912px;}
.ws8_c03196{word-spacing:36.143712px;}
.ws1_c03196{word-spacing:37.759392px;}
.ws0_c03196{word-spacing:38.020752px;}
.ws3_c03196{word-spacing:39.218256px;}
.ws5_c03196{word-spacing:39.902544px;}
.ws7_c03196{word-spacing:42.026688px;}
._0_c03196{margin-left:-1.948320px;}
._2_c03196{width:1.482624px;}
._5_c03196{width:19.982160px;}
._6_c03196{width:23.451120px;}
._4_c03196{width:24.691392px;}
._1_c03196{width:50.252400px;}
._3_c03196{width:51.530688px;}
.fc0_c03196{color:rgb(0,0,0);}
.fs0_c03196{font-size:47.520000px;}
.fs1_c03196{font-size:60.480000px;}
.y0_c03196{bottom:0.000000px;}
.y1b_c03196{bottom:131.878686px;}
.y1a_c03196{bottom:146.998362px;}
.y1d_c03196{bottom:186.600234px;}
.y1c_c03196{bottom:196.320450px;}
.y19_c03196{bottom:275.878542px;}
.y18_c03196{bottom:356.878758px;}
.y16_c03196{bottom:406.559730px;}
.y12_c03196{bottom:424.560306px;}
.y17_c03196{bottom:458.759262px;}
.y15_c03196{bottom:491.879514px;}
.y14_c03196{bottom:509.880090px;}
.y11_c03196{bottom:543.000342px;}
.y13_c03196{bottom:559.559874px;}
.y10_c03196{bottom:577.560450px;}
.y1e_c03196{bottom:614.280450px;}
.yc_c03196{bottom:652.438650px;}
.yb_c03196{bottom:667.558326px;}
.ye_c03196{bottom:707.160234px;}
.yd_c03196{bottom:716.880450px;}
.ya_c03196{bottom:796.438506px;}
.y9_c03196{bottom:877.438722px;}
.y7_c03196{bottom:926.759730px;}
.y3_c03196{bottom:944.760306px;}
.y8_c03196{bottom:979.319226px;}
.y6_c03196{bottom:1012.439478px;}
.y5_c03196{bottom:1030.440054px;}
.y2_c03196{bottom:1063.560306px;}
.y4_c03196{bottom:1079.759874px;}
.y1_c03196{bottom:1097.760450px;}
.yf_c03196{bottom:1134.840450px;}
.h3_c03196{height:32.530781px;}
.h1_c03196{height:41.696016px;}
.h2_c03196{height:41.812031px;}
.h4_c03196{height:54.654737px;}
.h0_c03196{height:1263.000000px;}
.w1_c03196{width:892.500000px;}
.w0_c03196{width:892.830000px;}
.x0_c03196{left:0.000000px;}
.xe_c03196{left:117.000000px;}
.x8_c03196{left:440.999856px;}
.x4_c03196{left:445.680576px;}
.xc_c03196{left:451.080000px;}
.x7_c03196{left:455.399604px;}
.x5_c03196{left:461.880144px;}
.x1_c03196{left:463.320000px;}
.xa_c03196{left:483.480360px;}
.x9_c03196{left:492.119496px;}
.x6_c03196{left:493.200576px;}
.xd_c03196{left:506.880360px;}
.x3_c03196{left:511.919892px;}
.x2_c03196{left:526.679604px;}
.xb_c03196{left:569.880036px;}
@media print{
.v0_c03196{vertical-align:0.000000pt;}
.v1_c03196{vertical-align:1.279488pt;}
.ls7_c03196{letter-spacing:-0.680064pt;}
.ls10_c03196{letter-spacing:-0.654720pt;}
.ls8_c03196{letter-spacing:-0.511104pt;}
.lsd_c03196{letter-spacing:-0.270336pt;}
.ls11_c03196{letter-spacing:-0.240768pt;}
.lse_c03196{letter-spacing:-0.232320pt;}
.ls5_c03196{letter-spacing:-0.215424pt;}
.ls3_c03196{letter-spacing:-0.105600pt;}
.ls14_c03196{letter-spacing:0.000000pt;}
.ls0_c03196{letter-spacing:0.005376pt;}
.lsc_c03196{letter-spacing:0.033792pt;}
.ls4_c03196{letter-spacing:0.114048pt;}
.lsb_c03196{letter-spacing:0.451968pt;}
.ls13_c03196{letter-spacing:0.456960pt;}
.lsf_c03196{letter-spacing:0.477312pt;}
.lsa_c03196{letter-spacing:0.515328pt;}
.ls12_c03196{letter-spacing:0.528000pt;}
.ls6_c03196{letter-spacing:0.532224pt;}
.ls1_c03196{letter-spacing:0.544896pt;}
.ls9_c03196{letter-spacing:0.599808pt;}
.ls2_c03196{letter-spacing:0.637824pt;}
.wsd_c03196{word-spacing:-13.445376pt;}
.wsb_c03196{word-spacing:-11.088000pt;}
.ws6_c03196{word-spacing:-11.075328pt;}
.ws11_c03196{word-spacing:-0.920832pt;}
.wse_c03196{word-spacing:-0.865920pt;}
.ws17_c03196{word-spacing:-0.639744pt;}
.ws12_c03196{word-spacing:-0.354816pt;}
.ws10_c03196{word-spacing:-0.105600pt;}
.ws14_c03196{word-spacing:-0.088704pt;}
.ws15_c03196{word-spacing:-0.080256pt;}
.ws16_c03196{word-spacing:-0.076032pt;}
.ws13_c03196{word-spacing:-0.050688pt;}
.wsf_c03196{word-spacing:0.000000pt;}
.ws2_c03196{word-spacing:1.182720pt;}
.ws4_c03196{word-spacing:2.961024pt;}
.wsa_c03196{word-spacing:5.892480pt;}
.wsc_c03196{word-spacing:29.600256pt;}
.ws9_c03196{word-spacing:30.966144pt;}
.ws8_c03196{word-spacing:32.127744pt;}
.ws1_c03196{word-spacing:33.563904pt;}
.ws0_c03196{word-spacing:33.796224pt;}
.ws3_c03196{word-spacing:34.860672pt;}
.ws5_c03196{word-spacing:35.468928pt;}
.ws7_c03196{word-spacing:37.357056pt;}
._0_c03196{margin-left:-1.731840pt;}
._2_c03196{width:1.317888pt;}
._5_c03196{width:17.761920pt;}
._6_c03196{width:20.845440pt;}
._4_c03196{width:21.947904pt;}
._1_c03196{width:44.668800pt;}
._3_c03196{width:45.805056pt;}
.fs0_c03196{font-size:42.240000pt;}
.fs1_c03196{font-size:53.760000pt;}
.y0_c03196{bottom:0.000000pt;}
.y1b_c03196{bottom:117.225499pt;}
.y1a_c03196{bottom:130.665211pt;}
.y1d_c03196{bottom:165.866875pt;}
.y1c_c03196{bottom:174.507067pt;}
.y19_c03196{bottom:245.225371pt;}
.y18_c03196{bottom:317.225563pt;}
.y16_c03196{bottom:361.386427pt;}
.y12_c03196{bottom:377.386939pt;}
.y17_c03196{bottom:407.786011pt;}
.y15_c03196{bottom:437.226235pt;}
.y14_c03196{bottom:453.226747pt;}
.y11_c03196{bottom:482.666971pt;}
.y13_c03196{bottom:497.386555pt;}
.y10_c03196{bottom:513.387067pt;}
.y1e_c03196{bottom:546.027067pt;}
.yc_c03196{bottom:579.945467pt;}
.yb_c03196{bottom:593.385179pt;}
.ye_c03196{bottom:628.586875pt;}
.yd_c03196{bottom:637.227067pt;}
.ya_c03196{bottom:707.945339pt;}
.y9_c03196{bottom:779.945531pt;}
.y7_c03196{bottom:823.786427pt;}
.y3_c03196{bottom:839.786939pt;}
.y8_c03196{bottom:870.505979pt;}
.y6_c03196{bottom:899.946203pt;}
.y5_c03196{bottom:915.946715pt;}
.y2_c03196{bottom:945.386939pt;}
.y4_c03196{bottom:959.786555pt;}
.y1_c03196{bottom:975.787067pt;}
.yf_c03196{bottom:1008.747067pt;}
.h3_c03196{height:28.916250pt;}
.h1_c03196{height:37.063125pt;}
.h2_c03196{height:37.166250pt;}
.h4_c03196{height:48.581988pt;}
.h0_c03196{height:1122.666667pt;}
.w1_c03196{width:793.333333pt;}
.w0_c03196{width:793.626667pt;}
.x0_c03196{left:0.000000pt;}
.xe_c03196{left:104.000000pt;}
.x8_c03196{left:391.999872pt;}
.x4_c03196{left:396.160512pt;}
.xc_c03196{left:400.960000pt;}
.x7_c03196{left:404.799648pt;}
.x5_c03196{left:410.560128pt;}
.x1_c03196{left:411.840000pt;}
.xa_c03196{left:429.760320pt;}
.x9_c03196{left:437.439552pt;}
.x6_c03196{left:438.400512pt;}
.xd_c03196{left:450.560320pt;}
.x3_c03196{left:455.039904pt;}
.x2_c03196{left:468.159648pt;}
.xb_c03196{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03197 {
    display:none;
  }
  .loading-indicator_c03197.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03197 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03197 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03197" -> "#page-container .classname_c03197")
 */
.pf_c03197 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03197 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03197.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03197 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03197 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03197 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03197 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03197 {overflow:visible;}
  }
}
.c_c03197 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03197 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03197:after { /* webkit #35443 */
  content: '';
}
.t_c03197:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03197 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03197 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03197 { /* info for Javascript */
  display:none;
}
.l_c03197 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03197 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03197 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03197:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03197 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03197.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03197.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03197 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03197{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03197;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03197{font-family:ff1_c03197;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03197;src:url('chunks/assets/font_9e7566594f5e0712342e6cce.woff2')format("woff");}.ff2_c03197{font-family:ff2_c03197;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03197;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03197{font-family:ff3_c03197;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03197{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03197{vertical-align:0.000000px;}
.v1_c03197{vertical-align:1.439424px;}
.ls7_c03197{letter-spacing:-0.765072px;}
.ls10_c03197{letter-spacing:-0.736560px;}
.ls8_c03197{letter-spacing:-0.574992px;}
.lsd_c03197{letter-spacing:-0.304128px;}
.ls11_c03197{letter-spacing:-0.270864px;}
.lse_c03197{letter-spacing:-0.261360px;}
.ls5_c03197{letter-spacing:-0.242352px;}
.ls3_c03197{letter-spacing:-0.118800px;}
.ls14_c03197{letter-spacing:0.000000px;}
.ls0_c03197{letter-spacing:0.006048px;}
.lsc_c03197{letter-spacing:0.038016px;}
.ls4_c03197{letter-spacing:0.128304px;}
.lsb_c03197{letter-spacing:0.508464px;}
.ls13_c03197{letter-spacing:0.514080px;}
.lsf_c03197{letter-spacing:0.536976px;}
.lsa_c03197{letter-spacing:0.579744px;}
.ls12_c03197{letter-spacing:0.594000px;}
.ls6_c03197{letter-spacing:0.598752px;}
.ls1_c03197{letter-spacing:0.613008px;}
.ls9_c03197{letter-spacing:0.674784px;}
.ls2_c03197{letter-spacing:0.717552px;}
.sc__c03197{text-shadow:none;}
.sc0_c03197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03197{-webkit-text-stroke:0px transparent;}
.sc0_c03197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03197{word-spacing:-15.126048px;}
.wsb_c03197{word-spacing:-12.474000px;}
.ws6_c03197{word-spacing:-12.459744px;}
.ws11_c03197{word-spacing:-1.035936px;}
.wse_c03197{word-spacing:-0.974160px;}
.ws17_c03197{word-spacing:-0.719712px;}
.ws12_c03197{word-spacing:-0.399168px;}
.ws10_c03197{word-spacing:-0.118800px;}
.ws14_c03197{word-spacing:-0.099792px;}
.ws15_c03197{word-spacing:-0.090288px;}
.ws16_c03197{word-spacing:-0.085536px;}
.ws13_c03197{word-spacing:-0.057024px;}
.wsf_c03197{word-spacing:0.000000px;}
.ws2_c03197{word-spacing:1.330560px;}
.ws4_c03197{word-spacing:3.331152px;}
.wsa_c03197{word-spacing:6.629040px;}
.wsc_c03197{word-spacing:33.300288px;}
.ws9_c03197{word-spacing:34.836912px;}
.ws8_c03197{word-spacing:36.143712px;}
.ws1_c03197{word-spacing:37.759392px;}
.ws0_c03197{word-spacing:38.020752px;}
.ws3_c03197{word-spacing:39.218256px;}
.ws5_c03197{word-spacing:39.902544px;}
.ws7_c03197{word-spacing:42.026688px;}
._0_c03197{margin-left:-1.948320px;}
._2_c03197{width:1.482624px;}
._5_c03197{width:19.982160px;}
._6_c03197{width:23.451120px;}
._4_c03197{width:24.691392px;}
._1_c03197{width:50.252400px;}
._3_c03197{width:51.530688px;}
.fc0_c03197{color:rgb(0,0,0);}
.fs0_c03197{font-size:47.520000px;}
.fs1_c03197{font-size:60.480000px;}
.y0_c03197{bottom:0.000000px;}
.y1b_c03197{bottom:131.878686px;}
.y1a_c03197{bottom:146.998362px;}
.y1d_c03197{bottom:186.600234px;}
.y1c_c03197{bottom:196.320450px;}
.y19_c03197{bottom:275.878542px;}
.y18_c03197{bottom:356.878758px;}
.y16_c03197{bottom:406.559730px;}
.y12_c03197{bottom:424.560306px;}
.y17_c03197{bottom:458.759262px;}
.y15_c03197{bottom:491.879514px;}
.y14_c03197{bottom:509.880090px;}
.y11_c03197{bottom:543.000342px;}
.y13_c03197{bottom:559.559874px;}
.y10_c03197{bottom:577.560450px;}
.y1e_c03197{bottom:614.280450px;}
.yc_c03197{bottom:652.438650px;}
.yb_c03197{bottom:667.558326px;}
.ye_c03197{bottom:707.160234px;}
.yd_c03197{bottom:716.880450px;}
.ya_c03197{bottom:796.438506px;}
.y9_c03197{bottom:877.438722px;}
.y7_c03197{bottom:926.759730px;}
.y3_c03197{bottom:944.760306px;}
.y8_c03197{bottom:979.319226px;}
.y6_c03197{bottom:1012.439478px;}
.y5_c03197{bottom:1030.440054px;}
.y2_c03197{bottom:1063.560306px;}
.y4_c03197{bottom:1079.759874px;}
.y1_c03197{bottom:1097.760450px;}
.yf_c03197{bottom:1134.840450px;}
.h3_c03197{height:32.530781px;}
.h1_c03197{height:41.696016px;}
.h2_c03197{height:41.812031px;}
.h4_c03197{height:54.654737px;}
.h0_c03197{height:1263.000000px;}
.w1_c03197{width:892.500000px;}
.w0_c03197{width:892.830000px;}
.x0_c03197{left:0.000000px;}
.xe_c03197{left:117.000000px;}
.x8_c03197{left:440.999856px;}
.x4_c03197{left:445.680576px;}
.xc_c03197{left:451.080000px;}
.x7_c03197{left:455.399604px;}
.x5_c03197{left:461.880144px;}
.x1_c03197{left:463.320000px;}
.xa_c03197{left:483.480360px;}
.x9_c03197{left:492.119496px;}
.x6_c03197{left:493.200576px;}
.xd_c03197{left:506.880360px;}
.x3_c03197{left:511.919892px;}
.x2_c03197{left:526.679604px;}
.xb_c03197{left:569.880036px;}
@media print{
.v0_c03197{vertical-align:0.000000pt;}
.v1_c03197{vertical-align:1.279488pt;}
.ls7_c03197{letter-spacing:-0.680064pt;}
.ls10_c03197{letter-spacing:-0.654720pt;}
.ls8_c03197{letter-spacing:-0.511104pt;}
.lsd_c03197{letter-spacing:-0.270336pt;}
.ls11_c03197{letter-spacing:-0.240768pt;}
.lse_c03197{letter-spacing:-0.232320pt;}
.ls5_c03197{letter-spacing:-0.215424pt;}
.ls3_c03197{letter-spacing:-0.105600pt;}
.ls14_c03197{letter-spacing:0.000000pt;}
.ls0_c03197{letter-spacing:0.005376pt;}
.lsc_c03197{letter-spacing:0.033792pt;}
.ls4_c03197{letter-spacing:0.114048pt;}
.lsb_c03197{letter-spacing:0.451968pt;}
.ls13_c03197{letter-spacing:0.456960pt;}
.lsf_c03197{letter-spacing:0.477312pt;}
.lsa_c03197{letter-spacing:0.515328pt;}
.ls12_c03197{letter-spacing:0.528000pt;}
.ls6_c03197{letter-spacing:0.532224pt;}
.ls1_c03197{letter-spacing:0.544896pt;}
.ls9_c03197{letter-spacing:0.599808pt;}
.ls2_c03197{letter-spacing:0.637824pt;}
.wsd_c03197{word-spacing:-13.445376pt;}
.wsb_c03197{word-spacing:-11.088000pt;}
.ws6_c03197{word-spacing:-11.075328pt;}
.ws11_c03197{word-spacing:-0.920832pt;}
.wse_c03197{word-spacing:-0.865920pt;}
.ws17_c03197{word-spacing:-0.639744pt;}
.ws12_c03197{word-spacing:-0.354816pt;}
.ws10_c03197{word-spacing:-0.105600pt;}
.ws14_c03197{word-spacing:-0.088704pt;}
.ws15_c03197{word-spacing:-0.080256pt;}
.ws16_c03197{word-spacing:-0.076032pt;}
.ws13_c03197{word-spacing:-0.050688pt;}
.wsf_c03197{word-spacing:0.000000pt;}
.ws2_c03197{word-spacing:1.182720pt;}
.ws4_c03197{word-spacing:2.961024pt;}
.wsa_c03197{word-spacing:5.892480pt;}
.wsc_c03197{word-spacing:29.600256pt;}
.ws9_c03197{word-spacing:30.966144pt;}
.ws8_c03197{word-spacing:32.127744pt;}
.ws1_c03197{word-spacing:33.563904pt;}
.ws0_c03197{word-spacing:33.796224pt;}
.ws3_c03197{word-spacing:34.860672pt;}
.ws5_c03197{word-spacing:35.468928pt;}
.ws7_c03197{word-spacing:37.357056pt;}
._0_c03197{margin-left:-1.731840pt;}
._2_c03197{width:1.317888pt;}
._5_c03197{width:17.761920pt;}
._6_c03197{width:20.845440pt;}
._4_c03197{width:21.947904pt;}
._1_c03197{width:44.668800pt;}
._3_c03197{width:45.805056pt;}
.fs0_c03197{font-size:42.240000pt;}
.fs1_c03197{font-size:53.760000pt;}
.y0_c03197{bottom:0.000000pt;}
.y1b_c03197{bottom:117.225499pt;}
.y1a_c03197{bottom:130.665211pt;}
.y1d_c03197{bottom:165.866875pt;}
.y1c_c03197{bottom:174.507067pt;}
.y19_c03197{bottom:245.225371pt;}
.y18_c03197{bottom:317.225563pt;}
.y16_c03197{bottom:361.386427pt;}
.y12_c03197{bottom:377.386939pt;}
.y17_c03197{bottom:407.786011pt;}
.y15_c03197{bottom:437.226235pt;}
.y14_c03197{bottom:453.226747pt;}
.y11_c03197{bottom:482.666971pt;}
.y13_c03197{bottom:497.386555pt;}
.y10_c03197{bottom:513.387067pt;}
.y1e_c03197{bottom:546.027067pt;}
.yc_c03197{bottom:579.945467pt;}
.yb_c03197{bottom:593.385179pt;}
.ye_c03197{bottom:628.586875pt;}
.yd_c03197{bottom:637.227067pt;}
.ya_c03197{bottom:707.945339pt;}
.y9_c03197{bottom:779.945531pt;}
.y7_c03197{bottom:823.786427pt;}
.y3_c03197{bottom:839.786939pt;}
.y8_c03197{bottom:870.505979pt;}
.y6_c03197{bottom:899.946203pt;}
.y5_c03197{bottom:915.946715pt;}
.y2_c03197{bottom:945.386939pt;}
.y4_c03197{bottom:959.786555pt;}
.y1_c03197{bottom:975.787067pt;}
.yf_c03197{bottom:1008.747067pt;}
.h3_c03197{height:28.916250pt;}
.h1_c03197{height:37.063125pt;}
.h2_c03197{height:37.166250pt;}
.h4_c03197{height:48.581988pt;}
.h0_c03197{height:1122.666667pt;}
.w1_c03197{width:793.333333pt;}
.w0_c03197{width:793.626667pt;}
.x0_c03197{left:0.000000pt;}
.xe_c03197{left:104.000000pt;}
.x8_c03197{left:391.999872pt;}
.x4_c03197{left:396.160512pt;}
.xc_c03197{left:400.960000pt;}
.x7_c03197{left:404.799648pt;}
.x5_c03197{left:410.560128pt;}
.x1_c03197{left:411.840000pt;}
.xa_c03197{left:429.760320pt;}
.x9_c03197{left:437.439552pt;}
.x6_c03197{left:438.400512pt;}
.xd_c03197{left:450.560320pt;}
.x3_c03197{left:455.039904pt;}
.x2_c03197{left:468.159648pt;}
.xb_c03197{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03198 {
    display:none;
  }
  .loading-indicator_c03198.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03198 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03198 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03198" -> "#page-container .classname_c03198")
 */
.pf_c03198 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03198 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03198.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03198 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03198 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03198 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03198 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03198 {overflow:visible;}
  }
}
.c_c03198 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03198 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03198:after { /* webkit #35443 */
  content: '';
}
.t_c03198:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03198 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03198 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03198 { /* info for Javascript */
  display:none;
}
.l_c03198 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03198 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03198 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03198:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03198 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03198.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03198.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03198 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03198{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03198;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03198{font-family:ff1_c03198;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03198;src:url('chunks/assets/font_bcd9ae3c8bb8af2b2cb1d1ff.woff2')format("woff");}.ff2_c03198{font-family:ff2_c03198;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03198;src:url('chunks/assets/font_4b8a61783c4f59bdd365342d.woff2')format("woff");}.ff3_c03198{font-family:ff3_c03198;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03198{vertical-align:0.000000px;}
.v1_c03198{vertical-align:1.439424px;}
.v2_c03198{vertical-align:5.759424px;}
.ls16_c03198{letter-spacing:-1.197504px;}
.ls8_c03198{letter-spacing:-0.765072px;}
.ls11_c03198{letter-spacing:-0.736560px;}
.ls9_c03198{letter-spacing:-0.574992px;}
.ls17_c03198{letter-spacing:-0.361152px;}
.lse_c03198{letter-spacing:-0.304128px;}
.ls19_c03198{letter-spacing:-0.275616px;}
.ls12_c03198{letter-spacing:-0.270864px;}
.lsf_c03198{letter-spacing:-0.261360px;}
.ls6_c03198{letter-spacing:-0.242352px;}
.ls4_c03198{letter-spacing:-0.118800px;}
.ls18_c03198{letter-spacing:-0.047520px;}
.ls15_c03198{letter-spacing:0.000000px;}
.ls0_c03198{letter-spacing:0.006048px;}
.lsd_c03198{letter-spacing:0.038016px;}
.ls5_c03198{letter-spacing:0.128304px;}
.lsc_c03198{letter-spacing:0.508464px;}
.ls14_c03198{letter-spacing:0.514080px;}
.ls10_c03198{letter-spacing:0.536976px;}
.lsb_c03198{letter-spacing:0.579744px;}
.ls13_c03198{letter-spacing:0.594000px;}
.ls7_c03198{letter-spacing:0.598752px;}
.ls2_c03198{letter-spacing:0.613008px;}
.lsa_c03198{letter-spacing:0.674784px;}
.ls3_c03198{letter-spacing:0.717552px;}
.ls1_c03198{letter-spacing:0.722304px;}
.sc__c03198{text-shadow:none;}
.sc0_c03198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03198{-webkit-text-stroke:0px transparent;}
.sc0_c03198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03198{word-spacing:-15.126048px;}
.wse_c03198{word-spacing:-12.602304px;}
.wsb_c03198{word-spacing:-12.474000px;}
.ws6_c03198{word-spacing:-12.459744px;}
.ws15_c03198{word-spacing:-12.416976px;}
.ws12_c03198{word-spacing:-11.637648px;}
.ws20_c03198{word-spacing:-1.083456px;}
.ws19_c03198{word-spacing:-1.035936px;}
.ws16_c03198{word-spacing:-0.974160px;}
.ws1f_c03198{word-spacing:-0.719712px;}
.ws1a_c03198{word-spacing:-0.399168px;}
.ws22_c03198{word-spacing:-0.313632px;}
.ws18_c03198{word-spacing:-0.118800px;}
.ws1c_c03198{word-spacing:-0.099792px;}
.ws1d_c03198{word-spacing:-0.090288px;}
.ws1e_c03198{word-spacing:-0.085536px;}
.ws1b_c03198{word-spacing:-0.057024px;}
.ws17_c03198{word-spacing:0.000000px;}
.ws21_c03198{word-spacing:0.836352px;}
.ws2_c03198{word-spacing:1.330560px;}
.ws4_c03198{word-spacing:3.331152px;}
.wsf_c03198{word-spacing:4.951584px;}
.wsa_c03198{word-spacing:6.629040px;}
.wsc_c03198{word-spacing:33.300288px;}
.ws9_c03198{word-spacing:34.836912px;}
.ws8_c03198{word-spacing:36.143712px;}
.ws10_c03198{word-spacing:36.742464px;}
.ws1_c03198{word-spacing:37.759392px;}
.ws0_c03198{word-spacing:38.020752px;}
.ws3_c03198{word-spacing:39.218256px;}
.ws5_c03198{word-spacing:39.902544px;}
.ws7_c03198{word-spacing:42.026688px;}
.ws14_c03198{word-spacing:48.232800px;}
.ws13_c03198{word-spacing:53.284176px;}
.ws11_c03198{word-spacing:56.396736px;}
._0_c03198{margin-left:-1.948320px;}
._2_c03198{width:1.482624px;}
._7_c03198{width:2.770416px;}
._5_c03198{width:19.982160px;}
._6_c03198{width:23.451120px;}
._4_c03198{width:24.691392px;}
._1_c03198{width:50.252400px;}
._3_c03198{width:51.530688px;}
._9_c03198{width:64.175760px;}
._8_c03198{width:68.124672px;}
.fc0_c03198{color:rgb(0,0,0);}
.fs0_c03198{font-size:47.520000px;}
.fs1_c03198{font-size:60.480000px;}
.y0_c03198{bottom:0.000000px;}
.y1b_c03198{bottom:146.998362px;}
.y1d_c03198{bottom:186.600234px;}
.y1c_c03198{bottom:196.320450px;}
.y1a_c03198{bottom:260.758866px;}
.y19_c03198{bottom:275.878542px;}
.y18_c03198{bottom:356.878758px;}
.y16_c03198{bottom:406.559730px;}
.y12_c03198{bottom:424.560306px;}
.y17_c03198{bottom:458.759262px;}
.y15_c03198{bottom:491.879514px;}
.y14_c03198{bottom:509.880090px;}
.y11_c03198{bottom:543.000342px;}
.y13_c03198{bottom:559.559874px;}
.y10_c03198{bottom:577.560450px;}
.y1e_c03198{bottom:614.280450px;}
.yc_c03198{bottom:652.438650px;}
.yb_c03198{bottom:667.558326px;}
.ye_c03198{bottom:707.160234px;}
.yd_c03198{bottom:716.880450px;}
.ya_c03198{bottom:796.438506px;}
.y9_c03198{bottom:877.438722px;}
.y7_c03198{bottom:926.759730px;}
.y3_c03198{bottom:944.760306px;}
.y8_c03198{bottom:979.319226px;}
.y6_c03198{bottom:1012.439478px;}
.y5_c03198{bottom:1030.440054px;}
.y2_c03198{bottom:1063.560306px;}
.y4_c03198{bottom:1079.759874px;}
.y1_c03198{bottom:1097.760450px;}
.yf_c03198{bottom:1134.840450px;}
.h3_c03198{height:32.530781px;}
.h1_c03198{height:41.696016px;}
.h2_c03198{height:41.812031px;}
.h5_c03198{height:47.571455px;}
.h4_c03198{height:54.654737px;}
.h0_c03198{height:1263.000000px;}
.w1_c03198{width:892.500000px;}
.w0_c03198{width:892.830000px;}
.x0_c03198{left:0.000000px;}
.xe_c03198{left:117.000000px;}
.x8_c03198{left:440.999856px;}
.x4_c03198{left:445.680576px;}
.xc_c03198{left:451.080000px;}
.x7_c03198{left:455.399604px;}
.x5_c03198{left:461.880144px;}
.x1_c03198{left:463.320000px;}
.xa_c03198{left:483.480360px;}
.x9_c03198{left:492.119496px;}
.x6_c03198{left:493.200576px;}
.xd_c03198{left:506.880360px;}
.x3_c03198{left:511.919892px;}
.x2_c03198{left:526.679604px;}
.xb_c03198{left:569.880036px;}
@media print{
.v0_c03198{vertical-align:0.000000pt;}
.v1_c03198{vertical-align:1.279488pt;}
.v2_c03198{vertical-align:5.119488pt;}
.ls16_c03198{letter-spacing:-1.064448pt;}
.ls8_c03198{letter-spacing:-0.680064pt;}
.ls11_c03198{letter-spacing:-0.654720pt;}
.ls9_c03198{letter-spacing:-0.511104pt;}
.ls17_c03198{letter-spacing:-0.321024pt;}
.lse_c03198{letter-spacing:-0.270336pt;}
.ls19_c03198{letter-spacing:-0.244992pt;}
.ls12_c03198{letter-spacing:-0.240768pt;}
.lsf_c03198{letter-spacing:-0.232320pt;}
.ls6_c03198{letter-spacing:-0.215424pt;}
.ls4_c03198{letter-spacing:-0.105600pt;}
.ls18_c03198{letter-spacing:-0.042240pt;}
.ls15_c03198{letter-spacing:0.000000pt;}
.ls0_c03198{letter-spacing:0.005376pt;}
.lsd_c03198{letter-spacing:0.033792pt;}
.ls5_c03198{letter-spacing:0.114048pt;}
.lsc_c03198{letter-spacing:0.451968pt;}
.ls14_c03198{letter-spacing:0.456960pt;}
.ls10_c03198{letter-spacing:0.477312pt;}
.lsb_c03198{letter-spacing:0.515328pt;}
.ls13_c03198{letter-spacing:0.528000pt;}
.ls7_c03198{letter-spacing:0.532224pt;}
.ls2_c03198{letter-spacing:0.544896pt;}
.lsa_c03198{letter-spacing:0.599808pt;}
.ls3_c03198{letter-spacing:0.637824pt;}
.ls1_c03198{letter-spacing:0.642048pt;}
.wsd_c03198{word-spacing:-13.445376pt;}
.wse_c03198{word-spacing:-11.202048pt;}
.wsb_c03198{word-spacing:-11.088000pt;}
.ws6_c03198{word-spacing:-11.075328pt;}
.ws15_c03198{word-spacing:-11.037312pt;}
.ws12_c03198{word-spacing:-10.344576pt;}
.ws20_c03198{word-spacing:-0.963072pt;}
.ws19_c03198{word-spacing:-0.920832pt;}
.ws16_c03198{word-spacing:-0.865920pt;}
.ws1f_c03198{word-spacing:-0.639744pt;}
.ws1a_c03198{word-spacing:-0.354816pt;}
.ws22_c03198{word-spacing:-0.278784pt;}
.ws18_c03198{word-spacing:-0.105600pt;}
.ws1c_c03198{word-spacing:-0.088704pt;}
.ws1d_c03198{word-spacing:-0.080256pt;}
.ws1e_c03198{word-spacing:-0.076032pt;}
.ws1b_c03198{word-spacing:-0.050688pt;}
.ws17_c03198{word-spacing:0.000000pt;}
.ws21_c03198{word-spacing:0.743424pt;}
.ws2_c03198{word-spacing:1.182720pt;}
.ws4_c03198{word-spacing:2.961024pt;}
.wsf_c03198{word-spacing:4.401408pt;}
.wsa_c03198{word-spacing:5.892480pt;}
.wsc_c03198{word-spacing:29.600256pt;}
.ws9_c03198{word-spacing:30.966144pt;}
.ws8_c03198{word-spacing:32.127744pt;}
.ws10_c03198{word-spacing:32.659968pt;}
.ws1_c03198{word-spacing:33.563904pt;}
.ws0_c03198{word-spacing:33.796224pt;}
.ws3_c03198{word-spacing:34.860672pt;}
.ws5_c03198{word-spacing:35.468928pt;}
.ws7_c03198{word-spacing:37.357056pt;}
.ws14_c03198{word-spacing:42.873600pt;}
.ws13_c03198{word-spacing:47.363712pt;}
.ws11_c03198{word-spacing:50.130432pt;}
._0_c03198{margin-left:-1.731840pt;}
._2_c03198{width:1.317888pt;}
._7_c03198{width:2.462592pt;}
._5_c03198{width:17.761920pt;}
._6_c03198{width:20.845440pt;}
._4_c03198{width:21.947904pt;}
._1_c03198{width:44.668800pt;}
._3_c03198{width:45.805056pt;}
._9_c03198{width:57.045120pt;}
._8_c03198{width:60.555264pt;}
.fs0_c03198{font-size:42.240000pt;}
.fs1_c03198{font-size:53.760000pt;}
.y0_c03198{bottom:0.000000pt;}
.y1b_c03198{bottom:130.665211pt;}
.y1d_c03198{bottom:165.866875pt;}
.y1c_c03198{bottom:174.507067pt;}
.y1a_c03198{bottom:231.785659pt;}
.y19_c03198{bottom:245.225371pt;}
.y18_c03198{bottom:317.225563pt;}
.y16_c03198{bottom:361.386427pt;}
.y12_c03198{bottom:377.386939pt;}
.y17_c03198{bottom:407.786011pt;}
.y15_c03198{bottom:437.226235pt;}
.y14_c03198{bottom:453.226747pt;}
.y11_c03198{bottom:482.666971pt;}
.y13_c03198{bottom:497.386555pt;}
.y10_c03198{bottom:513.387067pt;}
.y1e_c03198{bottom:546.027067pt;}
.yc_c03198{bottom:579.945467pt;}
.yb_c03198{bottom:593.385179pt;}
.ye_c03198{bottom:628.586875pt;}
.yd_c03198{bottom:637.227067pt;}
.ya_c03198{bottom:707.945339pt;}
.y9_c03198{bottom:779.945531pt;}
.y7_c03198{bottom:823.786427pt;}
.y3_c03198{bottom:839.786939pt;}
.y8_c03198{bottom:870.505979pt;}
.y6_c03198{bottom:899.946203pt;}
.y5_c03198{bottom:915.946715pt;}
.y2_c03198{bottom:945.386939pt;}
.y4_c03198{bottom:959.786555pt;}
.y1_c03198{bottom:975.787067pt;}
.yf_c03198{bottom:1008.747067pt;}
.h3_c03198{height:28.916250pt;}
.h1_c03198{height:37.063125pt;}
.h2_c03198{height:37.166250pt;}
.h5_c03198{height:42.285738pt;}
.h4_c03198{height:48.581988pt;}
.h0_c03198{height:1122.666667pt;}
.w1_c03198{width:793.333333pt;}
.w0_c03198{width:793.626667pt;}
.x0_c03198{left:0.000000pt;}
.xe_c03198{left:104.000000pt;}
.x8_c03198{left:391.999872pt;}
.x4_c03198{left:396.160512pt;}
.xc_c03198{left:400.960000pt;}
.x7_c03198{left:404.799648pt;}
.x5_c03198{left:410.560128pt;}
.x1_c03198{left:411.840000pt;}
.xa_c03198{left:429.760320pt;}
.x9_c03198{left:437.439552pt;}
.x6_c03198{left:438.400512pt;}
.xd_c03198{left:450.560320pt;}
.x3_c03198{left:455.039904pt;}
.x2_c03198{left:468.159648pt;}
.xb_c03198{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03199 {
    display:none;
  }
  .loading-indicator_c03199.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03199 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03199 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03199" -> "#page-container .classname_c03199")
 */
.pf_c03199 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03199 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03199.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03199 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03199 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03199 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03199 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03199 {overflow:visible;}
  }
}
.c_c03199 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03199 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03199:after { /* webkit #35443 */
  content: '';
}
.t_c03199:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03199 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03199 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03199 { /* info for Javascript */
  display:none;
}
.l_c03199 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03199 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03199 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03199:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03199 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03199.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03199.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03199 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03199{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03199;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03199{font-family:ff1_c03199;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03199;src:url('chunks/assets/font_9fd6c1441e960a4635ef83c0.woff2')format("woff");}.ff2_c03199{font-family:ff2_c03199;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03199;src:url('chunks/assets/font_ba382db4c4a0083be8261c9b.woff2')format("woff");}.ff3_c03199{font-family:ff3_c03199;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03199{vertical-align:0.000000px;}
.v2_c03199{vertical-align:1.439424px;}
.v3_c03199{vertical-align:5.759424px;}
.v1_c03199{vertical-align:7.199280px;}
.lsb_c03199{letter-spacing:-1.197504px;}
.ls8_c03199{letter-spacing:-0.574992px;}
.lse_c03199{letter-spacing:-0.275616px;}
.lsc_c03199{letter-spacing:-0.261360px;}
.ls6_c03199{letter-spacing:-0.242352px;}
.ls4_c03199{letter-spacing:-0.118800px;}
.ls11_c03199{letter-spacing:0.000000px;}
.ls1_c03199{letter-spacing:0.006048px;}
.ls5_c03199{letter-spacing:0.128304px;}
.lsa_c03199{letter-spacing:0.508464px;}
.ls10_c03199{letter-spacing:0.514080px;}
.lsd_c03199{letter-spacing:0.536976px;}
.ls9_c03199{letter-spacing:0.579744px;}
.lsf_c03199{letter-spacing:0.594000px;}
.ls7_c03199{letter-spacing:0.598752px;}
.ls2_c03199{letter-spacing:0.613008px;}
.ls3_c03199{letter-spacing:0.717552px;}
.ls0_c03199{letter-spacing:0.722304px;}
.sc__c03199{text-shadow:none;}
.sc0_c03199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03199{-webkit-text-stroke:0px transparent;}
.sc0_c03199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03199{word-spacing:-15.126048px;}
.ws2_c03199{word-spacing:-12.602304px;}
.wsa_c03199{word-spacing:-12.474000px;}
.ws8_c03199{word-spacing:-12.459744px;}
.ws9_c03199{word-spacing:-12.416976px;}
.ws10_c03199{word-spacing:-1.083456px;}
.wsd_c03199{word-spacing:-0.974160px;}
.ws14_c03199{word-spacing:-0.719712px;}
.wsf_c03199{word-spacing:-0.118800px;}
.ws12_c03199{word-spacing:-0.099792px;}
.ws13_c03199{word-spacing:-0.085536px;}
.wse_c03199{word-spacing:0.000000px;}
.ws11_c03199{word-spacing:0.836352px;}
.ws4_c03199{word-spacing:4.951584px;}
.wsb_c03199{word-spacing:33.300288px;}
.ws6_c03199{word-spacing:36.742464px;}
.ws1_c03199{word-spacing:37.759392px;}
.ws0_c03199{word-spacing:38.020752px;}
.ws3_c03199{word-spacing:39.218256px;}
.ws5_c03199{word-spacing:39.902544px;}
.ws7_c03199{word-spacing:42.026688px;}
._0_c03199{margin-left:-1.948320px;}
._2_c03199{width:1.482624px;}
._4_c03199{width:2.770416px;}
._1_c03199{width:50.252400px;}
._3_c03199{width:51.530688px;}
.fc0_c03199{color:rgb(0,0,0);}
.fs0_c03199{font-size:47.520000px;}
.fs1_c03199{font-size:60.480000px;}
.y0_c03199{bottom:0.000000px;}
.y19_c03199{bottom:146.998362px;}
.y1b_c03199{bottom:186.600234px;}
.y1a_c03199{bottom:196.320450px;}
.y18_c03199{bottom:275.878542px;}
.y17_c03199{bottom:356.878758px;}
.y15_c03199{bottom:406.559730px;}
.y11_c03199{bottom:424.560306px;}
.y16_c03199{bottom:458.759262px;}
.y14_c03199{bottom:491.879514px;}
.y13_c03199{bottom:509.880090px;}
.y10_c03199{bottom:543.000342px;}
.y12_c03199{bottom:559.559874px;}
.yf_c03199{bottom:577.560450px;}
.y1c_c03199{bottom:614.280450px;}
.yb_c03199{bottom:667.558326px;}
.yd_c03199{bottom:707.160234px;}
.yc_c03199{bottom:716.880450px;}
.ya_c03199{bottom:796.438506px;}
.y9_c03199{bottom:877.438722px;}
.y7_c03199{bottom:926.759730px;}
.y3_c03199{bottom:944.760306px;}
.y8_c03199{bottom:979.319226px;}
.y6_c03199{bottom:1012.439478px;}
.y5_c03199{bottom:1030.440054px;}
.y2_c03199{bottom:1063.560306px;}
.y4_c03199{bottom:1079.759874px;}
.y1_c03199{bottom:1097.760450px;}
.ye_c03199{bottom:1134.840450px;}
.h4_c03199{height:32.530781px;}
.h1_c03199{height:41.696016px;}
.h2_c03199{height:41.812031px;}
.h6_c03199{height:47.571455px;}
.h3_c03199{height:49.011311px;}
.h5_c03199{height:54.654737px;}
.h0_c03199{height:1263.000000px;}
.w1_c03199{width:892.500000px;}
.w0_c03199{width:892.830000px;}
.x0_c03199{left:0.000000px;}
.xd_c03199{left:117.000000px;}
.x8_c03199{left:440.999856px;}
.x4_c03199{left:445.680576px;}
.xb_c03199{left:451.080000px;}
.x7_c03199{left:455.399604px;}
.x5_c03199{left:461.880144px;}
.x1_c03199{left:463.320000px;}
.xa_c03199{left:483.480360px;}
.x9_c03199{left:492.119496px;}
.x6_c03199{left:493.200576px;}
.xc_c03199{left:506.880360px;}
.x3_c03199{left:511.919892px;}
.x2_c03199{left:526.679604px;}
@media print{
.v0_c03199{vertical-align:0.000000pt;}
.v2_c03199{vertical-align:1.279488pt;}
.v3_c03199{vertical-align:5.119488pt;}
.v1_c03199{vertical-align:6.399360pt;}
.lsb_c03199{letter-spacing:-1.064448pt;}
.ls8_c03199{letter-spacing:-0.511104pt;}
.lse_c03199{letter-spacing:-0.244992pt;}
.lsc_c03199{letter-spacing:-0.232320pt;}
.ls6_c03199{letter-spacing:-0.215424pt;}
.ls4_c03199{letter-spacing:-0.105600pt;}
.ls11_c03199{letter-spacing:0.000000pt;}
.ls1_c03199{letter-spacing:0.005376pt;}
.ls5_c03199{letter-spacing:0.114048pt;}
.lsa_c03199{letter-spacing:0.451968pt;}
.ls10_c03199{letter-spacing:0.456960pt;}
.lsd_c03199{letter-spacing:0.477312pt;}
.ls9_c03199{letter-spacing:0.515328pt;}
.lsf_c03199{letter-spacing:0.528000pt;}
.ls7_c03199{letter-spacing:0.532224pt;}
.ls2_c03199{letter-spacing:0.544896pt;}
.ls3_c03199{letter-spacing:0.637824pt;}
.ls0_c03199{letter-spacing:0.642048pt;}
.wsc_c03199{word-spacing:-13.445376pt;}
.ws2_c03199{word-spacing:-11.202048pt;}
.wsa_c03199{word-spacing:-11.088000pt;}
.ws8_c03199{word-spacing:-11.075328pt;}
.ws9_c03199{word-spacing:-11.037312pt;}
.ws10_c03199{word-spacing:-0.963072pt;}
.wsd_c03199{word-spacing:-0.865920pt;}
.ws14_c03199{word-spacing:-0.639744pt;}
.wsf_c03199{word-spacing:-0.105600pt;}
.ws12_c03199{word-spacing:-0.088704pt;}
.ws13_c03199{word-spacing:-0.076032pt;}
.wse_c03199{word-spacing:0.000000pt;}
.ws11_c03199{word-spacing:0.743424pt;}
.ws4_c03199{word-spacing:4.401408pt;}
.wsb_c03199{word-spacing:29.600256pt;}
.ws6_c03199{word-spacing:32.659968pt;}
.ws1_c03199{word-spacing:33.563904pt;}
.ws0_c03199{word-spacing:33.796224pt;}
.ws3_c03199{word-spacing:34.860672pt;}
.ws5_c03199{word-spacing:35.468928pt;}
.ws7_c03199{word-spacing:37.357056pt;}
._0_c03199{margin-left:-1.731840pt;}
._2_c03199{width:1.317888pt;}
._4_c03199{width:2.462592pt;}
._1_c03199{width:44.668800pt;}
._3_c03199{width:45.805056pt;}
.fs0_c03199{font-size:42.240000pt;}
.fs1_c03199{font-size:53.760000pt;}
.y0_c03199{bottom:0.000000pt;}
.y19_c03199{bottom:130.665211pt;}
.y1b_c03199{bottom:165.866875pt;}
.y1a_c03199{bottom:174.507067pt;}
.y18_c03199{bottom:245.225371pt;}
.y17_c03199{bottom:317.225563pt;}
.y15_c03199{bottom:361.386427pt;}
.y11_c03199{bottom:377.386939pt;}
.y16_c03199{bottom:407.786011pt;}
.y14_c03199{bottom:437.226235pt;}
.y13_c03199{bottom:453.226747pt;}
.y10_c03199{bottom:482.666971pt;}
.y12_c03199{bottom:497.386555pt;}
.yf_c03199{bottom:513.387067pt;}
.y1c_c03199{bottom:546.027067pt;}
.yb_c03199{bottom:593.385179pt;}
.yd_c03199{bottom:628.586875pt;}
.yc_c03199{bottom:637.227067pt;}
.ya_c03199{bottom:707.945339pt;}
.y9_c03199{bottom:779.945531pt;}
.y7_c03199{bottom:823.786427pt;}
.y3_c03199{bottom:839.786939pt;}
.y8_c03199{bottom:870.505979pt;}
.y6_c03199{bottom:899.946203pt;}
.y5_c03199{bottom:915.946715pt;}
.y2_c03199{bottom:945.386939pt;}
.y4_c03199{bottom:959.786555pt;}
.y1_c03199{bottom:975.787067pt;}
.ye_c03199{bottom:1008.747067pt;}
.h4_c03199{height:28.916250pt;}
.h1_c03199{height:37.063125pt;}
.h2_c03199{height:37.166250pt;}
.h6_c03199{height:42.285738pt;}
.h3_c03199{height:43.565610pt;}
.h5_c03199{height:48.581988pt;}
.h0_c03199{height:1122.666667pt;}
.w1_c03199{width:793.333333pt;}
.w0_c03199{width:793.626667pt;}
.x0_c03199{left:0.000000pt;}
.xd_c03199{left:104.000000pt;}
.x8_c03199{left:391.999872pt;}
.x4_c03199{left:396.160512pt;}
.xb_c03199{left:400.960000pt;}
.x7_c03199{left:404.799648pt;}
.x5_c03199{left:410.560128pt;}
.x1_c03199{left:411.840000pt;}
.xa_c03199{left:429.760320pt;}
.x9_c03199{left:437.439552pt;}
.x6_c03199{left:438.400512pt;}
.xc_c03199{left:450.560320pt;}
.x3_c03199{left:455.039904pt;}
.x2_c03199{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03200 {
    display:none;
  }
  .loading-indicator_c03200.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03200 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03200 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03200" -> "#page-container .classname_c03200")
 */
.pf_c03200 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03200 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03200.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03200 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03200 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03200 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03200 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03200 {overflow:visible;}
  }
}
.c_c03200 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03200 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03200:after { /* webkit #35443 */
  content: '';
}
.t_c03200:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03200 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03200 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03200 { /* info for Javascript */
  display:none;
}
.l_c03200 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03200 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03200 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03200:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03200 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03200.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03200.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03200 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03200{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03200;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03200{font-family:ff1_c03200;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03200;src:url('chunks/assets/font_1a11f09f8d9e5d2fb91aaadf.woff2')format("woff");}.ff2_c03200{font-family:ff2_c03200;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03200;src:url('chunks/assets/font_4b8a61783c4f59bdd365342d.woff2')format("woff");}.ff3_c03200{font-family:ff3_c03200;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03200{vertical-align:0.000000px;}
.v2_c03200{vertical-align:1.439424px;}
.v3_c03200{vertical-align:5.759424px;}
.v1_c03200{vertical-align:7.199280px;}
.lsb_c03200{letter-spacing:-1.197504px;}
.ls8_c03200{letter-spacing:-0.574992px;}
.ls12_c03200{letter-spacing:-0.361152px;}
.lse_c03200{letter-spacing:-0.275616px;}
.lsc_c03200{letter-spacing:-0.261360px;}
.ls6_c03200{letter-spacing:-0.242352px;}
.ls4_c03200{letter-spacing:-0.118800px;}
.ls11_c03200{letter-spacing:0.000000px;}
.ls1_c03200{letter-spacing:0.006048px;}
.ls5_c03200{letter-spacing:0.128304px;}
.lsa_c03200{letter-spacing:0.508464px;}
.ls10_c03200{letter-spacing:0.514080px;}
.lsd_c03200{letter-spacing:0.536976px;}
.ls9_c03200{letter-spacing:0.579744px;}
.lsf_c03200{letter-spacing:0.594000px;}
.ls7_c03200{letter-spacing:0.598752px;}
.ls2_c03200{letter-spacing:0.613008px;}
.ls3_c03200{letter-spacing:0.717552px;}
.ls0_c03200{letter-spacing:0.722304px;}
.sc__c03200{text-shadow:none;}
.sc0_c03200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03200{-webkit-text-stroke:0px transparent;}
.sc0_c03200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03200{word-spacing:-15.126048px;}
.ws2_c03200{word-spacing:-12.602304px;}
.wsa_c03200{word-spacing:-12.474000px;}
.ws8_c03200{word-spacing:-12.459744px;}
.ws9_c03200{word-spacing:-12.416976px;}
.wsd_c03200{word-spacing:-11.637648px;}
.ws11_c03200{word-spacing:-1.083456px;}
.wse_c03200{word-spacing:-0.974160px;}
.ws15_c03200{word-spacing:-0.719712px;}
.ws10_c03200{word-spacing:-0.118800px;}
.ws13_c03200{word-spacing:-0.099792px;}
.ws14_c03200{word-spacing:-0.085536px;}
.wsf_c03200{word-spacing:0.000000px;}
.ws12_c03200{word-spacing:0.836352px;}
.ws4_c03200{word-spacing:4.951584px;}
.wsb_c03200{word-spacing:33.300288px;}
.ws6_c03200{word-spacing:36.742464px;}
.ws1_c03200{word-spacing:37.759392px;}
.ws0_c03200{word-spacing:38.020752px;}
.ws3_c03200{word-spacing:39.218256px;}
.ws5_c03200{word-spacing:39.902544px;}
.ws7_c03200{word-spacing:42.026688px;}
._0_c03200{margin-left:-1.948320px;}
._2_c03200{width:1.482624px;}
._4_c03200{width:2.770416px;}
._5_c03200{width:21.445776px;}
._1_c03200{width:50.252400px;}
._3_c03200{width:51.530688px;}
.fc0_c03200{color:rgb(0,0,0);}
.fs0_c03200{font-size:47.520000px;}
.fs1_c03200{font-size:60.480000px;}
.y0_c03200{bottom:0.000000px;}
.y19_c03200{bottom:146.998362px;}
.y1b_c03200{bottom:186.600234px;}
.y1a_c03200{bottom:196.320450px;}
.y18_c03200{bottom:275.878542px;}
.y17_c03200{bottom:356.878758px;}
.y15_c03200{bottom:406.559730px;}
.y11_c03200{bottom:424.560306px;}
.y16_c03200{bottom:458.759262px;}
.y14_c03200{bottom:491.879514px;}
.y13_c03200{bottom:509.880090px;}
.y10_c03200{bottom:543.000342px;}
.y12_c03200{bottom:559.559874px;}
.yf_c03200{bottom:577.560450px;}
.y1c_c03200{bottom:614.280450px;}
.yb_c03200{bottom:667.558326px;}
.yd_c03200{bottom:707.160234px;}
.yc_c03200{bottom:716.880450px;}
.ya_c03200{bottom:796.438506px;}
.y9_c03200{bottom:877.438722px;}
.y7_c03200{bottom:926.759730px;}
.y3_c03200{bottom:944.760306px;}
.y8_c03200{bottom:979.319226px;}
.y6_c03200{bottom:1012.439478px;}
.y5_c03200{bottom:1030.440054px;}
.y2_c03200{bottom:1063.560306px;}
.y4_c03200{bottom:1079.759874px;}
.y1_c03200{bottom:1097.760450px;}
.ye_c03200{bottom:1134.840450px;}
.h4_c03200{height:32.530781px;}
.h1_c03200{height:41.696016px;}
.h2_c03200{height:41.812031px;}
.h6_c03200{height:47.571455px;}
.h3_c03200{height:49.011311px;}
.h5_c03200{height:54.654737px;}
.h0_c03200{height:1263.000000px;}
.w1_c03200{width:892.500000px;}
.w0_c03200{width:892.830000px;}
.x0_c03200{left:0.000000px;}
.xd_c03200{left:117.000000px;}
.x8_c03200{left:440.999856px;}
.x4_c03200{left:445.680576px;}
.xb_c03200{left:451.080000px;}
.x7_c03200{left:455.399604px;}
.x5_c03200{left:461.880144px;}
.x1_c03200{left:463.320000px;}
.xa_c03200{left:483.480360px;}
.x9_c03200{left:492.119496px;}
.x6_c03200{left:493.200576px;}
.xc_c03200{left:506.880360px;}
.x3_c03200{left:511.919892px;}
.x2_c03200{left:526.679604px;}
@media print{
.v0_c03200{vertical-align:0.000000pt;}
.v2_c03200{vertical-align:1.279488pt;}
.v3_c03200{vertical-align:5.119488pt;}
.v1_c03200{vertical-align:6.399360pt;}
.lsb_c03200{letter-spacing:-1.064448pt;}
.ls8_c03200{letter-spacing:-0.511104pt;}
.ls12_c03200{letter-spacing:-0.321024pt;}
.lse_c03200{letter-spacing:-0.244992pt;}
.lsc_c03200{letter-spacing:-0.232320pt;}
.ls6_c03200{letter-spacing:-0.215424pt;}
.ls4_c03200{letter-spacing:-0.105600pt;}
.ls11_c03200{letter-spacing:0.000000pt;}
.ls1_c03200{letter-spacing:0.005376pt;}
.ls5_c03200{letter-spacing:0.114048pt;}
.lsa_c03200{letter-spacing:0.451968pt;}
.ls10_c03200{letter-spacing:0.456960pt;}
.lsd_c03200{letter-spacing:0.477312pt;}
.ls9_c03200{letter-spacing:0.515328pt;}
.lsf_c03200{letter-spacing:0.528000pt;}
.ls7_c03200{letter-spacing:0.532224pt;}
.ls2_c03200{letter-spacing:0.544896pt;}
.ls3_c03200{letter-spacing:0.637824pt;}
.ls0_c03200{letter-spacing:0.642048pt;}
.wsc_c03200{word-spacing:-13.445376pt;}
.ws2_c03200{word-spacing:-11.202048pt;}
.wsa_c03200{word-spacing:-11.088000pt;}
.ws8_c03200{word-spacing:-11.075328pt;}
.ws9_c03200{word-spacing:-11.037312pt;}
.wsd_c03200{word-spacing:-10.344576pt;}
.ws11_c03200{word-spacing:-0.963072pt;}
.wse_c03200{word-spacing:-0.865920pt;}
.ws15_c03200{word-spacing:-0.639744pt;}
.ws10_c03200{word-spacing:-0.105600pt;}
.ws13_c03200{word-spacing:-0.088704pt;}
.ws14_c03200{word-spacing:-0.076032pt;}
.wsf_c03200{word-spacing:0.000000pt;}
.ws12_c03200{word-spacing:0.743424pt;}
.ws4_c03200{word-spacing:4.401408pt;}
.wsb_c03200{word-spacing:29.600256pt;}
.ws6_c03200{word-spacing:32.659968pt;}
.ws1_c03200{word-spacing:33.563904pt;}
.ws0_c03200{word-spacing:33.796224pt;}
.ws3_c03200{word-spacing:34.860672pt;}
.ws5_c03200{word-spacing:35.468928pt;}
.ws7_c03200{word-spacing:37.357056pt;}
._0_c03200{margin-left:-1.731840pt;}
._2_c03200{width:1.317888pt;}
._4_c03200{width:2.462592pt;}
._5_c03200{width:19.062912pt;}
._1_c03200{width:44.668800pt;}
._3_c03200{width:45.805056pt;}
.fs0_c03200{font-size:42.240000pt;}
.fs1_c03200{font-size:53.760000pt;}
.y0_c03200{bottom:0.000000pt;}
.y19_c03200{bottom:130.665211pt;}
.y1b_c03200{bottom:165.866875pt;}
.y1a_c03200{bottom:174.507067pt;}
.y18_c03200{bottom:245.225371pt;}
.y17_c03200{bottom:317.225563pt;}
.y15_c03200{bottom:361.386427pt;}
.y11_c03200{bottom:377.386939pt;}
.y16_c03200{bottom:407.786011pt;}
.y14_c03200{bottom:437.226235pt;}
.y13_c03200{bottom:453.226747pt;}
.y10_c03200{bottom:482.666971pt;}
.y12_c03200{bottom:497.386555pt;}
.yf_c03200{bottom:513.387067pt;}
.y1c_c03200{bottom:546.027067pt;}
.yb_c03200{bottom:593.385179pt;}
.yd_c03200{bottom:628.586875pt;}
.yc_c03200{bottom:637.227067pt;}
.ya_c03200{bottom:707.945339pt;}
.y9_c03200{bottom:779.945531pt;}
.y7_c03200{bottom:823.786427pt;}
.y3_c03200{bottom:839.786939pt;}
.y8_c03200{bottom:870.505979pt;}
.y6_c03200{bottom:899.946203pt;}
.y5_c03200{bottom:915.946715pt;}
.y2_c03200{bottom:945.386939pt;}
.y4_c03200{bottom:959.786555pt;}
.y1_c03200{bottom:975.787067pt;}
.ye_c03200{bottom:1008.747067pt;}
.h4_c03200{height:28.916250pt;}
.h1_c03200{height:37.063125pt;}
.h2_c03200{height:37.166250pt;}
.h6_c03200{height:42.285738pt;}
.h3_c03200{height:43.565610pt;}
.h5_c03200{height:48.581988pt;}
.h0_c03200{height:1122.666667pt;}
.w1_c03200{width:793.333333pt;}
.w0_c03200{width:793.626667pt;}
.x0_c03200{left:0.000000pt;}
.xd_c03200{left:104.000000pt;}
.x8_c03200{left:391.999872pt;}
.x4_c03200{left:396.160512pt;}
.xb_c03200{left:400.960000pt;}
.x7_c03200{left:404.799648pt;}
.x5_c03200{left:410.560128pt;}
.x1_c03200{left:411.840000pt;}
.xa_c03200{left:429.760320pt;}
.x9_c03200{left:437.439552pt;}
.x6_c03200{left:438.400512pt;}
.xc_c03200{left:450.560320pt;}
.x3_c03200{left:455.039904pt;}
.x2_c03200{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03201 {
    display:none;
  }
  .loading-indicator_c03201.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03201 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03201 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03201" -> "#page-container .classname_c03201")
 */
.pf_c03201 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03201 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03201.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03201 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03201 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03201 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03201 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03201 {overflow:visible;}
  }
}
.c_c03201 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03201 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03201:after { /* webkit #35443 */
  content: '';
}
.t_c03201:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03201 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03201 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03201 { /* info for Javascript */
  display:none;
}
.l_c03201 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03201 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03201 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03201:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03201 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03201.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03201.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03201 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03201{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03201;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03201{font-family:ff1_c03201;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03201;src:url('chunks/assets/font_9fd6c1441e960a4635ef83c0.woff2')format("woff");}.ff2_c03201{font-family:ff2_c03201;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03201;src:url('chunks/assets/font_ba382db4c4a0083be8261c9b.woff2')format("woff");}.ff3_c03201{font-family:ff3_c03201;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03201{vertical-align:0.000000px;}
.v2_c03201{vertical-align:1.439424px;}
.v3_c03201{vertical-align:5.759424px;}
.v1_c03201{vertical-align:7.199280px;}
.lsb_c03201{letter-spacing:-1.197504px;}
.ls8_c03201{letter-spacing:-0.574992px;}
.lse_c03201{letter-spacing:-0.275616px;}
.lsc_c03201{letter-spacing:-0.261360px;}
.ls6_c03201{letter-spacing:-0.242352px;}
.ls4_c03201{letter-spacing:-0.118800px;}
.ls11_c03201{letter-spacing:0.000000px;}
.ls1_c03201{letter-spacing:0.006048px;}
.ls5_c03201{letter-spacing:0.128304px;}
.lsa_c03201{letter-spacing:0.508464px;}
.ls10_c03201{letter-spacing:0.514080px;}
.lsd_c03201{letter-spacing:0.536976px;}
.ls9_c03201{letter-spacing:0.579744px;}
.lsf_c03201{letter-spacing:0.594000px;}
.ls7_c03201{letter-spacing:0.598752px;}
.ls2_c03201{letter-spacing:0.613008px;}
.ls3_c03201{letter-spacing:0.717552px;}
.ls0_c03201{letter-spacing:0.722304px;}
.sc__c03201{text-shadow:none;}
.sc0_c03201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03201{-webkit-text-stroke:0px transparent;}
.sc0_c03201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03201{word-spacing:-15.126048px;}
.ws2_c03201{word-spacing:-12.602304px;}
.wsa_c03201{word-spacing:-12.474000px;}
.ws8_c03201{word-spacing:-12.459744px;}
.ws9_c03201{word-spacing:-12.416976px;}
.ws10_c03201{word-spacing:-1.083456px;}
.wsd_c03201{word-spacing:-0.974160px;}
.ws14_c03201{word-spacing:-0.719712px;}
.wsf_c03201{word-spacing:-0.118800px;}
.ws12_c03201{word-spacing:-0.099792px;}
.ws13_c03201{word-spacing:-0.085536px;}
.wse_c03201{word-spacing:0.000000px;}
.ws11_c03201{word-spacing:0.836352px;}
.ws4_c03201{word-spacing:4.951584px;}
.wsb_c03201{word-spacing:33.300288px;}
.ws6_c03201{word-spacing:36.742464px;}
.ws1_c03201{word-spacing:37.759392px;}
.ws0_c03201{word-spacing:38.020752px;}
.ws3_c03201{word-spacing:39.218256px;}
.ws5_c03201{word-spacing:39.902544px;}
.ws7_c03201{word-spacing:42.026688px;}
._0_c03201{margin-left:-1.948320px;}
._2_c03201{width:1.482624px;}
._4_c03201{width:2.770416px;}
._1_c03201{width:50.252400px;}
._3_c03201{width:51.530688px;}
.fc0_c03201{color:rgb(0,0,0);}
.fs0_c03201{font-size:47.520000px;}
.fs1_c03201{font-size:60.480000px;}
.y0_c03201{bottom:0.000000px;}
.y19_c03201{bottom:146.998362px;}
.y1b_c03201{bottom:186.600234px;}
.y1a_c03201{bottom:196.320450px;}
.y18_c03201{bottom:275.878542px;}
.y17_c03201{bottom:356.878758px;}
.y15_c03201{bottom:406.559730px;}
.y11_c03201{bottom:424.560306px;}
.y16_c03201{bottom:458.759262px;}
.y14_c03201{bottom:491.879514px;}
.y13_c03201{bottom:509.880090px;}
.y10_c03201{bottom:543.000342px;}
.y12_c03201{bottom:559.559874px;}
.yf_c03201{bottom:577.560450px;}
.y1c_c03201{bottom:614.280450px;}
.yb_c03201{bottom:667.558326px;}
.yd_c03201{bottom:707.160234px;}
.yc_c03201{bottom:716.880450px;}
.ya_c03201{bottom:796.438506px;}
.y9_c03201{bottom:877.438722px;}
.y7_c03201{bottom:926.759730px;}
.y3_c03201{bottom:944.760306px;}
.y8_c03201{bottom:979.319226px;}
.y6_c03201{bottom:1012.439478px;}
.y5_c03201{bottom:1030.440054px;}
.y2_c03201{bottom:1063.560306px;}
.y4_c03201{bottom:1079.759874px;}
.y1_c03201{bottom:1097.760450px;}
.ye_c03201{bottom:1134.840450px;}
.h4_c03201{height:32.530781px;}
.h1_c03201{height:41.696016px;}
.h2_c03201{height:41.812031px;}
.h6_c03201{height:47.571455px;}
.h3_c03201{height:49.011311px;}
.h5_c03201{height:54.654737px;}
.h0_c03201{height:1263.000000px;}
.w1_c03201{width:892.500000px;}
.w0_c03201{width:892.830000px;}
.x0_c03201{left:0.000000px;}
.xd_c03201{left:117.000000px;}
.x8_c03201{left:440.999856px;}
.x4_c03201{left:445.680576px;}
.xb_c03201{left:451.080000px;}
.x7_c03201{left:455.399604px;}
.x5_c03201{left:461.880144px;}
.x1_c03201{left:463.320000px;}
.xa_c03201{left:483.480360px;}
.x9_c03201{left:492.119496px;}
.x6_c03201{left:493.200576px;}
.xc_c03201{left:506.880360px;}
.x3_c03201{left:511.919892px;}
.x2_c03201{left:526.679604px;}
@media print{
.v0_c03201{vertical-align:0.000000pt;}
.v2_c03201{vertical-align:1.279488pt;}
.v3_c03201{vertical-align:5.119488pt;}
.v1_c03201{vertical-align:6.399360pt;}
.lsb_c03201{letter-spacing:-1.064448pt;}
.ls8_c03201{letter-spacing:-0.511104pt;}
.lse_c03201{letter-spacing:-0.244992pt;}
.lsc_c03201{letter-spacing:-0.232320pt;}
.ls6_c03201{letter-spacing:-0.215424pt;}
.ls4_c03201{letter-spacing:-0.105600pt;}
.ls11_c03201{letter-spacing:0.000000pt;}
.ls1_c03201{letter-spacing:0.005376pt;}
.ls5_c03201{letter-spacing:0.114048pt;}
.lsa_c03201{letter-spacing:0.451968pt;}
.ls10_c03201{letter-spacing:0.456960pt;}
.lsd_c03201{letter-spacing:0.477312pt;}
.ls9_c03201{letter-spacing:0.515328pt;}
.lsf_c03201{letter-spacing:0.528000pt;}
.ls7_c03201{letter-spacing:0.532224pt;}
.ls2_c03201{letter-spacing:0.544896pt;}
.ls3_c03201{letter-spacing:0.637824pt;}
.ls0_c03201{letter-spacing:0.642048pt;}
.wsc_c03201{word-spacing:-13.445376pt;}
.ws2_c03201{word-spacing:-11.202048pt;}
.wsa_c03201{word-spacing:-11.088000pt;}
.ws8_c03201{word-spacing:-11.075328pt;}
.ws9_c03201{word-spacing:-11.037312pt;}
.ws10_c03201{word-spacing:-0.963072pt;}
.wsd_c03201{word-spacing:-0.865920pt;}
.ws14_c03201{word-spacing:-0.639744pt;}
.wsf_c03201{word-spacing:-0.105600pt;}
.ws12_c03201{word-spacing:-0.088704pt;}
.ws13_c03201{word-spacing:-0.076032pt;}
.wse_c03201{word-spacing:0.000000pt;}
.ws11_c03201{word-spacing:0.743424pt;}
.ws4_c03201{word-spacing:4.401408pt;}
.wsb_c03201{word-spacing:29.600256pt;}
.ws6_c03201{word-spacing:32.659968pt;}
.ws1_c03201{word-spacing:33.563904pt;}
.ws0_c03201{word-spacing:33.796224pt;}
.ws3_c03201{word-spacing:34.860672pt;}
.ws5_c03201{word-spacing:35.468928pt;}
.ws7_c03201{word-spacing:37.357056pt;}
._0_c03201{margin-left:-1.731840pt;}
._2_c03201{width:1.317888pt;}
._4_c03201{width:2.462592pt;}
._1_c03201{width:44.668800pt;}
._3_c03201{width:45.805056pt;}
.fs0_c03201{font-size:42.240000pt;}
.fs1_c03201{font-size:53.760000pt;}
.y0_c03201{bottom:0.000000pt;}
.y19_c03201{bottom:130.665211pt;}
.y1b_c03201{bottom:165.866875pt;}
.y1a_c03201{bottom:174.507067pt;}
.y18_c03201{bottom:245.225371pt;}
.y17_c03201{bottom:317.225563pt;}
.y15_c03201{bottom:361.386427pt;}
.y11_c03201{bottom:377.386939pt;}
.y16_c03201{bottom:407.786011pt;}
.y14_c03201{bottom:437.226235pt;}
.y13_c03201{bottom:453.226747pt;}
.y10_c03201{bottom:482.666971pt;}
.y12_c03201{bottom:497.386555pt;}
.yf_c03201{bottom:513.387067pt;}
.y1c_c03201{bottom:546.027067pt;}
.yb_c03201{bottom:593.385179pt;}
.yd_c03201{bottom:628.586875pt;}
.yc_c03201{bottom:637.227067pt;}
.ya_c03201{bottom:707.945339pt;}
.y9_c03201{bottom:779.945531pt;}
.y7_c03201{bottom:823.786427pt;}
.y3_c03201{bottom:839.786939pt;}
.y8_c03201{bottom:870.505979pt;}
.y6_c03201{bottom:899.946203pt;}
.y5_c03201{bottom:915.946715pt;}
.y2_c03201{bottom:945.386939pt;}
.y4_c03201{bottom:959.786555pt;}
.y1_c03201{bottom:975.787067pt;}
.ye_c03201{bottom:1008.747067pt;}
.h4_c03201{height:28.916250pt;}
.h1_c03201{height:37.063125pt;}
.h2_c03201{height:37.166250pt;}
.h6_c03201{height:42.285738pt;}
.h3_c03201{height:43.565610pt;}
.h5_c03201{height:48.581988pt;}
.h0_c03201{height:1122.666667pt;}
.w1_c03201{width:793.333333pt;}
.w0_c03201{width:793.626667pt;}
.x0_c03201{left:0.000000pt;}
.xd_c03201{left:104.000000pt;}
.x8_c03201{left:391.999872pt;}
.x4_c03201{left:396.160512pt;}
.xb_c03201{left:400.960000pt;}
.x7_c03201{left:404.799648pt;}
.x5_c03201{left:410.560128pt;}
.x1_c03201{left:411.840000pt;}
.xa_c03201{left:429.760320pt;}
.x9_c03201{left:437.439552pt;}
.x6_c03201{left:438.400512pt;}
.xc_c03201{left:450.560320pt;}
.x3_c03201{left:455.039904pt;}
.x2_c03201{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03202 {
    display:none;
  }
  .loading-indicator_c03202.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03202 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03202 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03202" -> "#page-container .classname_c03202")
 */
.pf_c03202 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03202 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03202.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03202 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03202 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03202 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03202 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03202 {overflow:visible;}
  }
}
.c_c03202 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03202 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03202:after { /* webkit #35443 */
  content: '';
}
.t_c03202:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03202 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03202 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03202 { /* info for Javascript */
  display:none;
}
.l_c03202 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03202 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03202 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03202:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03202 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03202.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03202.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03202 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03202{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03202;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03202{font-family:ff1_c03202;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03202;src:url('chunks/assets/font_f2cd4f6c7826067bb1000691.woff2')format("woff");}.ff2_c03202{font-family:ff2_c03202;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03202;src:url('chunks/assets/font_ba382db4c4a0083be8261c9b.woff2')format("woff");}.ff3_c03202{font-family:ff3_c03202;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03202{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03202{vertical-align:0.000000px;}
.v2_c03202{vertical-align:1.439424px;}
.v3_c03202{vertical-align:5.759424px;}
.v1_c03202{vertical-align:7.199280px;}
.lsb_c03202{letter-spacing:-1.197504px;}
.ls8_c03202{letter-spacing:-0.574992px;}
.lse_c03202{letter-spacing:-0.275616px;}
.lsc_c03202{letter-spacing:-0.261360px;}
.ls6_c03202{letter-spacing:-0.242352px;}
.ls4_c03202{letter-spacing:-0.118800px;}
.ls11_c03202{letter-spacing:0.000000px;}
.ls1_c03202{letter-spacing:0.006048px;}
.ls12_c03202{letter-spacing:0.014256px;}
.ls5_c03202{letter-spacing:0.128304px;}
.lsa_c03202{letter-spacing:0.508464px;}
.ls10_c03202{letter-spacing:0.514080px;}
.lsd_c03202{letter-spacing:0.536976px;}
.ls9_c03202{letter-spacing:0.579744px;}
.lsf_c03202{letter-spacing:0.594000px;}
.ls7_c03202{letter-spacing:0.598752px;}
.ls2_c03202{letter-spacing:0.613008px;}
.ls3_c03202{letter-spacing:0.717552px;}
.ls0_c03202{letter-spacing:0.722304px;}
.sc__c03202{text-shadow:none;}
.sc0_c03202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03202{-webkit-text-stroke:0px transparent;}
.sc0_c03202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03202{word-spacing:-15.126048px;}
.ws2_c03202{word-spacing:-12.602304px;}
.wsa_c03202{word-spacing:-12.474000px;}
.ws8_c03202{word-spacing:-12.459744px;}
.ws9_c03202{word-spacing:-12.416976px;}
.ws10_c03202{word-spacing:-1.083456px;}
.wsd_c03202{word-spacing:-0.974160px;}
.ws14_c03202{word-spacing:-0.719712px;}
.ws15_c03202{word-spacing:-0.375408px;}
.wsf_c03202{word-spacing:-0.118800px;}
.ws12_c03202{word-spacing:-0.099792px;}
.ws13_c03202{word-spacing:-0.085536px;}
.wse_c03202{word-spacing:0.000000px;}
.ws11_c03202{word-spacing:0.836352px;}
.ws4_c03202{word-spacing:4.951584px;}
.wsb_c03202{word-spacing:33.300288px;}
.ws6_c03202{word-spacing:36.742464px;}
.ws1_c03202{word-spacing:37.759392px;}
.ws0_c03202{word-spacing:38.020752px;}
.ws3_c03202{word-spacing:39.218256px;}
.ws5_c03202{word-spacing:39.902544px;}
.ws7_c03202{word-spacing:42.026688px;}
._0_c03202{margin-left:-1.948320px;}
._2_c03202{width:1.482624px;}
._4_c03202{width:2.770416px;}
._1_c03202{width:50.252400px;}
._3_c03202{width:51.530688px;}
.fc0_c03202{color:rgb(0,0,0);}
.fs0_c03202{font-size:47.520000px;}
.fs1_c03202{font-size:60.480000px;}
.y0_c03202{bottom:0.000000px;}
.y19_c03202{bottom:146.998362px;}
.y1b_c03202{bottom:186.600234px;}
.y1a_c03202{bottom:196.320450px;}
.y18_c03202{bottom:275.878542px;}
.y17_c03202{bottom:356.878758px;}
.y15_c03202{bottom:406.559730px;}
.y11_c03202{bottom:424.560306px;}
.y16_c03202{bottom:458.759262px;}
.y14_c03202{bottom:491.879514px;}
.y13_c03202{bottom:509.880090px;}
.y10_c03202{bottom:543.000342px;}
.y12_c03202{bottom:559.559874px;}
.yf_c03202{bottom:577.560450px;}
.y1c_c03202{bottom:614.280450px;}
.yb_c03202{bottom:667.558326px;}
.yd_c03202{bottom:707.160234px;}
.yc_c03202{bottom:716.880450px;}
.ya_c03202{bottom:796.438506px;}
.y9_c03202{bottom:877.438722px;}
.y7_c03202{bottom:926.759730px;}
.y3_c03202{bottom:944.760306px;}
.y8_c03202{bottom:979.319226px;}
.y6_c03202{bottom:1012.439478px;}
.y5_c03202{bottom:1030.440054px;}
.y2_c03202{bottom:1063.560306px;}
.y4_c03202{bottom:1079.759874px;}
.y1_c03202{bottom:1097.760450px;}
.ye_c03202{bottom:1134.840450px;}
.h4_c03202{height:32.530781px;}
.h1_c03202{height:41.696016px;}
.h2_c03202{height:41.812031px;}
.h6_c03202{height:47.571455px;}
.h3_c03202{height:49.011311px;}
.h5_c03202{height:54.654737px;}
.h0_c03202{height:1263.000000px;}
.w1_c03202{width:892.500000px;}
.w0_c03202{width:892.830000px;}
.x0_c03202{left:0.000000px;}
.xd_c03202{left:117.000000px;}
.x8_c03202{left:440.999856px;}
.x4_c03202{left:445.680576px;}
.xb_c03202{left:451.080000px;}
.x7_c03202{left:455.399604px;}
.x5_c03202{left:461.880144px;}
.x1_c03202{left:463.320000px;}
.xa_c03202{left:483.480360px;}
.x9_c03202{left:492.119496px;}
.x6_c03202{left:493.200576px;}
.xc_c03202{left:506.880360px;}
.x3_c03202{left:511.919892px;}
.x2_c03202{left:526.679604px;}
@media print{
.v0_c03202{vertical-align:0.000000pt;}
.v2_c03202{vertical-align:1.279488pt;}
.v3_c03202{vertical-align:5.119488pt;}
.v1_c03202{vertical-align:6.399360pt;}
.lsb_c03202{letter-spacing:-1.064448pt;}
.ls8_c03202{letter-spacing:-0.511104pt;}
.lse_c03202{letter-spacing:-0.244992pt;}
.lsc_c03202{letter-spacing:-0.232320pt;}
.ls6_c03202{letter-spacing:-0.215424pt;}
.ls4_c03202{letter-spacing:-0.105600pt;}
.ls11_c03202{letter-spacing:0.000000pt;}
.ls1_c03202{letter-spacing:0.005376pt;}
.ls12_c03202{letter-spacing:0.012672pt;}
.ls5_c03202{letter-spacing:0.114048pt;}
.lsa_c03202{letter-spacing:0.451968pt;}
.ls10_c03202{letter-spacing:0.456960pt;}
.lsd_c03202{letter-spacing:0.477312pt;}
.ls9_c03202{letter-spacing:0.515328pt;}
.lsf_c03202{letter-spacing:0.528000pt;}
.ls7_c03202{letter-spacing:0.532224pt;}
.ls2_c03202{letter-spacing:0.544896pt;}
.ls3_c03202{letter-spacing:0.637824pt;}
.ls0_c03202{letter-spacing:0.642048pt;}
.wsc_c03202{word-spacing:-13.445376pt;}
.ws2_c03202{word-spacing:-11.202048pt;}
.wsa_c03202{word-spacing:-11.088000pt;}
.ws8_c03202{word-spacing:-11.075328pt;}
.ws9_c03202{word-spacing:-11.037312pt;}
.ws10_c03202{word-spacing:-0.963072pt;}
.wsd_c03202{word-spacing:-0.865920pt;}
.ws14_c03202{word-spacing:-0.639744pt;}
.ws15_c03202{word-spacing:-0.333696pt;}
.wsf_c03202{word-spacing:-0.105600pt;}
.ws12_c03202{word-spacing:-0.088704pt;}
.ws13_c03202{word-spacing:-0.076032pt;}
.wse_c03202{word-spacing:0.000000pt;}
.ws11_c03202{word-spacing:0.743424pt;}
.ws4_c03202{word-spacing:4.401408pt;}
.wsb_c03202{word-spacing:29.600256pt;}
.ws6_c03202{word-spacing:32.659968pt;}
.ws1_c03202{word-spacing:33.563904pt;}
.ws0_c03202{word-spacing:33.796224pt;}
.ws3_c03202{word-spacing:34.860672pt;}
.ws5_c03202{word-spacing:35.468928pt;}
.ws7_c03202{word-spacing:37.357056pt;}
._0_c03202{margin-left:-1.731840pt;}
._2_c03202{width:1.317888pt;}
._4_c03202{width:2.462592pt;}
._1_c03202{width:44.668800pt;}
._3_c03202{width:45.805056pt;}
.fs0_c03202{font-size:42.240000pt;}
.fs1_c03202{font-size:53.760000pt;}
.y0_c03202{bottom:0.000000pt;}
.y19_c03202{bottom:130.665211pt;}
.y1b_c03202{bottom:165.866875pt;}
.y1a_c03202{bottom:174.507067pt;}
.y18_c03202{bottom:245.225371pt;}
.y17_c03202{bottom:317.225563pt;}
.y15_c03202{bottom:361.386427pt;}
.y11_c03202{bottom:377.386939pt;}
.y16_c03202{bottom:407.786011pt;}
.y14_c03202{bottom:437.226235pt;}
.y13_c03202{bottom:453.226747pt;}
.y10_c03202{bottom:482.666971pt;}
.y12_c03202{bottom:497.386555pt;}
.yf_c03202{bottom:513.387067pt;}
.y1c_c03202{bottom:546.027067pt;}
.yb_c03202{bottom:593.385179pt;}
.yd_c03202{bottom:628.586875pt;}
.yc_c03202{bottom:637.227067pt;}
.ya_c03202{bottom:707.945339pt;}
.y9_c03202{bottom:779.945531pt;}
.y7_c03202{bottom:823.786427pt;}
.y3_c03202{bottom:839.786939pt;}
.y8_c03202{bottom:870.505979pt;}
.y6_c03202{bottom:899.946203pt;}
.y5_c03202{bottom:915.946715pt;}
.y2_c03202{bottom:945.386939pt;}
.y4_c03202{bottom:959.786555pt;}
.y1_c03202{bottom:975.787067pt;}
.ye_c03202{bottom:1008.747067pt;}
.h4_c03202{height:28.916250pt;}
.h1_c03202{height:37.063125pt;}
.h2_c03202{height:37.166250pt;}
.h6_c03202{height:42.285738pt;}
.h3_c03202{height:43.565610pt;}
.h5_c03202{height:48.581988pt;}
.h0_c03202{height:1122.666667pt;}
.w1_c03202{width:793.333333pt;}
.w0_c03202{width:793.626667pt;}
.x0_c03202{left:0.000000pt;}
.xd_c03202{left:104.000000pt;}
.x8_c03202{left:391.999872pt;}
.x4_c03202{left:396.160512pt;}
.xb_c03202{left:400.960000pt;}
.x7_c03202{left:404.799648pt;}
.x5_c03202{left:410.560128pt;}
.x1_c03202{left:411.840000pt;}
.xa_c03202{left:429.760320pt;}
.x9_c03202{left:437.439552pt;}
.x6_c03202{left:438.400512pt;}
.xc_c03202{left:450.560320pt;}
.x3_c03202{left:455.039904pt;}
.x2_c03202{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03203 {
    display:none;
  }
  .loading-indicator_c03203.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03203 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03203 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03203" -> "#page-container .classname_c03203")
 */
.pf_c03203 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03203 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03203.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03203 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03203 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03203 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03203 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03203 {overflow:visible;}
  }
}
.c_c03203 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03203 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03203:after { /* webkit #35443 */
  content: '';
}
.t_c03203:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03203 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03203 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03203 { /* info for Javascript */
  display:none;
}
.l_c03203 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03203 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03203 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03203:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03203 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03203.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03203.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03203 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03203{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03203;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03203{font-family:ff1_c03203;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03203;src:url('chunks/assets/font_f020e25e25f43fd4aabcaab1.woff2')format("woff");}.ff2_c03203{font-family:ff2_c03203;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03203;src:url('chunks/assets/font_ba382db4c4a0083be8261c9b.woff2')format("woff");}.ff3_c03203{font-family:ff3_c03203;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03203{vertical-align:0.000000px;}
.v2_c03203{vertical-align:1.439424px;}
.v3_c03203{vertical-align:5.759424px;}
.v1_c03203{vertical-align:7.199280px;}
.ls8_c03203{letter-spacing:-0.574992px;}
.lse_c03203{letter-spacing:-0.275616px;}
.lsc_c03203{letter-spacing:-0.261360px;}
.ls6_c03203{letter-spacing:-0.242352px;}
.ls4_c03203{letter-spacing:-0.118800px;}
.ls11_c03203{letter-spacing:0.000000px;}
.ls1_c03203{letter-spacing:0.006048px;}
.lsb_c03203{letter-spacing:0.014256px;}
.ls5_c03203{letter-spacing:0.128304px;}
.lsa_c03203{letter-spacing:0.508464px;}
.ls10_c03203{letter-spacing:0.514080px;}
.lsd_c03203{letter-spacing:0.536976px;}
.ls9_c03203{letter-spacing:0.579744px;}
.lsf_c03203{letter-spacing:0.594000px;}
.ls7_c03203{letter-spacing:0.598752px;}
.ls2_c03203{letter-spacing:0.613008px;}
.ls3_c03203{letter-spacing:0.717552px;}
.ls0_c03203{letter-spacing:0.722304px;}
.sc__c03203{text-shadow:none;}
.sc0_c03203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03203{-webkit-text-stroke:0px transparent;}
.sc0_c03203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03203{word-spacing:-15.126048px;}
.ws2_c03203{word-spacing:-12.602304px;}
.wsa_c03203{word-spacing:-12.474000px;}
.ws8_c03203{word-spacing:-12.459744px;}
.ws9_c03203{word-spacing:-12.416976px;}
.ws4_c03203{word-spacing:-11.637648px;}
.ws10_c03203{word-spacing:-1.083456px;}
.wsd_c03203{word-spacing:-0.974160px;}
.ws14_c03203{word-spacing:-0.719712px;}
.ws11_c03203{word-spacing:-0.375408px;}
.wsf_c03203{word-spacing:-0.118800px;}
.ws12_c03203{word-spacing:-0.099792px;}
.ws13_c03203{word-spacing:-0.085536px;}
.wse_c03203{word-spacing:0.000000px;}
.wsb_c03203{word-spacing:33.300288px;}
.ws6_c03203{word-spacing:36.742464px;}
.ws1_c03203{word-spacing:37.759392px;}
.ws0_c03203{word-spacing:38.020752px;}
.ws3_c03203{word-spacing:39.218256px;}
.ws5_c03203{word-spacing:39.902544px;}
.ws7_c03203{word-spacing:42.026688px;}
._0_c03203{margin-left:-1.948320px;}
._2_c03203{width:1.482624px;}
._1_c03203{width:50.252400px;}
._3_c03203{width:51.530688px;}
.fc0_c03203{color:rgb(0,0,0);}
.fs0_c03203{font-size:47.520000px;}
.fs1_c03203{font-size:60.480000px;}
.y0_c03203{bottom:0.000000px;}
.y19_c03203{bottom:146.998362px;}
.y1b_c03203{bottom:186.600234px;}
.y1a_c03203{bottom:196.320450px;}
.y18_c03203{bottom:275.878542px;}
.y17_c03203{bottom:356.878758px;}
.y15_c03203{bottom:406.559730px;}
.y11_c03203{bottom:424.560306px;}
.y16_c03203{bottom:458.759262px;}
.y14_c03203{bottom:491.879514px;}
.y13_c03203{bottom:509.880090px;}
.y10_c03203{bottom:543.000342px;}
.y12_c03203{bottom:559.559874px;}
.yf_c03203{bottom:577.560450px;}
.y1c_c03203{bottom:614.280450px;}
.yb_c03203{bottom:667.558326px;}
.yd_c03203{bottom:707.160234px;}
.yc_c03203{bottom:716.880450px;}
.ya_c03203{bottom:796.438506px;}
.y9_c03203{bottom:877.438722px;}
.y7_c03203{bottom:926.759730px;}
.y3_c03203{bottom:944.760306px;}
.y8_c03203{bottom:979.319226px;}
.y6_c03203{bottom:1012.439478px;}
.y5_c03203{bottom:1030.440054px;}
.y2_c03203{bottom:1063.560306px;}
.y4_c03203{bottom:1079.759874px;}
.y1_c03203{bottom:1097.760450px;}
.ye_c03203{bottom:1134.840450px;}
.h4_c03203{height:32.530781px;}
.h1_c03203{height:41.696016px;}
.h2_c03203{height:41.812031px;}
.h6_c03203{height:47.571455px;}
.h3_c03203{height:49.011311px;}
.h5_c03203{height:54.654737px;}
.h0_c03203{height:1263.000000px;}
.w1_c03203{width:892.500000px;}
.w0_c03203{width:892.830000px;}
.x0_c03203{left:0.000000px;}
.xd_c03203{left:117.000000px;}
.x8_c03203{left:440.998668px;}
.x4_c03203{left:445.680576px;}
.xb_c03203{left:451.080000px;}
.x7_c03203{left:455.398416px;}
.x5_c03203{left:461.880144px;}
.x1_c03203{left:463.320000px;}
.xa_c03203{left:483.479172px;}
.x9_c03203{left:492.118308px;}
.x6_c03203{left:493.199388px;}
.xc_c03203{left:506.880360px;}
.x3_c03203{left:511.919892px;}
.x2_c03203{left:526.679604px;}
@media print{
.v0_c03203{vertical-align:0.000000pt;}
.v2_c03203{vertical-align:1.279488pt;}
.v3_c03203{vertical-align:5.119488pt;}
.v1_c03203{vertical-align:6.399360pt;}
.ls8_c03203{letter-spacing:-0.511104pt;}
.lse_c03203{letter-spacing:-0.244992pt;}
.lsc_c03203{letter-spacing:-0.232320pt;}
.ls6_c03203{letter-spacing:-0.215424pt;}
.ls4_c03203{letter-spacing:-0.105600pt;}
.ls11_c03203{letter-spacing:0.000000pt;}
.ls1_c03203{letter-spacing:0.005376pt;}
.lsb_c03203{letter-spacing:0.012672pt;}
.ls5_c03203{letter-spacing:0.114048pt;}
.lsa_c03203{letter-spacing:0.451968pt;}
.ls10_c03203{letter-spacing:0.456960pt;}
.lsd_c03203{letter-spacing:0.477312pt;}
.ls9_c03203{letter-spacing:0.515328pt;}
.lsf_c03203{letter-spacing:0.528000pt;}
.ls7_c03203{letter-spacing:0.532224pt;}
.ls2_c03203{letter-spacing:0.544896pt;}
.ls3_c03203{letter-spacing:0.637824pt;}
.ls0_c03203{letter-spacing:0.642048pt;}
.wsc_c03203{word-spacing:-13.445376pt;}
.ws2_c03203{word-spacing:-11.202048pt;}
.wsa_c03203{word-spacing:-11.088000pt;}
.ws8_c03203{word-spacing:-11.075328pt;}
.ws9_c03203{word-spacing:-11.037312pt;}
.ws4_c03203{word-spacing:-10.344576pt;}
.ws10_c03203{word-spacing:-0.963072pt;}
.wsd_c03203{word-spacing:-0.865920pt;}
.ws14_c03203{word-spacing:-0.639744pt;}
.ws11_c03203{word-spacing:-0.333696pt;}
.wsf_c03203{word-spacing:-0.105600pt;}
.ws12_c03203{word-spacing:-0.088704pt;}
.ws13_c03203{word-spacing:-0.076032pt;}
.wse_c03203{word-spacing:0.000000pt;}
.wsb_c03203{word-spacing:29.600256pt;}
.ws6_c03203{word-spacing:32.659968pt;}
.ws1_c03203{word-spacing:33.563904pt;}
.ws0_c03203{word-spacing:33.796224pt;}
.ws3_c03203{word-spacing:34.860672pt;}
.ws5_c03203{word-spacing:35.468928pt;}
.ws7_c03203{word-spacing:37.357056pt;}
._0_c03203{margin-left:-1.731840pt;}
._2_c03203{width:1.317888pt;}
._1_c03203{width:44.668800pt;}
._3_c03203{width:45.805056pt;}
.fs0_c03203{font-size:42.240000pt;}
.fs1_c03203{font-size:53.760000pt;}
.y0_c03203{bottom:0.000000pt;}
.y19_c03203{bottom:130.665211pt;}
.y1b_c03203{bottom:165.866875pt;}
.y1a_c03203{bottom:174.507067pt;}
.y18_c03203{bottom:245.225371pt;}
.y17_c03203{bottom:317.225563pt;}
.y15_c03203{bottom:361.386427pt;}
.y11_c03203{bottom:377.386939pt;}
.y16_c03203{bottom:407.786011pt;}
.y14_c03203{bottom:437.226235pt;}
.y13_c03203{bottom:453.226747pt;}
.y10_c03203{bottom:482.666971pt;}
.y12_c03203{bottom:497.386555pt;}
.yf_c03203{bottom:513.387067pt;}
.y1c_c03203{bottom:546.027067pt;}
.yb_c03203{bottom:593.385179pt;}
.yd_c03203{bottom:628.586875pt;}
.yc_c03203{bottom:637.227067pt;}
.ya_c03203{bottom:707.945339pt;}
.y9_c03203{bottom:779.945531pt;}
.y7_c03203{bottom:823.786427pt;}
.y3_c03203{bottom:839.786939pt;}
.y8_c03203{bottom:870.505979pt;}
.y6_c03203{bottom:899.946203pt;}
.y5_c03203{bottom:915.946715pt;}
.y2_c03203{bottom:945.386939pt;}
.y4_c03203{bottom:959.786555pt;}
.y1_c03203{bottom:975.787067pt;}
.ye_c03203{bottom:1008.747067pt;}
.h4_c03203{height:28.916250pt;}
.h1_c03203{height:37.063125pt;}
.h2_c03203{height:37.166250pt;}
.h6_c03203{height:42.285738pt;}
.h3_c03203{height:43.565610pt;}
.h5_c03203{height:48.581988pt;}
.h0_c03203{height:1122.666667pt;}
.w1_c03203{width:793.333333pt;}
.w0_c03203{width:793.626667pt;}
.x0_c03203{left:0.000000pt;}
.xd_c03203{left:104.000000pt;}
.x8_c03203{left:391.998816pt;}
.x4_c03203{left:396.160512pt;}
.xb_c03203{left:400.960000pt;}
.x7_c03203{left:404.798592pt;}
.x5_c03203{left:410.560128pt;}
.x1_c03203{left:411.840000pt;}
.xa_c03203{left:429.759264pt;}
.x9_c03203{left:437.438496pt;}
.x6_c03203{left:438.399456pt;}
.xc_c03203{left:450.560320pt;}
.x3_c03203{left:455.039904pt;}
.x2_c03203{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03204 {
    display:none;
  }
  .loading-indicator_c03204.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03204 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03204 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03204" -> "#page-container .classname_c03204")
 */
.pf_c03204 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03204 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03204.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03204 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03204 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03204 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03204 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03204 {overflow:visible;}
  }
}
.c_c03204 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03204 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03204:after { /* webkit #35443 */
  content: '';
}
.t_c03204:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03204 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03204 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03204 { /* info for Javascript */
  display:none;
}
.l_c03204 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03204 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03204 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03204:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03204 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03204.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03204.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03204 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03204{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03204;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03204{font-family:ff1_c03204;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03204;src:url('chunks/assets/font_b9a745e4f813546cff95439a.woff2')format("woff");}.ff2_c03204{font-family:ff2_c03204;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03204;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03204{font-family:ff3_c03204;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03204{vertical-align:0.000000px;}
.v1_c03204{vertical-align:1.439424px;}
.ls7_c03204{letter-spacing:-0.574992px;}
.lsd_c03204{letter-spacing:-0.275616px;}
.lsb_c03204{letter-spacing:-0.261360px;}
.ls5_c03204{letter-spacing:-0.242352px;}
.ls3_c03204{letter-spacing:-0.118800px;}
.ls10_c03204{letter-spacing:0.000000px;}
.ls1_c03204{letter-spacing:0.006048px;}
.lsa_c03204{letter-spacing:0.038016px;}
.ls4_c03204{letter-spacing:0.128304px;}
.ls9_c03204{letter-spacing:0.508464px;}
.lsf_c03204{letter-spacing:0.514080px;}
.lsc_c03204{letter-spacing:0.536976px;}
.ls8_c03204{letter-spacing:0.579744px;}
.lse_c03204{letter-spacing:0.594000px;}
.ls6_c03204{letter-spacing:0.598752px;}
.ls2_c03204{letter-spacing:0.613008px;}
.ls0_c03204{letter-spacing:0.717552px;}
.sc__c03204{text-shadow:none;}
.sc0_c03204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03204{-webkit-text-stroke:0px transparent;}
.sc0_c03204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03204{word-spacing:-15.126048px;}
.wsa_c03204{word-spacing:-12.474000px;}
.ws8_c03204{word-spacing:-12.459744px;}
.ws9_c03204{word-spacing:-12.416976px;}
.ws4_c03204{word-spacing:-11.637648px;}
.ws10_c03204{word-spacing:-1.078704px;}
.wsd_c03204{word-spacing:-0.974160px;}
.ws14_c03204{word-spacing:-0.719712px;}
.ws11_c03204{word-spacing:-0.399168px;}
.wsf_c03204{word-spacing:-0.118800px;}
.ws12_c03204{word-spacing:-0.099792px;}
.ws13_c03204{word-spacing:-0.085536px;}
.wse_c03204{word-spacing:0.000000px;}
.ws2_c03204{word-spacing:1.330560px;}
.wsb_c03204{word-spacing:33.300288px;}
.ws6_c03204{word-spacing:36.742464px;}
.ws1_c03204{word-spacing:37.759392px;}
.ws0_c03204{word-spacing:38.020752px;}
.ws3_c03204{word-spacing:39.218256px;}
.ws5_c03204{word-spacing:39.902544px;}
.ws7_c03204{word-spacing:42.026688px;}
._0_c03204{margin-left:-1.948320px;}
._2_c03204{width:1.482624px;}
._4_c03204{width:6.263136px;}
._1_c03204{width:50.252400px;}
._3_c03204{width:51.530688px;}
.fc0_c03204{color:rgb(0,0,0);}
.fs0_c03204{font-size:47.520000px;}
.fs1_c03204{font-size:60.480000px;}
.y0_c03204{bottom:0.000000px;}
.y19_c03204{bottom:146.998362px;}
.y1b_c03204{bottom:186.600234px;}
.y1a_c03204{bottom:196.320450px;}
.y18_c03204{bottom:275.878542px;}
.y17_c03204{bottom:356.878758px;}
.y15_c03204{bottom:406.559730px;}
.y11_c03204{bottom:424.560306px;}
.y16_c03204{bottom:458.759262px;}
.y14_c03204{bottom:491.879514px;}
.y13_c03204{bottom:509.880090px;}
.y10_c03204{bottom:543.000342px;}
.y12_c03204{bottom:559.559874px;}
.yf_c03204{bottom:577.560450px;}
.y1c_c03204{bottom:614.280450px;}
.yb_c03204{bottom:667.558326px;}
.yd_c03204{bottom:707.160234px;}
.yc_c03204{bottom:716.880450px;}
.ya_c03204{bottom:796.438506px;}
.y9_c03204{bottom:877.438722px;}
.y7_c03204{bottom:926.759730px;}
.y3_c03204{bottom:944.760306px;}
.y8_c03204{bottom:979.319226px;}
.y6_c03204{bottom:1012.439478px;}
.y5_c03204{bottom:1030.440054px;}
.y2_c03204{bottom:1063.560306px;}
.y4_c03204{bottom:1079.759874px;}
.y1_c03204{bottom:1097.760450px;}
.ye_c03204{bottom:1134.840450px;}
.h3_c03204{height:32.530781px;}
.h1_c03204{height:41.696016px;}
.h2_c03204{height:41.812031px;}
.h4_c03204{height:54.654737px;}
.h0_c03204{height:1263.000000px;}
.w1_c03204{width:892.500000px;}
.w0_c03204{width:892.830000px;}
.x0_c03204{left:0.000000px;}
.xd_c03204{left:117.000000px;}
.x8_c03204{left:440.999856px;}
.x4_c03204{left:445.680576px;}
.xb_c03204{left:451.080000px;}
.x7_c03204{left:455.399604px;}
.x5_c03204{left:461.880144px;}
.x1_c03204{left:463.320000px;}
.xa_c03204{left:483.480360px;}
.x9_c03204{left:492.119496px;}
.x6_c03204{left:493.200576px;}
.xc_c03204{left:506.880360px;}
.x3_c03204{left:511.919892px;}
.x2_c03204{left:526.679604px;}
@media print{
.v0_c03204{vertical-align:0.000000pt;}
.v1_c03204{vertical-align:1.279488pt;}
.ls7_c03204{letter-spacing:-0.511104pt;}
.lsd_c03204{letter-spacing:-0.244992pt;}
.lsb_c03204{letter-spacing:-0.232320pt;}
.ls5_c03204{letter-spacing:-0.215424pt;}
.ls3_c03204{letter-spacing:-0.105600pt;}
.ls10_c03204{letter-spacing:0.000000pt;}
.ls1_c03204{letter-spacing:0.005376pt;}
.lsa_c03204{letter-spacing:0.033792pt;}
.ls4_c03204{letter-spacing:0.114048pt;}
.ls9_c03204{letter-spacing:0.451968pt;}
.lsf_c03204{letter-spacing:0.456960pt;}
.lsc_c03204{letter-spacing:0.477312pt;}
.ls8_c03204{letter-spacing:0.515328pt;}
.lse_c03204{letter-spacing:0.528000pt;}
.ls6_c03204{letter-spacing:0.532224pt;}
.ls2_c03204{letter-spacing:0.544896pt;}
.ls0_c03204{letter-spacing:0.637824pt;}
.wsc_c03204{word-spacing:-13.445376pt;}
.wsa_c03204{word-spacing:-11.088000pt;}
.ws8_c03204{word-spacing:-11.075328pt;}
.ws9_c03204{word-spacing:-11.037312pt;}
.ws4_c03204{word-spacing:-10.344576pt;}
.ws10_c03204{word-spacing:-0.958848pt;}
.wsd_c03204{word-spacing:-0.865920pt;}
.ws14_c03204{word-spacing:-0.639744pt;}
.ws11_c03204{word-spacing:-0.354816pt;}
.wsf_c03204{word-spacing:-0.105600pt;}
.ws12_c03204{word-spacing:-0.088704pt;}
.ws13_c03204{word-spacing:-0.076032pt;}
.wse_c03204{word-spacing:0.000000pt;}
.ws2_c03204{word-spacing:1.182720pt;}
.wsb_c03204{word-spacing:29.600256pt;}
.ws6_c03204{word-spacing:32.659968pt;}
.ws1_c03204{word-spacing:33.563904pt;}
.ws0_c03204{word-spacing:33.796224pt;}
.ws3_c03204{word-spacing:34.860672pt;}
.ws5_c03204{word-spacing:35.468928pt;}
.ws7_c03204{word-spacing:37.357056pt;}
._0_c03204{margin-left:-1.731840pt;}
._2_c03204{width:1.317888pt;}
._4_c03204{width:5.567232pt;}
._1_c03204{width:44.668800pt;}
._3_c03204{width:45.805056pt;}
.fs0_c03204{font-size:42.240000pt;}
.fs1_c03204{font-size:53.760000pt;}
.y0_c03204{bottom:0.000000pt;}
.y19_c03204{bottom:130.665211pt;}
.y1b_c03204{bottom:165.866875pt;}
.y1a_c03204{bottom:174.507067pt;}
.y18_c03204{bottom:245.225371pt;}
.y17_c03204{bottom:317.225563pt;}
.y15_c03204{bottom:361.386427pt;}
.y11_c03204{bottom:377.386939pt;}
.y16_c03204{bottom:407.786011pt;}
.y14_c03204{bottom:437.226235pt;}
.y13_c03204{bottom:453.226747pt;}
.y10_c03204{bottom:482.666971pt;}
.y12_c03204{bottom:497.386555pt;}
.yf_c03204{bottom:513.387067pt;}
.y1c_c03204{bottom:546.027067pt;}
.yb_c03204{bottom:593.385179pt;}
.yd_c03204{bottom:628.586875pt;}
.yc_c03204{bottom:637.227067pt;}
.ya_c03204{bottom:707.945339pt;}
.y9_c03204{bottom:779.945531pt;}
.y7_c03204{bottom:823.786427pt;}
.y3_c03204{bottom:839.786939pt;}
.y8_c03204{bottom:870.505979pt;}
.y6_c03204{bottom:899.946203pt;}
.y5_c03204{bottom:915.946715pt;}
.y2_c03204{bottom:945.386939pt;}
.y4_c03204{bottom:959.786555pt;}
.y1_c03204{bottom:975.787067pt;}
.ye_c03204{bottom:1008.747067pt;}
.h3_c03204{height:28.916250pt;}
.h1_c03204{height:37.063125pt;}
.h2_c03204{height:37.166250pt;}
.h4_c03204{height:48.581988pt;}
.h0_c03204{height:1122.666667pt;}
.w1_c03204{width:793.333333pt;}
.w0_c03204{width:793.626667pt;}
.x0_c03204{left:0.000000pt;}
.xd_c03204{left:104.000000pt;}
.x8_c03204{left:391.999872pt;}
.x4_c03204{left:396.160512pt;}
.xb_c03204{left:400.960000pt;}
.x7_c03204{left:404.799648pt;}
.x5_c03204{left:410.560128pt;}
.x1_c03204{left:411.840000pt;}
.xa_c03204{left:429.760320pt;}
.x9_c03204{left:437.439552pt;}
.x6_c03204{left:438.400512pt;}
.xc_c03204{left:450.560320pt;}
.x3_c03204{left:455.039904pt;}
.x2_c03204{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03205 {
    display:none;
  }
  .loading-indicator_c03205.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03205 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03205 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03205" -> "#page-container .classname_c03205")
 */
.pf_c03205 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03205 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03205.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03205 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03205 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03205 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03205 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03205 {overflow:visible;}
  }
}
.c_c03205 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03205 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03205:after { /* webkit #35443 */
  content: '';
}
.t_c03205:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03205 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03205 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03205 { /* info for Javascript */
  display:none;
}
.l_c03205 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03205 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03205 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03205:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03205 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03205.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03205.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03205 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03205{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03205;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03205{font-family:ff1_c03205;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03205;src:url('chunks/assets/font_7b176d494442a36b733d6ddd.woff2')format("woff");}.ff2_c03205{font-family:ff2_c03205;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03205;src:url('chunks/assets/font_d23037d8c6346b4a2e999fc1.woff2')format("woff");}.ff3_c03205{font-family:ff3_c03205;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03205{vertical-align:0.000000px;}
.v2_c03205{vertical-align:1.439424px;}
.v1_c03205{vertical-align:33.121440px;}
.ls1a_c03205{letter-spacing:-1.197504px;}
.ls19_c03205{letter-spacing:-0.793584px;}
.ls14_c03205{letter-spacing:-0.760320px;}
.lsa_c03205{letter-spacing:-0.746064px;}
.ls1c_c03205{letter-spacing:-0.722304px;}
.lsd_c03205{letter-spacing:-0.717552px;}
.ls8_c03205{letter-spacing:-0.679536px;}
.lsb_c03205{letter-spacing:-0.574992px;}
.ls12_c03205{letter-spacing:-0.361152px;}
.ls1b_c03205{letter-spacing:-0.304128px;}
.ls15_c03205{letter-spacing:-0.275616px;}
.ls11_c03205{letter-spacing:-0.261360px;}
.ls7_c03205{letter-spacing:-0.242352px;}
.lsf_c03205{letter-spacing:-0.228096px;}
.ls5_c03205{letter-spacing:-0.118800px;}
.ls18_c03205{letter-spacing:0.000000px;}
.ls2_c03205{letter-spacing:0.006048px;}
.ls6_c03205{letter-spacing:0.128304px;}
.lse_c03205{letter-spacing:0.508464px;}
.ls17_c03205{letter-spacing:0.514080px;}
.ls13_c03205{letter-spacing:0.536976px;}
.lsc_c03205{letter-spacing:0.579744px;}
.ls16_c03205{letter-spacing:0.594000px;}
.ls9_c03205{letter-spacing:0.598752px;}
.ls3_c03205{letter-spacing:0.613008px;}
.ls1_c03205{letter-spacing:0.651024px;}
.ls10_c03205{letter-spacing:0.674784px;}
.ls4_c03205{letter-spacing:0.717552px;}
.ls0_c03205{letter-spacing:0.722304px;}
.sc__c03205{text-shadow:none;}
.sc0_c03205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03205{-webkit-text-stroke:0px transparent;}
.sc0_c03205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12_c03205{word-spacing:-15.126048px;}
.wsc_c03205{word-spacing:-12.531024px;}
.ws7_c03205{word-spacing:-12.459744px;}
.ws17_c03205{word-spacing:-12.416976px;}
.ws15_c03205{word-spacing:-11.575872px;}
.ws2_c03205{word-spacing:-11.200464px;}
.ws1c_c03205{word-spacing:-1.083456px;}
.ws18_c03205{word-spacing:-0.974160px;}
.ws21_c03205{word-spacing:-0.719712px;}
.wsb_c03205{word-spacing:-0.622512px;}
.ws1a_c03205{word-spacing:-0.118800px;}
.ws1e_c03205{word-spacing:-0.099792px;}
.ws20_c03205{word-spacing:-0.085536px;}
.wsa_c03205{word-spacing:-0.042768px;}
.ws19_c03205{word-spacing:0.000000px;}
.ws1d_c03205{word-spacing:0.356400px;}
.ws23_c03205{word-spacing:0.361152px;}
.ws1b_c03205{word-spacing:0.384912px;}
.ws1f_c03205{word-spacing:0.399168px;}
.ws22_c03205{word-spacing:0.432432px;}
.ws9_c03205{word-spacing:3.711312px;}
.ws8_c03205{word-spacing:5.165424px;}
.ws16_c03205{word-spacing:7.916832px;}
.ws14_c03205{word-spacing:10.316592px;}
.ws10_c03205{word-spacing:30.298752px;}
.ws11_c03205{word-spacing:33.300288px;}
.wse_c03205{word-spacing:34.836912px;}
.ws13_c03205{word-spacing:36.143712px;}
.ws5_c03205{word-spacing:36.742464px;}
.ws1_c03205{word-spacing:37.759392px;}
.ws0_c03205{word-spacing:38.020752px;}
.ws3_c03205{word-spacing:39.218256px;}
.ws4_c03205{word-spacing:39.902544px;}
.ws6_c03205{word-spacing:42.026688px;}
.wsd_c03205{word-spacing:48.237552px;}
.wsf_c03205{word-spacing:73.584720px;}
._0_c03205{margin-left:-1.948320px;}
._2_c03205{width:1.482624px;}
._c_c03205{width:2.756160px;}
._6_c03205{width:13.738032px;}
._4_c03205{width:18.547056px;}
._5_c03205{width:21.854448px;}
._b_c03205{width:23.935824px;}
._d_c03205{width:25.104816px;}
._1_c03205{width:50.252400px;}
._3_c03205{width:51.530688px;}
._8_c03205{width:58.492368px;}
._7_c03205{width:65.938752px;}
._9_c03205{width:86.248800px;}
._a_c03205{width:87.636384px;}
.fc0_c03205{color:rgb(0,0,0);}
.fs0_c03205{font-size:47.520000px;}
.fs1_c03205{font-size:60.480000px;}
.y0_c03205{bottom:0.000000px;}
.y21_c03205{bottom:50.760450px;}
.yb_c03205{bottom:66.240450px;}
.y24_c03205{bottom:147.001134px;}
.y26_c03205{bottom:186.600234px;}
.y25_c03205{bottom:196.320450px;}
.y20_c03205{bottom:210.000000px;}
.y23_c03205{bottom:246.000738px;}
.y22_c03205{bottom:260.760450px;}
.y1f_c03205{bottom:275.878542px;}
.y1e_c03205{bottom:356.878758px;}
.y1c_c03205{bottom:406.559730px;}
.y18_c03205{bottom:424.560306px;}
.y1d_c03205{bottom:458.759262px;}
.y1b_c03205{bottom:491.879514px;}
.y1a_c03205{bottom:509.880090px;}
.y17_c03205{bottom:543.000342px;}
.y19_c03205{bottom:559.559874px;}
.y16_c03205{bottom:577.560450px;}
.y27_c03205{bottom:614.280450px;}
.y12_c03205{bottom:652.441566px;}
.y11_c03205{bottom:667.561242px;}
.y14_c03205{bottom:707.160234px;}
.y13_c03205{bottom:716.880450px;}
.y10_c03205{bottom:781.321746px;}
.yf_c03205{bottom:796.441422px;}
.ya_c03205{bottom:811.200000px;}
.ye_c03205{bottom:847.561062px;}
.yd_c03205{bottom:862.320774px;}
.y9_c03205{bottom:877.438722px;}
.yc_c03205{bottom:877.440450px;}
.y7_c03205{bottom:926.759730px;}
.y3_c03205{bottom:944.760306px;}
.y8_c03205{bottom:979.319226px;}
.y6_c03205{bottom:1012.439478px;}
.y5_c03205{bottom:1030.440054px;}
.y2_c03205{bottom:1063.560306px;}
.y4_c03205{bottom:1079.759874px;}
.y1_c03205{bottom:1097.760450px;}
.y15_c03205{bottom:1134.840450px;}
.h3_c03205{height:32.530781px;}
.h1_c03205{height:41.696016px;}
.h2_c03205{height:41.812031px;}
.h6_c03205{height:54.654737px;}
.h5_c03205{height:74.817456px;}
.h7_c03205{height:78.480000px;}
.h4_c03205{height:78.840000px;}
.h0_c03205{height:1263.000000px;}
.w2_c03205{width:215.280000px;}
.w1_c03205{width:892.500000px;}
.w0_c03205{width:892.830000px;}
.x0_c03205{left:0.000000px;}
.xf_c03205{left:117.000000px;}
.x8_c03205{left:440.999856px;}
.x4_c03205{left:445.680576px;}
.xd_c03205{left:451.080000px;}
.x7_c03205{left:455.399604px;}
.x5_c03205{left:461.880144px;}
.x1_c03205{left:463.320000px;}
.xc_c03205{left:483.481872px;}
.x9_c03205{left:492.119496px;}
.x6_c03205{left:493.200576px;}
.xe_c03205{left:506.880360px;}
.x3_c03205{left:511.919892px;}
.x2_c03205{left:526.679604px;}
.xa_c03205{left:569.520000px;}
.xb_c03205{left:585.360000px;}
.x10_c03205{left:612.360000px;}
@media print{
.v0_c03205{vertical-align:0.000000pt;}
.v2_c03205{vertical-align:1.279488pt;}
.v1_c03205{vertical-align:29.441280pt;}
.ls1a_c03205{letter-spacing:-1.064448pt;}
.ls19_c03205{letter-spacing:-0.705408pt;}
.ls14_c03205{letter-spacing:-0.675840pt;}
.lsa_c03205{letter-spacing:-0.663168pt;}
.ls1c_c03205{letter-spacing:-0.642048pt;}
.lsd_c03205{letter-spacing:-0.637824pt;}
.ls8_c03205{letter-spacing:-0.604032pt;}
.lsb_c03205{letter-spacing:-0.511104pt;}
.ls12_c03205{letter-spacing:-0.321024pt;}
.ls1b_c03205{letter-spacing:-0.270336pt;}
.ls15_c03205{letter-spacing:-0.244992pt;}
.ls11_c03205{letter-spacing:-0.232320pt;}
.ls7_c03205{letter-spacing:-0.215424pt;}
.lsf_c03205{letter-spacing:-0.202752pt;}
.ls5_c03205{letter-spacing:-0.105600pt;}
.ls18_c03205{letter-spacing:0.000000pt;}
.ls2_c03205{letter-spacing:0.005376pt;}
.ls6_c03205{letter-spacing:0.114048pt;}
.lse_c03205{letter-spacing:0.451968pt;}
.ls17_c03205{letter-spacing:0.456960pt;}
.ls13_c03205{letter-spacing:0.477312pt;}
.lsc_c03205{letter-spacing:0.515328pt;}
.ls16_c03205{letter-spacing:0.528000pt;}
.ls9_c03205{letter-spacing:0.532224pt;}
.ls3_c03205{letter-spacing:0.544896pt;}
.ls1_c03205{letter-spacing:0.578688pt;}
.ls10_c03205{letter-spacing:0.599808pt;}
.ls4_c03205{letter-spacing:0.637824pt;}
.ls0_c03205{letter-spacing:0.642048pt;}
.ws12_c03205{word-spacing:-13.445376pt;}
.wsc_c03205{word-spacing:-11.138688pt;}
.ws7_c03205{word-spacing:-11.075328pt;}
.ws17_c03205{word-spacing:-11.037312pt;}
.ws15_c03205{word-spacing:-10.289664pt;}
.ws2_c03205{word-spacing:-9.955968pt;}
.ws1c_c03205{word-spacing:-0.963072pt;}
.ws18_c03205{word-spacing:-0.865920pt;}
.ws21_c03205{word-spacing:-0.639744pt;}
.wsb_c03205{word-spacing:-0.553344pt;}
.ws1a_c03205{word-spacing:-0.105600pt;}
.ws1e_c03205{word-spacing:-0.088704pt;}
.ws20_c03205{word-spacing:-0.076032pt;}
.wsa_c03205{word-spacing:-0.038016pt;}
.ws19_c03205{word-spacing:0.000000pt;}
.ws1d_c03205{word-spacing:0.316800pt;}
.ws23_c03205{word-spacing:0.321024pt;}
.ws1b_c03205{word-spacing:0.342144pt;}
.ws1f_c03205{word-spacing:0.354816pt;}
.ws22_c03205{word-spacing:0.384384pt;}
.ws9_c03205{word-spacing:3.298944pt;}
.ws8_c03205{word-spacing:4.591488pt;}
.ws16_c03205{word-spacing:7.037184pt;}
.ws14_c03205{word-spacing:9.170304pt;}
.ws10_c03205{word-spacing:26.932224pt;}
.ws11_c03205{word-spacing:29.600256pt;}
.wse_c03205{word-spacing:30.966144pt;}
.ws13_c03205{word-spacing:32.127744pt;}
.ws5_c03205{word-spacing:32.659968pt;}
.ws1_c03205{word-spacing:33.563904pt;}
.ws0_c03205{word-spacing:33.796224pt;}
.ws3_c03205{word-spacing:34.860672pt;}
.ws4_c03205{word-spacing:35.468928pt;}
.ws6_c03205{word-spacing:37.357056pt;}
.wsd_c03205{word-spacing:42.877824pt;}
.wsf_c03205{word-spacing:65.408640pt;}
._0_c03205{margin-left:-1.731840pt;}
._2_c03205{width:1.317888pt;}
._c_c03205{width:2.449920pt;}
._6_c03205{width:12.211584pt;}
._4_c03205{width:16.486272pt;}
._5_c03205{width:19.426176pt;}
._b_c03205{width:21.276288pt;}
._d_c03205{width:22.315392pt;}
._1_c03205{width:44.668800pt;}
._3_c03205{width:45.805056pt;}
._8_c03205{width:51.993216pt;}
._7_c03205{width:58.612224pt;}
._9_c03205{width:76.665600pt;}
._a_c03205{width:77.899008pt;}
.fs0_c03205{font-size:42.240000pt;}
.fs1_c03205{font-size:53.760000pt;}
.y0_c03205{bottom:0.000000pt;}
.y21_c03205{bottom:45.120400pt;}
.yb_c03205{bottom:58.880400pt;}
.y24_c03205{bottom:130.667675pt;}
.y26_c03205{bottom:165.866875pt;}
.y25_c03205{bottom:174.507067pt;}
.y20_c03205{bottom:186.666667pt;}
.y23_c03205{bottom:218.667323pt;}
.y22_c03205{bottom:231.787067pt;}
.y1f_c03205{bottom:245.225371pt;}
.y1e_c03205{bottom:317.225563pt;}
.y1c_c03205{bottom:361.386427pt;}
.y18_c03205{bottom:377.386939pt;}
.y1d_c03205{bottom:407.786011pt;}
.y1b_c03205{bottom:437.226235pt;}
.y1a_c03205{bottom:453.226747pt;}
.y17_c03205{bottom:482.666971pt;}
.y19_c03205{bottom:497.386555pt;}
.y16_c03205{bottom:513.387067pt;}
.y27_c03205{bottom:546.027067pt;}
.y12_c03205{bottom:579.948059pt;}
.y11_c03205{bottom:593.387771pt;}
.y14_c03205{bottom:628.586875pt;}
.y13_c03205{bottom:637.227067pt;}
.y10_c03205{bottom:694.508219pt;}
.yf_c03205{bottom:707.947931pt;}
.ya_c03205{bottom:721.066667pt;}
.ye_c03205{bottom:753.387611pt;}
.yd_c03205{bottom:766.507355pt;}
.y9_c03205{bottom:779.945531pt;}
.yc_c03205{bottom:779.947067pt;}
.y7_c03205{bottom:823.786427pt;}
.y3_c03205{bottom:839.786939pt;}
.y8_c03205{bottom:870.505979pt;}
.y6_c03205{bottom:899.946203pt;}
.y5_c03205{bottom:915.946715pt;}
.y2_c03205{bottom:945.386939pt;}
.y4_c03205{bottom:959.786555pt;}
.y1_c03205{bottom:975.787067pt;}
.y15_c03205{bottom:1008.747067pt;}
.h3_c03205{height:28.916250pt;}
.h1_c03205{height:37.063125pt;}
.h2_c03205{height:37.166250pt;}
.h6_c03205{height:48.581988pt;}
.h5_c03205{height:66.504405pt;}
.h7_c03205{height:69.760000pt;}
.h4_c03205{height:70.080000pt;}
.h0_c03205{height:1122.666667pt;}
.w2_c03205{width:191.360000pt;}
.w1_c03205{width:793.333333pt;}
.w0_c03205{width:793.626667pt;}
.x0_c03205{left:0.000000pt;}
.xf_c03205{left:104.000000pt;}
.x8_c03205{left:391.999872pt;}
.x4_c03205{left:396.160512pt;}
.xd_c03205{left:400.960000pt;}
.x7_c03205{left:404.799648pt;}
.x5_c03205{left:410.560128pt;}
.x1_c03205{left:411.840000pt;}
.xc_c03205{left:429.761664pt;}
.x9_c03205{left:437.439552pt;}
.x6_c03205{left:438.400512pt;}
.xe_c03205{left:450.560320pt;}
.x3_c03205{left:455.039904pt;}
.x2_c03205{left:468.159648pt;}
.xa_c03205{left:506.240000pt;}
.xb_c03205{left:520.320000pt;}
.x10_c03205{left:544.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03206 {
    display:none;
  }
  .loading-indicator_c03206.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03206 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03206 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03206" -> "#page-container .classname_c03206")
 */
.pf_c03206 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03206 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03206.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03206 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03206 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03206 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03206 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03206 {overflow:visible;}
  }
}
.c_c03206 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03206 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03206:after { /* webkit #35443 */
  content: '';
}
.t_c03206:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03206 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03206 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03206 { /* info for Javascript */
  display:none;
}
.l_c03206 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03206 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03206 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03206:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03206 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03206.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03206.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03206 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03206{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03206;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03206{font-family:ff1_c03206;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03206;src:url('chunks/assets/font_57c6bdba7b98562abaf4248d.woff2')format("woff");}.ff2_c03206{font-family:ff2_c03206;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03206;src:url('chunks/assets/font_046d661b6009bb73cea95f9c.woff2')format("woff");}.ff3_c03206{font-family:ff3_c03206;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03206{vertical-align:0.000000px;}
.v1_c03206{vertical-align:1.439424px;}
.ls19_c03206{letter-spacing:-1.667952px;}
.ls1a_c03206{letter-spacing:-1.197504px;}
.ls11_c03206{letter-spacing:-0.793584px;}
.lse_c03206{letter-spacing:-0.774576px;}
.lsc_c03206{letter-spacing:-0.746064px;}
.ls14_c03206{letter-spacing:-0.736560px;}
.lsa_c03206{letter-spacing:-0.679536px;}
.lsd_c03206{letter-spacing:-0.574992px;}
.ls1b_c03206{letter-spacing:-0.304128px;}
.ls1e_c03206{letter-spacing:-0.275616px;}
.ls15_c03206{letter-spacing:-0.270864px;}
.ls12_c03206{letter-spacing:-0.261360px;}
.ls9_c03206{letter-spacing:-0.242352px;}
.ls1c_c03206{letter-spacing:-0.185328px;}
.ls7_c03206{letter-spacing:-0.118800px;}
.ls1d_c03206{letter-spacing:-0.042768px;}
.ls18_c03206{letter-spacing:0.000000px;}
.ls1_c03206{letter-spacing:0.006048px;}
.ls8_c03206{letter-spacing:0.128304px;}
.ls10_c03206{letter-spacing:0.508464px;}
.ls17_c03206{letter-spacing:0.514080px;}
.ls13_c03206{letter-spacing:0.536976px;}
.lsf_c03206{letter-spacing:0.579744px;}
.ls4_c03206{letter-spacing:0.589248px;}
.ls16_c03206{letter-spacing:0.594000px;}
.lsb_c03206{letter-spacing:0.598752px;}
.ls6_c03206{letter-spacing:0.613008px;}
.ls0_c03206{letter-spacing:0.651024px;}
.ls3_c03206{letter-spacing:0.655776px;}
.ls5_c03206{letter-spacing:0.717552px;}
.ls2_c03206{letter-spacing:0.722304px;}
.sc__c03206{text-shadow:none;}
.sc0_c03206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03206{-webkit-text-stroke:0px transparent;}
.sc0_c03206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03206{word-spacing:-15.126048px;}
.wsb_c03206{word-spacing:-12.474000px;}
.ws6_c03206{word-spacing:-12.459744px;}
.ws1c_c03206{word-spacing:-12.416976px;}
.ws15_c03206{word-spacing:-11.637648px;}
.ws17_c03206{word-spacing:-11.575872px;}
.ws2_c03206{word-spacing:-11.200464px;}
.ws5_c03206{word-spacing:-11.105424px;}
.wse_c03206{word-spacing:-10.212048px;}
.ws23_c03206{word-spacing:-1.083456px;}
.ws28_c03206{word-spacing:-1.078704px;}
.ws1f_c03206{word-spacing:-1.012176px;}
.ws1d_c03206{word-spacing:-0.974160px;}
.ws27_c03206{word-spacing:-0.719712px;}
.ws20_c03206{word-spacing:-0.118800px;}
.ws24_c03206{word-spacing:-0.099792px;}
.ws25_c03206{word-spacing:-0.090288px;}
.ws26_c03206{word-spacing:-0.085536px;}
.ws1e_c03206{word-spacing:0.000000px;}
.ws21_c03206{word-spacing:0.384912px;}
.ws22_c03206{word-spacing:0.432432px;}
.ws18_c03206{word-spacing:3.597264px;}
.ws19_c03206{word-spacing:3.972672px;}
.wsa_c03206{word-spacing:6.629040px;}
.ws16_c03206{word-spacing:11.756448px;}
.wsf_c03206{word-spacing:12.212640px;}
.ws10_c03206{word-spacing:13.776048px;}
.ws11_c03206{word-spacing:16.460928px;}
.ws1a_c03206{word-spacing:23.755248px;}
.ws13_c03206{word-spacing:23.850288px;}
.ws12_c03206{word-spacing:26.064720px;}
.ws14_c03206{word-spacing:27.224208px;}
.wsc_c03206{word-spacing:33.300288px;}
.ws9_c03206{word-spacing:34.836912px;}
.ws8_c03206{word-spacing:36.143712px;}
.ws1_c03206{word-spacing:37.759392px;}
.ws0_c03206{word-spacing:38.020752px;}
.ws3_c03206{word-spacing:39.218256px;}
.ws4_c03206{word-spacing:39.902544px;}
.ws7_c03206{word-spacing:42.026688px;}
.ws1b_c03206{word-spacing:44.003520px;}
._a_c03206{margin-left:-3.145824px;}
._0_c03206{margin-left:-1.948320px;}
._2_c03206{width:1.482624px;}
._8_c03206{width:3.293136px;}
._e_c03206{width:11.276496px;}
._d_c03206{width:17.492112px;}
._4_c03206{width:18.547056px;}
._6_c03206{width:19.982160px;}
._7_c03206{width:23.451120px;}
._5_c03206{width:24.691392px;}
._9_c03206{width:27.214704px;}
._f_c03206{width:33.430320px;}
._c_c03206{width:37.935216px;}
._b_c03206{width:40.315968px;}
._1_c03206{width:50.252400px;}
._3_c03206{width:51.530688px;}
._11_c03206{width:53.745120px;}
._10_c03206{width:57.945888px;}
.fc0_c03206{color:rgb(0,0,0);}
.fs0_c03206{font-size:47.520000px;}
.fs1_c03206{font-size:60.480000px;}
.y0_c03206{bottom:0.000000px;}
.y1a_c03206{bottom:65.880450px;}
.y23_c03206{bottom:147.002430px;}
.y25_c03206{bottom:186.600234px;}
.y24_c03206{bottom:196.320450px;}
.y22_c03206{bottom:215.762682px;}
.y21_c03206{bottom:230.882358px;}
.y20_c03206{bottom:246.002034px;}
.y1f_c03206{bottom:260.761746px;}
.y1e_c03206{bottom:275.881422px;}
.y19_c03206{bottom:291.000000px;}
.y1d_c03206{bottom:327.001062px;}
.y1c_c03206{bottom:341.760774px;}
.y18_c03206{bottom:356.878758px;}
.y1b_c03206{bottom:356.880450px;}
.y16_c03206{bottom:406.559730px;}
.y12_c03206{bottom:424.560306px;}
.y17_c03206{bottom:458.759262px;}
.y15_c03206{bottom:491.879514px;}
.y14_c03206{bottom:509.880090px;}
.y11_c03206{bottom:543.000342px;}
.y13_c03206{bottom:559.559874px;}
.y10_c03206{bottom:577.560450px;}
.y26_c03206{bottom:614.280450px;}
.yc_c03206{bottom:652.438650px;}
.yb_c03206{bottom:667.558326px;}
.ye_c03206{bottom:707.160234px;}
.yd_c03206{bottom:716.880450px;}
.ya_c03206{bottom:796.438506px;}
.y9_c03206{bottom:877.438722px;}
.y7_c03206{bottom:926.759730px;}
.y3_c03206{bottom:944.760306px;}
.y8_c03206{bottom:979.319226px;}
.y6_c03206{bottom:1012.439478px;}
.y5_c03206{bottom:1030.440054px;}
.y2_c03206{bottom:1063.560306px;}
.y4_c03206{bottom:1079.759874px;}
.y1_c03206{bottom:1097.760450px;}
.yf_c03206{bottom:1134.840450px;}
.h3_c03206{height:32.530781px;}
.h1_c03206{height:41.696016px;}
.h2_c03206{height:41.812031px;}
.h4_c03206{height:54.654737px;}
.h5_c03206{height:78.480000px;}
.h0_c03206{height:1263.000000px;}
.w2_c03206{width:215.280000px;}
.w1_c03206{width:892.500000px;}
.w0_c03206{width:892.830000px;}
.x0_c03206{left:0.000000px;}
.xe_c03206{left:117.000000px;}
.x8_c03206{left:440.999856px;}
.x4_c03206{left:445.680576px;}
.xc_c03206{left:451.080000px;}
.x7_c03206{left:455.399604px;}
.x5_c03206{left:461.880144px;}
.x1_c03206{left:463.320000px;}
.xa_c03206{left:483.480360px;}
.x9_c03206{left:492.119496px;}
.x6_c03206{left:493.200576px;}
.xd_c03206{left:506.880360px;}
.x3_c03206{left:511.919892px;}
.x2_c03206{left:526.679604px;}
.xb_c03206{left:569.880036px;}
.xf_c03206{left:605.880000px;}
@media print{
.v0_c03206{vertical-align:0.000000pt;}
.v1_c03206{vertical-align:1.279488pt;}
.ls19_c03206{letter-spacing:-1.482624pt;}
.ls1a_c03206{letter-spacing:-1.064448pt;}
.ls11_c03206{letter-spacing:-0.705408pt;}
.lse_c03206{letter-spacing:-0.688512pt;}
.lsc_c03206{letter-spacing:-0.663168pt;}
.ls14_c03206{letter-spacing:-0.654720pt;}
.lsa_c03206{letter-spacing:-0.604032pt;}
.lsd_c03206{letter-spacing:-0.511104pt;}
.ls1b_c03206{letter-spacing:-0.270336pt;}
.ls1e_c03206{letter-spacing:-0.244992pt;}
.ls15_c03206{letter-spacing:-0.240768pt;}
.ls12_c03206{letter-spacing:-0.232320pt;}
.ls9_c03206{letter-spacing:-0.215424pt;}
.ls1c_c03206{letter-spacing:-0.164736pt;}
.ls7_c03206{letter-spacing:-0.105600pt;}
.ls1d_c03206{letter-spacing:-0.038016pt;}
.ls18_c03206{letter-spacing:0.000000pt;}
.ls1_c03206{letter-spacing:0.005376pt;}
.ls8_c03206{letter-spacing:0.114048pt;}
.ls10_c03206{letter-spacing:0.451968pt;}
.ls17_c03206{letter-spacing:0.456960pt;}
.ls13_c03206{letter-spacing:0.477312pt;}
.lsf_c03206{letter-spacing:0.515328pt;}
.ls4_c03206{letter-spacing:0.523776pt;}
.ls16_c03206{letter-spacing:0.528000pt;}
.lsb_c03206{letter-spacing:0.532224pt;}
.ls6_c03206{letter-spacing:0.544896pt;}
.ls0_c03206{letter-spacing:0.578688pt;}
.ls3_c03206{letter-spacing:0.582912pt;}
.ls5_c03206{letter-spacing:0.637824pt;}
.ls2_c03206{letter-spacing:0.642048pt;}
.wsd_c03206{word-spacing:-13.445376pt;}
.wsb_c03206{word-spacing:-11.088000pt;}
.ws6_c03206{word-spacing:-11.075328pt;}
.ws1c_c03206{word-spacing:-11.037312pt;}
.ws15_c03206{word-spacing:-10.344576pt;}
.ws17_c03206{word-spacing:-10.289664pt;}
.ws2_c03206{word-spacing:-9.955968pt;}
.ws5_c03206{word-spacing:-9.871488pt;}
.wse_c03206{word-spacing:-9.077376pt;}
.ws23_c03206{word-spacing:-0.963072pt;}
.ws28_c03206{word-spacing:-0.958848pt;}
.ws1f_c03206{word-spacing:-0.899712pt;}
.ws1d_c03206{word-spacing:-0.865920pt;}
.ws27_c03206{word-spacing:-0.639744pt;}
.ws20_c03206{word-spacing:-0.105600pt;}
.ws24_c03206{word-spacing:-0.088704pt;}
.ws25_c03206{word-spacing:-0.080256pt;}
.ws26_c03206{word-spacing:-0.076032pt;}
.ws1e_c03206{word-spacing:0.000000pt;}
.ws21_c03206{word-spacing:0.342144pt;}
.ws22_c03206{word-spacing:0.384384pt;}
.ws18_c03206{word-spacing:3.197568pt;}
.ws19_c03206{word-spacing:3.531264pt;}
.wsa_c03206{word-spacing:5.892480pt;}
.ws16_c03206{word-spacing:10.450176pt;}
.wsf_c03206{word-spacing:10.855680pt;}
.ws10_c03206{word-spacing:12.245376pt;}
.ws11_c03206{word-spacing:14.631936pt;}
.ws1a_c03206{word-spacing:21.115776pt;}
.ws13_c03206{word-spacing:21.200256pt;}
.ws12_c03206{word-spacing:23.168640pt;}
.ws14_c03206{word-spacing:24.199296pt;}
.wsc_c03206{word-spacing:29.600256pt;}
.ws9_c03206{word-spacing:30.966144pt;}
.ws8_c03206{word-spacing:32.127744pt;}
.ws1_c03206{word-spacing:33.563904pt;}
.ws0_c03206{word-spacing:33.796224pt;}
.ws3_c03206{word-spacing:34.860672pt;}
.ws4_c03206{word-spacing:35.468928pt;}
.ws7_c03206{word-spacing:37.357056pt;}
.ws1b_c03206{word-spacing:39.114240pt;}
._a_c03206{margin-left:-2.796288pt;}
._0_c03206{margin-left:-1.731840pt;}
._2_c03206{width:1.317888pt;}
._8_c03206{width:2.927232pt;}
._e_c03206{width:10.023552pt;}
._d_c03206{width:15.548544pt;}
._4_c03206{width:16.486272pt;}
._6_c03206{width:17.761920pt;}
._7_c03206{width:20.845440pt;}
._5_c03206{width:21.947904pt;}
._9_c03206{width:24.190848pt;}
._f_c03206{width:29.715840pt;}
._c_c03206{width:33.720192pt;}
._b_c03206{width:35.836416pt;}
._1_c03206{width:44.668800pt;}
._3_c03206{width:45.805056pt;}
._11_c03206{width:47.773440pt;}
._10_c03206{width:51.507456pt;}
.fs0_c03206{font-size:42.240000pt;}
.fs1_c03206{font-size:53.760000pt;}
.y0_c03206{bottom:0.000000pt;}
.y1a_c03206{bottom:58.560400pt;}
.y23_c03206{bottom:130.668827pt;}
.y25_c03206{bottom:165.866875pt;}
.y24_c03206{bottom:174.507067pt;}
.y22_c03206{bottom:191.789051pt;}
.y21_c03206{bottom:205.228763pt;}
.y20_c03206{bottom:218.668475pt;}
.y1f_c03206{bottom:231.788219pt;}
.y1e_c03206{bottom:245.227931pt;}
.y19_c03206{bottom:258.666667pt;}
.y1d_c03206{bottom:290.667611pt;}
.y1c_c03206{bottom:303.787355pt;}
.y18_c03206{bottom:317.225563pt;}
.y1b_c03206{bottom:317.227067pt;}
.y16_c03206{bottom:361.386427pt;}
.y12_c03206{bottom:377.386939pt;}
.y17_c03206{bottom:407.786011pt;}
.y15_c03206{bottom:437.226235pt;}
.y14_c03206{bottom:453.226747pt;}
.y11_c03206{bottom:482.666971pt;}
.y13_c03206{bottom:497.386555pt;}
.y10_c03206{bottom:513.387067pt;}
.y26_c03206{bottom:546.027067pt;}
.yc_c03206{bottom:579.945467pt;}
.yb_c03206{bottom:593.385179pt;}
.ye_c03206{bottom:628.586875pt;}
.yd_c03206{bottom:637.227067pt;}
.ya_c03206{bottom:707.945339pt;}
.y9_c03206{bottom:779.945531pt;}
.y7_c03206{bottom:823.786427pt;}
.y3_c03206{bottom:839.786939pt;}
.y8_c03206{bottom:870.505979pt;}
.y6_c03206{bottom:899.946203pt;}
.y5_c03206{bottom:915.946715pt;}
.y2_c03206{bottom:945.386939pt;}
.y4_c03206{bottom:959.786555pt;}
.y1_c03206{bottom:975.787067pt;}
.yf_c03206{bottom:1008.747067pt;}
.h3_c03206{height:28.916250pt;}
.h1_c03206{height:37.063125pt;}
.h2_c03206{height:37.166250pt;}
.h4_c03206{height:48.581988pt;}
.h5_c03206{height:69.760000pt;}
.h0_c03206{height:1122.666667pt;}
.w2_c03206{width:191.360000pt;}
.w1_c03206{width:793.333333pt;}
.w0_c03206{width:793.626667pt;}
.x0_c03206{left:0.000000pt;}
.xe_c03206{left:104.000000pt;}
.x8_c03206{left:391.999872pt;}
.x4_c03206{left:396.160512pt;}
.xc_c03206{left:400.960000pt;}
.x7_c03206{left:404.799648pt;}
.x5_c03206{left:410.560128pt;}
.x1_c03206{left:411.840000pt;}
.xa_c03206{left:429.760320pt;}
.x9_c03206{left:437.439552pt;}
.x6_c03206{left:438.400512pt;}
.xd_c03206{left:450.560320pt;}
.x3_c03206{left:455.039904pt;}
.x2_c03206{left:468.159648pt;}
.xb_c03206{left:506.560032pt;}
.xf_c03206{left:538.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03207 {
    display:none;
  }
  .loading-indicator_c03207.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03207 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03207 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03207" -> "#page-container .classname_c03207")
 */
.pf_c03207 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03207 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03207.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03207 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03207 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03207 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03207 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03207 {overflow:visible;}
  }
}
.c_c03207 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03207 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03207:after { /* webkit #35443 */
  content: '';
}
.t_c03207:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03207 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03207 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03207 { /* info for Javascript */
  display:none;
}
.l_c03207 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03207 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03207 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03207:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03207 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03207.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03207.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03207 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03207{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03207;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03207{font-family:ff1_c03207;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03207;src:url('chunks/assets/font_e43ab6db0e35d36cafcad8af.woff2')format("woff");}.ff2_c03207{font-family:ff2_c03207;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03207;src:url('chunks/assets/font_fbe28a30078aa807813d3cd4.woff2')format("woff");}.ff3_c03207{font-family:ff3_c03207;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03207{vertical-align:0.000000px;}
.v1_c03207{vertical-align:1.439424px;}
.lsd_c03207{letter-spacing:-1.197504px;}
.lsa_c03207{letter-spacing:-0.746064px;}
.ls8_c03207{letter-spacing:-0.679536px;}
.lsb_c03207{letter-spacing:-0.574992px;}
.ls13_c03207{letter-spacing:-0.275616px;}
.ls11_c03207{letter-spacing:-0.261360px;}
.ls7_c03207{letter-spacing:-0.242352px;}
.ls10_c03207{letter-spacing:-0.237600px;}
.lsf_c03207{letter-spacing:-0.228096px;}
.ls5_c03207{letter-spacing:-0.118800px;}
.ls16_c03207{letter-spacing:0.000000px;}
.ls3_c03207{letter-spacing:0.006048px;}
.ls17_c03207{letter-spacing:0.038016px;}
.ls6_c03207{letter-spacing:0.128304px;}
.lse_c03207{letter-spacing:0.508464px;}
.ls15_c03207{letter-spacing:0.514080px;}
.ls12_c03207{letter-spacing:0.536976px;}
.lsc_c03207{letter-spacing:0.579744px;}
.ls14_c03207{letter-spacing:0.594000px;}
.ls9_c03207{letter-spacing:0.598752px;}
.ls4_c03207{letter-spacing:0.613008px;}
.ls2_c03207{letter-spacing:0.655776px;}
.ls0_c03207{letter-spacing:0.717552px;}
.ls1_c03207{letter-spacing:0.722304px;}
.sc__c03207{text-shadow:none;}
.sc0_c03207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03207{-webkit-text-stroke:0px transparent;}
.sc0_c03207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15_c03207{word-spacing:-15.126048px;}
.ws13_c03207{word-spacing:-12.474000px;}
.ws8_c03207{word-spacing:-12.459744px;}
.ws18_c03207{word-spacing:-12.416976px;}
.ws17_c03207{word-spacing:-11.637648px;}
.ws2_c03207{word-spacing:-11.200464px;}
.ws6_c03207{word-spacing:-10.682496px;}
.wse_c03207{word-spacing:-2.238192px;}
.ws1e_c03207{word-spacing:-1.083456px;}
.ws1d_c03207{word-spacing:-1.078704px;}
.ws20_c03207{word-spacing:-1.016928px;}
.ws19_c03207{word-spacing:-0.974160px;}
.ws22_c03207{word-spacing:-0.719712px;}
.ws23_c03207{word-spacing:-0.399168px;}
.ws1b_c03207{word-spacing:-0.118800px;}
.ws1f_c03207{word-spacing:-0.099792px;}
.ws21_c03207{word-spacing:-0.085536px;}
.ws1a_c03207{word-spacing:0.000000px;}
.ws1c_c03207{word-spacing:0.384912px;}
.ws12_c03207{word-spacing:0.826848px;}
.ws16_c03207{word-spacing:1.330560px;}
.wsa_c03207{word-spacing:3.711312px;}
.ws11_c03207{word-spacing:5.155920px;}
.ws9_c03207{word-spacing:5.165424px;}
.ws10_c03207{word-spacing:7.398864px;}
.wsc_c03207{word-spacing:15.220656px;}
.wsd_c03207{word-spacing:18.832176px;}
.wsb_c03207{word-spacing:19.345392px;}
.ws14_c03207{word-spacing:33.300288px;}
.wsf_c03207{word-spacing:34.836912px;}
.ws5_c03207{word-spacing:36.742464px;}
.ws1_c03207{word-spacing:37.759392px;}
.ws0_c03207{word-spacing:38.020752px;}
.ws3_c03207{word-spacing:39.218256px;}
.ws4_c03207{word-spacing:39.902544px;}
.ws7_c03207{word-spacing:42.026688px;}
._0_c03207{margin-left:-1.948320px;}
._2_c03207{width:1.482624px;}
._5_c03207{width:2.974752px;}
._a_c03207{width:6.263136px;}
._4_c03207{width:18.547056px;}
._6_c03207{width:21.854448px;}
._9_c03207{width:25.342416px;}
._8_c03207{width:30.450816px;}
._7_c03207{width:32.356368px;}
._1_c03207{width:50.252400px;}
._3_c03207{width:51.530688px;}
.fc0_c03207{color:rgb(0,0,0);}
.fs0_c03207{font-size:47.520000px;}
.fs1_c03207{font-size:60.480000px;}
.y0_c03207{bottom:0.000000px;}
.yb_c03207{bottom:66.240450px;}
.y1f_c03207{bottom:146.998362px;}
.y21_c03207{bottom:186.600234px;}
.y20_c03207{bottom:196.320450px;}
.y1e_c03207{bottom:275.878542px;}
.y1d_c03207{bottom:356.878758px;}
.y1b_c03207{bottom:406.559730px;}
.y17_c03207{bottom:424.560306px;}
.y1c_c03207{bottom:458.759262px;}
.y1a_c03207{bottom:491.879514px;}
.y19_c03207{bottom:509.880090px;}
.y16_c03207{bottom:543.000342px;}
.y18_c03207{bottom:559.559874px;}
.y15_c03207{bottom:577.560450px;}
.y22_c03207{bottom:614.280450px;}
.y11_c03207{bottom:652.441566px;}
.y10_c03207{bottom:667.561242px;}
.y13_c03207{bottom:707.160234px;}
.y12_c03207{bottom:716.880450px;}
.yf_c03207{bottom:796.441422px;}
.ya_c03207{bottom:811.200000px;}
.ye_c03207{bottom:847.561062px;}
.yd_c03207{bottom:862.320774px;}
.y9_c03207{bottom:877.438722px;}
.yc_c03207{bottom:877.440450px;}
.y7_c03207{bottom:926.759730px;}
.y3_c03207{bottom:944.760306px;}
.y8_c03207{bottom:979.319226px;}
.y6_c03207{bottom:1012.439478px;}
.y5_c03207{bottom:1030.440054px;}
.y2_c03207{bottom:1063.560306px;}
.y4_c03207{bottom:1079.759874px;}
.y1_c03207{bottom:1097.760450px;}
.y14_c03207{bottom:1134.840450px;}
.h3_c03207{height:32.530781px;}
.h1_c03207{height:41.696016px;}
.h2_c03207{height:41.812031px;}
.h5_c03207{height:54.654737px;}
.h4_c03207{height:78.840000px;}
.h0_c03207{height:1263.000000px;}
.w2_c03207{width:215.280000px;}
.w1_c03207{width:892.500000px;}
.w0_c03207{width:892.830000px;}
.x0_c03207{left:0.000000px;}
.xf_c03207{left:117.000000px;}
.x8_c03207{left:440.999856px;}
.x4_c03207{left:445.680576px;}
.xd_c03207{left:451.080000px;}
.x7_c03207{left:455.399604px;}
.x5_c03207{left:461.880144px;}
.x1_c03207{left:463.320000px;}
.xc_c03207{left:483.480684px;}
.x9_c03207{left:492.119496px;}
.x6_c03207{left:493.200576px;}
.xe_c03207{left:506.880360px;}
.x3_c03207{left:511.919892px;}
.x2_c03207{left:526.679604px;}
.xa_c03207{left:569.520000px;}
.xb_c03207{left:585.360000px;}
@media print{
.v0_c03207{vertical-align:0.000000pt;}
.v1_c03207{vertical-align:1.279488pt;}
.lsd_c03207{letter-spacing:-1.064448pt;}
.lsa_c03207{letter-spacing:-0.663168pt;}
.ls8_c03207{letter-spacing:-0.604032pt;}
.lsb_c03207{letter-spacing:-0.511104pt;}
.ls13_c03207{letter-spacing:-0.244992pt;}
.ls11_c03207{letter-spacing:-0.232320pt;}
.ls7_c03207{letter-spacing:-0.215424pt;}
.ls10_c03207{letter-spacing:-0.211200pt;}
.lsf_c03207{letter-spacing:-0.202752pt;}
.ls5_c03207{letter-spacing:-0.105600pt;}
.ls16_c03207{letter-spacing:0.000000pt;}
.ls3_c03207{letter-spacing:0.005376pt;}
.ls17_c03207{letter-spacing:0.033792pt;}
.ls6_c03207{letter-spacing:0.114048pt;}
.lse_c03207{letter-spacing:0.451968pt;}
.ls15_c03207{letter-spacing:0.456960pt;}
.ls12_c03207{letter-spacing:0.477312pt;}
.lsc_c03207{letter-spacing:0.515328pt;}
.ls14_c03207{letter-spacing:0.528000pt;}
.ls9_c03207{letter-spacing:0.532224pt;}
.ls4_c03207{letter-spacing:0.544896pt;}
.ls2_c03207{letter-spacing:0.582912pt;}
.ls0_c03207{letter-spacing:0.637824pt;}
.ls1_c03207{letter-spacing:0.642048pt;}
.ws15_c03207{word-spacing:-13.445376pt;}
.ws13_c03207{word-spacing:-11.088000pt;}
.ws8_c03207{word-spacing:-11.075328pt;}
.ws18_c03207{word-spacing:-11.037312pt;}
.ws17_c03207{word-spacing:-10.344576pt;}
.ws2_c03207{word-spacing:-9.955968pt;}
.ws6_c03207{word-spacing:-9.495552pt;}
.wse_c03207{word-spacing:-1.989504pt;}
.ws1e_c03207{word-spacing:-0.963072pt;}
.ws1d_c03207{word-spacing:-0.958848pt;}
.ws20_c03207{word-spacing:-0.903936pt;}
.ws19_c03207{word-spacing:-0.865920pt;}
.ws22_c03207{word-spacing:-0.639744pt;}
.ws23_c03207{word-spacing:-0.354816pt;}
.ws1b_c03207{word-spacing:-0.105600pt;}
.ws1f_c03207{word-spacing:-0.088704pt;}
.ws21_c03207{word-spacing:-0.076032pt;}
.ws1a_c03207{word-spacing:0.000000pt;}
.ws1c_c03207{word-spacing:0.342144pt;}
.ws12_c03207{word-spacing:0.734976pt;}
.ws16_c03207{word-spacing:1.182720pt;}
.wsa_c03207{word-spacing:3.298944pt;}
.ws11_c03207{word-spacing:4.583040pt;}
.ws9_c03207{word-spacing:4.591488pt;}
.ws10_c03207{word-spacing:6.576768pt;}
.wsc_c03207{word-spacing:13.529472pt;}
.wsd_c03207{word-spacing:16.739712pt;}
.wsb_c03207{word-spacing:17.195904pt;}
.ws14_c03207{word-spacing:29.600256pt;}
.wsf_c03207{word-spacing:30.966144pt;}
.ws5_c03207{word-spacing:32.659968pt;}
.ws1_c03207{word-spacing:33.563904pt;}
.ws0_c03207{word-spacing:33.796224pt;}
.ws3_c03207{word-spacing:34.860672pt;}
.ws4_c03207{word-spacing:35.468928pt;}
.ws7_c03207{word-spacing:37.357056pt;}
._0_c03207{margin-left:-1.731840pt;}
._2_c03207{width:1.317888pt;}
._5_c03207{width:2.644224pt;}
._a_c03207{width:5.567232pt;}
._4_c03207{width:16.486272pt;}
._6_c03207{width:19.426176pt;}
._9_c03207{width:22.526592pt;}
._8_c03207{width:27.067392pt;}
._7_c03207{width:28.761216pt;}
._1_c03207{width:44.668800pt;}
._3_c03207{width:45.805056pt;}
.fs0_c03207{font-size:42.240000pt;}
.fs1_c03207{font-size:53.760000pt;}
.y0_c03207{bottom:0.000000pt;}
.yb_c03207{bottom:58.880400pt;}
.y1f_c03207{bottom:130.665211pt;}
.y21_c03207{bottom:165.866875pt;}
.y20_c03207{bottom:174.507067pt;}
.y1e_c03207{bottom:245.225371pt;}
.y1d_c03207{bottom:317.225563pt;}
.y1b_c03207{bottom:361.386427pt;}
.y17_c03207{bottom:377.386939pt;}
.y1c_c03207{bottom:407.786011pt;}
.y1a_c03207{bottom:437.226235pt;}
.y19_c03207{bottom:453.226747pt;}
.y16_c03207{bottom:482.666971pt;}
.y18_c03207{bottom:497.386555pt;}
.y15_c03207{bottom:513.387067pt;}
.y22_c03207{bottom:546.027067pt;}
.y11_c03207{bottom:579.948059pt;}
.y10_c03207{bottom:593.387771pt;}
.y13_c03207{bottom:628.586875pt;}
.y12_c03207{bottom:637.227067pt;}
.yf_c03207{bottom:707.947931pt;}
.ya_c03207{bottom:721.066667pt;}
.ye_c03207{bottom:753.387611pt;}
.yd_c03207{bottom:766.507355pt;}
.y9_c03207{bottom:779.945531pt;}
.yc_c03207{bottom:779.947067pt;}
.y7_c03207{bottom:823.786427pt;}
.y3_c03207{bottom:839.786939pt;}
.y8_c03207{bottom:870.505979pt;}
.y6_c03207{bottom:899.946203pt;}
.y5_c03207{bottom:915.946715pt;}
.y2_c03207{bottom:945.386939pt;}
.y4_c03207{bottom:959.786555pt;}
.y1_c03207{bottom:975.787067pt;}
.y14_c03207{bottom:1008.747067pt;}
.h3_c03207{height:28.916250pt;}
.h1_c03207{height:37.063125pt;}
.h2_c03207{height:37.166250pt;}
.h5_c03207{height:48.581988pt;}
.h4_c03207{height:70.080000pt;}
.h0_c03207{height:1122.666667pt;}
.w2_c03207{width:191.360000pt;}
.w1_c03207{width:793.333333pt;}
.w0_c03207{width:793.626667pt;}
.x0_c03207{left:0.000000pt;}
.xf_c03207{left:104.000000pt;}
.x8_c03207{left:391.999872pt;}
.x4_c03207{left:396.160512pt;}
.xd_c03207{left:400.960000pt;}
.x7_c03207{left:404.799648pt;}
.x5_c03207{left:410.560128pt;}
.x1_c03207{left:411.840000pt;}
.xc_c03207{left:429.760608pt;}
.x9_c03207{left:437.439552pt;}
.x6_c03207{left:438.400512pt;}
.xe_c03207{left:450.560320pt;}
.x3_c03207{left:455.039904pt;}
.x2_c03207{left:468.159648pt;}
.xa_c03207{left:506.240000pt;}
.xb_c03207{left:520.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03208 {
    display:none;
  }
  .loading-indicator_c03208.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03208 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03208 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03208" -> "#page-container .classname_c03208")
 */
.pf_c03208 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03208 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03208.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03208 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03208 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03208 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03208 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03208 {overflow:visible;}
  }
}
.c_c03208 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03208 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03208:after { /* webkit #35443 */
  content: '';
}
.t_c03208:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03208 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03208 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03208 { /* info for Javascript */
  display:none;
}
.l_c03208 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03208 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03208 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03208:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03208 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03208.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03208.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03208 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03208{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03208;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03208{font-family:ff1_c03208;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03208;src:url('chunks/assets/font_7bf0878857da7e9cc5f02599.woff2')format("woff");}.ff2_c03208{font-family:ff2_c03208;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03208;src:url('chunks/assets/font_a49aae1c4c4922d176fd6cf3.woff2')format("woff");}.ff3_c03208{font-family:ff3_c03208;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03208{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03208{vertical-align:0.000000px;}
.v1_c03208{vertical-align:1.439424px;}
.lsf_c03208{letter-spacing:-1.197504px;}
.lsa_c03208{letter-spacing:-0.574992px;}
.ls10_c03208{letter-spacing:-0.304128px;}
.ls12_c03208{letter-spacing:-0.275616px;}
.lse_c03208{letter-spacing:-0.261360px;}
.ls7_c03208{letter-spacing:-0.242352px;}
.ls5_c03208{letter-spacing:-0.118800px;}
.ls15_c03208{letter-spacing:0.000000px;}
.ls2_c03208{letter-spacing:0.006048px;}
.ls6_c03208{letter-spacing:0.128304px;}
.ls8_c03208{letter-spacing:0.185328px;}
.lsd_c03208{letter-spacing:0.242352px;}
.lsc_c03208{letter-spacing:0.508464px;}
.ls14_c03208{letter-spacing:0.514080px;}
.ls11_c03208{letter-spacing:0.536976px;}
.lsb_c03208{letter-spacing:0.579744px;}
.ls13_c03208{letter-spacing:0.594000px;}
.ls9_c03208{letter-spacing:0.598752px;}
.ls3_c03208{letter-spacing:0.613008px;}
.ls0_c03208{letter-spacing:0.651024px;}
.ls4_c03208{letter-spacing:0.717552px;}
.ls1_c03208{letter-spacing:0.722304px;}
.sc__c03208{text-shadow:none;}
.sc0_c03208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03208{-webkit-text-stroke:0px transparent;}
.sc0_c03208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03208{word-spacing:-15.126048px;}
.ws9_c03208{word-spacing:-12.474000px;}
.ws5_c03208{word-spacing:-12.459744px;}
.ws8_c03208{word-spacing:-12.416976px;}
.ws7_c03208{word-spacing:-11.575872px;}
.ws11_c03208{word-spacing:-1.083456px;}
.wse_c03208{word-spacing:-1.012176px;}
.wsc_c03208{word-spacing:-0.974160px;}
.ws15_c03208{word-spacing:-0.719712px;}
.ws10_c03208{word-spacing:-0.546480px;}
.wsf_c03208{word-spacing:-0.118800px;}
.ws12_c03208{word-spacing:-0.099792px;}
.ws14_c03208{word-spacing:-0.085536px;}
.wsd_c03208{word-spacing:0.000000px;}
.ws13_c03208{word-spacing:0.836352px;}
.ws3_c03208{word-spacing:6.605280px;}
.wsa_c03208{word-spacing:33.300288px;}
.ws1_c03208{word-spacing:37.759392px;}
.ws0_c03208{word-spacing:38.020752px;}
.ws2_c03208{word-spacing:39.218256px;}
.ws4_c03208{word-spacing:39.902544px;}
.ws6_c03208{word-spacing:42.026688px;}
._0_c03208{margin-left:-1.948320px;}
._2_c03208{width:1.482624px;}
._5_c03208{width:3.525984px;}
._4_c03208{width:21.445776px;}
._1_c03208{width:50.252400px;}
._3_c03208{width:51.530688px;}
.fc0_c03208{color:rgb(0,0,0);}
.fs0_c03208{font-size:47.520000px;}
.fs1_c03208{font-size:60.480000px;}
.y0_c03208{bottom:0.000000px;}
.y19_c03208{bottom:146.998362px;}
.y1b_c03208{bottom:186.600234px;}
.y1a_c03208{bottom:196.320450px;}
.y18_c03208{bottom:275.878542px;}
.y17_c03208{bottom:356.878758px;}
.y15_c03208{bottom:406.559730px;}
.y11_c03208{bottom:424.560306px;}
.y16_c03208{bottom:458.759262px;}
.y14_c03208{bottom:491.879514px;}
.y13_c03208{bottom:509.880090px;}
.y10_c03208{bottom:543.000342px;}
.y12_c03208{bottom:559.559874px;}
.yf_c03208{bottom:577.560450px;}
.y1c_c03208{bottom:614.280450px;}
.yb_c03208{bottom:667.558326px;}
.yd_c03208{bottom:707.160234px;}
.yc_c03208{bottom:716.880450px;}
.ya_c03208{bottom:796.438506px;}
.y9_c03208{bottom:877.438722px;}
.y7_c03208{bottom:926.759730px;}
.y3_c03208{bottom:944.760306px;}
.y8_c03208{bottom:979.319226px;}
.y6_c03208{bottom:1012.439478px;}
.y5_c03208{bottom:1030.440054px;}
.y2_c03208{bottom:1063.560306px;}
.y4_c03208{bottom:1079.759874px;}
.y1_c03208{bottom:1097.760450px;}
.ye_c03208{bottom:1134.840450px;}
.h3_c03208{height:32.530781px;}
.h1_c03208{height:41.696016px;}
.h2_c03208{height:41.812031px;}
.h4_c03208{height:54.654737px;}
.h0_c03208{height:1263.000000px;}
.w1_c03208{width:892.500000px;}
.w0_c03208{width:892.830000px;}
.x0_c03208{left:0.000000px;}
.xd_c03208{left:117.000000px;}
.x8_c03208{left:440.999856px;}
.x4_c03208{left:445.680576px;}
.xb_c03208{left:451.080000px;}
.x7_c03208{left:455.399604px;}
.x5_c03208{left:461.880144px;}
.x1_c03208{left:463.320000px;}
.xa_c03208{left:483.480360px;}
.x9_c03208{left:492.119496px;}
.x6_c03208{left:493.200576px;}
.xc_c03208{left:506.880360px;}
.x3_c03208{left:511.919892px;}
.x2_c03208{left:526.679604px;}
@media print{
.v0_c03208{vertical-align:0.000000pt;}
.v1_c03208{vertical-align:1.279488pt;}
.lsf_c03208{letter-spacing:-1.064448pt;}
.lsa_c03208{letter-spacing:-0.511104pt;}
.ls10_c03208{letter-spacing:-0.270336pt;}
.ls12_c03208{letter-spacing:-0.244992pt;}
.lse_c03208{letter-spacing:-0.232320pt;}
.ls7_c03208{letter-spacing:-0.215424pt;}
.ls5_c03208{letter-spacing:-0.105600pt;}
.ls15_c03208{letter-spacing:0.000000pt;}
.ls2_c03208{letter-spacing:0.005376pt;}
.ls6_c03208{letter-spacing:0.114048pt;}
.ls8_c03208{letter-spacing:0.164736pt;}
.lsd_c03208{letter-spacing:0.215424pt;}
.lsc_c03208{letter-spacing:0.451968pt;}
.ls14_c03208{letter-spacing:0.456960pt;}
.ls11_c03208{letter-spacing:0.477312pt;}
.lsb_c03208{letter-spacing:0.515328pt;}
.ls13_c03208{letter-spacing:0.528000pt;}
.ls9_c03208{letter-spacing:0.532224pt;}
.ls3_c03208{letter-spacing:0.544896pt;}
.ls0_c03208{letter-spacing:0.578688pt;}
.ls4_c03208{letter-spacing:0.637824pt;}
.ls1_c03208{letter-spacing:0.642048pt;}
.wsb_c03208{word-spacing:-13.445376pt;}
.ws9_c03208{word-spacing:-11.088000pt;}
.ws5_c03208{word-spacing:-11.075328pt;}
.ws8_c03208{word-spacing:-11.037312pt;}
.ws7_c03208{word-spacing:-10.289664pt;}
.ws11_c03208{word-spacing:-0.963072pt;}
.wse_c03208{word-spacing:-0.899712pt;}
.wsc_c03208{word-spacing:-0.865920pt;}
.ws15_c03208{word-spacing:-0.639744pt;}
.ws10_c03208{word-spacing:-0.485760pt;}
.wsf_c03208{word-spacing:-0.105600pt;}
.ws12_c03208{word-spacing:-0.088704pt;}
.ws14_c03208{word-spacing:-0.076032pt;}
.wsd_c03208{word-spacing:0.000000pt;}
.ws13_c03208{word-spacing:0.743424pt;}
.ws3_c03208{word-spacing:5.871360pt;}
.wsa_c03208{word-spacing:29.600256pt;}
.ws1_c03208{word-spacing:33.563904pt;}
.ws0_c03208{word-spacing:33.796224pt;}
.ws2_c03208{word-spacing:34.860672pt;}
.ws4_c03208{word-spacing:35.468928pt;}
.ws6_c03208{word-spacing:37.357056pt;}
._0_c03208{margin-left:-1.731840pt;}
._2_c03208{width:1.317888pt;}
._5_c03208{width:3.134208pt;}
._4_c03208{width:19.062912pt;}
._1_c03208{width:44.668800pt;}
._3_c03208{width:45.805056pt;}
.fs0_c03208{font-size:42.240000pt;}
.fs1_c03208{font-size:53.760000pt;}
.y0_c03208{bottom:0.000000pt;}
.y19_c03208{bottom:130.665211pt;}
.y1b_c03208{bottom:165.866875pt;}
.y1a_c03208{bottom:174.507067pt;}
.y18_c03208{bottom:245.225371pt;}
.y17_c03208{bottom:317.225563pt;}
.y15_c03208{bottom:361.386427pt;}
.y11_c03208{bottom:377.386939pt;}
.y16_c03208{bottom:407.786011pt;}
.y14_c03208{bottom:437.226235pt;}
.y13_c03208{bottom:453.226747pt;}
.y10_c03208{bottom:482.666971pt;}
.y12_c03208{bottom:497.386555pt;}
.yf_c03208{bottom:513.387067pt;}
.y1c_c03208{bottom:546.027067pt;}
.yb_c03208{bottom:593.385179pt;}
.yd_c03208{bottom:628.586875pt;}
.yc_c03208{bottom:637.227067pt;}
.ya_c03208{bottom:707.945339pt;}
.y9_c03208{bottom:779.945531pt;}
.y7_c03208{bottom:823.786427pt;}
.y3_c03208{bottom:839.786939pt;}
.y8_c03208{bottom:870.505979pt;}
.y6_c03208{bottom:899.946203pt;}
.y5_c03208{bottom:915.946715pt;}
.y2_c03208{bottom:945.386939pt;}
.y4_c03208{bottom:959.786555pt;}
.y1_c03208{bottom:975.787067pt;}
.ye_c03208{bottom:1008.747067pt;}
.h3_c03208{height:28.916250pt;}
.h1_c03208{height:37.063125pt;}
.h2_c03208{height:37.166250pt;}
.h4_c03208{height:48.581988pt;}
.h0_c03208{height:1122.666667pt;}
.w1_c03208{width:793.333333pt;}
.w0_c03208{width:793.626667pt;}
.x0_c03208{left:0.000000pt;}
.xd_c03208{left:104.000000pt;}
.x8_c03208{left:391.999872pt;}
.x4_c03208{left:396.160512pt;}
.xb_c03208{left:400.960000pt;}
.x7_c03208{left:404.799648pt;}
.x5_c03208{left:410.560128pt;}
.x1_c03208{left:411.840000pt;}
.xa_c03208{left:429.760320pt;}
.x9_c03208{left:437.439552pt;}
.x6_c03208{left:438.400512pt;}
.xc_c03208{left:450.560320pt;}
.x3_c03208{left:455.039904pt;}
.x2_c03208{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03209 {
    display:none;
  }
  .loading-indicator_c03209.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03209 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03209 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03209" -> "#page-container .classname_c03209")
 */
.pf_c03209 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03209 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03209.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03209 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03209 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03209 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03209 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03209 {overflow:visible;}
  }
}
.c_c03209 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03209 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03209:after { /* webkit #35443 */
  content: '';
}
.t_c03209:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03209 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03209 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03209 { /* info for Javascript */
  display:none;
}
.l_c03209 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03209 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03209 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03209:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03209 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03209.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03209.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03209 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03209{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03209;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03209{font-family:ff1_c03209;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03209;src:url('chunks/assets/font_b96a7e5389c7dcdaefcc70d8.woff2')format("woff");}.ff2_c03209{font-family:ff2_c03209;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03209;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03209{font-family:ff3_c03209;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03209{vertical-align:0.000000px;}
.v1_c03209{vertical-align:1.439424px;}
.ls7_c03209{letter-spacing:-0.765072px;}
.ls8_c03209{letter-spacing:-0.574992px;}
.lsf_c03209{letter-spacing:-0.275616px;}
.lsd_c03209{letter-spacing:-0.261360px;}
.ls5_c03209{letter-spacing:-0.242352px;}
.ls3_c03209{letter-spacing:-0.118800px;}
.ls12_c03209{letter-spacing:0.000000px;}
.ls0_c03209{letter-spacing:0.006048px;}
.lsc_c03209{letter-spacing:0.038016px;}
.ls4_c03209{letter-spacing:0.128304px;}
.lsb_c03209{letter-spacing:0.508464px;}
.ls11_c03209{letter-spacing:0.514080px;}
.lse_c03209{letter-spacing:0.536976px;}
.lsa_c03209{letter-spacing:0.579744px;}
.ls10_c03209{letter-spacing:0.594000px;}
.ls6_c03209{letter-spacing:0.598752px;}
.ls1_c03209{letter-spacing:0.613008px;}
.ls9_c03209{letter-spacing:0.674784px;}
.ls2_c03209{letter-spacing:0.717552px;}
.sc__c03209{text-shadow:none;}
.sc0_c03209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03209{-webkit-text-stroke:0px transparent;}
.sc0_c03209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03209{word-spacing:-15.126048px;}
.wsa_c03209{word-spacing:-12.474000px;}
.ws8_c03209{word-spacing:-12.459744px;}
.ws9_c03209{word-spacing:-12.416976px;}
.ws10_c03209{word-spacing:-1.035936px;}
.wsd_c03209{word-spacing:-0.974160px;}
.ws14_c03209{word-spacing:-0.719712px;}
.ws11_c03209{word-spacing:-0.399168px;}
.wsf_c03209{word-spacing:-0.118800px;}
.ws12_c03209{word-spacing:-0.099792px;}
.ws13_c03209{word-spacing:-0.085536px;}
.wse_c03209{word-spacing:0.000000px;}
.ws2_c03209{word-spacing:1.330560px;}
.ws4_c03209{word-spacing:3.331152px;}
.wsb_c03209{word-spacing:33.300288px;}
.ws6_c03209{word-spacing:36.742464px;}
.ws1_c03209{word-spacing:37.759392px;}
.ws0_c03209{word-spacing:38.020752px;}
.ws3_c03209{word-spacing:39.218256px;}
.ws5_c03209{word-spacing:39.902544px;}
.ws7_c03209{word-spacing:42.026688px;}
._0_c03209{margin-left:-1.948320px;}
._2_c03209{width:1.482624px;}
._1_c03209{width:50.252400px;}
._3_c03209{width:51.530688px;}
.fc0_c03209{color:rgb(0,0,0);}
.fs0_c03209{font-size:47.520000px;}
.fs1_c03209{font-size:60.480000px;}
.y0_c03209{bottom:0.000000px;}
.y19_c03209{bottom:146.998362px;}
.y1b_c03209{bottom:186.600234px;}
.y1a_c03209{bottom:196.320450px;}
.y18_c03209{bottom:275.878542px;}
.y17_c03209{bottom:356.878758px;}
.y15_c03209{bottom:406.559730px;}
.y11_c03209{bottom:424.560306px;}
.y16_c03209{bottom:458.759262px;}
.y14_c03209{bottom:491.879514px;}
.y13_c03209{bottom:509.880090px;}
.y10_c03209{bottom:543.000342px;}
.y12_c03209{bottom:559.559874px;}
.yf_c03209{bottom:577.560450px;}
.y1c_c03209{bottom:614.280450px;}
.yb_c03209{bottom:667.558326px;}
.yd_c03209{bottom:707.160234px;}
.yc_c03209{bottom:716.880450px;}
.ya_c03209{bottom:796.438506px;}
.y9_c03209{bottom:877.438722px;}
.y7_c03209{bottom:926.759730px;}
.y3_c03209{bottom:944.760306px;}
.y8_c03209{bottom:979.319226px;}
.y6_c03209{bottom:1012.439478px;}
.y5_c03209{bottom:1030.440054px;}
.y2_c03209{bottom:1063.560306px;}
.y4_c03209{bottom:1079.759874px;}
.y1_c03209{bottom:1097.760450px;}
.ye_c03209{bottom:1134.840450px;}
.h3_c03209{height:32.530781px;}
.h1_c03209{height:41.696016px;}
.h2_c03209{height:41.812031px;}
.h4_c03209{height:54.654737px;}
.h0_c03209{height:1263.000000px;}
.w1_c03209{width:892.500000px;}
.w0_c03209{width:892.830000px;}
.x0_c03209{left:0.000000px;}
.xd_c03209{left:117.000000px;}
.x8_c03209{left:440.999856px;}
.x4_c03209{left:445.680576px;}
.xb_c03209{left:451.080000px;}
.x7_c03209{left:455.399604px;}
.x5_c03209{left:461.880144px;}
.x1_c03209{left:463.320000px;}
.xa_c03209{left:483.480360px;}
.x9_c03209{left:492.119496px;}
.x6_c03209{left:493.200576px;}
.xc_c03209{left:506.880360px;}
.x3_c03209{left:511.919892px;}
.x2_c03209{left:526.679604px;}
@media print{
.v0_c03209{vertical-align:0.000000pt;}
.v1_c03209{vertical-align:1.279488pt;}
.ls7_c03209{letter-spacing:-0.680064pt;}
.ls8_c03209{letter-spacing:-0.511104pt;}
.lsf_c03209{letter-spacing:-0.244992pt;}
.lsd_c03209{letter-spacing:-0.232320pt;}
.ls5_c03209{letter-spacing:-0.215424pt;}
.ls3_c03209{letter-spacing:-0.105600pt;}
.ls12_c03209{letter-spacing:0.000000pt;}
.ls0_c03209{letter-spacing:0.005376pt;}
.lsc_c03209{letter-spacing:0.033792pt;}
.ls4_c03209{letter-spacing:0.114048pt;}
.lsb_c03209{letter-spacing:0.451968pt;}
.ls11_c03209{letter-spacing:0.456960pt;}
.lse_c03209{letter-spacing:0.477312pt;}
.lsa_c03209{letter-spacing:0.515328pt;}
.ls10_c03209{letter-spacing:0.528000pt;}
.ls6_c03209{letter-spacing:0.532224pt;}
.ls1_c03209{letter-spacing:0.544896pt;}
.ls9_c03209{letter-spacing:0.599808pt;}
.ls2_c03209{letter-spacing:0.637824pt;}
.wsc_c03209{word-spacing:-13.445376pt;}
.wsa_c03209{word-spacing:-11.088000pt;}
.ws8_c03209{word-spacing:-11.075328pt;}
.ws9_c03209{word-spacing:-11.037312pt;}
.ws10_c03209{word-spacing:-0.920832pt;}
.wsd_c03209{word-spacing:-0.865920pt;}
.ws14_c03209{word-spacing:-0.639744pt;}
.ws11_c03209{word-spacing:-0.354816pt;}
.wsf_c03209{word-spacing:-0.105600pt;}
.ws12_c03209{word-spacing:-0.088704pt;}
.ws13_c03209{word-spacing:-0.076032pt;}
.wse_c03209{word-spacing:0.000000pt;}
.ws2_c03209{word-spacing:1.182720pt;}
.ws4_c03209{word-spacing:2.961024pt;}
.wsb_c03209{word-spacing:29.600256pt;}
.ws6_c03209{word-spacing:32.659968pt;}
.ws1_c03209{word-spacing:33.563904pt;}
.ws0_c03209{word-spacing:33.796224pt;}
.ws3_c03209{word-spacing:34.860672pt;}
.ws5_c03209{word-spacing:35.468928pt;}
.ws7_c03209{word-spacing:37.357056pt;}
._0_c03209{margin-left:-1.731840pt;}
._2_c03209{width:1.317888pt;}
._1_c03209{width:44.668800pt;}
._3_c03209{width:45.805056pt;}
.fs0_c03209{font-size:42.240000pt;}
.fs1_c03209{font-size:53.760000pt;}
.y0_c03209{bottom:0.000000pt;}
.y19_c03209{bottom:130.665211pt;}
.y1b_c03209{bottom:165.866875pt;}
.y1a_c03209{bottom:174.507067pt;}
.y18_c03209{bottom:245.225371pt;}
.y17_c03209{bottom:317.225563pt;}
.y15_c03209{bottom:361.386427pt;}
.y11_c03209{bottom:377.386939pt;}
.y16_c03209{bottom:407.786011pt;}
.y14_c03209{bottom:437.226235pt;}
.y13_c03209{bottom:453.226747pt;}
.y10_c03209{bottom:482.666971pt;}
.y12_c03209{bottom:497.386555pt;}
.yf_c03209{bottom:513.387067pt;}
.y1c_c03209{bottom:546.027067pt;}
.yb_c03209{bottom:593.385179pt;}
.yd_c03209{bottom:628.586875pt;}
.yc_c03209{bottom:637.227067pt;}
.ya_c03209{bottom:707.945339pt;}
.y9_c03209{bottom:779.945531pt;}
.y7_c03209{bottom:823.786427pt;}
.y3_c03209{bottom:839.786939pt;}
.y8_c03209{bottom:870.505979pt;}
.y6_c03209{bottom:899.946203pt;}
.y5_c03209{bottom:915.946715pt;}
.y2_c03209{bottom:945.386939pt;}
.y4_c03209{bottom:959.786555pt;}
.y1_c03209{bottom:975.787067pt;}
.ye_c03209{bottom:1008.747067pt;}
.h3_c03209{height:28.916250pt;}
.h1_c03209{height:37.063125pt;}
.h2_c03209{height:37.166250pt;}
.h4_c03209{height:48.581988pt;}
.h0_c03209{height:1122.666667pt;}
.w1_c03209{width:793.333333pt;}
.w0_c03209{width:793.626667pt;}
.x0_c03209{left:0.000000pt;}
.xd_c03209{left:104.000000pt;}
.x8_c03209{left:391.999872pt;}
.x4_c03209{left:396.160512pt;}
.xb_c03209{left:400.960000pt;}
.x7_c03209{left:404.799648pt;}
.x5_c03209{left:410.560128pt;}
.x1_c03209{left:411.840000pt;}
.xa_c03209{left:429.760320pt;}
.x9_c03209{left:437.439552pt;}
.x6_c03209{left:438.400512pt;}
.xc_c03209{left:450.560320pt;}
.x3_c03209{left:455.039904pt;}
.x2_c03209{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03210 {
    display:none;
  }
  .loading-indicator_c03210.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03210 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03210 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03210" -> "#page-container .classname_c03210")
 */
.pf_c03210 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03210 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03210.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03210 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03210 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03210 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03210 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03210 {overflow:visible;}
  }
}
.c_c03210 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03210 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03210:after { /* webkit #35443 */
  content: '';
}
.t_c03210:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03210 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03210 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03210 { /* info for Javascript */
  display:none;
}
.l_c03210 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03210 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03210 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03210:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03210 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03210.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03210.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03210 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03210{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03210;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03210{font-family:ff1_c03210;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03210;src:url('chunks/assets/font_b96a7e5389c7dcdaefcc70d8.woff2')format("woff");}.ff2_c03210{font-family:ff2_c03210;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03210;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03210{font-family:ff3_c03210;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03210{vertical-align:0.000000px;}
.v1_c03210{vertical-align:1.439424px;}
.ls7_c03210{letter-spacing:-0.765072px;}
.ls8_c03210{letter-spacing:-0.574992px;}
.lsf_c03210{letter-spacing:-0.275616px;}
.lsd_c03210{letter-spacing:-0.261360px;}
.ls5_c03210{letter-spacing:-0.242352px;}
.ls3_c03210{letter-spacing:-0.118800px;}
.ls12_c03210{letter-spacing:0.000000px;}
.ls0_c03210{letter-spacing:0.006048px;}
.lsc_c03210{letter-spacing:0.038016px;}
.ls4_c03210{letter-spacing:0.128304px;}
.lsb_c03210{letter-spacing:0.508464px;}
.ls11_c03210{letter-spacing:0.514080px;}
.lse_c03210{letter-spacing:0.536976px;}
.lsa_c03210{letter-spacing:0.579744px;}
.ls10_c03210{letter-spacing:0.594000px;}
.ls6_c03210{letter-spacing:0.598752px;}
.ls1_c03210{letter-spacing:0.613008px;}
.ls9_c03210{letter-spacing:0.674784px;}
.ls2_c03210{letter-spacing:0.717552px;}
.sc__c03210{text-shadow:none;}
.sc0_c03210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03210{-webkit-text-stroke:0px transparent;}
.sc0_c03210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03210{word-spacing:-15.126048px;}
.wsa_c03210{word-spacing:-12.474000px;}
.ws8_c03210{word-spacing:-12.459744px;}
.ws9_c03210{word-spacing:-12.416976px;}
.ws10_c03210{word-spacing:-1.035936px;}
.wsd_c03210{word-spacing:-0.974160px;}
.ws14_c03210{word-spacing:-0.719712px;}
.ws11_c03210{word-spacing:-0.399168px;}
.wsf_c03210{word-spacing:-0.118800px;}
.ws12_c03210{word-spacing:-0.099792px;}
.ws13_c03210{word-spacing:-0.085536px;}
.wse_c03210{word-spacing:0.000000px;}
.ws2_c03210{word-spacing:1.330560px;}
.ws4_c03210{word-spacing:3.331152px;}
.wsb_c03210{word-spacing:33.300288px;}
.ws6_c03210{word-spacing:36.742464px;}
.ws1_c03210{word-spacing:37.759392px;}
.ws0_c03210{word-spacing:38.020752px;}
.ws3_c03210{word-spacing:39.218256px;}
.ws5_c03210{word-spacing:39.902544px;}
.ws7_c03210{word-spacing:42.026688px;}
._0_c03210{margin-left:-1.948320px;}
._2_c03210{width:1.482624px;}
._1_c03210{width:50.252400px;}
._3_c03210{width:51.530688px;}
.fc0_c03210{color:rgb(0,0,0);}
.fs0_c03210{font-size:47.520000px;}
.fs1_c03210{font-size:60.480000px;}
.y0_c03210{bottom:0.000000px;}
.y19_c03210{bottom:146.998362px;}
.y1b_c03210{bottom:186.600234px;}
.y1a_c03210{bottom:196.320450px;}
.y18_c03210{bottom:275.878542px;}
.y17_c03210{bottom:356.878758px;}
.y15_c03210{bottom:406.559730px;}
.y11_c03210{bottom:424.560306px;}
.y16_c03210{bottom:458.759262px;}
.y14_c03210{bottom:491.879514px;}
.y13_c03210{bottom:509.880090px;}
.y10_c03210{bottom:543.000342px;}
.y12_c03210{bottom:559.559874px;}
.yf_c03210{bottom:577.560450px;}
.y1c_c03210{bottom:614.280450px;}
.yb_c03210{bottom:667.558326px;}
.yd_c03210{bottom:707.160234px;}
.yc_c03210{bottom:716.880450px;}
.ya_c03210{bottom:796.438506px;}
.y9_c03210{bottom:877.438722px;}
.y7_c03210{bottom:926.759730px;}
.y3_c03210{bottom:944.760306px;}
.y8_c03210{bottom:979.319226px;}
.y6_c03210{bottom:1012.439478px;}
.y5_c03210{bottom:1030.440054px;}
.y2_c03210{bottom:1063.560306px;}
.y4_c03210{bottom:1079.759874px;}
.y1_c03210{bottom:1097.760450px;}
.ye_c03210{bottom:1134.840450px;}
.h3_c03210{height:32.530781px;}
.h1_c03210{height:41.696016px;}
.h2_c03210{height:41.812031px;}
.h4_c03210{height:54.654737px;}
.h0_c03210{height:1263.000000px;}
.w1_c03210{width:892.500000px;}
.w0_c03210{width:892.830000px;}
.x0_c03210{left:0.000000px;}
.xd_c03210{left:117.000000px;}
.x8_c03210{left:440.999856px;}
.x4_c03210{left:445.680576px;}
.xb_c03210{left:451.080000px;}
.x7_c03210{left:455.399604px;}
.x5_c03210{left:461.880144px;}
.x1_c03210{left:463.320000px;}
.xa_c03210{left:483.480360px;}
.x9_c03210{left:492.119496px;}
.x6_c03210{left:493.200576px;}
.xc_c03210{left:506.880360px;}
.x3_c03210{left:511.919892px;}
.x2_c03210{left:526.679604px;}
@media print{
.v0_c03210{vertical-align:0.000000pt;}
.v1_c03210{vertical-align:1.279488pt;}
.ls7_c03210{letter-spacing:-0.680064pt;}
.ls8_c03210{letter-spacing:-0.511104pt;}
.lsf_c03210{letter-spacing:-0.244992pt;}
.lsd_c03210{letter-spacing:-0.232320pt;}
.ls5_c03210{letter-spacing:-0.215424pt;}
.ls3_c03210{letter-spacing:-0.105600pt;}
.ls12_c03210{letter-spacing:0.000000pt;}
.ls0_c03210{letter-spacing:0.005376pt;}
.lsc_c03210{letter-spacing:0.033792pt;}
.ls4_c03210{letter-spacing:0.114048pt;}
.lsb_c03210{letter-spacing:0.451968pt;}
.ls11_c03210{letter-spacing:0.456960pt;}
.lse_c03210{letter-spacing:0.477312pt;}
.lsa_c03210{letter-spacing:0.515328pt;}
.ls10_c03210{letter-spacing:0.528000pt;}
.ls6_c03210{letter-spacing:0.532224pt;}
.ls1_c03210{letter-spacing:0.544896pt;}
.ls9_c03210{letter-spacing:0.599808pt;}
.ls2_c03210{letter-spacing:0.637824pt;}
.wsc_c03210{word-spacing:-13.445376pt;}
.wsa_c03210{word-spacing:-11.088000pt;}
.ws8_c03210{word-spacing:-11.075328pt;}
.ws9_c03210{word-spacing:-11.037312pt;}
.ws10_c03210{word-spacing:-0.920832pt;}
.wsd_c03210{word-spacing:-0.865920pt;}
.ws14_c03210{word-spacing:-0.639744pt;}
.ws11_c03210{word-spacing:-0.354816pt;}
.wsf_c03210{word-spacing:-0.105600pt;}
.ws12_c03210{word-spacing:-0.088704pt;}
.ws13_c03210{word-spacing:-0.076032pt;}
.wse_c03210{word-spacing:0.000000pt;}
.ws2_c03210{word-spacing:1.182720pt;}
.ws4_c03210{word-spacing:2.961024pt;}
.wsb_c03210{word-spacing:29.600256pt;}
.ws6_c03210{word-spacing:32.659968pt;}
.ws1_c03210{word-spacing:33.563904pt;}
.ws0_c03210{word-spacing:33.796224pt;}
.ws3_c03210{word-spacing:34.860672pt;}
.ws5_c03210{word-spacing:35.468928pt;}
.ws7_c03210{word-spacing:37.357056pt;}
._0_c03210{margin-left:-1.731840pt;}
._2_c03210{width:1.317888pt;}
._1_c03210{width:44.668800pt;}
._3_c03210{width:45.805056pt;}
.fs0_c03210{font-size:42.240000pt;}
.fs1_c03210{font-size:53.760000pt;}
.y0_c03210{bottom:0.000000pt;}
.y19_c03210{bottom:130.665211pt;}
.y1b_c03210{bottom:165.866875pt;}
.y1a_c03210{bottom:174.507067pt;}
.y18_c03210{bottom:245.225371pt;}
.y17_c03210{bottom:317.225563pt;}
.y15_c03210{bottom:361.386427pt;}
.y11_c03210{bottom:377.386939pt;}
.y16_c03210{bottom:407.786011pt;}
.y14_c03210{bottom:437.226235pt;}
.y13_c03210{bottom:453.226747pt;}
.y10_c03210{bottom:482.666971pt;}
.y12_c03210{bottom:497.386555pt;}
.yf_c03210{bottom:513.387067pt;}
.y1c_c03210{bottom:546.027067pt;}
.yb_c03210{bottom:593.385179pt;}
.yd_c03210{bottom:628.586875pt;}
.yc_c03210{bottom:637.227067pt;}
.ya_c03210{bottom:707.945339pt;}
.y9_c03210{bottom:779.945531pt;}
.y7_c03210{bottom:823.786427pt;}
.y3_c03210{bottom:839.786939pt;}
.y8_c03210{bottom:870.505979pt;}
.y6_c03210{bottom:899.946203pt;}
.y5_c03210{bottom:915.946715pt;}
.y2_c03210{bottom:945.386939pt;}
.y4_c03210{bottom:959.786555pt;}
.y1_c03210{bottom:975.787067pt;}
.ye_c03210{bottom:1008.747067pt;}
.h3_c03210{height:28.916250pt;}
.h1_c03210{height:37.063125pt;}
.h2_c03210{height:37.166250pt;}
.h4_c03210{height:48.581988pt;}
.h0_c03210{height:1122.666667pt;}
.w1_c03210{width:793.333333pt;}
.w0_c03210{width:793.626667pt;}
.x0_c03210{left:0.000000pt;}
.xd_c03210{left:104.000000pt;}
.x8_c03210{left:391.999872pt;}
.x4_c03210{left:396.160512pt;}
.xb_c03210{left:400.960000pt;}
.x7_c03210{left:404.799648pt;}
.x5_c03210{left:410.560128pt;}
.x1_c03210{left:411.840000pt;}
.xa_c03210{left:429.760320pt;}
.x9_c03210{left:437.439552pt;}
.x6_c03210{left:438.400512pt;}
.xc_c03210{left:450.560320pt;}
.x3_c03210{left:455.039904pt;}
.x2_c03210{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03211 {
    display:none;
  }
  .loading-indicator_c03211.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03211 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03211 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03211" -> "#page-container .classname_c03211")
 */
.pf_c03211 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03211 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03211.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03211 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03211 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03211 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03211 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03211 {overflow:visible;}
  }
}
.c_c03211 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03211 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03211:after { /* webkit #35443 */
  content: '';
}
.t_c03211:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03211 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03211 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03211 { /* info for Javascript */
  display:none;
}
.l_c03211 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03211 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03211 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03211:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03211 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03211.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03211.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03211 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03211{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03211;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03211{font-family:ff1_c03211;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03211;src:url('chunks/assets/font_b96a7e5389c7dcdaefcc70d8.woff2')format("woff");}.ff2_c03211{font-family:ff2_c03211;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03211;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03211{font-family:ff3_c03211;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03211{vertical-align:0.000000px;}
.v1_c03211{vertical-align:1.439424px;}
.ls7_c03211{letter-spacing:-0.765072px;}
.ls8_c03211{letter-spacing:-0.574992px;}
.lsf_c03211{letter-spacing:-0.275616px;}
.lsd_c03211{letter-spacing:-0.261360px;}
.ls5_c03211{letter-spacing:-0.242352px;}
.ls3_c03211{letter-spacing:-0.118800px;}
.ls12_c03211{letter-spacing:0.000000px;}
.ls0_c03211{letter-spacing:0.006048px;}
.lsc_c03211{letter-spacing:0.038016px;}
.ls4_c03211{letter-spacing:0.128304px;}
.lsb_c03211{letter-spacing:0.508464px;}
.ls11_c03211{letter-spacing:0.514080px;}
.lse_c03211{letter-spacing:0.536976px;}
.lsa_c03211{letter-spacing:0.579744px;}
.ls10_c03211{letter-spacing:0.594000px;}
.ls6_c03211{letter-spacing:0.598752px;}
.ls1_c03211{letter-spacing:0.613008px;}
.ls9_c03211{letter-spacing:0.674784px;}
.ls2_c03211{letter-spacing:0.717552px;}
.sc__c03211{text-shadow:none;}
.sc0_c03211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03211{-webkit-text-stroke:0px transparent;}
.sc0_c03211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03211{word-spacing:-15.126048px;}
.wsa_c03211{word-spacing:-12.474000px;}
.ws8_c03211{word-spacing:-12.459744px;}
.ws9_c03211{word-spacing:-12.416976px;}
.ws10_c03211{word-spacing:-1.035936px;}
.wsd_c03211{word-spacing:-0.974160px;}
.ws14_c03211{word-spacing:-0.719712px;}
.ws11_c03211{word-spacing:-0.399168px;}
.wsf_c03211{word-spacing:-0.118800px;}
.ws12_c03211{word-spacing:-0.099792px;}
.ws13_c03211{word-spacing:-0.085536px;}
.wse_c03211{word-spacing:0.000000px;}
.ws2_c03211{word-spacing:1.330560px;}
.ws4_c03211{word-spacing:3.331152px;}
.wsb_c03211{word-spacing:33.300288px;}
.ws6_c03211{word-spacing:36.742464px;}
.ws1_c03211{word-spacing:37.759392px;}
.ws0_c03211{word-spacing:38.020752px;}
.ws3_c03211{word-spacing:39.218256px;}
.ws5_c03211{word-spacing:39.902544px;}
.ws7_c03211{word-spacing:42.026688px;}
._0_c03211{margin-left:-1.948320px;}
._2_c03211{width:1.482624px;}
._1_c03211{width:50.252400px;}
._3_c03211{width:51.530688px;}
.fc0_c03211{color:rgb(0,0,0);}
.fs0_c03211{font-size:47.520000px;}
.fs1_c03211{font-size:60.480000px;}
.y0_c03211{bottom:0.000000px;}
.y19_c03211{bottom:146.998362px;}
.y1b_c03211{bottom:186.600234px;}
.y1a_c03211{bottom:196.320450px;}
.y18_c03211{bottom:275.878542px;}
.y17_c03211{bottom:356.878758px;}
.y15_c03211{bottom:406.559730px;}
.y11_c03211{bottom:424.560306px;}
.y16_c03211{bottom:458.759262px;}
.y14_c03211{bottom:491.879514px;}
.y13_c03211{bottom:509.880090px;}
.y10_c03211{bottom:543.000342px;}
.y12_c03211{bottom:559.559874px;}
.yf_c03211{bottom:577.560450px;}
.y1c_c03211{bottom:614.280450px;}
.yb_c03211{bottom:667.558326px;}
.yd_c03211{bottom:707.160234px;}
.yc_c03211{bottom:716.880450px;}
.ya_c03211{bottom:796.438506px;}
.y9_c03211{bottom:877.438722px;}
.y7_c03211{bottom:926.759730px;}
.y3_c03211{bottom:944.760306px;}
.y8_c03211{bottom:979.319226px;}
.y6_c03211{bottom:1012.439478px;}
.y5_c03211{bottom:1030.440054px;}
.y2_c03211{bottom:1063.560306px;}
.y4_c03211{bottom:1079.759874px;}
.y1_c03211{bottom:1097.760450px;}
.ye_c03211{bottom:1134.840450px;}
.h3_c03211{height:32.530781px;}
.h1_c03211{height:41.696016px;}
.h2_c03211{height:41.812031px;}
.h4_c03211{height:54.654737px;}
.h0_c03211{height:1263.000000px;}
.w1_c03211{width:892.500000px;}
.w0_c03211{width:892.830000px;}
.x0_c03211{left:0.000000px;}
.xd_c03211{left:117.000000px;}
.x8_c03211{left:440.999856px;}
.x4_c03211{left:445.680576px;}
.xb_c03211{left:451.080000px;}
.x7_c03211{left:455.399604px;}
.x5_c03211{left:461.880144px;}
.x1_c03211{left:463.320000px;}
.xa_c03211{left:483.480360px;}
.x9_c03211{left:492.119496px;}
.x6_c03211{left:493.200576px;}
.xc_c03211{left:506.880360px;}
.x3_c03211{left:511.919892px;}
.x2_c03211{left:526.679604px;}
@media print{
.v0_c03211{vertical-align:0.000000pt;}
.v1_c03211{vertical-align:1.279488pt;}
.ls7_c03211{letter-spacing:-0.680064pt;}
.ls8_c03211{letter-spacing:-0.511104pt;}
.lsf_c03211{letter-spacing:-0.244992pt;}
.lsd_c03211{letter-spacing:-0.232320pt;}
.ls5_c03211{letter-spacing:-0.215424pt;}
.ls3_c03211{letter-spacing:-0.105600pt;}
.ls12_c03211{letter-spacing:0.000000pt;}
.ls0_c03211{letter-spacing:0.005376pt;}
.lsc_c03211{letter-spacing:0.033792pt;}
.ls4_c03211{letter-spacing:0.114048pt;}
.lsb_c03211{letter-spacing:0.451968pt;}
.ls11_c03211{letter-spacing:0.456960pt;}
.lse_c03211{letter-spacing:0.477312pt;}
.lsa_c03211{letter-spacing:0.515328pt;}
.ls10_c03211{letter-spacing:0.528000pt;}
.ls6_c03211{letter-spacing:0.532224pt;}
.ls1_c03211{letter-spacing:0.544896pt;}
.ls9_c03211{letter-spacing:0.599808pt;}
.ls2_c03211{letter-spacing:0.637824pt;}
.wsc_c03211{word-spacing:-13.445376pt;}
.wsa_c03211{word-spacing:-11.088000pt;}
.ws8_c03211{word-spacing:-11.075328pt;}
.ws9_c03211{word-spacing:-11.037312pt;}
.ws10_c03211{word-spacing:-0.920832pt;}
.wsd_c03211{word-spacing:-0.865920pt;}
.ws14_c03211{word-spacing:-0.639744pt;}
.ws11_c03211{word-spacing:-0.354816pt;}
.wsf_c03211{word-spacing:-0.105600pt;}
.ws12_c03211{word-spacing:-0.088704pt;}
.ws13_c03211{word-spacing:-0.076032pt;}
.wse_c03211{word-spacing:0.000000pt;}
.ws2_c03211{word-spacing:1.182720pt;}
.ws4_c03211{word-spacing:2.961024pt;}
.wsb_c03211{word-spacing:29.600256pt;}
.ws6_c03211{word-spacing:32.659968pt;}
.ws1_c03211{word-spacing:33.563904pt;}
.ws0_c03211{word-spacing:33.796224pt;}
.ws3_c03211{word-spacing:34.860672pt;}
.ws5_c03211{word-spacing:35.468928pt;}
.ws7_c03211{word-spacing:37.357056pt;}
._0_c03211{margin-left:-1.731840pt;}
._2_c03211{width:1.317888pt;}
._1_c03211{width:44.668800pt;}
._3_c03211{width:45.805056pt;}
.fs0_c03211{font-size:42.240000pt;}
.fs1_c03211{font-size:53.760000pt;}
.y0_c03211{bottom:0.000000pt;}
.y19_c03211{bottom:130.665211pt;}
.y1b_c03211{bottom:165.866875pt;}
.y1a_c03211{bottom:174.507067pt;}
.y18_c03211{bottom:245.225371pt;}
.y17_c03211{bottom:317.225563pt;}
.y15_c03211{bottom:361.386427pt;}
.y11_c03211{bottom:377.386939pt;}
.y16_c03211{bottom:407.786011pt;}
.y14_c03211{bottom:437.226235pt;}
.y13_c03211{bottom:453.226747pt;}
.y10_c03211{bottom:482.666971pt;}
.y12_c03211{bottom:497.386555pt;}
.yf_c03211{bottom:513.387067pt;}
.y1c_c03211{bottom:546.027067pt;}
.yb_c03211{bottom:593.385179pt;}
.yd_c03211{bottom:628.586875pt;}
.yc_c03211{bottom:637.227067pt;}
.ya_c03211{bottom:707.945339pt;}
.y9_c03211{bottom:779.945531pt;}
.y7_c03211{bottom:823.786427pt;}
.y3_c03211{bottom:839.786939pt;}
.y8_c03211{bottom:870.505979pt;}
.y6_c03211{bottom:899.946203pt;}
.y5_c03211{bottom:915.946715pt;}
.y2_c03211{bottom:945.386939pt;}
.y4_c03211{bottom:959.786555pt;}
.y1_c03211{bottom:975.787067pt;}
.ye_c03211{bottom:1008.747067pt;}
.h3_c03211{height:28.916250pt;}
.h1_c03211{height:37.063125pt;}
.h2_c03211{height:37.166250pt;}
.h4_c03211{height:48.581988pt;}
.h0_c03211{height:1122.666667pt;}
.w1_c03211{width:793.333333pt;}
.w0_c03211{width:793.626667pt;}
.x0_c03211{left:0.000000pt;}
.xd_c03211{left:104.000000pt;}
.x8_c03211{left:391.999872pt;}
.x4_c03211{left:396.160512pt;}
.xb_c03211{left:400.960000pt;}
.x7_c03211{left:404.799648pt;}
.x5_c03211{left:410.560128pt;}
.x1_c03211{left:411.840000pt;}
.xa_c03211{left:429.760320pt;}
.x9_c03211{left:437.439552pt;}
.x6_c03211{left:438.400512pt;}
.xc_c03211{left:450.560320pt;}
.x3_c03211{left:455.039904pt;}
.x2_c03211{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03212 {
    display:none;
  }
  .loading-indicator_c03212.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03212 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03212 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03212" -> "#page-container .classname_c03212")
 */
.pf_c03212 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03212 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03212.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03212 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03212 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03212 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03212 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03212 {overflow:visible;}
  }
}
.c_c03212 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03212 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03212:after { /* webkit #35443 */
  content: '';
}
.t_c03212:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03212 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03212 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03212 { /* info for Javascript */
  display:none;
}
.l_c03212 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03212 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03212 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03212:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03212 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03212.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03212.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03212 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03212{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03212;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03212{font-family:ff1_c03212;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03212;src:url('chunks/assets/font_2d2ce8ab9e238f820c50799a.woff2')format("woff");}.ff2_c03212{font-family:ff2_c03212;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03212;src:url('chunks/assets/font_e06361606ddaad5594710baa.woff2')format("woff");}.ff3_c03212{font-family:ff3_c03212;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03212{vertical-align:0.000000px;}
.v1_c03212{vertical-align:1.439424px;}
.ls18_c03212{letter-spacing:-1.197504px;}
.lse_c03212{letter-spacing:-0.793584px;}
.ls12_c03212{letter-spacing:-0.736560px;}
.lsb_c03212{letter-spacing:-0.574992px;}
.lsf_c03212{letter-spacing:-0.304128px;}
.lsa_c03212{letter-spacing:-0.280368px;}
.ls13_c03212{letter-spacing:-0.270864px;}
.ls10_c03212{letter-spacing:-0.261360px;}
.ls7_c03212{letter-spacing:-0.242352px;}
.ls8_c03212{letter-spacing:-0.237600px;}
.ls5_c03212{letter-spacing:-0.128304px;}
.ls4_c03212{letter-spacing:-0.118800px;}
.ls16_c03212{letter-spacing:0.000000px;}
.ls1_c03212{letter-spacing:0.006048px;}
.ls17_c03212{letter-spacing:0.057024px;}
.ls6_c03212{letter-spacing:0.128304px;}
.lsd_c03212{letter-spacing:0.508464px;}
.ls15_c03212{letter-spacing:0.514080px;}
.ls11_c03212{letter-spacing:0.536976px;}
.lsc_c03212{letter-spacing:0.579744px;}
.ls14_c03212{letter-spacing:0.594000px;}
.ls9_c03212{letter-spacing:0.598752px;}
.ls3_c03212{letter-spacing:0.613008px;}
.ls0_c03212{letter-spacing:0.717552px;}
.ls2_c03212{letter-spacing:0.722304px;}
.sc__c03212{text-shadow:none;}
.sc0_c03212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03212{-webkit-text-stroke:0px transparent;}
.sc0_c03212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03212{word-spacing:-15.126048px;}
.wsb_c03212{word-spacing:-12.474000px;}
.ws6_c03212{word-spacing:-12.459744px;}
.ws1_c03212{word-spacing:-11.751696px;}
.ws3_c03212{word-spacing:-11.642400px;}
.ws1a_c03212{word-spacing:-1.083456px;}
.ws13_c03212{word-spacing:-1.078704px;}
.wsf_c03212{word-spacing:-0.974160px;}
.ws19_c03212{word-spacing:-0.719712px;}
.ws1b_c03212{word-spacing:-0.418176px;}
.ws11_c03212{word-spacing:-0.118800px;}
.ws16_c03212{word-spacing:-0.099792px;}
.ws17_c03212{word-spacing:-0.090288px;}
.ws18_c03212{word-spacing:-0.085536px;}
.ws12_c03212{word-spacing:-0.080784px;}
.ws15_c03212{word-spacing:-0.057024px;}
.ws10_c03212{word-spacing:0.000000px;}
.ws14_c03212{word-spacing:0.432432px;}
.ws1c_c03212{word-spacing:0.836352px;}
.wsa_c03212{word-spacing:6.629040px;}
.wsc_c03212{word-spacing:33.300288px;}
.ws9_c03212{word-spacing:34.836912px;}
.ws8_c03212{word-spacing:36.143712px;}
.wse_c03212{word-spacing:36.742464px;}
.ws2_c03212{word-spacing:37.759392px;}
.ws0_c03212{word-spacing:38.020752px;}
.ws4_c03212{word-spacing:39.218256px;}
.ws5_c03212{word-spacing:39.902544px;}
.ws7_c03212{word-spacing:42.026688px;}
._0_c03212{margin-left:-1.948320px;}
._2_c03212{width:1.658448px;}
._3_c03212{width:3.179088px;}
._5_c03212{width:19.982160px;}
._4_c03212{width:24.339744px;}
._6_c03212{width:25.489728px;}
._1_c03212{width:50.252400px;}
.fc0_c03212{color:rgb(0,0,0);}
.fs0_c03212{font-size:47.520000px;}
.fs1_c03212{font-size:60.480000px;}
.y0_c03212{bottom:0.000000px;}
.y1b_c03212{bottom:131.878686px;}
.y1a_c03212{bottom:146.998362px;}
.y1d_c03212{bottom:186.600234px;}
.y1c_c03212{bottom:196.320450px;}
.y19_c03212{bottom:275.878542px;}
.y18_c03212{bottom:356.878758px;}
.y16_c03212{bottom:406.559730px;}
.y12_c03212{bottom:424.560306px;}
.y17_c03212{bottom:458.759262px;}
.y15_c03212{bottom:491.879514px;}
.y14_c03212{bottom:509.880090px;}
.y11_c03212{bottom:543.000342px;}
.y13_c03212{bottom:559.559874px;}
.y10_c03212{bottom:577.560450px;}
.y1e_c03212{bottom:614.280450px;}
.yc_c03212{bottom:652.438650px;}
.yb_c03212{bottom:667.558326px;}
.ye_c03212{bottom:707.160234px;}
.yd_c03212{bottom:716.880450px;}
.ya_c03212{bottom:796.438506px;}
.y9_c03212{bottom:877.438722px;}
.y7_c03212{bottom:926.759730px;}
.y3_c03212{bottom:944.760306px;}
.y8_c03212{bottom:979.319226px;}
.y6_c03212{bottom:1012.439478px;}
.y5_c03212{bottom:1030.440054px;}
.y2_c03212{bottom:1063.560306px;}
.y4_c03212{bottom:1079.759874px;}
.y1_c03212{bottom:1097.760450px;}
.yf_c03212{bottom:1134.840450px;}
.h3_c03212{height:32.530781px;}
.h1_c03212{height:41.696016px;}
.h2_c03212{height:41.812031px;}
.h4_c03212{height:54.654737px;}
.h0_c03212{height:1263.000000px;}
.w1_c03212{width:892.500000px;}
.w0_c03212{width:892.830000px;}
.x0_c03212{left:0.000000px;}
.xe_c03212{left:117.000000px;}
.x8_c03212{left:440.999856px;}
.x4_c03212{left:445.680576px;}
.xc_c03212{left:451.080000px;}
.x7_c03212{left:455.399604px;}
.x5_c03212{left:461.880144px;}
.x1_c03212{left:463.320000px;}
.xa_c03212{left:483.480360px;}
.x9_c03212{left:492.119496px;}
.x6_c03212{left:493.200576px;}
.xd_c03212{left:506.880360px;}
.x3_c03212{left:511.919892px;}
.x2_c03212{left:526.679604px;}
.xb_c03212{left:569.880036px;}
@media print{
.v0_c03212{vertical-align:0.000000pt;}
.v1_c03212{vertical-align:1.279488pt;}
.ls18_c03212{letter-spacing:-1.064448pt;}
.lse_c03212{letter-spacing:-0.705408pt;}
.ls12_c03212{letter-spacing:-0.654720pt;}
.lsb_c03212{letter-spacing:-0.511104pt;}
.lsf_c03212{letter-spacing:-0.270336pt;}
.lsa_c03212{letter-spacing:-0.249216pt;}
.ls13_c03212{letter-spacing:-0.240768pt;}
.ls10_c03212{letter-spacing:-0.232320pt;}
.ls7_c03212{letter-spacing:-0.215424pt;}
.ls8_c03212{letter-spacing:-0.211200pt;}
.ls5_c03212{letter-spacing:-0.114048pt;}
.ls4_c03212{letter-spacing:-0.105600pt;}
.ls16_c03212{letter-spacing:0.000000pt;}
.ls1_c03212{letter-spacing:0.005376pt;}
.ls17_c03212{letter-spacing:0.050688pt;}
.ls6_c03212{letter-spacing:0.114048pt;}
.lsd_c03212{letter-spacing:0.451968pt;}
.ls15_c03212{letter-spacing:0.456960pt;}
.ls11_c03212{letter-spacing:0.477312pt;}
.lsc_c03212{letter-spacing:0.515328pt;}
.ls14_c03212{letter-spacing:0.528000pt;}
.ls9_c03212{letter-spacing:0.532224pt;}
.ls3_c03212{letter-spacing:0.544896pt;}
.ls0_c03212{letter-spacing:0.637824pt;}
.ls2_c03212{letter-spacing:0.642048pt;}
.wsd_c03212{word-spacing:-13.445376pt;}
.wsb_c03212{word-spacing:-11.088000pt;}
.ws6_c03212{word-spacing:-11.075328pt;}
.ws1_c03212{word-spacing:-10.445952pt;}
.ws3_c03212{word-spacing:-10.348800pt;}
.ws1a_c03212{word-spacing:-0.963072pt;}
.ws13_c03212{word-spacing:-0.958848pt;}
.wsf_c03212{word-spacing:-0.865920pt;}
.ws19_c03212{word-spacing:-0.639744pt;}
.ws1b_c03212{word-spacing:-0.371712pt;}
.ws11_c03212{word-spacing:-0.105600pt;}
.ws16_c03212{word-spacing:-0.088704pt;}
.ws17_c03212{word-spacing:-0.080256pt;}
.ws18_c03212{word-spacing:-0.076032pt;}
.ws12_c03212{word-spacing:-0.071808pt;}
.ws15_c03212{word-spacing:-0.050688pt;}
.ws10_c03212{word-spacing:0.000000pt;}
.ws14_c03212{word-spacing:0.384384pt;}
.ws1c_c03212{word-spacing:0.743424pt;}
.wsa_c03212{word-spacing:5.892480pt;}
.wsc_c03212{word-spacing:29.600256pt;}
.ws9_c03212{word-spacing:30.966144pt;}
.ws8_c03212{word-spacing:32.127744pt;}
.wse_c03212{word-spacing:32.659968pt;}
.ws2_c03212{word-spacing:33.563904pt;}
.ws0_c03212{word-spacing:33.796224pt;}
.ws4_c03212{word-spacing:34.860672pt;}
.ws5_c03212{word-spacing:35.468928pt;}
.ws7_c03212{word-spacing:37.357056pt;}
._0_c03212{margin-left:-1.731840pt;}
._2_c03212{width:1.474176pt;}
._3_c03212{width:2.825856pt;}
._5_c03212{width:17.761920pt;}
._4_c03212{width:21.635328pt;}
._6_c03212{width:22.657536pt;}
._1_c03212{width:44.668800pt;}
.fs0_c03212{font-size:42.240000pt;}
.fs1_c03212{font-size:53.760000pt;}
.y0_c03212{bottom:0.000000pt;}
.y1b_c03212{bottom:117.225499pt;}
.y1a_c03212{bottom:130.665211pt;}
.y1d_c03212{bottom:165.866875pt;}
.y1c_c03212{bottom:174.507067pt;}
.y19_c03212{bottom:245.225371pt;}
.y18_c03212{bottom:317.225563pt;}
.y16_c03212{bottom:361.386427pt;}
.y12_c03212{bottom:377.386939pt;}
.y17_c03212{bottom:407.786011pt;}
.y15_c03212{bottom:437.226235pt;}
.y14_c03212{bottom:453.226747pt;}
.y11_c03212{bottom:482.666971pt;}
.y13_c03212{bottom:497.386555pt;}
.y10_c03212{bottom:513.387067pt;}
.y1e_c03212{bottom:546.027067pt;}
.yc_c03212{bottom:579.945467pt;}
.yb_c03212{bottom:593.385179pt;}
.ye_c03212{bottom:628.586875pt;}
.yd_c03212{bottom:637.227067pt;}
.ya_c03212{bottom:707.945339pt;}
.y9_c03212{bottom:779.945531pt;}
.y7_c03212{bottom:823.786427pt;}
.y3_c03212{bottom:839.786939pt;}
.y8_c03212{bottom:870.505979pt;}
.y6_c03212{bottom:899.946203pt;}
.y5_c03212{bottom:915.946715pt;}
.y2_c03212{bottom:945.386939pt;}
.y4_c03212{bottom:959.786555pt;}
.y1_c03212{bottom:975.787067pt;}
.yf_c03212{bottom:1008.747067pt;}
.h3_c03212{height:28.916250pt;}
.h1_c03212{height:37.063125pt;}
.h2_c03212{height:37.166250pt;}
.h4_c03212{height:48.581988pt;}
.h0_c03212{height:1122.666667pt;}
.w1_c03212{width:793.333333pt;}
.w0_c03212{width:793.626667pt;}
.x0_c03212{left:0.000000pt;}
.xe_c03212{left:104.000000pt;}
.x8_c03212{left:391.999872pt;}
.x4_c03212{left:396.160512pt;}
.xc_c03212{left:400.960000pt;}
.x7_c03212{left:404.799648pt;}
.x5_c03212{left:410.560128pt;}
.x1_c03212{left:411.840000pt;}
.xa_c03212{left:429.760320pt;}
.x9_c03212{left:437.439552pt;}
.x6_c03212{left:438.400512pt;}
.xd_c03212{left:450.560320pt;}
.x3_c03212{left:455.039904pt;}
.x2_c03212{left:468.159648pt;}
.xb_c03212{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03213 {
    display:none;
  }
  .loading-indicator_c03213.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03213 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03213 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03213" -> "#page-container .classname_c03213")
 */
.pf_c03213 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03213 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03213.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03213 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03213 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03213 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03213 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03213 {overflow:visible;}
  }
}
.c_c03213 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03213 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03213:after { /* webkit #35443 */
  content: '';
}
.t_c03213:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03213 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03213 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03213 { /* info for Javascript */
  display:none;
}
.l_c03213 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03213 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03213 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03213:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03213 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03213.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03213.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03213 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03213{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03213;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03213{font-family:ff1_c03213;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03213;src:url('chunks/assets/font_dd989f0d8c2584e7f25ffa7c.woff2')format("woff");}.ff2_c03213{font-family:ff2_c03213;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03213;src:url('chunks/assets/font_04a31e31f9ec59b8d222ba02.woff2')format("woff");}.ff3_c03213{font-family:ff3_c03213;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03213{vertical-align:0.000000px;}
.v1_c03213{vertical-align:1.439424px;}
.lsd_c03213{letter-spacing:-1.197504px;}
.lsa_c03213{letter-spacing:-0.574992px;}
.lsf_c03213{letter-spacing:-0.304128px;}
.ls9_c03213{letter-spacing:-0.280368px;}
.ls11_c03213{letter-spacing:-0.275616px;}
.lse_c03213{letter-spacing:-0.261360px;}
.ls6_c03213{letter-spacing:-0.242352px;}
.ls7_c03213{letter-spacing:-0.237600px;}
.ls4_c03213{letter-spacing:-0.118800px;}
.ls14_c03213{letter-spacing:0.000000px;}
.ls2_c03213{letter-spacing:0.006048px;}
.ls5_c03213{letter-spacing:0.128304px;}
.lsc_c03213{letter-spacing:0.508464px;}
.ls13_c03213{letter-spacing:0.514080px;}
.ls10_c03213{letter-spacing:0.536976px;}
.lsb_c03213{letter-spacing:0.579744px;}
.ls12_c03213{letter-spacing:0.594000px;}
.ls8_c03213{letter-spacing:0.598752px;}
.ls3_c03213{letter-spacing:0.613008px;}
.ls0_c03213{letter-spacing:0.717552px;}
.ls1_c03213{letter-spacing:0.722304px;}
.sc__c03213{text-shadow:none;}
.sc0_c03213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03213{-webkit-text-stroke:0px transparent;}
.sc0_c03213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03213{word-spacing:-15.126048px;}
.ws1_c03213{word-spacing:-12.597552px;}
.wsb_c03213{word-spacing:-12.474000px;}
.ws8_c03213{word-spacing:-12.459744px;}
.wsa_c03213{word-spacing:-12.416976px;}
.ws3_c03213{word-spacing:-11.642400px;}
.wse_c03213{word-spacing:-11.637648px;}
.ws9_c03213{word-spacing:-11.575872px;}
.ws13_c03213{word-spacing:-1.083456px;}
.wsf_c03213{word-spacing:-0.974160px;}
.ws17_c03213{word-spacing:-0.719712px;}
.ws11_c03213{word-spacing:-0.118800px;}
.ws15_c03213{word-spacing:-0.099792px;}
.ws16_c03213{word-spacing:-0.085536px;}
.ws12_c03213{word-spacing:-0.080784px;}
.ws10_c03213{word-spacing:0.000000px;}
.ws14_c03213{word-spacing:0.836352px;}
.wsc_c03213{word-spacing:33.300288px;}
.ws6_c03213{word-spacing:36.742464px;}
.ws2_c03213{word-spacing:37.759392px;}
.ws0_c03213{word-spacing:38.020752px;}
.ws4_c03213{word-spacing:39.218256px;}
.ws5_c03213{word-spacing:39.902544px;}
.ws7_c03213{word-spacing:42.026688px;}
._0_c03213{margin-left:-1.948320px;}
._2_c03213{width:1.482624px;}
._4_c03213{width:3.065040px;}
._5_c03213{width:21.445776px;}
._1_c03213{width:50.252400px;}
._3_c03213{width:51.530688px;}
.fc0_c03213{color:rgb(0,0,0);}
.fs0_c03213{font-size:47.520000px;}
.fs1_c03213{font-size:60.480000px;}
.y0_c03213{bottom:0.000000px;}
.y19_c03213{bottom:146.998362px;}
.y1b_c03213{bottom:186.600234px;}
.y1a_c03213{bottom:196.320450px;}
.y18_c03213{bottom:275.878542px;}
.y17_c03213{bottom:356.878758px;}
.y15_c03213{bottom:406.559730px;}
.y11_c03213{bottom:424.560306px;}
.y16_c03213{bottom:458.759262px;}
.y14_c03213{bottom:491.879514px;}
.y13_c03213{bottom:509.880090px;}
.y10_c03213{bottom:543.000342px;}
.y12_c03213{bottom:559.559874px;}
.yf_c03213{bottom:577.560450px;}
.y1c_c03213{bottom:614.280450px;}
.yb_c03213{bottom:667.558326px;}
.yd_c03213{bottom:707.160234px;}
.yc_c03213{bottom:716.880450px;}
.ya_c03213{bottom:796.438506px;}
.y9_c03213{bottom:877.438722px;}
.y7_c03213{bottom:926.759730px;}
.y3_c03213{bottom:944.760306px;}
.y8_c03213{bottom:979.319226px;}
.y6_c03213{bottom:1012.439478px;}
.y5_c03213{bottom:1030.440054px;}
.y2_c03213{bottom:1063.560306px;}
.y4_c03213{bottom:1079.759874px;}
.y1_c03213{bottom:1097.760450px;}
.ye_c03213{bottom:1134.840450px;}
.h3_c03213{height:32.530781px;}
.h1_c03213{height:41.696016px;}
.h2_c03213{height:41.812031px;}
.h4_c03213{height:54.654737px;}
.h0_c03213{height:1263.000000px;}
.w1_c03213{width:892.500000px;}
.w0_c03213{width:892.830000px;}
.x0_c03213{left:0.000000px;}
.xd_c03213{left:117.000000px;}
.x8_c03213{left:440.999856px;}
.x4_c03213{left:445.680576px;}
.xb_c03213{left:451.080000px;}
.x7_c03213{left:455.399604px;}
.x5_c03213{left:461.880144px;}
.x1_c03213{left:463.320000px;}
.xa_c03213{left:483.480360px;}
.x9_c03213{left:492.119496px;}
.x6_c03213{left:493.200576px;}
.xc_c03213{left:506.880360px;}
.x3_c03213{left:511.919892px;}
.x2_c03213{left:526.679604px;}
@media print{
.v0_c03213{vertical-align:0.000000pt;}
.v1_c03213{vertical-align:1.279488pt;}
.lsd_c03213{letter-spacing:-1.064448pt;}
.lsa_c03213{letter-spacing:-0.511104pt;}
.lsf_c03213{letter-spacing:-0.270336pt;}
.ls9_c03213{letter-spacing:-0.249216pt;}
.ls11_c03213{letter-spacing:-0.244992pt;}
.lse_c03213{letter-spacing:-0.232320pt;}
.ls6_c03213{letter-spacing:-0.215424pt;}
.ls7_c03213{letter-spacing:-0.211200pt;}
.ls4_c03213{letter-spacing:-0.105600pt;}
.ls14_c03213{letter-spacing:0.000000pt;}
.ls2_c03213{letter-spacing:0.005376pt;}
.ls5_c03213{letter-spacing:0.114048pt;}
.lsc_c03213{letter-spacing:0.451968pt;}
.ls13_c03213{letter-spacing:0.456960pt;}
.ls10_c03213{letter-spacing:0.477312pt;}
.lsb_c03213{letter-spacing:0.515328pt;}
.ls12_c03213{letter-spacing:0.528000pt;}
.ls8_c03213{letter-spacing:0.532224pt;}
.ls3_c03213{letter-spacing:0.544896pt;}
.ls0_c03213{letter-spacing:0.637824pt;}
.ls1_c03213{letter-spacing:0.642048pt;}
.wsd_c03213{word-spacing:-13.445376pt;}
.ws1_c03213{word-spacing:-11.197824pt;}
.wsb_c03213{word-spacing:-11.088000pt;}
.ws8_c03213{word-spacing:-11.075328pt;}
.wsa_c03213{word-spacing:-11.037312pt;}
.ws3_c03213{word-spacing:-10.348800pt;}
.wse_c03213{word-spacing:-10.344576pt;}
.ws9_c03213{word-spacing:-10.289664pt;}
.ws13_c03213{word-spacing:-0.963072pt;}
.wsf_c03213{word-spacing:-0.865920pt;}
.ws17_c03213{word-spacing:-0.639744pt;}
.ws11_c03213{word-spacing:-0.105600pt;}
.ws15_c03213{word-spacing:-0.088704pt;}
.ws16_c03213{word-spacing:-0.076032pt;}
.ws12_c03213{word-spacing:-0.071808pt;}
.ws10_c03213{word-spacing:0.000000pt;}
.ws14_c03213{word-spacing:0.743424pt;}
.wsc_c03213{word-spacing:29.600256pt;}
.ws6_c03213{word-spacing:32.659968pt;}
.ws2_c03213{word-spacing:33.563904pt;}
.ws0_c03213{word-spacing:33.796224pt;}
.ws4_c03213{word-spacing:34.860672pt;}
.ws5_c03213{word-spacing:35.468928pt;}
.ws7_c03213{word-spacing:37.357056pt;}
._0_c03213{margin-left:-1.731840pt;}
._2_c03213{width:1.317888pt;}
._4_c03213{width:2.724480pt;}
._5_c03213{width:19.062912pt;}
._1_c03213{width:44.668800pt;}
._3_c03213{width:45.805056pt;}
.fs0_c03213{font-size:42.240000pt;}
.fs1_c03213{font-size:53.760000pt;}
.y0_c03213{bottom:0.000000pt;}
.y19_c03213{bottom:130.665211pt;}
.y1b_c03213{bottom:165.866875pt;}
.y1a_c03213{bottom:174.507067pt;}
.y18_c03213{bottom:245.225371pt;}
.y17_c03213{bottom:317.225563pt;}
.y15_c03213{bottom:361.386427pt;}
.y11_c03213{bottom:377.386939pt;}
.y16_c03213{bottom:407.786011pt;}
.y14_c03213{bottom:437.226235pt;}
.y13_c03213{bottom:453.226747pt;}
.y10_c03213{bottom:482.666971pt;}
.y12_c03213{bottom:497.386555pt;}
.yf_c03213{bottom:513.387067pt;}
.y1c_c03213{bottom:546.027067pt;}
.yb_c03213{bottom:593.385179pt;}
.yd_c03213{bottom:628.586875pt;}
.yc_c03213{bottom:637.227067pt;}
.ya_c03213{bottom:707.945339pt;}
.y9_c03213{bottom:779.945531pt;}
.y7_c03213{bottom:823.786427pt;}
.y3_c03213{bottom:839.786939pt;}
.y8_c03213{bottom:870.505979pt;}
.y6_c03213{bottom:899.946203pt;}
.y5_c03213{bottom:915.946715pt;}
.y2_c03213{bottom:945.386939pt;}
.y4_c03213{bottom:959.786555pt;}
.y1_c03213{bottom:975.787067pt;}
.ye_c03213{bottom:1008.747067pt;}
.h3_c03213{height:28.916250pt;}
.h1_c03213{height:37.063125pt;}
.h2_c03213{height:37.166250pt;}
.h4_c03213{height:48.581988pt;}
.h0_c03213{height:1122.666667pt;}
.w1_c03213{width:793.333333pt;}
.w0_c03213{width:793.626667pt;}
.x0_c03213{left:0.000000pt;}
.xd_c03213{left:104.000000pt;}
.x8_c03213{left:391.999872pt;}
.x4_c03213{left:396.160512pt;}
.xb_c03213{left:400.960000pt;}
.x7_c03213{left:404.799648pt;}
.x5_c03213{left:410.560128pt;}
.x1_c03213{left:411.840000pt;}
.xa_c03213{left:429.760320pt;}
.x9_c03213{left:437.439552pt;}
.x6_c03213{left:438.400512pt;}
.xc_c03213{left:450.560320pt;}
.x3_c03213{left:455.039904pt;}
.x2_c03213{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03214 {
    display:none;
  }
  .loading-indicator_c03214.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03214 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03214 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03214" -> "#page-container .classname_c03214")
 */
.pf_c03214 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03214 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03214.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03214 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03214 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03214 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03214 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03214 {overflow:visible;}
  }
}
.c_c03214 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03214 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03214:after { /* webkit #35443 */
  content: '';
}
.t_c03214:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03214 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03214 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03214 { /* info for Javascript */
  display:none;
}
.l_c03214 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03214 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03214 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03214:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03214 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03214.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03214.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03214 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03214{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03214;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03214{font-family:ff1_c03214;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03214;src:url('chunks/assets/font_99e2dd67c70bcdc2159d2cfa.woff2')format("woff");}.ff2_c03214{font-family:ff2_c03214;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03214;src:url('chunks/assets/font_406b77f0e8258ddd36f22172.woff2')format("woff");}.ff3_c03214{font-family:ff3_c03214;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03214{vertical-align:0.000000px;}
.v1_c03214{vertical-align:1.439424px;}
.v2_c03214{vertical-align:5.759424px;}
.v3_c03214{vertical-align:33.121440px;}
.ls15_c03214{letter-spacing:-0.793584px;}
.ls14_c03214{letter-spacing:-0.774576px;}
.lsa_c03214{letter-spacing:-0.574992px;}
.ls9_c03214{letter-spacing:-0.280368px;}
.ls10_c03214{letter-spacing:-0.275616px;}
.lse_c03214{letter-spacing:-0.261360px;}
.ls6_c03214{letter-spacing:-0.242352px;}
.ls7_c03214{letter-spacing:-0.237600px;}
.ls4_c03214{letter-spacing:-0.118800px;}
.ls13_c03214{letter-spacing:0.000000px;}
.ls1_c03214{letter-spacing:0.006048px;}
.ls16_c03214{letter-spacing:0.066528px;}
.ls5_c03214{letter-spacing:0.128304px;}
.lsd_c03214{letter-spacing:0.242352px;}
.lsc_c03214{letter-spacing:0.508464px;}
.ls12_c03214{letter-spacing:0.514080px;}
.lsf_c03214{letter-spacing:0.536976px;}
.lsb_c03214{letter-spacing:0.579744px;}
.ls11_c03214{letter-spacing:0.594000px;}
.ls8_c03214{letter-spacing:0.598752px;}
.ls2_c03214{letter-spacing:0.613008px;}
.ls3_c03214{letter-spacing:0.717552px;}
.ls0_c03214{letter-spacing:0.722304px;}
.sc__c03214{text-shadow:none;}
.sc0_c03214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03214{-webkit-text-stroke:0px transparent;}
.sc0_c03214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03214{word-spacing:-15.126048px;}
.wsc_c03214{word-spacing:-12.602304px;}
.ws9_c03214{word-spacing:-12.474000px;}
.ws7_c03214{word-spacing:-12.459744px;}
.ws8_c03214{word-spacing:-12.416976px;}
.ws2_c03214{word-spacing:-11.642400px;}
.wse_c03214{word-spacing:-11.105424px;}
.ws15_c03214{word-spacing:-1.083456px;}
.ws19_c03214{word-spacing:-1.078704px;}
.ws11_c03214{word-spacing:-0.974160px;}
.ws18_c03214{word-spacing:-0.719712px;}
.ws1b_c03214{word-spacing:-0.603504px;}
.ws1c_c03214{word-spacing:-0.427680px;}
.ws13_c03214{word-spacing:-0.118800px;}
.ws16_c03214{word-spacing:-0.099792px;}
.ws17_c03214{word-spacing:-0.085536px;}
.ws14_c03214{word-spacing:-0.080784px;}
.ws12_c03214{word-spacing:0.000000px;}
.ws1a_c03214{word-spacing:0.432432px;}
.wsd_c03214{word-spacing:4.951584px;}
.ws10_c03214{word-spacing:30.298752px;}
.wsa_c03214{word-spacing:33.300288px;}
.wsf_c03214{word-spacing:36.143712px;}
.ws5_c03214{word-spacing:36.742464px;}
.ws1_c03214{word-spacing:37.759392px;}
.ws0_c03214{word-spacing:38.020752px;}
.ws3_c03214{word-spacing:39.218256px;}
.ws4_c03214{word-spacing:39.902544px;}
.ws6_c03214{word-spacing:42.026688px;}
._5_c03214{margin-left:-3.003264px;}
._0_c03214{margin-left:-1.948320px;}
._2_c03214{width:1.482624px;}
._4_c03214{width:3.065040px;}
._1_c03214{width:50.252400px;}
._3_c03214{width:51.530688px;}
.fc0_c03214{color:rgb(0,0,0);}
.fs0_c03214{font-size:47.520000px;}
.fs1_c03214{font-size:60.480000px;}
.y0_c03214{bottom:0.000000px;}
.y19_c03214{bottom:146.998362px;}
.y1b_c03214{bottom:186.600234px;}
.y1a_c03214{bottom:196.320450px;}
.y18_c03214{bottom:275.878542px;}
.y17_c03214{bottom:356.878758px;}
.y15_c03214{bottom:406.559730px;}
.y11_c03214{bottom:424.560306px;}
.y16_c03214{bottom:458.759262px;}
.y14_c03214{bottom:491.879514px;}
.y13_c03214{bottom:509.880090px;}
.y10_c03214{bottom:543.000342px;}
.y12_c03214{bottom:559.559874px;}
.yf_c03214{bottom:577.560450px;}
.y1c_c03214{bottom:614.280450px;}
.yb_c03214{bottom:667.558326px;}
.yd_c03214{bottom:707.160234px;}
.yc_c03214{bottom:716.880450px;}
.ya_c03214{bottom:796.438506px;}
.y9_c03214{bottom:877.438722px;}
.y7_c03214{bottom:926.759730px;}
.y3_c03214{bottom:944.760306px;}
.y8_c03214{bottom:979.319226px;}
.y6_c03214{bottom:1012.439478px;}
.y5_c03214{bottom:1030.440054px;}
.y2_c03214{bottom:1063.560306px;}
.y4_c03214{bottom:1079.759874px;}
.y1_c03214{bottom:1097.760450px;}
.ye_c03214{bottom:1134.840450px;}
.h3_c03214{height:32.530781px;}
.h1_c03214{height:41.696016px;}
.h2_c03214{height:41.812031px;}
.h5_c03214{height:47.571455px;}
.h4_c03214{height:54.654737px;}
.h6_c03214{height:74.817456px;}
.h0_c03214{height:1263.000000px;}
.w1_c03214{width:892.500000px;}
.w0_c03214{width:892.830000px;}
.x0_c03214{left:0.000000px;}
.xd_c03214{left:117.000000px;}
.x8_c03214{left:440.999856px;}
.x4_c03214{left:445.680576px;}
.xb_c03214{left:451.080000px;}
.x7_c03214{left:455.399604px;}
.x5_c03214{left:461.880144px;}
.x1_c03214{left:463.320000px;}
.xa_c03214{left:483.480360px;}
.x9_c03214{left:492.119496px;}
.x6_c03214{left:493.200576px;}
.xc_c03214{left:506.880360px;}
.x3_c03214{left:511.919892px;}
.x2_c03214{left:526.679604px;}
@media print{
.v0_c03214{vertical-align:0.000000pt;}
.v1_c03214{vertical-align:1.279488pt;}
.v2_c03214{vertical-align:5.119488pt;}
.v3_c03214{vertical-align:29.441280pt;}
.ls15_c03214{letter-spacing:-0.705408pt;}
.ls14_c03214{letter-spacing:-0.688512pt;}
.lsa_c03214{letter-spacing:-0.511104pt;}
.ls9_c03214{letter-spacing:-0.249216pt;}
.ls10_c03214{letter-spacing:-0.244992pt;}
.lse_c03214{letter-spacing:-0.232320pt;}
.ls6_c03214{letter-spacing:-0.215424pt;}
.ls7_c03214{letter-spacing:-0.211200pt;}
.ls4_c03214{letter-spacing:-0.105600pt;}
.ls13_c03214{letter-spacing:0.000000pt;}
.ls1_c03214{letter-spacing:0.005376pt;}
.ls16_c03214{letter-spacing:0.059136pt;}
.ls5_c03214{letter-spacing:0.114048pt;}
.lsd_c03214{letter-spacing:0.215424pt;}
.lsc_c03214{letter-spacing:0.451968pt;}
.ls12_c03214{letter-spacing:0.456960pt;}
.lsf_c03214{letter-spacing:0.477312pt;}
.lsb_c03214{letter-spacing:0.515328pt;}
.ls11_c03214{letter-spacing:0.528000pt;}
.ls8_c03214{letter-spacing:0.532224pt;}
.ls2_c03214{letter-spacing:0.544896pt;}
.ls3_c03214{letter-spacing:0.637824pt;}
.ls0_c03214{letter-spacing:0.642048pt;}
.wsb_c03214{word-spacing:-13.445376pt;}
.wsc_c03214{word-spacing:-11.202048pt;}
.ws9_c03214{word-spacing:-11.088000pt;}
.ws7_c03214{word-spacing:-11.075328pt;}
.ws8_c03214{word-spacing:-11.037312pt;}
.ws2_c03214{word-spacing:-10.348800pt;}
.wse_c03214{word-spacing:-9.871488pt;}
.ws15_c03214{word-spacing:-0.963072pt;}
.ws19_c03214{word-spacing:-0.958848pt;}
.ws11_c03214{word-spacing:-0.865920pt;}
.ws18_c03214{word-spacing:-0.639744pt;}
.ws1b_c03214{word-spacing:-0.536448pt;}
.ws1c_c03214{word-spacing:-0.380160pt;}
.ws13_c03214{word-spacing:-0.105600pt;}
.ws16_c03214{word-spacing:-0.088704pt;}
.ws17_c03214{word-spacing:-0.076032pt;}
.ws14_c03214{word-spacing:-0.071808pt;}
.ws12_c03214{word-spacing:0.000000pt;}
.ws1a_c03214{word-spacing:0.384384pt;}
.wsd_c03214{word-spacing:4.401408pt;}
.ws10_c03214{word-spacing:26.932224pt;}
.wsa_c03214{word-spacing:29.600256pt;}
.wsf_c03214{word-spacing:32.127744pt;}
.ws5_c03214{word-spacing:32.659968pt;}
.ws1_c03214{word-spacing:33.563904pt;}
.ws0_c03214{word-spacing:33.796224pt;}
.ws3_c03214{word-spacing:34.860672pt;}
.ws4_c03214{word-spacing:35.468928pt;}
.ws6_c03214{word-spacing:37.357056pt;}
._5_c03214{margin-left:-2.669568pt;}
._0_c03214{margin-left:-1.731840pt;}
._2_c03214{width:1.317888pt;}
._4_c03214{width:2.724480pt;}
._1_c03214{width:44.668800pt;}
._3_c03214{width:45.805056pt;}
.fs0_c03214{font-size:42.240000pt;}
.fs1_c03214{font-size:53.760000pt;}
.y0_c03214{bottom:0.000000pt;}
.y19_c03214{bottom:130.665211pt;}
.y1b_c03214{bottom:165.866875pt;}
.y1a_c03214{bottom:174.507067pt;}
.y18_c03214{bottom:245.225371pt;}
.y17_c03214{bottom:317.225563pt;}
.y15_c03214{bottom:361.386427pt;}
.y11_c03214{bottom:377.386939pt;}
.y16_c03214{bottom:407.786011pt;}
.y14_c03214{bottom:437.226235pt;}
.y13_c03214{bottom:453.226747pt;}
.y10_c03214{bottom:482.666971pt;}
.y12_c03214{bottom:497.386555pt;}
.yf_c03214{bottom:513.387067pt;}
.y1c_c03214{bottom:546.027067pt;}
.yb_c03214{bottom:593.385179pt;}
.yd_c03214{bottom:628.586875pt;}
.yc_c03214{bottom:637.227067pt;}
.ya_c03214{bottom:707.945339pt;}
.y9_c03214{bottom:779.945531pt;}
.y7_c03214{bottom:823.786427pt;}
.y3_c03214{bottom:839.786939pt;}
.y8_c03214{bottom:870.505979pt;}
.y6_c03214{bottom:899.946203pt;}
.y5_c03214{bottom:915.946715pt;}
.y2_c03214{bottom:945.386939pt;}
.y4_c03214{bottom:959.786555pt;}
.y1_c03214{bottom:975.787067pt;}
.ye_c03214{bottom:1008.747067pt;}
.h3_c03214{height:28.916250pt;}
.h1_c03214{height:37.063125pt;}
.h2_c03214{height:37.166250pt;}
.h5_c03214{height:42.285738pt;}
.h4_c03214{height:48.581988pt;}
.h6_c03214{height:66.504405pt;}
.h0_c03214{height:1122.666667pt;}
.w1_c03214{width:793.333333pt;}
.w0_c03214{width:793.626667pt;}
.x0_c03214{left:0.000000pt;}
.xd_c03214{left:104.000000pt;}
.x8_c03214{left:391.999872pt;}
.x4_c03214{left:396.160512pt;}
.xb_c03214{left:400.960000pt;}
.x7_c03214{left:404.799648pt;}
.x5_c03214{left:410.560128pt;}
.x1_c03214{left:411.840000pt;}
.xa_c03214{left:429.760320pt;}
.x9_c03214{left:437.439552pt;}
.x6_c03214{left:438.400512pt;}
.xc_c03214{left:450.560320pt;}
.x3_c03214{left:455.039904pt;}
.x2_c03214{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03215 {
    display:none;
  }
  .loading-indicator_c03215.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03215 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03215 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03215" -> "#page-container .classname_c03215")
 */
.pf_c03215 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03215 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03215.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03215 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03215 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03215 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03215 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03215 {overflow:visible;}
  }
}
.c_c03215 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03215 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03215:after { /* webkit #35443 */
  content: '';
}
.t_c03215:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03215 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03215 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03215 { /* info for Javascript */
  display:none;
}
.l_c03215 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03215 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03215 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03215:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03215 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03215.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03215.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03215 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03215{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03215;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03215{font-family:ff1_c03215;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03215;src:url('chunks/assets/font_cbfbbc6a96cf4aea2fd55993.woff2')format("woff");}.ff2_c03215{font-family:ff2_c03215;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03215;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03215{font-family:ff3_c03215;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03215{vertical-align:0.000000px;}
.v1_c03215{vertical-align:1.439424px;}
.lsc_c03215{letter-spacing:-1.197504px;}
.ls9_c03215{letter-spacing:-0.574992px;}
.ls8_c03215{letter-spacing:-0.280368px;}
.lsf_c03215{letter-spacing:-0.275616px;}
.lsd_c03215{letter-spacing:-0.261360px;}
.ls5_c03215{letter-spacing:-0.242352px;}
.ls6_c03215{letter-spacing:-0.237600px;}
.ls3_c03215{letter-spacing:-0.118800px;}
.ls12_c03215{letter-spacing:0.000000px;}
.ls0_c03215{letter-spacing:0.006048px;}
.ls4_c03215{letter-spacing:0.128304px;}
.lsb_c03215{letter-spacing:0.508464px;}
.ls11_c03215{letter-spacing:0.514080px;}
.lse_c03215{letter-spacing:0.536976px;}
.lsa_c03215{letter-spacing:0.579744px;}
.ls10_c03215{letter-spacing:0.594000px;}
.ls7_c03215{letter-spacing:0.598752px;}
.ls1_c03215{letter-spacing:0.613008px;}
.ls2_c03215{letter-spacing:0.717552px;}
.sc__c03215{text-shadow:none;}
.sc0_c03215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03215{-webkit-text-stroke:0px transparent;}
.sc0_c03215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03215{word-spacing:-15.126048px;}
.ws9_c03215{word-spacing:-12.474000px;}
.ws7_c03215{word-spacing:-12.459744px;}
.ws8_c03215{word-spacing:-12.416976px;}
.ws2_c03215{word-spacing:-11.642400px;}
.ws4_c03215{word-spacing:-11.305008px;}
.wsc_c03215{word-spacing:-0.974160px;}
.ws13_c03215{word-spacing:-0.719712px;}
.wse_c03215{word-spacing:-0.118800px;}
.ws11_c03215{word-spacing:-0.099792px;}
.ws12_c03215{word-spacing:-0.085536px;}
.wsf_c03215{word-spacing:-0.080784px;}
.wsd_c03215{word-spacing:0.000000px;}
.ws10_c03215{word-spacing:0.836352px;}
.wsa_c03215{word-spacing:33.300288px;}
.ws5_c03215{word-spacing:36.742464px;}
.ws1_c03215{word-spacing:37.759392px;}
.ws0_c03215{word-spacing:38.020752px;}
.ws3_c03215{word-spacing:39.218256px;}
.ws6_c03215{word-spacing:42.026688px;}
._0_c03215{margin-left:-1.948320px;}
._2_c03215{width:1.482624px;}
._4_c03215{width:3.065040px;}
._1_c03215{width:50.252400px;}
._3_c03215{width:51.530688px;}
.fc0_c03215{color:rgb(0,0,0);}
.fs0_c03215{font-size:47.520000px;}
.fs1_c03215{font-size:60.480000px;}
.y0_c03215{bottom:0.000000px;}
.y19_c03215{bottom:146.998362px;}
.y1b_c03215{bottom:186.600234px;}
.y1a_c03215{bottom:196.320450px;}
.y18_c03215{bottom:275.878542px;}
.y17_c03215{bottom:356.878758px;}
.y15_c03215{bottom:406.559730px;}
.y11_c03215{bottom:424.560306px;}
.y16_c03215{bottom:458.759262px;}
.y14_c03215{bottom:491.879514px;}
.y13_c03215{bottom:509.880090px;}
.y10_c03215{bottom:543.000342px;}
.y12_c03215{bottom:559.559874px;}
.yf_c03215{bottom:577.560450px;}
.y1c_c03215{bottom:614.280450px;}
.yb_c03215{bottom:667.558326px;}
.yd_c03215{bottom:707.160234px;}
.yc_c03215{bottom:716.880450px;}
.ya_c03215{bottom:796.438506px;}
.y9_c03215{bottom:877.438722px;}
.y7_c03215{bottom:926.759730px;}
.y3_c03215{bottom:944.760306px;}
.y8_c03215{bottom:979.319226px;}
.y6_c03215{bottom:1012.439478px;}
.y5_c03215{bottom:1030.440054px;}
.y2_c03215{bottom:1063.560306px;}
.y4_c03215{bottom:1079.759874px;}
.y1_c03215{bottom:1097.760450px;}
.ye_c03215{bottom:1134.840450px;}
.h3_c03215{height:32.530781px;}
.h1_c03215{height:41.696016px;}
.h2_c03215{height:41.812031px;}
.h4_c03215{height:54.654737px;}
.h0_c03215{height:1263.000000px;}
.w1_c03215{width:892.500000px;}
.w0_c03215{width:892.830000px;}
.x0_c03215{left:0.000000px;}
.xd_c03215{left:117.000000px;}
.x8_c03215{left:441.001044px;}
.x4_c03215{left:445.680576px;}
.xb_c03215{left:451.080000px;}
.x7_c03215{left:455.400792px;}
.x5_c03215{left:461.880144px;}
.x1_c03215{left:463.320000px;}
.xa_c03215{left:483.481548px;}
.x9_c03215{left:492.120684px;}
.x6_c03215{left:493.200576px;}
.xc_c03215{left:506.880360px;}
.x3_c03215{left:511.919892px;}
.x2_c03215{left:526.679604px;}
@media print{
.v0_c03215{vertical-align:0.000000pt;}
.v1_c03215{vertical-align:1.279488pt;}
.lsc_c03215{letter-spacing:-1.064448pt;}
.ls9_c03215{letter-spacing:-0.511104pt;}
.ls8_c03215{letter-spacing:-0.249216pt;}
.lsf_c03215{letter-spacing:-0.244992pt;}
.lsd_c03215{letter-spacing:-0.232320pt;}
.ls5_c03215{letter-spacing:-0.215424pt;}
.ls6_c03215{letter-spacing:-0.211200pt;}
.ls3_c03215{letter-spacing:-0.105600pt;}
.ls12_c03215{letter-spacing:0.000000pt;}
.ls0_c03215{letter-spacing:0.005376pt;}
.ls4_c03215{letter-spacing:0.114048pt;}
.lsb_c03215{letter-spacing:0.451968pt;}
.ls11_c03215{letter-spacing:0.456960pt;}
.lse_c03215{letter-spacing:0.477312pt;}
.lsa_c03215{letter-spacing:0.515328pt;}
.ls10_c03215{letter-spacing:0.528000pt;}
.ls7_c03215{letter-spacing:0.532224pt;}
.ls1_c03215{letter-spacing:0.544896pt;}
.ls2_c03215{letter-spacing:0.637824pt;}
.wsb_c03215{word-spacing:-13.445376pt;}
.ws9_c03215{word-spacing:-11.088000pt;}
.ws7_c03215{word-spacing:-11.075328pt;}
.ws8_c03215{word-spacing:-11.037312pt;}
.ws2_c03215{word-spacing:-10.348800pt;}
.ws4_c03215{word-spacing:-10.048896pt;}
.wsc_c03215{word-spacing:-0.865920pt;}
.ws13_c03215{word-spacing:-0.639744pt;}
.wse_c03215{word-spacing:-0.105600pt;}
.ws11_c03215{word-spacing:-0.088704pt;}
.ws12_c03215{word-spacing:-0.076032pt;}
.wsf_c03215{word-spacing:-0.071808pt;}
.wsd_c03215{word-spacing:0.000000pt;}
.ws10_c03215{word-spacing:0.743424pt;}
.wsa_c03215{word-spacing:29.600256pt;}
.ws5_c03215{word-spacing:32.659968pt;}
.ws1_c03215{word-spacing:33.563904pt;}
.ws0_c03215{word-spacing:33.796224pt;}
.ws3_c03215{word-spacing:34.860672pt;}
.ws6_c03215{word-spacing:37.357056pt;}
._0_c03215{margin-left:-1.731840pt;}
._2_c03215{width:1.317888pt;}
._4_c03215{width:2.724480pt;}
._1_c03215{width:44.668800pt;}
._3_c03215{width:45.805056pt;}
.fs0_c03215{font-size:42.240000pt;}
.fs1_c03215{font-size:53.760000pt;}
.y0_c03215{bottom:0.000000pt;}
.y19_c03215{bottom:130.665211pt;}
.y1b_c03215{bottom:165.866875pt;}
.y1a_c03215{bottom:174.507067pt;}
.y18_c03215{bottom:245.225371pt;}
.y17_c03215{bottom:317.225563pt;}
.y15_c03215{bottom:361.386427pt;}
.y11_c03215{bottom:377.386939pt;}
.y16_c03215{bottom:407.786011pt;}
.y14_c03215{bottom:437.226235pt;}
.y13_c03215{bottom:453.226747pt;}
.y10_c03215{bottom:482.666971pt;}
.y12_c03215{bottom:497.386555pt;}
.yf_c03215{bottom:513.387067pt;}
.y1c_c03215{bottom:546.027067pt;}
.yb_c03215{bottom:593.385179pt;}
.yd_c03215{bottom:628.586875pt;}
.yc_c03215{bottom:637.227067pt;}
.ya_c03215{bottom:707.945339pt;}
.y9_c03215{bottom:779.945531pt;}
.y7_c03215{bottom:823.786427pt;}
.y3_c03215{bottom:839.786939pt;}
.y8_c03215{bottom:870.505979pt;}
.y6_c03215{bottom:899.946203pt;}
.y5_c03215{bottom:915.946715pt;}
.y2_c03215{bottom:945.386939pt;}
.y4_c03215{bottom:959.786555pt;}
.y1_c03215{bottom:975.787067pt;}
.ye_c03215{bottom:1008.747067pt;}
.h3_c03215{height:28.916250pt;}
.h1_c03215{height:37.063125pt;}
.h2_c03215{height:37.166250pt;}
.h4_c03215{height:48.581988pt;}
.h0_c03215{height:1122.666667pt;}
.w1_c03215{width:793.333333pt;}
.w0_c03215{width:793.626667pt;}
.x0_c03215{left:0.000000pt;}
.xd_c03215{left:104.000000pt;}
.x8_c03215{left:392.000928pt;}
.x4_c03215{left:396.160512pt;}
.xb_c03215{left:400.960000pt;}
.x7_c03215{left:404.800704pt;}
.x5_c03215{left:410.560128pt;}
.x1_c03215{left:411.840000pt;}
.xa_c03215{left:429.761376pt;}
.x9_c03215{left:437.440608pt;}
.x6_c03215{left:438.400512pt;}
.xc_c03215{left:450.560320pt;}
.x3_c03215{left:455.039904pt;}
.x2_c03215{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03216 {
    display:none;
  }
  .loading-indicator_c03216.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03216 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03216 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03216" -> "#page-container .classname_c03216")
 */
.pf_c03216 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03216 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03216.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03216 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03216 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03216 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03216 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03216 {overflow:visible;}
  }
}
.c_c03216 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03216 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03216:after { /* webkit #35443 */
  content: '';
}
.t_c03216:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03216 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03216 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03216 { /* info for Javascript */
  display:none;
}
.l_c03216 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03216 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03216 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03216:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03216 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03216.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03216.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03216 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03216{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03216;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03216{font-family:ff1_c03216;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03216;src:url('chunks/assets/font_5b9a6fa5be499222fe4b4696.woff2')format("woff");}.ff2_c03216{font-family:ff2_c03216;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03216;src:url('chunks/assets/font_851f331caa7c3b3e133b1ed2.woff2')format("woff");}.ff3_c03216{font-family:ff3_c03216;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03216{vertical-align:0.000000px;}
.v1_c03216{vertical-align:1.439424px;}
.v2_c03216{vertical-align:33.121440px;}
.ls18_c03216{letter-spacing:-1.245024px;}
.lsd_c03216{letter-spacing:-1.197504px;}
.ls15_c03216{letter-spacing:-0.793584px;}
.lsa_c03216{letter-spacing:-0.574992px;}
.ls19_c03216{letter-spacing:-0.365904px;}
.ls14_c03216{letter-spacing:-0.294624px;}
.ls9_c03216{letter-spacing:-0.280368px;}
.ls10_c03216{letter-spacing:-0.275616px;}
.lse_c03216{letter-spacing:-0.261360px;}
.ls6_c03216{letter-spacing:-0.242352px;}
.ls7_c03216{letter-spacing:-0.237600px;}
.ls4_c03216{letter-spacing:-0.118800px;}
.ls17_c03216{letter-spacing:-0.047520px;}
.ls13_c03216{letter-spacing:0.000000px;}
.ls0_c03216{letter-spacing:0.006048px;}
.ls5_c03216{letter-spacing:0.128304px;}
.lsc_c03216{letter-spacing:0.508464px;}
.ls12_c03216{letter-spacing:0.514080px;}
.lsf_c03216{letter-spacing:0.536976px;}
.lsb_c03216{letter-spacing:0.579744px;}
.ls11_c03216{letter-spacing:0.594000px;}
.ls8_c03216{letter-spacing:0.598752px;}
.ls2_c03216{letter-spacing:0.613008px;}
.ls1_c03216{letter-spacing:0.693792px;}
.ls3_c03216{letter-spacing:0.717552px;}
.ls16_c03216{letter-spacing:0.722304px;}
.sc__c03216{text-shadow:none;}
.sc0_c03216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03216{-webkit-text-stroke:0px transparent;}
.sc0_c03216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03216{word-spacing:-15.126048px;}
.ws9_c03216{word-spacing:-12.474000px;}
.ws7_c03216{word-spacing:-12.459744px;}
.ws8_c03216{word-spacing:-12.416976px;}
.wsc_c03216{word-spacing:-12.388464px;}
.ws2_c03216{word-spacing:-11.642400px;}
.ws4_c03216{word-spacing:-11.305008px;}
.ws1b_c03216{word-spacing:-1.054944px;}
.ws12_c03216{word-spacing:-0.974160px;}
.ws19_c03216{word-spacing:-0.719712px;}
.ws1d_c03216{word-spacing:-0.313632px;}
.ws14_c03216{word-spacing:-0.118800px;}
.ws17_c03216{word-spacing:-0.099792px;}
.ws18_c03216{word-spacing:-0.085536px;}
.ws15_c03216{word-spacing:-0.080784px;}
.ws1a_c03216{word-spacing:-0.066528px;}
.ws13_c03216{word-spacing:0.000000px;}
.ws1e_c03216{word-spacing:0.004752px;}
.ws1c_c03216{word-spacing:0.432432px;}
.ws16_c03216{word-spacing:0.836352px;}
.ws10_c03216{word-spacing:30.298752px;}
.wsa_c03216{word-spacing:33.300288px;}
.wse_c03216{word-spacing:36.143712px;}
.ws5_c03216{word-spacing:36.742464px;}
.ws1_c03216{word-spacing:37.759392px;}
.ws0_c03216{word-spacing:38.020752px;}
.ws3_c03216{word-spacing:39.218256px;}
.wsd_c03216{word-spacing:39.902544px;}
.ws6_c03216{word-spacing:42.026688px;}
.ws11_c03216{word-spacing:53.612064px;}
.wsf_c03216{word-spacing:59.756400px;}
._0_c03216{margin-left:-1.948320px;}
._2_c03216{width:1.482624px;}
._4_c03216{width:3.065040px;}
._1_c03216{width:50.252400px;}
._3_c03216{width:51.530688px;}
._9_c03216{width:66.485232px;}
._8_c03216{width:68.637888px;}
._7_c03216{width:75.737376px;}
._6_c03216{width:79.011504px;}
._5_c03216{width:80.337312px;}
.fc0_c03216{color:rgb(0,0,0);}
.fs0_c03216{font-size:47.520000px;}
.fs1_c03216{font-size:60.480000px;}
.y0_c03216{bottom:0.000000px;}
.y1a_c03216{bottom:146.998362px;}
.y1d_c03216{bottom:179.760918px;}
.y1c_c03216{bottom:186.600234px;}
.y1b_c03216{bottom:196.320450px;}
.y19_c03216{bottom:260.758866px;}
.y18_c03216{bottom:275.878542px;}
.y17_c03216{bottom:356.878758px;}
.y15_c03216{bottom:406.559730px;}
.y11_c03216{bottom:424.560306px;}
.y16_c03216{bottom:458.759262px;}
.y14_c03216{bottom:491.879514px;}
.y13_c03216{bottom:509.880090px;}
.y10_c03216{bottom:543.000342px;}
.y12_c03216{bottom:559.559874px;}
.yf_c03216{bottom:577.560450px;}
.y1e_c03216{bottom:614.280450px;}
.yb_c03216{bottom:667.558326px;}
.yd_c03216{bottom:707.160234px;}
.yc_c03216{bottom:716.880450px;}
.ya_c03216{bottom:796.438506px;}
.y9_c03216{bottom:877.438722px;}
.y7_c03216{bottom:926.759730px;}
.y3_c03216{bottom:944.760306px;}
.y8_c03216{bottom:979.319226px;}
.y6_c03216{bottom:1012.439478px;}
.y5_c03216{bottom:1030.440054px;}
.y2_c03216{bottom:1063.560306px;}
.y4_c03216{bottom:1079.759874px;}
.y1_c03216{bottom:1097.760450px;}
.ye_c03216{bottom:1134.840450px;}
.h3_c03216{height:32.530781px;}
.h1_c03216{height:41.696016px;}
.h2_c03216{height:41.812031px;}
.h4_c03216{height:54.654737px;}
.h5_c03216{height:74.817456px;}
.h0_c03216{height:1263.000000px;}
.w1_c03216{width:892.500000px;}
.w0_c03216{width:892.830000px;}
.x0_c03216{left:0.000000px;}
.xd_c03216{left:117.000000px;}
.x8_c03216{left:441.001044px;}
.x4_c03216{left:445.680576px;}
.xb_c03216{left:451.080000px;}
.x7_c03216{left:455.400792px;}
.x5_c03216{left:461.880144px;}
.x1_c03216{left:463.320000px;}
.xa_c03216{left:483.481548px;}
.x9_c03216{left:492.120684px;}
.x6_c03216{left:493.200576px;}
.xc_c03216{left:506.880360px;}
.x3_c03216{left:511.919892px;}
.x2_c03216{left:526.679604px;}
.xe_c03216{left:569.880036px;}
@media print{
.v0_c03216{vertical-align:0.000000pt;}
.v1_c03216{vertical-align:1.279488pt;}
.v2_c03216{vertical-align:29.441280pt;}
.ls18_c03216{letter-spacing:-1.106688pt;}
.lsd_c03216{letter-spacing:-1.064448pt;}
.ls15_c03216{letter-spacing:-0.705408pt;}
.lsa_c03216{letter-spacing:-0.511104pt;}
.ls19_c03216{letter-spacing:-0.325248pt;}
.ls14_c03216{letter-spacing:-0.261888pt;}
.ls9_c03216{letter-spacing:-0.249216pt;}
.ls10_c03216{letter-spacing:-0.244992pt;}
.lse_c03216{letter-spacing:-0.232320pt;}
.ls6_c03216{letter-spacing:-0.215424pt;}
.ls7_c03216{letter-spacing:-0.211200pt;}
.ls4_c03216{letter-spacing:-0.105600pt;}
.ls17_c03216{letter-spacing:-0.042240pt;}
.ls13_c03216{letter-spacing:0.000000pt;}
.ls0_c03216{letter-spacing:0.005376pt;}
.ls5_c03216{letter-spacing:0.114048pt;}
.lsc_c03216{letter-spacing:0.451968pt;}
.ls12_c03216{letter-spacing:0.456960pt;}
.lsf_c03216{letter-spacing:0.477312pt;}
.lsb_c03216{letter-spacing:0.515328pt;}
.ls11_c03216{letter-spacing:0.528000pt;}
.ls8_c03216{letter-spacing:0.532224pt;}
.ls2_c03216{letter-spacing:0.544896pt;}
.ls1_c03216{letter-spacing:0.616704pt;}
.ls3_c03216{letter-spacing:0.637824pt;}
.ls16_c03216{letter-spacing:0.642048pt;}
.wsb_c03216{word-spacing:-13.445376pt;}
.ws9_c03216{word-spacing:-11.088000pt;}
.ws7_c03216{word-spacing:-11.075328pt;}
.ws8_c03216{word-spacing:-11.037312pt;}
.wsc_c03216{word-spacing:-11.011968pt;}
.ws2_c03216{word-spacing:-10.348800pt;}
.ws4_c03216{word-spacing:-10.048896pt;}
.ws1b_c03216{word-spacing:-0.937728pt;}
.ws12_c03216{word-spacing:-0.865920pt;}
.ws19_c03216{word-spacing:-0.639744pt;}
.ws1d_c03216{word-spacing:-0.278784pt;}
.ws14_c03216{word-spacing:-0.105600pt;}
.ws17_c03216{word-spacing:-0.088704pt;}
.ws18_c03216{word-spacing:-0.076032pt;}
.ws15_c03216{word-spacing:-0.071808pt;}
.ws1a_c03216{word-spacing:-0.059136pt;}
.ws13_c03216{word-spacing:0.000000pt;}
.ws1e_c03216{word-spacing:0.004224pt;}
.ws1c_c03216{word-spacing:0.384384pt;}
.ws16_c03216{word-spacing:0.743424pt;}
.ws10_c03216{word-spacing:26.932224pt;}
.wsa_c03216{word-spacing:29.600256pt;}
.wse_c03216{word-spacing:32.127744pt;}
.ws5_c03216{word-spacing:32.659968pt;}
.ws1_c03216{word-spacing:33.563904pt;}
.ws0_c03216{word-spacing:33.796224pt;}
.ws3_c03216{word-spacing:34.860672pt;}
.wsd_c03216{word-spacing:35.468928pt;}
.ws6_c03216{word-spacing:37.357056pt;}
.ws11_c03216{word-spacing:47.655168pt;}
.wsf_c03216{word-spacing:53.116800pt;}
._0_c03216{margin-left:-1.731840pt;}
._2_c03216{width:1.317888pt;}
._4_c03216{width:2.724480pt;}
._1_c03216{width:44.668800pt;}
._3_c03216{width:45.805056pt;}
._9_c03216{width:59.097984pt;}
._8_c03216{width:61.011456pt;}
._7_c03216{width:67.322112pt;}
._6_c03216{width:70.232448pt;}
._5_c03216{width:71.410944pt;}
.fs0_c03216{font-size:42.240000pt;}
.fs1_c03216{font-size:53.760000pt;}
.y0_c03216{bottom:0.000000pt;}
.y1a_c03216{bottom:130.665211pt;}
.y1d_c03216{bottom:159.787483pt;}
.y1c_c03216{bottom:165.866875pt;}
.y1b_c03216{bottom:174.507067pt;}
.y19_c03216{bottom:231.785659pt;}
.y18_c03216{bottom:245.225371pt;}
.y17_c03216{bottom:317.225563pt;}
.y15_c03216{bottom:361.386427pt;}
.y11_c03216{bottom:377.386939pt;}
.y16_c03216{bottom:407.786011pt;}
.y14_c03216{bottom:437.226235pt;}
.y13_c03216{bottom:453.226747pt;}
.y10_c03216{bottom:482.666971pt;}
.y12_c03216{bottom:497.386555pt;}
.yf_c03216{bottom:513.387067pt;}
.y1e_c03216{bottom:546.027067pt;}
.yb_c03216{bottom:593.385179pt;}
.yd_c03216{bottom:628.586875pt;}
.yc_c03216{bottom:637.227067pt;}
.ya_c03216{bottom:707.945339pt;}
.y9_c03216{bottom:779.945531pt;}
.y7_c03216{bottom:823.786427pt;}
.y3_c03216{bottom:839.786939pt;}
.y8_c03216{bottom:870.505979pt;}
.y6_c03216{bottom:899.946203pt;}
.y5_c03216{bottom:915.946715pt;}
.y2_c03216{bottom:945.386939pt;}
.y4_c03216{bottom:959.786555pt;}
.y1_c03216{bottom:975.787067pt;}
.ye_c03216{bottom:1008.747067pt;}
.h3_c03216{height:28.916250pt;}
.h1_c03216{height:37.063125pt;}
.h2_c03216{height:37.166250pt;}
.h4_c03216{height:48.581988pt;}
.h5_c03216{height:66.504405pt;}
.h0_c03216{height:1122.666667pt;}
.w1_c03216{width:793.333333pt;}
.w0_c03216{width:793.626667pt;}
.x0_c03216{left:0.000000pt;}
.xd_c03216{left:104.000000pt;}
.x8_c03216{left:392.000928pt;}
.x4_c03216{left:396.160512pt;}
.xb_c03216{left:400.960000pt;}
.x7_c03216{left:404.800704pt;}
.x5_c03216{left:410.560128pt;}
.x1_c03216{left:411.840000pt;}
.xa_c03216{left:429.761376pt;}
.x9_c03216{left:437.440608pt;}
.x6_c03216{left:438.400512pt;}
.xc_c03216{left:450.560320pt;}
.x3_c03216{left:455.039904pt;}
.x2_c03216{left:468.159648pt;}
.xe_c03216{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03217 {
    display:none;
  }
  .loading-indicator_c03217.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03217 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03217 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03217" -> "#page-container .classname_c03217")
 */
.pf_c03217 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03217 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03217.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03217 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03217 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03217 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03217 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03217 {overflow:visible;}
  }
}
.c_c03217 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03217 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03217:after { /* webkit #35443 */
  content: '';
}
.t_c03217:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03217 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03217 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03217 { /* info for Javascript */
  display:none;
}
.l_c03217 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03217 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03217 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03217:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03217 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03217.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03217.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03217 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03217{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03217;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03217{font-family:ff1_c03217;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03217;src:url('chunks/assets/font_7e18febaea182714af8aefca.woff2')format("woff");}.ff2_c03217{font-family:ff2_c03217;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03217;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03217{font-family:ff3_c03217;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03217{vertical-align:0.000000px;}
.v1_c03217{vertical-align:1.439424px;}
.lsc_c03217{letter-spacing:-1.197504px;}
.ls8_c03217{letter-spacing:-0.769824px;}
.ls10_c03217{letter-spacing:-0.736560px;}
.ls6_c03217{letter-spacing:-0.613008px;}
.ls9_c03217{letter-spacing:-0.574992px;}
.lsd_c03217{letter-spacing:-0.304128px;}
.ls11_c03217{letter-spacing:-0.270864px;}
.lse_c03217{letter-spacing:-0.261360px;}
.ls5_c03217{letter-spacing:-0.242352px;}
.ls3_c03217{letter-spacing:-0.118800px;}
.ls14_c03217{letter-spacing:0.000000px;}
.ls1_c03217{letter-spacing:0.006048px;}
.ls4_c03217{letter-spacing:0.128304px;}
.lsb_c03217{letter-spacing:0.508464px;}
.ls13_c03217{letter-spacing:0.514080px;}
.lsf_c03217{letter-spacing:0.536976px;}
.lsa_c03217{letter-spacing:0.579744px;}
.ls12_c03217{letter-spacing:0.594000px;}
.ls7_c03217{letter-spacing:0.598752px;}
.ls2_c03217{letter-spacing:0.613008px;}
.ls0_c03217{letter-spacing:0.717552px;}
.sc__c03217{text-shadow:none;}
.sc0_c03217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03217{-webkit-text-stroke:0px transparent;}
.sc0_c03217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03217{word-spacing:-15.126048px;}
.wsb_c03217{word-spacing:-12.474000px;}
.ws6_c03217{word-spacing:-12.459744px;}
.ws2_c03217{word-spacing:-11.266992px;}
.ws4_c03217{word-spacing:-11.110176px;}
.ws11_c03217{word-spacing:-1.078704px;}
.wse_c03217{word-spacing:-0.974160px;}
.ws17_c03217{word-spacing:-0.719712px;}
.ws10_c03217{word-spacing:-0.118800px;}
.ws14_c03217{word-spacing:-0.099792px;}
.ws15_c03217{word-spacing:-0.090288px;}
.ws16_c03217{word-spacing:-0.085536px;}
.ws13_c03217{word-spacing:-0.057024px;}
.wsf_c03217{word-spacing:0.000000px;}
.ws12_c03217{word-spacing:0.836352px;}
.wsa_c03217{word-spacing:6.629040px;}
.wsc_c03217{word-spacing:33.300288px;}
.ws9_c03217{word-spacing:34.836912px;}
.ws8_c03217{word-spacing:36.143712px;}
.ws1_c03217{word-spacing:37.759392px;}
.ws0_c03217{word-spacing:38.020752px;}
.ws3_c03217{word-spacing:39.218256px;}
.ws5_c03217{word-spacing:39.902544px;}
.ws7_c03217{word-spacing:42.026688px;}
._0_c03217{margin-left:-1.948320px;}
._2_c03217{width:1.482624px;}
._5_c03217{width:2.770416px;}
._4_c03217{width:4.561920px;}
._7_c03217{width:19.982160px;}
._8_c03217{width:23.451120px;}
._6_c03217{width:24.691392px;}
._1_c03217{width:50.252400px;}
._3_c03217{width:51.530688px;}
.fc0_c03217{color:rgb(0,0,0);}
.fs0_c03217{font-size:47.520000px;}
.fs1_c03217{font-size:60.480000px;}
.y0_c03217{bottom:0.000000px;}
.y1b_c03217{bottom:131.878686px;}
.y1a_c03217{bottom:146.998362px;}
.y1d_c03217{bottom:186.600234px;}
.y1c_c03217{bottom:196.320450px;}
.y19_c03217{bottom:275.878542px;}
.y18_c03217{bottom:356.878758px;}
.y16_c03217{bottom:406.559730px;}
.y12_c03217{bottom:424.560306px;}
.y17_c03217{bottom:458.759262px;}
.y15_c03217{bottom:491.879514px;}
.y14_c03217{bottom:509.880090px;}
.y11_c03217{bottom:543.000342px;}
.y13_c03217{bottom:559.559874px;}
.y10_c03217{bottom:577.560450px;}
.y1e_c03217{bottom:614.280450px;}
.yc_c03217{bottom:652.438650px;}
.yb_c03217{bottom:667.558326px;}
.ye_c03217{bottom:707.160234px;}
.yd_c03217{bottom:716.880450px;}
.ya_c03217{bottom:796.438506px;}
.y9_c03217{bottom:877.438722px;}
.y7_c03217{bottom:926.759730px;}
.y3_c03217{bottom:944.760306px;}
.y8_c03217{bottom:979.319226px;}
.y6_c03217{bottom:1012.439478px;}
.y5_c03217{bottom:1030.440054px;}
.y2_c03217{bottom:1063.560306px;}
.y4_c03217{bottom:1079.759874px;}
.y1_c03217{bottom:1097.760450px;}
.yf_c03217{bottom:1134.840450px;}
.h3_c03217{height:32.530781px;}
.h1_c03217{height:41.696016px;}
.h2_c03217{height:41.812031px;}
.h4_c03217{height:54.654737px;}
.h0_c03217{height:1263.000000px;}
.w1_c03217{width:892.500000px;}
.w0_c03217{width:892.830000px;}
.x0_c03217{left:0.000000px;}
.xe_c03217{left:117.000000px;}
.x8_c03217{left:440.999856px;}
.x4_c03217{left:445.680576px;}
.xc_c03217{left:451.080000px;}
.x7_c03217{left:455.399604px;}
.x5_c03217{left:461.880144px;}
.x1_c03217{left:463.320000px;}
.xa_c03217{left:483.480360px;}
.x9_c03217{left:492.119496px;}
.x6_c03217{left:493.200576px;}
.xd_c03217{left:506.880360px;}
.x3_c03217{left:511.919892px;}
.x2_c03217{left:526.679604px;}
.xb_c03217{left:569.880036px;}
@media print{
.v0_c03217{vertical-align:0.000000pt;}
.v1_c03217{vertical-align:1.279488pt;}
.lsc_c03217{letter-spacing:-1.064448pt;}
.ls8_c03217{letter-spacing:-0.684288pt;}
.ls10_c03217{letter-spacing:-0.654720pt;}
.ls6_c03217{letter-spacing:-0.544896pt;}
.ls9_c03217{letter-spacing:-0.511104pt;}
.lsd_c03217{letter-spacing:-0.270336pt;}
.ls11_c03217{letter-spacing:-0.240768pt;}
.lse_c03217{letter-spacing:-0.232320pt;}
.ls5_c03217{letter-spacing:-0.215424pt;}
.ls3_c03217{letter-spacing:-0.105600pt;}
.ls14_c03217{letter-spacing:0.000000pt;}
.ls1_c03217{letter-spacing:0.005376pt;}
.ls4_c03217{letter-spacing:0.114048pt;}
.lsb_c03217{letter-spacing:0.451968pt;}
.ls13_c03217{letter-spacing:0.456960pt;}
.lsf_c03217{letter-spacing:0.477312pt;}
.lsa_c03217{letter-spacing:0.515328pt;}
.ls12_c03217{letter-spacing:0.528000pt;}
.ls7_c03217{letter-spacing:0.532224pt;}
.ls2_c03217{letter-spacing:0.544896pt;}
.ls0_c03217{letter-spacing:0.637824pt;}
.wsd_c03217{word-spacing:-13.445376pt;}
.wsb_c03217{word-spacing:-11.088000pt;}
.ws6_c03217{word-spacing:-11.075328pt;}
.ws2_c03217{word-spacing:-10.015104pt;}
.ws4_c03217{word-spacing:-9.875712pt;}
.ws11_c03217{word-spacing:-0.958848pt;}
.wse_c03217{word-spacing:-0.865920pt;}
.ws17_c03217{word-spacing:-0.639744pt;}
.ws10_c03217{word-spacing:-0.105600pt;}
.ws14_c03217{word-spacing:-0.088704pt;}
.ws15_c03217{word-spacing:-0.080256pt;}
.ws16_c03217{word-spacing:-0.076032pt;}
.ws13_c03217{word-spacing:-0.050688pt;}
.wsf_c03217{word-spacing:0.000000pt;}
.ws12_c03217{word-spacing:0.743424pt;}
.wsa_c03217{word-spacing:5.892480pt;}
.wsc_c03217{word-spacing:29.600256pt;}
.ws9_c03217{word-spacing:30.966144pt;}
.ws8_c03217{word-spacing:32.127744pt;}
.ws1_c03217{word-spacing:33.563904pt;}
.ws0_c03217{word-spacing:33.796224pt;}
.ws3_c03217{word-spacing:34.860672pt;}
.ws5_c03217{word-spacing:35.468928pt;}
.ws7_c03217{word-spacing:37.357056pt;}
._0_c03217{margin-left:-1.731840pt;}
._2_c03217{width:1.317888pt;}
._5_c03217{width:2.462592pt;}
._4_c03217{width:4.055040pt;}
._7_c03217{width:17.761920pt;}
._8_c03217{width:20.845440pt;}
._6_c03217{width:21.947904pt;}
._1_c03217{width:44.668800pt;}
._3_c03217{width:45.805056pt;}
.fs0_c03217{font-size:42.240000pt;}
.fs1_c03217{font-size:53.760000pt;}
.y0_c03217{bottom:0.000000pt;}
.y1b_c03217{bottom:117.225499pt;}
.y1a_c03217{bottom:130.665211pt;}
.y1d_c03217{bottom:165.866875pt;}
.y1c_c03217{bottom:174.507067pt;}
.y19_c03217{bottom:245.225371pt;}
.y18_c03217{bottom:317.225563pt;}
.y16_c03217{bottom:361.386427pt;}
.y12_c03217{bottom:377.386939pt;}
.y17_c03217{bottom:407.786011pt;}
.y15_c03217{bottom:437.226235pt;}
.y14_c03217{bottom:453.226747pt;}
.y11_c03217{bottom:482.666971pt;}
.y13_c03217{bottom:497.386555pt;}
.y10_c03217{bottom:513.387067pt;}
.y1e_c03217{bottom:546.027067pt;}
.yc_c03217{bottom:579.945467pt;}
.yb_c03217{bottom:593.385179pt;}
.ye_c03217{bottom:628.586875pt;}
.yd_c03217{bottom:637.227067pt;}
.ya_c03217{bottom:707.945339pt;}
.y9_c03217{bottom:779.945531pt;}
.y7_c03217{bottom:823.786427pt;}
.y3_c03217{bottom:839.786939pt;}
.y8_c03217{bottom:870.505979pt;}
.y6_c03217{bottom:899.946203pt;}
.y5_c03217{bottom:915.946715pt;}
.y2_c03217{bottom:945.386939pt;}
.y4_c03217{bottom:959.786555pt;}
.y1_c03217{bottom:975.787067pt;}
.yf_c03217{bottom:1008.747067pt;}
.h3_c03217{height:28.916250pt;}
.h1_c03217{height:37.063125pt;}
.h2_c03217{height:37.166250pt;}
.h4_c03217{height:48.581988pt;}
.h0_c03217{height:1122.666667pt;}
.w1_c03217{width:793.333333pt;}
.w0_c03217{width:793.626667pt;}
.x0_c03217{left:0.000000pt;}
.xe_c03217{left:104.000000pt;}
.x8_c03217{left:391.999872pt;}
.x4_c03217{left:396.160512pt;}
.xc_c03217{left:400.960000pt;}
.x7_c03217{left:404.799648pt;}
.x5_c03217{left:410.560128pt;}
.x1_c03217{left:411.840000pt;}
.xa_c03217{left:429.760320pt;}
.x9_c03217{left:437.439552pt;}
.x6_c03217{left:438.400512pt;}
.xd_c03217{left:450.560320pt;}
.x3_c03217{left:455.039904pt;}
.x2_c03217{left:468.159648pt;}
.xb_c03217{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03218 {
    display:none;
  }
  .loading-indicator_c03218.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03218 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03218 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03218" -> "#page-container .classname_c03218")
 */
.pf_c03218 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03218 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03218.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03218 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03218 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03218 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03218 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03218 {overflow:visible;}
  }
}
.c_c03218 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03218 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03218:after { /* webkit #35443 */
  content: '';
}
.t_c03218:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03218 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03218 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03218 { /* info for Javascript */
  display:none;
}
.l_c03218 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03218 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03218 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03218:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03218 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03218.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03218.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03218 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03218{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03218;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03218{font-family:ff1_c03218;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03218;src:url('chunks/assets/font_f94c84291dffd207fa61c7fa.woff2')format("woff");}.ff2_c03218{font-family:ff2_c03218;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03218;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03218{font-family:ff3_c03218;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03218{vertical-align:0.000000px;}
.v1_c03218{vertical-align:1.439424px;}
.lsc_c03218{letter-spacing:-1.197504px;}
.ls8_c03218{letter-spacing:-0.769824px;}
.ls10_c03218{letter-spacing:-0.736560px;}
.ls6_c03218{letter-spacing:-0.613008px;}
.ls9_c03218{letter-spacing:-0.574992px;}
.lsd_c03218{letter-spacing:-0.304128px;}
.ls11_c03218{letter-spacing:-0.270864px;}
.lse_c03218{letter-spacing:-0.261360px;}
.ls5_c03218{letter-spacing:-0.242352px;}
.ls3_c03218{letter-spacing:-0.118800px;}
.ls14_c03218{letter-spacing:0.000000px;}
.ls1_c03218{letter-spacing:0.006048px;}
.ls4_c03218{letter-spacing:0.128304px;}
.lsb_c03218{letter-spacing:0.508464px;}
.ls13_c03218{letter-spacing:0.514080px;}
.lsf_c03218{letter-spacing:0.536976px;}
.lsa_c03218{letter-spacing:0.579744px;}
.ls12_c03218{letter-spacing:0.594000px;}
.ls7_c03218{letter-spacing:0.598752px;}
.ls2_c03218{letter-spacing:0.613008px;}
.ls0_c03218{letter-spacing:0.717552px;}
.sc__c03218{text-shadow:none;}
.sc0_c03218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03218{-webkit-text-stroke:0px transparent;}
.sc0_c03218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03218{word-spacing:-15.126048px;}
.wsb_c03218{word-spacing:-12.474000px;}
.ws6_c03218{word-spacing:-12.459744px;}
.ws2_c03218{word-spacing:-11.266992px;}
.ws4_c03218{word-spacing:-11.110176px;}
.ws11_c03218{word-spacing:-1.078704px;}
.wse_c03218{word-spacing:-0.974160px;}
.ws17_c03218{word-spacing:-0.719712px;}
.ws10_c03218{word-spacing:-0.118800px;}
.ws14_c03218{word-spacing:-0.099792px;}
.ws15_c03218{word-spacing:-0.090288px;}
.ws16_c03218{word-spacing:-0.085536px;}
.ws13_c03218{word-spacing:-0.057024px;}
.wsf_c03218{word-spacing:0.000000px;}
.ws12_c03218{word-spacing:0.836352px;}
.wsa_c03218{word-spacing:6.629040px;}
.wsc_c03218{word-spacing:33.300288px;}
.ws9_c03218{word-spacing:34.836912px;}
.ws8_c03218{word-spacing:36.143712px;}
.ws1_c03218{word-spacing:37.759392px;}
.ws0_c03218{word-spacing:38.020752px;}
.ws3_c03218{word-spacing:39.218256px;}
.ws5_c03218{word-spacing:39.902544px;}
.ws7_c03218{word-spacing:42.026688px;}
._0_c03218{margin-left:-1.948320px;}
._2_c03218{width:1.482624px;}
._5_c03218{width:2.770416px;}
._4_c03218{width:4.561920px;}
._7_c03218{width:19.982160px;}
._8_c03218{width:23.451120px;}
._6_c03218{width:24.691392px;}
._1_c03218{width:50.252400px;}
._3_c03218{width:51.530688px;}
.fc0_c03218{color:rgb(0,0,0);}
.fs0_c03218{font-size:47.520000px;}
.fs1_c03218{font-size:60.480000px;}
.y0_c03218{bottom:0.000000px;}
.y1b_c03218{bottom:131.878686px;}
.y1a_c03218{bottom:146.998362px;}
.y1d_c03218{bottom:186.600234px;}
.y1c_c03218{bottom:196.320450px;}
.y19_c03218{bottom:275.878542px;}
.y18_c03218{bottom:356.878758px;}
.y16_c03218{bottom:406.559730px;}
.y12_c03218{bottom:424.560306px;}
.y17_c03218{bottom:458.759262px;}
.y15_c03218{bottom:491.879514px;}
.y14_c03218{bottom:509.880090px;}
.y11_c03218{bottom:543.000342px;}
.y13_c03218{bottom:559.559874px;}
.y10_c03218{bottom:577.560450px;}
.y1e_c03218{bottom:614.280450px;}
.yc_c03218{bottom:652.438650px;}
.yb_c03218{bottom:667.558326px;}
.ye_c03218{bottom:707.160234px;}
.yd_c03218{bottom:716.880450px;}
.ya_c03218{bottom:796.438506px;}
.y9_c03218{bottom:877.438722px;}
.y7_c03218{bottom:926.759730px;}
.y3_c03218{bottom:944.760306px;}
.y8_c03218{bottom:979.319226px;}
.y6_c03218{bottom:1012.439478px;}
.y5_c03218{bottom:1030.440054px;}
.y2_c03218{bottom:1063.560306px;}
.y4_c03218{bottom:1079.759874px;}
.y1_c03218{bottom:1097.760450px;}
.yf_c03218{bottom:1134.840450px;}
.h3_c03218{height:32.530781px;}
.h1_c03218{height:41.696016px;}
.h2_c03218{height:41.812031px;}
.h4_c03218{height:54.654737px;}
.h0_c03218{height:1263.000000px;}
.w1_c03218{width:892.500000px;}
.w0_c03218{width:892.830000px;}
.x0_c03218{left:0.000000px;}
.xe_c03218{left:117.000000px;}
.x8_c03218{left:440.999856px;}
.x4_c03218{left:445.680576px;}
.xc_c03218{left:451.080000px;}
.x7_c03218{left:455.399604px;}
.x5_c03218{left:461.880144px;}
.x1_c03218{left:463.320000px;}
.xa_c03218{left:483.480360px;}
.x9_c03218{left:492.119496px;}
.x6_c03218{left:493.200576px;}
.xd_c03218{left:506.880360px;}
.x3_c03218{left:511.919892px;}
.x2_c03218{left:526.679604px;}
.xb_c03218{left:569.880036px;}
@media print{
.v0_c03218{vertical-align:0.000000pt;}
.v1_c03218{vertical-align:1.279488pt;}
.lsc_c03218{letter-spacing:-1.064448pt;}
.ls8_c03218{letter-spacing:-0.684288pt;}
.ls10_c03218{letter-spacing:-0.654720pt;}
.ls6_c03218{letter-spacing:-0.544896pt;}
.ls9_c03218{letter-spacing:-0.511104pt;}
.lsd_c03218{letter-spacing:-0.270336pt;}
.ls11_c03218{letter-spacing:-0.240768pt;}
.lse_c03218{letter-spacing:-0.232320pt;}
.ls5_c03218{letter-spacing:-0.215424pt;}
.ls3_c03218{letter-spacing:-0.105600pt;}
.ls14_c03218{letter-spacing:0.000000pt;}
.ls1_c03218{letter-spacing:0.005376pt;}
.ls4_c03218{letter-spacing:0.114048pt;}
.lsb_c03218{letter-spacing:0.451968pt;}
.ls13_c03218{letter-spacing:0.456960pt;}
.lsf_c03218{letter-spacing:0.477312pt;}
.lsa_c03218{letter-spacing:0.515328pt;}
.ls12_c03218{letter-spacing:0.528000pt;}
.ls7_c03218{letter-spacing:0.532224pt;}
.ls2_c03218{letter-spacing:0.544896pt;}
.ls0_c03218{letter-spacing:0.637824pt;}
.wsd_c03218{word-spacing:-13.445376pt;}
.wsb_c03218{word-spacing:-11.088000pt;}
.ws6_c03218{word-spacing:-11.075328pt;}
.ws2_c03218{word-spacing:-10.015104pt;}
.ws4_c03218{word-spacing:-9.875712pt;}
.ws11_c03218{word-spacing:-0.958848pt;}
.wse_c03218{word-spacing:-0.865920pt;}
.ws17_c03218{word-spacing:-0.639744pt;}
.ws10_c03218{word-spacing:-0.105600pt;}
.ws14_c03218{word-spacing:-0.088704pt;}
.ws15_c03218{word-spacing:-0.080256pt;}
.ws16_c03218{word-spacing:-0.076032pt;}
.ws13_c03218{word-spacing:-0.050688pt;}
.wsf_c03218{word-spacing:0.000000pt;}
.ws12_c03218{word-spacing:0.743424pt;}
.wsa_c03218{word-spacing:5.892480pt;}
.wsc_c03218{word-spacing:29.600256pt;}
.ws9_c03218{word-spacing:30.966144pt;}
.ws8_c03218{word-spacing:32.127744pt;}
.ws1_c03218{word-spacing:33.563904pt;}
.ws0_c03218{word-spacing:33.796224pt;}
.ws3_c03218{word-spacing:34.860672pt;}
.ws5_c03218{word-spacing:35.468928pt;}
.ws7_c03218{word-spacing:37.357056pt;}
._0_c03218{margin-left:-1.731840pt;}
._2_c03218{width:1.317888pt;}
._5_c03218{width:2.462592pt;}
._4_c03218{width:4.055040pt;}
._7_c03218{width:17.761920pt;}
._8_c03218{width:20.845440pt;}
._6_c03218{width:21.947904pt;}
._1_c03218{width:44.668800pt;}
._3_c03218{width:45.805056pt;}
.fs0_c03218{font-size:42.240000pt;}
.fs1_c03218{font-size:53.760000pt;}
.y0_c03218{bottom:0.000000pt;}
.y1b_c03218{bottom:117.225499pt;}
.y1a_c03218{bottom:130.665211pt;}
.y1d_c03218{bottom:165.866875pt;}
.y1c_c03218{bottom:174.507067pt;}
.y19_c03218{bottom:245.225371pt;}
.y18_c03218{bottom:317.225563pt;}
.y16_c03218{bottom:361.386427pt;}
.y12_c03218{bottom:377.386939pt;}
.y17_c03218{bottom:407.786011pt;}
.y15_c03218{bottom:437.226235pt;}
.y14_c03218{bottom:453.226747pt;}
.y11_c03218{bottom:482.666971pt;}
.y13_c03218{bottom:497.386555pt;}
.y10_c03218{bottom:513.387067pt;}
.y1e_c03218{bottom:546.027067pt;}
.yc_c03218{bottom:579.945467pt;}
.yb_c03218{bottom:593.385179pt;}
.ye_c03218{bottom:628.586875pt;}
.yd_c03218{bottom:637.227067pt;}
.ya_c03218{bottom:707.945339pt;}
.y9_c03218{bottom:779.945531pt;}
.y7_c03218{bottom:823.786427pt;}
.y3_c03218{bottom:839.786939pt;}
.y8_c03218{bottom:870.505979pt;}
.y6_c03218{bottom:899.946203pt;}
.y5_c03218{bottom:915.946715pt;}
.y2_c03218{bottom:945.386939pt;}
.y4_c03218{bottom:959.786555pt;}
.y1_c03218{bottom:975.787067pt;}
.yf_c03218{bottom:1008.747067pt;}
.h3_c03218{height:28.916250pt;}
.h1_c03218{height:37.063125pt;}
.h2_c03218{height:37.166250pt;}
.h4_c03218{height:48.581988pt;}
.h0_c03218{height:1122.666667pt;}
.w1_c03218{width:793.333333pt;}
.w0_c03218{width:793.626667pt;}
.x0_c03218{left:0.000000pt;}
.xe_c03218{left:104.000000pt;}
.x8_c03218{left:391.999872pt;}
.x4_c03218{left:396.160512pt;}
.xc_c03218{left:400.960000pt;}
.x7_c03218{left:404.799648pt;}
.x5_c03218{left:410.560128pt;}
.x1_c03218{left:411.840000pt;}
.xa_c03218{left:429.760320pt;}
.x9_c03218{left:437.439552pt;}
.x6_c03218{left:438.400512pt;}
.xd_c03218{left:450.560320pt;}
.x3_c03218{left:455.039904pt;}
.x2_c03218{left:468.159648pt;}
.xb_c03218{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03219 {
    display:none;
  }
  .loading-indicator_c03219.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03219 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03219 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03219" -> "#page-container .classname_c03219")
 */
.pf_c03219 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03219 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03219.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03219 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03219 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03219 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03219 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03219 {overflow:visible;}
  }
}
.c_c03219 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03219 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03219:after { /* webkit #35443 */
  content: '';
}
.t_c03219:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03219 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03219 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03219 { /* info for Javascript */
  display:none;
}
.l_c03219 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03219 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03219 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03219:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03219 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03219.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03219.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03219 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03219{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03219;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03219{font-family:ff1_c03219;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03219;src:url('chunks/assets/font_f94c84291dffd207fa61c7fa.woff2')format("woff");}.ff2_c03219{font-family:ff2_c03219;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03219;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03219{font-family:ff3_c03219;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03219{vertical-align:0.000000px;}
.v1_c03219{vertical-align:1.439424px;}
.lsc_c03219{letter-spacing:-1.197504px;}
.ls8_c03219{letter-spacing:-0.769824px;}
.ls10_c03219{letter-spacing:-0.736560px;}
.ls6_c03219{letter-spacing:-0.613008px;}
.ls9_c03219{letter-spacing:-0.574992px;}
.lsd_c03219{letter-spacing:-0.304128px;}
.ls11_c03219{letter-spacing:-0.270864px;}
.lse_c03219{letter-spacing:-0.261360px;}
.ls5_c03219{letter-spacing:-0.242352px;}
.ls3_c03219{letter-spacing:-0.118800px;}
.ls14_c03219{letter-spacing:0.000000px;}
.ls1_c03219{letter-spacing:0.006048px;}
.ls4_c03219{letter-spacing:0.128304px;}
.lsb_c03219{letter-spacing:0.508464px;}
.ls13_c03219{letter-spacing:0.514080px;}
.lsf_c03219{letter-spacing:0.536976px;}
.lsa_c03219{letter-spacing:0.579744px;}
.ls12_c03219{letter-spacing:0.594000px;}
.ls7_c03219{letter-spacing:0.598752px;}
.ls2_c03219{letter-spacing:0.613008px;}
.ls0_c03219{letter-spacing:0.717552px;}
.sc__c03219{text-shadow:none;}
.sc0_c03219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03219{-webkit-text-stroke:0px transparent;}
.sc0_c03219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03219{word-spacing:-15.126048px;}
.wsb_c03219{word-spacing:-12.474000px;}
.ws6_c03219{word-spacing:-12.459744px;}
.ws2_c03219{word-spacing:-11.266992px;}
.ws4_c03219{word-spacing:-11.110176px;}
.ws11_c03219{word-spacing:-1.078704px;}
.wse_c03219{word-spacing:-0.974160px;}
.ws17_c03219{word-spacing:-0.719712px;}
.ws10_c03219{word-spacing:-0.118800px;}
.ws14_c03219{word-spacing:-0.099792px;}
.ws15_c03219{word-spacing:-0.090288px;}
.ws16_c03219{word-spacing:-0.085536px;}
.ws13_c03219{word-spacing:-0.057024px;}
.wsf_c03219{word-spacing:0.000000px;}
.ws12_c03219{word-spacing:0.836352px;}
.wsa_c03219{word-spacing:6.629040px;}
.wsc_c03219{word-spacing:33.300288px;}
.ws9_c03219{word-spacing:34.836912px;}
.ws8_c03219{word-spacing:36.143712px;}
.ws1_c03219{word-spacing:37.759392px;}
.ws0_c03219{word-spacing:38.020752px;}
.ws3_c03219{word-spacing:39.218256px;}
.ws5_c03219{word-spacing:39.902544px;}
.ws7_c03219{word-spacing:42.026688px;}
._0_c03219{margin-left:-1.948320px;}
._2_c03219{width:1.482624px;}
._5_c03219{width:2.770416px;}
._4_c03219{width:4.561920px;}
._7_c03219{width:19.982160px;}
._8_c03219{width:23.451120px;}
._6_c03219{width:24.691392px;}
._1_c03219{width:50.252400px;}
._3_c03219{width:51.530688px;}
.fc0_c03219{color:rgb(0,0,0);}
.fs0_c03219{font-size:47.520000px;}
.fs1_c03219{font-size:60.480000px;}
.y0_c03219{bottom:0.000000px;}
.y1b_c03219{bottom:131.878686px;}
.y1a_c03219{bottom:146.998362px;}
.y1d_c03219{bottom:186.600234px;}
.y1c_c03219{bottom:196.320450px;}
.y19_c03219{bottom:275.878542px;}
.y18_c03219{bottom:356.878758px;}
.y16_c03219{bottom:406.559730px;}
.y12_c03219{bottom:424.560306px;}
.y17_c03219{bottom:458.759262px;}
.y15_c03219{bottom:491.879514px;}
.y14_c03219{bottom:509.880090px;}
.y11_c03219{bottom:543.000342px;}
.y13_c03219{bottom:559.559874px;}
.y10_c03219{bottom:577.560450px;}
.y1e_c03219{bottom:614.280450px;}
.yc_c03219{bottom:652.438650px;}
.yb_c03219{bottom:667.558326px;}
.ye_c03219{bottom:707.160234px;}
.yd_c03219{bottom:716.880450px;}
.ya_c03219{bottom:796.438506px;}
.y9_c03219{bottom:877.438722px;}
.y7_c03219{bottom:926.759730px;}
.y3_c03219{bottom:944.760306px;}
.y8_c03219{bottom:979.319226px;}
.y6_c03219{bottom:1012.439478px;}
.y5_c03219{bottom:1030.440054px;}
.y2_c03219{bottom:1063.560306px;}
.y4_c03219{bottom:1079.759874px;}
.y1_c03219{bottom:1097.760450px;}
.yf_c03219{bottom:1134.840450px;}
.h3_c03219{height:32.530781px;}
.h1_c03219{height:41.696016px;}
.h2_c03219{height:41.812031px;}
.h4_c03219{height:54.654737px;}
.h0_c03219{height:1263.000000px;}
.w1_c03219{width:892.500000px;}
.w0_c03219{width:892.830000px;}
.x0_c03219{left:0.000000px;}
.xe_c03219{left:117.000000px;}
.x8_c03219{left:440.999856px;}
.x4_c03219{left:445.680576px;}
.xc_c03219{left:451.080000px;}
.x7_c03219{left:455.399604px;}
.x5_c03219{left:461.880144px;}
.x1_c03219{left:463.320000px;}
.xa_c03219{left:483.480360px;}
.x9_c03219{left:492.119496px;}
.x6_c03219{left:493.200576px;}
.xd_c03219{left:506.880360px;}
.x3_c03219{left:511.919892px;}
.x2_c03219{left:526.679604px;}
.xb_c03219{left:569.880036px;}
@media print{
.v0_c03219{vertical-align:0.000000pt;}
.v1_c03219{vertical-align:1.279488pt;}
.lsc_c03219{letter-spacing:-1.064448pt;}
.ls8_c03219{letter-spacing:-0.684288pt;}
.ls10_c03219{letter-spacing:-0.654720pt;}
.ls6_c03219{letter-spacing:-0.544896pt;}
.ls9_c03219{letter-spacing:-0.511104pt;}
.lsd_c03219{letter-spacing:-0.270336pt;}
.ls11_c03219{letter-spacing:-0.240768pt;}
.lse_c03219{letter-spacing:-0.232320pt;}
.ls5_c03219{letter-spacing:-0.215424pt;}
.ls3_c03219{letter-spacing:-0.105600pt;}
.ls14_c03219{letter-spacing:0.000000pt;}
.ls1_c03219{letter-spacing:0.005376pt;}
.ls4_c03219{letter-spacing:0.114048pt;}
.lsb_c03219{letter-spacing:0.451968pt;}
.ls13_c03219{letter-spacing:0.456960pt;}
.lsf_c03219{letter-spacing:0.477312pt;}
.lsa_c03219{letter-spacing:0.515328pt;}
.ls12_c03219{letter-spacing:0.528000pt;}
.ls7_c03219{letter-spacing:0.532224pt;}
.ls2_c03219{letter-spacing:0.544896pt;}
.ls0_c03219{letter-spacing:0.637824pt;}
.wsd_c03219{word-spacing:-13.445376pt;}
.wsb_c03219{word-spacing:-11.088000pt;}
.ws6_c03219{word-spacing:-11.075328pt;}
.ws2_c03219{word-spacing:-10.015104pt;}
.ws4_c03219{word-spacing:-9.875712pt;}
.ws11_c03219{word-spacing:-0.958848pt;}
.wse_c03219{word-spacing:-0.865920pt;}
.ws17_c03219{word-spacing:-0.639744pt;}
.ws10_c03219{word-spacing:-0.105600pt;}
.ws14_c03219{word-spacing:-0.088704pt;}
.ws15_c03219{word-spacing:-0.080256pt;}
.ws16_c03219{word-spacing:-0.076032pt;}
.ws13_c03219{word-spacing:-0.050688pt;}
.wsf_c03219{word-spacing:0.000000pt;}
.ws12_c03219{word-spacing:0.743424pt;}
.wsa_c03219{word-spacing:5.892480pt;}
.wsc_c03219{word-spacing:29.600256pt;}
.ws9_c03219{word-spacing:30.966144pt;}
.ws8_c03219{word-spacing:32.127744pt;}
.ws1_c03219{word-spacing:33.563904pt;}
.ws0_c03219{word-spacing:33.796224pt;}
.ws3_c03219{word-spacing:34.860672pt;}
.ws5_c03219{word-spacing:35.468928pt;}
.ws7_c03219{word-spacing:37.357056pt;}
._0_c03219{margin-left:-1.731840pt;}
._2_c03219{width:1.317888pt;}
._5_c03219{width:2.462592pt;}
._4_c03219{width:4.055040pt;}
._7_c03219{width:17.761920pt;}
._8_c03219{width:20.845440pt;}
._6_c03219{width:21.947904pt;}
._1_c03219{width:44.668800pt;}
._3_c03219{width:45.805056pt;}
.fs0_c03219{font-size:42.240000pt;}
.fs1_c03219{font-size:53.760000pt;}
.y0_c03219{bottom:0.000000pt;}
.y1b_c03219{bottom:117.225499pt;}
.y1a_c03219{bottom:130.665211pt;}
.y1d_c03219{bottom:165.866875pt;}
.y1c_c03219{bottom:174.507067pt;}
.y19_c03219{bottom:245.225371pt;}
.y18_c03219{bottom:317.225563pt;}
.y16_c03219{bottom:361.386427pt;}
.y12_c03219{bottom:377.386939pt;}
.y17_c03219{bottom:407.786011pt;}
.y15_c03219{bottom:437.226235pt;}
.y14_c03219{bottom:453.226747pt;}
.y11_c03219{bottom:482.666971pt;}
.y13_c03219{bottom:497.386555pt;}
.y10_c03219{bottom:513.387067pt;}
.y1e_c03219{bottom:546.027067pt;}
.yc_c03219{bottom:579.945467pt;}
.yb_c03219{bottom:593.385179pt;}
.ye_c03219{bottom:628.586875pt;}
.yd_c03219{bottom:637.227067pt;}
.ya_c03219{bottom:707.945339pt;}
.y9_c03219{bottom:779.945531pt;}
.y7_c03219{bottom:823.786427pt;}
.y3_c03219{bottom:839.786939pt;}
.y8_c03219{bottom:870.505979pt;}
.y6_c03219{bottom:899.946203pt;}
.y5_c03219{bottom:915.946715pt;}
.y2_c03219{bottom:945.386939pt;}
.y4_c03219{bottom:959.786555pt;}
.y1_c03219{bottom:975.787067pt;}
.yf_c03219{bottom:1008.747067pt;}
.h3_c03219{height:28.916250pt;}
.h1_c03219{height:37.063125pt;}
.h2_c03219{height:37.166250pt;}
.h4_c03219{height:48.581988pt;}
.h0_c03219{height:1122.666667pt;}
.w1_c03219{width:793.333333pt;}
.w0_c03219{width:793.626667pt;}
.x0_c03219{left:0.000000pt;}
.xe_c03219{left:104.000000pt;}
.x8_c03219{left:391.999872pt;}
.x4_c03219{left:396.160512pt;}
.xc_c03219{left:400.960000pt;}
.x7_c03219{left:404.799648pt;}
.x5_c03219{left:410.560128pt;}
.x1_c03219{left:411.840000pt;}
.xa_c03219{left:429.760320pt;}
.x9_c03219{left:437.439552pt;}
.x6_c03219{left:438.400512pt;}
.xd_c03219{left:450.560320pt;}
.x3_c03219{left:455.039904pt;}
.x2_c03219{left:468.159648pt;}
.xb_c03219{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03220 {
    display:none;
  }
  .loading-indicator_c03220.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03220 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03220 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03220" -> "#page-container .classname_c03220")
 */
.pf_c03220 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03220 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03220.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03220 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03220 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03220 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03220 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03220 {overflow:visible;}
  }
}
.c_c03220 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03220 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03220:after { /* webkit #35443 */
  content: '';
}
.t_c03220:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03220 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03220 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03220 { /* info for Javascript */
  display:none;
}
.l_c03220 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03220 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03220 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03220:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03220 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03220.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03220.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03220 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03220{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03220;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03220{font-family:ff1_c03220;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03220;src:url('chunks/assets/font_1072eebc04f745f89704d3fb.woff2')format("woff");}.ff2_c03220{font-family:ff2_c03220;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03220;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03220{font-family:ff3_c03220;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03220{vertical-align:0.000000px;}
.v1_c03220{vertical-align:1.439424px;}
.lsb_c03220{letter-spacing:-1.254528px;}
.ls6_c03220{letter-spacing:-0.613008px;}
.ls8_c03220{letter-spacing:-0.574992px;}
.lse_c03220{letter-spacing:-0.275616px;}
.lsc_c03220{letter-spacing:-0.261360px;}
.ls5_c03220{letter-spacing:-0.242352px;}
.ls3_c03220{letter-spacing:-0.118800px;}
.ls11_c03220{letter-spacing:0.000000px;}
.ls1_c03220{letter-spacing:0.006048px;}
.ls4_c03220{letter-spacing:0.128304px;}
.lsa_c03220{letter-spacing:0.508464px;}
.ls10_c03220{letter-spacing:0.514080px;}
.lsd_c03220{letter-spacing:0.536976px;}
.ls9_c03220{letter-spacing:0.579744px;}
.lsf_c03220{letter-spacing:0.594000px;}
.ls7_c03220{letter-spacing:0.598752px;}
.ls2_c03220{letter-spacing:0.613008px;}
.ls0_c03220{letter-spacing:0.717552px;}
.sc__c03220{text-shadow:none;}
.sc0_c03220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03220{-webkit-text-stroke:0px transparent;}
.sc0_c03220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03220{word-spacing:-15.126048px;}
.wsa_c03220{word-spacing:-12.474000px;}
.ws8_c03220{word-spacing:-12.459744px;}
.ws9_c03220{word-spacing:-12.416976px;}
.ws4_c03220{word-spacing:-11.637648px;}
.ws2_c03220{word-spacing:-11.266992px;}
.ws10_c03220{word-spacing:-1.078704px;}
.wsd_c03220{word-spacing:-0.974160px;}
.ws14_c03220{word-spacing:-0.719712px;}
.wsf_c03220{word-spacing:-0.118800px;}
.ws12_c03220{word-spacing:-0.099792px;}
.ws13_c03220{word-spacing:-0.085536px;}
.wse_c03220{word-spacing:0.000000px;}
.ws11_c03220{word-spacing:0.893376px;}
.wsb_c03220{word-spacing:33.300288px;}
.ws6_c03220{word-spacing:36.742464px;}
.ws1_c03220{word-spacing:37.759392px;}
.ws0_c03220{word-spacing:38.020752px;}
.ws3_c03220{word-spacing:39.218256px;}
.ws5_c03220{word-spacing:39.902544px;}
.ws7_c03220{word-spacing:42.026688px;}
._0_c03220{margin-left:-1.948320px;}
._2_c03220{width:1.482624px;}
._4_c03220{width:3.302640px;}
._1_c03220{width:50.252400px;}
._3_c03220{width:51.530688px;}
.fc0_c03220{color:rgb(0,0,0);}
.fs0_c03220{font-size:47.520000px;}
.fs1_c03220{font-size:60.480000px;}
.y0_c03220{bottom:0.000000px;}
.y19_c03220{bottom:146.998362px;}
.y1b_c03220{bottom:186.600234px;}
.y1a_c03220{bottom:196.320450px;}
.y18_c03220{bottom:275.878542px;}
.y17_c03220{bottom:356.878758px;}
.y15_c03220{bottom:406.559730px;}
.y11_c03220{bottom:424.560306px;}
.y16_c03220{bottom:458.759262px;}
.y14_c03220{bottom:491.879514px;}
.y13_c03220{bottom:509.880090px;}
.y10_c03220{bottom:543.000342px;}
.y12_c03220{bottom:559.559874px;}
.yf_c03220{bottom:577.560450px;}
.y1c_c03220{bottom:614.280450px;}
.yb_c03220{bottom:667.558326px;}
.yd_c03220{bottom:707.160234px;}
.yc_c03220{bottom:716.880450px;}
.ya_c03220{bottom:796.438506px;}
.y9_c03220{bottom:877.438722px;}
.y7_c03220{bottom:926.759730px;}
.y3_c03220{bottom:944.760306px;}
.y8_c03220{bottom:979.319226px;}
.y6_c03220{bottom:1012.439478px;}
.y5_c03220{bottom:1030.440054px;}
.y2_c03220{bottom:1063.560306px;}
.y4_c03220{bottom:1079.759874px;}
.y1_c03220{bottom:1097.760450px;}
.ye_c03220{bottom:1134.840450px;}
.h3_c03220{height:32.530781px;}
.h1_c03220{height:41.696016px;}
.h2_c03220{height:41.812031px;}
.h4_c03220{height:54.654737px;}
.h0_c03220{height:1263.000000px;}
.w1_c03220{width:892.500000px;}
.w0_c03220{width:892.830000px;}
.x0_c03220{left:0.000000px;}
.xd_c03220{left:117.000000px;}
.x8_c03220{left:440.999856px;}
.x4_c03220{left:445.680576px;}
.xb_c03220{left:451.080000px;}
.x7_c03220{left:455.399604px;}
.x5_c03220{left:461.880144px;}
.x1_c03220{left:463.320000px;}
.xa_c03220{left:483.480360px;}
.x9_c03220{left:492.119496px;}
.x6_c03220{left:493.200576px;}
.xc_c03220{left:506.880360px;}
.x3_c03220{left:511.919892px;}
.x2_c03220{left:526.679604px;}
@media print{
.v0_c03220{vertical-align:0.000000pt;}
.v1_c03220{vertical-align:1.279488pt;}
.lsb_c03220{letter-spacing:-1.115136pt;}
.ls6_c03220{letter-spacing:-0.544896pt;}
.ls8_c03220{letter-spacing:-0.511104pt;}
.lse_c03220{letter-spacing:-0.244992pt;}
.lsc_c03220{letter-spacing:-0.232320pt;}
.ls5_c03220{letter-spacing:-0.215424pt;}
.ls3_c03220{letter-spacing:-0.105600pt;}
.ls11_c03220{letter-spacing:0.000000pt;}
.ls1_c03220{letter-spacing:0.005376pt;}
.ls4_c03220{letter-spacing:0.114048pt;}
.lsa_c03220{letter-spacing:0.451968pt;}
.ls10_c03220{letter-spacing:0.456960pt;}
.lsd_c03220{letter-spacing:0.477312pt;}
.ls9_c03220{letter-spacing:0.515328pt;}
.lsf_c03220{letter-spacing:0.528000pt;}
.ls7_c03220{letter-spacing:0.532224pt;}
.ls2_c03220{letter-spacing:0.544896pt;}
.ls0_c03220{letter-spacing:0.637824pt;}
.wsc_c03220{word-spacing:-13.445376pt;}
.wsa_c03220{word-spacing:-11.088000pt;}
.ws8_c03220{word-spacing:-11.075328pt;}
.ws9_c03220{word-spacing:-11.037312pt;}
.ws4_c03220{word-spacing:-10.344576pt;}
.ws2_c03220{word-spacing:-10.015104pt;}
.ws10_c03220{word-spacing:-0.958848pt;}
.wsd_c03220{word-spacing:-0.865920pt;}
.ws14_c03220{word-spacing:-0.639744pt;}
.wsf_c03220{word-spacing:-0.105600pt;}
.ws12_c03220{word-spacing:-0.088704pt;}
.ws13_c03220{word-spacing:-0.076032pt;}
.wse_c03220{word-spacing:0.000000pt;}
.ws11_c03220{word-spacing:0.794112pt;}
.wsb_c03220{word-spacing:29.600256pt;}
.ws6_c03220{word-spacing:32.659968pt;}
.ws1_c03220{word-spacing:33.563904pt;}
.ws0_c03220{word-spacing:33.796224pt;}
.ws3_c03220{word-spacing:34.860672pt;}
.ws5_c03220{word-spacing:35.468928pt;}
.ws7_c03220{word-spacing:37.357056pt;}
._0_c03220{margin-left:-1.731840pt;}
._2_c03220{width:1.317888pt;}
._4_c03220{width:2.935680pt;}
._1_c03220{width:44.668800pt;}
._3_c03220{width:45.805056pt;}
.fs0_c03220{font-size:42.240000pt;}
.fs1_c03220{font-size:53.760000pt;}
.y0_c03220{bottom:0.000000pt;}
.y19_c03220{bottom:130.665211pt;}
.y1b_c03220{bottom:165.866875pt;}
.y1a_c03220{bottom:174.507067pt;}
.y18_c03220{bottom:245.225371pt;}
.y17_c03220{bottom:317.225563pt;}
.y15_c03220{bottom:361.386427pt;}
.y11_c03220{bottom:377.386939pt;}
.y16_c03220{bottom:407.786011pt;}
.y14_c03220{bottom:437.226235pt;}
.y13_c03220{bottom:453.226747pt;}
.y10_c03220{bottom:482.666971pt;}
.y12_c03220{bottom:497.386555pt;}
.yf_c03220{bottom:513.387067pt;}
.y1c_c03220{bottom:546.027067pt;}
.yb_c03220{bottom:593.385179pt;}
.yd_c03220{bottom:628.586875pt;}
.yc_c03220{bottom:637.227067pt;}
.ya_c03220{bottom:707.945339pt;}
.y9_c03220{bottom:779.945531pt;}
.y7_c03220{bottom:823.786427pt;}
.y3_c03220{bottom:839.786939pt;}
.y8_c03220{bottom:870.505979pt;}
.y6_c03220{bottom:899.946203pt;}
.y5_c03220{bottom:915.946715pt;}
.y2_c03220{bottom:945.386939pt;}
.y4_c03220{bottom:959.786555pt;}
.y1_c03220{bottom:975.787067pt;}
.ye_c03220{bottom:1008.747067pt;}
.h3_c03220{height:28.916250pt;}
.h1_c03220{height:37.063125pt;}
.h2_c03220{height:37.166250pt;}
.h4_c03220{height:48.581988pt;}
.h0_c03220{height:1122.666667pt;}
.w1_c03220{width:793.333333pt;}
.w0_c03220{width:793.626667pt;}
.x0_c03220{left:0.000000pt;}
.xd_c03220{left:104.000000pt;}
.x8_c03220{left:391.999872pt;}
.x4_c03220{left:396.160512pt;}
.xb_c03220{left:400.960000pt;}
.x7_c03220{left:404.799648pt;}
.x5_c03220{left:410.560128pt;}
.x1_c03220{left:411.840000pt;}
.xa_c03220{left:429.760320pt;}
.x9_c03220{left:437.439552pt;}
.x6_c03220{left:438.400512pt;}
.xc_c03220{left:450.560320pt;}
.x3_c03220{left:455.039904pt;}
.x2_c03220{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03221 {
    display:none;
  }
  .loading-indicator_c03221.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03221 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03221 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03221" -> "#page-container .classname_c03221")
 */
.pf_c03221 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03221 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03221.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03221 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03221 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03221 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03221 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03221 {overflow:visible;}
  }
}
.c_c03221 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03221 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03221:after { /* webkit #35443 */
  content: '';
}
.t_c03221:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03221 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03221 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03221 { /* info for Javascript */
  display:none;
}
.l_c03221 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03221 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03221 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03221:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03221 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03221.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03221.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03221 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03221{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03221;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03221{font-family:ff1_c03221;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03221;src:url('chunks/assets/font_e2ec5ddabed4bd6995940bf5.woff2')format("woff");}.ff2_c03221{font-family:ff2_c03221;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03221;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03221{font-family:ff3_c03221;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03221{vertical-align:0.000000px;}
.v1_c03221{vertical-align:1.439424px;}
.lsb_c03221{letter-spacing:-1.254528px;}
.ls6_c03221{letter-spacing:-0.613008px;}
.ls8_c03221{letter-spacing:-0.574992px;}
.lse_c03221{letter-spacing:-0.275616px;}
.lsc_c03221{letter-spacing:-0.261360px;}
.ls5_c03221{letter-spacing:-0.242352px;}
.ls3_c03221{letter-spacing:-0.118800px;}
.ls11_c03221{letter-spacing:0.000000px;}
.ls1_c03221{letter-spacing:0.006048px;}
.ls4_c03221{letter-spacing:0.128304px;}
.lsa_c03221{letter-spacing:0.508464px;}
.ls10_c03221{letter-spacing:0.514080px;}
.lsd_c03221{letter-spacing:0.536976px;}
.ls9_c03221{letter-spacing:0.579744px;}
.lsf_c03221{letter-spacing:0.594000px;}
.ls7_c03221{letter-spacing:0.598752px;}
.ls2_c03221{letter-spacing:0.613008px;}
.ls0_c03221{letter-spacing:0.717552px;}
.sc__c03221{text-shadow:none;}
.sc0_c03221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03221{-webkit-text-stroke:0px transparent;}
.sc0_c03221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03221{word-spacing:-15.126048px;}
.wsa_c03221{word-spacing:-12.474000px;}
.ws8_c03221{word-spacing:-12.459744px;}
.ws9_c03221{word-spacing:-12.416976px;}
.ws4_c03221{word-spacing:-11.637648px;}
.ws2_c03221{word-spacing:-11.266992px;}
.ws10_c03221{word-spacing:-1.078704px;}
.wsd_c03221{word-spacing:-0.974160px;}
.ws14_c03221{word-spacing:-0.719712px;}
.wsf_c03221{word-spacing:-0.118800px;}
.ws12_c03221{word-spacing:-0.099792px;}
.ws13_c03221{word-spacing:-0.085536px;}
.wse_c03221{word-spacing:0.000000px;}
.ws11_c03221{word-spacing:0.893376px;}
.wsb_c03221{word-spacing:33.300288px;}
.ws6_c03221{word-spacing:36.742464px;}
.ws1_c03221{word-spacing:37.759392px;}
.ws0_c03221{word-spacing:38.020752px;}
.ws3_c03221{word-spacing:39.218256px;}
.ws5_c03221{word-spacing:39.902544px;}
.ws7_c03221{word-spacing:42.026688px;}
._0_c03221{margin-left:-1.948320px;}
._2_c03221{width:1.482624px;}
._4_c03221{width:3.302640px;}
._1_c03221{width:50.252400px;}
._3_c03221{width:51.530688px;}
.fc0_c03221{color:rgb(0,0,0);}
.fs0_c03221{font-size:47.520000px;}
.fs1_c03221{font-size:60.480000px;}
.y0_c03221{bottom:0.000000px;}
.y19_c03221{bottom:146.998362px;}
.y1b_c03221{bottom:186.600234px;}
.y1a_c03221{bottom:196.320450px;}
.y18_c03221{bottom:275.878542px;}
.y17_c03221{bottom:356.878758px;}
.y15_c03221{bottom:406.559730px;}
.y11_c03221{bottom:424.560306px;}
.y16_c03221{bottom:458.759262px;}
.y14_c03221{bottom:491.879514px;}
.y13_c03221{bottom:509.880090px;}
.y10_c03221{bottom:543.000342px;}
.y12_c03221{bottom:559.559874px;}
.yf_c03221{bottom:577.560450px;}
.y1c_c03221{bottom:614.280450px;}
.yb_c03221{bottom:667.558326px;}
.yd_c03221{bottom:707.160234px;}
.yc_c03221{bottom:716.880450px;}
.ya_c03221{bottom:796.438506px;}
.y9_c03221{bottom:877.438722px;}
.y7_c03221{bottom:926.759730px;}
.y3_c03221{bottom:944.760306px;}
.y8_c03221{bottom:979.319226px;}
.y6_c03221{bottom:1012.439478px;}
.y5_c03221{bottom:1030.440054px;}
.y2_c03221{bottom:1063.560306px;}
.y4_c03221{bottom:1079.759874px;}
.y1_c03221{bottom:1097.760450px;}
.ye_c03221{bottom:1134.840450px;}
.h3_c03221{height:32.530781px;}
.h1_c03221{height:41.696016px;}
.h2_c03221{height:41.812031px;}
.h4_c03221{height:54.654737px;}
.h0_c03221{height:1263.000000px;}
.w1_c03221{width:892.500000px;}
.w0_c03221{width:892.830000px;}
.x0_c03221{left:0.000000px;}
.xd_c03221{left:117.000000px;}
.x8_c03221{left:440.999856px;}
.x4_c03221{left:445.680576px;}
.xb_c03221{left:451.080000px;}
.x7_c03221{left:455.399604px;}
.x5_c03221{left:461.880144px;}
.x1_c03221{left:463.320000px;}
.xa_c03221{left:483.480360px;}
.x9_c03221{left:492.119496px;}
.x6_c03221{left:493.200576px;}
.xc_c03221{left:506.880360px;}
.x3_c03221{left:511.919892px;}
.x2_c03221{left:526.679604px;}
@media print{
.v0_c03221{vertical-align:0.000000pt;}
.v1_c03221{vertical-align:1.279488pt;}
.lsb_c03221{letter-spacing:-1.115136pt;}
.ls6_c03221{letter-spacing:-0.544896pt;}
.ls8_c03221{letter-spacing:-0.511104pt;}
.lse_c03221{letter-spacing:-0.244992pt;}
.lsc_c03221{letter-spacing:-0.232320pt;}
.ls5_c03221{letter-spacing:-0.215424pt;}
.ls3_c03221{letter-spacing:-0.105600pt;}
.ls11_c03221{letter-spacing:0.000000pt;}
.ls1_c03221{letter-spacing:0.005376pt;}
.ls4_c03221{letter-spacing:0.114048pt;}
.lsa_c03221{letter-spacing:0.451968pt;}
.ls10_c03221{letter-spacing:0.456960pt;}
.lsd_c03221{letter-spacing:0.477312pt;}
.ls9_c03221{letter-spacing:0.515328pt;}
.lsf_c03221{letter-spacing:0.528000pt;}
.ls7_c03221{letter-spacing:0.532224pt;}
.ls2_c03221{letter-spacing:0.544896pt;}
.ls0_c03221{letter-spacing:0.637824pt;}
.wsc_c03221{word-spacing:-13.445376pt;}
.wsa_c03221{word-spacing:-11.088000pt;}
.ws8_c03221{word-spacing:-11.075328pt;}
.ws9_c03221{word-spacing:-11.037312pt;}
.ws4_c03221{word-spacing:-10.344576pt;}
.ws2_c03221{word-spacing:-10.015104pt;}
.ws10_c03221{word-spacing:-0.958848pt;}
.wsd_c03221{word-spacing:-0.865920pt;}
.ws14_c03221{word-spacing:-0.639744pt;}
.wsf_c03221{word-spacing:-0.105600pt;}
.ws12_c03221{word-spacing:-0.088704pt;}
.ws13_c03221{word-spacing:-0.076032pt;}
.wse_c03221{word-spacing:0.000000pt;}
.ws11_c03221{word-spacing:0.794112pt;}
.wsb_c03221{word-spacing:29.600256pt;}
.ws6_c03221{word-spacing:32.659968pt;}
.ws1_c03221{word-spacing:33.563904pt;}
.ws0_c03221{word-spacing:33.796224pt;}
.ws3_c03221{word-spacing:34.860672pt;}
.ws5_c03221{word-spacing:35.468928pt;}
.ws7_c03221{word-spacing:37.357056pt;}
._0_c03221{margin-left:-1.731840pt;}
._2_c03221{width:1.317888pt;}
._4_c03221{width:2.935680pt;}
._1_c03221{width:44.668800pt;}
._3_c03221{width:45.805056pt;}
.fs0_c03221{font-size:42.240000pt;}
.fs1_c03221{font-size:53.760000pt;}
.y0_c03221{bottom:0.000000pt;}
.y19_c03221{bottom:130.665211pt;}
.y1b_c03221{bottom:165.866875pt;}
.y1a_c03221{bottom:174.507067pt;}
.y18_c03221{bottom:245.225371pt;}
.y17_c03221{bottom:317.225563pt;}
.y15_c03221{bottom:361.386427pt;}
.y11_c03221{bottom:377.386939pt;}
.y16_c03221{bottom:407.786011pt;}
.y14_c03221{bottom:437.226235pt;}
.y13_c03221{bottom:453.226747pt;}
.y10_c03221{bottom:482.666971pt;}
.y12_c03221{bottom:497.386555pt;}
.yf_c03221{bottom:513.387067pt;}
.y1c_c03221{bottom:546.027067pt;}
.yb_c03221{bottom:593.385179pt;}
.yd_c03221{bottom:628.586875pt;}
.yc_c03221{bottom:637.227067pt;}
.ya_c03221{bottom:707.945339pt;}
.y9_c03221{bottom:779.945531pt;}
.y7_c03221{bottom:823.786427pt;}
.y3_c03221{bottom:839.786939pt;}
.y8_c03221{bottom:870.505979pt;}
.y6_c03221{bottom:899.946203pt;}
.y5_c03221{bottom:915.946715pt;}
.y2_c03221{bottom:945.386939pt;}
.y4_c03221{bottom:959.786555pt;}
.y1_c03221{bottom:975.787067pt;}
.ye_c03221{bottom:1008.747067pt;}
.h3_c03221{height:28.916250pt;}
.h1_c03221{height:37.063125pt;}
.h2_c03221{height:37.166250pt;}
.h4_c03221{height:48.581988pt;}
.h0_c03221{height:1122.666667pt;}
.w1_c03221{width:793.333333pt;}
.w0_c03221{width:793.626667pt;}
.x0_c03221{left:0.000000pt;}
.xd_c03221{left:104.000000pt;}
.x8_c03221{left:391.999872pt;}
.x4_c03221{left:396.160512pt;}
.xb_c03221{left:400.960000pt;}
.x7_c03221{left:404.799648pt;}
.x5_c03221{left:410.560128pt;}
.x1_c03221{left:411.840000pt;}
.xa_c03221{left:429.760320pt;}
.x9_c03221{left:437.439552pt;}
.x6_c03221{left:438.400512pt;}
.xc_c03221{left:450.560320pt;}
.x3_c03221{left:455.039904pt;}
.x2_c03221{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03222 {
    display:none;
  }
  .loading-indicator_c03222.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03222 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03222 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03222" -> "#page-container .classname_c03222")
 */
.pf_c03222 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03222 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03222.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03222 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03222 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03222 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03222 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03222 {overflow:visible;}
  }
}
.c_c03222 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03222 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03222:after { /* webkit #35443 */
  content: '';
}
.t_c03222:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03222 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03222 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03222 { /* info for Javascript */
  display:none;
}
.l_c03222 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03222 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03222 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03222:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03222 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03222.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03222.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03222 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03222{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03222;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03222{font-family:ff1_c03222;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03222;src:url('chunks/assets/font_90d3faa43a9c3095505223ad.woff2')format("woff");}.ff2_c03222{font-family:ff2_c03222;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03222;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03222{font-family:ff3_c03222;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03222{vertical-align:0.000000px;}
.v1_c03222{vertical-align:1.439424px;}
.lsc_c03222{letter-spacing:-1.197504px;}
.ls7_c03222{letter-spacing:-0.613008px;}
.ls9_c03222{letter-spacing:-0.574992px;}
.lsf_c03222{letter-spacing:-0.275616px;}
.lsd_c03222{letter-spacing:-0.261360px;}
.ls6_c03222{letter-spacing:-0.242352px;}
.ls4_c03222{letter-spacing:-0.118800px;}
.ls12_c03222{letter-spacing:0.000000px;}
.ls1_c03222{letter-spacing:0.006048px;}
.ls5_c03222{letter-spacing:0.128304px;}
.lsb_c03222{letter-spacing:0.508464px;}
.ls11_c03222{letter-spacing:0.514080px;}
.lse_c03222{letter-spacing:0.536976px;}
.lsa_c03222{letter-spacing:0.579744px;}
.ls10_c03222{letter-spacing:0.594000px;}
.ls8_c03222{letter-spacing:0.598752px;}
.ls2_c03222{letter-spacing:0.613008px;}
.ls3_c03222{letter-spacing:0.717552px;}
.ls0_c03222{letter-spacing:0.722304px;}
.sc__c03222{text-shadow:none;}
.sc0_c03222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03222{-webkit-text-stroke:0px transparent;}
.sc0_c03222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03222{word-spacing:-15.126048px;}
.wsa_c03222{word-spacing:-12.474000px;}
.ws8_c03222{word-spacing:-12.459744px;}
.ws9_c03222{word-spacing:-12.416976px;}
.ws4_c03222{word-spacing:-11.637648px;}
.ws2_c03222{word-spacing:-11.266992px;}
.ws10_c03222{word-spacing:-1.083456px;}
.wsd_c03222{word-spacing:-0.974160px;}
.ws14_c03222{word-spacing:-0.719712px;}
.wsf_c03222{word-spacing:-0.118800px;}
.ws12_c03222{word-spacing:-0.099792px;}
.ws13_c03222{word-spacing:-0.085536px;}
.wse_c03222{word-spacing:0.000000px;}
.ws11_c03222{word-spacing:0.836352px;}
.wsb_c03222{word-spacing:33.300288px;}
.ws6_c03222{word-spacing:36.742464px;}
.ws1_c03222{word-spacing:37.759392px;}
.ws0_c03222{word-spacing:38.020752px;}
.ws3_c03222{word-spacing:39.218256px;}
.ws5_c03222{word-spacing:39.902544px;}
.ws7_c03222{word-spacing:42.026688px;}
._0_c03222{margin-left:-1.948320px;}
._2_c03222{width:1.482624px;}
._5_c03222{width:2.770416px;}
._4_c03222{width:5.749920px;}
._1_c03222{width:50.252400px;}
._3_c03222{width:51.530688px;}
.fc0_c03222{color:rgb(0,0,0);}
.fs0_c03222{font-size:47.520000px;}
.fs1_c03222{font-size:60.480000px;}
.y0_c03222{bottom:0.000000px;}
.y19_c03222{bottom:146.998362px;}
.y1b_c03222{bottom:186.600234px;}
.y1a_c03222{bottom:196.320450px;}
.y18_c03222{bottom:275.878542px;}
.y17_c03222{bottom:356.878758px;}
.y15_c03222{bottom:406.559730px;}
.y11_c03222{bottom:424.560306px;}
.y16_c03222{bottom:458.759262px;}
.y14_c03222{bottom:491.879514px;}
.y13_c03222{bottom:509.880090px;}
.y10_c03222{bottom:543.000342px;}
.y12_c03222{bottom:559.559874px;}
.yf_c03222{bottom:577.560450px;}
.y1c_c03222{bottom:614.280450px;}
.yb_c03222{bottom:667.558326px;}
.yd_c03222{bottom:707.160234px;}
.yc_c03222{bottom:716.880450px;}
.ya_c03222{bottom:796.438506px;}
.y9_c03222{bottom:877.438722px;}
.y7_c03222{bottom:926.759730px;}
.y3_c03222{bottom:944.760306px;}
.y8_c03222{bottom:979.319226px;}
.y6_c03222{bottom:1012.439478px;}
.y5_c03222{bottom:1030.440054px;}
.y2_c03222{bottom:1063.560306px;}
.y4_c03222{bottom:1079.759874px;}
.y1_c03222{bottom:1097.760450px;}
.ye_c03222{bottom:1134.840450px;}
.h3_c03222{height:32.530781px;}
.h1_c03222{height:41.696016px;}
.h2_c03222{height:41.812031px;}
.h4_c03222{height:54.654737px;}
.h0_c03222{height:1263.000000px;}
.w1_c03222{width:892.500000px;}
.w0_c03222{width:892.830000px;}
.x0_c03222{left:0.000000px;}
.xd_c03222{left:117.000000px;}
.x8_c03222{left:440.999856px;}
.x4_c03222{left:445.680576px;}
.xb_c03222{left:451.080000px;}
.x7_c03222{left:455.399604px;}
.x5_c03222{left:461.880144px;}
.x1_c03222{left:463.320000px;}
.xa_c03222{left:483.480360px;}
.x9_c03222{left:492.119496px;}
.x6_c03222{left:493.200576px;}
.xc_c03222{left:506.880360px;}
.x3_c03222{left:511.919892px;}
.x2_c03222{left:526.679604px;}
@media print{
.v0_c03222{vertical-align:0.000000pt;}
.v1_c03222{vertical-align:1.279488pt;}
.lsc_c03222{letter-spacing:-1.064448pt;}
.ls7_c03222{letter-spacing:-0.544896pt;}
.ls9_c03222{letter-spacing:-0.511104pt;}
.lsf_c03222{letter-spacing:-0.244992pt;}
.lsd_c03222{letter-spacing:-0.232320pt;}
.ls6_c03222{letter-spacing:-0.215424pt;}
.ls4_c03222{letter-spacing:-0.105600pt;}
.ls12_c03222{letter-spacing:0.000000pt;}
.ls1_c03222{letter-spacing:0.005376pt;}
.ls5_c03222{letter-spacing:0.114048pt;}
.lsb_c03222{letter-spacing:0.451968pt;}
.ls11_c03222{letter-spacing:0.456960pt;}
.lse_c03222{letter-spacing:0.477312pt;}
.lsa_c03222{letter-spacing:0.515328pt;}
.ls10_c03222{letter-spacing:0.528000pt;}
.ls8_c03222{letter-spacing:0.532224pt;}
.ls2_c03222{letter-spacing:0.544896pt;}
.ls3_c03222{letter-spacing:0.637824pt;}
.ls0_c03222{letter-spacing:0.642048pt;}
.wsc_c03222{word-spacing:-13.445376pt;}
.wsa_c03222{word-spacing:-11.088000pt;}
.ws8_c03222{word-spacing:-11.075328pt;}
.ws9_c03222{word-spacing:-11.037312pt;}
.ws4_c03222{word-spacing:-10.344576pt;}
.ws2_c03222{word-spacing:-10.015104pt;}
.ws10_c03222{word-spacing:-0.963072pt;}
.wsd_c03222{word-spacing:-0.865920pt;}
.ws14_c03222{word-spacing:-0.639744pt;}
.wsf_c03222{word-spacing:-0.105600pt;}
.ws12_c03222{word-spacing:-0.088704pt;}
.ws13_c03222{word-spacing:-0.076032pt;}
.wse_c03222{word-spacing:0.000000pt;}
.ws11_c03222{word-spacing:0.743424pt;}
.wsb_c03222{word-spacing:29.600256pt;}
.ws6_c03222{word-spacing:32.659968pt;}
.ws1_c03222{word-spacing:33.563904pt;}
.ws0_c03222{word-spacing:33.796224pt;}
.ws3_c03222{word-spacing:34.860672pt;}
.ws5_c03222{word-spacing:35.468928pt;}
.ws7_c03222{word-spacing:37.357056pt;}
._0_c03222{margin-left:-1.731840pt;}
._2_c03222{width:1.317888pt;}
._5_c03222{width:2.462592pt;}
._4_c03222{width:5.111040pt;}
._1_c03222{width:44.668800pt;}
._3_c03222{width:45.805056pt;}
.fs0_c03222{font-size:42.240000pt;}
.fs1_c03222{font-size:53.760000pt;}
.y0_c03222{bottom:0.000000pt;}
.y19_c03222{bottom:130.665211pt;}
.y1b_c03222{bottom:165.866875pt;}
.y1a_c03222{bottom:174.507067pt;}
.y18_c03222{bottom:245.225371pt;}
.y17_c03222{bottom:317.225563pt;}
.y15_c03222{bottom:361.386427pt;}
.y11_c03222{bottom:377.386939pt;}
.y16_c03222{bottom:407.786011pt;}
.y14_c03222{bottom:437.226235pt;}
.y13_c03222{bottom:453.226747pt;}
.y10_c03222{bottom:482.666971pt;}
.y12_c03222{bottom:497.386555pt;}
.yf_c03222{bottom:513.387067pt;}
.y1c_c03222{bottom:546.027067pt;}
.yb_c03222{bottom:593.385179pt;}
.yd_c03222{bottom:628.586875pt;}
.yc_c03222{bottom:637.227067pt;}
.ya_c03222{bottom:707.945339pt;}
.y9_c03222{bottom:779.945531pt;}
.y7_c03222{bottom:823.786427pt;}
.y3_c03222{bottom:839.786939pt;}
.y8_c03222{bottom:870.505979pt;}
.y6_c03222{bottom:899.946203pt;}
.y5_c03222{bottom:915.946715pt;}
.y2_c03222{bottom:945.386939pt;}
.y4_c03222{bottom:959.786555pt;}
.y1_c03222{bottom:975.787067pt;}
.ye_c03222{bottom:1008.747067pt;}
.h3_c03222{height:28.916250pt;}
.h1_c03222{height:37.063125pt;}
.h2_c03222{height:37.166250pt;}
.h4_c03222{height:48.581988pt;}
.h0_c03222{height:1122.666667pt;}
.w1_c03222{width:793.333333pt;}
.w0_c03222{width:793.626667pt;}
.x0_c03222{left:0.000000pt;}
.xd_c03222{left:104.000000pt;}
.x8_c03222{left:391.999872pt;}
.x4_c03222{left:396.160512pt;}
.xb_c03222{left:400.960000pt;}
.x7_c03222{left:404.799648pt;}
.x5_c03222{left:410.560128pt;}
.x1_c03222{left:411.840000pt;}
.xa_c03222{left:429.760320pt;}
.x9_c03222{left:437.439552pt;}
.x6_c03222{left:438.400512pt;}
.xc_c03222{left:450.560320pt;}
.x3_c03222{left:455.039904pt;}
.x2_c03222{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03223 {
    display:none;
  }
  .loading-indicator_c03223.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03223 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03223 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03223" -> "#page-container .classname_c03223")
 */
.pf_c03223 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03223 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03223.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03223 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03223 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03223 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03223 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03223 {overflow:visible;}
  }
}
.c_c03223 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03223 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03223:after { /* webkit #35443 */
  content: '';
}
.t_c03223:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03223 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03223 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03223 { /* info for Javascript */
  display:none;
}
.l_c03223 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03223 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03223 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03223:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03223 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03223.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03223.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03223 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03223{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03223;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03223{font-family:ff1_c03223;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03223;src:url('chunks/assets/font_62077fb75b082fb7abdc5958.woff2')format("woff");}.ff2_c03223{font-family:ff2_c03223;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03223;src:url('chunks/assets/font_7a7b9546b20d4e77265e449e.woff2')format("woff");}.ff3_c03223{font-family:ff3_c03223;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03223{vertical-align:0.000000px;}
.v2_c03223{vertical-align:1.439424px;}
.v1_c03223{vertical-align:33.121440px;}
.ls13_c03223{letter-spacing:-1.197504px;}
.ls7_c03223{letter-spacing:-0.613008px;}
.ls9_c03223{letter-spacing:-0.574992px;}
.lse_c03223{letter-spacing:-0.275616px;}
.lsc_c03223{letter-spacing:-0.261360px;}
.ls6_c03223{letter-spacing:-0.242352px;}
.ls4_c03223{letter-spacing:-0.118800px;}
.ls12_c03223{letter-spacing:0.000000px;}
.ls1_c03223{letter-spacing:0.006048px;}
.ls5_c03223{letter-spacing:0.128304px;}
.ls10_c03223{letter-spacing:0.166320px;}
.lsb_c03223{letter-spacing:0.508464px;}
.ls11_c03223{letter-spacing:0.514080px;}
.lsd_c03223{letter-spacing:0.536976px;}
.lsa_c03223{letter-spacing:0.579744px;}
.lsf_c03223{letter-spacing:0.594000px;}
.ls8_c03223{letter-spacing:0.598752px;}
.ls2_c03223{letter-spacing:0.613008px;}
.ls3_c03223{letter-spacing:0.717552px;}
.ls0_c03223{letter-spacing:0.722304px;}
.sc__c03223{text-shadow:none;}
.sc0_c03223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03223{-webkit-text-stroke:0px transparent;}
.sc0_c03223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c03223{word-spacing:-15.126048px;}
.ws11_c03223{word-spacing:-12.474000px;}
.ws8_c03223{word-spacing:-12.459744px;}
.ws9_c03223{word-spacing:-12.416976px;}
.ws4_c03223{word-spacing:-11.637648px;}
.ws2_c03223{word-spacing:-11.266992px;}
.ws15_c03223{word-spacing:-1.083456px;}
.ws12_c03223{word-spacing:-0.974160px;}
.ws18_c03223{word-spacing:-0.719712px;}
.ws14_c03223{word-spacing:-0.118800px;}
.ws16_c03223{word-spacing:-0.099792px;}
.ws17_c03223{word-spacing:-0.085536px;}
.ws13_c03223{word-spacing:0.000000px;}
.ws19_c03223{word-spacing:0.836352px;}
.wsd_c03223{word-spacing:4.747248px;}
.wse_c03223{word-spacing:5.037120px;}
.wsb_c03223{word-spacing:6.149088px;}
.wsc_c03223{word-spacing:6.961680px;}
.wsa_c03223{word-spacing:30.298752px;}
.wsf_c03223{word-spacing:33.300288px;}
.ws6_c03223{word-spacing:36.742464px;}
.ws1_c03223{word-spacing:37.759392px;}
.ws0_c03223{word-spacing:38.020752px;}
.ws3_c03223{word-spacing:39.218256px;}
.ws5_c03223{word-spacing:39.902544px;}
.ws7_c03223{word-spacing:42.026688px;}
._0_c03223{margin-left:-1.948320px;}
._2_c03223{width:1.482624px;}
._9_c03223{width:2.770416px;}
._4_c03223{width:5.749920px;}
._6_c03223{width:16.784064px;}
._8_c03223{width:18.366480px;}
._5_c03223{width:20.314800px;}
._7_c03223{width:22.291632px;}
._1_c03223{width:50.252400px;}
._3_c03223{width:51.530688px;}
.fc0_c03223{color:rgb(0,0,0);}
.fs0_c03223{font-size:47.520000px;}
.fs1_c03223{font-size:60.480000px;}
.y0_c03223{bottom:0.000000px;}
.y1b_c03223{bottom:146.998362px;}
.y1d_c03223{bottom:186.600234px;}
.y1c_c03223{bottom:196.320450px;}
.y1a_c03223{bottom:275.878542px;}
.y19_c03223{bottom:356.878758px;}
.y17_c03223{bottom:406.559730px;}
.y13_c03223{bottom:424.560306px;}
.y18_c03223{bottom:458.759262px;}
.y16_c03223{bottom:491.879514px;}
.y15_c03223{bottom:509.880090px;}
.y12_c03223{bottom:543.000342px;}
.y14_c03223{bottom:559.559874px;}
.y11_c03223{bottom:577.560450px;}
.y1e_c03223{bottom:614.280450px;}
.yb_c03223{bottom:667.558326px;}
.yf_c03223{bottom:685.561206px;}
.ye_c03223{bottom:700.320918px;}
.yd_c03223{bottom:707.160234px;}
.yc_c03223{bottom:716.880450px;}
.ya_c03223{bottom:796.438506px;}
.y9_c03223{bottom:877.438722px;}
.y7_c03223{bottom:926.759730px;}
.y3_c03223{bottom:944.760306px;}
.y8_c03223{bottom:979.319226px;}
.y6_c03223{bottom:1012.439478px;}
.y5_c03223{bottom:1030.440054px;}
.y2_c03223{bottom:1063.560306px;}
.y4_c03223{bottom:1079.759874px;}
.y1_c03223{bottom:1097.760450px;}
.y10_c03223{bottom:1134.840450px;}
.h3_c03223{height:32.530781px;}
.h1_c03223{height:41.696016px;}
.h2_c03223{height:41.812031px;}
.h5_c03223{height:54.654737px;}
.h4_c03223{height:74.817456px;}
.h0_c03223{height:1263.000000px;}
.w1_c03223{width:892.500000px;}
.w0_c03223{width:892.830000px;}
.x0_c03223{left:0.000000px;}
.xe_c03223{left:117.000000px;}
.x8_c03223{left:440.999856px;}
.x4_c03223{left:445.680576px;}
.xb_c03223{left:451.080000px;}
.x7_c03223{left:455.399604px;}
.x5_c03223{left:461.880144px;}
.x1_c03223{left:463.320000px;}
.xa_c03223{left:483.480360px;}
.x9_c03223{left:492.119496px;}
.x6_c03223{left:493.200576px;}
.xc_c03223{left:506.880360px;}
.x3_c03223{left:511.919892px;}
.x2_c03223{left:526.679604px;}
.xd_c03223{left:569.880000px;}
@media print{
.v0_c03223{vertical-align:0.000000pt;}
.v2_c03223{vertical-align:1.279488pt;}
.v1_c03223{vertical-align:29.441280pt;}
.ls13_c03223{letter-spacing:-1.064448pt;}
.ls7_c03223{letter-spacing:-0.544896pt;}
.ls9_c03223{letter-spacing:-0.511104pt;}
.lse_c03223{letter-spacing:-0.244992pt;}
.lsc_c03223{letter-spacing:-0.232320pt;}
.ls6_c03223{letter-spacing:-0.215424pt;}
.ls4_c03223{letter-spacing:-0.105600pt;}
.ls12_c03223{letter-spacing:0.000000pt;}
.ls1_c03223{letter-spacing:0.005376pt;}
.ls5_c03223{letter-spacing:0.114048pt;}
.ls10_c03223{letter-spacing:0.147840pt;}
.lsb_c03223{letter-spacing:0.451968pt;}
.ls11_c03223{letter-spacing:0.456960pt;}
.lsd_c03223{letter-spacing:0.477312pt;}
.lsa_c03223{letter-spacing:0.515328pt;}
.lsf_c03223{letter-spacing:0.528000pt;}
.ls8_c03223{letter-spacing:0.532224pt;}
.ls2_c03223{letter-spacing:0.544896pt;}
.ls3_c03223{letter-spacing:0.637824pt;}
.ls0_c03223{letter-spacing:0.642048pt;}
.ws10_c03223{word-spacing:-13.445376pt;}
.ws11_c03223{word-spacing:-11.088000pt;}
.ws8_c03223{word-spacing:-11.075328pt;}
.ws9_c03223{word-spacing:-11.037312pt;}
.ws4_c03223{word-spacing:-10.344576pt;}
.ws2_c03223{word-spacing:-10.015104pt;}
.ws15_c03223{word-spacing:-0.963072pt;}
.ws12_c03223{word-spacing:-0.865920pt;}
.ws18_c03223{word-spacing:-0.639744pt;}
.ws14_c03223{word-spacing:-0.105600pt;}
.ws16_c03223{word-spacing:-0.088704pt;}
.ws17_c03223{word-spacing:-0.076032pt;}
.ws13_c03223{word-spacing:0.000000pt;}
.ws19_c03223{word-spacing:0.743424pt;}
.wsd_c03223{word-spacing:4.219776pt;}
.wse_c03223{word-spacing:4.477440pt;}
.wsb_c03223{word-spacing:5.465856pt;}
.wsc_c03223{word-spacing:6.188160pt;}
.wsa_c03223{word-spacing:26.932224pt;}
.wsf_c03223{word-spacing:29.600256pt;}
.ws6_c03223{word-spacing:32.659968pt;}
.ws1_c03223{word-spacing:33.563904pt;}
.ws0_c03223{word-spacing:33.796224pt;}
.ws3_c03223{word-spacing:34.860672pt;}
.ws5_c03223{word-spacing:35.468928pt;}
.ws7_c03223{word-spacing:37.357056pt;}
._0_c03223{margin-left:-1.731840pt;}
._2_c03223{width:1.317888pt;}
._9_c03223{width:2.462592pt;}
._4_c03223{width:5.111040pt;}
._6_c03223{width:14.919168pt;}
._8_c03223{width:16.325760pt;}
._5_c03223{width:18.057600pt;}
._7_c03223{width:19.814784pt;}
._1_c03223{width:44.668800pt;}
._3_c03223{width:45.805056pt;}
.fs0_c03223{font-size:42.240000pt;}
.fs1_c03223{font-size:53.760000pt;}
.y0_c03223{bottom:0.000000pt;}
.y1b_c03223{bottom:130.665211pt;}
.y1d_c03223{bottom:165.866875pt;}
.y1c_c03223{bottom:174.507067pt;}
.y1a_c03223{bottom:245.225371pt;}
.y19_c03223{bottom:317.225563pt;}
.y17_c03223{bottom:361.386427pt;}
.y13_c03223{bottom:377.386939pt;}
.y18_c03223{bottom:407.786011pt;}
.y16_c03223{bottom:437.226235pt;}
.y15_c03223{bottom:453.226747pt;}
.y12_c03223{bottom:482.666971pt;}
.y14_c03223{bottom:497.386555pt;}
.y11_c03223{bottom:513.387067pt;}
.y1e_c03223{bottom:546.027067pt;}
.yb_c03223{bottom:593.385179pt;}
.yf_c03223{bottom:609.387739pt;}
.ye_c03223{bottom:622.507483pt;}
.yd_c03223{bottom:628.586875pt;}
.yc_c03223{bottom:637.227067pt;}
.ya_c03223{bottom:707.945339pt;}
.y9_c03223{bottom:779.945531pt;}
.y7_c03223{bottom:823.786427pt;}
.y3_c03223{bottom:839.786939pt;}
.y8_c03223{bottom:870.505979pt;}
.y6_c03223{bottom:899.946203pt;}
.y5_c03223{bottom:915.946715pt;}
.y2_c03223{bottom:945.386939pt;}
.y4_c03223{bottom:959.786555pt;}
.y1_c03223{bottom:975.787067pt;}
.y10_c03223{bottom:1008.747067pt;}
.h3_c03223{height:28.916250pt;}
.h1_c03223{height:37.063125pt;}
.h2_c03223{height:37.166250pt;}
.h5_c03223{height:48.581988pt;}
.h4_c03223{height:66.504405pt;}
.h0_c03223{height:1122.666667pt;}
.w1_c03223{width:793.333333pt;}
.w0_c03223{width:793.626667pt;}
.x0_c03223{left:0.000000pt;}
.xe_c03223{left:104.000000pt;}
.x8_c03223{left:391.999872pt;}
.x4_c03223{left:396.160512pt;}
.xb_c03223{left:400.960000pt;}
.x7_c03223{left:404.799648pt;}
.x5_c03223{left:410.560128pt;}
.x1_c03223{left:411.840000pt;}
.xa_c03223{left:429.760320pt;}
.x9_c03223{left:437.439552pt;}
.x6_c03223{left:438.400512pt;}
.xc_c03223{left:450.560320pt;}
.x3_c03223{left:455.039904pt;}
.x2_c03223{left:468.159648pt;}
.xd_c03223{left:506.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03224 {
    display:none;
  }
  .loading-indicator_c03224.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03224 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03224 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03224" -> "#page-container .classname_c03224")
 */
.pf_c03224 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03224 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03224.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03224 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03224 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03224 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03224 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03224 {overflow:visible;}
  }
}
.c_c03224 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03224 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03224:after { /* webkit #35443 */
  content: '';
}
.t_c03224:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03224 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03224 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03224 { /* info for Javascript */
  display:none;
}
.l_c03224 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03224 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03224 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03224:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03224 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03224.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03224.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03224 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03224{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03224;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03224{font-family:ff1_c03224;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03224;src:url('chunks/assets/font_8e1de432c3f02a49703813fe.woff2')format("woff");}.ff2_c03224{font-family:ff2_c03224;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03224;src:url('chunks/assets/font_ba382db4c4a0083be8261c9b.woff2')format("woff");}.ff3_c03224{font-family:ff3_c03224;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03224{vertical-align:0.000000px;}
.v1_c03224{vertical-align:1.439424px;}
.v2_c03224{vertical-align:5.759424px;}
.lsc_c03224{letter-spacing:-1.197504px;}
.ls7_c03224{letter-spacing:-0.613008px;}
.ls9_c03224{letter-spacing:-0.574992px;}
.lsf_c03224{letter-spacing:-0.275616px;}
.lsd_c03224{letter-spacing:-0.261360px;}
.ls6_c03224{letter-spacing:-0.242352px;}
.ls13_c03224{letter-spacing:-0.228096px;}
.ls4_c03224{letter-spacing:-0.118800px;}
.ls12_c03224{letter-spacing:0.000000px;}
.ls1_c03224{letter-spacing:0.006048px;}
.ls5_c03224{letter-spacing:0.128304px;}
.lsb_c03224{letter-spacing:0.508464px;}
.ls11_c03224{letter-spacing:0.514080px;}
.lse_c03224{letter-spacing:0.536976px;}
.lsa_c03224{letter-spacing:0.579744px;}
.ls10_c03224{letter-spacing:0.594000px;}
.ls8_c03224{letter-spacing:0.598752px;}
.ls3_c03224{letter-spacing:0.613008px;}
.ls2_c03224{letter-spacing:0.717552px;}
.ls0_c03224{letter-spacing:0.722304px;}
.sc__c03224{text-shadow:none;}
.sc0_c03224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03224{-webkit-text-stroke:0px transparent;}
.sc0_c03224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03224{word-spacing:-15.126048px;}
.wsd_c03224{word-spacing:-12.602304px;}
.wsa_c03224{word-spacing:-12.474000px;}
.ws8_c03224{word-spacing:-12.459744px;}
.ws9_c03224{word-spacing:-12.416976px;}
.wsf_c03224{word-spacing:-11.651904px;}
.ws4_c03224{word-spacing:-11.637648px;}
.ws2_c03224{word-spacing:-11.266992px;}
.ws13_c03224{word-spacing:-1.083456px;}
.ws18_c03224{word-spacing:-1.078704px;}
.ws10_c03224{word-spacing:-0.974160px;}
.ws17_c03224{word-spacing:-0.719712px;}
.ws12_c03224{word-spacing:-0.118800px;}
.ws15_c03224{word-spacing:-0.099792px;}
.ws16_c03224{word-spacing:-0.085536px;}
.ws11_c03224{word-spacing:0.000000px;}
.ws14_c03224{word-spacing:0.836352px;}
.wsb_c03224{word-spacing:33.300288px;}
.wse_c03224{word-spacing:34.836912px;}
.ws6_c03224{word-spacing:36.742464px;}
.ws1_c03224{word-spacing:37.759392px;}
.ws0_c03224{word-spacing:38.020752px;}
.ws3_c03224{word-spacing:39.218256px;}
.ws5_c03224{word-spacing:39.902544px;}
.ws7_c03224{word-spacing:42.026688px;}
._0_c03224{margin-left:-1.948320px;}
._2_c03224{width:1.482624px;}
._5_c03224{width:2.770416px;}
._4_c03224{width:5.749920px;}
._1_c03224{width:50.252400px;}
._3_c03224{width:51.530688px;}
.fc0_c03224{color:rgb(0,0,0);}
.fs0_c03224{font-size:47.520000px;}
.fs1_c03224{font-size:60.480000px;}
.y0_c03224{bottom:0.000000px;}
.y19_c03224{bottom:146.998362px;}
.y1b_c03224{bottom:186.600234px;}
.y1a_c03224{bottom:196.320450px;}
.y18_c03224{bottom:275.878542px;}
.y17_c03224{bottom:356.878758px;}
.y15_c03224{bottom:406.559730px;}
.y11_c03224{bottom:424.560306px;}
.y16_c03224{bottom:458.759262px;}
.y14_c03224{bottom:491.879514px;}
.y13_c03224{bottom:509.880090px;}
.y10_c03224{bottom:543.000342px;}
.y12_c03224{bottom:559.559874px;}
.yf_c03224{bottom:577.560450px;}
.y1c_c03224{bottom:614.280450px;}
.yb_c03224{bottom:667.558326px;}
.yd_c03224{bottom:707.160234px;}
.yc_c03224{bottom:716.880450px;}
.ya_c03224{bottom:796.438506px;}
.y9_c03224{bottom:877.438722px;}
.y7_c03224{bottom:926.759730px;}
.y3_c03224{bottom:944.760306px;}
.y8_c03224{bottom:979.319226px;}
.y6_c03224{bottom:1012.439478px;}
.y5_c03224{bottom:1030.440054px;}
.y2_c03224{bottom:1063.560306px;}
.y4_c03224{bottom:1079.759874px;}
.y1_c03224{bottom:1097.760450px;}
.ye_c03224{bottom:1134.840450px;}
.h3_c03224{height:32.530781px;}
.h1_c03224{height:41.696016px;}
.h2_c03224{height:41.812031px;}
.h5_c03224{height:47.571455px;}
.h4_c03224{height:54.654737px;}
.h0_c03224{height:1263.000000px;}
.w1_c03224{width:892.500000px;}
.w0_c03224{width:892.830000px;}
.x0_c03224{left:0.000000px;}
.xd_c03224{left:117.000000px;}
.x8_c03224{left:440.999856px;}
.x4_c03224{left:445.680576px;}
.xb_c03224{left:451.080000px;}
.x7_c03224{left:455.399604px;}
.x5_c03224{left:461.880144px;}
.x1_c03224{left:463.320000px;}
.xa_c03224{left:483.480360px;}
.x9_c03224{left:492.119496px;}
.x6_c03224{left:493.200576px;}
.xc_c03224{left:506.880360px;}
.x3_c03224{left:511.919892px;}
.x2_c03224{left:526.679604px;}
@media print{
.v0_c03224{vertical-align:0.000000pt;}
.v1_c03224{vertical-align:1.279488pt;}
.v2_c03224{vertical-align:5.119488pt;}
.lsc_c03224{letter-spacing:-1.064448pt;}
.ls7_c03224{letter-spacing:-0.544896pt;}
.ls9_c03224{letter-spacing:-0.511104pt;}
.lsf_c03224{letter-spacing:-0.244992pt;}
.lsd_c03224{letter-spacing:-0.232320pt;}
.ls6_c03224{letter-spacing:-0.215424pt;}
.ls13_c03224{letter-spacing:-0.202752pt;}
.ls4_c03224{letter-spacing:-0.105600pt;}
.ls12_c03224{letter-spacing:0.000000pt;}
.ls1_c03224{letter-spacing:0.005376pt;}
.ls5_c03224{letter-spacing:0.114048pt;}
.lsb_c03224{letter-spacing:0.451968pt;}
.ls11_c03224{letter-spacing:0.456960pt;}
.lse_c03224{letter-spacing:0.477312pt;}
.lsa_c03224{letter-spacing:0.515328pt;}
.ls10_c03224{letter-spacing:0.528000pt;}
.ls8_c03224{letter-spacing:0.532224pt;}
.ls3_c03224{letter-spacing:0.544896pt;}
.ls2_c03224{letter-spacing:0.637824pt;}
.ls0_c03224{letter-spacing:0.642048pt;}
.wsc_c03224{word-spacing:-13.445376pt;}
.wsd_c03224{word-spacing:-11.202048pt;}
.wsa_c03224{word-spacing:-11.088000pt;}
.ws8_c03224{word-spacing:-11.075328pt;}
.ws9_c03224{word-spacing:-11.037312pt;}
.wsf_c03224{word-spacing:-10.357248pt;}
.ws4_c03224{word-spacing:-10.344576pt;}
.ws2_c03224{word-spacing:-10.015104pt;}
.ws13_c03224{word-spacing:-0.963072pt;}
.ws18_c03224{word-spacing:-0.958848pt;}
.ws10_c03224{word-spacing:-0.865920pt;}
.ws17_c03224{word-spacing:-0.639744pt;}
.ws12_c03224{word-spacing:-0.105600pt;}
.ws15_c03224{word-spacing:-0.088704pt;}
.ws16_c03224{word-spacing:-0.076032pt;}
.ws11_c03224{word-spacing:0.000000pt;}
.ws14_c03224{word-spacing:0.743424pt;}
.wsb_c03224{word-spacing:29.600256pt;}
.wse_c03224{word-spacing:30.966144pt;}
.ws6_c03224{word-spacing:32.659968pt;}
.ws1_c03224{word-spacing:33.563904pt;}
.ws0_c03224{word-spacing:33.796224pt;}
.ws3_c03224{word-spacing:34.860672pt;}
.ws5_c03224{word-spacing:35.468928pt;}
.ws7_c03224{word-spacing:37.357056pt;}
._0_c03224{margin-left:-1.731840pt;}
._2_c03224{width:1.317888pt;}
._5_c03224{width:2.462592pt;}
._4_c03224{width:5.111040pt;}
._1_c03224{width:44.668800pt;}
._3_c03224{width:45.805056pt;}
.fs0_c03224{font-size:42.240000pt;}
.fs1_c03224{font-size:53.760000pt;}
.y0_c03224{bottom:0.000000pt;}
.y19_c03224{bottom:130.665211pt;}
.y1b_c03224{bottom:165.866875pt;}
.y1a_c03224{bottom:174.507067pt;}
.y18_c03224{bottom:245.225371pt;}
.y17_c03224{bottom:317.225563pt;}
.y15_c03224{bottom:361.386427pt;}
.y11_c03224{bottom:377.386939pt;}
.y16_c03224{bottom:407.786011pt;}
.y14_c03224{bottom:437.226235pt;}
.y13_c03224{bottom:453.226747pt;}
.y10_c03224{bottom:482.666971pt;}
.y12_c03224{bottom:497.386555pt;}
.yf_c03224{bottom:513.387067pt;}
.y1c_c03224{bottom:546.027067pt;}
.yb_c03224{bottom:593.385179pt;}
.yd_c03224{bottom:628.586875pt;}
.yc_c03224{bottom:637.227067pt;}
.ya_c03224{bottom:707.945339pt;}
.y9_c03224{bottom:779.945531pt;}
.y7_c03224{bottom:823.786427pt;}
.y3_c03224{bottom:839.786939pt;}
.y8_c03224{bottom:870.505979pt;}
.y6_c03224{bottom:899.946203pt;}
.y5_c03224{bottom:915.946715pt;}
.y2_c03224{bottom:945.386939pt;}
.y4_c03224{bottom:959.786555pt;}
.y1_c03224{bottom:975.787067pt;}
.ye_c03224{bottom:1008.747067pt;}
.h3_c03224{height:28.916250pt;}
.h1_c03224{height:37.063125pt;}
.h2_c03224{height:37.166250pt;}
.h5_c03224{height:42.285738pt;}
.h4_c03224{height:48.581988pt;}
.h0_c03224{height:1122.666667pt;}
.w1_c03224{width:793.333333pt;}
.w0_c03224{width:793.626667pt;}
.x0_c03224{left:0.000000pt;}
.xd_c03224{left:104.000000pt;}
.x8_c03224{left:391.999872pt;}
.x4_c03224{left:396.160512pt;}
.xb_c03224{left:400.960000pt;}
.x7_c03224{left:404.799648pt;}
.x5_c03224{left:410.560128pt;}
.x1_c03224{left:411.840000pt;}
.xa_c03224{left:429.760320pt;}
.x9_c03224{left:437.439552pt;}
.x6_c03224{left:438.400512pt;}
.xc_c03224{left:450.560320pt;}
.x3_c03224{left:455.039904pt;}
.x2_c03224{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03225 {
    display:none;
  }
  .loading-indicator_c03225.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03225 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03225 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03225" -> "#page-container .classname_c03225")
 */
.pf_c03225 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03225 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03225.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03225 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03225 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03225 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03225 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03225 {overflow:visible;}
  }
}
.c_c03225 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03225 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03225:after { /* webkit #35443 */
  content: '';
}
.t_c03225:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03225 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03225 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03225 { /* info for Javascript */
  display:none;
}
.l_c03225 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03225 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03225 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03225:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03225 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03225.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03225.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03225 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03225{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03225;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03225{font-family:ff1_c03225;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03225;src:url('chunks/assets/font_35dfe808f6f77a9769d44f4a.woff2')format("woff");}.ff2_c03225{font-family:ff2_c03225;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03225;src:url('chunks/assets/font_ba382db4c4a0083be8261c9b.woff2')format("woff");}.ff3_c03225{font-family:ff3_c03225;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03225{vertical-align:0.000000px;}
.v2_c03225{vertical-align:1.439424px;}
.v3_c03225{vertical-align:5.759424px;}
.v1_c03225{vertical-align:7.199280px;}
.lsb_c03225{letter-spacing:-1.197504px;}
.ls8_c03225{letter-spacing:-0.574992px;}
.lsf_c03225{letter-spacing:-0.275616px;}
.lsc_c03225{letter-spacing:-0.261360px;}
.ls5_c03225{letter-spacing:-0.242352px;}
.lse_c03225{letter-spacing:-0.228096px;}
.ls3_c03225{letter-spacing:-0.118800px;}
.ls12_c03225{letter-spacing:0.000000px;}
.ls1_c03225{letter-spacing:0.006048px;}
.ls4_c03225{letter-spacing:0.128304px;}
.lsa_c03225{letter-spacing:0.508464px;}
.ls11_c03225{letter-spacing:0.514080px;}
.lsd_c03225{letter-spacing:0.536976px;}
.ls9_c03225{letter-spacing:0.579744px;}
.ls10_c03225{letter-spacing:0.594000px;}
.ls7_c03225{letter-spacing:0.598752px;}
.ls2_c03225{letter-spacing:0.613008px;}
.ls0_c03225{letter-spacing:0.717552px;}
.ls6_c03225{letter-spacing:0.722304px;}
.sc__c03225{text-shadow:none;}
.sc0_c03225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03225{-webkit-text-stroke:0px transparent;}
.sc0_c03225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03225{word-spacing:-15.126048px;}
.ws2_c03225{word-spacing:-12.602304px;}
.wsb_c03225{word-spacing:-12.474000px;}
.ws8_c03225{word-spacing:-12.459744px;}
.wsa_c03225{word-spacing:-11.651904px;}
.ws4_c03225{word-spacing:-11.637648px;}
.ws11_c03225{word-spacing:-1.078704px;}
.wse_c03225{word-spacing:-0.974160px;}
.ws15_c03225{word-spacing:-0.719712px;}
.ws10_c03225{word-spacing:-0.118800px;}
.ws13_c03225{word-spacing:-0.099792px;}
.ws14_c03225{word-spacing:-0.085536px;}
.wsf_c03225{word-spacing:0.000000px;}
.ws12_c03225{word-spacing:0.836352px;}
.wsc_c03225{word-spacing:33.300288px;}
.ws9_c03225{word-spacing:34.836912px;}
.ws6_c03225{word-spacing:36.742464px;}
.ws1_c03225{word-spacing:37.759392px;}
.ws0_c03225{word-spacing:38.020752px;}
.ws3_c03225{word-spacing:39.218256px;}
.ws5_c03225{word-spacing:39.902544px;}
.ws7_c03225{word-spacing:42.026688px;}
._0_c03225{margin-left:-1.948320px;}
._2_c03225{width:1.482624px;}
._4_c03225{width:2.770416px;}
._1_c03225{width:50.252400px;}
._3_c03225{width:51.530688px;}
.fc0_c03225{color:rgb(0,0,0);}
.fs0_c03225{font-size:47.520000px;}
.fs1_c03225{font-size:60.480000px;}
.y0_c03225{bottom:0.000000px;}
.y19_c03225{bottom:146.998362px;}
.y1b_c03225{bottom:186.600234px;}
.y1a_c03225{bottom:196.320450px;}
.y18_c03225{bottom:275.878542px;}
.y17_c03225{bottom:356.878758px;}
.y15_c03225{bottom:406.559730px;}
.y11_c03225{bottom:424.560306px;}
.y16_c03225{bottom:458.759262px;}
.y14_c03225{bottom:491.879514px;}
.y13_c03225{bottom:509.880090px;}
.y10_c03225{bottom:543.000342px;}
.y12_c03225{bottom:559.559874px;}
.yf_c03225{bottom:577.560450px;}
.y1c_c03225{bottom:614.280450px;}
.yb_c03225{bottom:667.558326px;}
.yd_c03225{bottom:707.160234px;}
.yc_c03225{bottom:716.880450px;}
.ya_c03225{bottom:796.438506px;}
.y9_c03225{bottom:877.438722px;}
.y7_c03225{bottom:926.759730px;}
.y3_c03225{bottom:944.760306px;}
.y8_c03225{bottom:979.319226px;}
.y6_c03225{bottom:1012.439478px;}
.y5_c03225{bottom:1030.440054px;}
.y2_c03225{bottom:1063.560306px;}
.y4_c03225{bottom:1079.759874px;}
.y1_c03225{bottom:1097.760450px;}
.ye_c03225{bottom:1134.840450px;}
.h4_c03225{height:32.530781px;}
.h1_c03225{height:41.696016px;}
.h2_c03225{height:41.812031px;}
.h6_c03225{height:47.571455px;}
.h3_c03225{height:49.011311px;}
.h5_c03225{height:54.654737px;}
.h0_c03225{height:1263.000000px;}
.w1_c03225{width:892.500000px;}
.w0_c03225{width:892.830000px;}
.x0_c03225{left:0.000000px;}
.xd_c03225{left:117.000000px;}
.x8_c03225{left:440.998668px;}
.x4_c03225{left:445.680576px;}
.xb_c03225{left:451.080000px;}
.x7_c03225{left:455.398416px;}
.x5_c03225{left:461.880144px;}
.x1_c03225{left:463.320000px;}
.xa_c03225{left:483.479172px;}
.x9_c03225{left:492.118308px;}
.x6_c03225{left:493.199388px;}
.xc_c03225{left:506.880360px;}
.x3_c03225{left:511.919892px;}
.x2_c03225{left:526.679604px;}
@media print{
.v0_c03225{vertical-align:0.000000pt;}
.v2_c03225{vertical-align:1.279488pt;}
.v3_c03225{vertical-align:5.119488pt;}
.v1_c03225{vertical-align:6.399360pt;}
.lsb_c03225{letter-spacing:-1.064448pt;}
.ls8_c03225{letter-spacing:-0.511104pt;}
.lsf_c03225{letter-spacing:-0.244992pt;}
.lsc_c03225{letter-spacing:-0.232320pt;}
.ls5_c03225{letter-spacing:-0.215424pt;}
.lse_c03225{letter-spacing:-0.202752pt;}
.ls3_c03225{letter-spacing:-0.105600pt;}
.ls12_c03225{letter-spacing:0.000000pt;}
.ls1_c03225{letter-spacing:0.005376pt;}
.ls4_c03225{letter-spacing:0.114048pt;}
.lsa_c03225{letter-spacing:0.451968pt;}
.ls11_c03225{letter-spacing:0.456960pt;}
.lsd_c03225{letter-spacing:0.477312pt;}
.ls9_c03225{letter-spacing:0.515328pt;}
.ls10_c03225{letter-spacing:0.528000pt;}
.ls7_c03225{letter-spacing:0.532224pt;}
.ls2_c03225{letter-spacing:0.544896pt;}
.ls0_c03225{letter-spacing:0.637824pt;}
.ls6_c03225{letter-spacing:0.642048pt;}
.wsd_c03225{word-spacing:-13.445376pt;}
.ws2_c03225{word-spacing:-11.202048pt;}
.wsb_c03225{word-spacing:-11.088000pt;}
.ws8_c03225{word-spacing:-11.075328pt;}
.wsa_c03225{word-spacing:-10.357248pt;}
.ws4_c03225{word-spacing:-10.344576pt;}
.ws11_c03225{word-spacing:-0.958848pt;}
.wse_c03225{word-spacing:-0.865920pt;}
.ws15_c03225{word-spacing:-0.639744pt;}
.ws10_c03225{word-spacing:-0.105600pt;}
.ws13_c03225{word-spacing:-0.088704pt;}
.ws14_c03225{word-spacing:-0.076032pt;}
.wsf_c03225{word-spacing:0.000000pt;}
.ws12_c03225{word-spacing:0.743424pt;}
.wsc_c03225{word-spacing:29.600256pt;}
.ws9_c03225{word-spacing:30.966144pt;}
.ws6_c03225{word-spacing:32.659968pt;}
.ws1_c03225{word-spacing:33.563904pt;}
.ws0_c03225{word-spacing:33.796224pt;}
.ws3_c03225{word-spacing:34.860672pt;}
.ws5_c03225{word-spacing:35.468928pt;}
.ws7_c03225{word-spacing:37.357056pt;}
._0_c03225{margin-left:-1.731840pt;}
._2_c03225{width:1.317888pt;}
._4_c03225{width:2.462592pt;}
._1_c03225{width:44.668800pt;}
._3_c03225{width:45.805056pt;}
.fs0_c03225{font-size:42.240000pt;}
.fs1_c03225{font-size:53.760000pt;}
.y0_c03225{bottom:0.000000pt;}
.y19_c03225{bottom:130.665211pt;}
.y1b_c03225{bottom:165.866875pt;}
.y1a_c03225{bottom:174.507067pt;}
.y18_c03225{bottom:245.225371pt;}
.y17_c03225{bottom:317.225563pt;}
.y15_c03225{bottom:361.386427pt;}
.y11_c03225{bottom:377.386939pt;}
.y16_c03225{bottom:407.786011pt;}
.y14_c03225{bottom:437.226235pt;}
.y13_c03225{bottom:453.226747pt;}
.y10_c03225{bottom:482.666971pt;}
.y12_c03225{bottom:497.386555pt;}
.yf_c03225{bottom:513.387067pt;}
.y1c_c03225{bottom:546.027067pt;}
.yb_c03225{bottom:593.385179pt;}
.yd_c03225{bottom:628.586875pt;}
.yc_c03225{bottom:637.227067pt;}
.ya_c03225{bottom:707.945339pt;}
.y9_c03225{bottom:779.945531pt;}
.y7_c03225{bottom:823.786427pt;}
.y3_c03225{bottom:839.786939pt;}
.y8_c03225{bottom:870.505979pt;}
.y6_c03225{bottom:899.946203pt;}
.y5_c03225{bottom:915.946715pt;}
.y2_c03225{bottom:945.386939pt;}
.y4_c03225{bottom:959.786555pt;}
.y1_c03225{bottom:975.787067pt;}
.ye_c03225{bottom:1008.747067pt;}
.h4_c03225{height:28.916250pt;}
.h1_c03225{height:37.063125pt;}
.h2_c03225{height:37.166250pt;}
.h6_c03225{height:42.285738pt;}
.h3_c03225{height:43.565610pt;}
.h5_c03225{height:48.581988pt;}
.h0_c03225{height:1122.666667pt;}
.w1_c03225{width:793.333333pt;}
.w0_c03225{width:793.626667pt;}
.x0_c03225{left:0.000000pt;}
.xd_c03225{left:104.000000pt;}
.x8_c03225{left:391.998816pt;}
.x4_c03225{left:396.160512pt;}
.xb_c03225{left:400.960000pt;}
.x7_c03225{left:404.798592pt;}
.x5_c03225{left:410.560128pt;}
.x1_c03225{left:411.840000pt;}
.xa_c03225{left:429.759264pt;}
.x9_c03225{left:437.438496pt;}
.x6_c03225{left:438.399456pt;}
.xc_c03225{left:450.560320pt;}
.x3_c03225{left:455.039904pt;}
.x2_c03225{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03226 {
    display:none;
  }
  .loading-indicator_c03226.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03226 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03226 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03226" -> "#page-container .classname_c03226")
 */
.pf_c03226 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03226 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03226.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03226 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03226 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03226 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03226 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03226 {overflow:visible;}
  }
}
.c_c03226 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03226 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03226:after { /* webkit #35443 */
  content: '';
}
.t_c03226:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03226 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03226 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03226 { /* info for Javascript */
  display:none;
}
.l_c03226 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03226 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03226 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03226:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03226 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03226.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03226.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03226 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03226{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03226;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03226{font-family:ff1_c03226;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03226;src:url('chunks/assets/font_7b34f6a7ccb5954608cac369.woff2')format("woff");}.ff2_c03226{font-family:ff2_c03226;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03226;src:url('chunks/assets/font_ba382db4c4a0083be8261c9b.woff2')format("woff");}.ff3_c03226{font-family:ff3_c03226;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03226{vertical-align:0.000000px;}
.v2_c03226{vertical-align:1.439424px;}
.v3_c03226{vertical-align:5.759424px;}
.v1_c03226{vertical-align:7.199280px;}
.lsb_c03226{letter-spacing:-1.197504px;}
.lse_c03226{letter-spacing:-0.736560px;}
.ls8_c03226{letter-spacing:-0.574992px;}
.lsf_c03226{letter-spacing:-0.270864px;}
.lsc_c03226{letter-spacing:-0.261360px;}
.ls5_c03226{letter-spacing:-0.242352px;}
.ls3_c03226{letter-spacing:-0.118800px;}
.ls12_c03226{letter-spacing:0.000000px;}
.ls1_c03226{letter-spacing:0.006048px;}
.ls4_c03226{letter-spacing:0.128304px;}
.lsa_c03226{letter-spacing:0.508464px;}
.ls11_c03226{letter-spacing:0.514080px;}
.lsd_c03226{letter-spacing:0.536976px;}
.ls9_c03226{letter-spacing:0.579744px;}
.ls10_c03226{letter-spacing:0.594000px;}
.ls7_c03226{letter-spacing:0.598752px;}
.ls2_c03226{letter-spacing:0.613008px;}
.ls0_c03226{letter-spacing:0.717552px;}
.ls6_c03226{letter-spacing:0.722304px;}
.sc__c03226{text-shadow:none;}
.sc0_c03226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03226{-webkit-text-stroke:0px transparent;}
.sc0_c03226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03226{word-spacing:-15.126048px;}
.ws2_c03226{word-spacing:-12.602304px;}
.wsa_c03226{word-spacing:-12.474000px;}
.ws6_c03226{word-spacing:-12.459744px;}
.ws4_c03226{word-spacing:-11.637648px;}
.ws10_c03226{word-spacing:-1.078704px;}
.wsd_c03226{word-spacing:-0.974160px;}
.ws15_c03226{word-spacing:-0.719712px;}
.wsf_c03226{word-spacing:-0.118800px;}
.ws12_c03226{word-spacing:-0.099792px;}
.ws13_c03226{word-spacing:-0.090288px;}
.ws14_c03226{word-spacing:-0.085536px;}
.wse_c03226{word-spacing:0.000000px;}
.ws11_c03226{word-spacing:0.836352px;}
.ws9_c03226{word-spacing:6.629040px;}
.wsb_c03226{word-spacing:33.300288px;}
.ws8_c03226{word-spacing:34.836912px;}
.ws1_c03226{word-spacing:37.759392px;}
.ws0_c03226{word-spacing:38.020752px;}
.ws3_c03226{word-spacing:39.218256px;}
.ws5_c03226{word-spacing:39.902544px;}
.ws7_c03226{word-spacing:42.026688px;}
._0_c03226{margin-left:-1.948320px;}
._2_c03226{width:1.482624px;}
._4_c03226{width:2.770416px;}
._6_c03226{width:19.982160px;}
._7_c03226{width:23.451120px;}
._5_c03226{width:24.691392px;}
._1_c03226{width:50.252400px;}
._3_c03226{width:51.530688px;}
.fc0_c03226{color:rgb(0,0,0);}
.fs0_c03226{font-size:47.520000px;}
.fs1_c03226{font-size:60.480000px;}
.y0_c03226{bottom:0.000000px;}
.y1b_c03226{bottom:131.878686px;}
.y1a_c03226{bottom:146.998362px;}
.y1d_c03226{bottom:186.600234px;}
.y1c_c03226{bottom:196.320450px;}
.y19_c03226{bottom:275.878542px;}
.y18_c03226{bottom:356.878758px;}
.y16_c03226{bottom:406.559730px;}
.y12_c03226{bottom:424.560306px;}
.y17_c03226{bottom:458.759262px;}
.y15_c03226{bottom:491.879514px;}
.y14_c03226{bottom:509.880090px;}
.y11_c03226{bottom:543.000342px;}
.y13_c03226{bottom:559.559874px;}
.y10_c03226{bottom:577.560450px;}
.y1e_c03226{bottom:614.280450px;}
.yc_c03226{bottom:652.438650px;}
.yb_c03226{bottom:667.558326px;}
.ye_c03226{bottom:707.160234px;}
.yd_c03226{bottom:716.880450px;}
.ya_c03226{bottom:796.438506px;}
.y9_c03226{bottom:877.438722px;}
.y7_c03226{bottom:926.759730px;}
.y3_c03226{bottom:944.760306px;}
.y8_c03226{bottom:979.319226px;}
.y6_c03226{bottom:1012.439478px;}
.y5_c03226{bottom:1030.440054px;}
.y2_c03226{bottom:1063.560306px;}
.y4_c03226{bottom:1079.759874px;}
.y1_c03226{bottom:1097.760450px;}
.yf_c03226{bottom:1134.840450px;}
.h4_c03226{height:32.530781px;}
.h1_c03226{height:41.696016px;}
.h2_c03226{height:41.812031px;}
.h6_c03226{height:47.571455px;}
.h3_c03226{height:49.011311px;}
.h5_c03226{height:54.654737px;}
.h0_c03226{height:1263.000000px;}
.w1_c03226{width:892.500000px;}
.w0_c03226{width:892.830000px;}
.x0_c03226{left:0.000000px;}
.xe_c03226{left:117.000000px;}
.x8_c03226{left:440.998668px;}
.x4_c03226{left:445.680576px;}
.xc_c03226{left:451.080000px;}
.x7_c03226{left:455.398416px;}
.x5_c03226{left:461.880144px;}
.x1_c03226{left:463.320000px;}
.xa_c03226{left:483.479172px;}
.x9_c03226{left:492.118308px;}
.x6_c03226{left:493.199388px;}
.xd_c03226{left:506.880360px;}
.x3_c03226{left:511.919892px;}
.x2_c03226{left:526.679604px;}
.xb_c03226{left:569.878848px;}
@media print{
.v0_c03226{vertical-align:0.000000pt;}
.v2_c03226{vertical-align:1.279488pt;}
.v3_c03226{vertical-align:5.119488pt;}
.v1_c03226{vertical-align:6.399360pt;}
.lsb_c03226{letter-spacing:-1.064448pt;}
.lse_c03226{letter-spacing:-0.654720pt;}
.ls8_c03226{letter-spacing:-0.511104pt;}
.lsf_c03226{letter-spacing:-0.240768pt;}
.lsc_c03226{letter-spacing:-0.232320pt;}
.ls5_c03226{letter-spacing:-0.215424pt;}
.ls3_c03226{letter-spacing:-0.105600pt;}
.ls12_c03226{letter-spacing:0.000000pt;}
.ls1_c03226{letter-spacing:0.005376pt;}
.ls4_c03226{letter-spacing:0.114048pt;}
.lsa_c03226{letter-spacing:0.451968pt;}
.ls11_c03226{letter-spacing:0.456960pt;}
.lsd_c03226{letter-spacing:0.477312pt;}
.ls9_c03226{letter-spacing:0.515328pt;}
.ls10_c03226{letter-spacing:0.528000pt;}
.ls7_c03226{letter-spacing:0.532224pt;}
.ls2_c03226{letter-spacing:0.544896pt;}
.ls0_c03226{letter-spacing:0.637824pt;}
.ls6_c03226{letter-spacing:0.642048pt;}
.wsc_c03226{word-spacing:-13.445376pt;}
.ws2_c03226{word-spacing:-11.202048pt;}
.wsa_c03226{word-spacing:-11.088000pt;}
.ws6_c03226{word-spacing:-11.075328pt;}
.ws4_c03226{word-spacing:-10.344576pt;}
.ws10_c03226{word-spacing:-0.958848pt;}
.wsd_c03226{word-spacing:-0.865920pt;}
.ws15_c03226{word-spacing:-0.639744pt;}
.wsf_c03226{word-spacing:-0.105600pt;}
.ws12_c03226{word-spacing:-0.088704pt;}
.ws13_c03226{word-spacing:-0.080256pt;}
.ws14_c03226{word-spacing:-0.076032pt;}
.wse_c03226{word-spacing:0.000000pt;}
.ws11_c03226{word-spacing:0.743424pt;}
.ws9_c03226{word-spacing:5.892480pt;}
.wsb_c03226{word-spacing:29.600256pt;}
.ws8_c03226{word-spacing:30.966144pt;}
.ws1_c03226{word-spacing:33.563904pt;}
.ws0_c03226{word-spacing:33.796224pt;}
.ws3_c03226{word-spacing:34.860672pt;}
.ws5_c03226{word-spacing:35.468928pt;}
.ws7_c03226{word-spacing:37.357056pt;}
._0_c03226{margin-left:-1.731840pt;}
._2_c03226{width:1.317888pt;}
._4_c03226{width:2.462592pt;}
._6_c03226{width:17.761920pt;}
._7_c03226{width:20.845440pt;}
._5_c03226{width:21.947904pt;}
._1_c03226{width:44.668800pt;}
._3_c03226{width:45.805056pt;}
.fs0_c03226{font-size:42.240000pt;}
.fs1_c03226{font-size:53.760000pt;}
.y0_c03226{bottom:0.000000pt;}
.y1b_c03226{bottom:117.225499pt;}
.y1a_c03226{bottom:130.665211pt;}
.y1d_c03226{bottom:165.866875pt;}
.y1c_c03226{bottom:174.507067pt;}
.y19_c03226{bottom:245.225371pt;}
.y18_c03226{bottom:317.225563pt;}
.y16_c03226{bottom:361.386427pt;}
.y12_c03226{bottom:377.386939pt;}
.y17_c03226{bottom:407.786011pt;}
.y15_c03226{bottom:437.226235pt;}
.y14_c03226{bottom:453.226747pt;}
.y11_c03226{bottom:482.666971pt;}
.y13_c03226{bottom:497.386555pt;}
.y10_c03226{bottom:513.387067pt;}
.y1e_c03226{bottom:546.027067pt;}
.yc_c03226{bottom:579.945467pt;}
.yb_c03226{bottom:593.385179pt;}
.ye_c03226{bottom:628.586875pt;}
.yd_c03226{bottom:637.227067pt;}
.ya_c03226{bottom:707.945339pt;}
.y9_c03226{bottom:779.945531pt;}
.y7_c03226{bottom:823.786427pt;}
.y3_c03226{bottom:839.786939pt;}
.y8_c03226{bottom:870.505979pt;}
.y6_c03226{bottom:899.946203pt;}
.y5_c03226{bottom:915.946715pt;}
.y2_c03226{bottom:945.386939pt;}
.y4_c03226{bottom:959.786555pt;}
.y1_c03226{bottom:975.787067pt;}
.yf_c03226{bottom:1008.747067pt;}
.h4_c03226{height:28.916250pt;}
.h1_c03226{height:37.063125pt;}
.h2_c03226{height:37.166250pt;}
.h6_c03226{height:42.285738pt;}
.h3_c03226{height:43.565610pt;}
.h5_c03226{height:48.581988pt;}
.h0_c03226{height:1122.666667pt;}
.w1_c03226{width:793.333333pt;}
.w0_c03226{width:793.626667pt;}
.x0_c03226{left:0.000000pt;}
.xe_c03226{left:104.000000pt;}
.x8_c03226{left:391.998816pt;}
.x4_c03226{left:396.160512pt;}
.xc_c03226{left:400.960000pt;}
.x7_c03226{left:404.798592pt;}
.x5_c03226{left:410.560128pt;}
.x1_c03226{left:411.840000pt;}
.xa_c03226{left:429.759264pt;}
.x9_c03226{left:437.438496pt;}
.x6_c03226{left:438.399456pt;}
.xd_c03226{left:450.560320pt;}
.x3_c03226{left:455.039904pt;}
.x2_c03226{left:468.159648pt;}
.xb_c03226{left:506.558976pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03227 {
    display:none;
  }
  .loading-indicator_c03227.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03227 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03227 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03227" -> "#page-container .classname_c03227")
 */
.pf_c03227 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03227 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03227.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03227 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03227 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03227 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03227 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03227 {overflow:visible;}
  }
}
.c_c03227 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03227 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03227:after { /* webkit #35443 */
  content: '';
}
.t_c03227:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03227 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03227 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03227 { /* info for Javascript */
  display:none;
}
.l_c03227 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03227 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03227 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03227:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03227 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03227.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03227.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03227 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03227{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03227;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03227{font-family:ff1_c03227;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03227;src:url('chunks/assets/font_1e71f28f14e1e54e3acaf977.woff2')format("woff");}.ff2_c03227{font-family:ff2_c03227;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03227;src:url('chunks/assets/font_ba382db4c4a0083be8261c9b.woff2')format("woff");}.ff3_c03227{font-family:ff3_c03227;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03227{vertical-align:0.000000px;}
.v2_c03227{vertical-align:1.439424px;}
.v3_c03227{vertical-align:5.759424px;}
.v1_c03227{vertical-align:7.199280px;}
.lsb_c03227{letter-spacing:-1.197504px;}
.lse_c03227{letter-spacing:-0.736560px;}
.ls8_c03227{letter-spacing:-0.574992px;}
.lsf_c03227{letter-spacing:-0.270864px;}
.lsc_c03227{letter-spacing:-0.261360px;}
.ls5_c03227{letter-spacing:-0.242352px;}
.ls3_c03227{letter-spacing:-0.118800px;}
.ls12_c03227{letter-spacing:0.000000px;}
.ls1_c03227{letter-spacing:0.006048px;}
.ls4_c03227{letter-spacing:0.128304px;}
.lsa_c03227{letter-spacing:0.508464px;}
.ls11_c03227{letter-spacing:0.514080px;}
.lsd_c03227{letter-spacing:0.536976px;}
.ls9_c03227{letter-spacing:0.579744px;}
.ls10_c03227{letter-spacing:0.594000px;}
.ls7_c03227{letter-spacing:0.598752px;}
.ls2_c03227{letter-spacing:0.613008px;}
.ls0_c03227{letter-spacing:0.717552px;}
.ls6_c03227{letter-spacing:0.722304px;}
.sc__c03227{text-shadow:none;}
.sc0_c03227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03227{-webkit-text-stroke:0px transparent;}
.sc0_c03227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03227{word-spacing:-15.126048px;}
.ws2_c03227{word-spacing:-12.602304px;}
.wsa_c03227{word-spacing:-12.474000px;}
.ws6_c03227{word-spacing:-12.459744px;}
.ws4_c03227{word-spacing:-11.637648px;}
.ws10_c03227{word-spacing:-1.078704px;}
.wsd_c03227{word-spacing:-0.974160px;}
.ws15_c03227{word-spacing:-0.719712px;}
.wsf_c03227{word-spacing:-0.118800px;}
.ws12_c03227{word-spacing:-0.099792px;}
.ws13_c03227{word-spacing:-0.090288px;}
.ws14_c03227{word-spacing:-0.085536px;}
.wse_c03227{word-spacing:0.000000px;}
.ws11_c03227{word-spacing:0.836352px;}
.ws9_c03227{word-spacing:6.629040px;}
.wsb_c03227{word-spacing:33.300288px;}
.ws8_c03227{word-spacing:34.836912px;}
.ws1_c03227{word-spacing:37.759392px;}
.ws0_c03227{word-spacing:38.020752px;}
.ws3_c03227{word-spacing:39.218256px;}
.ws5_c03227{word-spacing:39.902544px;}
.ws7_c03227{word-spacing:42.026688px;}
._0_c03227{margin-left:-1.948320px;}
._2_c03227{width:1.482624px;}
._4_c03227{width:2.770416px;}
._6_c03227{width:19.982160px;}
._7_c03227{width:23.451120px;}
._5_c03227{width:24.691392px;}
._1_c03227{width:50.252400px;}
._3_c03227{width:51.530688px;}
.fc0_c03227{color:rgb(0,0,0);}
.fs0_c03227{font-size:47.520000px;}
.fs1_c03227{font-size:60.480000px;}
.y0_c03227{bottom:0.000000px;}
.y1b_c03227{bottom:131.878686px;}
.y1a_c03227{bottom:146.998362px;}
.y1d_c03227{bottom:186.600234px;}
.y1c_c03227{bottom:196.320450px;}
.y19_c03227{bottom:275.878542px;}
.y18_c03227{bottom:356.878758px;}
.y16_c03227{bottom:406.559730px;}
.y12_c03227{bottom:424.560306px;}
.y17_c03227{bottom:458.759262px;}
.y15_c03227{bottom:491.879514px;}
.y14_c03227{bottom:509.880090px;}
.y11_c03227{bottom:543.000342px;}
.y13_c03227{bottom:559.559874px;}
.y10_c03227{bottom:577.560450px;}
.y1e_c03227{bottom:614.280450px;}
.yc_c03227{bottom:652.438650px;}
.yb_c03227{bottom:667.558326px;}
.ye_c03227{bottom:707.160234px;}
.yd_c03227{bottom:716.880450px;}
.ya_c03227{bottom:796.438506px;}
.y9_c03227{bottom:877.438722px;}
.y7_c03227{bottom:926.759730px;}
.y3_c03227{bottom:944.760306px;}
.y8_c03227{bottom:979.319226px;}
.y6_c03227{bottom:1012.439478px;}
.y5_c03227{bottom:1030.440054px;}
.y2_c03227{bottom:1063.560306px;}
.y4_c03227{bottom:1079.759874px;}
.y1_c03227{bottom:1097.760450px;}
.yf_c03227{bottom:1134.840450px;}
.h4_c03227{height:32.530781px;}
.h1_c03227{height:41.696016px;}
.h2_c03227{height:41.812031px;}
.h6_c03227{height:47.571455px;}
.h3_c03227{height:49.011311px;}
.h5_c03227{height:54.654737px;}
.h0_c03227{height:1263.000000px;}
.w1_c03227{width:892.500000px;}
.w0_c03227{width:892.830000px;}
.x0_c03227{left:0.000000px;}
.xe_c03227{left:117.000000px;}
.x8_c03227{left:440.998668px;}
.x4_c03227{left:445.680576px;}
.xc_c03227{left:451.080000px;}
.x7_c03227{left:455.398416px;}
.x5_c03227{left:461.880144px;}
.x1_c03227{left:463.320000px;}
.xa_c03227{left:483.479172px;}
.x9_c03227{left:492.118308px;}
.x6_c03227{left:493.199388px;}
.xd_c03227{left:506.880360px;}
.x3_c03227{left:511.919892px;}
.x2_c03227{left:526.679604px;}
.xb_c03227{left:569.878848px;}
@media print{
.v0_c03227{vertical-align:0.000000pt;}
.v2_c03227{vertical-align:1.279488pt;}
.v3_c03227{vertical-align:5.119488pt;}
.v1_c03227{vertical-align:6.399360pt;}
.lsb_c03227{letter-spacing:-1.064448pt;}
.lse_c03227{letter-spacing:-0.654720pt;}
.ls8_c03227{letter-spacing:-0.511104pt;}
.lsf_c03227{letter-spacing:-0.240768pt;}
.lsc_c03227{letter-spacing:-0.232320pt;}
.ls5_c03227{letter-spacing:-0.215424pt;}
.ls3_c03227{letter-spacing:-0.105600pt;}
.ls12_c03227{letter-spacing:0.000000pt;}
.ls1_c03227{letter-spacing:0.005376pt;}
.ls4_c03227{letter-spacing:0.114048pt;}
.lsa_c03227{letter-spacing:0.451968pt;}
.ls11_c03227{letter-spacing:0.456960pt;}
.lsd_c03227{letter-spacing:0.477312pt;}
.ls9_c03227{letter-spacing:0.515328pt;}
.ls10_c03227{letter-spacing:0.528000pt;}
.ls7_c03227{letter-spacing:0.532224pt;}
.ls2_c03227{letter-spacing:0.544896pt;}
.ls0_c03227{letter-spacing:0.637824pt;}
.ls6_c03227{letter-spacing:0.642048pt;}
.wsc_c03227{word-spacing:-13.445376pt;}
.ws2_c03227{word-spacing:-11.202048pt;}
.wsa_c03227{word-spacing:-11.088000pt;}
.ws6_c03227{word-spacing:-11.075328pt;}
.ws4_c03227{word-spacing:-10.344576pt;}
.ws10_c03227{word-spacing:-0.958848pt;}
.wsd_c03227{word-spacing:-0.865920pt;}
.ws15_c03227{word-spacing:-0.639744pt;}
.wsf_c03227{word-spacing:-0.105600pt;}
.ws12_c03227{word-spacing:-0.088704pt;}
.ws13_c03227{word-spacing:-0.080256pt;}
.ws14_c03227{word-spacing:-0.076032pt;}
.wse_c03227{word-spacing:0.000000pt;}
.ws11_c03227{word-spacing:0.743424pt;}
.ws9_c03227{word-spacing:5.892480pt;}
.wsb_c03227{word-spacing:29.600256pt;}
.ws8_c03227{word-spacing:30.966144pt;}
.ws1_c03227{word-spacing:33.563904pt;}
.ws0_c03227{word-spacing:33.796224pt;}
.ws3_c03227{word-spacing:34.860672pt;}
.ws5_c03227{word-spacing:35.468928pt;}
.ws7_c03227{word-spacing:37.357056pt;}
._0_c03227{margin-left:-1.731840pt;}
._2_c03227{width:1.317888pt;}
._4_c03227{width:2.462592pt;}
._6_c03227{width:17.761920pt;}
._7_c03227{width:20.845440pt;}
._5_c03227{width:21.947904pt;}
._1_c03227{width:44.668800pt;}
._3_c03227{width:45.805056pt;}
.fs0_c03227{font-size:42.240000pt;}
.fs1_c03227{font-size:53.760000pt;}
.y0_c03227{bottom:0.000000pt;}
.y1b_c03227{bottom:117.225499pt;}
.y1a_c03227{bottom:130.665211pt;}
.y1d_c03227{bottom:165.866875pt;}
.y1c_c03227{bottom:174.507067pt;}
.y19_c03227{bottom:245.225371pt;}
.y18_c03227{bottom:317.225563pt;}
.y16_c03227{bottom:361.386427pt;}
.y12_c03227{bottom:377.386939pt;}
.y17_c03227{bottom:407.786011pt;}
.y15_c03227{bottom:437.226235pt;}
.y14_c03227{bottom:453.226747pt;}
.y11_c03227{bottom:482.666971pt;}
.y13_c03227{bottom:497.386555pt;}
.y10_c03227{bottom:513.387067pt;}
.y1e_c03227{bottom:546.027067pt;}
.yc_c03227{bottom:579.945467pt;}
.yb_c03227{bottom:593.385179pt;}
.ye_c03227{bottom:628.586875pt;}
.yd_c03227{bottom:637.227067pt;}
.ya_c03227{bottom:707.945339pt;}
.y9_c03227{bottom:779.945531pt;}
.y7_c03227{bottom:823.786427pt;}
.y3_c03227{bottom:839.786939pt;}
.y8_c03227{bottom:870.505979pt;}
.y6_c03227{bottom:899.946203pt;}
.y5_c03227{bottom:915.946715pt;}
.y2_c03227{bottom:945.386939pt;}
.y4_c03227{bottom:959.786555pt;}
.y1_c03227{bottom:975.787067pt;}
.yf_c03227{bottom:1008.747067pt;}
.h4_c03227{height:28.916250pt;}
.h1_c03227{height:37.063125pt;}
.h2_c03227{height:37.166250pt;}
.h6_c03227{height:42.285738pt;}
.h3_c03227{height:43.565610pt;}
.h5_c03227{height:48.581988pt;}
.h0_c03227{height:1122.666667pt;}
.w1_c03227{width:793.333333pt;}
.w0_c03227{width:793.626667pt;}
.x0_c03227{left:0.000000pt;}
.xe_c03227{left:104.000000pt;}
.x8_c03227{left:391.998816pt;}
.x4_c03227{left:396.160512pt;}
.xc_c03227{left:400.960000pt;}
.x7_c03227{left:404.798592pt;}
.x5_c03227{left:410.560128pt;}
.x1_c03227{left:411.840000pt;}
.xa_c03227{left:429.759264pt;}
.x9_c03227{left:437.438496pt;}
.x6_c03227{left:438.399456pt;}
.xd_c03227{left:450.560320pt;}
.x3_c03227{left:455.039904pt;}
.x2_c03227{left:468.159648pt;}
.xb_c03227{left:506.558976pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03228 {
    display:none;
  }
  .loading-indicator_c03228.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03228 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03228 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03228" -> "#page-container .classname_c03228")
 */
.pf_c03228 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03228 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03228.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03228 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03228 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03228 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03228 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03228 {overflow:visible;}
  }
}
.c_c03228 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03228 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03228:after { /* webkit #35443 */
  content: '';
}
.t_c03228:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03228 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03228 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03228 { /* info for Javascript */
  display:none;
}
.l_c03228 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03228 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03228 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03228:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03228 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03228.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03228.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03228 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03228{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03228;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03228{font-family:ff1_c03228;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03228;src:url('chunks/assets/font_acfea136ea0636f92694c1bc.woff2')format("woff");}.ff2_c03228{font-family:ff2_c03228;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03228;src:url('chunks/assets/font_ba382db4c4a0083be8261c9b.woff2')format("woff");}.ff3_c03228{font-family:ff3_c03228;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03228{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03228{vertical-align:0.000000px;}
.v2_c03228{vertical-align:1.439424px;}
.v3_c03228{vertical-align:5.759424px;}
.v1_c03228{vertical-align:7.199280px;}
.lsb_c03228{letter-spacing:-1.197504px;}
.lse_c03228{letter-spacing:-0.736560px;}
.ls8_c03228{letter-spacing:-0.574992px;}
.lsf_c03228{letter-spacing:-0.270864px;}
.lsc_c03228{letter-spacing:-0.261360px;}
.ls5_c03228{letter-spacing:-0.242352px;}
.ls3_c03228{letter-spacing:-0.118800px;}
.ls12_c03228{letter-spacing:0.000000px;}
.ls1_c03228{letter-spacing:0.006048px;}
.ls4_c03228{letter-spacing:0.128304px;}
.lsa_c03228{letter-spacing:0.508464px;}
.ls11_c03228{letter-spacing:0.514080px;}
.lsd_c03228{letter-spacing:0.536976px;}
.ls9_c03228{letter-spacing:0.579744px;}
.ls10_c03228{letter-spacing:0.594000px;}
.ls7_c03228{letter-spacing:0.598752px;}
.ls2_c03228{letter-spacing:0.613008px;}
.ls0_c03228{letter-spacing:0.717552px;}
.ls6_c03228{letter-spacing:0.722304px;}
.sc__c03228{text-shadow:none;}
.sc0_c03228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03228{-webkit-text-stroke:0px transparent;}
.sc0_c03228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03228{word-spacing:-15.126048px;}
.ws2_c03228{word-spacing:-12.602304px;}
.wsa_c03228{word-spacing:-12.474000px;}
.ws6_c03228{word-spacing:-12.459744px;}
.ws4_c03228{word-spacing:-11.637648px;}
.ws10_c03228{word-spacing:-1.078704px;}
.wsd_c03228{word-spacing:-0.974160px;}
.ws15_c03228{word-spacing:-0.719712px;}
.wsf_c03228{word-spacing:-0.118800px;}
.ws12_c03228{word-spacing:-0.099792px;}
.ws13_c03228{word-spacing:-0.090288px;}
.ws14_c03228{word-spacing:-0.085536px;}
.wse_c03228{word-spacing:0.000000px;}
.ws11_c03228{word-spacing:0.836352px;}
.ws9_c03228{word-spacing:6.629040px;}
.wsb_c03228{word-spacing:33.300288px;}
.ws8_c03228{word-spacing:34.836912px;}
.ws1_c03228{word-spacing:37.759392px;}
.ws0_c03228{word-spacing:38.020752px;}
.ws3_c03228{word-spacing:39.218256px;}
.ws5_c03228{word-spacing:39.902544px;}
.ws7_c03228{word-spacing:42.026688px;}
._0_c03228{margin-left:-1.948320px;}
._2_c03228{width:1.482624px;}
._4_c03228{width:2.770416px;}
._6_c03228{width:19.982160px;}
._7_c03228{width:23.451120px;}
._5_c03228{width:24.691392px;}
._1_c03228{width:50.252400px;}
._3_c03228{width:51.530688px;}
.fc0_c03228{color:rgb(0,0,0);}
.fs0_c03228{font-size:47.520000px;}
.fs1_c03228{font-size:60.480000px;}
.y0_c03228{bottom:0.000000px;}
.y1b_c03228{bottom:131.878686px;}
.y1a_c03228{bottom:146.998362px;}
.y1d_c03228{bottom:186.600234px;}
.y1c_c03228{bottom:196.320450px;}
.y19_c03228{bottom:275.878542px;}
.y18_c03228{bottom:356.878758px;}
.y16_c03228{bottom:406.559730px;}
.y12_c03228{bottom:424.560306px;}
.y17_c03228{bottom:458.759262px;}
.y15_c03228{bottom:491.879514px;}
.y14_c03228{bottom:509.880090px;}
.y11_c03228{bottom:543.000342px;}
.y13_c03228{bottom:559.559874px;}
.y10_c03228{bottom:577.560450px;}
.y1e_c03228{bottom:614.280450px;}
.yc_c03228{bottom:652.438650px;}
.yb_c03228{bottom:667.558326px;}
.ye_c03228{bottom:707.160234px;}
.yd_c03228{bottom:716.880450px;}
.ya_c03228{bottom:796.438506px;}
.y9_c03228{bottom:877.438722px;}
.y7_c03228{bottom:926.759730px;}
.y3_c03228{bottom:944.760306px;}
.y8_c03228{bottom:979.319226px;}
.y6_c03228{bottom:1012.439478px;}
.y5_c03228{bottom:1030.440054px;}
.y2_c03228{bottom:1063.560306px;}
.y4_c03228{bottom:1079.759874px;}
.y1_c03228{bottom:1097.760450px;}
.yf_c03228{bottom:1134.840450px;}
.h4_c03228{height:32.530781px;}
.h1_c03228{height:41.696016px;}
.h2_c03228{height:41.812031px;}
.h6_c03228{height:47.571455px;}
.h3_c03228{height:49.011311px;}
.h5_c03228{height:54.654737px;}
.h0_c03228{height:1263.000000px;}
.w1_c03228{width:892.500000px;}
.w0_c03228{width:892.830000px;}
.x0_c03228{left:0.000000px;}
.xe_c03228{left:117.000000px;}
.x8_c03228{left:440.998668px;}
.x4_c03228{left:445.680576px;}
.xc_c03228{left:451.080000px;}
.x7_c03228{left:455.398416px;}
.x5_c03228{left:461.880144px;}
.x1_c03228{left:463.320000px;}
.xa_c03228{left:483.479172px;}
.x9_c03228{left:492.118308px;}
.x6_c03228{left:493.199388px;}
.xd_c03228{left:506.880360px;}
.x3_c03228{left:511.919892px;}
.x2_c03228{left:526.679604px;}
.xb_c03228{left:569.878848px;}
@media print{
.v0_c03228{vertical-align:0.000000pt;}
.v2_c03228{vertical-align:1.279488pt;}
.v3_c03228{vertical-align:5.119488pt;}
.v1_c03228{vertical-align:6.399360pt;}
.lsb_c03228{letter-spacing:-1.064448pt;}
.lse_c03228{letter-spacing:-0.654720pt;}
.ls8_c03228{letter-spacing:-0.511104pt;}
.lsf_c03228{letter-spacing:-0.240768pt;}
.lsc_c03228{letter-spacing:-0.232320pt;}
.ls5_c03228{letter-spacing:-0.215424pt;}
.ls3_c03228{letter-spacing:-0.105600pt;}
.ls12_c03228{letter-spacing:0.000000pt;}
.ls1_c03228{letter-spacing:0.005376pt;}
.ls4_c03228{letter-spacing:0.114048pt;}
.lsa_c03228{letter-spacing:0.451968pt;}
.ls11_c03228{letter-spacing:0.456960pt;}
.lsd_c03228{letter-spacing:0.477312pt;}
.ls9_c03228{letter-spacing:0.515328pt;}
.ls10_c03228{letter-spacing:0.528000pt;}
.ls7_c03228{letter-spacing:0.532224pt;}
.ls2_c03228{letter-spacing:0.544896pt;}
.ls0_c03228{letter-spacing:0.637824pt;}
.ls6_c03228{letter-spacing:0.642048pt;}
.wsc_c03228{word-spacing:-13.445376pt;}
.ws2_c03228{word-spacing:-11.202048pt;}
.wsa_c03228{word-spacing:-11.088000pt;}
.ws6_c03228{word-spacing:-11.075328pt;}
.ws4_c03228{word-spacing:-10.344576pt;}
.ws10_c03228{word-spacing:-0.958848pt;}
.wsd_c03228{word-spacing:-0.865920pt;}
.ws15_c03228{word-spacing:-0.639744pt;}
.wsf_c03228{word-spacing:-0.105600pt;}
.ws12_c03228{word-spacing:-0.088704pt;}
.ws13_c03228{word-spacing:-0.080256pt;}
.ws14_c03228{word-spacing:-0.076032pt;}
.wse_c03228{word-spacing:0.000000pt;}
.ws11_c03228{word-spacing:0.743424pt;}
.ws9_c03228{word-spacing:5.892480pt;}
.wsb_c03228{word-spacing:29.600256pt;}
.ws8_c03228{word-spacing:30.966144pt;}
.ws1_c03228{word-spacing:33.563904pt;}
.ws0_c03228{word-spacing:33.796224pt;}
.ws3_c03228{word-spacing:34.860672pt;}
.ws5_c03228{word-spacing:35.468928pt;}
.ws7_c03228{word-spacing:37.357056pt;}
._0_c03228{margin-left:-1.731840pt;}
._2_c03228{width:1.317888pt;}
._4_c03228{width:2.462592pt;}
._6_c03228{width:17.761920pt;}
._7_c03228{width:20.845440pt;}
._5_c03228{width:21.947904pt;}
._1_c03228{width:44.668800pt;}
._3_c03228{width:45.805056pt;}
.fs0_c03228{font-size:42.240000pt;}
.fs1_c03228{font-size:53.760000pt;}
.y0_c03228{bottom:0.000000pt;}
.y1b_c03228{bottom:117.225499pt;}
.y1a_c03228{bottom:130.665211pt;}
.y1d_c03228{bottom:165.866875pt;}
.y1c_c03228{bottom:174.507067pt;}
.y19_c03228{bottom:245.225371pt;}
.y18_c03228{bottom:317.225563pt;}
.y16_c03228{bottom:361.386427pt;}
.y12_c03228{bottom:377.386939pt;}
.y17_c03228{bottom:407.786011pt;}
.y15_c03228{bottom:437.226235pt;}
.y14_c03228{bottom:453.226747pt;}
.y11_c03228{bottom:482.666971pt;}
.y13_c03228{bottom:497.386555pt;}
.y10_c03228{bottom:513.387067pt;}
.y1e_c03228{bottom:546.027067pt;}
.yc_c03228{bottom:579.945467pt;}
.yb_c03228{bottom:593.385179pt;}
.ye_c03228{bottom:628.586875pt;}
.yd_c03228{bottom:637.227067pt;}
.ya_c03228{bottom:707.945339pt;}
.y9_c03228{bottom:779.945531pt;}
.y7_c03228{bottom:823.786427pt;}
.y3_c03228{bottom:839.786939pt;}
.y8_c03228{bottom:870.505979pt;}
.y6_c03228{bottom:899.946203pt;}
.y5_c03228{bottom:915.946715pt;}
.y2_c03228{bottom:945.386939pt;}
.y4_c03228{bottom:959.786555pt;}
.y1_c03228{bottom:975.787067pt;}
.yf_c03228{bottom:1008.747067pt;}
.h4_c03228{height:28.916250pt;}
.h1_c03228{height:37.063125pt;}
.h2_c03228{height:37.166250pt;}
.h6_c03228{height:42.285738pt;}
.h3_c03228{height:43.565610pt;}
.h5_c03228{height:48.581988pt;}
.h0_c03228{height:1122.666667pt;}
.w1_c03228{width:793.333333pt;}
.w0_c03228{width:793.626667pt;}
.x0_c03228{left:0.000000pt;}
.xe_c03228{left:104.000000pt;}
.x8_c03228{left:391.998816pt;}
.x4_c03228{left:396.160512pt;}
.xc_c03228{left:400.960000pt;}
.x7_c03228{left:404.798592pt;}
.x5_c03228{left:410.560128pt;}
.x1_c03228{left:411.840000pt;}
.xa_c03228{left:429.759264pt;}
.x9_c03228{left:437.438496pt;}
.x6_c03228{left:438.399456pt;}
.xd_c03228{left:450.560320pt;}
.x3_c03228{left:455.039904pt;}
.x2_c03228{left:468.159648pt;}
.xb_c03228{left:506.558976pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03229 {
    display:none;
  }
  .loading-indicator_c03229.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03229 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03229 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03229" -> "#page-container .classname_c03229")
 */
.pf_c03229 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03229 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03229.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03229 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03229 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03229 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03229 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03229 {overflow:visible;}
  }
}
.c_c03229 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03229 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03229:after { /* webkit #35443 */
  content: '';
}
.t_c03229:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03229 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03229 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03229 { /* info for Javascript */
  display:none;
}
.l_c03229 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03229 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03229 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03229:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03229 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03229.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03229.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03229 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03229{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03229;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03229{font-family:ff1_c03229;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03229;src:url('chunks/assets/font_c747a0cc397838b4510f380a.woff2')format("woff");}.ff2_c03229{font-family:ff2_c03229;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03229;src:url('chunks/assets/font_4a5251dd629112cfc6d118e0.woff2')format("woff");}.ff3_c03229{font-family:ff3_c03229;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03229{vertical-align:0.000000px;}
.v1_c03229{vertical-align:1.439424px;}
.lsf_c03229{letter-spacing:-1.197504px;}
.ls8_c03229{letter-spacing:-0.679536px;}
.lsa_c03229{letter-spacing:-0.574992px;}
.ls11_c03229{letter-spacing:-0.275616px;}
.lse_c03229{letter-spacing:-0.261360px;}
.ls7_c03229{letter-spacing:-0.242352px;}
.ls5_c03229{letter-spacing:-0.118800px;}
.ls14_c03229{letter-spacing:0.000000px;}
.ls3_c03229{letter-spacing:0.006048px;}
.ls6_c03229{letter-spacing:0.128304px;}
.lsd_c03229{letter-spacing:0.242352px;}
.lsc_c03229{letter-spacing:0.508464px;}
.ls13_c03229{letter-spacing:0.514080px;}
.ls10_c03229{letter-spacing:0.536976px;}
.lsb_c03229{letter-spacing:0.579744px;}
.ls12_c03229{letter-spacing:0.594000px;}
.ls9_c03229{letter-spacing:0.598752px;}
.ls4_c03229{letter-spacing:0.613008px;}
.ls0_c03229{letter-spacing:0.689040px;}
.ls2_c03229{letter-spacing:0.717552px;}
.ls1_c03229{letter-spacing:0.722304px;}
.sc__c03229{text-shadow:none;}
.sc0_c03229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03229{-webkit-text-stroke:0px transparent;}
.sc0_c03229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03229{word-spacing:-15.126048px;}
.ws1_c03229{word-spacing:-12.569040px;}
.wsc_c03229{word-spacing:-12.474000px;}
.wsb_c03229{word-spacing:-12.416976px;}
.ws0_c03229{word-spacing:-11.761200px;}
.ws3_c03229{word-spacing:-11.200464px;}
.ws12_c03229{word-spacing:-1.083456px;}
.ws14_c03229{word-spacing:-1.078704px;}
.wsf_c03229{word-spacing:-0.974160px;}
.ws16_c03229{word-spacing:-0.719712px;}
.ws11_c03229{word-spacing:-0.118800px;}
.ws13_c03229{word-spacing:-0.099792px;}
.ws15_c03229{word-spacing:-0.085536px;}
.ws10_c03229{word-spacing:0.000000px;}
.wsa_c03229{word-spacing:4.557168px;}
.ws5_c03229{word-spacing:6.605280px;}
.wsd_c03229{word-spacing:33.300288px;}
.ws9_c03229{word-spacing:36.143712px;}
.ws7_c03229{word-spacing:36.742464px;}
.ws2_c03229{word-spacing:37.759392px;}
.ws4_c03229{word-spacing:39.218256px;}
.ws6_c03229{word-spacing:39.902544px;}
.ws8_c03229{word-spacing:42.026688px;}
._0_c03229{margin-left:-1.948320px;}
._2_c03229{width:1.482624px;}
._5_c03229{width:2.756160px;}
._6_c03229{width:10.948608px;}
._7_c03229{width:12.550032px;}
._4_c03229{width:19.616256px;}
._1_c03229{width:50.252400px;}
._3_c03229{width:51.530688px;}
.fc0_c03229{color:rgb(0,0,0);}
.fs0_c03229{font-size:47.520000px;}
.fs1_c03229{font-size:60.480000px;}
.y0_c03229{bottom:0.000000px;}
.y15_c03229{bottom:18.000450px;}
.y4_c03229{bottom:18.360450px;}
.y1e_c03229{bottom:146.998506px;}
.y20_c03229{bottom:186.600234px;}
.y1f_c03229{bottom:196.320450px;}
.y1d_c03229{bottom:275.878686px;}
.y1c_c03229{bottom:356.878902px;}
.y1a_c03229{bottom:406.559874px;}
.y16_c03229{bottom:424.560450px;}
.y1b_c03229{bottom:458.759406px;}
.y19_c03229{bottom:491.879658px;}
.y18_c03229{bottom:509.880234px;}
.y14_c03229{bottom:525.000000px;}
.y13_c03229{bottom:543.000342px;}
.y17_c03229{bottom:559.560018px;}
.y12_c03229{bottom:577.560450px;}
.y21_c03229{bottom:614.280450px;}
.ye_c03229{bottom:667.558470px;}
.y10_c03229{bottom:707.160234px;}
.yf_c03229{bottom:716.880450px;}
.yd_c03229{bottom:781.318974px;}
.yc_c03229{bottom:796.438650px;}
.yb_c03229{bottom:877.438866px;}
.y9_c03229{bottom:926.759874px;}
.y5_c03229{bottom:944.760450px;}
.ya_c03229{bottom:979.319370px;}
.y8_c03229{bottom:1012.439622px;}
.y7_c03229{bottom:1030.440198px;}
.y3_c03229{bottom:1045.200000px;}
.y2_c03229{bottom:1063.560306px;}
.y6_c03229{bottom:1079.760018px;}
.y1_c03229{bottom:1097.760450px;}
.y11_c03229{bottom:1134.840450px;}
.h6_c03229{height:29.160000px;}
.h3_c03229{height:29.520000px;}
.h2_c03229{height:32.530781px;}
.h1_c03229{height:41.696016px;}
.h4_c03229{height:41.812031px;}
.h5_c03229{height:54.654737px;}
.h0_c03229{height:1263.000000px;}
.w2_c03229{width:215.280000px;}
.w1_c03229{width:892.500000px;}
.w0_c03229{width:892.830000px;}
.x0_c03229{left:0.000000px;}
.xe_c03229{left:117.000000px;}
.x9_c03229{left:440.999964px;}
.x5_c03229{left:445.680684px;}
.xc_c03229{left:451.080000px;}
.x8_c03229{left:455.399712px;}
.x6_c03229{left:461.880252px;}
.x1_c03229{left:463.320000px;}
.xb_c03229{left:483.480468px;}
.xa_c03229{left:492.119604px;}
.x7_c03229{left:493.200684px;}
.xd_c03229{left:506.880360px;}
.x4_c03229{left:511.920000px;}
.x2_c03229{left:526.679604px;}
.x3_c03229{left:569.520000px;}
@media print{
.v0_c03229{vertical-align:0.000000pt;}
.v1_c03229{vertical-align:1.279488pt;}
.lsf_c03229{letter-spacing:-1.064448pt;}
.ls8_c03229{letter-spacing:-0.604032pt;}
.lsa_c03229{letter-spacing:-0.511104pt;}
.ls11_c03229{letter-spacing:-0.244992pt;}
.lse_c03229{letter-spacing:-0.232320pt;}
.ls7_c03229{letter-spacing:-0.215424pt;}
.ls5_c03229{letter-spacing:-0.105600pt;}
.ls14_c03229{letter-spacing:0.000000pt;}
.ls3_c03229{letter-spacing:0.005376pt;}
.ls6_c03229{letter-spacing:0.114048pt;}
.lsd_c03229{letter-spacing:0.215424pt;}
.lsc_c03229{letter-spacing:0.451968pt;}
.ls13_c03229{letter-spacing:0.456960pt;}
.ls10_c03229{letter-spacing:0.477312pt;}
.lsb_c03229{letter-spacing:0.515328pt;}
.ls12_c03229{letter-spacing:0.528000pt;}
.ls9_c03229{letter-spacing:0.532224pt;}
.ls4_c03229{letter-spacing:0.544896pt;}
.ls0_c03229{letter-spacing:0.612480pt;}
.ls2_c03229{letter-spacing:0.637824pt;}
.ls1_c03229{letter-spacing:0.642048pt;}
.wse_c03229{word-spacing:-13.445376pt;}
.ws1_c03229{word-spacing:-11.172480pt;}
.wsc_c03229{word-spacing:-11.088000pt;}
.wsb_c03229{word-spacing:-11.037312pt;}
.ws0_c03229{word-spacing:-10.454400pt;}
.ws3_c03229{word-spacing:-9.955968pt;}
.ws12_c03229{word-spacing:-0.963072pt;}
.ws14_c03229{word-spacing:-0.958848pt;}
.wsf_c03229{word-spacing:-0.865920pt;}
.ws16_c03229{word-spacing:-0.639744pt;}
.ws11_c03229{word-spacing:-0.105600pt;}
.ws13_c03229{word-spacing:-0.088704pt;}
.ws15_c03229{word-spacing:-0.076032pt;}
.ws10_c03229{word-spacing:0.000000pt;}
.wsa_c03229{word-spacing:4.050816pt;}
.ws5_c03229{word-spacing:5.871360pt;}
.wsd_c03229{word-spacing:29.600256pt;}
.ws9_c03229{word-spacing:32.127744pt;}
.ws7_c03229{word-spacing:32.659968pt;}
.ws2_c03229{word-spacing:33.563904pt;}
.ws4_c03229{word-spacing:34.860672pt;}
.ws6_c03229{word-spacing:35.468928pt;}
.ws8_c03229{word-spacing:37.357056pt;}
._0_c03229{margin-left:-1.731840pt;}
._2_c03229{width:1.317888pt;}
._5_c03229{width:2.449920pt;}
._6_c03229{width:9.732096pt;}
._7_c03229{width:11.155584pt;}
._4_c03229{width:17.436672pt;}
._1_c03229{width:44.668800pt;}
._3_c03229{width:45.805056pt;}
.fs0_c03229{font-size:42.240000pt;}
.fs1_c03229{font-size:53.760000pt;}
.y0_c03229{bottom:0.000000pt;}
.y15_c03229{bottom:16.000400pt;}
.y4_c03229{bottom:16.320400pt;}
.y1e_c03229{bottom:130.665339pt;}
.y20_c03229{bottom:165.866875pt;}
.y1f_c03229{bottom:174.507067pt;}
.y1d_c03229{bottom:245.225499pt;}
.y1c_c03229{bottom:317.225691pt;}
.y1a_c03229{bottom:361.386555pt;}
.y16_c03229{bottom:377.387067pt;}
.y1b_c03229{bottom:407.786139pt;}
.y19_c03229{bottom:437.226363pt;}
.y18_c03229{bottom:453.226875pt;}
.y14_c03229{bottom:466.666667pt;}
.y13_c03229{bottom:482.666971pt;}
.y17_c03229{bottom:497.386683pt;}
.y12_c03229{bottom:513.387067pt;}
.y21_c03229{bottom:546.027067pt;}
.ye_c03229{bottom:593.385307pt;}
.y10_c03229{bottom:628.586875pt;}
.yf_c03229{bottom:637.227067pt;}
.yd_c03229{bottom:694.505755pt;}
.yc_c03229{bottom:707.945467pt;}
.yb_c03229{bottom:779.945659pt;}
.y9_c03229{bottom:823.786555pt;}
.y5_c03229{bottom:839.787067pt;}
.ya_c03229{bottom:870.506107pt;}
.y8_c03229{bottom:899.946331pt;}
.y7_c03229{bottom:915.946843pt;}
.y3_c03229{bottom:929.066667pt;}
.y2_c03229{bottom:945.386939pt;}
.y6_c03229{bottom:959.786683pt;}
.y1_c03229{bottom:975.787067pt;}
.y11_c03229{bottom:1008.747067pt;}
.h6_c03229{height:25.920000pt;}
.h3_c03229{height:26.240000pt;}
.h2_c03229{height:28.916250pt;}
.h1_c03229{height:37.063125pt;}
.h4_c03229{height:37.166250pt;}
.h5_c03229{height:48.581988pt;}
.h0_c03229{height:1122.666667pt;}
.w2_c03229{width:191.360000pt;}
.w1_c03229{width:793.333333pt;}
.w0_c03229{width:793.626667pt;}
.x0_c03229{left:0.000000pt;}
.xe_c03229{left:104.000000pt;}
.x9_c03229{left:391.999968pt;}
.x5_c03229{left:396.160608pt;}
.xc_c03229{left:400.960000pt;}
.x8_c03229{left:404.799744pt;}
.x6_c03229{left:410.560224pt;}
.x1_c03229{left:411.840000pt;}
.xb_c03229{left:429.760416pt;}
.xa_c03229{left:437.439648pt;}
.x7_c03229{left:438.400608pt;}
.xd_c03229{left:450.560320pt;}
.x4_c03229{left:455.040000pt;}
.x2_c03229{left:468.159648pt;}
.x3_c03229{left:506.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03230 {
    display:none;
  }
  .loading-indicator_c03230.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03230 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03230 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03230" -> "#page-container .classname_c03230")
 */
.pf_c03230 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03230 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03230.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03230 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03230 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03230 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03230 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03230 {overflow:visible;}
  }
}
.c_c03230 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03230 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03230:after { /* webkit #35443 */
  content: '';
}
.t_c03230:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03230 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03230 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03230 { /* info for Javascript */
  display:none;
}
.l_c03230 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03230 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03230 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03230:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03230 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03230.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03230.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03230 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03230{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03230;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03230{font-family:ff1_c03230;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03230;src:url('chunks/assets/font_72f1d4a6943ff523e1bf9197.woff2')format("woff");}.ff2_c03230{font-family:ff2_c03230;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03230;src:url('chunks/assets/font_4a5251dd629112cfc6d118e0.woff2')format("woff");}.ff3_c03230{font-family:ff3_c03230;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03230{vertical-align:0.000000px;}
.v1_c03230{vertical-align:1.439424px;}
.ls8_c03230{letter-spacing:-0.679536px;}
.lsa_c03230{letter-spacing:-0.574992px;}
.lse_c03230{letter-spacing:-0.304128px;}
.ls11_c03230{letter-spacing:-0.275616px;}
.lsf_c03230{letter-spacing:-0.261360px;}
.ls7_c03230{letter-spacing:-0.242352px;}
.ls5_c03230{letter-spacing:-0.118800px;}
.ls14_c03230{letter-spacing:0.000000px;}
.ls2_c03230{letter-spacing:0.006048px;}
.ls6_c03230{letter-spacing:0.128304px;}
.lsd_c03230{letter-spacing:0.242352px;}
.lsc_c03230{letter-spacing:0.508464px;}
.ls13_c03230{letter-spacing:0.514080px;}
.ls10_c03230{letter-spacing:0.536976px;}
.lsb_c03230{letter-spacing:0.579744px;}
.ls12_c03230{letter-spacing:0.594000px;}
.ls9_c03230{letter-spacing:0.598752px;}
.ls3_c03230{letter-spacing:0.613008px;}
.ls0_c03230{letter-spacing:0.689040px;}
.ls4_c03230{letter-spacing:0.717552px;}
.ls1_c03230{letter-spacing:0.722304px;}
.sc__c03230{text-shadow:none;}
.sc0_c03230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03230{-webkit-text-stroke:0px transparent;}
.sc0_c03230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03230{word-spacing:-15.126048px;}
.ws1_c03230{word-spacing:-12.569040px;}
.wsc_c03230{word-spacing:-12.474000px;}
.wsb_c03230{word-spacing:-12.416976px;}
.ws0_c03230{word-spacing:-11.761200px;}
.ws3_c03230{word-spacing:-11.200464px;}
.ws12_c03230{word-spacing:-1.083456px;}
.wsf_c03230{word-spacing:-0.974160px;}
.ws16_c03230{word-spacing:-0.719712px;}
.ws11_c03230{word-spacing:-0.118800px;}
.ws14_c03230{word-spacing:-0.099792px;}
.ws15_c03230{word-spacing:-0.085536px;}
.ws13_c03230{word-spacing:-0.057024px;}
.ws10_c03230{word-spacing:0.000000px;}
.wsa_c03230{word-spacing:3.597264px;}
.ws5_c03230{word-spacing:6.605280px;}
.wsd_c03230{word-spacing:33.300288px;}
.ws9_c03230{word-spacing:36.143712px;}
.ws7_c03230{word-spacing:36.742464px;}
.ws2_c03230{word-spacing:37.759392px;}
.ws4_c03230{word-spacing:39.218256px;}
.ws6_c03230{word-spacing:39.902544px;}
.ws8_c03230{word-spacing:42.026688px;}
._0_c03230{margin-left:-1.948320px;}
._2_c03230{width:1.482624px;}
._5_c03230{width:9.732096px;}
._4_c03230{width:12.554784px;}
._1_c03230{width:50.252400px;}
._3_c03230{width:51.530688px;}
.fc0_c03230{color:rgb(0,0,0);}
.fs0_c03230{font-size:47.520000px;}
.fs1_c03230{font-size:60.480000px;}
.y0_c03230{bottom:0.000000px;}
.y15_c03230{bottom:18.000450px;}
.y4_c03230{bottom:18.360450px;}
.y1f_c03230{bottom:146.998506px;}
.y21_c03230{bottom:186.600234px;}
.y20_c03230{bottom:196.320450px;}
.y1e_c03230{bottom:275.878686px;}
.y1d_c03230{bottom:341.759226px;}
.y1c_c03230{bottom:356.878902px;}
.y1a_c03230{bottom:406.559874px;}
.y16_c03230{bottom:424.560450px;}
.y1b_c03230{bottom:458.759406px;}
.y19_c03230{bottom:491.879658px;}
.y18_c03230{bottom:509.880234px;}
.y14_c03230{bottom:525.000000px;}
.y13_c03230{bottom:543.000342px;}
.y17_c03230{bottom:559.560018px;}
.y12_c03230{bottom:577.560450px;}
.y22_c03230{bottom:614.280450px;}
.ye_c03230{bottom:667.559658px;}
.y10_c03230{bottom:707.160234px;}
.yf_c03230{bottom:716.880450px;}
.yd_c03230{bottom:796.439838px;}
.yc_c03230{bottom:862.319190px;}
.yb_c03230{bottom:877.438866px;}
.y9_c03230{bottom:926.759874px;}
.y5_c03230{bottom:944.760450px;}
.ya_c03230{bottom:979.319370px;}
.y8_c03230{bottom:1012.439622px;}
.y7_c03230{bottom:1030.440198px;}
.y3_c03230{bottom:1045.200000px;}
.y2_c03230{bottom:1063.560306px;}
.y6_c03230{bottom:1079.760018px;}
.y1_c03230{bottom:1097.760450px;}
.y11_c03230{bottom:1134.840450px;}
.h6_c03230{height:29.160000px;}
.h3_c03230{height:29.520000px;}
.h2_c03230{height:32.530781px;}
.h1_c03230{height:41.696016px;}
.h4_c03230{height:41.812031px;}
.h5_c03230{height:54.654737px;}
.h0_c03230{height:1263.000000px;}
.w2_c03230{width:215.280000px;}
.w1_c03230{width:892.500000px;}
.w0_c03230{width:892.830000px;}
.x0_c03230{left:0.000000px;}
.xe_c03230{left:117.000000px;}
.x9_c03230{left:440.999964px;}
.x5_c03230{left:445.680684px;}
.xc_c03230{left:451.080000px;}
.x8_c03230{left:455.399712px;}
.x6_c03230{left:461.880252px;}
.x1_c03230{left:463.320000px;}
.xb_c03230{left:483.480468px;}
.xa_c03230{left:492.119604px;}
.x7_c03230{left:493.200684px;}
.xd_c03230{left:506.880360px;}
.x4_c03230{left:511.920000px;}
.x2_c03230{left:526.679604px;}
.x3_c03230{left:569.520000px;}
@media print{
.v0_c03230{vertical-align:0.000000pt;}
.v1_c03230{vertical-align:1.279488pt;}
.ls8_c03230{letter-spacing:-0.604032pt;}
.lsa_c03230{letter-spacing:-0.511104pt;}
.lse_c03230{letter-spacing:-0.270336pt;}
.ls11_c03230{letter-spacing:-0.244992pt;}
.lsf_c03230{letter-spacing:-0.232320pt;}
.ls7_c03230{letter-spacing:-0.215424pt;}
.ls5_c03230{letter-spacing:-0.105600pt;}
.ls14_c03230{letter-spacing:0.000000pt;}
.ls2_c03230{letter-spacing:0.005376pt;}
.ls6_c03230{letter-spacing:0.114048pt;}
.lsd_c03230{letter-spacing:0.215424pt;}
.lsc_c03230{letter-spacing:0.451968pt;}
.ls13_c03230{letter-spacing:0.456960pt;}
.ls10_c03230{letter-spacing:0.477312pt;}
.lsb_c03230{letter-spacing:0.515328pt;}
.ls12_c03230{letter-spacing:0.528000pt;}
.ls9_c03230{letter-spacing:0.532224pt;}
.ls3_c03230{letter-spacing:0.544896pt;}
.ls0_c03230{letter-spacing:0.612480pt;}
.ls4_c03230{letter-spacing:0.637824pt;}
.ls1_c03230{letter-spacing:0.642048pt;}
.wse_c03230{word-spacing:-13.445376pt;}
.ws1_c03230{word-spacing:-11.172480pt;}
.wsc_c03230{word-spacing:-11.088000pt;}
.wsb_c03230{word-spacing:-11.037312pt;}
.ws0_c03230{word-spacing:-10.454400pt;}
.ws3_c03230{word-spacing:-9.955968pt;}
.ws12_c03230{word-spacing:-0.963072pt;}
.wsf_c03230{word-spacing:-0.865920pt;}
.ws16_c03230{word-spacing:-0.639744pt;}
.ws11_c03230{word-spacing:-0.105600pt;}
.ws14_c03230{word-spacing:-0.088704pt;}
.ws15_c03230{word-spacing:-0.076032pt;}
.ws13_c03230{word-spacing:-0.050688pt;}
.ws10_c03230{word-spacing:0.000000pt;}
.wsa_c03230{word-spacing:3.197568pt;}
.ws5_c03230{word-spacing:5.871360pt;}
.wsd_c03230{word-spacing:29.600256pt;}
.ws9_c03230{word-spacing:32.127744pt;}
.ws7_c03230{word-spacing:32.659968pt;}
.ws2_c03230{word-spacing:33.563904pt;}
.ws4_c03230{word-spacing:34.860672pt;}
.ws6_c03230{word-spacing:35.468928pt;}
.ws8_c03230{word-spacing:37.357056pt;}
._0_c03230{margin-left:-1.731840pt;}
._2_c03230{width:1.317888pt;}
._5_c03230{width:8.650752pt;}
._4_c03230{width:11.159808pt;}
._1_c03230{width:44.668800pt;}
._3_c03230{width:45.805056pt;}
.fs0_c03230{font-size:42.240000pt;}
.fs1_c03230{font-size:53.760000pt;}
.y0_c03230{bottom:0.000000pt;}
.y15_c03230{bottom:16.000400pt;}
.y4_c03230{bottom:16.320400pt;}
.y1f_c03230{bottom:130.665339pt;}
.y21_c03230{bottom:165.866875pt;}
.y20_c03230{bottom:174.507067pt;}
.y1e_c03230{bottom:245.225499pt;}
.y1d_c03230{bottom:303.785979pt;}
.y1c_c03230{bottom:317.225691pt;}
.y1a_c03230{bottom:361.386555pt;}
.y16_c03230{bottom:377.387067pt;}
.y1b_c03230{bottom:407.786139pt;}
.y19_c03230{bottom:437.226363pt;}
.y18_c03230{bottom:453.226875pt;}
.y14_c03230{bottom:466.666667pt;}
.y13_c03230{bottom:482.666971pt;}
.y17_c03230{bottom:497.386683pt;}
.y12_c03230{bottom:513.387067pt;}
.y22_c03230{bottom:546.027067pt;}
.ye_c03230{bottom:593.386363pt;}
.y10_c03230{bottom:628.586875pt;}
.yf_c03230{bottom:637.227067pt;}
.yd_c03230{bottom:707.946523pt;}
.yc_c03230{bottom:766.505947pt;}
.yb_c03230{bottom:779.945659pt;}
.y9_c03230{bottom:823.786555pt;}
.y5_c03230{bottom:839.787067pt;}
.ya_c03230{bottom:870.506107pt;}
.y8_c03230{bottom:899.946331pt;}
.y7_c03230{bottom:915.946843pt;}
.y3_c03230{bottom:929.066667pt;}
.y2_c03230{bottom:945.386939pt;}
.y6_c03230{bottom:959.786683pt;}
.y1_c03230{bottom:975.787067pt;}
.y11_c03230{bottom:1008.747067pt;}
.h6_c03230{height:25.920000pt;}
.h3_c03230{height:26.240000pt;}
.h2_c03230{height:28.916250pt;}
.h1_c03230{height:37.063125pt;}
.h4_c03230{height:37.166250pt;}
.h5_c03230{height:48.581988pt;}
.h0_c03230{height:1122.666667pt;}
.w2_c03230{width:191.360000pt;}
.w1_c03230{width:793.333333pt;}
.w0_c03230{width:793.626667pt;}
.x0_c03230{left:0.000000pt;}
.xe_c03230{left:104.000000pt;}
.x9_c03230{left:391.999968pt;}
.x5_c03230{left:396.160608pt;}
.xc_c03230{left:400.960000pt;}
.x8_c03230{left:404.799744pt;}
.x6_c03230{left:410.560224pt;}
.x1_c03230{left:411.840000pt;}
.xb_c03230{left:429.760416pt;}
.xa_c03230{left:437.439648pt;}
.x7_c03230{left:438.400608pt;}
.xd_c03230{left:450.560320pt;}
.x4_c03230{left:455.040000pt;}
.x2_c03230{left:468.159648pt;}
.x3_c03230{left:506.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03231 {
    display:none;
  }
  .loading-indicator_c03231.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03231 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03231 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03231" -> "#page-container .classname_c03231")
 */
.pf_c03231 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03231 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03231.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03231 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03231 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03231 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03231 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03231 {overflow:visible;}
  }
}
.c_c03231 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03231 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03231:after { /* webkit #35443 */
  content: '';
}
.t_c03231:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03231 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03231 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03231 { /* info for Javascript */
  display:none;
}
.l_c03231 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03231 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03231 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03231:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03231 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03231.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03231.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03231 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03231{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03231;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03231{font-family:ff1_c03231;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03231;src:url('chunks/assets/font_1419087677ec45e27528883c.woff2')format("woff");}.ff2_c03231{font-family:ff2_c03231;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03231;src:url('chunks/assets/font_4a5251dd629112cfc6d118e0.woff2')format("woff");}.ff3_c03231{font-family:ff3_c03231;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03231{vertical-align:0.000000px;}
.v1_c03231{vertical-align:1.439424px;}
.ls11_c03231{letter-spacing:-0.736560px;}
.ls9_c03231{letter-spacing:-0.679536px;}
.lsb_c03231{letter-spacing:-0.574992px;}
.ls12_c03231{letter-spacing:-0.270864px;}
.lsf_c03231{letter-spacing:-0.261360px;}
.ls8_c03231{letter-spacing:-0.242352px;}
.ls6_c03231{letter-spacing:-0.118800px;}
.ls15_c03231{letter-spacing:0.000000px;}
.ls3_c03231{letter-spacing:0.006048px;}
.ls7_c03231{letter-spacing:0.128304px;}
.lse_c03231{letter-spacing:0.242352px;}
.lsd_c03231{letter-spacing:0.508464px;}
.ls14_c03231{letter-spacing:0.514080px;}
.ls10_c03231{letter-spacing:0.536976px;}
.lsc_c03231{letter-spacing:0.579744px;}
.ls13_c03231{letter-spacing:0.594000px;}
.lsa_c03231{letter-spacing:0.598752px;}
.ls4_c03231{letter-spacing:0.613008px;}
.ls1_c03231{letter-spacing:0.651024px;}
.ls0_c03231{letter-spacing:0.689040px;}
.ls5_c03231{letter-spacing:0.717552px;}
.ls2_c03231{letter-spacing:0.722304px;}
.sc__c03231{text-shadow:none;}
.sc0_c03231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03231{-webkit-text-stroke:0px transparent;}
.sc0_c03231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03231{word-spacing:-15.126048px;}
.ws1_c03231{word-spacing:-12.569040px;}
.wsc_c03231{word-spacing:-12.474000px;}
.wsf_c03231{word-spacing:-12.459744px;}
.ws0_c03231{word-spacing:-11.761200px;}
.ws3_c03231{word-spacing:-11.200464px;}
.ws14_c03231{word-spacing:-1.083456px;}
.ws12_c03231{word-spacing:-1.012176px;}
.ws10_c03231{word-spacing:-0.974160px;}
.ws18_c03231{word-spacing:-0.719712px;}
.ws13_c03231{word-spacing:-0.118800px;}
.ws15_c03231{word-spacing:-0.099792px;}
.ws16_c03231{word-spacing:-0.090288px;}
.ws17_c03231{word-spacing:-0.085536px;}
.ws11_c03231{word-spacing:0.000000px;}
.ws5_c03231{word-spacing:6.605280px;}
.wsb_c03231{word-spacing:6.629040px;}
.wsd_c03231{word-spacing:33.300288px;}
.wsa_c03231{word-spacing:34.836912px;}
.ws9_c03231{word-spacing:36.143712px;}
.ws7_c03231{word-spacing:36.742464px;}
.ws2_c03231{word-spacing:37.759392px;}
.ws4_c03231{word-spacing:39.218256px;}
.ws6_c03231{word-spacing:39.902544px;}
.ws8_c03231{word-spacing:42.026688px;}
._0_c03231{margin-left:-1.948320px;}
._2_c03231{width:1.482624px;}
._5_c03231{width:19.982160px;}
._6_c03231{width:23.451120px;}
._4_c03231{width:24.691392px;}
._1_c03231{width:50.252400px;}
._3_c03231{width:51.530688px;}
.fc0_c03231{color:rgb(0,0,0);}
.fs0_c03231{font-size:47.520000px;}
.fs1_c03231{font-size:60.480000px;}
.y0_c03231{bottom:0.000000px;}
.y15_c03231{bottom:18.000450px;}
.y4_c03231{bottom:18.360450px;}
.y1f_c03231{bottom:131.878830px;}
.y1e_c03231{bottom:146.998506px;}
.y21_c03231{bottom:186.600234px;}
.y20_c03231{bottom:196.320450px;}
.y1d_c03231{bottom:275.878686px;}
.y1c_c03231{bottom:356.878902px;}
.y1a_c03231{bottom:406.559874px;}
.y16_c03231{bottom:424.560450px;}
.y1b_c03231{bottom:458.759406px;}
.y19_c03231{bottom:491.879658px;}
.y18_c03231{bottom:509.880234px;}
.y14_c03231{bottom:525.000000px;}
.y13_c03231{bottom:543.000342px;}
.y17_c03231{bottom:559.560018px;}
.y12_c03231{bottom:577.560450px;}
.y22_c03231{bottom:614.280450px;}
.ye_c03231{bottom:652.438794px;}
.yd_c03231{bottom:667.558470px;}
.y10_c03231{bottom:707.160234px;}
.yf_c03231{bottom:716.880450px;}
.yc_c03231{bottom:796.438650px;}
.yb_c03231{bottom:877.438866px;}
.y9_c03231{bottom:926.759874px;}
.y5_c03231{bottom:944.760450px;}
.ya_c03231{bottom:979.319370px;}
.y8_c03231{bottom:1012.439622px;}
.y7_c03231{bottom:1030.440198px;}
.y3_c03231{bottom:1045.200000px;}
.y2_c03231{bottom:1063.560306px;}
.y6_c03231{bottom:1079.760018px;}
.y1_c03231{bottom:1097.760450px;}
.y11_c03231{bottom:1134.840450px;}
.h6_c03231{height:29.160000px;}
.h3_c03231{height:29.520000px;}
.h2_c03231{height:32.530781px;}
.h1_c03231{height:41.696016px;}
.h4_c03231{height:41.812031px;}
.h5_c03231{height:54.654737px;}
.h0_c03231{height:1263.000000px;}
.w2_c03231{width:215.280000px;}
.w1_c03231{width:892.500000px;}
.w0_c03231{width:892.830000px;}
.x0_c03231{left:0.000000px;}
.xe_c03231{left:117.000000px;}
.x9_c03231{left:440.999964px;}
.x5_c03231{left:445.680684px;}
.xc_c03231{left:451.080000px;}
.x8_c03231{left:455.399712px;}
.x6_c03231{left:461.880252px;}
.x1_c03231{left:463.320000px;}
.xb_c03231{left:483.480468px;}
.xa_c03231{left:492.119604px;}
.x7_c03231{left:493.200684px;}
.xd_c03231{left:506.880360px;}
.x4_c03231{left:511.920000px;}
.x2_c03231{left:526.679604px;}
.x3_c03231{left:569.520000px;}
@media print{
.v0_c03231{vertical-align:0.000000pt;}
.v1_c03231{vertical-align:1.279488pt;}
.ls11_c03231{letter-spacing:-0.654720pt;}
.ls9_c03231{letter-spacing:-0.604032pt;}
.lsb_c03231{letter-spacing:-0.511104pt;}
.ls12_c03231{letter-spacing:-0.240768pt;}
.lsf_c03231{letter-spacing:-0.232320pt;}
.ls8_c03231{letter-spacing:-0.215424pt;}
.ls6_c03231{letter-spacing:-0.105600pt;}
.ls15_c03231{letter-spacing:0.000000pt;}
.ls3_c03231{letter-spacing:0.005376pt;}
.ls7_c03231{letter-spacing:0.114048pt;}
.lse_c03231{letter-spacing:0.215424pt;}
.lsd_c03231{letter-spacing:0.451968pt;}
.ls14_c03231{letter-spacing:0.456960pt;}
.ls10_c03231{letter-spacing:0.477312pt;}
.lsc_c03231{letter-spacing:0.515328pt;}
.ls13_c03231{letter-spacing:0.528000pt;}
.lsa_c03231{letter-spacing:0.532224pt;}
.ls4_c03231{letter-spacing:0.544896pt;}
.ls1_c03231{letter-spacing:0.578688pt;}
.ls0_c03231{letter-spacing:0.612480pt;}
.ls5_c03231{letter-spacing:0.637824pt;}
.ls2_c03231{letter-spacing:0.642048pt;}
.wse_c03231{word-spacing:-13.445376pt;}
.ws1_c03231{word-spacing:-11.172480pt;}
.wsc_c03231{word-spacing:-11.088000pt;}
.wsf_c03231{word-spacing:-11.075328pt;}
.ws0_c03231{word-spacing:-10.454400pt;}
.ws3_c03231{word-spacing:-9.955968pt;}
.ws14_c03231{word-spacing:-0.963072pt;}
.ws12_c03231{word-spacing:-0.899712pt;}
.ws10_c03231{word-spacing:-0.865920pt;}
.ws18_c03231{word-spacing:-0.639744pt;}
.ws13_c03231{word-spacing:-0.105600pt;}
.ws15_c03231{word-spacing:-0.088704pt;}
.ws16_c03231{word-spacing:-0.080256pt;}
.ws17_c03231{word-spacing:-0.076032pt;}
.ws11_c03231{word-spacing:0.000000pt;}
.ws5_c03231{word-spacing:5.871360pt;}
.wsb_c03231{word-spacing:5.892480pt;}
.wsd_c03231{word-spacing:29.600256pt;}
.wsa_c03231{word-spacing:30.966144pt;}
.ws9_c03231{word-spacing:32.127744pt;}
.ws7_c03231{word-spacing:32.659968pt;}
.ws2_c03231{word-spacing:33.563904pt;}
.ws4_c03231{word-spacing:34.860672pt;}
.ws6_c03231{word-spacing:35.468928pt;}
.ws8_c03231{word-spacing:37.357056pt;}
._0_c03231{margin-left:-1.731840pt;}
._2_c03231{width:1.317888pt;}
._5_c03231{width:17.761920pt;}
._6_c03231{width:20.845440pt;}
._4_c03231{width:21.947904pt;}
._1_c03231{width:44.668800pt;}
._3_c03231{width:45.805056pt;}
.fs0_c03231{font-size:42.240000pt;}
.fs1_c03231{font-size:53.760000pt;}
.y0_c03231{bottom:0.000000pt;}
.y15_c03231{bottom:16.000400pt;}
.y4_c03231{bottom:16.320400pt;}
.y1f_c03231{bottom:117.225627pt;}
.y1e_c03231{bottom:130.665339pt;}
.y21_c03231{bottom:165.866875pt;}
.y20_c03231{bottom:174.507067pt;}
.y1d_c03231{bottom:245.225499pt;}
.y1c_c03231{bottom:317.225691pt;}
.y1a_c03231{bottom:361.386555pt;}
.y16_c03231{bottom:377.387067pt;}
.y1b_c03231{bottom:407.786139pt;}
.y19_c03231{bottom:437.226363pt;}
.y18_c03231{bottom:453.226875pt;}
.y14_c03231{bottom:466.666667pt;}
.y13_c03231{bottom:482.666971pt;}
.y17_c03231{bottom:497.386683pt;}
.y12_c03231{bottom:513.387067pt;}
.y22_c03231{bottom:546.027067pt;}
.ye_c03231{bottom:579.945595pt;}
.yd_c03231{bottom:593.385307pt;}
.y10_c03231{bottom:628.586875pt;}
.yf_c03231{bottom:637.227067pt;}
.yc_c03231{bottom:707.945467pt;}
.yb_c03231{bottom:779.945659pt;}
.y9_c03231{bottom:823.786555pt;}
.y5_c03231{bottom:839.787067pt;}
.ya_c03231{bottom:870.506107pt;}
.y8_c03231{bottom:899.946331pt;}
.y7_c03231{bottom:915.946843pt;}
.y3_c03231{bottom:929.066667pt;}
.y2_c03231{bottom:945.386939pt;}
.y6_c03231{bottom:959.786683pt;}
.y1_c03231{bottom:975.787067pt;}
.y11_c03231{bottom:1008.747067pt;}
.h6_c03231{height:25.920000pt;}
.h3_c03231{height:26.240000pt;}
.h2_c03231{height:28.916250pt;}
.h1_c03231{height:37.063125pt;}
.h4_c03231{height:37.166250pt;}
.h5_c03231{height:48.581988pt;}
.h0_c03231{height:1122.666667pt;}
.w2_c03231{width:191.360000pt;}
.w1_c03231{width:793.333333pt;}
.w0_c03231{width:793.626667pt;}
.x0_c03231{left:0.000000pt;}
.xe_c03231{left:104.000000pt;}
.x9_c03231{left:391.999968pt;}
.x5_c03231{left:396.160608pt;}
.xc_c03231{left:400.960000pt;}
.x8_c03231{left:404.799744pt;}
.x6_c03231{left:410.560224pt;}
.x1_c03231{left:411.840000pt;}
.xb_c03231{left:429.760416pt;}
.xa_c03231{left:437.439648pt;}
.x7_c03231{left:438.400608pt;}
.xd_c03231{left:450.560320pt;}
.x4_c03231{left:455.040000pt;}
.x2_c03231{left:468.159648pt;}
.x3_c03231{left:506.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03232 {
    display:none;
  }
  .loading-indicator_c03232.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03232 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03232 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03232" -> "#page-container .classname_c03232")
 */
.pf_c03232 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03232 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03232.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03232 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03232 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03232 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03232 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03232 {overflow:visible;}
  }
}
.c_c03232 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03232 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03232:after { /* webkit #35443 */
  content: '';
}
.t_c03232:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03232 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03232 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03232 { /* info for Javascript */
  display:none;
}
.l_c03232 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03232 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03232 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03232:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03232 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03232.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03232.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03232 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03232{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03232;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03232{font-family:ff1_c03232;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03232;src:url('chunks/assets/font_9d3fa76b24115e4edf831344.woff2')format("woff");}.ff2_c03232{font-family:ff2_c03232;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03232;src:url('chunks/assets/font_3f9a3cc0fa59e4f48d8721b0.woff2')format("woff");}.ff3_c03232{font-family:ff3_c03232;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03232{vertical-align:0.000000px;}
.v1_c03232{vertical-align:1.439424px;}
.ls10_c03232{letter-spacing:-0.736560px;}
.ls8_c03232{letter-spacing:-0.679536px;}
.lsa_c03232{letter-spacing:-0.574992px;}
.ls11_c03232{letter-spacing:-0.270864px;}
.lse_c03232{letter-spacing:-0.261360px;}
.ls6_c03232{letter-spacing:-0.242352px;}
.ls5_c03232{letter-spacing:-0.118800px;}
.ls14_c03232{letter-spacing:0.000000px;}
.ls1_c03232{letter-spacing:0.006048px;}
.ls7_c03232{letter-spacing:0.128304px;}
.lsd_c03232{letter-spacing:0.242352px;}
.lsc_c03232{letter-spacing:0.508464px;}
.ls13_c03232{letter-spacing:0.514080px;}
.lsf_c03232{letter-spacing:0.536976px;}
.lsb_c03232{letter-spacing:0.579744px;}
.ls12_c03232{letter-spacing:0.594000px;}
.ls9_c03232{letter-spacing:0.598752px;}
.ls3_c03232{letter-spacing:0.613008px;}
.ls2_c03232{letter-spacing:0.651024px;}
.ls4_c03232{letter-spacing:0.717552px;}
.ls0_c03232{letter-spacing:0.722304px;}
.sc__c03232{text-shadow:none;}
.sc0_c03232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03232{-webkit-text-stroke:0px transparent;}
.sc0_c03232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03232{word-spacing:-15.126048px;}
.wsc_c03232{word-spacing:-12.474000px;}
.wsf_c03232{word-spacing:-12.459744px;}
.ws3_c03232{word-spacing:-11.200464px;}
.ws13_c03232{word-spacing:-1.083456px;}
.ws18_c03232{word-spacing:-1.012176px;}
.ws10_c03232{word-spacing:-0.974160px;}
.ws17_c03232{word-spacing:-0.719712px;}
.ws12_c03232{word-spacing:-0.118800px;}
.ws14_c03232{word-spacing:-0.099792px;}
.ws15_c03232{word-spacing:-0.090288px;}
.ws16_c03232{word-spacing:-0.085536px;}
.ws11_c03232{word-spacing:0.000000px;}
.ws1_c03232{word-spacing:2.760912px;}
.ws5_c03232{word-spacing:6.605280px;}
.wsb_c03232{word-spacing:6.629040px;}
.wsd_c03232{word-spacing:33.300288px;}
.wsa_c03232{word-spacing:34.836912px;}
.ws9_c03232{word-spacing:36.143712px;}
.ws7_c03232{word-spacing:36.742464px;}
.ws2_c03232{word-spacing:37.759392px;}
.ws0_c03232{word-spacing:38.020752px;}
.ws4_c03232{word-spacing:39.218256px;}
.ws6_c03232{word-spacing:39.902544px;}
.ws8_c03232{word-spacing:42.026688px;}
._0_c03232{margin-left:-1.948320px;}
._2_c03232{width:1.739232px;}
._5_c03232{width:19.982160px;}
._4_c03232{width:24.178176px;}
._6_c03232{width:25.570512px;}
._1_c03232{width:50.252400px;}
._3_c03232{width:52.243488px;}
.fc0_c03232{color:rgb(0,0,0);}
.fs0_c03232{font-size:47.520000px;}
.fs1_c03232{font-size:60.480000px;}
.y0_c03232{bottom:0.000000px;}
.y1b_c03232{bottom:131.878686px;}
.y1a_c03232{bottom:146.998362px;}
.y1d_c03232{bottom:186.600234px;}
.y1c_c03232{bottom:196.320450px;}
.y19_c03232{bottom:275.878542px;}
.y18_c03232{bottom:356.878758px;}
.y16_c03232{bottom:406.559730px;}
.y12_c03232{bottom:424.560306px;}
.y17_c03232{bottom:458.759262px;}
.y15_c03232{bottom:491.879514px;}
.y14_c03232{bottom:509.880090px;}
.y11_c03232{bottom:543.000342px;}
.y13_c03232{bottom:559.559874px;}
.y10_c03232{bottom:577.560450px;}
.y1e_c03232{bottom:614.280450px;}
.yc_c03232{bottom:652.438650px;}
.yb_c03232{bottom:667.558326px;}
.ye_c03232{bottom:707.160234px;}
.yd_c03232{bottom:716.880450px;}
.ya_c03232{bottom:796.438506px;}
.y9_c03232{bottom:877.438722px;}
.y7_c03232{bottom:926.759730px;}
.y3_c03232{bottom:944.760306px;}
.y8_c03232{bottom:979.319226px;}
.y6_c03232{bottom:1012.439478px;}
.y5_c03232{bottom:1030.440054px;}
.y2_c03232{bottom:1063.560306px;}
.y4_c03232{bottom:1079.759874px;}
.y1_c03232{bottom:1097.760450px;}
.yf_c03232{bottom:1134.840450px;}
.h3_c03232{height:32.530781px;}
.h1_c03232{height:41.696016px;}
.h2_c03232{height:41.812031px;}
.h4_c03232{height:54.654737px;}
.h0_c03232{height:1263.000000px;}
.w1_c03232{width:892.500000px;}
.w0_c03232{width:892.830000px;}
.x0_c03232{left:0.000000px;}
.xe_c03232{left:117.000000px;}
.x8_c03232{left:440.999856px;}
.x4_c03232{left:445.680576px;}
.xc_c03232{left:451.080000px;}
.x7_c03232{left:455.399604px;}
.x5_c03232{left:461.880144px;}
.x1_c03232{left:463.320000px;}
.xa_c03232{left:483.480360px;}
.x9_c03232{left:492.119496px;}
.x6_c03232{left:493.200576px;}
.xd_c03232{left:506.880360px;}
.x3_c03232{left:511.919892px;}
.x2_c03232{left:526.679604px;}
.xb_c03232{left:569.880036px;}
@media print{
.v0_c03232{vertical-align:0.000000pt;}
.v1_c03232{vertical-align:1.279488pt;}
.ls10_c03232{letter-spacing:-0.654720pt;}
.ls8_c03232{letter-spacing:-0.604032pt;}
.lsa_c03232{letter-spacing:-0.511104pt;}
.ls11_c03232{letter-spacing:-0.240768pt;}
.lse_c03232{letter-spacing:-0.232320pt;}
.ls6_c03232{letter-spacing:-0.215424pt;}
.ls5_c03232{letter-spacing:-0.105600pt;}
.ls14_c03232{letter-spacing:0.000000pt;}
.ls1_c03232{letter-spacing:0.005376pt;}
.ls7_c03232{letter-spacing:0.114048pt;}
.lsd_c03232{letter-spacing:0.215424pt;}
.lsc_c03232{letter-spacing:0.451968pt;}
.ls13_c03232{letter-spacing:0.456960pt;}
.lsf_c03232{letter-spacing:0.477312pt;}
.lsb_c03232{letter-spacing:0.515328pt;}
.ls12_c03232{letter-spacing:0.528000pt;}
.ls9_c03232{letter-spacing:0.532224pt;}
.ls3_c03232{letter-spacing:0.544896pt;}
.ls2_c03232{letter-spacing:0.578688pt;}
.ls4_c03232{letter-spacing:0.637824pt;}
.ls0_c03232{letter-spacing:0.642048pt;}
.wse_c03232{word-spacing:-13.445376pt;}
.wsc_c03232{word-spacing:-11.088000pt;}
.wsf_c03232{word-spacing:-11.075328pt;}
.ws3_c03232{word-spacing:-9.955968pt;}
.ws13_c03232{word-spacing:-0.963072pt;}
.ws18_c03232{word-spacing:-0.899712pt;}
.ws10_c03232{word-spacing:-0.865920pt;}
.ws17_c03232{word-spacing:-0.639744pt;}
.ws12_c03232{word-spacing:-0.105600pt;}
.ws14_c03232{word-spacing:-0.088704pt;}
.ws15_c03232{word-spacing:-0.080256pt;}
.ws16_c03232{word-spacing:-0.076032pt;}
.ws11_c03232{word-spacing:0.000000pt;}
.ws1_c03232{word-spacing:2.454144pt;}
.ws5_c03232{word-spacing:5.871360pt;}
.wsb_c03232{word-spacing:5.892480pt;}
.wsd_c03232{word-spacing:29.600256pt;}
.wsa_c03232{word-spacing:30.966144pt;}
.ws9_c03232{word-spacing:32.127744pt;}
.ws7_c03232{word-spacing:32.659968pt;}
.ws2_c03232{word-spacing:33.563904pt;}
.ws0_c03232{word-spacing:33.796224pt;}
.ws4_c03232{word-spacing:34.860672pt;}
.ws6_c03232{word-spacing:35.468928pt;}
.ws8_c03232{word-spacing:37.357056pt;}
._0_c03232{margin-left:-1.731840pt;}
._2_c03232{width:1.545984pt;}
._5_c03232{width:17.761920pt;}
._4_c03232{width:21.491712pt;}
._6_c03232{width:22.729344pt;}
._1_c03232{width:44.668800pt;}
._3_c03232{width:46.438656pt;}
.fs0_c03232{font-size:42.240000pt;}
.fs1_c03232{font-size:53.760000pt;}
.y0_c03232{bottom:0.000000pt;}
.y1b_c03232{bottom:117.225499pt;}
.y1a_c03232{bottom:130.665211pt;}
.y1d_c03232{bottom:165.866875pt;}
.y1c_c03232{bottom:174.507067pt;}
.y19_c03232{bottom:245.225371pt;}
.y18_c03232{bottom:317.225563pt;}
.y16_c03232{bottom:361.386427pt;}
.y12_c03232{bottom:377.386939pt;}
.y17_c03232{bottom:407.786011pt;}
.y15_c03232{bottom:437.226235pt;}
.y14_c03232{bottom:453.226747pt;}
.y11_c03232{bottom:482.666971pt;}
.y13_c03232{bottom:497.386555pt;}
.y10_c03232{bottom:513.387067pt;}
.y1e_c03232{bottom:546.027067pt;}
.yc_c03232{bottom:579.945467pt;}
.yb_c03232{bottom:593.385179pt;}
.ye_c03232{bottom:628.586875pt;}
.yd_c03232{bottom:637.227067pt;}
.ya_c03232{bottom:707.945339pt;}
.y9_c03232{bottom:779.945531pt;}
.y7_c03232{bottom:823.786427pt;}
.y3_c03232{bottom:839.786939pt;}
.y8_c03232{bottom:870.505979pt;}
.y6_c03232{bottom:899.946203pt;}
.y5_c03232{bottom:915.946715pt;}
.y2_c03232{bottom:945.386939pt;}
.y4_c03232{bottom:959.786555pt;}
.y1_c03232{bottom:975.787067pt;}
.yf_c03232{bottom:1008.747067pt;}
.h3_c03232{height:28.916250pt;}
.h1_c03232{height:37.063125pt;}
.h2_c03232{height:37.166250pt;}
.h4_c03232{height:48.581988pt;}
.h0_c03232{height:1122.666667pt;}
.w1_c03232{width:793.333333pt;}
.w0_c03232{width:793.626667pt;}
.x0_c03232{left:0.000000pt;}
.xe_c03232{left:104.000000pt;}
.x8_c03232{left:391.999872pt;}
.x4_c03232{left:396.160512pt;}
.xc_c03232{left:400.960000pt;}
.x7_c03232{left:404.799648pt;}
.x5_c03232{left:410.560128pt;}
.x1_c03232{left:411.840000pt;}
.xa_c03232{left:429.760320pt;}
.x9_c03232{left:437.439552pt;}
.x6_c03232{left:438.400512pt;}
.xd_c03232{left:450.560320pt;}
.x3_c03232{left:455.039904pt;}
.x2_c03232{left:468.159648pt;}
.xb_c03232{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03233 {
    display:none;
  }
  .loading-indicator_c03233.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03233 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03233 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03233" -> "#page-container .classname_c03233")
 */
.pf_c03233 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03233 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03233.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03233 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03233 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03233 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03233 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03233 {overflow:visible;}
  }
}
.c_c03233 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03233 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03233:after { /* webkit #35443 */
  content: '';
}
.t_c03233:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03233 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03233 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03233 { /* info for Javascript */
  display:none;
}
.l_c03233 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03233 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03233 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03233:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03233 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03233.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03233.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03233 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03233{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03233;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03233{font-family:ff1_c03233;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03233;src:url('chunks/assets/font_9940f2dd51c37352eedf13ea.woff2')format("woff");}.ff2_c03233{font-family:ff2_c03233;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03233;src:url('chunks/assets/font_b788d9f929a99b201494e518.woff2')format("woff");}.ff3_c03233{font-family:ff3_c03233;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03233{vertical-align:0.000000px;}
.v1_c03233{vertical-align:1.439424px;}
.ls10_c03233{letter-spacing:-0.736560px;}
.ls8_c03233{letter-spacing:-0.679536px;}
.lsa_c03233{letter-spacing:-0.574992px;}
.ls11_c03233{letter-spacing:-0.270864px;}
.lse_c03233{letter-spacing:-0.261360px;}
.ls6_c03233{letter-spacing:-0.242352px;}
.ls5_c03233{letter-spacing:-0.118800px;}
.ls14_c03233{letter-spacing:0.000000px;}
.ls2_c03233{letter-spacing:0.006048px;}
.ls7_c03233{letter-spacing:0.128304px;}
.lsd_c03233{letter-spacing:0.242352px;}
.lsc_c03233{letter-spacing:0.508464px;}
.ls13_c03233{letter-spacing:0.514080px;}
.lsf_c03233{letter-spacing:0.536976px;}
.lsb_c03233{letter-spacing:0.579744px;}
.ls12_c03233{letter-spacing:0.594000px;}
.ls9_c03233{letter-spacing:0.598752px;}
.ls3_c03233{letter-spacing:0.613008px;}
.ls0_c03233{letter-spacing:0.651024px;}
.ls4_c03233{letter-spacing:0.717552px;}
.ls1_c03233{letter-spacing:0.722304px;}
.sc__c03233{text-shadow:none;}
.sc0_c03233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03233{-webkit-text-stroke:0px transparent;}
.sc0_c03233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03233{word-spacing:-15.126048px;}
.wsc_c03233{word-spacing:-12.474000px;}
.ws3_c03233{word-spacing:-11.200464px;}
.ws13_c03233{word-spacing:-1.083456px;}
.ws11_c03233{word-spacing:-1.012176px;}
.wsf_c03233{word-spacing:-0.974160px;}
.ws17_c03233{word-spacing:-0.719712px;}
.ws12_c03233{word-spacing:-0.118800px;}
.ws14_c03233{word-spacing:-0.099792px;}
.ws15_c03233{word-spacing:-0.090288px;}
.ws16_c03233{word-spacing:-0.085536px;}
.ws10_c03233{word-spacing:0.000000px;}
.ws1_c03233{word-spacing:2.760912px;}
.ws5_c03233{word-spacing:6.605280px;}
.wsb_c03233{word-spacing:6.629040px;}
.wsd_c03233{word-spacing:33.300288px;}
.wsa_c03233{word-spacing:34.836912px;}
.ws9_c03233{word-spacing:36.143712px;}
.ws7_c03233{word-spacing:36.742464px;}
.ws2_c03233{word-spacing:37.759392px;}
.ws0_c03233{word-spacing:38.020752px;}
.ws4_c03233{word-spacing:39.218256px;}
.ws6_c03233{word-spacing:39.902544px;}
.ws8_c03233{word-spacing:42.026688px;}
._0_c03233{margin-left:-1.948320px;}
._2_c03233{width:1.739232px;}
._5_c03233{width:19.982160px;}
._4_c03233{width:24.178176px;}
._6_c03233{width:25.570512px;}
._1_c03233{width:50.252400px;}
._3_c03233{width:52.243488px;}
.fc0_c03233{color:rgb(0,0,0);}
.fs0_c03233{font-size:47.520000px;}
.fs1_c03233{font-size:60.480000px;}
.y0_c03233{bottom:0.000000px;}
.y1b_c03233{bottom:131.878686px;}
.y1a_c03233{bottom:146.998362px;}
.y1d_c03233{bottom:186.600234px;}
.y1c_c03233{bottom:196.320450px;}
.y19_c03233{bottom:275.878542px;}
.y18_c03233{bottom:356.878758px;}
.y16_c03233{bottom:406.559730px;}
.y12_c03233{bottom:424.560306px;}
.y17_c03233{bottom:458.759262px;}
.y15_c03233{bottom:491.879514px;}
.y14_c03233{bottom:509.880090px;}
.y11_c03233{bottom:543.000342px;}
.y13_c03233{bottom:559.559874px;}
.y10_c03233{bottom:577.560450px;}
.y1e_c03233{bottom:614.280450px;}
.yc_c03233{bottom:652.438650px;}
.yb_c03233{bottom:667.558326px;}
.ye_c03233{bottom:707.160234px;}
.yd_c03233{bottom:716.880450px;}
.ya_c03233{bottom:796.438506px;}
.y9_c03233{bottom:877.438722px;}
.y7_c03233{bottom:926.759730px;}
.y3_c03233{bottom:944.760306px;}
.y8_c03233{bottom:979.319226px;}
.y6_c03233{bottom:1012.439478px;}
.y5_c03233{bottom:1030.440054px;}
.y2_c03233{bottom:1063.560306px;}
.y4_c03233{bottom:1079.759874px;}
.y1_c03233{bottom:1097.760450px;}
.yf_c03233{bottom:1134.840450px;}
.h3_c03233{height:32.530781px;}
.h1_c03233{height:41.696016px;}
.h2_c03233{height:41.812031px;}
.h4_c03233{height:54.654737px;}
.h0_c03233{height:1263.000000px;}
.w1_c03233{width:892.500000px;}
.w0_c03233{width:892.830000px;}
.x0_c03233{left:0.000000px;}
.xe_c03233{left:117.000000px;}
.x8_c03233{left:440.999856px;}
.x4_c03233{left:445.680576px;}
.xc_c03233{left:451.080000px;}
.x7_c03233{left:455.399604px;}
.x5_c03233{left:461.880144px;}
.x1_c03233{left:463.320000px;}
.xa_c03233{left:483.480360px;}
.x9_c03233{left:492.119496px;}
.x6_c03233{left:493.200576px;}
.xd_c03233{left:506.880360px;}
.x3_c03233{left:511.919892px;}
.x2_c03233{left:526.679604px;}
.xb_c03233{left:569.880036px;}
@media print{
.v0_c03233{vertical-align:0.000000pt;}
.v1_c03233{vertical-align:1.279488pt;}
.ls10_c03233{letter-spacing:-0.654720pt;}
.ls8_c03233{letter-spacing:-0.604032pt;}
.lsa_c03233{letter-spacing:-0.511104pt;}
.ls11_c03233{letter-spacing:-0.240768pt;}
.lse_c03233{letter-spacing:-0.232320pt;}
.ls6_c03233{letter-spacing:-0.215424pt;}
.ls5_c03233{letter-spacing:-0.105600pt;}
.ls14_c03233{letter-spacing:0.000000pt;}
.ls2_c03233{letter-spacing:0.005376pt;}
.ls7_c03233{letter-spacing:0.114048pt;}
.lsd_c03233{letter-spacing:0.215424pt;}
.lsc_c03233{letter-spacing:0.451968pt;}
.ls13_c03233{letter-spacing:0.456960pt;}
.lsf_c03233{letter-spacing:0.477312pt;}
.lsb_c03233{letter-spacing:0.515328pt;}
.ls12_c03233{letter-spacing:0.528000pt;}
.ls9_c03233{letter-spacing:0.532224pt;}
.ls3_c03233{letter-spacing:0.544896pt;}
.ls0_c03233{letter-spacing:0.578688pt;}
.ls4_c03233{letter-spacing:0.637824pt;}
.ls1_c03233{letter-spacing:0.642048pt;}
.wse_c03233{word-spacing:-13.445376pt;}
.wsc_c03233{word-spacing:-11.088000pt;}
.ws3_c03233{word-spacing:-9.955968pt;}
.ws13_c03233{word-spacing:-0.963072pt;}
.ws11_c03233{word-spacing:-0.899712pt;}
.wsf_c03233{word-spacing:-0.865920pt;}
.ws17_c03233{word-spacing:-0.639744pt;}
.ws12_c03233{word-spacing:-0.105600pt;}
.ws14_c03233{word-spacing:-0.088704pt;}
.ws15_c03233{word-spacing:-0.080256pt;}
.ws16_c03233{word-spacing:-0.076032pt;}
.ws10_c03233{word-spacing:0.000000pt;}
.ws1_c03233{word-spacing:2.454144pt;}
.ws5_c03233{word-spacing:5.871360pt;}
.wsb_c03233{word-spacing:5.892480pt;}
.wsd_c03233{word-spacing:29.600256pt;}
.wsa_c03233{word-spacing:30.966144pt;}
.ws9_c03233{word-spacing:32.127744pt;}
.ws7_c03233{word-spacing:32.659968pt;}
.ws2_c03233{word-spacing:33.563904pt;}
.ws0_c03233{word-spacing:33.796224pt;}
.ws4_c03233{word-spacing:34.860672pt;}
.ws6_c03233{word-spacing:35.468928pt;}
.ws8_c03233{word-spacing:37.357056pt;}
._0_c03233{margin-left:-1.731840pt;}
._2_c03233{width:1.545984pt;}
._5_c03233{width:17.761920pt;}
._4_c03233{width:21.491712pt;}
._6_c03233{width:22.729344pt;}
._1_c03233{width:44.668800pt;}
._3_c03233{width:46.438656pt;}
.fs0_c03233{font-size:42.240000pt;}
.fs1_c03233{font-size:53.760000pt;}
.y0_c03233{bottom:0.000000pt;}
.y1b_c03233{bottom:117.225499pt;}
.y1a_c03233{bottom:130.665211pt;}
.y1d_c03233{bottom:165.866875pt;}
.y1c_c03233{bottom:174.507067pt;}
.y19_c03233{bottom:245.225371pt;}
.y18_c03233{bottom:317.225563pt;}
.y16_c03233{bottom:361.386427pt;}
.y12_c03233{bottom:377.386939pt;}
.y17_c03233{bottom:407.786011pt;}
.y15_c03233{bottom:437.226235pt;}
.y14_c03233{bottom:453.226747pt;}
.y11_c03233{bottom:482.666971pt;}
.y13_c03233{bottom:497.386555pt;}
.y10_c03233{bottom:513.387067pt;}
.y1e_c03233{bottom:546.027067pt;}
.yc_c03233{bottom:579.945467pt;}
.yb_c03233{bottom:593.385179pt;}
.ye_c03233{bottom:628.586875pt;}
.yd_c03233{bottom:637.227067pt;}
.ya_c03233{bottom:707.945339pt;}
.y9_c03233{bottom:779.945531pt;}
.y7_c03233{bottom:823.786427pt;}
.y3_c03233{bottom:839.786939pt;}
.y8_c03233{bottom:870.505979pt;}
.y6_c03233{bottom:899.946203pt;}
.y5_c03233{bottom:915.946715pt;}
.y2_c03233{bottom:945.386939pt;}
.y4_c03233{bottom:959.786555pt;}
.y1_c03233{bottom:975.787067pt;}
.yf_c03233{bottom:1008.747067pt;}
.h3_c03233{height:28.916250pt;}
.h1_c03233{height:37.063125pt;}
.h2_c03233{height:37.166250pt;}
.h4_c03233{height:48.581988pt;}
.h0_c03233{height:1122.666667pt;}
.w1_c03233{width:793.333333pt;}
.w0_c03233{width:793.626667pt;}
.x0_c03233{left:0.000000pt;}
.xe_c03233{left:104.000000pt;}
.x8_c03233{left:391.999872pt;}
.x4_c03233{left:396.160512pt;}
.xc_c03233{left:400.960000pt;}
.x7_c03233{left:404.799648pt;}
.x5_c03233{left:410.560128pt;}
.x1_c03233{left:411.840000pt;}
.xa_c03233{left:429.760320pt;}
.x9_c03233{left:437.439552pt;}
.x6_c03233{left:438.400512pt;}
.xd_c03233{left:450.560320pt;}
.x3_c03233{left:455.039904pt;}
.x2_c03233{left:468.159648pt;}
.xb_c03233{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03234 {
    display:none;
  }
  .loading-indicator_c03234.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03234 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03234 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03234" -> "#page-container .classname_c03234")
 */
.pf_c03234 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03234 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03234.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03234 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03234 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03234 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03234 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03234 {overflow:visible;}
  }
}
.c_c03234 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03234 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03234:after { /* webkit #35443 */
  content: '';
}
.t_c03234:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03234 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03234 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03234 { /* info for Javascript */
  display:none;
}
.l_c03234 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03234 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03234 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03234:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03234 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03234.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03234.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03234 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03234{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03234;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03234{font-family:ff1_c03234;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03234;src:url('chunks/assets/font_e2565e5bdc54b0d20fc63405.woff2')format("woff");}.ff2_c03234{font-family:ff2_c03234;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03234;src:url('chunks/assets/font_5170aa9c12f110801f7d97b1.woff2')format("woff");}.ff3_c03234{font-family:ff3_c03234;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03234{vertical-align:0.000000px;}
.v1_c03234{vertical-align:1.439424px;}
.ls10_c03234{letter-spacing:-0.736560px;}
.ls8_c03234{letter-spacing:-0.679536px;}
.lsa_c03234{letter-spacing:-0.574992px;}
.ls17_c03234{letter-spacing:-0.275616px;}
.ls11_c03234{letter-spacing:-0.270864px;}
.lse_c03234{letter-spacing:-0.261360px;}
.ls15_c03234{letter-spacing:-0.256608px;}
.ls6_c03234{letter-spacing:-0.242352px;}
.ls5_c03234{letter-spacing:-0.118800px;}
.ls16_c03234{letter-spacing:-0.047520px;}
.ls14_c03234{letter-spacing:0.000000px;}
.ls1_c03234{letter-spacing:0.006048px;}
.ls7_c03234{letter-spacing:0.128304px;}
.lsd_c03234{letter-spacing:0.242352px;}
.lsc_c03234{letter-spacing:0.508464px;}
.ls13_c03234{letter-spacing:0.514080px;}
.lsf_c03234{letter-spacing:0.536976px;}
.lsb_c03234{letter-spacing:0.579744px;}
.ls12_c03234{letter-spacing:0.594000px;}
.ls9_c03234{letter-spacing:0.598752px;}
.ls3_c03234{letter-spacing:0.613008px;}
.ls2_c03234{letter-spacing:0.689040px;}
.ls4_c03234{letter-spacing:0.717552px;}
.ls0_c03234{letter-spacing:0.722304px;}
.sc__c03234{text-shadow:none;}
.sc0_c03234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03234{-webkit-text-stroke:0px transparent;}
.sc0_c03234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03234{word-spacing:-15.126048px;}
.ws10_c03234{word-spacing:-12.569040px;}
.wsc_c03234{word-spacing:-12.474000px;}
.ws13_c03234{word-spacing:-12.459744px;}
.ws15_c03234{word-spacing:-12.416976px;}
.ws11_c03234{word-spacing:-12.388464px;}
.wsf_c03234{word-spacing:-11.761200px;}
.ws12_c03234{word-spacing:-11.305008px;}
.ws3_c03234{word-spacing:-11.200464px;}
.ws19_c03234{word-spacing:-1.083456px;}
.ws16_c03234{word-spacing:-0.974160px;}
.ws1d_c03234{word-spacing:-0.719712px;}
.ws1f_c03234{word-spacing:-0.603504px;}
.ws20_c03234{word-spacing:-0.313632px;}
.ws18_c03234{word-spacing:-0.118800px;}
.ws1e_c03234{word-spacing:-0.104544px;}
.ws1a_c03234{word-spacing:-0.099792px;}
.ws1b_c03234{word-spacing:-0.090288px;}
.ws1c_c03234{word-spacing:-0.085536px;}
.ws17_c03234{word-spacing:0.000000px;}
.ws1_c03234{word-spacing:2.760912px;}
.ws5_c03234{word-spacing:6.605280px;}
.wsb_c03234{word-spacing:6.629040px;}
.wsd_c03234{word-spacing:33.300288px;}
.wsa_c03234{word-spacing:34.836912px;}
.ws9_c03234{word-spacing:36.143712px;}
.ws7_c03234{word-spacing:36.742464px;}
.ws2_c03234{word-spacing:37.759392px;}
.ws0_c03234{word-spacing:38.020752px;}
.ws4_c03234{word-spacing:39.218256px;}
.ws6_c03234{word-spacing:39.902544px;}
.ws8_c03234{word-spacing:42.026688px;}
.ws14_c03234{word-spacing:59.756400px;}
._0_c03234{margin-left:-1.948320px;}
._2_c03234{width:1.739232px;}
._7_c03234{width:15.092352px;}
._5_c03234{width:19.982160px;}
._4_c03234{width:24.178176px;}
._6_c03234{width:25.570512px;}
._1_c03234{width:50.252400px;}
._3_c03234{width:52.243488px;}
._9_c03234{width:76.103280px;}
._8_c03234{width:78.645600px;}
.fc0_c03234{color:rgb(0,0,0);}
.fs0_c03234{font-size:47.520000px;}
.fs1_c03234{font-size:60.480000px;}
.y0_c03234{bottom:0.000000px;}
.y13_c03234{bottom:18.000450px;}
.y1d_c03234{bottom:146.998506px;}
.y1f_c03234{bottom:186.600234px;}
.y1e_c03234{bottom:196.320450px;}
.y1c_c03234{bottom:260.759010px;}
.y1b_c03234{bottom:275.878686px;}
.y1a_c03234{bottom:356.878902px;}
.y18_c03234{bottom:406.559874px;}
.y14_c03234{bottom:424.560450px;}
.y19_c03234{bottom:458.759406px;}
.y17_c03234{bottom:491.879658px;}
.y16_c03234{bottom:509.880234px;}
.y12_c03234{bottom:525.000000px;}
.y11_c03234{bottom:543.000342px;}
.y15_c03234{bottom:559.560018px;}
.y10_c03234{bottom:577.560450px;}
.y20_c03234{bottom:614.280450px;}
.yc_c03234{bottom:652.438650px;}
.yb_c03234{bottom:667.558326px;}
.ye_c03234{bottom:707.160234px;}
.yd_c03234{bottom:716.880450px;}
.ya_c03234{bottom:796.438506px;}
.y9_c03234{bottom:877.438722px;}
.y7_c03234{bottom:926.759730px;}
.y3_c03234{bottom:944.760306px;}
.y8_c03234{bottom:979.319226px;}
.y6_c03234{bottom:1012.439478px;}
.y5_c03234{bottom:1030.440054px;}
.y2_c03234{bottom:1063.560306px;}
.y4_c03234{bottom:1079.759874px;}
.y1_c03234{bottom:1097.760450px;}
.yf_c03234{bottom:1134.840450px;}
.h5_c03234{height:29.160000px;}
.h3_c03234{height:32.530781px;}
.h1_c03234{height:41.696016px;}
.h2_c03234{height:41.812031px;}
.h4_c03234{height:54.654737px;}
.h0_c03234{height:1263.000000px;}
.w2_c03234{width:215.280000px;}
.w1_c03234{width:892.500000px;}
.w0_c03234{width:892.830000px;}
.x0_c03234{left:0.000000px;}
.xe_c03234{left:117.000000px;}
.x8_c03234{left:440.999856px;}
.x4_c03234{left:445.680576px;}
.xc_c03234{left:451.080000px;}
.x7_c03234{left:455.399604px;}
.x5_c03234{left:461.880144px;}
.x1_c03234{left:463.320000px;}
.xa_c03234{left:483.480360px;}
.x9_c03234{left:492.119496px;}
.x6_c03234{left:493.200576px;}
.xd_c03234{left:506.880360px;}
.x3_c03234{left:511.919892px;}
.x2_c03234{left:526.679604px;}
.xb_c03234{left:569.880036px;}
@media print{
.v0_c03234{vertical-align:0.000000pt;}
.v1_c03234{vertical-align:1.279488pt;}
.ls10_c03234{letter-spacing:-0.654720pt;}
.ls8_c03234{letter-spacing:-0.604032pt;}
.lsa_c03234{letter-spacing:-0.511104pt;}
.ls17_c03234{letter-spacing:-0.244992pt;}
.ls11_c03234{letter-spacing:-0.240768pt;}
.lse_c03234{letter-spacing:-0.232320pt;}
.ls15_c03234{letter-spacing:-0.228096pt;}
.ls6_c03234{letter-spacing:-0.215424pt;}
.ls5_c03234{letter-spacing:-0.105600pt;}
.ls16_c03234{letter-spacing:-0.042240pt;}
.ls14_c03234{letter-spacing:0.000000pt;}
.ls1_c03234{letter-spacing:0.005376pt;}
.ls7_c03234{letter-spacing:0.114048pt;}
.lsd_c03234{letter-spacing:0.215424pt;}
.lsc_c03234{letter-spacing:0.451968pt;}
.ls13_c03234{letter-spacing:0.456960pt;}
.lsf_c03234{letter-spacing:0.477312pt;}
.lsb_c03234{letter-spacing:0.515328pt;}
.ls12_c03234{letter-spacing:0.528000pt;}
.ls9_c03234{letter-spacing:0.532224pt;}
.ls3_c03234{letter-spacing:0.544896pt;}
.ls2_c03234{letter-spacing:0.612480pt;}
.ls4_c03234{letter-spacing:0.637824pt;}
.ls0_c03234{letter-spacing:0.642048pt;}
.wse_c03234{word-spacing:-13.445376pt;}
.ws10_c03234{word-spacing:-11.172480pt;}
.wsc_c03234{word-spacing:-11.088000pt;}
.ws13_c03234{word-spacing:-11.075328pt;}
.ws15_c03234{word-spacing:-11.037312pt;}
.ws11_c03234{word-spacing:-11.011968pt;}
.wsf_c03234{word-spacing:-10.454400pt;}
.ws12_c03234{word-spacing:-10.048896pt;}
.ws3_c03234{word-spacing:-9.955968pt;}
.ws19_c03234{word-spacing:-0.963072pt;}
.ws16_c03234{word-spacing:-0.865920pt;}
.ws1d_c03234{word-spacing:-0.639744pt;}
.ws1f_c03234{word-spacing:-0.536448pt;}
.ws20_c03234{word-spacing:-0.278784pt;}
.ws18_c03234{word-spacing:-0.105600pt;}
.ws1e_c03234{word-spacing:-0.092928pt;}
.ws1a_c03234{word-spacing:-0.088704pt;}
.ws1b_c03234{word-spacing:-0.080256pt;}
.ws1c_c03234{word-spacing:-0.076032pt;}
.ws17_c03234{word-spacing:0.000000pt;}
.ws1_c03234{word-spacing:2.454144pt;}
.ws5_c03234{word-spacing:5.871360pt;}
.wsb_c03234{word-spacing:5.892480pt;}
.wsd_c03234{word-spacing:29.600256pt;}
.wsa_c03234{word-spacing:30.966144pt;}
.ws9_c03234{word-spacing:32.127744pt;}
.ws7_c03234{word-spacing:32.659968pt;}
.ws2_c03234{word-spacing:33.563904pt;}
.ws0_c03234{word-spacing:33.796224pt;}
.ws4_c03234{word-spacing:34.860672pt;}
.ws6_c03234{word-spacing:35.468928pt;}
.ws8_c03234{word-spacing:37.357056pt;}
.ws14_c03234{word-spacing:53.116800pt;}
._0_c03234{margin-left:-1.731840pt;}
._2_c03234{width:1.545984pt;}
._7_c03234{width:13.415424pt;}
._5_c03234{width:17.761920pt;}
._4_c03234{width:21.491712pt;}
._6_c03234{width:22.729344pt;}
._1_c03234{width:44.668800pt;}
._3_c03234{width:46.438656pt;}
._9_c03234{width:67.647360pt;}
._8_c03234{width:69.907200pt;}
.fs0_c03234{font-size:42.240000pt;}
.fs1_c03234{font-size:53.760000pt;}
.y0_c03234{bottom:0.000000pt;}
.y13_c03234{bottom:16.000400pt;}
.y1d_c03234{bottom:130.665339pt;}
.y1f_c03234{bottom:165.866875pt;}
.y1e_c03234{bottom:174.507067pt;}
.y1c_c03234{bottom:231.785787pt;}
.y1b_c03234{bottom:245.225499pt;}
.y1a_c03234{bottom:317.225691pt;}
.y18_c03234{bottom:361.386555pt;}
.y14_c03234{bottom:377.387067pt;}
.y19_c03234{bottom:407.786139pt;}
.y17_c03234{bottom:437.226363pt;}
.y16_c03234{bottom:453.226875pt;}
.y12_c03234{bottom:466.666667pt;}
.y11_c03234{bottom:482.666971pt;}
.y15_c03234{bottom:497.386683pt;}
.y10_c03234{bottom:513.387067pt;}
.y20_c03234{bottom:546.027067pt;}
.yc_c03234{bottom:579.945467pt;}
.yb_c03234{bottom:593.385179pt;}
.ye_c03234{bottom:628.586875pt;}
.yd_c03234{bottom:637.227067pt;}
.ya_c03234{bottom:707.945339pt;}
.y9_c03234{bottom:779.945531pt;}
.y7_c03234{bottom:823.786427pt;}
.y3_c03234{bottom:839.786939pt;}
.y8_c03234{bottom:870.505979pt;}
.y6_c03234{bottom:899.946203pt;}
.y5_c03234{bottom:915.946715pt;}
.y2_c03234{bottom:945.386939pt;}
.y4_c03234{bottom:959.786555pt;}
.y1_c03234{bottom:975.787067pt;}
.yf_c03234{bottom:1008.747067pt;}
.h5_c03234{height:25.920000pt;}
.h3_c03234{height:28.916250pt;}
.h1_c03234{height:37.063125pt;}
.h2_c03234{height:37.166250pt;}
.h4_c03234{height:48.581988pt;}
.h0_c03234{height:1122.666667pt;}
.w2_c03234{width:191.360000pt;}
.w1_c03234{width:793.333333pt;}
.w0_c03234{width:793.626667pt;}
.x0_c03234{left:0.000000pt;}
.xe_c03234{left:104.000000pt;}
.x8_c03234{left:391.999872pt;}
.x4_c03234{left:396.160512pt;}
.xc_c03234{left:400.960000pt;}
.x7_c03234{left:404.799648pt;}
.x5_c03234{left:410.560128pt;}
.x1_c03234{left:411.840000pt;}
.xa_c03234{left:429.760320pt;}
.x9_c03234{left:437.439552pt;}
.x6_c03234{left:438.400512pt;}
.xd_c03234{left:450.560320pt;}
.x3_c03234{left:455.039904pt;}
.x2_c03234{left:468.159648pt;}
.xb_c03234{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03235 {
    display:none;
  }
  .loading-indicator_c03235.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03235 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03235 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03235" -> "#page-container .classname_c03235")
 */
.pf_c03235 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03235 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03235.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03235 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03235 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03235 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03235 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03235 {overflow:visible;}
  }
}
.c_c03235 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03235 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03235:after { /* webkit #35443 */
  content: '';
}
.t_c03235:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03235 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03235 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03235 { /* info for Javascript */
  display:none;
}
.l_c03235 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03235 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03235 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03235:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03235 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03235.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03235.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03235 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03235{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03235;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03235{font-family:ff1_c03235;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03235;src:url('chunks/assets/font_32da5790b7b2e01b5da17c7f.woff2')format("woff");}.ff2_c03235{font-family:ff2_c03235;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03235;src:url('chunks/assets/font_8da59bd6f475074027aa0ac2.woff2')format("woff");}.ff3_c03235{font-family:ff3_c03235;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03235{vertical-align:0.000000px;}
.v1_c03235{vertical-align:1.439424px;}
.v2_c03235{vertical-align:33.121440px;}
.ls14_c03235{letter-spacing:-0.798336px;}
.ls9_c03235{letter-spacing:-0.574992px;}
.ls16_c03235{letter-spacing:-0.375408px;}
.lse_c03235{letter-spacing:-0.275616px;}
.lsc_c03235{letter-spacing:-0.261360px;}
.ls8_c03235{letter-spacing:-0.256608px;}
.ls4_c03235{letter-spacing:-0.242352px;}
.lsb_c03235{letter-spacing:-0.199584px;}
.ls3_c03235{letter-spacing:-0.118800px;}
.ls11_c03235{letter-spacing:0.000000px;}
.ls0_c03235{letter-spacing:0.006048px;}
.ls5_c03235{letter-spacing:0.128304px;}
.ls12_c03235{letter-spacing:0.185328px;}
.ls13_c03235{letter-spacing:0.242352px;}
.ls6_c03235{letter-spacing:0.508464px;}
.ls10_c03235{letter-spacing:0.514080px;}
.lsd_c03235{letter-spacing:0.536976px;}
.lsa_c03235{letter-spacing:0.579744px;}
.lsf_c03235{letter-spacing:0.594000px;}
.ls7_c03235{letter-spacing:0.598752px;}
.ls2_c03235{letter-spacing:0.613008px;}
.ls1_c03235{letter-spacing:0.717552px;}
.ls15_c03235{letter-spacing:0.722304px;}
.sc__c03235{text-shadow:none;}
.sc0_c03235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03235{-webkit-text-stroke:0px transparent;}
.sc0_c03235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03235{word-spacing:-15.126048px;}
.ws9_c03235{word-spacing:-12.474000px;}
.ws6_c03235{word-spacing:-12.459744px;}
.ws8_c03235{word-spacing:-12.416976px;}
.ws3_c03235{word-spacing:-12.388464px;}
.ws5_c03235{word-spacing:-11.305008px;}
.ws1c_c03235{word-spacing:-1.083456px;}
.ws1b_c03235{word-spacing:-1.078704px;}
.ws12_c03235{word-spacing:-0.974160px;}
.ws19_c03235{word-spacing:-0.719712px;}
.ws1a_c03235{word-spacing:-0.546480px;}
.ws16_c03235{word-spacing:-0.161568px;}
.ws14_c03235{word-spacing:-0.118800px;}
.ws15_c03235{word-spacing:-0.104544px;}
.ws17_c03235{word-spacing:-0.099792px;}
.ws18_c03235{word-spacing:-0.085536px;}
.ws13_c03235{word-spacing:0.000000px;}
.ws1d_c03235{word-spacing:0.014256px;}
.ws1_c03235{word-spacing:3.725568px;}
.wsc_c03235{word-spacing:6.605280px;}
.ws10_c03235{word-spacing:10.383120px;}
.ws11_c03235{word-spacing:30.298752px;}
.wsa_c03235{word-spacing:33.300288px;}
.wsf_c03235{word-spacing:34.836912px;}
.ws7_c03235{word-spacing:36.143712px;}
.ws2_c03235{word-spacing:37.759392px;}
.ws0_c03235{word-spacing:38.020752px;}
.ws4_c03235{word-spacing:39.218256px;}
.wsd_c03235{word-spacing:39.902544px;}
.wse_c03235{word-spacing:42.026688px;}
._0_c03235{margin-left:-1.948320px;}
._2_c03235{width:1.097712px;}
._7_c03235{width:2.290464px;}
._4_c03235{width:15.733872px;}
._5_c03235{width:23.346576px;}
._6_c03235{width:28.977696px;}
._1_c03235{width:50.252400px;}
._3_c03235{width:51.972624px;}
.fc0_c03235{color:rgb(0,0,0);}
.fs0_c03235{font-size:47.520000px;}
.fs1_c03235{font-size:60.480000px;}
.y0_c03235{bottom:0.000000px;}
.y1a_c03235{bottom:131.878686px;}
.y19_c03235{bottom:146.998362px;}
.y1c_c03235{bottom:186.600234px;}
.y1b_c03235{bottom:196.320450px;}
.y18_c03235{bottom:275.878542px;}
.y17_c03235{bottom:356.878758px;}
.y15_c03235{bottom:406.559730px;}
.y11_c03235{bottom:424.560306px;}
.y16_c03235{bottom:458.759262px;}
.y14_c03235{bottom:491.879514px;}
.y13_c03235{bottom:509.880090px;}
.y10_c03235{bottom:543.000342px;}
.y12_c03235{bottom:559.559874px;}
.yf_c03235{bottom:577.560450px;}
.y1d_c03235{bottom:614.280450px;}
.yb_c03235{bottom:667.558326px;}
.yd_c03235{bottom:707.160234px;}
.yc_c03235{bottom:716.880450px;}
.ya_c03235{bottom:796.438506px;}
.y9_c03235{bottom:877.438722px;}
.y7_c03235{bottom:926.759730px;}
.y3_c03235{bottom:944.760306px;}
.y8_c03235{bottom:979.319226px;}
.y6_c03235{bottom:1012.439478px;}
.y5_c03235{bottom:1030.440054px;}
.y2_c03235{bottom:1063.560306px;}
.y4_c03235{bottom:1079.759874px;}
.y1_c03235{bottom:1097.760450px;}
.ye_c03235{bottom:1134.840450px;}
.h3_c03235{height:32.530781px;}
.h1_c03235{height:41.696016px;}
.h2_c03235{height:41.812031px;}
.h4_c03235{height:54.654737px;}
.h5_c03235{height:74.817456px;}
.h0_c03235{height:1263.000000px;}
.w1_c03235{width:892.500000px;}
.w0_c03235{width:892.830000px;}
.x0_c03235{left:0.000000px;}
.xd_c03235{left:117.000000px;}
.x8_c03235{left:441.001044px;}
.x4_c03235{left:445.680576px;}
.xb_c03235{left:451.080000px;}
.x7_c03235{left:455.400792px;}
.x5_c03235{left:461.880144px;}
.x1_c03235{left:463.320000px;}
.xa_c03235{left:483.481548px;}
.x9_c03235{left:492.120684px;}
.x6_c03235{left:493.200576px;}
.xc_c03235{left:506.880360px;}
.x3_c03235{left:511.919892px;}
.x2_c03235{left:526.679604px;}
.xe_c03235{left:569.880036px;}
@media print{
.v0_c03235{vertical-align:0.000000pt;}
.v1_c03235{vertical-align:1.279488pt;}
.v2_c03235{vertical-align:29.441280pt;}
.ls14_c03235{letter-spacing:-0.709632pt;}
.ls9_c03235{letter-spacing:-0.511104pt;}
.ls16_c03235{letter-spacing:-0.333696pt;}
.lse_c03235{letter-spacing:-0.244992pt;}
.lsc_c03235{letter-spacing:-0.232320pt;}
.ls8_c03235{letter-spacing:-0.228096pt;}
.ls4_c03235{letter-spacing:-0.215424pt;}
.lsb_c03235{letter-spacing:-0.177408pt;}
.ls3_c03235{letter-spacing:-0.105600pt;}
.ls11_c03235{letter-spacing:0.000000pt;}
.ls0_c03235{letter-spacing:0.005376pt;}
.ls5_c03235{letter-spacing:0.114048pt;}
.ls12_c03235{letter-spacing:0.164736pt;}
.ls13_c03235{letter-spacing:0.215424pt;}
.ls6_c03235{letter-spacing:0.451968pt;}
.ls10_c03235{letter-spacing:0.456960pt;}
.lsd_c03235{letter-spacing:0.477312pt;}
.lsa_c03235{letter-spacing:0.515328pt;}
.lsf_c03235{letter-spacing:0.528000pt;}
.ls7_c03235{letter-spacing:0.532224pt;}
.ls2_c03235{letter-spacing:0.544896pt;}
.ls1_c03235{letter-spacing:0.637824pt;}
.ls15_c03235{letter-spacing:0.642048pt;}
.wsb_c03235{word-spacing:-13.445376pt;}
.ws9_c03235{word-spacing:-11.088000pt;}
.ws6_c03235{word-spacing:-11.075328pt;}
.ws8_c03235{word-spacing:-11.037312pt;}
.ws3_c03235{word-spacing:-11.011968pt;}
.ws5_c03235{word-spacing:-10.048896pt;}
.ws1c_c03235{word-spacing:-0.963072pt;}
.ws1b_c03235{word-spacing:-0.958848pt;}
.ws12_c03235{word-spacing:-0.865920pt;}
.ws19_c03235{word-spacing:-0.639744pt;}
.ws1a_c03235{word-spacing:-0.485760pt;}
.ws16_c03235{word-spacing:-0.143616pt;}
.ws14_c03235{word-spacing:-0.105600pt;}
.ws15_c03235{word-spacing:-0.092928pt;}
.ws17_c03235{word-spacing:-0.088704pt;}
.ws18_c03235{word-spacing:-0.076032pt;}
.ws13_c03235{word-spacing:0.000000pt;}
.ws1d_c03235{word-spacing:0.012672pt;}
.ws1_c03235{word-spacing:3.311616pt;}
.wsc_c03235{word-spacing:5.871360pt;}
.ws10_c03235{word-spacing:9.229440pt;}
.ws11_c03235{word-spacing:26.932224pt;}
.wsa_c03235{word-spacing:29.600256pt;}
.wsf_c03235{word-spacing:30.966144pt;}
.ws7_c03235{word-spacing:32.127744pt;}
.ws2_c03235{word-spacing:33.563904pt;}
.ws0_c03235{word-spacing:33.796224pt;}
.ws4_c03235{word-spacing:34.860672pt;}
.wsd_c03235{word-spacing:35.468928pt;}
.wse_c03235{word-spacing:37.357056pt;}
._0_c03235{margin-left:-1.731840pt;}
._2_c03235{width:0.975744pt;}
._7_c03235{width:2.035968pt;}
._4_c03235{width:13.985664pt;}
._5_c03235{width:20.752512pt;}
._6_c03235{width:25.757952pt;}
._1_c03235{width:44.668800pt;}
._3_c03235{width:46.197888pt;}
.fs0_c03235{font-size:42.240000pt;}
.fs1_c03235{font-size:53.760000pt;}
.y0_c03235{bottom:0.000000pt;}
.y1a_c03235{bottom:117.225499pt;}
.y19_c03235{bottom:130.665211pt;}
.y1c_c03235{bottom:165.866875pt;}
.y1b_c03235{bottom:174.507067pt;}
.y18_c03235{bottom:245.225371pt;}
.y17_c03235{bottom:317.225563pt;}
.y15_c03235{bottom:361.386427pt;}
.y11_c03235{bottom:377.386939pt;}
.y16_c03235{bottom:407.786011pt;}
.y14_c03235{bottom:437.226235pt;}
.y13_c03235{bottom:453.226747pt;}
.y10_c03235{bottom:482.666971pt;}
.y12_c03235{bottom:497.386555pt;}
.yf_c03235{bottom:513.387067pt;}
.y1d_c03235{bottom:546.027067pt;}
.yb_c03235{bottom:593.385179pt;}
.yd_c03235{bottom:628.586875pt;}
.yc_c03235{bottom:637.227067pt;}
.ya_c03235{bottom:707.945339pt;}
.y9_c03235{bottom:779.945531pt;}
.y7_c03235{bottom:823.786427pt;}
.y3_c03235{bottom:839.786939pt;}
.y8_c03235{bottom:870.505979pt;}
.y6_c03235{bottom:899.946203pt;}
.y5_c03235{bottom:915.946715pt;}
.y2_c03235{bottom:945.386939pt;}
.y4_c03235{bottom:959.786555pt;}
.y1_c03235{bottom:975.787067pt;}
.ye_c03235{bottom:1008.747067pt;}
.h3_c03235{height:28.916250pt;}
.h1_c03235{height:37.063125pt;}
.h2_c03235{height:37.166250pt;}
.h4_c03235{height:48.581988pt;}
.h5_c03235{height:66.504405pt;}
.h0_c03235{height:1122.666667pt;}
.w1_c03235{width:793.333333pt;}
.w0_c03235{width:793.626667pt;}
.x0_c03235{left:0.000000pt;}
.xd_c03235{left:104.000000pt;}
.x8_c03235{left:392.000928pt;}
.x4_c03235{left:396.160512pt;}
.xb_c03235{left:400.960000pt;}
.x7_c03235{left:404.800704pt;}
.x5_c03235{left:410.560128pt;}
.x1_c03235{left:411.840000pt;}
.xa_c03235{left:429.761376pt;}
.x9_c03235{left:437.440608pt;}
.x6_c03235{left:438.400512pt;}
.xc_c03235{left:450.560320pt;}
.x3_c03235{left:455.039904pt;}
.x2_c03235{left:468.159648pt;}
.xe_c03235{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03236 {
    display:none;
  }
  .loading-indicator_c03236.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03236 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03236 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03236" -> "#page-container .classname_c03236")
 */
.pf_c03236 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03236 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03236.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03236 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03236 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03236 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03236 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03236 {overflow:visible;}
  }
}
.c_c03236 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03236 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03236:after { /* webkit #35443 */
  content: '';
}
.t_c03236:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03236 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03236 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03236 { /* info for Javascript */
  display:none;
}
.l_c03236 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03236 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03236 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03236:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03236 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03236.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03236.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03236 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03236{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03236;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03236{font-family:ff1_c03236;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03236;src:url('chunks/assets/font_c212f82d7dce74d53cf0c813.woff2')format("woff");}.ff2_c03236{font-family:ff2_c03236;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03236;src:url('chunks/assets/font_b5245c12211d98ee8b81abf9.woff2')format("woff");}.ff3_c03236{font-family:ff3_c03236;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c03236;src:url('chunks/assets/font_af7d3ea89a4246fd0cc0d65b.woff2')format("woff");}.ff4_c03236{font-family:ff4_c03236;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03236{vertical-align:0.000000px;}
.v1_c03236{vertical-align:1.439424px;}
.lsc_c03236{letter-spacing:-1.197504px;}
.lsa_c03236{letter-spacing:-0.746064px;}
.ls1a_c03236{letter-spacing:-0.736560px;}
.lsb_c03236{letter-spacing:-0.574992px;}
.ls19_c03236{letter-spacing:-0.389664px;}
.ls15_c03236{letter-spacing:-0.275616px;}
.ls1b_c03236{letter-spacing:-0.270864px;}
.ls10_c03236{letter-spacing:-0.261360px;}
.ls13_c03236{letter-spacing:-0.256608px;}
.ls7_c03236{letter-spacing:-0.242352px;}
.ls5_c03236{letter-spacing:-0.118800px;}
.lsf_c03236{letter-spacing:-0.090288px;}
.ls11_c03236{letter-spacing:-0.047520px;}
.ls14_c03236{letter-spacing:0.000000px;}
.ls18_c03236{letter-spacing:0.004752px;}
.ls2_c03236{letter-spacing:0.006048px;}
.ls6_c03236{letter-spacing:0.128304px;}
.lse_c03236{letter-spacing:0.242352px;}
.ls8_c03236{letter-spacing:0.508464px;}
.ls17_c03236{letter-spacing:0.514080px;}
.ls12_c03236{letter-spacing:0.536976px;}
.lsd_c03236{letter-spacing:0.579744px;}
.ls16_c03236{letter-spacing:0.594000px;}
.ls9_c03236{letter-spacing:0.598752px;}
.ls4_c03236{letter-spacing:0.613008px;}
.ls0_c03236{letter-spacing:0.651024px;}
.ls3_c03236{letter-spacing:0.717552px;}
.ls1_c03236{letter-spacing:0.722304px;}
.sc__c03236{text-shadow:none;}
.sc0_c03236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03236{-webkit-text-stroke:0px transparent;}
.sc0_c03236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03236{word-spacing:-47.520000px;}
.wsf_c03236{word-spacing:-15.126048px;}
.ws1_c03236{word-spacing:-12.531024px;}
.wsd_c03236{word-spacing:-12.474000px;}
.ws8_c03236{word-spacing:-12.459744px;}
.ws4_c03236{word-spacing:-12.388464px;}
.ws0_c03236{word-spacing:-11.761200px;}
.ws12_c03236{word-spacing:-11.305008px;}
.ws7_c03236{word-spacing:-10.682496px;}
.ws2_c03236{word-spacing:-1.820016px;}
.ws11_c03236{word-spacing:-1.810512px;}
.ws15_c03236{word-spacing:-0.974160px;}
.ws1e_c03236{word-spacing:-0.719712px;}
.ws1f_c03236{word-spacing:-0.365904px;}
.ws1b_c03236{word-spacing:-0.313632px;}
.ws19_c03236{word-spacing:-0.270864px;}
.ws17_c03236{word-spacing:-0.118800px;}
.ws1c_c03236{word-spacing:-0.104544px;}
.ws1a_c03236{word-spacing:-0.099792px;}
.ws21_c03236{word-spacing:-0.090288px;}
.ws1d_c03236{word-spacing:-0.085536px;}
.ws16_c03236{word-spacing:0.000000px;}
.ws20_c03236{word-spacing:0.028512px;}
.ws18_c03236{word-spacing:0.384912px;}
.ws14_c03236{word-spacing:4.713984px;}
.ws13_c03236{word-spacing:13.795056px;}
.wse_c03236{word-spacing:33.300288px;}
.wsb_c03236{word-spacing:34.836912px;}
.wsa_c03236{word-spacing:36.143712px;}
.ws3_c03236{word-spacing:37.759392px;}
.ws10_c03236{word-spacing:38.020752px;}
.ws5_c03236{word-spacing:39.218256px;}
.ws6_c03236{word-spacing:39.902544px;}
.ws9_c03236{word-spacing:42.026688px;}
._0_c03236{margin-left:-1.948320px;}
._2_c03236{width:1.482624px;}
._6_c03236{width:3.487968px;}
._4_c03236{width:16.038000px;}
._5_c03236{width:17.511120px;}
._a_c03236{width:21.811680px;}
._8_c03236{width:28.592784px;}
._7_c03236{width:30.645648px;}
._9_c03236{width:32.437152px;}
._1_c03236{width:50.252400px;}
._3_c03236{width:51.530688px;}
.fc0_c03236{color:rgb(0,0,0);}
.fs0_c03236{font-size:47.520000px;}
.fs1_c03236{font-size:60.480000px;}
.y0_c03236{bottom:0.000000px;}
.y4_c03236{bottom:18.360450px;}
.y1e_c03236{bottom:131.878686px;}
.y1d_c03236{bottom:146.998362px;}
.y20_c03236{bottom:186.600234px;}
.y1f_c03236{bottom:196.320450px;}
.y1c_c03236{bottom:275.878542px;}
.y1b_c03236{bottom:341.759082px;}
.y1a_c03236{bottom:356.878758px;}
.y18_c03236{bottom:406.559730px;}
.y14_c03236{bottom:424.560306px;}
.y19_c03236{bottom:458.759262px;}
.y17_c03236{bottom:491.879514px;}
.y16_c03236{bottom:509.880090px;}
.y13_c03236{bottom:543.000342px;}
.y15_c03236{bottom:559.559874px;}
.y12_c03236{bottom:577.560450px;}
.y21_c03236{bottom:614.280450px;}
.ye_c03236{bottom:667.558470px;}
.y10_c03236{bottom:707.160234px;}
.yf_c03236{bottom:716.880450px;}
.yd_c03236{bottom:796.438650px;}
.yc_c03236{bottom:877.438866px;}
.ya_c03236{bottom:926.759874px;}
.y6_c03236{bottom:944.760450px;}
.yb_c03236{bottom:979.319370px;}
.y9_c03236{bottom:1012.439622px;}
.y8_c03236{bottom:1030.440198px;}
.y3_c03236{bottom:1045.200000px;}
.y2_c03236{bottom:1063.560306px;}
.y5_c03236{bottom:1063.560450px;}
.y7_c03236{bottom:1079.760018px;}
.y1_c03236{bottom:1097.760450px;}
.y11_c03236{bottom:1134.840450px;}
.h3_c03236{height:29.520000px;}
.h2_c03236{height:32.530781px;}
.h1_c03236{height:41.696016px;}
.h4_c03236{height:41.812031px;}
.h5_c03236{height:54.654737px;}
.h0_c03236{height:1263.000000px;}
.w2_c03236{width:215.280000px;}
.w1_c03236{width:892.500000px;}
.w0_c03236{width:892.830000px;}
.x0_c03236{left:0.000000px;}
.xf_c03236{left:117.000000px;}
.xa_c03236{left:440.999676px;}
.x6_c03236{left:445.680396px;}
.xd_c03236{left:451.080000px;}
.x9_c03236{left:455.399424px;}
.x7_c03236{left:461.879964px;}
.x1_c03236{left:463.320000px;}
.xc_c03236{left:483.480180px;}
.xb_c03236{left:492.119316px;}
.x8_c03236{left:493.200396px;}
.xe_c03236{left:506.880360px;}
.x5_c03236{left:511.919712px;}
.x2_c03236{left:526.679604px;}
.x3_c03236{left:569.520000px;}
.x4_c03236{left:627.840000px;}
@media print{
.v0_c03236{vertical-align:0.000000pt;}
.v1_c03236{vertical-align:1.279488pt;}
.lsc_c03236{letter-spacing:-1.064448pt;}
.lsa_c03236{letter-spacing:-0.663168pt;}
.ls1a_c03236{letter-spacing:-0.654720pt;}
.lsb_c03236{letter-spacing:-0.511104pt;}
.ls19_c03236{letter-spacing:-0.346368pt;}
.ls15_c03236{letter-spacing:-0.244992pt;}
.ls1b_c03236{letter-spacing:-0.240768pt;}
.ls10_c03236{letter-spacing:-0.232320pt;}
.ls13_c03236{letter-spacing:-0.228096pt;}
.ls7_c03236{letter-spacing:-0.215424pt;}
.ls5_c03236{letter-spacing:-0.105600pt;}
.lsf_c03236{letter-spacing:-0.080256pt;}
.ls11_c03236{letter-spacing:-0.042240pt;}
.ls14_c03236{letter-spacing:0.000000pt;}
.ls18_c03236{letter-spacing:0.004224pt;}
.ls2_c03236{letter-spacing:0.005376pt;}
.ls6_c03236{letter-spacing:0.114048pt;}
.lse_c03236{letter-spacing:0.215424pt;}
.ls8_c03236{letter-spacing:0.451968pt;}
.ls17_c03236{letter-spacing:0.456960pt;}
.ls12_c03236{letter-spacing:0.477312pt;}
.lsd_c03236{letter-spacing:0.515328pt;}
.ls16_c03236{letter-spacing:0.528000pt;}
.ls9_c03236{letter-spacing:0.532224pt;}
.ls4_c03236{letter-spacing:0.544896pt;}
.ls0_c03236{letter-spacing:0.578688pt;}
.ls3_c03236{letter-spacing:0.637824pt;}
.ls1_c03236{letter-spacing:0.642048pt;}
.wsc_c03236{word-spacing:-42.240000pt;}
.wsf_c03236{word-spacing:-13.445376pt;}
.ws1_c03236{word-spacing:-11.138688pt;}
.wsd_c03236{word-spacing:-11.088000pt;}
.ws8_c03236{word-spacing:-11.075328pt;}
.ws4_c03236{word-spacing:-11.011968pt;}
.ws0_c03236{word-spacing:-10.454400pt;}
.ws12_c03236{word-spacing:-10.048896pt;}
.ws7_c03236{word-spacing:-9.495552pt;}
.ws2_c03236{word-spacing:-1.617792pt;}
.ws11_c03236{word-spacing:-1.609344pt;}
.ws15_c03236{word-spacing:-0.865920pt;}
.ws1e_c03236{word-spacing:-0.639744pt;}
.ws1f_c03236{word-spacing:-0.325248pt;}
.ws1b_c03236{word-spacing:-0.278784pt;}
.ws19_c03236{word-spacing:-0.240768pt;}
.ws17_c03236{word-spacing:-0.105600pt;}
.ws1c_c03236{word-spacing:-0.092928pt;}
.ws1a_c03236{word-spacing:-0.088704pt;}
.ws21_c03236{word-spacing:-0.080256pt;}
.ws1d_c03236{word-spacing:-0.076032pt;}
.ws16_c03236{word-spacing:0.000000pt;}
.ws20_c03236{word-spacing:0.025344pt;}
.ws18_c03236{word-spacing:0.342144pt;}
.ws14_c03236{word-spacing:4.190208pt;}
.ws13_c03236{word-spacing:12.262272pt;}
.wse_c03236{word-spacing:29.600256pt;}
.wsb_c03236{word-spacing:30.966144pt;}
.wsa_c03236{word-spacing:32.127744pt;}
.ws3_c03236{word-spacing:33.563904pt;}
.ws10_c03236{word-spacing:33.796224pt;}
.ws5_c03236{word-spacing:34.860672pt;}
.ws6_c03236{word-spacing:35.468928pt;}
.ws9_c03236{word-spacing:37.357056pt;}
._0_c03236{margin-left:-1.731840pt;}
._2_c03236{width:1.317888pt;}
._6_c03236{width:3.100416pt;}
._4_c03236{width:14.256000pt;}
._5_c03236{width:15.565440pt;}
._a_c03236{width:19.388160pt;}
._8_c03236{width:25.415808pt;}
._7_c03236{width:27.240576pt;}
._9_c03236{width:28.833024pt;}
._1_c03236{width:44.668800pt;}
._3_c03236{width:45.805056pt;}
.fs0_c03236{font-size:42.240000pt;}
.fs1_c03236{font-size:53.760000pt;}
.y0_c03236{bottom:0.000000pt;}
.y4_c03236{bottom:16.320400pt;}
.y1e_c03236{bottom:117.225499pt;}
.y1d_c03236{bottom:130.665211pt;}
.y20_c03236{bottom:165.866875pt;}
.y1f_c03236{bottom:174.507067pt;}
.y1c_c03236{bottom:245.225371pt;}
.y1b_c03236{bottom:303.785851pt;}
.y1a_c03236{bottom:317.225563pt;}
.y18_c03236{bottom:361.386427pt;}
.y14_c03236{bottom:377.386939pt;}
.y19_c03236{bottom:407.786011pt;}
.y17_c03236{bottom:437.226235pt;}
.y16_c03236{bottom:453.226747pt;}
.y13_c03236{bottom:482.666971pt;}
.y15_c03236{bottom:497.386555pt;}
.y12_c03236{bottom:513.387067pt;}
.y21_c03236{bottom:546.027067pt;}
.ye_c03236{bottom:593.385307pt;}
.y10_c03236{bottom:628.586875pt;}
.yf_c03236{bottom:637.227067pt;}
.yd_c03236{bottom:707.945467pt;}
.yc_c03236{bottom:779.945659pt;}
.ya_c03236{bottom:823.786555pt;}
.y6_c03236{bottom:839.787067pt;}
.yb_c03236{bottom:870.506107pt;}
.y9_c03236{bottom:899.946331pt;}
.y8_c03236{bottom:915.946843pt;}
.y3_c03236{bottom:929.066667pt;}
.y2_c03236{bottom:945.386939pt;}
.y5_c03236{bottom:945.387067pt;}
.y7_c03236{bottom:959.786683pt;}
.y1_c03236{bottom:975.787067pt;}
.y11_c03236{bottom:1008.747067pt;}
.h3_c03236{height:26.240000pt;}
.h2_c03236{height:28.916250pt;}
.h1_c03236{height:37.063125pt;}
.h4_c03236{height:37.166250pt;}
.h5_c03236{height:48.581988pt;}
.h0_c03236{height:1122.666667pt;}
.w2_c03236{width:191.360000pt;}
.w1_c03236{width:793.333333pt;}
.w0_c03236{width:793.626667pt;}
.x0_c03236{left:0.000000pt;}
.xf_c03236{left:104.000000pt;}
.xa_c03236{left:391.999712pt;}
.x6_c03236{left:396.160352pt;}
.xd_c03236{left:400.960000pt;}
.x9_c03236{left:404.799488pt;}
.x7_c03236{left:410.559968pt;}
.x1_c03236{left:411.840000pt;}
.xc_c03236{left:429.760160pt;}
.xb_c03236{left:437.439392pt;}
.x8_c03236{left:438.400352pt;}
.xe_c03236{left:450.560320pt;}
.x5_c03236{left:455.039744pt;}
.x2_c03236{left:468.159648pt;}
.x3_c03236{left:506.240000pt;}
.x4_c03236{left:558.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03237 {
    display:none;
  }
  .loading-indicator_c03237.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03237 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03237 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03237" -> "#page-container .classname_c03237")
 */
.pf_c03237 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03237 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03237.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03237 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03237 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03237 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03237 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03237 {overflow:visible;}
  }
}
.c_c03237 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03237 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03237:after { /* webkit #35443 */
  content: '';
}
.t_c03237:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03237 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03237 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03237 { /* info for Javascript */
  display:none;
}
.l_c03237 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03237 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03237 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03237:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03237 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03237.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03237.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03237 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03237{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03237;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03237{font-family:ff1_c03237;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03237;src:url('chunks/assets/font_ddd8e6729f0ec0ca00a54ae7.woff2')format("woff");}.ff2_c03237{font-family:ff2_c03237;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03237;src:url('chunks/assets/font_8b234a585772867cdca5c80b.woff2')format("woff");}.ff3_c03237{font-family:ff3_c03237;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03237{vertical-align:0.000000px;}
.v1_c03237{vertical-align:1.439424px;}
.v2_c03237{vertical-align:33.121440px;}
.lsf_c03237{letter-spacing:-0.741312px;}
.ls18_c03237{letter-spacing:-0.722304px;}
.lsa_c03237{letter-spacing:-0.574992px;}
.ls17_c03237{letter-spacing:-0.370656px;}
.lsd_c03237{letter-spacing:-0.342144px;}
.ls11_c03237{letter-spacing:-0.275616px;}
.lsc_c03237{letter-spacing:-0.261360px;}
.ls10_c03237{letter-spacing:-0.256608px;}
.ls6_c03237{letter-spacing:-0.242352px;}
.ls4_c03237{letter-spacing:-0.118800px;}
.ls14_c03237{letter-spacing:0.000000px;}
.ls9_c03237{letter-spacing:0.004752px;}
.ls1_c03237{letter-spacing:0.006048px;}
.ls5_c03237{letter-spacing:0.128304px;}
.ls16_c03237{letter-spacing:0.213840px;}
.ls19_c03237{letter-spacing:0.228096px;}
.ls7_c03237{letter-spacing:0.508464px;}
.ls13_c03237{letter-spacing:0.514080px;}
.lse_c03237{letter-spacing:0.536976px;}
.ls1a_c03237{letter-spacing:0.560736px;}
.lsb_c03237{letter-spacing:0.579744px;}
.ls12_c03237{letter-spacing:0.594000px;}
.ls8_c03237{letter-spacing:0.598752px;}
.ls3_c03237{letter-spacing:0.613008px;}
.ls15_c03237{letter-spacing:0.651024px;}
.ls2_c03237{letter-spacing:0.717552px;}
.ls0_c03237{letter-spacing:0.722304px;}
.sc__c03237{text-shadow:none;}
.sc0_c03237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03237{-webkit-text-stroke:0px transparent;}
.sc0_c03237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03237{word-spacing:-15.126048px;}
.wsa_c03237{word-spacing:-12.474000px;}
.ws5_c03237{word-spacing:-12.459744px;}
.ws2_c03237{word-spacing:-12.388464px;}
.ws4_c03237{word-spacing:-11.305008px;}
.wsd_c03237{word-spacing:-1.810512px;}
.ws16_c03237{word-spacing:-1.083456px;}
.wse_c03237{word-spacing:-1.031184px;}
.ws1c_c03237{word-spacing:-1.012176px;}
.ws12_c03237{word-spacing:-0.974160px;}
.ws1f_c03237{word-spacing:-0.921888px;}
.ws1b_c03237{word-spacing:-0.719712px;}
.ws15_c03237{word-spacing:-0.365904px;}
.ws14_c03237{word-spacing:-0.118800px;}
.ws19_c03237{word-spacing:-0.104544px;}
.ws17_c03237{word-spacing:-0.099792px;}
.ws1a_c03237{word-spacing:-0.085536px;}
.ws18_c03237{word-spacing:-0.019008px;}
.ws13_c03237{word-spacing:0.000000px;}
.ws1d_c03237{word-spacing:0.009504px;}
.ws1e_c03237{word-spacing:0.361152px;}
.ws10_c03237{word-spacing:0.380160px;}
.ws9_c03237{word-spacing:3.069792px;}
.ws8_c03237{word-spacing:6.391440px;}
.wsf_c03237{word-spacing:7.080480px;}
.ws11_c03237{word-spacing:30.298752px;}
.wsb_c03237{word-spacing:33.300288px;}
.ws7_c03237{word-spacing:34.836912px;}
.ws6_c03237{word-spacing:36.143712px;}
.ws1_c03237{word-spacing:37.759392px;}
.ws0_c03237{word-spacing:38.020752px;}
.ws3_c03237{word-spacing:39.218256px;}
._0_c03237{margin-left:-1.948320px;}
._2_c03237{width:1.482624px;}
._4_c03237{width:3.487968px;}
._9_c03237{width:14.897520px;}
._8_c03237{width:15.919200px;}
._7_c03237{width:17.615664px;}
._6_c03237{width:19.269360px;}
._b_c03237{width:20.319552px;}
._5_c03237{width:21.507552px;}
._a_c03237{width:23.498640px;}
._1_c03237{width:50.252400px;}
._3_c03237{width:51.530688px;}
.fc0_c03237{color:rgb(0,0,0);}
.fs0_c03237{font-size:47.520000px;}
.fs1_c03237{font-size:60.480000px;}
.y0_c03237{bottom:0.000000px;}
.y1d_c03237{bottom:131.878686px;}
.y1c_c03237{bottom:146.998362px;}
.y1f_c03237{bottom:186.600234px;}
.y1e_c03237{bottom:196.320450px;}
.y1b_c03237{bottom:260.758866px;}
.y1a_c03237{bottom:275.878542px;}
.y19_c03237{bottom:356.878758px;}
.y17_c03237{bottom:406.559730px;}
.y13_c03237{bottom:424.560306px;}
.y18_c03237{bottom:458.759262px;}
.y16_c03237{bottom:491.879514px;}
.y15_c03237{bottom:509.880090px;}
.y12_c03237{bottom:543.000342px;}
.y14_c03237{bottom:559.559874px;}
.y11_c03237{bottom:577.560450px;}
.y20_c03237{bottom:614.280450px;}
.yd_c03237{bottom:637.318974px;}
.yc_c03237{bottom:652.438650px;}
.yb_c03237{bottom:667.558326px;}
.yf_c03237{bottom:707.160234px;}
.ye_c03237{bottom:716.880450px;}
.ya_c03237{bottom:796.438506px;}
.y9_c03237{bottom:877.438722px;}
.y7_c03237{bottom:926.759730px;}
.y3_c03237{bottom:944.760306px;}
.y8_c03237{bottom:979.319226px;}
.y6_c03237{bottom:1012.439478px;}
.y5_c03237{bottom:1030.440054px;}
.y2_c03237{bottom:1063.560306px;}
.y4_c03237{bottom:1079.759874px;}
.y1_c03237{bottom:1097.760450px;}
.y10_c03237{bottom:1134.840450px;}
.h3_c03237{height:32.530781px;}
.h1_c03237{height:41.696016px;}
.h2_c03237{height:41.812031px;}
.h4_c03237{height:54.654737px;}
.h5_c03237{height:74.817456px;}
.h0_c03237{height:1263.000000px;}
.w1_c03237{width:892.500000px;}
.w0_c03237{width:892.830000px;}
.x0_c03237{left:0.000000px;}
.xe_c03237{left:117.000000px;}
.x8_c03237{left:441.001044px;}
.x4_c03237{left:445.680576px;}
.xc_c03237{left:451.080000px;}
.x7_c03237{left:455.400792px;}
.x5_c03237{left:461.880144px;}
.x1_c03237{left:463.320000px;}
.xa_c03237{left:483.481548px;}
.x9_c03237{left:492.120684px;}
.x6_c03237{left:493.200576px;}
.xd_c03237{left:506.880360px;}
.x3_c03237{left:511.919892px;}
.x2_c03237{left:526.679604px;}
.xb_c03237{left:569.881224px;}
@media print{
.v0_c03237{vertical-align:0.000000pt;}
.v1_c03237{vertical-align:1.279488pt;}
.v2_c03237{vertical-align:29.441280pt;}
.lsf_c03237{letter-spacing:-0.658944pt;}
.ls18_c03237{letter-spacing:-0.642048pt;}
.lsa_c03237{letter-spacing:-0.511104pt;}
.ls17_c03237{letter-spacing:-0.329472pt;}
.lsd_c03237{letter-spacing:-0.304128pt;}
.ls11_c03237{letter-spacing:-0.244992pt;}
.lsc_c03237{letter-spacing:-0.232320pt;}
.ls10_c03237{letter-spacing:-0.228096pt;}
.ls6_c03237{letter-spacing:-0.215424pt;}
.ls4_c03237{letter-spacing:-0.105600pt;}
.ls14_c03237{letter-spacing:0.000000pt;}
.ls9_c03237{letter-spacing:0.004224pt;}
.ls1_c03237{letter-spacing:0.005376pt;}
.ls5_c03237{letter-spacing:0.114048pt;}
.ls16_c03237{letter-spacing:0.190080pt;}
.ls19_c03237{letter-spacing:0.202752pt;}
.ls7_c03237{letter-spacing:0.451968pt;}
.ls13_c03237{letter-spacing:0.456960pt;}
.lse_c03237{letter-spacing:0.477312pt;}
.ls1a_c03237{letter-spacing:0.498432pt;}
.lsb_c03237{letter-spacing:0.515328pt;}
.ls12_c03237{letter-spacing:0.528000pt;}
.ls8_c03237{letter-spacing:0.532224pt;}
.ls3_c03237{letter-spacing:0.544896pt;}
.ls15_c03237{letter-spacing:0.578688pt;}
.ls2_c03237{letter-spacing:0.637824pt;}
.ls0_c03237{letter-spacing:0.642048pt;}
.wsc_c03237{word-spacing:-13.445376pt;}
.wsa_c03237{word-spacing:-11.088000pt;}
.ws5_c03237{word-spacing:-11.075328pt;}
.ws2_c03237{word-spacing:-11.011968pt;}
.ws4_c03237{word-spacing:-10.048896pt;}
.wsd_c03237{word-spacing:-1.609344pt;}
.ws16_c03237{word-spacing:-0.963072pt;}
.wse_c03237{word-spacing:-0.916608pt;}
.ws1c_c03237{word-spacing:-0.899712pt;}
.ws12_c03237{word-spacing:-0.865920pt;}
.ws1f_c03237{word-spacing:-0.819456pt;}
.ws1b_c03237{word-spacing:-0.639744pt;}
.ws15_c03237{word-spacing:-0.325248pt;}
.ws14_c03237{word-spacing:-0.105600pt;}
.ws19_c03237{word-spacing:-0.092928pt;}
.ws17_c03237{word-spacing:-0.088704pt;}
.ws1a_c03237{word-spacing:-0.076032pt;}
.ws18_c03237{word-spacing:-0.016896pt;}
.ws13_c03237{word-spacing:0.000000pt;}
.ws1d_c03237{word-spacing:0.008448pt;}
.ws1e_c03237{word-spacing:0.321024pt;}
.ws10_c03237{word-spacing:0.337920pt;}
.ws9_c03237{word-spacing:2.728704pt;}
.ws8_c03237{word-spacing:5.681280pt;}
.wsf_c03237{word-spacing:6.293760pt;}
.ws11_c03237{word-spacing:26.932224pt;}
.wsb_c03237{word-spacing:29.600256pt;}
.ws7_c03237{word-spacing:30.966144pt;}
.ws6_c03237{word-spacing:32.127744pt;}
.ws1_c03237{word-spacing:33.563904pt;}
.ws0_c03237{word-spacing:33.796224pt;}
.ws3_c03237{word-spacing:34.860672pt;}
._0_c03237{margin-left:-1.731840pt;}
._2_c03237{width:1.317888pt;}
._4_c03237{width:3.100416pt;}
._9_c03237{width:13.242240pt;}
._8_c03237{width:14.150400pt;}
._7_c03237{width:15.658368pt;}
._6_c03237{width:17.128320pt;}
._b_c03237{width:18.061824pt;}
._5_c03237{width:19.117824pt;}
._a_c03237{width:20.887680pt;}
._1_c03237{width:44.668800pt;}
._3_c03237{width:45.805056pt;}
.fs0_c03237{font-size:42.240000pt;}
.fs1_c03237{font-size:53.760000pt;}
.y0_c03237{bottom:0.000000pt;}
.y1d_c03237{bottom:117.225499pt;}
.y1c_c03237{bottom:130.665211pt;}
.y1f_c03237{bottom:165.866875pt;}
.y1e_c03237{bottom:174.507067pt;}
.y1b_c03237{bottom:231.785659pt;}
.y1a_c03237{bottom:245.225371pt;}
.y19_c03237{bottom:317.225563pt;}
.y17_c03237{bottom:361.386427pt;}
.y13_c03237{bottom:377.386939pt;}
.y18_c03237{bottom:407.786011pt;}
.y16_c03237{bottom:437.226235pt;}
.y15_c03237{bottom:453.226747pt;}
.y12_c03237{bottom:482.666971pt;}
.y14_c03237{bottom:497.386555pt;}
.y11_c03237{bottom:513.387067pt;}
.y20_c03237{bottom:546.027067pt;}
.yd_c03237{bottom:566.505755pt;}
.yc_c03237{bottom:579.945467pt;}
.yb_c03237{bottom:593.385179pt;}
.yf_c03237{bottom:628.586875pt;}
.ye_c03237{bottom:637.227067pt;}
.ya_c03237{bottom:707.945339pt;}
.y9_c03237{bottom:779.945531pt;}
.y7_c03237{bottom:823.786427pt;}
.y3_c03237{bottom:839.786939pt;}
.y8_c03237{bottom:870.505979pt;}
.y6_c03237{bottom:899.946203pt;}
.y5_c03237{bottom:915.946715pt;}
.y2_c03237{bottom:945.386939pt;}
.y4_c03237{bottom:959.786555pt;}
.y1_c03237{bottom:975.787067pt;}
.y10_c03237{bottom:1008.747067pt;}
.h3_c03237{height:28.916250pt;}
.h1_c03237{height:37.063125pt;}
.h2_c03237{height:37.166250pt;}
.h4_c03237{height:48.581988pt;}
.h5_c03237{height:66.504405pt;}
.h0_c03237{height:1122.666667pt;}
.w1_c03237{width:793.333333pt;}
.w0_c03237{width:793.626667pt;}
.x0_c03237{left:0.000000pt;}
.xe_c03237{left:104.000000pt;}
.x8_c03237{left:392.000928pt;}
.x4_c03237{left:396.160512pt;}
.xc_c03237{left:400.960000pt;}
.x7_c03237{left:404.800704pt;}
.x5_c03237{left:410.560128pt;}
.x1_c03237{left:411.840000pt;}
.xa_c03237{left:429.761376pt;}
.x9_c03237{left:437.440608pt;}
.x6_c03237{left:438.400512pt;}
.xd_c03237{left:450.560320pt;}
.x3_c03237{left:455.039904pt;}
.x2_c03237{left:468.159648pt;}
.xb_c03237{left:506.561088pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03238 {
    display:none;
  }
  .loading-indicator_c03238.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03238 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03238 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03238" -> "#page-container .classname_c03238")
 */
.pf_c03238 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03238 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03238.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03238 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03238 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03238 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03238 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03238 {overflow:visible;}
  }
}
.c_c03238 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03238 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03238:after { /* webkit #35443 */
  content: '';
}
.t_c03238:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03238 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03238 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03238 { /* info for Javascript */
  display:none;
}
.l_c03238 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03238 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03238 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03238:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03238 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03238.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03238.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03238 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03238{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03238;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03238{font-family:ff1_c03238;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03238;src:url('chunks/assets/font_647b8e78bfac06ad752395d6.woff2')format("woff");}.ff2_c03238{font-family:ff2_c03238;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03238;src:url('chunks/assets/font_8da59bd6f475074027aa0ac2.woff2')format("woff");}.ff3_c03238{font-family:ff3_c03238;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03238{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03238{vertical-align:0.000000px;}
.v1_c03238{vertical-align:1.439424px;}
.lsb_c03238{letter-spacing:-1.197504px;}
.lsd_c03238{letter-spacing:-0.755568px;}
.ls1a_c03238{letter-spacing:-0.658800px;}
.ls18_c03238{letter-spacing:-0.648000px;}
.ls14_c03238{letter-spacing:-0.613008px;}
.lsa_c03238{letter-spacing:-0.574992px;}
.ls19_c03238{letter-spacing:-0.540000px;}
.ls17_c03238{letter-spacing:-0.464400px;}
.ls16_c03238{letter-spacing:-0.389664px;}
.ls10_c03238{letter-spacing:-0.275616px;}
.lse_c03238{letter-spacing:-0.261360px;}
.ls6_c03238{letter-spacing:-0.242352px;}
.ls15_c03238{letter-spacing:-0.199584px;}
.ls4_c03238{letter-spacing:-0.118800px;}
.ls13_c03238{letter-spacing:0.000000px;}
.ls9_c03238{letter-spacing:0.004752px;}
.ls0_c03238{letter-spacing:0.006048px;}
.ls5_c03238{letter-spacing:0.128304px;}
.ls7_c03238{letter-spacing:0.508464px;}
.ls12_c03238{letter-spacing:0.514080px;}
.lsf_c03238{letter-spacing:0.536976px;}
.lsc_c03238{letter-spacing:0.579744px;}
.ls11_c03238{letter-spacing:0.594000px;}
.ls8_c03238{letter-spacing:0.598752px;}
.ls2_c03238{letter-spacing:0.613008px;}
.ls3_c03238{letter-spacing:0.717552px;}
.ls1_c03238{letter-spacing:0.722304px;}
.sc__c03238{text-shadow:none;}
.sc0_c03238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03238{-webkit-text-stroke:0px transparent;}
.sc0_c03238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03238{word-spacing:-15.126048px;}
.ws9_c03238{word-spacing:-12.474000px;}
.ws6_c03238{word-spacing:-12.459744px;}
.ws8_c03238{word-spacing:-12.416976px;}
.ws2_c03238{word-spacing:-12.388464px;}
.ws5_c03238{word-spacing:-10.682496px;}
.ws1a_c03238{word-spacing:-1.083456px;}
.ws12_c03238{word-spacing:-0.974160px;}
.ws19_c03238{word-spacing:-0.719712px;}
.ws15_c03238{word-spacing:-0.365904px;}
.ws1b_c03238{word-spacing:-0.161568px;}
.ws14_c03238{word-spacing:-0.118800px;}
.ws17_c03238{word-spacing:-0.099792px;}
.ws18_c03238{word-spacing:-0.085536px;}
.ws13_c03238{word-spacing:0.000000px;}
.ws1c_c03238{word-spacing:0.028512px;}
.ws1d_c03238{word-spacing:0.180000px;}
.ws1e_c03238{word-spacing:0.298800px;}
.ws16_c03238{word-spacing:0.394416px;}
.wse_c03238{word-spacing:3.511728px;}
.wsc_c03238{word-spacing:3.725568px;}
.wsd_c03238{word-spacing:4.253040px;}
.ws11_c03238{word-spacing:4.896000px;}
.wsf_c03238{word-spacing:11.538000px;}
.ws10_c03238{word-spacing:12.096000px;}
.wsa_c03238{word-spacing:33.300288px;}
.ws7_c03238{word-spacing:36.143712px;}
.ws1_c03238{word-spacing:37.759392px;}
.ws0_c03238{word-spacing:38.020752px;}
.ws3_c03238{word-spacing:39.218256px;}
.ws4_c03238{word-spacing:39.902544px;}
._0_c03238{margin-left:-1.948320px;}
._2_c03238{width:1.482624px;}
._4_c03238{width:3.487968px;}
._9_c03238{width:15.012576px;}
._7_c03238{width:16.731072px;}
._8_c03238{width:20.369376px;}
._5_c03238{width:21.679776px;}
._6_c03238{width:25.885152px;}
._1_c03238{width:50.252400px;}
._3_c03238{width:51.530688px;}
.fc0_c03238{color:rgb(0,0,0);}
.fs2_c03238{font-size:36.000000px;}
.fs0_c03238{font-size:47.520000px;}
.fs1_c03238{font-size:60.480000px;}
.y0_c03238{bottom:0.000000px;}
.y19_c03238{bottom:146.998362px;}
.y1e_c03238{bottom:181.200450px;}
.y1b_c03238{bottom:186.600234px;}
.y1d_c03238{bottom:190.200450px;}
.y1a_c03238{bottom:196.320450px;}
.y1c_c03238{bottom:199.200450px;}
.y18_c03238{bottom:275.878542px;}
.y17_c03238{bottom:356.878758px;}
.y15_c03238{bottom:406.559730px;}
.y11_c03238{bottom:424.560306px;}
.y16_c03238{bottom:458.759262px;}
.y14_c03238{bottom:491.879514px;}
.y13_c03238{bottom:509.880090px;}
.y10_c03238{bottom:543.000342px;}
.y12_c03238{bottom:559.559874px;}
.yf_c03238{bottom:577.560450px;}
.y1f_c03238{bottom:614.280450px;}
.yb_c03238{bottom:667.558326px;}
.yd_c03238{bottom:707.160234px;}
.yc_c03238{bottom:716.880450px;}
.ya_c03238{bottom:796.438506px;}
.y9_c03238{bottom:877.438722px;}
.y7_c03238{bottom:926.759730px;}
.y3_c03238{bottom:944.760306px;}
.y8_c03238{bottom:979.319226px;}
.y6_c03238{bottom:1012.439478px;}
.y5_c03238{bottom:1030.440054px;}
.y2_c03238{bottom:1063.560306px;}
.y4_c03238{bottom:1079.759874px;}
.y1_c03238{bottom:1097.760450px;}
.ye_c03238{bottom:1134.840450px;}
.h5_c03238{height:31.587891px;}
.h3_c03238{height:32.530781px;}
.h1_c03238{height:41.696016px;}
.h2_c03238{height:41.812031px;}
.h4_c03238{height:54.654737px;}
.h0_c03238{height:1263.000000px;}
.w1_c03238{width:892.500000px;}
.w0_c03238{width:892.830000px;}
.x0_c03238{left:0.000000px;}
.xd_c03238{left:117.000000px;}
.x8_c03238{left:440.999856px;}
.x4_c03238{left:445.680576px;}
.xb_c03238{left:451.080000px;}
.x7_c03238{left:455.399604px;}
.x5_c03238{left:461.880144px;}
.x1_c03238{left:463.320000px;}
.xa_c03238{left:483.480360px;}
.x9_c03238{left:492.119496px;}
.x6_c03238{left:493.200576px;}
.xc_c03238{left:506.880360px;}
.x3_c03238{left:511.919892px;}
.x2_c03238{left:526.679604px;}
.xe_c03238{left:569.880000px;}
@media print{
.v0_c03238{vertical-align:0.000000pt;}
.v1_c03238{vertical-align:1.279488pt;}
.lsb_c03238{letter-spacing:-1.064448pt;}
.lsd_c03238{letter-spacing:-0.671616pt;}
.ls1a_c03238{letter-spacing:-0.585600pt;}
.ls18_c03238{letter-spacing:-0.576000pt;}
.ls14_c03238{letter-spacing:-0.544896pt;}
.lsa_c03238{letter-spacing:-0.511104pt;}
.ls19_c03238{letter-spacing:-0.480000pt;}
.ls17_c03238{letter-spacing:-0.412800pt;}
.ls16_c03238{letter-spacing:-0.346368pt;}
.ls10_c03238{letter-spacing:-0.244992pt;}
.lse_c03238{letter-spacing:-0.232320pt;}
.ls6_c03238{letter-spacing:-0.215424pt;}
.ls15_c03238{letter-spacing:-0.177408pt;}
.ls4_c03238{letter-spacing:-0.105600pt;}
.ls13_c03238{letter-spacing:0.000000pt;}
.ls9_c03238{letter-spacing:0.004224pt;}
.ls0_c03238{letter-spacing:0.005376pt;}
.ls5_c03238{letter-spacing:0.114048pt;}
.ls7_c03238{letter-spacing:0.451968pt;}
.ls12_c03238{letter-spacing:0.456960pt;}
.lsf_c03238{letter-spacing:0.477312pt;}
.lsc_c03238{letter-spacing:0.515328pt;}
.ls11_c03238{letter-spacing:0.528000pt;}
.ls8_c03238{letter-spacing:0.532224pt;}
.ls2_c03238{letter-spacing:0.544896pt;}
.ls3_c03238{letter-spacing:0.637824pt;}
.ls1_c03238{letter-spacing:0.642048pt;}
.wsb_c03238{word-spacing:-13.445376pt;}
.ws9_c03238{word-spacing:-11.088000pt;}
.ws6_c03238{word-spacing:-11.075328pt;}
.ws8_c03238{word-spacing:-11.037312pt;}
.ws2_c03238{word-spacing:-11.011968pt;}
.ws5_c03238{word-spacing:-9.495552pt;}
.ws1a_c03238{word-spacing:-0.963072pt;}
.ws12_c03238{word-spacing:-0.865920pt;}
.ws19_c03238{word-spacing:-0.639744pt;}
.ws15_c03238{word-spacing:-0.325248pt;}
.ws1b_c03238{word-spacing:-0.143616pt;}
.ws14_c03238{word-spacing:-0.105600pt;}
.ws17_c03238{word-spacing:-0.088704pt;}
.ws18_c03238{word-spacing:-0.076032pt;}
.ws13_c03238{word-spacing:0.000000pt;}
.ws1c_c03238{word-spacing:0.025344pt;}
.ws1d_c03238{word-spacing:0.160000pt;}
.ws1e_c03238{word-spacing:0.265600pt;}
.ws16_c03238{word-spacing:0.350592pt;}
.wse_c03238{word-spacing:3.121536pt;}
.wsc_c03238{word-spacing:3.311616pt;}
.wsd_c03238{word-spacing:3.780480pt;}
.ws11_c03238{word-spacing:4.352000pt;}
.wsf_c03238{word-spacing:10.256000pt;}
.ws10_c03238{word-spacing:10.752000pt;}
.wsa_c03238{word-spacing:29.600256pt;}
.ws7_c03238{word-spacing:32.127744pt;}
.ws1_c03238{word-spacing:33.563904pt;}
.ws0_c03238{word-spacing:33.796224pt;}
.ws3_c03238{word-spacing:34.860672pt;}
.ws4_c03238{word-spacing:35.468928pt;}
._0_c03238{margin-left:-1.731840pt;}
._2_c03238{width:1.317888pt;}
._4_c03238{width:3.100416pt;}
._9_c03238{width:13.344512pt;}
._7_c03238{width:14.872064pt;}
._8_c03238{width:18.106112pt;}
._5_c03238{width:19.270912pt;}
._6_c03238{width:23.009024pt;}
._1_c03238{width:44.668800pt;}
._3_c03238{width:45.805056pt;}
.fs2_c03238{font-size:32.000000pt;}
.fs0_c03238{font-size:42.240000pt;}
.fs1_c03238{font-size:53.760000pt;}
.y0_c03238{bottom:0.000000pt;}
.y19_c03238{bottom:130.665211pt;}
.y1e_c03238{bottom:161.067067pt;}
.y1b_c03238{bottom:165.866875pt;}
.y1d_c03238{bottom:169.067067pt;}
.y1a_c03238{bottom:174.507067pt;}
.y1c_c03238{bottom:177.067067pt;}
.y18_c03238{bottom:245.225371pt;}
.y17_c03238{bottom:317.225563pt;}
.y15_c03238{bottom:361.386427pt;}
.y11_c03238{bottom:377.386939pt;}
.y16_c03238{bottom:407.786011pt;}
.y14_c03238{bottom:437.226235pt;}
.y13_c03238{bottom:453.226747pt;}
.y10_c03238{bottom:482.666971pt;}
.y12_c03238{bottom:497.386555pt;}
.yf_c03238{bottom:513.387067pt;}
.y1f_c03238{bottom:546.027067pt;}
.yb_c03238{bottom:593.385179pt;}
.yd_c03238{bottom:628.586875pt;}
.yc_c03238{bottom:637.227067pt;}
.ya_c03238{bottom:707.945339pt;}
.y9_c03238{bottom:779.945531pt;}
.y7_c03238{bottom:823.786427pt;}
.y3_c03238{bottom:839.786939pt;}
.y8_c03238{bottom:870.505979pt;}
.y6_c03238{bottom:899.946203pt;}
.y5_c03238{bottom:915.946715pt;}
.y2_c03238{bottom:945.386939pt;}
.y4_c03238{bottom:959.786555pt;}
.y1_c03238{bottom:975.787067pt;}
.ye_c03238{bottom:1008.747067pt;}
.h5_c03238{height:28.078125pt;}
.h3_c03238{height:28.916250pt;}
.h1_c03238{height:37.063125pt;}
.h2_c03238{height:37.166250pt;}
.h4_c03238{height:48.581988pt;}
.h0_c03238{height:1122.666667pt;}
.w1_c03238{width:793.333333pt;}
.w0_c03238{width:793.626667pt;}
.x0_c03238{left:0.000000pt;}
.xd_c03238{left:104.000000pt;}
.x8_c03238{left:391.999872pt;}
.x4_c03238{left:396.160512pt;}
.xb_c03238{left:400.960000pt;}
.x7_c03238{left:404.799648pt;}
.x5_c03238{left:410.560128pt;}
.x1_c03238{left:411.840000pt;}
.xa_c03238{left:429.760320pt;}
.x9_c03238{left:437.439552pt;}
.x6_c03238{left:438.400512pt;}
.xc_c03238{left:450.560320pt;}
.x3_c03238{left:455.039904pt;}
.x2_c03238{left:468.159648pt;}
.xe_c03238{left:506.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03239 {
    display:none;
  }
  .loading-indicator_c03239.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03239 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03239 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03239" -> "#page-container .classname_c03239")
 */
.pf_c03239 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03239 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03239.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03239 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03239 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03239 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03239 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03239 {overflow:visible;}
  }
}
.c_c03239 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03239 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03239:after { /* webkit #35443 */
  content: '';
}
.t_c03239:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03239 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03239 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03239 { /* info for Javascript */
  display:none;
}
.l_c03239 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03239 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03239 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03239:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03239 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03239.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03239.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03239 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03239{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03239;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03239{font-family:ff1_c03239;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03239;src:url('chunks/assets/font_b4ad556e66cafe01205289a0.woff2')format("woff");}.ff2_c03239{font-family:ff2_c03239;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03239;src:url('chunks/assets/font_f369582199780992b40cf7bd.woff2')format("woff");}.ff3_c03239{font-family:ff3_c03239;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03239{vertical-align:0.000000px;}
.v3_c03239{vertical-align:1.439424px;}
.v1_c03239{vertical-align:7.199280px;}
.v2_c03239{vertical-align:33.121440px;}
.lsf_c03239{letter-spacing:-0.845856px;}
.ls17_c03239{letter-spacing:-0.793584px;}
.lsc_c03239{letter-spacing:-0.722304px;}
.ls16_c03239{letter-spacing:-0.613008px;}
.ls8_c03239{letter-spacing:-0.574992px;}
.ls11_c03239{letter-spacing:-0.275616px;}
.lsd_c03239{letter-spacing:-0.261360px;}
.ls6_c03239{letter-spacing:-0.242352px;}
.ls10_c03239{letter-spacing:-0.218592px;}
.ls13_c03239{letter-spacing:-0.213840px;}
.ls4_c03239{letter-spacing:-0.118800px;}
.ls15_c03239{letter-spacing:0.000000px;}
.lsa_c03239{letter-spacing:0.004752px;}
.ls1_c03239{letter-spacing:0.006048px;}
.ls5_c03239{letter-spacing:0.128304px;}
.lsb_c03239{letter-spacing:0.508464px;}
.ls14_c03239{letter-spacing:0.514080px;}
.lse_c03239{letter-spacing:0.536976px;}
.ls9_c03239{letter-spacing:0.579744px;}
.ls12_c03239{letter-spacing:0.594000px;}
.ls7_c03239{letter-spacing:0.598752px;}
.ls2_c03239{letter-spacing:0.613008px;}
.ls3_c03239{letter-spacing:0.717552px;}
.ls0_c03239{letter-spacing:0.722304px;}
.sc__c03239{text-shadow:none;}
.sc0_c03239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03239{-webkit-text-stroke:0px transparent;}
.sc0_c03239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03239{word-spacing:-15.126048px;}
.ws2_c03239{word-spacing:-12.602304px;}
.wse_c03239{word-spacing:-12.597552px;}
.ws14_c03239{word-spacing:-12.474000px;}
.ws8_c03239{word-spacing:-12.459744px;}
.ws13_c03239{word-spacing:-12.416976px;}
.ws10_c03239{word-spacing:-11.637648px;}
.wsf_c03239{word-spacing:-11.266992px;}
.ws18_c03239{word-spacing:-1.083456px;}
.ws15_c03239{word-spacing:-0.974160px;}
.ws1f_c03239{word-spacing:-0.719712px;}
.ws19_c03239{word-spacing:-0.365904px;}
.ws1e_c03239{word-spacing:-0.147312px;}
.ws1c_c03239{word-spacing:-0.142560px;}
.ws17_c03239{word-spacing:-0.118800px;}
.ws1b_c03239{word-spacing:-0.099792px;}
.ws1d_c03239{word-spacing:-0.085536px;}
.ws16_c03239{word-spacing:0.000000px;}
.ws1a_c03239{word-spacing:0.361152px;}
.ws20_c03239{word-spacing:0.432432px;}
.ws4_c03239{word-spacing:4.951584px;}
.wsa_c03239{word-spacing:6.158592px;}
.ws12_c03239{word-spacing:13.676256px;}
.wsb_c03239{word-spacing:30.298752px;}
.wsc_c03239{word-spacing:33.300288px;}
.ws9_c03239{word-spacing:34.836912px;}
.ws11_c03239{word-spacing:36.143712px;}
.ws6_c03239{word-spacing:36.742464px;}
.ws1_c03239{word-spacing:37.759392px;}
.ws0_c03239{word-spacing:38.020752px;}
.ws3_c03239{word-spacing:39.218256px;}
.ws5_c03239{word-spacing:39.902544px;}
.ws7_c03239{word-spacing:42.026688px;}
._0_c03239{margin-left:-1.948320px;}
._2_c03239{width:1.482624px;}
._5_c03239{width:5.749920px;}
._4_c03239{width:19.326384px;}
._9_c03239{width:27.837216px;}
._8_c03239{width:31.097088px;}
._7_c03239{width:32.931360px;}
._6_c03239{width:34.257168px;}
._1_c03239{width:50.252400px;}
._3_c03239{width:51.530688px;}
.fc0_c03239{color:rgb(0,0,0);}
.fs0_c03239{font-size:47.520000px;}
.fs1_c03239{font-size:60.480000px;}
.y0_c03239{bottom:0.000000px;}
.y1b_c03239{bottom:146.998362px;}
.y1d_c03239{bottom:186.600234px;}
.y1c_c03239{bottom:196.320450px;}
.y1a_c03239{bottom:260.758866px;}
.y19_c03239{bottom:275.878542px;}
.y18_c03239{bottom:356.878758px;}
.y16_c03239{bottom:406.559730px;}
.y12_c03239{bottom:424.560306px;}
.y17_c03239{bottom:458.759262px;}
.y15_c03239{bottom:491.879514px;}
.y14_c03239{bottom:509.880090px;}
.y11_c03239{bottom:543.000342px;}
.y13_c03239{bottom:559.559874px;}
.y10_c03239{bottom:577.560450px;}
.y1e_c03239{bottom:614.280450px;}
.yc_c03239{bottom:652.438650px;}
.yb_c03239{bottom:667.558326px;}
.ye_c03239{bottom:707.160234px;}
.yd_c03239{bottom:716.880450px;}
.ya_c03239{bottom:796.438506px;}
.y9_c03239{bottom:877.438722px;}
.y7_c03239{bottom:926.759730px;}
.y3_c03239{bottom:944.760306px;}
.y8_c03239{bottom:979.319226px;}
.y6_c03239{bottom:1012.439478px;}
.y5_c03239{bottom:1030.440054px;}
.y2_c03239{bottom:1063.560306px;}
.y4_c03239{bottom:1079.759874px;}
.y1_c03239{bottom:1097.760450px;}
.yf_c03239{bottom:1134.840450px;}
.h4_c03239{height:32.530781px;}
.h1_c03239{height:41.696016px;}
.h2_c03239{height:41.812031px;}
.h3_c03239{height:49.011311px;}
.h6_c03239{height:54.654737px;}
.h5_c03239{height:74.817456px;}
.h0_c03239{height:1263.000000px;}
.w1_c03239{width:892.500000px;}
.w0_c03239{width:892.830000px;}
.x0_c03239{left:0.000000px;}
.xe_c03239{left:117.000000px;}
.x8_c03239{left:440.999856px;}
.x4_c03239{left:445.680576px;}
.xc_c03239{left:451.080000px;}
.x7_c03239{left:455.399604px;}
.x5_c03239{left:461.880144px;}
.x1_c03239{left:463.320000px;}
.xa_c03239{left:483.480360px;}
.x9_c03239{left:492.119496px;}
.x6_c03239{left:493.200576px;}
.xd_c03239{left:506.880360px;}
.x3_c03239{left:511.919892px;}
.x2_c03239{left:526.679604px;}
.xb_c03239{left:569.880036px;}
@media print{
.v0_c03239{vertical-align:0.000000pt;}
.v3_c03239{vertical-align:1.279488pt;}
.v1_c03239{vertical-align:6.399360pt;}
.v2_c03239{vertical-align:29.441280pt;}
.lsf_c03239{letter-spacing:-0.751872pt;}
.ls17_c03239{letter-spacing:-0.705408pt;}
.lsc_c03239{letter-spacing:-0.642048pt;}
.ls16_c03239{letter-spacing:-0.544896pt;}
.ls8_c03239{letter-spacing:-0.511104pt;}
.ls11_c03239{letter-spacing:-0.244992pt;}
.lsd_c03239{letter-spacing:-0.232320pt;}
.ls6_c03239{letter-spacing:-0.215424pt;}
.ls10_c03239{letter-spacing:-0.194304pt;}
.ls13_c03239{letter-spacing:-0.190080pt;}
.ls4_c03239{letter-spacing:-0.105600pt;}
.ls15_c03239{letter-spacing:0.000000pt;}
.lsa_c03239{letter-spacing:0.004224pt;}
.ls1_c03239{letter-spacing:0.005376pt;}
.ls5_c03239{letter-spacing:0.114048pt;}
.lsb_c03239{letter-spacing:0.451968pt;}
.ls14_c03239{letter-spacing:0.456960pt;}
.lse_c03239{letter-spacing:0.477312pt;}
.ls9_c03239{letter-spacing:0.515328pt;}
.ls12_c03239{letter-spacing:0.528000pt;}
.ls7_c03239{letter-spacing:0.532224pt;}
.ls2_c03239{letter-spacing:0.544896pt;}
.ls3_c03239{letter-spacing:0.637824pt;}
.ls0_c03239{letter-spacing:0.642048pt;}
.wsd_c03239{word-spacing:-13.445376pt;}
.ws2_c03239{word-spacing:-11.202048pt;}
.wse_c03239{word-spacing:-11.197824pt;}
.ws14_c03239{word-spacing:-11.088000pt;}
.ws8_c03239{word-spacing:-11.075328pt;}
.ws13_c03239{word-spacing:-11.037312pt;}
.ws10_c03239{word-spacing:-10.344576pt;}
.wsf_c03239{word-spacing:-10.015104pt;}
.ws18_c03239{word-spacing:-0.963072pt;}
.ws15_c03239{word-spacing:-0.865920pt;}
.ws1f_c03239{word-spacing:-0.639744pt;}
.ws19_c03239{word-spacing:-0.325248pt;}
.ws1e_c03239{word-spacing:-0.130944pt;}
.ws1c_c03239{word-spacing:-0.126720pt;}
.ws17_c03239{word-spacing:-0.105600pt;}
.ws1b_c03239{word-spacing:-0.088704pt;}
.ws1d_c03239{word-spacing:-0.076032pt;}
.ws16_c03239{word-spacing:0.000000pt;}
.ws1a_c03239{word-spacing:0.321024pt;}
.ws20_c03239{word-spacing:0.384384pt;}
.ws4_c03239{word-spacing:4.401408pt;}
.wsa_c03239{word-spacing:5.474304pt;}
.ws12_c03239{word-spacing:12.156672pt;}
.wsb_c03239{word-spacing:26.932224pt;}
.wsc_c03239{word-spacing:29.600256pt;}
.ws9_c03239{word-spacing:30.966144pt;}
.ws11_c03239{word-spacing:32.127744pt;}
.ws6_c03239{word-spacing:32.659968pt;}
.ws1_c03239{word-spacing:33.563904pt;}
.ws0_c03239{word-spacing:33.796224pt;}
.ws3_c03239{word-spacing:34.860672pt;}
.ws5_c03239{word-spacing:35.468928pt;}
.ws7_c03239{word-spacing:37.357056pt;}
._0_c03239{margin-left:-1.731840pt;}
._2_c03239{width:1.317888pt;}
._5_c03239{width:5.111040pt;}
._4_c03239{width:17.179008pt;}
._9_c03239{width:24.744192pt;}
._8_c03239{width:27.641856pt;}
._7_c03239{width:29.272320pt;}
._6_c03239{width:30.450816pt;}
._1_c03239{width:44.668800pt;}
._3_c03239{width:45.805056pt;}
.fs0_c03239{font-size:42.240000pt;}
.fs1_c03239{font-size:53.760000pt;}
.y0_c03239{bottom:0.000000pt;}
.y1b_c03239{bottom:130.665211pt;}
.y1d_c03239{bottom:165.866875pt;}
.y1c_c03239{bottom:174.507067pt;}
.y1a_c03239{bottom:231.785659pt;}
.y19_c03239{bottom:245.225371pt;}
.y18_c03239{bottom:317.225563pt;}
.y16_c03239{bottom:361.386427pt;}
.y12_c03239{bottom:377.386939pt;}
.y17_c03239{bottom:407.786011pt;}
.y15_c03239{bottom:437.226235pt;}
.y14_c03239{bottom:453.226747pt;}
.y11_c03239{bottom:482.666971pt;}
.y13_c03239{bottom:497.386555pt;}
.y10_c03239{bottom:513.387067pt;}
.y1e_c03239{bottom:546.027067pt;}
.yc_c03239{bottom:579.945467pt;}
.yb_c03239{bottom:593.385179pt;}
.ye_c03239{bottom:628.586875pt;}
.yd_c03239{bottom:637.227067pt;}
.ya_c03239{bottom:707.945339pt;}
.y9_c03239{bottom:779.945531pt;}
.y7_c03239{bottom:823.786427pt;}
.y3_c03239{bottom:839.786939pt;}
.y8_c03239{bottom:870.505979pt;}
.y6_c03239{bottom:899.946203pt;}
.y5_c03239{bottom:915.946715pt;}
.y2_c03239{bottom:945.386939pt;}
.y4_c03239{bottom:959.786555pt;}
.y1_c03239{bottom:975.787067pt;}
.yf_c03239{bottom:1008.747067pt;}
.h4_c03239{height:28.916250pt;}
.h1_c03239{height:37.063125pt;}
.h2_c03239{height:37.166250pt;}
.h3_c03239{height:43.565610pt;}
.h6_c03239{height:48.581988pt;}
.h5_c03239{height:66.504405pt;}
.h0_c03239{height:1122.666667pt;}
.w1_c03239{width:793.333333pt;}
.w0_c03239{width:793.626667pt;}
.x0_c03239{left:0.000000pt;}
.xe_c03239{left:104.000000pt;}
.x8_c03239{left:391.999872pt;}
.x4_c03239{left:396.160512pt;}
.xc_c03239{left:400.960000pt;}
.x7_c03239{left:404.799648pt;}
.x5_c03239{left:410.560128pt;}
.x1_c03239{left:411.840000pt;}
.xa_c03239{left:429.760320pt;}
.x9_c03239{left:437.439552pt;}
.x6_c03239{left:438.400512pt;}
.xd_c03239{left:450.560320pt;}
.x3_c03239{left:455.039904pt;}
.x2_c03239{left:468.159648pt;}
.xb_c03239{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03240 {
    display:none;
  }
  .loading-indicator_c03240.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03240 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03240 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03240" -> "#page-container .classname_c03240")
 */
.pf_c03240 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03240 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03240.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03240 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03240 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03240 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03240 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03240 {overflow:visible;}
  }
}
.c_c03240 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03240 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03240:after { /* webkit #35443 */
  content: '';
}
.t_c03240:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03240 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03240 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03240 { /* info for Javascript */
  display:none;
}
.l_c03240 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03240 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03240 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03240:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03240 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03240.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03240.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03240 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03240{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03240;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03240{font-family:ff1_c03240;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03240;src:url('chunks/assets/font_38973e4b62146f697fcc1ce1.woff2')format("woff");}.ff2_c03240{font-family:ff2_c03240;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03240;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03240{font-family:ff3_c03240;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03240{vertical-align:0.000000px;}
.v1_c03240{vertical-align:1.439424px;}
.lsc_c03240{letter-spacing:-1.197504px;}
.ls7_c03240{letter-spacing:-0.613008px;}
.ls9_c03240{letter-spacing:-0.574992px;}
.lsf_c03240{letter-spacing:-0.275616px;}
.lsd_c03240{letter-spacing:-0.261360px;}
.ls6_c03240{letter-spacing:-0.242352px;}
.ls4_c03240{letter-spacing:-0.118800px;}
.ls12_c03240{letter-spacing:0.000000px;}
.ls1_c03240{letter-spacing:0.006048px;}
.ls5_c03240{letter-spacing:0.128304px;}
.lsb_c03240{letter-spacing:0.508464px;}
.ls11_c03240{letter-spacing:0.514080px;}
.lse_c03240{letter-spacing:0.536976px;}
.lsa_c03240{letter-spacing:0.579744px;}
.ls10_c03240{letter-spacing:0.594000px;}
.ls8_c03240{letter-spacing:0.598752px;}
.ls2_c03240{letter-spacing:0.613008px;}
.ls3_c03240{letter-spacing:0.717552px;}
.ls0_c03240{letter-spacing:0.722304px;}
.sc__c03240{text-shadow:none;}
.sc0_c03240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03240{-webkit-text-stroke:0px transparent;}
.sc0_c03240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03240{word-spacing:-15.126048px;}
.wsa_c03240{word-spacing:-12.474000px;}
.ws8_c03240{word-spacing:-12.459744px;}
.ws9_c03240{word-spacing:-12.416976px;}
.ws4_c03240{word-spacing:-11.637648px;}
.ws2_c03240{word-spacing:-11.266992px;}
.ws10_c03240{word-spacing:-1.083456px;}
.wsd_c03240{word-spacing:-0.974160px;}
.ws14_c03240{word-spacing:-0.719712px;}
.wsf_c03240{word-spacing:-0.118800px;}
.ws12_c03240{word-spacing:-0.099792px;}
.ws13_c03240{word-spacing:-0.085536px;}
.wse_c03240{word-spacing:0.000000px;}
.ws11_c03240{word-spacing:0.836352px;}
.wsb_c03240{word-spacing:33.300288px;}
.ws6_c03240{word-spacing:36.742464px;}
.ws1_c03240{word-spacing:37.759392px;}
.ws0_c03240{word-spacing:38.020752px;}
.ws3_c03240{word-spacing:39.218256px;}
.ws5_c03240{word-spacing:39.902544px;}
.ws7_c03240{word-spacing:42.026688px;}
._0_c03240{margin-left:-1.948320px;}
._2_c03240{width:1.482624px;}
._5_c03240{width:2.770416px;}
._4_c03240{width:5.749920px;}
._1_c03240{width:50.252400px;}
._3_c03240{width:51.530688px;}
.fc0_c03240{color:rgb(0,0,0);}
.fs0_c03240{font-size:47.520000px;}
.fs1_c03240{font-size:60.480000px;}
.y0_c03240{bottom:0.000000px;}
.y19_c03240{bottom:146.998362px;}
.y1b_c03240{bottom:186.600234px;}
.y1a_c03240{bottom:196.320450px;}
.y18_c03240{bottom:275.878542px;}
.y17_c03240{bottom:356.878758px;}
.y15_c03240{bottom:406.559730px;}
.y11_c03240{bottom:424.560306px;}
.y16_c03240{bottom:458.759262px;}
.y14_c03240{bottom:491.879514px;}
.y13_c03240{bottom:509.880090px;}
.y10_c03240{bottom:543.000342px;}
.y12_c03240{bottom:559.559874px;}
.yf_c03240{bottom:577.560450px;}
.y1c_c03240{bottom:614.280450px;}
.yb_c03240{bottom:667.558326px;}
.yd_c03240{bottom:707.160234px;}
.yc_c03240{bottom:716.880450px;}
.ya_c03240{bottom:796.438506px;}
.y9_c03240{bottom:877.438722px;}
.y7_c03240{bottom:926.759730px;}
.y3_c03240{bottom:944.760306px;}
.y8_c03240{bottom:979.319226px;}
.y6_c03240{bottom:1012.439478px;}
.y5_c03240{bottom:1030.440054px;}
.y2_c03240{bottom:1063.560306px;}
.y4_c03240{bottom:1079.759874px;}
.y1_c03240{bottom:1097.760450px;}
.ye_c03240{bottom:1134.840450px;}
.h3_c03240{height:32.530781px;}
.h1_c03240{height:41.696016px;}
.h2_c03240{height:41.812031px;}
.h4_c03240{height:54.654737px;}
.h0_c03240{height:1263.000000px;}
.w1_c03240{width:892.500000px;}
.w0_c03240{width:892.830000px;}
.x0_c03240{left:0.000000px;}
.xd_c03240{left:117.000000px;}
.x8_c03240{left:440.999856px;}
.x4_c03240{left:445.680576px;}
.xb_c03240{left:451.080000px;}
.x7_c03240{left:455.399604px;}
.x5_c03240{left:461.880144px;}
.x1_c03240{left:463.320000px;}
.xa_c03240{left:483.480360px;}
.x9_c03240{left:492.119496px;}
.x6_c03240{left:493.200576px;}
.xc_c03240{left:506.880360px;}
.x3_c03240{left:511.919892px;}
.x2_c03240{left:526.679604px;}
@media print{
.v0_c03240{vertical-align:0.000000pt;}
.v1_c03240{vertical-align:1.279488pt;}
.lsc_c03240{letter-spacing:-1.064448pt;}
.ls7_c03240{letter-spacing:-0.544896pt;}
.ls9_c03240{letter-spacing:-0.511104pt;}
.lsf_c03240{letter-spacing:-0.244992pt;}
.lsd_c03240{letter-spacing:-0.232320pt;}
.ls6_c03240{letter-spacing:-0.215424pt;}
.ls4_c03240{letter-spacing:-0.105600pt;}
.ls12_c03240{letter-spacing:0.000000pt;}
.ls1_c03240{letter-spacing:0.005376pt;}
.ls5_c03240{letter-spacing:0.114048pt;}
.lsb_c03240{letter-spacing:0.451968pt;}
.ls11_c03240{letter-spacing:0.456960pt;}
.lse_c03240{letter-spacing:0.477312pt;}
.lsa_c03240{letter-spacing:0.515328pt;}
.ls10_c03240{letter-spacing:0.528000pt;}
.ls8_c03240{letter-spacing:0.532224pt;}
.ls2_c03240{letter-spacing:0.544896pt;}
.ls3_c03240{letter-spacing:0.637824pt;}
.ls0_c03240{letter-spacing:0.642048pt;}
.wsc_c03240{word-spacing:-13.445376pt;}
.wsa_c03240{word-spacing:-11.088000pt;}
.ws8_c03240{word-spacing:-11.075328pt;}
.ws9_c03240{word-spacing:-11.037312pt;}
.ws4_c03240{word-spacing:-10.344576pt;}
.ws2_c03240{word-spacing:-10.015104pt;}
.ws10_c03240{word-spacing:-0.963072pt;}
.wsd_c03240{word-spacing:-0.865920pt;}
.ws14_c03240{word-spacing:-0.639744pt;}
.wsf_c03240{word-spacing:-0.105600pt;}
.ws12_c03240{word-spacing:-0.088704pt;}
.ws13_c03240{word-spacing:-0.076032pt;}
.wse_c03240{word-spacing:0.000000pt;}
.ws11_c03240{word-spacing:0.743424pt;}
.wsb_c03240{word-spacing:29.600256pt;}
.ws6_c03240{word-spacing:32.659968pt;}
.ws1_c03240{word-spacing:33.563904pt;}
.ws0_c03240{word-spacing:33.796224pt;}
.ws3_c03240{word-spacing:34.860672pt;}
.ws5_c03240{word-spacing:35.468928pt;}
.ws7_c03240{word-spacing:37.357056pt;}
._0_c03240{margin-left:-1.731840pt;}
._2_c03240{width:1.317888pt;}
._5_c03240{width:2.462592pt;}
._4_c03240{width:5.111040pt;}
._1_c03240{width:44.668800pt;}
._3_c03240{width:45.805056pt;}
.fs0_c03240{font-size:42.240000pt;}
.fs1_c03240{font-size:53.760000pt;}
.y0_c03240{bottom:0.000000pt;}
.y19_c03240{bottom:130.665211pt;}
.y1b_c03240{bottom:165.866875pt;}
.y1a_c03240{bottom:174.507067pt;}
.y18_c03240{bottom:245.225371pt;}
.y17_c03240{bottom:317.225563pt;}
.y15_c03240{bottom:361.386427pt;}
.y11_c03240{bottom:377.386939pt;}
.y16_c03240{bottom:407.786011pt;}
.y14_c03240{bottom:437.226235pt;}
.y13_c03240{bottom:453.226747pt;}
.y10_c03240{bottom:482.666971pt;}
.y12_c03240{bottom:497.386555pt;}
.yf_c03240{bottom:513.387067pt;}
.y1c_c03240{bottom:546.027067pt;}
.yb_c03240{bottom:593.385179pt;}
.yd_c03240{bottom:628.586875pt;}
.yc_c03240{bottom:637.227067pt;}
.ya_c03240{bottom:707.945339pt;}
.y9_c03240{bottom:779.945531pt;}
.y7_c03240{bottom:823.786427pt;}
.y3_c03240{bottom:839.786939pt;}
.y8_c03240{bottom:870.505979pt;}
.y6_c03240{bottom:899.946203pt;}
.y5_c03240{bottom:915.946715pt;}
.y2_c03240{bottom:945.386939pt;}
.y4_c03240{bottom:959.786555pt;}
.y1_c03240{bottom:975.787067pt;}
.ye_c03240{bottom:1008.747067pt;}
.h3_c03240{height:28.916250pt;}
.h1_c03240{height:37.063125pt;}
.h2_c03240{height:37.166250pt;}
.h4_c03240{height:48.581988pt;}
.h0_c03240{height:1122.666667pt;}
.w1_c03240{width:793.333333pt;}
.w0_c03240{width:793.626667pt;}
.x0_c03240{left:0.000000pt;}
.xd_c03240{left:104.000000pt;}
.x8_c03240{left:391.999872pt;}
.x4_c03240{left:396.160512pt;}
.xb_c03240{left:400.960000pt;}
.x7_c03240{left:404.799648pt;}
.x5_c03240{left:410.560128pt;}
.x1_c03240{left:411.840000pt;}
.xa_c03240{left:429.760320pt;}
.x9_c03240{left:437.439552pt;}
.x6_c03240{left:438.400512pt;}
.xc_c03240{left:450.560320pt;}
.x3_c03240{left:455.039904pt;}
.x2_c03240{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03241 {
    display:none;
  }
  .loading-indicator_c03241.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03241 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03241 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03241" -> "#page-container .classname_c03241")
 */
.pf_c03241 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03241 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03241.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03241 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03241 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03241 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03241 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03241 {overflow:visible;}
  }
}
.c_c03241 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03241 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03241:after { /* webkit #35443 */
  content: '';
}
.t_c03241:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03241 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03241 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03241 { /* info for Javascript */
  display:none;
}
.l_c03241 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03241 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03241 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03241:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03241 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03241.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03241.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03241 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03241{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03241;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03241{font-family:ff1_c03241;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03241;src:url('chunks/assets/font_064382364b00bcc45746f68b.woff2')format("woff");}.ff2_c03241{font-family:ff2_c03241;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03241;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03241{font-family:ff3_c03241;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03241{vertical-align:0.000000px;}
.v1_c03241{vertical-align:1.439424px;}
.lsc_c03241{letter-spacing:-1.197504px;}
.ls7_c03241{letter-spacing:-0.613008px;}
.ls9_c03241{letter-spacing:-0.574992px;}
.lsf_c03241{letter-spacing:-0.275616px;}
.lsd_c03241{letter-spacing:-0.261360px;}
.ls6_c03241{letter-spacing:-0.242352px;}
.ls4_c03241{letter-spacing:-0.118800px;}
.ls12_c03241{letter-spacing:0.000000px;}
.ls1_c03241{letter-spacing:0.006048px;}
.ls5_c03241{letter-spacing:0.128304px;}
.lsb_c03241{letter-spacing:0.508464px;}
.ls11_c03241{letter-spacing:0.514080px;}
.lse_c03241{letter-spacing:0.536976px;}
.lsa_c03241{letter-spacing:0.579744px;}
.ls10_c03241{letter-spacing:0.594000px;}
.ls8_c03241{letter-spacing:0.598752px;}
.ls2_c03241{letter-spacing:0.613008px;}
.ls3_c03241{letter-spacing:0.717552px;}
.ls0_c03241{letter-spacing:0.722304px;}
.sc__c03241{text-shadow:none;}
.sc0_c03241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03241{-webkit-text-stroke:0px transparent;}
.sc0_c03241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03241{word-spacing:-15.126048px;}
.wsa_c03241{word-spacing:-12.474000px;}
.ws8_c03241{word-spacing:-12.459744px;}
.ws9_c03241{word-spacing:-12.416976px;}
.ws4_c03241{word-spacing:-11.637648px;}
.ws2_c03241{word-spacing:-11.266992px;}
.ws11_c03241{word-spacing:-1.083456px;}
.wse_c03241{word-spacing:-0.974160px;}
.ws15_c03241{word-spacing:-0.719712px;}
.ws10_c03241{word-spacing:-0.118800px;}
.ws13_c03241{word-spacing:-0.099792px;}
.ws14_c03241{word-spacing:-0.085536px;}
.wsf_c03241{word-spacing:0.000000px;}
.ws12_c03241{word-spacing:0.836352px;}
.wsb_c03241{word-spacing:33.300288px;}
.wsd_c03241{word-spacing:36.143712px;}
.ws6_c03241{word-spacing:36.742464px;}
.ws1_c03241{word-spacing:37.759392px;}
.ws0_c03241{word-spacing:38.020752px;}
.ws3_c03241{word-spacing:39.218256px;}
.ws5_c03241{word-spacing:39.902544px;}
.ws7_c03241{word-spacing:42.026688px;}
._0_c03241{margin-left:-1.948320px;}
._2_c03241{width:1.482624px;}
._5_c03241{width:2.770416px;}
._4_c03241{width:5.749920px;}
._1_c03241{width:50.252400px;}
._3_c03241{width:51.530688px;}
.fc0_c03241{color:rgb(0,0,0);}
.fs0_c03241{font-size:47.520000px;}
.fs1_c03241{font-size:60.480000px;}
.y0_c03241{bottom:0.000000px;}
.y19_c03241{bottom:146.998362px;}
.y1b_c03241{bottom:186.600234px;}
.y1a_c03241{bottom:196.320450px;}
.y18_c03241{bottom:275.878542px;}
.y17_c03241{bottom:356.878758px;}
.y15_c03241{bottom:406.559730px;}
.y11_c03241{bottom:424.560306px;}
.y16_c03241{bottom:458.759262px;}
.y14_c03241{bottom:491.879514px;}
.y13_c03241{bottom:509.880090px;}
.y10_c03241{bottom:543.000342px;}
.y12_c03241{bottom:559.559874px;}
.yf_c03241{bottom:577.560450px;}
.y1c_c03241{bottom:614.280450px;}
.yb_c03241{bottom:667.558326px;}
.yd_c03241{bottom:707.160234px;}
.yc_c03241{bottom:716.880450px;}
.ya_c03241{bottom:796.438506px;}
.y9_c03241{bottom:877.438722px;}
.y7_c03241{bottom:926.759730px;}
.y3_c03241{bottom:944.760306px;}
.y8_c03241{bottom:979.319226px;}
.y6_c03241{bottom:1012.439478px;}
.y5_c03241{bottom:1030.440054px;}
.y2_c03241{bottom:1063.560306px;}
.y4_c03241{bottom:1079.759874px;}
.y1_c03241{bottom:1097.760450px;}
.ye_c03241{bottom:1134.840450px;}
.h3_c03241{height:32.530781px;}
.h1_c03241{height:41.696016px;}
.h2_c03241{height:41.812031px;}
.h4_c03241{height:54.654737px;}
.h0_c03241{height:1263.000000px;}
.w1_c03241{width:892.500000px;}
.w0_c03241{width:892.830000px;}
.x0_c03241{left:0.000000px;}
.xd_c03241{left:117.000000px;}
.x8_c03241{left:440.999856px;}
.x4_c03241{left:445.680576px;}
.xb_c03241{left:451.080000px;}
.x7_c03241{left:455.399604px;}
.x5_c03241{left:461.880144px;}
.x1_c03241{left:463.320000px;}
.xa_c03241{left:483.480360px;}
.x9_c03241{left:492.119496px;}
.x6_c03241{left:493.200576px;}
.xc_c03241{left:506.880360px;}
.x3_c03241{left:511.919892px;}
.x2_c03241{left:526.679604px;}
@media print{
.v0_c03241{vertical-align:0.000000pt;}
.v1_c03241{vertical-align:1.279488pt;}
.lsc_c03241{letter-spacing:-1.064448pt;}
.ls7_c03241{letter-spacing:-0.544896pt;}
.ls9_c03241{letter-spacing:-0.511104pt;}
.lsf_c03241{letter-spacing:-0.244992pt;}
.lsd_c03241{letter-spacing:-0.232320pt;}
.ls6_c03241{letter-spacing:-0.215424pt;}
.ls4_c03241{letter-spacing:-0.105600pt;}
.ls12_c03241{letter-spacing:0.000000pt;}
.ls1_c03241{letter-spacing:0.005376pt;}
.ls5_c03241{letter-spacing:0.114048pt;}
.lsb_c03241{letter-spacing:0.451968pt;}
.ls11_c03241{letter-spacing:0.456960pt;}
.lse_c03241{letter-spacing:0.477312pt;}
.lsa_c03241{letter-spacing:0.515328pt;}
.ls10_c03241{letter-spacing:0.528000pt;}
.ls8_c03241{letter-spacing:0.532224pt;}
.ls2_c03241{letter-spacing:0.544896pt;}
.ls3_c03241{letter-spacing:0.637824pt;}
.ls0_c03241{letter-spacing:0.642048pt;}
.wsc_c03241{word-spacing:-13.445376pt;}
.wsa_c03241{word-spacing:-11.088000pt;}
.ws8_c03241{word-spacing:-11.075328pt;}
.ws9_c03241{word-spacing:-11.037312pt;}
.ws4_c03241{word-spacing:-10.344576pt;}
.ws2_c03241{word-spacing:-10.015104pt;}
.ws11_c03241{word-spacing:-0.963072pt;}
.wse_c03241{word-spacing:-0.865920pt;}
.ws15_c03241{word-spacing:-0.639744pt;}
.ws10_c03241{word-spacing:-0.105600pt;}
.ws13_c03241{word-spacing:-0.088704pt;}
.ws14_c03241{word-spacing:-0.076032pt;}
.wsf_c03241{word-spacing:0.000000pt;}
.ws12_c03241{word-spacing:0.743424pt;}
.wsb_c03241{word-spacing:29.600256pt;}
.wsd_c03241{word-spacing:32.127744pt;}
.ws6_c03241{word-spacing:32.659968pt;}
.ws1_c03241{word-spacing:33.563904pt;}
.ws0_c03241{word-spacing:33.796224pt;}
.ws3_c03241{word-spacing:34.860672pt;}
.ws5_c03241{word-spacing:35.468928pt;}
.ws7_c03241{word-spacing:37.357056pt;}
._0_c03241{margin-left:-1.731840pt;}
._2_c03241{width:1.317888pt;}
._5_c03241{width:2.462592pt;}
._4_c03241{width:5.111040pt;}
._1_c03241{width:44.668800pt;}
._3_c03241{width:45.805056pt;}
.fs0_c03241{font-size:42.240000pt;}
.fs1_c03241{font-size:53.760000pt;}
.y0_c03241{bottom:0.000000pt;}
.y19_c03241{bottom:130.665211pt;}
.y1b_c03241{bottom:165.866875pt;}
.y1a_c03241{bottom:174.507067pt;}
.y18_c03241{bottom:245.225371pt;}
.y17_c03241{bottom:317.225563pt;}
.y15_c03241{bottom:361.386427pt;}
.y11_c03241{bottom:377.386939pt;}
.y16_c03241{bottom:407.786011pt;}
.y14_c03241{bottom:437.226235pt;}
.y13_c03241{bottom:453.226747pt;}
.y10_c03241{bottom:482.666971pt;}
.y12_c03241{bottom:497.386555pt;}
.yf_c03241{bottom:513.387067pt;}
.y1c_c03241{bottom:546.027067pt;}
.yb_c03241{bottom:593.385179pt;}
.yd_c03241{bottom:628.586875pt;}
.yc_c03241{bottom:637.227067pt;}
.ya_c03241{bottom:707.945339pt;}
.y9_c03241{bottom:779.945531pt;}
.y7_c03241{bottom:823.786427pt;}
.y3_c03241{bottom:839.786939pt;}
.y8_c03241{bottom:870.505979pt;}
.y6_c03241{bottom:899.946203pt;}
.y5_c03241{bottom:915.946715pt;}
.y2_c03241{bottom:945.386939pt;}
.y4_c03241{bottom:959.786555pt;}
.y1_c03241{bottom:975.787067pt;}
.ye_c03241{bottom:1008.747067pt;}
.h3_c03241{height:28.916250pt;}
.h1_c03241{height:37.063125pt;}
.h2_c03241{height:37.166250pt;}
.h4_c03241{height:48.581988pt;}
.h0_c03241{height:1122.666667pt;}
.w1_c03241{width:793.333333pt;}
.w0_c03241{width:793.626667pt;}
.x0_c03241{left:0.000000pt;}
.xd_c03241{left:104.000000pt;}
.x8_c03241{left:391.999872pt;}
.x4_c03241{left:396.160512pt;}
.xb_c03241{left:400.960000pt;}
.x7_c03241{left:404.799648pt;}
.x5_c03241{left:410.560128pt;}
.x1_c03241{left:411.840000pt;}
.xa_c03241{left:429.760320pt;}
.x9_c03241{left:437.439552pt;}
.x6_c03241{left:438.400512pt;}
.xc_c03241{left:450.560320pt;}
.x3_c03241{left:455.039904pt;}
.x2_c03241{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03242 {
    display:none;
  }
  .loading-indicator_c03242.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03242 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03242 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03242" -> "#page-container .classname_c03242")
 */
.pf_c03242 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03242 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03242.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03242 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03242 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03242 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03242 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03242 {overflow:visible;}
  }
}
.c_c03242 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03242 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03242:after { /* webkit #35443 */
  content: '';
}
.t_c03242:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03242 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03242 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03242 { /* info for Javascript */
  display:none;
}
.l_c03242 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03242 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03242 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03242:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03242 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03242.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03242.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03242 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03242{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03242;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03242{font-family:ff1_c03242;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03242;src:url('chunks/assets/font_d781fed397e198c4fe2f4f54.woff2')format("woff");}.ff2_c03242{font-family:ff2_c03242;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03242;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03242{font-family:ff3_c03242;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03242{vertical-align:0.000000px;}
.v1_c03242{vertical-align:1.439424px;}
.ls6_c03242{letter-spacing:-0.613008px;}
.ls8_c03242{letter-spacing:-0.574992px;}
.lse_c03242{letter-spacing:-0.275616px;}
.lsc_c03242{letter-spacing:-0.261360px;}
.ls5_c03242{letter-spacing:-0.242352px;}
.ls3_c03242{letter-spacing:-0.118800px;}
.ls11_c03242{letter-spacing:0.000000px;}
.ls1_c03242{letter-spacing:0.006048px;}
.ls4_c03242{letter-spacing:0.128304px;}
.lsa_c03242{letter-spacing:0.508464px;}
.ls10_c03242{letter-spacing:0.514080px;}
.lsd_c03242{letter-spacing:0.536976px;}
.ls9_c03242{letter-spacing:0.579744px;}
.lsf_c03242{letter-spacing:0.594000px;}
.ls7_c03242{letter-spacing:0.598752px;}
.ls2_c03242{letter-spacing:0.613008px;}
.ls0_c03242{letter-spacing:0.717552px;}
.lsb_c03242{letter-spacing:0.722304px;}
.sc__c03242{text-shadow:none;}
.sc0_c03242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03242{-webkit-text-stroke:0px transparent;}
.sc0_c03242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03242{word-spacing:-15.126048px;}
.wsa_c03242{word-spacing:-12.474000px;}
.ws8_c03242{word-spacing:-12.459744px;}
.ws9_c03242{word-spacing:-12.416976px;}
.ws4_c03242{word-spacing:-11.637648px;}
.ws2_c03242{word-spacing:-11.266992px;}
.ws11_c03242{word-spacing:-1.083456px;}
.ws10_c03242{word-spacing:-1.078704px;}
.wsd_c03242{word-spacing:-0.974160px;}
.ws14_c03242{word-spacing:-0.719712px;}
.wsf_c03242{word-spacing:-0.118800px;}
.ws12_c03242{word-spacing:-0.099792px;}
.ws13_c03242{word-spacing:-0.085536px;}
.wse_c03242{word-spacing:0.000000px;}
.wsb_c03242{word-spacing:33.300288px;}
.ws6_c03242{word-spacing:36.742464px;}
.ws1_c03242{word-spacing:37.759392px;}
.ws0_c03242{word-spacing:38.020752px;}
.ws3_c03242{word-spacing:39.218256px;}
.ws5_c03242{word-spacing:39.902544px;}
.ws7_c03242{word-spacing:42.026688px;}
._0_c03242{margin-left:-1.948320px;}
._2_c03242{width:1.482624px;}
._4_c03242{width:5.749920px;}
._1_c03242{width:50.252400px;}
._3_c03242{width:51.530688px;}
.fc0_c03242{color:rgb(0,0,0);}
.fs0_c03242{font-size:47.520000px;}
.fs1_c03242{font-size:60.480000px;}
.y0_c03242{bottom:0.000000px;}
.y19_c03242{bottom:146.998362px;}
.y1b_c03242{bottom:186.600234px;}
.y1a_c03242{bottom:196.320450px;}
.y18_c03242{bottom:275.878542px;}
.y17_c03242{bottom:356.878758px;}
.y15_c03242{bottom:406.559730px;}
.y11_c03242{bottom:424.560306px;}
.y16_c03242{bottom:458.759262px;}
.y14_c03242{bottom:491.879514px;}
.y13_c03242{bottom:509.880090px;}
.y10_c03242{bottom:543.000342px;}
.y12_c03242{bottom:559.559874px;}
.yf_c03242{bottom:577.560450px;}
.y1c_c03242{bottom:614.280450px;}
.yb_c03242{bottom:667.558326px;}
.yd_c03242{bottom:707.160234px;}
.yc_c03242{bottom:716.880450px;}
.ya_c03242{bottom:796.438506px;}
.y9_c03242{bottom:877.438722px;}
.y7_c03242{bottom:926.759730px;}
.y3_c03242{bottom:944.760306px;}
.y8_c03242{bottom:979.319226px;}
.y6_c03242{bottom:1012.439478px;}
.y5_c03242{bottom:1030.440054px;}
.y2_c03242{bottom:1063.560306px;}
.y4_c03242{bottom:1079.759874px;}
.y1_c03242{bottom:1097.760450px;}
.ye_c03242{bottom:1134.840450px;}
.h3_c03242{height:32.530781px;}
.h1_c03242{height:41.696016px;}
.h2_c03242{height:41.812031px;}
.h4_c03242{height:54.654737px;}
.h0_c03242{height:1263.000000px;}
.w1_c03242{width:892.500000px;}
.w0_c03242{width:892.830000px;}
.x0_c03242{left:0.000000px;}
.xd_c03242{left:117.000000px;}
.x8_c03242{left:440.999856px;}
.x4_c03242{left:445.680576px;}
.xb_c03242{left:451.080000px;}
.x7_c03242{left:455.399604px;}
.x5_c03242{left:461.880144px;}
.x1_c03242{left:463.320000px;}
.xa_c03242{left:483.480360px;}
.x9_c03242{left:492.119496px;}
.x6_c03242{left:493.200576px;}
.xc_c03242{left:506.880360px;}
.x3_c03242{left:511.919892px;}
.x2_c03242{left:526.679604px;}
@media print{
.v0_c03242{vertical-align:0.000000pt;}
.v1_c03242{vertical-align:1.279488pt;}
.ls6_c03242{letter-spacing:-0.544896pt;}
.ls8_c03242{letter-spacing:-0.511104pt;}
.lse_c03242{letter-spacing:-0.244992pt;}
.lsc_c03242{letter-spacing:-0.232320pt;}
.ls5_c03242{letter-spacing:-0.215424pt;}
.ls3_c03242{letter-spacing:-0.105600pt;}
.ls11_c03242{letter-spacing:0.000000pt;}
.ls1_c03242{letter-spacing:0.005376pt;}
.ls4_c03242{letter-spacing:0.114048pt;}
.lsa_c03242{letter-spacing:0.451968pt;}
.ls10_c03242{letter-spacing:0.456960pt;}
.lsd_c03242{letter-spacing:0.477312pt;}
.ls9_c03242{letter-spacing:0.515328pt;}
.lsf_c03242{letter-spacing:0.528000pt;}
.ls7_c03242{letter-spacing:0.532224pt;}
.ls2_c03242{letter-spacing:0.544896pt;}
.ls0_c03242{letter-spacing:0.637824pt;}
.lsb_c03242{letter-spacing:0.642048pt;}
.wsc_c03242{word-spacing:-13.445376pt;}
.wsa_c03242{word-spacing:-11.088000pt;}
.ws8_c03242{word-spacing:-11.075328pt;}
.ws9_c03242{word-spacing:-11.037312pt;}
.ws4_c03242{word-spacing:-10.344576pt;}
.ws2_c03242{word-spacing:-10.015104pt;}
.ws11_c03242{word-spacing:-0.963072pt;}
.ws10_c03242{word-spacing:-0.958848pt;}
.wsd_c03242{word-spacing:-0.865920pt;}
.ws14_c03242{word-spacing:-0.639744pt;}
.wsf_c03242{word-spacing:-0.105600pt;}
.ws12_c03242{word-spacing:-0.088704pt;}
.ws13_c03242{word-spacing:-0.076032pt;}
.wse_c03242{word-spacing:0.000000pt;}
.wsb_c03242{word-spacing:29.600256pt;}
.ws6_c03242{word-spacing:32.659968pt;}
.ws1_c03242{word-spacing:33.563904pt;}
.ws0_c03242{word-spacing:33.796224pt;}
.ws3_c03242{word-spacing:34.860672pt;}
.ws5_c03242{word-spacing:35.468928pt;}
.ws7_c03242{word-spacing:37.357056pt;}
._0_c03242{margin-left:-1.731840pt;}
._2_c03242{width:1.317888pt;}
._4_c03242{width:5.111040pt;}
._1_c03242{width:44.668800pt;}
._3_c03242{width:45.805056pt;}
.fs0_c03242{font-size:42.240000pt;}
.fs1_c03242{font-size:53.760000pt;}
.y0_c03242{bottom:0.000000pt;}
.y19_c03242{bottom:130.665211pt;}
.y1b_c03242{bottom:165.866875pt;}
.y1a_c03242{bottom:174.507067pt;}
.y18_c03242{bottom:245.225371pt;}
.y17_c03242{bottom:317.225563pt;}
.y15_c03242{bottom:361.386427pt;}
.y11_c03242{bottom:377.386939pt;}
.y16_c03242{bottom:407.786011pt;}
.y14_c03242{bottom:437.226235pt;}
.y13_c03242{bottom:453.226747pt;}
.y10_c03242{bottom:482.666971pt;}
.y12_c03242{bottom:497.386555pt;}
.yf_c03242{bottom:513.387067pt;}
.y1c_c03242{bottom:546.027067pt;}
.yb_c03242{bottom:593.385179pt;}
.yd_c03242{bottom:628.586875pt;}
.yc_c03242{bottom:637.227067pt;}
.ya_c03242{bottom:707.945339pt;}
.y9_c03242{bottom:779.945531pt;}
.y7_c03242{bottom:823.786427pt;}
.y3_c03242{bottom:839.786939pt;}
.y8_c03242{bottom:870.505979pt;}
.y6_c03242{bottom:899.946203pt;}
.y5_c03242{bottom:915.946715pt;}
.y2_c03242{bottom:945.386939pt;}
.y4_c03242{bottom:959.786555pt;}
.y1_c03242{bottom:975.787067pt;}
.ye_c03242{bottom:1008.747067pt;}
.h3_c03242{height:28.916250pt;}
.h1_c03242{height:37.063125pt;}
.h2_c03242{height:37.166250pt;}
.h4_c03242{height:48.581988pt;}
.h0_c03242{height:1122.666667pt;}
.w1_c03242{width:793.333333pt;}
.w0_c03242{width:793.626667pt;}
.x0_c03242{left:0.000000pt;}
.xd_c03242{left:104.000000pt;}
.x8_c03242{left:391.999872pt;}
.x4_c03242{left:396.160512pt;}
.xb_c03242{left:400.960000pt;}
.x7_c03242{left:404.799648pt;}
.x5_c03242{left:410.560128pt;}
.x1_c03242{left:411.840000pt;}
.xa_c03242{left:429.760320pt;}
.x9_c03242{left:437.439552pt;}
.x6_c03242{left:438.400512pt;}
.xc_c03242{left:450.560320pt;}
.x3_c03242{left:455.039904pt;}
.x2_c03242{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03243 {
    display:none;
  }
  .loading-indicator_c03243.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03243 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03243 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03243" -> "#page-container .classname_c03243")
 */
.pf_c03243 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03243 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03243.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03243 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03243 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03243 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03243 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03243 {overflow:visible;}
  }
}
.c_c03243 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03243 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03243:after { /* webkit #35443 */
  content: '';
}
.t_c03243:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03243 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03243 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03243 { /* info for Javascript */
  display:none;
}
.l_c03243 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03243 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03243 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03243:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03243 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03243.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03243.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03243 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03243{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03243;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03243{font-family:ff1_c03243;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03243;src:url('chunks/assets/font_28c3744317a1f32d713a3fb7.woff2')format("woff");}.ff2_c03243{font-family:ff2_c03243;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03243;src:url('chunks/assets/font_08b0d6944a31f8be4527c75c.woff2')format("woff");}.ff3_c03243{font-family:ff3_c03243;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03243{vertical-align:0.000000px;}
.v1_c03243{vertical-align:1.439424px;}
.ls7_c03243{letter-spacing:-0.613008px;}
.ls9_c03243{letter-spacing:-0.574992px;}
.lse_c03243{letter-spacing:-0.275616px;}
.lsc_c03243{letter-spacing:-0.261360px;}
.ls6_c03243{letter-spacing:-0.242352px;}
.ls4_c03243{letter-spacing:-0.118800px;}
.ls11_c03243{letter-spacing:0.000000px;}
.ls1_c03243{letter-spacing:0.006048px;}
.ls5_c03243{letter-spacing:0.128304px;}
.ls12_c03243{letter-spacing:0.190080px;}
.lsb_c03243{letter-spacing:0.508464px;}
.ls10_c03243{letter-spacing:0.514080px;}
.lsd_c03243{letter-spacing:0.536976px;}
.lsa_c03243{letter-spacing:0.579744px;}
.lsf_c03243{letter-spacing:0.594000px;}
.ls8_c03243{letter-spacing:0.598752px;}
.ls3_c03243{letter-spacing:0.613008px;}
.ls0_c03243{letter-spacing:0.717552px;}
.ls2_c03243{letter-spacing:0.722304px;}
.sc__c03243{text-shadow:none;}
.sc0_c03243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03243{-webkit-text-stroke:0px transparent;}
.sc0_c03243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03243{word-spacing:-15.126048px;}
.wsa_c03243{word-spacing:-12.474000px;}
.ws8_c03243{word-spacing:-12.459744px;}
.ws9_c03243{word-spacing:-12.416976px;}
.ws4_c03243{word-spacing:-11.637648px;}
.ws2_c03243{word-spacing:-11.266992px;}
.wsd_c03243{word-spacing:-1.810512px;}
.ws12_c03243{word-spacing:-1.083456px;}
.ws11_c03243{word-spacing:-1.078704px;}
.wse_c03243{word-spacing:-0.974160px;}
.ws15_c03243{word-spacing:-0.719712px;}
.ws16_c03243{word-spacing:-0.551232px;}
.ws10_c03243{word-spacing:-0.118800px;}
.ws13_c03243{word-spacing:-0.099792px;}
.ws14_c03243{word-spacing:-0.085536px;}
.wsf_c03243{word-spacing:0.000000px;}
.wsb_c03243{word-spacing:33.300288px;}
.ws6_c03243{word-spacing:36.742464px;}
.ws1_c03243{word-spacing:37.759392px;}
.ws0_c03243{word-spacing:38.020752px;}
.ws3_c03243{word-spacing:39.218256px;}
.ws5_c03243{word-spacing:39.902544px;}
.ws7_c03243{word-spacing:42.026688px;}
._0_c03243{margin-left:-1.948320px;}
._2_c03243{width:1.482624px;}
._4_c03243{width:5.749920px;}
._1_c03243{width:50.252400px;}
._3_c03243{width:51.530688px;}
.fc0_c03243{color:rgb(0,0,0);}
.fs0_c03243{font-size:47.520000px;}
.fs1_c03243{font-size:60.480000px;}
.y0_c03243{bottom:0.000000px;}
.y19_c03243{bottom:146.998362px;}
.y1b_c03243{bottom:186.600234px;}
.y1a_c03243{bottom:196.320450px;}
.y18_c03243{bottom:275.878542px;}
.y17_c03243{bottom:356.878758px;}
.y15_c03243{bottom:406.559730px;}
.y11_c03243{bottom:424.560306px;}
.y16_c03243{bottom:458.759262px;}
.y14_c03243{bottom:491.879514px;}
.y13_c03243{bottom:509.880090px;}
.y10_c03243{bottom:543.000342px;}
.y12_c03243{bottom:559.559874px;}
.yf_c03243{bottom:577.560450px;}
.y1c_c03243{bottom:614.280450px;}
.yb_c03243{bottom:667.558326px;}
.yd_c03243{bottom:707.160234px;}
.yc_c03243{bottom:716.880450px;}
.ya_c03243{bottom:796.438506px;}
.y9_c03243{bottom:877.438722px;}
.y7_c03243{bottom:926.759730px;}
.y3_c03243{bottom:944.760306px;}
.y8_c03243{bottom:979.319226px;}
.y6_c03243{bottom:1012.439478px;}
.y5_c03243{bottom:1030.440054px;}
.y2_c03243{bottom:1063.560306px;}
.y4_c03243{bottom:1079.759874px;}
.y1_c03243{bottom:1097.760450px;}
.ye_c03243{bottom:1134.840450px;}
.h3_c03243{height:32.530781px;}
.h1_c03243{height:41.696016px;}
.h2_c03243{height:41.812031px;}
.h4_c03243{height:54.654737px;}
.h0_c03243{height:1263.000000px;}
.w1_c03243{width:892.500000px;}
.w0_c03243{width:892.830000px;}
.x0_c03243{left:0.000000px;}
.xd_c03243{left:117.000000px;}
.x8_c03243{left:440.999856px;}
.x4_c03243{left:445.680576px;}
.xb_c03243{left:451.080000px;}
.x7_c03243{left:455.399604px;}
.x5_c03243{left:461.880144px;}
.x1_c03243{left:463.320000px;}
.xa_c03243{left:483.480360px;}
.x9_c03243{left:492.119496px;}
.x6_c03243{left:493.200576px;}
.xc_c03243{left:506.880360px;}
.x3_c03243{left:511.919892px;}
.x2_c03243{left:526.679604px;}
@media print{
.v0_c03243{vertical-align:0.000000pt;}
.v1_c03243{vertical-align:1.279488pt;}
.ls7_c03243{letter-spacing:-0.544896pt;}
.ls9_c03243{letter-spacing:-0.511104pt;}
.lse_c03243{letter-spacing:-0.244992pt;}
.lsc_c03243{letter-spacing:-0.232320pt;}
.ls6_c03243{letter-spacing:-0.215424pt;}
.ls4_c03243{letter-spacing:-0.105600pt;}
.ls11_c03243{letter-spacing:0.000000pt;}
.ls1_c03243{letter-spacing:0.005376pt;}
.ls5_c03243{letter-spacing:0.114048pt;}
.ls12_c03243{letter-spacing:0.168960pt;}
.lsb_c03243{letter-spacing:0.451968pt;}
.ls10_c03243{letter-spacing:0.456960pt;}
.lsd_c03243{letter-spacing:0.477312pt;}
.lsa_c03243{letter-spacing:0.515328pt;}
.lsf_c03243{letter-spacing:0.528000pt;}
.ls8_c03243{letter-spacing:0.532224pt;}
.ls3_c03243{letter-spacing:0.544896pt;}
.ls0_c03243{letter-spacing:0.637824pt;}
.ls2_c03243{letter-spacing:0.642048pt;}
.wsc_c03243{word-spacing:-13.445376pt;}
.wsa_c03243{word-spacing:-11.088000pt;}
.ws8_c03243{word-spacing:-11.075328pt;}
.ws9_c03243{word-spacing:-11.037312pt;}
.ws4_c03243{word-spacing:-10.344576pt;}
.ws2_c03243{word-spacing:-10.015104pt;}
.wsd_c03243{word-spacing:-1.609344pt;}
.ws12_c03243{word-spacing:-0.963072pt;}
.ws11_c03243{word-spacing:-0.958848pt;}
.wse_c03243{word-spacing:-0.865920pt;}
.ws15_c03243{word-spacing:-0.639744pt;}
.ws16_c03243{word-spacing:-0.489984pt;}
.ws10_c03243{word-spacing:-0.105600pt;}
.ws13_c03243{word-spacing:-0.088704pt;}
.ws14_c03243{word-spacing:-0.076032pt;}
.wsf_c03243{word-spacing:0.000000pt;}
.wsb_c03243{word-spacing:29.600256pt;}
.ws6_c03243{word-spacing:32.659968pt;}
.ws1_c03243{word-spacing:33.563904pt;}
.ws0_c03243{word-spacing:33.796224pt;}
.ws3_c03243{word-spacing:34.860672pt;}
.ws5_c03243{word-spacing:35.468928pt;}
.ws7_c03243{word-spacing:37.357056pt;}
._0_c03243{margin-left:-1.731840pt;}
._2_c03243{width:1.317888pt;}
._4_c03243{width:5.111040pt;}
._1_c03243{width:44.668800pt;}
._3_c03243{width:45.805056pt;}
.fs0_c03243{font-size:42.240000pt;}
.fs1_c03243{font-size:53.760000pt;}
.y0_c03243{bottom:0.000000pt;}
.y19_c03243{bottom:130.665211pt;}
.y1b_c03243{bottom:165.866875pt;}
.y1a_c03243{bottom:174.507067pt;}
.y18_c03243{bottom:245.225371pt;}
.y17_c03243{bottom:317.225563pt;}
.y15_c03243{bottom:361.386427pt;}
.y11_c03243{bottom:377.386939pt;}
.y16_c03243{bottom:407.786011pt;}
.y14_c03243{bottom:437.226235pt;}
.y13_c03243{bottom:453.226747pt;}
.y10_c03243{bottom:482.666971pt;}
.y12_c03243{bottom:497.386555pt;}
.yf_c03243{bottom:513.387067pt;}
.y1c_c03243{bottom:546.027067pt;}
.yb_c03243{bottom:593.385179pt;}
.yd_c03243{bottom:628.586875pt;}
.yc_c03243{bottom:637.227067pt;}
.ya_c03243{bottom:707.945339pt;}
.y9_c03243{bottom:779.945531pt;}
.y7_c03243{bottom:823.786427pt;}
.y3_c03243{bottom:839.786939pt;}
.y8_c03243{bottom:870.505979pt;}
.y6_c03243{bottom:899.946203pt;}
.y5_c03243{bottom:915.946715pt;}
.y2_c03243{bottom:945.386939pt;}
.y4_c03243{bottom:959.786555pt;}
.y1_c03243{bottom:975.787067pt;}
.ye_c03243{bottom:1008.747067pt;}
.h3_c03243{height:28.916250pt;}
.h1_c03243{height:37.063125pt;}
.h2_c03243{height:37.166250pt;}
.h4_c03243{height:48.581988pt;}
.h0_c03243{height:1122.666667pt;}
.w1_c03243{width:793.333333pt;}
.w0_c03243{width:793.626667pt;}
.x0_c03243{left:0.000000pt;}
.xd_c03243{left:104.000000pt;}
.x8_c03243{left:391.999872pt;}
.x4_c03243{left:396.160512pt;}
.xb_c03243{left:400.960000pt;}
.x7_c03243{left:404.799648pt;}
.x5_c03243{left:410.560128pt;}
.x1_c03243{left:411.840000pt;}
.xa_c03243{left:429.760320pt;}
.x9_c03243{left:437.439552pt;}
.x6_c03243{left:438.400512pt;}
.xc_c03243{left:450.560320pt;}
.x3_c03243{left:455.039904pt;}
.x2_c03243{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03244 {
    display:none;
  }
  .loading-indicator_c03244.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03244 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03244 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03244" -> "#page-container .classname_c03244")
 */
.pf_c03244 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03244 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03244.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03244 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03244 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03244 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03244 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03244 {overflow:visible;}
  }
}
.c_c03244 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03244 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03244:after { /* webkit #35443 */
  content: '';
}
.t_c03244:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03244 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03244 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03244 { /* info for Javascript */
  display:none;
}
.l_c03244 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03244 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03244 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03244:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03244 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03244.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03244.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03244 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03244{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03244;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03244{font-family:ff1_c03244;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03244;src:url('chunks/assets/font_cc08203bc787a7632bd9ae64.woff2')format("woff");}.ff2_c03244{font-family:ff2_c03244;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03244;src:url('chunks/assets/font_a79a17ea9a4840f4cb43df88.woff2')format("woff");}.ff3_c03244{font-family:ff3_c03244;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03244{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03244{vertical-align:0.000000px;}
.v1_c03244{vertical-align:1.439424px;}
.v2_c03244{vertical-align:33.121440px;}
.ls7_c03244{letter-spacing:-0.613008px;}
.ls9_c03244{letter-spacing:-0.574992px;}
.lse_c03244{letter-spacing:-0.275616px;}
.lsc_c03244{letter-spacing:-0.261360px;}
.ls6_c03244{letter-spacing:-0.242352px;}
.ls4_c03244{letter-spacing:-0.118800px;}
.ls11_c03244{letter-spacing:0.000000px;}
.ls1_c03244{letter-spacing:0.006048px;}
.ls5_c03244{letter-spacing:0.128304px;}
.ls12_c03244{letter-spacing:0.190080px;}
.lsb_c03244{letter-spacing:0.508464px;}
.ls10_c03244{letter-spacing:0.514080px;}
.lsd_c03244{letter-spacing:0.536976px;}
.lsa_c03244{letter-spacing:0.579744px;}
.lsf_c03244{letter-spacing:0.594000px;}
.ls8_c03244{letter-spacing:0.598752px;}
.ls3_c03244{letter-spacing:0.613008px;}
.ls2_c03244{letter-spacing:0.717552px;}
.ls0_c03244{letter-spacing:0.722304px;}
.sc__c03244{text-shadow:none;}
.sc0_c03244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03244{-webkit-text-stroke:0px transparent;}
.sc0_c03244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03244{word-spacing:-15.126048px;}
.wsa_c03244{word-spacing:-12.474000px;}
.ws8_c03244{word-spacing:-12.459744px;}
.ws9_c03244{word-spacing:-12.416976px;}
.ws4_c03244{word-spacing:-11.637648px;}
.ws2_c03244{word-spacing:-11.266992px;}
.wsd_c03244{word-spacing:-1.810512px;}
.ws15_c03244{word-spacing:-1.083456px;}
.ws12_c03244{word-spacing:-0.974160px;}
.ws18_c03244{word-spacing:-0.719712px;}
.ws19_c03244{word-spacing:-0.551232px;}
.ws14_c03244{word-spacing:-0.118800px;}
.ws16_c03244{word-spacing:-0.099792px;}
.ws17_c03244{word-spacing:-0.085536px;}
.ws13_c03244{word-spacing:0.000000px;}
.ws10_c03244{word-spacing:4.747248px;}
.ws11_c03244{word-spacing:5.037120px;}
.wsf_c03244{word-spacing:6.961680px;}
.wse_c03244{word-spacing:30.298752px;}
.wsb_c03244{word-spacing:33.300288px;}
.ws6_c03244{word-spacing:36.742464px;}
.ws1_c03244{word-spacing:37.759392px;}
.ws0_c03244{word-spacing:38.020752px;}
.ws3_c03244{word-spacing:39.218256px;}
.ws5_c03244{word-spacing:39.902544px;}
.ws7_c03244{word-spacing:42.026688px;}
._6_c03244{margin-left:-2.979504px;}
._0_c03244{margin-left:-1.948320px;}
._2_c03244{width:1.482624px;}
._4_c03244{width:5.749920px;}
._7_c03244{width:6.781104px;}
._5_c03244{width:12.521520px;}
._9_c03244{width:18.366480px;}
._8_c03244{width:22.857120px;}
._1_c03244{width:50.252400px;}
._3_c03244{width:51.530688px;}
.fc0_c03244{color:rgb(0,0,0);}
.fs0_c03244{font-size:47.520000px;}
.fs1_c03244{font-size:60.480000px;}
.y0_c03244{bottom:0.000000px;}
.y19_c03244{bottom:146.998362px;}
.y1c_c03244{bottom:179.760918px;}
.y1b_c03244{bottom:186.600234px;}
.y1a_c03244{bottom:196.320450px;}
.y18_c03244{bottom:275.878542px;}
.y17_c03244{bottom:356.878758px;}
.y15_c03244{bottom:406.559730px;}
.y11_c03244{bottom:424.560306px;}
.y16_c03244{bottom:458.759262px;}
.y14_c03244{bottom:491.879514px;}
.y13_c03244{bottom:509.880090px;}
.y10_c03244{bottom:543.000342px;}
.y12_c03244{bottom:559.559874px;}
.yf_c03244{bottom:577.560450px;}
.y1d_c03244{bottom:614.280450px;}
.yb_c03244{bottom:667.558326px;}
.yd_c03244{bottom:707.160234px;}
.yc_c03244{bottom:716.880450px;}
.ya_c03244{bottom:796.438506px;}
.y9_c03244{bottom:877.438722px;}
.y7_c03244{bottom:926.759730px;}
.y3_c03244{bottom:944.760306px;}
.y8_c03244{bottom:979.319226px;}
.y6_c03244{bottom:1012.439478px;}
.y5_c03244{bottom:1030.440054px;}
.y2_c03244{bottom:1063.560306px;}
.y4_c03244{bottom:1079.759874px;}
.y1_c03244{bottom:1097.760450px;}
.ye_c03244{bottom:1134.840450px;}
.h3_c03244{height:32.530781px;}
.h1_c03244{height:41.696016px;}
.h2_c03244{height:41.812031px;}
.h4_c03244{height:54.654737px;}
.h5_c03244{height:74.933471px;}
.h0_c03244{height:1263.000000px;}
.w1_c03244{width:892.500000px;}
.w0_c03244{width:892.830000px;}
.x0_c03244{left:0.000000px;}
.xd_c03244{left:117.000000px;}
.x8_c03244{left:440.999856px;}
.x4_c03244{left:445.680576px;}
.xb_c03244{left:451.080000px;}
.x7_c03244{left:455.399604px;}
.x5_c03244{left:461.880144px;}
.x1_c03244{left:463.320000px;}
.xa_c03244{left:483.480360px;}
.x9_c03244{left:492.119496px;}
.x6_c03244{left:493.200576px;}
.xc_c03244{left:506.880360px;}
.x3_c03244{left:511.919892px;}
.x2_c03244{left:526.679604px;}
.xe_c03244{left:569.878812px;}
@media print{
.v0_c03244{vertical-align:0.000000pt;}
.v1_c03244{vertical-align:1.279488pt;}
.v2_c03244{vertical-align:29.441280pt;}
.ls7_c03244{letter-spacing:-0.544896pt;}
.ls9_c03244{letter-spacing:-0.511104pt;}
.lse_c03244{letter-spacing:-0.244992pt;}
.lsc_c03244{letter-spacing:-0.232320pt;}
.ls6_c03244{letter-spacing:-0.215424pt;}
.ls4_c03244{letter-spacing:-0.105600pt;}
.ls11_c03244{letter-spacing:0.000000pt;}
.ls1_c03244{letter-spacing:0.005376pt;}
.ls5_c03244{letter-spacing:0.114048pt;}
.ls12_c03244{letter-spacing:0.168960pt;}
.lsb_c03244{letter-spacing:0.451968pt;}
.ls10_c03244{letter-spacing:0.456960pt;}
.lsd_c03244{letter-spacing:0.477312pt;}
.lsa_c03244{letter-spacing:0.515328pt;}
.lsf_c03244{letter-spacing:0.528000pt;}
.ls8_c03244{letter-spacing:0.532224pt;}
.ls3_c03244{letter-spacing:0.544896pt;}
.ls2_c03244{letter-spacing:0.637824pt;}
.ls0_c03244{letter-spacing:0.642048pt;}
.wsc_c03244{word-spacing:-13.445376pt;}
.wsa_c03244{word-spacing:-11.088000pt;}
.ws8_c03244{word-spacing:-11.075328pt;}
.ws9_c03244{word-spacing:-11.037312pt;}
.ws4_c03244{word-spacing:-10.344576pt;}
.ws2_c03244{word-spacing:-10.015104pt;}
.wsd_c03244{word-spacing:-1.609344pt;}
.ws15_c03244{word-spacing:-0.963072pt;}
.ws12_c03244{word-spacing:-0.865920pt;}
.ws18_c03244{word-spacing:-0.639744pt;}
.ws19_c03244{word-spacing:-0.489984pt;}
.ws14_c03244{word-spacing:-0.105600pt;}
.ws16_c03244{word-spacing:-0.088704pt;}
.ws17_c03244{word-spacing:-0.076032pt;}
.ws13_c03244{word-spacing:0.000000pt;}
.ws10_c03244{word-spacing:4.219776pt;}
.ws11_c03244{word-spacing:4.477440pt;}
.wsf_c03244{word-spacing:6.188160pt;}
.wse_c03244{word-spacing:26.932224pt;}
.wsb_c03244{word-spacing:29.600256pt;}
.ws6_c03244{word-spacing:32.659968pt;}
.ws1_c03244{word-spacing:33.563904pt;}
.ws0_c03244{word-spacing:33.796224pt;}
.ws3_c03244{word-spacing:34.860672pt;}
.ws5_c03244{word-spacing:35.468928pt;}
.ws7_c03244{word-spacing:37.357056pt;}
._6_c03244{margin-left:-2.648448pt;}
._0_c03244{margin-left:-1.731840pt;}
._2_c03244{width:1.317888pt;}
._4_c03244{width:5.111040pt;}
._7_c03244{width:6.027648pt;}
._5_c03244{width:11.130240pt;}
._9_c03244{width:16.325760pt;}
._8_c03244{width:20.317440pt;}
._1_c03244{width:44.668800pt;}
._3_c03244{width:45.805056pt;}
.fs0_c03244{font-size:42.240000pt;}
.fs1_c03244{font-size:53.760000pt;}
.y0_c03244{bottom:0.000000pt;}
.y19_c03244{bottom:130.665211pt;}
.y1c_c03244{bottom:159.787483pt;}
.y1b_c03244{bottom:165.866875pt;}
.y1a_c03244{bottom:174.507067pt;}
.y18_c03244{bottom:245.225371pt;}
.y17_c03244{bottom:317.225563pt;}
.y15_c03244{bottom:361.386427pt;}
.y11_c03244{bottom:377.386939pt;}
.y16_c03244{bottom:407.786011pt;}
.y14_c03244{bottom:437.226235pt;}
.y13_c03244{bottom:453.226747pt;}
.y10_c03244{bottom:482.666971pt;}
.y12_c03244{bottom:497.386555pt;}
.yf_c03244{bottom:513.387067pt;}
.y1d_c03244{bottom:546.027067pt;}
.yb_c03244{bottom:593.385179pt;}
.yd_c03244{bottom:628.586875pt;}
.yc_c03244{bottom:637.227067pt;}
.ya_c03244{bottom:707.945339pt;}
.y9_c03244{bottom:779.945531pt;}
.y7_c03244{bottom:823.786427pt;}
.y3_c03244{bottom:839.786939pt;}
.y8_c03244{bottom:870.505979pt;}
.y6_c03244{bottom:899.946203pt;}
.y5_c03244{bottom:915.946715pt;}
.y2_c03244{bottom:945.386939pt;}
.y4_c03244{bottom:959.786555pt;}
.y1_c03244{bottom:975.787067pt;}
.ye_c03244{bottom:1008.747067pt;}
.h3_c03244{height:28.916250pt;}
.h1_c03244{height:37.063125pt;}
.h2_c03244{height:37.166250pt;}
.h4_c03244{height:48.581988pt;}
.h5_c03244{height:66.607530pt;}
.h0_c03244{height:1122.666667pt;}
.w1_c03244{width:793.333333pt;}
.w0_c03244{width:793.626667pt;}
.x0_c03244{left:0.000000pt;}
.xd_c03244{left:104.000000pt;}
.x8_c03244{left:391.999872pt;}
.x4_c03244{left:396.160512pt;}
.xb_c03244{left:400.960000pt;}
.x7_c03244{left:404.799648pt;}
.x5_c03244{left:410.560128pt;}
.x1_c03244{left:411.840000pt;}
.xa_c03244{left:429.760320pt;}
.x9_c03244{left:437.439552pt;}
.x6_c03244{left:438.400512pt;}
.xc_c03244{left:450.560320pt;}
.x3_c03244{left:455.039904pt;}
.x2_c03244{left:468.159648pt;}
.xe_c03244{left:506.558944pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03245 {
    display:none;
  }
  .loading-indicator_c03245.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03245 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03245 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03245" -> "#page-container .classname_c03245")
 */
.pf_c03245 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03245 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03245.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03245 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03245 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03245 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03245 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03245 {overflow:visible;}
  }
}
.c_c03245 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03245 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03245:after { /* webkit #35443 */
  content: '';
}
.t_c03245:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03245 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03245 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03245 { /* info for Javascript */
  display:none;
}
.l_c03245 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03245 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03245 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03245:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03245 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03245.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03245.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03245 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03245{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03245;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03245{font-family:ff1_c03245;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03245;src:url('chunks/assets/font_a373583cee5976156c74862a.woff2')format("woff");}.ff2_c03245{font-family:ff2_c03245;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03245;src:url('chunks/assets/font_288d5a24569fc3f6a43c9309.woff2')format("woff");}.ff3_c03245{font-family:ff3_c03245;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03245{vertical-align:0.000000px;}
.v1_c03245{vertical-align:1.439424px;}
.ls12_c03245{letter-spacing:-0.793584px;}
.ls7_c03245{letter-spacing:-0.613008px;}
.ls9_c03245{letter-spacing:-0.574992px;}
.lse_c03245{letter-spacing:-0.275616px;}
.lsc_c03245{letter-spacing:-0.261360px;}
.ls6_c03245{letter-spacing:-0.242352px;}
.ls4_c03245{letter-spacing:-0.118800px;}
.ls11_c03245{letter-spacing:0.000000px;}
.ls1_c03245{letter-spacing:0.006048px;}
.ls5_c03245{letter-spacing:0.128304px;}
.lsb_c03245{letter-spacing:0.508464px;}
.ls10_c03245{letter-spacing:0.514080px;}
.lsd_c03245{letter-spacing:0.536976px;}
.lsa_c03245{letter-spacing:0.579744px;}
.lsf_c03245{letter-spacing:0.594000px;}
.ls8_c03245{letter-spacing:0.598752px;}
.ls3_c03245{letter-spacing:0.613008px;}
.ls0_c03245{letter-spacing:0.717552px;}
.ls2_c03245{letter-spacing:0.722304px;}
.sc__c03245{text-shadow:none;}
.sc0_c03245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03245{-webkit-text-stroke:0px transparent;}
.sc0_c03245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03245{word-spacing:-15.126048px;}
.wsa_c03245{word-spacing:-12.474000px;}
.ws8_c03245{word-spacing:-12.459744px;}
.ws9_c03245{word-spacing:-12.416976px;}
.ws4_c03245{word-spacing:-11.637648px;}
.ws2_c03245{word-spacing:-11.266992px;}
.ws12_c03245{word-spacing:-1.083456px;}
.ws11_c03245{word-spacing:-1.078704px;}
.wse_c03245{word-spacing:-0.974160px;}
.ws15_c03245{word-spacing:-0.719712px;}
.ws10_c03245{word-spacing:-0.118800px;}
.ws13_c03245{word-spacing:-0.099792px;}
.ws14_c03245{word-spacing:-0.085536px;}
.wsf_c03245{word-spacing:0.000000px;}
.ws16_c03245{word-spacing:0.432432px;}
.wsb_c03245{word-spacing:33.300288px;}
.wsd_c03245{word-spacing:36.143712px;}
.ws6_c03245{word-spacing:36.742464px;}
.ws1_c03245{word-spacing:37.759392px;}
.ws0_c03245{word-spacing:38.020752px;}
.ws3_c03245{word-spacing:39.218256px;}
.ws5_c03245{word-spacing:39.902544px;}
.ws7_c03245{word-spacing:42.026688px;}
._0_c03245{margin-left:-1.948320px;}
._2_c03245{width:1.482624px;}
._4_c03245{width:5.749920px;}
._1_c03245{width:50.252400px;}
._3_c03245{width:51.530688px;}
.fc0_c03245{color:rgb(0,0,0);}
.fs0_c03245{font-size:47.520000px;}
.fs1_c03245{font-size:60.480000px;}
.y0_c03245{bottom:0.000000px;}
.y19_c03245{bottom:146.998362px;}
.y1b_c03245{bottom:186.600234px;}
.y1a_c03245{bottom:196.320450px;}
.y18_c03245{bottom:275.878542px;}
.y17_c03245{bottom:356.878758px;}
.y15_c03245{bottom:406.559730px;}
.y11_c03245{bottom:424.560306px;}
.y16_c03245{bottom:458.759262px;}
.y14_c03245{bottom:491.879514px;}
.y13_c03245{bottom:509.880090px;}
.y10_c03245{bottom:543.000342px;}
.y12_c03245{bottom:559.559874px;}
.yf_c03245{bottom:577.560450px;}
.y1c_c03245{bottom:614.280450px;}
.yb_c03245{bottom:667.558326px;}
.yd_c03245{bottom:707.160234px;}
.yc_c03245{bottom:716.880450px;}
.ya_c03245{bottom:796.438506px;}
.y9_c03245{bottom:877.438722px;}
.y7_c03245{bottom:926.759730px;}
.y3_c03245{bottom:944.760306px;}
.y8_c03245{bottom:979.319226px;}
.y6_c03245{bottom:1012.439478px;}
.y5_c03245{bottom:1030.440054px;}
.y2_c03245{bottom:1063.560306px;}
.y4_c03245{bottom:1079.759874px;}
.y1_c03245{bottom:1097.760450px;}
.ye_c03245{bottom:1134.840450px;}
.h3_c03245{height:32.530781px;}
.h1_c03245{height:41.696016px;}
.h2_c03245{height:41.812031px;}
.h4_c03245{height:54.654737px;}
.h0_c03245{height:1263.000000px;}
.w1_c03245{width:892.500000px;}
.w0_c03245{width:892.830000px;}
.x0_c03245{left:0.000000px;}
.xd_c03245{left:117.000000px;}
.x8_c03245{left:440.999856px;}
.x4_c03245{left:445.680576px;}
.xb_c03245{left:451.080000px;}
.x7_c03245{left:455.399604px;}
.x5_c03245{left:461.880144px;}
.x1_c03245{left:463.320000px;}
.xa_c03245{left:483.480360px;}
.x9_c03245{left:492.119496px;}
.x6_c03245{left:493.200576px;}
.xc_c03245{left:506.880360px;}
.x3_c03245{left:511.919892px;}
.x2_c03245{left:526.679604px;}
@media print{
.v0_c03245{vertical-align:0.000000pt;}
.v1_c03245{vertical-align:1.279488pt;}
.ls12_c03245{letter-spacing:-0.705408pt;}
.ls7_c03245{letter-spacing:-0.544896pt;}
.ls9_c03245{letter-spacing:-0.511104pt;}
.lse_c03245{letter-spacing:-0.244992pt;}
.lsc_c03245{letter-spacing:-0.232320pt;}
.ls6_c03245{letter-spacing:-0.215424pt;}
.ls4_c03245{letter-spacing:-0.105600pt;}
.ls11_c03245{letter-spacing:0.000000pt;}
.ls1_c03245{letter-spacing:0.005376pt;}
.ls5_c03245{letter-spacing:0.114048pt;}
.lsb_c03245{letter-spacing:0.451968pt;}
.ls10_c03245{letter-spacing:0.456960pt;}
.lsd_c03245{letter-spacing:0.477312pt;}
.lsa_c03245{letter-spacing:0.515328pt;}
.lsf_c03245{letter-spacing:0.528000pt;}
.ls8_c03245{letter-spacing:0.532224pt;}
.ls3_c03245{letter-spacing:0.544896pt;}
.ls0_c03245{letter-spacing:0.637824pt;}
.ls2_c03245{letter-spacing:0.642048pt;}
.wsc_c03245{word-spacing:-13.445376pt;}
.wsa_c03245{word-spacing:-11.088000pt;}
.ws8_c03245{word-spacing:-11.075328pt;}
.ws9_c03245{word-spacing:-11.037312pt;}
.ws4_c03245{word-spacing:-10.344576pt;}
.ws2_c03245{word-spacing:-10.015104pt;}
.ws12_c03245{word-spacing:-0.963072pt;}
.ws11_c03245{word-spacing:-0.958848pt;}
.wse_c03245{word-spacing:-0.865920pt;}
.ws15_c03245{word-spacing:-0.639744pt;}
.ws10_c03245{word-spacing:-0.105600pt;}
.ws13_c03245{word-spacing:-0.088704pt;}
.ws14_c03245{word-spacing:-0.076032pt;}
.wsf_c03245{word-spacing:0.000000pt;}
.ws16_c03245{word-spacing:0.384384pt;}
.wsb_c03245{word-spacing:29.600256pt;}
.wsd_c03245{word-spacing:32.127744pt;}
.ws6_c03245{word-spacing:32.659968pt;}
.ws1_c03245{word-spacing:33.563904pt;}
.ws0_c03245{word-spacing:33.796224pt;}
.ws3_c03245{word-spacing:34.860672pt;}
.ws5_c03245{word-spacing:35.468928pt;}
.ws7_c03245{word-spacing:37.357056pt;}
._0_c03245{margin-left:-1.731840pt;}
._2_c03245{width:1.317888pt;}
._4_c03245{width:5.111040pt;}
._1_c03245{width:44.668800pt;}
._3_c03245{width:45.805056pt;}
.fs0_c03245{font-size:42.240000pt;}
.fs1_c03245{font-size:53.760000pt;}
.y0_c03245{bottom:0.000000pt;}
.y19_c03245{bottom:130.665211pt;}
.y1b_c03245{bottom:165.866875pt;}
.y1a_c03245{bottom:174.507067pt;}
.y18_c03245{bottom:245.225371pt;}
.y17_c03245{bottom:317.225563pt;}
.y15_c03245{bottom:361.386427pt;}
.y11_c03245{bottom:377.386939pt;}
.y16_c03245{bottom:407.786011pt;}
.y14_c03245{bottom:437.226235pt;}
.y13_c03245{bottom:453.226747pt;}
.y10_c03245{bottom:482.666971pt;}
.y12_c03245{bottom:497.386555pt;}
.yf_c03245{bottom:513.387067pt;}
.y1c_c03245{bottom:546.027067pt;}
.yb_c03245{bottom:593.385179pt;}
.yd_c03245{bottom:628.586875pt;}
.yc_c03245{bottom:637.227067pt;}
.ya_c03245{bottom:707.945339pt;}
.y9_c03245{bottom:779.945531pt;}
.y7_c03245{bottom:823.786427pt;}
.y3_c03245{bottom:839.786939pt;}
.y8_c03245{bottom:870.505979pt;}
.y6_c03245{bottom:899.946203pt;}
.y5_c03245{bottom:915.946715pt;}
.y2_c03245{bottom:945.386939pt;}
.y4_c03245{bottom:959.786555pt;}
.y1_c03245{bottom:975.787067pt;}
.ye_c03245{bottom:1008.747067pt;}
.h3_c03245{height:28.916250pt;}
.h1_c03245{height:37.063125pt;}
.h2_c03245{height:37.166250pt;}
.h4_c03245{height:48.581988pt;}
.h0_c03245{height:1122.666667pt;}
.w1_c03245{width:793.333333pt;}
.w0_c03245{width:793.626667pt;}
.x0_c03245{left:0.000000pt;}
.xd_c03245{left:104.000000pt;}
.x8_c03245{left:391.999872pt;}
.x4_c03245{left:396.160512pt;}
.xb_c03245{left:400.960000pt;}
.x7_c03245{left:404.799648pt;}
.x5_c03245{left:410.560128pt;}
.x1_c03245{left:411.840000pt;}
.xa_c03245{left:429.760320pt;}
.x9_c03245{left:437.439552pt;}
.x6_c03245{left:438.400512pt;}
.xc_c03245{left:450.560320pt;}
.x3_c03245{left:455.039904pt;}
.x2_c03245{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03246 {
    display:none;
  }
  .loading-indicator_c03246.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03246 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03246 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03246" -> "#page-container .classname_c03246")
 */
.pf_c03246 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03246 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03246.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03246 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03246 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03246 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03246 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03246 {overflow:visible;}
  }
}
.c_c03246 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03246 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03246:after { /* webkit #35443 */
  content: '';
}
.t_c03246:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03246 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03246 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03246 { /* info for Javascript */
  display:none;
}
.l_c03246 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03246 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03246 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03246:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03246 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03246.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03246.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03246 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03246{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03246;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03246{font-family:ff1_c03246;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03246;src:url('chunks/assets/font_70d835790bda82636c872ac7.woff2')format("woff");}.ff2_c03246{font-family:ff2_c03246;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03246;src:url('chunks/assets/font_7a7b9546b20d4e77265e449e.woff2')format("woff");}.ff3_c03246{font-family:ff3_c03246;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03246{vertical-align:0.000000px;}
.v2_c03246{vertical-align:1.439424px;}
.v1_c03246{vertical-align:33.121440px;}
.ls13_c03246{letter-spacing:-0.774576px;}
.ls15_c03246{letter-spacing:-0.736560px;}
.ls14_c03246{letter-spacing:-0.722304px;}
.ls8_c03246{letter-spacing:-0.613008px;}
.lsa_c03246{letter-spacing:-0.574992px;}
.lsf_c03246{letter-spacing:-0.275616px;}
.ls16_c03246{letter-spacing:-0.270864px;}
.lsd_c03246{letter-spacing:-0.261360px;}
.ls7_c03246{letter-spacing:-0.242352px;}
.ls5_c03246{letter-spacing:-0.118800px;}
.ls12_c03246{letter-spacing:0.000000px;}
.ls1_c03246{letter-spacing:0.006048px;}
.ls6_c03246{letter-spacing:0.128304px;}
.lsc_c03246{letter-spacing:0.508464px;}
.ls11_c03246{letter-spacing:0.514080px;}
.lse_c03246{letter-spacing:0.536976px;}
.lsb_c03246{letter-spacing:0.579744px;}
.ls10_c03246{letter-spacing:0.594000px;}
.ls9_c03246{letter-spacing:0.598752px;}
.ls3_c03246{letter-spacing:0.613008px;}
.ls2_c03246{letter-spacing:0.651024px;}
.ls4_c03246{letter-spacing:0.717552px;}
.ls0_c03246{letter-spacing:0.722304px;}
.sc__c03246{text-shadow:none;}
.sc0_c03246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03246{-webkit-text-stroke:0px transparent;}
.sc0_c03246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c03246{word-spacing:-15.126048px;}
.ws14_c03246{word-spacing:-12.474000px;}
.ws8_c03246{word-spacing:-12.459744px;}
.ws9_c03246{word-spacing:-12.416976px;}
.ws4_c03246{word-spacing:-11.637648px;}
.ws2_c03246{word-spacing:-11.266992px;}
.ws10_c03246{word-spacing:-11.105424px;}
.ws18_c03246{word-spacing:-1.083456px;}
.ws1c_c03246{word-spacing:-1.012176px;}
.ws15_c03246{word-spacing:-0.974160px;}
.ws1b_c03246{word-spacing:-0.719712px;}
.ws17_c03246{word-spacing:-0.118800px;}
.ws19_c03246{word-spacing:-0.099792px;}
.ws1e_c03246{word-spacing:-0.090288px;}
.ws1a_c03246{word-spacing:-0.085536px;}
.ws16_c03246{word-spacing:0.000000px;}
.ws1d_c03246{word-spacing:0.361152px;}
.wsc_c03246{word-spacing:4.747248px;}
.wsd_c03246{word-spacing:5.037120px;}
.ws13_c03246{word-spacing:6.629040px;}
.wsb_c03246{word-spacing:6.961680px;}
.wsa_c03246{word-spacing:30.298752px;}
.wse_c03246{word-spacing:33.300288px;}
.ws12_c03246{word-spacing:34.836912px;}
.ws11_c03246{word-spacing:36.143712px;}
.ws6_c03246{word-spacing:36.742464px;}
.ws1_c03246{word-spacing:37.759392px;}
.ws0_c03246{word-spacing:38.020752px;}
.ws3_c03246{word-spacing:39.218256px;}
.ws5_c03246{word-spacing:39.902544px;}
.ws7_c03246{word-spacing:42.026688px;}
._5_c03246{margin-left:-3.074544px;}
._0_c03246{margin-left:-1.948320px;}
._2_c03246{width:1.482624px;}
._4_c03246{width:5.749920px;}
._8_c03246{width:6.876144px;}
._7_c03246{width:18.366480px;}
._a_c03246{width:19.982160px;}
._6_c03246{width:22.857120px;}
._9_c03246{width:24.691392px;}
._1_c03246{width:50.252400px;}
._3_c03246{width:51.530688px;}
.fc0_c03246{color:rgb(0,0,0);}
.fs0_c03246{font-size:47.520000px;}
.fs1_c03246{font-size:60.480000px;}
.y0_c03246{bottom:0.000000px;}
.y1b_c03246{bottom:131.878686px;}
.y1a_c03246{bottom:146.998362px;}
.y1d_c03246{bottom:186.600234px;}
.y1c_c03246{bottom:196.320450px;}
.y19_c03246{bottom:275.878542px;}
.y18_c03246{bottom:356.878758px;}
.y16_c03246{bottom:406.559730px;}
.y12_c03246{bottom:424.560306px;}
.y17_c03246{bottom:458.759262px;}
.y15_c03246{bottom:491.879514px;}
.y14_c03246{bottom:509.880090px;}
.y11_c03246{bottom:543.000342px;}
.y13_c03246{bottom:559.559874px;}
.y10_c03246{bottom:577.560450px;}
.y1e_c03246{bottom:614.280450px;}
.yb_c03246{bottom:667.558326px;}
.ye_c03246{bottom:700.320918px;}
.yd_c03246{bottom:707.160234px;}
.yc_c03246{bottom:716.880450px;}
.ya_c03246{bottom:796.438506px;}
.y9_c03246{bottom:877.438722px;}
.y7_c03246{bottom:926.759730px;}
.y3_c03246{bottom:944.760306px;}
.y8_c03246{bottom:979.319226px;}
.y6_c03246{bottom:1012.439478px;}
.y5_c03246{bottom:1030.440054px;}
.y2_c03246{bottom:1063.560306px;}
.y4_c03246{bottom:1079.759874px;}
.y1_c03246{bottom:1097.760450px;}
.yf_c03246{bottom:1134.840450px;}
.h3_c03246{height:32.530781px;}
.h1_c03246{height:41.696016px;}
.h2_c03246{height:41.812031px;}
.h5_c03246{height:54.654737px;}
.h4_c03246{height:74.933471px;}
.h0_c03246{height:1263.000000px;}
.w1_c03246{width:892.500000px;}
.w0_c03246{width:892.830000px;}
.x0_c03246{left:0.000000px;}
.xe_c03246{left:117.000000px;}
.x8_c03246{left:440.999856px;}
.x4_c03246{left:445.680576px;}
.xb_c03246{left:451.080000px;}
.x7_c03246{left:455.399604px;}
.x5_c03246{left:461.880144px;}
.x1_c03246{left:463.320000px;}
.xa_c03246{left:483.480360px;}
.x9_c03246{left:492.119496px;}
.x6_c03246{left:493.200576px;}
.xc_c03246{left:506.880360px;}
.x3_c03246{left:511.919892px;}
.x2_c03246{left:526.679604px;}
.xd_c03246{left:569.878812px;}
@media print{
.v0_c03246{vertical-align:0.000000pt;}
.v2_c03246{vertical-align:1.279488pt;}
.v1_c03246{vertical-align:29.441280pt;}
.ls13_c03246{letter-spacing:-0.688512pt;}
.ls15_c03246{letter-spacing:-0.654720pt;}
.ls14_c03246{letter-spacing:-0.642048pt;}
.ls8_c03246{letter-spacing:-0.544896pt;}
.lsa_c03246{letter-spacing:-0.511104pt;}
.lsf_c03246{letter-spacing:-0.244992pt;}
.ls16_c03246{letter-spacing:-0.240768pt;}
.lsd_c03246{letter-spacing:-0.232320pt;}
.ls7_c03246{letter-spacing:-0.215424pt;}
.ls5_c03246{letter-spacing:-0.105600pt;}
.ls12_c03246{letter-spacing:0.000000pt;}
.ls1_c03246{letter-spacing:0.005376pt;}
.ls6_c03246{letter-spacing:0.114048pt;}
.lsc_c03246{letter-spacing:0.451968pt;}
.ls11_c03246{letter-spacing:0.456960pt;}
.lse_c03246{letter-spacing:0.477312pt;}
.lsb_c03246{letter-spacing:0.515328pt;}
.ls10_c03246{letter-spacing:0.528000pt;}
.ls9_c03246{letter-spacing:0.532224pt;}
.ls3_c03246{letter-spacing:0.544896pt;}
.ls2_c03246{letter-spacing:0.578688pt;}
.ls4_c03246{letter-spacing:0.637824pt;}
.ls0_c03246{letter-spacing:0.642048pt;}
.wsf_c03246{word-spacing:-13.445376pt;}
.ws14_c03246{word-spacing:-11.088000pt;}
.ws8_c03246{word-spacing:-11.075328pt;}
.ws9_c03246{word-spacing:-11.037312pt;}
.ws4_c03246{word-spacing:-10.344576pt;}
.ws2_c03246{word-spacing:-10.015104pt;}
.ws10_c03246{word-spacing:-9.871488pt;}
.ws18_c03246{word-spacing:-0.963072pt;}
.ws1c_c03246{word-spacing:-0.899712pt;}
.ws15_c03246{word-spacing:-0.865920pt;}
.ws1b_c03246{word-spacing:-0.639744pt;}
.ws17_c03246{word-spacing:-0.105600pt;}
.ws19_c03246{word-spacing:-0.088704pt;}
.ws1e_c03246{word-spacing:-0.080256pt;}
.ws1a_c03246{word-spacing:-0.076032pt;}
.ws16_c03246{word-spacing:0.000000pt;}
.ws1d_c03246{word-spacing:0.321024pt;}
.wsc_c03246{word-spacing:4.219776pt;}
.wsd_c03246{word-spacing:4.477440pt;}
.ws13_c03246{word-spacing:5.892480pt;}
.wsb_c03246{word-spacing:6.188160pt;}
.wsa_c03246{word-spacing:26.932224pt;}
.wse_c03246{word-spacing:29.600256pt;}
.ws12_c03246{word-spacing:30.966144pt;}
.ws11_c03246{word-spacing:32.127744pt;}
.ws6_c03246{word-spacing:32.659968pt;}
.ws1_c03246{word-spacing:33.563904pt;}
.ws0_c03246{word-spacing:33.796224pt;}
.ws3_c03246{word-spacing:34.860672pt;}
.ws5_c03246{word-spacing:35.468928pt;}
.ws7_c03246{word-spacing:37.357056pt;}
._5_c03246{margin-left:-2.732928pt;}
._0_c03246{margin-left:-1.731840pt;}
._2_c03246{width:1.317888pt;}
._4_c03246{width:5.111040pt;}
._8_c03246{width:6.112128pt;}
._7_c03246{width:16.325760pt;}
._a_c03246{width:17.761920pt;}
._6_c03246{width:20.317440pt;}
._9_c03246{width:21.947904pt;}
._1_c03246{width:44.668800pt;}
._3_c03246{width:45.805056pt;}
.fs0_c03246{font-size:42.240000pt;}
.fs1_c03246{font-size:53.760000pt;}
.y0_c03246{bottom:0.000000pt;}
.y1b_c03246{bottom:117.225499pt;}
.y1a_c03246{bottom:130.665211pt;}
.y1d_c03246{bottom:165.866875pt;}
.y1c_c03246{bottom:174.507067pt;}
.y19_c03246{bottom:245.225371pt;}
.y18_c03246{bottom:317.225563pt;}
.y16_c03246{bottom:361.386427pt;}
.y12_c03246{bottom:377.386939pt;}
.y17_c03246{bottom:407.786011pt;}
.y15_c03246{bottom:437.226235pt;}
.y14_c03246{bottom:453.226747pt;}
.y11_c03246{bottom:482.666971pt;}
.y13_c03246{bottom:497.386555pt;}
.y10_c03246{bottom:513.387067pt;}
.y1e_c03246{bottom:546.027067pt;}
.yb_c03246{bottom:593.385179pt;}
.ye_c03246{bottom:622.507483pt;}
.yd_c03246{bottom:628.586875pt;}
.yc_c03246{bottom:637.227067pt;}
.ya_c03246{bottom:707.945339pt;}
.y9_c03246{bottom:779.945531pt;}
.y7_c03246{bottom:823.786427pt;}
.y3_c03246{bottom:839.786939pt;}
.y8_c03246{bottom:870.505979pt;}
.y6_c03246{bottom:899.946203pt;}
.y5_c03246{bottom:915.946715pt;}
.y2_c03246{bottom:945.386939pt;}
.y4_c03246{bottom:959.786555pt;}
.y1_c03246{bottom:975.787067pt;}
.yf_c03246{bottom:1008.747067pt;}
.h3_c03246{height:28.916250pt;}
.h1_c03246{height:37.063125pt;}
.h2_c03246{height:37.166250pt;}
.h5_c03246{height:48.581988pt;}
.h4_c03246{height:66.607530pt;}
.h0_c03246{height:1122.666667pt;}
.w1_c03246{width:793.333333pt;}
.w0_c03246{width:793.626667pt;}
.x0_c03246{left:0.000000pt;}
.xe_c03246{left:104.000000pt;}
.x8_c03246{left:391.999872pt;}
.x4_c03246{left:396.160512pt;}
.xb_c03246{left:400.960000pt;}
.x7_c03246{left:404.799648pt;}
.x5_c03246{left:410.560128pt;}
.x1_c03246{left:411.840000pt;}
.xa_c03246{left:429.760320pt;}
.x9_c03246{left:437.439552pt;}
.x6_c03246{left:438.400512pt;}
.xc_c03246{left:450.560320pt;}
.x3_c03246{left:455.039904pt;}
.x2_c03246{left:468.159648pt;}
.xd_c03246{left:506.558944pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03247 {
    display:none;
  }
  .loading-indicator_c03247.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03247 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03247 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03247" -> "#page-container .classname_c03247")
 */
.pf_c03247 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03247 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03247.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03247 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03247 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03247 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03247 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03247 {overflow:visible;}
  }
}
.c_c03247 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03247 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03247:after { /* webkit #35443 */
  content: '';
}
.t_c03247:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03247 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03247 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03247 { /* info for Javascript */
  display:none;
}
.l_c03247 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03247 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03247 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03247:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03247 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03247.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03247.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03247 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03247{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03247;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03247{font-family:ff1_c03247;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03247;src:url('chunks/assets/font_d2bc5171e4726e79dab23ef7.woff2')format("woff");}.ff2_c03247{font-family:ff2_c03247;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03247;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03247{font-family:ff3_c03247;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03247{vertical-align:0.000000px;}
.v1_c03247{vertical-align:1.439424px;}
.lsc_c03247{letter-spacing:-1.197504px;}
.ls13_c03247{letter-spacing:-0.793584px;}
.ls14_c03247{letter-spacing:-0.760320px;}
.ls7_c03247{letter-spacing:-0.613008px;}
.ls9_c03247{letter-spacing:-0.574992px;}
.lsf_c03247{letter-spacing:-0.275616px;}
.ls15_c03247{letter-spacing:-0.270864px;}
.lsd_c03247{letter-spacing:-0.261360px;}
.ls6_c03247{letter-spacing:-0.242352px;}
.ls4_c03247{letter-spacing:-0.118800px;}
.ls12_c03247{letter-spacing:0.000000px;}
.ls1_c03247{letter-spacing:0.006048px;}
.ls5_c03247{letter-spacing:0.128304px;}
.lsb_c03247{letter-spacing:0.508464px;}
.ls11_c03247{letter-spacing:0.514080px;}
.lse_c03247{letter-spacing:0.536976px;}
.lsa_c03247{letter-spacing:0.579744px;}
.ls10_c03247{letter-spacing:0.594000px;}
.ls8_c03247{letter-spacing:0.598752px;}
.ls2_c03247{letter-spacing:0.613008px;}
.ls3_c03247{letter-spacing:0.717552px;}
.ls0_c03247{letter-spacing:0.722304px;}
.sc__c03247{text-shadow:none;}
.sc0_c03247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03247{-webkit-text-stroke:0px transparent;}
.sc0_c03247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03247{word-spacing:-15.126048px;}
.wsa_c03247{word-spacing:-12.474000px;}
.ws8_c03247{word-spacing:-12.459744px;}
.ws9_c03247{word-spacing:-12.416976px;}
.ws4_c03247{word-spacing:-11.637648px;}
.ws2_c03247{word-spacing:-11.266992px;}
.ws13_c03247{word-spacing:-1.083456px;}
.ws10_c03247{word-spacing:-0.974160px;}
.ws17_c03247{word-spacing:-0.719712px;}
.ws12_c03247{word-spacing:-0.118800px;}
.ws15_c03247{word-spacing:-0.099792px;}
.ws19_c03247{word-spacing:-0.090288px;}
.ws16_c03247{word-spacing:-0.085536px;}
.ws11_c03247{word-spacing:0.000000px;}
.ws18_c03247{word-spacing:0.432432px;}
.ws14_c03247{word-spacing:0.836352px;}
.wsb_c03247{word-spacing:33.300288px;}
.wse_c03247{word-spacing:34.836912px;}
.wsd_c03247{word-spacing:36.143712px;}
.ws6_c03247{word-spacing:36.742464px;}
.ws1_c03247{word-spacing:37.759392px;}
.ws0_c03247{word-spacing:38.020752px;}
.ws3_c03247{word-spacing:39.218256px;}
.wsf_c03247{word-spacing:39.322800px;}
.ws5_c03247{word-spacing:39.902544px;}
.ws7_c03247{word-spacing:42.026688px;}
._0_c03247{margin-left:-1.948320px;}
._2_c03247{width:1.482624px;}
._5_c03247{width:2.770416px;}
._4_c03247{width:5.749920px;}
._1_c03247{width:50.252400px;}
._3_c03247{width:51.530688px;}
._6_c03247{width:55.612656px;}
._7_c03247{width:56.952720px;}
.fc0_c03247{color:rgb(0,0,0);}
.fs0_c03247{font-size:47.520000px;}
.fs1_c03247{font-size:60.480000px;}
.y0_c03247{bottom:0.000000px;}
.y1a_c03247{bottom:131.878686px;}
.y19_c03247{bottom:146.998362px;}
.y1c_c03247{bottom:186.600234px;}
.y1b_c03247{bottom:196.320450px;}
.y18_c03247{bottom:275.878542px;}
.y17_c03247{bottom:356.878758px;}
.y15_c03247{bottom:406.559730px;}
.y11_c03247{bottom:424.560306px;}
.y16_c03247{bottom:458.759262px;}
.y14_c03247{bottom:491.879514px;}
.y13_c03247{bottom:509.880090px;}
.y10_c03247{bottom:543.000342px;}
.y12_c03247{bottom:559.559874px;}
.yf_c03247{bottom:577.560450px;}
.y1d_c03247{bottom:614.280450px;}
.yb_c03247{bottom:667.558326px;}
.yd_c03247{bottom:707.160234px;}
.yc_c03247{bottom:716.880450px;}
.ya_c03247{bottom:796.438506px;}
.y9_c03247{bottom:877.438722px;}
.y7_c03247{bottom:926.759730px;}
.y3_c03247{bottom:944.760306px;}
.y8_c03247{bottom:979.319226px;}
.y6_c03247{bottom:1012.439478px;}
.y5_c03247{bottom:1030.440054px;}
.y2_c03247{bottom:1063.560306px;}
.y4_c03247{bottom:1079.759874px;}
.y1_c03247{bottom:1097.760450px;}
.ye_c03247{bottom:1134.840450px;}
.h3_c03247{height:32.530781px;}
.h1_c03247{height:41.696016px;}
.h2_c03247{height:41.812031px;}
.h4_c03247{height:54.654737px;}
.h0_c03247{height:1263.000000px;}
.w1_c03247{width:892.500000px;}
.w0_c03247{width:892.830000px;}
.x0_c03247{left:0.000000px;}
.xd_c03247{left:117.000000px;}
.x8_c03247{left:440.999856px;}
.x4_c03247{left:445.680576px;}
.xb_c03247{left:451.080000px;}
.x7_c03247{left:455.399604px;}
.x5_c03247{left:461.880144px;}
.x1_c03247{left:463.320000px;}
.xa_c03247{left:483.480360px;}
.x9_c03247{left:492.119496px;}
.x6_c03247{left:493.200576px;}
.xc_c03247{left:506.880360px;}
.x3_c03247{left:511.919892px;}
.x2_c03247{left:526.679604px;}
.xe_c03247{left:569.880036px;}
@media print{
.v0_c03247{vertical-align:0.000000pt;}
.v1_c03247{vertical-align:1.279488pt;}
.lsc_c03247{letter-spacing:-1.064448pt;}
.ls13_c03247{letter-spacing:-0.705408pt;}
.ls14_c03247{letter-spacing:-0.675840pt;}
.ls7_c03247{letter-spacing:-0.544896pt;}
.ls9_c03247{letter-spacing:-0.511104pt;}
.lsf_c03247{letter-spacing:-0.244992pt;}
.ls15_c03247{letter-spacing:-0.240768pt;}
.lsd_c03247{letter-spacing:-0.232320pt;}
.ls6_c03247{letter-spacing:-0.215424pt;}
.ls4_c03247{letter-spacing:-0.105600pt;}
.ls12_c03247{letter-spacing:0.000000pt;}
.ls1_c03247{letter-spacing:0.005376pt;}
.ls5_c03247{letter-spacing:0.114048pt;}
.lsb_c03247{letter-spacing:0.451968pt;}
.ls11_c03247{letter-spacing:0.456960pt;}
.lse_c03247{letter-spacing:0.477312pt;}
.lsa_c03247{letter-spacing:0.515328pt;}
.ls10_c03247{letter-spacing:0.528000pt;}
.ls8_c03247{letter-spacing:0.532224pt;}
.ls2_c03247{letter-spacing:0.544896pt;}
.ls3_c03247{letter-spacing:0.637824pt;}
.ls0_c03247{letter-spacing:0.642048pt;}
.wsc_c03247{word-spacing:-13.445376pt;}
.wsa_c03247{word-spacing:-11.088000pt;}
.ws8_c03247{word-spacing:-11.075328pt;}
.ws9_c03247{word-spacing:-11.037312pt;}
.ws4_c03247{word-spacing:-10.344576pt;}
.ws2_c03247{word-spacing:-10.015104pt;}
.ws13_c03247{word-spacing:-0.963072pt;}
.ws10_c03247{word-spacing:-0.865920pt;}
.ws17_c03247{word-spacing:-0.639744pt;}
.ws12_c03247{word-spacing:-0.105600pt;}
.ws15_c03247{word-spacing:-0.088704pt;}
.ws19_c03247{word-spacing:-0.080256pt;}
.ws16_c03247{word-spacing:-0.076032pt;}
.ws11_c03247{word-spacing:0.000000pt;}
.ws18_c03247{word-spacing:0.384384pt;}
.ws14_c03247{word-spacing:0.743424pt;}
.wsb_c03247{word-spacing:29.600256pt;}
.wse_c03247{word-spacing:30.966144pt;}
.wsd_c03247{word-spacing:32.127744pt;}
.ws6_c03247{word-spacing:32.659968pt;}
.ws1_c03247{word-spacing:33.563904pt;}
.ws0_c03247{word-spacing:33.796224pt;}
.ws3_c03247{word-spacing:34.860672pt;}
.wsf_c03247{word-spacing:34.953600pt;}
.ws5_c03247{word-spacing:35.468928pt;}
.ws7_c03247{word-spacing:37.357056pt;}
._0_c03247{margin-left:-1.731840pt;}
._2_c03247{width:1.317888pt;}
._5_c03247{width:2.462592pt;}
._4_c03247{width:5.111040pt;}
._1_c03247{width:44.668800pt;}
._3_c03247{width:45.805056pt;}
._6_c03247{width:49.433472pt;}
._7_c03247{width:50.624640pt;}
.fs0_c03247{font-size:42.240000pt;}
.fs1_c03247{font-size:53.760000pt;}
.y0_c03247{bottom:0.000000pt;}
.y1a_c03247{bottom:117.225499pt;}
.y19_c03247{bottom:130.665211pt;}
.y1c_c03247{bottom:165.866875pt;}
.y1b_c03247{bottom:174.507067pt;}
.y18_c03247{bottom:245.225371pt;}
.y17_c03247{bottom:317.225563pt;}
.y15_c03247{bottom:361.386427pt;}
.y11_c03247{bottom:377.386939pt;}
.y16_c03247{bottom:407.786011pt;}
.y14_c03247{bottom:437.226235pt;}
.y13_c03247{bottom:453.226747pt;}
.y10_c03247{bottom:482.666971pt;}
.y12_c03247{bottom:497.386555pt;}
.yf_c03247{bottom:513.387067pt;}
.y1d_c03247{bottom:546.027067pt;}
.yb_c03247{bottom:593.385179pt;}
.yd_c03247{bottom:628.586875pt;}
.yc_c03247{bottom:637.227067pt;}
.ya_c03247{bottom:707.945339pt;}
.y9_c03247{bottom:779.945531pt;}
.y7_c03247{bottom:823.786427pt;}
.y3_c03247{bottom:839.786939pt;}
.y8_c03247{bottom:870.505979pt;}
.y6_c03247{bottom:899.946203pt;}
.y5_c03247{bottom:915.946715pt;}
.y2_c03247{bottom:945.386939pt;}
.y4_c03247{bottom:959.786555pt;}
.y1_c03247{bottom:975.787067pt;}
.ye_c03247{bottom:1008.747067pt;}
.h3_c03247{height:28.916250pt;}
.h1_c03247{height:37.063125pt;}
.h2_c03247{height:37.166250pt;}
.h4_c03247{height:48.581988pt;}
.h0_c03247{height:1122.666667pt;}
.w1_c03247{width:793.333333pt;}
.w0_c03247{width:793.626667pt;}
.x0_c03247{left:0.000000pt;}
.xd_c03247{left:104.000000pt;}
.x8_c03247{left:391.999872pt;}
.x4_c03247{left:396.160512pt;}
.xb_c03247{left:400.960000pt;}
.x7_c03247{left:404.799648pt;}
.x5_c03247{left:410.560128pt;}
.x1_c03247{left:411.840000pt;}
.xa_c03247{left:429.760320pt;}
.x9_c03247{left:437.439552pt;}
.x6_c03247{left:438.400512pt;}
.xc_c03247{left:450.560320pt;}
.x3_c03247{left:455.039904pt;}
.x2_c03247{left:468.159648pt;}
.xe_c03247{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03248 {
    display:none;
  }
  .loading-indicator_c03248.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03248 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03248 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03248" -> "#page-container .classname_c03248")
 */
.pf_c03248 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03248 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03248.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03248 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03248 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03248 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03248 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03248 {overflow:visible;}
  }
}
.c_c03248 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03248 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03248:after { /* webkit #35443 */
  content: '';
}
.t_c03248:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03248 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03248 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03248 { /* info for Javascript */
  display:none;
}
.l_c03248 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03248 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03248 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03248:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03248 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03248.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03248.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03248 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03248{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03248;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03248{font-family:ff1_c03248;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03248;src:url('chunks/assets/font_597b519dc386f7ee4744eb8a.woff2')format("woff");}.ff2_c03248{font-family:ff2_c03248;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03248;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03248{font-family:ff3_c03248;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03248{vertical-align:0.000000px;}
.v1_c03248{vertical-align:1.439424px;}
.lsd_c03248{letter-spacing:-0.793584px;}
.ls7_c03248{letter-spacing:-0.613008px;}
.ls9_c03248{letter-spacing:-0.574992px;}
.lsb_c03248{letter-spacing:-0.494208px;}
.ls10_c03248{letter-spacing:-0.275616px;}
.lse_c03248{letter-spacing:-0.261360px;}
.ls6_c03248{letter-spacing:-0.242352px;}
.ls4_c03248{letter-spacing:-0.118800px;}
.ls13_c03248{letter-spacing:0.000000px;}
.ls1_c03248{letter-spacing:0.006048px;}
.ls5_c03248{letter-spacing:0.128304px;}
.lsc_c03248{letter-spacing:0.508464px;}
.ls12_c03248{letter-spacing:0.514080px;}
.lsf_c03248{letter-spacing:0.536976px;}
.lsa_c03248{letter-spacing:0.579744px;}
.ls11_c03248{letter-spacing:0.594000px;}
.ls8_c03248{letter-spacing:0.598752px;}
.ls2_c03248{letter-spacing:0.613008px;}
.ls3_c03248{letter-spacing:0.717552px;}
.ls0_c03248{letter-spacing:0.722304px;}
.sc__c03248{text-shadow:none;}
.sc0_c03248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03248{-webkit-text-stroke:0px transparent;}
.sc0_c03248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03248{word-spacing:-15.126048px;}
.wsb_c03248{word-spacing:-12.474000px;}
.wse_c03248{word-spacing:-12.459744px;}
.wsf_c03248{word-spacing:-12.416976px;}
.ws4_c03248{word-spacing:-11.637648px;}
.ws7_c03248{word-spacing:-11.385792px;}
.ws2_c03248{word-spacing:-11.266992px;}
.ws13_c03248{word-spacing:-1.083456px;}
.ws10_c03248{word-spacing:-0.974160px;}
.ws17_c03248{word-spacing:-0.719712px;}
.ws12_c03248{word-spacing:-0.118800px;}
.ws15_c03248{word-spacing:-0.099792px;}
.ws16_c03248{word-spacing:-0.085536px;}
.ws11_c03248{word-spacing:0.000000px;}
.ws14_c03248{word-spacing:0.432432px;}
.wsc_c03248{word-spacing:33.300288px;}
.wsa_c03248{word-spacing:34.836912px;}
.ws9_c03248{word-spacing:36.143712px;}
.ws6_c03248{word-spacing:36.742464px;}
.ws1_c03248{word-spacing:37.759392px;}
.ws0_c03248{word-spacing:38.020752px;}
.ws3_c03248{word-spacing:39.218256px;}
.ws5_c03248{word-spacing:39.902544px;}
.ws8_c03248{word-spacing:42.026688px;}
._0_c03248{margin-left:-1.948320px;}
._2_c03248{width:1.482624px;}
._4_c03248{width:5.749920px;}
._1_c03248{width:50.252400px;}
._3_c03248{width:51.530688px;}
.fc0_c03248{color:rgb(0,0,0);}
.fs0_c03248{font-size:47.520000px;}
.fs1_c03248{font-size:60.480000px;}
.y0_c03248{bottom:0.000000px;}
.y19_c03248{bottom:146.998362px;}
.y1b_c03248{bottom:186.600234px;}
.y1a_c03248{bottom:196.320450px;}
.y18_c03248{bottom:275.878542px;}
.y17_c03248{bottom:356.878758px;}
.y15_c03248{bottom:406.559730px;}
.y11_c03248{bottom:424.560306px;}
.y16_c03248{bottom:458.759262px;}
.y14_c03248{bottom:491.879514px;}
.y13_c03248{bottom:509.880090px;}
.y10_c03248{bottom:543.000342px;}
.y12_c03248{bottom:559.559874px;}
.yf_c03248{bottom:577.560450px;}
.y1c_c03248{bottom:614.280450px;}
.yb_c03248{bottom:667.558326px;}
.yd_c03248{bottom:707.160234px;}
.yc_c03248{bottom:716.880450px;}
.ya_c03248{bottom:796.438506px;}
.y9_c03248{bottom:877.438722px;}
.y7_c03248{bottom:926.759730px;}
.y3_c03248{bottom:944.760306px;}
.y8_c03248{bottom:979.319226px;}
.y6_c03248{bottom:1012.439478px;}
.y5_c03248{bottom:1030.440054px;}
.y2_c03248{bottom:1063.560306px;}
.y4_c03248{bottom:1079.759874px;}
.y1_c03248{bottom:1097.760450px;}
.ye_c03248{bottom:1134.840450px;}
.h3_c03248{height:32.530781px;}
.h1_c03248{height:41.696016px;}
.h2_c03248{height:41.812031px;}
.h4_c03248{height:54.654737px;}
.h0_c03248{height:1263.000000px;}
.w1_c03248{width:892.500000px;}
.w0_c03248{width:892.830000px;}
.x0_c03248{left:0.000000px;}
.xd_c03248{left:117.000000px;}
.x8_c03248{left:440.999856px;}
.x4_c03248{left:445.680576px;}
.xb_c03248{left:451.080000px;}
.x7_c03248{left:455.399604px;}
.x5_c03248{left:461.880144px;}
.x1_c03248{left:463.320000px;}
.xa_c03248{left:483.480360px;}
.x9_c03248{left:492.119496px;}
.x6_c03248{left:493.200576px;}
.xc_c03248{left:506.880360px;}
.x3_c03248{left:511.919892px;}
.x2_c03248{left:526.679604px;}
@media print{
.v0_c03248{vertical-align:0.000000pt;}
.v1_c03248{vertical-align:1.279488pt;}
.lsd_c03248{letter-spacing:-0.705408pt;}
.ls7_c03248{letter-spacing:-0.544896pt;}
.ls9_c03248{letter-spacing:-0.511104pt;}
.lsb_c03248{letter-spacing:-0.439296pt;}
.ls10_c03248{letter-spacing:-0.244992pt;}
.lse_c03248{letter-spacing:-0.232320pt;}
.ls6_c03248{letter-spacing:-0.215424pt;}
.ls4_c03248{letter-spacing:-0.105600pt;}
.ls13_c03248{letter-spacing:0.000000pt;}
.ls1_c03248{letter-spacing:0.005376pt;}
.ls5_c03248{letter-spacing:0.114048pt;}
.lsc_c03248{letter-spacing:0.451968pt;}
.ls12_c03248{letter-spacing:0.456960pt;}
.lsf_c03248{letter-spacing:0.477312pt;}
.lsa_c03248{letter-spacing:0.515328pt;}
.ls11_c03248{letter-spacing:0.528000pt;}
.ls8_c03248{letter-spacing:0.532224pt;}
.ls2_c03248{letter-spacing:0.544896pt;}
.ls3_c03248{letter-spacing:0.637824pt;}
.ls0_c03248{letter-spacing:0.642048pt;}
.wsd_c03248{word-spacing:-13.445376pt;}
.wsb_c03248{word-spacing:-11.088000pt;}
.wse_c03248{word-spacing:-11.075328pt;}
.wsf_c03248{word-spacing:-11.037312pt;}
.ws4_c03248{word-spacing:-10.344576pt;}
.ws7_c03248{word-spacing:-10.120704pt;}
.ws2_c03248{word-spacing:-10.015104pt;}
.ws13_c03248{word-spacing:-0.963072pt;}
.ws10_c03248{word-spacing:-0.865920pt;}
.ws17_c03248{word-spacing:-0.639744pt;}
.ws12_c03248{word-spacing:-0.105600pt;}
.ws15_c03248{word-spacing:-0.088704pt;}
.ws16_c03248{word-spacing:-0.076032pt;}
.ws11_c03248{word-spacing:0.000000pt;}
.ws14_c03248{word-spacing:0.384384pt;}
.wsc_c03248{word-spacing:29.600256pt;}
.wsa_c03248{word-spacing:30.966144pt;}
.ws9_c03248{word-spacing:32.127744pt;}
.ws6_c03248{word-spacing:32.659968pt;}
.ws1_c03248{word-spacing:33.563904pt;}
.ws0_c03248{word-spacing:33.796224pt;}
.ws3_c03248{word-spacing:34.860672pt;}
.ws5_c03248{word-spacing:35.468928pt;}
.ws8_c03248{word-spacing:37.357056pt;}
._0_c03248{margin-left:-1.731840pt;}
._2_c03248{width:1.317888pt;}
._4_c03248{width:5.111040pt;}
._1_c03248{width:44.668800pt;}
._3_c03248{width:45.805056pt;}
.fs0_c03248{font-size:42.240000pt;}
.fs1_c03248{font-size:53.760000pt;}
.y0_c03248{bottom:0.000000pt;}
.y19_c03248{bottom:130.665211pt;}
.y1b_c03248{bottom:165.866875pt;}
.y1a_c03248{bottom:174.507067pt;}
.y18_c03248{bottom:245.225371pt;}
.y17_c03248{bottom:317.225563pt;}
.y15_c03248{bottom:361.386427pt;}
.y11_c03248{bottom:377.386939pt;}
.y16_c03248{bottom:407.786011pt;}
.y14_c03248{bottom:437.226235pt;}
.y13_c03248{bottom:453.226747pt;}
.y10_c03248{bottom:482.666971pt;}
.y12_c03248{bottom:497.386555pt;}
.yf_c03248{bottom:513.387067pt;}
.y1c_c03248{bottom:546.027067pt;}
.yb_c03248{bottom:593.385179pt;}
.yd_c03248{bottom:628.586875pt;}
.yc_c03248{bottom:637.227067pt;}
.ya_c03248{bottom:707.945339pt;}
.y9_c03248{bottom:779.945531pt;}
.y7_c03248{bottom:823.786427pt;}
.y3_c03248{bottom:839.786939pt;}
.y8_c03248{bottom:870.505979pt;}
.y6_c03248{bottom:899.946203pt;}
.y5_c03248{bottom:915.946715pt;}
.y2_c03248{bottom:945.386939pt;}
.y4_c03248{bottom:959.786555pt;}
.y1_c03248{bottom:975.787067pt;}
.ye_c03248{bottom:1008.747067pt;}
.h3_c03248{height:28.916250pt;}
.h1_c03248{height:37.063125pt;}
.h2_c03248{height:37.166250pt;}
.h4_c03248{height:48.581988pt;}
.h0_c03248{height:1122.666667pt;}
.w1_c03248{width:793.333333pt;}
.w0_c03248{width:793.626667pt;}
.x0_c03248{left:0.000000pt;}
.xd_c03248{left:104.000000pt;}
.x8_c03248{left:391.999872pt;}
.x4_c03248{left:396.160512pt;}
.xb_c03248{left:400.960000pt;}
.x7_c03248{left:404.799648pt;}
.x5_c03248{left:410.560128pt;}
.x1_c03248{left:411.840000pt;}
.xa_c03248{left:429.760320pt;}
.x9_c03248{left:437.439552pt;}
.x6_c03248{left:438.400512pt;}
.xc_c03248{left:450.560320pt;}
.x3_c03248{left:455.039904pt;}
.x2_c03248{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03249 {
    display:none;
  }
  .loading-indicator_c03249.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03249 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03249 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03249" -> "#page-container .classname_c03249")
 */
.pf_c03249 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03249 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03249.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03249 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03249 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03249 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03249 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03249 {overflow:visible;}
  }
}
.c_c03249 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03249 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03249:after { /* webkit #35443 */
  content: '';
}
.t_c03249:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03249 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03249 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03249 { /* info for Javascript */
  display:none;
}
.l_c03249 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03249 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03249 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03249:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03249 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03249.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03249.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03249 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03249{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03249;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03249{font-family:ff1_c03249;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03249;src:url('chunks/assets/font_ebfcbbf67f046e4e23b29f7b.woff2')format("woff");}.ff2_c03249{font-family:ff2_c03249;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03249;src:url('chunks/assets/font_15d4fb6b8d14837c551de58b.woff2')format("woff");}.ff3_c03249{font-family:ff3_c03249;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03249{vertical-align:0.000000px;}
.v1_c03249{vertical-align:1.439424px;}
.ls7_c03249{letter-spacing:-0.613008px;}
.ls9_c03249{letter-spacing:-0.574992px;}
.ls15_c03249{letter-spacing:-0.361152px;}
.lse_c03249{letter-spacing:-0.275616px;}
.lsc_c03249{letter-spacing:-0.261360px;}
.ls6_c03249{letter-spacing:-0.242352px;}
.ls4_c03249{letter-spacing:-0.118800px;}
.ls13_c03249{letter-spacing:-0.014256px;}
.ls11_c03249{letter-spacing:0.000000px;}
.ls1_c03249{letter-spacing:0.006048px;}
.ls5_c03249{letter-spacing:0.128304px;}
.ls14_c03249{letter-spacing:0.166320px;}
.ls12_c03249{letter-spacing:0.190080px;}
.lsb_c03249{letter-spacing:0.508464px;}
.ls10_c03249{letter-spacing:0.514080px;}
.lsd_c03249{letter-spacing:0.536976px;}
.lsa_c03249{letter-spacing:0.579744px;}
.lsf_c03249{letter-spacing:0.594000px;}
.ls8_c03249{letter-spacing:0.598752px;}
.ls3_c03249{letter-spacing:0.613008px;}
.ls2_c03249{letter-spacing:0.717552px;}
.ls0_c03249{letter-spacing:0.722304px;}
.sc__c03249{text-shadow:none;}
.sc0_c03249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03249{-webkit-text-stroke:0px transparent;}
.sc0_c03249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03249{word-spacing:-15.126048px;}
.wsa_c03249{word-spacing:-12.474000px;}
.ws8_c03249{word-spacing:-12.459744px;}
.ws9_c03249{word-spacing:-12.416976px;}
.ws4_c03249{word-spacing:-11.637648px;}
.ws2_c03249{word-spacing:-11.266992px;}
.wsd_c03249{word-spacing:-1.810512px;}
.ws13_c03249{word-spacing:-1.083456px;}
.ws10_c03249{word-spacing:-0.974160px;}
.ws16_c03249{word-spacing:-0.719712px;}
.ws17_c03249{word-spacing:-0.551232px;}
.ws18_c03249{word-spacing:-0.346896px;}
.ws12_c03249{word-spacing:-0.118800px;}
.ws14_c03249{word-spacing:-0.099792px;}
.ws15_c03249{word-spacing:-0.085536px;}
.ws11_c03249{word-spacing:0.000000px;}
.wsf_c03249{word-spacing:6.149088px;}
.wsb_c03249{word-spacing:33.300288px;}
.wse_c03249{word-spacing:36.143712px;}
.ws6_c03249{word-spacing:36.742464px;}
.ws1_c03249{word-spacing:37.759392px;}
.ws0_c03249{word-spacing:38.020752px;}
.ws3_c03249{word-spacing:39.218256px;}
.ws5_c03249{word-spacing:39.902544px;}
.ws7_c03249{word-spacing:42.026688px;}
._0_c03249{margin-left:-1.948320px;}
._2_c03249{width:1.482624px;}
._4_c03249{width:5.749920px;}
._6_c03249{width:16.784064px;}
._5_c03249{width:19.972656px;}
._1_c03249{width:50.252400px;}
._3_c03249{width:51.530688px;}
.fc0_c03249{color:rgb(0,0,0);}
.fs0_c03249{font-size:47.520000px;}
.fs1_c03249{font-size:60.480000px;}
.y0_c03249{bottom:0.000000px;}
.y1a_c03249{bottom:146.998362px;}
.y1c_c03249{bottom:186.600234px;}
.y1b_c03249{bottom:196.320450px;}
.y19_c03249{bottom:260.758866px;}
.y18_c03249{bottom:275.878542px;}
.y17_c03249{bottom:356.878758px;}
.y15_c03249{bottom:406.559730px;}
.y11_c03249{bottom:424.560306px;}
.y16_c03249{bottom:458.759262px;}
.y14_c03249{bottom:491.879514px;}
.y13_c03249{bottom:509.880090px;}
.y10_c03249{bottom:543.000342px;}
.y12_c03249{bottom:559.559874px;}
.yf_c03249{bottom:577.560450px;}
.y1d_c03249{bottom:614.280450px;}
.yb_c03249{bottom:667.558326px;}
.yd_c03249{bottom:707.160234px;}
.yc_c03249{bottom:716.880450px;}
.ya_c03249{bottom:796.438506px;}
.y9_c03249{bottom:877.438722px;}
.y7_c03249{bottom:926.759730px;}
.y3_c03249{bottom:944.760306px;}
.y8_c03249{bottom:979.319226px;}
.y6_c03249{bottom:1012.439478px;}
.y5_c03249{bottom:1030.440054px;}
.y2_c03249{bottom:1063.560306px;}
.y4_c03249{bottom:1079.759874px;}
.y1_c03249{bottom:1097.760450px;}
.ye_c03249{bottom:1134.840450px;}
.h3_c03249{height:32.530781px;}
.h1_c03249{height:41.696016px;}
.h2_c03249{height:41.812031px;}
.h4_c03249{height:54.654737px;}
.h0_c03249{height:1263.000000px;}
.w1_c03249{width:892.500000px;}
.w0_c03249{width:892.830000px;}
.x0_c03249{left:0.000000px;}
.xd_c03249{left:117.000000px;}
.x8_c03249{left:440.999856px;}
.x4_c03249{left:445.680576px;}
.xb_c03249{left:451.080000px;}
.x7_c03249{left:455.399604px;}
.x5_c03249{left:461.880144px;}
.x1_c03249{left:463.320000px;}
.xa_c03249{left:483.480360px;}
.x9_c03249{left:492.119496px;}
.x6_c03249{left:493.200576px;}
.xc_c03249{left:506.880360px;}
.x3_c03249{left:511.919892px;}
.x2_c03249{left:526.679604px;}
.xe_c03249{left:569.880036px;}
@media print{
.v0_c03249{vertical-align:0.000000pt;}
.v1_c03249{vertical-align:1.279488pt;}
.ls7_c03249{letter-spacing:-0.544896pt;}
.ls9_c03249{letter-spacing:-0.511104pt;}
.ls15_c03249{letter-spacing:-0.321024pt;}
.lse_c03249{letter-spacing:-0.244992pt;}
.lsc_c03249{letter-spacing:-0.232320pt;}
.ls6_c03249{letter-spacing:-0.215424pt;}
.ls4_c03249{letter-spacing:-0.105600pt;}
.ls13_c03249{letter-spacing:-0.012672pt;}
.ls11_c03249{letter-spacing:0.000000pt;}
.ls1_c03249{letter-spacing:0.005376pt;}
.ls5_c03249{letter-spacing:0.114048pt;}
.ls14_c03249{letter-spacing:0.147840pt;}
.ls12_c03249{letter-spacing:0.168960pt;}
.lsb_c03249{letter-spacing:0.451968pt;}
.ls10_c03249{letter-spacing:0.456960pt;}
.lsd_c03249{letter-spacing:0.477312pt;}
.lsa_c03249{letter-spacing:0.515328pt;}
.lsf_c03249{letter-spacing:0.528000pt;}
.ls8_c03249{letter-spacing:0.532224pt;}
.ls3_c03249{letter-spacing:0.544896pt;}
.ls2_c03249{letter-spacing:0.637824pt;}
.ls0_c03249{letter-spacing:0.642048pt;}
.wsc_c03249{word-spacing:-13.445376pt;}
.wsa_c03249{word-spacing:-11.088000pt;}
.ws8_c03249{word-spacing:-11.075328pt;}
.ws9_c03249{word-spacing:-11.037312pt;}
.ws4_c03249{word-spacing:-10.344576pt;}
.ws2_c03249{word-spacing:-10.015104pt;}
.wsd_c03249{word-spacing:-1.609344pt;}
.ws13_c03249{word-spacing:-0.963072pt;}
.ws10_c03249{word-spacing:-0.865920pt;}
.ws16_c03249{word-spacing:-0.639744pt;}
.ws17_c03249{word-spacing:-0.489984pt;}
.ws18_c03249{word-spacing:-0.308352pt;}
.ws12_c03249{word-spacing:-0.105600pt;}
.ws14_c03249{word-spacing:-0.088704pt;}
.ws15_c03249{word-spacing:-0.076032pt;}
.ws11_c03249{word-spacing:0.000000pt;}
.wsf_c03249{word-spacing:5.465856pt;}
.wsb_c03249{word-spacing:29.600256pt;}
.wse_c03249{word-spacing:32.127744pt;}
.ws6_c03249{word-spacing:32.659968pt;}
.ws1_c03249{word-spacing:33.563904pt;}
.ws0_c03249{word-spacing:33.796224pt;}
.ws3_c03249{word-spacing:34.860672pt;}
.ws5_c03249{word-spacing:35.468928pt;}
.ws7_c03249{word-spacing:37.357056pt;}
._0_c03249{margin-left:-1.731840pt;}
._2_c03249{width:1.317888pt;}
._4_c03249{width:5.111040pt;}
._6_c03249{width:14.919168pt;}
._5_c03249{width:17.753472pt;}
._1_c03249{width:44.668800pt;}
._3_c03249{width:45.805056pt;}
.fs0_c03249{font-size:42.240000pt;}
.fs1_c03249{font-size:53.760000pt;}
.y0_c03249{bottom:0.000000pt;}
.y1a_c03249{bottom:130.665211pt;}
.y1c_c03249{bottom:165.866875pt;}
.y1b_c03249{bottom:174.507067pt;}
.y19_c03249{bottom:231.785659pt;}
.y18_c03249{bottom:245.225371pt;}
.y17_c03249{bottom:317.225563pt;}
.y15_c03249{bottom:361.386427pt;}
.y11_c03249{bottom:377.386939pt;}
.y16_c03249{bottom:407.786011pt;}
.y14_c03249{bottom:437.226235pt;}
.y13_c03249{bottom:453.226747pt;}
.y10_c03249{bottom:482.666971pt;}
.y12_c03249{bottom:497.386555pt;}
.yf_c03249{bottom:513.387067pt;}
.y1d_c03249{bottom:546.027067pt;}
.yb_c03249{bottom:593.385179pt;}
.yd_c03249{bottom:628.586875pt;}
.yc_c03249{bottom:637.227067pt;}
.ya_c03249{bottom:707.945339pt;}
.y9_c03249{bottom:779.945531pt;}
.y7_c03249{bottom:823.786427pt;}
.y3_c03249{bottom:839.786939pt;}
.y8_c03249{bottom:870.505979pt;}
.y6_c03249{bottom:899.946203pt;}
.y5_c03249{bottom:915.946715pt;}
.y2_c03249{bottom:945.386939pt;}
.y4_c03249{bottom:959.786555pt;}
.y1_c03249{bottom:975.787067pt;}
.ye_c03249{bottom:1008.747067pt;}
.h3_c03249{height:28.916250pt;}
.h1_c03249{height:37.063125pt;}
.h2_c03249{height:37.166250pt;}
.h4_c03249{height:48.581988pt;}
.h0_c03249{height:1122.666667pt;}
.w1_c03249{width:793.333333pt;}
.w0_c03249{width:793.626667pt;}
.x0_c03249{left:0.000000pt;}
.xd_c03249{left:104.000000pt;}
.x8_c03249{left:391.999872pt;}
.x4_c03249{left:396.160512pt;}
.xb_c03249{left:400.960000pt;}
.x7_c03249{left:404.799648pt;}
.x5_c03249{left:410.560128pt;}
.x1_c03249{left:411.840000pt;}
.xa_c03249{left:429.760320pt;}
.x9_c03249{left:437.439552pt;}
.x6_c03249{left:438.400512pt;}
.xc_c03249{left:450.560320pt;}
.x3_c03249{left:455.039904pt;}
.x2_c03249{left:468.159648pt;}
.xe_c03249{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03250 {
    display:none;
  }
  .loading-indicator_c03250.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03250 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03250 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03250" -> "#page-container .classname_c03250")
 */
.pf_c03250 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03250 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03250.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03250 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03250 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03250 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03250 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03250 {overflow:visible;}
  }
}
.c_c03250 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03250 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03250:after { /* webkit #35443 */
  content: '';
}
.t_c03250:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03250 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03250 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03250 { /* info for Javascript */
  display:none;
}
.l_c03250 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03250 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03250 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03250:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03250 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03250.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03250.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03250 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03250{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03250;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03250{font-family:ff1_c03250;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03250;src:url('chunks/assets/font_c2dc721a12a514ff6af629e3.woff2')format("woff");}.ff2_c03250{font-family:ff2_c03250;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03250;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03250{font-family:ff3_c03250;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03250{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03250{vertical-align:0.000000px;}
.v1_c03250{vertical-align:1.439424px;}
.lsc_c03250{letter-spacing:-1.197504px;}
.ls14_c03250{letter-spacing:-0.793584px;}
.lsf_c03250{letter-spacing:-0.760320px;}
.ls7_c03250{letter-spacing:-0.613008px;}
.ls9_c03250{letter-spacing:-0.574992px;}
.ls15_c03250{letter-spacing:-0.275616px;}
.ls10_c03250{letter-spacing:-0.270864px;}
.lsd_c03250{letter-spacing:-0.261360px;}
.ls6_c03250{letter-spacing:-0.242352px;}
.ls4_c03250{letter-spacing:-0.118800px;}
.ls13_c03250{letter-spacing:0.000000px;}
.ls1_c03250{letter-spacing:0.006048px;}
.ls5_c03250{letter-spacing:0.128304px;}
.lsb_c03250{letter-spacing:0.508464px;}
.ls12_c03250{letter-spacing:0.514080px;}
.lse_c03250{letter-spacing:0.536976px;}
.lsa_c03250{letter-spacing:0.579744px;}
.ls11_c03250{letter-spacing:0.594000px;}
.ls8_c03250{letter-spacing:0.598752px;}
.ls2_c03250{letter-spacing:0.613008px;}
.ls3_c03250{letter-spacing:0.717552px;}
.ls0_c03250{letter-spacing:0.722304px;}
.sc__c03250{text-shadow:none;}
.sc0_c03250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03250{-webkit-text-stroke:0px transparent;}
.sc0_c03250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03250{word-spacing:-15.126048px;}
.wsb_c03250{word-spacing:-12.474000px;}
.wse_c03250{word-spacing:-12.459744px;}
.wsf_c03250{word-spacing:-12.416976px;}
.ws4_c03250{word-spacing:-11.637648px;}
.ws2_c03250{word-spacing:-11.266992px;}
.ws13_c03250{word-spacing:-1.083456px;}
.ws10_c03250{word-spacing:-0.974160px;}
.ws18_c03250{word-spacing:-0.719712px;}
.ws12_c03250{word-spacing:-0.118800px;}
.ws15_c03250{word-spacing:-0.099792px;}
.ws16_c03250{word-spacing:-0.090288px;}
.ws17_c03250{word-spacing:-0.085536px;}
.ws11_c03250{word-spacing:0.000000px;}
.ws19_c03250{word-spacing:0.432432px;}
.ws14_c03250{word-spacing:0.836352px;}
.wsc_c03250{word-spacing:33.300288px;}
.ws9_c03250{word-spacing:34.836912px;}
.ws8_c03250{word-spacing:36.143712px;}
.ws6_c03250{word-spacing:36.742464px;}
.ws1_c03250{word-spacing:37.759392px;}
.ws0_c03250{word-spacing:38.020752px;}
.ws3_c03250{word-spacing:39.218256px;}
.wsa_c03250{word-spacing:39.322800px;}
.ws5_c03250{word-spacing:39.902544px;}
.ws7_c03250{word-spacing:42.026688px;}
._0_c03250{margin-left:-1.948320px;}
._2_c03250{width:1.482624px;}
._5_c03250{width:2.770416px;}
._4_c03250{width:5.749920px;}
._1_c03250{width:50.252400px;}
._3_c03250{width:51.530688px;}
._6_c03250{width:55.612656px;}
._7_c03250{width:56.952720px;}
.fc0_c03250{color:rgb(0,0,0);}
.fs0_c03250{font-size:47.520000px;}
.fs1_c03250{font-size:60.480000px;}
.y0_c03250{bottom:0.000000px;}
.y1a_c03250{bottom:146.998362px;}
.y1c_c03250{bottom:186.600234px;}
.y1b_c03250{bottom:196.320450px;}
.y19_c03250{bottom:275.878542px;}
.y18_c03250{bottom:356.878758px;}
.y16_c03250{bottom:406.559730px;}
.y12_c03250{bottom:424.560306px;}
.y17_c03250{bottom:458.759262px;}
.y15_c03250{bottom:491.879514px;}
.y14_c03250{bottom:509.880090px;}
.y11_c03250{bottom:543.000342px;}
.y13_c03250{bottom:559.559874px;}
.y10_c03250{bottom:577.560450px;}
.y1d_c03250{bottom:614.280450px;}
.yc_c03250{bottom:652.438650px;}
.yb_c03250{bottom:667.558326px;}
.ye_c03250{bottom:707.160234px;}
.yd_c03250{bottom:716.880450px;}
.ya_c03250{bottom:796.438506px;}
.y9_c03250{bottom:877.438722px;}
.y7_c03250{bottom:926.759730px;}
.y3_c03250{bottom:944.760306px;}
.y8_c03250{bottom:979.319226px;}
.y6_c03250{bottom:1012.439478px;}
.y5_c03250{bottom:1030.440054px;}
.y2_c03250{bottom:1063.560306px;}
.y4_c03250{bottom:1079.759874px;}
.y1_c03250{bottom:1097.760450px;}
.yf_c03250{bottom:1134.840450px;}
.h3_c03250{height:32.530781px;}
.h1_c03250{height:41.696016px;}
.h2_c03250{height:41.812031px;}
.h4_c03250{height:54.654737px;}
.h0_c03250{height:1263.000000px;}
.w1_c03250{width:892.500000px;}
.w0_c03250{width:892.830000px;}
.x0_c03250{left:0.000000px;}
.xe_c03250{left:117.000000px;}
.x8_c03250{left:440.999856px;}
.x4_c03250{left:445.680576px;}
.xc_c03250{left:451.080000px;}
.x7_c03250{left:455.399604px;}
.x5_c03250{left:461.880144px;}
.x1_c03250{left:463.320000px;}
.xa_c03250{left:483.480360px;}
.x9_c03250{left:492.119496px;}
.x6_c03250{left:493.200576px;}
.xd_c03250{left:506.880360px;}
.x3_c03250{left:511.919892px;}
.x2_c03250{left:526.679604px;}
.xb_c03250{left:569.880036px;}
@media print{
.v0_c03250{vertical-align:0.000000pt;}
.v1_c03250{vertical-align:1.279488pt;}
.lsc_c03250{letter-spacing:-1.064448pt;}
.ls14_c03250{letter-spacing:-0.705408pt;}
.lsf_c03250{letter-spacing:-0.675840pt;}
.ls7_c03250{letter-spacing:-0.544896pt;}
.ls9_c03250{letter-spacing:-0.511104pt;}
.ls15_c03250{letter-spacing:-0.244992pt;}
.ls10_c03250{letter-spacing:-0.240768pt;}
.lsd_c03250{letter-spacing:-0.232320pt;}
.ls6_c03250{letter-spacing:-0.215424pt;}
.ls4_c03250{letter-spacing:-0.105600pt;}
.ls13_c03250{letter-spacing:0.000000pt;}
.ls1_c03250{letter-spacing:0.005376pt;}
.ls5_c03250{letter-spacing:0.114048pt;}
.lsb_c03250{letter-spacing:0.451968pt;}
.ls12_c03250{letter-spacing:0.456960pt;}
.lse_c03250{letter-spacing:0.477312pt;}
.lsa_c03250{letter-spacing:0.515328pt;}
.ls11_c03250{letter-spacing:0.528000pt;}
.ls8_c03250{letter-spacing:0.532224pt;}
.ls2_c03250{letter-spacing:0.544896pt;}
.ls3_c03250{letter-spacing:0.637824pt;}
.ls0_c03250{letter-spacing:0.642048pt;}
.wsd_c03250{word-spacing:-13.445376pt;}
.wsb_c03250{word-spacing:-11.088000pt;}
.wse_c03250{word-spacing:-11.075328pt;}
.wsf_c03250{word-spacing:-11.037312pt;}
.ws4_c03250{word-spacing:-10.344576pt;}
.ws2_c03250{word-spacing:-10.015104pt;}
.ws13_c03250{word-spacing:-0.963072pt;}
.ws10_c03250{word-spacing:-0.865920pt;}
.ws18_c03250{word-spacing:-0.639744pt;}
.ws12_c03250{word-spacing:-0.105600pt;}
.ws15_c03250{word-spacing:-0.088704pt;}
.ws16_c03250{word-spacing:-0.080256pt;}
.ws17_c03250{word-spacing:-0.076032pt;}
.ws11_c03250{word-spacing:0.000000pt;}
.ws19_c03250{word-spacing:0.384384pt;}
.ws14_c03250{word-spacing:0.743424pt;}
.wsc_c03250{word-spacing:29.600256pt;}
.ws9_c03250{word-spacing:30.966144pt;}
.ws8_c03250{word-spacing:32.127744pt;}
.ws6_c03250{word-spacing:32.659968pt;}
.ws1_c03250{word-spacing:33.563904pt;}
.ws0_c03250{word-spacing:33.796224pt;}
.ws3_c03250{word-spacing:34.860672pt;}
.wsa_c03250{word-spacing:34.953600pt;}
.ws5_c03250{word-spacing:35.468928pt;}
.ws7_c03250{word-spacing:37.357056pt;}
._0_c03250{margin-left:-1.731840pt;}
._2_c03250{width:1.317888pt;}
._5_c03250{width:2.462592pt;}
._4_c03250{width:5.111040pt;}
._1_c03250{width:44.668800pt;}
._3_c03250{width:45.805056pt;}
._6_c03250{width:49.433472pt;}
._7_c03250{width:50.624640pt;}
.fs0_c03250{font-size:42.240000pt;}
.fs1_c03250{font-size:53.760000pt;}
.y0_c03250{bottom:0.000000pt;}
.y1a_c03250{bottom:130.665211pt;}
.y1c_c03250{bottom:165.866875pt;}
.y1b_c03250{bottom:174.507067pt;}
.y19_c03250{bottom:245.225371pt;}
.y18_c03250{bottom:317.225563pt;}
.y16_c03250{bottom:361.386427pt;}
.y12_c03250{bottom:377.386939pt;}
.y17_c03250{bottom:407.786011pt;}
.y15_c03250{bottom:437.226235pt;}
.y14_c03250{bottom:453.226747pt;}
.y11_c03250{bottom:482.666971pt;}
.y13_c03250{bottom:497.386555pt;}
.y10_c03250{bottom:513.387067pt;}
.y1d_c03250{bottom:546.027067pt;}
.yc_c03250{bottom:579.945467pt;}
.yb_c03250{bottom:593.385179pt;}
.ye_c03250{bottom:628.586875pt;}
.yd_c03250{bottom:637.227067pt;}
.ya_c03250{bottom:707.945339pt;}
.y9_c03250{bottom:779.945531pt;}
.y7_c03250{bottom:823.786427pt;}
.y3_c03250{bottom:839.786939pt;}
.y8_c03250{bottom:870.505979pt;}
.y6_c03250{bottom:899.946203pt;}
.y5_c03250{bottom:915.946715pt;}
.y2_c03250{bottom:945.386939pt;}
.y4_c03250{bottom:959.786555pt;}
.y1_c03250{bottom:975.787067pt;}
.yf_c03250{bottom:1008.747067pt;}
.h3_c03250{height:28.916250pt;}
.h1_c03250{height:37.063125pt;}
.h2_c03250{height:37.166250pt;}
.h4_c03250{height:48.581988pt;}
.h0_c03250{height:1122.666667pt;}
.w1_c03250{width:793.333333pt;}
.w0_c03250{width:793.626667pt;}
.x0_c03250{left:0.000000pt;}
.xe_c03250{left:104.000000pt;}
.x8_c03250{left:391.999872pt;}
.x4_c03250{left:396.160512pt;}
.xc_c03250{left:400.960000pt;}
.x7_c03250{left:404.799648pt;}
.x5_c03250{left:410.560128pt;}
.x1_c03250{left:411.840000pt;}
.xa_c03250{left:429.760320pt;}
.x9_c03250{left:437.439552pt;}
.x6_c03250{left:438.400512pt;}
.xd_c03250{left:450.560320pt;}
.x3_c03250{left:455.039904pt;}
.x2_c03250{left:468.159648pt;}
.xb_c03250{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03251 {
    display:none;
  }
  .loading-indicator_c03251.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03251 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03251 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03251" -> "#page-container .classname_c03251")
 */
.pf_c03251 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03251 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03251.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03251 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03251 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03251 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03251 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03251 {overflow:visible;}
  }
}
.c_c03251 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03251 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03251:after { /* webkit #35443 */
  content: '';
}
.t_c03251:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03251 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03251 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03251 { /* info for Javascript */
  display:none;
}
.l_c03251 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03251 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03251 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03251:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03251 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03251.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03251.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03251 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03251{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03251;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03251{font-family:ff1_c03251;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03251;src:url('chunks/assets/font_7f2ea3d61e43c2c3681ade2f.woff2')format("woff");}.ff2_c03251{font-family:ff2_c03251;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03251;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03251{font-family:ff3_c03251;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03251{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03251{vertical-align:0.000000px;}
.v1_c03251{vertical-align:1.439424px;}
.lsb_c03251{letter-spacing:-0.807840px;}
.lsd_c03251{letter-spacing:-0.793584px;}
.ls14_c03251{letter-spacing:-0.722304px;}
.ls7_c03251{letter-spacing:-0.613008px;}
.ls9_c03251{letter-spacing:-0.574992px;}
.ls15_c03251{letter-spacing:-0.389664px;}
.ls10_c03251{letter-spacing:-0.275616px;}
.lse_c03251{letter-spacing:-0.261360px;}
.ls6_c03251{letter-spacing:-0.242352px;}
.ls4_c03251{letter-spacing:-0.118800px;}
.ls13_c03251{letter-spacing:0.000000px;}
.ls1_c03251{letter-spacing:0.006048px;}
.ls5_c03251{letter-spacing:0.128304px;}
.lsc_c03251{letter-spacing:0.508464px;}
.ls12_c03251{letter-spacing:0.514080px;}
.lsf_c03251{letter-spacing:0.536976px;}
.lsa_c03251{letter-spacing:0.579744px;}
.ls11_c03251{letter-spacing:0.594000px;}
.ls8_c03251{letter-spacing:0.598752px;}
.ls2_c03251{letter-spacing:0.613008px;}
.ls3_c03251{letter-spacing:0.717552px;}
.ls0_c03251{letter-spacing:0.722304px;}
.sc__c03251{text-shadow:none;}
.sc0_c03251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03251{-webkit-text-stroke:0px transparent;}
.sc0_c03251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03251{word-spacing:-15.126048px;}
.wsa_c03251{word-spacing:-12.474000px;}
.ws8_c03251{word-spacing:-12.459744px;}
.ws9_c03251{word-spacing:-12.416976px;}
.ws4_c03251{word-spacing:-11.637648px;}
.ws2_c03251{word-spacing:-11.266992px;}
.ws11_c03251{word-spacing:-1.083456px;}
.wse_c03251{word-spacing:-0.974160px;}
.ws16_c03251{word-spacing:-0.719712px;}
.ws10_c03251{word-spacing:-0.118800px;}
.ws14_c03251{word-spacing:-0.099792px;}
.ws15_c03251{word-spacing:-0.085536px;}
.wsf_c03251{word-spacing:0.000000px;}
.ws18_c03251{word-spacing:0.028512px;}
.ws17_c03251{word-spacing:0.361152px;}
.ws13_c03251{word-spacing:0.432432px;}
.ws12_c03251{word-spacing:0.446688px;}
.wsb_c03251{word-spacing:33.300288px;}
.wsd_c03251{word-spacing:36.143712px;}
.ws6_c03251{word-spacing:36.742464px;}
.ws1_c03251{word-spacing:37.759392px;}
.ws0_c03251{word-spacing:38.020752px;}
.ws3_c03251{word-spacing:39.218256px;}
.ws5_c03251{word-spacing:39.902544px;}
.ws7_c03251{word-spacing:42.026688px;}
._0_c03251{margin-left:-1.948320px;}
._2_c03251{width:1.482624px;}
._5_c03251{width:2.756160px;}
._4_c03251{width:5.749920px;}
._1_c03251{width:50.252400px;}
._3_c03251{width:51.530688px;}
.fc0_c03251{color:rgb(0,0,0);}
.fs0_c03251{font-size:47.520000px;}
.fs1_c03251{font-size:60.480000px;}
.y0_c03251{bottom:0.000000px;}
.y19_c03251{bottom:146.998362px;}
.y1b_c03251{bottom:186.600234px;}
.y1a_c03251{bottom:196.320450px;}
.y18_c03251{bottom:275.878542px;}
.y17_c03251{bottom:356.878758px;}
.y15_c03251{bottom:406.559730px;}
.y11_c03251{bottom:424.560306px;}
.y16_c03251{bottom:458.759262px;}
.y14_c03251{bottom:491.879514px;}
.y13_c03251{bottom:509.880090px;}
.y10_c03251{bottom:543.000342px;}
.y12_c03251{bottom:559.559874px;}
.yf_c03251{bottom:577.560450px;}
.y1c_c03251{bottom:614.280450px;}
.yb_c03251{bottom:667.558326px;}
.yd_c03251{bottom:707.160234px;}
.yc_c03251{bottom:716.880450px;}
.ya_c03251{bottom:796.438506px;}
.y9_c03251{bottom:877.438722px;}
.y7_c03251{bottom:926.759730px;}
.y3_c03251{bottom:944.760306px;}
.y8_c03251{bottom:979.319226px;}
.y6_c03251{bottom:1012.439478px;}
.y5_c03251{bottom:1030.440054px;}
.y2_c03251{bottom:1063.560306px;}
.y4_c03251{bottom:1079.759874px;}
.y1_c03251{bottom:1097.760450px;}
.ye_c03251{bottom:1134.840450px;}
.h3_c03251{height:32.530781px;}
.h1_c03251{height:41.696016px;}
.h2_c03251{height:41.812031px;}
.h4_c03251{height:54.654737px;}
.h0_c03251{height:1263.000000px;}
.w1_c03251{width:892.500000px;}
.w0_c03251{width:892.830000px;}
.x0_c03251{left:0.000000px;}
.xd_c03251{left:117.000000px;}
.x8_c03251{left:440.999856px;}
.x4_c03251{left:445.680576px;}
.xb_c03251{left:451.080000px;}
.x7_c03251{left:455.399604px;}
.x5_c03251{left:461.880144px;}
.x1_c03251{left:463.320000px;}
.xa_c03251{left:483.480360px;}
.x9_c03251{left:492.119496px;}
.x6_c03251{left:493.200576px;}
.xc_c03251{left:506.880360px;}
.x3_c03251{left:511.919892px;}
.x2_c03251{left:526.679604px;}
@media print{
.v0_c03251{vertical-align:0.000000pt;}
.v1_c03251{vertical-align:1.279488pt;}
.lsb_c03251{letter-spacing:-0.718080pt;}
.lsd_c03251{letter-spacing:-0.705408pt;}
.ls14_c03251{letter-spacing:-0.642048pt;}
.ls7_c03251{letter-spacing:-0.544896pt;}
.ls9_c03251{letter-spacing:-0.511104pt;}
.ls15_c03251{letter-spacing:-0.346368pt;}
.ls10_c03251{letter-spacing:-0.244992pt;}
.lse_c03251{letter-spacing:-0.232320pt;}
.ls6_c03251{letter-spacing:-0.215424pt;}
.ls4_c03251{letter-spacing:-0.105600pt;}
.ls13_c03251{letter-spacing:0.000000pt;}
.ls1_c03251{letter-spacing:0.005376pt;}
.ls5_c03251{letter-spacing:0.114048pt;}
.lsc_c03251{letter-spacing:0.451968pt;}
.ls12_c03251{letter-spacing:0.456960pt;}
.lsf_c03251{letter-spacing:0.477312pt;}
.lsa_c03251{letter-spacing:0.515328pt;}
.ls11_c03251{letter-spacing:0.528000pt;}
.ls8_c03251{letter-spacing:0.532224pt;}
.ls2_c03251{letter-spacing:0.544896pt;}
.ls3_c03251{letter-spacing:0.637824pt;}
.ls0_c03251{letter-spacing:0.642048pt;}
.wsc_c03251{word-spacing:-13.445376pt;}
.wsa_c03251{word-spacing:-11.088000pt;}
.ws8_c03251{word-spacing:-11.075328pt;}
.ws9_c03251{word-spacing:-11.037312pt;}
.ws4_c03251{word-spacing:-10.344576pt;}
.ws2_c03251{word-spacing:-10.015104pt;}
.ws11_c03251{word-spacing:-0.963072pt;}
.wse_c03251{word-spacing:-0.865920pt;}
.ws16_c03251{word-spacing:-0.639744pt;}
.ws10_c03251{word-spacing:-0.105600pt;}
.ws14_c03251{word-spacing:-0.088704pt;}
.ws15_c03251{word-spacing:-0.076032pt;}
.wsf_c03251{word-spacing:0.000000pt;}
.ws18_c03251{word-spacing:0.025344pt;}
.ws17_c03251{word-spacing:0.321024pt;}
.ws13_c03251{word-spacing:0.384384pt;}
.ws12_c03251{word-spacing:0.397056pt;}
.wsb_c03251{word-spacing:29.600256pt;}
.wsd_c03251{word-spacing:32.127744pt;}
.ws6_c03251{word-spacing:32.659968pt;}
.ws1_c03251{word-spacing:33.563904pt;}
.ws0_c03251{word-spacing:33.796224pt;}
.ws3_c03251{word-spacing:34.860672pt;}
.ws5_c03251{word-spacing:35.468928pt;}
.ws7_c03251{word-spacing:37.357056pt;}
._0_c03251{margin-left:-1.731840pt;}
._2_c03251{width:1.317888pt;}
._5_c03251{width:2.449920pt;}
._4_c03251{width:5.111040pt;}
._1_c03251{width:44.668800pt;}
._3_c03251{width:45.805056pt;}
.fs0_c03251{font-size:42.240000pt;}
.fs1_c03251{font-size:53.760000pt;}
.y0_c03251{bottom:0.000000pt;}
.y19_c03251{bottom:130.665211pt;}
.y1b_c03251{bottom:165.866875pt;}
.y1a_c03251{bottom:174.507067pt;}
.y18_c03251{bottom:245.225371pt;}
.y17_c03251{bottom:317.225563pt;}
.y15_c03251{bottom:361.386427pt;}
.y11_c03251{bottom:377.386939pt;}
.y16_c03251{bottom:407.786011pt;}
.y14_c03251{bottom:437.226235pt;}
.y13_c03251{bottom:453.226747pt;}
.y10_c03251{bottom:482.666971pt;}
.y12_c03251{bottom:497.386555pt;}
.yf_c03251{bottom:513.387067pt;}
.y1c_c03251{bottom:546.027067pt;}
.yb_c03251{bottom:593.385179pt;}
.yd_c03251{bottom:628.586875pt;}
.yc_c03251{bottom:637.227067pt;}
.ya_c03251{bottom:707.945339pt;}
.y9_c03251{bottom:779.945531pt;}
.y7_c03251{bottom:823.786427pt;}
.y3_c03251{bottom:839.786939pt;}
.y8_c03251{bottom:870.505979pt;}
.y6_c03251{bottom:899.946203pt;}
.y5_c03251{bottom:915.946715pt;}
.y2_c03251{bottom:945.386939pt;}
.y4_c03251{bottom:959.786555pt;}
.y1_c03251{bottom:975.787067pt;}
.ye_c03251{bottom:1008.747067pt;}
.h3_c03251{height:28.916250pt;}
.h1_c03251{height:37.063125pt;}
.h2_c03251{height:37.166250pt;}
.h4_c03251{height:48.581988pt;}
.h0_c03251{height:1122.666667pt;}
.w1_c03251{width:793.333333pt;}
.w0_c03251{width:793.626667pt;}
.x0_c03251{left:0.000000pt;}
.xd_c03251{left:104.000000pt;}
.x8_c03251{left:391.999872pt;}
.x4_c03251{left:396.160512pt;}
.xb_c03251{left:400.960000pt;}
.x7_c03251{left:404.799648pt;}
.x5_c03251{left:410.560128pt;}
.x1_c03251{left:411.840000pt;}
.xa_c03251{left:429.760320pt;}
.x9_c03251{left:437.439552pt;}
.x6_c03251{left:438.400512pt;}
.xc_c03251{left:450.560320pt;}
.x3_c03251{left:455.039904pt;}
.x2_c03251{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03252 {
    display:none;
  }
  .loading-indicator_c03252.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03252 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03252 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03252" -> "#page-container .classname_c03252")
 */
.pf_c03252 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03252 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03252.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03252 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03252 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03252 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03252 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03252 {overflow:visible;}
  }
}
.c_c03252 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03252 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03252:after { /* webkit #35443 */
  content: '';
}
.t_c03252:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03252 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03252 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03252 { /* info for Javascript */
  display:none;
}
.l_c03252 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03252 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03252 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03252:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03252 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03252.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03252.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03252 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03252{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03252;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03252{font-family:ff1_c03252;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03252;src:url('chunks/assets/font_99f9651ae295336ccb40f5ba.woff2')format("woff");}.ff2_c03252{font-family:ff2_c03252;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03252;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03252{font-family:ff3_c03252;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03252{vertical-align:0.000000px;}
.v1_c03252{vertical-align:1.439424px;}
.lsc_c03252{letter-spacing:-1.197504px;}
.ls7_c03252{letter-spacing:-0.613008px;}
.ls9_c03252{letter-spacing:-0.574992px;}
.lsf_c03252{letter-spacing:-0.275616px;}
.lsd_c03252{letter-spacing:-0.261360px;}
.ls6_c03252{letter-spacing:-0.242352px;}
.ls4_c03252{letter-spacing:-0.118800px;}
.ls12_c03252{letter-spacing:0.000000px;}
.ls1_c03252{letter-spacing:0.006048px;}
.ls5_c03252{letter-spacing:0.128304px;}
.lsb_c03252{letter-spacing:0.508464px;}
.ls11_c03252{letter-spacing:0.514080px;}
.lse_c03252{letter-spacing:0.536976px;}
.lsa_c03252{letter-spacing:0.579744px;}
.ls10_c03252{letter-spacing:0.594000px;}
.ls8_c03252{letter-spacing:0.598752px;}
.ls2_c03252{letter-spacing:0.613008px;}
.ls3_c03252{letter-spacing:0.717552px;}
.ls0_c03252{letter-spacing:0.722304px;}
.sc__c03252{text-shadow:none;}
.sc0_c03252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03252{-webkit-text-stroke:0px transparent;}
.sc0_c03252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03252{word-spacing:-15.126048px;}
.wsa_c03252{word-spacing:-12.474000px;}
.ws8_c03252{word-spacing:-12.459744px;}
.ws9_c03252{word-spacing:-12.416976px;}
.ws4_c03252{word-spacing:-11.637648px;}
.ws2_c03252{word-spacing:-11.266992px;}
.ws10_c03252{word-spacing:-1.083456px;}
.wsd_c03252{word-spacing:-0.974160px;}
.ws14_c03252{word-spacing:-0.719712px;}
.wsf_c03252{word-spacing:-0.118800px;}
.ws12_c03252{word-spacing:-0.099792px;}
.ws13_c03252{word-spacing:-0.085536px;}
.wse_c03252{word-spacing:0.000000px;}
.ws11_c03252{word-spacing:0.836352px;}
.wsb_c03252{word-spacing:33.300288px;}
.ws6_c03252{word-spacing:36.742464px;}
.ws1_c03252{word-spacing:37.759392px;}
.ws0_c03252{word-spacing:38.020752px;}
.ws3_c03252{word-spacing:39.218256px;}
.ws5_c03252{word-spacing:39.902544px;}
.ws7_c03252{word-spacing:42.026688px;}
._0_c03252{margin-left:-1.948320px;}
._2_c03252{width:1.482624px;}
._5_c03252{width:2.770416px;}
._4_c03252{width:5.749920px;}
._1_c03252{width:50.252400px;}
._3_c03252{width:51.530688px;}
.fc0_c03252{color:rgb(0,0,0);}
.fs0_c03252{font-size:47.520000px;}
.fs1_c03252{font-size:60.480000px;}
.y0_c03252{bottom:0.000000px;}
.y19_c03252{bottom:146.998362px;}
.y1b_c03252{bottom:186.600234px;}
.y1a_c03252{bottom:196.320450px;}
.y18_c03252{bottom:275.878542px;}
.y17_c03252{bottom:356.878758px;}
.y15_c03252{bottom:406.559730px;}
.y11_c03252{bottom:424.560306px;}
.y16_c03252{bottom:458.759262px;}
.y14_c03252{bottom:491.879514px;}
.y13_c03252{bottom:509.880090px;}
.y10_c03252{bottom:543.000342px;}
.y12_c03252{bottom:559.559874px;}
.yf_c03252{bottom:577.560450px;}
.y1c_c03252{bottom:614.280450px;}
.yb_c03252{bottom:667.558326px;}
.yd_c03252{bottom:707.160234px;}
.yc_c03252{bottom:716.880450px;}
.ya_c03252{bottom:796.438506px;}
.y9_c03252{bottom:877.438722px;}
.y7_c03252{bottom:926.759730px;}
.y3_c03252{bottom:944.760306px;}
.y8_c03252{bottom:979.319226px;}
.y6_c03252{bottom:1012.439478px;}
.y5_c03252{bottom:1030.440054px;}
.y2_c03252{bottom:1063.560306px;}
.y4_c03252{bottom:1079.759874px;}
.y1_c03252{bottom:1097.760450px;}
.ye_c03252{bottom:1134.840450px;}
.h3_c03252{height:32.530781px;}
.h1_c03252{height:41.696016px;}
.h2_c03252{height:41.812031px;}
.h4_c03252{height:54.654737px;}
.h0_c03252{height:1263.000000px;}
.w1_c03252{width:892.500000px;}
.w0_c03252{width:892.830000px;}
.x0_c03252{left:0.000000px;}
.xd_c03252{left:117.000000px;}
.x8_c03252{left:440.999856px;}
.x4_c03252{left:445.680576px;}
.xb_c03252{left:451.080000px;}
.x7_c03252{left:455.399604px;}
.x5_c03252{left:461.880144px;}
.x1_c03252{left:463.320000px;}
.xa_c03252{left:483.480360px;}
.x9_c03252{left:492.119496px;}
.x6_c03252{left:493.200576px;}
.xc_c03252{left:506.880360px;}
.x3_c03252{left:511.919892px;}
.x2_c03252{left:526.679604px;}
@media print{
.v0_c03252{vertical-align:0.000000pt;}
.v1_c03252{vertical-align:1.279488pt;}
.lsc_c03252{letter-spacing:-1.064448pt;}
.ls7_c03252{letter-spacing:-0.544896pt;}
.ls9_c03252{letter-spacing:-0.511104pt;}
.lsf_c03252{letter-spacing:-0.244992pt;}
.lsd_c03252{letter-spacing:-0.232320pt;}
.ls6_c03252{letter-spacing:-0.215424pt;}
.ls4_c03252{letter-spacing:-0.105600pt;}
.ls12_c03252{letter-spacing:0.000000pt;}
.ls1_c03252{letter-spacing:0.005376pt;}
.ls5_c03252{letter-spacing:0.114048pt;}
.lsb_c03252{letter-spacing:0.451968pt;}
.ls11_c03252{letter-spacing:0.456960pt;}
.lse_c03252{letter-spacing:0.477312pt;}
.lsa_c03252{letter-spacing:0.515328pt;}
.ls10_c03252{letter-spacing:0.528000pt;}
.ls8_c03252{letter-spacing:0.532224pt;}
.ls2_c03252{letter-spacing:0.544896pt;}
.ls3_c03252{letter-spacing:0.637824pt;}
.ls0_c03252{letter-spacing:0.642048pt;}
.wsc_c03252{word-spacing:-13.445376pt;}
.wsa_c03252{word-spacing:-11.088000pt;}
.ws8_c03252{word-spacing:-11.075328pt;}
.ws9_c03252{word-spacing:-11.037312pt;}
.ws4_c03252{word-spacing:-10.344576pt;}
.ws2_c03252{word-spacing:-10.015104pt;}
.ws10_c03252{word-spacing:-0.963072pt;}
.wsd_c03252{word-spacing:-0.865920pt;}
.ws14_c03252{word-spacing:-0.639744pt;}
.wsf_c03252{word-spacing:-0.105600pt;}
.ws12_c03252{word-spacing:-0.088704pt;}
.ws13_c03252{word-spacing:-0.076032pt;}
.wse_c03252{word-spacing:0.000000pt;}
.ws11_c03252{word-spacing:0.743424pt;}
.wsb_c03252{word-spacing:29.600256pt;}
.ws6_c03252{word-spacing:32.659968pt;}
.ws1_c03252{word-spacing:33.563904pt;}
.ws0_c03252{word-spacing:33.796224pt;}
.ws3_c03252{word-spacing:34.860672pt;}
.ws5_c03252{word-spacing:35.468928pt;}
.ws7_c03252{word-spacing:37.357056pt;}
._0_c03252{margin-left:-1.731840pt;}
._2_c03252{width:1.317888pt;}
._5_c03252{width:2.462592pt;}
._4_c03252{width:5.111040pt;}
._1_c03252{width:44.668800pt;}
._3_c03252{width:45.805056pt;}
.fs0_c03252{font-size:42.240000pt;}
.fs1_c03252{font-size:53.760000pt;}
.y0_c03252{bottom:0.000000pt;}
.y19_c03252{bottom:130.665211pt;}
.y1b_c03252{bottom:165.866875pt;}
.y1a_c03252{bottom:174.507067pt;}
.y18_c03252{bottom:245.225371pt;}
.y17_c03252{bottom:317.225563pt;}
.y15_c03252{bottom:361.386427pt;}
.y11_c03252{bottom:377.386939pt;}
.y16_c03252{bottom:407.786011pt;}
.y14_c03252{bottom:437.226235pt;}
.y13_c03252{bottom:453.226747pt;}
.y10_c03252{bottom:482.666971pt;}
.y12_c03252{bottom:497.386555pt;}
.yf_c03252{bottom:513.387067pt;}
.y1c_c03252{bottom:546.027067pt;}
.yb_c03252{bottom:593.385179pt;}
.yd_c03252{bottom:628.586875pt;}
.yc_c03252{bottom:637.227067pt;}
.ya_c03252{bottom:707.945339pt;}
.y9_c03252{bottom:779.945531pt;}
.y7_c03252{bottom:823.786427pt;}
.y3_c03252{bottom:839.786939pt;}
.y8_c03252{bottom:870.505979pt;}
.y6_c03252{bottom:899.946203pt;}
.y5_c03252{bottom:915.946715pt;}
.y2_c03252{bottom:945.386939pt;}
.y4_c03252{bottom:959.786555pt;}
.y1_c03252{bottom:975.787067pt;}
.ye_c03252{bottom:1008.747067pt;}
.h3_c03252{height:28.916250pt;}
.h1_c03252{height:37.063125pt;}
.h2_c03252{height:37.166250pt;}
.h4_c03252{height:48.581988pt;}
.h0_c03252{height:1122.666667pt;}
.w1_c03252{width:793.333333pt;}
.w0_c03252{width:793.626667pt;}
.x0_c03252{left:0.000000pt;}
.xd_c03252{left:104.000000pt;}
.x8_c03252{left:391.999872pt;}
.x4_c03252{left:396.160512pt;}
.xb_c03252{left:400.960000pt;}
.x7_c03252{left:404.799648pt;}
.x5_c03252{left:410.560128pt;}
.x1_c03252{left:411.840000pt;}
.xa_c03252{left:429.760320pt;}
.x9_c03252{left:437.439552pt;}
.x6_c03252{left:438.400512pt;}
.xc_c03252{left:450.560320pt;}
.x3_c03252{left:455.039904pt;}
.x2_c03252{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03253 {
    display:none;
  }
  .loading-indicator_c03253.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03253 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03253 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03253" -> "#page-container .classname_c03253")
 */
.pf_c03253 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03253 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03253.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03253 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03253 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03253 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03253 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03253 {overflow:visible;}
  }
}
.c_c03253 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03253 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03253:after { /* webkit #35443 */
  content: '';
}
.t_c03253:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03253 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03253 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03253 { /* info for Javascript */
  display:none;
}
.l_c03253 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03253 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03253 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03253:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03253 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03253.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03253.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03253 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03253{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03253;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03253{font-family:ff1_c03253;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03253;src:url('chunks/assets/font_277c9680ad7326493e692bf0.woff2')format("woff");}.ff2_c03253{font-family:ff2_c03253;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03253;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03253{font-family:ff3_c03253;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03253{vertical-align:0.000000px;}
.v1_c03253{vertical-align:1.439424px;}
.lsc_c03253{letter-spacing:-1.197504px;}
.ls7_c03253{letter-spacing:-0.613008px;}
.ls9_c03253{letter-spacing:-0.574992px;}
.lsf_c03253{letter-spacing:-0.275616px;}
.lsd_c03253{letter-spacing:-0.261360px;}
.ls6_c03253{letter-spacing:-0.242352px;}
.ls4_c03253{letter-spacing:-0.118800px;}
.ls12_c03253{letter-spacing:0.000000px;}
.ls1_c03253{letter-spacing:0.006048px;}
.ls5_c03253{letter-spacing:0.128304px;}
.lsb_c03253{letter-spacing:0.508464px;}
.ls11_c03253{letter-spacing:0.514080px;}
.lse_c03253{letter-spacing:0.536976px;}
.lsa_c03253{letter-spacing:0.579744px;}
.ls10_c03253{letter-spacing:0.594000px;}
.ls8_c03253{letter-spacing:0.598752px;}
.ls2_c03253{letter-spacing:0.613008px;}
.ls3_c03253{letter-spacing:0.717552px;}
.ls0_c03253{letter-spacing:0.722304px;}
.sc__c03253{text-shadow:none;}
.sc0_c03253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03253{-webkit-text-stroke:0px transparent;}
.sc0_c03253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03253{word-spacing:-15.126048px;}
.wsa_c03253{word-spacing:-12.474000px;}
.ws8_c03253{word-spacing:-12.459744px;}
.ws9_c03253{word-spacing:-12.416976px;}
.ws4_c03253{word-spacing:-11.637648px;}
.ws2_c03253{word-spacing:-11.266992px;}
.ws11_c03253{word-spacing:-1.083456px;}
.wse_c03253{word-spacing:-0.974160px;}
.ws15_c03253{word-spacing:-0.719712px;}
.ws10_c03253{word-spacing:-0.118800px;}
.ws13_c03253{word-spacing:-0.099792px;}
.ws14_c03253{word-spacing:-0.085536px;}
.wsf_c03253{word-spacing:0.000000px;}
.ws12_c03253{word-spacing:0.836352px;}
.wsb_c03253{word-spacing:33.300288px;}
.wsd_c03253{word-spacing:36.143712px;}
.ws6_c03253{word-spacing:36.742464px;}
.ws1_c03253{word-spacing:37.759392px;}
.ws0_c03253{word-spacing:38.020752px;}
.ws3_c03253{word-spacing:39.218256px;}
.ws5_c03253{word-spacing:39.902544px;}
.ws7_c03253{word-spacing:42.026688px;}
._0_c03253{margin-left:-1.948320px;}
._2_c03253{width:1.482624px;}
._5_c03253{width:2.770416px;}
._4_c03253{width:5.749920px;}
._1_c03253{width:50.252400px;}
._3_c03253{width:51.530688px;}
.fc0_c03253{color:rgb(0,0,0);}
.fs0_c03253{font-size:47.520000px;}
.fs1_c03253{font-size:60.480000px;}
.y0_c03253{bottom:0.000000px;}
.y19_c03253{bottom:146.998362px;}
.y1b_c03253{bottom:186.600234px;}
.y1a_c03253{bottom:196.320450px;}
.y18_c03253{bottom:275.878542px;}
.y17_c03253{bottom:356.878758px;}
.y15_c03253{bottom:406.559730px;}
.y11_c03253{bottom:424.560306px;}
.y16_c03253{bottom:458.759262px;}
.y14_c03253{bottom:491.879514px;}
.y13_c03253{bottom:509.880090px;}
.y10_c03253{bottom:543.000342px;}
.y12_c03253{bottom:559.559874px;}
.yf_c03253{bottom:577.560450px;}
.y1c_c03253{bottom:614.280450px;}
.yb_c03253{bottom:667.558326px;}
.yd_c03253{bottom:707.160234px;}
.yc_c03253{bottom:716.880450px;}
.ya_c03253{bottom:796.438506px;}
.y9_c03253{bottom:877.438722px;}
.y7_c03253{bottom:926.759730px;}
.y3_c03253{bottom:944.760306px;}
.y8_c03253{bottom:979.319226px;}
.y6_c03253{bottom:1012.439478px;}
.y5_c03253{bottom:1030.440054px;}
.y2_c03253{bottom:1063.560306px;}
.y4_c03253{bottom:1079.759874px;}
.y1_c03253{bottom:1097.760450px;}
.ye_c03253{bottom:1134.840450px;}
.h3_c03253{height:32.530781px;}
.h1_c03253{height:41.696016px;}
.h2_c03253{height:41.812031px;}
.h4_c03253{height:54.654737px;}
.h0_c03253{height:1263.000000px;}
.w1_c03253{width:892.500000px;}
.w0_c03253{width:892.830000px;}
.x0_c03253{left:0.000000px;}
.xd_c03253{left:117.000000px;}
.x8_c03253{left:440.999856px;}
.x4_c03253{left:445.680576px;}
.xb_c03253{left:451.080000px;}
.x7_c03253{left:455.399604px;}
.x5_c03253{left:461.880144px;}
.x1_c03253{left:463.320000px;}
.xa_c03253{left:483.480360px;}
.x9_c03253{left:492.119496px;}
.x6_c03253{left:493.200576px;}
.xc_c03253{left:506.880360px;}
.x3_c03253{left:511.919892px;}
.x2_c03253{left:526.679604px;}
@media print{
.v0_c03253{vertical-align:0.000000pt;}
.v1_c03253{vertical-align:1.279488pt;}
.lsc_c03253{letter-spacing:-1.064448pt;}
.ls7_c03253{letter-spacing:-0.544896pt;}
.ls9_c03253{letter-spacing:-0.511104pt;}
.lsf_c03253{letter-spacing:-0.244992pt;}
.lsd_c03253{letter-spacing:-0.232320pt;}
.ls6_c03253{letter-spacing:-0.215424pt;}
.ls4_c03253{letter-spacing:-0.105600pt;}
.ls12_c03253{letter-spacing:0.000000pt;}
.ls1_c03253{letter-spacing:0.005376pt;}
.ls5_c03253{letter-spacing:0.114048pt;}
.lsb_c03253{letter-spacing:0.451968pt;}
.ls11_c03253{letter-spacing:0.456960pt;}
.lse_c03253{letter-spacing:0.477312pt;}
.lsa_c03253{letter-spacing:0.515328pt;}
.ls10_c03253{letter-spacing:0.528000pt;}
.ls8_c03253{letter-spacing:0.532224pt;}
.ls2_c03253{letter-spacing:0.544896pt;}
.ls3_c03253{letter-spacing:0.637824pt;}
.ls0_c03253{letter-spacing:0.642048pt;}
.wsc_c03253{word-spacing:-13.445376pt;}
.wsa_c03253{word-spacing:-11.088000pt;}
.ws8_c03253{word-spacing:-11.075328pt;}
.ws9_c03253{word-spacing:-11.037312pt;}
.ws4_c03253{word-spacing:-10.344576pt;}
.ws2_c03253{word-spacing:-10.015104pt;}
.ws11_c03253{word-spacing:-0.963072pt;}
.wse_c03253{word-spacing:-0.865920pt;}
.ws15_c03253{word-spacing:-0.639744pt;}
.ws10_c03253{word-spacing:-0.105600pt;}
.ws13_c03253{word-spacing:-0.088704pt;}
.ws14_c03253{word-spacing:-0.076032pt;}
.wsf_c03253{word-spacing:0.000000pt;}
.ws12_c03253{word-spacing:0.743424pt;}
.wsb_c03253{word-spacing:29.600256pt;}
.wsd_c03253{word-spacing:32.127744pt;}
.ws6_c03253{word-spacing:32.659968pt;}
.ws1_c03253{word-spacing:33.563904pt;}
.ws0_c03253{word-spacing:33.796224pt;}
.ws3_c03253{word-spacing:34.860672pt;}
.ws5_c03253{word-spacing:35.468928pt;}
.ws7_c03253{word-spacing:37.357056pt;}
._0_c03253{margin-left:-1.731840pt;}
._2_c03253{width:1.317888pt;}
._5_c03253{width:2.462592pt;}
._4_c03253{width:5.111040pt;}
._1_c03253{width:44.668800pt;}
._3_c03253{width:45.805056pt;}
.fs0_c03253{font-size:42.240000pt;}
.fs1_c03253{font-size:53.760000pt;}
.y0_c03253{bottom:0.000000pt;}
.y19_c03253{bottom:130.665211pt;}
.y1b_c03253{bottom:165.866875pt;}
.y1a_c03253{bottom:174.507067pt;}
.y18_c03253{bottom:245.225371pt;}
.y17_c03253{bottom:317.225563pt;}
.y15_c03253{bottom:361.386427pt;}
.y11_c03253{bottom:377.386939pt;}
.y16_c03253{bottom:407.786011pt;}
.y14_c03253{bottom:437.226235pt;}
.y13_c03253{bottom:453.226747pt;}
.y10_c03253{bottom:482.666971pt;}
.y12_c03253{bottom:497.386555pt;}
.yf_c03253{bottom:513.387067pt;}
.y1c_c03253{bottom:546.027067pt;}
.yb_c03253{bottom:593.385179pt;}
.yd_c03253{bottom:628.586875pt;}
.yc_c03253{bottom:637.227067pt;}
.ya_c03253{bottom:707.945339pt;}
.y9_c03253{bottom:779.945531pt;}
.y7_c03253{bottom:823.786427pt;}
.y3_c03253{bottom:839.786939pt;}
.y8_c03253{bottom:870.505979pt;}
.y6_c03253{bottom:899.946203pt;}
.y5_c03253{bottom:915.946715pt;}
.y2_c03253{bottom:945.386939pt;}
.y4_c03253{bottom:959.786555pt;}
.y1_c03253{bottom:975.787067pt;}
.ye_c03253{bottom:1008.747067pt;}
.h3_c03253{height:28.916250pt;}
.h1_c03253{height:37.063125pt;}
.h2_c03253{height:37.166250pt;}
.h4_c03253{height:48.581988pt;}
.h0_c03253{height:1122.666667pt;}
.w1_c03253{width:793.333333pt;}
.w0_c03253{width:793.626667pt;}
.x0_c03253{left:0.000000pt;}
.xd_c03253{left:104.000000pt;}
.x8_c03253{left:391.999872pt;}
.x4_c03253{left:396.160512pt;}
.xb_c03253{left:400.960000pt;}
.x7_c03253{left:404.799648pt;}
.x5_c03253{left:410.560128pt;}
.x1_c03253{left:411.840000pt;}
.xa_c03253{left:429.760320pt;}
.x9_c03253{left:437.439552pt;}
.x6_c03253{left:438.400512pt;}
.xc_c03253{left:450.560320pt;}
.x3_c03253{left:455.039904pt;}
.x2_c03253{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03254 {
    display:none;
  }
  .loading-indicator_c03254.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03254 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03254 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03254" -> "#page-container .classname_c03254")
 */
.pf_c03254 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03254 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03254.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03254 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03254 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03254 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03254 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03254 {overflow:visible;}
  }
}
.c_c03254 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03254 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03254:after { /* webkit #35443 */
  content: '';
}
.t_c03254:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03254 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03254 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03254 { /* info for Javascript */
  display:none;
}
.l_c03254 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03254 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03254 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03254:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03254 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03254.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03254.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03254 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03254{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03254;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03254{font-family:ff1_c03254;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03254;src:url('chunks/assets/font_68021b0a732355cd04a05174.woff2')format("woff");}.ff2_c03254{font-family:ff2_c03254;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03254;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03254{font-family:ff3_c03254;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03254{vertical-align:0.000000px;}
.v1_c03254{vertical-align:1.439424px;}
.lsc_c03254{letter-spacing:-1.197504px;}
.ls7_c03254{letter-spacing:-0.613008px;}
.ls9_c03254{letter-spacing:-0.574992px;}
.lsf_c03254{letter-spacing:-0.275616px;}
.lsd_c03254{letter-spacing:-0.261360px;}
.ls6_c03254{letter-spacing:-0.242352px;}
.ls4_c03254{letter-spacing:-0.118800px;}
.ls12_c03254{letter-spacing:0.000000px;}
.ls1_c03254{letter-spacing:0.006048px;}
.ls5_c03254{letter-spacing:0.128304px;}
.lsb_c03254{letter-spacing:0.508464px;}
.ls11_c03254{letter-spacing:0.514080px;}
.lse_c03254{letter-spacing:0.536976px;}
.lsa_c03254{letter-spacing:0.579744px;}
.ls10_c03254{letter-spacing:0.594000px;}
.ls8_c03254{letter-spacing:0.598752px;}
.ls2_c03254{letter-spacing:0.613008px;}
.ls3_c03254{letter-spacing:0.717552px;}
.ls0_c03254{letter-spacing:0.722304px;}
.sc__c03254{text-shadow:none;}
.sc0_c03254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03254{-webkit-text-stroke:0px transparent;}
.sc0_c03254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03254{word-spacing:-15.126048px;}
.wsa_c03254{word-spacing:-12.474000px;}
.wsd_c03254{word-spacing:-12.459744px;}
.ws9_c03254{word-spacing:-12.416976px;}
.ws4_c03254{word-spacing:-11.637648px;}
.ws2_c03254{word-spacing:-11.266992px;}
.ws11_c03254{word-spacing:-1.083456px;}
.wse_c03254{word-spacing:-0.974160px;}
.ws15_c03254{word-spacing:-0.719712px;}
.ws10_c03254{word-spacing:-0.118800px;}
.ws13_c03254{word-spacing:-0.099792px;}
.ws14_c03254{word-spacing:-0.085536px;}
.wsf_c03254{word-spacing:0.000000px;}
.ws12_c03254{word-spacing:0.836352px;}
.wsb_c03254{word-spacing:33.300288px;}
.ws8_c03254{word-spacing:36.143712px;}
.ws6_c03254{word-spacing:36.742464px;}
.ws1_c03254{word-spacing:37.759392px;}
.ws0_c03254{word-spacing:38.020752px;}
.ws3_c03254{word-spacing:39.218256px;}
.ws5_c03254{word-spacing:39.902544px;}
.ws7_c03254{word-spacing:42.026688px;}
._0_c03254{margin-left:-1.948320px;}
._2_c03254{width:1.482624px;}
._5_c03254{width:2.770416px;}
._4_c03254{width:5.749920px;}
._1_c03254{width:50.252400px;}
._3_c03254{width:51.530688px;}
.fc0_c03254{color:rgb(0,0,0);}
.fs0_c03254{font-size:47.520000px;}
.fs1_c03254{font-size:60.480000px;}
.y0_c03254{bottom:0.000000px;}
.y19_c03254{bottom:146.998362px;}
.y1b_c03254{bottom:186.600234px;}
.y1a_c03254{bottom:196.320450px;}
.y18_c03254{bottom:275.878542px;}
.y17_c03254{bottom:356.878758px;}
.y15_c03254{bottom:406.559730px;}
.y11_c03254{bottom:424.560306px;}
.y16_c03254{bottom:458.759262px;}
.y14_c03254{bottom:491.879514px;}
.y13_c03254{bottom:509.880090px;}
.y10_c03254{bottom:543.000342px;}
.y12_c03254{bottom:559.559874px;}
.yf_c03254{bottom:577.560450px;}
.y1c_c03254{bottom:614.280450px;}
.yb_c03254{bottom:667.558326px;}
.yd_c03254{bottom:707.160234px;}
.yc_c03254{bottom:716.880450px;}
.ya_c03254{bottom:796.438506px;}
.y9_c03254{bottom:877.438722px;}
.y7_c03254{bottom:926.759730px;}
.y3_c03254{bottom:944.760306px;}
.y8_c03254{bottom:979.319226px;}
.y6_c03254{bottom:1012.439478px;}
.y5_c03254{bottom:1030.440054px;}
.y2_c03254{bottom:1063.560306px;}
.y4_c03254{bottom:1079.759874px;}
.y1_c03254{bottom:1097.760450px;}
.ye_c03254{bottom:1134.840450px;}
.h3_c03254{height:32.530781px;}
.h1_c03254{height:41.696016px;}
.h2_c03254{height:41.812031px;}
.h4_c03254{height:54.654737px;}
.h0_c03254{height:1263.000000px;}
.w1_c03254{width:892.500000px;}
.w0_c03254{width:892.830000px;}
.x0_c03254{left:0.000000px;}
.xd_c03254{left:117.000000px;}
.x8_c03254{left:440.999856px;}
.x4_c03254{left:445.680576px;}
.xb_c03254{left:451.080000px;}
.x7_c03254{left:455.399604px;}
.x5_c03254{left:461.880144px;}
.x1_c03254{left:463.320000px;}
.xa_c03254{left:483.480360px;}
.x9_c03254{left:492.119496px;}
.x6_c03254{left:493.200576px;}
.xc_c03254{left:506.880360px;}
.x3_c03254{left:511.919892px;}
.x2_c03254{left:526.679604px;}
@media print{
.v0_c03254{vertical-align:0.000000pt;}
.v1_c03254{vertical-align:1.279488pt;}
.lsc_c03254{letter-spacing:-1.064448pt;}
.ls7_c03254{letter-spacing:-0.544896pt;}
.ls9_c03254{letter-spacing:-0.511104pt;}
.lsf_c03254{letter-spacing:-0.244992pt;}
.lsd_c03254{letter-spacing:-0.232320pt;}
.ls6_c03254{letter-spacing:-0.215424pt;}
.ls4_c03254{letter-spacing:-0.105600pt;}
.ls12_c03254{letter-spacing:0.000000pt;}
.ls1_c03254{letter-spacing:0.005376pt;}
.ls5_c03254{letter-spacing:0.114048pt;}
.lsb_c03254{letter-spacing:0.451968pt;}
.ls11_c03254{letter-spacing:0.456960pt;}
.lse_c03254{letter-spacing:0.477312pt;}
.lsa_c03254{letter-spacing:0.515328pt;}
.ls10_c03254{letter-spacing:0.528000pt;}
.ls8_c03254{letter-spacing:0.532224pt;}
.ls2_c03254{letter-spacing:0.544896pt;}
.ls3_c03254{letter-spacing:0.637824pt;}
.ls0_c03254{letter-spacing:0.642048pt;}
.wsc_c03254{word-spacing:-13.445376pt;}
.wsa_c03254{word-spacing:-11.088000pt;}
.wsd_c03254{word-spacing:-11.075328pt;}
.ws9_c03254{word-spacing:-11.037312pt;}
.ws4_c03254{word-spacing:-10.344576pt;}
.ws2_c03254{word-spacing:-10.015104pt;}
.ws11_c03254{word-spacing:-0.963072pt;}
.wse_c03254{word-spacing:-0.865920pt;}
.ws15_c03254{word-spacing:-0.639744pt;}
.ws10_c03254{word-spacing:-0.105600pt;}
.ws13_c03254{word-spacing:-0.088704pt;}
.ws14_c03254{word-spacing:-0.076032pt;}
.wsf_c03254{word-spacing:0.000000pt;}
.ws12_c03254{word-spacing:0.743424pt;}
.wsb_c03254{word-spacing:29.600256pt;}
.ws8_c03254{word-spacing:32.127744pt;}
.ws6_c03254{word-spacing:32.659968pt;}
.ws1_c03254{word-spacing:33.563904pt;}
.ws0_c03254{word-spacing:33.796224pt;}
.ws3_c03254{word-spacing:34.860672pt;}
.ws5_c03254{word-spacing:35.468928pt;}
.ws7_c03254{word-spacing:37.357056pt;}
._0_c03254{margin-left:-1.731840pt;}
._2_c03254{width:1.317888pt;}
._5_c03254{width:2.462592pt;}
._4_c03254{width:5.111040pt;}
._1_c03254{width:44.668800pt;}
._3_c03254{width:45.805056pt;}
.fs0_c03254{font-size:42.240000pt;}
.fs1_c03254{font-size:53.760000pt;}
.y0_c03254{bottom:0.000000pt;}
.y19_c03254{bottom:130.665211pt;}
.y1b_c03254{bottom:165.866875pt;}
.y1a_c03254{bottom:174.507067pt;}
.y18_c03254{bottom:245.225371pt;}
.y17_c03254{bottom:317.225563pt;}
.y15_c03254{bottom:361.386427pt;}
.y11_c03254{bottom:377.386939pt;}
.y16_c03254{bottom:407.786011pt;}
.y14_c03254{bottom:437.226235pt;}
.y13_c03254{bottom:453.226747pt;}
.y10_c03254{bottom:482.666971pt;}
.y12_c03254{bottom:497.386555pt;}
.yf_c03254{bottom:513.387067pt;}
.y1c_c03254{bottom:546.027067pt;}
.yb_c03254{bottom:593.385179pt;}
.yd_c03254{bottom:628.586875pt;}
.yc_c03254{bottom:637.227067pt;}
.ya_c03254{bottom:707.945339pt;}
.y9_c03254{bottom:779.945531pt;}
.y7_c03254{bottom:823.786427pt;}
.y3_c03254{bottom:839.786939pt;}
.y8_c03254{bottom:870.505979pt;}
.y6_c03254{bottom:899.946203pt;}
.y5_c03254{bottom:915.946715pt;}
.y2_c03254{bottom:945.386939pt;}
.y4_c03254{bottom:959.786555pt;}
.y1_c03254{bottom:975.787067pt;}
.ye_c03254{bottom:1008.747067pt;}
.h3_c03254{height:28.916250pt;}
.h1_c03254{height:37.063125pt;}
.h2_c03254{height:37.166250pt;}
.h4_c03254{height:48.581988pt;}
.h0_c03254{height:1122.666667pt;}
.w1_c03254{width:793.333333pt;}
.w0_c03254{width:793.626667pt;}
.x0_c03254{left:0.000000pt;}
.xd_c03254{left:104.000000pt;}
.x8_c03254{left:391.999872pt;}
.x4_c03254{left:396.160512pt;}
.xb_c03254{left:400.960000pt;}
.x7_c03254{left:404.799648pt;}
.x5_c03254{left:410.560128pt;}
.x1_c03254{left:411.840000pt;}
.xa_c03254{left:429.760320pt;}
.x9_c03254{left:437.439552pt;}
.x6_c03254{left:438.400512pt;}
.xc_c03254{left:450.560320pt;}
.x3_c03254{left:455.039904pt;}
.x2_c03254{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03255 {
    display:none;
  }
  .loading-indicator_c03255.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03255 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03255 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03255" -> "#page-container .classname_c03255")
 */
.pf_c03255 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03255 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03255.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03255 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03255 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03255 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03255 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03255 {overflow:visible;}
  }
}
.c_c03255 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03255 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03255:after { /* webkit #35443 */
  content: '';
}
.t_c03255:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03255 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03255 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03255 { /* info for Javascript */
  display:none;
}
.l_c03255 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03255 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03255 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03255:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03255 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03255.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03255.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03255 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03255{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03255;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03255{font-family:ff1_c03255;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03255;src:url('chunks/assets/font_d39633f92ca883557bba5472.woff2')format("woff");}.ff2_c03255{font-family:ff2_c03255;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03255;src:url('chunks/assets/font_288d5a24569fc3f6a43c9309.woff2')format("woff");}.ff3_c03255{font-family:ff3_c03255;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03255{vertical-align:0.000000px;}
.v1_c03255{vertical-align:1.439424px;}
.ls16_c03255{letter-spacing:-1.197504px;}
.lse_c03255{letter-spacing:-0.793584px;}
.lsb_c03255{letter-spacing:-0.774576px;}
.ls11_c03255{letter-spacing:-0.736560px;}
.ls8_c03255{letter-spacing:-0.613008px;}
.lsa_c03255{letter-spacing:-0.574992px;}
.ls17_c03255{letter-spacing:-0.275616px;}
.ls12_c03255{letter-spacing:-0.270864px;}
.lsf_c03255{letter-spacing:-0.261360px;}
.ls7_c03255{letter-spacing:-0.242352px;}
.ls5_c03255{letter-spacing:-0.118800px;}
.ls15_c03255{letter-spacing:0.000000px;}
.ls1_c03255{letter-spacing:0.006048px;}
.ls6_c03255{letter-spacing:0.128304px;}
.lsd_c03255{letter-spacing:0.508464px;}
.ls14_c03255{letter-spacing:0.514080px;}
.ls10_c03255{letter-spacing:0.536976px;}
.lsc_c03255{letter-spacing:0.579744px;}
.ls13_c03255{letter-spacing:0.594000px;}
.ls9_c03255{letter-spacing:0.598752px;}
.ls3_c03255{letter-spacing:0.613008px;}
.ls0_c03255{letter-spacing:0.651024px;}
.ls4_c03255{letter-spacing:0.717552px;}
.ls2_c03255{letter-spacing:0.722304px;}
.sc__c03255{text-shadow:none;}
.sc0_c03255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03255{-webkit-text-stroke:0px transparent;}
.sc0_c03255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03255{word-spacing:-15.126048px;}
.wsb_c03255{word-spacing:-12.474000px;}
.ws7_c03255{word-spacing:-12.459744px;}
.wsf_c03255{word-spacing:-12.416976px;}
.ws4_c03255{word-spacing:-11.637648px;}
.ws2_c03255{word-spacing:-11.266992px;}
.ws6_c03255{word-spacing:-11.105424px;}
.ws19_c03255{word-spacing:-1.083456px;}
.ws12_c03255{word-spacing:-1.012176px;}
.ws10_c03255{word-spacing:-0.974160px;}
.ws18_c03255{word-spacing:-0.719712px;}
.ws13_c03255{word-spacing:-0.118800px;}
.ws15_c03255{word-spacing:-0.099792px;}
.ws16_c03255{word-spacing:-0.090288px;}
.ws17_c03255{word-spacing:-0.085536px;}
.ws11_c03255{word-spacing:0.000000px;}
.ws14_c03255{word-spacing:0.432432px;}
.ws1a_c03255{word-spacing:0.836352px;}
.wsa_c03255{word-spacing:6.629040px;}
.wsc_c03255{word-spacing:33.300288px;}
.ws9_c03255{word-spacing:34.836912px;}
.wse_c03255{word-spacing:36.742464px;}
.ws1_c03255{word-spacing:37.759392px;}
.ws0_c03255{word-spacing:38.020752px;}
.ws3_c03255{word-spacing:39.218256px;}
.ws5_c03255{word-spacing:39.902544px;}
.ws8_c03255{word-spacing:42.026688px;}
._0_c03255{margin-left:-1.948320px;}
._2_c03255{width:1.482624px;}
._8_c03255{width:2.770416px;}
._4_c03255{width:5.749920px;}
._6_c03255{width:19.982160px;}
._7_c03255{width:23.451120px;}
._5_c03255{width:24.691392px;}
._1_c03255{width:50.252400px;}
._3_c03255{width:51.530688px;}
.fc0_c03255{color:rgb(0,0,0);}
.fs0_c03255{font-size:47.520000px;}
.fs1_c03255{font-size:60.480000px;}
.y0_c03255{bottom:0.000000px;}
.y1a_c03255{bottom:146.998362px;}
.y1c_c03255{bottom:186.600234px;}
.y1b_c03255{bottom:196.320450px;}
.y19_c03255{bottom:275.878542px;}
.y18_c03255{bottom:356.878758px;}
.y16_c03255{bottom:406.559730px;}
.y12_c03255{bottom:424.560306px;}
.y17_c03255{bottom:458.759262px;}
.y15_c03255{bottom:491.879514px;}
.y14_c03255{bottom:509.880090px;}
.y11_c03255{bottom:543.000342px;}
.y13_c03255{bottom:559.559874px;}
.y10_c03255{bottom:577.560450px;}
.y1d_c03255{bottom:614.280450px;}
.yc_c03255{bottom:652.438650px;}
.yb_c03255{bottom:667.558326px;}
.ye_c03255{bottom:707.160234px;}
.yd_c03255{bottom:716.880450px;}
.ya_c03255{bottom:796.438506px;}
.y9_c03255{bottom:877.438722px;}
.y7_c03255{bottom:926.759730px;}
.y3_c03255{bottom:944.760306px;}
.y8_c03255{bottom:979.319226px;}
.y6_c03255{bottom:1012.439478px;}
.y5_c03255{bottom:1030.440054px;}
.y2_c03255{bottom:1063.560306px;}
.y4_c03255{bottom:1079.759874px;}
.y1_c03255{bottom:1097.760450px;}
.yf_c03255{bottom:1134.840450px;}
.h3_c03255{height:32.530781px;}
.h1_c03255{height:41.696016px;}
.h2_c03255{height:41.812031px;}
.h4_c03255{height:54.654737px;}
.h0_c03255{height:1263.000000px;}
.w1_c03255{width:892.500000px;}
.w0_c03255{width:892.830000px;}
.x0_c03255{left:0.000000px;}
.xe_c03255{left:117.000000px;}
.x8_c03255{left:440.999856px;}
.x4_c03255{left:445.680576px;}
.xc_c03255{left:451.080000px;}
.x7_c03255{left:455.399604px;}
.x5_c03255{left:461.880144px;}
.x1_c03255{left:463.320000px;}
.xa_c03255{left:483.480360px;}
.x9_c03255{left:492.119496px;}
.x6_c03255{left:493.200576px;}
.xd_c03255{left:506.880360px;}
.x3_c03255{left:511.919892px;}
.x2_c03255{left:526.679604px;}
.xb_c03255{left:569.880036px;}
@media print{
.v0_c03255{vertical-align:0.000000pt;}
.v1_c03255{vertical-align:1.279488pt;}
.ls16_c03255{letter-spacing:-1.064448pt;}
.lse_c03255{letter-spacing:-0.705408pt;}
.lsb_c03255{letter-spacing:-0.688512pt;}
.ls11_c03255{letter-spacing:-0.654720pt;}
.ls8_c03255{letter-spacing:-0.544896pt;}
.lsa_c03255{letter-spacing:-0.511104pt;}
.ls17_c03255{letter-spacing:-0.244992pt;}
.ls12_c03255{letter-spacing:-0.240768pt;}
.lsf_c03255{letter-spacing:-0.232320pt;}
.ls7_c03255{letter-spacing:-0.215424pt;}
.ls5_c03255{letter-spacing:-0.105600pt;}
.ls15_c03255{letter-spacing:0.000000pt;}
.ls1_c03255{letter-spacing:0.005376pt;}
.ls6_c03255{letter-spacing:0.114048pt;}
.lsd_c03255{letter-spacing:0.451968pt;}
.ls14_c03255{letter-spacing:0.456960pt;}
.ls10_c03255{letter-spacing:0.477312pt;}
.lsc_c03255{letter-spacing:0.515328pt;}
.ls13_c03255{letter-spacing:0.528000pt;}
.ls9_c03255{letter-spacing:0.532224pt;}
.ls3_c03255{letter-spacing:0.544896pt;}
.ls0_c03255{letter-spacing:0.578688pt;}
.ls4_c03255{letter-spacing:0.637824pt;}
.ls2_c03255{letter-spacing:0.642048pt;}
.wsd_c03255{word-spacing:-13.445376pt;}
.wsb_c03255{word-spacing:-11.088000pt;}
.ws7_c03255{word-spacing:-11.075328pt;}
.wsf_c03255{word-spacing:-11.037312pt;}
.ws4_c03255{word-spacing:-10.344576pt;}
.ws2_c03255{word-spacing:-10.015104pt;}
.ws6_c03255{word-spacing:-9.871488pt;}
.ws19_c03255{word-spacing:-0.963072pt;}
.ws12_c03255{word-spacing:-0.899712pt;}
.ws10_c03255{word-spacing:-0.865920pt;}
.ws18_c03255{word-spacing:-0.639744pt;}
.ws13_c03255{word-spacing:-0.105600pt;}
.ws15_c03255{word-spacing:-0.088704pt;}
.ws16_c03255{word-spacing:-0.080256pt;}
.ws17_c03255{word-spacing:-0.076032pt;}
.ws11_c03255{word-spacing:0.000000pt;}
.ws14_c03255{word-spacing:0.384384pt;}
.ws1a_c03255{word-spacing:0.743424pt;}
.wsa_c03255{word-spacing:5.892480pt;}
.wsc_c03255{word-spacing:29.600256pt;}
.ws9_c03255{word-spacing:30.966144pt;}
.wse_c03255{word-spacing:32.659968pt;}
.ws1_c03255{word-spacing:33.563904pt;}
.ws0_c03255{word-spacing:33.796224pt;}
.ws3_c03255{word-spacing:34.860672pt;}
.ws5_c03255{word-spacing:35.468928pt;}
.ws8_c03255{word-spacing:37.357056pt;}
._0_c03255{margin-left:-1.731840pt;}
._2_c03255{width:1.317888pt;}
._8_c03255{width:2.462592pt;}
._4_c03255{width:5.111040pt;}
._6_c03255{width:17.761920pt;}
._7_c03255{width:20.845440pt;}
._5_c03255{width:21.947904pt;}
._1_c03255{width:44.668800pt;}
._3_c03255{width:45.805056pt;}
.fs0_c03255{font-size:42.240000pt;}
.fs1_c03255{font-size:53.760000pt;}
.y0_c03255{bottom:0.000000pt;}
.y1a_c03255{bottom:130.665211pt;}
.y1c_c03255{bottom:165.866875pt;}
.y1b_c03255{bottom:174.507067pt;}
.y19_c03255{bottom:245.225371pt;}
.y18_c03255{bottom:317.225563pt;}
.y16_c03255{bottom:361.386427pt;}
.y12_c03255{bottom:377.386939pt;}
.y17_c03255{bottom:407.786011pt;}
.y15_c03255{bottom:437.226235pt;}
.y14_c03255{bottom:453.226747pt;}
.y11_c03255{bottom:482.666971pt;}
.y13_c03255{bottom:497.386555pt;}
.y10_c03255{bottom:513.387067pt;}
.y1d_c03255{bottom:546.027067pt;}
.yc_c03255{bottom:579.945467pt;}
.yb_c03255{bottom:593.385179pt;}
.ye_c03255{bottom:628.586875pt;}
.yd_c03255{bottom:637.227067pt;}
.ya_c03255{bottom:707.945339pt;}
.y9_c03255{bottom:779.945531pt;}
.y7_c03255{bottom:823.786427pt;}
.y3_c03255{bottom:839.786939pt;}
.y8_c03255{bottom:870.505979pt;}
.y6_c03255{bottom:899.946203pt;}
.y5_c03255{bottom:915.946715pt;}
.y2_c03255{bottom:945.386939pt;}
.y4_c03255{bottom:959.786555pt;}
.y1_c03255{bottom:975.787067pt;}
.yf_c03255{bottom:1008.747067pt;}
.h3_c03255{height:28.916250pt;}
.h1_c03255{height:37.063125pt;}
.h2_c03255{height:37.166250pt;}
.h4_c03255{height:48.581988pt;}
.h0_c03255{height:1122.666667pt;}
.w1_c03255{width:793.333333pt;}
.w0_c03255{width:793.626667pt;}
.x0_c03255{left:0.000000pt;}
.xe_c03255{left:104.000000pt;}
.x8_c03255{left:391.999872pt;}
.x4_c03255{left:396.160512pt;}
.xc_c03255{left:400.960000pt;}
.x7_c03255{left:404.799648pt;}
.x5_c03255{left:410.560128pt;}
.x1_c03255{left:411.840000pt;}
.xa_c03255{left:429.760320pt;}
.x9_c03255{left:437.439552pt;}
.x6_c03255{left:438.400512pt;}
.xd_c03255{left:450.560320pt;}
.x3_c03255{left:455.039904pt;}
.x2_c03255{left:468.159648pt;}
.xb_c03255{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03256 {
    display:none;
  }
  .loading-indicator_c03256.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03256 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03256 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03256" -> "#page-container .classname_c03256")
 */
.pf_c03256 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03256 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03256.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03256 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03256 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03256 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03256 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03256 {overflow:visible;}
  }
}
.c_c03256 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03256 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03256:after { /* webkit #35443 */
  content: '';
}
.t_c03256:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03256 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03256 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03256 { /* info for Javascript */
  display:none;
}
.l_c03256 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03256 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03256 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03256:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03256 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03256.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03256.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03256 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03256{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03256;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03256{font-family:ff1_c03256;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03256;src:url('chunks/assets/font_d739c4007b05aca85c237b1b.woff2')format("woff");}.ff2_c03256{font-family:ff2_c03256;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03256;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03256{font-family:ff3_c03256;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03256{vertical-align:0.000000px;}
.v1_c03256{vertical-align:1.439424px;}
.lsb_c03256{letter-spacing:-1.197504px;}
.ls6_c03256{letter-spacing:-0.613008px;}
.ls8_c03256{letter-spacing:-0.574992px;}
.lse_c03256{letter-spacing:-0.275616px;}
.lsc_c03256{letter-spacing:-0.261360px;}
.ls5_c03256{letter-spacing:-0.242352px;}
.ls3_c03256{letter-spacing:-0.118800px;}
.ls11_c03256{letter-spacing:0.000000px;}
.ls1_c03256{letter-spacing:0.006048px;}
.ls4_c03256{letter-spacing:0.128304px;}
.lsa_c03256{letter-spacing:0.508464px;}
.ls10_c03256{letter-spacing:0.514080px;}
.lsd_c03256{letter-spacing:0.536976px;}
.ls9_c03256{letter-spacing:0.579744px;}
.lsf_c03256{letter-spacing:0.594000px;}
.ls7_c03256{letter-spacing:0.598752px;}
.ls2_c03256{letter-spacing:0.613008px;}
.ls0_c03256{letter-spacing:0.717552px;}
.sc__c03256{text-shadow:none;}
.sc0_c03256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03256{-webkit-text-stroke:0px transparent;}
.sc0_c03256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03256{word-spacing:-15.126048px;}
.wsa_c03256{word-spacing:-12.474000px;}
.ws8_c03256{word-spacing:-12.459744px;}
.ws9_c03256{word-spacing:-12.416976px;}
.ws4_c03256{word-spacing:-11.637648px;}
.ws2_c03256{word-spacing:-11.266992px;}
.ws10_c03256{word-spacing:-1.078704px;}
.wsd_c03256{word-spacing:-0.974160px;}
.ws14_c03256{word-spacing:-0.719712px;}
.wsf_c03256{word-spacing:-0.118800px;}
.ws12_c03256{word-spacing:-0.099792px;}
.ws13_c03256{word-spacing:-0.085536px;}
.wse_c03256{word-spacing:0.000000px;}
.ws11_c03256{word-spacing:0.836352px;}
.wsb_c03256{word-spacing:33.300288px;}
.ws6_c03256{word-spacing:36.742464px;}
.ws1_c03256{word-spacing:37.759392px;}
.ws0_c03256{word-spacing:38.020752px;}
.ws3_c03256{word-spacing:39.218256px;}
.ws5_c03256{word-spacing:39.902544px;}
.ws7_c03256{word-spacing:42.026688px;}
._0_c03256{margin-left:-1.948320px;}
._2_c03256{width:1.482624px;}
._5_c03256{width:2.770416px;}
._4_c03256{width:5.749920px;}
._1_c03256{width:50.252400px;}
._3_c03256{width:51.530688px;}
.fc0_c03256{color:rgb(0,0,0);}
.fs0_c03256{font-size:47.520000px;}
.fs1_c03256{font-size:60.480000px;}
.y0_c03256{bottom:0.000000px;}
.y19_c03256{bottom:146.998362px;}
.y1b_c03256{bottom:186.600234px;}
.y1a_c03256{bottom:196.320450px;}
.y18_c03256{bottom:275.878542px;}
.y17_c03256{bottom:356.878758px;}
.y15_c03256{bottom:406.559730px;}
.y11_c03256{bottom:424.560306px;}
.y16_c03256{bottom:458.759262px;}
.y14_c03256{bottom:491.879514px;}
.y13_c03256{bottom:509.880090px;}
.y10_c03256{bottom:543.000342px;}
.y12_c03256{bottom:559.559874px;}
.yf_c03256{bottom:577.560450px;}
.y1c_c03256{bottom:614.280450px;}
.yb_c03256{bottom:667.558326px;}
.yd_c03256{bottom:707.160234px;}
.yc_c03256{bottom:716.880450px;}
.ya_c03256{bottom:796.438506px;}
.y9_c03256{bottom:877.438722px;}
.y7_c03256{bottom:926.759730px;}
.y3_c03256{bottom:944.760306px;}
.y8_c03256{bottom:979.319226px;}
.y6_c03256{bottom:1012.439478px;}
.y5_c03256{bottom:1030.440054px;}
.y2_c03256{bottom:1063.560306px;}
.y4_c03256{bottom:1079.759874px;}
.y1_c03256{bottom:1097.760450px;}
.ye_c03256{bottom:1134.840450px;}
.h3_c03256{height:32.530781px;}
.h1_c03256{height:41.696016px;}
.h2_c03256{height:41.812031px;}
.h4_c03256{height:54.654737px;}
.h0_c03256{height:1263.000000px;}
.w1_c03256{width:892.500000px;}
.w0_c03256{width:892.830000px;}
.x0_c03256{left:0.000000px;}
.xd_c03256{left:117.000000px;}
.x8_c03256{left:440.999856px;}
.x4_c03256{left:445.680576px;}
.xb_c03256{left:451.080000px;}
.x7_c03256{left:455.399604px;}
.x5_c03256{left:461.880144px;}
.x1_c03256{left:463.320000px;}
.xa_c03256{left:483.480360px;}
.x9_c03256{left:492.119496px;}
.x6_c03256{left:493.200576px;}
.xc_c03256{left:506.880360px;}
.x3_c03256{left:511.919892px;}
.x2_c03256{left:526.679604px;}
@media print{
.v0_c03256{vertical-align:0.000000pt;}
.v1_c03256{vertical-align:1.279488pt;}
.lsb_c03256{letter-spacing:-1.064448pt;}
.ls6_c03256{letter-spacing:-0.544896pt;}
.ls8_c03256{letter-spacing:-0.511104pt;}
.lse_c03256{letter-spacing:-0.244992pt;}
.lsc_c03256{letter-spacing:-0.232320pt;}
.ls5_c03256{letter-spacing:-0.215424pt;}
.ls3_c03256{letter-spacing:-0.105600pt;}
.ls11_c03256{letter-spacing:0.000000pt;}
.ls1_c03256{letter-spacing:0.005376pt;}
.ls4_c03256{letter-spacing:0.114048pt;}
.lsa_c03256{letter-spacing:0.451968pt;}
.ls10_c03256{letter-spacing:0.456960pt;}
.lsd_c03256{letter-spacing:0.477312pt;}
.ls9_c03256{letter-spacing:0.515328pt;}
.lsf_c03256{letter-spacing:0.528000pt;}
.ls7_c03256{letter-spacing:0.532224pt;}
.ls2_c03256{letter-spacing:0.544896pt;}
.ls0_c03256{letter-spacing:0.637824pt;}
.wsc_c03256{word-spacing:-13.445376pt;}
.wsa_c03256{word-spacing:-11.088000pt;}
.ws8_c03256{word-spacing:-11.075328pt;}
.ws9_c03256{word-spacing:-11.037312pt;}
.ws4_c03256{word-spacing:-10.344576pt;}
.ws2_c03256{word-spacing:-10.015104pt;}
.ws10_c03256{word-spacing:-0.958848pt;}
.wsd_c03256{word-spacing:-0.865920pt;}
.ws14_c03256{word-spacing:-0.639744pt;}
.wsf_c03256{word-spacing:-0.105600pt;}
.ws12_c03256{word-spacing:-0.088704pt;}
.ws13_c03256{word-spacing:-0.076032pt;}
.wse_c03256{word-spacing:0.000000pt;}
.ws11_c03256{word-spacing:0.743424pt;}
.wsb_c03256{word-spacing:29.600256pt;}
.ws6_c03256{word-spacing:32.659968pt;}
.ws1_c03256{word-spacing:33.563904pt;}
.ws0_c03256{word-spacing:33.796224pt;}
.ws3_c03256{word-spacing:34.860672pt;}
.ws5_c03256{word-spacing:35.468928pt;}
.ws7_c03256{word-spacing:37.357056pt;}
._0_c03256{margin-left:-1.731840pt;}
._2_c03256{width:1.317888pt;}
._5_c03256{width:2.462592pt;}
._4_c03256{width:5.111040pt;}
._1_c03256{width:44.668800pt;}
._3_c03256{width:45.805056pt;}
.fs0_c03256{font-size:42.240000pt;}
.fs1_c03256{font-size:53.760000pt;}
.y0_c03256{bottom:0.000000pt;}
.y19_c03256{bottom:130.665211pt;}
.y1b_c03256{bottom:165.866875pt;}
.y1a_c03256{bottom:174.507067pt;}
.y18_c03256{bottom:245.225371pt;}
.y17_c03256{bottom:317.225563pt;}
.y15_c03256{bottom:361.386427pt;}
.y11_c03256{bottom:377.386939pt;}
.y16_c03256{bottom:407.786011pt;}
.y14_c03256{bottom:437.226235pt;}
.y13_c03256{bottom:453.226747pt;}
.y10_c03256{bottom:482.666971pt;}
.y12_c03256{bottom:497.386555pt;}
.yf_c03256{bottom:513.387067pt;}
.y1c_c03256{bottom:546.027067pt;}
.yb_c03256{bottom:593.385179pt;}
.yd_c03256{bottom:628.586875pt;}
.yc_c03256{bottom:637.227067pt;}
.ya_c03256{bottom:707.945339pt;}
.y9_c03256{bottom:779.945531pt;}
.y7_c03256{bottom:823.786427pt;}
.y3_c03256{bottom:839.786939pt;}
.y8_c03256{bottom:870.505979pt;}
.y6_c03256{bottom:899.946203pt;}
.y5_c03256{bottom:915.946715pt;}
.y2_c03256{bottom:945.386939pt;}
.y4_c03256{bottom:959.786555pt;}
.y1_c03256{bottom:975.787067pt;}
.ye_c03256{bottom:1008.747067pt;}
.h3_c03256{height:28.916250pt;}
.h1_c03256{height:37.063125pt;}
.h2_c03256{height:37.166250pt;}
.h4_c03256{height:48.581988pt;}
.h0_c03256{height:1122.666667pt;}
.w1_c03256{width:793.333333pt;}
.w0_c03256{width:793.626667pt;}
.x0_c03256{left:0.000000pt;}
.xd_c03256{left:104.000000pt;}
.x8_c03256{left:391.999872pt;}
.x4_c03256{left:396.160512pt;}
.xb_c03256{left:400.960000pt;}
.x7_c03256{left:404.799648pt;}
.x5_c03256{left:410.560128pt;}
.x1_c03256{left:411.840000pt;}
.xa_c03256{left:429.760320pt;}
.x9_c03256{left:437.439552pt;}
.x6_c03256{left:438.400512pt;}
.xc_c03256{left:450.560320pt;}
.x3_c03256{left:455.039904pt;}
.x2_c03256{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03257 {
    display:none;
  }
  .loading-indicator_c03257.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03257 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03257 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03257" -> "#page-container .classname_c03257")
 */
.pf_c03257 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03257 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03257.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03257 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03257 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03257 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03257 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03257 {overflow:visible;}
  }
}
.c_c03257 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03257 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03257:after { /* webkit #35443 */
  content: '';
}
.t_c03257:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03257 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03257 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03257 { /* info for Javascript */
  display:none;
}
.l_c03257 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03257 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03257 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03257:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03257 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03257.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03257.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03257 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03257{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03257;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03257{font-family:ff1_c03257;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03257;src:url('chunks/assets/font_236ab47fccdd6b9e2b16e8fc.woff2')format("woff");}.ff2_c03257{font-family:ff2_c03257;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03257;src:url('chunks/assets/font_288d5a24569fc3f6a43c9309.woff2')format("woff");}.ff3_c03257{font-family:ff3_c03257;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03257{vertical-align:0.000000px;}
.v1_c03257{vertical-align:1.439424px;}
.v2_c03257{vertical-align:33.121440px;}
.lsb_c03257{letter-spacing:-1.197504px;}
.ls12_c03257{letter-spacing:-0.722304px;}
.ls6_c03257{letter-spacing:-0.613008px;}
.ls8_c03257{letter-spacing:-0.574992px;}
.lse_c03257{letter-spacing:-0.275616px;}
.lsc_c03257{letter-spacing:-0.261360px;}
.ls5_c03257{letter-spacing:-0.242352px;}
.ls3_c03257{letter-spacing:-0.118800px;}
.ls11_c03257{letter-spacing:0.000000px;}
.ls1_c03257{letter-spacing:0.006048px;}
.ls4_c03257{letter-spacing:0.128304px;}
.lsa_c03257{letter-spacing:0.508464px;}
.ls10_c03257{letter-spacing:0.514080px;}
.lsd_c03257{letter-spacing:0.536976px;}
.ls9_c03257{letter-spacing:0.579744px;}
.lsf_c03257{letter-spacing:0.594000px;}
.ls7_c03257{letter-spacing:0.598752px;}
.ls2_c03257{letter-spacing:0.613008px;}
.ls13_c03257{letter-spacing:0.651024px;}
.ls0_c03257{letter-spacing:0.717552px;}
.ls14_c03257{letter-spacing:0.722304px;}
.sc__c03257{text-shadow:none;}
.sc0_c03257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03257{-webkit-text-stroke:0px transparent;}
.sc0_c03257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03257{word-spacing:-15.126048px;}
.wsa_c03257{word-spacing:-12.474000px;}
.ws8_c03257{word-spacing:-12.459744px;}
.ws9_c03257{word-spacing:-12.416976px;}
.ws4_c03257{word-spacing:-11.637648px;}
.ws2_c03257{word-spacing:-11.266992px;}
.ws19_c03257{word-spacing:-1.083456px;}
.ws12_c03257{word-spacing:-1.078704px;}
.ws18_c03257{word-spacing:-1.012176px;}
.wsf_c03257{word-spacing:-0.974160px;}
.ws16_c03257{word-spacing:-0.719712px;}
.ws11_c03257{word-spacing:-0.118800px;}
.ws14_c03257{word-spacing:-0.099792px;}
.ws15_c03257{word-spacing:-0.085536px;}
.ws10_c03257{word-spacing:0.000000px;}
.ws17_c03257{word-spacing:0.361152px;}
.ws13_c03257{word-spacing:0.836352px;}
.wse_c03257{word-spacing:30.298752px;}
.wsb_c03257{word-spacing:33.300288px;}
.wsd_c03257{word-spacing:36.143712px;}
.ws6_c03257{word-spacing:36.742464px;}
.ws1_c03257{word-spacing:37.759392px;}
.ws0_c03257{word-spacing:38.020752px;}
.ws3_c03257{word-spacing:39.218256px;}
.ws5_c03257{word-spacing:39.902544px;}
.ws7_c03257{word-spacing:42.026688px;}
._0_c03257{margin-left:-1.948320px;}
._2_c03257{width:1.482624px;}
._5_c03257{width:2.770416px;}
._4_c03257{width:5.749920px;}
._1_c03257{width:50.252400px;}
._3_c03257{width:51.530688px;}
.fc0_c03257{color:rgb(0,0,0);}
.fs0_c03257{font-size:47.520000px;}
.fs1_c03257{font-size:60.480000px;}
.y0_c03257{bottom:0.000000px;}
.y19_c03257{bottom:146.998362px;}
.y1b_c03257{bottom:186.600234px;}
.y1a_c03257{bottom:196.320450px;}
.y18_c03257{bottom:275.878542px;}
.y17_c03257{bottom:356.878758px;}
.y15_c03257{bottom:406.559730px;}
.y11_c03257{bottom:424.560306px;}
.y16_c03257{bottom:458.759262px;}
.y14_c03257{bottom:491.879514px;}
.y13_c03257{bottom:509.880090px;}
.y10_c03257{bottom:543.000342px;}
.y12_c03257{bottom:559.559874px;}
.yf_c03257{bottom:577.560450px;}
.y1c_c03257{bottom:614.280450px;}
.yb_c03257{bottom:667.558326px;}
.yd_c03257{bottom:707.160234px;}
.yc_c03257{bottom:716.880450px;}
.ya_c03257{bottom:796.438506px;}
.y9_c03257{bottom:877.438722px;}
.y7_c03257{bottom:926.759730px;}
.y3_c03257{bottom:944.760306px;}
.y8_c03257{bottom:979.319226px;}
.y6_c03257{bottom:1012.439478px;}
.y5_c03257{bottom:1030.440054px;}
.y2_c03257{bottom:1063.560306px;}
.y4_c03257{bottom:1079.759874px;}
.y1_c03257{bottom:1097.760450px;}
.ye_c03257{bottom:1134.840450px;}
.h3_c03257{height:32.530781px;}
.h1_c03257{height:41.696016px;}
.h2_c03257{height:41.812031px;}
.h4_c03257{height:54.654737px;}
.h5_c03257{height:74.817456px;}
.h0_c03257{height:1263.000000px;}
.w1_c03257{width:892.500000px;}
.w0_c03257{width:892.830000px;}
.x0_c03257{left:0.000000px;}
.xd_c03257{left:117.000000px;}
.x8_c03257{left:440.999856px;}
.x4_c03257{left:445.680576px;}
.xb_c03257{left:451.080000px;}
.x7_c03257{left:455.399604px;}
.x5_c03257{left:461.880144px;}
.x1_c03257{left:463.320000px;}
.xa_c03257{left:483.480360px;}
.x9_c03257{left:492.119496px;}
.x6_c03257{left:493.200576px;}
.xc_c03257{left:506.880360px;}
.x3_c03257{left:511.919892px;}
.x2_c03257{left:526.679604px;}
@media print{
.v0_c03257{vertical-align:0.000000pt;}
.v1_c03257{vertical-align:1.279488pt;}
.v2_c03257{vertical-align:29.441280pt;}
.lsb_c03257{letter-spacing:-1.064448pt;}
.ls12_c03257{letter-spacing:-0.642048pt;}
.ls6_c03257{letter-spacing:-0.544896pt;}
.ls8_c03257{letter-spacing:-0.511104pt;}
.lse_c03257{letter-spacing:-0.244992pt;}
.lsc_c03257{letter-spacing:-0.232320pt;}
.ls5_c03257{letter-spacing:-0.215424pt;}
.ls3_c03257{letter-spacing:-0.105600pt;}
.ls11_c03257{letter-spacing:0.000000pt;}
.ls1_c03257{letter-spacing:0.005376pt;}
.ls4_c03257{letter-spacing:0.114048pt;}
.lsa_c03257{letter-spacing:0.451968pt;}
.ls10_c03257{letter-spacing:0.456960pt;}
.lsd_c03257{letter-spacing:0.477312pt;}
.ls9_c03257{letter-spacing:0.515328pt;}
.lsf_c03257{letter-spacing:0.528000pt;}
.ls7_c03257{letter-spacing:0.532224pt;}
.ls2_c03257{letter-spacing:0.544896pt;}
.ls13_c03257{letter-spacing:0.578688pt;}
.ls0_c03257{letter-spacing:0.637824pt;}
.ls14_c03257{letter-spacing:0.642048pt;}
.wsc_c03257{word-spacing:-13.445376pt;}
.wsa_c03257{word-spacing:-11.088000pt;}
.ws8_c03257{word-spacing:-11.075328pt;}
.ws9_c03257{word-spacing:-11.037312pt;}
.ws4_c03257{word-spacing:-10.344576pt;}
.ws2_c03257{word-spacing:-10.015104pt;}
.ws19_c03257{word-spacing:-0.963072pt;}
.ws12_c03257{word-spacing:-0.958848pt;}
.ws18_c03257{word-spacing:-0.899712pt;}
.wsf_c03257{word-spacing:-0.865920pt;}
.ws16_c03257{word-spacing:-0.639744pt;}
.ws11_c03257{word-spacing:-0.105600pt;}
.ws14_c03257{word-spacing:-0.088704pt;}
.ws15_c03257{word-spacing:-0.076032pt;}
.ws10_c03257{word-spacing:0.000000pt;}
.ws17_c03257{word-spacing:0.321024pt;}
.ws13_c03257{word-spacing:0.743424pt;}
.wse_c03257{word-spacing:26.932224pt;}
.wsb_c03257{word-spacing:29.600256pt;}
.wsd_c03257{word-spacing:32.127744pt;}
.ws6_c03257{word-spacing:32.659968pt;}
.ws1_c03257{word-spacing:33.563904pt;}
.ws0_c03257{word-spacing:33.796224pt;}
.ws3_c03257{word-spacing:34.860672pt;}
.ws5_c03257{word-spacing:35.468928pt;}
.ws7_c03257{word-spacing:37.357056pt;}
._0_c03257{margin-left:-1.731840pt;}
._2_c03257{width:1.317888pt;}
._5_c03257{width:2.462592pt;}
._4_c03257{width:5.111040pt;}
._1_c03257{width:44.668800pt;}
._3_c03257{width:45.805056pt;}
.fs0_c03257{font-size:42.240000pt;}
.fs1_c03257{font-size:53.760000pt;}
.y0_c03257{bottom:0.000000pt;}
.y19_c03257{bottom:130.665211pt;}
.y1b_c03257{bottom:165.866875pt;}
.y1a_c03257{bottom:174.507067pt;}
.y18_c03257{bottom:245.225371pt;}
.y17_c03257{bottom:317.225563pt;}
.y15_c03257{bottom:361.386427pt;}
.y11_c03257{bottom:377.386939pt;}
.y16_c03257{bottom:407.786011pt;}
.y14_c03257{bottom:437.226235pt;}
.y13_c03257{bottom:453.226747pt;}
.y10_c03257{bottom:482.666971pt;}
.y12_c03257{bottom:497.386555pt;}
.yf_c03257{bottom:513.387067pt;}
.y1c_c03257{bottom:546.027067pt;}
.yb_c03257{bottom:593.385179pt;}
.yd_c03257{bottom:628.586875pt;}
.yc_c03257{bottom:637.227067pt;}
.ya_c03257{bottom:707.945339pt;}
.y9_c03257{bottom:779.945531pt;}
.y7_c03257{bottom:823.786427pt;}
.y3_c03257{bottom:839.786939pt;}
.y8_c03257{bottom:870.505979pt;}
.y6_c03257{bottom:899.946203pt;}
.y5_c03257{bottom:915.946715pt;}
.y2_c03257{bottom:945.386939pt;}
.y4_c03257{bottom:959.786555pt;}
.y1_c03257{bottom:975.787067pt;}
.ye_c03257{bottom:1008.747067pt;}
.h3_c03257{height:28.916250pt;}
.h1_c03257{height:37.063125pt;}
.h2_c03257{height:37.166250pt;}
.h4_c03257{height:48.581988pt;}
.h5_c03257{height:66.504405pt;}
.h0_c03257{height:1122.666667pt;}
.w1_c03257{width:793.333333pt;}
.w0_c03257{width:793.626667pt;}
.x0_c03257{left:0.000000pt;}
.xd_c03257{left:104.000000pt;}
.x8_c03257{left:391.999872pt;}
.x4_c03257{left:396.160512pt;}
.xb_c03257{left:400.960000pt;}
.x7_c03257{left:404.799648pt;}
.x5_c03257{left:410.560128pt;}
.x1_c03257{left:411.840000pt;}
.xa_c03257{left:429.760320pt;}
.x9_c03257{left:437.439552pt;}
.x6_c03257{left:438.400512pt;}
.xc_c03257{left:450.560320pt;}
.x3_c03257{left:455.039904pt;}
.x2_c03257{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03258 {
    display:none;
  }
  .loading-indicator_c03258.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03258 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03258 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03258" -> "#page-container .classname_c03258")
 */
.pf_c03258 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03258 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03258.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03258 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03258 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03258 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03258 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03258 {overflow:visible;}
  }
}
.c_c03258 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03258 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03258:after { /* webkit #35443 */
  content: '';
}
.t_c03258:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03258 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03258 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03258 { /* info for Javascript */
  display:none;
}
.l_c03258 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03258 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03258 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03258:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03258 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03258.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03258.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03258 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03258{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03258;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03258{font-family:ff1_c03258;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03258;src:url('chunks/assets/font_8ed68cef1c5f1e74b158f9b3.woff2')format("woff");}.ff2_c03258{font-family:ff2_c03258;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03258;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03258{font-family:ff3_c03258;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03258{vertical-align:0.000000px;}
.v1_c03258{vertical-align:1.439424px;}
.lsc_c03258{letter-spacing:-1.197504px;}
.ls7_c03258{letter-spacing:-0.613008px;}
.ls9_c03258{letter-spacing:-0.574992px;}
.lsf_c03258{letter-spacing:-0.275616px;}
.lsd_c03258{letter-spacing:-0.261360px;}
.ls6_c03258{letter-spacing:-0.242352px;}
.ls4_c03258{letter-spacing:-0.118800px;}
.ls12_c03258{letter-spacing:0.000000px;}
.ls1_c03258{letter-spacing:0.006048px;}
.ls5_c03258{letter-spacing:0.128304px;}
.lsb_c03258{letter-spacing:0.508464px;}
.ls11_c03258{letter-spacing:0.514080px;}
.lse_c03258{letter-spacing:0.536976px;}
.lsa_c03258{letter-spacing:0.579744px;}
.ls10_c03258{letter-spacing:0.594000px;}
.ls8_c03258{letter-spacing:0.598752px;}
.ls3_c03258{letter-spacing:0.613008px;}
.ls0_c03258{letter-spacing:0.717552px;}
.ls2_c03258{letter-spacing:0.722304px;}
.sc__c03258{text-shadow:none;}
.sc0_c03258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03258{-webkit-text-stroke:0px transparent;}
.sc0_c03258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03258{word-spacing:-15.126048px;}
.wsa_c03258{word-spacing:-12.474000px;}
.ws8_c03258{word-spacing:-12.459744px;}
.ws9_c03258{word-spacing:-12.416976px;}
.ws4_c03258{word-spacing:-11.637648px;}
.ws2_c03258{word-spacing:-11.266992px;}
.ws15_c03258{word-spacing:-1.083456px;}
.ws10_c03258{word-spacing:-1.078704px;}
.wsd_c03258{word-spacing:-0.974160px;}
.ws14_c03258{word-spacing:-0.719712px;}
.wsf_c03258{word-spacing:-0.118800px;}
.ws12_c03258{word-spacing:-0.099792px;}
.ws13_c03258{word-spacing:-0.085536px;}
.wse_c03258{word-spacing:0.000000px;}
.ws11_c03258{word-spacing:0.836352px;}
.wsb_c03258{word-spacing:33.300288px;}
.ws6_c03258{word-spacing:36.742464px;}
.ws1_c03258{word-spacing:37.759392px;}
.ws0_c03258{word-spacing:38.020752px;}
.ws3_c03258{word-spacing:39.218256px;}
.ws5_c03258{word-spacing:39.902544px;}
.ws7_c03258{word-spacing:42.026688px;}
._0_c03258{margin-left:-1.948320px;}
._2_c03258{width:1.482624px;}
._5_c03258{width:2.770416px;}
._4_c03258{width:5.749920px;}
._1_c03258{width:50.252400px;}
._3_c03258{width:51.530688px;}
.fc0_c03258{color:rgb(0,0,0);}
.fs0_c03258{font-size:47.520000px;}
.fs1_c03258{font-size:60.480000px;}
.y0_c03258{bottom:0.000000px;}
.y19_c03258{bottom:146.998362px;}
.y1b_c03258{bottom:186.600234px;}
.y1a_c03258{bottom:196.320450px;}
.y18_c03258{bottom:275.878542px;}
.y17_c03258{bottom:356.878758px;}
.y15_c03258{bottom:406.559730px;}
.y11_c03258{bottom:424.560306px;}
.y16_c03258{bottom:458.759262px;}
.y14_c03258{bottom:491.879514px;}
.y13_c03258{bottom:509.880090px;}
.y10_c03258{bottom:543.000342px;}
.y12_c03258{bottom:559.559874px;}
.yf_c03258{bottom:577.560450px;}
.y1c_c03258{bottom:614.280450px;}
.yb_c03258{bottom:667.558326px;}
.yd_c03258{bottom:707.160234px;}
.yc_c03258{bottom:716.880450px;}
.ya_c03258{bottom:796.438506px;}
.y9_c03258{bottom:877.438722px;}
.y7_c03258{bottom:926.759730px;}
.y3_c03258{bottom:944.760306px;}
.y8_c03258{bottom:979.319226px;}
.y6_c03258{bottom:1012.439478px;}
.y5_c03258{bottom:1030.440054px;}
.y2_c03258{bottom:1063.560306px;}
.y4_c03258{bottom:1079.759874px;}
.y1_c03258{bottom:1097.760450px;}
.ye_c03258{bottom:1134.840450px;}
.h3_c03258{height:32.530781px;}
.h1_c03258{height:41.696016px;}
.h2_c03258{height:41.812031px;}
.h4_c03258{height:54.654737px;}
.h0_c03258{height:1263.000000px;}
.w1_c03258{width:892.500000px;}
.w0_c03258{width:892.830000px;}
.x0_c03258{left:0.000000px;}
.xd_c03258{left:117.000000px;}
.x8_c03258{left:440.999856px;}
.x4_c03258{left:445.680576px;}
.xb_c03258{left:451.080000px;}
.x7_c03258{left:455.399604px;}
.x5_c03258{left:461.880144px;}
.x1_c03258{left:463.320000px;}
.xa_c03258{left:483.480360px;}
.x9_c03258{left:492.119496px;}
.x6_c03258{left:493.200576px;}
.xc_c03258{left:506.880360px;}
.x3_c03258{left:511.919892px;}
.x2_c03258{left:526.679604px;}
@media print{
.v0_c03258{vertical-align:0.000000pt;}
.v1_c03258{vertical-align:1.279488pt;}
.lsc_c03258{letter-spacing:-1.064448pt;}
.ls7_c03258{letter-spacing:-0.544896pt;}
.ls9_c03258{letter-spacing:-0.511104pt;}
.lsf_c03258{letter-spacing:-0.244992pt;}
.lsd_c03258{letter-spacing:-0.232320pt;}
.ls6_c03258{letter-spacing:-0.215424pt;}
.ls4_c03258{letter-spacing:-0.105600pt;}
.ls12_c03258{letter-spacing:0.000000pt;}
.ls1_c03258{letter-spacing:0.005376pt;}
.ls5_c03258{letter-spacing:0.114048pt;}
.lsb_c03258{letter-spacing:0.451968pt;}
.ls11_c03258{letter-spacing:0.456960pt;}
.lse_c03258{letter-spacing:0.477312pt;}
.lsa_c03258{letter-spacing:0.515328pt;}
.ls10_c03258{letter-spacing:0.528000pt;}
.ls8_c03258{letter-spacing:0.532224pt;}
.ls3_c03258{letter-spacing:0.544896pt;}
.ls0_c03258{letter-spacing:0.637824pt;}
.ls2_c03258{letter-spacing:0.642048pt;}
.wsc_c03258{word-spacing:-13.445376pt;}
.wsa_c03258{word-spacing:-11.088000pt;}
.ws8_c03258{word-spacing:-11.075328pt;}
.ws9_c03258{word-spacing:-11.037312pt;}
.ws4_c03258{word-spacing:-10.344576pt;}
.ws2_c03258{word-spacing:-10.015104pt;}
.ws15_c03258{word-spacing:-0.963072pt;}
.ws10_c03258{word-spacing:-0.958848pt;}
.wsd_c03258{word-spacing:-0.865920pt;}
.ws14_c03258{word-spacing:-0.639744pt;}
.wsf_c03258{word-spacing:-0.105600pt;}
.ws12_c03258{word-spacing:-0.088704pt;}
.ws13_c03258{word-spacing:-0.076032pt;}
.wse_c03258{word-spacing:0.000000pt;}
.ws11_c03258{word-spacing:0.743424pt;}
.wsb_c03258{word-spacing:29.600256pt;}
.ws6_c03258{word-spacing:32.659968pt;}
.ws1_c03258{word-spacing:33.563904pt;}
.ws0_c03258{word-spacing:33.796224pt;}
.ws3_c03258{word-spacing:34.860672pt;}
.ws5_c03258{word-spacing:35.468928pt;}
.ws7_c03258{word-spacing:37.357056pt;}
._0_c03258{margin-left:-1.731840pt;}
._2_c03258{width:1.317888pt;}
._5_c03258{width:2.462592pt;}
._4_c03258{width:5.111040pt;}
._1_c03258{width:44.668800pt;}
._3_c03258{width:45.805056pt;}
.fs0_c03258{font-size:42.240000pt;}
.fs1_c03258{font-size:53.760000pt;}
.y0_c03258{bottom:0.000000pt;}
.y19_c03258{bottom:130.665211pt;}
.y1b_c03258{bottom:165.866875pt;}
.y1a_c03258{bottom:174.507067pt;}
.y18_c03258{bottom:245.225371pt;}
.y17_c03258{bottom:317.225563pt;}
.y15_c03258{bottom:361.386427pt;}
.y11_c03258{bottom:377.386939pt;}
.y16_c03258{bottom:407.786011pt;}
.y14_c03258{bottom:437.226235pt;}
.y13_c03258{bottom:453.226747pt;}
.y10_c03258{bottom:482.666971pt;}
.y12_c03258{bottom:497.386555pt;}
.yf_c03258{bottom:513.387067pt;}
.y1c_c03258{bottom:546.027067pt;}
.yb_c03258{bottom:593.385179pt;}
.yd_c03258{bottom:628.586875pt;}
.yc_c03258{bottom:637.227067pt;}
.ya_c03258{bottom:707.945339pt;}
.y9_c03258{bottom:779.945531pt;}
.y7_c03258{bottom:823.786427pt;}
.y3_c03258{bottom:839.786939pt;}
.y8_c03258{bottom:870.505979pt;}
.y6_c03258{bottom:899.946203pt;}
.y5_c03258{bottom:915.946715pt;}
.y2_c03258{bottom:945.386939pt;}
.y4_c03258{bottom:959.786555pt;}
.y1_c03258{bottom:975.787067pt;}
.ye_c03258{bottom:1008.747067pt;}
.h3_c03258{height:28.916250pt;}
.h1_c03258{height:37.063125pt;}
.h2_c03258{height:37.166250pt;}
.h4_c03258{height:48.581988pt;}
.h0_c03258{height:1122.666667pt;}
.w1_c03258{width:793.333333pt;}
.w0_c03258{width:793.626667pt;}
.x0_c03258{left:0.000000pt;}
.xd_c03258{left:104.000000pt;}
.x8_c03258{left:391.999872pt;}
.x4_c03258{left:396.160512pt;}
.xb_c03258{left:400.960000pt;}
.x7_c03258{left:404.799648pt;}
.x5_c03258{left:410.560128pt;}
.x1_c03258{left:411.840000pt;}
.xa_c03258{left:429.760320pt;}
.x9_c03258{left:437.439552pt;}
.x6_c03258{left:438.400512pt;}
.xc_c03258{left:450.560320pt;}
.x3_c03258{left:455.039904pt;}
.x2_c03258{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03259 {
    display:none;
  }
  .loading-indicator_c03259.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03259 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03259 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03259" -> "#page-container .classname_c03259")
 */
.pf_c03259 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03259 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03259.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03259 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03259 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03259 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03259 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03259 {overflow:visible;}
  }
}
.c_c03259 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03259 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03259:after { /* webkit #35443 */
  content: '';
}
.t_c03259:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03259 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03259 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03259 { /* info for Javascript */
  display:none;
}
.l_c03259 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03259 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03259 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03259:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03259 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03259.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03259.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03259 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03259{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03259;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03259{font-family:ff1_c03259;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03259;src:url('chunks/assets/font_37274dc4a9eec24119601729.woff2')format("woff");}.ff2_c03259{font-family:ff2_c03259;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03259;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03259{font-family:ff3_c03259;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03259{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03259{vertical-align:0.000000px;}
.v1_c03259{vertical-align:1.439424px;}
.lsb_c03259{letter-spacing:-1.197504px;}
.ls6_c03259{letter-spacing:-0.613008px;}
.ls8_c03259{letter-spacing:-0.574992px;}
.lse_c03259{letter-spacing:-0.275616px;}
.lsc_c03259{letter-spacing:-0.261360px;}
.ls5_c03259{letter-spacing:-0.242352px;}
.ls3_c03259{letter-spacing:-0.118800px;}
.ls11_c03259{letter-spacing:0.000000px;}
.ls1_c03259{letter-spacing:0.006048px;}
.ls4_c03259{letter-spacing:0.128304px;}
.lsa_c03259{letter-spacing:0.508464px;}
.ls10_c03259{letter-spacing:0.514080px;}
.lsd_c03259{letter-spacing:0.536976px;}
.ls9_c03259{letter-spacing:0.579744px;}
.lsf_c03259{letter-spacing:0.594000px;}
.ls7_c03259{letter-spacing:0.598752px;}
.ls2_c03259{letter-spacing:0.613008px;}
.ls0_c03259{letter-spacing:0.717552px;}
.sc__c03259{text-shadow:none;}
.sc0_c03259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03259{-webkit-text-stroke:0px transparent;}
.sc0_c03259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03259{word-spacing:-15.126048px;}
.wsa_c03259{word-spacing:-12.474000px;}
.ws8_c03259{word-spacing:-12.459744px;}
.ws9_c03259{word-spacing:-12.416976px;}
.ws4_c03259{word-spacing:-11.637648px;}
.ws2_c03259{word-spacing:-11.266992px;}
.ws10_c03259{word-spacing:-1.078704px;}
.wsd_c03259{word-spacing:-0.974160px;}
.ws14_c03259{word-spacing:-0.719712px;}
.wsf_c03259{word-spacing:-0.118800px;}
.ws12_c03259{word-spacing:-0.099792px;}
.ws13_c03259{word-spacing:-0.085536px;}
.wse_c03259{word-spacing:0.000000px;}
.ws11_c03259{word-spacing:0.836352px;}
.wsb_c03259{word-spacing:33.300288px;}
.ws6_c03259{word-spacing:36.742464px;}
.ws1_c03259{word-spacing:37.759392px;}
.ws0_c03259{word-spacing:38.020752px;}
.ws3_c03259{word-spacing:39.218256px;}
.ws5_c03259{word-spacing:39.902544px;}
.ws7_c03259{word-spacing:42.026688px;}
._0_c03259{margin-left:-1.948320px;}
._2_c03259{width:1.482624px;}
._5_c03259{width:2.770416px;}
._4_c03259{width:5.749920px;}
._1_c03259{width:50.252400px;}
._3_c03259{width:51.530688px;}
.fc0_c03259{color:rgb(0,0,0);}
.fs0_c03259{font-size:47.520000px;}
.fs1_c03259{font-size:60.480000px;}
.y0_c03259{bottom:0.000000px;}
.y19_c03259{bottom:146.998362px;}
.y1b_c03259{bottom:186.600234px;}
.y1a_c03259{bottom:196.320450px;}
.y18_c03259{bottom:275.878542px;}
.y17_c03259{bottom:356.878758px;}
.y15_c03259{bottom:406.559730px;}
.y11_c03259{bottom:424.560306px;}
.y16_c03259{bottom:458.759262px;}
.y14_c03259{bottom:491.879514px;}
.y13_c03259{bottom:509.880090px;}
.y10_c03259{bottom:543.000342px;}
.y12_c03259{bottom:559.559874px;}
.yf_c03259{bottom:577.560450px;}
.y1c_c03259{bottom:614.280450px;}
.yb_c03259{bottom:667.558326px;}
.yd_c03259{bottom:707.160234px;}
.yc_c03259{bottom:716.880450px;}
.ya_c03259{bottom:796.438506px;}
.y9_c03259{bottom:877.438722px;}
.y7_c03259{bottom:926.759730px;}
.y3_c03259{bottom:944.760306px;}
.y8_c03259{bottom:979.319226px;}
.y6_c03259{bottom:1012.439478px;}
.y5_c03259{bottom:1030.440054px;}
.y2_c03259{bottom:1063.560306px;}
.y4_c03259{bottom:1079.759874px;}
.y1_c03259{bottom:1097.760450px;}
.ye_c03259{bottom:1134.840450px;}
.h3_c03259{height:32.530781px;}
.h1_c03259{height:41.696016px;}
.h2_c03259{height:41.812031px;}
.h4_c03259{height:54.654737px;}
.h0_c03259{height:1263.000000px;}
.w1_c03259{width:892.500000px;}
.w0_c03259{width:892.830000px;}
.x0_c03259{left:0.000000px;}
.xd_c03259{left:117.000000px;}
.x8_c03259{left:440.999856px;}
.x4_c03259{left:445.680576px;}
.xb_c03259{left:451.080000px;}
.x7_c03259{left:455.399604px;}
.x5_c03259{left:461.880144px;}
.x1_c03259{left:463.320000px;}
.xa_c03259{left:483.480360px;}
.x9_c03259{left:492.119496px;}
.x6_c03259{left:493.200576px;}
.xc_c03259{left:506.880360px;}
.x3_c03259{left:511.919892px;}
.x2_c03259{left:526.679604px;}
@media print{
.v0_c03259{vertical-align:0.000000pt;}
.v1_c03259{vertical-align:1.279488pt;}
.lsb_c03259{letter-spacing:-1.064448pt;}
.ls6_c03259{letter-spacing:-0.544896pt;}
.ls8_c03259{letter-spacing:-0.511104pt;}
.lse_c03259{letter-spacing:-0.244992pt;}
.lsc_c03259{letter-spacing:-0.232320pt;}
.ls5_c03259{letter-spacing:-0.215424pt;}
.ls3_c03259{letter-spacing:-0.105600pt;}
.ls11_c03259{letter-spacing:0.000000pt;}
.ls1_c03259{letter-spacing:0.005376pt;}
.ls4_c03259{letter-spacing:0.114048pt;}
.lsa_c03259{letter-spacing:0.451968pt;}
.ls10_c03259{letter-spacing:0.456960pt;}
.lsd_c03259{letter-spacing:0.477312pt;}
.ls9_c03259{letter-spacing:0.515328pt;}
.lsf_c03259{letter-spacing:0.528000pt;}
.ls7_c03259{letter-spacing:0.532224pt;}
.ls2_c03259{letter-spacing:0.544896pt;}
.ls0_c03259{letter-spacing:0.637824pt;}
.wsc_c03259{word-spacing:-13.445376pt;}
.wsa_c03259{word-spacing:-11.088000pt;}
.ws8_c03259{word-spacing:-11.075328pt;}
.ws9_c03259{word-spacing:-11.037312pt;}
.ws4_c03259{word-spacing:-10.344576pt;}
.ws2_c03259{word-spacing:-10.015104pt;}
.ws10_c03259{word-spacing:-0.958848pt;}
.wsd_c03259{word-spacing:-0.865920pt;}
.ws14_c03259{word-spacing:-0.639744pt;}
.wsf_c03259{word-spacing:-0.105600pt;}
.ws12_c03259{word-spacing:-0.088704pt;}
.ws13_c03259{word-spacing:-0.076032pt;}
.wse_c03259{word-spacing:0.000000pt;}
.ws11_c03259{word-spacing:0.743424pt;}
.wsb_c03259{word-spacing:29.600256pt;}
.ws6_c03259{word-spacing:32.659968pt;}
.ws1_c03259{word-spacing:33.563904pt;}
.ws0_c03259{word-spacing:33.796224pt;}
.ws3_c03259{word-spacing:34.860672pt;}
.ws5_c03259{word-spacing:35.468928pt;}
.ws7_c03259{word-spacing:37.357056pt;}
._0_c03259{margin-left:-1.731840pt;}
._2_c03259{width:1.317888pt;}
._5_c03259{width:2.462592pt;}
._4_c03259{width:5.111040pt;}
._1_c03259{width:44.668800pt;}
._3_c03259{width:45.805056pt;}
.fs0_c03259{font-size:42.240000pt;}
.fs1_c03259{font-size:53.760000pt;}
.y0_c03259{bottom:0.000000pt;}
.y19_c03259{bottom:130.665211pt;}
.y1b_c03259{bottom:165.866875pt;}
.y1a_c03259{bottom:174.507067pt;}
.y18_c03259{bottom:245.225371pt;}
.y17_c03259{bottom:317.225563pt;}
.y15_c03259{bottom:361.386427pt;}
.y11_c03259{bottom:377.386939pt;}
.y16_c03259{bottom:407.786011pt;}
.y14_c03259{bottom:437.226235pt;}
.y13_c03259{bottom:453.226747pt;}
.y10_c03259{bottom:482.666971pt;}
.y12_c03259{bottom:497.386555pt;}
.yf_c03259{bottom:513.387067pt;}
.y1c_c03259{bottom:546.027067pt;}
.yb_c03259{bottom:593.385179pt;}
.yd_c03259{bottom:628.586875pt;}
.yc_c03259{bottom:637.227067pt;}
.ya_c03259{bottom:707.945339pt;}
.y9_c03259{bottom:779.945531pt;}
.y7_c03259{bottom:823.786427pt;}
.y3_c03259{bottom:839.786939pt;}
.y8_c03259{bottom:870.505979pt;}
.y6_c03259{bottom:899.946203pt;}
.y5_c03259{bottom:915.946715pt;}
.y2_c03259{bottom:945.386939pt;}
.y4_c03259{bottom:959.786555pt;}
.y1_c03259{bottom:975.787067pt;}
.ye_c03259{bottom:1008.747067pt;}
.h3_c03259{height:28.916250pt;}
.h1_c03259{height:37.063125pt;}
.h2_c03259{height:37.166250pt;}
.h4_c03259{height:48.581988pt;}
.h0_c03259{height:1122.666667pt;}
.w1_c03259{width:793.333333pt;}
.w0_c03259{width:793.626667pt;}
.x0_c03259{left:0.000000pt;}
.xd_c03259{left:104.000000pt;}
.x8_c03259{left:391.999872pt;}
.x4_c03259{left:396.160512pt;}
.xb_c03259{left:400.960000pt;}
.x7_c03259{left:404.799648pt;}
.x5_c03259{left:410.560128pt;}
.x1_c03259{left:411.840000pt;}
.xa_c03259{left:429.760320pt;}
.x9_c03259{left:437.439552pt;}
.x6_c03259{left:438.400512pt;}
.xc_c03259{left:450.560320pt;}
.x3_c03259{left:455.039904pt;}
.x2_c03259{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03260 {
    display:none;
  }
  .loading-indicator_c03260.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03260 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03260 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03260" -> "#page-container .classname_c03260")
 */
.pf_c03260 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03260 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03260.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03260 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03260 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03260 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03260 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03260 {overflow:visible;}
  }
}
.c_c03260 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03260 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03260:after { /* webkit #35443 */
  content: '';
}
.t_c03260:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03260 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03260 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03260 { /* info for Javascript */
  display:none;
}
.l_c03260 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03260 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03260 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03260:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03260 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03260.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03260.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03260 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03260{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03260;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03260{font-family:ff1_c03260;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03260;src:url('chunks/assets/font_37274dc4a9eec24119601729.woff2')format("woff");}.ff2_c03260{font-family:ff2_c03260;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03260;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03260{font-family:ff3_c03260;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03260{vertical-align:0.000000px;}
.v1_c03260{vertical-align:1.439424px;}
.lsb_c03260{letter-spacing:-1.197504px;}
.ls6_c03260{letter-spacing:-0.613008px;}
.ls8_c03260{letter-spacing:-0.574992px;}
.lse_c03260{letter-spacing:-0.275616px;}
.lsc_c03260{letter-spacing:-0.261360px;}
.ls5_c03260{letter-spacing:-0.242352px;}
.ls3_c03260{letter-spacing:-0.118800px;}
.ls11_c03260{letter-spacing:0.000000px;}
.ls1_c03260{letter-spacing:0.006048px;}
.ls4_c03260{letter-spacing:0.128304px;}
.lsa_c03260{letter-spacing:0.508464px;}
.ls10_c03260{letter-spacing:0.514080px;}
.lsd_c03260{letter-spacing:0.536976px;}
.ls9_c03260{letter-spacing:0.579744px;}
.lsf_c03260{letter-spacing:0.594000px;}
.ls7_c03260{letter-spacing:0.598752px;}
.ls2_c03260{letter-spacing:0.613008px;}
.ls0_c03260{letter-spacing:0.717552px;}
.sc__c03260{text-shadow:none;}
.sc0_c03260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03260{-webkit-text-stroke:0px transparent;}
.sc0_c03260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03260{word-spacing:-15.126048px;}
.wsa_c03260{word-spacing:-12.474000px;}
.ws8_c03260{word-spacing:-12.459744px;}
.ws9_c03260{word-spacing:-12.416976px;}
.ws4_c03260{word-spacing:-11.637648px;}
.ws2_c03260{word-spacing:-11.266992px;}
.ws10_c03260{word-spacing:-1.078704px;}
.wsd_c03260{word-spacing:-0.974160px;}
.ws14_c03260{word-spacing:-0.719712px;}
.wsf_c03260{word-spacing:-0.118800px;}
.ws12_c03260{word-spacing:-0.099792px;}
.ws13_c03260{word-spacing:-0.085536px;}
.wse_c03260{word-spacing:0.000000px;}
.ws11_c03260{word-spacing:0.836352px;}
.wsb_c03260{word-spacing:33.300288px;}
.ws6_c03260{word-spacing:36.742464px;}
.ws1_c03260{word-spacing:37.759392px;}
.ws0_c03260{word-spacing:38.020752px;}
.ws3_c03260{word-spacing:39.218256px;}
.ws5_c03260{word-spacing:39.902544px;}
.ws7_c03260{word-spacing:42.026688px;}
._0_c03260{margin-left:-1.948320px;}
._2_c03260{width:1.482624px;}
._5_c03260{width:2.770416px;}
._4_c03260{width:5.749920px;}
._1_c03260{width:50.252400px;}
._3_c03260{width:51.530688px;}
.fc0_c03260{color:rgb(0,0,0);}
.fs0_c03260{font-size:47.520000px;}
.fs1_c03260{font-size:60.480000px;}
.y0_c03260{bottom:0.000000px;}
.y19_c03260{bottom:146.998362px;}
.y1b_c03260{bottom:186.600234px;}
.y1a_c03260{bottom:196.320450px;}
.y18_c03260{bottom:275.878542px;}
.y17_c03260{bottom:356.878758px;}
.y15_c03260{bottom:406.559730px;}
.y11_c03260{bottom:424.560306px;}
.y16_c03260{bottom:458.759262px;}
.y14_c03260{bottom:491.879514px;}
.y13_c03260{bottom:509.880090px;}
.y10_c03260{bottom:543.000342px;}
.y12_c03260{bottom:559.559874px;}
.yf_c03260{bottom:577.560450px;}
.y1c_c03260{bottom:614.280450px;}
.yb_c03260{bottom:667.558326px;}
.yd_c03260{bottom:707.160234px;}
.yc_c03260{bottom:716.880450px;}
.ya_c03260{bottom:796.438506px;}
.y9_c03260{bottom:877.438722px;}
.y7_c03260{bottom:926.759730px;}
.y3_c03260{bottom:944.760306px;}
.y8_c03260{bottom:979.319226px;}
.y6_c03260{bottom:1012.439478px;}
.y5_c03260{bottom:1030.440054px;}
.y2_c03260{bottom:1063.560306px;}
.y4_c03260{bottom:1079.759874px;}
.y1_c03260{bottom:1097.760450px;}
.ye_c03260{bottom:1134.840450px;}
.h3_c03260{height:32.530781px;}
.h1_c03260{height:41.696016px;}
.h2_c03260{height:41.812031px;}
.h4_c03260{height:54.654737px;}
.h0_c03260{height:1263.000000px;}
.w1_c03260{width:892.500000px;}
.w0_c03260{width:892.830000px;}
.x0_c03260{left:0.000000px;}
.xd_c03260{left:117.000000px;}
.x8_c03260{left:440.999856px;}
.x4_c03260{left:445.680576px;}
.xb_c03260{left:451.080000px;}
.x7_c03260{left:455.399604px;}
.x5_c03260{left:461.880144px;}
.x1_c03260{left:463.320000px;}
.xa_c03260{left:483.480360px;}
.x9_c03260{left:492.119496px;}
.x6_c03260{left:493.200576px;}
.xc_c03260{left:506.880360px;}
.x3_c03260{left:511.919892px;}
.x2_c03260{left:526.679604px;}
@media print{
.v0_c03260{vertical-align:0.000000pt;}
.v1_c03260{vertical-align:1.279488pt;}
.lsb_c03260{letter-spacing:-1.064448pt;}
.ls6_c03260{letter-spacing:-0.544896pt;}
.ls8_c03260{letter-spacing:-0.511104pt;}
.lse_c03260{letter-spacing:-0.244992pt;}
.lsc_c03260{letter-spacing:-0.232320pt;}
.ls5_c03260{letter-spacing:-0.215424pt;}
.ls3_c03260{letter-spacing:-0.105600pt;}
.ls11_c03260{letter-spacing:0.000000pt;}
.ls1_c03260{letter-spacing:0.005376pt;}
.ls4_c03260{letter-spacing:0.114048pt;}
.lsa_c03260{letter-spacing:0.451968pt;}
.ls10_c03260{letter-spacing:0.456960pt;}
.lsd_c03260{letter-spacing:0.477312pt;}
.ls9_c03260{letter-spacing:0.515328pt;}
.lsf_c03260{letter-spacing:0.528000pt;}
.ls7_c03260{letter-spacing:0.532224pt;}
.ls2_c03260{letter-spacing:0.544896pt;}
.ls0_c03260{letter-spacing:0.637824pt;}
.wsc_c03260{word-spacing:-13.445376pt;}
.wsa_c03260{word-spacing:-11.088000pt;}
.ws8_c03260{word-spacing:-11.075328pt;}
.ws9_c03260{word-spacing:-11.037312pt;}
.ws4_c03260{word-spacing:-10.344576pt;}
.ws2_c03260{word-spacing:-10.015104pt;}
.ws10_c03260{word-spacing:-0.958848pt;}
.wsd_c03260{word-spacing:-0.865920pt;}
.ws14_c03260{word-spacing:-0.639744pt;}
.wsf_c03260{word-spacing:-0.105600pt;}
.ws12_c03260{word-spacing:-0.088704pt;}
.ws13_c03260{word-spacing:-0.076032pt;}
.wse_c03260{word-spacing:0.000000pt;}
.ws11_c03260{word-spacing:0.743424pt;}
.wsb_c03260{word-spacing:29.600256pt;}
.ws6_c03260{word-spacing:32.659968pt;}
.ws1_c03260{word-spacing:33.563904pt;}
.ws0_c03260{word-spacing:33.796224pt;}
.ws3_c03260{word-spacing:34.860672pt;}
.ws5_c03260{word-spacing:35.468928pt;}
.ws7_c03260{word-spacing:37.357056pt;}
._0_c03260{margin-left:-1.731840pt;}
._2_c03260{width:1.317888pt;}
._5_c03260{width:2.462592pt;}
._4_c03260{width:5.111040pt;}
._1_c03260{width:44.668800pt;}
._3_c03260{width:45.805056pt;}
.fs0_c03260{font-size:42.240000pt;}
.fs1_c03260{font-size:53.760000pt;}
.y0_c03260{bottom:0.000000pt;}
.y19_c03260{bottom:130.665211pt;}
.y1b_c03260{bottom:165.866875pt;}
.y1a_c03260{bottom:174.507067pt;}
.y18_c03260{bottom:245.225371pt;}
.y17_c03260{bottom:317.225563pt;}
.y15_c03260{bottom:361.386427pt;}
.y11_c03260{bottom:377.386939pt;}
.y16_c03260{bottom:407.786011pt;}
.y14_c03260{bottom:437.226235pt;}
.y13_c03260{bottom:453.226747pt;}
.y10_c03260{bottom:482.666971pt;}
.y12_c03260{bottom:497.386555pt;}
.yf_c03260{bottom:513.387067pt;}
.y1c_c03260{bottom:546.027067pt;}
.yb_c03260{bottom:593.385179pt;}
.yd_c03260{bottom:628.586875pt;}
.yc_c03260{bottom:637.227067pt;}
.ya_c03260{bottom:707.945339pt;}
.y9_c03260{bottom:779.945531pt;}
.y7_c03260{bottom:823.786427pt;}
.y3_c03260{bottom:839.786939pt;}
.y8_c03260{bottom:870.505979pt;}
.y6_c03260{bottom:899.946203pt;}
.y5_c03260{bottom:915.946715pt;}
.y2_c03260{bottom:945.386939pt;}
.y4_c03260{bottom:959.786555pt;}
.y1_c03260{bottom:975.787067pt;}
.ye_c03260{bottom:1008.747067pt;}
.h3_c03260{height:28.916250pt;}
.h1_c03260{height:37.063125pt;}
.h2_c03260{height:37.166250pt;}
.h4_c03260{height:48.581988pt;}
.h0_c03260{height:1122.666667pt;}
.w1_c03260{width:793.333333pt;}
.w0_c03260{width:793.626667pt;}
.x0_c03260{left:0.000000pt;}
.xd_c03260{left:104.000000pt;}
.x8_c03260{left:391.999872pt;}
.x4_c03260{left:396.160512pt;}
.xb_c03260{left:400.960000pt;}
.x7_c03260{left:404.799648pt;}
.x5_c03260{left:410.560128pt;}
.x1_c03260{left:411.840000pt;}
.xa_c03260{left:429.760320pt;}
.x9_c03260{left:437.439552pt;}
.x6_c03260{left:438.400512pt;}
.xc_c03260{left:450.560320pt;}
.x3_c03260{left:455.039904pt;}
.x2_c03260{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03261 {
    display:none;
  }
  .loading-indicator_c03261.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03261 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03261 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03261" -> "#page-container .classname_c03261")
 */
.pf_c03261 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03261 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03261.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03261 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03261 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03261 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03261 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03261 {overflow:visible;}
  }
}
.c_c03261 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03261 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03261:after { /* webkit #35443 */
  content: '';
}
.t_c03261:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03261 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03261 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03261 { /* info for Javascript */
  display:none;
}
.l_c03261 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03261 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03261 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03261:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03261 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03261.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03261.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03261 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03261{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03261;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03261{font-family:ff1_c03261;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03261;src:url('chunks/assets/font_d739c4007b05aca85c237b1b.woff2')format("woff");}.ff2_c03261{font-family:ff2_c03261;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03261;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03261{font-family:ff3_c03261;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03261{vertical-align:0.000000px;}
.v1_c03261{vertical-align:1.439424px;}
.lsc_c03261{letter-spacing:-1.197504px;}
.ls7_c03261{letter-spacing:-0.613008px;}
.ls9_c03261{letter-spacing:-0.574992px;}
.lsf_c03261{letter-spacing:-0.275616px;}
.lsd_c03261{letter-spacing:-0.261360px;}
.ls6_c03261{letter-spacing:-0.242352px;}
.ls4_c03261{letter-spacing:-0.118800px;}
.ls12_c03261{letter-spacing:0.000000px;}
.ls1_c03261{letter-spacing:0.006048px;}
.ls5_c03261{letter-spacing:0.128304px;}
.lsb_c03261{letter-spacing:0.508464px;}
.ls11_c03261{letter-spacing:0.514080px;}
.lse_c03261{letter-spacing:0.536976px;}
.lsa_c03261{letter-spacing:0.579744px;}
.ls10_c03261{letter-spacing:0.594000px;}
.ls8_c03261{letter-spacing:0.598752px;}
.ls2_c03261{letter-spacing:0.613008px;}
.ls3_c03261{letter-spacing:0.717552px;}
.ls0_c03261{letter-spacing:0.722304px;}
.sc__c03261{text-shadow:none;}
.sc0_c03261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03261{-webkit-text-stroke:0px transparent;}
.sc0_c03261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03261{word-spacing:-15.126048px;}
.wsa_c03261{word-spacing:-12.474000px;}
.ws8_c03261{word-spacing:-12.459744px;}
.ws9_c03261{word-spacing:-12.416976px;}
.ws4_c03261{word-spacing:-11.637648px;}
.ws2_c03261{word-spacing:-11.266992px;}
.ws10_c03261{word-spacing:-1.083456px;}
.wsd_c03261{word-spacing:-0.974160px;}
.ws14_c03261{word-spacing:-0.719712px;}
.wsf_c03261{word-spacing:-0.118800px;}
.ws12_c03261{word-spacing:-0.099792px;}
.ws13_c03261{word-spacing:-0.085536px;}
.wse_c03261{word-spacing:0.000000px;}
.ws11_c03261{word-spacing:0.836352px;}
.wsb_c03261{word-spacing:33.300288px;}
.ws6_c03261{word-spacing:36.742464px;}
.ws1_c03261{word-spacing:37.759392px;}
.ws0_c03261{word-spacing:38.020752px;}
.ws3_c03261{word-spacing:39.218256px;}
.ws5_c03261{word-spacing:39.902544px;}
.ws7_c03261{word-spacing:42.026688px;}
._0_c03261{margin-left:-1.948320px;}
._2_c03261{width:1.482624px;}
._5_c03261{width:2.770416px;}
._4_c03261{width:5.749920px;}
._1_c03261{width:50.252400px;}
._3_c03261{width:51.530688px;}
.fc0_c03261{color:rgb(0,0,0);}
.fs0_c03261{font-size:47.520000px;}
.fs1_c03261{font-size:60.480000px;}
.y0_c03261{bottom:0.000000px;}
.y19_c03261{bottom:146.998362px;}
.y1b_c03261{bottom:186.600234px;}
.y1a_c03261{bottom:196.320450px;}
.y18_c03261{bottom:275.878542px;}
.y17_c03261{bottom:356.878758px;}
.y15_c03261{bottom:406.559730px;}
.y11_c03261{bottom:424.560306px;}
.y16_c03261{bottom:458.759262px;}
.y14_c03261{bottom:491.879514px;}
.y13_c03261{bottom:509.880090px;}
.y10_c03261{bottom:543.000342px;}
.y12_c03261{bottom:559.559874px;}
.yf_c03261{bottom:577.560450px;}
.y1c_c03261{bottom:614.280450px;}
.yb_c03261{bottom:667.558326px;}
.yd_c03261{bottom:707.160234px;}
.yc_c03261{bottom:716.880450px;}
.ya_c03261{bottom:796.438506px;}
.y9_c03261{bottom:877.438722px;}
.y7_c03261{bottom:926.759730px;}
.y3_c03261{bottom:944.760306px;}
.y8_c03261{bottom:979.319226px;}
.y6_c03261{bottom:1012.439478px;}
.y5_c03261{bottom:1030.440054px;}
.y2_c03261{bottom:1063.560306px;}
.y4_c03261{bottom:1079.759874px;}
.y1_c03261{bottom:1097.760450px;}
.ye_c03261{bottom:1134.840450px;}
.h3_c03261{height:32.530781px;}
.h1_c03261{height:41.696016px;}
.h2_c03261{height:41.812031px;}
.h4_c03261{height:54.654737px;}
.h0_c03261{height:1263.000000px;}
.w1_c03261{width:892.500000px;}
.w0_c03261{width:892.830000px;}
.x0_c03261{left:0.000000px;}
.xd_c03261{left:117.000000px;}
.x8_c03261{left:440.999856px;}
.x4_c03261{left:445.680576px;}
.xb_c03261{left:451.080000px;}
.x7_c03261{left:455.399604px;}
.x5_c03261{left:461.880144px;}
.x1_c03261{left:463.320000px;}
.xa_c03261{left:483.480360px;}
.x9_c03261{left:492.119496px;}
.x6_c03261{left:493.200576px;}
.xc_c03261{left:506.880360px;}
.x3_c03261{left:511.919892px;}
.x2_c03261{left:526.679604px;}
@media print{
.v0_c03261{vertical-align:0.000000pt;}
.v1_c03261{vertical-align:1.279488pt;}
.lsc_c03261{letter-spacing:-1.064448pt;}
.ls7_c03261{letter-spacing:-0.544896pt;}
.ls9_c03261{letter-spacing:-0.511104pt;}
.lsf_c03261{letter-spacing:-0.244992pt;}
.lsd_c03261{letter-spacing:-0.232320pt;}
.ls6_c03261{letter-spacing:-0.215424pt;}
.ls4_c03261{letter-spacing:-0.105600pt;}
.ls12_c03261{letter-spacing:0.000000pt;}
.ls1_c03261{letter-spacing:0.005376pt;}
.ls5_c03261{letter-spacing:0.114048pt;}
.lsb_c03261{letter-spacing:0.451968pt;}
.ls11_c03261{letter-spacing:0.456960pt;}
.lse_c03261{letter-spacing:0.477312pt;}
.lsa_c03261{letter-spacing:0.515328pt;}
.ls10_c03261{letter-spacing:0.528000pt;}
.ls8_c03261{letter-spacing:0.532224pt;}
.ls2_c03261{letter-spacing:0.544896pt;}
.ls3_c03261{letter-spacing:0.637824pt;}
.ls0_c03261{letter-spacing:0.642048pt;}
.wsc_c03261{word-spacing:-13.445376pt;}
.wsa_c03261{word-spacing:-11.088000pt;}
.ws8_c03261{word-spacing:-11.075328pt;}
.ws9_c03261{word-spacing:-11.037312pt;}
.ws4_c03261{word-spacing:-10.344576pt;}
.ws2_c03261{word-spacing:-10.015104pt;}
.ws10_c03261{word-spacing:-0.963072pt;}
.wsd_c03261{word-spacing:-0.865920pt;}
.ws14_c03261{word-spacing:-0.639744pt;}
.wsf_c03261{word-spacing:-0.105600pt;}
.ws12_c03261{word-spacing:-0.088704pt;}
.ws13_c03261{word-spacing:-0.076032pt;}
.wse_c03261{word-spacing:0.000000pt;}
.ws11_c03261{word-spacing:0.743424pt;}
.wsb_c03261{word-spacing:29.600256pt;}
.ws6_c03261{word-spacing:32.659968pt;}
.ws1_c03261{word-spacing:33.563904pt;}
.ws0_c03261{word-spacing:33.796224pt;}
.ws3_c03261{word-spacing:34.860672pt;}
.ws5_c03261{word-spacing:35.468928pt;}
.ws7_c03261{word-spacing:37.357056pt;}
._0_c03261{margin-left:-1.731840pt;}
._2_c03261{width:1.317888pt;}
._5_c03261{width:2.462592pt;}
._4_c03261{width:5.111040pt;}
._1_c03261{width:44.668800pt;}
._3_c03261{width:45.805056pt;}
.fs0_c03261{font-size:42.240000pt;}
.fs1_c03261{font-size:53.760000pt;}
.y0_c03261{bottom:0.000000pt;}
.y19_c03261{bottom:130.665211pt;}
.y1b_c03261{bottom:165.866875pt;}
.y1a_c03261{bottom:174.507067pt;}
.y18_c03261{bottom:245.225371pt;}
.y17_c03261{bottom:317.225563pt;}
.y15_c03261{bottom:361.386427pt;}
.y11_c03261{bottom:377.386939pt;}
.y16_c03261{bottom:407.786011pt;}
.y14_c03261{bottom:437.226235pt;}
.y13_c03261{bottom:453.226747pt;}
.y10_c03261{bottom:482.666971pt;}
.y12_c03261{bottom:497.386555pt;}
.yf_c03261{bottom:513.387067pt;}
.y1c_c03261{bottom:546.027067pt;}
.yb_c03261{bottom:593.385179pt;}
.yd_c03261{bottom:628.586875pt;}
.yc_c03261{bottom:637.227067pt;}
.ya_c03261{bottom:707.945339pt;}
.y9_c03261{bottom:779.945531pt;}
.y7_c03261{bottom:823.786427pt;}
.y3_c03261{bottom:839.786939pt;}
.y8_c03261{bottom:870.505979pt;}
.y6_c03261{bottom:899.946203pt;}
.y5_c03261{bottom:915.946715pt;}
.y2_c03261{bottom:945.386939pt;}
.y4_c03261{bottom:959.786555pt;}
.y1_c03261{bottom:975.787067pt;}
.ye_c03261{bottom:1008.747067pt;}
.h3_c03261{height:28.916250pt;}
.h1_c03261{height:37.063125pt;}
.h2_c03261{height:37.166250pt;}
.h4_c03261{height:48.581988pt;}
.h0_c03261{height:1122.666667pt;}
.w1_c03261{width:793.333333pt;}
.w0_c03261{width:793.626667pt;}
.x0_c03261{left:0.000000pt;}
.xd_c03261{left:104.000000pt;}
.x8_c03261{left:391.999872pt;}
.x4_c03261{left:396.160512pt;}
.xb_c03261{left:400.960000pt;}
.x7_c03261{left:404.799648pt;}
.x5_c03261{left:410.560128pt;}
.x1_c03261{left:411.840000pt;}
.xa_c03261{left:429.760320pt;}
.x9_c03261{left:437.439552pt;}
.x6_c03261{left:438.400512pt;}
.xc_c03261{left:450.560320pt;}
.x3_c03261{left:455.039904pt;}
.x2_c03261{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03262 {
    display:none;
  }
  .loading-indicator_c03262.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03262 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03262 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03262" -> "#page-container .classname_c03262")
 */
.pf_c03262 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03262 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03262.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03262 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03262 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03262 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03262 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03262 {overflow:visible;}
  }
}
.c_c03262 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03262 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03262:after { /* webkit #35443 */
  content: '';
}
.t_c03262:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03262 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03262 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03262 { /* info for Javascript */
  display:none;
}
.l_c03262 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03262 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03262 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03262:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03262 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03262.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03262.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03262 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03262{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03262;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03262{font-family:ff1_c03262;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03262;src:url('chunks/assets/font_88dd24efab9abfa3a4df018e.woff2')format("woff");}.ff2_c03262{font-family:ff2_c03262;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03262;src:url('chunks/assets/font_288d5a24569fc3f6a43c9309.woff2')format("woff");}.ff3_c03262{font-family:ff3_c03262;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03262{vertical-align:0.000000px;}
.v1_c03262{vertical-align:1.439424px;}
.lsd_c03262{letter-spacing:-1.197504px;}
.ls14_c03262{letter-spacing:-0.793584px;}
.ls8_c03262{letter-spacing:-0.613008px;}
.lsa_c03262{letter-spacing:-0.574992px;}
.ls10_c03262{letter-spacing:-0.275616px;}
.lse_c03262{letter-spacing:-0.261360px;}
.ls7_c03262{letter-spacing:-0.242352px;}
.ls5_c03262{letter-spacing:-0.118800px;}
.ls13_c03262{letter-spacing:0.000000px;}
.ls1_c03262{letter-spacing:0.006048px;}
.ls6_c03262{letter-spacing:0.128304px;}
.lsc_c03262{letter-spacing:0.508464px;}
.ls12_c03262{letter-spacing:0.514080px;}
.lsf_c03262{letter-spacing:0.536976px;}
.lsb_c03262{letter-spacing:0.579744px;}
.ls11_c03262{letter-spacing:0.594000px;}
.ls9_c03262{letter-spacing:0.598752px;}
.ls4_c03262{letter-spacing:0.613008px;}
.ls2_c03262{letter-spacing:0.651024px;}
.ls3_c03262{letter-spacing:0.717552px;}
.ls0_c03262{letter-spacing:0.722304px;}
.sc__c03262{text-shadow:none;}
.sc0_c03262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03262{-webkit-text-stroke:0px transparent;}
.sc0_c03262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03262{word-spacing:-15.126048px;}
.wsa_c03262{word-spacing:-12.474000px;}
.ws8_c03262{word-spacing:-12.459744px;}
.ws9_c03262{word-spacing:-12.416976px;}
.ws4_c03262{word-spacing:-11.637648px;}
.ws2_c03262{word-spacing:-11.266992px;}
.ws11_c03262{word-spacing:-1.083456px;}
.ws17_c03262{word-spacing:-1.078704px;}
.ws16_c03262{word-spacing:-1.012176px;}
.wse_c03262{word-spacing:-0.974160px;}
.ws15_c03262{word-spacing:-0.719712px;}
.ws10_c03262{word-spacing:-0.118800px;}
.ws13_c03262{word-spacing:-0.099792px;}
.ws14_c03262{word-spacing:-0.085536px;}
.wsf_c03262{word-spacing:0.000000px;}
.ws18_c03262{word-spacing:0.432432px;}
.ws12_c03262{word-spacing:0.836352px;}
.wsb_c03262{word-spacing:33.300288px;}
.wsd_c03262{word-spacing:36.143712px;}
.ws6_c03262{word-spacing:36.742464px;}
.ws1_c03262{word-spacing:37.759392px;}
.ws0_c03262{word-spacing:38.020752px;}
.ws3_c03262{word-spacing:39.218256px;}
.ws5_c03262{word-spacing:39.902544px;}
.ws7_c03262{word-spacing:42.026688px;}
._0_c03262{margin-left:-1.948320px;}
._2_c03262{width:1.482624px;}
._5_c03262{width:2.770416px;}
._4_c03262{width:5.749920px;}
._1_c03262{width:50.252400px;}
._3_c03262{width:51.530688px;}
.fc0_c03262{color:rgb(0,0,0);}
.fs0_c03262{font-size:47.520000px;}
.fs1_c03262{font-size:60.480000px;}
.y0_c03262{bottom:0.000000px;}
.y19_c03262{bottom:146.998362px;}
.y1b_c03262{bottom:186.600234px;}
.y1a_c03262{bottom:196.320450px;}
.y18_c03262{bottom:275.878542px;}
.y17_c03262{bottom:356.878758px;}
.y15_c03262{bottom:406.559730px;}
.y11_c03262{bottom:424.560306px;}
.y16_c03262{bottom:458.759262px;}
.y14_c03262{bottom:491.879514px;}
.y13_c03262{bottom:509.880090px;}
.y10_c03262{bottom:543.000342px;}
.y12_c03262{bottom:559.559874px;}
.yf_c03262{bottom:577.560450px;}
.y1c_c03262{bottom:614.280450px;}
.yb_c03262{bottom:667.558326px;}
.yd_c03262{bottom:707.160234px;}
.yc_c03262{bottom:716.880450px;}
.ya_c03262{bottom:796.438506px;}
.y9_c03262{bottom:877.438722px;}
.y7_c03262{bottom:926.759730px;}
.y3_c03262{bottom:944.760306px;}
.y8_c03262{bottom:979.319226px;}
.y6_c03262{bottom:1012.439478px;}
.y5_c03262{bottom:1030.440054px;}
.y2_c03262{bottom:1063.560306px;}
.y4_c03262{bottom:1079.759874px;}
.y1_c03262{bottom:1097.760450px;}
.ye_c03262{bottom:1134.840450px;}
.h3_c03262{height:32.530781px;}
.h1_c03262{height:41.696016px;}
.h2_c03262{height:41.812031px;}
.h4_c03262{height:54.654737px;}
.h0_c03262{height:1263.000000px;}
.w1_c03262{width:892.500000px;}
.w0_c03262{width:892.830000px;}
.x0_c03262{left:0.000000px;}
.xd_c03262{left:117.000000px;}
.x8_c03262{left:440.999856px;}
.x4_c03262{left:445.680576px;}
.xb_c03262{left:451.080000px;}
.x7_c03262{left:455.399604px;}
.x5_c03262{left:461.880144px;}
.x1_c03262{left:463.320000px;}
.xa_c03262{left:483.480360px;}
.x9_c03262{left:492.119496px;}
.x6_c03262{left:493.200576px;}
.xc_c03262{left:506.880360px;}
.x3_c03262{left:511.919892px;}
.x2_c03262{left:526.679604px;}
@media print{
.v0_c03262{vertical-align:0.000000pt;}
.v1_c03262{vertical-align:1.279488pt;}
.lsd_c03262{letter-spacing:-1.064448pt;}
.ls14_c03262{letter-spacing:-0.705408pt;}
.ls8_c03262{letter-spacing:-0.544896pt;}
.lsa_c03262{letter-spacing:-0.511104pt;}
.ls10_c03262{letter-spacing:-0.244992pt;}
.lse_c03262{letter-spacing:-0.232320pt;}
.ls7_c03262{letter-spacing:-0.215424pt;}
.ls5_c03262{letter-spacing:-0.105600pt;}
.ls13_c03262{letter-spacing:0.000000pt;}
.ls1_c03262{letter-spacing:0.005376pt;}
.ls6_c03262{letter-spacing:0.114048pt;}
.lsc_c03262{letter-spacing:0.451968pt;}
.ls12_c03262{letter-spacing:0.456960pt;}
.lsf_c03262{letter-spacing:0.477312pt;}
.lsb_c03262{letter-spacing:0.515328pt;}
.ls11_c03262{letter-spacing:0.528000pt;}
.ls9_c03262{letter-spacing:0.532224pt;}
.ls4_c03262{letter-spacing:0.544896pt;}
.ls2_c03262{letter-spacing:0.578688pt;}
.ls3_c03262{letter-spacing:0.637824pt;}
.ls0_c03262{letter-spacing:0.642048pt;}
.wsc_c03262{word-spacing:-13.445376pt;}
.wsa_c03262{word-spacing:-11.088000pt;}
.ws8_c03262{word-spacing:-11.075328pt;}
.ws9_c03262{word-spacing:-11.037312pt;}
.ws4_c03262{word-spacing:-10.344576pt;}
.ws2_c03262{word-spacing:-10.015104pt;}
.ws11_c03262{word-spacing:-0.963072pt;}
.ws17_c03262{word-spacing:-0.958848pt;}
.ws16_c03262{word-spacing:-0.899712pt;}
.wse_c03262{word-spacing:-0.865920pt;}
.ws15_c03262{word-spacing:-0.639744pt;}
.ws10_c03262{word-spacing:-0.105600pt;}
.ws13_c03262{word-spacing:-0.088704pt;}
.ws14_c03262{word-spacing:-0.076032pt;}
.wsf_c03262{word-spacing:0.000000pt;}
.ws18_c03262{word-spacing:0.384384pt;}
.ws12_c03262{word-spacing:0.743424pt;}
.wsb_c03262{word-spacing:29.600256pt;}
.wsd_c03262{word-spacing:32.127744pt;}
.ws6_c03262{word-spacing:32.659968pt;}
.ws1_c03262{word-spacing:33.563904pt;}
.ws0_c03262{word-spacing:33.796224pt;}
.ws3_c03262{word-spacing:34.860672pt;}
.ws5_c03262{word-spacing:35.468928pt;}
.ws7_c03262{word-spacing:37.357056pt;}
._0_c03262{margin-left:-1.731840pt;}
._2_c03262{width:1.317888pt;}
._5_c03262{width:2.462592pt;}
._4_c03262{width:5.111040pt;}
._1_c03262{width:44.668800pt;}
._3_c03262{width:45.805056pt;}
.fs0_c03262{font-size:42.240000pt;}
.fs1_c03262{font-size:53.760000pt;}
.y0_c03262{bottom:0.000000pt;}
.y19_c03262{bottom:130.665211pt;}
.y1b_c03262{bottom:165.866875pt;}
.y1a_c03262{bottom:174.507067pt;}
.y18_c03262{bottom:245.225371pt;}
.y17_c03262{bottom:317.225563pt;}
.y15_c03262{bottom:361.386427pt;}
.y11_c03262{bottom:377.386939pt;}
.y16_c03262{bottom:407.786011pt;}
.y14_c03262{bottom:437.226235pt;}
.y13_c03262{bottom:453.226747pt;}
.y10_c03262{bottom:482.666971pt;}
.y12_c03262{bottom:497.386555pt;}
.yf_c03262{bottom:513.387067pt;}
.y1c_c03262{bottom:546.027067pt;}
.yb_c03262{bottom:593.385179pt;}
.yd_c03262{bottom:628.586875pt;}
.yc_c03262{bottom:637.227067pt;}
.ya_c03262{bottom:707.945339pt;}
.y9_c03262{bottom:779.945531pt;}
.y7_c03262{bottom:823.786427pt;}
.y3_c03262{bottom:839.786939pt;}
.y8_c03262{bottom:870.505979pt;}
.y6_c03262{bottom:899.946203pt;}
.y5_c03262{bottom:915.946715pt;}
.y2_c03262{bottom:945.386939pt;}
.y4_c03262{bottom:959.786555pt;}
.y1_c03262{bottom:975.787067pt;}
.ye_c03262{bottom:1008.747067pt;}
.h3_c03262{height:28.916250pt;}
.h1_c03262{height:37.063125pt;}
.h2_c03262{height:37.166250pt;}
.h4_c03262{height:48.581988pt;}
.h0_c03262{height:1122.666667pt;}
.w1_c03262{width:793.333333pt;}
.w0_c03262{width:793.626667pt;}
.x0_c03262{left:0.000000pt;}
.xd_c03262{left:104.000000pt;}
.x8_c03262{left:391.999872pt;}
.x4_c03262{left:396.160512pt;}
.xb_c03262{left:400.960000pt;}
.x7_c03262{left:404.799648pt;}
.x5_c03262{left:410.560128pt;}
.x1_c03262{left:411.840000pt;}
.xa_c03262{left:429.760320pt;}
.x9_c03262{left:437.439552pt;}
.x6_c03262{left:438.400512pt;}
.xc_c03262{left:450.560320pt;}
.x3_c03262{left:455.039904pt;}
.x2_c03262{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03263 {
    display:none;
  }
  .loading-indicator_c03263.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03263 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03263 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03263" -> "#page-container .classname_c03263")
 */
.pf_c03263 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03263 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03263.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03263 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03263 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03263 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03263 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03263 {overflow:visible;}
  }
}
.c_c03263 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03263 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03263:after { /* webkit #35443 */
  content: '';
}
.t_c03263:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03263 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03263 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03263 { /* info for Javascript */
  display:none;
}
.l_c03263 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03263 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03263 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03263:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03263 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03263.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03263.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03263 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03263{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03263;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03263{font-family:ff1_c03263;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03263;src:url('chunks/assets/font_c9ac049ab511546cb3adb247.woff2')format("woff");}.ff2_c03263{font-family:ff2_c03263;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03263;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03263{font-family:ff3_c03263;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03263{vertical-align:0.000000px;}
.v2_c03263{vertical-align:1.439424px;}
.v1_c03263{vertical-align:33.121440px;}
.ls15_c03263{letter-spacing:-0.850608px;}
.lsc_c03263{letter-spacing:-0.793584px;}
.ls7_c03263{letter-spacing:-0.613008px;}
.ls9_c03263{letter-spacing:-0.574992px;}
.lsf_c03263{letter-spacing:-0.275616px;}
.lsd_c03263{letter-spacing:-0.261360px;}
.ls6_c03263{letter-spacing:-0.242352px;}
.ls4_c03263{letter-spacing:-0.118800px;}
.ls13_c03263{letter-spacing:0.000000px;}
.ls2_c03263{letter-spacing:0.006048px;}
.ls14_c03263{letter-spacing:0.038016px;}
.ls5_c03263{letter-spacing:0.128304px;}
.lsb_c03263{letter-spacing:0.508464px;}
.ls12_c03263{letter-spacing:0.514080px;}
.lse_c03263{letter-spacing:0.536976px;}
.lsa_c03263{letter-spacing:0.579744px;}
.ls10_c03263{letter-spacing:0.594000px;}
.ls8_c03263{letter-spacing:0.598752px;}
.ls3_c03263{letter-spacing:0.613008px;}
.ls0_c03263{letter-spacing:0.651024px;}
.ls1_c03263{letter-spacing:0.717552px;}
.ls11_c03263{letter-spacing:0.722304px;}
.sc__c03263{text-shadow:none;}
.sc0_c03263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03263{-webkit-text-stroke:0px transparent;}
.sc0_c03263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03263{word-spacing:-15.126048px;}
.ws10_c03263{word-spacing:-12.474000px;}
.ws6_c03263{word-spacing:-12.459744px;}
.ws9_c03263{word-spacing:-12.416976px;}
.ws4_c03263{word-spacing:-11.637648px;}
.ws2_c03263{word-spacing:-11.266992px;}
.ws19_c03263{word-spacing:-1.083456px;}
.ws15_c03263{word-spacing:-1.078704px;}
.ws13_c03263{word-spacing:-1.012176px;}
.ws11_c03263{word-spacing:-0.974160px;}
.ws1a_c03263{word-spacing:-0.719712px;}
.ws1b_c03263{word-spacing:-0.399168px;}
.ws14_c03263{word-spacing:-0.118800px;}
.ws17_c03263{word-spacing:-0.099792px;}
.ws18_c03263{word-spacing:-0.085536px;}
.ws12_c03263{word-spacing:0.000000px;}
.ws16_c03263{word-spacing:0.432432px;}
.ws1c_c03263{word-spacing:0.489456px;}
.wsd_c03263{word-spacing:1.330560px;}
.wsa_c03263{word-spacing:30.298752px;}
.wsb_c03263{word-spacing:33.300288px;}
.wsf_c03263{word-spacing:34.836912px;}
.ws8_c03263{word-spacing:36.143712px;}
.wse_c03263{word-spacing:36.742464px;}
.ws1_c03263{word-spacing:37.759392px;}
.ws0_c03263{word-spacing:38.020752px;}
.ws3_c03263{word-spacing:39.218256px;}
.ws5_c03263{word-spacing:39.902544px;}
.ws7_c03263{word-spacing:42.026688px;}
._0_c03263{margin-left:-1.948320px;}
._2_c03263{width:1.482624px;}
._4_c03263{width:5.749920px;}
._1_c03263{width:50.252400px;}
._3_c03263{width:51.530688px;}
.fc0_c03263{color:rgb(0,0,0);}
.fs0_c03263{font-size:47.520000px;}
.fs1_c03263{font-size:60.480000px;}
.y0_c03263{bottom:0.000000px;}
.y19_c03263{bottom:146.998362px;}
.y1b_c03263{bottom:186.600234px;}
.y1a_c03263{bottom:196.320450px;}
.y18_c03263{bottom:275.878542px;}
.y17_c03263{bottom:356.878758px;}
.y15_c03263{bottom:406.559730px;}
.y11_c03263{bottom:424.560306px;}
.y16_c03263{bottom:458.759262px;}
.y14_c03263{bottom:491.879514px;}
.y13_c03263{bottom:509.880090px;}
.y10_c03263{bottom:543.000342px;}
.y12_c03263{bottom:559.559874px;}
.yf_c03263{bottom:577.560450px;}
.y1c_c03263{bottom:614.280450px;}
.yb_c03263{bottom:667.558326px;}
.yd_c03263{bottom:707.160234px;}
.yc_c03263{bottom:716.880450px;}
.ya_c03263{bottom:796.438506px;}
.y9_c03263{bottom:877.438722px;}
.y7_c03263{bottom:926.759730px;}
.y3_c03263{bottom:944.760306px;}
.y8_c03263{bottom:979.319226px;}
.y6_c03263{bottom:1012.439478px;}
.y5_c03263{bottom:1030.440054px;}
.y2_c03263{bottom:1063.560306px;}
.y4_c03263{bottom:1079.759874px;}
.y1_c03263{bottom:1097.760450px;}
.ye_c03263{bottom:1134.840450px;}
.h3_c03263{height:32.530781px;}
.h1_c03263{height:41.696016px;}
.h2_c03263{height:41.812031px;}
.h5_c03263{height:54.654737px;}
.h4_c03263{height:74.817456px;}
.h0_c03263{height:1263.000000px;}
.w1_c03263{width:892.500000px;}
.w0_c03263{width:892.830000px;}
.x0_c03263{left:0.000000px;}
.xd_c03263{left:117.000000px;}
.x8_c03263{left:440.999856px;}
.x4_c03263{left:445.680576px;}
.xb_c03263{left:451.080000px;}
.x7_c03263{left:455.399604px;}
.x5_c03263{left:461.880144px;}
.x1_c03263{left:463.320000px;}
.xa_c03263{left:483.480360px;}
.x9_c03263{left:492.119496px;}
.x6_c03263{left:493.200576px;}
.xc_c03263{left:506.880360px;}
.x3_c03263{left:511.919892px;}
.x2_c03263{left:526.679604px;}
@media print{
.v0_c03263{vertical-align:0.000000pt;}
.v2_c03263{vertical-align:1.279488pt;}
.v1_c03263{vertical-align:29.441280pt;}
.ls15_c03263{letter-spacing:-0.756096pt;}
.lsc_c03263{letter-spacing:-0.705408pt;}
.ls7_c03263{letter-spacing:-0.544896pt;}
.ls9_c03263{letter-spacing:-0.511104pt;}
.lsf_c03263{letter-spacing:-0.244992pt;}
.lsd_c03263{letter-spacing:-0.232320pt;}
.ls6_c03263{letter-spacing:-0.215424pt;}
.ls4_c03263{letter-spacing:-0.105600pt;}
.ls13_c03263{letter-spacing:0.000000pt;}
.ls2_c03263{letter-spacing:0.005376pt;}
.ls14_c03263{letter-spacing:0.033792pt;}
.ls5_c03263{letter-spacing:0.114048pt;}
.lsb_c03263{letter-spacing:0.451968pt;}
.ls12_c03263{letter-spacing:0.456960pt;}
.lse_c03263{letter-spacing:0.477312pt;}
.lsa_c03263{letter-spacing:0.515328pt;}
.ls10_c03263{letter-spacing:0.528000pt;}
.ls8_c03263{letter-spacing:0.532224pt;}
.ls3_c03263{letter-spacing:0.544896pt;}
.ls0_c03263{letter-spacing:0.578688pt;}
.ls1_c03263{letter-spacing:0.637824pt;}
.ls11_c03263{letter-spacing:0.642048pt;}
.wsc_c03263{word-spacing:-13.445376pt;}
.ws10_c03263{word-spacing:-11.088000pt;}
.ws6_c03263{word-spacing:-11.075328pt;}
.ws9_c03263{word-spacing:-11.037312pt;}
.ws4_c03263{word-spacing:-10.344576pt;}
.ws2_c03263{word-spacing:-10.015104pt;}
.ws19_c03263{word-spacing:-0.963072pt;}
.ws15_c03263{word-spacing:-0.958848pt;}
.ws13_c03263{word-spacing:-0.899712pt;}
.ws11_c03263{word-spacing:-0.865920pt;}
.ws1a_c03263{word-spacing:-0.639744pt;}
.ws1b_c03263{word-spacing:-0.354816pt;}
.ws14_c03263{word-spacing:-0.105600pt;}
.ws17_c03263{word-spacing:-0.088704pt;}
.ws18_c03263{word-spacing:-0.076032pt;}
.ws12_c03263{word-spacing:0.000000pt;}
.ws16_c03263{word-spacing:0.384384pt;}
.ws1c_c03263{word-spacing:0.435072pt;}
.wsd_c03263{word-spacing:1.182720pt;}
.wsa_c03263{word-spacing:26.932224pt;}
.wsb_c03263{word-spacing:29.600256pt;}
.wsf_c03263{word-spacing:30.966144pt;}
.ws8_c03263{word-spacing:32.127744pt;}
.wse_c03263{word-spacing:32.659968pt;}
.ws1_c03263{word-spacing:33.563904pt;}
.ws0_c03263{word-spacing:33.796224pt;}
.ws3_c03263{word-spacing:34.860672pt;}
.ws5_c03263{word-spacing:35.468928pt;}
.ws7_c03263{word-spacing:37.357056pt;}
._0_c03263{margin-left:-1.731840pt;}
._2_c03263{width:1.317888pt;}
._4_c03263{width:5.111040pt;}
._1_c03263{width:44.668800pt;}
._3_c03263{width:45.805056pt;}
.fs0_c03263{font-size:42.240000pt;}
.fs1_c03263{font-size:53.760000pt;}
.y0_c03263{bottom:0.000000pt;}
.y19_c03263{bottom:130.665211pt;}
.y1b_c03263{bottom:165.866875pt;}
.y1a_c03263{bottom:174.507067pt;}
.y18_c03263{bottom:245.225371pt;}
.y17_c03263{bottom:317.225563pt;}
.y15_c03263{bottom:361.386427pt;}
.y11_c03263{bottom:377.386939pt;}
.y16_c03263{bottom:407.786011pt;}
.y14_c03263{bottom:437.226235pt;}
.y13_c03263{bottom:453.226747pt;}
.y10_c03263{bottom:482.666971pt;}
.y12_c03263{bottom:497.386555pt;}
.yf_c03263{bottom:513.387067pt;}
.y1c_c03263{bottom:546.027067pt;}
.yb_c03263{bottom:593.385179pt;}
.yd_c03263{bottom:628.586875pt;}
.yc_c03263{bottom:637.227067pt;}
.ya_c03263{bottom:707.945339pt;}
.y9_c03263{bottom:779.945531pt;}
.y7_c03263{bottom:823.786427pt;}
.y3_c03263{bottom:839.786939pt;}
.y8_c03263{bottom:870.505979pt;}
.y6_c03263{bottom:899.946203pt;}
.y5_c03263{bottom:915.946715pt;}
.y2_c03263{bottom:945.386939pt;}
.y4_c03263{bottom:959.786555pt;}
.y1_c03263{bottom:975.787067pt;}
.ye_c03263{bottom:1008.747067pt;}
.h3_c03263{height:28.916250pt;}
.h1_c03263{height:37.063125pt;}
.h2_c03263{height:37.166250pt;}
.h5_c03263{height:48.581988pt;}
.h4_c03263{height:66.504405pt;}
.h0_c03263{height:1122.666667pt;}
.w1_c03263{width:793.333333pt;}
.w0_c03263{width:793.626667pt;}
.x0_c03263{left:0.000000pt;}
.xd_c03263{left:104.000000pt;}
.x8_c03263{left:391.999872pt;}
.x4_c03263{left:396.160512pt;}
.xb_c03263{left:400.960000pt;}
.x7_c03263{left:404.799648pt;}
.x5_c03263{left:410.560128pt;}
.x1_c03263{left:411.840000pt;}
.xa_c03263{left:429.760320pt;}
.x9_c03263{left:437.439552pt;}
.x6_c03263{left:438.400512pt;}
.xc_c03263{left:450.560320pt;}
.x3_c03263{left:455.039904pt;}
.x2_c03263{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03264 {
    display:none;
  }
  .loading-indicator_c03264.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03264 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03264 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03264" -> "#page-container .classname_c03264")
 */
.pf_c03264 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03264 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03264.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03264 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03264 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03264 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03264 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03264 {overflow:visible;}
  }
}
.c_c03264 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03264 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03264:after { /* webkit #35443 */
  content: '';
}
.t_c03264:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03264 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03264 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03264 { /* info for Javascript */
  display:none;
}
.l_c03264 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03264 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03264 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03264:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03264 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03264.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03264.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03264 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03264{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03264;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03264{font-family:ff1_c03264;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03264;src:url('chunks/assets/font_1e2fb327b00ab33875d45022.woff2')format("woff");}.ff2_c03264{font-family:ff2_c03264;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03264;src:url('chunks/assets/font_6dce70f64d0ec3bb215da479.woff2')format("woff");}.ff3_c03264{font-family:ff3_c03264;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03264{vertical-align:0.000000px;}
.v2_c03264{vertical-align:1.439424px;}
.v1_c03264{vertical-align:33.121440px;}
.ls15_c03264{letter-spacing:-0.793584px;}
.ls8_c03264{letter-spacing:-0.613008px;}
.lsa_c03264{letter-spacing:-0.574992px;}
.ls11_c03264{letter-spacing:-0.494208px;}
.ls16_c03264{letter-spacing:-0.361152px;}
.lsf_c03264{letter-spacing:-0.275616px;}
.lsd_c03264{letter-spacing:-0.261360px;}
.ls7_c03264{letter-spacing:-0.242352px;}
.ls14_c03264{letter-spacing:-0.194832px;}
.ls5_c03264{letter-spacing:-0.118800px;}
.ls13_c03264{letter-spacing:0.000000px;}
.ls1_c03264{letter-spacing:0.006048px;}
.ls6_c03264{letter-spacing:0.128304px;}
.lsc_c03264{letter-spacing:0.242352px;}
.lsb_c03264{letter-spacing:0.508464px;}
.ls12_c03264{letter-spacing:0.514080px;}
.lse_c03264{letter-spacing:0.536976px;}
.ls2_c03264{letter-spacing:0.579744px;}
.ls10_c03264{letter-spacing:0.594000px;}
.ls9_c03264{letter-spacing:0.598752px;}
.ls3_c03264{letter-spacing:0.613008px;}
.ls4_c03264{letter-spacing:0.717552px;}
.ls0_c03264{letter-spacing:0.722304px;}
.sc__c03264{text-shadow:none;}
.sc0_c03264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03264{-webkit-text-stroke:0px transparent;}
.sc0_c03264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c03264{word-spacing:-15.126048px;}
.wsd_c03264{word-spacing:-12.602304px;}
.ws11_c03264{word-spacing:-12.474000px;}
.ws10_c03264{word-spacing:-12.459744px;}
.ws9_c03264{word-spacing:-12.416976px;}
.ws4_c03264{word-spacing:-11.637648px;}
.ws2_c03264{word-spacing:-11.266992px;}
.ws15_c03264{word-spacing:-1.083456px;}
.ws12_c03264{word-spacing:-0.974160px;}
.ws19_c03264{word-spacing:-0.719712px;}
.ws16_c03264{word-spacing:-0.603504px;}
.ws1a_c03264{word-spacing:-0.166320px;}
.ws14_c03264{word-spacing:-0.118800px;}
.ws17_c03264{word-spacing:-0.099792px;}
.ws18_c03264{word-spacing:-0.085536px;}
.ws13_c03264{word-spacing:0.000000px;}
.ws1b_c03264{word-spacing:0.432432px;}
.wsc_c03264{word-spacing:3.141072px;}
.wsb_c03264{word-spacing:6.476976px;}
.wsa_c03264{word-spacing:30.298752px;}
.wse_c03264{word-spacing:33.300288px;}
.ws8_c03264{word-spacing:36.143712px;}
.ws6_c03264{word-spacing:36.742464px;}
.ws1_c03264{word-spacing:37.759392px;}
.ws0_c03264{word-spacing:38.020752px;}
.ws3_c03264{word-spacing:39.218256px;}
.ws5_c03264{word-spacing:39.902544px;}
.ws7_c03264{word-spacing:42.026688px;}
._0_c03264{margin-left:-1.948320px;}
._2_c03264{width:1.482624px;}
._4_c03264{width:5.749920px;}
._6_c03264{width:17.026416px;}
._5_c03264{width:24.296976px;}
._1_c03264{width:50.252400px;}
._3_c03264{width:51.530688px;}
.fc0_c03264{color:rgb(0,0,0);}
.fs0_c03264{font-size:47.520000px;}
.fs1_c03264{font-size:60.480000px;}
.y0_c03264{bottom:0.000000px;}
.y1a_c03264{bottom:65.880450px;}
.y1d_c03264{bottom:147.000054px;}
.y1f_c03264{bottom:186.600234px;}
.y1e_c03264{bottom:196.320450px;}
.y1c_c03264{bottom:275.880234px;}
.y19_c03264{bottom:291.000000px;}
.y18_c03264{bottom:356.878758px;}
.y1b_c03264{bottom:356.880450px;}
.y16_c03264{bottom:406.559730px;}
.y12_c03264{bottom:424.560306px;}
.y17_c03264{bottom:458.759262px;}
.y15_c03264{bottom:491.879514px;}
.y14_c03264{bottom:509.880090px;}
.y11_c03264{bottom:543.000342px;}
.y13_c03264{bottom:559.559874px;}
.y10_c03264{bottom:577.560450px;}
.y20_c03264{bottom:614.280450px;}
.yb_c03264{bottom:667.558326px;}
.ye_c03264{bottom:700.320918px;}
.yd_c03264{bottom:707.160234px;}
.yc_c03264{bottom:716.880450px;}
.ya_c03264{bottom:796.438506px;}
.y9_c03264{bottom:877.438722px;}
.y7_c03264{bottom:926.759730px;}
.y3_c03264{bottom:944.760306px;}
.y8_c03264{bottom:979.319226px;}
.y6_c03264{bottom:1012.439478px;}
.y5_c03264{bottom:1030.440054px;}
.y2_c03264{bottom:1063.560306px;}
.y4_c03264{bottom:1079.759874px;}
.y1_c03264{bottom:1097.760450px;}
.yf_c03264{bottom:1134.840450px;}
.h3_c03264{height:32.530781px;}
.h1_c03264{height:41.696016px;}
.h2_c03264{height:41.812031px;}
.h5_c03264{height:54.654737px;}
.h4_c03264{height:74.817456px;}
.h6_c03264{height:78.480000px;}
.h0_c03264{height:1263.000000px;}
.w2_c03264{width:215.280000px;}
.w1_c03264{width:892.500000px;}
.w0_c03264{width:892.830000px;}
.x0_c03264{left:0.000000px;}
.xe_c03264{left:117.000000px;}
.x8_c03264{left:440.999856px;}
.x4_c03264{left:445.680576px;}
.xb_c03264{left:451.080000px;}
.x7_c03264{left:455.399604px;}
.x5_c03264{left:461.880144px;}
.x1_c03264{left:463.320000px;}
.xa_c03264{left:483.480360px;}
.x9_c03264{left:492.119496px;}
.x6_c03264{left:493.200576px;}
.xc_c03264{left:506.880360px;}
.x3_c03264{left:511.919892px;}
.x2_c03264{left:526.679604px;}
.xd_c03264{left:569.880000px;}
.xf_c03264{left:608.040000px;}
@media print{
.v0_c03264{vertical-align:0.000000pt;}
.v2_c03264{vertical-align:1.279488pt;}
.v1_c03264{vertical-align:29.441280pt;}
.ls15_c03264{letter-spacing:-0.705408pt;}
.ls8_c03264{letter-spacing:-0.544896pt;}
.lsa_c03264{letter-spacing:-0.511104pt;}
.ls11_c03264{letter-spacing:-0.439296pt;}
.ls16_c03264{letter-spacing:-0.321024pt;}
.lsf_c03264{letter-spacing:-0.244992pt;}
.lsd_c03264{letter-spacing:-0.232320pt;}
.ls7_c03264{letter-spacing:-0.215424pt;}
.ls14_c03264{letter-spacing:-0.173184pt;}
.ls5_c03264{letter-spacing:-0.105600pt;}
.ls13_c03264{letter-spacing:0.000000pt;}
.ls1_c03264{letter-spacing:0.005376pt;}
.ls6_c03264{letter-spacing:0.114048pt;}
.lsc_c03264{letter-spacing:0.215424pt;}
.lsb_c03264{letter-spacing:0.451968pt;}
.ls12_c03264{letter-spacing:0.456960pt;}
.lse_c03264{letter-spacing:0.477312pt;}
.ls2_c03264{letter-spacing:0.515328pt;}
.ls10_c03264{letter-spacing:0.528000pt;}
.ls9_c03264{letter-spacing:0.532224pt;}
.ls3_c03264{letter-spacing:0.544896pt;}
.ls4_c03264{letter-spacing:0.637824pt;}
.ls0_c03264{letter-spacing:0.642048pt;}
.wsf_c03264{word-spacing:-13.445376pt;}
.wsd_c03264{word-spacing:-11.202048pt;}
.ws11_c03264{word-spacing:-11.088000pt;}
.ws10_c03264{word-spacing:-11.075328pt;}
.ws9_c03264{word-spacing:-11.037312pt;}
.ws4_c03264{word-spacing:-10.344576pt;}
.ws2_c03264{word-spacing:-10.015104pt;}
.ws15_c03264{word-spacing:-0.963072pt;}
.ws12_c03264{word-spacing:-0.865920pt;}
.ws19_c03264{word-spacing:-0.639744pt;}
.ws16_c03264{word-spacing:-0.536448pt;}
.ws1a_c03264{word-spacing:-0.147840pt;}
.ws14_c03264{word-spacing:-0.105600pt;}
.ws17_c03264{word-spacing:-0.088704pt;}
.ws18_c03264{word-spacing:-0.076032pt;}
.ws13_c03264{word-spacing:0.000000pt;}
.ws1b_c03264{word-spacing:0.384384pt;}
.wsc_c03264{word-spacing:2.792064pt;}
.wsb_c03264{word-spacing:5.757312pt;}
.wsa_c03264{word-spacing:26.932224pt;}
.wse_c03264{word-spacing:29.600256pt;}
.ws8_c03264{word-spacing:32.127744pt;}
.ws6_c03264{word-spacing:32.659968pt;}
.ws1_c03264{word-spacing:33.563904pt;}
.ws0_c03264{word-spacing:33.796224pt;}
.ws3_c03264{word-spacing:34.860672pt;}
.ws5_c03264{word-spacing:35.468928pt;}
.ws7_c03264{word-spacing:37.357056pt;}
._0_c03264{margin-left:-1.731840pt;}
._2_c03264{width:1.317888pt;}
._4_c03264{width:5.111040pt;}
._6_c03264{width:15.134592pt;}
._5_c03264{width:21.597312pt;}
._1_c03264{width:44.668800pt;}
._3_c03264{width:45.805056pt;}
.fs0_c03264{font-size:42.240000pt;}
.fs1_c03264{font-size:53.760000pt;}
.y0_c03264{bottom:0.000000pt;}
.y1a_c03264{bottom:58.560400pt;}
.y1d_c03264{bottom:130.666715pt;}
.y1f_c03264{bottom:165.866875pt;}
.y1e_c03264{bottom:174.507067pt;}
.y1c_c03264{bottom:245.226875pt;}
.y19_c03264{bottom:258.666667pt;}
.y18_c03264{bottom:317.225563pt;}
.y1b_c03264{bottom:317.227067pt;}
.y16_c03264{bottom:361.386427pt;}
.y12_c03264{bottom:377.386939pt;}
.y17_c03264{bottom:407.786011pt;}
.y15_c03264{bottom:437.226235pt;}
.y14_c03264{bottom:453.226747pt;}
.y11_c03264{bottom:482.666971pt;}
.y13_c03264{bottom:497.386555pt;}
.y10_c03264{bottom:513.387067pt;}
.y20_c03264{bottom:546.027067pt;}
.yb_c03264{bottom:593.385179pt;}
.ye_c03264{bottom:622.507483pt;}
.yd_c03264{bottom:628.586875pt;}
.yc_c03264{bottom:637.227067pt;}
.ya_c03264{bottom:707.945339pt;}
.y9_c03264{bottom:779.945531pt;}
.y7_c03264{bottom:823.786427pt;}
.y3_c03264{bottom:839.786939pt;}
.y8_c03264{bottom:870.505979pt;}
.y6_c03264{bottom:899.946203pt;}
.y5_c03264{bottom:915.946715pt;}
.y2_c03264{bottom:945.386939pt;}
.y4_c03264{bottom:959.786555pt;}
.y1_c03264{bottom:975.787067pt;}
.yf_c03264{bottom:1008.747067pt;}
.h3_c03264{height:28.916250pt;}
.h1_c03264{height:37.063125pt;}
.h2_c03264{height:37.166250pt;}
.h5_c03264{height:48.581988pt;}
.h4_c03264{height:66.504405pt;}
.h6_c03264{height:69.760000pt;}
.h0_c03264{height:1122.666667pt;}
.w2_c03264{width:191.360000pt;}
.w1_c03264{width:793.333333pt;}
.w0_c03264{width:793.626667pt;}
.x0_c03264{left:0.000000pt;}
.xe_c03264{left:104.000000pt;}
.x8_c03264{left:391.999872pt;}
.x4_c03264{left:396.160512pt;}
.xb_c03264{left:400.960000pt;}
.x7_c03264{left:404.799648pt;}
.x5_c03264{left:410.560128pt;}
.x1_c03264{left:411.840000pt;}
.xa_c03264{left:429.760320pt;}
.x9_c03264{left:437.439552pt;}
.x6_c03264{left:438.400512pt;}
.xc_c03264{left:450.560320pt;}
.x3_c03264{left:455.039904pt;}
.x2_c03264{left:468.159648pt;}
.xd_c03264{left:506.560000pt;}
.xf_c03264{left:540.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03265 {
    display:none;
  }
  .loading-indicator_c03265.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03265 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03265 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03265" -> "#page-container .classname_c03265")
 */
.pf_c03265 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03265 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03265.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03265 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03265 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03265 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03265 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03265 {overflow:visible;}
  }
}
.c_c03265 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03265 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03265:after { /* webkit #35443 */
  content: '';
}
.t_c03265:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03265 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03265 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03265 { /* info for Javascript */
  display:none;
}
.l_c03265 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03265 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03265 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03265:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03265 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03265.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03265.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03265 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03265{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03265;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03265{font-family:ff1_c03265;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03265;src:url('chunks/assets/font_5bcdb6c479edaf294c8251af.woff2')format("woff");}.ff2_c03265{font-family:ff2_c03265;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03265;src:url('chunks/assets/font_b59bc2a126047e50f8e58504.woff2')format("woff");}.ff3_c03265{font-family:ff3_c03265;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03265{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03265{vertical-align:0.000000px;}
.v1_c03265{vertical-align:1.439424px;}
.v2_c03265{vertical-align:33.121440px;}
.ls16_c03265{letter-spacing:-0.793584px;}
.ls10_c03265{letter-spacing:-0.722304px;}
.ls8_c03265{letter-spacing:-0.613008px;}
.lsa_c03265{letter-spacing:-0.574992px;}
.ls12_c03265{letter-spacing:-0.275616px;}
.lsf_c03265{letter-spacing:-0.261360px;}
.ls7_c03265{letter-spacing:-0.242352px;}
.lsc_c03265{letter-spacing:-0.218592px;}
.ls5_c03265{letter-spacing:-0.118800px;}
.ls15_c03265{letter-spacing:0.000000px;}
.ls2_c03265{letter-spacing:0.006048px;}
.ls6_c03265{letter-spacing:0.128304px;}
.lsd_c03265{letter-spacing:0.508464px;}
.ls14_c03265{letter-spacing:0.514080px;}
.ls11_c03265{letter-spacing:0.536976px;}
.lsb_c03265{letter-spacing:0.579744px;}
.ls13_c03265{letter-spacing:0.594000px;}
.ls9_c03265{letter-spacing:0.598752px;}
.ls3_c03265{letter-spacing:0.613008px;}
.lse_c03265{letter-spacing:0.651024px;}
.ls1_c03265{letter-spacing:0.655776px;}
.ls4_c03265{letter-spacing:0.717552px;}
.ls0_c03265{letter-spacing:0.722304px;}
.sc__c03265{text-shadow:none;}
.sc0_c03265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03265{-webkit-text-stroke:0px transparent;}
.sc0_c03265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c03265{word-spacing:-15.126048px;}
.wsd_c03265{word-spacing:-12.474000px;}
.ws10_c03265{word-spacing:-12.459744px;}
.ws4_c03265{word-spacing:-11.637648px;}
.ws2_c03265{word-spacing:-11.266992px;}
.wsb_c03265{word-spacing:-2.162160px;}
.wsa_c03265{word-spacing:-2.062368px;}
.ws14_c03265{word-spacing:-1.083456px;}
.ws17_c03265{word-spacing:-1.016928px;}
.ws12_c03265{word-spacing:-0.974160px;}
.ws1b_c03265{word-spacing:-0.719712px;}
.ws16_c03265{word-spacing:-0.142560px;}
.ws15_c03265{word-spacing:-0.118800px;}
.ws18_c03265{word-spacing:-0.099792px;}
.ws1a_c03265{word-spacing:-0.085536px;}
.ws13_c03265{word-spacing:0.000000px;}
.ws19_c03265{word-spacing:0.361152px;}
.ws1c_c03265{word-spacing:0.432432px;}
.ws9_c03265{word-spacing:0.974160px;}
.ws11_c03265{word-spacing:30.298752px;}
.wse_c03265{word-spacing:33.300288px;}
.wsc_c03265{word-spacing:34.836912px;}
.ws8_c03265{word-spacing:36.143712px;}
.ws6_c03265{word-spacing:36.742464px;}
.ws1_c03265{word-spacing:37.759392px;}
.ws0_c03265{word-spacing:38.020752px;}
.ws3_c03265{word-spacing:39.218256px;}
.ws5_c03265{word-spacing:39.902544px;}
.ws7_c03265{word-spacing:42.026688px;}
._0_c03265{margin-left:-1.948320px;}
._2_c03265{width:1.069200px;}
._5_c03265{width:2.076624px;}
._6_c03265{width:5.749920px;}
._3_c03265{width:9.342432px;}
._9_c03265{width:13.034736px;}
._a_c03265{width:14.227488px;}
._8_c03265{width:15.686352px;}
._7_c03265{width:17.273520px;}
._1_c03265{width:50.252400px;}
._4_c03265{width:52.115184px;}
.fc0_c03265{color:rgb(0,0,0);}
.fs0_c03265{font-size:47.520000px;}
.fs1_c03265{font-size:60.480000px;}
.y0_c03265{bottom:0.000000px;}
.y1b_c03265{bottom:146.998362px;}
.y1d_c03265{bottom:186.600234px;}
.y1c_c03265{bottom:196.320450px;}
.y1a_c03265{bottom:275.878542px;}
.y19_c03265{bottom:356.878758px;}
.y17_c03265{bottom:406.559730px;}
.y13_c03265{bottom:424.560306px;}
.y18_c03265{bottom:458.759262px;}
.y16_c03265{bottom:491.879514px;}
.y15_c03265{bottom:509.880090px;}
.y12_c03265{bottom:543.000342px;}
.y14_c03265{bottom:559.559874px;}
.y11_c03265{bottom:577.560450px;}
.y1e_c03265{bottom:614.280450px;}
.yd_c03265{bottom:667.559514px;}
.yf_c03265{bottom:707.160234px;}
.ye_c03265{bottom:716.880450px;}
.yc_c03265{bottom:781.320018px;}
.yb_c03265{bottom:796.439694px;}
.ya_c03265{bottom:862.319046px;}
.y9_c03265{bottom:877.438722px;}
.y7_c03265{bottom:926.759730px;}
.y3_c03265{bottom:944.760306px;}
.y8_c03265{bottom:979.319226px;}
.y6_c03265{bottom:1012.439478px;}
.y5_c03265{bottom:1030.440054px;}
.y2_c03265{bottom:1063.560306px;}
.y4_c03265{bottom:1079.759874px;}
.y1_c03265{bottom:1097.760450px;}
.y10_c03265{bottom:1134.840450px;}
.h3_c03265{height:32.530781px;}
.h1_c03265{height:41.696016px;}
.h2_c03265{height:41.812031px;}
.h4_c03265{height:54.654737px;}
.h5_c03265{height:74.817456px;}
.h0_c03265{height:1263.000000px;}
.w1_c03265{width:892.500000px;}
.w0_c03265{width:892.830000px;}
.x0_c03265{left:0.000000px;}
.xe_c03265{left:117.000000px;}
.x8_c03265{left:440.999856px;}
.x4_c03265{left:445.680576px;}
.xc_c03265{left:451.080000px;}
.x7_c03265{left:455.399604px;}
.x5_c03265{left:461.880144px;}
.x1_c03265{left:463.320000px;}
.xb_c03265{left:483.480360px;}
.x9_c03265{left:492.119496px;}
.x6_c03265{left:493.200576px;}
.xd_c03265{left:506.880360px;}
.x3_c03265{left:511.919892px;}
.x2_c03265{left:526.679604px;}
.xa_c03265{left:569.880036px;}
@media print{
.v0_c03265{vertical-align:0.000000pt;}
.v1_c03265{vertical-align:1.279488pt;}
.v2_c03265{vertical-align:29.441280pt;}
.ls16_c03265{letter-spacing:-0.705408pt;}
.ls10_c03265{letter-spacing:-0.642048pt;}
.ls8_c03265{letter-spacing:-0.544896pt;}
.lsa_c03265{letter-spacing:-0.511104pt;}
.ls12_c03265{letter-spacing:-0.244992pt;}
.lsf_c03265{letter-spacing:-0.232320pt;}
.ls7_c03265{letter-spacing:-0.215424pt;}
.lsc_c03265{letter-spacing:-0.194304pt;}
.ls5_c03265{letter-spacing:-0.105600pt;}
.ls15_c03265{letter-spacing:0.000000pt;}
.ls2_c03265{letter-spacing:0.005376pt;}
.ls6_c03265{letter-spacing:0.114048pt;}
.lsd_c03265{letter-spacing:0.451968pt;}
.ls14_c03265{letter-spacing:0.456960pt;}
.ls11_c03265{letter-spacing:0.477312pt;}
.lsb_c03265{letter-spacing:0.515328pt;}
.ls13_c03265{letter-spacing:0.528000pt;}
.ls9_c03265{letter-spacing:0.532224pt;}
.ls3_c03265{letter-spacing:0.544896pt;}
.lse_c03265{letter-spacing:0.578688pt;}
.ls1_c03265{letter-spacing:0.582912pt;}
.ls4_c03265{letter-spacing:0.637824pt;}
.ls0_c03265{letter-spacing:0.642048pt;}
.wsf_c03265{word-spacing:-13.445376pt;}
.wsd_c03265{word-spacing:-11.088000pt;}
.ws10_c03265{word-spacing:-11.075328pt;}
.ws4_c03265{word-spacing:-10.344576pt;}
.ws2_c03265{word-spacing:-10.015104pt;}
.wsb_c03265{word-spacing:-1.921920pt;}
.wsa_c03265{word-spacing:-1.833216pt;}
.ws14_c03265{word-spacing:-0.963072pt;}
.ws17_c03265{word-spacing:-0.903936pt;}
.ws12_c03265{word-spacing:-0.865920pt;}
.ws1b_c03265{word-spacing:-0.639744pt;}
.ws16_c03265{word-spacing:-0.126720pt;}
.ws15_c03265{word-spacing:-0.105600pt;}
.ws18_c03265{word-spacing:-0.088704pt;}
.ws1a_c03265{word-spacing:-0.076032pt;}
.ws13_c03265{word-spacing:0.000000pt;}
.ws19_c03265{word-spacing:0.321024pt;}
.ws1c_c03265{word-spacing:0.384384pt;}
.ws9_c03265{word-spacing:0.865920pt;}
.ws11_c03265{word-spacing:26.932224pt;}
.wse_c03265{word-spacing:29.600256pt;}
.wsc_c03265{word-spacing:30.966144pt;}
.ws8_c03265{word-spacing:32.127744pt;}
.ws6_c03265{word-spacing:32.659968pt;}
.ws1_c03265{word-spacing:33.563904pt;}
.ws0_c03265{word-spacing:33.796224pt;}
.ws3_c03265{word-spacing:34.860672pt;}
.ws5_c03265{word-spacing:35.468928pt;}
.ws7_c03265{word-spacing:37.357056pt;}
._0_c03265{margin-left:-1.731840pt;}
._2_c03265{width:0.950400pt;}
._5_c03265{width:1.845888pt;}
._6_c03265{width:5.111040pt;}
._3_c03265{width:8.304384pt;}
._9_c03265{width:11.586432pt;}
._a_c03265{width:12.646656pt;}
._8_c03265{width:13.943424pt;}
._7_c03265{width:15.354240pt;}
._1_c03265{width:44.668800pt;}
._4_c03265{width:46.324608pt;}
.fs0_c03265{font-size:42.240000pt;}
.fs1_c03265{font-size:53.760000pt;}
.y0_c03265{bottom:0.000000pt;}
.y1b_c03265{bottom:130.665211pt;}
.y1d_c03265{bottom:165.866875pt;}
.y1c_c03265{bottom:174.507067pt;}
.y1a_c03265{bottom:245.225371pt;}
.y19_c03265{bottom:317.225563pt;}
.y17_c03265{bottom:361.386427pt;}
.y13_c03265{bottom:377.386939pt;}
.y18_c03265{bottom:407.786011pt;}
.y16_c03265{bottom:437.226235pt;}
.y15_c03265{bottom:453.226747pt;}
.y12_c03265{bottom:482.666971pt;}
.y14_c03265{bottom:497.386555pt;}
.y11_c03265{bottom:513.387067pt;}
.y1e_c03265{bottom:546.027067pt;}
.yd_c03265{bottom:593.386235pt;}
.yf_c03265{bottom:628.586875pt;}
.ye_c03265{bottom:637.227067pt;}
.yc_c03265{bottom:694.506683pt;}
.yb_c03265{bottom:707.946395pt;}
.ya_c03265{bottom:766.505819pt;}
.y9_c03265{bottom:779.945531pt;}
.y7_c03265{bottom:823.786427pt;}
.y3_c03265{bottom:839.786939pt;}
.y8_c03265{bottom:870.505979pt;}
.y6_c03265{bottom:899.946203pt;}
.y5_c03265{bottom:915.946715pt;}
.y2_c03265{bottom:945.386939pt;}
.y4_c03265{bottom:959.786555pt;}
.y1_c03265{bottom:975.787067pt;}
.y10_c03265{bottom:1008.747067pt;}
.h3_c03265{height:28.916250pt;}
.h1_c03265{height:37.063125pt;}
.h2_c03265{height:37.166250pt;}
.h4_c03265{height:48.581988pt;}
.h5_c03265{height:66.504405pt;}
.h0_c03265{height:1122.666667pt;}
.w1_c03265{width:793.333333pt;}
.w0_c03265{width:793.626667pt;}
.x0_c03265{left:0.000000pt;}
.xe_c03265{left:104.000000pt;}
.x8_c03265{left:391.999872pt;}
.x4_c03265{left:396.160512pt;}
.xc_c03265{left:400.960000pt;}
.x7_c03265{left:404.799648pt;}
.x5_c03265{left:410.560128pt;}
.x1_c03265{left:411.840000pt;}
.xb_c03265{left:429.760320pt;}
.x9_c03265{left:437.439552pt;}
.x6_c03265{left:438.400512pt;}
.xd_c03265{left:450.560320pt;}
.x3_c03265{left:455.039904pt;}
.x2_c03265{left:468.159648pt;}
.xa_c03265{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03266 {
    display:none;
  }
  .loading-indicator_c03266.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03266 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03266 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03266" -> "#page-container .classname_c03266")
 */
.pf_c03266 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03266 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03266.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03266 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03266 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03266 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03266 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03266 {overflow:visible;}
  }
}
.c_c03266 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03266 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03266:after { /* webkit #35443 */
  content: '';
}
.t_c03266:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03266 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03266 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03266 { /* info for Javascript */
  display:none;
}
.l_c03266 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03266 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03266 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03266:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03266 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03266.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03266.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03266 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03266{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03266;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03266{font-family:ff1_c03266;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03266;src:url('chunks/assets/font_d5b3980a7e87eb17ade9bac7.woff2')format("woff");}.ff2_c03266{font-family:ff2_c03266;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03266;src:url('chunks/assets/font_258e643e367a1c250212892a.woff2')format("woff");}.ff3_c03266{font-family:ff3_c03266;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03266{vertical-align:0.000000px;}
.v2_c03266{vertical-align:1.439424px;}
.v1_c03266{vertical-align:33.121440px;}
.ls19_c03266{letter-spacing:-0.860112px;}
.ls18_c03266{letter-spacing:-0.803088px;}
.lse_c03266{letter-spacing:-0.793584px;}
.lsb_c03266{letter-spacing:-0.774576px;}
.ls8_c03266{letter-spacing:-0.613008px;}
.lsa_c03266{letter-spacing:-0.574992px;}
.ls12_c03266{letter-spacing:-0.275616px;}
.ls10_c03266{letter-spacing:-0.261360px;}
.ls7_c03266{letter-spacing:-0.242352px;}
.ls5_c03266{letter-spacing:-0.118800px;}
.ls16_c03266{letter-spacing:0.000000px;}
.ls1_c03266{letter-spacing:0.006048px;}
.ls14_c03266{letter-spacing:0.114048px;}
.ls6_c03266{letter-spacing:0.128304px;}
.ls17_c03266{letter-spacing:0.185328px;}
.lsf_c03266{letter-spacing:0.242352px;}
.lsd_c03266{letter-spacing:0.508464px;}
.ls15_c03266{letter-spacing:0.514080px;}
.ls11_c03266{letter-spacing:0.536976px;}
.lsc_c03266{letter-spacing:0.579744px;}
.ls13_c03266{letter-spacing:0.594000px;}
.ls9_c03266{letter-spacing:0.598752px;}
.ls4_c03266{letter-spacing:0.613008px;}
.ls2_c03266{letter-spacing:0.651024px;}
.ls3_c03266{letter-spacing:0.717552px;}
.ls0_c03266{letter-spacing:0.722304px;}
.sc__c03266{text-shadow:none;}
.sc0_c03266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03266{-webkit-text-stroke:0px transparent;}
.sc0_c03266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c03266{word-spacing:-15.126048px;}
.ws14_c03266{word-spacing:-12.474000px;}
.ws7_c03266{word-spacing:-12.459744px;}
.ws11_c03266{word-spacing:-12.388464px;}
.ws4_c03266{word-spacing:-11.637648px;}
.ws2_c03266{word-spacing:-11.266992px;}
.ws6_c03266{word-spacing:-11.105424px;}
.ws17_c03266{word-spacing:-1.083456px;}
.ws20_c03266{word-spacing:-1.078704px;}
.ws1e_c03266{word-spacing:-1.012176px;}
.ws15_c03266{word-spacing:-0.974160px;}
.ws1d_c03266{word-spacing:-0.719712px;}
.ws1a_c03266{word-spacing:-0.603504px;}
.ws1f_c03266{word-spacing:-0.546480px;}
.ws18_c03266{word-spacing:-0.118800px;}
.ws1b_c03266{word-spacing:-0.099792px;}
.ws1c_c03266{word-spacing:-0.085536px;}
.ws16_c03266{word-spacing:0.000000px;}
.ws19_c03266{word-spacing:0.432432px;}
.ws10_c03266{word-spacing:6.605280px;}
.ws13_c03266{word-spacing:9.280656px;}
.wsd_c03266{word-spacing:22.315392px;}
.wsb_c03266{word-spacing:30.298752px;}
.ws12_c03266{word-spacing:30.555360px;}
.wse_c03266{word-spacing:33.300288px;}
.wsa_c03266{word-spacing:34.836912px;}
.ws9_c03266{word-spacing:36.143712px;}
.ws1_c03266{word-spacing:37.759392px;}
.wsc_c03266{word-spacing:37.930464px;}
.ws0_c03266{word-spacing:38.020752px;}
.ws3_c03266{word-spacing:39.218256px;}
.ws5_c03266{word-spacing:39.902544px;}
.ws8_c03266{word-spacing:42.026688px;}
._0_c03266{margin-left:-1.948320px;}
._2_c03266{width:1.069200px;}
._5_c03266{width:2.076624px;}
._6_c03266{width:5.749920px;}
._3_c03266{width:9.342432px;}
._b_c03266{width:22.120560px;}
._a_c03266{width:25.128576px;}
._7_c03266{width:36.799488px;}
._9_c03266{width:40.192416px;}
._8_c03266{width:46.099152px;}
._1_c03266{width:50.252400px;}
._4_c03266{width:52.115184px;}
.fc0_c03266{color:rgb(0,0,0);}
.fs0_c03266{font-size:47.520000px;}
.fs1_c03266{font-size:60.480000px;}
.y0_c03266{bottom:0.000000px;}
.y1d_c03266{bottom:116.759010px;}
.y1c_c03266{bottom:131.878686px;}
.y1b_c03266{bottom:146.998362px;}
.y1f_c03266{bottom:186.600234px;}
.y1e_c03266{bottom:196.320450px;}
.y1a_c03266{bottom:275.878542px;}
.y19_c03266{bottom:356.878758px;}
.y17_c03266{bottom:406.559730px;}
.y13_c03266{bottom:424.560306px;}
.y18_c03266{bottom:458.759262px;}
.y16_c03266{bottom:491.879514px;}
.y15_c03266{bottom:509.880090px;}
.y12_c03266{bottom:543.000342px;}
.y14_c03266{bottom:559.559874px;}
.y11_c03266{bottom:577.560450px;}
.y20_c03266{bottom:614.280450px;}
.yb_c03266{bottom:667.558326px;}
.yf_c03266{bottom:685.561206px;}
.ye_c03266{bottom:700.320918px;}
.yd_c03266{bottom:707.160234px;}
.yc_c03266{bottom:716.880450px;}
.ya_c03266{bottom:796.438506px;}
.y9_c03266{bottom:877.438722px;}
.y7_c03266{bottom:926.759730px;}
.y3_c03266{bottom:944.760306px;}
.y8_c03266{bottom:979.319226px;}
.y6_c03266{bottom:1012.439478px;}
.y5_c03266{bottom:1030.440054px;}
.y2_c03266{bottom:1063.560306px;}
.y4_c03266{bottom:1079.759874px;}
.y1_c03266{bottom:1097.760450px;}
.y10_c03266{bottom:1134.840450px;}
.h3_c03266{height:32.530781px;}
.h1_c03266{height:41.696016px;}
.h2_c03266{height:41.812031px;}
.h5_c03266{height:54.654737px;}
.h4_c03266{height:74.817456px;}
.h0_c03266{height:1263.000000px;}
.w1_c03266{width:892.500000px;}
.w0_c03266{width:892.830000px;}
.x0_c03266{left:0.000000px;}
.xe_c03266{left:117.000000px;}
.x8_c03266{left:440.999856px;}
.x4_c03266{left:445.680576px;}
.xb_c03266{left:451.080000px;}
.x7_c03266{left:455.399604px;}
.x5_c03266{left:461.880144px;}
.x1_c03266{left:463.320000px;}
.xa_c03266{left:483.480360px;}
.x9_c03266{left:492.119496px;}
.x6_c03266{left:493.200576px;}
.xc_c03266{left:506.880360px;}
.x3_c03266{left:511.919892px;}
.x2_c03266{left:526.679604px;}
.xd_c03266{left:569.880000px;}
@media print{
.v0_c03266{vertical-align:0.000000pt;}
.v2_c03266{vertical-align:1.279488pt;}
.v1_c03266{vertical-align:29.441280pt;}
.ls19_c03266{letter-spacing:-0.764544pt;}
.ls18_c03266{letter-spacing:-0.713856pt;}
.lse_c03266{letter-spacing:-0.705408pt;}
.lsb_c03266{letter-spacing:-0.688512pt;}
.ls8_c03266{letter-spacing:-0.544896pt;}
.lsa_c03266{letter-spacing:-0.511104pt;}
.ls12_c03266{letter-spacing:-0.244992pt;}
.ls10_c03266{letter-spacing:-0.232320pt;}
.ls7_c03266{letter-spacing:-0.215424pt;}
.ls5_c03266{letter-spacing:-0.105600pt;}
.ls16_c03266{letter-spacing:0.000000pt;}
.ls1_c03266{letter-spacing:0.005376pt;}
.ls14_c03266{letter-spacing:0.101376pt;}
.ls6_c03266{letter-spacing:0.114048pt;}
.ls17_c03266{letter-spacing:0.164736pt;}
.lsf_c03266{letter-spacing:0.215424pt;}
.lsd_c03266{letter-spacing:0.451968pt;}
.ls15_c03266{letter-spacing:0.456960pt;}
.ls11_c03266{letter-spacing:0.477312pt;}
.lsc_c03266{letter-spacing:0.515328pt;}
.ls13_c03266{letter-spacing:0.528000pt;}
.ls9_c03266{letter-spacing:0.532224pt;}
.ls4_c03266{letter-spacing:0.544896pt;}
.ls2_c03266{letter-spacing:0.578688pt;}
.ls3_c03266{letter-spacing:0.637824pt;}
.ls0_c03266{letter-spacing:0.642048pt;}
.wsf_c03266{word-spacing:-13.445376pt;}
.ws14_c03266{word-spacing:-11.088000pt;}
.ws7_c03266{word-spacing:-11.075328pt;}
.ws11_c03266{word-spacing:-11.011968pt;}
.ws4_c03266{word-spacing:-10.344576pt;}
.ws2_c03266{word-spacing:-10.015104pt;}
.ws6_c03266{word-spacing:-9.871488pt;}
.ws17_c03266{word-spacing:-0.963072pt;}
.ws20_c03266{word-spacing:-0.958848pt;}
.ws1e_c03266{word-spacing:-0.899712pt;}
.ws15_c03266{word-spacing:-0.865920pt;}
.ws1d_c03266{word-spacing:-0.639744pt;}
.ws1a_c03266{word-spacing:-0.536448pt;}
.ws1f_c03266{word-spacing:-0.485760pt;}
.ws18_c03266{word-spacing:-0.105600pt;}
.ws1b_c03266{word-spacing:-0.088704pt;}
.ws1c_c03266{word-spacing:-0.076032pt;}
.ws16_c03266{word-spacing:0.000000pt;}
.ws19_c03266{word-spacing:0.384384pt;}
.ws10_c03266{word-spacing:5.871360pt;}
.ws13_c03266{word-spacing:8.249472pt;}
.wsd_c03266{word-spacing:19.835904pt;}
.wsb_c03266{word-spacing:26.932224pt;}
.ws12_c03266{word-spacing:27.160320pt;}
.wse_c03266{word-spacing:29.600256pt;}
.wsa_c03266{word-spacing:30.966144pt;}
.ws9_c03266{word-spacing:32.127744pt;}
.ws1_c03266{word-spacing:33.563904pt;}
.wsc_c03266{word-spacing:33.715968pt;}
.ws0_c03266{word-spacing:33.796224pt;}
.ws3_c03266{word-spacing:34.860672pt;}
.ws5_c03266{word-spacing:35.468928pt;}
.ws8_c03266{word-spacing:37.357056pt;}
._0_c03266{margin-left:-1.731840pt;}
._2_c03266{width:0.950400pt;}
._5_c03266{width:1.845888pt;}
._6_c03266{width:5.111040pt;}
._3_c03266{width:8.304384pt;}
._b_c03266{width:19.662720pt;}
._a_c03266{width:22.336512pt;}
._7_c03266{width:32.710656pt;}
._9_c03266{width:35.726592pt;}
._8_c03266{width:40.977024pt;}
._1_c03266{width:44.668800pt;}
._4_c03266{width:46.324608pt;}
.fs0_c03266{font-size:42.240000pt;}
.fs1_c03266{font-size:53.760000pt;}
.y0_c03266{bottom:0.000000pt;}
.y1d_c03266{bottom:103.785787pt;}
.y1c_c03266{bottom:117.225499pt;}
.y1b_c03266{bottom:130.665211pt;}
.y1f_c03266{bottom:165.866875pt;}
.y1e_c03266{bottom:174.507067pt;}
.y1a_c03266{bottom:245.225371pt;}
.y19_c03266{bottom:317.225563pt;}
.y17_c03266{bottom:361.386427pt;}
.y13_c03266{bottom:377.386939pt;}
.y18_c03266{bottom:407.786011pt;}
.y16_c03266{bottom:437.226235pt;}
.y15_c03266{bottom:453.226747pt;}
.y12_c03266{bottom:482.666971pt;}
.y14_c03266{bottom:497.386555pt;}
.y11_c03266{bottom:513.387067pt;}
.y20_c03266{bottom:546.027067pt;}
.yb_c03266{bottom:593.385179pt;}
.yf_c03266{bottom:609.387739pt;}
.ye_c03266{bottom:622.507483pt;}
.yd_c03266{bottom:628.586875pt;}
.yc_c03266{bottom:637.227067pt;}
.ya_c03266{bottom:707.945339pt;}
.y9_c03266{bottom:779.945531pt;}
.y7_c03266{bottom:823.786427pt;}
.y3_c03266{bottom:839.786939pt;}
.y8_c03266{bottom:870.505979pt;}
.y6_c03266{bottom:899.946203pt;}
.y5_c03266{bottom:915.946715pt;}
.y2_c03266{bottom:945.386939pt;}
.y4_c03266{bottom:959.786555pt;}
.y1_c03266{bottom:975.787067pt;}
.y10_c03266{bottom:1008.747067pt;}
.h3_c03266{height:28.916250pt;}
.h1_c03266{height:37.063125pt;}
.h2_c03266{height:37.166250pt;}
.h5_c03266{height:48.581988pt;}
.h4_c03266{height:66.504405pt;}
.h0_c03266{height:1122.666667pt;}
.w1_c03266{width:793.333333pt;}
.w0_c03266{width:793.626667pt;}
.x0_c03266{left:0.000000pt;}
.xe_c03266{left:104.000000pt;}
.x8_c03266{left:391.999872pt;}
.x4_c03266{left:396.160512pt;}
.xb_c03266{left:400.960000pt;}
.x7_c03266{left:404.799648pt;}
.x5_c03266{left:410.560128pt;}
.x1_c03266{left:411.840000pt;}
.xa_c03266{left:429.760320pt;}
.x9_c03266{left:437.439552pt;}
.x6_c03266{left:438.400512pt;}
.xc_c03266{left:450.560320pt;}
.x3_c03266{left:455.039904pt;}
.x2_c03266{left:468.159648pt;}
.xd_c03266{left:506.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03267 {
    display:none;
  }
  .loading-indicator_c03267.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03267 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03267 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03267" -> "#page-container .classname_c03267")
 */
.pf_c03267 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03267 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03267.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03267 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03267 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03267 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03267 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03267 {overflow:visible;}
  }
}
.c_c03267 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03267 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03267:after { /* webkit #35443 */
  content: '';
}
.t_c03267:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03267 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03267 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03267 { /* info for Javascript */
  display:none;
}
.l_c03267 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03267 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03267 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03267:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03267 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03267.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03267.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03267 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03267{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03267;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03267{font-family:ff1_c03267;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03267;src:url('chunks/assets/font_1c34174efba62dd1f2997bdf.woff2')format("woff");}.ff2_c03267{font-family:ff2_c03267;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03267;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03267{font-family:ff3_c03267;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03267{vertical-align:0.000000px;}
.v1_c03267{vertical-align:1.439424px;}
.lsf_c03267{letter-spacing:-0.765072px;}
.ls7_c03267{letter-spacing:-0.613008px;}
.ls9_c03267{letter-spacing:-0.574992px;}
.lsd_c03267{letter-spacing:-0.375408px;}
.ls14_c03267{letter-spacing:-0.275616px;}
.ls10_c03267{letter-spacing:-0.270864px;}
.lsc_c03267{letter-spacing:-0.261360px;}
.ls6_c03267{letter-spacing:-0.242352px;}
.ls4_c03267{letter-spacing:-0.118800px;}
.ls13_c03267{letter-spacing:0.000000px;}
.ls1_c03267{letter-spacing:0.006048px;}
.ls5_c03267{letter-spacing:0.128304px;}
.lsb_c03267{letter-spacing:0.508464px;}
.ls12_c03267{letter-spacing:0.514080px;}
.lse_c03267{letter-spacing:0.536976px;}
.lsa_c03267{letter-spacing:0.579744px;}
.ls11_c03267{letter-spacing:0.594000px;}
.ls8_c03267{letter-spacing:0.598752px;}
.ls2_c03267{letter-spacing:0.613008px;}
.ls3_c03267{letter-spacing:0.717552px;}
.ls0_c03267{letter-spacing:0.722304px;}
.sc__c03267{text-shadow:none;}
.sc0_c03267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03267{-webkit-text-stroke:0px transparent;}
.sc0_c03267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03267{word-spacing:-15.126048px;}
.wsb_c03267{word-spacing:-12.474000px;}
.ws6_c03267{word-spacing:-12.459744px;}
.ws4_c03267{word-spacing:-11.637648px;}
.ws2_c03267{word-spacing:-11.266992px;}
.ws12_c03267{word-spacing:-1.083456px;}
.wsf_c03267{word-spacing:-0.974160px;}
.ws17_c03267{word-spacing:-0.719712px;}
.ws11_c03267{word-spacing:-0.118800px;}
.ws13_c03267{word-spacing:-0.099792px;}
.ws15_c03267{word-spacing:-0.090288px;}
.ws16_c03267{word-spacing:-0.085536px;}
.ws10_c03267{word-spacing:0.000000px;}
.ws14_c03267{word-spacing:0.014256px;}
.wsc_c03267{word-spacing:33.300288px;}
.ws9_c03267{word-spacing:34.836912px;}
.ws8_c03267{word-spacing:36.143712px;}
.wse_c03267{word-spacing:36.742464px;}
.ws1_c03267{word-spacing:37.759392px;}
.wsa_c03267{word-spacing:37.892448px;}
.ws0_c03267{word-spacing:38.020752px;}
.ws3_c03267{word-spacing:39.218256px;}
.ws5_c03267{word-spacing:39.902544px;}
.ws7_c03267{word-spacing:42.026688px;}
._0_c03267{margin-left:-1.948320px;}
._2_c03267{width:1.482624px;}
._4_c03267{width:5.749920px;}
._1_c03267{width:50.252400px;}
._3_c03267{width:51.530688px;}
._5_c03267{width:53.070336px;}
.fc0_c03267{color:rgb(0,0,0);}
.fs0_c03267{font-size:47.520000px;}
.fs1_c03267{font-size:60.480000px;}
.y0_c03267{bottom:0.000000px;}
.y1a_c03267{bottom:146.998362px;}
.y1c_c03267{bottom:186.600234px;}
.y1b_c03267{bottom:196.320450px;}
.y19_c03267{bottom:275.878542px;}
.y18_c03267{bottom:356.878758px;}
.y16_c03267{bottom:406.559730px;}
.y12_c03267{bottom:424.560306px;}
.y17_c03267{bottom:458.759262px;}
.y15_c03267{bottom:491.879514px;}
.y14_c03267{bottom:509.880090px;}
.y11_c03267{bottom:543.000342px;}
.y13_c03267{bottom:559.559874px;}
.y10_c03267{bottom:577.560450px;}
.y1d_c03267{bottom:614.280450px;}
.yc_c03267{bottom:652.438650px;}
.yb_c03267{bottom:667.558326px;}
.ye_c03267{bottom:707.160234px;}
.yd_c03267{bottom:716.880450px;}
.ya_c03267{bottom:796.438506px;}
.y9_c03267{bottom:877.438722px;}
.y7_c03267{bottom:926.759730px;}
.y3_c03267{bottom:944.760306px;}
.y8_c03267{bottom:979.319226px;}
.y6_c03267{bottom:1012.439478px;}
.y5_c03267{bottom:1030.440054px;}
.y2_c03267{bottom:1063.560306px;}
.y4_c03267{bottom:1079.759874px;}
.y1_c03267{bottom:1097.760450px;}
.yf_c03267{bottom:1134.840450px;}
.h3_c03267{height:32.530781px;}
.h1_c03267{height:41.696016px;}
.h2_c03267{height:41.812031px;}
.h4_c03267{height:54.654737px;}
.h0_c03267{height:1263.000000px;}
.w1_c03267{width:892.500000px;}
.w0_c03267{width:892.830000px;}
.x0_c03267{left:0.000000px;}
.xe_c03267{left:117.000000px;}
.x8_c03267{left:440.999856px;}
.x4_c03267{left:445.680576px;}
.xc_c03267{left:451.080000px;}
.x7_c03267{left:455.399604px;}
.x5_c03267{left:461.880144px;}
.x1_c03267{left:463.320000px;}
.xa_c03267{left:483.480360px;}
.x9_c03267{left:492.119496px;}
.x6_c03267{left:493.200576px;}
.xd_c03267{left:506.880360px;}
.x3_c03267{left:511.919892px;}
.x2_c03267{left:526.679604px;}
.xb_c03267{left:569.880036px;}
@media print{
.v0_c03267{vertical-align:0.000000pt;}
.v1_c03267{vertical-align:1.279488pt;}
.lsf_c03267{letter-spacing:-0.680064pt;}
.ls7_c03267{letter-spacing:-0.544896pt;}
.ls9_c03267{letter-spacing:-0.511104pt;}
.lsd_c03267{letter-spacing:-0.333696pt;}
.ls14_c03267{letter-spacing:-0.244992pt;}
.ls10_c03267{letter-spacing:-0.240768pt;}
.lsc_c03267{letter-spacing:-0.232320pt;}
.ls6_c03267{letter-spacing:-0.215424pt;}
.ls4_c03267{letter-spacing:-0.105600pt;}
.ls13_c03267{letter-spacing:0.000000pt;}
.ls1_c03267{letter-spacing:0.005376pt;}
.ls5_c03267{letter-spacing:0.114048pt;}
.lsb_c03267{letter-spacing:0.451968pt;}
.ls12_c03267{letter-spacing:0.456960pt;}
.lse_c03267{letter-spacing:0.477312pt;}
.lsa_c03267{letter-spacing:0.515328pt;}
.ls11_c03267{letter-spacing:0.528000pt;}
.ls8_c03267{letter-spacing:0.532224pt;}
.ls2_c03267{letter-spacing:0.544896pt;}
.ls3_c03267{letter-spacing:0.637824pt;}
.ls0_c03267{letter-spacing:0.642048pt;}
.wsd_c03267{word-spacing:-13.445376pt;}
.wsb_c03267{word-spacing:-11.088000pt;}
.ws6_c03267{word-spacing:-11.075328pt;}
.ws4_c03267{word-spacing:-10.344576pt;}
.ws2_c03267{word-spacing:-10.015104pt;}
.ws12_c03267{word-spacing:-0.963072pt;}
.wsf_c03267{word-spacing:-0.865920pt;}
.ws17_c03267{word-spacing:-0.639744pt;}
.ws11_c03267{word-spacing:-0.105600pt;}
.ws13_c03267{word-spacing:-0.088704pt;}
.ws15_c03267{word-spacing:-0.080256pt;}
.ws16_c03267{word-spacing:-0.076032pt;}
.ws10_c03267{word-spacing:0.000000pt;}
.ws14_c03267{word-spacing:0.012672pt;}
.wsc_c03267{word-spacing:29.600256pt;}
.ws9_c03267{word-spacing:30.966144pt;}
.ws8_c03267{word-spacing:32.127744pt;}
.wse_c03267{word-spacing:32.659968pt;}
.ws1_c03267{word-spacing:33.563904pt;}
.wsa_c03267{word-spacing:33.682176pt;}
.ws0_c03267{word-spacing:33.796224pt;}
.ws3_c03267{word-spacing:34.860672pt;}
.ws5_c03267{word-spacing:35.468928pt;}
.ws7_c03267{word-spacing:37.357056pt;}
._0_c03267{margin-left:-1.731840pt;}
._2_c03267{width:1.317888pt;}
._4_c03267{width:5.111040pt;}
._1_c03267{width:44.668800pt;}
._3_c03267{width:45.805056pt;}
._5_c03267{width:47.173632pt;}
.fs0_c03267{font-size:42.240000pt;}
.fs1_c03267{font-size:53.760000pt;}
.y0_c03267{bottom:0.000000pt;}
.y1a_c03267{bottom:130.665211pt;}
.y1c_c03267{bottom:165.866875pt;}
.y1b_c03267{bottom:174.507067pt;}
.y19_c03267{bottom:245.225371pt;}
.y18_c03267{bottom:317.225563pt;}
.y16_c03267{bottom:361.386427pt;}
.y12_c03267{bottom:377.386939pt;}
.y17_c03267{bottom:407.786011pt;}
.y15_c03267{bottom:437.226235pt;}
.y14_c03267{bottom:453.226747pt;}
.y11_c03267{bottom:482.666971pt;}
.y13_c03267{bottom:497.386555pt;}
.y10_c03267{bottom:513.387067pt;}
.y1d_c03267{bottom:546.027067pt;}
.yc_c03267{bottom:579.945467pt;}
.yb_c03267{bottom:593.385179pt;}
.ye_c03267{bottom:628.586875pt;}
.yd_c03267{bottom:637.227067pt;}
.ya_c03267{bottom:707.945339pt;}
.y9_c03267{bottom:779.945531pt;}
.y7_c03267{bottom:823.786427pt;}
.y3_c03267{bottom:839.786939pt;}
.y8_c03267{bottom:870.505979pt;}
.y6_c03267{bottom:899.946203pt;}
.y5_c03267{bottom:915.946715pt;}
.y2_c03267{bottom:945.386939pt;}
.y4_c03267{bottom:959.786555pt;}
.y1_c03267{bottom:975.787067pt;}
.yf_c03267{bottom:1008.747067pt;}
.h3_c03267{height:28.916250pt;}
.h1_c03267{height:37.063125pt;}
.h2_c03267{height:37.166250pt;}
.h4_c03267{height:48.581988pt;}
.h0_c03267{height:1122.666667pt;}
.w1_c03267{width:793.333333pt;}
.w0_c03267{width:793.626667pt;}
.x0_c03267{left:0.000000pt;}
.xe_c03267{left:104.000000pt;}
.x8_c03267{left:391.999872pt;}
.x4_c03267{left:396.160512pt;}
.xc_c03267{left:400.960000pt;}
.x7_c03267{left:404.799648pt;}
.x5_c03267{left:410.560128pt;}
.x1_c03267{left:411.840000pt;}
.xa_c03267{left:429.760320pt;}
.x9_c03267{left:437.439552pt;}
.x6_c03267{left:438.400512pt;}
.xd_c03267{left:450.560320pt;}
.x3_c03267{left:455.039904pt;}
.x2_c03267{left:468.159648pt;}
.xb_c03267{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03268 {
    display:none;
  }
  .loading-indicator_c03268.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03268 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03268 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03268" -> "#page-container .classname_c03268")
 */
.pf_c03268 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03268 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03268.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03268 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03268 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03268 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03268 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03268 {overflow:visible;}
  }
}
.c_c03268 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03268 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03268:after { /* webkit #35443 */
  content: '';
}
.t_c03268:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03268 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03268 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03268 { /* info for Javascript */
  display:none;
}
.l_c03268 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03268 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03268 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03268:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03268 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03268.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03268.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03268 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03268{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03268;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03268{font-family:ff1_c03268;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03268;src:url('chunks/assets/font_df47766e5e0ad7b51eec4b2c.woff2')format("woff");}.ff2_c03268{font-family:ff2_c03268;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03268;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03268{font-family:ff3_c03268;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03268{vertical-align:0.000000px;}
.v2_c03268{vertical-align:1.439424px;}
.v1_c03268{vertical-align:33.121440px;}
.ls7_c03268{letter-spacing:-0.613008px;}
.ls9_c03268{letter-spacing:-0.574992px;}
.ls13_c03268{letter-spacing:-0.380160px;}
.ls10_c03268{letter-spacing:-0.275616px;}
.lse_c03268{letter-spacing:-0.261360px;}
.ls6_c03268{letter-spacing:-0.242352px;}
.ls4_c03268{letter-spacing:-0.118800px;}
.ls15_c03268{letter-spacing:0.000000px;}
.ls1_c03268{letter-spacing:0.006048px;}
.lsb_c03268{letter-spacing:0.080784px;}
.ls12_c03268{letter-spacing:0.095040px;}
.ls5_c03268{letter-spacing:0.128304px;}
.lsd_c03268{letter-spacing:0.242352px;}
.lsc_c03268{letter-spacing:0.508464px;}
.ls14_c03268{letter-spacing:0.514080px;}
.lsf_c03268{letter-spacing:0.536976px;}
.lsa_c03268{letter-spacing:0.579744px;}
.ls11_c03268{letter-spacing:0.594000px;}
.ls8_c03268{letter-spacing:0.598752px;}
.ls2_c03268{letter-spacing:0.613008px;}
.ls3_c03268{letter-spacing:0.717552px;}
.ls0_c03268{letter-spacing:0.722304px;}
.sc__c03268{text-shadow:none;}
.sc0_c03268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03268{-webkit-text-stroke:0px transparent;}
.sc0_c03268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03268{word-spacing:-15.126048px;}
.ws10_c03268{word-spacing:-12.474000px;}
.wsf_c03268{word-spacing:-12.459744px;}
.ws4_c03268{word-spacing:-11.637648px;}
.ws2_c03268{word-spacing:-11.266992px;}
.ws14_c03268{word-spacing:-1.083456px;}
.ws11_c03268{word-spacing:-0.974160px;}
.ws1a_c03268{word-spacing:-0.719712px;}
.wsc_c03268{word-spacing:-0.608256px;}
.ws16_c03268{word-spacing:-0.603504px;}
.ws15_c03268{word-spacing:-0.441936px;}
.ws13_c03268{word-spacing:-0.118800px;}
.ws17_c03268{word-spacing:-0.099792px;}
.ws18_c03268{word-spacing:-0.085536px;}
.ws12_c03268{word-spacing:0.000000px;}
.ws19_c03268{word-spacing:0.019008px;}
.wsb_c03268{word-spacing:3.411936px;}
.wsa_c03268{word-spacing:30.298752px;}
.wsd_c03268{word-spacing:33.300288px;}
.ws9_c03268{word-spacing:34.836912px;}
.ws8_c03268{word-spacing:36.143712px;}
.ws6_c03268{word-spacing:36.742464px;}
.ws1_c03268{word-spacing:37.759392px;}
.ws0_c03268{word-spacing:38.020752px;}
.ws3_c03268{word-spacing:39.218256px;}
.ws5_c03268{word-spacing:39.902544px;}
.ws7_c03268{word-spacing:42.026688px;}
._0_c03268{margin-left:-1.948320px;}
._2_c03268{width:1.482624px;}
._4_c03268{width:5.749920px;}
._6_c03268{width:14.911776px;}
._7_c03268{width:16.703280px;}
._5_c03268{width:19.312128px;}
._1_c03268{width:50.252400px;}
._3_c03268{width:51.530688px;}
.fc0_c03268{color:rgb(0,0,0);}
.fs0_c03268{font-size:47.520000px;}
.fs1_c03268{font-size:60.480000px;}
.y0_c03268{bottom:0.000000px;}
.y1a_c03268{bottom:146.998362px;}
.y1c_c03268{bottom:186.600234px;}
.y1b_c03268{bottom:196.320450px;}
.y19_c03268{bottom:275.878542px;}
.y18_c03268{bottom:356.878758px;}
.y16_c03268{bottom:406.559730px;}
.y12_c03268{bottom:424.560306px;}
.y17_c03268{bottom:458.759262px;}
.y15_c03268{bottom:491.879514px;}
.y14_c03268{bottom:509.880090px;}
.y11_c03268{bottom:543.000342px;}
.y13_c03268{bottom:559.559874px;}
.y10_c03268{bottom:577.560450px;}
.y1d_c03268{bottom:614.280450px;}
.yb_c03268{bottom:667.558326px;}
.ye_c03268{bottom:700.320918px;}
.yd_c03268{bottom:707.160234px;}
.yc_c03268{bottom:716.880450px;}
.ya_c03268{bottom:796.438506px;}
.y9_c03268{bottom:877.438722px;}
.y7_c03268{bottom:926.759730px;}
.y3_c03268{bottom:944.760306px;}
.y8_c03268{bottom:979.319226px;}
.y6_c03268{bottom:1012.439478px;}
.y5_c03268{bottom:1030.440054px;}
.y2_c03268{bottom:1063.560306px;}
.y4_c03268{bottom:1079.759874px;}
.y1_c03268{bottom:1097.760450px;}
.yf_c03268{bottom:1134.840450px;}
.h3_c03268{height:32.530781px;}
.h1_c03268{height:41.696016px;}
.h2_c03268{height:41.812031px;}
.h5_c03268{height:54.654737px;}
.h4_c03268{height:74.817456px;}
.h0_c03268{height:1263.000000px;}
.w1_c03268{width:892.500000px;}
.w0_c03268{width:892.830000px;}
.x0_c03268{left:0.000000px;}
.xe_c03268{left:117.000000px;}
.x8_c03268{left:440.999856px;}
.x4_c03268{left:445.680576px;}
.xb_c03268{left:451.080000px;}
.x7_c03268{left:455.399604px;}
.x5_c03268{left:461.880144px;}
.x1_c03268{left:463.320000px;}
.xa_c03268{left:483.480360px;}
.x9_c03268{left:492.119496px;}
.x6_c03268{left:493.200576px;}
.xc_c03268{left:506.880360px;}
.x3_c03268{left:511.919892px;}
.x2_c03268{left:526.679604px;}
.xd_c03268{left:569.880000px;}
@media print{
.v0_c03268{vertical-align:0.000000pt;}
.v2_c03268{vertical-align:1.279488pt;}
.v1_c03268{vertical-align:29.441280pt;}
.ls7_c03268{letter-spacing:-0.544896pt;}
.ls9_c03268{letter-spacing:-0.511104pt;}
.ls13_c03268{letter-spacing:-0.337920pt;}
.ls10_c03268{letter-spacing:-0.244992pt;}
.lse_c03268{letter-spacing:-0.232320pt;}
.ls6_c03268{letter-spacing:-0.215424pt;}
.ls4_c03268{letter-spacing:-0.105600pt;}
.ls15_c03268{letter-spacing:0.000000pt;}
.ls1_c03268{letter-spacing:0.005376pt;}
.lsb_c03268{letter-spacing:0.071808pt;}
.ls12_c03268{letter-spacing:0.084480pt;}
.ls5_c03268{letter-spacing:0.114048pt;}
.lsd_c03268{letter-spacing:0.215424pt;}
.lsc_c03268{letter-spacing:0.451968pt;}
.ls14_c03268{letter-spacing:0.456960pt;}
.lsf_c03268{letter-spacing:0.477312pt;}
.lsa_c03268{letter-spacing:0.515328pt;}
.ls11_c03268{letter-spacing:0.528000pt;}
.ls8_c03268{letter-spacing:0.532224pt;}
.ls2_c03268{letter-spacing:0.544896pt;}
.ls3_c03268{letter-spacing:0.637824pt;}
.ls0_c03268{letter-spacing:0.642048pt;}
.wse_c03268{word-spacing:-13.445376pt;}
.ws10_c03268{word-spacing:-11.088000pt;}
.wsf_c03268{word-spacing:-11.075328pt;}
.ws4_c03268{word-spacing:-10.344576pt;}
.ws2_c03268{word-spacing:-10.015104pt;}
.ws14_c03268{word-spacing:-0.963072pt;}
.ws11_c03268{word-spacing:-0.865920pt;}
.ws1a_c03268{word-spacing:-0.639744pt;}
.wsc_c03268{word-spacing:-0.540672pt;}
.ws16_c03268{word-spacing:-0.536448pt;}
.ws15_c03268{word-spacing:-0.392832pt;}
.ws13_c03268{word-spacing:-0.105600pt;}
.ws17_c03268{word-spacing:-0.088704pt;}
.ws18_c03268{word-spacing:-0.076032pt;}
.ws12_c03268{word-spacing:0.000000pt;}
.ws19_c03268{word-spacing:0.016896pt;}
.wsb_c03268{word-spacing:3.032832pt;}
.wsa_c03268{word-spacing:26.932224pt;}
.wsd_c03268{word-spacing:29.600256pt;}
.ws9_c03268{word-spacing:30.966144pt;}
.ws8_c03268{word-spacing:32.127744pt;}
.ws6_c03268{word-spacing:32.659968pt;}
.ws1_c03268{word-spacing:33.563904pt;}
.ws0_c03268{word-spacing:33.796224pt;}
.ws3_c03268{word-spacing:34.860672pt;}
.ws5_c03268{word-spacing:35.468928pt;}
.ws7_c03268{word-spacing:37.357056pt;}
._0_c03268{margin-left:-1.731840pt;}
._2_c03268{width:1.317888pt;}
._4_c03268{width:5.111040pt;}
._6_c03268{width:13.254912pt;}
._7_c03268{width:14.847360pt;}
._5_c03268{width:17.166336pt;}
._1_c03268{width:44.668800pt;}
._3_c03268{width:45.805056pt;}
.fs0_c03268{font-size:42.240000pt;}
.fs1_c03268{font-size:53.760000pt;}
.y0_c03268{bottom:0.000000pt;}
.y1a_c03268{bottom:130.665211pt;}
.y1c_c03268{bottom:165.866875pt;}
.y1b_c03268{bottom:174.507067pt;}
.y19_c03268{bottom:245.225371pt;}
.y18_c03268{bottom:317.225563pt;}
.y16_c03268{bottom:361.386427pt;}
.y12_c03268{bottom:377.386939pt;}
.y17_c03268{bottom:407.786011pt;}
.y15_c03268{bottom:437.226235pt;}
.y14_c03268{bottom:453.226747pt;}
.y11_c03268{bottom:482.666971pt;}
.y13_c03268{bottom:497.386555pt;}
.y10_c03268{bottom:513.387067pt;}
.y1d_c03268{bottom:546.027067pt;}
.yb_c03268{bottom:593.385179pt;}
.ye_c03268{bottom:622.507483pt;}
.yd_c03268{bottom:628.586875pt;}
.yc_c03268{bottom:637.227067pt;}
.ya_c03268{bottom:707.945339pt;}
.y9_c03268{bottom:779.945531pt;}
.y7_c03268{bottom:823.786427pt;}
.y3_c03268{bottom:839.786939pt;}
.y8_c03268{bottom:870.505979pt;}
.y6_c03268{bottom:899.946203pt;}
.y5_c03268{bottom:915.946715pt;}
.y2_c03268{bottom:945.386939pt;}
.y4_c03268{bottom:959.786555pt;}
.y1_c03268{bottom:975.787067pt;}
.yf_c03268{bottom:1008.747067pt;}
.h3_c03268{height:28.916250pt;}
.h1_c03268{height:37.063125pt;}
.h2_c03268{height:37.166250pt;}
.h5_c03268{height:48.581988pt;}
.h4_c03268{height:66.504405pt;}
.h0_c03268{height:1122.666667pt;}
.w1_c03268{width:793.333333pt;}
.w0_c03268{width:793.626667pt;}
.x0_c03268{left:0.000000pt;}
.xe_c03268{left:104.000000pt;}
.x8_c03268{left:391.999872pt;}
.x4_c03268{left:396.160512pt;}
.xb_c03268{left:400.960000pt;}
.x7_c03268{left:404.799648pt;}
.x5_c03268{left:410.560128pt;}
.x1_c03268{left:411.840000pt;}
.xa_c03268{left:429.760320pt;}
.x9_c03268{left:437.439552pt;}
.x6_c03268{left:438.400512pt;}
.xc_c03268{left:450.560320pt;}
.x3_c03268{left:455.039904pt;}
.x2_c03268{left:468.159648pt;}
.xd_c03268{left:506.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03269 {
    display:none;
  }
  .loading-indicator_c03269.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03269 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03269 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03269" -> "#page-container .classname_c03269")
 */
.pf_c03269 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03269 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03269.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03269 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03269 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03269 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03269 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03269 {overflow:visible;}
  }
}
.c_c03269 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03269 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03269:after { /* webkit #35443 */
  content: '';
}
.t_c03269:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03269 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03269 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03269 { /* info for Javascript */
  display:none;
}
.l_c03269 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03269 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03269 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03269:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03269 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03269.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03269.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03269 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03269{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03269;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03269{font-family:ff1_c03269;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03269;src:url('chunks/assets/font_c4a6831db347adcba06b8c83.woff2')format("woff");}.ff2_c03269{font-family:ff2_c03269;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03269;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03269{font-family:ff3_c03269;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03269{vertical-align:0.000000px;}
.v1_c03269{vertical-align:1.439424px;}
.ls7_c03269{letter-spacing:-0.613008px;}
.ls9_c03269{letter-spacing:-0.574992px;}
.lse_c03269{letter-spacing:-0.275616px;}
.lsc_c03269{letter-spacing:-0.261360px;}
.ls6_c03269{letter-spacing:-0.242352px;}
.ls4_c03269{letter-spacing:-0.118800px;}
.ls11_c03269{letter-spacing:0.000000px;}
.ls1_c03269{letter-spacing:0.006048px;}
.ls5_c03269{letter-spacing:0.128304px;}
.lsb_c03269{letter-spacing:0.508464px;}
.ls10_c03269{letter-spacing:0.514080px;}
.lsd_c03269{letter-spacing:0.536976px;}
.lsa_c03269{letter-spacing:0.579744px;}
.lsf_c03269{letter-spacing:0.594000px;}
.ls8_c03269{letter-spacing:0.598752px;}
.ls2_c03269{letter-spacing:0.613008px;}
.ls3_c03269{letter-spacing:0.717552px;}
.ls0_c03269{letter-spacing:0.722304px;}
.sc__c03269{text-shadow:none;}
.sc0_c03269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03269{-webkit-text-stroke:0px transparent;}
.sc0_c03269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03269{word-spacing:-15.126048px;}
.wsa_c03269{word-spacing:-12.474000px;}
.ws8_c03269{word-spacing:-12.459744px;}
.ws4_c03269{word-spacing:-11.637648px;}
.ws2_c03269{word-spacing:-11.266992px;}
.ws10_c03269{word-spacing:-1.083456px;}
.wsd_c03269{word-spacing:-0.974160px;}
.ws13_c03269{word-spacing:-0.719712px;}
.wsf_c03269{word-spacing:-0.118800px;}
.ws11_c03269{word-spacing:-0.099792px;}
.ws12_c03269{word-spacing:-0.085536px;}
.wse_c03269{word-spacing:0.000000px;}
.wsb_c03269{word-spacing:33.300288px;}
.ws9_c03269{word-spacing:34.836912px;}
.ws6_c03269{word-spacing:36.742464px;}
.ws1_c03269{word-spacing:37.759392px;}
.ws0_c03269{word-spacing:38.020752px;}
.ws3_c03269{word-spacing:39.218256px;}
.ws5_c03269{word-spacing:39.902544px;}
.ws7_c03269{word-spacing:42.026688px;}
._0_c03269{margin-left:-1.948320px;}
._2_c03269{width:1.482624px;}
._4_c03269{width:5.749920px;}
._1_c03269{width:50.252400px;}
._3_c03269{width:51.530688px;}
.fc0_c03269{color:rgb(0,0,0);}
.fs0_c03269{font-size:47.520000px;}
.fs1_c03269{font-size:60.480000px;}
.y0_c03269{bottom:0.000000px;}
.y19_c03269{bottom:146.998362px;}
.y1b_c03269{bottom:186.600234px;}
.y1a_c03269{bottom:196.320450px;}
.y18_c03269{bottom:275.878542px;}
.y17_c03269{bottom:356.878758px;}
.y15_c03269{bottom:406.559730px;}
.y11_c03269{bottom:424.560306px;}
.y16_c03269{bottom:458.759262px;}
.y14_c03269{bottom:491.879514px;}
.y13_c03269{bottom:509.880090px;}
.y10_c03269{bottom:543.000342px;}
.y12_c03269{bottom:559.559874px;}
.yf_c03269{bottom:577.560450px;}
.y1c_c03269{bottom:614.280450px;}
.yb_c03269{bottom:667.558326px;}
.yd_c03269{bottom:707.160234px;}
.yc_c03269{bottom:716.880450px;}
.ya_c03269{bottom:796.438506px;}
.y9_c03269{bottom:877.438722px;}
.y7_c03269{bottom:926.759730px;}
.y3_c03269{bottom:944.760306px;}
.y8_c03269{bottom:979.319226px;}
.y6_c03269{bottom:1012.439478px;}
.y5_c03269{bottom:1030.440054px;}
.y2_c03269{bottom:1063.560306px;}
.y4_c03269{bottom:1079.759874px;}
.y1_c03269{bottom:1097.760450px;}
.ye_c03269{bottom:1134.840450px;}
.h3_c03269{height:32.530781px;}
.h1_c03269{height:41.696016px;}
.h2_c03269{height:41.812031px;}
.h4_c03269{height:54.654737px;}
.h0_c03269{height:1263.000000px;}
.w1_c03269{width:892.500000px;}
.w0_c03269{width:892.830000px;}
.x0_c03269{left:0.000000px;}
.xd_c03269{left:117.000000px;}
.x8_c03269{left:440.999856px;}
.x4_c03269{left:445.680576px;}
.xb_c03269{left:451.080000px;}
.x7_c03269{left:455.399604px;}
.x5_c03269{left:461.880144px;}
.x1_c03269{left:463.320000px;}
.xa_c03269{left:483.480360px;}
.x9_c03269{left:492.119496px;}
.x6_c03269{left:493.200576px;}
.xc_c03269{left:506.880360px;}
.x3_c03269{left:511.919892px;}
.x2_c03269{left:526.679604px;}
@media print{
.v0_c03269{vertical-align:0.000000pt;}
.v1_c03269{vertical-align:1.279488pt;}
.ls7_c03269{letter-spacing:-0.544896pt;}
.ls9_c03269{letter-spacing:-0.511104pt;}
.lse_c03269{letter-spacing:-0.244992pt;}
.lsc_c03269{letter-spacing:-0.232320pt;}
.ls6_c03269{letter-spacing:-0.215424pt;}
.ls4_c03269{letter-spacing:-0.105600pt;}
.ls11_c03269{letter-spacing:0.000000pt;}
.ls1_c03269{letter-spacing:0.005376pt;}
.ls5_c03269{letter-spacing:0.114048pt;}
.lsb_c03269{letter-spacing:0.451968pt;}
.ls10_c03269{letter-spacing:0.456960pt;}
.lsd_c03269{letter-spacing:0.477312pt;}
.lsa_c03269{letter-spacing:0.515328pt;}
.lsf_c03269{letter-spacing:0.528000pt;}
.ls8_c03269{letter-spacing:0.532224pt;}
.ls2_c03269{letter-spacing:0.544896pt;}
.ls3_c03269{letter-spacing:0.637824pt;}
.ls0_c03269{letter-spacing:0.642048pt;}
.wsc_c03269{word-spacing:-13.445376pt;}
.wsa_c03269{word-spacing:-11.088000pt;}
.ws8_c03269{word-spacing:-11.075328pt;}
.ws4_c03269{word-spacing:-10.344576pt;}
.ws2_c03269{word-spacing:-10.015104pt;}
.ws10_c03269{word-spacing:-0.963072pt;}
.wsd_c03269{word-spacing:-0.865920pt;}
.ws13_c03269{word-spacing:-0.639744pt;}
.wsf_c03269{word-spacing:-0.105600pt;}
.ws11_c03269{word-spacing:-0.088704pt;}
.ws12_c03269{word-spacing:-0.076032pt;}
.wse_c03269{word-spacing:0.000000pt;}
.wsb_c03269{word-spacing:29.600256pt;}
.ws9_c03269{word-spacing:30.966144pt;}
.ws6_c03269{word-spacing:32.659968pt;}
.ws1_c03269{word-spacing:33.563904pt;}
.ws0_c03269{word-spacing:33.796224pt;}
.ws3_c03269{word-spacing:34.860672pt;}
.ws5_c03269{word-spacing:35.468928pt;}
.ws7_c03269{word-spacing:37.357056pt;}
._0_c03269{margin-left:-1.731840pt;}
._2_c03269{width:1.317888pt;}
._4_c03269{width:5.111040pt;}
._1_c03269{width:44.668800pt;}
._3_c03269{width:45.805056pt;}
.fs0_c03269{font-size:42.240000pt;}
.fs1_c03269{font-size:53.760000pt;}
.y0_c03269{bottom:0.000000pt;}
.y19_c03269{bottom:130.665211pt;}
.y1b_c03269{bottom:165.866875pt;}
.y1a_c03269{bottom:174.507067pt;}
.y18_c03269{bottom:245.225371pt;}
.y17_c03269{bottom:317.225563pt;}
.y15_c03269{bottom:361.386427pt;}
.y11_c03269{bottom:377.386939pt;}
.y16_c03269{bottom:407.786011pt;}
.y14_c03269{bottom:437.226235pt;}
.y13_c03269{bottom:453.226747pt;}
.y10_c03269{bottom:482.666971pt;}
.y12_c03269{bottom:497.386555pt;}
.yf_c03269{bottom:513.387067pt;}
.y1c_c03269{bottom:546.027067pt;}
.yb_c03269{bottom:593.385179pt;}
.yd_c03269{bottom:628.586875pt;}
.yc_c03269{bottom:637.227067pt;}
.ya_c03269{bottom:707.945339pt;}
.y9_c03269{bottom:779.945531pt;}
.y7_c03269{bottom:823.786427pt;}
.y3_c03269{bottom:839.786939pt;}
.y8_c03269{bottom:870.505979pt;}
.y6_c03269{bottom:899.946203pt;}
.y5_c03269{bottom:915.946715pt;}
.y2_c03269{bottom:945.386939pt;}
.y4_c03269{bottom:959.786555pt;}
.y1_c03269{bottom:975.787067pt;}
.ye_c03269{bottom:1008.747067pt;}
.h3_c03269{height:28.916250pt;}
.h1_c03269{height:37.063125pt;}
.h2_c03269{height:37.166250pt;}
.h4_c03269{height:48.581988pt;}
.h0_c03269{height:1122.666667pt;}
.w1_c03269{width:793.333333pt;}
.w0_c03269{width:793.626667pt;}
.x0_c03269{left:0.000000pt;}
.xd_c03269{left:104.000000pt;}
.x8_c03269{left:391.999872pt;}
.x4_c03269{left:396.160512pt;}
.xb_c03269{left:400.960000pt;}
.x7_c03269{left:404.799648pt;}
.x5_c03269{left:410.560128pt;}
.x1_c03269{left:411.840000pt;}
.xa_c03269{left:429.760320pt;}
.x9_c03269{left:437.439552pt;}
.x6_c03269{left:438.400512pt;}
.xc_c03269{left:450.560320pt;}
.x3_c03269{left:455.039904pt;}
.x2_c03269{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03270 {
    display:none;
  }
  .loading-indicator_c03270.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03270 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03270 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03270" -> "#page-container .classname_c03270")
 */
.pf_c03270 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03270 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03270.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03270 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03270 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03270 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03270 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03270 {overflow:visible;}
  }
}
.c_c03270 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03270 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03270:after { /* webkit #35443 */
  content: '';
}
.t_c03270:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03270 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03270 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03270 { /* info for Javascript */
  display:none;
}
.l_c03270 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03270 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03270 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03270:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03270 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03270.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03270.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03270 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03270{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03270;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03270{font-family:ff1_c03270;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03270;src:url('chunks/assets/font_ad77037f72805b26bad473d7.woff2')format("woff");}.ff2_c03270{font-family:ff2_c03270;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03270;src:url('chunks/assets/font_288d5a24569fc3f6a43c9309.woff2')format("woff");}.ff3_c03270{font-family:ff3_c03270;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03270{vertical-align:0.000000px;}
.v1_c03270{vertical-align:1.439424px;}
.lse_c03270{letter-spacing:-0.793584px;}
.lsb_c03270{letter-spacing:-0.774576px;}
.ls12_c03270{letter-spacing:-0.736560px;}
.ls8_c03270{letter-spacing:-0.613008px;}
.lsa_c03270{letter-spacing:-0.574992px;}
.ls17_c03270{letter-spacing:-0.275616px;}
.ls13_c03270{letter-spacing:-0.270864px;}
.ls10_c03270{letter-spacing:-0.261360px;}
.ls7_c03270{letter-spacing:-0.242352px;}
.ls5_c03270{letter-spacing:-0.118800px;}
.ls16_c03270{letter-spacing:0.000000px;}
.ls1_c03270{letter-spacing:0.006048px;}
.ls6_c03270{letter-spacing:0.128304px;}
.lsf_c03270{letter-spacing:0.242352px;}
.lsd_c03270{letter-spacing:0.508464px;}
.ls15_c03270{letter-spacing:0.514080px;}
.ls11_c03270{letter-spacing:0.536976px;}
.lsc_c03270{letter-spacing:0.579744px;}
.ls14_c03270{letter-spacing:0.594000px;}
.ls9_c03270{letter-spacing:0.598752px;}
.ls3_c03270{letter-spacing:0.613008px;}
.ls0_c03270{letter-spacing:0.651024px;}
.ls4_c03270{letter-spacing:0.717552px;}
.ls2_c03270{letter-spacing:0.722304px;}
.sc__c03270{text-shadow:none;}
.sc0_c03270{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03270{-webkit-text-stroke:0px transparent;}
.sc0_c03270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03270{word-spacing:-15.126048px;}
.wsc_c03270{word-spacing:-12.474000px;}
.ws7_c03270{word-spacing:-12.459744px;}
.ws4_c03270{word-spacing:-11.637648px;}
.ws2_c03270{word-spacing:-11.266992px;}
.ws6_c03270{word-spacing:-11.105424px;}
.ws1a_c03270{word-spacing:-1.083456px;}
.ws12_c03270{word-spacing:-1.012176px;}
.ws10_c03270{word-spacing:-0.974160px;}
.ws19_c03270{word-spacing:-0.719712px;}
.ws15_c03270{word-spacing:-0.603504px;}
.ws13_c03270{word-spacing:-0.118800px;}
.ws16_c03270{word-spacing:-0.099792px;}
.ws17_c03270{word-spacing:-0.090288px;}
.ws18_c03270{word-spacing:-0.085536px;}
.ws11_c03270{word-spacing:0.000000px;}
.ws14_c03270{word-spacing:0.432432px;}
.wsb_c03270{word-spacing:6.629040px;}
.wsd_c03270{word-spacing:33.300288px;}
.wsa_c03270{word-spacing:34.836912px;}
.ws9_c03270{word-spacing:36.143712px;}
.wsf_c03270{word-spacing:36.742464px;}
.ws1_c03270{word-spacing:37.759392px;}
.ws0_c03270{word-spacing:38.020752px;}
.ws3_c03270{word-spacing:39.218256px;}
.ws5_c03270{word-spacing:39.902544px;}
.ws8_c03270{word-spacing:42.026688px;}
._0_c03270{margin-left:-1.948320px;}
._2_c03270{width:1.482624px;}
._4_c03270{width:5.749920px;}
._6_c03270{width:19.982160px;}
._7_c03270{width:23.451120px;}
._5_c03270{width:24.691392px;}
._1_c03270{width:50.252400px;}
._3_c03270{width:51.530688px;}
.fc0_c03270{color:rgb(0,0,0);}
.fs0_c03270{font-size:47.520000px;}
.fs1_c03270{font-size:60.480000px;}
.y0_c03270{bottom:0.000000px;}
.y1a_c03270{bottom:146.998362px;}
.y1c_c03270{bottom:186.600234px;}
.y1b_c03270{bottom:196.320450px;}
.y19_c03270{bottom:275.878542px;}
.y18_c03270{bottom:356.878758px;}
.y16_c03270{bottom:406.559730px;}
.y12_c03270{bottom:424.560306px;}
.y17_c03270{bottom:458.759262px;}
.y15_c03270{bottom:491.879514px;}
.y14_c03270{bottom:509.880090px;}
.y11_c03270{bottom:543.000342px;}
.y13_c03270{bottom:559.559874px;}
.y10_c03270{bottom:577.560450px;}
.y1d_c03270{bottom:614.280450px;}
.yc_c03270{bottom:652.438650px;}
.yb_c03270{bottom:667.558326px;}
.ye_c03270{bottom:707.160234px;}
.yd_c03270{bottom:716.880450px;}
.ya_c03270{bottom:796.438506px;}
.y9_c03270{bottom:877.438722px;}
.y7_c03270{bottom:926.759730px;}
.y3_c03270{bottom:944.760306px;}
.y8_c03270{bottom:979.319226px;}
.y6_c03270{bottom:1012.439478px;}
.y5_c03270{bottom:1030.440054px;}
.y2_c03270{bottom:1063.560306px;}
.y4_c03270{bottom:1079.759874px;}
.y1_c03270{bottom:1097.760450px;}
.yf_c03270{bottom:1134.840450px;}
.h3_c03270{height:32.530781px;}
.h1_c03270{height:41.696016px;}
.h2_c03270{height:41.812031px;}
.h4_c03270{height:54.654737px;}
.h0_c03270{height:1263.000000px;}
.w1_c03270{width:892.500000px;}
.w0_c03270{width:892.830000px;}
.x0_c03270{left:0.000000px;}
.xe_c03270{left:117.000000px;}
.x8_c03270{left:440.999856px;}
.x4_c03270{left:445.680576px;}
.xc_c03270{left:451.080000px;}
.x7_c03270{left:455.399604px;}
.x5_c03270{left:461.880144px;}
.x1_c03270{left:463.320000px;}
.xa_c03270{left:483.480360px;}
.x9_c03270{left:492.119496px;}
.x6_c03270{left:493.200576px;}
.xd_c03270{left:506.880360px;}
.x3_c03270{left:511.919892px;}
.x2_c03270{left:526.679604px;}
.xb_c03270{left:569.880036px;}
@media print{
.v0_c03270{vertical-align:0.000000pt;}
.v1_c03270{vertical-align:1.279488pt;}
.lse_c03270{letter-spacing:-0.705408pt;}
.lsb_c03270{letter-spacing:-0.688512pt;}
.ls12_c03270{letter-spacing:-0.654720pt;}
.ls8_c03270{letter-spacing:-0.544896pt;}
.lsa_c03270{letter-spacing:-0.511104pt;}
.ls17_c03270{letter-spacing:-0.244992pt;}
.ls13_c03270{letter-spacing:-0.240768pt;}
.ls10_c03270{letter-spacing:-0.232320pt;}
.ls7_c03270{letter-spacing:-0.215424pt;}
.ls5_c03270{letter-spacing:-0.105600pt;}
.ls16_c03270{letter-spacing:0.000000pt;}
.ls1_c03270{letter-spacing:0.005376pt;}
.ls6_c03270{letter-spacing:0.114048pt;}
.lsf_c03270{letter-spacing:0.215424pt;}
.lsd_c03270{letter-spacing:0.451968pt;}
.ls15_c03270{letter-spacing:0.456960pt;}
.ls11_c03270{letter-spacing:0.477312pt;}
.lsc_c03270{letter-spacing:0.515328pt;}
.ls14_c03270{letter-spacing:0.528000pt;}
.ls9_c03270{letter-spacing:0.532224pt;}
.ls3_c03270{letter-spacing:0.544896pt;}
.ls0_c03270{letter-spacing:0.578688pt;}
.ls4_c03270{letter-spacing:0.637824pt;}
.ls2_c03270{letter-spacing:0.642048pt;}
.wse_c03270{word-spacing:-13.445376pt;}
.wsc_c03270{word-spacing:-11.088000pt;}
.ws7_c03270{word-spacing:-11.075328pt;}
.ws4_c03270{word-spacing:-10.344576pt;}
.ws2_c03270{word-spacing:-10.015104pt;}
.ws6_c03270{word-spacing:-9.871488pt;}
.ws1a_c03270{word-spacing:-0.963072pt;}
.ws12_c03270{word-spacing:-0.899712pt;}
.ws10_c03270{word-spacing:-0.865920pt;}
.ws19_c03270{word-spacing:-0.639744pt;}
.ws15_c03270{word-spacing:-0.536448pt;}
.ws13_c03270{word-spacing:-0.105600pt;}
.ws16_c03270{word-spacing:-0.088704pt;}
.ws17_c03270{word-spacing:-0.080256pt;}
.ws18_c03270{word-spacing:-0.076032pt;}
.ws11_c03270{word-spacing:0.000000pt;}
.ws14_c03270{word-spacing:0.384384pt;}
.wsb_c03270{word-spacing:5.892480pt;}
.wsd_c03270{word-spacing:29.600256pt;}
.wsa_c03270{word-spacing:30.966144pt;}
.ws9_c03270{word-spacing:32.127744pt;}
.wsf_c03270{word-spacing:32.659968pt;}
.ws1_c03270{word-spacing:33.563904pt;}
.ws0_c03270{word-spacing:33.796224pt;}
.ws3_c03270{word-spacing:34.860672pt;}
.ws5_c03270{word-spacing:35.468928pt;}
.ws8_c03270{word-spacing:37.357056pt;}
._0_c03270{margin-left:-1.731840pt;}
._2_c03270{width:1.317888pt;}
._4_c03270{width:5.111040pt;}
._6_c03270{width:17.761920pt;}
._7_c03270{width:20.845440pt;}
._5_c03270{width:21.947904pt;}
._1_c03270{width:44.668800pt;}
._3_c03270{width:45.805056pt;}
.fs0_c03270{font-size:42.240000pt;}
.fs1_c03270{font-size:53.760000pt;}
.y0_c03270{bottom:0.000000pt;}
.y1a_c03270{bottom:130.665211pt;}
.y1c_c03270{bottom:165.866875pt;}
.y1b_c03270{bottom:174.507067pt;}
.y19_c03270{bottom:245.225371pt;}
.y18_c03270{bottom:317.225563pt;}
.y16_c03270{bottom:361.386427pt;}
.y12_c03270{bottom:377.386939pt;}
.y17_c03270{bottom:407.786011pt;}
.y15_c03270{bottom:437.226235pt;}
.y14_c03270{bottom:453.226747pt;}
.y11_c03270{bottom:482.666971pt;}
.y13_c03270{bottom:497.386555pt;}
.y10_c03270{bottom:513.387067pt;}
.y1d_c03270{bottom:546.027067pt;}
.yc_c03270{bottom:579.945467pt;}
.yb_c03270{bottom:593.385179pt;}
.ye_c03270{bottom:628.586875pt;}
.yd_c03270{bottom:637.227067pt;}
.ya_c03270{bottom:707.945339pt;}
.y9_c03270{bottom:779.945531pt;}
.y7_c03270{bottom:823.786427pt;}
.y3_c03270{bottom:839.786939pt;}
.y8_c03270{bottom:870.505979pt;}
.y6_c03270{bottom:899.946203pt;}
.y5_c03270{bottom:915.946715pt;}
.y2_c03270{bottom:945.386939pt;}
.y4_c03270{bottom:959.786555pt;}
.y1_c03270{bottom:975.787067pt;}
.yf_c03270{bottom:1008.747067pt;}
.h3_c03270{height:28.916250pt;}
.h1_c03270{height:37.063125pt;}
.h2_c03270{height:37.166250pt;}
.h4_c03270{height:48.581988pt;}
.h0_c03270{height:1122.666667pt;}
.w1_c03270{width:793.333333pt;}
.w0_c03270{width:793.626667pt;}
.x0_c03270{left:0.000000pt;}
.xe_c03270{left:104.000000pt;}
.x8_c03270{left:391.999872pt;}
.x4_c03270{left:396.160512pt;}
.xc_c03270{left:400.960000pt;}
.x7_c03270{left:404.799648pt;}
.x5_c03270{left:410.560128pt;}
.x1_c03270{left:411.840000pt;}
.xa_c03270{left:429.760320pt;}
.x9_c03270{left:437.439552pt;}
.x6_c03270{left:438.400512pt;}
.xd_c03270{left:450.560320pt;}
.x3_c03270{left:455.039904pt;}
.x2_c03270{left:468.159648pt;}
.xb_c03270{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03271 {
    display:none;
  }
  .loading-indicator_c03271.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03271 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03271 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03271" -> "#page-container .classname_c03271")
 */
.pf_c03271 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03271 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03271.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03271 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03271 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03271 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03271 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03271 {overflow:visible;}
  }
}
.c_c03271 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03271 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03271:after { /* webkit #35443 */
  content: '';
}
.t_c03271:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03271 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03271 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03271 { /* info for Javascript */
  display:none;
}
.l_c03271 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03271 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03271 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03271:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03271 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03271.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03271.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03271 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03271{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03271;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03271{font-family:ff1_c03271;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03271;src:url('chunks/assets/font_c87198113b5a7873a46c4359.woff2')format("woff");}.ff2_c03271{font-family:ff2_c03271;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03271;src:url('chunks/assets/font_288d5a24569fc3f6a43c9309.woff2')format("woff");}.ff3_c03271{font-family:ff3_c03271;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03271{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03271{vertical-align:0.000000px;}
.v1_c03271{vertical-align:1.439424px;}
.lsc_c03271{letter-spacing:-0.826848px;}
.ls7_c03271{letter-spacing:-0.613008px;}
.ls9_c03271{letter-spacing:-0.574992px;}
.ls13_c03271{letter-spacing:-0.289872px;}
.lsf_c03271{letter-spacing:-0.275616px;}
.lsd_c03271{letter-spacing:-0.261360px;}
.ls6_c03271{letter-spacing:-0.242352px;}
.ls4_c03271{letter-spacing:-0.118800px;}
.ls12_c03271{letter-spacing:0.000000px;}
.ls0_c03271{letter-spacing:0.006048px;}
.ls5_c03271{letter-spacing:0.128304px;}
.lsb_c03271{letter-spacing:0.508464px;}
.ls11_c03271{letter-spacing:0.514080px;}
.lse_c03271{letter-spacing:0.536976px;}
.lsa_c03271{letter-spacing:0.579744px;}
.ls10_c03271{letter-spacing:0.594000px;}
.ls8_c03271{letter-spacing:0.598752px;}
.ls2_c03271{letter-spacing:0.613008px;}
.ls3_c03271{letter-spacing:0.717552px;}
.ls1_c03271{letter-spacing:0.722304px;}
.sc__c03271{text-shadow:none;}
.sc0_c03271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03271{-webkit-text-stroke:0px transparent;}
.sc0_c03271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03271{word-spacing:-15.126048px;}
.wsb_c03271{word-spacing:-12.474000px;}
.ws9_c03271{word-spacing:-12.459744px;}
.ws12_c03271{word-spacing:-12.416976px;}
.ws4_c03271{word-spacing:-11.637648px;}
.ws5_c03271{word-spacing:-11.305008px;}
.ws2_c03271{word-spacing:-11.266992px;}
.ws1a_c03271{word-spacing:-1.083456px;}
.ws13_c03271{word-spacing:-0.974160px;}
.ws19_c03271{word-spacing:-0.719712px;}
.ws15_c03271{word-spacing:-0.118800px;}
.ws17_c03271{word-spacing:-0.099792px;}
.ws18_c03271{word-spacing:-0.085536px;}
.ws1b_c03271{word-spacing:-0.071280px;}
.ws14_c03271{word-spacing:0.000000px;}
.ws8_c03271{word-spacing:0.356400px;}
.ws16_c03271{word-spacing:0.465696px;}
.ws11_c03271{word-spacing:6.476976px;}
.ws10_c03271{word-spacing:13.101264px;}
.wsc_c03271{word-spacing:33.300288px;}
.wsa_c03271{word-spacing:34.836912px;}
.wsf_c03271{word-spacing:36.143712px;}
.ws6_c03271{word-spacing:36.742464px;}
.ws1_c03271{word-spacing:37.759392px;}
.ws0_c03271{word-spacing:38.020752px;}
.ws3_c03271{word-spacing:39.218256px;}
.wse_c03271{word-spacing:39.902544px;}
.ws7_c03271{word-spacing:42.026688px;}
._0_c03271{margin-left:-1.948320px;}
._2_c03271{width:1.482624px;}
._4_c03271{width:5.749920px;}
._6_c03271{width:14.759712px;}
._7_c03271{width:16.427664px;}
._5_c03271{width:17.839008px;}
._9_c03271{width:23.512896px;}
._a_c03271{width:24.662880px;}
._8_c03271{width:27.775440px;}
._1_c03271{width:50.252400px;}
._3_c03271{width:51.530688px;}
.fc0_c03271{color:rgb(0,0,0);}
.fs0_c03271{font-size:47.520000px;}
.fs1_c03271{font-size:60.480000px;}
.y0_c03271{bottom:0.000000px;}
.y1c_c03271{bottom:146.998362px;}
.y1e_c03271{bottom:186.600234px;}
.y1d_c03271{bottom:196.320450px;}
.y1b_c03271{bottom:260.758866px;}
.y1a_c03271{bottom:275.878542px;}
.y19_c03271{bottom:341.759082px;}
.y18_c03271{bottom:356.878758px;}
.y16_c03271{bottom:406.559730px;}
.y12_c03271{bottom:424.560306px;}
.y17_c03271{bottom:458.759262px;}
.y15_c03271{bottom:491.879514px;}
.y14_c03271{bottom:509.880090px;}
.y11_c03271{bottom:543.000342px;}
.y13_c03271{bottom:559.559874px;}
.y10_c03271{bottom:577.560450px;}
.y1f_c03271{bottom:614.280450px;}
.yc_c03271{bottom:667.559514px;}
.ye_c03271{bottom:707.160234px;}
.yd_c03271{bottom:716.880450px;}
.yb_c03271{bottom:796.439694px;}
.ya_c03271{bottom:877.439910px;}
.y7_c03271{bottom:926.759730px;}
.y3_c03271{bottom:944.760306px;}
.y9_c03271{bottom:964.559514px;}
.y8_c03271{bottom:979.319226px;}
.y6_c03271{bottom:1012.439478px;}
.y5_c03271{bottom:1030.440054px;}
.y2_c03271{bottom:1063.560306px;}
.y4_c03271{bottom:1079.759874px;}
.y1_c03271{bottom:1097.760450px;}
.yf_c03271{bottom:1134.840450px;}
.h3_c03271{height:32.530781px;}
.h1_c03271{height:41.696016px;}
.h2_c03271{height:41.812031px;}
.h4_c03271{height:54.654737px;}
.h0_c03271{height:1263.000000px;}
.w1_c03271{width:892.500000px;}
.w0_c03271{width:892.830000px;}
.x0_c03271{left:0.000000px;}
.xe_c03271{left:117.000000px;}
.x8_c03271{left:441.001044px;}
.x4_c03271{left:445.680576px;}
.xc_c03271{left:451.080000px;}
.x7_c03271{left:455.400792px;}
.x5_c03271{left:461.880144px;}
.x1_c03271{left:463.320000px;}
.xb_c03271{left:483.481548px;}
.xa_c03271{left:492.120684px;}
.x6_c03271{left:493.200576px;}
.xd_c03271{left:506.880360px;}
.x3_c03271{left:511.919892px;}
.x2_c03271{left:526.679604px;}
.x9_c03271{left:569.881224px;}
@media print{
.v0_c03271{vertical-align:0.000000pt;}
.v1_c03271{vertical-align:1.279488pt;}
.lsc_c03271{letter-spacing:-0.734976pt;}
.ls7_c03271{letter-spacing:-0.544896pt;}
.ls9_c03271{letter-spacing:-0.511104pt;}
.ls13_c03271{letter-spacing:-0.257664pt;}
.lsf_c03271{letter-spacing:-0.244992pt;}
.lsd_c03271{letter-spacing:-0.232320pt;}
.ls6_c03271{letter-spacing:-0.215424pt;}
.ls4_c03271{letter-spacing:-0.105600pt;}
.ls12_c03271{letter-spacing:0.000000pt;}
.ls0_c03271{letter-spacing:0.005376pt;}
.ls5_c03271{letter-spacing:0.114048pt;}
.lsb_c03271{letter-spacing:0.451968pt;}
.ls11_c03271{letter-spacing:0.456960pt;}
.lse_c03271{letter-spacing:0.477312pt;}
.lsa_c03271{letter-spacing:0.515328pt;}
.ls10_c03271{letter-spacing:0.528000pt;}
.ls8_c03271{letter-spacing:0.532224pt;}
.ls2_c03271{letter-spacing:0.544896pt;}
.ls3_c03271{letter-spacing:0.637824pt;}
.ls1_c03271{letter-spacing:0.642048pt;}
.wsd_c03271{word-spacing:-13.445376pt;}
.wsb_c03271{word-spacing:-11.088000pt;}
.ws9_c03271{word-spacing:-11.075328pt;}
.ws12_c03271{word-spacing:-11.037312pt;}
.ws4_c03271{word-spacing:-10.344576pt;}
.ws5_c03271{word-spacing:-10.048896pt;}
.ws2_c03271{word-spacing:-10.015104pt;}
.ws1a_c03271{word-spacing:-0.963072pt;}
.ws13_c03271{word-spacing:-0.865920pt;}
.ws19_c03271{word-spacing:-0.639744pt;}
.ws15_c03271{word-spacing:-0.105600pt;}
.ws17_c03271{word-spacing:-0.088704pt;}
.ws18_c03271{word-spacing:-0.076032pt;}
.ws1b_c03271{word-spacing:-0.063360pt;}
.ws14_c03271{word-spacing:0.000000pt;}
.ws8_c03271{word-spacing:0.316800pt;}
.ws16_c03271{word-spacing:0.413952pt;}
.ws11_c03271{word-spacing:5.757312pt;}
.ws10_c03271{word-spacing:11.645568pt;}
.wsc_c03271{word-spacing:29.600256pt;}
.wsa_c03271{word-spacing:30.966144pt;}
.wsf_c03271{word-spacing:32.127744pt;}
.ws6_c03271{word-spacing:32.659968pt;}
.ws1_c03271{word-spacing:33.563904pt;}
.ws0_c03271{word-spacing:33.796224pt;}
.ws3_c03271{word-spacing:34.860672pt;}
.wse_c03271{word-spacing:35.468928pt;}
.ws7_c03271{word-spacing:37.357056pt;}
._0_c03271{margin-left:-1.731840pt;}
._2_c03271{width:1.317888pt;}
._4_c03271{width:5.111040pt;}
._6_c03271{width:13.119744pt;}
._7_c03271{width:14.602368pt;}
._5_c03271{width:15.856896pt;}
._9_c03271{width:20.900352pt;}
._a_c03271{width:21.922560pt;}
._8_c03271{width:24.689280pt;}
._1_c03271{width:44.668800pt;}
._3_c03271{width:45.805056pt;}
.fs0_c03271{font-size:42.240000pt;}
.fs1_c03271{font-size:53.760000pt;}
.y0_c03271{bottom:0.000000pt;}
.y1c_c03271{bottom:130.665211pt;}
.y1e_c03271{bottom:165.866875pt;}
.y1d_c03271{bottom:174.507067pt;}
.y1b_c03271{bottom:231.785659pt;}
.y1a_c03271{bottom:245.225371pt;}
.y19_c03271{bottom:303.785851pt;}
.y18_c03271{bottom:317.225563pt;}
.y16_c03271{bottom:361.386427pt;}
.y12_c03271{bottom:377.386939pt;}
.y17_c03271{bottom:407.786011pt;}
.y15_c03271{bottom:437.226235pt;}
.y14_c03271{bottom:453.226747pt;}
.y11_c03271{bottom:482.666971pt;}
.y13_c03271{bottom:497.386555pt;}
.y10_c03271{bottom:513.387067pt;}
.y1f_c03271{bottom:546.027067pt;}
.yc_c03271{bottom:593.386235pt;}
.ye_c03271{bottom:628.586875pt;}
.yd_c03271{bottom:637.227067pt;}
.yb_c03271{bottom:707.946395pt;}
.ya_c03271{bottom:779.946587pt;}
.y7_c03271{bottom:823.786427pt;}
.y3_c03271{bottom:839.786939pt;}
.y9_c03271{bottom:857.386235pt;}
.y8_c03271{bottom:870.505979pt;}
.y6_c03271{bottom:899.946203pt;}
.y5_c03271{bottom:915.946715pt;}
.y2_c03271{bottom:945.386939pt;}
.y4_c03271{bottom:959.786555pt;}
.y1_c03271{bottom:975.787067pt;}
.yf_c03271{bottom:1008.747067pt;}
.h3_c03271{height:28.916250pt;}
.h1_c03271{height:37.063125pt;}
.h2_c03271{height:37.166250pt;}
.h4_c03271{height:48.581988pt;}
.h0_c03271{height:1122.666667pt;}
.w1_c03271{width:793.333333pt;}
.w0_c03271{width:793.626667pt;}
.x0_c03271{left:0.000000pt;}
.xe_c03271{left:104.000000pt;}
.x8_c03271{left:392.000928pt;}
.x4_c03271{left:396.160512pt;}
.xc_c03271{left:400.960000pt;}
.x7_c03271{left:404.800704pt;}
.x5_c03271{left:410.560128pt;}
.x1_c03271{left:411.840000pt;}
.xb_c03271{left:429.761376pt;}
.xa_c03271{left:437.440608pt;}
.x6_c03271{left:438.400512pt;}
.xd_c03271{left:450.560320pt;}
.x3_c03271{left:455.039904pt;}
.x2_c03271{left:468.159648pt;}
.x9_c03271{left:506.561088pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03272 {
    display:none;
  }
  .loading-indicator_c03272.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03272 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03272 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03272" -> "#page-container .classname_c03272")
 */
.pf_c03272 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03272 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03272.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03272 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03272 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03272 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03272 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03272 {overflow:visible;}
  }
}
.c_c03272 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03272 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03272:after { /* webkit #35443 */
  content: '';
}
.t_c03272:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03272 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03272 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03272 { /* info for Javascript */
  display:none;
}
.l_c03272 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03272 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03272 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03272:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03272 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03272.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03272.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03272 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03272{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03272;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03272{font-family:ff1_c03272;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03272;src:url('chunks/assets/font_e07b76688c0e6f1d2c440500.woff2')format("woff");}.ff2_c03272{font-family:ff2_c03272;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03272;src:url('chunks/assets/font_288d5a24569fc3f6a43c9309.woff2')format("woff");}.ff3_c03272{font-family:ff3_c03272;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03272{vertical-align:0.000000px;}
.v2_c03272{vertical-align:1.439424px;}
.v1_c03272{vertical-align:33.121440px;}
.ls14_c03272{letter-spacing:-0.722304px;}
.ls8_c03272{letter-spacing:-0.613008px;}
.lsa_c03272{letter-spacing:-0.574992px;}
.lsf_c03272{letter-spacing:-0.275616px;}
.lsd_c03272{letter-spacing:-0.261360px;}
.ls7_c03272{letter-spacing:-0.242352px;}
.ls5_c03272{letter-spacing:-0.118800px;}
.ls13_c03272{letter-spacing:0.000000px;}
.ls2_c03272{letter-spacing:0.006048px;}
.ls11_c03272{letter-spacing:0.061776px;}
.ls6_c03272{letter-spacing:0.128304px;}
.lsc_c03272{letter-spacing:0.508464px;}
.ls12_c03272{letter-spacing:0.514080px;}
.lse_c03272{letter-spacing:0.536976px;}
.lsb_c03272{letter-spacing:0.579744px;}
.ls10_c03272{letter-spacing:0.594000px;}
.ls9_c03272{letter-spacing:0.598752px;}
.ls4_c03272{letter-spacing:0.613008px;}
.ls1_c03272{letter-spacing:0.651024px;}
.ls0_c03272{letter-spacing:0.717552px;}
.ls3_c03272{letter-spacing:0.722304px;}
.sc__c03272{text-shadow:none;}
.sc0_c03272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03272{-webkit-text-stroke:0px transparent;}
.sc0_c03272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03272{word-spacing:-15.126048px;}
.wsf_c03272{word-spacing:-12.474000px;}
.ws6_c03272{word-spacing:-12.459744px;}
.wsa_c03272{word-spacing:-12.416976px;}
.ws4_c03272{word-spacing:-11.637648px;}
.ws2_c03272{word-spacing:-11.266992px;}
.ws14_c03272{word-spacing:-1.083456px;}
.ws13_c03272{word-spacing:-1.078704px;}
.ws15_c03272{word-spacing:-1.012176px;}
.ws10_c03272{word-spacing:-0.974160px;}
.ws18_c03272{word-spacing:-0.719712px;}
.ws12_c03272{word-spacing:-0.118800px;}
.ws16_c03272{word-spacing:-0.099792px;}
.ws17_c03272{word-spacing:-0.085536px;}
.ws11_c03272{word-spacing:0.000000px;}
.ws19_c03272{word-spacing:0.361152px;}
.ws9_c03272{word-spacing:9.960192px;}
.wsc_c03272{word-spacing:12.117600px;}
.wsb_c03272{word-spacing:30.298752px;}
.wsd_c03272{word-spacing:33.300288px;}
.ws8_c03272{word-spacing:36.143712px;}
.ws1_c03272{word-spacing:37.759392px;}
.ws0_c03272{word-spacing:38.020752px;}
.ws3_c03272{word-spacing:39.218256px;}
.ws5_c03272{word-spacing:39.902544px;}
.ws7_c03272{word-spacing:42.026688px;}
._9_c03272{margin-left:-3.079296px;}
._0_c03272{margin-left:-1.948320px;}
._2_c03272{width:1.482624px;}
._4_c03272{width:5.749920px;}
._a_c03272{width:6.880896px;}
._6_c03272{width:23.356080px;}
._5_c03272{width:24.501312px;}
._8_c03272{width:25.798608px;}
._7_c03272{width:28.074816px;}
._1_c03272{width:50.252400px;}
._3_c03272{width:51.530688px;}
.fc0_c03272{color:rgb(0,0,0);}
.fs0_c03272{font-size:47.520000px;}
.fs1_c03272{font-size:60.480000px;}
.y0_c03272{bottom:0.000000px;}
.y1b_c03272{bottom:146.998362px;}
.y1d_c03272{bottom:186.600234px;}
.y1c_c03272{bottom:196.320450px;}
.y1a_c03272{bottom:275.878542px;}
.y19_c03272{bottom:356.878758px;}
.y17_c03272{bottom:406.559730px;}
.y13_c03272{bottom:424.560306px;}
.y18_c03272{bottom:458.759262px;}
.y16_c03272{bottom:491.879514px;}
.y15_c03272{bottom:509.880090px;}
.y12_c03272{bottom:543.000342px;}
.y14_c03272{bottom:559.559874px;}
.y11_c03272{bottom:577.560450px;}
.y1e_c03272{bottom:614.280450px;}
.yc_c03272{bottom:667.559514px;}
.yf_c03272{bottom:700.320918px;}
.ye_c03272{bottom:707.160234px;}
.yd_c03272{bottom:716.880450px;}
.yb_c03272{bottom:796.439694px;}
.ya_c03272{bottom:862.319046px;}
.y9_c03272{bottom:877.438722px;}
.y7_c03272{bottom:926.759730px;}
.y3_c03272{bottom:944.760306px;}
.y8_c03272{bottom:979.319226px;}
.y6_c03272{bottom:1012.439478px;}
.y5_c03272{bottom:1030.440054px;}
.y2_c03272{bottom:1063.560306px;}
.y4_c03272{bottom:1079.759874px;}
.y1_c03272{bottom:1097.760450px;}
.y10_c03272{bottom:1134.840450px;}
.h3_c03272{height:32.530781px;}
.h1_c03272{height:41.696016px;}
.h2_c03272{height:41.812031px;}
.h5_c03272{height:54.654737px;}
.h4_c03272{height:74.817456px;}
.h0_c03272{height:1263.000000px;}
.w1_c03272{width:892.500000px;}
.w0_c03272{width:892.830000px;}
.x0_c03272{left:0.000000px;}
.xe_c03272{left:117.000000px;}
.x8_c03272{left:440.999856px;}
.x4_c03272{left:445.680576px;}
.xc_c03272{left:451.080000px;}
.x7_c03272{left:455.399604px;}
.x5_c03272{left:461.880144px;}
.x1_c03272{left:463.320000px;}
.xb_c03272{left:483.480360px;}
.x9_c03272{left:492.119496px;}
.x6_c03272{left:493.200576px;}
.xd_c03272{left:506.880360px;}
.x3_c03272{left:511.919892px;}
.x2_c03272{left:526.679604px;}
.xa_c03272{left:569.880036px;}
@media print{
.v0_c03272{vertical-align:0.000000pt;}
.v2_c03272{vertical-align:1.279488pt;}
.v1_c03272{vertical-align:29.441280pt;}
.ls14_c03272{letter-spacing:-0.642048pt;}
.ls8_c03272{letter-spacing:-0.544896pt;}
.lsa_c03272{letter-spacing:-0.511104pt;}
.lsf_c03272{letter-spacing:-0.244992pt;}
.lsd_c03272{letter-spacing:-0.232320pt;}
.ls7_c03272{letter-spacing:-0.215424pt;}
.ls5_c03272{letter-spacing:-0.105600pt;}
.ls13_c03272{letter-spacing:0.000000pt;}
.ls2_c03272{letter-spacing:0.005376pt;}
.ls11_c03272{letter-spacing:0.054912pt;}
.ls6_c03272{letter-spacing:0.114048pt;}
.lsc_c03272{letter-spacing:0.451968pt;}
.ls12_c03272{letter-spacing:0.456960pt;}
.lse_c03272{letter-spacing:0.477312pt;}
.lsb_c03272{letter-spacing:0.515328pt;}
.ls10_c03272{letter-spacing:0.528000pt;}
.ls9_c03272{letter-spacing:0.532224pt;}
.ls4_c03272{letter-spacing:0.544896pt;}
.ls1_c03272{letter-spacing:0.578688pt;}
.ls0_c03272{letter-spacing:0.637824pt;}
.ls3_c03272{letter-spacing:0.642048pt;}
.wse_c03272{word-spacing:-13.445376pt;}
.wsf_c03272{word-spacing:-11.088000pt;}
.ws6_c03272{word-spacing:-11.075328pt;}
.wsa_c03272{word-spacing:-11.037312pt;}
.ws4_c03272{word-spacing:-10.344576pt;}
.ws2_c03272{word-spacing:-10.015104pt;}
.ws14_c03272{word-spacing:-0.963072pt;}
.ws13_c03272{word-spacing:-0.958848pt;}
.ws15_c03272{word-spacing:-0.899712pt;}
.ws10_c03272{word-spacing:-0.865920pt;}
.ws18_c03272{word-spacing:-0.639744pt;}
.ws12_c03272{word-spacing:-0.105600pt;}
.ws16_c03272{word-spacing:-0.088704pt;}
.ws17_c03272{word-spacing:-0.076032pt;}
.ws11_c03272{word-spacing:0.000000pt;}
.ws19_c03272{word-spacing:0.321024pt;}
.ws9_c03272{word-spacing:8.853504pt;}
.wsc_c03272{word-spacing:10.771200pt;}
.wsb_c03272{word-spacing:26.932224pt;}
.wsd_c03272{word-spacing:29.600256pt;}
.ws8_c03272{word-spacing:32.127744pt;}
.ws1_c03272{word-spacing:33.563904pt;}
.ws0_c03272{word-spacing:33.796224pt;}
.ws3_c03272{word-spacing:34.860672pt;}
.ws5_c03272{word-spacing:35.468928pt;}
.ws7_c03272{word-spacing:37.357056pt;}
._9_c03272{margin-left:-2.737152pt;}
._0_c03272{margin-left:-1.731840pt;}
._2_c03272{width:1.317888pt;}
._4_c03272{width:5.111040pt;}
._a_c03272{width:6.116352pt;}
._6_c03272{width:20.760960pt;}
._5_c03272{width:21.778944pt;}
._8_c03272{width:22.932096pt;}
._7_c03272{width:24.955392pt;}
._1_c03272{width:44.668800pt;}
._3_c03272{width:45.805056pt;}
.fs0_c03272{font-size:42.240000pt;}
.fs1_c03272{font-size:53.760000pt;}
.y0_c03272{bottom:0.000000pt;}
.y1b_c03272{bottom:130.665211pt;}
.y1d_c03272{bottom:165.866875pt;}
.y1c_c03272{bottom:174.507067pt;}
.y1a_c03272{bottom:245.225371pt;}
.y19_c03272{bottom:317.225563pt;}
.y17_c03272{bottom:361.386427pt;}
.y13_c03272{bottom:377.386939pt;}
.y18_c03272{bottom:407.786011pt;}
.y16_c03272{bottom:437.226235pt;}
.y15_c03272{bottom:453.226747pt;}
.y12_c03272{bottom:482.666971pt;}
.y14_c03272{bottom:497.386555pt;}
.y11_c03272{bottom:513.387067pt;}
.y1e_c03272{bottom:546.027067pt;}
.yc_c03272{bottom:593.386235pt;}
.yf_c03272{bottom:622.507483pt;}
.ye_c03272{bottom:628.586875pt;}
.yd_c03272{bottom:637.227067pt;}
.yb_c03272{bottom:707.946395pt;}
.ya_c03272{bottom:766.505819pt;}
.y9_c03272{bottom:779.945531pt;}
.y7_c03272{bottom:823.786427pt;}
.y3_c03272{bottom:839.786939pt;}
.y8_c03272{bottom:870.505979pt;}
.y6_c03272{bottom:899.946203pt;}
.y5_c03272{bottom:915.946715pt;}
.y2_c03272{bottom:945.386939pt;}
.y4_c03272{bottom:959.786555pt;}
.y1_c03272{bottom:975.787067pt;}
.y10_c03272{bottom:1008.747067pt;}
.h3_c03272{height:28.916250pt;}
.h1_c03272{height:37.063125pt;}
.h2_c03272{height:37.166250pt;}
.h5_c03272{height:48.581988pt;}
.h4_c03272{height:66.504405pt;}
.h0_c03272{height:1122.666667pt;}
.w1_c03272{width:793.333333pt;}
.w0_c03272{width:793.626667pt;}
.x0_c03272{left:0.000000pt;}
.xe_c03272{left:104.000000pt;}
.x8_c03272{left:391.999872pt;}
.x4_c03272{left:396.160512pt;}
.xc_c03272{left:400.960000pt;}
.x7_c03272{left:404.799648pt;}
.x5_c03272{left:410.560128pt;}
.x1_c03272{left:411.840000pt;}
.xb_c03272{left:429.760320pt;}
.x9_c03272{left:437.439552pt;}
.x6_c03272{left:438.400512pt;}
.xd_c03272{left:450.560320pt;}
.x3_c03272{left:455.039904pt;}
.x2_c03272{left:468.159648pt;}
.xa_c03272{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03273 {
    display:none;
  }
  .loading-indicator_c03273.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03273 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03273 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03273" -> "#page-container .classname_c03273")
 */
.pf_c03273 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03273 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03273.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03273 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03273 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03273 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03273 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03273 {overflow:visible;}
  }
}
.c_c03273 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03273 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03273:after { /* webkit #35443 */
  content: '';
}
.t_c03273:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03273 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03273 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03273 { /* info for Javascript */
  display:none;
}
.l_c03273 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03273 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03273 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03273:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03273 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03273.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03273.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03273 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03273{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03273;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03273{font-family:ff1_c03273;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03273;src:url('chunks/assets/font_9717a98162a42842c033b52a.woff2')format("woff");}.ff2_c03273{font-family:ff2_c03273;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03273;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03273{font-family:ff3_c03273;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03273{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03273{vertical-align:0.000000px;}
.v1_c03273{vertical-align:1.439424px;}
.lsc_c03273{letter-spacing:-0.793584px;}
.ls10_c03273{letter-spacing:-0.736560px;}
.ls7_c03273{letter-spacing:-0.613008px;}
.ls9_c03273{letter-spacing:-0.574992px;}
.ls11_c03273{letter-spacing:-0.270864px;}
.lse_c03273{letter-spacing:-0.261360px;}
.ls6_c03273{letter-spacing:-0.242352px;}
.ls4_c03273{letter-spacing:-0.118800px;}
.ls14_c03273{letter-spacing:0.000000px;}
.ls1_c03273{letter-spacing:0.006048px;}
.ls5_c03273{letter-spacing:0.128304px;}
.lsb_c03273{letter-spacing:0.508464px;}
.ls13_c03273{letter-spacing:0.514080px;}
.lsf_c03273{letter-spacing:0.536976px;}
.lsa_c03273{letter-spacing:0.579744px;}
.ls12_c03273{letter-spacing:0.594000px;}
.ls8_c03273{letter-spacing:0.598752px;}
.ls2_c03273{letter-spacing:0.613008px;}
.lsd_c03273{letter-spacing:0.651024px;}
.ls3_c03273{letter-spacing:0.717552px;}
.ls0_c03273{letter-spacing:0.722304px;}
.sc__c03273{text-shadow:none;}
.sc0_c03273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03273{-webkit-text-stroke:0px transparent;}
.sc0_c03273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03273{word-spacing:-15.126048px;}
.wsb_c03273{word-spacing:-12.474000px;}
.ws6_c03273{word-spacing:-12.459744px;}
.ws4_c03273{word-spacing:-11.637648px;}
.ws2_c03273{word-spacing:-11.266992px;}
.ws11_c03273{word-spacing:-1.083456px;}
.ws13_c03273{word-spacing:-1.012176px;}
.wse_c03273{word-spacing:-0.974160px;}
.ws17_c03273{word-spacing:-0.719712px;}
.ws10_c03273{word-spacing:-0.118800px;}
.ws14_c03273{word-spacing:-0.099792px;}
.ws15_c03273{word-spacing:-0.090288px;}
.ws16_c03273{word-spacing:-0.085536px;}
.wsf_c03273{word-spacing:0.000000px;}
.ws12_c03273{word-spacing:0.432432px;}
.wsa_c03273{word-spacing:6.629040px;}
.wsc_c03273{word-spacing:33.300288px;}
.ws9_c03273{word-spacing:34.836912px;}
.ws8_c03273{word-spacing:36.143712px;}
.ws1_c03273{word-spacing:37.759392px;}
.ws0_c03273{word-spacing:38.020752px;}
.ws3_c03273{word-spacing:39.218256px;}
.ws5_c03273{word-spacing:39.902544px;}
.ws7_c03273{word-spacing:42.026688px;}
._0_c03273{margin-left:-1.948320px;}
._2_c03273{width:1.482624px;}
._4_c03273{width:5.749920px;}
._6_c03273{width:19.982160px;}
._7_c03273{width:23.451120px;}
._5_c03273{width:24.691392px;}
._1_c03273{width:50.252400px;}
._3_c03273{width:51.530688px;}
.fc0_c03273{color:rgb(0,0,0);}
.fs0_c03273{font-size:47.520000px;}
.fs1_c03273{font-size:60.480000px;}
.y0_c03273{bottom:0.000000px;}
.y1b_c03273{bottom:131.878686px;}
.y1a_c03273{bottom:146.998362px;}
.y1d_c03273{bottom:186.600234px;}
.y1c_c03273{bottom:196.320450px;}
.y19_c03273{bottom:275.878542px;}
.y18_c03273{bottom:356.878758px;}
.y16_c03273{bottom:406.559730px;}
.y12_c03273{bottom:424.560306px;}
.y17_c03273{bottom:458.759262px;}
.y15_c03273{bottom:491.879514px;}
.y14_c03273{bottom:509.880090px;}
.y11_c03273{bottom:543.000342px;}
.y13_c03273{bottom:559.559874px;}
.y10_c03273{bottom:577.560450px;}
.y1e_c03273{bottom:614.280450px;}
.yc_c03273{bottom:652.438650px;}
.yb_c03273{bottom:667.558326px;}
.ye_c03273{bottom:707.160234px;}
.yd_c03273{bottom:716.880450px;}
.ya_c03273{bottom:796.438506px;}
.y9_c03273{bottom:877.438722px;}
.y7_c03273{bottom:926.759730px;}
.y3_c03273{bottom:944.760306px;}
.y8_c03273{bottom:979.319226px;}
.y6_c03273{bottom:1012.439478px;}
.y5_c03273{bottom:1030.440054px;}
.y2_c03273{bottom:1063.560306px;}
.y4_c03273{bottom:1079.759874px;}
.y1_c03273{bottom:1097.760450px;}
.yf_c03273{bottom:1134.840450px;}
.h3_c03273{height:32.530781px;}
.h1_c03273{height:41.696016px;}
.h2_c03273{height:41.812031px;}
.h4_c03273{height:54.654737px;}
.h0_c03273{height:1263.000000px;}
.w1_c03273{width:892.500000px;}
.w0_c03273{width:892.830000px;}
.x0_c03273{left:0.000000px;}
.xe_c03273{left:117.000000px;}
.x8_c03273{left:440.999856px;}
.x4_c03273{left:445.680576px;}
.xc_c03273{left:451.080000px;}
.x7_c03273{left:455.399604px;}
.x5_c03273{left:461.880144px;}
.x1_c03273{left:463.320000px;}
.xa_c03273{left:483.480360px;}
.x9_c03273{left:492.119496px;}
.x6_c03273{left:493.200576px;}
.xd_c03273{left:506.880360px;}
.x3_c03273{left:511.919892px;}
.x2_c03273{left:526.679604px;}
.xb_c03273{left:569.880036px;}
@media print{
.v0_c03273{vertical-align:0.000000pt;}
.v1_c03273{vertical-align:1.279488pt;}
.lsc_c03273{letter-spacing:-0.705408pt;}
.ls10_c03273{letter-spacing:-0.654720pt;}
.ls7_c03273{letter-spacing:-0.544896pt;}
.ls9_c03273{letter-spacing:-0.511104pt;}
.ls11_c03273{letter-spacing:-0.240768pt;}
.lse_c03273{letter-spacing:-0.232320pt;}
.ls6_c03273{letter-spacing:-0.215424pt;}
.ls4_c03273{letter-spacing:-0.105600pt;}
.ls14_c03273{letter-spacing:0.000000pt;}
.ls1_c03273{letter-spacing:0.005376pt;}
.ls5_c03273{letter-spacing:0.114048pt;}
.lsb_c03273{letter-spacing:0.451968pt;}
.ls13_c03273{letter-spacing:0.456960pt;}
.lsf_c03273{letter-spacing:0.477312pt;}
.lsa_c03273{letter-spacing:0.515328pt;}
.ls12_c03273{letter-spacing:0.528000pt;}
.ls8_c03273{letter-spacing:0.532224pt;}
.ls2_c03273{letter-spacing:0.544896pt;}
.lsd_c03273{letter-spacing:0.578688pt;}
.ls3_c03273{letter-spacing:0.637824pt;}
.ls0_c03273{letter-spacing:0.642048pt;}
.wsd_c03273{word-spacing:-13.445376pt;}
.wsb_c03273{word-spacing:-11.088000pt;}
.ws6_c03273{word-spacing:-11.075328pt;}
.ws4_c03273{word-spacing:-10.344576pt;}
.ws2_c03273{word-spacing:-10.015104pt;}
.ws11_c03273{word-spacing:-0.963072pt;}
.ws13_c03273{word-spacing:-0.899712pt;}
.wse_c03273{word-spacing:-0.865920pt;}
.ws17_c03273{word-spacing:-0.639744pt;}
.ws10_c03273{word-spacing:-0.105600pt;}
.ws14_c03273{word-spacing:-0.088704pt;}
.ws15_c03273{word-spacing:-0.080256pt;}
.ws16_c03273{word-spacing:-0.076032pt;}
.wsf_c03273{word-spacing:0.000000pt;}
.ws12_c03273{word-spacing:0.384384pt;}
.wsa_c03273{word-spacing:5.892480pt;}
.wsc_c03273{word-spacing:29.600256pt;}
.ws9_c03273{word-spacing:30.966144pt;}
.ws8_c03273{word-spacing:32.127744pt;}
.ws1_c03273{word-spacing:33.563904pt;}
.ws0_c03273{word-spacing:33.796224pt;}
.ws3_c03273{word-spacing:34.860672pt;}
.ws5_c03273{word-spacing:35.468928pt;}
.ws7_c03273{word-spacing:37.357056pt;}
._0_c03273{margin-left:-1.731840pt;}
._2_c03273{width:1.317888pt;}
._4_c03273{width:5.111040pt;}
._6_c03273{width:17.761920pt;}
._7_c03273{width:20.845440pt;}
._5_c03273{width:21.947904pt;}
._1_c03273{width:44.668800pt;}
._3_c03273{width:45.805056pt;}
.fs0_c03273{font-size:42.240000pt;}
.fs1_c03273{font-size:53.760000pt;}
.y0_c03273{bottom:0.000000pt;}
.y1b_c03273{bottom:117.225499pt;}
.y1a_c03273{bottom:130.665211pt;}
.y1d_c03273{bottom:165.866875pt;}
.y1c_c03273{bottom:174.507067pt;}
.y19_c03273{bottom:245.225371pt;}
.y18_c03273{bottom:317.225563pt;}
.y16_c03273{bottom:361.386427pt;}
.y12_c03273{bottom:377.386939pt;}
.y17_c03273{bottom:407.786011pt;}
.y15_c03273{bottom:437.226235pt;}
.y14_c03273{bottom:453.226747pt;}
.y11_c03273{bottom:482.666971pt;}
.y13_c03273{bottom:497.386555pt;}
.y10_c03273{bottom:513.387067pt;}
.y1e_c03273{bottom:546.027067pt;}
.yc_c03273{bottom:579.945467pt;}
.yb_c03273{bottom:593.385179pt;}
.ye_c03273{bottom:628.586875pt;}
.yd_c03273{bottom:637.227067pt;}
.ya_c03273{bottom:707.945339pt;}
.y9_c03273{bottom:779.945531pt;}
.y7_c03273{bottom:823.786427pt;}
.y3_c03273{bottom:839.786939pt;}
.y8_c03273{bottom:870.505979pt;}
.y6_c03273{bottom:899.946203pt;}
.y5_c03273{bottom:915.946715pt;}
.y2_c03273{bottom:945.386939pt;}
.y4_c03273{bottom:959.786555pt;}
.y1_c03273{bottom:975.787067pt;}
.yf_c03273{bottom:1008.747067pt;}
.h3_c03273{height:28.916250pt;}
.h1_c03273{height:37.063125pt;}
.h2_c03273{height:37.166250pt;}
.h4_c03273{height:48.581988pt;}
.h0_c03273{height:1122.666667pt;}
.w1_c03273{width:793.333333pt;}
.w0_c03273{width:793.626667pt;}
.x0_c03273{left:0.000000pt;}
.xe_c03273{left:104.000000pt;}
.x8_c03273{left:391.999872pt;}
.x4_c03273{left:396.160512pt;}
.xc_c03273{left:400.960000pt;}
.x7_c03273{left:404.799648pt;}
.x5_c03273{left:410.560128pt;}
.x1_c03273{left:411.840000pt;}
.xa_c03273{left:429.760320pt;}
.x9_c03273{left:437.439552pt;}
.x6_c03273{left:438.400512pt;}
.xd_c03273{left:450.560320pt;}
.x3_c03273{left:455.039904pt;}
.x2_c03273{left:468.159648pt;}
.xb_c03273{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03274 {
    display:none;
  }
  .loading-indicator_c03274.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03274 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03274 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03274" -> "#page-container .classname_c03274")
 */
.pf_c03274 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03274 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03274.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03274 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03274 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03274 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03274 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03274 {overflow:visible;}
  }
}
.c_c03274 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03274 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03274:after { /* webkit #35443 */
  content: '';
}
.t_c03274:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03274 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03274 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03274 { /* info for Javascript */
  display:none;
}
.l_c03274 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03274 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03274 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03274:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03274 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03274.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03274.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03274 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03274{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03274;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03274{font-family:ff1_c03274;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03274;src:url('chunks/assets/font_19da0607fb2d800d3387b37a.woff2')format("woff");}.ff2_c03274{font-family:ff2_c03274;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03274;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03274{font-family:ff3_c03274;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03274{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03274{vertical-align:0.000000px;}
.v1_c03274{vertical-align:1.439424px;}
.ls15_c03274{letter-spacing:-0.736560px;}
.ls7_c03274{letter-spacing:-0.613008px;}
.ls9_c03274{letter-spacing:-0.574992px;}
.lse_c03274{letter-spacing:-0.380160px;}
.ls14_c03274{letter-spacing:-0.304128px;}
.ls10_c03274{letter-spacing:-0.275616px;}
.ls16_c03274{letter-spacing:-0.270864px;}
.lsd_c03274{letter-spacing:-0.261360px;}
.ls6_c03274{letter-spacing:-0.242352px;}
.ls4_c03274{letter-spacing:-0.118800px;}
.ls13_c03274{letter-spacing:0.000000px;}
.ls1_c03274{letter-spacing:0.006048px;}
.ls5_c03274{letter-spacing:0.128304px;}
.lsc_c03274{letter-spacing:0.508464px;}
.ls12_c03274{letter-spacing:0.514080px;}
.lsf_c03274{letter-spacing:0.536976px;}
.lsb_c03274{letter-spacing:0.560736px;}
.lsa_c03274{letter-spacing:0.579744px;}
.ls11_c03274{letter-spacing:0.594000px;}
.ls8_c03274{letter-spacing:0.598752px;}
.ls2_c03274{letter-spacing:0.613008px;}
.ls3_c03274{letter-spacing:0.717552px;}
.ls0_c03274{letter-spacing:0.722304px;}
.sc__c03274{text-shadow:none;}
.sc0_c03274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03274{-webkit-text-stroke:0px transparent;}
.sc0_c03274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03274{word-spacing:-15.126048px;}
.wsc_c03274{word-spacing:-12.474000px;}
.wsf_c03274{word-spacing:-12.459744px;}
.wsb_c03274{word-spacing:-12.416976px;}
.ws8_c03274{word-spacing:-12.388464px;}
.ws4_c03274{word-spacing:-11.637648px;}
.ws2_c03274{word-spacing:-11.266992px;}
.ws15_c03274{word-spacing:-1.083456px;}
.ws12_c03274{word-spacing:-0.974160px;}
.ws19_c03274{word-spacing:-0.719712px;}
.ws14_c03274{word-spacing:-0.118800px;}
.ws16_c03274{word-spacing:-0.099792px;}
.ws1b_c03274{word-spacing:-0.090288px;}
.ws18_c03274{word-spacing:-0.085536px;}
.ws1a_c03274{word-spacing:-0.057024px;}
.ws13_c03274{word-spacing:0.000000px;}
.ws17_c03274{word-spacing:0.019008px;}
.ws7_c03274{word-spacing:3.345408px;}
.ws11_c03274{word-spacing:6.629040px;}
.wsd_c03274{word-spacing:33.300288px;}
.ws10_c03274{word-spacing:34.836912px;}
.wsa_c03274{word-spacing:36.143712px;}
.ws6_c03274{word-spacing:36.742464px;}
.ws1_c03274{word-spacing:37.759392px;}
.ws0_c03274{word-spacing:38.020752px;}
.ws3_c03274{word-spacing:39.218256px;}
.ws5_c03274{word-spacing:39.902544px;}
.ws9_c03274{word-spacing:42.026688px;}
._0_c03274{margin-left:-1.948320px;}
._2_c03274{width:1.482624px;}
._4_c03274{width:5.749920px;}
._5_c03274{width:17.891280px;}
._6_c03274{width:20.718720px;}
._8_c03274{width:23.180256px;}
._7_c03274{width:24.691392px;}
._1_c03274{width:50.252400px;}
._3_c03274{width:51.530688px;}
.fc0_c03274{color:rgb(0,0,0);}
.fs0_c03274{font-size:47.520000px;}
.fs1_c03274{font-size:60.480000px;}
.y0_c03274{bottom:0.000000px;}
.y1b_c03274{bottom:131.878686px;}
.y1a_c03274{bottom:146.998362px;}
.y1d_c03274{bottom:186.600234px;}
.y1c_c03274{bottom:196.320450px;}
.y19_c03274{bottom:275.878542px;}
.y18_c03274{bottom:356.878758px;}
.y16_c03274{bottom:406.559730px;}
.y12_c03274{bottom:424.560306px;}
.y17_c03274{bottom:458.759262px;}
.y15_c03274{bottom:491.879514px;}
.y14_c03274{bottom:509.880090px;}
.y11_c03274{bottom:543.000342px;}
.y13_c03274{bottom:559.559874px;}
.y10_c03274{bottom:577.560450px;}
.y1e_c03274{bottom:614.280450px;}
.yc_c03274{bottom:667.559514px;}
.ye_c03274{bottom:707.160234px;}
.yd_c03274{bottom:716.880450px;}
.yb_c03274{bottom:796.439694px;}
.ya_c03274{bottom:877.439910px;}
.y8_c03274{bottom:912.000018px;}
.y7_c03274{bottom:926.759730px;}
.y3_c03274{bottom:944.760306px;}
.y9_c03274{bottom:979.320414px;}
.y6_c03274{bottom:1012.439478px;}
.y5_c03274{bottom:1030.440054px;}
.y2_c03274{bottom:1063.560306px;}
.y4_c03274{bottom:1079.759874px;}
.y1_c03274{bottom:1097.760450px;}
.yf_c03274{bottom:1134.840450px;}
.h3_c03274{height:32.530781px;}
.h1_c03274{height:41.696016px;}
.h2_c03274{height:41.812031px;}
.h4_c03274{height:54.654737px;}
.h0_c03274{height:1263.000000px;}
.w1_c03274{width:892.500000px;}
.w0_c03274{width:892.830000px;}
.x0_c03274{left:0.000000px;}
.xe_c03274{left:117.000000px;}
.x9_c03274{left:440.999856px;}
.x4_c03274{left:445.680576px;}
.xc_c03274{left:451.080000px;}
.x7_c03274{left:455.399604px;}
.x5_c03274{left:461.880144px;}
.x1_c03274{left:463.320000px;}
.xb_c03274{left:483.480360px;}
.xa_c03274{left:492.119496px;}
.x6_c03274{left:493.200576px;}
.xd_c03274{left:506.880360px;}
.x3_c03274{left:511.919892px;}
.x2_c03274{left:526.679604px;}
.x8_c03274{left:569.880036px;}
@media print{
.v0_c03274{vertical-align:0.000000pt;}
.v1_c03274{vertical-align:1.279488pt;}
.ls15_c03274{letter-spacing:-0.654720pt;}
.ls7_c03274{letter-spacing:-0.544896pt;}
.ls9_c03274{letter-spacing:-0.511104pt;}
.lse_c03274{letter-spacing:-0.337920pt;}
.ls14_c03274{letter-spacing:-0.270336pt;}
.ls10_c03274{letter-spacing:-0.244992pt;}
.ls16_c03274{letter-spacing:-0.240768pt;}
.lsd_c03274{letter-spacing:-0.232320pt;}
.ls6_c03274{letter-spacing:-0.215424pt;}
.ls4_c03274{letter-spacing:-0.105600pt;}
.ls13_c03274{letter-spacing:0.000000pt;}
.ls1_c03274{letter-spacing:0.005376pt;}
.ls5_c03274{letter-spacing:0.114048pt;}
.lsc_c03274{letter-spacing:0.451968pt;}
.ls12_c03274{letter-spacing:0.456960pt;}
.lsf_c03274{letter-spacing:0.477312pt;}
.lsb_c03274{letter-spacing:0.498432pt;}
.lsa_c03274{letter-spacing:0.515328pt;}
.ls11_c03274{letter-spacing:0.528000pt;}
.ls8_c03274{letter-spacing:0.532224pt;}
.ls2_c03274{letter-spacing:0.544896pt;}
.ls3_c03274{letter-spacing:0.637824pt;}
.ls0_c03274{letter-spacing:0.642048pt;}
.wse_c03274{word-spacing:-13.445376pt;}
.wsc_c03274{word-spacing:-11.088000pt;}
.wsf_c03274{word-spacing:-11.075328pt;}
.wsb_c03274{word-spacing:-11.037312pt;}
.ws8_c03274{word-spacing:-11.011968pt;}
.ws4_c03274{word-spacing:-10.344576pt;}
.ws2_c03274{word-spacing:-10.015104pt;}
.ws15_c03274{word-spacing:-0.963072pt;}
.ws12_c03274{word-spacing:-0.865920pt;}
.ws19_c03274{word-spacing:-0.639744pt;}
.ws14_c03274{word-spacing:-0.105600pt;}
.ws16_c03274{word-spacing:-0.088704pt;}
.ws1b_c03274{word-spacing:-0.080256pt;}
.ws18_c03274{word-spacing:-0.076032pt;}
.ws1a_c03274{word-spacing:-0.050688pt;}
.ws13_c03274{word-spacing:0.000000pt;}
.ws17_c03274{word-spacing:0.016896pt;}
.ws7_c03274{word-spacing:2.973696pt;}
.ws11_c03274{word-spacing:5.892480pt;}
.wsd_c03274{word-spacing:29.600256pt;}
.ws10_c03274{word-spacing:30.966144pt;}
.wsa_c03274{word-spacing:32.127744pt;}
.ws6_c03274{word-spacing:32.659968pt;}
.ws1_c03274{word-spacing:33.563904pt;}
.ws0_c03274{word-spacing:33.796224pt;}
.ws3_c03274{word-spacing:34.860672pt;}
.ws5_c03274{word-spacing:35.468928pt;}
.ws9_c03274{word-spacing:37.357056pt;}
._0_c03274{margin-left:-1.731840pt;}
._2_c03274{width:1.317888pt;}
._4_c03274{width:5.111040pt;}
._5_c03274{width:15.903360pt;}
._6_c03274{width:18.416640pt;}
._8_c03274{width:20.604672pt;}
._7_c03274{width:21.947904pt;}
._1_c03274{width:44.668800pt;}
._3_c03274{width:45.805056pt;}
.fs0_c03274{font-size:42.240000pt;}
.fs1_c03274{font-size:53.760000pt;}
.y0_c03274{bottom:0.000000pt;}
.y1b_c03274{bottom:117.225499pt;}
.y1a_c03274{bottom:130.665211pt;}
.y1d_c03274{bottom:165.866875pt;}
.y1c_c03274{bottom:174.507067pt;}
.y19_c03274{bottom:245.225371pt;}
.y18_c03274{bottom:317.225563pt;}
.y16_c03274{bottom:361.386427pt;}
.y12_c03274{bottom:377.386939pt;}
.y17_c03274{bottom:407.786011pt;}
.y15_c03274{bottom:437.226235pt;}
.y14_c03274{bottom:453.226747pt;}
.y11_c03274{bottom:482.666971pt;}
.y13_c03274{bottom:497.386555pt;}
.y10_c03274{bottom:513.387067pt;}
.y1e_c03274{bottom:546.027067pt;}
.yc_c03274{bottom:593.386235pt;}
.ye_c03274{bottom:628.586875pt;}
.yd_c03274{bottom:637.227067pt;}
.yb_c03274{bottom:707.946395pt;}
.ya_c03274{bottom:779.946587pt;}
.y8_c03274{bottom:810.666683pt;}
.y7_c03274{bottom:823.786427pt;}
.y3_c03274{bottom:839.786939pt;}
.y9_c03274{bottom:870.507035pt;}
.y6_c03274{bottom:899.946203pt;}
.y5_c03274{bottom:915.946715pt;}
.y2_c03274{bottom:945.386939pt;}
.y4_c03274{bottom:959.786555pt;}
.y1_c03274{bottom:975.787067pt;}
.yf_c03274{bottom:1008.747067pt;}
.h3_c03274{height:28.916250pt;}
.h1_c03274{height:37.063125pt;}
.h2_c03274{height:37.166250pt;}
.h4_c03274{height:48.581988pt;}
.h0_c03274{height:1122.666667pt;}
.w1_c03274{width:793.333333pt;}
.w0_c03274{width:793.626667pt;}
.x0_c03274{left:0.000000pt;}
.xe_c03274{left:104.000000pt;}
.x9_c03274{left:391.999872pt;}
.x4_c03274{left:396.160512pt;}
.xc_c03274{left:400.960000pt;}
.x7_c03274{left:404.799648pt;}
.x5_c03274{left:410.560128pt;}
.x1_c03274{left:411.840000pt;}
.xb_c03274{left:429.760320pt;}
.xa_c03274{left:437.439552pt;}
.x6_c03274{left:438.400512pt;}
.xd_c03274{left:450.560320pt;}
.x3_c03274{left:455.039904pt;}
.x2_c03274{left:468.159648pt;}
.x8_c03274{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03275 {
    display:none;
  }
  .loading-indicator_c03275.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03275 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03275 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03275" -> "#page-container .classname_c03275")
 */
.pf_c03275 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03275 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03275 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03275 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03275 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03275 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03275 {overflow:visible;}
  }
}
.c_c03275 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03275 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03275:after { /* webkit #35443 */
  content: '';
}
.t_c03275:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03275 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03275 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03275 { /* info for Javascript */
  display:none;
}
.l_c03275 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03275 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03275 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03275:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03275 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03275.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03275 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03275{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03275;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03275{font-family:ff1_c03275;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03275;src:url('chunks/assets/font_a0f2f98a2ff05ead1947e1e3.woff2')format("woff");}.ff2_c03275{font-family:ff2_c03275;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03275;src:url('chunks/assets/font_08b0d6944a31f8be4527c75c.woff2')format("woff");}.ff3_c03275{font-family:ff3_c03275;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03275{vertical-align:0.000000px;}
.v1_c03275{vertical-align:1.439424px;}
.ls15_c03275{letter-spacing:-0.793584px;}
.ls14_c03275{letter-spacing:-0.774576px;}
.ls16_c03275{letter-spacing:-0.736560px;}
.ls8_c03275{letter-spacing:-0.613008px;}
.lsa_c03275{letter-spacing:-0.574992px;}
.ls10_c03275{letter-spacing:-0.275616px;}
.ls17_c03275{letter-spacing:-0.270864px;}
.lse_c03275{letter-spacing:-0.261360px;}
.ls7_c03275{letter-spacing:-0.242352px;}
.ls5_c03275{letter-spacing:-0.118800px;}
.ls13_c03275{letter-spacing:0.000000px;}
.ls2_c03275{letter-spacing:0.006048px;}
.ls6_c03275{letter-spacing:0.128304px;}
.lsd_c03275{letter-spacing:0.242352px;}
.lsc_c03275{letter-spacing:0.508464px;}
.ls12_c03275{letter-spacing:0.514080px;}
.lsf_c03275{letter-spacing:0.536976px;}
.lsb_c03275{letter-spacing:0.579744px;}
.ls11_c03275{letter-spacing:0.594000px;}
.ls9_c03275{letter-spacing:0.598752px;}
.ls4_c03275{letter-spacing:0.613008px;}
.ls3_c03275{letter-spacing:0.651024px;}
.ls0_c03275{letter-spacing:0.717552px;}
.ls1_c03275{letter-spacing:0.722304px;}
.sc__c03275{text-shadow:none;}
.sc0_c03275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03275{-webkit-text-stroke:0px transparent;}
.sc0_c03275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03275{word-spacing:-15.126048px;}
.wsb_c03275{word-spacing:-12.474000px;}
.wsf_c03275{word-spacing:-12.459744px;}
.wsa_c03275{word-spacing:-12.416976px;}
.ws5_c03275{word-spacing:-11.637648px;}
.ws3_c03275{word-spacing:-11.266992px;}
.wse_c03275{word-spacing:-11.105424px;}
.ws1_c03275{word-spacing:-1.810512px;}
.ws15_c03275{word-spacing:-1.083456px;}
.ws1a_c03275{word-spacing:-1.012176px;}
.ws12_c03275{word-spacing:-0.974160px;}
.ws19_c03275{word-spacing:-0.719712px;}
.ws16_c03275{word-spacing:-0.603504px;}
.ws14_c03275{word-spacing:-0.118800px;}
.ws17_c03275{word-spacing:-0.099792px;}
.ws1c_c03275{word-spacing:-0.090288px;}
.ws18_c03275{word-spacing:-0.085536px;}
.ws13_c03275{word-spacing:0.000000px;}
.ws1b_c03275{word-spacing:0.432432px;}
.ws11_c03275{word-spacing:6.629040px;}
.wsc_c03275{word-spacing:33.300288px;}
.ws10_c03275{word-spacing:34.836912px;}
.ws9_c03275{word-spacing:36.143712px;}
.ws7_c03275{word-spacing:36.742464px;}
.ws2_c03275{word-spacing:37.759392px;}
.ws0_c03275{word-spacing:38.020752px;}
.ws4_c03275{word-spacing:39.218256px;}
.ws6_c03275{word-spacing:39.902544px;}
.ws8_c03275{word-spacing:42.026688px;}
._0_c03275{margin-left:-1.948320px;}
._2_c03275{width:1.482624px;}
._4_c03275{width:5.749920px;}
._6_c03275{width:19.982160px;}
._7_c03275{width:23.451120px;}
._5_c03275{width:24.691392px;}
._1_c03275{width:50.252400px;}
._3_c03275{width:51.530688px;}
.fc0_c03275{color:rgb(0,0,0);}
.fs0_c03275{font-size:47.520000px;}
.fs1_c03275{font-size:60.480000px;}
.y0_c03275{bottom:0.000000px;}
.y1a_c03275{bottom:131.878686px;}
.y19_c03275{bottom:146.998362px;}
.y1c_c03275{bottom:186.600234px;}
.y1b_c03275{bottom:196.320450px;}
.y18_c03275{bottom:275.878542px;}
.y17_c03275{bottom:356.878758px;}
.y15_c03275{bottom:406.559730px;}
.y11_c03275{bottom:424.560306px;}
.y16_c03275{bottom:458.759262px;}
.y14_c03275{bottom:491.879514px;}
.y13_c03275{bottom:509.880090px;}
.y10_c03275{bottom:543.000342px;}
.y12_c03275{bottom:559.559874px;}
.yf_c03275{bottom:577.560450px;}
.y1d_c03275{bottom:614.280450px;}
.yb_c03275{bottom:667.558326px;}
.yd_c03275{bottom:707.160234px;}
.yc_c03275{bottom:716.880450px;}
.ya_c03275{bottom:796.438506px;}
.y9_c03275{bottom:877.438722px;}
.y7_c03275{bottom:926.759730px;}
.y3_c03275{bottom:944.760306px;}
.y8_c03275{bottom:979.319226px;}
.y6_c03275{bottom:1012.439478px;}
.y5_c03275{bottom:1030.440054px;}
.y2_c03275{bottom:1063.560306px;}
.y4_c03275{bottom:1079.759874px;}
.y1_c03275{bottom:1097.760450px;}
.ye_c03275{bottom:1134.840450px;}
.h3_c03275{height:32.530781px;}
.h1_c03275{height:41.696016px;}
.h2_c03275{height:41.812031px;}
.h4_c03275{height:54.654737px;}
.h0_c03275{height:1263.000000px;}
.w1_c03275{width:892.500000px;}
.w0_c03275{width:892.830000px;}
.x0_c03275{left:0.000000px;}
.xd_c03275{left:117.000000px;}
.x8_c03275{left:440.999856px;}
.x4_c03275{left:445.680576px;}
.xb_c03275{left:451.080000px;}
.x7_c03275{left:455.399604px;}
.x5_c03275{left:461.880144px;}
.x1_c03275{left:463.320000px;}
.xa_c03275{left:483.480360px;}
.x9_c03275{left:492.119496px;}
.x6_c03275{left:493.200576px;}
.xc_c03275{left:506.880360px;}
.x3_c03275{left:511.919892px;}
.x2_c03275{left:526.679604px;}
.xe_c03275{left:569.880036px;}
@media print{
.v0_c03275{vertical-align:0.000000pt;}
.v1_c03275{vertical-align:1.279488pt;}
.ls15_c03275{letter-spacing:-0.705408pt;}
.ls14_c03275{letter-spacing:-0.688512pt;}
.ls16_c03275{letter-spacing:-0.654720pt;}
.ls8_c03275{letter-spacing:-0.544896pt;}
.lsa_c03275{letter-spacing:-0.511104pt;}
.ls10_c03275{letter-spacing:-0.244992pt;}
.ls17_c03275{letter-spacing:-0.240768pt;}
.lse_c03275{letter-spacing:-0.232320pt;}
.ls7_c03275{letter-spacing:-0.215424pt;}
.ls5_c03275{letter-spacing:-0.105600pt;}
.ls13_c03275{letter-spacing:0.000000pt;}
.ls2_c03275{letter-spacing:0.005376pt;}
.ls6_c03275{letter-spacing:0.114048pt;}
.lsd_c03275{letter-spacing:0.215424pt;}
.lsc_c03275{letter-spacing:0.451968pt;}
.ls12_c03275{letter-spacing:0.456960pt;}
.lsf_c03275{letter-spacing:0.477312pt;}
.lsb_c03275{letter-spacing:0.515328pt;}
.ls11_c03275{letter-spacing:0.528000pt;}
.ls9_c03275{letter-spacing:0.532224pt;}
.ls4_c03275{letter-spacing:0.544896pt;}
.ls3_c03275{letter-spacing:0.578688pt;}
.ls0_c03275{letter-spacing:0.637824pt;}
.ls1_c03275{letter-spacing:0.642048pt;}
.wsd_c03275{word-spacing:-13.445376pt;}
.wsb_c03275{word-spacing:-11.088000pt;}
.wsf_c03275{word-spacing:-11.075328pt;}
.wsa_c03275{word-spacing:-11.037312pt;}
.ws5_c03275{word-spacing:-10.344576pt;}
.ws3_c03275{word-spacing:-10.015104pt;}
.wse_c03275{word-spacing:-9.871488pt;}
.ws1_c03275{word-spacing:-1.609344pt;}
.ws15_c03275{word-spacing:-0.963072pt;}
.ws1a_c03275{word-spacing:-0.899712pt;}
.ws12_c03275{word-spacing:-0.865920pt;}
.ws19_c03275{word-spacing:-0.639744pt;}
.ws16_c03275{word-spacing:-0.536448pt;}
.ws14_c03275{word-spacing:-0.105600pt;}
.ws17_c03275{word-spacing:-0.088704pt;}
.ws1c_c03275{word-spacing:-0.080256pt;}
.ws18_c03275{word-spacing:-0.076032pt;}
.ws13_c03275{word-spacing:0.000000pt;}
.ws1b_c03275{word-spacing:0.384384pt;}
.ws11_c03275{word-spacing:5.892480pt;}
.wsc_c03275{word-spacing:29.600256pt;}
.ws10_c03275{word-spacing:30.966144pt;}
.ws9_c03275{word-spacing:32.127744pt;}
.ws7_c03275{word-spacing:32.659968pt;}
.ws2_c03275{word-spacing:33.563904pt;}
.ws0_c03275{word-spacing:33.796224pt;}
.ws4_c03275{word-spacing:34.860672pt;}
.ws6_c03275{word-spacing:35.468928pt;}
.ws8_c03275{word-spacing:37.357056pt;}
._0_c03275{margin-left:-1.731840pt;}
._2_c03275{width:1.317888pt;}
._4_c03275{width:5.111040pt;}
._6_c03275{width:17.761920pt;}
._7_c03275{width:20.845440pt;}
._5_c03275{width:21.947904pt;}
._1_c03275{width:44.668800pt;}
._3_c03275{width:45.805056pt;}
.fs0_c03275{font-size:42.240000pt;}
.fs1_c03275{font-size:53.760000pt;}
.y0_c03275{bottom:0.000000pt;}
.y1a_c03275{bottom:117.225499pt;}
.y19_c03275{bottom:130.665211pt;}
.y1c_c03275{bottom:165.866875pt;}
.y1b_c03275{bottom:174.507067pt;}
.y18_c03275{bottom:245.225371pt;}
.y17_c03275{bottom:317.225563pt;}
.y15_c03275{bottom:361.386427pt;}
.y11_c03275{bottom:377.386939pt;}
.y16_c03275{bottom:407.786011pt;}
.y14_c03275{bottom:437.226235pt;}
.y13_c03275{bottom:453.226747pt;}
.y10_c03275{bottom:482.666971pt;}
.y12_c03275{bottom:497.386555pt;}
.yf_c03275{bottom:513.387067pt;}
.y1d_c03275{bottom:546.027067pt;}
.yb_c03275{bottom:593.385179pt;}
.yd_c03275{bottom:628.586875pt;}
.yc_c03275{bottom:637.227067pt;}
.ya_c03275{bottom:707.945339pt;}
.y9_c03275{bottom:779.945531pt;}
.y7_c03275{bottom:823.786427pt;}
.y3_c03275{bottom:839.786939pt;}
.y8_c03275{bottom:870.505979pt;}
.y6_c03275{bottom:899.946203pt;}
.y5_c03275{bottom:915.946715pt;}
.y2_c03275{bottom:945.386939pt;}
.y4_c03275{bottom:959.786555pt;}
.y1_c03275{bottom:975.787067pt;}
.ye_c03275{bottom:1008.747067pt;}
.h3_c03275{height:28.916250pt;}
.h1_c03275{height:37.063125pt;}
.h2_c03275{height:37.166250pt;}
.h4_c03275{height:48.581988pt;}
.h0_c03275{height:1122.666667pt;}
.w1_c03275{width:793.333333pt;}
.w0_c03275{width:793.626667pt;}
.x0_c03275{left:0.000000pt;}
.xd_c03275{left:104.000000pt;}
.x8_c03275{left:391.999872pt;}
.x4_c03275{left:396.160512pt;}
.xb_c03275{left:400.960000pt;}
.x7_c03275{left:404.799648pt;}
.x5_c03275{left:410.560128pt;}
.x1_c03275{left:411.840000pt;}
.xa_c03275{left:429.760320pt;}
.x9_c03275{left:437.439552pt;}
.x6_c03275{left:438.400512pt;}
.xc_c03275{left:450.560320pt;}
.x3_c03275{left:455.039904pt;}
.x2_c03275{left:468.159648pt;}
.xe_c03275{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03276 {
    display:none;
  }
  .loading-indicator_c03276.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03276 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03276 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03276" -> "#page-container .classname_c03276")
 */
.pf_c03276 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03276 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03276.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03276 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03276 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03276 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03276 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03276 {overflow:visible;}
  }
}
.c_c03276 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03276 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03276:after { /* webkit #35443 */
  content: '';
}
.t_c03276:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03276 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03276 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03276 { /* info for Javascript */
  display:none;
}
.l_c03276 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03276 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03276 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03276:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03276 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03276.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03276.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03276 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03276{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03276;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03276{font-family:ff1_c03276;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03276;src:url('chunks/assets/font_e920a1e0dd1dbab9b34d8adb.woff2')format("woff");}.ff2_c03276{font-family:ff2_c03276;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03276;src:url('chunks/assets/font_288d5a24569fc3f6a43c9309.woff2')format("woff");}.ff3_c03276{font-family:ff3_c03276;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03276{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03276{vertical-align:0.000000px;}
.v1_c03276{vertical-align:1.439424px;}
.ls12_c03276{letter-spacing:-0.774576px;}
.ls13_c03276{letter-spacing:-0.722304px;}
.ls7_c03276{letter-spacing:-0.613008px;}
.ls9_c03276{letter-spacing:-0.574992px;}
.lse_c03276{letter-spacing:-0.275616px;}
.lsc_c03276{letter-spacing:-0.261360px;}
.ls6_c03276{letter-spacing:-0.242352px;}
.ls4_c03276{letter-spacing:-0.118800px;}
.ls11_c03276{letter-spacing:0.000000px;}
.ls1_c03276{letter-spacing:0.006048px;}
.ls5_c03276{letter-spacing:0.128304px;}
.lsb_c03276{letter-spacing:0.508464px;}
.ls10_c03276{letter-spacing:0.514080px;}
.lsd_c03276{letter-spacing:0.536976px;}
.lsa_c03276{letter-spacing:0.579744px;}
.lsf_c03276{letter-spacing:0.594000px;}
.ls8_c03276{letter-spacing:0.598752px;}
.ls2_c03276{letter-spacing:0.613008px;}
.ls3_c03276{letter-spacing:0.717552px;}
.ls0_c03276{letter-spacing:0.722304px;}
.sc__c03276{text-shadow:none;}
.sc0_c03276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03276{-webkit-text-stroke:0px transparent;}
.sc0_c03276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03276{word-spacing:-15.126048px;}
.wsa_c03276{word-spacing:-12.474000px;}
.ws8_c03276{word-spacing:-12.459744px;}
.ws9_c03276{word-spacing:-12.416976px;}
.ws4_c03276{word-spacing:-11.637648px;}
.ws2_c03276{word-spacing:-11.266992px;}
.wsd_c03276{word-spacing:-11.105424px;}
.ws11_c03276{word-spacing:-1.083456px;}
.wse_c03276{word-spacing:-0.974160px;}
.ws14_c03276{word-spacing:-0.719712px;}
.ws10_c03276{word-spacing:-0.118800px;}
.ws12_c03276{word-spacing:-0.099792px;}
.ws13_c03276{word-spacing:-0.085536px;}
.wsf_c03276{word-spacing:0.000000px;}
.ws15_c03276{word-spacing:0.361152px;}
.wsb_c03276{word-spacing:33.300288px;}
.ws6_c03276{word-spacing:36.742464px;}
.ws1_c03276{word-spacing:37.759392px;}
.ws0_c03276{word-spacing:38.020752px;}
.ws3_c03276{word-spacing:39.218256px;}
.ws5_c03276{word-spacing:39.902544px;}
.ws7_c03276{word-spacing:42.026688px;}
._0_c03276{margin-left:-1.948320px;}
._2_c03276{width:1.482624px;}
._4_c03276{width:5.749920px;}
._1_c03276{width:50.252400px;}
._3_c03276{width:51.530688px;}
.fc0_c03276{color:rgb(0,0,0);}
.fs0_c03276{font-size:47.520000px;}
.fs1_c03276{font-size:60.480000px;}
.y0_c03276{bottom:0.000000px;}
.y19_c03276{bottom:146.998362px;}
.y1b_c03276{bottom:186.600234px;}
.y1a_c03276{bottom:196.320450px;}
.y18_c03276{bottom:275.878542px;}
.y17_c03276{bottom:356.878758px;}
.y15_c03276{bottom:406.559730px;}
.y11_c03276{bottom:424.560306px;}
.y16_c03276{bottom:458.759262px;}
.y14_c03276{bottom:491.879514px;}
.y13_c03276{bottom:509.880090px;}
.y10_c03276{bottom:543.000342px;}
.y12_c03276{bottom:559.559874px;}
.yf_c03276{bottom:577.560450px;}
.y1c_c03276{bottom:614.280450px;}
.yb_c03276{bottom:667.558326px;}
.yd_c03276{bottom:707.160234px;}
.yc_c03276{bottom:716.880450px;}
.ya_c03276{bottom:796.438506px;}
.y9_c03276{bottom:877.438722px;}
.y7_c03276{bottom:926.759730px;}
.y3_c03276{bottom:944.760306px;}
.y8_c03276{bottom:979.319226px;}
.y6_c03276{bottom:1012.439478px;}
.y5_c03276{bottom:1030.440054px;}
.y2_c03276{bottom:1063.560306px;}
.y4_c03276{bottom:1079.759874px;}
.y1_c03276{bottom:1097.760450px;}
.ye_c03276{bottom:1134.840450px;}
.h3_c03276{height:32.530781px;}
.h1_c03276{height:41.696016px;}
.h2_c03276{height:41.812031px;}
.h4_c03276{height:54.654737px;}
.h0_c03276{height:1263.000000px;}
.w1_c03276{width:892.500000px;}
.w0_c03276{width:892.830000px;}
.x0_c03276{left:0.000000px;}
.xd_c03276{left:117.000000px;}
.x8_c03276{left:440.999856px;}
.x4_c03276{left:445.680576px;}
.xb_c03276{left:451.080000px;}
.x7_c03276{left:455.399604px;}
.x5_c03276{left:461.880144px;}
.x1_c03276{left:463.320000px;}
.xa_c03276{left:483.480360px;}
.x9_c03276{left:492.119496px;}
.x6_c03276{left:493.200576px;}
.xc_c03276{left:506.880360px;}
.x3_c03276{left:511.919892px;}
.x2_c03276{left:526.679604px;}
@media print{
.v0_c03276{vertical-align:0.000000pt;}
.v1_c03276{vertical-align:1.279488pt;}
.ls12_c03276{letter-spacing:-0.688512pt;}
.ls13_c03276{letter-spacing:-0.642048pt;}
.ls7_c03276{letter-spacing:-0.544896pt;}
.ls9_c03276{letter-spacing:-0.511104pt;}
.lse_c03276{letter-spacing:-0.244992pt;}
.lsc_c03276{letter-spacing:-0.232320pt;}
.ls6_c03276{letter-spacing:-0.215424pt;}
.ls4_c03276{letter-spacing:-0.105600pt;}
.ls11_c03276{letter-spacing:0.000000pt;}
.ls1_c03276{letter-spacing:0.005376pt;}
.ls5_c03276{letter-spacing:0.114048pt;}
.lsb_c03276{letter-spacing:0.451968pt;}
.ls10_c03276{letter-spacing:0.456960pt;}
.lsd_c03276{letter-spacing:0.477312pt;}
.lsa_c03276{letter-spacing:0.515328pt;}
.lsf_c03276{letter-spacing:0.528000pt;}
.ls8_c03276{letter-spacing:0.532224pt;}
.ls2_c03276{letter-spacing:0.544896pt;}
.ls3_c03276{letter-spacing:0.637824pt;}
.ls0_c03276{letter-spacing:0.642048pt;}
.wsc_c03276{word-spacing:-13.445376pt;}
.wsa_c03276{word-spacing:-11.088000pt;}
.ws8_c03276{word-spacing:-11.075328pt;}
.ws9_c03276{word-spacing:-11.037312pt;}
.ws4_c03276{word-spacing:-10.344576pt;}
.ws2_c03276{word-spacing:-10.015104pt;}
.wsd_c03276{word-spacing:-9.871488pt;}
.ws11_c03276{word-spacing:-0.963072pt;}
.wse_c03276{word-spacing:-0.865920pt;}
.ws14_c03276{word-spacing:-0.639744pt;}
.ws10_c03276{word-spacing:-0.105600pt;}
.ws12_c03276{word-spacing:-0.088704pt;}
.ws13_c03276{word-spacing:-0.076032pt;}
.wsf_c03276{word-spacing:0.000000pt;}
.ws15_c03276{word-spacing:0.321024pt;}
.wsb_c03276{word-spacing:29.600256pt;}
.ws6_c03276{word-spacing:32.659968pt;}
.ws1_c03276{word-spacing:33.563904pt;}
.ws0_c03276{word-spacing:33.796224pt;}
.ws3_c03276{word-spacing:34.860672pt;}
.ws5_c03276{word-spacing:35.468928pt;}
.ws7_c03276{word-spacing:37.357056pt;}
._0_c03276{margin-left:-1.731840pt;}
._2_c03276{width:1.317888pt;}
._4_c03276{width:5.111040pt;}
._1_c03276{width:44.668800pt;}
._3_c03276{width:45.805056pt;}
.fs0_c03276{font-size:42.240000pt;}
.fs1_c03276{font-size:53.760000pt;}
.y0_c03276{bottom:0.000000pt;}
.y19_c03276{bottom:130.665211pt;}
.y1b_c03276{bottom:165.866875pt;}
.y1a_c03276{bottom:174.507067pt;}
.y18_c03276{bottom:245.225371pt;}
.y17_c03276{bottom:317.225563pt;}
.y15_c03276{bottom:361.386427pt;}
.y11_c03276{bottom:377.386939pt;}
.y16_c03276{bottom:407.786011pt;}
.y14_c03276{bottom:437.226235pt;}
.y13_c03276{bottom:453.226747pt;}
.y10_c03276{bottom:482.666971pt;}
.y12_c03276{bottom:497.386555pt;}
.yf_c03276{bottom:513.387067pt;}
.y1c_c03276{bottom:546.027067pt;}
.yb_c03276{bottom:593.385179pt;}
.yd_c03276{bottom:628.586875pt;}
.yc_c03276{bottom:637.227067pt;}
.ya_c03276{bottom:707.945339pt;}
.y9_c03276{bottom:779.945531pt;}
.y7_c03276{bottom:823.786427pt;}
.y3_c03276{bottom:839.786939pt;}
.y8_c03276{bottom:870.505979pt;}
.y6_c03276{bottom:899.946203pt;}
.y5_c03276{bottom:915.946715pt;}
.y2_c03276{bottom:945.386939pt;}
.y4_c03276{bottom:959.786555pt;}
.y1_c03276{bottom:975.787067pt;}
.ye_c03276{bottom:1008.747067pt;}
.h3_c03276{height:28.916250pt;}
.h1_c03276{height:37.063125pt;}
.h2_c03276{height:37.166250pt;}
.h4_c03276{height:48.581988pt;}
.h0_c03276{height:1122.666667pt;}
.w1_c03276{width:793.333333pt;}
.w0_c03276{width:793.626667pt;}
.x0_c03276{left:0.000000pt;}
.xd_c03276{left:104.000000pt;}
.x8_c03276{left:391.999872pt;}
.x4_c03276{left:396.160512pt;}
.xb_c03276{left:400.960000pt;}
.x7_c03276{left:404.799648pt;}
.x5_c03276{left:410.560128pt;}
.x1_c03276{left:411.840000pt;}
.xa_c03276{left:429.760320pt;}
.x9_c03276{left:437.439552pt;}
.x6_c03276{left:438.400512pt;}
.xc_c03276{left:450.560320pt;}
.x3_c03276{left:455.039904pt;}
.x2_c03276{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03277 {
    display:none;
  }
  .loading-indicator_c03277.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03277 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03277 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03277" -> "#page-container .classname_c03277")
 */
.pf_c03277 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03277 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03277.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03277 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03277 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03277 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03277 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03277 {overflow:visible;}
  }
}
.c_c03277 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03277 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03277:after { /* webkit #35443 */
  content: '';
}
.t_c03277:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03277 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03277 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03277 { /* info for Javascript */
  display:none;
}
.l_c03277 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03277 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03277 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03277:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03277 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03277.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03277.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03277 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03277{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03277;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03277{font-family:ff1_c03277;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03277;src:url('chunks/assets/font_6db409d0d25c54a675366c19.woff2')format("woff");}.ff2_c03277{font-family:ff2_c03277;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03277;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03277{font-family:ff3_c03277;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03277{vertical-align:0.000000px;}
.v1_c03277{vertical-align:1.439424px;}
.ls7_c03277{letter-spacing:-0.613008px;}
.ls9_c03277{letter-spacing:-0.574992px;}
.lse_c03277{letter-spacing:-0.275616px;}
.lsc_c03277{letter-spacing:-0.261360px;}
.ls6_c03277{letter-spacing:-0.242352px;}
.ls4_c03277{letter-spacing:-0.118800px;}
.ls11_c03277{letter-spacing:0.000000px;}
.ls2_c03277{letter-spacing:0.006048px;}
.ls5_c03277{letter-spacing:0.128304px;}
.lsb_c03277{letter-spacing:0.508464px;}
.ls10_c03277{letter-spacing:0.514080px;}
.lsd_c03277{letter-spacing:0.536976px;}
.lsa_c03277{letter-spacing:0.579744px;}
.lsf_c03277{letter-spacing:0.594000px;}
.ls8_c03277{letter-spacing:0.598752px;}
.ls3_c03277{letter-spacing:0.613008px;}
.ls0_c03277{letter-spacing:0.717552px;}
.ls1_c03277{letter-spacing:0.722304px;}
.sc__c03277{text-shadow:none;}
.sc0_c03277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03277{-webkit-text-stroke:0px transparent;}
.sc0_c03277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03277{word-spacing:-15.126048px;}
.wsa_c03277{word-spacing:-12.474000px;}
.ws8_c03277{word-spacing:-12.459744px;}
.ws9_c03277{word-spacing:-12.416976px;}
.ws4_c03277{word-spacing:-11.637648px;}
.ws2_c03277{word-spacing:-11.266992px;}
.ws11_c03277{word-spacing:-1.083456px;}
.ws10_c03277{word-spacing:-1.078704px;}
.wsd_c03277{word-spacing:-0.974160px;}
.ws14_c03277{word-spacing:-0.719712px;}
.wsf_c03277{word-spacing:-0.118800px;}
.ws12_c03277{word-spacing:-0.099792px;}
.ws13_c03277{word-spacing:-0.085536px;}
.wse_c03277{word-spacing:0.000000px;}
.wsb_c03277{word-spacing:33.300288px;}
.ws6_c03277{word-spacing:36.742464px;}
.ws1_c03277{word-spacing:37.759392px;}
.ws0_c03277{word-spacing:38.020752px;}
.ws3_c03277{word-spacing:39.218256px;}
.ws5_c03277{word-spacing:39.902544px;}
.ws7_c03277{word-spacing:42.026688px;}
._0_c03277{margin-left:-1.948320px;}
._2_c03277{width:1.482624px;}
._4_c03277{width:5.749920px;}
._1_c03277{width:50.252400px;}
._3_c03277{width:51.530688px;}
.fc0_c03277{color:rgb(0,0,0);}
.fs0_c03277{font-size:47.520000px;}
.fs1_c03277{font-size:60.480000px;}
.y0_c03277{bottom:0.000000px;}
.y19_c03277{bottom:146.998362px;}
.y1b_c03277{bottom:186.600234px;}
.y1a_c03277{bottom:196.320450px;}
.y18_c03277{bottom:275.878542px;}
.y17_c03277{bottom:356.878758px;}
.y15_c03277{bottom:406.559730px;}
.y11_c03277{bottom:424.560306px;}
.y16_c03277{bottom:458.759262px;}
.y14_c03277{bottom:491.879514px;}
.y13_c03277{bottom:509.880090px;}
.y10_c03277{bottom:543.000342px;}
.y12_c03277{bottom:559.559874px;}
.yf_c03277{bottom:577.560450px;}
.y1c_c03277{bottom:614.280450px;}
.yb_c03277{bottom:667.558326px;}
.yd_c03277{bottom:707.160234px;}
.yc_c03277{bottom:716.880450px;}
.ya_c03277{bottom:796.438506px;}
.y9_c03277{bottom:877.438722px;}
.y7_c03277{bottom:926.759730px;}
.y3_c03277{bottom:944.760306px;}
.y8_c03277{bottom:979.319226px;}
.y6_c03277{bottom:1012.439478px;}
.y5_c03277{bottom:1030.440054px;}
.y2_c03277{bottom:1063.560306px;}
.y4_c03277{bottom:1079.759874px;}
.y1_c03277{bottom:1097.760450px;}
.ye_c03277{bottom:1134.840450px;}
.h3_c03277{height:32.530781px;}
.h1_c03277{height:41.696016px;}
.h2_c03277{height:41.812031px;}
.h4_c03277{height:54.654737px;}
.h0_c03277{height:1263.000000px;}
.w1_c03277{width:892.500000px;}
.w0_c03277{width:892.830000px;}
.x0_c03277{left:0.000000px;}
.xd_c03277{left:117.000000px;}
.x8_c03277{left:440.999856px;}
.x4_c03277{left:445.680576px;}
.xb_c03277{left:451.080000px;}
.x7_c03277{left:455.399604px;}
.x5_c03277{left:461.880144px;}
.x1_c03277{left:463.320000px;}
.xa_c03277{left:483.480360px;}
.x9_c03277{left:492.119496px;}
.x6_c03277{left:493.200576px;}
.xc_c03277{left:506.880360px;}
.x3_c03277{left:511.919892px;}
.x2_c03277{left:526.679604px;}
@media print{
.v0_c03277{vertical-align:0.000000pt;}
.v1_c03277{vertical-align:1.279488pt;}
.ls7_c03277{letter-spacing:-0.544896pt;}
.ls9_c03277{letter-spacing:-0.511104pt;}
.lse_c03277{letter-spacing:-0.244992pt;}
.lsc_c03277{letter-spacing:-0.232320pt;}
.ls6_c03277{letter-spacing:-0.215424pt;}
.ls4_c03277{letter-spacing:-0.105600pt;}
.ls11_c03277{letter-spacing:0.000000pt;}
.ls2_c03277{letter-spacing:0.005376pt;}
.ls5_c03277{letter-spacing:0.114048pt;}
.lsb_c03277{letter-spacing:0.451968pt;}
.ls10_c03277{letter-spacing:0.456960pt;}
.lsd_c03277{letter-spacing:0.477312pt;}
.lsa_c03277{letter-spacing:0.515328pt;}
.lsf_c03277{letter-spacing:0.528000pt;}
.ls8_c03277{letter-spacing:0.532224pt;}
.ls3_c03277{letter-spacing:0.544896pt;}
.ls0_c03277{letter-spacing:0.637824pt;}
.ls1_c03277{letter-spacing:0.642048pt;}
.wsc_c03277{word-spacing:-13.445376pt;}
.wsa_c03277{word-spacing:-11.088000pt;}
.ws8_c03277{word-spacing:-11.075328pt;}
.ws9_c03277{word-spacing:-11.037312pt;}
.ws4_c03277{word-spacing:-10.344576pt;}
.ws2_c03277{word-spacing:-10.015104pt;}
.ws11_c03277{word-spacing:-0.963072pt;}
.ws10_c03277{word-spacing:-0.958848pt;}
.wsd_c03277{word-spacing:-0.865920pt;}
.ws14_c03277{word-spacing:-0.639744pt;}
.wsf_c03277{word-spacing:-0.105600pt;}
.ws12_c03277{word-spacing:-0.088704pt;}
.ws13_c03277{word-spacing:-0.076032pt;}
.wse_c03277{word-spacing:0.000000pt;}
.wsb_c03277{word-spacing:29.600256pt;}
.ws6_c03277{word-spacing:32.659968pt;}
.ws1_c03277{word-spacing:33.563904pt;}
.ws0_c03277{word-spacing:33.796224pt;}
.ws3_c03277{word-spacing:34.860672pt;}
.ws5_c03277{word-spacing:35.468928pt;}
.ws7_c03277{word-spacing:37.357056pt;}
._0_c03277{margin-left:-1.731840pt;}
._2_c03277{width:1.317888pt;}
._4_c03277{width:5.111040pt;}
._1_c03277{width:44.668800pt;}
._3_c03277{width:45.805056pt;}
.fs0_c03277{font-size:42.240000pt;}
.fs1_c03277{font-size:53.760000pt;}
.y0_c03277{bottom:0.000000pt;}
.y19_c03277{bottom:130.665211pt;}
.y1b_c03277{bottom:165.866875pt;}
.y1a_c03277{bottom:174.507067pt;}
.y18_c03277{bottom:245.225371pt;}
.y17_c03277{bottom:317.225563pt;}
.y15_c03277{bottom:361.386427pt;}
.y11_c03277{bottom:377.386939pt;}
.y16_c03277{bottom:407.786011pt;}
.y14_c03277{bottom:437.226235pt;}
.y13_c03277{bottom:453.226747pt;}
.y10_c03277{bottom:482.666971pt;}
.y12_c03277{bottom:497.386555pt;}
.yf_c03277{bottom:513.387067pt;}
.y1c_c03277{bottom:546.027067pt;}
.yb_c03277{bottom:593.385179pt;}
.yd_c03277{bottom:628.586875pt;}
.yc_c03277{bottom:637.227067pt;}
.ya_c03277{bottom:707.945339pt;}
.y9_c03277{bottom:779.945531pt;}
.y7_c03277{bottom:823.786427pt;}
.y3_c03277{bottom:839.786939pt;}
.y8_c03277{bottom:870.505979pt;}
.y6_c03277{bottom:899.946203pt;}
.y5_c03277{bottom:915.946715pt;}
.y2_c03277{bottom:945.386939pt;}
.y4_c03277{bottom:959.786555pt;}
.y1_c03277{bottom:975.787067pt;}
.ye_c03277{bottom:1008.747067pt;}
.h3_c03277{height:28.916250pt;}
.h1_c03277{height:37.063125pt;}
.h2_c03277{height:37.166250pt;}
.h4_c03277{height:48.581988pt;}
.h0_c03277{height:1122.666667pt;}
.w1_c03277{width:793.333333pt;}
.w0_c03277{width:793.626667pt;}
.x0_c03277{left:0.000000pt;}
.xd_c03277{left:104.000000pt;}
.x8_c03277{left:391.999872pt;}
.x4_c03277{left:396.160512pt;}
.xb_c03277{left:400.960000pt;}
.x7_c03277{left:404.799648pt;}
.x5_c03277{left:410.560128pt;}
.x1_c03277{left:411.840000pt;}
.xa_c03277{left:429.760320pt;}
.x9_c03277{left:437.439552pt;}
.x6_c03277{left:438.400512pt;}
.xc_c03277{left:450.560320pt;}
.x3_c03277{left:455.039904pt;}
.x2_c03277{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03278 {
    display:none;
  }
  .loading-indicator_c03278.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03278 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03278 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03278" -> "#page-container .classname_c03278")
 */
.pf_c03278 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03278 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03278.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03278 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03278 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03278 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03278 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03278 {overflow:visible;}
  }
}
.c_c03278 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03278 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03278:after { /* webkit #35443 */
  content: '';
}
.t_c03278:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03278 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03278 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03278 { /* info for Javascript */
  display:none;
}
.l_c03278 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03278 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03278 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03278:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03278 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03278.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03278.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03278 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03278{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03278;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03278{font-family:ff1_c03278;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03278;src:url('chunks/assets/font_bc7d5a3352637525c6ecd3b6.woff2')format("woff");}.ff2_c03278{font-family:ff2_c03278;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03278;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03278{font-family:ff3_c03278;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03278{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03278{vertical-align:0.000000px;}
.v1_c03278{vertical-align:1.439424px;}
.ls7_c03278{letter-spacing:-0.613008px;}
.ls9_c03278{letter-spacing:-0.574992px;}
.lse_c03278{letter-spacing:-0.275616px;}
.lsc_c03278{letter-spacing:-0.261360px;}
.ls6_c03278{letter-spacing:-0.242352px;}
.ls4_c03278{letter-spacing:-0.118800px;}
.ls11_c03278{letter-spacing:0.000000px;}
.ls1_c03278{letter-spacing:0.006048px;}
.ls5_c03278{letter-spacing:0.128304px;}
.lsb_c03278{letter-spacing:0.508464px;}
.ls10_c03278{letter-spacing:0.514080px;}
.lsd_c03278{letter-spacing:0.536976px;}
.lsa_c03278{letter-spacing:0.579744px;}
.lsf_c03278{letter-spacing:0.594000px;}
.ls8_c03278{letter-spacing:0.598752px;}
.ls3_c03278{letter-spacing:0.613008px;}
.ls2_c03278{letter-spacing:0.717552px;}
.ls0_c03278{letter-spacing:0.722304px;}
.sc__c03278{text-shadow:none;}
.sc0_c03278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03278{-webkit-text-stroke:0px transparent;}
.sc0_c03278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03278{word-spacing:-15.126048px;}
.wsa_c03278{word-spacing:-12.474000px;}
.ws8_c03278{word-spacing:-12.459744px;}
.ws9_c03278{word-spacing:-12.416976px;}
.ws4_c03278{word-spacing:-11.637648px;}
.ws2_c03278{word-spacing:-11.266992px;}
.ws10_c03278{word-spacing:-1.083456px;}
.ws14_c03278{word-spacing:-1.078704px;}
.wsd_c03278{word-spacing:-0.974160px;}
.ws13_c03278{word-spacing:-0.719712px;}
.wsf_c03278{word-spacing:-0.118800px;}
.ws11_c03278{word-spacing:-0.099792px;}
.ws12_c03278{word-spacing:-0.085536px;}
.wse_c03278{word-spacing:0.000000px;}
.wsb_c03278{word-spacing:33.300288px;}
.ws6_c03278{word-spacing:36.742464px;}
.ws1_c03278{word-spacing:37.759392px;}
.ws0_c03278{word-spacing:38.020752px;}
.ws3_c03278{word-spacing:39.218256px;}
.ws5_c03278{word-spacing:39.902544px;}
.ws7_c03278{word-spacing:42.026688px;}
._0_c03278{margin-left:-1.948320px;}
._2_c03278{width:1.482624px;}
._4_c03278{width:5.749920px;}
._1_c03278{width:50.252400px;}
._3_c03278{width:51.530688px;}
.fc0_c03278{color:rgb(0,0,0);}
.fs0_c03278{font-size:47.520000px;}
.fs1_c03278{font-size:60.480000px;}
.y0_c03278{bottom:0.000000px;}
.y19_c03278{bottom:146.998362px;}
.y1b_c03278{bottom:186.600234px;}
.y1a_c03278{bottom:196.320450px;}
.y18_c03278{bottom:275.878542px;}
.y17_c03278{bottom:356.878758px;}
.y15_c03278{bottom:406.559730px;}
.y11_c03278{bottom:424.560306px;}
.y16_c03278{bottom:458.759262px;}
.y14_c03278{bottom:491.879514px;}
.y13_c03278{bottom:509.880090px;}
.y10_c03278{bottom:543.000342px;}
.y12_c03278{bottom:559.559874px;}
.yf_c03278{bottom:577.560450px;}
.y1c_c03278{bottom:614.280450px;}
.yb_c03278{bottom:667.558326px;}
.yd_c03278{bottom:707.160234px;}
.yc_c03278{bottom:716.880450px;}
.ya_c03278{bottom:796.438506px;}
.y9_c03278{bottom:877.438722px;}
.y7_c03278{bottom:926.759730px;}
.y3_c03278{bottom:944.760306px;}
.y8_c03278{bottom:979.319226px;}
.y6_c03278{bottom:1012.439478px;}
.y5_c03278{bottom:1030.440054px;}
.y2_c03278{bottom:1063.560306px;}
.y4_c03278{bottom:1079.759874px;}
.y1_c03278{bottom:1097.760450px;}
.ye_c03278{bottom:1134.840450px;}
.h3_c03278{height:32.530781px;}
.h1_c03278{height:41.696016px;}
.h2_c03278{height:41.812031px;}
.h4_c03278{height:54.654737px;}
.h0_c03278{height:1263.000000px;}
.w1_c03278{width:892.500000px;}
.w0_c03278{width:892.830000px;}
.x0_c03278{left:0.000000px;}
.xd_c03278{left:117.000000px;}
.x8_c03278{left:440.999856px;}
.x4_c03278{left:445.680576px;}
.xb_c03278{left:451.080000px;}
.x7_c03278{left:455.399604px;}
.x5_c03278{left:461.880144px;}
.x1_c03278{left:463.320000px;}
.xa_c03278{left:483.480360px;}
.x9_c03278{left:492.119496px;}
.x6_c03278{left:493.200576px;}
.xc_c03278{left:506.880360px;}
.x3_c03278{left:511.919892px;}
.x2_c03278{left:526.679604px;}
@media print{
.v0_c03278{vertical-align:0.000000pt;}
.v1_c03278{vertical-align:1.279488pt;}
.ls7_c03278{letter-spacing:-0.544896pt;}
.ls9_c03278{letter-spacing:-0.511104pt;}
.lse_c03278{letter-spacing:-0.244992pt;}
.lsc_c03278{letter-spacing:-0.232320pt;}
.ls6_c03278{letter-spacing:-0.215424pt;}
.ls4_c03278{letter-spacing:-0.105600pt;}
.ls11_c03278{letter-spacing:0.000000pt;}
.ls1_c03278{letter-spacing:0.005376pt;}
.ls5_c03278{letter-spacing:0.114048pt;}
.lsb_c03278{letter-spacing:0.451968pt;}
.ls10_c03278{letter-spacing:0.456960pt;}
.lsd_c03278{letter-spacing:0.477312pt;}
.lsa_c03278{letter-spacing:0.515328pt;}
.lsf_c03278{letter-spacing:0.528000pt;}
.ls8_c03278{letter-spacing:0.532224pt;}
.ls3_c03278{letter-spacing:0.544896pt;}
.ls2_c03278{letter-spacing:0.637824pt;}
.ls0_c03278{letter-spacing:0.642048pt;}
.wsc_c03278{word-spacing:-13.445376pt;}
.wsa_c03278{word-spacing:-11.088000pt;}
.ws8_c03278{word-spacing:-11.075328pt;}
.ws9_c03278{word-spacing:-11.037312pt;}
.ws4_c03278{word-spacing:-10.344576pt;}
.ws2_c03278{word-spacing:-10.015104pt;}
.ws10_c03278{word-spacing:-0.963072pt;}
.ws14_c03278{word-spacing:-0.958848pt;}
.wsd_c03278{word-spacing:-0.865920pt;}
.ws13_c03278{word-spacing:-0.639744pt;}
.wsf_c03278{word-spacing:-0.105600pt;}
.ws11_c03278{word-spacing:-0.088704pt;}
.ws12_c03278{word-spacing:-0.076032pt;}
.wse_c03278{word-spacing:0.000000pt;}
.wsb_c03278{word-spacing:29.600256pt;}
.ws6_c03278{word-spacing:32.659968pt;}
.ws1_c03278{word-spacing:33.563904pt;}
.ws0_c03278{word-spacing:33.796224pt;}
.ws3_c03278{word-spacing:34.860672pt;}
.ws5_c03278{word-spacing:35.468928pt;}
.ws7_c03278{word-spacing:37.357056pt;}
._0_c03278{margin-left:-1.731840pt;}
._2_c03278{width:1.317888pt;}
._4_c03278{width:5.111040pt;}
._1_c03278{width:44.668800pt;}
._3_c03278{width:45.805056pt;}
.fs0_c03278{font-size:42.240000pt;}
.fs1_c03278{font-size:53.760000pt;}
.y0_c03278{bottom:0.000000pt;}
.y19_c03278{bottom:130.665211pt;}
.y1b_c03278{bottom:165.866875pt;}
.y1a_c03278{bottom:174.507067pt;}
.y18_c03278{bottom:245.225371pt;}
.y17_c03278{bottom:317.225563pt;}
.y15_c03278{bottom:361.386427pt;}
.y11_c03278{bottom:377.386939pt;}
.y16_c03278{bottom:407.786011pt;}
.y14_c03278{bottom:437.226235pt;}
.y13_c03278{bottom:453.226747pt;}
.y10_c03278{bottom:482.666971pt;}
.y12_c03278{bottom:497.386555pt;}
.yf_c03278{bottom:513.387067pt;}
.y1c_c03278{bottom:546.027067pt;}
.yb_c03278{bottom:593.385179pt;}
.yd_c03278{bottom:628.586875pt;}
.yc_c03278{bottom:637.227067pt;}
.ya_c03278{bottom:707.945339pt;}
.y9_c03278{bottom:779.945531pt;}
.y7_c03278{bottom:823.786427pt;}
.y3_c03278{bottom:839.786939pt;}
.y8_c03278{bottom:870.505979pt;}
.y6_c03278{bottom:899.946203pt;}
.y5_c03278{bottom:915.946715pt;}
.y2_c03278{bottom:945.386939pt;}
.y4_c03278{bottom:959.786555pt;}
.y1_c03278{bottom:975.787067pt;}
.ye_c03278{bottom:1008.747067pt;}
.h3_c03278{height:28.916250pt;}
.h1_c03278{height:37.063125pt;}
.h2_c03278{height:37.166250pt;}
.h4_c03278{height:48.581988pt;}
.h0_c03278{height:1122.666667pt;}
.w1_c03278{width:793.333333pt;}
.w0_c03278{width:793.626667pt;}
.x0_c03278{left:0.000000pt;}
.xd_c03278{left:104.000000pt;}
.x8_c03278{left:391.999872pt;}
.x4_c03278{left:396.160512pt;}
.xb_c03278{left:400.960000pt;}
.x7_c03278{left:404.799648pt;}
.x5_c03278{left:410.560128pt;}
.x1_c03278{left:411.840000pt;}
.xa_c03278{left:429.760320pt;}
.x9_c03278{left:437.439552pt;}
.x6_c03278{left:438.400512pt;}
.xc_c03278{left:450.560320pt;}
.x3_c03278{left:455.039904pt;}
.x2_c03278{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03279 {
    display:none;
  }
  .loading-indicator_c03279.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03279 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03279 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03279" -> "#page-container .classname_c03279")
 */
.pf_c03279 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03279 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03279.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03279 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03279 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03279 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03279 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03279 {overflow:visible;}
  }
}
.c_c03279 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03279 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03279:after { /* webkit #35443 */
  content: '';
}
.t_c03279:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03279 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03279 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03279 { /* info for Javascript */
  display:none;
}
.l_c03279 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03279 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03279 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03279:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03279 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03279.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03279.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03279 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03279{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03279;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03279{font-family:ff1_c03279;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03279;src:url('chunks/assets/font_9bb3606064b886fd8e2f5960.woff2')format("woff");}.ff2_c03279{font-family:ff2_c03279;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03279;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03279{font-family:ff3_c03279;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03279{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03279{vertical-align:0.000000px;}
.v1_c03279{vertical-align:1.439424px;}
.lsd_c03279{letter-spacing:-0.793584px;}
.ls14_c03279{letter-spacing:-0.722304px;}
.ls8_c03279{letter-spacing:-0.613008px;}
.lsa_c03279{letter-spacing:-0.574992px;}
.ls10_c03279{letter-spacing:-0.275616px;}
.lse_c03279{letter-spacing:-0.261360px;}
.ls7_c03279{letter-spacing:-0.242352px;}
.ls5_c03279{letter-spacing:-0.118800px;}
.ls13_c03279{letter-spacing:0.000000px;}
.ls1_c03279{letter-spacing:0.006048px;}
.ls6_c03279{letter-spacing:0.128304px;}
.lsc_c03279{letter-spacing:0.508464px;}
.ls12_c03279{letter-spacing:0.514080px;}
.lsf_c03279{letter-spacing:0.536976px;}
.lsb_c03279{letter-spacing:0.579744px;}
.ls11_c03279{letter-spacing:0.594000px;}
.ls9_c03279{letter-spacing:0.598752px;}
.ls4_c03279{letter-spacing:0.613008px;}
.ls2_c03279{letter-spacing:0.651024px;}
.ls0_c03279{letter-spacing:0.717552px;}
.ls3_c03279{letter-spacing:0.722304px;}
.sc__c03279{text-shadow:none;}
.sc0_c03279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03279{-webkit-text-stroke:0px transparent;}
.sc0_c03279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03279{word-spacing:-15.126048px;}
.ws9_c03279{word-spacing:-12.474000px;}
.ws6_c03279{word-spacing:-12.459744px;}
.ws8_c03279{word-spacing:-12.416976px;}
.ws4_c03279{word-spacing:-11.637648px;}
.ws2_c03279{word-spacing:-11.266992px;}
.ws16_c03279{word-spacing:-1.083456px;}
.ws10_c03279{word-spacing:-1.078704px;}
.ws15_c03279{word-spacing:-1.012176px;}
.wsd_c03279{word-spacing:-0.974160px;}
.ws14_c03279{word-spacing:-0.719712px;}
.wsf_c03279{word-spacing:-0.118800px;}
.ws12_c03279{word-spacing:-0.099792px;}
.ws13_c03279{word-spacing:-0.085536px;}
.wse_c03279{word-spacing:0.000000px;}
.ws17_c03279{word-spacing:0.361152px;}
.ws11_c03279{word-spacing:0.432432px;}
.wsa_c03279{word-spacing:33.300288px;}
.wsc_c03279{word-spacing:36.143712px;}
.ws1_c03279{word-spacing:37.759392px;}
.ws0_c03279{word-spacing:38.020752px;}
.ws3_c03279{word-spacing:39.218256px;}
.ws5_c03279{word-spacing:39.902544px;}
.ws7_c03279{word-spacing:42.026688px;}
._0_c03279{margin-left:-1.948320px;}
._2_c03279{width:1.482624px;}
._4_c03279{width:5.749920px;}
._1_c03279{width:50.252400px;}
._3_c03279{width:51.530688px;}
.fc0_c03279{color:rgb(0,0,0);}
.fs0_c03279{font-size:47.520000px;}
.fs1_c03279{font-size:60.480000px;}
.y0_c03279{bottom:0.000000px;}
.y19_c03279{bottom:146.998362px;}
.y1b_c03279{bottom:186.600234px;}
.y1a_c03279{bottom:196.320450px;}
.y18_c03279{bottom:275.878542px;}
.y17_c03279{bottom:356.878758px;}
.y15_c03279{bottom:406.559730px;}
.y11_c03279{bottom:424.560306px;}
.y16_c03279{bottom:458.759262px;}
.y14_c03279{bottom:491.879514px;}
.y13_c03279{bottom:509.880090px;}
.y10_c03279{bottom:543.000342px;}
.y12_c03279{bottom:559.559874px;}
.yf_c03279{bottom:577.560450px;}
.y1c_c03279{bottom:614.280450px;}
.yb_c03279{bottom:667.558326px;}
.yd_c03279{bottom:707.160234px;}
.yc_c03279{bottom:716.880450px;}
.ya_c03279{bottom:796.438506px;}
.y9_c03279{bottom:877.438722px;}
.y7_c03279{bottom:926.759730px;}
.y3_c03279{bottom:944.760306px;}
.y8_c03279{bottom:979.319226px;}
.y6_c03279{bottom:1012.439478px;}
.y5_c03279{bottom:1030.440054px;}
.y2_c03279{bottom:1063.560306px;}
.y4_c03279{bottom:1079.759874px;}
.y1_c03279{bottom:1097.760450px;}
.ye_c03279{bottom:1134.840450px;}
.h3_c03279{height:32.530781px;}
.h1_c03279{height:41.696016px;}
.h2_c03279{height:41.812031px;}
.h4_c03279{height:54.654737px;}
.h0_c03279{height:1263.000000px;}
.w1_c03279{width:892.500000px;}
.w0_c03279{width:892.830000px;}
.x0_c03279{left:0.000000px;}
.xd_c03279{left:117.000000px;}
.x8_c03279{left:440.999856px;}
.x4_c03279{left:445.680576px;}
.xb_c03279{left:451.080000px;}
.x7_c03279{left:455.399604px;}
.x5_c03279{left:461.880144px;}
.x1_c03279{left:463.320000px;}
.xa_c03279{left:483.480360px;}
.x9_c03279{left:492.119496px;}
.x6_c03279{left:493.200576px;}
.xc_c03279{left:506.880360px;}
.x3_c03279{left:511.919892px;}
.x2_c03279{left:526.679604px;}
@media print{
.v0_c03279{vertical-align:0.000000pt;}
.v1_c03279{vertical-align:1.279488pt;}
.lsd_c03279{letter-spacing:-0.705408pt;}
.ls14_c03279{letter-spacing:-0.642048pt;}
.ls8_c03279{letter-spacing:-0.544896pt;}
.lsa_c03279{letter-spacing:-0.511104pt;}
.ls10_c03279{letter-spacing:-0.244992pt;}
.lse_c03279{letter-spacing:-0.232320pt;}
.ls7_c03279{letter-spacing:-0.215424pt;}
.ls5_c03279{letter-spacing:-0.105600pt;}
.ls13_c03279{letter-spacing:0.000000pt;}
.ls1_c03279{letter-spacing:0.005376pt;}
.ls6_c03279{letter-spacing:0.114048pt;}
.lsc_c03279{letter-spacing:0.451968pt;}
.ls12_c03279{letter-spacing:0.456960pt;}
.lsf_c03279{letter-spacing:0.477312pt;}
.lsb_c03279{letter-spacing:0.515328pt;}
.ls11_c03279{letter-spacing:0.528000pt;}
.ls9_c03279{letter-spacing:0.532224pt;}
.ls4_c03279{letter-spacing:0.544896pt;}
.ls2_c03279{letter-spacing:0.578688pt;}
.ls0_c03279{letter-spacing:0.637824pt;}
.ls3_c03279{letter-spacing:0.642048pt;}
.wsb_c03279{word-spacing:-13.445376pt;}
.ws9_c03279{word-spacing:-11.088000pt;}
.ws6_c03279{word-spacing:-11.075328pt;}
.ws8_c03279{word-spacing:-11.037312pt;}
.ws4_c03279{word-spacing:-10.344576pt;}
.ws2_c03279{word-spacing:-10.015104pt;}
.ws16_c03279{word-spacing:-0.963072pt;}
.ws10_c03279{word-spacing:-0.958848pt;}
.ws15_c03279{word-spacing:-0.899712pt;}
.wsd_c03279{word-spacing:-0.865920pt;}
.ws14_c03279{word-spacing:-0.639744pt;}
.wsf_c03279{word-spacing:-0.105600pt;}
.ws12_c03279{word-spacing:-0.088704pt;}
.ws13_c03279{word-spacing:-0.076032pt;}
.wse_c03279{word-spacing:0.000000pt;}
.ws17_c03279{word-spacing:0.321024pt;}
.ws11_c03279{word-spacing:0.384384pt;}
.wsa_c03279{word-spacing:29.600256pt;}
.wsc_c03279{word-spacing:32.127744pt;}
.ws1_c03279{word-spacing:33.563904pt;}
.ws0_c03279{word-spacing:33.796224pt;}
.ws3_c03279{word-spacing:34.860672pt;}
.ws5_c03279{word-spacing:35.468928pt;}
.ws7_c03279{word-spacing:37.357056pt;}
._0_c03279{margin-left:-1.731840pt;}
._2_c03279{width:1.317888pt;}
._4_c03279{width:5.111040pt;}
._1_c03279{width:44.668800pt;}
._3_c03279{width:45.805056pt;}
.fs0_c03279{font-size:42.240000pt;}
.fs1_c03279{font-size:53.760000pt;}
.y0_c03279{bottom:0.000000pt;}
.y19_c03279{bottom:130.665211pt;}
.y1b_c03279{bottom:165.866875pt;}
.y1a_c03279{bottom:174.507067pt;}
.y18_c03279{bottom:245.225371pt;}
.y17_c03279{bottom:317.225563pt;}
.y15_c03279{bottom:361.386427pt;}
.y11_c03279{bottom:377.386939pt;}
.y16_c03279{bottom:407.786011pt;}
.y14_c03279{bottom:437.226235pt;}
.y13_c03279{bottom:453.226747pt;}
.y10_c03279{bottom:482.666971pt;}
.y12_c03279{bottom:497.386555pt;}
.yf_c03279{bottom:513.387067pt;}
.y1c_c03279{bottom:546.027067pt;}
.yb_c03279{bottom:593.385179pt;}
.yd_c03279{bottom:628.586875pt;}
.yc_c03279{bottom:637.227067pt;}
.ya_c03279{bottom:707.945339pt;}
.y9_c03279{bottom:779.945531pt;}
.y7_c03279{bottom:823.786427pt;}
.y3_c03279{bottom:839.786939pt;}
.y8_c03279{bottom:870.505979pt;}
.y6_c03279{bottom:899.946203pt;}
.y5_c03279{bottom:915.946715pt;}
.y2_c03279{bottom:945.386939pt;}
.y4_c03279{bottom:959.786555pt;}
.y1_c03279{bottom:975.787067pt;}
.ye_c03279{bottom:1008.747067pt;}
.h3_c03279{height:28.916250pt;}
.h1_c03279{height:37.063125pt;}
.h2_c03279{height:37.166250pt;}
.h4_c03279{height:48.581988pt;}
.h0_c03279{height:1122.666667pt;}
.w1_c03279{width:793.333333pt;}
.w0_c03279{width:793.626667pt;}
.x0_c03279{left:0.000000pt;}
.xd_c03279{left:104.000000pt;}
.x8_c03279{left:391.999872pt;}
.x4_c03279{left:396.160512pt;}
.xb_c03279{left:400.960000pt;}
.x7_c03279{left:404.799648pt;}
.x5_c03279{left:410.560128pt;}
.x1_c03279{left:411.840000pt;}
.xa_c03279{left:429.760320pt;}
.x9_c03279{left:437.439552pt;}
.x6_c03279{left:438.400512pt;}
.xc_c03279{left:450.560320pt;}
.x3_c03279{left:455.039904pt;}
.x2_c03279{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03280 {
    display:none;
  }
  .loading-indicator_c03280.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03280 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03280 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03280" -> "#page-container .classname_c03280")
 */
.pf_c03280 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03280 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03280.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03280 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03280 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03280 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03280 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03280 {overflow:visible;}
  }
}
.c_c03280 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03280 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03280:after { /* webkit #35443 */
  content: '';
}
.t_c03280:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03280 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03280 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03280 { /* info for Javascript */
  display:none;
}
.l_c03280 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03280 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03280 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03280:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03280 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03280.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03280.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03280 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03280{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03280;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03280{font-family:ff1_c03280;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03280;src:url('chunks/assets/font_9787979fed3a2762b57eb85d.woff2')format("woff");}.ff2_c03280{font-family:ff2_c03280;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03280;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03280{font-family:ff3_c03280;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03280{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03280{vertical-align:0.000000px;}
.v1_c03280{vertical-align:1.439424px;}
.lsd_c03280{letter-spacing:-0.793584px;}
.ls14_c03280{letter-spacing:-0.722304px;}
.ls7_c03280{letter-spacing:-0.613008px;}
.ls9_c03280{letter-spacing:-0.574992px;}
.lsa_c03280{letter-spacing:-0.361152px;}
.ls10_c03280{letter-spacing:-0.275616px;}
.lse_c03280{letter-spacing:-0.261360px;}
.ls6_c03280{letter-spacing:-0.242352px;}
.ls4_c03280{letter-spacing:-0.118800px;}
.ls13_c03280{letter-spacing:0.000000px;}
.ls0_c03280{letter-spacing:0.006048px;}
.ls5_c03280{letter-spacing:0.128304px;}
.lsc_c03280{letter-spacing:0.508464px;}
.ls12_c03280{letter-spacing:0.514080px;}
.lsf_c03280{letter-spacing:0.536976px;}
.lsb_c03280{letter-spacing:0.579744px;}
.ls11_c03280{letter-spacing:0.594000px;}
.ls8_c03280{letter-spacing:0.598752px;}
.ls3_c03280{letter-spacing:0.613008px;}
.ls1_c03280{letter-spacing:0.651024px;}
.ls2_c03280{letter-spacing:0.717552px;}
.sc__c03280{text-shadow:none;}
.sc0_c03280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03280{-webkit-text-stroke:0px transparent;}
.sc0_c03280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03280{word-spacing:-15.126048px;}
.wsa_c03280{word-spacing:-12.474000px;}
.ws6_c03280{word-spacing:-12.459744px;}
.ws9_c03280{word-spacing:-12.416976px;}
.ws4_c03280{word-spacing:-11.637648px;}
.ws2_c03280{word-spacing:-11.266992px;}
.ws15_c03280{word-spacing:-1.078704px;}
.ws11_c03280{word-spacing:-1.012176px;}
.wsd_c03280{word-spacing:-0.974160px;}
.ws14_c03280{word-spacing:-0.719712px;}
.wsf_c03280{word-spacing:-0.118800px;}
.ws12_c03280{word-spacing:-0.099792px;}
.ws13_c03280{word-spacing:-0.085536px;}
.wse_c03280{word-spacing:0.000000px;}
.ws16_c03280{word-spacing:0.361152px;}
.ws10_c03280{word-spacing:0.432432px;}
.wsb_c03280{word-spacing:33.300288px;}
.ws8_c03280{word-spacing:36.143712px;}
.ws1_c03280{word-spacing:37.759392px;}
.ws0_c03280{word-spacing:38.020752px;}
.ws3_c03280{word-spacing:39.218256px;}
.ws5_c03280{word-spacing:39.902544px;}
.ws7_c03280{word-spacing:42.026688px;}
._0_c03280{margin-left:-1.948320px;}
._2_c03280{width:1.482624px;}
._4_c03280{width:5.749920px;}
._1_c03280{width:50.252400px;}
._3_c03280{width:51.530688px;}
.fc0_c03280{color:rgb(0,0,0);}
.fs0_c03280{font-size:47.520000px;}
.fs1_c03280{font-size:60.480000px;}
.y0_c03280{bottom:0.000000px;}
.y19_c03280{bottom:146.998362px;}
.y1b_c03280{bottom:186.600234px;}
.y1a_c03280{bottom:196.320450px;}
.y18_c03280{bottom:275.878542px;}
.y17_c03280{bottom:356.878758px;}
.y15_c03280{bottom:406.559730px;}
.y11_c03280{bottom:424.560306px;}
.y16_c03280{bottom:458.759262px;}
.y14_c03280{bottom:491.879514px;}
.y13_c03280{bottom:509.880090px;}
.y10_c03280{bottom:543.000342px;}
.y12_c03280{bottom:559.559874px;}
.yf_c03280{bottom:577.560450px;}
.y1c_c03280{bottom:614.280450px;}
.yb_c03280{bottom:667.558326px;}
.yd_c03280{bottom:707.160234px;}
.yc_c03280{bottom:716.880450px;}
.ya_c03280{bottom:796.438506px;}
.y9_c03280{bottom:877.438722px;}
.y7_c03280{bottom:926.759730px;}
.y3_c03280{bottom:944.760306px;}
.y8_c03280{bottom:979.319226px;}
.y6_c03280{bottom:1012.439478px;}
.y5_c03280{bottom:1030.440054px;}
.y2_c03280{bottom:1063.560306px;}
.y4_c03280{bottom:1079.759874px;}
.y1_c03280{bottom:1097.760450px;}
.ye_c03280{bottom:1134.840450px;}
.h3_c03280{height:32.530781px;}
.h1_c03280{height:41.696016px;}
.h2_c03280{height:41.812031px;}
.h4_c03280{height:54.654737px;}
.h0_c03280{height:1263.000000px;}
.w1_c03280{width:892.500000px;}
.w0_c03280{width:892.830000px;}
.x0_c03280{left:0.000000px;}
.xd_c03280{left:117.000000px;}
.x8_c03280{left:440.999856px;}
.x4_c03280{left:445.680576px;}
.xb_c03280{left:451.080000px;}
.x7_c03280{left:455.399604px;}
.x5_c03280{left:461.880144px;}
.x1_c03280{left:463.320000px;}
.xa_c03280{left:483.480360px;}
.x9_c03280{left:492.119496px;}
.x6_c03280{left:493.200576px;}
.xc_c03280{left:506.880360px;}
.x3_c03280{left:511.919892px;}
.x2_c03280{left:526.679604px;}
@media print{
.v0_c03280{vertical-align:0.000000pt;}
.v1_c03280{vertical-align:1.279488pt;}
.lsd_c03280{letter-spacing:-0.705408pt;}
.ls14_c03280{letter-spacing:-0.642048pt;}
.ls7_c03280{letter-spacing:-0.544896pt;}
.ls9_c03280{letter-spacing:-0.511104pt;}
.lsa_c03280{letter-spacing:-0.321024pt;}
.ls10_c03280{letter-spacing:-0.244992pt;}
.lse_c03280{letter-spacing:-0.232320pt;}
.ls6_c03280{letter-spacing:-0.215424pt;}
.ls4_c03280{letter-spacing:-0.105600pt;}
.ls13_c03280{letter-spacing:0.000000pt;}
.ls0_c03280{letter-spacing:0.005376pt;}
.ls5_c03280{letter-spacing:0.114048pt;}
.lsc_c03280{letter-spacing:0.451968pt;}
.ls12_c03280{letter-spacing:0.456960pt;}
.lsf_c03280{letter-spacing:0.477312pt;}
.lsb_c03280{letter-spacing:0.515328pt;}
.ls11_c03280{letter-spacing:0.528000pt;}
.ls8_c03280{letter-spacing:0.532224pt;}
.ls3_c03280{letter-spacing:0.544896pt;}
.ls1_c03280{letter-spacing:0.578688pt;}
.ls2_c03280{letter-spacing:0.637824pt;}
.wsc_c03280{word-spacing:-13.445376pt;}
.wsa_c03280{word-spacing:-11.088000pt;}
.ws6_c03280{word-spacing:-11.075328pt;}
.ws9_c03280{word-spacing:-11.037312pt;}
.ws4_c03280{word-spacing:-10.344576pt;}
.ws2_c03280{word-spacing:-10.015104pt;}
.ws15_c03280{word-spacing:-0.958848pt;}
.ws11_c03280{word-spacing:-0.899712pt;}
.wsd_c03280{word-spacing:-0.865920pt;}
.ws14_c03280{word-spacing:-0.639744pt;}
.wsf_c03280{word-spacing:-0.105600pt;}
.ws12_c03280{word-spacing:-0.088704pt;}
.ws13_c03280{word-spacing:-0.076032pt;}
.wse_c03280{word-spacing:0.000000pt;}
.ws16_c03280{word-spacing:0.321024pt;}
.ws10_c03280{word-spacing:0.384384pt;}
.wsb_c03280{word-spacing:29.600256pt;}
.ws8_c03280{word-spacing:32.127744pt;}
.ws1_c03280{word-spacing:33.563904pt;}
.ws0_c03280{word-spacing:33.796224pt;}
.ws3_c03280{word-spacing:34.860672pt;}
.ws5_c03280{word-spacing:35.468928pt;}
.ws7_c03280{word-spacing:37.357056pt;}
._0_c03280{margin-left:-1.731840pt;}
._2_c03280{width:1.317888pt;}
._4_c03280{width:5.111040pt;}
._1_c03280{width:44.668800pt;}
._3_c03280{width:45.805056pt;}
.fs0_c03280{font-size:42.240000pt;}
.fs1_c03280{font-size:53.760000pt;}
.y0_c03280{bottom:0.000000pt;}
.y19_c03280{bottom:130.665211pt;}
.y1b_c03280{bottom:165.866875pt;}
.y1a_c03280{bottom:174.507067pt;}
.y18_c03280{bottom:245.225371pt;}
.y17_c03280{bottom:317.225563pt;}
.y15_c03280{bottom:361.386427pt;}
.y11_c03280{bottom:377.386939pt;}
.y16_c03280{bottom:407.786011pt;}
.y14_c03280{bottom:437.226235pt;}
.y13_c03280{bottom:453.226747pt;}
.y10_c03280{bottom:482.666971pt;}
.y12_c03280{bottom:497.386555pt;}
.yf_c03280{bottom:513.387067pt;}
.y1c_c03280{bottom:546.027067pt;}
.yb_c03280{bottom:593.385179pt;}
.yd_c03280{bottom:628.586875pt;}
.yc_c03280{bottom:637.227067pt;}
.ya_c03280{bottom:707.945339pt;}
.y9_c03280{bottom:779.945531pt;}
.y7_c03280{bottom:823.786427pt;}
.y3_c03280{bottom:839.786939pt;}
.y8_c03280{bottom:870.505979pt;}
.y6_c03280{bottom:899.946203pt;}
.y5_c03280{bottom:915.946715pt;}
.y2_c03280{bottom:945.386939pt;}
.y4_c03280{bottom:959.786555pt;}
.y1_c03280{bottom:975.787067pt;}
.ye_c03280{bottom:1008.747067pt;}
.h3_c03280{height:28.916250pt;}
.h1_c03280{height:37.063125pt;}
.h2_c03280{height:37.166250pt;}
.h4_c03280{height:48.581988pt;}
.h0_c03280{height:1122.666667pt;}
.w1_c03280{width:793.333333pt;}
.w0_c03280{width:793.626667pt;}
.x0_c03280{left:0.000000pt;}
.xd_c03280{left:104.000000pt;}
.x8_c03280{left:391.999872pt;}
.x4_c03280{left:396.160512pt;}
.xb_c03280{left:400.960000pt;}
.x7_c03280{left:404.799648pt;}
.x5_c03280{left:410.560128pt;}
.x1_c03280{left:411.840000pt;}
.xa_c03280{left:429.760320pt;}
.x9_c03280{left:437.439552pt;}
.x6_c03280{left:438.400512pt;}
.xc_c03280{left:450.560320pt;}
.x3_c03280{left:455.039904pt;}
.x2_c03280{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03281 {
    display:none;
  }
  .loading-indicator_c03281.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03281 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03281 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03281" -> "#page-container .classname_c03281")
 */
.pf_c03281 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03281 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03281.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03281 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03281 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03281 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03281 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03281 {overflow:visible;}
  }
}
.c_c03281 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03281 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03281:after { /* webkit #35443 */
  content: '';
}
.t_c03281:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03281 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03281 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03281 { /* info for Javascript */
  display:none;
}
.l_c03281 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03281 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03281 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03281:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03281 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03281.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03281.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03281 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03281{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03281;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03281{font-family:ff1_c03281;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03281;src:url('chunks/assets/font_4557129fb9b1248dfa940aae.woff2')format("woff");}.ff2_c03281{font-family:ff2_c03281;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03281;src:url('chunks/assets/font_512a7d0fb09e01ad1f0a7c72.woff2')format("woff");}.ff3_c03281{font-family:ff3_c03281;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03281{vertical-align:0.000000px;}
.v1_c03281{vertical-align:1.439424px;}
.lsd_c03281{letter-spacing:-0.722304px;}
.ls8_c03281{letter-spacing:-0.613008px;}
.lsa_c03281{letter-spacing:-0.574992px;}
.ls11_c03281{letter-spacing:-0.275616px;}
.lsf_c03281{letter-spacing:-0.261360px;}
.ls7_c03281{letter-spacing:-0.242352px;}
.ls4_c03281{letter-spacing:-0.118800px;}
.ls14_c03281{letter-spacing:0.000000px;}
.ls1_c03281{letter-spacing:0.006048px;}
.ls6_c03281{letter-spacing:0.128304px;}
.lsc_c03281{letter-spacing:0.508464px;}
.ls13_c03281{letter-spacing:0.514080px;}
.ls10_c03281{letter-spacing:0.536976px;}
.lsb_c03281{letter-spacing:0.579744px;}
.ls12_c03281{letter-spacing:0.594000px;}
.ls9_c03281{letter-spacing:0.598752px;}
.ls3_c03281{letter-spacing:0.613008px;}
.lse_c03281{letter-spacing:0.651024px;}
.ls5_c03281{letter-spacing:0.679536px;}
.ls2_c03281{letter-spacing:0.717552px;}
.ls0_c03281{letter-spacing:0.722304px;}
.sc__c03281{text-shadow:none;}
.sc0_c03281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03281{-webkit-text-stroke:0px transparent;}
.sc0_c03281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03281{word-spacing:-15.126048px;}
.wsa_c03281{word-spacing:-12.474000px;}
.ws6_c03281{word-spacing:-12.459744px;}
.ws9_c03281{word-spacing:-12.416976px;}
.ws4_c03281{word-spacing:-11.637648px;}
.ws2_c03281{word-spacing:-11.266992px;}
.ws12_c03281{word-spacing:-1.083456px;}
.ws18_c03281{word-spacing:-1.078704px;}
.ws10_c03281{word-spacing:-1.040688px;}
.ws14_c03281{word-spacing:-1.012176px;}
.wse_c03281{word-spacing:-0.974160px;}
.ws17_c03281{word-spacing:-0.719712px;}
.ws11_c03281{word-spacing:-0.118800px;}
.ws15_c03281{word-spacing:-0.099792px;}
.ws16_c03281{word-spacing:-0.085536px;}
.wsf_c03281{word-spacing:0.000000px;}
.ws13_c03281{word-spacing:0.361152px;}
.wsb_c03281{word-spacing:33.300288px;}
.ws8_c03281{word-spacing:36.143712px;}
.wsd_c03281{word-spacing:36.742464px;}
.ws1_c03281{word-spacing:37.759392px;}
.ws0_c03281{word-spacing:38.020752px;}
.ws3_c03281{word-spacing:39.218256px;}
.ws5_c03281{word-spacing:39.902544px;}
.ws7_c03281{word-spacing:42.026688px;}
._0_c03281{margin-left:-1.948320px;}
._3_c03281{width:1.482624px;}
._5_c03281{width:5.749920px;}
._2_c03281{width:14.830992px;}
._1_c03281{width:50.252400px;}
._4_c03281{width:51.530688px;}
.fc0_c03281{color:rgb(0,0,0);}
.fs0_c03281{font-size:47.520000px;}
.fs1_c03281{font-size:60.480000px;}
.y0_c03281{bottom:0.000000px;}
.y19_c03281{bottom:146.998362px;}
.y1b_c03281{bottom:186.600234px;}
.y1a_c03281{bottom:196.320450px;}
.y18_c03281{bottom:275.878542px;}
.y17_c03281{bottom:356.878758px;}
.y15_c03281{bottom:406.559730px;}
.y11_c03281{bottom:424.560306px;}
.y16_c03281{bottom:458.759262px;}
.y14_c03281{bottom:491.879514px;}
.y13_c03281{bottom:509.880090px;}
.y10_c03281{bottom:543.000342px;}
.y12_c03281{bottom:559.559874px;}
.yf_c03281{bottom:577.560450px;}
.y1c_c03281{bottom:614.280450px;}
.yb_c03281{bottom:667.558326px;}
.yd_c03281{bottom:707.160234px;}
.yc_c03281{bottom:716.880450px;}
.ya_c03281{bottom:796.438506px;}
.y9_c03281{bottom:877.438722px;}
.y7_c03281{bottom:926.759730px;}
.y3_c03281{bottom:944.760306px;}
.y8_c03281{bottom:979.319226px;}
.y6_c03281{bottom:1012.439478px;}
.y5_c03281{bottom:1030.440054px;}
.y2_c03281{bottom:1063.560306px;}
.y4_c03281{bottom:1079.759874px;}
.y1_c03281{bottom:1097.760450px;}
.ye_c03281{bottom:1134.840450px;}
.h3_c03281{height:32.530781px;}
.h1_c03281{height:41.696016px;}
.h2_c03281{height:41.812031px;}
.h4_c03281{height:54.654737px;}
.h0_c03281{height:1263.000000px;}
.w1_c03281{width:892.500000px;}
.w0_c03281{width:892.830000px;}
.x0_c03281{left:0.000000px;}
.xd_c03281{left:117.000000px;}
.x8_c03281{left:440.999856px;}
.x4_c03281{left:445.680576px;}
.xb_c03281{left:451.080000px;}
.x7_c03281{left:455.399604px;}
.x5_c03281{left:461.880144px;}
.x1_c03281{left:463.320000px;}
.xa_c03281{left:483.480360px;}
.x9_c03281{left:492.119496px;}
.x6_c03281{left:493.200576px;}
.xc_c03281{left:506.880360px;}
.x3_c03281{left:511.919892px;}
.x2_c03281{left:526.679604px;}
@media print{
.v0_c03281{vertical-align:0.000000pt;}
.v1_c03281{vertical-align:1.279488pt;}
.lsd_c03281{letter-spacing:-0.642048pt;}
.ls8_c03281{letter-spacing:-0.544896pt;}
.lsa_c03281{letter-spacing:-0.511104pt;}
.ls11_c03281{letter-spacing:-0.244992pt;}
.lsf_c03281{letter-spacing:-0.232320pt;}
.ls7_c03281{letter-spacing:-0.215424pt;}
.ls4_c03281{letter-spacing:-0.105600pt;}
.ls14_c03281{letter-spacing:0.000000pt;}
.ls1_c03281{letter-spacing:0.005376pt;}
.ls6_c03281{letter-spacing:0.114048pt;}
.lsc_c03281{letter-spacing:0.451968pt;}
.ls13_c03281{letter-spacing:0.456960pt;}
.ls10_c03281{letter-spacing:0.477312pt;}
.lsb_c03281{letter-spacing:0.515328pt;}
.ls12_c03281{letter-spacing:0.528000pt;}
.ls9_c03281{letter-spacing:0.532224pt;}
.ls3_c03281{letter-spacing:0.544896pt;}
.lse_c03281{letter-spacing:0.578688pt;}
.ls5_c03281{letter-spacing:0.604032pt;}
.ls2_c03281{letter-spacing:0.637824pt;}
.ls0_c03281{letter-spacing:0.642048pt;}
.wsc_c03281{word-spacing:-13.445376pt;}
.wsa_c03281{word-spacing:-11.088000pt;}
.ws6_c03281{word-spacing:-11.075328pt;}
.ws9_c03281{word-spacing:-11.037312pt;}
.ws4_c03281{word-spacing:-10.344576pt;}
.ws2_c03281{word-spacing:-10.015104pt;}
.ws12_c03281{word-spacing:-0.963072pt;}
.ws18_c03281{word-spacing:-0.958848pt;}
.ws10_c03281{word-spacing:-0.925056pt;}
.ws14_c03281{word-spacing:-0.899712pt;}
.wse_c03281{word-spacing:-0.865920pt;}
.ws17_c03281{word-spacing:-0.639744pt;}
.ws11_c03281{word-spacing:-0.105600pt;}
.ws15_c03281{word-spacing:-0.088704pt;}
.ws16_c03281{word-spacing:-0.076032pt;}
.wsf_c03281{word-spacing:0.000000pt;}
.ws13_c03281{word-spacing:0.321024pt;}
.wsb_c03281{word-spacing:29.600256pt;}
.ws8_c03281{word-spacing:32.127744pt;}
.wsd_c03281{word-spacing:32.659968pt;}
.ws1_c03281{word-spacing:33.563904pt;}
.ws0_c03281{word-spacing:33.796224pt;}
.ws3_c03281{word-spacing:34.860672pt;}
.ws5_c03281{word-spacing:35.468928pt;}
.ws7_c03281{word-spacing:37.357056pt;}
._0_c03281{margin-left:-1.731840pt;}
._3_c03281{width:1.317888pt;}
._5_c03281{width:5.111040pt;}
._2_c03281{width:13.183104pt;}
._1_c03281{width:44.668800pt;}
._4_c03281{width:45.805056pt;}
.fs0_c03281{font-size:42.240000pt;}
.fs1_c03281{font-size:53.760000pt;}
.y0_c03281{bottom:0.000000pt;}
.y19_c03281{bottom:130.665211pt;}
.y1b_c03281{bottom:165.866875pt;}
.y1a_c03281{bottom:174.507067pt;}
.y18_c03281{bottom:245.225371pt;}
.y17_c03281{bottom:317.225563pt;}
.y15_c03281{bottom:361.386427pt;}
.y11_c03281{bottom:377.386939pt;}
.y16_c03281{bottom:407.786011pt;}
.y14_c03281{bottom:437.226235pt;}
.y13_c03281{bottom:453.226747pt;}
.y10_c03281{bottom:482.666971pt;}
.y12_c03281{bottom:497.386555pt;}
.yf_c03281{bottom:513.387067pt;}
.y1c_c03281{bottom:546.027067pt;}
.yb_c03281{bottom:593.385179pt;}
.yd_c03281{bottom:628.586875pt;}
.yc_c03281{bottom:637.227067pt;}
.ya_c03281{bottom:707.945339pt;}
.y9_c03281{bottom:779.945531pt;}
.y7_c03281{bottom:823.786427pt;}
.y3_c03281{bottom:839.786939pt;}
.y8_c03281{bottom:870.505979pt;}
.y6_c03281{bottom:899.946203pt;}
.y5_c03281{bottom:915.946715pt;}
.y2_c03281{bottom:945.386939pt;}
.y4_c03281{bottom:959.786555pt;}
.y1_c03281{bottom:975.787067pt;}
.ye_c03281{bottom:1008.747067pt;}
.h3_c03281{height:28.916250pt;}
.h1_c03281{height:37.063125pt;}
.h2_c03281{height:37.166250pt;}
.h4_c03281{height:48.581988pt;}
.h0_c03281{height:1122.666667pt;}
.w1_c03281{width:793.333333pt;}
.w0_c03281{width:793.626667pt;}
.x0_c03281{left:0.000000pt;}
.xd_c03281{left:104.000000pt;}
.x8_c03281{left:391.999872pt;}
.x4_c03281{left:396.160512pt;}
.xb_c03281{left:400.960000pt;}
.x7_c03281{left:404.799648pt;}
.x5_c03281{left:410.560128pt;}
.x1_c03281{left:411.840000pt;}
.xa_c03281{left:429.760320pt;}
.x9_c03281{left:437.439552pt;}
.x6_c03281{left:438.400512pt;}
.xc_c03281{left:450.560320pt;}
.x3_c03281{left:455.039904pt;}
.x2_c03281{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03282 {
    display:none;
  }
  .loading-indicator_c03282.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03282 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03282 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03282" -> "#page-container .classname_c03282")
 */
.pf_c03282 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03282 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03282.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03282 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03282 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03282 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03282 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03282 {overflow:visible;}
  }
}
.c_c03282 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03282 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03282:after { /* webkit #35443 */
  content: '';
}
.t_c03282:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03282 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03282 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03282 { /* info for Javascript */
  display:none;
}
.l_c03282 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03282 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03282 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03282:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03282 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03282.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03282.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03282 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03282{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03282;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03282{font-family:ff1_c03282;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03282;src:url('chunks/assets/font_b32f863f57ff24246e23557d.woff2')format("woff");}.ff2_c03282{font-family:ff2_c03282;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03282;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03282{font-family:ff3_c03282;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03282{vertical-align:0.000000px;}
.v1_c03282{vertical-align:1.439424px;}
.ls13_c03282{letter-spacing:-0.793584px;}
.ls7_c03282{letter-spacing:-0.613008px;}
.ls9_c03282{letter-spacing:-0.574992px;}
.ls12_c03282{letter-spacing:-0.304128px;}
.lse_c03282{letter-spacing:-0.275616px;}
.lsc_c03282{letter-spacing:-0.261360px;}
.ls6_c03282{letter-spacing:-0.242352px;}
.ls4_c03282{letter-spacing:-0.118800px;}
.ls11_c03282{letter-spacing:0.000000px;}
.ls2_c03282{letter-spacing:0.006048px;}
.ls5_c03282{letter-spacing:0.128304px;}
.lsb_c03282{letter-spacing:0.508464px;}
.ls10_c03282{letter-spacing:0.514080px;}
.lsd_c03282{letter-spacing:0.536976px;}
.lsa_c03282{letter-spacing:0.579744px;}
.lsf_c03282{letter-spacing:0.594000px;}
.ls8_c03282{letter-spacing:0.598752px;}
.ls3_c03282{letter-spacing:0.613008px;}
.ls0_c03282{letter-spacing:0.717552px;}
.ls1_c03282{letter-spacing:0.722304px;}
.sc__c03282{text-shadow:none;}
.sc0_c03282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03282{-webkit-text-stroke:0px transparent;}
.sc0_c03282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03282{word-spacing:-15.126048px;}
.wsa_c03282{word-spacing:-12.474000px;}
.ws8_c03282{word-spacing:-12.459744px;}
.ws9_c03282{word-spacing:-12.416976px;}
.ws4_c03282{word-spacing:-11.637648px;}
.ws2_c03282{word-spacing:-11.266992px;}
.ws11_c03282{word-spacing:-11.086416px;}
.ws16_c03282{word-spacing:-1.083456px;}
.ws15_c03282{word-spacing:-1.078704px;}
.ws12_c03282{word-spacing:-0.974160px;}
.ws19_c03282{word-spacing:-0.719712px;}
.ws14_c03282{word-spacing:-0.118800px;}
.ws17_c03282{word-spacing:-0.099792px;}
.ws18_c03282{word-spacing:-0.085536px;}
.ws1a_c03282{word-spacing:-0.057024px;}
.ws13_c03282{word-spacing:0.000000px;}
.wse_c03282{word-spacing:6.476976px;}
.ws10_c03282{word-spacing:19.354896px;}
.wsb_c03282{word-spacing:33.300288px;}
.wsf_c03282{word-spacing:34.836912px;}
.wsd_c03282{word-spacing:36.143712px;}
.ws6_c03282{word-spacing:36.742464px;}
.ws1_c03282{word-spacing:37.759392px;}
.ws0_c03282{word-spacing:38.020752px;}
.ws3_c03282{word-spacing:39.218256px;}
.ws5_c03282{word-spacing:39.902544px;}
.ws7_c03282{word-spacing:42.026688px;}
._0_c03282{margin-left:-1.948320px;}
._2_c03282{width:1.482624px;}
._4_c03282{width:5.749920px;}
._6_c03282{width:15.847920px;}
._5_c03282{width:24.662880px;}
._9_c03282{width:32.327856px;}
._7_c03282{width:35.421408px;}
._8_c03282{width:38.771568px;}
._1_c03282{width:50.252400px;}
._3_c03282{width:51.530688px;}
.fc0_c03282{color:rgb(0,0,0);}
.fs0_c03282{font-size:47.520000px;}
.fs1_c03282{font-size:60.480000px;}
.y0_c03282{bottom:0.000000px;}
.y1b_c03282{bottom:131.878686px;}
.y1a_c03282{bottom:146.998362px;}
.y1d_c03282{bottom:186.600234px;}
.y1c_c03282{bottom:196.320450px;}
.y19_c03282{bottom:260.758866px;}
.y18_c03282{bottom:275.878542px;}
.y17_c03282{bottom:356.878758px;}
.y15_c03282{bottom:406.559730px;}
.y11_c03282{bottom:424.560306px;}
.y16_c03282{bottom:458.759262px;}
.y14_c03282{bottom:491.879514px;}
.y13_c03282{bottom:509.880090px;}
.y10_c03282{bottom:543.000342px;}
.y12_c03282{bottom:559.559874px;}
.yf_c03282{bottom:577.560450px;}
.y1e_c03282{bottom:614.280450px;}
.yb_c03282{bottom:667.558326px;}
.yd_c03282{bottom:707.160234px;}
.yc_c03282{bottom:716.880450px;}
.ya_c03282{bottom:796.438506px;}
.y9_c03282{bottom:877.438722px;}
.y7_c03282{bottom:926.759730px;}
.y3_c03282{bottom:944.760306px;}
.y8_c03282{bottom:979.319226px;}
.y6_c03282{bottom:1012.439478px;}
.y5_c03282{bottom:1030.440054px;}
.y2_c03282{bottom:1063.560306px;}
.y4_c03282{bottom:1079.759874px;}
.y1_c03282{bottom:1097.760450px;}
.ye_c03282{bottom:1134.840450px;}
.h3_c03282{height:32.530781px;}
.h1_c03282{height:41.696016px;}
.h2_c03282{height:41.812031px;}
.h4_c03282{height:54.654737px;}
.h0_c03282{height:1263.000000px;}
.w1_c03282{width:892.500000px;}
.w0_c03282{width:892.830000px;}
.x0_c03282{left:0.000000px;}
.xd_c03282{left:117.000000px;}
.x8_c03282{left:440.999856px;}
.x4_c03282{left:445.680576px;}
.xb_c03282{left:451.080000px;}
.x7_c03282{left:455.399604px;}
.x5_c03282{left:461.880144px;}
.x1_c03282{left:463.320000px;}
.xa_c03282{left:483.480360px;}
.x9_c03282{left:492.119496px;}
.x6_c03282{left:493.200576px;}
.xc_c03282{left:506.880360px;}
.x3_c03282{left:511.919892px;}
.x2_c03282{left:526.679604px;}
.xe_c03282{left:569.880036px;}
@media print{
.v0_c03282{vertical-align:0.000000pt;}
.v1_c03282{vertical-align:1.279488pt;}
.ls13_c03282{letter-spacing:-0.705408pt;}
.ls7_c03282{letter-spacing:-0.544896pt;}
.ls9_c03282{letter-spacing:-0.511104pt;}
.ls12_c03282{letter-spacing:-0.270336pt;}
.lse_c03282{letter-spacing:-0.244992pt;}
.lsc_c03282{letter-spacing:-0.232320pt;}
.ls6_c03282{letter-spacing:-0.215424pt;}
.ls4_c03282{letter-spacing:-0.105600pt;}
.ls11_c03282{letter-spacing:0.000000pt;}
.ls2_c03282{letter-spacing:0.005376pt;}
.ls5_c03282{letter-spacing:0.114048pt;}
.lsb_c03282{letter-spacing:0.451968pt;}
.ls10_c03282{letter-spacing:0.456960pt;}
.lsd_c03282{letter-spacing:0.477312pt;}
.lsa_c03282{letter-spacing:0.515328pt;}
.lsf_c03282{letter-spacing:0.528000pt;}
.ls8_c03282{letter-spacing:0.532224pt;}
.ls3_c03282{letter-spacing:0.544896pt;}
.ls0_c03282{letter-spacing:0.637824pt;}
.ls1_c03282{letter-spacing:0.642048pt;}
.wsc_c03282{word-spacing:-13.445376pt;}
.wsa_c03282{word-spacing:-11.088000pt;}
.ws8_c03282{word-spacing:-11.075328pt;}
.ws9_c03282{word-spacing:-11.037312pt;}
.ws4_c03282{word-spacing:-10.344576pt;}
.ws2_c03282{word-spacing:-10.015104pt;}
.ws11_c03282{word-spacing:-9.854592pt;}
.ws16_c03282{word-spacing:-0.963072pt;}
.ws15_c03282{word-spacing:-0.958848pt;}
.ws12_c03282{word-spacing:-0.865920pt;}
.ws19_c03282{word-spacing:-0.639744pt;}
.ws14_c03282{word-spacing:-0.105600pt;}
.ws17_c03282{word-spacing:-0.088704pt;}
.ws18_c03282{word-spacing:-0.076032pt;}
.ws1a_c03282{word-spacing:-0.050688pt;}
.ws13_c03282{word-spacing:0.000000pt;}
.wse_c03282{word-spacing:5.757312pt;}
.ws10_c03282{word-spacing:17.204352pt;}
.wsb_c03282{word-spacing:29.600256pt;}
.wsf_c03282{word-spacing:30.966144pt;}
.wsd_c03282{word-spacing:32.127744pt;}
.ws6_c03282{word-spacing:32.659968pt;}
.ws1_c03282{word-spacing:33.563904pt;}
.ws0_c03282{word-spacing:33.796224pt;}
.ws3_c03282{word-spacing:34.860672pt;}
.ws5_c03282{word-spacing:35.468928pt;}
.ws7_c03282{word-spacing:37.357056pt;}
._0_c03282{margin-left:-1.731840pt;}
._2_c03282{width:1.317888pt;}
._4_c03282{width:5.111040pt;}
._6_c03282{width:14.087040pt;}
._5_c03282{width:21.922560pt;}
._9_c03282{width:28.735872pt;}
._7_c03282{width:31.485696pt;}
._8_c03282{width:34.463616pt;}
._1_c03282{width:44.668800pt;}
._3_c03282{width:45.805056pt;}
.fs0_c03282{font-size:42.240000pt;}
.fs1_c03282{font-size:53.760000pt;}
.y0_c03282{bottom:0.000000pt;}
.y1b_c03282{bottom:117.225499pt;}
.y1a_c03282{bottom:130.665211pt;}
.y1d_c03282{bottom:165.866875pt;}
.y1c_c03282{bottom:174.507067pt;}
.y19_c03282{bottom:231.785659pt;}
.y18_c03282{bottom:245.225371pt;}
.y17_c03282{bottom:317.225563pt;}
.y15_c03282{bottom:361.386427pt;}
.y11_c03282{bottom:377.386939pt;}
.y16_c03282{bottom:407.786011pt;}
.y14_c03282{bottom:437.226235pt;}
.y13_c03282{bottom:453.226747pt;}
.y10_c03282{bottom:482.666971pt;}
.y12_c03282{bottom:497.386555pt;}
.yf_c03282{bottom:513.387067pt;}
.y1e_c03282{bottom:546.027067pt;}
.yb_c03282{bottom:593.385179pt;}
.yd_c03282{bottom:628.586875pt;}
.yc_c03282{bottom:637.227067pt;}
.ya_c03282{bottom:707.945339pt;}
.y9_c03282{bottom:779.945531pt;}
.y7_c03282{bottom:823.786427pt;}
.y3_c03282{bottom:839.786939pt;}
.y8_c03282{bottom:870.505979pt;}
.y6_c03282{bottom:899.946203pt;}
.y5_c03282{bottom:915.946715pt;}
.y2_c03282{bottom:945.386939pt;}
.y4_c03282{bottom:959.786555pt;}
.y1_c03282{bottom:975.787067pt;}
.ye_c03282{bottom:1008.747067pt;}
.h3_c03282{height:28.916250pt;}
.h1_c03282{height:37.063125pt;}
.h2_c03282{height:37.166250pt;}
.h4_c03282{height:48.581988pt;}
.h0_c03282{height:1122.666667pt;}
.w1_c03282{width:793.333333pt;}
.w0_c03282{width:793.626667pt;}
.x0_c03282{left:0.000000pt;}
.xd_c03282{left:104.000000pt;}
.x8_c03282{left:391.999872pt;}
.x4_c03282{left:396.160512pt;}
.xb_c03282{left:400.960000pt;}
.x7_c03282{left:404.799648pt;}
.x5_c03282{left:410.560128pt;}
.x1_c03282{left:411.840000pt;}
.xa_c03282{left:429.760320pt;}
.x9_c03282{left:437.439552pt;}
.x6_c03282{left:438.400512pt;}
.xc_c03282{left:450.560320pt;}
.x3_c03282{left:455.039904pt;}
.x2_c03282{left:468.159648pt;}
.xe_c03282{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03283 {
    display:none;
  }
  .loading-indicator_c03283.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03283 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03283 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03283" -> "#page-container .classname_c03283")
 */
.pf_c03283 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03283 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03283.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03283 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03283 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03283 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03283 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03283 {overflow:visible;}
  }
}
.c_c03283 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03283 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03283:after { /* webkit #35443 */
  content: '';
}
.t_c03283:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03283 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03283 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03283 { /* info for Javascript */
  display:none;
}
.l_c03283 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03283 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03283 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03283:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03283 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03283.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03283.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03283 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03283{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03283;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03283{font-family:ff1_c03283;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03283;src:url('chunks/assets/font_48fe6734be57243fb6a3ad66.woff2')format("woff");}.ff2_c03283{font-family:ff2_c03283;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03283;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03283{font-family:ff3_c03283;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03283{vertical-align:0.000000px;}
.v1_c03283{vertical-align:1.439424px;}
.lsc_c03283{letter-spacing:-0.793584px;}
.ls10_c03283{letter-spacing:-0.736560px;}
.ls7_c03283{letter-spacing:-0.613008px;}
.ls9_c03283{letter-spacing:-0.574992px;}
.lsd_c03283{letter-spacing:-0.304128px;}
.ls11_c03283{letter-spacing:-0.270864px;}
.lse_c03283{letter-spacing:-0.261360px;}
.ls6_c03283{letter-spacing:-0.242352px;}
.ls4_c03283{letter-spacing:-0.118800px;}
.ls14_c03283{letter-spacing:0.000000px;}
.ls1_c03283{letter-spacing:0.006048px;}
.ls5_c03283{letter-spacing:0.128304px;}
.lsb_c03283{letter-spacing:0.508464px;}
.ls13_c03283{letter-spacing:0.514080px;}
.lsf_c03283{letter-spacing:0.536976px;}
.lsa_c03283{letter-spacing:0.579744px;}
.ls12_c03283{letter-spacing:0.594000px;}
.ls8_c03283{letter-spacing:0.598752px;}
.ls3_c03283{letter-spacing:0.613008px;}
.ls0_c03283{letter-spacing:0.717552px;}
.ls2_c03283{letter-spacing:0.722304px;}
.sc__c03283{text-shadow:none;}
.sc0_c03283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03283{-webkit-text-stroke:0px transparent;}
.sc0_c03283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03283{word-spacing:-15.126048px;}
.wsb_c03283{word-spacing:-12.474000px;}
.ws6_c03283{word-spacing:-12.459744px;}
.ws4_c03283{word-spacing:-11.637648px;}
.ws2_c03283{word-spacing:-11.266992px;}
.ws18_c03283{word-spacing:-1.083456px;}
.ws11_c03283{word-spacing:-1.078704px;}
.wse_c03283{word-spacing:-0.974160px;}
.ws17_c03283{word-spacing:-0.719712px;}
.ws10_c03283{word-spacing:-0.118800px;}
.ws14_c03283{word-spacing:-0.099792px;}
.ws15_c03283{word-spacing:-0.090288px;}
.ws16_c03283{word-spacing:-0.085536px;}
.ws13_c03283{word-spacing:-0.057024px;}
.wsf_c03283{word-spacing:0.000000px;}
.ws12_c03283{word-spacing:0.432432px;}
.wsa_c03283{word-spacing:6.629040px;}
.wsc_c03283{word-spacing:33.300288px;}
.ws9_c03283{word-spacing:34.836912px;}
.ws8_c03283{word-spacing:36.143712px;}
.ws1_c03283{word-spacing:37.759392px;}
.ws0_c03283{word-spacing:38.020752px;}
.ws3_c03283{word-spacing:39.218256px;}
.ws5_c03283{word-spacing:39.902544px;}
.ws7_c03283{word-spacing:42.026688px;}
._0_c03283{margin-left:-1.948320px;}
._2_c03283{width:1.482624px;}
._4_c03283{width:5.749920px;}
._6_c03283{width:19.982160px;}
._7_c03283{width:23.451120px;}
._5_c03283{width:24.691392px;}
._1_c03283{width:50.252400px;}
._3_c03283{width:51.530688px;}
.fc0_c03283{color:rgb(0,0,0);}
.fs0_c03283{font-size:47.520000px;}
.fs1_c03283{font-size:60.480000px;}
.y0_c03283{bottom:0.000000px;}
.y1b_c03283{bottom:131.878686px;}
.y1a_c03283{bottom:146.998362px;}
.y1d_c03283{bottom:186.600234px;}
.y1c_c03283{bottom:196.320450px;}
.y19_c03283{bottom:275.878542px;}
.y18_c03283{bottom:356.878758px;}
.y16_c03283{bottom:406.559730px;}
.y12_c03283{bottom:424.560306px;}
.y17_c03283{bottom:458.759262px;}
.y15_c03283{bottom:491.879514px;}
.y14_c03283{bottom:509.880090px;}
.y11_c03283{bottom:543.000342px;}
.y13_c03283{bottom:559.559874px;}
.y10_c03283{bottom:577.560450px;}
.y1e_c03283{bottom:614.280450px;}
.yc_c03283{bottom:652.438650px;}
.yb_c03283{bottom:667.558326px;}
.ye_c03283{bottom:707.160234px;}
.yd_c03283{bottom:716.880450px;}
.ya_c03283{bottom:796.438506px;}
.y9_c03283{bottom:877.438722px;}
.y7_c03283{bottom:926.759730px;}
.y3_c03283{bottom:944.760306px;}
.y8_c03283{bottom:979.319226px;}
.y6_c03283{bottom:1012.439478px;}
.y5_c03283{bottom:1030.440054px;}
.y2_c03283{bottom:1063.560306px;}
.y4_c03283{bottom:1079.759874px;}
.y1_c03283{bottom:1097.760450px;}
.yf_c03283{bottom:1134.840450px;}
.h3_c03283{height:32.530781px;}
.h1_c03283{height:41.696016px;}
.h2_c03283{height:41.812031px;}
.h4_c03283{height:54.654737px;}
.h0_c03283{height:1263.000000px;}
.w1_c03283{width:892.500000px;}
.w0_c03283{width:892.830000px;}
.x0_c03283{left:0.000000px;}
.xe_c03283{left:117.000000px;}
.x8_c03283{left:440.999856px;}
.x4_c03283{left:445.680576px;}
.xc_c03283{left:451.080000px;}
.x7_c03283{left:455.399604px;}
.x5_c03283{left:461.880144px;}
.x1_c03283{left:463.320000px;}
.xa_c03283{left:483.480360px;}
.x9_c03283{left:492.119496px;}
.x6_c03283{left:493.200576px;}
.xd_c03283{left:506.880360px;}
.x3_c03283{left:511.919892px;}
.x2_c03283{left:526.679604px;}
.xb_c03283{left:569.880036px;}
@media print{
.v0_c03283{vertical-align:0.000000pt;}
.v1_c03283{vertical-align:1.279488pt;}
.lsc_c03283{letter-spacing:-0.705408pt;}
.ls10_c03283{letter-spacing:-0.654720pt;}
.ls7_c03283{letter-spacing:-0.544896pt;}
.ls9_c03283{letter-spacing:-0.511104pt;}
.lsd_c03283{letter-spacing:-0.270336pt;}
.ls11_c03283{letter-spacing:-0.240768pt;}
.lse_c03283{letter-spacing:-0.232320pt;}
.ls6_c03283{letter-spacing:-0.215424pt;}
.ls4_c03283{letter-spacing:-0.105600pt;}
.ls14_c03283{letter-spacing:0.000000pt;}
.ls1_c03283{letter-spacing:0.005376pt;}
.ls5_c03283{letter-spacing:0.114048pt;}
.lsb_c03283{letter-spacing:0.451968pt;}
.ls13_c03283{letter-spacing:0.456960pt;}
.lsf_c03283{letter-spacing:0.477312pt;}
.lsa_c03283{letter-spacing:0.515328pt;}
.ls12_c03283{letter-spacing:0.528000pt;}
.ls8_c03283{letter-spacing:0.532224pt;}
.ls3_c03283{letter-spacing:0.544896pt;}
.ls0_c03283{letter-spacing:0.637824pt;}
.ls2_c03283{letter-spacing:0.642048pt;}
.wsd_c03283{word-spacing:-13.445376pt;}
.wsb_c03283{word-spacing:-11.088000pt;}
.ws6_c03283{word-spacing:-11.075328pt;}
.ws4_c03283{word-spacing:-10.344576pt;}
.ws2_c03283{word-spacing:-10.015104pt;}
.ws18_c03283{word-spacing:-0.963072pt;}
.ws11_c03283{word-spacing:-0.958848pt;}
.wse_c03283{word-spacing:-0.865920pt;}
.ws17_c03283{word-spacing:-0.639744pt;}
.ws10_c03283{word-spacing:-0.105600pt;}
.ws14_c03283{word-spacing:-0.088704pt;}
.ws15_c03283{word-spacing:-0.080256pt;}
.ws16_c03283{word-spacing:-0.076032pt;}
.ws13_c03283{word-spacing:-0.050688pt;}
.wsf_c03283{word-spacing:0.000000pt;}
.ws12_c03283{word-spacing:0.384384pt;}
.wsa_c03283{word-spacing:5.892480pt;}
.wsc_c03283{word-spacing:29.600256pt;}
.ws9_c03283{word-spacing:30.966144pt;}
.ws8_c03283{word-spacing:32.127744pt;}
.ws1_c03283{word-spacing:33.563904pt;}
.ws0_c03283{word-spacing:33.796224pt;}
.ws3_c03283{word-spacing:34.860672pt;}
.ws5_c03283{word-spacing:35.468928pt;}
.ws7_c03283{word-spacing:37.357056pt;}
._0_c03283{margin-left:-1.731840pt;}
._2_c03283{width:1.317888pt;}
._4_c03283{width:5.111040pt;}
._6_c03283{width:17.761920pt;}
._7_c03283{width:20.845440pt;}
._5_c03283{width:21.947904pt;}
._1_c03283{width:44.668800pt;}
._3_c03283{width:45.805056pt;}
.fs0_c03283{font-size:42.240000pt;}
.fs1_c03283{font-size:53.760000pt;}
.y0_c03283{bottom:0.000000pt;}
.y1b_c03283{bottom:117.225499pt;}
.y1a_c03283{bottom:130.665211pt;}
.y1d_c03283{bottom:165.866875pt;}
.y1c_c03283{bottom:174.507067pt;}
.y19_c03283{bottom:245.225371pt;}
.y18_c03283{bottom:317.225563pt;}
.y16_c03283{bottom:361.386427pt;}
.y12_c03283{bottom:377.386939pt;}
.y17_c03283{bottom:407.786011pt;}
.y15_c03283{bottom:437.226235pt;}
.y14_c03283{bottom:453.226747pt;}
.y11_c03283{bottom:482.666971pt;}
.y13_c03283{bottom:497.386555pt;}
.y10_c03283{bottom:513.387067pt;}
.y1e_c03283{bottom:546.027067pt;}
.yc_c03283{bottom:579.945467pt;}
.yb_c03283{bottom:593.385179pt;}
.ye_c03283{bottom:628.586875pt;}
.yd_c03283{bottom:637.227067pt;}
.ya_c03283{bottom:707.945339pt;}
.y9_c03283{bottom:779.945531pt;}
.y7_c03283{bottom:823.786427pt;}
.y3_c03283{bottom:839.786939pt;}
.y8_c03283{bottom:870.505979pt;}
.y6_c03283{bottom:899.946203pt;}
.y5_c03283{bottom:915.946715pt;}
.y2_c03283{bottom:945.386939pt;}
.y4_c03283{bottom:959.786555pt;}
.y1_c03283{bottom:975.787067pt;}
.yf_c03283{bottom:1008.747067pt;}
.h3_c03283{height:28.916250pt;}
.h1_c03283{height:37.063125pt;}
.h2_c03283{height:37.166250pt;}
.h4_c03283{height:48.581988pt;}
.h0_c03283{height:1122.666667pt;}
.w1_c03283{width:793.333333pt;}
.w0_c03283{width:793.626667pt;}
.x0_c03283{left:0.000000pt;}
.xe_c03283{left:104.000000pt;}
.x8_c03283{left:391.999872pt;}
.x4_c03283{left:396.160512pt;}
.xc_c03283{left:400.960000pt;}
.x7_c03283{left:404.799648pt;}
.x5_c03283{left:410.560128pt;}
.x1_c03283{left:411.840000pt;}
.xa_c03283{left:429.760320pt;}
.x9_c03283{left:437.439552pt;}
.x6_c03283{left:438.400512pt;}
.xd_c03283{left:450.560320pt;}
.x3_c03283{left:455.039904pt;}
.x2_c03283{left:468.159648pt;}
.xb_c03283{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03284 {
    display:none;
  }
  .loading-indicator_c03284.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03284 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03284 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03284" -> "#page-container .classname_c03284")
 */
.pf_c03284 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03284 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03284.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03284 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03284 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03284 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03284 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03284 {overflow:visible;}
  }
}
.c_c03284 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03284 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03284:after { /* webkit #35443 */
  content: '';
}
.t_c03284:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03284 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03284 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03284 { /* info for Javascript */
  display:none;
}
.l_c03284 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03284 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03284 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03284:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03284 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03284.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03284.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03284 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03284{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03284;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03284{font-family:ff1_c03284;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03284;src:url('chunks/assets/font_f36c1eab885e32e46656a9cd.woff2')format("woff");}.ff2_c03284{font-family:ff2_c03284;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03284;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03284{font-family:ff3_c03284;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03284{vertical-align:0.000000px;}
.v1_c03284{vertical-align:1.439424px;}
.lsc_c03284{letter-spacing:-0.793584px;}
.ls9_c03284{letter-spacing:-0.774576px;}
.ls10_c03284{letter-spacing:-0.736560px;}
.ls6_c03284{letter-spacing:-0.613008px;}
.ls8_c03284{letter-spacing:-0.574992px;}
.ls15_c03284{letter-spacing:-0.304128px;}
.ls11_c03284{letter-spacing:-0.270864px;}
.lse_c03284{letter-spacing:-0.261360px;}
.ls5_c03284{letter-spacing:-0.242352px;}
.ls3_c03284{letter-spacing:-0.118800px;}
.ls14_c03284{letter-spacing:0.000000px;}
.ls0_c03284{letter-spacing:0.006048px;}
.ls4_c03284{letter-spacing:0.128304px;}
.lsd_c03284{letter-spacing:0.242352px;}
.lsb_c03284{letter-spacing:0.508464px;}
.ls13_c03284{letter-spacing:0.514080px;}
.lsf_c03284{letter-spacing:0.536976px;}
.lsa_c03284{letter-spacing:0.579744px;}
.ls12_c03284{letter-spacing:0.594000px;}
.ls7_c03284{letter-spacing:0.598752px;}
.ls2_c03284{letter-spacing:0.613008px;}
.ls1_c03284{letter-spacing:0.717552px;}
.sc__c03284{text-shadow:none;}
.sc0_c03284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03284{-webkit-text-stroke:0px transparent;}
.sc0_c03284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c03284{word-spacing:-15.126048px;}
.wsc_c03284{word-spacing:-12.474000px;}
.ws7_c03284{word-spacing:-12.459744px;}
.ws4_c03284{word-spacing:-11.637648px;}
.ws2_c03284{word-spacing:-11.266992px;}
.ws6_c03284{word-spacing:-11.105424px;}
.ws18_c03284{word-spacing:-1.078704px;}
.wsf_c03284{word-spacing:-0.974160px;}
.ws17_c03284{word-spacing:-0.719712px;}
.ws13_c03284{word-spacing:-0.603504px;}
.ws11_c03284{word-spacing:-0.118800px;}
.ws14_c03284{word-spacing:-0.099792px;}
.ws15_c03284{word-spacing:-0.090288px;}
.ws16_c03284{word-spacing:-0.085536px;}
.ws19_c03284{word-spacing:-0.057024px;}
.ws10_c03284{word-spacing:0.000000px;}
.ws12_c03284{word-spacing:0.432432px;}
.wsb_c03284{word-spacing:6.629040px;}
.wsd_c03284{word-spacing:33.300288px;}
.wsa_c03284{word-spacing:34.836912px;}
.ws9_c03284{word-spacing:36.143712px;}
.ws1_c03284{word-spacing:37.759392px;}
.ws0_c03284{word-spacing:38.020752px;}
.ws3_c03284{word-spacing:39.218256px;}
.ws5_c03284{word-spacing:39.902544px;}
.ws8_c03284{word-spacing:42.026688px;}
._0_c03284{margin-left:-1.948320px;}
._2_c03284{width:1.482624px;}
._4_c03284{width:5.749920px;}
._6_c03284{width:19.982160px;}
._7_c03284{width:23.451120px;}
._5_c03284{width:24.691392px;}
._1_c03284{width:50.252400px;}
._3_c03284{width:51.530688px;}
.fc0_c03284{color:rgb(0,0,0);}
.fs0_c03284{font-size:47.520000px;}
.fs1_c03284{font-size:60.480000px;}
.y0_c03284{bottom:0.000000px;}
.y1b_c03284{bottom:131.878686px;}
.y1a_c03284{bottom:146.998362px;}
.y1d_c03284{bottom:186.600234px;}
.y1c_c03284{bottom:196.320450px;}
.y19_c03284{bottom:275.878542px;}
.y18_c03284{bottom:356.878758px;}
.y16_c03284{bottom:406.559730px;}
.y12_c03284{bottom:424.560306px;}
.y17_c03284{bottom:458.759262px;}
.y15_c03284{bottom:491.879514px;}
.y14_c03284{bottom:509.880090px;}
.y11_c03284{bottom:543.000342px;}
.y13_c03284{bottom:559.559874px;}
.y10_c03284{bottom:577.560450px;}
.y1e_c03284{bottom:614.280450px;}
.yc_c03284{bottom:652.438650px;}
.yb_c03284{bottom:667.558326px;}
.ye_c03284{bottom:707.160234px;}
.yd_c03284{bottom:716.880450px;}
.ya_c03284{bottom:796.438506px;}
.y9_c03284{bottom:877.438722px;}
.y7_c03284{bottom:926.759730px;}
.y3_c03284{bottom:944.760306px;}
.y8_c03284{bottom:979.319226px;}
.y6_c03284{bottom:1012.439478px;}
.y5_c03284{bottom:1030.440054px;}
.y2_c03284{bottom:1063.560306px;}
.y4_c03284{bottom:1079.759874px;}
.y1_c03284{bottom:1097.760450px;}
.yf_c03284{bottom:1134.840450px;}
.h3_c03284{height:32.530781px;}
.h1_c03284{height:41.696016px;}
.h2_c03284{height:41.812031px;}
.h4_c03284{height:54.654737px;}
.h0_c03284{height:1263.000000px;}
.w1_c03284{width:892.500000px;}
.w0_c03284{width:892.830000px;}
.x0_c03284{left:0.000000px;}
.xe_c03284{left:117.000000px;}
.x8_c03284{left:440.999856px;}
.x4_c03284{left:445.680576px;}
.xc_c03284{left:451.080000px;}
.x7_c03284{left:455.399604px;}
.x5_c03284{left:461.880144px;}
.x1_c03284{left:463.320000px;}
.xa_c03284{left:483.480360px;}
.x9_c03284{left:492.119496px;}
.x6_c03284{left:493.200576px;}
.xd_c03284{left:506.880360px;}
.x3_c03284{left:511.919892px;}
.x2_c03284{left:526.679604px;}
.xb_c03284{left:569.880036px;}
@media print{
.v0_c03284{vertical-align:0.000000pt;}
.v1_c03284{vertical-align:1.279488pt;}
.lsc_c03284{letter-spacing:-0.705408pt;}
.ls9_c03284{letter-spacing:-0.688512pt;}
.ls10_c03284{letter-spacing:-0.654720pt;}
.ls6_c03284{letter-spacing:-0.544896pt;}
.ls8_c03284{letter-spacing:-0.511104pt;}
.ls15_c03284{letter-spacing:-0.270336pt;}
.ls11_c03284{letter-spacing:-0.240768pt;}
.lse_c03284{letter-spacing:-0.232320pt;}
.ls5_c03284{letter-spacing:-0.215424pt;}
.ls3_c03284{letter-spacing:-0.105600pt;}
.ls14_c03284{letter-spacing:0.000000pt;}
.ls0_c03284{letter-spacing:0.005376pt;}
.ls4_c03284{letter-spacing:0.114048pt;}
.lsd_c03284{letter-spacing:0.215424pt;}
.lsb_c03284{letter-spacing:0.451968pt;}
.ls13_c03284{letter-spacing:0.456960pt;}
.lsf_c03284{letter-spacing:0.477312pt;}
.lsa_c03284{letter-spacing:0.515328pt;}
.ls12_c03284{letter-spacing:0.528000pt;}
.ls7_c03284{letter-spacing:0.532224pt;}
.ls2_c03284{letter-spacing:0.544896pt;}
.ls1_c03284{letter-spacing:0.637824pt;}
.wse_c03284{word-spacing:-13.445376pt;}
.wsc_c03284{word-spacing:-11.088000pt;}
.ws7_c03284{word-spacing:-11.075328pt;}
.ws4_c03284{word-spacing:-10.344576pt;}
.ws2_c03284{word-spacing:-10.015104pt;}
.ws6_c03284{word-spacing:-9.871488pt;}
.ws18_c03284{word-spacing:-0.958848pt;}
.wsf_c03284{word-spacing:-0.865920pt;}
.ws17_c03284{word-spacing:-0.639744pt;}
.ws13_c03284{word-spacing:-0.536448pt;}
.ws11_c03284{word-spacing:-0.105600pt;}
.ws14_c03284{word-spacing:-0.088704pt;}
.ws15_c03284{word-spacing:-0.080256pt;}
.ws16_c03284{word-spacing:-0.076032pt;}
.ws19_c03284{word-spacing:-0.050688pt;}
.ws10_c03284{word-spacing:0.000000pt;}
.ws12_c03284{word-spacing:0.384384pt;}
.wsb_c03284{word-spacing:5.892480pt;}
.wsd_c03284{word-spacing:29.600256pt;}
.wsa_c03284{word-spacing:30.966144pt;}
.ws9_c03284{word-spacing:32.127744pt;}
.ws1_c03284{word-spacing:33.563904pt;}
.ws0_c03284{word-spacing:33.796224pt;}
.ws3_c03284{word-spacing:34.860672pt;}
.ws5_c03284{word-spacing:35.468928pt;}
.ws8_c03284{word-spacing:37.357056pt;}
._0_c03284{margin-left:-1.731840pt;}
._2_c03284{width:1.317888pt;}
._4_c03284{width:5.111040pt;}
._6_c03284{width:17.761920pt;}
._7_c03284{width:20.845440pt;}
._5_c03284{width:21.947904pt;}
._1_c03284{width:44.668800pt;}
._3_c03284{width:45.805056pt;}
.fs0_c03284{font-size:42.240000pt;}
.fs1_c03284{font-size:53.760000pt;}
.y0_c03284{bottom:0.000000pt;}
.y1b_c03284{bottom:117.225499pt;}
.y1a_c03284{bottom:130.665211pt;}
.y1d_c03284{bottom:165.866875pt;}
.y1c_c03284{bottom:174.507067pt;}
.y19_c03284{bottom:245.225371pt;}
.y18_c03284{bottom:317.225563pt;}
.y16_c03284{bottom:361.386427pt;}
.y12_c03284{bottom:377.386939pt;}
.y17_c03284{bottom:407.786011pt;}
.y15_c03284{bottom:437.226235pt;}
.y14_c03284{bottom:453.226747pt;}
.y11_c03284{bottom:482.666971pt;}
.y13_c03284{bottom:497.386555pt;}
.y10_c03284{bottom:513.387067pt;}
.y1e_c03284{bottom:546.027067pt;}
.yc_c03284{bottom:579.945467pt;}
.yb_c03284{bottom:593.385179pt;}
.ye_c03284{bottom:628.586875pt;}
.yd_c03284{bottom:637.227067pt;}
.ya_c03284{bottom:707.945339pt;}
.y9_c03284{bottom:779.945531pt;}
.y7_c03284{bottom:823.786427pt;}
.y3_c03284{bottom:839.786939pt;}
.y8_c03284{bottom:870.505979pt;}
.y6_c03284{bottom:899.946203pt;}
.y5_c03284{bottom:915.946715pt;}
.y2_c03284{bottom:945.386939pt;}
.y4_c03284{bottom:959.786555pt;}
.y1_c03284{bottom:975.787067pt;}
.yf_c03284{bottom:1008.747067pt;}
.h3_c03284{height:28.916250pt;}
.h1_c03284{height:37.063125pt;}
.h2_c03284{height:37.166250pt;}
.h4_c03284{height:48.581988pt;}
.h0_c03284{height:1122.666667pt;}
.w1_c03284{width:793.333333pt;}
.w0_c03284{width:793.626667pt;}
.x0_c03284{left:0.000000pt;}
.xe_c03284{left:104.000000pt;}
.x8_c03284{left:391.999872pt;}
.x4_c03284{left:396.160512pt;}
.xc_c03284{left:400.960000pt;}
.x7_c03284{left:404.799648pt;}
.x5_c03284{left:410.560128pt;}
.x1_c03284{left:411.840000pt;}
.xa_c03284{left:429.760320pt;}
.x9_c03284{left:437.439552pt;}
.x6_c03284{left:438.400512pt;}
.xd_c03284{left:450.560320pt;}
.x3_c03284{left:455.039904pt;}
.x2_c03284{left:468.159648pt;}
.xb_c03284{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03285 {
    display:none;
  }
  .loading-indicator_c03285.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03285 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03285 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03285" -> "#page-container .classname_c03285")
 */
.pf_c03285 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03285 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03285.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03285 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03285 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03285 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03285 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03285 {overflow:visible;}
  }
}
.c_c03285 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03285 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03285:after { /* webkit #35443 */
  content: '';
}
.t_c03285:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03285 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03285 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03285 { /* info for Javascript */
  display:none;
}
.l_c03285 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03285 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03285 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03285:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03285 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03285.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03285.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03285 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03285{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03285;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03285{font-family:ff1_c03285;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03285;src:url('chunks/assets/font_c8254411fc42434b8e771197.woff2')format("woff");}.ff2_c03285{font-family:ff2_c03285;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03285;src:url('chunks/assets/font_288d5a24569fc3f6a43c9309.woff2')format("woff");}.ff3_c03285{font-family:ff3_c03285;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03285{vertical-align:0.000000px;}
.v1_c03285{vertical-align:1.439424px;}
.lsc_c03285{letter-spacing:-0.793584px;}
.lsd_c03285{letter-spacing:-0.755568px;}
.ls14_c03285{letter-spacing:-0.722304px;}
.ls7_c03285{letter-spacing:-0.613008px;}
.ls9_c03285{letter-spacing:-0.574992px;}
.ls15_c03285{letter-spacing:-0.380160px;}
.ls10_c03285{letter-spacing:-0.275616px;}
.lse_c03285{letter-spacing:-0.261360px;}
.ls6_c03285{letter-spacing:-0.242352px;}
.ls4_c03285{letter-spacing:-0.118800px;}
.ls13_c03285{letter-spacing:0.000000px;}
.ls1_c03285{letter-spacing:0.006048px;}
.ls5_c03285{letter-spacing:0.128304px;}
.lsb_c03285{letter-spacing:0.508464px;}
.ls12_c03285{letter-spacing:0.514080px;}
.lsf_c03285{letter-spacing:0.536976px;}
.lsa_c03285{letter-spacing:0.579744px;}
.ls11_c03285{letter-spacing:0.594000px;}
.ls8_c03285{letter-spacing:0.598752px;}
.ls3_c03285{letter-spacing:0.613008px;}
.ls0_c03285{letter-spacing:0.717552px;}
.ls2_c03285{letter-spacing:0.722304px;}
.sc__c03285{text-shadow:none;}
.sc0_c03285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03285{-webkit-text-stroke:0px transparent;}
.sc0_c03285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03285{word-spacing:-15.126048px;}
.wsa_c03285{word-spacing:-12.474000px;}
.ws6_c03285{word-spacing:-12.459744px;}
.ws9_c03285{word-spacing:-12.416976px;}
.ws4_c03285{word-spacing:-11.637648px;}
.ws2_c03285{word-spacing:-11.266992px;}
.ws18_c03285{word-spacing:-1.083456px;}
.ws11_c03285{word-spacing:-1.078704px;}
.wse_c03285{word-spacing:-0.974160px;}
.ws16_c03285{word-spacing:-0.719712px;}
.ws10_c03285{word-spacing:-0.118800px;}
.ws14_c03285{word-spacing:-0.099792px;}
.ws15_c03285{word-spacing:-0.085536px;}
.wsf_c03285{word-spacing:0.000000px;}
.ws19_c03285{word-spacing:0.019008px;}
.ws17_c03285{word-spacing:0.361152px;}
.ws13_c03285{word-spacing:0.394416px;}
.ws12_c03285{word-spacing:0.432432px;}
.wsb_c03285{word-spacing:33.300288px;}
.ws8_c03285{word-spacing:36.143712px;}
.wsd_c03285{word-spacing:36.742464px;}
.ws1_c03285{word-spacing:37.759392px;}
.ws0_c03285{word-spacing:38.020752px;}
.ws3_c03285{word-spacing:39.218256px;}
.ws5_c03285{word-spacing:39.902544px;}
.ws7_c03285{word-spacing:42.026688px;}
._0_c03285{margin-left:-1.948320px;}
._2_c03285{width:1.482624px;}
._4_c03285{width:5.749920px;}
._1_c03285{width:50.252400px;}
._3_c03285{width:51.530688px;}
.fc0_c03285{color:rgb(0,0,0);}
.fs0_c03285{font-size:47.520000px;}
.fs1_c03285{font-size:60.480000px;}
.y0_c03285{bottom:0.000000px;}
.y19_c03285{bottom:146.998362px;}
.y1b_c03285{bottom:186.600234px;}
.y1a_c03285{bottom:196.320450px;}
.y18_c03285{bottom:275.878542px;}
.y17_c03285{bottom:356.878758px;}
.y15_c03285{bottom:406.559730px;}
.y11_c03285{bottom:424.560306px;}
.y16_c03285{bottom:458.759262px;}
.y14_c03285{bottom:491.879514px;}
.y13_c03285{bottom:509.880090px;}
.y10_c03285{bottom:543.000342px;}
.y12_c03285{bottom:559.559874px;}
.yf_c03285{bottom:577.560450px;}
.y1c_c03285{bottom:614.280450px;}
.yb_c03285{bottom:667.558326px;}
.yd_c03285{bottom:707.160234px;}
.yc_c03285{bottom:716.880450px;}
.ya_c03285{bottom:796.438506px;}
.y9_c03285{bottom:877.438722px;}
.y7_c03285{bottom:926.759730px;}
.y3_c03285{bottom:944.760306px;}
.y8_c03285{bottom:979.319226px;}
.y6_c03285{bottom:1012.439478px;}
.y5_c03285{bottom:1030.440054px;}
.y2_c03285{bottom:1063.560306px;}
.y4_c03285{bottom:1079.759874px;}
.y1_c03285{bottom:1097.760450px;}
.ye_c03285{bottom:1134.840450px;}
.h3_c03285{height:32.530781px;}
.h1_c03285{height:41.696016px;}
.h2_c03285{height:41.812031px;}
.h4_c03285{height:54.654737px;}
.h0_c03285{height:1263.000000px;}
.w1_c03285{width:892.500000px;}
.w0_c03285{width:892.830000px;}
.x0_c03285{left:0.000000px;}
.xd_c03285{left:117.000000px;}
.x8_c03285{left:440.999856px;}
.x4_c03285{left:445.680576px;}
.xb_c03285{left:451.080000px;}
.x7_c03285{left:455.399604px;}
.x5_c03285{left:461.880144px;}
.x1_c03285{left:463.320000px;}
.xa_c03285{left:483.480360px;}
.x9_c03285{left:492.119496px;}
.x6_c03285{left:493.200576px;}
.xc_c03285{left:506.880360px;}
.x3_c03285{left:511.919892px;}
.x2_c03285{left:526.679604px;}
@media print{
.v0_c03285{vertical-align:0.000000pt;}
.v1_c03285{vertical-align:1.279488pt;}
.lsc_c03285{letter-spacing:-0.705408pt;}
.lsd_c03285{letter-spacing:-0.671616pt;}
.ls14_c03285{letter-spacing:-0.642048pt;}
.ls7_c03285{letter-spacing:-0.544896pt;}
.ls9_c03285{letter-spacing:-0.511104pt;}
.ls15_c03285{letter-spacing:-0.337920pt;}
.ls10_c03285{letter-spacing:-0.244992pt;}
.lse_c03285{letter-spacing:-0.232320pt;}
.ls6_c03285{letter-spacing:-0.215424pt;}
.ls4_c03285{letter-spacing:-0.105600pt;}
.ls13_c03285{letter-spacing:0.000000pt;}
.ls1_c03285{letter-spacing:0.005376pt;}
.ls5_c03285{letter-spacing:0.114048pt;}
.lsb_c03285{letter-spacing:0.451968pt;}
.ls12_c03285{letter-spacing:0.456960pt;}
.lsf_c03285{letter-spacing:0.477312pt;}
.lsa_c03285{letter-spacing:0.515328pt;}
.ls11_c03285{letter-spacing:0.528000pt;}
.ls8_c03285{letter-spacing:0.532224pt;}
.ls3_c03285{letter-spacing:0.544896pt;}
.ls0_c03285{letter-spacing:0.637824pt;}
.ls2_c03285{letter-spacing:0.642048pt;}
.wsc_c03285{word-spacing:-13.445376pt;}
.wsa_c03285{word-spacing:-11.088000pt;}
.ws6_c03285{word-spacing:-11.075328pt;}
.ws9_c03285{word-spacing:-11.037312pt;}
.ws4_c03285{word-spacing:-10.344576pt;}
.ws2_c03285{word-spacing:-10.015104pt;}
.ws18_c03285{word-spacing:-0.963072pt;}
.ws11_c03285{word-spacing:-0.958848pt;}
.wse_c03285{word-spacing:-0.865920pt;}
.ws16_c03285{word-spacing:-0.639744pt;}
.ws10_c03285{word-spacing:-0.105600pt;}
.ws14_c03285{word-spacing:-0.088704pt;}
.ws15_c03285{word-spacing:-0.076032pt;}
.wsf_c03285{word-spacing:0.000000pt;}
.ws19_c03285{word-spacing:0.016896pt;}
.ws17_c03285{word-spacing:0.321024pt;}
.ws13_c03285{word-spacing:0.350592pt;}
.ws12_c03285{word-spacing:0.384384pt;}
.wsb_c03285{word-spacing:29.600256pt;}
.ws8_c03285{word-spacing:32.127744pt;}
.wsd_c03285{word-spacing:32.659968pt;}
.ws1_c03285{word-spacing:33.563904pt;}
.ws0_c03285{word-spacing:33.796224pt;}
.ws3_c03285{word-spacing:34.860672pt;}
.ws5_c03285{word-spacing:35.468928pt;}
.ws7_c03285{word-spacing:37.357056pt;}
._0_c03285{margin-left:-1.731840pt;}
._2_c03285{width:1.317888pt;}
._4_c03285{width:5.111040pt;}
._1_c03285{width:44.668800pt;}
._3_c03285{width:45.805056pt;}
.fs0_c03285{font-size:42.240000pt;}
.fs1_c03285{font-size:53.760000pt;}
.y0_c03285{bottom:0.000000pt;}
.y19_c03285{bottom:130.665211pt;}
.y1b_c03285{bottom:165.866875pt;}
.y1a_c03285{bottom:174.507067pt;}
.y18_c03285{bottom:245.225371pt;}
.y17_c03285{bottom:317.225563pt;}
.y15_c03285{bottom:361.386427pt;}
.y11_c03285{bottom:377.386939pt;}
.y16_c03285{bottom:407.786011pt;}
.y14_c03285{bottom:437.226235pt;}
.y13_c03285{bottom:453.226747pt;}
.y10_c03285{bottom:482.666971pt;}
.y12_c03285{bottom:497.386555pt;}
.yf_c03285{bottom:513.387067pt;}
.y1c_c03285{bottom:546.027067pt;}
.yb_c03285{bottom:593.385179pt;}
.yd_c03285{bottom:628.586875pt;}
.yc_c03285{bottom:637.227067pt;}
.ya_c03285{bottom:707.945339pt;}
.y9_c03285{bottom:779.945531pt;}
.y7_c03285{bottom:823.786427pt;}
.y3_c03285{bottom:839.786939pt;}
.y8_c03285{bottom:870.505979pt;}
.y6_c03285{bottom:899.946203pt;}
.y5_c03285{bottom:915.946715pt;}
.y2_c03285{bottom:945.386939pt;}
.y4_c03285{bottom:959.786555pt;}
.y1_c03285{bottom:975.787067pt;}
.ye_c03285{bottom:1008.747067pt;}
.h3_c03285{height:28.916250pt;}
.h1_c03285{height:37.063125pt;}
.h2_c03285{height:37.166250pt;}
.h4_c03285{height:48.581988pt;}
.h0_c03285{height:1122.666667pt;}
.w1_c03285{width:793.333333pt;}
.w0_c03285{width:793.626667pt;}
.x0_c03285{left:0.000000pt;}
.xd_c03285{left:104.000000pt;}
.x8_c03285{left:391.999872pt;}
.x4_c03285{left:396.160512pt;}
.xb_c03285{left:400.960000pt;}
.x7_c03285{left:404.799648pt;}
.x5_c03285{left:410.560128pt;}
.x1_c03285{left:411.840000pt;}
.xa_c03285{left:429.760320pt;}
.x9_c03285{left:437.439552pt;}
.x6_c03285{left:438.400512pt;}
.xc_c03285{left:450.560320pt;}
.x3_c03285{left:455.039904pt;}
.x2_c03285{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03286 {
    display:none;
  }
  .loading-indicator_c03286.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03286 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03286 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03286" -> "#page-container .classname_c03286")
 */
.pf_c03286 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03286 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03286.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03286 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03286 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03286 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03286 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03286 {overflow:visible;}
  }
}
.c_c03286 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03286 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03286:after { /* webkit #35443 */
  content: '';
}
.t_c03286:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03286 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03286 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03286 { /* info for Javascript */
  display:none;
}
.l_c03286 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03286 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03286 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03286:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03286 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03286.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03286.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03286 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03286{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03286;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03286{font-family:ff1_c03286;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03286;src:url('chunks/assets/font_fc011469b9012e41d7adbfe1.woff2')format("woff");}.ff2_c03286{font-family:ff2_c03286;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03286;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03286{font-family:ff3_c03286;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03286{vertical-align:0.000000px;}
.v1_c03286{vertical-align:1.439424px;}
.ls12_c03286{letter-spacing:-0.722304px;}
.ls7_c03286{letter-spacing:-0.613008px;}
.ls9_c03286{letter-spacing:-0.574992px;}
.lse_c03286{letter-spacing:-0.275616px;}
.lsc_c03286{letter-spacing:-0.261360px;}
.ls6_c03286{letter-spacing:-0.242352px;}
.ls4_c03286{letter-spacing:-0.118800px;}
.ls11_c03286{letter-spacing:0.000000px;}
.ls2_c03286{letter-spacing:0.006048px;}
.ls5_c03286{letter-spacing:0.128304px;}
.lsb_c03286{letter-spacing:0.508464px;}
.ls10_c03286{letter-spacing:0.514080px;}
.lsd_c03286{letter-spacing:0.536976px;}
.lsa_c03286{letter-spacing:0.579744px;}
.lsf_c03286{letter-spacing:0.594000px;}
.ls8_c03286{letter-spacing:0.598752px;}
.ls3_c03286{letter-spacing:0.613008px;}
.ls0_c03286{letter-spacing:0.717552px;}
.ls1_c03286{letter-spacing:0.722304px;}
.sc__c03286{text-shadow:none;}
.sc0_c03286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03286{-webkit-text-stroke:0px transparent;}
.sc0_c03286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03286{word-spacing:-15.126048px;}
.wsa_c03286{word-spacing:-12.474000px;}
.ws9_c03286{word-spacing:-12.416976px;}
.ws4_c03286{word-spacing:-11.637648px;}
.ws2_c03286{word-spacing:-11.266992px;}
.ws11_c03286{word-spacing:-1.083456px;}
.ws10_c03286{word-spacing:-1.078704px;}
.wsd_c03286{word-spacing:-0.974160px;}
.ws14_c03286{word-spacing:-0.719712px;}
.wsf_c03286{word-spacing:-0.118800px;}
.ws12_c03286{word-spacing:-0.099792px;}
.ws13_c03286{word-spacing:-0.085536px;}
.wse_c03286{word-spacing:0.000000px;}
.ws15_c03286{word-spacing:0.361152px;}
.wsb_c03286{word-spacing:33.300288px;}
.ws8_c03286{word-spacing:36.143712px;}
.ws6_c03286{word-spacing:36.742464px;}
.ws1_c03286{word-spacing:37.759392px;}
.ws0_c03286{word-spacing:38.020752px;}
.ws3_c03286{word-spacing:39.218256px;}
.ws5_c03286{word-spacing:39.902544px;}
.ws7_c03286{word-spacing:42.026688px;}
._0_c03286{margin-left:-1.948320px;}
._2_c03286{width:1.482624px;}
._4_c03286{width:5.749920px;}
._1_c03286{width:50.252400px;}
._3_c03286{width:51.530688px;}
.fc0_c03286{color:rgb(0,0,0);}
.fs0_c03286{font-size:47.520000px;}
.fs1_c03286{font-size:60.480000px;}
.y0_c03286{bottom:0.000000px;}
.y19_c03286{bottom:146.998362px;}
.y1b_c03286{bottom:186.600234px;}
.y1a_c03286{bottom:196.320450px;}
.y18_c03286{bottom:275.878542px;}
.y17_c03286{bottom:356.878758px;}
.y15_c03286{bottom:406.559730px;}
.y11_c03286{bottom:424.560306px;}
.y16_c03286{bottom:458.759262px;}
.y14_c03286{bottom:491.879514px;}
.y13_c03286{bottom:509.880090px;}
.y10_c03286{bottom:543.000342px;}
.y12_c03286{bottom:559.559874px;}
.yf_c03286{bottom:577.560450px;}
.y1c_c03286{bottom:614.280450px;}
.yb_c03286{bottom:667.558326px;}
.yd_c03286{bottom:707.160234px;}
.yc_c03286{bottom:716.880450px;}
.ya_c03286{bottom:796.438506px;}
.y9_c03286{bottom:877.438722px;}
.y7_c03286{bottom:926.759730px;}
.y3_c03286{bottom:944.760306px;}
.y8_c03286{bottom:979.319226px;}
.y6_c03286{bottom:1012.439478px;}
.y5_c03286{bottom:1030.440054px;}
.y2_c03286{bottom:1063.560306px;}
.y4_c03286{bottom:1079.759874px;}
.y1_c03286{bottom:1097.760450px;}
.ye_c03286{bottom:1134.840450px;}
.h3_c03286{height:32.530781px;}
.h1_c03286{height:41.696016px;}
.h2_c03286{height:41.812031px;}
.h4_c03286{height:54.654737px;}
.h0_c03286{height:1263.000000px;}
.w1_c03286{width:892.500000px;}
.w0_c03286{width:892.830000px;}
.x0_c03286{left:0.000000px;}
.xd_c03286{left:117.000000px;}
.x8_c03286{left:440.999856px;}
.x4_c03286{left:445.680576px;}
.xb_c03286{left:451.080000px;}
.x7_c03286{left:455.399604px;}
.x5_c03286{left:461.880144px;}
.x1_c03286{left:463.320000px;}
.xa_c03286{left:483.480360px;}
.x9_c03286{left:492.119496px;}
.x6_c03286{left:493.200576px;}
.xc_c03286{left:506.880360px;}
.x3_c03286{left:511.919892px;}
.x2_c03286{left:526.679604px;}
@media print{
.v0_c03286{vertical-align:0.000000pt;}
.v1_c03286{vertical-align:1.279488pt;}
.ls12_c03286{letter-spacing:-0.642048pt;}
.ls7_c03286{letter-spacing:-0.544896pt;}
.ls9_c03286{letter-spacing:-0.511104pt;}
.lse_c03286{letter-spacing:-0.244992pt;}
.lsc_c03286{letter-spacing:-0.232320pt;}
.ls6_c03286{letter-spacing:-0.215424pt;}
.ls4_c03286{letter-spacing:-0.105600pt;}
.ls11_c03286{letter-spacing:0.000000pt;}
.ls2_c03286{letter-spacing:0.005376pt;}
.ls5_c03286{letter-spacing:0.114048pt;}
.lsb_c03286{letter-spacing:0.451968pt;}
.ls10_c03286{letter-spacing:0.456960pt;}
.lsd_c03286{letter-spacing:0.477312pt;}
.lsa_c03286{letter-spacing:0.515328pt;}
.lsf_c03286{letter-spacing:0.528000pt;}
.ls8_c03286{letter-spacing:0.532224pt;}
.ls3_c03286{letter-spacing:0.544896pt;}
.ls0_c03286{letter-spacing:0.637824pt;}
.ls1_c03286{letter-spacing:0.642048pt;}
.wsc_c03286{word-spacing:-13.445376pt;}
.wsa_c03286{word-spacing:-11.088000pt;}
.ws9_c03286{word-spacing:-11.037312pt;}
.ws4_c03286{word-spacing:-10.344576pt;}
.ws2_c03286{word-spacing:-10.015104pt;}
.ws11_c03286{word-spacing:-0.963072pt;}
.ws10_c03286{word-spacing:-0.958848pt;}
.wsd_c03286{word-spacing:-0.865920pt;}
.ws14_c03286{word-spacing:-0.639744pt;}
.wsf_c03286{word-spacing:-0.105600pt;}
.ws12_c03286{word-spacing:-0.088704pt;}
.ws13_c03286{word-spacing:-0.076032pt;}
.wse_c03286{word-spacing:0.000000pt;}
.ws15_c03286{word-spacing:0.321024pt;}
.wsb_c03286{word-spacing:29.600256pt;}
.ws8_c03286{word-spacing:32.127744pt;}
.ws6_c03286{word-spacing:32.659968pt;}
.ws1_c03286{word-spacing:33.563904pt;}
.ws0_c03286{word-spacing:33.796224pt;}
.ws3_c03286{word-spacing:34.860672pt;}
.ws5_c03286{word-spacing:35.468928pt;}
.ws7_c03286{word-spacing:37.357056pt;}
._0_c03286{margin-left:-1.731840pt;}
._2_c03286{width:1.317888pt;}
._4_c03286{width:5.111040pt;}
._1_c03286{width:44.668800pt;}
._3_c03286{width:45.805056pt;}
.fs0_c03286{font-size:42.240000pt;}
.fs1_c03286{font-size:53.760000pt;}
.y0_c03286{bottom:0.000000pt;}
.y19_c03286{bottom:130.665211pt;}
.y1b_c03286{bottom:165.866875pt;}
.y1a_c03286{bottom:174.507067pt;}
.y18_c03286{bottom:245.225371pt;}
.y17_c03286{bottom:317.225563pt;}
.y15_c03286{bottom:361.386427pt;}
.y11_c03286{bottom:377.386939pt;}
.y16_c03286{bottom:407.786011pt;}
.y14_c03286{bottom:437.226235pt;}
.y13_c03286{bottom:453.226747pt;}
.y10_c03286{bottom:482.666971pt;}
.y12_c03286{bottom:497.386555pt;}
.yf_c03286{bottom:513.387067pt;}
.y1c_c03286{bottom:546.027067pt;}
.yb_c03286{bottom:593.385179pt;}
.yd_c03286{bottom:628.586875pt;}
.yc_c03286{bottom:637.227067pt;}
.ya_c03286{bottom:707.945339pt;}
.y9_c03286{bottom:779.945531pt;}
.y7_c03286{bottom:823.786427pt;}
.y3_c03286{bottom:839.786939pt;}
.y8_c03286{bottom:870.505979pt;}
.y6_c03286{bottom:899.946203pt;}
.y5_c03286{bottom:915.946715pt;}
.y2_c03286{bottom:945.386939pt;}
.y4_c03286{bottom:959.786555pt;}
.y1_c03286{bottom:975.787067pt;}
.ye_c03286{bottom:1008.747067pt;}
.h3_c03286{height:28.916250pt;}
.h1_c03286{height:37.063125pt;}
.h2_c03286{height:37.166250pt;}
.h4_c03286{height:48.581988pt;}
.h0_c03286{height:1122.666667pt;}
.w1_c03286{width:793.333333pt;}
.w0_c03286{width:793.626667pt;}
.x0_c03286{left:0.000000pt;}
.xd_c03286{left:104.000000pt;}
.x8_c03286{left:391.999872pt;}
.x4_c03286{left:396.160512pt;}
.xb_c03286{left:400.960000pt;}
.x7_c03286{left:404.799648pt;}
.x5_c03286{left:410.560128pt;}
.x1_c03286{left:411.840000pt;}
.xa_c03286{left:429.760320pt;}
.x9_c03286{left:437.439552pt;}
.x6_c03286{left:438.400512pt;}
.xc_c03286{left:450.560320pt;}
.x3_c03286{left:455.039904pt;}
.x2_c03286{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03287 {
    display:none;
  }
  .loading-indicator_c03287.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03287 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03287 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03287" -> "#page-container .classname_c03287")
 */
.pf_c03287 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03287 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03287.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03287 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03287 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03287 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03287 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03287 {overflow:visible;}
  }
}
.c_c03287 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03287 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03287:after { /* webkit #35443 */
  content: '';
}
.t_c03287:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03287 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03287 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03287 { /* info for Javascript */
  display:none;
}
.l_c03287 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03287 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03287 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03287:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03287 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03287.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03287.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03287 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03287{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03287;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03287{font-family:ff1_c03287;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03287;src:url('chunks/assets/font_601c719336c5aa19c4266a56.woff2')format("woff");}.ff2_c03287{font-family:ff2_c03287;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03287;src:url('chunks/assets/font_512a7d0fb09e01ad1f0a7c72.woff2')format("woff");}.ff3_c03287{font-family:ff3_c03287;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03287{vertical-align:0.000000px;}
.v1_c03287{vertical-align:1.439424px;}
.ls14_c03287{letter-spacing:-1.197504px;}
.ls7_c03287{letter-spacing:-0.613008px;}
.ls9_c03287{letter-spacing:-0.574992px;}
.lsc_c03287{letter-spacing:-0.304128px;}
.lsf_c03287{letter-spacing:-0.275616px;}
.lsd_c03287{letter-spacing:-0.261360px;}
.ls6_c03287{letter-spacing:-0.242352px;}
.ls4_c03287{letter-spacing:-0.118800px;}
.ls12_c03287{letter-spacing:0.000000px;}
.ls2_c03287{letter-spacing:0.006048px;}
.ls5_c03287{letter-spacing:0.128304px;}
.lsb_c03287{letter-spacing:0.508464px;}
.ls11_c03287{letter-spacing:0.514080px;}
.lse_c03287{letter-spacing:0.536976px;}
.lsa_c03287{letter-spacing:0.579744px;}
.ls10_c03287{letter-spacing:0.594000px;}
.ls8_c03287{letter-spacing:0.598752px;}
.ls3_c03287{letter-spacing:0.613008px;}
.ls13_c03287{letter-spacing:0.679536px;}
.ls0_c03287{letter-spacing:0.717552px;}
.ls1_c03287{letter-spacing:0.722304px;}
.sc__c03287{text-shadow:none;}
.sc0_c03287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03287{-webkit-text-stroke:0px transparent;}
.sc0_c03287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03287{word-spacing:-15.126048px;}
.wsa_c03287{word-spacing:-12.474000px;}
.ws9_c03287{word-spacing:-12.416976px;}
.ws4_c03287{word-spacing:-11.637648px;}
.ws2_c03287{word-spacing:-11.266992px;}
.ws11_c03287{word-spacing:-1.083456px;}
.ws10_c03287{word-spacing:-1.078704px;}
.ws16_c03287{word-spacing:-1.040688px;}
.wsd_c03287{word-spacing:-0.974160px;}
.ws15_c03287{word-spacing:-0.719712px;}
.wsf_c03287{word-spacing:-0.118800px;}
.ws13_c03287{word-spacing:-0.099792px;}
.ws14_c03287{word-spacing:-0.085536px;}
.ws12_c03287{word-spacing:-0.057024px;}
.wse_c03287{word-spacing:0.000000px;}
.ws17_c03287{word-spacing:0.836352px;}
.wsb_c03287{word-spacing:33.300288px;}
.ws8_c03287{word-spacing:36.143712px;}
.ws6_c03287{word-spacing:36.742464px;}
.ws1_c03287{word-spacing:37.759392px;}
.ws0_c03287{word-spacing:38.020752px;}
.ws3_c03287{word-spacing:39.218256px;}
.ws5_c03287{word-spacing:39.902544px;}
.ws7_c03287{word-spacing:42.026688px;}
._0_c03287{margin-left:-1.948320px;}
._2_c03287{width:1.482624px;}
._6_c03287{width:2.770416px;}
._4_c03287{width:5.749920px;}
._5_c03287{width:14.830992px;}
._1_c03287{width:50.252400px;}
._3_c03287{width:51.530688px;}
.fc0_c03287{color:rgb(0,0,0);}
.fs0_c03287{font-size:47.520000px;}
.fs1_c03287{font-size:60.480000px;}
.y0_c03287{bottom:0.000000px;}
.y19_c03287{bottom:146.998362px;}
.y1b_c03287{bottom:186.600234px;}
.y1a_c03287{bottom:196.320450px;}
.y18_c03287{bottom:275.878542px;}
.y17_c03287{bottom:356.878758px;}
.y15_c03287{bottom:406.559730px;}
.y11_c03287{bottom:424.560306px;}
.y16_c03287{bottom:458.759262px;}
.y14_c03287{bottom:491.879514px;}
.y13_c03287{bottom:509.880090px;}
.y10_c03287{bottom:543.000342px;}
.y12_c03287{bottom:559.559874px;}
.yf_c03287{bottom:577.560450px;}
.y1c_c03287{bottom:614.280450px;}
.yb_c03287{bottom:667.558326px;}
.yd_c03287{bottom:707.160234px;}
.yc_c03287{bottom:716.880450px;}
.ya_c03287{bottom:796.438506px;}
.y9_c03287{bottom:877.438722px;}
.y7_c03287{bottom:926.759730px;}
.y3_c03287{bottom:944.760306px;}
.y8_c03287{bottom:979.319226px;}
.y6_c03287{bottom:1012.439478px;}
.y5_c03287{bottom:1030.440054px;}
.y2_c03287{bottom:1063.560306px;}
.y4_c03287{bottom:1079.759874px;}
.y1_c03287{bottom:1097.760450px;}
.ye_c03287{bottom:1134.840450px;}
.h3_c03287{height:32.530781px;}
.h1_c03287{height:41.696016px;}
.h2_c03287{height:41.812031px;}
.h4_c03287{height:54.654737px;}
.h0_c03287{height:1263.000000px;}
.w1_c03287{width:892.500000px;}
.w0_c03287{width:892.830000px;}
.x0_c03287{left:0.000000px;}
.xd_c03287{left:117.000000px;}
.x8_c03287{left:440.999856px;}
.x4_c03287{left:445.680576px;}
.xb_c03287{left:451.080000px;}
.x7_c03287{left:455.399604px;}
.x5_c03287{left:461.880144px;}
.x1_c03287{left:463.320000px;}
.xa_c03287{left:483.480360px;}
.x9_c03287{left:492.119496px;}
.x6_c03287{left:493.200576px;}
.xc_c03287{left:506.880360px;}
.x3_c03287{left:511.919892px;}
.x2_c03287{left:526.679604px;}
@media print{
.v0_c03287{vertical-align:0.000000pt;}
.v1_c03287{vertical-align:1.279488pt;}
.ls14_c03287{letter-spacing:-1.064448pt;}
.ls7_c03287{letter-spacing:-0.544896pt;}
.ls9_c03287{letter-spacing:-0.511104pt;}
.lsc_c03287{letter-spacing:-0.270336pt;}
.lsf_c03287{letter-spacing:-0.244992pt;}
.lsd_c03287{letter-spacing:-0.232320pt;}
.ls6_c03287{letter-spacing:-0.215424pt;}
.ls4_c03287{letter-spacing:-0.105600pt;}
.ls12_c03287{letter-spacing:0.000000pt;}
.ls2_c03287{letter-spacing:0.005376pt;}
.ls5_c03287{letter-spacing:0.114048pt;}
.lsb_c03287{letter-spacing:0.451968pt;}
.ls11_c03287{letter-spacing:0.456960pt;}
.lse_c03287{letter-spacing:0.477312pt;}
.lsa_c03287{letter-spacing:0.515328pt;}
.ls10_c03287{letter-spacing:0.528000pt;}
.ls8_c03287{letter-spacing:0.532224pt;}
.ls3_c03287{letter-spacing:0.544896pt;}
.ls13_c03287{letter-spacing:0.604032pt;}
.ls0_c03287{letter-spacing:0.637824pt;}
.ls1_c03287{letter-spacing:0.642048pt;}
.wsc_c03287{word-spacing:-13.445376pt;}
.wsa_c03287{word-spacing:-11.088000pt;}
.ws9_c03287{word-spacing:-11.037312pt;}
.ws4_c03287{word-spacing:-10.344576pt;}
.ws2_c03287{word-spacing:-10.015104pt;}
.ws11_c03287{word-spacing:-0.963072pt;}
.ws10_c03287{word-spacing:-0.958848pt;}
.ws16_c03287{word-spacing:-0.925056pt;}
.wsd_c03287{word-spacing:-0.865920pt;}
.ws15_c03287{word-spacing:-0.639744pt;}
.wsf_c03287{word-spacing:-0.105600pt;}
.ws13_c03287{word-spacing:-0.088704pt;}
.ws14_c03287{word-spacing:-0.076032pt;}
.ws12_c03287{word-spacing:-0.050688pt;}
.wse_c03287{word-spacing:0.000000pt;}
.ws17_c03287{word-spacing:0.743424pt;}
.wsb_c03287{word-spacing:29.600256pt;}
.ws8_c03287{word-spacing:32.127744pt;}
.ws6_c03287{word-spacing:32.659968pt;}
.ws1_c03287{word-spacing:33.563904pt;}
.ws0_c03287{word-spacing:33.796224pt;}
.ws3_c03287{word-spacing:34.860672pt;}
.ws5_c03287{word-spacing:35.468928pt;}
.ws7_c03287{word-spacing:37.357056pt;}
._0_c03287{margin-left:-1.731840pt;}
._2_c03287{width:1.317888pt;}
._6_c03287{width:2.462592pt;}
._4_c03287{width:5.111040pt;}
._5_c03287{width:13.183104pt;}
._1_c03287{width:44.668800pt;}
._3_c03287{width:45.805056pt;}
.fs0_c03287{font-size:42.240000pt;}
.fs1_c03287{font-size:53.760000pt;}
.y0_c03287{bottom:0.000000pt;}
.y19_c03287{bottom:130.665211pt;}
.y1b_c03287{bottom:165.866875pt;}
.y1a_c03287{bottom:174.507067pt;}
.y18_c03287{bottom:245.225371pt;}
.y17_c03287{bottom:317.225563pt;}
.y15_c03287{bottom:361.386427pt;}
.y11_c03287{bottom:377.386939pt;}
.y16_c03287{bottom:407.786011pt;}
.y14_c03287{bottom:437.226235pt;}
.y13_c03287{bottom:453.226747pt;}
.y10_c03287{bottom:482.666971pt;}
.y12_c03287{bottom:497.386555pt;}
.yf_c03287{bottom:513.387067pt;}
.y1c_c03287{bottom:546.027067pt;}
.yb_c03287{bottom:593.385179pt;}
.yd_c03287{bottom:628.586875pt;}
.yc_c03287{bottom:637.227067pt;}
.ya_c03287{bottom:707.945339pt;}
.y9_c03287{bottom:779.945531pt;}
.y7_c03287{bottom:823.786427pt;}
.y3_c03287{bottom:839.786939pt;}
.y8_c03287{bottom:870.505979pt;}
.y6_c03287{bottom:899.946203pt;}
.y5_c03287{bottom:915.946715pt;}
.y2_c03287{bottom:945.386939pt;}
.y4_c03287{bottom:959.786555pt;}
.y1_c03287{bottom:975.787067pt;}
.ye_c03287{bottom:1008.747067pt;}
.h3_c03287{height:28.916250pt;}
.h1_c03287{height:37.063125pt;}
.h2_c03287{height:37.166250pt;}
.h4_c03287{height:48.581988pt;}
.h0_c03287{height:1122.666667pt;}
.w1_c03287{width:793.333333pt;}
.w0_c03287{width:793.626667pt;}
.x0_c03287{left:0.000000pt;}
.xd_c03287{left:104.000000pt;}
.x8_c03287{left:391.999872pt;}
.x4_c03287{left:396.160512pt;}
.xb_c03287{left:400.960000pt;}
.x7_c03287{left:404.799648pt;}
.x5_c03287{left:410.560128pt;}
.x1_c03287{left:411.840000pt;}
.xa_c03287{left:429.760320pt;}
.x9_c03287{left:437.439552pt;}
.x6_c03287{left:438.400512pt;}
.xc_c03287{left:450.560320pt;}
.x3_c03287{left:455.039904pt;}
.x2_c03287{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03288 {
    display:none;
  }
  .loading-indicator_c03288.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03288 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03288 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03288" -> "#page-container .classname_c03288")
 */
.pf_c03288 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03288 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03288.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03288 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03288 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03288 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03288 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03288 {overflow:visible;}
  }
}
.c_c03288 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03288 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03288:after { /* webkit #35443 */
  content: '';
}
.t_c03288:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03288 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03288 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03288 { /* info for Javascript */
  display:none;
}
.l_c03288 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03288 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03288 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03288:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03288 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03288.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03288.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03288 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03288{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03288;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03288{font-family:ff1_c03288;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03288;src:url('chunks/assets/font_981d0a60737ee1df538f05a0.woff2')format("woff");}.ff2_c03288{font-family:ff2_c03288;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03288;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03288{font-family:ff3_c03288;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03288{vertical-align:0.000000px;}
.v1_c03288{vertical-align:1.439424px;}
.ls8_c03288{letter-spacing:-0.613008px;}
.lsa_c03288{letter-spacing:-0.574992px;}
.ls10_c03288{letter-spacing:-0.275616px;}
.lse_c03288{letter-spacing:-0.261360px;}
.ls7_c03288{letter-spacing:-0.242352px;}
.ls5_c03288{letter-spacing:-0.118800px;}
.lsd_c03288{letter-spacing:-0.014256px;}
.ls13_c03288{letter-spacing:0.000000px;}
.ls1_c03288{letter-spacing:0.006048px;}
.ls6_c03288{letter-spacing:0.128304px;}
.lsc_c03288{letter-spacing:0.508464px;}
.ls12_c03288{letter-spacing:0.514080px;}
.lsf_c03288{letter-spacing:0.536976px;}
.lsb_c03288{letter-spacing:0.579744px;}
.ls11_c03288{letter-spacing:0.594000px;}
.ls9_c03288{letter-spacing:0.598752px;}
.ls3_c03288{letter-spacing:0.613008px;}
.ls0_c03288{letter-spacing:0.651024px;}
.ls4_c03288{letter-spacing:0.717552px;}
.ls2_c03288{letter-spacing:0.722304px;}
.sc__c03288{text-shadow:none;}
.sc0_c03288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03288{-webkit-text-stroke:0px transparent;}
.sc0_c03288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03288{word-spacing:-15.126048px;}
.wsa_c03288{word-spacing:-12.474000px;}
.ws6_c03288{word-spacing:-12.459744px;}
.ws9_c03288{word-spacing:-12.416976px;}
.ws7_c03288{word-spacing:-12.388464px;}
.ws4_c03288{word-spacing:-11.637648px;}
.ws5_c03288{word-spacing:-11.305008px;}
.ws2_c03288{word-spacing:-11.266992px;}
.ws18_c03288{word-spacing:-1.083456px;}
.ws12_c03288{word-spacing:-1.012176px;}
.ws10_c03288{word-spacing:-0.974160px;}
.ws17_c03288{word-spacing:-0.719712px;}
.ws14_c03288{word-spacing:-0.346896px;}
.ws13_c03288{word-spacing:-0.118800px;}
.ws15_c03288{word-spacing:-0.099792px;}
.ws16_c03288{word-spacing:-0.085536px;}
.ws11_c03288{word-spacing:0.000000px;}
.wsb_c03288{word-spacing:33.300288px;}
.ws8_c03288{word-spacing:36.143712px;}
.wse_c03288{word-spacing:36.742464px;}
.ws1_c03288{word-spacing:37.759392px;}
.ws0_c03288{word-spacing:38.020752px;}
.ws3_c03288{word-spacing:39.218256px;}
.wsd_c03288{word-spacing:39.902544px;}
.wsf_c03288{word-spacing:42.026688px;}
._0_c03288{margin-left:-1.948320px;}
._2_c03288{width:1.482624px;}
._4_c03288{width:5.749920px;}
._1_c03288{width:50.252400px;}
._3_c03288{width:51.530688px;}
.fc0_c03288{color:rgb(0,0,0);}
.fs0_c03288{font-size:47.520000px;}
.fs1_c03288{font-size:60.480000px;}
.y0_c03288{bottom:0.000000px;}
.y19_c03288{bottom:146.998362px;}
.y1b_c03288{bottom:186.600234px;}
.y1a_c03288{bottom:196.320450px;}
.y18_c03288{bottom:275.878542px;}
.y17_c03288{bottom:356.878758px;}
.y15_c03288{bottom:406.559730px;}
.y11_c03288{bottom:424.560306px;}
.y16_c03288{bottom:458.759262px;}
.y14_c03288{bottom:491.879514px;}
.y13_c03288{bottom:509.880090px;}
.y10_c03288{bottom:543.000342px;}
.y12_c03288{bottom:559.559874px;}
.yf_c03288{bottom:577.560450px;}
.y1c_c03288{bottom:614.280450px;}
.yb_c03288{bottom:667.558326px;}
.yd_c03288{bottom:707.160234px;}
.yc_c03288{bottom:716.880450px;}
.ya_c03288{bottom:796.438506px;}
.y9_c03288{bottom:877.438722px;}
.y7_c03288{bottom:926.759730px;}
.y3_c03288{bottom:944.760306px;}
.y8_c03288{bottom:979.319226px;}
.y6_c03288{bottom:1012.439478px;}
.y5_c03288{bottom:1030.440054px;}
.y2_c03288{bottom:1063.560306px;}
.y4_c03288{bottom:1079.759874px;}
.y1_c03288{bottom:1097.760450px;}
.ye_c03288{bottom:1134.840450px;}
.h3_c03288{height:32.530781px;}
.h1_c03288{height:41.696016px;}
.h2_c03288{height:41.812031px;}
.h4_c03288{height:54.654737px;}
.h0_c03288{height:1263.000000px;}
.w1_c03288{width:892.500000px;}
.w0_c03288{width:892.830000px;}
.x0_c03288{left:0.000000px;}
.xd_c03288{left:117.000000px;}
.x8_c03288{left:441.001044px;}
.x4_c03288{left:445.680576px;}
.xb_c03288{left:451.080000px;}
.x7_c03288{left:455.400792px;}
.x5_c03288{left:461.880144px;}
.x1_c03288{left:463.320000px;}
.xa_c03288{left:483.481548px;}
.x9_c03288{left:492.120684px;}
.x6_c03288{left:493.200576px;}
.xc_c03288{left:506.880360px;}
.x3_c03288{left:511.919892px;}
.x2_c03288{left:526.679604px;}
@media print{
.v0_c03288{vertical-align:0.000000pt;}
.v1_c03288{vertical-align:1.279488pt;}
.ls8_c03288{letter-spacing:-0.544896pt;}
.lsa_c03288{letter-spacing:-0.511104pt;}
.ls10_c03288{letter-spacing:-0.244992pt;}
.lse_c03288{letter-spacing:-0.232320pt;}
.ls7_c03288{letter-spacing:-0.215424pt;}
.ls5_c03288{letter-spacing:-0.105600pt;}
.lsd_c03288{letter-spacing:-0.012672pt;}
.ls13_c03288{letter-spacing:0.000000pt;}
.ls1_c03288{letter-spacing:0.005376pt;}
.ls6_c03288{letter-spacing:0.114048pt;}
.lsc_c03288{letter-spacing:0.451968pt;}
.ls12_c03288{letter-spacing:0.456960pt;}
.lsf_c03288{letter-spacing:0.477312pt;}
.lsb_c03288{letter-spacing:0.515328pt;}
.ls11_c03288{letter-spacing:0.528000pt;}
.ls9_c03288{letter-spacing:0.532224pt;}
.ls3_c03288{letter-spacing:0.544896pt;}
.ls0_c03288{letter-spacing:0.578688pt;}
.ls4_c03288{letter-spacing:0.637824pt;}
.ls2_c03288{letter-spacing:0.642048pt;}
.wsc_c03288{word-spacing:-13.445376pt;}
.wsa_c03288{word-spacing:-11.088000pt;}
.ws6_c03288{word-spacing:-11.075328pt;}
.ws9_c03288{word-spacing:-11.037312pt;}
.ws7_c03288{word-spacing:-11.011968pt;}
.ws4_c03288{word-spacing:-10.344576pt;}
.ws5_c03288{word-spacing:-10.048896pt;}
.ws2_c03288{word-spacing:-10.015104pt;}
.ws18_c03288{word-spacing:-0.963072pt;}
.ws12_c03288{word-spacing:-0.899712pt;}
.ws10_c03288{word-spacing:-0.865920pt;}
.ws17_c03288{word-spacing:-0.639744pt;}
.ws14_c03288{word-spacing:-0.308352pt;}
.ws13_c03288{word-spacing:-0.105600pt;}
.ws15_c03288{word-spacing:-0.088704pt;}
.ws16_c03288{word-spacing:-0.076032pt;}
.ws11_c03288{word-spacing:0.000000pt;}
.wsb_c03288{word-spacing:29.600256pt;}
.ws8_c03288{word-spacing:32.127744pt;}
.wse_c03288{word-spacing:32.659968pt;}
.ws1_c03288{word-spacing:33.563904pt;}
.ws0_c03288{word-spacing:33.796224pt;}
.ws3_c03288{word-spacing:34.860672pt;}
.wsd_c03288{word-spacing:35.468928pt;}
.wsf_c03288{word-spacing:37.357056pt;}
._0_c03288{margin-left:-1.731840pt;}
._2_c03288{width:1.317888pt;}
._4_c03288{width:5.111040pt;}
._1_c03288{width:44.668800pt;}
._3_c03288{width:45.805056pt;}
.fs0_c03288{font-size:42.240000pt;}
.fs1_c03288{font-size:53.760000pt;}
.y0_c03288{bottom:0.000000pt;}
.y19_c03288{bottom:130.665211pt;}
.y1b_c03288{bottom:165.866875pt;}
.y1a_c03288{bottom:174.507067pt;}
.y18_c03288{bottom:245.225371pt;}
.y17_c03288{bottom:317.225563pt;}
.y15_c03288{bottom:361.386427pt;}
.y11_c03288{bottom:377.386939pt;}
.y16_c03288{bottom:407.786011pt;}
.y14_c03288{bottom:437.226235pt;}
.y13_c03288{bottom:453.226747pt;}
.y10_c03288{bottom:482.666971pt;}
.y12_c03288{bottom:497.386555pt;}
.yf_c03288{bottom:513.387067pt;}
.y1c_c03288{bottom:546.027067pt;}
.yb_c03288{bottom:593.385179pt;}
.yd_c03288{bottom:628.586875pt;}
.yc_c03288{bottom:637.227067pt;}
.ya_c03288{bottom:707.945339pt;}
.y9_c03288{bottom:779.945531pt;}
.y7_c03288{bottom:823.786427pt;}
.y3_c03288{bottom:839.786939pt;}
.y8_c03288{bottom:870.505979pt;}
.y6_c03288{bottom:899.946203pt;}
.y5_c03288{bottom:915.946715pt;}
.y2_c03288{bottom:945.386939pt;}
.y4_c03288{bottom:959.786555pt;}
.y1_c03288{bottom:975.787067pt;}
.ye_c03288{bottom:1008.747067pt;}
.h3_c03288{height:28.916250pt;}
.h1_c03288{height:37.063125pt;}
.h2_c03288{height:37.166250pt;}
.h4_c03288{height:48.581988pt;}
.h0_c03288{height:1122.666667pt;}
.w1_c03288{width:793.333333pt;}
.w0_c03288{width:793.626667pt;}
.x0_c03288{left:0.000000pt;}
.xd_c03288{left:104.000000pt;}
.x8_c03288{left:392.000928pt;}
.x4_c03288{left:396.160512pt;}
.xb_c03288{left:400.960000pt;}
.x7_c03288{left:404.800704pt;}
.x5_c03288{left:410.560128pt;}
.x1_c03288{left:411.840000pt;}
.xa_c03288{left:429.761376pt;}
.x9_c03288{left:437.440608pt;}
.x6_c03288{left:438.400512pt;}
.xc_c03288{left:450.560320pt;}
.x3_c03288{left:455.039904pt;}
.x2_c03288{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03289 {
    display:none;
  }
  .loading-indicator_c03289.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03289 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03289 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03289" -> "#page-container .classname_c03289")
 */
.pf_c03289 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03289 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03289.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03289 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03289 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03289 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03289 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03289 {overflow:visible;}
  }
}
.c_c03289 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03289 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03289:after { /* webkit #35443 */
  content: '';
}
.t_c03289:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03289 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03289 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03289 { /* info for Javascript */
  display:none;
}
.l_c03289 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03289 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03289 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03289:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03289 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03289.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03289.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03289 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03289{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03289;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03289{font-family:ff1_c03289;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03289;src:url('chunks/assets/font_49ff856f28ffbb68a12cbf12.woff2')format("woff");}.ff2_c03289{font-family:ff2_c03289;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03289;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03289{font-family:ff3_c03289;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03289{vertical-align:0.000000px;}
.v1_c03289{vertical-align:1.439424px;}
.ls7_c03289{letter-spacing:-0.613008px;}
.ls9_c03289{letter-spacing:-0.574992px;}
.ls12_c03289{letter-spacing:-0.304128px;}
.lse_c03289{letter-spacing:-0.275616px;}
.lsc_c03289{letter-spacing:-0.261360px;}
.ls6_c03289{letter-spacing:-0.242352px;}
.ls4_c03289{letter-spacing:-0.118800px;}
.ls11_c03289{letter-spacing:0.000000px;}
.ls1_c03289{letter-spacing:0.006048px;}
.ls5_c03289{letter-spacing:0.128304px;}
.lsb_c03289{letter-spacing:0.508464px;}
.ls10_c03289{letter-spacing:0.514080px;}
.lsd_c03289{letter-spacing:0.536976px;}
.lsa_c03289{letter-spacing:0.579744px;}
.lsf_c03289{letter-spacing:0.594000px;}
.ls8_c03289{letter-spacing:0.598752px;}
.ls2_c03289{letter-spacing:0.613008px;}
.ls3_c03289{letter-spacing:0.717552px;}
.ls0_c03289{letter-spacing:0.722304px;}
.sc__c03289{text-shadow:none;}
.sc0_c03289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03289{-webkit-text-stroke:0px transparent;}
.sc0_c03289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03289{word-spacing:-15.126048px;}
.wsa_c03289{word-spacing:-12.474000px;}
.ws8_c03289{word-spacing:-12.459744px;}
.ws9_c03289{word-spacing:-12.416976px;}
.ws4_c03289{word-spacing:-11.637648px;}
.ws2_c03289{word-spacing:-11.266992px;}
.ws11_c03289{word-spacing:-1.083456px;}
.wse_c03289{word-spacing:-0.974160px;}
.ws14_c03289{word-spacing:-0.719712px;}
.ws10_c03289{word-spacing:-0.118800px;}
.ws12_c03289{word-spacing:-0.099792px;}
.ws13_c03289{word-spacing:-0.085536px;}
.ws15_c03289{word-spacing:-0.057024px;}
.wsf_c03289{word-spacing:0.000000px;}
.wsb_c03289{word-spacing:33.300288px;}
.wsd_c03289{word-spacing:36.143712px;}
.ws6_c03289{word-spacing:36.742464px;}
.ws1_c03289{word-spacing:37.759392px;}
.ws0_c03289{word-spacing:38.020752px;}
.ws3_c03289{word-spacing:39.218256px;}
.ws5_c03289{word-spacing:39.902544px;}
.ws7_c03289{word-spacing:42.026688px;}
._0_c03289{margin-left:-1.948320px;}
._2_c03289{width:1.482624px;}
._4_c03289{width:5.749920px;}
._1_c03289{width:50.252400px;}
._3_c03289{width:51.530688px;}
.fc0_c03289{color:rgb(0,0,0);}
.fs0_c03289{font-size:47.520000px;}
.fs1_c03289{font-size:60.480000px;}
.y0_c03289{bottom:0.000000px;}
.y19_c03289{bottom:146.998362px;}
.y1b_c03289{bottom:186.600234px;}
.y1a_c03289{bottom:196.320450px;}
.y18_c03289{bottom:275.878542px;}
.y17_c03289{bottom:356.878758px;}
.y15_c03289{bottom:406.559730px;}
.y11_c03289{bottom:424.560306px;}
.y16_c03289{bottom:458.759262px;}
.y14_c03289{bottom:491.879514px;}
.y13_c03289{bottom:509.880090px;}
.y10_c03289{bottom:543.000342px;}
.y12_c03289{bottom:559.559874px;}
.yf_c03289{bottom:577.560450px;}
.y1c_c03289{bottom:614.280450px;}
.yb_c03289{bottom:667.558326px;}
.yd_c03289{bottom:707.160234px;}
.yc_c03289{bottom:716.880450px;}
.ya_c03289{bottom:796.438506px;}
.y9_c03289{bottom:877.438722px;}
.y7_c03289{bottom:926.759730px;}
.y3_c03289{bottom:944.760306px;}
.y8_c03289{bottom:979.319226px;}
.y6_c03289{bottom:1012.439478px;}
.y5_c03289{bottom:1030.440054px;}
.y2_c03289{bottom:1063.560306px;}
.y4_c03289{bottom:1079.759874px;}
.y1_c03289{bottom:1097.760450px;}
.ye_c03289{bottom:1134.840450px;}
.h3_c03289{height:32.530781px;}
.h1_c03289{height:41.696016px;}
.h2_c03289{height:41.812031px;}
.h4_c03289{height:54.654737px;}
.h0_c03289{height:1263.000000px;}
.w1_c03289{width:892.500000px;}
.w0_c03289{width:892.830000px;}
.x0_c03289{left:0.000000px;}
.xd_c03289{left:117.000000px;}
.x8_c03289{left:440.999856px;}
.x4_c03289{left:445.680576px;}
.xb_c03289{left:451.080000px;}
.x7_c03289{left:455.399604px;}
.x5_c03289{left:461.880144px;}
.x1_c03289{left:463.320000px;}
.xa_c03289{left:483.480360px;}
.x9_c03289{left:492.119496px;}
.x6_c03289{left:493.200576px;}
.xc_c03289{left:506.880360px;}
.x3_c03289{left:511.919892px;}
.x2_c03289{left:526.679604px;}
@media print{
.v0_c03289{vertical-align:0.000000pt;}
.v1_c03289{vertical-align:1.279488pt;}
.ls7_c03289{letter-spacing:-0.544896pt;}
.ls9_c03289{letter-spacing:-0.511104pt;}
.ls12_c03289{letter-spacing:-0.270336pt;}
.lse_c03289{letter-spacing:-0.244992pt;}
.lsc_c03289{letter-spacing:-0.232320pt;}
.ls6_c03289{letter-spacing:-0.215424pt;}
.ls4_c03289{letter-spacing:-0.105600pt;}
.ls11_c03289{letter-spacing:0.000000pt;}
.ls1_c03289{letter-spacing:0.005376pt;}
.ls5_c03289{letter-spacing:0.114048pt;}
.lsb_c03289{letter-spacing:0.451968pt;}
.ls10_c03289{letter-spacing:0.456960pt;}
.lsd_c03289{letter-spacing:0.477312pt;}
.lsa_c03289{letter-spacing:0.515328pt;}
.lsf_c03289{letter-spacing:0.528000pt;}
.ls8_c03289{letter-spacing:0.532224pt;}
.ls2_c03289{letter-spacing:0.544896pt;}
.ls3_c03289{letter-spacing:0.637824pt;}
.ls0_c03289{letter-spacing:0.642048pt;}
.wsc_c03289{word-spacing:-13.445376pt;}
.wsa_c03289{word-spacing:-11.088000pt;}
.ws8_c03289{word-spacing:-11.075328pt;}
.ws9_c03289{word-spacing:-11.037312pt;}
.ws4_c03289{word-spacing:-10.344576pt;}
.ws2_c03289{word-spacing:-10.015104pt;}
.ws11_c03289{word-spacing:-0.963072pt;}
.wse_c03289{word-spacing:-0.865920pt;}
.ws14_c03289{word-spacing:-0.639744pt;}
.ws10_c03289{word-spacing:-0.105600pt;}
.ws12_c03289{word-spacing:-0.088704pt;}
.ws13_c03289{word-spacing:-0.076032pt;}
.ws15_c03289{word-spacing:-0.050688pt;}
.wsf_c03289{word-spacing:0.000000pt;}
.wsb_c03289{word-spacing:29.600256pt;}
.wsd_c03289{word-spacing:32.127744pt;}
.ws6_c03289{word-spacing:32.659968pt;}
.ws1_c03289{word-spacing:33.563904pt;}
.ws0_c03289{word-spacing:33.796224pt;}
.ws3_c03289{word-spacing:34.860672pt;}
.ws5_c03289{word-spacing:35.468928pt;}
.ws7_c03289{word-spacing:37.357056pt;}
._0_c03289{margin-left:-1.731840pt;}
._2_c03289{width:1.317888pt;}
._4_c03289{width:5.111040pt;}
._1_c03289{width:44.668800pt;}
._3_c03289{width:45.805056pt;}
.fs0_c03289{font-size:42.240000pt;}
.fs1_c03289{font-size:53.760000pt;}
.y0_c03289{bottom:0.000000pt;}
.y19_c03289{bottom:130.665211pt;}
.y1b_c03289{bottom:165.866875pt;}
.y1a_c03289{bottom:174.507067pt;}
.y18_c03289{bottom:245.225371pt;}
.y17_c03289{bottom:317.225563pt;}
.y15_c03289{bottom:361.386427pt;}
.y11_c03289{bottom:377.386939pt;}
.y16_c03289{bottom:407.786011pt;}
.y14_c03289{bottom:437.226235pt;}
.y13_c03289{bottom:453.226747pt;}
.y10_c03289{bottom:482.666971pt;}
.y12_c03289{bottom:497.386555pt;}
.yf_c03289{bottom:513.387067pt;}
.y1c_c03289{bottom:546.027067pt;}
.yb_c03289{bottom:593.385179pt;}
.yd_c03289{bottom:628.586875pt;}
.yc_c03289{bottom:637.227067pt;}
.ya_c03289{bottom:707.945339pt;}
.y9_c03289{bottom:779.945531pt;}
.y7_c03289{bottom:823.786427pt;}
.y3_c03289{bottom:839.786939pt;}
.y8_c03289{bottom:870.505979pt;}
.y6_c03289{bottom:899.946203pt;}
.y5_c03289{bottom:915.946715pt;}
.y2_c03289{bottom:945.386939pt;}
.y4_c03289{bottom:959.786555pt;}
.y1_c03289{bottom:975.787067pt;}
.ye_c03289{bottom:1008.747067pt;}
.h3_c03289{height:28.916250pt;}
.h1_c03289{height:37.063125pt;}
.h2_c03289{height:37.166250pt;}
.h4_c03289{height:48.581988pt;}
.h0_c03289{height:1122.666667pt;}
.w1_c03289{width:793.333333pt;}
.w0_c03289{width:793.626667pt;}
.x0_c03289{left:0.000000pt;}
.xd_c03289{left:104.000000pt;}
.x8_c03289{left:391.999872pt;}
.x4_c03289{left:396.160512pt;}
.xb_c03289{left:400.960000pt;}
.x7_c03289{left:404.799648pt;}
.x5_c03289{left:410.560128pt;}
.x1_c03289{left:411.840000pt;}
.xa_c03289{left:429.760320pt;}
.x9_c03289{left:437.439552pt;}
.x6_c03289{left:438.400512pt;}
.xc_c03289{left:450.560320pt;}
.x3_c03289{left:455.039904pt;}
.x2_c03289{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03290 {
    display:none;
  }
  .loading-indicator_c03290.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03290 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03290 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03290" -> "#page-container .classname_c03290")
 */
.pf_c03290 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03290 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03290.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03290 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03290 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03290 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03290 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03290 {overflow:visible;}
  }
}
.c_c03290 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03290 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03290:after { /* webkit #35443 */
  content: '';
}
.t_c03290:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03290 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03290 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03290 { /* info for Javascript */
  display:none;
}
.l_c03290 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03290 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03290 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03290:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03290 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03290.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03290.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03290 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03290{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03290;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03290{font-family:ff1_c03290;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03290;src:url('chunks/assets/font_f36fe576da440124b3352811.woff2')format("woff");}.ff2_c03290{font-family:ff2_c03290;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03290;src:url('chunks/assets/font_288d5a24569fc3f6a43c9309.woff2')format("woff");}.ff3_c03290{font-family:ff3_c03290;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03290{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03290{vertical-align:0.000000px;}
.v1_c03290{vertical-align:1.439424px;}
.ls12_c03290{letter-spacing:-0.793584px;}
.ls13_c03290{letter-spacing:-0.736560px;}
.ls7_c03290{letter-spacing:-0.613008px;}
.ls9_c03290{letter-spacing:-0.574992px;}
.lse_c03290{letter-spacing:-0.275616px;}
.ls14_c03290{letter-spacing:-0.270864px;}
.lsc_c03290{letter-spacing:-0.261360px;}
.ls6_c03290{letter-spacing:-0.242352px;}
.ls4_c03290{letter-spacing:-0.118800px;}
.ls11_c03290{letter-spacing:0.000000px;}
.ls1_c03290{letter-spacing:0.006048px;}
.ls5_c03290{letter-spacing:0.128304px;}
.lsb_c03290{letter-spacing:0.508464px;}
.ls10_c03290{letter-spacing:0.514080px;}
.lsd_c03290{letter-spacing:0.536976px;}
.lsa_c03290{letter-spacing:0.579744px;}
.lsf_c03290{letter-spacing:0.594000px;}
.ls8_c03290{letter-spacing:0.598752px;}
.ls3_c03290{letter-spacing:0.613008px;}
.ls2_c03290{letter-spacing:0.717552px;}
.ls0_c03290{letter-spacing:0.722304px;}
.sc__c03290{text-shadow:none;}
.sc0_c03290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03290{-webkit-text-stroke:0px transparent;}
.sc0_c03290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03290{word-spacing:-15.126048px;}
.wsa_c03290{word-spacing:-12.474000px;}
.ws8_c03290{word-spacing:-12.459744px;}
.ws9_c03290{word-spacing:-12.416976px;}
.ws4_c03290{word-spacing:-11.637648px;}
.ws2_c03290{word-spacing:-11.266992px;}
.ws12_c03290{word-spacing:-1.083456px;}
.ws16_c03290{word-spacing:-1.078704px;}
.wsf_c03290{word-spacing:-0.974160px;}
.ws15_c03290{word-spacing:-0.719712px;}
.ws11_c03290{word-spacing:-0.118800px;}
.ws13_c03290{word-spacing:-0.099792px;}
.ws18_c03290{word-spacing:-0.090288px;}
.ws14_c03290{word-spacing:-0.085536px;}
.ws10_c03290{word-spacing:0.000000px;}
.ws17_c03290{word-spacing:0.432432px;}
.wse_c03290{word-spacing:6.629040px;}
.wsb_c03290{word-spacing:33.300288px;}
.wsd_c03290{word-spacing:34.836912px;}
.ws6_c03290{word-spacing:36.742464px;}
.ws1_c03290{word-spacing:37.759392px;}
.ws0_c03290{word-spacing:38.020752px;}
.ws3_c03290{word-spacing:39.218256px;}
.ws5_c03290{word-spacing:39.902544px;}
.ws7_c03290{word-spacing:42.026688px;}
._0_c03290{margin-left:-1.948320px;}
._2_c03290{width:1.482624px;}
._4_c03290{width:5.749920px;}
._6_c03290{width:19.982160px;}
._7_c03290{width:23.451120px;}
._5_c03290{width:24.691392px;}
._1_c03290{width:50.252400px;}
._3_c03290{width:51.530688px;}
.fc0_c03290{color:rgb(0,0,0);}
.fs0_c03290{font-size:47.520000px;}
.fs1_c03290{font-size:60.480000px;}
.y0_c03290{bottom:0.000000px;}
.y1a_c03290{bottom:131.878686px;}
.y19_c03290{bottom:146.998362px;}
.y1c_c03290{bottom:186.600234px;}
.y1b_c03290{bottom:196.320450px;}
.y18_c03290{bottom:275.878542px;}
.y17_c03290{bottom:356.878758px;}
.y15_c03290{bottom:406.559730px;}
.y11_c03290{bottom:424.560306px;}
.y16_c03290{bottom:458.759262px;}
.y14_c03290{bottom:491.879514px;}
.y13_c03290{bottom:509.880090px;}
.y10_c03290{bottom:543.000342px;}
.y12_c03290{bottom:559.559874px;}
.yf_c03290{bottom:577.560450px;}
.y1d_c03290{bottom:614.280450px;}
.yb_c03290{bottom:667.558326px;}
.yd_c03290{bottom:707.160234px;}
.yc_c03290{bottom:716.880450px;}
.ya_c03290{bottom:796.438506px;}
.y9_c03290{bottom:877.438722px;}
.y7_c03290{bottom:926.759730px;}
.y3_c03290{bottom:944.760306px;}
.y8_c03290{bottom:979.319226px;}
.y6_c03290{bottom:1012.439478px;}
.y5_c03290{bottom:1030.440054px;}
.y2_c03290{bottom:1063.560306px;}
.y4_c03290{bottom:1079.759874px;}
.y1_c03290{bottom:1097.760450px;}
.ye_c03290{bottom:1134.840450px;}
.h3_c03290{height:32.530781px;}
.h1_c03290{height:41.696016px;}
.h2_c03290{height:41.812031px;}
.h4_c03290{height:54.654737px;}
.h0_c03290{height:1263.000000px;}
.w1_c03290{width:892.500000px;}
.w0_c03290{width:892.830000px;}
.x0_c03290{left:0.000000px;}
.xd_c03290{left:117.000000px;}
.x8_c03290{left:440.999856px;}
.x4_c03290{left:445.680576px;}
.xb_c03290{left:451.080000px;}
.x7_c03290{left:455.399604px;}
.x5_c03290{left:461.880144px;}
.x1_c03290{left:463.320000px;}
.xa_c03290{left:483.480360px;}
.x9_c03290{left:492.119496px;}
.x6_c03290{left:493.200576px;}
.xc_c03290{left:506.880360px;}
.x3_c03290{left:511.919892px;}
.x2_c03290{left:526.679604px;}
.xe_c03290{left:569.880036px;}
@media print{
.v0_c03290{vertical-align:0.000000pt;}
.v1_c03290{vertical-align:1.279488pt;}
.ls12_c03290{letter-spacing:-0.705408pt;}
.ls13_c03290{letter-spacing:-0.654720pt;}
.ls7_c03290{letter-spacing:-0.544896pt;}
.ls9_c03290{letter-spacing:-0.511104pt;}
.lse_c03290{letter-spacing:-0.244992pt;}
.ls14_c03290{letter-spacing:-0.240768pt;}
.lsc_c03290{letter-spacing:-0.232320pt;}
.ls6_c03290{letter-spacing:-0.215424pt;}
.ls4_c03290{letter-spacing:-0.105600pt;}
.ls11_c03290{letter-spacing:0.000000pt;}
.ls1_c03290{letter-spacing:0.005376pt;}
.ls5_c03290{letter-spacing:0.114048pt;}
.lsb_c03290{letter-spacing:0.451968pt;}
.ls10_c03290{letter-spacing:0.456960pt;}
.lsd_c03290{letter-spacing:0.477312pt;}
.lsa_c03290{letter-spacing:0.515328pt;}
.lsf_c03290{letter-spacing:0.528000pt;}
.ls8_c03290{letter-spacing:0.532224pt;}
.ls3_c03290{letter-spacing:0.544896pt;}
.ls2_c03290{letter-spacing:0.637824pt;}
.ls0_c03290{letter-spacing:0.642048pt;}
.wsc_c03290{word-spacing:-13.445376pt;}
.wsa_c03290{word-spacing:-11.088000pt;}
.ws8_c03290{word-spacing:-11.075328pt;}
.ws9_c03290{word-spacing:-11.037312pt;}
.ws4_c03290{word-spacing:-10.344576pt;}
.ws2_c03290{word-spacing:-10.015104pt;}
.ws12_c03290{word-spacing:-0.963072pt;}
.ws16_c03290{word-spacing:-0.958848pt;}
.wsf_c03290{word-spacing:-0.865920pt;}
.ws15_c03290{word-spacing:-0.639744pt;}
.ws11_c03290{word-spacing:-0.105600pt;}
.ws13_c03290{word-spacing:-0.088704pt;}
.ws18_c03290{word-spacing:-0.080256pt;}
.ws14_c03290{word-spacing:-0.076032pt;}
.ws10_c03290{word-spacing:0.000000pt;}
.ws17_c03290{word-spacing:0.384384pt;}
.wse_c03290{word-spacing:5.892480pt;}
.wsb_c03290{word-spacing:29.600256pt;}
.wsd_c03290{word-spacing:30.966144pt;}
.ws6_c03290{word-spacing:32.659968pt;}
.ws1_c03290{word-spacing:33.563904pt;}
.ws0_c03290{word-spacing:33.796224pt;}
.ws3_c03290{word-spacing:34.860672pt;}
.ws5_c03290{word-spacing:35.468928pt;}
.ws7_c03290{word-spacing:37.357056pt;}
._0_c03290{margin-left:-1.731840pt;}
._2_c03290{width:1.317888pt;}
._4_c03290{width:5.111040pt;}
._6_c03290{width:17.761920pt;}
._7_c03290{width:20.845440pt;}
._5_c03290{width:21.947904pt;}
._1_c03290{width:44.668800pt;}
._3_c03290{width:45.805056pt;}
.fs0_c03290{font-size:42.240000pt;}
.fs1_c03290{font-size:53.760000pt;}
.y0_c03290{bottom:0.000000pt;}
.y1a_c03290{bottom:117.225499pt;}
.y19_c03290{bottom:130.665211pt;}
.y1c_c03290{bottom:165.866875pt;}
.y1b_c03290{bottom:174.507067pt;}
.y18_c03290{bottom:245.225371pt;}
.y17_c03290{bottom:317.225563pt;}
.y15_c03290{bottom:361.386427pt;}
.y11_c03290{bottom:377.386939pt;}
.y16_c03290{bottom:407.786011pt;}
.y14_c03290{bottom:437.226235pt;}
.y13_c03290{bottom:453.226747pt;}
.y10_c03290{bottom:482.666971pt;}
.y12_c03290{bottom:497.386555pt;}
.yf_c03290{bottom:513.387067pt;}
.y1d_c03290{bottom:546.027067pt;}
.yb_c03290{bottom:593.385179pt;}
.yd_c03290{bottom:628.586875pt;}
.yc_c03290{bottom:637.227067pt;}
.ya_c03290{bottom:707.945339pt;}
.y9_c03290{bottom:779.945531pt;}
.y7_c03290{bottom:823.786427pt;}
.y3_c03290{bottom:839.786939pt;}
.y8_c03290{bottom:870.505979pt;}
.y6_c03290{bottom:899.946203pt;}
.y5_c03290{bottom:915.946715pt;}
.y2_c03290{bottom:945.386939pt;}
.y4_c03290{bottom:959.786555pt;}
.y1_c03290{bottom:975.787067pt;}
.ye_c03290{bottom:1008.747067pt;}
.h3_c03290{height:28.916250pt;}
.h1_c03290{height:37.063125pt;}
.h2_c03290{height:37.166250pt;}
.h4_c03290{height:48.581988pt;}
.h0_c03290{height:1122.666667pt;}
.w1_c03290{width:793.333333pt;}
.w0_c03290{width:793.626667pt;}
.x0_c03290{left:0.000000pt;}
.xd_c03290{left:104.000000pt;}
.x8_c03290{left:391.999872pt;}
.x4_c03290{left:396.160512pt;}
.xb_c03290{left:400.960000pt;}
.x7_c03290{left:404.799648pt;}
.x5_c03290{left:410.560128pt;}
.x1_c03290{left:411.840000pt;}
.xa_c03290{left:429.760320pt;}
.x9_c03290{left:437.439552pt;}
.x6_c03290{left:438.400512pt;}
.xc_c03290{left:450.560320pt;}
.x3_c03290{left:455.039904pt;}
.x2_c03290{left:468.159648pt;}
.xe_c03290{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03291 {
    display:none;
  }
  .loading-indicator_c03291.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03291 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03291 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03291" -> "#page-container .classname_c03291")
 */
.pf_c03291 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03291 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03291.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03291 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03291 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03291 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03291 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03291 {overflow:visible;}
  }
}
.c_c03291 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03291 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03291:after { /* webkit #35443 */
  content: '';
}
.t_c03291:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03291 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03291 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03291 { /* info for Javascript */
  display:none;
}
.l_c03291 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03291 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03291 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03291:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03291 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03291.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03291.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03291 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03291{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03291;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03291{font-family:ff1_c03291;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03291;src:url('chunks/assets/font_b175f08c1c82fad11684ea3b.woff2')format("woff");}.ff2_c03291{font-family:ff2_c03291;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03291;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03291{font-family:ff3_c03291;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03291{vertical-align:0.000000px;}
.v1_c03291{vertical-align:1.439424px;}
.lsc_c03291{letter-spacing:-0.793584px;}
.lsf_c03291{letter-spacing:-0.736560px;}
.ls7_c03291{letter-spacing:-0.613008px;}
.ls9_c03291{letter-spacing:-0.574992px;}
.ls14_c03291{letter-spacing:-0.275616px;}
.ls10_c03291{letter-spacing:-0.270864px;}
.lsd_c03291{letter-spacing:-0.261360px;}
.ls6_c03291{letter-spacing:-0.242352px;}
.ls4_c03291{letter-spacing:-0.118800px;}
.ls13_c03291{letter-spacing:0.000000px;}
.ls1_c03291{letter-spacing:0.006048px;}
.ls5_c03291{letter-spacing:0.128304px;}
.lsb_c03291{letter-spacing:0.508464px;}
.ls12_c03291{letter-spacing:0.514080px;}
.lse_c03291{letter-spacing:0.536976px;}
.lsa_c03291{letter-spacing:0.579744px;}
.ls11_c03291{letter-spacing:0.594000px;}
.ls8_c03291{letter-spacing:0.598752px;}
.ls3_c03291{letter-spacing:0.613008px;}
.ls0_c03291{letter-spacing:0.717552px;}
.ls2_c03291{letter-spacing:0.722304px;}
.sc__c03291{text-shadow:none;}
.sc0_c03291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03291{-webkit-text-stroke:0px transparent;}
.sc0_c03291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03291{word-spacing:-15.126048px;}
.wsa_c03291{word-spacing:-12.474000px;}
.ws6_c03291{word-spacing:-12.459744px;}
.wse_c03291{word-spacing:-12.416976px;}
.ws4_c03291{word-spacing:-11.637648px;}
.ws2_c03291{word-spacing:-11.266992px;}
.ws18_c03291{word-spacing:-1.083456px;}
.ws12_c03291{word-spacing:-1.078704px;}
.wsf_c03291{word-spacing:-0.974160px;}
.ws17_c03291{word-spacing:-0.719712px;}
.ws11_c03291{word-spacing:-0.118800px;}
.ws14_c03291{word-spacing:-0.099792px;}
.ws15_c03291{word-spacing:-0.090288px;}
.ws16_c03291{word-spacing:-0.085536px;}
.ws10_c03291{word-spacing:0.000000px;}
.ws13_c03291{word-spacing:0.432432px;}
.ws9_c03291{word-spacing:6.629040px;}
.wsb_c03291{word-spacing:33.300288px;}
.ws8_c03291{word-spacing:34.836912px;}
.wsd_c03291{word-spacing:36.742464px;}
.ws1_c03291{word-spacing:37.759392px;}
.ws0_c03291{word-spacing:38.020752px;}
.ws3_c03291{word-spacing:39.218256px;}
.ws5_c03291{word-spacing:39.902544px;}
.ws7_c03291{word-spacing:42.026688px;}
._0_c03291{margin-left:-1.948320px;}
._2_c03291{width:1.482624px;}
._4_c03291{width:5.749920px;}
._6_c03291{width:19.982160px;}
._7_c03291{width:23.451120px;}
._5_c03291{width:24.691392px;}
._1_c03291{width:50.252400px;}
._3_c03291{width:51.530688px;}
.fc0_c03291{color:rgb(0,0,0);}
.fs0_c03291{font-size:47.520000px;}
.fs1_c03291{font-size:60.480000px;}
.y0_c03291{bottom:0.000000px;}
.y1a_c03291{bottom:146.998362px;}
.y1c_c03291{bottom:186.600234px;}
.y1b_c03291{bottom:196.320450px;}
.y19_c03291{bottom:275.878542px;}
.y18_c03291{bottom:356.878758px;}
.y16_c03291{bottom:406.559730px;}
.y12_c03291{bottom:424.560306px;}
.y17_c03291{bottom:458.759262px;}
.y15_c03291{bottom:491.879514px;}
.y14_c03291{bottom:509.880090px;}
.y11_c03291{bottom:543.000342px;}
.y13_c03291{bottom:559.559874px;}
.y10_c03291{bottom:577.560450px;}
.y1d_c03291{bottom:614.280450px;}
.yc_c03291{bottom:652.438650px;}
.yb_c03291{bottom:667.558326px;}
.ye_c03291{bottom:707.160234px;}
.yd_c03291{bottom:716.880450px;}
.ya_c03291{bottom:796.438506px;}
.y9_c03291{bottom:877.438722px;}
.y7_c03291{bottom:926.759730px;}
.y3_c03291{bottom:944.760306px;}
.y8_c03291{bottom:979.319226px;}
.y6_c03291{bottom:1012.439478px;}
.y5_c03291{bottom:1030.440054px;}
.y2_c03291{bottom:1063.560306px;}
.y4_c03291{bottom:1079.759874px;}
.y1_c03291{bottom:1097.760450px;}
.yf_c03291{bottom:1134.840450px;}
.h3_c03291{height:32.530781px;}
.h1_c03291{height:41.696016px;}
.h2_c03291{height:41.812031px;}
.h4_c03291{height:54.654737px;}
.h0_c03291{height:1263.000000px;}
.w1_c03291{width:892.500000px;}
.w0_c03291{width:892.830000px;}
.x0_c03291{left:0.000000px;}
.xe_c03291{left:117.000000px;}
.x8_c03291{left:440.999856px;}
.x4_c03291{left:445.680576px;}
.xc_c03291{left:451.080000px;}
.x7_c03291{left:455.399604px;}
.x5_c03291{left:461.880144px;}
.x1_c03291{left:463.320000px;}
.xa_c03291{left:483.480360px;}
.x9_c03291{left:492.119496px;}
.x6_c03291{left:493.200576px;}
.xd_c03291{left:506.880360px;}
.x3_c03291{left:511.919892px;}
.x2_c03291{left:526.679604px;}
.xb_c03291{left:569.880036px;}
@media print{
.v0_c03291{vertical-align:0.000000pt;}
.v1_c03291{vertical-align:1.279488pt;}
.lsc_c03291{letter-spacing:-0.705408pt;}
.lsf_c03291{letter-spacing:-0.654720pt;}
.ls7_c03291{letter-spacing:-0.544896pt;}
.ls9_c03291{letter-spacing:-0.511104pt;}
.ls14_c03291{letter-spacing:-0.244992pt;}
.ls10_c03291{letter-spacing:-0.240768pt;}
.lsd_c03291{letter-spacing:-0.232320pt;}
.ls6_c03291{letter-spacing:-0.215424pt;}
.ls4_c03291{letter-spacing:-0.105600pt;}
.ls13_c03291{letter-spacing:0.000000pt;}
.ls1_c03291{letter-spacing:0.005376pt;}
.ls5_c03291{letter-spacing:0.114048pt;}
.lsb_c03291{letter-spacing:0.451968pt;}
.ls12_c03291{letter-spacing:0.456960pt;}
.lse_c03291{letter-spacing:0.477312pt;}
.lsa_c03291{letter-spacing:0.515328pt;}
.ls11_c03291{letter-spacing:0.528000pt;}
.ls8_c03291{letter-spacing:0.532224pt;}
.ls3_c03291{letter-spacing:0.544896pt;}
.ls0_c03291{letter-spacing:0.637824pt;}
.ls2_c03291{letter-spacing:0.642048pt;}
.wsc_c03291{word-spacing:-13.445376pt;}
.wsa_c03291{word-spacing:-11.088000pt;}
.ws6_c03291{word-spacing:-11.075328pt;}
.wse_c03291{word-spacing:-11.037312pt;}
.ws4_c03291{word-spacing:-10.344576pt;}
.ws2_c03291{word-spacing:-10.015104pt;}
.ws18_c03291{word-spacing:-0.963072pt;}
.ws12_c03291{word-spacing:-0.958848pt;}
.wsf_c03291{word-spacing:-0.865920pt;}
.ws17_c03291{word-spacing:-0.639744pt;}
.ws11_c03291{word-spacing:-0.105600pt;}
.ws14_c03291{word-spacing:-0.088704pt;}
.ws15_c03291{word-spacing:-0.080256pt;}
.ws16_c03291{word-spacing:-0.076032pt;}
.ws10_c03291{word-spacing:0.000000pt;}
.ws13_c03291{word-spacing:0.384384pt;}
.ws9_c03291{word-spacing:5.892480pt;}
.wsb_c03291{word-spacing:29.600256pt;}
.ws8_c03291{word-spacing:30.966144pt;}
.wsd_c03291{word-spacing:32.659968pt;}
.ws1_c03291{word-spacing:33.563904pt;}
.ws0_c03291{word-spacing:33.796224pt;}
.ws3_c03291{word-spacing:34.860672pt;}
.ws5_c03291{word-spacing:35.468928pt;}
.ws7_c03291{word-spacing:37.357056pt;}
._0_c03291{margin-left:-1.731840pt;}
._2_c03291{width:1.317888pt;}
._4_c03291{width:5.111040pt;}
._6_c03291{width:17.761920pt;}
._7_c03291{width:20.845440pt;}
._5_c03291{width:21.947904pt;}
._1_c03291{width:44.668800pt;}
._3_c03291{width:45.805056pt;}
.fs0_c03291{font-size:42.240000pt;}
.fs1_c03291{font-size:53.760000pt;}
.y0_c03291{bottom:0.000000pt;}
.y1a_c03291{bottom:130.665211pt;}
.y1c_c03291{bottom:165.866875pt;}
.y1b_c03291{bottom:174.507067pt;}
.y19_c03291{bottom:245.225371pt;}
.y18_c03291{bottom:317.225563pt;}
.y16_c03291{bottom:361.386427pt;}
.y12_c03291{bottom:377.386939pt;}
.y17_c03291{bottom:407.786011pt;}
.y15_c03291{bottom:437.226235pt;}
.y14_c03291{bottom:453.226747pt;}
.y11_c03291{bottom:482.666971pt;}
.y13_c03291{bottom:497.386555pt;}
.y10_c03291{bottom:513.387067pt;}
.y1d_c03291{bottom:546.027067pt;}
.yc_c03291{bottom:579.945467pt;}
.yb_c03291{bottom:593.385179pt;}
.ye_c03291{bottom:628.586875pt;}
.yd_c03291{bottom:637.227067pt;}
.ya_c03291{bottom:707.945339pt;}
.y9_c03291{bottom:779.945531pt;}
.y7_c03291{bottom:823.786427pt;}
.y3_c03291{bottom:839.786939pt;}
.y8_c03291{bottom:870.505979pt;}
.y6_c03291{bottom:899.946203pt;}
.y5_c03291{bottom:915.946715pt;}
.y2_c03291{bottom:945.386939pt;}
.y4_c03291{bottom:959.786555pt;}
.y1_c03291{bottom:975.787067pt;}
.yf_c03291{bottom:1008.747067pt;}
.h3_c03291{height:28.916250pt;}
.h1_c03291{height:37.063125pt;}
.h2_c03291{height:37.166250pt;}
.h4_c03291{height:48.581988pt;}
.h0_c03291{height:1122.666667pt;}
.w1_c03291{width:793.333333pt;}
.w0_c03291{width:793.626667pt;}
.x0_c03291{left:0.000000pt;}
.xe_c03291{left:104.000000pt;}
.x8_c03291{left:391.999872pt;}
.x4_c03291{left:396.160512pt;}
.xc_c03291{left:400.960000pt;}
.x7_c03291{left:404.799648pt;}
.x5_c03291{left:410.560128pt;}
.x1_c03291{left:411.840000pt;}
.xa_c03291{left:429.760320pt;}
.x9_c03291{left:437.439552pt;}
.x6_c03291{left:438.400512pt;}
.xd_c03291{left:450.560320pt;}
.x3_c03291{left:455.039904pt;}
.x2_c03291{left:468.159648pt;}
.xb_c03291{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03292 {
    display:none;
  }
  .loading-indicator_c03292.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03292 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03292 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03292" -> "#page-container .classname_c03292")
 */
.pf_c03292 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03292 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03292.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03292 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03292 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03292 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03292 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03292 {overflow:visible;}
  }
}
.c_c03292 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03292 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03292:after { /* webkit #35443 */
  content: '';
}
.t_c03292:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03292 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03292 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03292 { /* info for Javascript */
  display:none;
}
.l_c03292 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03292 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03292 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03292:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03292 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03292.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03292.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03292 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03292{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03292;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03292{font-family:ff1_c03292;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03292;src:url('chunks/assets/font_f4edd3b9b06cb7465a1f2de2.woff2')format("woff");}.ff2_c03292{font-family:ff2_c03292;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03292;src:url('chunks/assets/font_288d5a24569fc3f6a43c9309.woff2')format("woff");}.ff3_c03292{font-family:ff3_c03292;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03292{vertical-align:0.000000px;}
.v1_c03292{vertical-align:1.439424px;}
.ls13_c03292{letter-spacing:-0.722304px;}
.ls7_c03292{letter-spacing:-0.613008px;}
.ls9_c03292{letter-spacing:-0.574992px;}
.lsf_c03292{letter-spacing:-0.275616px;}
.lsd_c03292{letter-spacing:-0.261360px;}
.ls6_c03292{letter-spacing:-0.242352px;}
.ls4_c03292{letter-spacing:-0.118800px;}
.ls12_c03292{letter-spacing:0.000000px;}
.ls2_c03292{letter-spacing:0.006048px;}
.ls5_c03292{letter-spacing:0.128304px;}
.lsb_c03292{letter-spacing:0.508464px;}
.ls11_c03292{letter-spacing:0.514080px;}
.lse_c03292{letter-spacing:0.536976px;}
.lsa_c03292{letter-spacing:0.579744px;}
.ls10_c03292{letter-spacing:0.594000px;}
.ls8_c03292{letter-spacing:0.598752px;}
.ls3_c03292{letter-spacing:0.613008px;}
.lsc_c03292{letter-spacing:0.684288px;}
.ls0_c03292{letter-spacing:0.717552px;}
.ls1_c03292{letter-spacing:0.722304px;}
.sc__c03292{text-shadow:none;}
.sc0_c03292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03292{-webkit-text-stroke:0px transparent;}
.sc0_c03292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03292{word-spacing:-15.126048px;}
.wsa_c03292{word-spacing:-12.474000px;}
.ws9_c03292{word-spacing:-12.416976px;}
.ws4_c03292{word-spacing:-11.637648px;}
.ws2_c03292{word-spacing:-11.266992px;}
.ws11_c03292{word-spacing:-1.083456px;}
.ws10_c03292{word-spacing:-1.078704px;}
.ws12_c03292{word-spacing:-1.045440px;}
.wsd_c03292{word-spacing:-0.974160px;}
.ws15_c03292{word-spacing:-0.719712px;}
.wsf_c03292{word-spacing:-0.118800px;}
.ws13_c03292{word-spacing:-0.099792px;}
.ws14_c03292{word-spacing:-0.085536px;}
.wse_c03292{word-spacing:0.000000px;}
.ws16_c03292{word-spacing:0.361152px;}
.wsb_c03292{word-spacing:33.300288px;}
.ws8_c03292{word-spacing:36.143712px;}
.ws6_c03292{word-spacing:36.742464px;}
.ws1_c03292{word-spacing:37.759392px;}
.ws0_c03292{word-spacing:38.020752px;}
.ws3_c03292{word-spacing:39.218256px;}
.ws5_c03292{word-spacing:39.902544px;}
.ws7_c03292{word-spacing:42.026688px;}
._0_c03292{margin-left:-1.948320px;}
._2_c03292{width:1.482624px;}
._4_c03292{width:5.749920px;}
._1_c03292{width:50.252400px;}
._3_c03292{width:51.530688px;}
.fc0_c03292{color:rgb(0,0,0);}
.fs0_c03292{font-size:47.520000px;}
.fs1_c03292{font-size:60.480000px;}
.y0_c03292{bottom:0.000000px;}
.y19_c03292{bottom:146.998362px;}
.y1b_c03292{bottom:186.600234px;}
.y1a_c03292{bottom:196.320450px;}
.y18_c03292{bottom:275.878542px;}
.y17_c03292{bottom:356.878758px;}
.y15_c03292{bottom:406.559730px;}
.y11_c03292{bottom:424.560306px;}
.y16_c03292{bottom:458.759262px;}
.y14_c03292{bottom:491.879514px;}
.y13_c03292{bottom:509.880090px;}
.y10_c03292{bottom:543.000342px;}
.y12_c03292{bottom:559.559874px;}
.yf_c03292{bottom:577.560450px;}
.y1c_c03292{bottom:614.280450px;}
.yb_c03292{bottom:667.558326px;}
.yd_c03292{bottom:707.160234px;}
.yc_c03292{bottom:716.880450px;}
.ya_c03292{bottom:796.438506px;}
.y9_c03292{bottom:877.438722px;}
.y7_c03292{bottom:926.759730px;}
.y3_c03292{bottom:944.760306px;}
.y8_c03292{bottom:979.319226px;}
.y6_c03292{bottom:1012.439478px;}
.y5_c03292{bottom:1030.440054px;}
.y2_c03292{bottom:1063.560306px;}
.y4_c03292{bottom:1079.759874px;}
.y1_c03292{bottom:1097.760450px;}
.ye_c03292{bottom:1134.840450px;}
.h3_c03292{height:32.530781px;}
.h1_c03292{height:41.696016px;}
.h2_c03292{height:41.812031px;}
.h4_c03292{height:54.654737px;}
.h0_c03292{height:1263.000000px;}
.w1_c03292{width:892.500000px;}
.w0_c03292{width:892.830000px;}
.x0_c03292{left:0.000000px;}
.xd_c03292{left:117.000000px;}
.x8_c03292{left:440.999856px;}
.x4_c03292{left:445.680576px;}
.xb_c03292{left:451.080000px;}
.x7_c03292{left:455.399604px;}
.x5_c03292{left:461.880144px;}
.x1_c03292{left:463.320000px;}
.xa_c03292{left:483.480360px;}
.x9_c03292{left:492.119496px;}
.x6_c03292{left:493.200576px;}
.xc_c03292{left:506.880360px;}
.x3_c03292{left:511.919892px;}
.x2_c03292{left:526.679604px;}
@media print{
.v0_c03292{vertical-align:0.000000pt;}
.v1_c03292{vertical-align:1.279488pt;}
.ls13_c03292{letter-spacing:-0.642048pt;}
.ls7_c03292{letter-spacing:-0.544896pt;}
.ls9_c03292{letter-spacing:-0.511104pt;}
.lsf_c03292{letter-spacing:-0.244992pt;}
.lsd_c03292{letter-spacing:-0.232320pt;}
.ls6_c03292{letter-spacing:-0.215424pt;}
.ls4_c03292{letter-spacing:-0.105600pt;}
.ls12_c03292{letter-spacing:0.000000pt;}
.ls2_c03292{letter-spacing:0.005376pt;}
.ls5_c03292{letter-spacing:0.114048pt;}
.lsb_c03292{letter-spacing:0.451968pt;}
.ls11_c03292{letter-spacing:0.456960pt;}
.lse_c03292{letter-spacing:0.477312pt;}
.lsa_c03292{letter-spacing:0.515328pt;}
.ls10_c03292{letter-spacing:0.528000pt;}
.ls8_c03292{letter-spacing:0.532224pt;}
.ls3_c03292{letter-spacing:0.544896pt;}
.lsc_c03292{letter-spacing:0.608256pt;}
.ls0_c03292{letter-spacing:0.637824pt;}
.ls1_c03292{letter-spacing:0.642048pt;}
.wsc_c03292{word-spacing:-13.445376pt;}
.wsa_c03292{word-spacing:-11.088000pt;}
.ws9_c03292{word-spacing:-11.037312pt;}
.ws4_c03292{word-spacing:-10.344576pt;}
.ws2_c03292{word-spacing:-10.015104pt;}
.ws11_c03292{word-spacing:-0.963072pt;}
.ws10_c03292{word-spacing:-0.958848pt;}
.ws12_c03292{word-spacing:-0.929280pt;}
.wsd_c03292{word-spacing:-0.865920pt;}
.ws15_c03292{word-spacing:-0.639744pt;}
.wsf_c03292{word-spacing:-0.105600pt;}
.ws13_c03292{word-spacing:-0.088704pt;}
.ws14_c03292{word-spacing:-0.076032pt;}
.wse_c03292{word-spacing:0.000000pt;}
.ws16_c03292{word-spacing:0.321024pt;}
.wsb_c03292{word-spacing:29.600256pt;}
.ws8_c03292{word-spacing:32.127744pt;}
.ws6_c03292{word-spacing:32.659968pt;}
.ws1_c03292{word-spacing:33.563904pt;}
.ws0_c03292{word-spacing:33.796224pt;}
.ws3_c03292{word-spacing:34.860672pt;}
.ws5_c03292{word-spacing:35.468928pt;}
.ws7_c03292{word-spacing:37.357056pt;}
._0_c03292{margin-left:-1.731840pt;}
._2_c03292{width:1.317888pt;}
._4_c03292{width:5.111040pt;}
._1_c03292{width:44.668800pt;}
._3_c03292{width:45.805056pt;}
.fs0_c03292{font-size:42.240000pt;}
.fs1_c03292{font-size:53.760000pt;}
.y0_c03292{bottom:0.000000pt;}
.y19_c03292{bottom:130.665211pt;}
.y1b_c03292{bottom:165.866875pt;}
.y1a_c03292{bottom:174.507067pt;}
.y18_c03292{bottom:245.225371pt;}
.y17_c03292{bottom:317.225563pt;}
.y15_c03292{bottom:361.386427pt;}
.y11_c03292{bottom:377.386939pt;}
.y16_c03292{bottom:407.786011pt;}
.y14_c03292{bottom:437.226235pt;}
.y13_c03292{bottom:453.226747pt;}
.y10_c03292{bottom:482.666971pt;}
.y12_c03292{bottom:497.386555pt;}
.yf_c03292{bottom:513.387067pt;}
.y1c_c03292{bottom:546.027067pt;}
.yb_c03292{bottom:593.385179pt;}
.yd_c03292{bottom:628.586875pt;}
.yc_c03292{bottom:637.227067pt;}
.ya_c03292{bottom:707.945339pt;}
.y9_c03292{bottom:779.945531pt;}
.y7_c03292{bottom:823.786427pt;}
.y3_c03292{bottom:839.786939pt;}
.y8_c03292{bottom:870.505979pt;}
.y6_c03292{bottom:899.946203pt;}
.y5_c03292{bottom:915.946715pt;}
.y2_c03292{bottom:945.386939pt;}
.y4_c03292{bottom:959.786555pt;}
.y1_c03292{bottom:975.787067pt;}
.ye_c03292{bottom:1008.747067pt;}
.h3_c03292{height:28.916250pt;}
.h1_c03292{height:37.063125pt;}
.h2_c03292{height:37.166250pt;}
.h4_c03292{height:48.581988pt;}
.h0_c03292{height:1122.666667pt;}
.w1_c03292{width:793.333333pt;}
.w0_c03292{width:793.626667pt;}
.x0_c03292{left:0.000000pt;}
.xd_c03292{left:104.000000pt;}
.x8_c03292{left:391.999872pt;}
.x4_c03292{left:396.160512pt;}
.xb_c03292{left:400.960000pt;}
.x7_c03292{left:404.799648pt;}
.x5_c03292{left:410.560128pt;}
.x1_c03292{left:411.840000pt;}
.xa_c03292{left:429.760320pt;}
.x9_c03292{left:437.439552pt;}
.x6_c03292{left:438.400512pt;}
.xc_c03292{left:450.560320pt;}
.x3_c03292{left:455.039904pt;}
.x2_c03292{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03293 {
    display:none;
  }
  .loading-indicator_c03293.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03293 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03293 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03293" -> "#page-container .classname_c03293")
 */
.pf_c03293 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03293 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03293.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03293 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03293 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03293 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03293 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03293 {overflow:visible;}
  }
}
.c_c03293 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03293 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03293:after { /* webkit #35443 */
  content: '';
}
.t_c03293:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03293 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03293 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03293 { /* info for Javascript */
  display:none;
}
.l_c03293 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03293 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03293 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03293:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03293 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03293.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03293.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03293 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03293{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03293;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03293{font-family:ff1_c03293;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03293;src:url('chunks/assets/font_d739c4007b05aca85c237b1b.woff2')format("woff");}.ff2_c03293{font-family:ff2_c03293;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03293;src:url('chunks/assets/font_288d5a24569fc3f6a43c9309.woff2')format("woff");}.ff3_c03293{font-family:ff3_c03293;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03293{vertical-align:0.000000px;}
.v1_c03293{vertical-align:1.439424px;}
.ls7_c03293{letter-spacing:-0.613008px;}
.ls9_c03293{letter-spacing:-0.574992px;}
.lse_c03293{letter-spacing:-0.275616px;}
.lsc_c03293{letter-spacing:-0.261360px;}
.ls6_c03293{letter-spacing:-0.242352px;}
.ls4_c03293{letter-spacing:-0.118800px;}
.ls11_c03293{letter-spacing:0.000000px;}
.ls2_c03293{letter-spacing:0.006048px;}
.ls5_c03293{letter-spacing:0.128304px;}
.lsb_c03293{letter-spacing:0.508464px;}
.ls10_c03293{letter-spacing:0.514080px;}
.lsd_c03293{letter-spacing:0.536976px;}
.lsa_c03293{letter-spacing:0.579744px;}
.lsf_c03293{letter-spacing:0.594000px;}
.ls8_c03293{letter-spacing:0.598752px;}
.ls3_c03293{letter-spacing:0.613008px;}
.ls0_c03293{letter-spacing:0.717552px;}
.ls1_c03293{letter-spacing:0.722304px;}
.sc__c03293{text-shadow:none;}
.sc0_c03293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03293{-webkit-text-stroke:0px transparent;}
.sc0_c03293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03293{word-spacing:-15.126048px;}
.wsa_c03293{word-spacing:-12.474000px;}
.ws8_c03293{word-spacing:-12.459744px;}
.ws9_c03293{word-spacing:-12.416976px;}
.ws4_c03293{word-spacing:-11.637648px;}
.ws2_c03293{word-spacing:-11.266992px;}
.ws11_c03293{word-spacing:-1.083456px;}
.ws10_c03293{word-spacing:-1.078704px;}
.wsd_c03293{word-spacing:-0.974160px;}
.ws14_c03293{word-spacing:-0.719712px;}
.wsf_c03293{word-spacing:-0.118800px;}
.ws12_c03293{word-spacing:-0.099792px;}
.ws13_c03293{word-spacing:-0.085536px;}
.wse_c03293{word-spacing:0.000000px;}
.wsb_c03293{word-spacing:33.300288px;}
.ws6_c03293{word-spacing:36.742464px;}
.ws1_c03293{word-spacing:37.759392px;}
.ws0_c03293{word-spacing:38.020752px;}
.ws3_c03293{word-spacing:39.218256px;}
.ws5_c03293{word-spacing:39.902544px;}
.ws7_c03293{word-spacing:42.026688px;}
._0_c03293{margin-left:-1.948320px;}
._2_c03293{width:1.482624px;}
._4_c03293{width:5.749920px;}
._1_c03293{width:50.252400px;}
._3_c03293{width:51.530688px;}
.fc0_c03293{color:rgb(0,0,0);}
.fs0_c03293{font-size:47.520000px;}
.fs1_c03293{font-size:60.480000px;}
.y0_c03293{bottom:0.000000px;}
.y19_c03293{bottom:146.998362px;}
.y1b_c03293{bottom:186.600234px;}
.y1a_c03293{bottom:196.320450px;}
.y18_c03293{bottom:275.878542px;}
.y17_c03293{bottom:356.878758px;}
.y15_c03293{bottom:406.559730px;}
.y11_c03293{bottom:424.560306px;}
.y16_c03293{bottom:458.759262px;}
.y14_c03293{bottom:491.879514px;}
.y13_c03293{bottom:509.880090px;}
.y10_c03293{bottom:543.000342px;}
.y12_c03293{bottom:559.559874px;}
.yf_c03293{bottom:577.560450px;}
.y1c_c03293{bottom:614.280450px;}
.yb_c03293{bottom:667.558326px;}
.yd_c03293{bottom:707.160234px;}
.yc_c03293{bottom:716.880450px;}
.ya_c03293{bottom:796.438506px;}
.y9_c03293{bottom:877.438722px;}
.y7_c03293{bottom:926.759730px;}
.y3_c03293{bottom:944.760306px;}
.y8_c03293{bottom:979.319226px;}
.y6_c03293{bottom:1012.439478px;}
.y5_c03293{bottom:1030.440054px;}
.y2_c03293{bottom:1063.560306px;}
.y4_c03293{bottom:1079.759874px;}
.y1_c03293{bottom:1097.760450px;}
.ye_c03293{bottom:1134.840450px;}
.h3_c03293{height:32.530781px;}
.h1_c03293{height:41.696016px;}
.h2_c03293{height:41.812031px;}
.h4_c03293{height:54.654737px;}
.h0_c03293{height:1263.000000px;}
.w1_c03293{width:892.500000px;}
.w0_c03293{width:892.830000px;}
.x0_c03293{left:0.000000px;}
.xd_c03293{left:117.000000px;}
.x8_c03293{left:440.999856px;}
.x4_c03293{left:445.680576px;}
.xb_c03293{left:451.080000px;}
.x7_c03293{left:455.399604px;}
.x5_c03293{left:461.880144px;}
.x1_c03293{left:463.320000px;}
.xa_c03293{left:483.480360px;}
.x9_c03293{left:492.119496px;}
.x6_c03293{left:493.200576px;}
.xc_c03293{left:506.880360px;}
.x3_c03293{left:511.919892px;}
.x2_c03293{left:526.679604px;}
@media print{
.v0_c03293{vertical-align:0.000000pt;}
.v1_c03293{vertical-align:1.279488pt;}
.ls7_c03293{letter-spacing:-0.544896pt;}
.ls9_c03293{letter-spacing:-0.511104pt;}
.lse_c03293{letter-spacing:-0.244992pt;}
.lsc_c03293{letter-spacing:-0.232320pt;}
.ls6_c03293{letter-spacing:-0.215424pt;}
.ls4_c03293{letter-spacing:-0.105600pt;}
.ls11_c03293{letter-spacing:0.000000pt;}
.ls2_c03293{letter-spacing:0.005376pt;}
.ls5_c03293{letter-spacing:0.114048pt;}
.lsb_c03293{letter-spacing:0.451968pt;}
.ls10_c03293{letter-spacing:0.456960pt;}
.lsd_c03293{letter-spacing:0.477312pt;}
.lsa_c03293{letter-spacing:0.515328pt;}
.lsf_c03293{letter-spacing:0.528000pt;}
.ls8_c03293{letter-spacing:0.532224pt;}
.ls3_c03293{letter-spacing:0.544896pt;}
.ls0_c03293{letter-spacing:0.637824pt;}
.ls1_c03293{letter-spacing:0.642048pt;}
.wsc_c03293{word-spacing:-13.445376pt;}
.wsa_c03293{word-spacing:-11.088000pt;}
.ws8_c03293{word-spacing:-11.075328pt;}
.ws9_c03293{word-spacing:-11.037312pt;}
.ws4_c03293{word-spacing:-10.344576pt;}
.ws2_c03293{word-spacing:-10.015104pt;}
.ws11_c03293{word-spacing:-0.963072pt;}
.ws10_c03293{word-spacing:-0.958848pt;}
.wsd_c03293{word-spacing:-0.865920pt;}
.ws14_c03293{word-spacing:-0.639744pt;}
.wsf_c03293{word-spacing:-0.105600pt;}
.ws12_c03293{word-spacing:-0.088704pt;}
.ws13_c03293{word-spacing:-0.076032pt;}
.wse_c03293{word-spacing:0.000000pt;}
.wsb_c03293{word-spacing:29.600256pt;}
.ws6_c03293{word-spacing:32.659968pt;}
.ws1_c03293{word-spacing:33.563904pt;}
.ws0_c03293{word-spacing:33.796224pt;}
.ws3_c03293{word-spacing:34.860672pt;}
.ws5_c03293{word-spacing:35.468928pt;}
.ws7_c03293{word-spacing:37.357056pt;}
._0_c03293{margin-left:-1.731840pt;}
._2_c03293{width:1.317888pt;}
._4_c03293{width:5.111040pt;}
._1_c03293{width:44.668800pt;}
._3_c03293{width:45.805056pt;}
.fs0_c03293{font-size:42.240000pt;}
.fs1_c03293{font-size:53.760000pt;}
.y0_c03293{bottom:0.000000pt;}
.y19_c03293{bottom:130.665211pt;}
.y1b_c03293{bottom:165.866875pt;}
.y1a_c03293{bottom:174.507067pt;}
.y18_c03293{bottom:245.225371pt;}
.y17_c03293{bottom:317.225563pt;}
.y15_c03293{bottom:361.386427pt;}
.y11_c03293{bottom:377.386939pt;}
.y16_c03293{bottom:407.786011pt;}
.y14_c03293{bottom:437.226235pt;}
.y13_c03293{bottom:453.226747pt;}
.y10_c03293{bottom:482.666971pt;}
.y12_c03293{bottom:497.386555pt;}
.yf_c03293{bottom:513.387067pt;}
.y1c_c03293{bottom:546.027067pt;}
.yb_c03293{bottom:593.385179pt;}
.yd_c03293{bottom:628.586875pt;}
.yc_c03293{bottom:637.227067pt;}
.ya_c03293{bottom:707.945339pt;}
.y9_c03293{bottom:779.945531pt;}
.y7_c03293{bottom:823.786427pt;}
.y3_c03293{bottom:839.786939pt;}
.y8_c03293{bottom:870.505979pt;}
.y6_c03293{bottom:899.946203pt;}
.y5_c03293{bottom:915.946715pt;}
.y2_c03293{bottom:945.386939pt;}
.y4_c03293{bottom:959.786555pt;}
.y1_c03293{bottom:975.787067pt;}
.ye_c03293{bottom:1008.747067pt;}
.h3_c03293{height:28.916250pt;}
.h1_c03293{height:37.063125pt;}
.h2_c03293{height:37.166250pt;}
.h4_c03293{height:48.581988pt;}
.h0_c03293{height:1122.666667pt;}
.w1_c03293{width:793.333333pt;}
.w0_c03293{width:793.626667pt;}
.x0_c03293{left:0.000000pt;}
.xd_c03293{left:104.000000pt;}
.x8_c03293{left:391.999872pt;}
.x4_c03293{left:396.160512pt;}
.xb_c03293{left:400.960000pt;}
.x7_c03293{left:404.799648pt;}
.x5_c03293{left:410.560128pt;}
.x1_c03293{left:411.840000pt;}
.xa_c03293{left:429.760320pt;}
.x9_c03293{left:437.439552pt;}
.x6_c03293{left:438.400512pt;}
.xc_c03293{left:450.560320pt;}
.x3_c03293{left:455.039904pt;}
.x2_c03293{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03294 {
    display:none;
  }
  .loading-indicator_c03294.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03294 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03294 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03294" -> "#page-container .classname_c03294")
 */
.pf_c03294 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03294 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03294.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03294 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03294 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03294 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03294 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03294 {overflow:visible;}
  }
}
.c_c03294 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03294 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03294:after { /* webkit #35443 */
  content: '';
}
.t_c03294:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03294 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03294 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03294 { /* info for Javascript */
  display:none;
}
.l_c03294 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03294 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03294 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03294:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03294 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03294.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03294.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03294 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03294{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03294;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03294{font-family:ff1_c03294;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03294;src:url('chunks/assets/font_38e1ed6e61acda0582a2c0ba.woff2')format("woff");}.ff2_c03294{font-family:ff2_c03294;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03294;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03294{font-family:ff3_c03294;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03294{vertical-align:0.000000px;}
.v1_c03294{vertical-align:1.439424px;}
.ls7_c03294{letter-spacing:-0.613008px;}
.ls9_c03294{letter-spacing:-0.574992px;}
.lse_c03294{letter-spacing:-0.275616px;}
.lsc_c03294{letter-spacing:-0.261360px;}
.ls6_c03294{letter-spacing:-0.242352px;}
.ls4_c03294{letter-spacing:-0.118800px;}
.ls11_c03294{letter-spacing:0.000000px;}
.ls2_c03294{letter-spacing:0.006048px;}
.ls5_c03294{letter-spacing:0.128304px;}
.lsb_c03294{letter-spacing:0.508464px;}
.ls10_c03294{letter-spacing:0.514080px;}
.lsd_c03294{letter-spacing:0.536976px;}
.lsa_c03294{letter-spacing:0.579744px;}
.lsf_c03294{letter-spacing:0.594000px;}
.ls8_c03294{letter-spacing:0.598752px;}
.ls3_c03294{letter-spacing:0.613008px;}
.ls0_c03294{letter-spacing:0.717552px;}
.ls1_c03294{letter-spacing:0.722304px;}
.sc__c03294{text-shadow:none;}
.sc0_c03294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03294{-webkit-text-stroke:0px transparent;}
.sc0_c03294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03294{word-spacing:-15.126048px;}
.wsa_c03294{word-spacing:-12.474000px;}
.ws8_c03294{word-spacing:-12.459744px;}
.ws9_c03294{word-spacing:-12.416976px;}
.ws4_c03294{word-spacing:-11.637648px;}
.ws2_c03294{word-spacing:-11.266992px;}
.ws11_c03294{word-spacing:-1.083456px;}
.ws10_c03294{word-spacing:-1.078704px;}
.wsd_c03294{word-spacing:-0.974160px;}
.ws14_c03294{word-spacing:-0.719712px;}
.wsf_c03294{word-spacing:-0.118800px;}
.ws12_c03294{word-spacing:-0.099792px;}
.ws13_c03294{word-spacing:-0.085536px;}
.wse_c03294{word-spacing:0.000000px;}
.wsb_c03294{word-spacing:33.300288px;}
.ws6_c03294{word-spacing:36.742464px;}
.ws1_c03294{word-spacing:37.759392px;}
.ws0_c03294{word-spacing:38.020752px;}
.ws3_c03294{word-spacing:39.218256px;}
.ws5_c03294{word-spacing:39.902544px;}
.ws7_c03294{word-spacing:42.026688px;}
._0_c03294{margin-left:-1.948320px;}
._2_c03294{width:1.482624px;}
._4_c03294{width:5.749920px;}
._1_c03294{width:50.252400px;}
._3_c03294{width:51.530688px;}
.fc0_c03294{color:rgb(0,0,0);}
.fs0_c03294{font-size:47.520000px;}
.fs1_c03294{font-size:60.480000px;}
.y0_c03294{bottom:0.000000px;}
.y19_c03294{bottom:146.998362px;}
.y1b_c03294{bottom:186.600234px;}
.y1a_c03294{bottom:196.320450px;}
.y18_c03294{bottom:275.878542px;}
.y17_c03294{bottom:356.878758px;}
.y15_c03294{bottom:406.559730px;}
.y11_c03294{bottom:424.560306px;}
.y16_c03294{bottom:458.759262px;}
.y14_c03294{bottom:491.879514px;}
.y13_c03294{bottom:509.880090px;}
.y10_c03294{bottom:543.000342px;}
.y12_c03294{bottom:559.559874px;}
.yf_c03294{bottom:577.560450px;}
.y1c_c03294{bottom:614.280450px;}
.yb_c03294{bottom:667.558326px;}
.yd_c03294{bottom:707.160234px;}
.yc_c03294{bottom:716.880450px;}
.ya_c03294{bottom:796.438506px;}
.y9_c03294{bottom:877.438722px;}
.y7_c03294{bottom:926.759730px;}
.y3_c03294{bottom:944.760306px;}
.y8_c03294{bottom:979.319226px;}
.y6_c03294{bottom:1012.439478px;}
.y5_c03294{bottom:1030.440054px;}
.y2_c03294{bottom:1063.560306px;}
.y4_c03294{bottom:1079.759874px;}
.y1_c03294{bottom:1097.760450px;}
.ye_c03294{bottom:1134.840450px;}
.h3_c03294{height:32.530781px;}
.h1_c03294{height:41.696016px;}
.h2_c03294{height:41.812031px;}
.h4_c03294{height:54.654737px;}
.h0_c03294{height:1263.000000px;}
.w1_c03294{width:892.500000px;}
.w0_c03294{width:892.830000px;}
.x0_c03294{left:0.000000px;}
.xd_c03294{left:117.000000px;}
.x8_c03294{left:440.999856px;}
.x4_c03294{left:445.680576px;}
.xb_c03294{left:451.080000px;}
.x7_c03294{left:455.399604px;}
.x5_c03294{left:461.880144px;}
.x1_c03294{left:463.320000px;}
.xa_c03294{left:483.480360px;}
.x9_c03294{left:492.119496px;}
.x6_c03294{left:493.200576px;}
.xc_c03294{left:506.880360px;}
.x3_c03294{left:511.919892px;}
.x2_c03294{left:526.679604px;}
@media print{
.v0_c03294{vertical-align:0.000000pt;}
.v1_c03294{vertical-align:1.279488pt;}
.ls7_c03294{letter-spacing:-0.544896pt;}
.ls9_c03294{letter-spacing:-0.511104pt;}
.lse_c03294{letter-spacing:-0.244992pt;}
.lsc_c03294{letter-spacing:-0.232320pt;}
.ls6_c03294{letter-spacing:-0.215424pt;}
.ls4_c03294{letter-spacing:-0.105600pt;}
.ls11_c03294{letter-spacing:0.000000pt;}
.ls2_c03294{letter-spacing:0.005376pt;}
.ls5_c03294{letter-spacing:0.114048pt;}
.lsb_c03294{letter-spacing:0.451968pt;}
.ls10_c03294{letter-spacing:0.456960pt;}
.lsd_c03294{letter-spacing:0.477312pt;}
.lsa_c03294{letter-spacing:0.515328pt;}
.lsf_c03294{letter-spacing:0.528000pt;}
.ls8_c03294{letter-spacing:0.532224pt;}
.ls3_c03294{letter-spacing:0.544896pt;}
.ls0_c03294{letter-spacing:0.637824pt;}
.ls1_c03294{letter-spacing:0.642048pt;}
.wsc_c03294{word-spacing:-13.445376pt;}
.wsa_c03294{word-spacing:-11.088000pt;}
.ws8_c03294{word-spacing:-11.075328pt;}
.ws9_c03294{word-spacing:-11.037312pt;}
.ws4_c03294{word-spacing:-10.344576pt;}
.ws2_c03294{word-spacing:-10.015104pt;}
.ws11_c03294{word-spacing:-0.963072pt;}
.ws10_c03294{word-spacing:-0.958848pt;}
.wsd_c03294{word-spacing:-0.865920pt;}
.ws14_c03294{word-spacing:-0.639744pt;}
.wsf_c03294{word-spacing:-0.105600pt;}
.ws12_c03294{word-spacing:-0.088704pt;}
.ws13_c03294{word-spacing:-0.076032pt;}
.wse_c03294{word-spacing:0.000000pt;}
.wsb_c03294{word-spacing:29.600256pt;}
.ws6_c03294{word-spacing:32.659968pt;}
.ws1_c03294{word-spacing:33.563904pt;}
.ws0_c03294{word-spacing:33.796224pt;}
.ws3_c03294{word-spacing:34.860672pt;}
.ws5_c03294{word-spacing:35.468928pt;}
.ws7_c03294{word-spacing:37.357056pt;}
._0_c03294{margin-left:-1.731840pt;}
._2_c03294{width:1.317888pt;}
._4_c03294{width:5.111040pt;}
._1_c03294{width:44.668800pt;}
._3_c03294{width:45.805056pt;}
.fs0_c03294{font-size:42.240000pt;}
.fs1_c03294{font-size:53.760000pt;}
.y0_c03294{bottom:0.000000pt;}
.y19_c03294{bottom:130.665211pt;}
.y1b_c03294{bottom:165.866875pt;}
.y1a_c03294{bottom:174.507067pt;}
.y18_c03294{bottom:245.225371pt;}
.y17_c03294{bottom:317.225563pt;}
.y15_c03294{bottom:361.386427pt;}
.y11_c03294{bottom:377.386939pt;}
.y16_c03294{bottom:407.786011pt;}
.y14_c03294{bottom:437.226235pt;}
.y13_c03294{bottom:453.226747pt;}
.y10_c03294{bottom:482.666971pt;}
.y12_c03294{bottom:497.386555pt;}
.yf_c03294{bottom:513.387067pt;}
.y1c_c03294{bottom:546.027067pt;}
.yb_c03294{bottom:593.385179pt;}
.yd_c03294{bottom:628.586875pt;}
.yc_c03294{bottom:637.227067pt;}
.ya_c03294{bottom:707.945339pt;}
.y9_c03294{bottom:779.945531pt;}
.y7_c03294{bottom:823.786427pt;}
.y3_c03294{bottom:839.786939pt;}
.y8_c03294{bottom:870.505979pt;}
.y6_c03294{bottom:899.946203pt;}
.y5_c03294{bottom:915.946715pt;}
.y2_c03294{bottom:945.386939pt;}
.y4_c03294{bottom:959.786555pt;}
.y1_c03294{bottom:975.787067pt;}
.ye_c03294{bottom:1008.747067pt;}
.h3_c03294{height:28.916250pt;}
.h1_c03294{height:37.063125pt;}
.h2_c03294{height:37.166250pt;}
.h4_c03294{height:48.581988pt;}
.h0_c03294{height:1122.666667pt;}
.w1_c03294{width:793.333333pt;}
.w0_c03294{width:793.626667pt;}
.x0_c03294{left:0.000000pt;}
.xd_c03294{left:104.000000pt;}
.x8_c03294{left:391.999872pt;}
.x4_c03294{left:396.160512pt;}
.xb_c03294{left:400.960000pt;}
.x7_c03294{left:404.799648pt;}
.x5_c03294{left:410.560128pt;}
.x1_c03294{left:411.840000pt;}
.xa_c03294{left:429.760320pt;}
.x9_c03294{left:437.439552pt;}
.x6_c03294{left:438.400512pt;}
.xc_c03294{left:450.560320pt;}
.x3_c03294{left:455.039904pt;}
.x2_c03294{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03295 {
    display:none;
  }
  .loading-indicator_c03295.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03295 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03295 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03295" -> "#page-container .classname_c03295")
 */
.pf_c03295 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03295 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03295.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03295 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03295 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03295 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03295 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03295 {overflow:visible;}
  }
}
.c_c03295 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03295 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03295:after { /* webkit #35443 */
  content: '';
}
.t_c03295:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03295 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03295 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03295 { /* info for Javascript */
  display:none;
}
.l_c03295 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03295 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03295 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03295:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03295 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03295.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03295.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03295 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03295{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03295;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03295{font-family:ff1_c03295;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03295;src:url('chunks/assets/font_573bc1828eec24ab553a4bac.woff2')format("woff");}.ff2_c03295{font-family:ff2_c03295;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03295;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03295{font-family:ff3_c03295;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03295{vertical-align:0.000000px;}
.v1_c03295{vertical-align:1.439424px;}
.ls7_c03295{letter-spacing:-0.613008px;}
.ls9_c03295{letter-spacing:-0.574992px;}
.lsc_c03295{letter-spacing:-0.304128px;}
.lsf_c03295{letter-spacing:-0.275616px;}
.lsd_c03295{letter-spacing:-0.261360px;}
.ls6_c03295{letter-spacing:-0.242352px;}
.ls4_c03295{letter-spacing:-0.118800px;}
.ls12_c03295{letter-spacing:0.000000px;}
.ls2_c03295{letter-spacing:0.006048px;}
.ls5_c03295{letter-spacing:0.128304px;}
.lsb_c03295{letter-spacing:0.508464px;}
.ls11_c03295{letter-spacing:0.514080px;}
.lse_c03295{letter-spacing:0.536976px;}
.lsa_c03295{letter-spacing:0.579744px;}
.ls10_c03295{letter-spacing:0.594000px;}
.ls8_c03295{letter-spacing:0.598752px;}
.ls3_c03295{letter-spacing:0.613008px;}
.ls0_c03295{letter-spacing:0.717552px;}
.ls1_c03295{letter-spacing:0.722304px;}
.sc__c03295{text-shadow:none;}
.sc0_c03295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03295{-webkit-text-stroke:0px transparent;}
.sc0_c03295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03295{word-spacing:-15.126048px;}
.wsa_c03295{word-spacing:-12.474000px;}
.wsd_c03295{word-spacing:-12.459744px;}
.ws9_c03295{word-spacing:-12.416976px;}
.ws4_c03295{word-spacing:-11.637648px;}
.ws2_c03295{word-spacing:-11.266992px;}
.ws12_c03295{word-spacing:-1.083456px;}
.ws11_c03295{word-spacing:-1.078704px;}
.wse_c03295{word-spacing:-0.974160px;}
.ws16_c03295{word-spacing:-0.719712px;}
.ws10_c03295{word-spacing:-0.118800px;}
.ws14_c03295{word-spacing:-0.099792px;}
.ws15_c03295{word-spacing:-0.085536px;}
.ws13_c03295{word-spacing:-0.057024px;}
.wsf_c03295{word-spacing:0.000000px;}
.wsb_c03295{word-spacing:33.300288px;}
.ws8_c03295{word-spacing:36.143712px;}
.ws6_c03295{word-spacing:36.742464px;}
.ws1_c03295{word-spacing:37.759392px;}
.ws0_c03295{word-spacing:38.020752px;}
.ws3_c03295{word-spacing:39.218256px;}
.ws5_c03295{word-spacing:39.902544px;}
.ws7_c03295{word-spacing:42.026688px;}
._0_c03295{margin-left:-1.948320px;}
._2_c03295{width:1.482624px;}
._4_c03295{width:5.749920px;}
._1_c03295{width:50.252400px;}
._3_c03295{width:51.530688px;}
.fc0_c03295{color:rgb(0,0,0);}
.fs0_c03295{font-size:47.520000px;}
.fs1_c03295{font-size:60.480000px;}
.y0_c03295{bottom:0.000000px;}
.y19_c03295{bottom:146.998362px;}
.y1b_c03295{bottom:186.600234px;}
.y1a_c03295{bottom:196.320450px;}
.y18_c03295{bottom:275.878542px;}
.y17_c03295{bottom:356.878758px;}
.y15_c03295{bottom:406.559730px;}
.y11_c03295{bottom:424.560306px;}
.y16_c03295{bottom:458.759262px;}
.y14_c03295{bottom:491.879514px;}
.y13_c03295{bottom:509.880090px;}
.y10_c03295{bottom:543.000342px;}
.y12_c03295{bottom:559.559874px;}
.yf_c03295{bottom:577.560450px;}
.y1c_c03295{bottom:614.280450px;}
.yb_c03295{bottom:667.558326px;}
.yd_c03295{bottom:707.160234px;}
.yc_c03295{bottom:716.880450px;}
.ya_c03295{bottom:796.438506px;}
.y9_c03295{bottom:877.438722px;}
.y7_c03295{bottom:926.759730px;}
.y3_c03295{bottom:944.760306px;}
.y8_c03295{bottom:979.319226px;}
.y6_c03295{bottom:1012.439478px;}
.y5_c03295{bottom:1030.440054px;}
.y2_c03295{bottom:1063.560306px;}
.y4_c03295{bottom:1079.759874px;}
.y1_c03295{bottom:1097.760450px;}
.ye_c03295{bottom:1134.840450px;}
.h3_c03295{height:32.530781px;}
.h1_c03295{height:41.696016px;}
.h2_c03295{height:41.812031px;}
.h4_c03295{height:54.654737px;}
.h0_c03295{height:1263.000000px;}
.w1_c03295{width:892.500000px;}
.w0_c03295{width:892.830000px;}
.x0_c03295{left:0.000000px;}
.xd_c03295{left:117.000000px;}
.x8_c03295{left:440.999856px;}
.x4_c03295{left:445.680576px;}
.xb_c03295{left:451.080000px;}
.x7_c03295{left:455.399604px;}
.x5_c03295{left:461.880144px;}
.x1_c03295{left:463.320000px;}
.xa_c03295{left:483.480360px;}
.x9_c03295{left:492.119496px;}
.x6_c03295{left:493.200576px;}
.xc_c03295{left:506.880360px;}
.x3_c03295{left:511.919892px;}
.x2_c03295{left:526.679604px;}
@media print{
.v0_c03295{vertical-align:0.000000pt;}
.v1_c03295{vertical-align:1.279488pt;}
.ls7_c03295{letter-spacing:-0.544896pt;}
.ls9_c03295{letter-spacing:-0.511104pt;}
.lsc_c03295{letter-spacing:-0.270336pt;}
.lsf_c03295{letter-spacing:-0.244992pt;}
.lsd_c03295{letter-spacing:-0.232320pt;}
.ls6_c03295{letter-spacing:-0.215424pt;}
.ls4_c03295{letter-spacing:-0.105600pt;}
.ls12_c03295{letter-spacing:0.000000pt;}
.ls2_c03295{letter-spacing:0.005376pt;}
.ls5_c03295{letter-spacing:0.114048pt;}
.lsb_c03295{letter-spacing:0.451968pt;}
.ls11_c03295{letter-spacing:0.456960pt;}
.lse_c03295{letter-spacing:0.477312pt;}
.lsa_c03295{letter-spacing:0.515328pt;}
.ls10_c03295{letter-spacing:0.528000pt;}
.ls8_c03295{letter-spacing:0.532224pt;}
.ls3_c03295{letter-spacing:0.544896pt;}
.ls0_c03295{letter-spacing:0.637824pt;}
.ls1_c03295{letter-spacing:0.642048pt;}
.wsc_c03295{word-spacing:-13.445376pt;}
.wsa_c03295{word-spacing:-11.088000pt;}
.wsd_c03295{word-spacing:-11.075328pt;}
.ws9_c03295{word-spacing:-11.037312pt;}
.ws4_c03295{word-spacing:-10.344576pt;}
.ws2_c03295{word-spacing:-10.015104pt;}
.ws12_c03295{word-spacing:-0.963072pt;}
.ws11_c03295{word-spacing:-0.958848pt;}
.wse_c03295{word-spacing:-0.865920pt;}
.ws16_c03295{word-spacing:-0.639744pt;}
.ws10_c03295{word-spacing:-0.105600pt;}
.ws14_c03295{word-spacing:-0.088704pt;}
.ws15_c03295{word-spacing:-0.076032pt;}
.ws13_c03295{word-spacing:-0.050688pt;}
.wsf_c03295{word-spacing:0.000000pt;}
.wsb_c03295{word-spacing:29.600256pt;}
.ws8_c03295{word-spacing:32.127744pt;}
.ws6_c03295{word-spacing:32.659968pt;}
.ws1_c03295{word-spacing:33.563904pt;}
.ws0_c03295{word-spacing:33.796224pt;}
.ws3_c03295{word-spacing:34.860672pt;}
.ws5_c03295{word-spacing:35.468928pt;}
.ws7_c03295{word-spacing:37.357056pt;}
._0_c03295{margin-left:-1.731840pt;}
._2_c03295{width:1.317888pt;}
._4_c03295{width:5.111040pt;}
._1_c03295{width:44.668800pt;}
._3_c03295{width:45.805056pt;}
.fs0_c03295{font-size:42.240000pt;}
.fs1_c03295{font-size:53.760000pt;}
.y0_c03295{bottom:0.000000pt;}
.y19_c03295{bottom:130.665211pt;}
.y1b_c03295{bottom:165.866875pt;}
.y1a_c03295{bottom:174.507067pt;}
.y18_c03295{bottom:245.225371pt;}
.y17_c03295{bottom:317.225563pt;}
.y15_c03295{bottom:361.386427pt;}
.y11_c03295{bottom:377.386939pt;}
.y16_c03295{bottom:407.786011pt;}
.y14_c03295{bottom:437.226235pt;}
.y13_c03295{bottom:453.226747pt;}
.y10_c03295{bottom:482.666971pt;}
.y12_c03295{bottom:497.386555pt;}
.yf_c03295{bottom:513.387067pt;}
.y1c_c03295{bottom:546.027067pt;}
.yb_c03295{bottom:593.385179pt;}
.yd_c03295{bottom:628.586875pt;}
.yc_c03295{bottom:637.227067pt;}
.ya_c03295{bottom:707.945339pt;}
.y9_c03295{bottom:779.945531pt;}
.y7_c03295{bottom:823.786427pt;}
.y3_c03295{bottom:839.786939pt;}
.y8_c03295{bottom:870.505979pt;}
.y6_c03295{bottom:899.946203pt;}
.y5_c03295{bottom:915.946715pt;}
.y2_c03295{bottom:945.386939pt;}
.y4_c03295{bottom:959.786555pt;}
.y1_c03295{bottom:975.787067pt;}
.ye_c03295{bottom:1008.747067pt;}
.h3_c03295{height:28.916250pt;}
.h1_c03295{height:37.063125pt;}
.h2_c03295{height:37.166250pt;}
.h4_c03295{height:48.581988pt;}
.h0_c03295{height:1122.666667pt;}
.w1_c03295{width:793.333333pt;}
.w0_c03295{width:793.626667pt;}
.x0_c03295{left:0.000000pt;}
.xd_c03295{left:104.000000pt;}
.x8_c03295{left:391.999872pt;}
.x4_c03295{left:396.160512pt;}
.xb_c03295{left:400.960000pt;}
.x7_c03295{left:404.799648pt;}
.x5_c03295{left:410.560128pt;}
.x1_c03295{left:411.840000pt;}
.xa_c03295{left:429.760320pt;}
.x9_c03295{left:437.439552pt;}
.x6_c03295{left:438.400512pt;}
.xc_c03295{left:450.560320pt;}
.x3_c03295{left:455.039904pt;}
.x2_c03295{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03296 {
    display:none;
  }
  .loading-indicator_c03296.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03296 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03296 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03296" -> "#page-container .classname_c03296")
 */
.pf_c03296 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03296 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03296.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03296 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03296 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03296 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03296 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03296 {overflow:visible;}
  }
}
.c_c03296 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03296 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03296:after { /* webkit #35443 */
  content: '';
}
.t_c03296:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03296 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03296 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03296 { /* info for Javascript */
  display:none;
}
.l_c03296 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03296 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03296 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03296:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03296 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03296.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03296.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03296 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03296{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03296;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03296{font-family:ff1_c03296;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03296;src:url('chunks/assets/font_2c1a1ddc6cef0f3549e34e7b.woff2')format("woff");}.ff2_c03296{font-family:ff2_c03296;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03296;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03296{font-family:ff3_c03296;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03296{vertical-align:0.000000px;}
.v1_c03296{vertical-align:1.439424px;}
.ls7_c03296{letter-spacing:-0.613008px;}
.ls9_c03296{letter-spacing:-0.574992px;}
.lse_c03296{letter-spacing:-0.275616px;}
.lsc_c03296{letter-spacing:-0.261360px;}
.ls6_c03296{letter-spacing:-0.242352px;}
.ls4_c03296{letter-spacing:-0.118800px;}
.ls11_c03296{letter-spacing:0.000000px;}
.ls2_c03296{letter-spacing:0.006048px;}
.ls5_c03296{letter-spacing:0.128304px;}
.lsb_c03296{letter-spacing:0.508464px;}
.ls10_c03296{letter-spacing:0.514080px;}
.lsd_c03296{letter-spacing:0.536976px;}
.lsa_c03296{letter-spacing:0.579744px;}
.lsf_c03296{letter-spacing:0.594000px;}
.ls8_c03296{letter-spacing:0.598752px;}
.ls3_c03296{letter-spacing:0.613008px;}
.ls0_c03296{letter-spacing:0.717552px;}
.ls1_c03296{letter-spacing:0.722304px;}
.sc__c03296{text-shadow:none;}
.sc0_c03296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03296{-webkit-text-stroke:0px transparent;}
.sc0_c03296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03296{word-spacing:-15.126048px;}
.wsa_c03296{word-spacing:-12.474000px;}
.ws8_c03296{word-spacing:-12.459744px;}
.ws9_c03296{word-spacing:-12.416976px;}
.ws4_c03296{word-spacing:-11.637648px;}
.ws2_c03296{word-spacing:-11.266992px;}
.ws11_c03296{word-spacing:-1.083456px;}
.ws10_c03296{word-spacing:-1.078704px;}
.wsd_c03296{word-spacing:-0.974160px;}
.ws14_c03296{word-spacing:-0.719712px;}
.wsf_c03296{word-spacing:-0.118800px;}
.ws12_c03296{word-spacing:-0.099792px;}
.ws13_c03296{word-spacing:-0.085536px;}
.wse_c03296{word-spacing:0.000000px;}
.wsb_c03296{word-spacing:33.300288px;}
.ws6_c03296{word-spacing:36.742464px;}
.ws1_c03296{word-spacing:37.759392px;}
.ws0_c03296{word-spacing:38.020752px;}
.ws3_c03296{word-spacing:39.218256px;}
.ws5_c03296{word-spacing:39.902544px;}
.ws7_c03296{word-spacing:42.026688px;}
._0_c03296{margin-left:-1.948320px;}
._2_c03296{width:1.482624px;}
._4_c03296{width:5.749920px;}
._1_c03296{width:50.252400px;}
._3_c03296{width:51.530688px;}
.fc0_c03296{color:rgb(0,0,0);}
.fs0_c03296{font-size:47.520000px;}
.fs1_c03296{font-size:60.480000px;}
.y0_c03296{bottom:0.000000px;}
.y19_c03296{bottom:146.998362px;}
.y1b_c03296{bottom:186.600234px;}
.y1a_c03296{bottom:196.320450px;}
.y18_c03296{bottom:275.878542px;}
.y17_c03296{bottom:356.878758px;}
.y15_c03296{bottom:406.559730px;}
.y11_c03296{bottom:424.560306px;}
.y16_c03296{bottom:458.759262px;}
.y14_c03296{bottom:491.879514px;}
.y13_c03296{bottom:509.880090px;}
.y10_c03296{bottom:543.000342px;}
.y12_c03296{bottom:559.559874px;}
.yf_c03296{bottom:577.560450px;}
.y1c_c03296{bottom:614.280450px;}
.yb_c03296{bottom:667.558326px;}
.yd_c03296{bottom:707.160234px;}
.yc_c03296{bottom:716.880450px;}
.ya_c03296{bottom:796.438506px;}
.y9_c03296{bottom:877.438722px;}
.y7_c03296{bottom:926.759730px;}
.y3_c03296{bottom:944.760306px;}
.y8_c03296{bottom:979.319226px;}
.y6_c03296{bottom:1012.439478px;}
.y5_c03296{bottom:1030.440054px;}
.y2_c03296{bottom:1063.560306px;}
.y4_c03296{bottom:1079.759874px;}
.y1_c03296{bottom:1097.760450px;}
.ye_c03296{bottom:1134.840450px;}
.h3_c03296{height:32.530781px;}
.h1_c03296{height:41.696016px;}
.h2_c03296{height:41.812031px;}
.h4_c03296{height:54.654737px;}
.h0_c03296{height:1263.000000px;}
.w1_c03296{width:892.500000px;}
.w0_c03296{width:892.830000px;}
.x0_c03296{left:0.000000px;}
.xd_c03296{left:117.000000px;}
.x8_c03296{left:440.999856px;}
.x4_c03296{left:445.680576px;}
.xb_c03296{left:451.080000px;}
.x7_c03296{left:455.399604px;}
.x5_c03296{left:461.880144px;}
.x1_c03296{left:463.320000px;}
.xa_c03296{left:483.480360px;}
.x9_c03296{left:492.119496px;}
.x6_c03296{left:493.200576px;}
.xc_c03296{left:506.880360px;}
.x3_c03296{left:511.919892px;}
.x2_c03296{left:526.679604px;}
@media print{
.v0_c03296{vertical-align:0.000000pt;}
.v1_c03296{vertical-align:1.279488pt;}
.ls7_c03296{letter-spacing:-0.544896pt;}
.ls9_c03296{letter-spacing:-0.511104pt;}
.lse_c03296{letter-spacing:-0.244992pt;}
.lsc_c03296{letter-spacing:-0.232320pt;}
.ls6_c03296{letter-spacing:-0.215424pt;}
.ls4_c03296{letter-spacing:-0.105600pt;}
.ls11_c03296{letter-spacing:0.000000pt;}
.ls2_c03296{letter-spacing:0.005376pt;}
.ls5_c03296{letter-spacing:0.114048pt;}
.lsb_c03296{letter-spacing:0.451968pt;}
.ls10_c03296{letter-spacing:0.456960pt;}
.lsd_c03296{letter-spacing:0.477312pt;}
.lsa_c03296{letter-spacing:0.515328pt;}
.lsf_c03296{letter-spacing:0.528000pt;}
.ls8_c03296{letter-spacing:0.532224pt;}
.ls3_c03296{letter-spacing:0.544896pt;}
.ls0_c03296{letter-spacing:0.637824pt;}
.ls1_c03296{letter-spacing:0.642048pt;}
.wsc_c03296{word-spacing:-13.445376pt;}
.wsa_c03296{word-spacing:-11.088000pt;}
.ws8_c03296{word-spacing:-11.075328pt;}
.ws9_c03296{word-spacing:-11.037312pt;}
.ws4_c03296{word-spacing:-10.344576pt;}
.ws2_c03296{word-spacing:-10.015104pt;}
.ws11_c03296{word-spacing:-0.963072pt;}
.ws10_c03296{word-spacing:-0.958848pt;}
.wsd_c03296{word-spacing:-0.865920pt;}
.ws14_c03296{word-spacing:-0.639744pt;}
.wsf_c03296{word-spacing:-0.105600pt;}
.ws12_c03296{word-spacing:-0.088704pt;}
.ws13_c03296{word-spacing:-0.076032pt;}
.wse_c03296{word-spacing:0.000000pt;}
.wsb_c03296{word-spacing:29.600256pt;}
.ws6_c03296{word-spacing:32.659968pt;}
.ws1_c03296{word-spacing:33.563904pt;}
.ws0_c03296{word-spacing:33.796224pt;}
.ws3_c03296{word-spacing:34.860672pt;}
.ws5_c03296{word-spacing:35.468928pt;}
.ws7_c03296{word-spacing:37.357056pt;}
._0_c03296{margin-left:-1.731840pt;}
._2_c03296{width:1.317888pt;}
._4_c03296{width:5.111040pt;}
._1_c03296{width:44.668800pt;}
._3_c03296{width:45.805056pt;}
.fs0_c03296{font-size:42.240000pt;}
.fs1_c03296{font-size:53.760000pt;}
.y0_c03296{bottom:0.000000pt;}
.y19_c03296{bottom:130.665211pt;}
.y1b_c03296{bottom:165.866875pt;}
.y1a_c03296{bottom:174.507067pt;}
.y18_c03296{bottom:245.225371pt;}
.y17_c03296{bottom:317.225563pt;}
.y15_c03296{bottom:361.386427pt;}
.y11_c03296{bottom:377.386939pt;}
.y16_c03296{bottom:407.786011pt;}
.y14_c03296{bottom:437.226235pt;}
.y13_c03296{bottom:453.226747pt;}
.y10_c03296{bottom:482.666971pt;}
.y12_c03296{bottom:497.386555pt;}
.yf_c03296{bottom:513.387067pt;}
.y1c_c03296{bottom:546.027067pt;}
.yb_c03296{bottom:593.385179pt;}
.yd_c03296{bottom:628.586875pt;}
.yc_c03296{bottom:637.227067pt;}
.ya_c03296{bottom:707.945339pt;}
.y9_c03296{bottom:779.945531pt;}
.y7_c03296{bottom:823.786427pt;}
.y3_c03296{bottom:839.786939pt;}
.y8_c03296{bottom:870.505979pt;}
.y6_c03296{bottom:899.946203pt;}
.y5_c03296{bottom:915.946715pt;}
.y2_c03296{bottom:945.386939pt;}
.y4_c03296{bottom:959.786555pt;}
.y1_c03296{bottom:975.787067pt;}
.ye_c03296{bottom:1008.747067pt;}
.h3_c03296{height:28.916250pt;}
.h1_c03296{height:37.063125pt;}
.h2_c03296{height:37.166250pt;}
.h4_c03296{height:48.581988pt;}
.h0_c03296{height:1122.666667pt;}
.w1_c03296{width:793.333333pt;}
.w0_c03296{width:793.626667pt;}
.x0_c03296{left:0.000000pt;}
.xd_c03296{left:104.000000pt;}
.x8_c03296{left:391.999872pt;}
.x4_c03296{left:396.160512pt;}
.xb_c03296{left:400.960000pt;}
.x7_c03296{left:404.799648pt;}
.x5_c03296{left:410.560128pt;}
.x1_c03296{left:411.840000pt;}
.xa_c03296{left:429.760320pt;}
.x9_c03296{left:437.439552pt;}
.x6_c03296{left:438.400512pt;}
.xc_c03296{left:450.560320pt;}
.x3_c03296{left:455.039904pt;}
.x2_c03296{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03297 {
    display:none;
  }
  .loading-indicator_c03297.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03297 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03297 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03297" -> "#page-container .classname_c03297")
 */
.pf_c03297 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03297 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03297.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03297 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03297 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03297 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03297 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03297 {overflow:visible;}
  }
}
.c_c03297 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03297 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03297:after { /* webkit #35443 */
  content: '';
}
.t_c03297:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03297 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03297 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03297 { /* info for Javascript */
  display:none;
}
.l_c03297 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03297 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03297 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03297:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03297 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03297.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03297.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03297 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03297{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03297;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03297{font-family:ff1_c03297;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03297;src:url('chunks/assets/font_8cc90dc690d4030a8cf1022f.woff2')format("woff");}.ff2_c03297{font-family:ff2_c03297;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03297;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03297{font-family:ff3_c03297;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03297{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03297{vertical-align:0.000000px;}
.v1_c03297{vertical-align:1.439424px;}
.ls7_c03297{letter-spacing:-0.613008px;}
.ls9_c03297{letter-spacing:-0.574992px;}
.lse_c03297{letter-spacing:-0.275616px;}
.lsc_c03297{letter-spacing:-0.261360px;}
.ls6_c03297{letter-spacing:-0.242352px;}
.ls4_c03297{letter-spacing:-0.118800px;}
.ls11_c03297{letter-spacing:0.000000px;}
.ls2_c03297{letter-spacing:0.006048px;}
.ls5_c03297{letter-spacing:0.128304px;}
.lsb_c03297{letter-spacing:0.508464px;}
.ls10_c03297{letter-spacing:0.514080px;}
.lsd_c03297{letter-spacing:0.536976px;}
.lsa_c03297{letter-spacing:0.579744px;}
.lsf_c03297{letter-spacing:0.594000px;}
.ls8_c03297{letter-spacing:0.598752px;}
.ls3_c03297{letter-spacing:0.613008px;}
.ls0_c03297{letter-spacing:0.717552px;}
.ls1_c03297{letter-spacing:0.722304px;}
.sc__c03297{text-shadow:none;}
.sc0_c03297{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03297{-webkit-text-stroke:0px transparent;}
.sc0_c03297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03297{word-spacing:-15.126048px;}
.wsa_c03297{word-spacing:-12.474000px;}
.ws8_c03297{word-spacing:-12.459744px;}
.ws9_c03297{word-spacing:-12.416976px;}
.ws4_c03297{word-spacing:-11.637648px;}
.ws2_c03297{word-spacing:-11.266992px;}
.ws11_c03297{word-spacing:-1.083456px;}
.ws10_c03297{word-spacing:-1.078704px;}
.wsd_c03297{word-spacing:-0.974160px;}
.ws14_c03297{word-spacing:-0.719712px;}
.wsf_c03297{word-spacing:-0.118800px;}
.ws12_c03297{word-spacing:-0.099792px;}
.ws13_c03297{word-spacing:-0.085536px;}
.wse_c03297{word-spacing:0.000000px;}
.wsb_c03297{word-spacing:33.300288px;}
.ws6_c03297{word-spacing:36.742464px;}
.ws1_c03297{word-spacing:37.759392px;}
.ws0_c03297{word-spacing:38.020752px;}
.ws3_c03297{word-spacing:39.218256px;}
.ws5_c03297{word-spacing:39.902544px;}
.ws7_c03297{word-spacing:42.026688px;}
._0_c03297{margin-left:-1.948320px;}
._2_c03297{width:1.482624px;}
._4_c03297{width:5.749920px;}
._1_c03297{width:50.252400px;}
._3_c03297{width:51.530688px;}
.fc0_c03297{color:rgb(0,0,0);}
.fs0_c03297{font-size:47.520000px;}
.fs1_c03297{font-size:60.480000px;}
.y0_c03297{bottom:0.000000px;}
.y19_c03297{bottom:146.998362px;}
.y1b_c03297{bottom:186.600234px;}
.y1a_c03297{bottom:196.320450px;}
.y18_c03297{bottom:275.878542px;}
.y17_c03297{bottom:356.878758px;}
.y15_c03297{bottom:406.559730px;}
.y11_c03297{bottom:424.560306px;}
.y16_c03297{bottom:458.759262px;}
.y14_c03297{bottom:491.879514px;}
.y13_c03297{bottom:509.880090px;}
.y10_c03297{bottom:543.000342px;}
.y12_c03297{bottom:559.559874px;}
.yf_c03297{bottom:577.560450px;}
.y1c_c03297{bottom:614.280450px;}
.yb_c03297{bottom:667.558326px;}
.yd_c03297{bottom:707.160234px;}
.yc_c03297{bottom:716.880450px;}
.ya_c03297{bottom:796.438506px;}
.y9_c03297{bottom:877.438722px;}
.y7_c03297{bottom:926.759730px;}
.y3_c03297{bottom:944.760306px;}
.y8_c03297{bottom:979.319226px;}
.y6_c03297{bottom:1012.439478px;}
.y5_c03297{bottom:1030.440054px;}
.y2_c03297{bottom:1063.560306px;}
.y4_c03297{bottom:1079.759874px;}
.y1_c03297{bottom:1097.760450px;}
.ye_c03297{bottom:1134.840450px;}
.h3_c03297{height:32.530781px;}
.h1_c03297{height:41.696016px;}
.h2_c03297{height:41.812031px;}
.h4_c03297{height:54.654737px;}
.h0_c03297{height:1263.000000px;}
.w1_c03297{width:892.500000px;}
.w0_c03297{width:892.830000px;}
.x0_c03297{left:0.000000px;}
.xd_c03297{left:117.000000px;}
.x8_c03297{left:440.999856px;}
.x4_c03297{left:445.680576px;}
.xb_c03297{left:451.080000px;}
.x7_c03297{left:455.399604px;}
.x5_c03297{left:461.880144px;}
.x1_c03297{left:463.320000px;}
.xa_c03297{left:483.480360px;}
.x9_c03297{left:492.119496px;}
.x6_c03297{left:493.200576px;}
.xc_c03297{left:506.880360px;}
.x3_c03297{left:511.919892px;}
.x2_c03297{left:526.679604px;}
@media print{
.v0_c03297{vertical-align:0.000000pt;}
.v1_c03297{vertical-align:1.279488pt;}
.ls7_c03297{letter-spacing:-0.544896pt;}
.ls9_c03297{letter-spacing:-0.511104pt;}
.lse_c03297{letter-spacing:-0.244992pt;}
.lsc_c03297{letter-spacing:-0.232320pt;}
.ls6_c03297{letter-spacing:-0.215424pt;}
.ls4_c03297{letter-spacing:-0.105600pt;}
.ls11_c03297{letter-spacing:0.000000pt;}
.ls2_c03297{letter-spacing:0.005376pt;}
.ls5_c03297{letter-spacing:0.114048pt;}
.lsb_c03297{letter-spacing:0.451968pt;}
.ls10_c03297{letter-spacing:0.456960pt;}
.lsd_c03297{letter-spacing:0.477312pt;}
.lsa_c03297{letter-spacing:0.515328pt;}
.lsf_c03297{letter-spacing:0.528000pt;}
.ls8_c03297{letter-spacing:0.532224pt;}
.ls3_c03297{letter-spacing:0.544896pt;}
.ls0_c03297{letter-spacing:0.637824pt;}
.ls1_c03297{letter-spacing:0.642048pt;}
.wsc_c03297{word-spacing:-13.445376pt;}
.wsa_c03297{word-spacing:-11.088000pt;}
.ws8_c03297{word-spacing:-11.075328pt;}
.ws9_c03297{word-spacing:-11.037312pt;}
.ws4_c03297{word-spacing:-10.344576pt;}
.ws2_c03297{word-spacing:-10.015104pt;}
.ws11_c03297{word-spacing:-0.963072pt;}
.ws10_c03297{word-spacing:-0.958848pt;}
.wsd_c03297{word-spacing:-0.865920pt;}
.ws14_c03297{word-spacing:-0.639744pt;}
.wsf_c03297{word-spacing:-0.105600pt;}
.ws12_c03297{word-spacing:-0.088704pt;}
.ws13_c03297{word-spacing:-0.076032pt;}
.wse_c03297{word-spacing:0.000000pt;}
.wsb_c03297{word-spacing:29.600256pt;}
.ws6_c03297{word-spacing:32.659968pt;}
.ws1_c03297{word-spacing:33.563904pt;}
.ws0_c03297{word-spacing:33.796224pt;}
.ws3_c03297{word-spacing:34.860672pt;}
.ws5_c03297{word-spacing:35.468928pt;}
.ws7_c03297{word-spacing:37.357056pt;}
._0_c03297{margin-left:-1.731840pt;}
._2_c03297{width:1.317888pt;}
._4_c03297{width:5.111040pt;}
._1_c03297{width:44.668800pt;}
._3_c03297{width:45.805056pt;}
.fs0_c03297{font-size:42.240000pt;}
.fs1_c03297{font-size:53.760000pt;}
.y0_c03297{bottom:0.000000pt;}
.y19_c03297{bottom:130.665211pt;}
.y1b_c03297{bottom:165.866875pt;}
.y1a_c03297{bottom:174.507067pt;}
.y18_c03297{bottom:245.225371pt;}
.y17_c03297{bottom:317.225563pt;}
.y15_c03297{bottom:361.386427pt;}
.y11_c03297{bottom:377.386939pt;}
.y16_c03297{bottom:407.786011pt;}
.y14_c03297{bottom:437.226235pt;}
.y13_c03297{bottom:453.226747pt;}
.y10_c03297{bottom:482.666971pt;}
.y12_c03297{bottom:497.386555pt;}
.yf_c03297{bottom:513.387067pt;}
.y1c_c03297{bottom:546.027067pt;}
.yb_c03297{bottom:593.385179pt;}
.yd_c03297{bottom:628.586875pt;}
.yc_c03297{bottom:637.227067pt;}
.ya_c03297{bottom:707.945339pt;}
.y9_c03297{bottom:779.945531pt;}
.y7_c03297{bottom:823.786427pt;}
.y3_c03297{bottom:839.786939pt;}
.y8_c03297{bottom:870.505979pt;}
.y6_c03297{bottom:899.946203pt;}
.y5_c03297{bottom:915.946715pt;}
.y2_c03297{bottom:945.386939pt;}
.y4_c03297{bottom:959.786555pt;}
.y1_c03297{bottom:975.787067pt;}
.ye_c03297{bottom:1008.747067pt;}
.h3_c03297{height:28.916250pt;}
.h1_c03297{height:37.063125pt;}
.h2_c03297{height:37.166250pt;}
.h4_c03297{height:48.581988pt;}
.h0_c03297{height:1122.666667pt;}
.w1_c03297{width:793.333333pt;}
.w0_c03297{width:793.626667pt;}
.x0_c03297{left:0.000000pt;}
.xd_c03297{left:104.000000pt;}
.x8_c03297{left:391.999872pt;}
.x4_c03297{left:396.160512pt;}
.xb_c03297{left:400.960000pt;}
.x7_c03297{left:404.799648pt;}
.x5_c03297{left:410.560128pt;}
.x1_c03297{left:411.840000pt;}
.xa_c03297{left:429.760320pt;}
.x9_c03297{left:437.439552pt;}
.x6_c03297{left:438.400512pt;}
.xc_c03297{left:450.560320pt;}
.x3_c03297{left:455.039904pt;}
.x2_c03297{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03298 {
    display:none;
  }
  .loading-indicator_c03298.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03298 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03298 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03298" -> "#page-container .classname_c03298")
 */
.pf_c03298 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03298 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03298.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03298 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03298 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03298 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03298 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03298 {overflow:visible;}
  }
}
.c_c03298 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03298 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03298:after { /* webkit #35443 */
  content: '';
}
.t_c03298:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03298 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03298 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03298 { /* info for Javascript */
  display:none;
}
.l_c03298 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03298 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03298 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03298:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03298 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03298.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03298.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03298 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03298{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03298;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03298{font-family:ff1_c03298;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03298;src:url('chunks/assets/font_94438814689911fd2a634ca7.woff2')format("woff");}.ff2_c03298{font-family:ff2_c03298;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03298;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03298{font-family:ff3_c03298;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03298{vertical-align:0.000000px;}
.v1_c03298{vertical-align:1.439424px;}
.ls10_c03298{letter-spacing:-0.736560px;}
.lsc_c03298{letter-spacing:-0.722304px;}
.ls7_c03298{letter-spacing:-0.613008px;}
.ls9_c03298{letter-spacing:-0.574992px;}
.lsd_c03298{letter-spacing:-0.304128px;}
.ls15_c03298{letter-spacing:-0.275616px;}
.ls11_c03298{letter-spacing:-0.270864px;}
.lse_c03298{letter-spacing:-0.261360px;}
.ls6_c03298{letter-spacing:-0.242352px;}
.ls4_c03298{letter-spacing:-0.118800px;}
.ls14_c03298{letter-spacing:0.000000px;}
.ls1_c03298{letter-spacing:0.006048px;}
.ls5_c03298{letter-spacing:0.128304px;}
.lsb_c03298{letter-spacing:0.508464px;}
.ls13_c03298{letter-spacing:0.514080px;}
.lsf_c03298{letter-spacing:0.536976px;}
.lsa_c03298{letter-spacing:0.579744px;}
.ls12_c03298{letter-spacing:0.594000px;}
.ls8_c03298{letter-spacing:0.598752px;}
.ls3_c03298{letter-spacing:0.613008px;}
.ls0_c03298{letter-spacing:0.717552px;}
.ls2_c03298{letter-spacing:0.722304px;}
.sc__c03298{text-shadow:none;}
.sc0_c03298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03298{-webkit-text-stroke:0px transparent;}
.sc0_c03298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03298{word-spacing:-15.126048px;}
.wsb_c03298{word-spacing:-12.474000px;}
.ws6_c03298{word-spacing:-12.459744px;}
.wsf_c03298{word-spacing:-12.416976px;}
.ws4_c03298{word-spacing:-11.637648px;}
.ws2_c03298{word-spacing:-11.266992px;}
.ws1a_c03298{word-spacing:-1.083456px;}
.ws13_c03298{word-spacing:-1.078704px;}
.ws10_c03298{word-spacing:-0.974160px;}
.ws19_c03298{word-spacing:-0.719712px;}
.ws12_c03298{word-spacing:-0.118800px;}
.ws16_c03298{word-spacing:-0.099792px;}
.ws17_c03298{word-spacing:-0.090288px;}
.ws18_c03298{word-spacing:-0.085536px;}
.ws15_c03298{word-spacing:-0.057024px;}
.ws11_c03298{word-spacing:0.000000px;}
.ws14_c03298{word-spacing:0.361152px;}
.wsa_c03298{word-spacing:6.629040px;}
.wsc_c03298{word-spacing:33.300288px;}
.ws9_c03298{word-spacing:34.836912px;}
.ws8_c03298{word-spacing:36.143712px;}
.wse_c03298{word-spacing:36.742464px;}
.ws1_c03298{word-spacing:37.759392px;}
.ws0_c03298{word-spacing:38.020752px;}
.ws3_c03298{word-spacing:39.218256px;}
.ws5_c03298{word-spacing:39.902544px;}
.ws7_c03298{word-spacing:42.026688px;}
._0_c03298{margin-left:-1.948320px;}
._2_c03298{width:1.482624px;}
._4_c03298{width:5.749920px;}
._6_c03298{width:19.982160px;}
._7_c03298{width:23.451120px;}
._5_c03298{width:24.691392px;}
._1_c03298{width:50.252400px;}
._3_c03298{width:51.530688px;}
.fc0_c03298{color:rgb(0,0,0);}
.fs0_c03298{font-size:47.520000px;}
.fs1_c03298{font-size:60.480000px;}
.y0_c03298{bottom:0.000000px;}
.y1a_c03298{bottom:146.998362px;}
.y1c_c03298{bottom:186.600234px;}
.y1b_c03298{bottom:196.320450px;}
.y19_c03298{bottom:275.878542px;}
.y18_c03298{bottom:356.878758px;}
.y16_c03298{bottom:406.559730px;}
.y12_c03298{bottom:424.560306px;}
.y17_c03298{bottom:458.759262px;}
.y15_c03298{bottom:491.879514px;}
.y14_c03298{bottom:509.880090px;}
.y11_c03298{bottom:543.000342px;}
.y13_c03298{bottom:559.559874px;}
.y10_c03298{bottom:577.560450px;}
.y1d_c03298{bottom:614.280450px;}
.yc_c03298{bottom:652.438650px;}
.yb_c03298{bottom:667.558326px;}
.ye_c03298{bottom:707.160234px;}
.yd_c03298{bottom:716.880450px;}
.ya_c03298{bottom:796.438506px;}
.y9_c03298{bottom:877.438722px;}
.y7_c03298{bottom:926.759730px;}
.y3_c03298{bottom:944.760306px;}
.y8_c03298{bottom:979.319226px;}
.y6_c03298{bottom:1012.439478px;}
.y5_c03298{bottom:1030.440054px;}
.y2_c03298{bottom:1063.560306px;}
.y4_c03298{bottom:1079.759874px;}
.y1_c03298{bottom:1097.760450px;}
.yf_c03298{bottom:1134.840450px;}
.h3_c03298{height:32.530781px;}
.h1_c03298{height:41.696016px;}
.h2_c03298{height:41.812031px;}
.h4_c03298{height:54.654737px;}
.h0_c03298{height:1263.000000px;}
.w1_c03298{width:892.500000px;}
.w0_c03298{width:892.830000px;}
.x0_c03298{left:0.000000px;}
.xe_c03298{left:117.000000px;}
.x8_c03298{left:440.999856px;}
.x4_c03298{left:445.680576px;}
.xc_c03298{left:451.080000px;}
.x7_c03298{left:455.399604px;}
.x5_c03298{left:461.880144px;}
.x1_c03298{left:463.320000px;}
.xa_c03298{left:483.480360px;}
.x9_c03298{left:492.119496px;}
.x6_c03298{left:493.200576px;}
.xd_c03298{left:506.880360px;}
.x3_c03298{left:511.919892px;}
.x2_c03298{left:526.679604px;}
.xb_c03298{left:569.880036px;}
@media print{
.v0_c03298{vertical-align:0.000000pt;}
.v1_c03298{vertical-align:1.279488pt;}
.ls10_c03298{letter-spacing:-0.654720pt;}
.lsc_c03298{letter-spacing:-0.642048pt;}
.ls7_c03298{letter-spacing:-0.544896pt;}
.ls9_c03298{letter-spacing:-0.511104pt;}
.lsd_c03298{letter-spacing:-0.270336pt;}
.ls15_c03298{letter-spacing:-0.244992pt;}
.ls11_c03298{letter-spacing:-0.240768pt;}
.lse_c03298{letter-spacing:-0.232320pt;}
.ls6_c03298{letter-spacing:-0.215424pt;}
.ls4_c03298{letter-spacing:-0.105600pt;}
.ls14_c03298{letter-spacing:0.000000pt;}
.ls1_c03298{letter-spacing:0.005376pt;}
.ls5_c03298{letter-spacing:0.114048pt;}
.lsb_c03298{letter-spacing:0.451968pt;}
.ls13_c03298{letter-spacing:0.456960pt;}
.lsf_c03298{letter-spacing:0.477312pt;}
.lsa_c03298{letter-spacing:0.515328pt;}
.ls12_c03298{letter-spacing:0.528000pt;}
.ls8_c03298{letter-spacing:0.532224pt;}
.ls3_c03298{letter-spacing:0.544896pt;}
.ls0_c03298{letter-spacing:0.637824pt;}
.ls2_c03298{letter-spacing:0.642048pt;}
.wsd_c03298{word-spacing:-13.445376pt;}
.wsb_c03298{word-spacing:-11.088000pt;}
.ws6_c03298{word-spacing:-11.075328pt;}
.wsf_c03298{word-spacing:-11.037312pt;}
.ws4_c03298{word-spacing:-10.344576pt;}
.ws2_c03298{word-spacing:-10.015104pt;}
.ws1a_c03298{word-spacing:-0.963072pt;}
.ws13_c03298{word-spacing:-0.958848pt;}
.ws10_c03298{word-spacing:-0.865920pt;}
.ws19_c03298{word-spacing:-0.639744pt;}
.ws12_c03298{word-spacing:-0.105600pt;}
.ws16_c03298{word-spacing:-0.088704pt;}
.ws17_c03298{word-spacing:-0.080256pt;}
.ws18_c03298{word-spacing:-0.076032pt;}
.ws15_c03298{word-spacing:-0.050688pt;}
.ws11_c03298{word-spacing:0.000000pt;}
.ws14_c03298{word-spacing:0.321024pt;}
.wsa_c03298{word-spacing:5.892480pt;}
.wsc_c03298{word-spacing:29.600256pt;}
.ws9_c03298{word-spacing:30.966144pt;}
.ws8_c03298{word-spacing:32.127744pt;}
.wse_c03298{word-spacing:32.659968pt;}
.ws1_c03298{word-spacing:33.563904pt;}
.ws0_c03298{word-spacing:33.796224pt;}
.ws3_c03298{word-spacing:34.860672pt;}
.ws5_c03298{word-spacing:35.468928pt;}
.ws7_c03298{word-spacing:37.357056pt;}
._0_c03298{margin-left:-1.731840pt;}
._2_c03298{width:1.317888pt;}
._4_c03298{width:5.111040pt;}
._6_c03298{width:17.761920pt;}
._7_c03298{width:20.845440pt;}
._5_c03298{width:21.947904pt;}
._1_c03298{width:44.668800pt;}
._3_c03298{width:45.805056pt;}
.fs0_c03298{font-size:42.240000pt;}
.fs1_c03298{font-size:53.760000pt;}
.y0_c03298{bottom:0.000000pt;}
.y1a_c03298{bottom:130.665211pt;}
.y1c_c03298{bottom:165.866875pt;}
.y1b_c03298{bottom:174.507067pt;}
.y19_c03298{bottom:245.225371pt;}
.y18_c03298{bottom:317.225563pt;}
.y16_c03298{bottom:361.386427pt;}
.y12_c03298{bottom:377.386939pt;}
.y17_c03298{bottom:407.786011pt;}
.y15_c03298{bottom:437.226235pt;}
.y14_c03298{bottom:453.226747pt;}
.y11_c03298{bottom:482.666971pt;}
.y13_c03298{bottom:497.386555pt;}
.y10_c03298{bottom:513.387067pt;}
.y1d_c03298{bottom:546.027067pt;}
.yc_c03298{bottom:579.945467pt;}
.yb_c03298{bottom:593.385179pt;}
.ye_c03298{bottom:628.586875pt;}
.yd_c03298{bottom:637.227067pt;}
.ya_c03298{bottom:707.945339pt;}
.y9_c03298{bottom:779.945531pt;}
.y7_c03298{bottom:823.786427pt;}
.y3_c03298{bottom:839.786939pt;}
.y8_c03298{bottom:870.505979pt;}
.y6_c03298{bottom:899.946203pt;}
.y5_c03298{bottom:915.946715pt;}
.y2_c03298{bottom:945.386939pt;}
.y4_c03298{bottom:959.786555pt;}
.y1_c03298{bottom:975.787067pt;}
.yf_c03298{bottom:1008.747067pt;}
.h3_c03298{height:28.916250pt;}
.h1_c03298{height:37.063125pt;}
.h2_c03298{height:37.166250pt;}
.h4_c03298{height:48.581988pt;}
.h0_c03298{height:1122.666667pt;}
.w1_c03298{width:793.333333pt;}
.w0_c03298{width:793.626667pt;}
.x0_c03298{left:0.000000pt;}
.xe_c03298{left:104.000000pt;}
.x8_c03298{left:391.999872pt;}
.x4_c03298{left:396.160512pt;}
.xc_c03298{left:400.960000pt;}
.x7_c03298{left:404.799648pt;}
.x5_c03298{left:410.560128pt;}
.x1_c03298{left:411.840000pt;}
.xa_c03298{left:429.760320pt;}
.x9_c03298{left:437.439552pt;}
.x6_c03298{left:438.400512pt;}
.xd_c03298{left:450.560320pt;}
.x3_c03298{left:455.039904pt;}
.x2_c03298{left:468.159648pt;}
.xb_c03298{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03299 {
    display:none;
  }
  .loading-indicator_c03299.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03299 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03299 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03299" -> "#page-container .classname_c03299")
 */
.pf_c03299 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03299 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03299.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03299 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03299 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03299 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03299 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03299 {overflow:visible;}
  }
}
.c_c03299 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03299 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03299:after { /* webkit #35443 */
  content: '';
}
.t_c03299:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03299 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03299 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03299 { /* info for Javascript */
  display:none;
}
.l_c03299 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03299 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03299 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03299:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03299 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03299.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03299.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03299 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03299{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03299;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03299{font-family:ff1_c03299;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03299;src:url('chunks/assets/font_ffe0dc5967f3ee191696b894.woff2')format("woff");}.ff2_c03299{font-family:ff2_c03299;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03299;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03299{font-family:ff3_c03299;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03299{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03299{vertical-align:0.000000px;}
.v1_c03299{vertical-align:1.439424px;}
.ls7_c03299{letter-spacing:-0.613008px;}
.ls9_c03299{letter-spacing:-0.574992px;}
.lse_c03299{letter-spacing:-0.275616px;}
.lsc_c03299{letter-spacing:-0.261360px;}
.ls6_c03299{letter-spacing:-0.242352px;}
.ls4_c03299{letter-spacing:-0.118800px;}
.ls11_c03299{letter-spacing:0.000000px;}
.ls2_c03299{letter-spacing:0.006048px;}
.ls5_c03299{letter-spacing:0.128304px;}
.lsb_c03299{letter-spacing:0.508464px;}
.ls10_c03299{letter-spacing:0.514080px;}
.lsd_c03299{letter-spacing:0.536976px;}
.lsa_c03299{letter-spacing:0.579744px;}
.lsf_c03299{letter-spacing:0.594000px;}
.ls8_c03299{letter-spacing:0.598752px;}
.ls3_c03299{letter-spacing:0.613008px;}
.ls0_c03299{letter-spacing:0.717552px;}
.ls1_c03299{letter-spacing:0.722304px;}
.sc__c03299{text-shadow:none;}
.sc0_c03299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03299{-webkit-text-stroke:0px transparent;}
.sc0_c03299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03299{word-spacing:-15.126048px;}
.wsa_c03299{word-spacing:-12.474000px;}
.ws8_c03299{word-spacing:-12.459744px;}
.ws9_c03299{word-spacing:-12.416976px;}
.ws4_c03299{word-spacing:-11.637648px;}
.ws2_c03299{word-spacing:-11.266992px;}
.ws11_c03299{word-spacing:-1.083456px;}
.ws10_c03299{word-spacing:-1.078704px;}
.wsd_c03299{word-spacing:-0.974160px;}
.ws14_c03299{word-spacing:-0.719712px;}
.wsf_c03299{word-spacing:-0.118800px;}
.ws12_c03299{word-spacing:-0.099792px;}
.ws13_c03299{word-spacing:-0.085536px;}
.wse_c03299{word-spacing:0.000000px;}
.wsb_c03299{word-spacing:33.300288px;}
.ws6_c03299{word-spacing:36.742464px;}
.ws1_c03299{word-spacing:37.759392px;}
.ws0_c03299{word-spacing:38.020752px;}
.ws3_c03299{word-spacing:39.218256px;}
.ws5_c03299{word-spacing:39.902544px;}
.ws7_c03299{word-spacing:42.026688px;}
._0_c03299{margin-left:-1.948320px;}
._2_c03299{width:1.482624px;}
._4_c03299{width:5.749920px;}
._1_c03299{width:50.252400px;}
._3_c03299{width:51.530688px;}
.fc0_c03299{color:rgb(0,0,0);}
.fs0_c03299{font-size:47.520000px;}
.fs1_c03299{font-size:60.480000px;}
.y0_c03299{bottom:0.000000px;}
.y19_c03299{bottom:146.998362px;}
.y1b_c03299{bottom:186.600234px;}
.y1a_c03299{bottom:196.320450px;}
.y18_c03299{bottom:275.878542px;}
.y17_c03299{bottom:356.878758px;}
.y15_c03299{bottom:406.559730px;}
.y11_c03299{bottom:424.560306px;}
.y16_c03299{bottom:458.759262px;}
.y14_c03299{bottom:491.879514px;}
.y13_c03299{bottom:509.880090px;}
.y10_c03299{bottom:543.000342px;}
.y12_c03299{bottom:559.559874px;}
.yf_c03299{bottom:577.560450px;}
.y1c_c03299{bottom:614.280450px;}
.yb_c03299{bottom:667.558326px;}
.yd_c03299{bottom:707.160234px;}
.yc_c03299{bottom:716.880450px;}
.ya_c03299{bottom:796.438506px;}
.y9_c03299{bottom:877.438722px;}
.y7_c03299{bottom:926.759730px;}
.y3_c03299{bottom:944.760306px;}
.y8_c03299{bottom:979.319226px;}
.y6_c03299{bottom:1012.439478px;}
.y5_c03299{bottom:1030.440054px;}
.y2_c03299{bottom:1063.560306px;}
.y4_c03299{bottom:1079.759874px;}
.y1_c03299{bottom:1097.760450px;}
.ye_c03299{bottom:1134.840450px;}
.h3_c03299{height:32.530781px;}
.h1_c03299{height:41.696016px;}
.h2_c03299{height:41.812031px;}
.h4_c03299{height:54.654737px;}
.h0_c03299{height:1263.000000px;}
.w1_c03299{width:892.500000px;}
.w0_c03299{width:892.830000px;}
.x0_c03299{left:0.000000px;}
.xd_c03299{left:117.000000px;}
.x8_c03299{left:440.999856px;}
.x4_c03299{left:445.680576px;}
.xb_c03299{left:451.080000px;}
.x7_c03299{left:455.399604px;}
.x5_c03299{left:461.880144px;}
.x1_c03299{left:463.320000px;}
.xa_c03299{left:483.480360px;}
.x9_c03299{left:492.119496px;}
.x6_c03299{left:493.200576px;}
.xc_c03299{left:506.880360px;}
.x3_c03299{left:511.919892px;}
.x2_c03299{left:526.679604px;}
@media print{
.v0_c03299{vertical-align:0.000000pt;}
.v1_c03299{vertical-align:1.279488pt;}
.ls7_c03299{letter-spacing:-0.544896pt;}
.ls9_c03299{letter-spacing:-0.511104pt;}
.lse_c03299{letter-spacing:-0.244992pt;}
.lsc_c03299{letter-spacing:-0.232320pt;}
.ls6_c03299{letter-spacing:-0.215424pt;}
.ls4_c03299{letter-spacing:-0.105600pt;}
.ls11_c03299{letter-spacing:0.000000pt;}
.ls2_c03299{letter-spacing:0.005376pt;}
.ls5_c03299{letter-spacing:0.114048pt;}
.lsb_c03299{letter-spacing:0.451968pt;}
.ls10_c03299{letter-spacing:0.456960pt;}
.lsd_c03299{letter-spacing:0.477312pt;}
.lsa_c03299{letter-spacing:0.515328pt;}
.lsf_c03299{letter-spacing:0.528000pt;}
.ls8_c03299{letter-spacing:0.532224pt;}
.ls3_c03299{letter-spacing:0.544896pt;}
.ls0_c03299{letter-spacing:0.637824pt;}
.ls1_c03299{letter-spacing:0.642048pt;}
.wsc_c03299{word-spacing:-13.445376pt;}
.wsa_c03299{word-spacing:-11.088000pt;}
.ws8_c03299{word-spacing:-11.075328pt;}
.ws9_c03299{word-spacing:-11.037312pt;}
.ws4_c03299{word-spacing:-10.344576pt;}
.ws2_c03299{word-spacing:-10.015104pt;}
.ws11_c03299{word-spacing:-0.963072pt;}
.ws10_c03299{word-spacing:-0.958848pt;}
.wsd_c03299{word-spacing:-0.865920pt;}
.ws14_c03299{word-spacing:-0.639744pt;}
.wsf_c03299{word-spacing:-0.105600pt;}
.ws12_c03299{word-spacing:-0.088704pt;}
.ws13_c03299{word-spacing:-0.076032pt;}
.wse_c03299{word-spacing:0.000000pt;}
.wsb_c03299{word-spacing:29.600256pt;}
.ws6_c03299{word-spacing:32.659968pt;}
.ws1_c03299{word-spacing:33.563904pt;}
.ws0_c03299{word-spacing:33.796224pt;}
.ws3_c03299{word-spacing:34.860672pt;}
.ws5_c03299{word-spacing:35.468928pt;}
.ws7_c03299{word-spacing:37.357056pt;}
._0_c03299{margin-left:-1.731840pt;}
._2_c03299{width:1.317888pt;}
._4_c03299{width:5.111040pt;}
._1_c03299{width:44.668800pt;}
._3_c03299{width:45.805056pt;}
.fs0_c03299{font-size:42.240000pt;}
.fs1_c03299{font-size:53.760000pt;}
.y0_c03299{bottom:0.000000pt;}
.y19_c03299{bottom:130.665211pt;}
.y1b_c03299{bottom:165.866875pt;}
.y1a_c03299{bottom:174.507067pt;}
.y18_c03299{bottom:245.225371pt;}
.y17_c03299{bottom:317.225563pt;}
.y15_c03299{bottom:361.386427pt;}
.y11_c03299{bottom:377.386939pt;}
.y16_c03299{bottom:407.786011pt;}
.y14_c03299{bottom:437.226235pt;}
.y13_c03299{bottom:453.226747pt;}
.y10_c03299{bottom:482.666971pt;}
.y12_c03299{bottom:497.386555pt;}
.yf_c03299{bottom:513.387067pt;}
.y1c_c03299{bottom:546.027067pt;}
.yb_c03299{bottom:593.385179pt;}
.yd_c03299{bottom:628.586875pt;}
.yc_c03299{bottom:637.227067pt;}
.ya_c03299{bottom:707.945339pt;}
.y9_c03299{bottom:779.945531pt;}
.y7_c03299{bottom:823.786427pt;}
.y3_c03299{bottom:839.786939pt;}
.y8_c03299{bottom:870.505979pt;}
.y6_c03299{bottom:899.946203pt;}
.y5_c03299{bottom:915.946715pt;}
.y2_c03299{bottom:945.386939pt;}
.y4_c03299{bottom:959.786555pt;}
.y1_c03299{bottom:975.787067pt;}
.ye_c03299{bottom:1008.747067pt;}
.h3_c03299{height:28.916250pt;}
.h1_c03299{height:37.063125pt;}
.h2_c03299{height:37.166250pt;}
.h4_c03299{height:48.581988pt;}
.h0_c03299{height:1122.666667pt;}
.w1_c03299{width:793.333333pt;}
.w0_c03299{width:793.626667pt;}
.x0_c03299{left:0.000000pt;}
.xd_c03299{left:104.000000pt;}
.x8_c03299{left:391.999872pt;}
.x4_c03299{left:396.160512pt;}
.xb_c03299{left:400.960000pt;}
.x7_c03299{left:404.799648pt;}
.x5_c03299{left:410.560128pt;}
.x1_c03299{left:411.840000pt;}
.xa_c03299{left:429.760320pt;}
.x9_c03299{left:437.439552pt;}
.x6_c03299{left:438.400512pt;}
.xc_c03299{left:450.560320pt;}
.x3_c03299{left:455.039904pt;}
.x2_c03299{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03300 {
    display:none;
  }
  .loading-indicator_c03300.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03300 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03300 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03300" -> "#page-container .classname_c03300")
 */
.pf_c03300 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03300 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03300.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03300 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03300 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03300 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03300 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03300 {overflow:visible;}
  }
}
.c_c03300 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03300 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03300:after { /* webkit #35443 */
  content: '';
}
.t_c03300:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03300 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03300 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03300 { /* info for Javascript */
  display:none;
}
.l_c03300 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03300 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03300 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03300:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03300 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03300.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03300.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03300 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03300{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03300;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03300{font-family:ff1_c03300;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03300;src:url('chunks/assets/font_9f94e5ce9b85596fff052186.woff2')format("woff");}.ff2_c03300{font-family:ff2_c03300;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03300;src:url('chunks/assets/font_751a064661a464cf792dad1c.woff2')format("woff");}.ff3_c03300{font-family:ff3_c03300;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03300{vertical-align:0.000000px;}
.v1_c03300{vertical-align:1.439424px;}
.ls14_c03300{letter-spacing:-0.741312px;}
.lsf_c03300{letter-spacing:-0.736560px;}
.lsb_c03300{letter-spacing:-0.722304px;}
.ls6_c03300{letter-spacing:-0.613008px;}
.ls8_c03300{letter-spacing:-0.574992px;}
.lsc_c03300{letter-spacing:-0.304128px;}
.ls10_c03300{letter-spacing:-0.270864px;}
.lsd_c03300{letter-spacing:-0.261360px;}
.ls5_c03300{letter-spacing:-0.242352px;}
.ls3_c03300{letter-spacing:-0.118800px;}
.ls13_c03300{letter-spacing:0.000000px;}
.ls1_c03300{letter-spacing:0.006048px;}
.ls4_c03300{letter-spacing:0.128304px;}
.lsa_c03300{letter-spacing:0.508464px;}
.ls12_c03300{letter-spacing:0.514080px;}
.lse_c03300{letter-spacing:0.536976px;}
.ls9_c03300{letter-spacing:0.579744px;}
.ls11_c03300{letter-spacing:0.594000px;}
.ls7_c03300{letter-spacing:0.598752px;}
.ls2_c03300{letter-spacing:0.613008px;}
.ls0_c03300{letter-spacing:0.717552px;}
.sc__c03300{text-shadow:none;}
.sc0_c03300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03300{-webkit-text-stroke:0px transparent;}
.sc0_c03300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03300{word-spacing:-15.126048px;}
.wsb_c03300{word-spacing:-12.474000px;}
.ws6_c03300{word-spacing:-12.459744px;}
.ws4_c03300{word-spacing:-11.637648px;}
.ws2_c03300{word-spacing:-11.266992px;}
.ws12_c03300{word-spacing:-1.078704px;}
.wsf_c03300{word-spacing:-0.974160px;}
.ws18_c03300{word-spacing:-0.719712px;}
.ws11_c03300{word-spacing:-0.118800px;}
.ws15_c03300{word-spacing:-0.099792px;}
.ws16_c03300{word-spacing:-0.090288px;}
.ws17_c03300{word-spacing:-0.085536px;}
.ws14_c03300{word-spacing:-0.057024px;}
.ws10_c03300{word-spacing:0.000000px;}
.ws13_c03300{word-spacing:0.361152px;}
.ws19_c03300{word-spacing:0.380160px;}
.wsa_c03300{word-spacing:6.629040px;}
.wsc_c03300{word-spacing:33.300288px;}
.ws9_c03300{word-spacing:34.836912px;}
.ws8_c03300{word-spacing:36.143712px;}
.wse_c03300{word-spacing:36.742464px;}
.ws1_c03300{word-spacing:37.759392px;}
.ws0_c03300{word-spacing:38.020752px;}
.ws3_c03300{word-spacing:39.218256px;}
.ws5_c03300{word-spacing:39.902544px;}
.ws7_c03300{word-spacing:42.026688px;}
._0_c03300{margin-left:-1.948320px;}
._2_c03300{width:1.482624px;}
._4_c03300{width:5.749920px;}
._6_c03300{width:19.982160px;}
._7_c03300{width:23.451120px;}
._5_c03300{width:24.691392px;}
._1_c03300{width:50.252400px;}
._3_c03300{width:51.530688px;}
.fc0_c03300{color:rgb(0,0,0);}
.fs0_c03300{font-size:47.520000px;}
.fs1_c03300{font-size:60.480000px;}
.y0_c03300{bottom:0.000000px;}
.y1b_c03300{bottom:131.878686px;}
.y1a_c03300{bottom:146.998362px;}
.y1d_c03300{bottom:186.600234px;}
.y1c_c03300{bottom:196.320450px;}
.y19_c03300{bottom:275.878542px;}
.y18_c03300{bottom:356.878758px;}
.y16_c03300{bottom:406.559730px;}
.y12_c03300{bottom:424.560306px;}
.y17_c03300{bottom:458.759262px;}
.y15_c03300{bottom:491.879514px;}
.y14_c03300{bottom:509.880090px;}
.y11_c03300{bottom:543.000342px;}
.y13_c03300{bottom:559.559874px;}
.y10_c03300{bottom:577.560450px;}
.y1e_c03300{bottom:614.280450px;}
.yc_c03300{bottom:652.438650px;}
.yb_c03300{bottom:667.558326px;}
.ye_c03300{bottom:707.160234px;}
.yd_c03300{bottom:716.880450px;}
.ya_c03300{bottom:796.438506px;}
.y9_c03300{bottom:877.438722px;}
.y7_c03300{bottom:926.759730px;}
.y3_c03300{bottom:944.760306px;}
.y8_c03300{bottom:979.319226px;}
.y6_c03300{bottom:1012.439478px;}
.y5_c03300{bottom:1030.440054px;}
.y2_c03300{bottom:1063.560306px;}
.y4_c03300{bottom:1079.759874px;}
.y1_c03300{bottom:1097.760450px;}
.yf_c03300{bottom:1134.840450px;}
.h3_c03300{height:32.530781px;}
.h1_c03300{height:41.696016px;}
.h2_c03300{height:41.812031px;}
.h4_c03300{height:54.654737px;}
.h0_c03300{height:1263.000000px;}
.w1_c03300{width:892.500000px;}
.w0_c03300{width:892.830000px;}
.x0_c03300{left:0.000000px;}
.xe_c03300{left:117.000000px;}
.x8_c03300{left:440.999856px;}
.x4_c03300{left:445.680576px;}
.xc_c03300{left:451.080000px;}
.x7_c03300{left:455.399604px;}
.x5_c03300{left:461.880144px;}
.x1_c03300{left:463.320000px;}
.xa_c03300{left:483.480360px;}
.x9_c03300{left:492.119496px;}
.x6_c03300{left:493.200576px;}
.xd_c03300{left:506.880360px;}
.x3_c03300{left:511.919892px;}
.x2_c03300{left:526.679604px;}
.xb_c03300{left:569.880036px;}
@media print{
.v0_c03300{vertical-align:0.000000pt;}
.v1_c03300{vertical-align:1.279488pt;}
.ls14_c03300{letter-spacing:-0.658944pt;}
.lsf_c03300{letter-spacing:-0.654720pt;}
.lsb_c03300{letter-spacing:-0.642048pt;}
.ls6_c03300{letter-spacing:-0.544896pt;}
.ls8_c03300{letter-spacing:-0.511104pt;}
.lsc_c03300{letter-spacing:-0.270336pt;}
.ls10_c03300{letter-spacing:-0.240768pt;}
.lsd_c03300{letter-spacing:-0.232320pt;}
.ls5_c03300{letter-spacing:-0.215424pt;}
.ls3_c03300{letter-spacing:-0.105600pt;}
.ls13_c03300{letter-spacing:0.000000pt;}
.ls1_c03300{letter-spacing:0.005376pt;}
.ls4_c03300{letter-spacing:0.114048pt;}
.lsa_c03300{letter-spacing:0.451968pt;}
.ls12_c03300{letter-spacing:0.456960pt;}
.lse_c03300{letter-spacing:0.477312pt;}
.ls9_c03300{letter-spacing:0.515328pt;}
.ls11_c03300{letter-spacing:0.528000pt;}
.ls7_c03300{letter-spacing:0.532224pt;}
.ls2_c03300{letter-spacing:0.544896pt;}
.ls0_c03300{letter-spacing:0.637824pt;}
.wsd_c03300{word-spacing:-13.445376pt;}
.wsb_c03300{word-spacing:-11.088000pt;}
.ws6_c03300{word-spacing:-11.075328pt;}
.ws4_c03300{word-spacing:-10.344576pt;}
.ws2_c03300{word-spacing:-10.015104pt;}
.ws12_c03300{word-spacing:-0.958848pt;}
.wsf_c03300{word-spacing:-0.865920pt;}
.ws18_c03300{word-spacing:-0.639744pt;}
.ws11_c03300{word-spacing:-0.105600pt;}
.ws15_c03300{word-spacing:-0.088704pt;}
.ws16_c03300{word-spacing:-0.080256pt;}
.ws17_c03300{word-spacing:-0.076032pt;}
.ws14_c03300{word-spacing:-0.050688pt;}
.ws10_c03300{word-spacing:0.000000pt;}
.ws13_c03300{word-spacing:0.321024pt;}
.ws19_c03300{word-spacing:0.337920pt;}
.wsa_c03300{word-spacing:5.892480pt;}
.wsc_c03300{word-spacing:29.600256pt;}
.ws9_c03300{word-spacing:30.966144pt;}
.ws8_c03300{word-spacing:32.127744pt;}
.wse_c03300{word-spacing:32.659968pt;}
.ws1_c03300{word-spacing:33.563904pt;}
.ws0_c03300{word-spacing:33.796224pt;}
.ws3_c03300{word-spacing:34.860672pt;}
.ws5_c03300{word-spacing:35.468928pt;}
.ws7_c03300{word-spacing:37.357056pt;}
._0_c03300{margin-left:-1.731840pt;}
._2_c03300{width:1.317888pt;}
._4_c03300{width:5.111040pt;}
._6_c03300{width:17.761920pt;}
._7_c03300{width:20.845440pt;}
._5_c03300{width:21.947904pt;}
._1_c03300{width:44.668800pt;}
._3_c03300{width:45.805056pt;}
.fs0_c03300{font-size:42.240000pt;}
.fs1_c03300{font-size:53.760000pt;}
.y0_c03300{bottom:0.000000pt;}
.y1b_c03300{bottom:117.225499pt;}
.y1a_c03300{bottom:130.665211pt;}
.y1d_c03300{bottom:165.866875pt;}
.y1c_c03300{bottom:174.507067pt;}
.y19_c03300{bottom:245.225371pt;}
.y18_c03300{bottom:317.225563pt;}
.y16_c03300{bottom:361.386427pt;}
.y12_c03300{bottom:377.386939pt;}
.y17_c03300{bottom:407.786011pt;}
.y15_c03300{bottom:437.226235pt;}
.y14_c03300{bottom:453.226747pt;}
.y11_c03300{bottom:482.666971pt;}
.y13_c03300{bottom:497.386555pt;}
.y10_c03300{bottom:513.387067pt;}
.y1e_c03300{bottom:546.027067pt;}
.yc_c03300{bottom:579.945467pt;}
.yb_c03300{bottom:593.385179pt;}
.ye_c03300{bottom:628.586875pt;}
.yd_c03300{bottom:637.227067pt;}
.ya_c03300{bottom:707.945339pt;}
.y9_c03300{bottom:779.945531pt;}
.y7_c03300{bottom:823.786427pt;}
.y3_c03300{bottom:839.786939pt;}
.y8_c03300{bottom:870.505979pt;}
.y6_c03300{bottom:899.946203pt;}
.y5_c03300{bottom:915.946715pt;}
.y2_c03300{bottom:945.386939pt;}
.y4_c03300{bottom:959.786555pt;}
.y1_c03300{bottom:975.787067pt;}
.yf_c03300{bottom:1008.747067pt;}
.h3_c03300{height:28.916250pt;}
.h1_c03300{height:37.063125pt;}
.h2_c03300{height:37.166250pt;}
.h4_c03300{height:48.581988pt;}
.h0_c03300{height:1122.666667pt;}
.w1_c03300{width:793.333333pt;}
.w0_c03300{width:793.626667pt;}
.x0_c03300{left:0.000000pt;}
.xe_c03300{left:104.000000pt;}
.x8_c03300{left:391.999872pt;}
.x4_c03300{left:396.160512pt;}
.xc_c03300{left:400.960000pt;}
.x7_c03300{left:404.799648pt;}
.x5_c03300{left:410.560128pt;}
.x1_c03300{left:411.840000pt;}
.xa_c03300{left:429.760320pt;}
.x9_c03300{left:437.439552pt;}
.x6_c03300{left:438.400512pt;}
.xd_c03300{left:450.560320pt;}
.x3_c03300{left:455.039904pt;}
.x2_c03300{left:468.159648pt;}
.xb_c03300{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03301 {
    display:none;
  }
  .loading-indicator_c03301.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03301 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03301 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03301" -> "#page-container .classname_c03301")
 */
.pf_c03301 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03301 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03301.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03301 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03301 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03301 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03301 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03301 {overflow:visible;}
  }
}
.c_c03301 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03301 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03301:after { /* webkit #35443 */
  content: '';
}
.t_c03301:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03301 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03301 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03301 { /* info for Javascript */
  display:none;
}
.l_c03301 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03301 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03301 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03301:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03301 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03301.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03301.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03301 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03301{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03301;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03301{font-family:ff1_c03301;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03301;src:url('chunks/assets/font_34842ca9b4b3f7674aa50c15.woff2')format("woff");}.ff2_c03301{font-family:ff2_c03301;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03301;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03301{font-family:ff3_c03301;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03301{vertical-align:0.000000px;}
.v1_c03301{vertical-align:1.439424px;}
.ls7_c03301{letter-spacing:-0.613008px;}
.ls9_c03301{letter-spacing:-0.574992px;}
.ls12_c03301{letter-spacing:-0.304128px;}
.lse_c03301{letter-spacing:-0.275616px;}
.lsc_c03301{letter-spacing:-0.261360px;}
.ls6_c03301{letter-spacing:-0.242352px;}
.ls4_c03301{letter-spacing:-0.118800px;}
.ls11_c03301{letter-spacing:0.000000px;}
.ls2_c03301{letter-spacing:0.006048px;}
.ls5_c03301{letter-spacing:0.128304px;}
.lsb_c03301{letter-spacing:0.508464px;}
.ls10_c03301{letter-spacing:0.514080px;}
.lsd_c03301{letter-spacing:0.536976px;}
.lsa_c03301{letter-spacing:0.579744px;}
.lsf_c03301{letter-spacing:0.594000px;}
.ls8_c03301{letter-spacing:0.598752px;}
.ls3_c03301{letter-spacing:0.613008px;}
.ls0_c03301{letter-spacing:0.717552px;}
.ls1_c03301{letter-spacing:0.722304px;}
.sc__c03301{text-shadow:none;}
.sc0_c03301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03301{-webkit-text-stroke:0px transparent;}
.sc0_c03301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03301{word-spacing:-15.126048px;}
.wsa_c03301{word-spacing:-12.474000px;}
.ws8_c03301{word-spacing:-12.459744px;}
.ws9_c03301{word-spacing:-12.416976px;}
.ws4_c03301{word-spacing:-11.637648px;}
.ws2_c03301{word-spacing:-11.266992px;}
.ws12_c03301{word-spacing:-1.083456px;}
.ws11_c03301{word-spacing:-1.078704px;}
.wse_c03301{word-spacing:-0.974160px;}
.ws15_c03301{word-spacing:-0.719712px;}
.ws10_c03301{word-spacing:-0.118800px;}
.ws13_c03301{word-spacing:-0.099792px;}
.ws14_c03301{word-spacing:-0.085536px;}
.ws16_c03301{word-spacing:-0.057024px;}
.wsf_c03301{word-spacing:0.000000px;}
.wsb_c03301{word-spacing:33.300288px;}
.wsd_c03301{word-spacing:36.143712px;}
.ws6_c03301{word-spacing:36.742464px;}
.ws1_c03301{word-spacing:37.759392px;}
.ws0_c03301{word-spacing:38.020752px;}
.ws3_c03301{word-spacing:39.218256px;}
.ws5_c03301{word-spacing:39.902544px;}
.ws7_c03301{word-spacing:42.026688px;}
._0_c03301{margin-left:-1.948320px;}
._2_c03301{width:1.482624px;}
._4_c03301{width:5.749920px;}
._1_c03301{width:50.252400px;}
._3_c03301{width:51.530688px;}
.fc0_c03301{color:rgb(0,0,0);}
.fs0_c03301{font-size:47.520000px;}
.fs1_c03301{font-size:60.480000px;}
.y0_c03301{bottom:0.000000px;}
.y19_c03301{bottom:146.998362px;}
.y1b_c03301{bottom:186.600234px;}
.y1a_c03301{bottom:196.320450px;}
.y18_c03301{bottom:275.878542px;}
.y17_c03301{bottom:356.878758px;}
.y15_c03301{bottom:406.559730px;}
.y11_c03301{bottom:424.560306px;}
.y16_c03301{bottom:458.759262px;}
.y14_c03301{bottom:491.879514px;}
.y13_c03301{bottom:509.880090px;}
.y10_c03301{bottom:543.000342px;}
.y12_c03301{bottom:559.559874px;}
.yf_c03301{bottom:577.560450px;}
.y1c_c03301{bottom:614.280450px;}
.yb_c03301{bottom:667.558326px;}
.yd_c03301{bottom:707.160234px;}
.yc_c03301{bottom:716.880450px;}
.ya_c03301{bottom:796.438506px;}
.y9_c03301{bottom:877.438722px;}
.y7_c03301{bottom:926.759730px;}
.y3_c03301{bottom:944.760306px;}
.y8_c03301{bottom:979.319226px;}
.y6_c03301{bottom:1012.439478px;}
.y5_c03301{bottom:1030.440054px;}
.y2_c03301{bottom:1063.560306px;}
.y4_c03301{bottom:1079.759874px;}
.y1_c03301{bottom:1097.760450px;}
.ye_c03301{bottom:1134.840450px;}
.h3_c03301{height:32.530781px;}
.h1_c03301{height:41.696016px;}
.h2_c03301{height:41.812031px;}
.h4_c03301{height:54.654737px;}
.h0_c03301{height:1263.000000px;}
.w1_c03301{width:892.500000px;}
.w0_c03301{width:892.830000px;}
.x0_c03301{left:0.000000px;}
.xd_c03301{left:117.000000px;}
.x8_c03301{left:440.999856px;}
.x4_c03301{left:445.680576px;}
.xb_c03301{left:451.080000px;}
.x7_c03301{left:455.399604px;}
.x5_c03301{left:461.880144px;}
.x1_c03301{left:463.320000px;}
.xa_c03301{left:483.480360px;}
.x9_c03301{left:492.119496px;}
.x6_c03301{left:493.200576px;}
.xc_c03301{left:506.880360px;}
.x3_c03301{left:511.919892px;}
.x2_c03301{left:526.679604px;}
@media print{
.v0_c03301{vertical-align:0.000000pt;}
.v1_c03301{vertical-align:1.279488pt;}
.ls7_c03301{letter-spacing:-0.544896pt;}
.ls9_c03301{letter-spacing:-0.511104pt;}
.ls12_c03301{letter-spacing:-0.270336pt;}
.lse_c03301{letter-spacing:-0.244992pt;}
.lsc_c03301{letter-spacing:-0.232320pt;}
.ls6_c03301{letter-spacing:-0.215424pt;}
.ls4_c03301{letter-spacing:-0.105600pt;}
.ls11_c03301{letter-spacing:0.000000pt;}
.ls2_c03301{letter-spacing:0.005376pt;}
.ls5_c03301{letter-spacing:0.114048pt;}
.lsb_c03301{letter-spacing:0.451968pt;}
.ls10_c03301{letter-spacing:0.456960pt;}
.lsd_c03301{letter-spacing:0.477312pt;}
.lsa_c03301{letter-spacing:0.515328pt;}
.lsf_c03301{letter-spacing:0.528000pt;}
.ls8_c03301{letter-spacing:0.532224pt;}
.ls3_c03301{letter-spacing:0.544896pt;}
.ls0_c03301{letter-spacing:0.637824pt;}
.ls1_c03301{letter-spacing:0.642048pt;}
.wsc_c03301{word-spacing:-13.445376pt;}
.wsa_c03301{word-spacing:-11.088000pt;}
.ws8_c03301{word-spacing:-11.075328pt;}
.ws9_c03301{word-spacing:-11.037312pt;}
.ws4_c03301{word-spacing:-10.344576pt;}
.ws2_c03301{word-spacing:-10.015104pt;}
.ws12_c03301{word-spacing:-0.963072pt;}
.ws11_c03301{word-spacing:-0.958848pt;}
.wse_c03301{word-spacing:-0.865920pt;}
.ws15_c03301{word-spacing:-0.639744pt;}
.ws10_c03301{word-spacing:-0.105600pt;}
.ws13_c03301{word-spacing:-0.088704pt;}
.ws14_c03301{word-spacing:-0.076032pt;}
.ws16_c03301{word-spacing:-0.050688pt;}
.wsf_c03301{word-spacing:0.000000pt;}
.wsb_c03301{word-spacing:29.600256pt;}
.wsd_c03301{word-spacing:32.127744pt;}
.ws6_c03301{word-spacing:32.659968pt;}
.ws1_c03301{word-spacing:33.563904pt;}
.ws0_c03301{word-spacing:33.796224pt;}
.ws3_c03301{word-spacing:34.860672pt;}
.ws5_c03301{word-spacing:35.468928pt;}
.ws7_c03301{word-spacing:37.357056pt;}
._0_c03301{margin-left:-1.731840pt;}
._2_c03301{width:1.317888pt;}
._4_c03301{width:5.111040pt;}
._1_c03301{width:44.668800pt;}
._3_c03301{width:45.805056pt;}
.fs0_c03301{font-size:42.240000pt;}
.fs1_c03301{font-size:53.760000pt;}
.y0_c03301{bottom:0.000000pt;}
.y19_c03301{bottom:130.665211pt;}
.y1b_c03301{bottom:165.866875pt;}
.y1a_c03301{bottom:174.507067pt;}
.y18_c03301{bottom:245.225371pt;}
.y17_c03301{bottom:317.225563pt;}
.y15_c03301{bottom:361.386427pt;}
.y11_c03301{bottom:377.386939pt;}
.y16_c03301{bottom:407.786011pt;}
.y14_c03301{bottom:437.226235pt;}
.y13_c03301{bottom:453.226747pt;}
.y10_c03301{bottom:482.666971pt;}
.y12_c03301{bottom:497.386555pt;}
.yf_c03301{bottom:513.387067pt;}
.y1c_c03301{bottom:546.027067pt;}
.yb_c03301{bottom:593.385179pt;}
.yd_c03301{bottom:628.586875pt;}
.yc_c03301{bottom:637.227067pt;}
.ya_c03301{bottom:707.945339pt;}
.y9_c03301{bottom:779.945531pt;}
.y7_c03301{bottom:823.786427pt;}
.y3_c03301{bottom:839.786939pt;}
.y8_c03301{bottom:870.505979pt;}
.y6_c03301{bottom:899.946203pt;}
.y5_c03301{bottom:915.946715pt;}
.y2_c03301{bottom:945.386939pt;}
.y4_c03301{bottom:959.786555pt;}
.y1_c03301{bottom:975.787067pt;}
.ye_c03301{bottom:1008.747067pt;}
.h3_c03301{height:28.916250pt;}
.h1_c03301{height:37.063125pt;}
.h2_c03301{height:37.166250pt;}
.h4_c03301{height:48.581988pt;}
.h0_c03301{height:1122.666667pt;}
.w1_c03301{width:793.333333pt;}
.w0_c03301{width:793.626667pt;}
.x0_c03301{left:0.000000pt;}
.xd_c03301{left:104.000000pt;}
.x8_c03301{left:391.999872pt;}
.x4_c03301{left:396.160512pt;}
.xb_c03301{left:400.960000pt;}
.x7_c03301{left:404.799648pt;}
.x5_c03301{left:410.560128pt;}
.x1_c03301{left:411.840000pt;}
.xa_c03301{left:429.760320pt;}
.x9_c03301{left:437.439552pt;}
.x6_c03301{left:438.400512pt;}
.xc_c03301{left:450.560320pt;}
.x3_c03301{left:455.039904pt;}
.x2_c03301{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03302 {
    display:none;
  }
  .loading-indicator_c03302.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03302 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03302 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03302" -> "#page-container .classname_c03302")
 */
.pf_c03302 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03302 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03302.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03302 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03302 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03302 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03302 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03302 {overflow:visible;}
  }
}
.c_c03302 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03302 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03302:after { /* webkit #35443 */
  content: '';
}
.t_c03302:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03302 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03302 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03302 { /* info for Javascript */
  display:none;
}
.l_c03302 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03302 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03302 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03302:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03302 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03302.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03302.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03302 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03302{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03302;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03302{font-family:ff1_c03302;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03302;src:url('chunks/assets/font_205e73b674d8738ccad99fb3.woff2')format("woff");}.ff2_c03302{font-family:ff2_c03302;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03302;src:url('chunks/assets/font_8509a0a8fd228ccf89b310d1.woff2')format("woff");}.ff3_c03302{font-family:ff3_c03302;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03302{vertical-align:0.000000px;}
.v2_c03302{vertical-align:1.439424px;}
.v1_c03302{vertical-align:33.121440px;}
.lsd_c03302{letter-spacing:-0.793584px;}
.ls8_c03302{letter-spacing:-0.613008px;}
.lsa_c03302{letter-spacing:-0.574992px;}
.ls10_c03302{letter-spacing:-0.380160px;}
.ls15_c03302{letter-spacing:-0.342144px;}
.ls14_c03302{letter-spacing:-0.299376px;}
.ls12_c03302{letter-spacing:-0.275616px;}
.lsf_c03302{letter-spacing:-0.261360px;}
.ls7_c03302{letter-spacing:-0.242352px;}
.ls5_c03302{letter-spacing:-0.118800px;}
.ls17_c03302{letter-spacing:0.000000px;}
.ls1_c03302{letter-spacing:0.006048px;}
.ls6_c03302{letter-spacing:0.128304px;}
.lsc_c03302{letter-spacing:0.508464px;}
.ls16_c03302{letter-spacing:0.514080px;}
.ls11_c03302{letter-spacing:0.536976px;}
.lsb_c03302{letter-spacing:0.579744px;}
.ls13_c03302{letter-spacing:0.594000px;}
.ls9_c03302{letter-spacing:0.598752px;}
.ls3_c03302{letter-spacing:0.613008px;}
.ls2_c03302{letter-spacing:0.651024px;}
.lse_c03302{letter-spacing:0.679536px;}
.ls4_c03302{letter-spacing:0.717552px;}
.ls0_c03302{letter-spacing:0.722304px;}
.sc__c03302{text-shadow:none;}
.sc0_c03302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03302{-webkit-text-stroke:0px transparent;}
.sc0_c03302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c03302{word-spacing:-15.126048px;}
.ws11_c03302{word-spacing:-12.474000px;}
.ws7_c03302{word-spacing:-12.459744px;}
.wsa_c03302{word-spacing:-12.416976px;}
.ws5_c03302{word-spacing:-11.637648px;}
.ws3_c03302{word-spacing:-11.266992px;}
.ws15_c03302{word-spacing:-1.083456px;}
.ws1_c03302{word-spacing:-1.069200px;}
.ws17_c03302{word-spacing:-1.040688px;}
.ws1d_c03302{word-spacing:-1.012176px;}
.ws12_c03302{word-spacing:-0.974160px;}
.ws1c_c03302{word-spacing:-0.719712px;}
.ws14_c03302{word-spacing:-0.118800px;}
.ws18_c03302{word-spacing:-0.099792px;}
.ws1a_c03302{word-spacing:-0.085536px;}
.ws1b_c03302{word-spacing:-0.019008px;}
.ws13_c03302{word-spacing:0.000000px;}
.ws19_c03302{word-spacing:0.019008px;}
.ws16_c03302{word-spacing:0.432432px;}
.wse_c03302{word-spacing:0.717552px;}
.wsd_c03302{word-spacing:6.476976px;}
.wsc_c03302{word-spacing:7.945344px;}
.wsb_c03302{word-spacing:30.298752px;}
.wsf_c03302{word-spacing:33.300288px;}
.ws9_c03302{word-spacing:36.143712px;}
.ws2_c03302{word-spacing:37.759392px;}
.ws0_c03302{word-spacing:38.020752px;}
.ws4_c03302{word-spacing:39.218256px;}
.ws6_c03302{word-spacing:39.902544px;}
.ws8_c03302{word-spacing:42.026688px;}
._8_c03302{margin-left:-3.027024px;}
._0_c03302{margin-left:-1.948320px;}
._2_c03302{width:1.482624px;}
._4_c03302{width:5.749920px;}
._a_c03302{width:6.828624px;}
._7_c03302{width:14.640912px;}
._9_c03302{width:16.194816px;}
._6_c03302{width:18.005328px;}
._5_c03302{width:22.676544px;}
._1_c03302{width:50.252400px;}
._3_c03302{width:51.530688px;}
.fc0_c03302{color:rgb(0,0,0);}
.fs0_c03302{font-size:47.520000px;}
.fs1_c03302{font-size:60.480000px;}
.y0_c03302{bottom:0.000000px;}
.y1b_c03302{bottom:146.998362px;}
.y1d_c03302{bottom:186.600234px;}
.y1c_c03302{bottom:196.320450px;}
.y1a_c03302{bottom:275.878542px;}
.y19_c03302{bottom:356.878758px;}
.y17_c03302{bottom:406.559730px;}
.y13_c03302{bottom:424.560306px;}
.y18_c03302{bottom:458.759262px;}
.y16_c03302{bottom:491.879514px;}
.y15_c03302{bottom:509.880090px;}
.y12_c03302{bottom:543.000342px;}
.y14_c03302{bottom:559.559874px;}
.y11_c03302{bottom:577.560450px;}
.y1e_c03302{bottom:614.280450px;}
.yb_c03302{bottom:667.558326px;}
.yf_c03302{bottom:685.561206px;}
.ye_c03302{bottom:700.320918px;}
.yd_c03302{bottom:707.160234px;}
.yc_c03302{bottom:716.880450px;}
.ya_c03302{bottom:796.438506px;}
.y9_c03302{bottom:877.438722px;}
.y7_c03302{bottom:926.759730px;}
.y3_c03302{bottom:944.760306px;}
.y8_c03302{bottom:979.319226px;}
.y6_c03302{bottom:1012.439478px;}
.y5_c03302{bottom:1030.440054px;}
.y2_c03302{bottom:1063.560306px;}
.y4_c03302{bottom:1079.759874px;}
.y1_c03302{bottom:1097.760450px;}
.y10_c03302{bottom:1134.840450px;}
.h3_c03302{height:32.530781px;}
.h1_c03302{height:41.696016px;}
.h2_c03302{height:41.812031px;}
.h5_c03302{height:54.654737px;}
.h4_c03302{height:74.817456px;}
.h0_c03302{height:1263.000000px;}
.w1_c03302{width:892.500000px;}
.w0_c03302{width:892.830000px;}
.x0_c03302{left:0.000000px;}
.xe_c03302{left:117.000000px;}
.x8_c03302{left:440.999856px;}
.x4_c03302{left:445.680576px;}
.xb_c03302{left:451.080000px;}
.x7_c03302{left:455.399604px;}
.x5_c03302{left:461.880144px;}
.x1_c03302{left:463.320000px;}
.xa_c03302{left:483.480360px;}
.x9_c03302{left:492.119496px;}
.x6_c03302{left:493.200576px;}
.xc_c03302{left:506.880360px;}
.x3_c03302{left:511.919892px;}
.x2_c03302{left:526.679604px;}
.xd_c03302{left:569.880000px;}
@media print{
.v0_c03302{vertical-align:0.000000pt;}
.v2_c03302{vertical-align:1.279488pt;}
.v1_c03302{vertical-align:29.441280pt;}
.lsd_c03302{letter-spacing:-0.705408pt;}
.ls8_c03302{letter-spacing:-0.544896pt;}
.lsa_c03302{letter-spacing:-0.511104pt;}
.ls10_c03302{letter-spacing:-0.337920pt;}
.ls15_c03302{letter-spacing:-0.304128pt;}
.ls14_c03302{letter-spacing:-0.266112pt;}
.ls12_c03302{letter-spacing:-0.244992pt;}
.lsf_c03302{letter-spacing:-0.232320pt;}
.ls7_c03302{letter-spacing:-0.215424pt;}
.ls5_c03302{letter-spacing:-0.105600pt;}
.ls17_c03302{letter-spacing:0.000000pt;}
.ls1_c03302{letter-spacing:0.005376pt;}
.ls6_c03302{letter-spacing:0.114048pt;}
.lsc_c03302{letter-spacing:0.451968pt;}
.ls16_c03302{letter-spacing:0.456960pt;}
.ls11_c03302{letter-spacing:0.477312pt;}
.lsb_c03302{letter-spacing:0.515328pt;}
.ls13_c03302{letter-spacing:0.528000pt;}
.ls9_c03302{letter-spacing:0.532224pt;}
.ls3_c03302{letter-spacing:0.544896pt;}
.ls2_c03302{letter-spacing:0.578688pt;}
.lse_c03302{letter-spacing:0.604032pt;}
.ls4_c03302{letter-spacing:0.637824pt;}
.ls0_c03302{letter-spacing:0.642048pt;}
.ws10_c03302{word-spacing:-13.445376pt;}
.ws11_c03302{word-spacing:-11.088000pt;}
.ws7_c03302{word-spacing:-11.075328pt;}
.wsa_c03302{word-spacing:-11.037312pt;}
.ws5_c03302{word-spacing:-10.344576pt;}
.ws3_c03302{word-spacing:-10.015104pt;}
.ws15_c03302{word-spacing:-0.963072pt;}
.ws1_c03302{word-spacing:-0.950400pt;}
.ws17_c03302{word-spacing:-0.925056pt;}
.ws1d_c03302{word-spacing:-0.899712pt;}
.ws12_c03302{word-spacing:-0.865920pt;}
.ws1c_c03302{word-spacing:-0.639744pt;}
.ws14_c03302{word-spacing:-0.105600pt;}
.ws18_c03302{word-spacing:-0.088704pt;}
.ws1a_c03302{word-spacing:-0.076032pt;}
.ws1b_c03302{word-spacing:-0.016896pt;}
.ws13_c03302{word-spacing:0.000000pt;}
.ws19_c03302{word-spacing:0.016896pt;}
.ws16_c03302{word-spacing:0.384384pt;}
.wse_c03302{word-spacing:0.637824pt;}
.wsd_c03302{word-spacing:5.757312pt;}
.wsc_c03302{word-spacing:7.062528pt;}
.wsb_c03302{word-spacing:26.932224pt;}
.wsf_c03302{word-spacing:29.600256pt;}
.ws9_c03302{word-spacing:32.127744pt;}
.ws2_c03302{word-spacing:33.563904pt;}
.ws0_c03302{word-spacing:33.796224pt;}
.ws4_c03302{word-spacing:34.860672pt;}
.ws6_c03302{word-spacing:35.468928pt;}
.ws8_c03302{word-spacing:37.357056pt;}
._8_c03302{margin-left:-2.690688pt;}
._0_c03302{margin-left:-1.731840pt;}
._2_c03302{width:1.317888pt;}
._4_c03302{width:5.111040pt;}
._a_c03302{width:6.069888pt;}
._7_c03302{width:13.014144pt;}
._9_c03302{width:14.395392pt;}
._6_c03302{width:16.004736pt;}
._5_c03302{width:20.156928pt;}
._1_c03302{width:44.668800pt;}
._3_c03302{width:45.805056pt;}
.fs0_c03302{font-size:42.240000pt;}
.fs1_c03302{font-size:53.760000pt;}
.y0_c03302{bottom:0.000000pt;}
.y1b_c03302{bottom:130.665211pt;}
.y1d_c03302{bottom:165.866875pt;}
.y1c_c03302{bottom:174.507067pt;}
.y1a_c03302{bottom:245.225371pt;}
.y19_c03302{bottom:317.225563pt;}
.y17_c03302{bottom:361.386427pt;}
.y13_c03302{bottom:377.386939pt;}
.y18_c03302{bottom:407.786011pt;}
.y16_c03302{bottom:437.226235pt;}
.y15_c03302{bottom:453.226747pt;}
.y12_c03302{bottom:482.666971pt;}
.y14_c03302{bottom:497.386555pt;}
.y11_c03302{bottom:513.387067pt;}
.y1e_c03302{bottom:546.027067pt;}
.yb_c03302{bottom:593.385179pt;}
.yf_c03302{bottom:609.387739pt;}
.ye_c03302{bottom:622.507483pt;}
.yd_c03302{bottom:628.586875pt;}
.yc_c03302{bottom:637.227067pt;}
.ya_c03302{bottom:707.945339pt;}
.y9_c03302{bottom:779.945531pt;}
.y7_c03302{bottom:823.786427pt;}
.y3_c03302{bottom:839.786939pt;}
.y8_c03302{bottom:870.505979pt;}
.y6_c03302{bottom:899.946203pt;}
.y5_c03302{bottom:915.946715pt;}
.y2_c03302{bottom:945.386939pt;}
.y4_c03302{bottom:959.786555pt;}
.y1_c03302{bottom:975.787067pt;}
.y10_c03302{bottom:1008.747067pt;}
.h3_c03302{height:28.916250pt;}
.h1_c03302{height:37.063125pt;}
.h2_c03302{height:37.166250pt;}
.h5_c03302{height:48.581988pt;}
.h4_c03302{height:66.504405pt;}
.h0_c03302{height:1122.666667pt;}
.w1_c03302{width:793.333333pt;}
.w0_c03302{width:793.626667pt;}
.x0_c03302{left:0.000000pt;}
.xe_c03302{left:104.000000pt;}
.x8_c03302{left:391.999872pt;}
.x4_c03302{left:396.160512pt;}
.xb_c03302{left:400.960000pt;}
.x7_c03302{left:404.799648pt;}
.x5_c03302{left:410.560128pt;}
.x1_c03302{left:411.840000pt;}
.xa_c03302{left:429.760320pt;}
.x9_c03302{left:437.439552pt;}
.x6_c03302{left:438.400512pt;}
.xc_c03302{left:450.560320pt;}
.x3_c03302{left:455.039904pt;}
.x2_c03302{left:468.159648pt;}
.xd_c03302{left:506.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03303 {
    display:none;
  }
  .loading-indicator_c03303.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03303 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03303 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03303" -> "#page-container .classname_c03303")
 */
.pf_c03303 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03303 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03303.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03303 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03303 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03303 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03303 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03303 {overflow:visible;}
  }
}
.c_c03303 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03303 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03303:after { /* webkit #35443 */
  content: '';
}
.t_c03303:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03303 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03303 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03303 { /* info for Javascript */
  display:none;
}
.l_c03303 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03303 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03303 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03303:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03303 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03303.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03303.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03303 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03303{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03303;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03303{font-family:ff1_c03303;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03303;src:url('chunks/assets/font_dfe3e33a88a4f570ac50420d.woff2')format("woff");}.ff2_c03303{font-family:ff2_c03303;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03303;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03303{font-family:ff3_c03303;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03303{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03303{vertical-align:0.000000px;}
.v1_c03303{vertical-align:1.439424px;}
.lsd_c03303{letter-spacing:-0.793584px;}
.ls8_c03303{letter-spacing:-0.613008px;}
.lsa_c03303{letter-spacing:-0.574992px;}
.ls11_c03303{letter-spacing:-0.275616px;}
.lsf_c03303{letter-spacing:-0.261360px;}
.ls7_c03303{letter-spacing:-0.242352px;}
.ls5_c03303{letter-spacing:-0.118800px;}
.ls14_c03303{letter-spacing:0.000000px;}
.ls2_c03303{letter-spacing:0.006048px;}
.ls6_c03303{letter-spacing:0.128304px;}
.lsc_c03303{letter-spacing:0.508464px;}
.ls13_c03303{letter-spacing:0.514080px;}
.ls10_c03303{letter-spacing:0.536976px;}
.lsb_c03303{letter-spacing:0.579744px;}
.ls12_c03303{letter-spacing:0.594000px;}
.ls9_c03303{letter-spacing:0.598752px;}
.ls3_c03303{letter-spacing:0.613008px;}
.ls0_c03303{letter-spacing:0.651024px;}
.lse_c03303{letter-spacing:0.679536px;}
.ls4_c03303{letter-spacing:0.717552px;}
.ls1_c03303{letter-spacing:0.722304px;}
.sc__c03303{text-shadow:none;}
.sc0_c03303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03303{-webkit-text-stroke:0px transparent;}
.sc0_c03303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03303{word-spacing:-15.126048px;}
.wsa_c03303{word-spacing:-12.474000px;}
.ws6_c03303{word-spacing:-12.459744px;}
.ws9_c03303{word-spacing:-12.416976px;}
.ws4_c03303{word-spacing:-11.637648px;}
.ws2_c03303{word-spacing:-11.266992px;}
.ws12_c03303{word-spacing:-1.083456px;}
.ws14_c03303{word-spacing:-1.040688px;}
.ws10_c03303{word-spacing:-1.012176px;}
.wse_c03303{word-spacing:-0.974160px;}
.ws17_c03303{word-spacing:-0.719712px;}
.ws11_c03303{word-spacing:-0.118800px;}
.ws15_c03303{word-spacing:-0.099792px;}
.ws16_c03303{word-spacing:-0.085536px;}
.wsf_c03303{word-spacing:0.000000px;}
.ws13_c03303{word-spacing:0.432432px;}
.wsb_c03303{word-spacing:33.300288px;}
.ws8_c03303{word-spacing:36.143712px;}
.wsd_c03303{word-spacing:36.742464px;}
.ws1_c03303{word-spacing:37.759392px;}
.ws0_c03303{word-spacing:38.020752px;}
.ws3_c03303{word-spacing:39.218256px;}
.ws5_c03303{word-spacing:39.902544px;}
.ws7_c03303{word-spacing:42.026688px;}
._0_c03303{margin-left:-1.948320px;}
._2_c03303{width:1.482624px;}
._4_c03303{width:5.749920px;}
._1_c03303{width:50.252400px;}
._3_c03303{width:51.530688px;}
.fc0_c03303{color:rgb(0,0,0);}
.fs0_c03303{font-size:47.520000px;}
.fs1_c03303{font-size:60.480000px;}
.y0_c03303{bottom:0.000000px;}
.y19_c03303{bottom:146.998362px;}
.y1b_c03303{bottom:186.600234px;}
.y1a_c03303{bottom:196.320450px;}
.y18_c03303{bottom:275.878542px;}
.y17_c03303{bottom:356.878758px;}
.y15_c03303{bottom:406.559730px;}
.y11_c03303{bottom:424.560306px;}
.y16_c03303{bottom:458.759262px;}
.y14_c03303{bottom:491.879514px;}
.y13_c03303{bottom:509.880090px;}
.y10_c03303{bottom:543.000342px;}
.y12_c03303{bottom:559.559874px;}
.yf_c03303{bottom:577.560450px;}
.y1c_c03303{bottom:614.280450px;}
.yb_c03303{bottom:667.558326px;}
.yd_c03303{bottom:707.160234px;}
.yc_c03303{bottom:716.880450px;}
.ya_c03303{bottom:796.438506px;}
.y9_c03303{bottom:877.438722px;}
.y7_c03303{bottom:926.759730px;}
.y3_c03303{bottom:944.760306px;}
.y8_c03303{bottom:979.319226px;}
.y6_c03303{bottom:1012.439478px;}
.y5_c03303{bottom:1030.440054px;}
.y2_c03303{bottom:1063.560306px;}
.y4_c03303{bottom:1079.759874px;}
.y1_c03303{bottom:1097.760450px;}
.ye_c03303{bottom:1134.840450px;}
.h3_c03303{height:32.530781px;}
.h1_c03303{height:41.696016px;}
.h2_c03303{height:41.812031px;}
.h4_c03303{height:54.654737px;}
.h0_c03303{height:1263.000000px;}
.w1_c03303{width:892.500000px;}
.w0_c03303{width:892.830000px;}
.x0_c03303{left:0.000000px;}
.xd_c03303{left:117.000000px;}
.x8_c03303{left:440.999856px;}
.x4_c03303{left:445.680576px;}
.xb_c03303{left:451.080000px;}
.x7_c03303{left:455.399604px;}
.x5_c03303{left:461.880144px;}
.x1_c03303{left:463.320000px;}
.xa_c03303{left:483.480360px;}
.x9_c03303{left:492.119496px;}
.x6_c03303{left:493.200576px;}
.xc_c03303{left:506.880360px;}
.x3_c03303{left:511.919892px;}
.x2_c03303{left:526.679604px;}
@media print{
.v0_c03303{vertical-align:0.000000pt;}
.v1_c03303{vertical-align:1.279488pt;}
.lsd_c03303{letter-spacing:-0.705408pt;}
.ls8_c03303{letter-spacing:-0.544896pt;}
.lsa_c03303{letter-spacing:-0.511104pt;}
.ls11_c03303{letter-spacing:-0.244992pt;}
.lsf_c03303{letter-spacing:-0.232320pt;}
.ls7_c03303{letter-spacing:-0.215424pt;}
.ls5_c03303{letter-spacing:-0.105600pt;}
.ls14_c03303{letter-spacing:0.000000pt;}
.ls2_c03303{letter-spacing:0.005376pt;}
.ls6_c03303{letter-spacing:0.114048pt;}
.lsc_c03303{letter-spacing:0.451968pt;}
.ls13_c03303{letter-spacing:0.456960pt;}
.ls10_c03303{letter-spacing:0.477312pt;}
.lsb_c03303{letter-spacing:0.515328pt;}
.ls12_c03303{letter-spacing:0.528000pt;}
.ls9_c03303{letter-spacing:0.532224pt;}
.ls3_c03303{letter-spacing:0.544896pt;}
.ls0_c03303{letter-spacing:0.578688pt;}
.lse_c03303{letter-spacing:0.604032pt;}
.ls4_c03303{letter-spacing:0.637824pt;}
.ls1_c03303{letter-spacing:0.642048pt;}
.wsc_c03303{word-spacing:-13.445376pt;}
.wsa_c03303{word-spacing:-11.088000pt;}
.ws6_c03303{word-spacing:-11.075328pt;}
.ws9_c03303{word-spacing:-11.037312pt;}
.ws4_c03303{word-spacing:-10.344576pt;}
.ws2_c03303{word-spacing:-10.015104pt;}
.ws12_c03303{word-spacing:-0.963072pt;}
.ws14_c03303{word-spacing:-0.925056pt;}
.ws10_c03303{word-spacing:-0.899712pt;}
.wse_c03303{word-spacing:-0.865920pt;}
.ws17_c03303{word-spacing:-0.639744pt;}
.ws11_c03303{word-spacing:-0.105600pt;}
.ws15_c03303{word-spacing:-0.088704pt;}
.ws16_c03303{word-spacing:-0.076032pt;}
.wsf_c03303{word-spacing:0.000000pt;}
.ws13_c03303{word-spacing:0.384384pt;}
.wsb_c03303{word-spacing:29.600256pt;}
.ws8_c03303{word-spacing:32.127744pt;}
.wsd_c03303{word-spacing:32.659968pt;}
.ws1_c03303{word-spacing:33.563904pt;}
.ws0_c03303{word-spacing:33.796224pt;}
.ws3_c03303{word-spacing:34.860672pt;}
.ws5_c03303{word-spacing:35.468928pt;}
.ws7_c03303{word-spacing:37.357056pt;}
._0_c03303{margin-left:-1.731840pt;}
._2_c03303{width:1.317888pt;}
._4_c03303{width:5.111040pt;}
._1_c03303{width:44.668800pt;}
._3_c03303{width:45.805056pt;}
.fs0_c03303{font-size:42.240000pt;}
.fs1_c03303{font-size:53.760000pt;}
.y0_c03303{bottom:0.000000pt;}
.y19_c03303{bottom:130.665211pt;}
.y1b_c03303{bottom:165.866875pt;}
.y1a_c03303{bottom:174.507067pt;}
.y18_c03303{bottom:245.225371pt;}
.y17_c03303{bottom:317.225563pt;}
.y15_c03303{bottom:361.386427pt;}
.y11_c03303{bottom:377.386939pt;}
.y16_c03303{bottom:407.786011pt;}
.y14_c03303{bottom:437.226235pt;}
.y13_c03303{bottom:453.226747pt;}
.y10_c03303{bottom:482.666971pt;}
.y12_c03303{bottom:497.386555pt;}
.yf_c03303{bottom:513.387067pt;}
.y1c_c03303{bottom:546.027067pt;}
.yb_c03303{bottom:593.385179pt;}
.yd_c03303{bottom:628.586875pt;}
.yc_c03303{bottom:637.227067pt;}
.ya_c03303{bottom:707.945339pt;}
.y9_c03303{bottom:779.945531pt;}
.y7_c03303{bottom:823.786427pt;}
.y3_c03303{bottom:839.786939pt;}
.y8_c03303{bottom:870.505979pt;}
.y6_c03303{bottom:899.946203pt;}
.y5_c03303{bottom:915.946715pt;}
.y2_c03303{bottom:945.386939pt;}
.y4_c03303{bottom:959.786555pt;}
.y1_c03303{bottom:975.787067pt;}
.ye_c03303{bottom:1008.747067pt;}
.h3_c03303{height:28.916250pt;}
.h1_c03303{height:37.063125pt;}
.h2_c03303{height:37.166250pt;}
.h4_c03303{height:48.581988pt;}
.h0_c03303{height:1122.666667pt;}
.w1_c03303{width:793.333333pt;}
.w0_c03303{width:793.626667pt;}
.x0_c03303{left:0.000000pt;}
.xd_c03303{left:104.000000pt;}
.x8_c03303{left:391.999872pt;}
.x4_c03303{left:396.160512pt;}
.xb_c03303{left:400.960000pt;}
.x7_c03303{left:404.799648pt;}
.x5_c03303{left:410.560128pt;}
.x1_c03303{left:411.840000pt;}
.xa_c03303{left:429.760320pt;}
.x9_c03303{left:437.439552pt;}
.x6_c03303{left:438.400512pt;}
.xc_c03303{left:450.560320pt;}
.x3_c03303{left:455.039904pt;}
.x2_c03303{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03304 {
    display:none;
  }
  .loading-indicator_c03304.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03304 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03304 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03304" -> "#page-container .classname_c03304")
 */
.pf_c03304 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03304 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03304.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03304 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03304 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03304 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03304 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03304 {overflow:visible;}
  }
}
.c_c03304 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03304 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03304:after { /* webkit #35443 */
  content: '';
}
.t_c03304:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03304 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03304 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03304 { /* info for Javascript */
  display:none;
}
.l_c03304 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03304 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03304 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03304:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03304 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03304.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03304.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03304 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03304{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03304;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03304{font-family:ff1_c03304;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03304;src:url('chunks/assets/font_1b27c4926a4c4b77c1051cf5.woff2')format("woff");}.ff2_c03304{font-family:ff2_c03304;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03304;src:url('chunks/assets/font_15d4fb6b8d14837c551de58b.woff2')format("woff");}.ff3_c03304{font-family:ff3_c03304;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03304{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03304{vertical-align:0.000000px;}
.v1_c03304{vertical-align:1.439424px;}
.ls13_c03304{letter-spacing:-0.793584px;}
.ls15_c03304{letter-spacing:-0.769824px;}
.ls7_c03304{letter-spacing:-0.613008px;}
.ls9_c03304{letter-spacing:-0.574992px;}
.lsd_c03304{letter-spacing:-0.380160px;}
.lsf_c03304{letter-spacing:-0.275616px;}
.lsc_c03304{letter-spacing:-0.261360px;}
.ls6_c03304{letter-spacing:-0.242352px;}
.ls4_c03304{letter-spacing:-0.118800px;}
.ls12_c03304{letter-spacing:0.000000px;}
.ls1_c03304{letter-spacing:0.006048px;}
.ls14_c03304{letter-spacing:0.014256px;}
.ls5_c03304{letter-spacing:0.128304px;}
.lsb_c03304{letter-spacing:0.508464px;}
.ls11_c03304{letter-spacing:0.514080px;}
.lse_c03304{letter-spacing:0.536976px;}
.lsa_c03304{letter-spacing:0.579744px;}
.ls10_c03304{letter-spacing:0.594000px;}
.ls8_c03304{letter-spacing:0.598752px;}
.ls3_c03304{letter-spacing:0.613008px;}
.ls2_c03304{letter-spacing:0.717552px;}
.ls0_c03304{letter-spacing:0.722304px;}
.sc__c03304{text-shadow:none;}
.sc0_c03304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03304{-webkit-text-stroke:0px transparent;}
.sc0_c03304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03304{word-spacing:-15.126048px;}
.ws9_c03304{word-spacing:-12.474000px;}
.ws6_c03304{word-spacing:-12.459744px;}
.ws8_c03304{word-spacing:-12.416976px;}
.ws4_c03304{word-spacing:-11.637648px;}
.ws2_c03304{word-spacing:-11.266992px;}
.wsc_c03304{word-spacing:-1.810512px;}
.ws14_c03304{word-spacing:-1.083456px;}
.ws11_c03304{word-spacing:-0.974160px;}
.ws18_c03304{word-spacing:-0.719712px;}
.ws1a_c03304{word-spacing:-0.375408px;}
.ws13_c03304{word-spacing:-0.118800px;}
.ws15_c03304{word-spacing:-0.099792px;}
.ws17_c03304{word-spacing:-0.085536px;}
.ws12_c03304{word-spacing:0.000000px;}
.ws16_c03304{word-spacing:0.019008px;}
.ws1b_c03304{word-spacing:0.408672px;}
.ws19_c03304{word-spacing:0.432432px;}
.wsd_c03304{word-spacing:1.330560px;}
.wsa_c03304{word-spacing:33.300288px;}
.ws10_c03304{word-spacing:34.836912px;}
.wsf_c03304{word-spacing:36.143712px;}
.wse_c03304{word-spacing:36.742464px;}
.ws1_c03304{word-spacing:37.759392px;}
.ws0_c03304{word-spacing:38.020752px;}
.ws3_c03304{word-spacing:39.218256px;}
.ws5_c03304{word-spacing:39.902544px;}
.ws7_c03304{word-spacing:42.026688px;}
._0_c03304{margin-left:-1.948320px;}
._2_c03304{width:1.482624px;}
._4_c03304{width:5.749920px;}
._1_c03304{width:50.252400px;}
._3_c03304{width:51.530688px;}
.fc0_c03304{color:rgb(0,0,0);}
.fs0_c03304{font-size:47.520000px;}
.fs1_c03304{font-size:60.480000px;}
.y0_c03304{bottom:0.000000px;}
.y19_c03304{bottom:146.998362px;}
.y1b_c03304{bottom:186.600234px;}
.y1a_c03304{bottom:196.320450px;}
.y18_c03304{bottom:275.878542px;}
.y17_c03304{bottom:356.878758px;}
.y15_c03304{bottom:406.559730px;}
.y11_c03304{bottom:424.560306px;}
.y16_c03304{bottom:458.759262px;}
.y14_c03304{bottom:491.879514px;}
.y13_c03304{bottom:509.880090px;}
.y10_c03304{bottom:543.000342px;}
.y12_c03304{bottom:559.559874px;}
.yf_c03304{bottom:577.560450px;}
.y1c_c03304{bottom:614.280450px;}
.yb_c03304{bottom:667.558326px;}
.yd_c03304{bottom:707.160234px;}
.yc_c03304{bottom:716.880450px;}
.ya_c03304{bottom:796.438506px;}
.y9_c03304{bottom:877.438722px;}
.y7_c03304{bottom:926.759730px;}
.y3_c03304{bottom:944.760306px;}
.y8_c03304{bottom:979.319226px;}
.y6_c03304{bottom:1012.439478px;}
.y5_c03304{bottom:1030.440054px;}
.y2_c03304{bottom:1063.560306px;}
.y4_c03304{bottom:1079.759874px;}
.y1_c03304{bottom:1097.760450px;}
.ye_c03304{bottom:1134.840450px;}
.h3_c03304{height:32.530781px;}
.h1_c03304{height:41.696016px;}
.h2_c03304{height:41.812031px;}
.h4_c03304{height:54.654737px;}
.h0_c03304{height:1263.000000px;}
.w1_c03304{width:892.500000px;}
.w0_c03304{width:892.830000px;}
.x0_c03304{left:0.000000px;}
.xd_c03304{left:117.000000px;}
.x8_c03304{left:440.999856px;}
.x4_c03304{left:445.680576px;}
.xb_c03304{left:451.080000px;}
.x7_c03304{left:455.399604px;}
.x5_c03304{left:461.880144px;}
.x1_c03304{left:463.320000px;}
.xa_c03304{left:483.480360px;}
.x9_c03304{left:492.119496px;}
.x6_c03304{left:493.200576px;}
.xc_c03304{left:506.880360px;}
.x3_c03304{left:511.919892px;}
.x2_c03304{left:526.679604px;}
@media print{
.v0_c03304{vertical-align:0.000000pt;}
.v1_c03304{vertical-align:1.279488pt;}
.ls13_c03304{letter-spacing:-0.705408pt;}
.ls15_c03304{letter-spacing:-0.684288pt;}
.ls7_c03304{letter-spacing:-0.544896pt;}
.ls9_c03304{letter-spacing:-0.511104pt;}
.lsd_c03304{letter-spacing:-0.337920pt;}
.lsf_c03304{letter-spacing:-0.244992pt;}
.lsc_c03304{letter-spacing:-0.232320pt;}
.ls6_c03304{letter-spacing:-0.215424pt;}
.ls4_c03304{letter-spacing:-0.105600pt;}
.ls12_c03304{letter-spacing:0.000000pt;}
.ls1_c03304{letter-spacing:0.005376pt;}
.ls14_c03304{letter-spacing:0.012672pt;}
.ls5_c03304{letter-spacing:0.114048pt;}
.lsb_c03304{letter-spacing:0.451968pt;}
.ls11_c03304{letter-spacing:0.456960pt;}
.lse_c03304{letter-spacing:0.477312pt;}
.lsa_c03304{letter-spacing:0.515328pt;}
.ls10_c03304{letter-spacing:0.528000pt;}
.ls8_c03304{letter-spacing:0.532224pt;}
.ls3_c03304{letter-spacing:0.544896pt;}
.ls2_c03304{letter-spacing:0.637824pt;}
.ls0_c03304{letter-spacing:0.642048pt;}
.wsb_c03304{word-spacing:-13.445376pt;}
.ws9_c03304{word-spacing:-11.088000pt;}
.ws6_c03304{word-spacing:-11.075328pt;}
.ws8_c03304{word-spacing:-11.037312pt;}
.ws4_c03304{word-spacing:-10.344576pt;}
.ws2_c03304{word-spacing:-10.015104pt;}
.wsc_c03304{word-spacing:-1.609344pt;}
.ws14_c03304{word-spacing:-0.963072pt;}
.ws11_c03304{word-spacing:-0.865920pt;}
.ws18_c03304{word-spacing:-0.639744pt;}
.ws1a_c03304{word-spacing:-0.333696pt;}
.ws13_c03304{word-spacing:-0.105600pt;}
.ws15_c03304{word-spacing:-0.088704pt;}
.ws17_c03304{word-spacing:-0.076032pt;}
.ws12_c03304{word-spacing:0.000000pt;}
.ws16_c03304{word-spacing:0.016896pt;}
.ws1b_c03304{word-spacing:0.363264pt;}
.ws19_c03304{word-spacing:0.384384pt;}
.wsd_c03304{word-spacing:1.182720pt;}
.wsa_c03304{word-spacing:29.600256pt;}
.ws10_c03304{word-spacing:30.966144pt;}
.wsf_c03304{word-spacing:32.127744pt;}
.wse_c03304{word-spacing:32.659968pt;}
.ws1_c03304{word-spacing:33.563904pt;}
.ws0_c03304{word-spacing:33.796224pt;}
.ws3_c03304{word-spacing:34.860672pt;}
.ws5_c03304{word-spacing:35.468928pt;}
.ws7_c03304{word-spacing:37.357056pt;}
._0_c03304{margin-left:-1.731840pt;}
._2_c03304{width:1.317888pt;}
._4_c03304{width:5.111040pt;}
._1_c03304{width:44.668800pt;}
._3_c03304{width:45.805056pt;}
.fs0_c03304{font-size:42.240000pt;}
.fs1_c03304{font-size:53.760000pt;}
.y0_c03304{bottom:0.000000pt;}
.y19_c03304{bottom:130.665211pt;}
.y1b_c03304{bottom:165.866875pt;}
.y1a_c03304{bottom:174.507067pt;}
.y18_c03304{bottom:245.225371pt;}
.y17_c03304{bottom:317.225563pt;}
.y15_c03304{bottom:361.386427pt;}
.y11_c03304{bottom:377.386939pt;}
.y16_c03304{bottom:407.786011pt;}
.y14_c03304{bottom:437.226235pt;}
.y13_c03304{bottom:453.226747pt;}
.y10_c03304{bottom:482.666971pt;}
.y12_c03304{bottom:497.386555pt;}
.yf_c03304{bottom:513.387067pt;}
.y1c_c03304{bottom:546.027067pt;}
.yb_c03304{bottom:593.385179pt;}
.yd_c03304{bottom:628.586875pt;}
.yc_c03304{bottom:637.227067pt;}
.ya_c03304{bottom:707.945339pt;}
.y9_c03304{bottom:779.945531pt;}
.y7_c03304{bottom:823.786427pt;}
.y3_c03304{bottom:839.786939pt;}
.y8_c03304{bottom:870.505979pt;}
.y6_c03304{bottom:899.946203pt;}
.y5_c03304{bottom:915.946715pt;}
.y2_c03304{bottom:945.386939pt;}
.y4_c03304{bottom:959.786555pt;}
.y1_c03304{bottom:975.787067pt;}
.ye_c03304{bottom:1008.747067pt;}
.h3_c03304{height:28.916250pt;}
.h1_c03304{height:37.063125pt;}
.h2_c03304{height:37.166250pt;}
.h4_c03304{height:48.581988pt;}
.h0_c03304{height:1122.666667pt;}
.w1_c03304{width:793.333333pt;}
.w0_c03304{width:793.626667pt;}
.x0_c03304{left:0.000000pt;}
.xd_c03304{left:104.000000pt;}
.x8_c03304{left:391.999872pt;}
.x4_c03304{left:396.160512pt;}
.xb_c03304{left:400.960000pt;}
.x7_c03304{left:404.799648pt;}
.x5_c03304{left:410.560128pt;}
.x1_c03304{left:411.840000pt;}
.xa_c03304{left:429.760320pt;}
.x9_c03304{left:437.439552pt;}
.x6_c03304{left:438.400512pt;}
.xc_c03304{left:450.560320pt;}
.x3_c03304{left:455.039904pt;}
.x2_c03304{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03305 {
    display:none;
  }
  .loading-indicator_c03305.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03305 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03305 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03305" -> "#page-container .classname_c03305")
 */
.pf_c03305 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03305 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03305.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03305 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03305 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03305 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03305 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03305 {overflow:visible;}
  }
}
.c_c03305 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03305 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03305:after { /* webkit #35443 */
  content: '';
}
.t_c03305:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03305 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03305 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03305 { /* info for Javascript */
  display:none;
}
.l_c03305 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03305 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03305 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03305:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03305 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03305.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03305.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03305 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03305{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03305;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03305{font-family:ff1_c03305;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03305;src:url('chunks/assets/font_78f4031e7a4e215deabd7cae.woff2')format("woff");}.ff2_c03305{font-family:ff2_c03305;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03305;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03305{font-family:ff3_c03305;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03305{vertical-align:0.000000px;}
.v1_c03305{vertical-align:1.439424px;}
.ls7_c03305{letter-spacing:-0.613008px;}
.ls9_c03305{letter-spacing:-0.574992px;}
.lse_c03305{letter-spacing:-0.275616px;}
.lsc_c03305{letter-spacing:-0.261360px;}
.ls6_c03305{letter-spacing:-0.242352px;}
.ls4_c03305{letter-spacing:-0.118800px;}
.ls11_c03305{letter-spacing:0.000000px;}
.ls1_c03305{letter-spacing:0.006048px;}
.ls5_c03305{letter-spacing:0.128304px;}
.lsb_c03305{letter-spacing:0.508464px;}
.ls10_c03305{letter-spacing:0.514080px;}
.lsd_c03305{letter-spacing:0.536976px;}
.lsa_c03305{letter-spacing:0.579744px;}
.lsf_c03305{letter-spacing:0.594000px;}
.ls8_c03305{letter-spacing:0.598752px;}
.ls2_c03305{letter-spacing:0.613008px;}
.ls3_c03305{letter-spacing:0.717552px;}
.ls0_c03305{letter-spacing:0.722304px;}
.sc__c03305{text-shadow:none;}
.sc0_c03305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03305{-webkit-text-stroke:0px transparent;}
.sc0_c03305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03305{word-spacing:-15.126048px;}
.wsa_c03305{word-spacing:-12.474000px;}
.ws8_c03305{word-spacing:-12.459744px;}
.ws9_c03305{word-spacing:-12.416976px;}
.ws4_c03305{word-spacing:-11.637648px;}
.ws2_c03305{word-spacing:-11.266992px;}
.ws10_c03305{word-spacing:-1.083456px;}
.wsd_c03305{word-spacing:-0.974160px;}
.ws13_c03305{word-spacing:-0.719712px;}
.wsf_c03305{word-spacing:-0.118800px;}
.ws11_c03305{word-spacing:-0.099792px;}
.ws12_c03305{word-spacing:-0.085536px;}
.wse_c03305{word-spacing:0.000000px;}
.wsb_c03305{word-spacing:33.300288px;}
.ws6_c03305{word-spacing:36.742464px;}
.ws1_c03305{word-spacing:37.759392px;}
.ws0_c03305{word-spacing:38.020752px;}
.ws3_c03305{word-spacing:39.218256px;}
.ws5_c03305{word-spacing:39.902544px;}
.ws7_c03305{word-spacing:42.026688px;}
._0_c03305{margin-left:-1.948320px;}
._2_c03305{width:1.482624px;}
._4_c03305{width:5.749920px;}
._1_c03305{width:50.252400px;}
._3_c03305{width:51.530688px;}
.fc0_c03305{color:rgb(0,0,0);}
.fs0_c03305{font-size:47.520000px;}
.fs1_c03305{font-size:60.480000px;}
.y0_c03305{bottom:0.000000px;}
.y19_c03305{bottom:146.998362px;}
.y1b_c03305{bottom:186.600234px;}
.y1a_c03305{bottom:196.320450px;}
.y18_c03305{bottom:275.878542px;}
.y17_c03305{bottom:356.878758px;}
.y15_c03305{bottom:406.559730px;}
.y11_c03305{bottom:424.560306px;}
.y16_c03305{bottom:458.759262px;}
.y14_c03305{bottom:491.879514px;}
.y13_c03305{bottom:509.880090px;}
.y10_c03305{bottom:543.000342px;}
.y12_c03305{bottom:559.559874px;}
.yf_c03305{bottom:577.560450px;}
.y1c_c03305{bottom:614.280450px;}
.yb_c03305{bottom:667.558326px;}
.yd_c03305{bottom:707.160234px;}
.yc_c03305{bottom:716.880450px;}
.ya_c03305{bottom:796.438506px;}
.y9_c03305{bottom:877.438722px;}
.y7_c03305{bottom:926.759730px;}
.y3_c03305{bottom:944.760306px;}
.y8_c03305{bottom:979.319226px;}
.y6_c03305{bottom:1012.439478px;}
.y5_c03305{bottom:1030.440054px;}
.y2_c03305{bottom:1063.560306px;}
.y4_c03305{bottom:1079.759874px;}
.y1_c03305{bottom:1097.760450px;}
.ye_c03305{bottom:1134.840450px;}
.h3_c03305{height:32.530781px;}
.h1_c03305{height:41.696016px;}
.h2_c03305{height:41.812031px;}
.h4_c03305{height:54.654737px;}
.h0_c03305{height:1263.000000px;}
.w1_c03305{width:892.500000px;}
.w0_c03305{width:892.830000px;}
.x0_c03305{left:0.000000px;}
.xd_c03305{left:117.000000px;}
.x8_c03305{left:440.999856px;}
.x4_c03305{left:445.680576px;}
.xb_c03305{left:451.080000px;}
.x7_c03305{left:455.399604px;}
.x5_c03305{left:461.880144px;}
.x1_c03305{left:463.320000px;}
.xa_c03305{left:483.480360px;}
.x9_c03305{left:492.119496px;}
.x6_c03305{left:493.200576px;}
.xc_c03305{left:506.880360px;}
.x3_c03305{left:511.919892px;}
.x2_c03305{left:526.679604px;}
@media print{
.v0_c03305{vertical-align:0.000000pt;}
.v1_c03305{vertical-align:1.279488pt;}
.ls7_c03305{letter-spacing:-0.544896pt;}
.ls9_c03305{letter-spacing:-0.511104pt;}
.lse_c03305{letter-spacing:-0.244992pt;}
.lsc_c03305{letter-spacing:-0.232320pt;}
.ls6_c03305{letter-spacing:-0.215424pt;}
.ls4_c03305{letter-spacing:-0.105600pt;}
.ls11_c03305{letter-spacing:0.000000pt;}
.ls1_c03305{letter-spacing:0.005376pt;}
.ls5_c03305{letter-spacing:0.114048pt;}
.lsb_c03305{letter-spacing:0.451968pt;}
.ls10_c03305{letter-spacing:0.456960pt;}
.lsd_c03305{letter-spacing:0.477312pt;}
.lsa_c03305{letter-spacing:0.515328pt;}
.lsf_c03305{letter-spacing:0.528000pt;}
.ls8_c03305{letter-spacing:0.532224pt;}
.ls2_c03305{letter-spacing:0.544896pt;}
.ls3_c03305{letter-spacing:0.637824pt;}
.ls0_c03305{letter-spacing:0.642048pt;}
.wsc_c03305{word-spacing:-13.445376pt;}
.wsa_c03305{word-spacing:-11.088000pt;}
.ws8_c03305{word-spacing:-11.075328pt;}
.ws9_c03305{word-spacing:-11.037312pt;}
.ws4_c03305{word-spacing:-10.344576pt;}
.ws2_c03305{word-spacing:-10.015104pt;}
.ws10_c03305{word-spacing:-0.963072pt;}
.wsd_c03305{word-spacing:-0.865920pt;}
.ws13_c03305{word-spacing:-0.639744pt;}
.wsf_c03305{word-spacing:-0.105600pt;}
.ws11_c03305{word-spacing:-0.088704pt;}
.ws12_c03305{word-spacing:-0.076032pt;}
.wse_c03305{word-spacing:0.000000pt;}
.wsb_c03305{word-spacing:29.600256pt;}
.ws6_c03305{word-spacing:32.659968pt;}
.ws1_c03305{word-spacing:33.563904pt;}
.ws0_c03305{word-spacing:33.796224pt;}
.ws3_c03305{word-spacing:34.860672pt;}
.ws5_c03305{word-spacing:35.468928pt;}
.ws7_c03305{word-spacing:37.357056pt;}
._0_c03305{margin-left:-1.731840pt;}
._2_c03305{width:1.317888pt;}
._4_c03305{width:5.111040pt;}
._1_c03305{width:44.668800pt;}
._3_c03305{width:45.805056pt;}
.fs0_c03305{font-size:42.240000pt;}
.fs1_c03305{font-size:53.760000pt;}
.y0_c03305{bottom:0.000000pt;}
.y19_c03305{bottom:130.665211pt;}
.y1b_c03305{bottom:165.866875pt;}
.y1a_c03305{bottom:174.507067pt;}
.y18_c03305{bottom:245.225371pt;}
.y17_c03305{bottom:317.225563pt;}
.y15_c03305{bottom:361.386427pt;}
.y11_c03305{bottom:377.386939pt;}
.y16_c03305{bottom:407.786011pt;}
.y14_c03305{bottom:437.226235pt;}
.y13_c03305{bottom:453.226747pt;}
.y10_c03305{bottom:482.666971pt;}
.y12_c03305{bottom:497.386555pt;}
.yf_c03305{bottom:513.387067pt;}
.y1c_c03305{bottom:546.027067pt;}
.yb_c03305{bottom:593.385179pt;}
.yd_c03305{bottom:628.586875pt;}
.yc_c03305{bottom:637.227067pt;}
.ya_c03305{bottom:707.945339pt;}
.y9_c03305{bottom:779.945531pt;}
.y7_c03305{bottom:823.786427pt;}
.y3_c03305{bottom:839.786939pt;}
.y8_c03305{bottom:870.505979pt;}
.y6_c03305{bottom:899.946203pt;}
.y5_c03305{bottom:915.946715pt;}
.y2_c03305{bottom:945.386939pt;}
.y4_c03305{bottom:959.786555pt;}
.y1_c03305{bottom:975.787067pt;}
.ye_c03305{bottom:1008.747067pt;}
.h3_c03305{height:28.916250pt;}
.h1_c03305{height:37.063125pt;}
.h2_c03305{height:37.166250pt;}
.h4_c03305{height:48.581988pt;}
.h0_c03305{height:1122.666667pt;}
.w1_c03305{width:793.333333pt;}
.w0_c03305{width:793.626667pt;}
.x0_c03305{left:0.000000pt;}
.xd_c03305{left:104.000000pt;}
.x8_c03305{left:391.999872pt;}
.x4_c03305{left:396.160512pt;}
.xb_c03305{left:400.960000pt;}
.x7_c03305{left:404.799648pt;}
.x5_c03305{left:410.560128pt;}
.x1_c03305{left:411.840000pt;}
.xa_c03305{left:429.760320pt;}
.x9_c03305{left:437.439552pt;}
.x6_c03305{left:438.400512pt;}
.xc_c03305{left:450.560320pt;}
.x3_c03305{left:455.039904pt;}
.x2_c03305{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03306 {
    display:none;
  }
  .loading-indicator_c03306.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03306 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03306 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03306" -> "#page-container .classname_c03306")
 */
.pf_c03306 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03306 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03306.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03306 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03306 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03306 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03306 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03306 {overflow:visible;}
  }
}
.c_c03306 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03306 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03306:after { /* webkit #35443 */
  content: '';
}
.t_c03306:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03306 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03306 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03306 { /* info for Javascript */
  display:none;
}
.l_c03306 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03306 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03306 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03306:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03306 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03306.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03306.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03306 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03306{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03306;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03306{font-family:ff1_c03306;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03306;src:url('chunks/assets/font_78f4031e7a4e215deabd7cae.woff2')format("woff");}.ff2_c03306{font-family:ff2_c03306;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03306;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03306{font-family:ff3_c03306;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03306{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03306{vertical-align:0.000000px;}
.v1_c03306{vertical-align:1.439424px;}
.ls7_c03306{letter-spacing:-0.613008px;}
.ls9_c03306{letter-spacing:-0.574992px;}
.lse_c03306{letter-spacing:-0.275616px;}
.lsc_c03306{letter-spacing:-0.261360px;}
.ls6_c03306{letter-spacing:-0.242352px;}
.ls4_c03306{letter-spacing:-0.118800px;}
.ls11_c03306{letter-spacing:0.000000px;}
.ls1_c03306{letter-spacing:0.006048px;}
.ls5_c03306{letter-spacing:0.128304px;}
.lsb_c03306{letter-spacing:0.508464px;}
.ls10_c03306{letter-spacing:0.514080px;}
.lsd_c03306{letter-spacing:0.536976px;}
.lsa_c03306{letter-spacing:0.579744px;}
.lsf_c03306{letter-spacing:0.594000px;}
.ls8_c03306{letter-spacing:0.598752px;}
.ls2_c03306{letter-spacing:0.613008px;}
.ls3_c03306{letter-spacing:0.717552px;}
.ls0_c03306{letter-spacing:0.722304px;}
.sc__c03306{text-shadow:none;}
.sc0_c03306{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03306{-webkit-text-stroke:0px transparent;}
.sc0_c03306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03306{word-spacing:-15.126048px;}
.wsa_c03306{word-spacing:-12.474000px;}
.ws8_c03306{word-spacing:-12.459744px;}
.ws9_c03306{word-spacing:-12.416976px;}
.ws4_c03306{word-spacing:-11.637648px;}
.ws2_c03306{word-spacing:-11.266992px;}
.ws10_c03306{word-spacing:-1.083456px;}
.wsd_c03306{word-spacing:-0.974160px;}
.ws13_c03306{word-spacing:-0.719712px;}
.wsf_c03306{word-spacing:-0.118800px;}
.ws11_c03306{word-spacing:-0.099792px;}
.ws12_c03306{word-spacing:-0.085536px;}
.wse_c03306{word-spacing:0.000000px;}
.wsb_c03306{word-spacing:33.300288px;}
.ws6_c03306{word-spacing:36.742464px;}
.ws1_c03306{word-spacing:37.759392px;}
.ws0_c03306{word-spacing:38.020752px;}
.ws3_c03306{word-spacing:39.218256px;}
.ws5_c03306{word-spacing:39.902544px;}
.ws7_c03306{word-spacing:42.026688px;}
._0_c03306{margin-left:-1.948320px;}
._2_c03306{width:1.482624px;}
._4_c03306{width:5.749920px;}
._1_c03306{width:50.252400px;}
._3_c03306{width:51.530688px;}
.fc0_c03306{color:rgb(0,0,0);}
.fs0_c03306{font-size:47.520000px;}
.fs1_c03306{font-size:60.480000px;}
.y0_c03306{bottom:0.000000px;}
.y19_c03306{bottom:146.998362px;}
.y1b_c03306{bottom:186.600234px;}
.y1a_c03306{bottom:196.320450px;}
.y18_c03306{bottom:275.878542px;}
.y17_c03306{bottom:356.878758px;}
.y15_c03306{bottom:406.559730px;}
.y11_c03306{bottom:424.560306px;}
.y16_c03306{bottom:458.759262px;}
.y14_c03306{bottom:491.879514px;}
.y13_c03306{bottom:509.880090px;}
.y10_c03306{bottom:543.000342px;}
.y12_c03306{bottom:559.559874px;}
.yf_c03306{bottom:577.560450px;}
.y1c_c03306{bottom:614.280450px;}
.yb_c03306{bottom:667.558326px;}
.yd_c03306{bottom:707.160234px;}
.yc_c03306{bottom:716.880450px;}
.ya_c03306{bottom:796.438506px;}
.y9_c03306{bottom:877.438722px;}
.y7_c03306{bottom:926.759730px;}
.y3_c03306{bottom:944.760306px;}
.y8_c03306{bottom:979.319226px;}
.y6_c03306{bottom:1012.439478px;}
.y5_c03306{bottom:1030.440054px;}
.y2_c03306{bottom:1063.560306px;}
.y4_c03306{bottom:1079.759874px;}
.y1_c03306{bottom:1097.760450px;}
.ye_c03306{bottom:1134.840450px;}
.h3_c03306{height:32.530781px;}
.h1_c03306{height:41.696016px;}
.h2_c03306{height:41.812031px;}
.h4_c03306{height:54.654737px;}
.h0_c03306{height:1263.000000px;}
.w1_c03306{width:892.500000px;}
.w0_c03306{width:892.830000px;}
.x0_c03306{left:0.000000px;}
.xd_c03306{left:117.000000px;}
.x8_c03306{left:440.999856px;}
.x4_c03306{left:445.680576px;}
.xb_c03306{left:451.080000px;}
.x7_c03306{left:455.399604px;}
.x5_c03306{left:461.880144px;}
.x1_c03306{left:463.320000px;}
.xa_c03306{left:483.480360px;}
.x9_c03306{left:492.119496px;}
.x6_c03306{left:493.200576px;}
.xc_c03306{left:506.880360px;}
.x3_c03306{left:511.919892px;}
.x2_c03306{left:526.679604px;}
@media print{
.v0_c03306{vertical-align:0.000000pt;}
.v1_c03306{vertical-align:1.279488pt;}
.ls7_c03306{letter-spacing:-0.544896pt;}
.ls9_c03306{letter-spacing:-0.511104pt;}
.lse_c03306{letter-spacing:-0.244992pt;}
.lsc_c03306{letter-spacing:-0.232320pt;}
.ls6_c03306{letter-spacing:-0.215424pt;}
.ls4_c03306{letter-spacing:-0.105600pt;}
.ls11_c03306{letter-spacing:0.000000pt;}
.ls1_c03306{letter-spacing:0.005376pt;}
.ls5_c03306{letter-spacing:0.114048pt;}
.lsb_c03306{letter-spacing:0.451968pt;}
.ls10_c03306{letter-spacing:0.456960pt;}
.lsd_c03306{letter-spacing:0.477312pt;}
.lsa_c03306{letter-spacing:0.515328pt;}
.lsf_c03306{letter-spacing:0.528000pt;}
.ls8_c03306{letter-spacing:0.532224pt;}
.ls2_c03306{letter-spacing:0.544896pt;}
.ls3_c03306{letter-spacing:0.637824pt;}
.ls0_c03306{letter-spacing:0.642048pt;}
.wsc_c03306{word-spacing:-13.445376pt;}
.wsa_c03306{word-spacing:-11.088000pt;}
.ws8_c03306{word-spacing:-11.075328pt;}
.ws9_c03306{word-spacing:-11.037312pt;}
.ws4_c03306{word-spacing:-10.344576pt;}
.ws2_c03306{word-spacing:-10.015104pt;}
.ws10_c03306{word-spacing:-0.963072pt;}
.wsd_c03306{word-spacing:-0.865920pt;}
.ws13_c03306{word-spacing:-0.639744pt;}
.wsf_c03306{word-spacing:-0.105600pt;}
.ws11_c03306{word-spacing:-0.088704pt;}
.ws12_c03306{word-spacing:-0.076032pt;}
.wse_c03306{word-spacing:0.000000pt;}
.wsb_c03306{word-spacing:29.600256pt;}
.ws6_c03306{word-spacing:32.659968pt;}
.ws1_c03306{word-spacing:33.563904pt;}
.ws0_c03306{word-spacing:33.796224pt;}
.ws3_c03306{word-spacing:34.860672pt;}
.ws5_c03306{word-spacing:35.468928pt;}
.ws7_c03306{word-spacing:37.357056pt;}
._0_c03306{margin-left:-1.731840pt;}
._2_c03306{width:1.317888pt;}
._4_c03306{width:5.111040pt;}
._1_c03306{width:44.668800pt;}
._3_c03306{width:45.805056pt;}
.fs0_c03306{font-size:42.240000pt;}
.fs1_c03306{font-size:53.760000pt;}
.y0_c03306{bottom:0.000000pt;}
.y19_c03306{bottom:130.665211pt;}
.y1b_c03306{bottom:165.866875pt;}
.y1a_c03306{bottom:174.507067pt;}
.y18_c03306{bottom:245.225371pt;}
.y17_c03306{bottom:317.225563pt;}
.y15_c03306{bottom:361.386427pt;}
.y11_c03306{bottom:377.386939pt;}
.y16_c03306{bottom:407.786011pt;}
.y14_c03306{bottom:437.226235pt;}
.y13_c03306{bottom:453.226747pt;}
.y10_c03306{bottom:482.666971pt;}
.y12_c03306{bottom:497.386555pt;}
.yf_c03306{bottom:513.387067pt;}
.y1c_c03306{bottom:546.027067pt;}
.yb_c03306{bottom:593.385179pt;}
.yd_c03306{bottom:628.586875pt;}
.yc_c03306{bottom:637.227067pt;}
.ya_c03306{bottom:707.945339pt;}
.y9_c03306{bottom:779.945531pt;}
.y7_c03306{bottom:823.786427pt;}
.y3_c03306{bottom:839.786939pt;}
.y8_c03306{bottom:870.505979pt;}
.y6_c03306{bottom:899.946203pt;}
.y5_c03306{bottom:915.946715pt;}
.y2_c03306{bottom:945.386939pt;}
.y4_c03306{bottom:959.786555pt;}
.y1_c03306{bottom:975.787067pt;}
.ye_c03306{bottom:1008.747067pt;}
.h3_c03306{height:28.916250pt;}
.h1_c03306{height:37.063125pt;}
.h2_c03306{height:37.166250pt;}
.h4_c03306{height:48.581988pt;}
.h0_c03306{height:1122.666667pt;}
.w1_c03306{width:793.333333pt;}
.w0_c03306{width:793.626667pt;}
.x0_c03306{left:0.000000pt;}
.xd_c03306{left:104.000000pt;}
.x8_c03306{left:391.999872pt;}
.x4_c03306{left:396.160512pt;}
.xb_c03306{left:400.960000pt;}
.x7_c03306{left:404.799648pt;}
.x5_c03306{left:410.560128pt;}
.x1_c03306{left:411.840000pt;}
.xa_c03306{left:429.760320pt;}
.x9_c03306{left:437.439552pt;}
.x6_c03306{left:438.400512pt;}
.xc_c03306{left:450.560320pt;}
.x3_c03306{left:455.039904pt;}
.x2_c03306{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03307 {
    display:none;
  }
  .loading-indicator_c03307.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03307 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03307 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03307" -> "#page-container .classname_c03307")
 */
.pf_c03307 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03307 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03307.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03307 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03307 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03307 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03307 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03307 {overflow:visible;}
  }
}
.c_c03307 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03307 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03307:after { /* webkit #35443 */
  content: '';
}
.t_c03307:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03307 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03307 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03307 { /* info for Javascript */
  display:none;
}
.l_c03307 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03307 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03307 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03307:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03307 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03307.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03307.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03307 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03307{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03307;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03307{font-family:ff1_c03307;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03307;src:url('chunks/assets/font_3f56cb943d3c43ebd5acd246.woff2')format("woff");}.ff2_c03307{font-family:ff2_c03307;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03307;src:url('chunks/assets/font_08b0d6944a31f8be4527c75c.woff2')format("woff");}.ff3_c03307{font-family:ff3_c03307;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03307{vertical-align:0.000000px;}
.v1_c03307{vertical-align:1.439424px;}
.lsb_c03307{letter-spacing:-0.793584px;}
.ls14_c03307{letter-spacing:-0.755568px;}
.ls13_c03307{letter-spacing:-0.613008px;}
.ls8_c03307{letter-spacing:-0.574992px;}
.lsf_c03307{letter-spacing:-0.275616px;}
.lsd_c03307{letter-spacing:-0.261360px;}
.ls6_c03307{letter-spacing:-0.242352px;}
.ls4_c03307{letter-spacing:-0.118800px;}
.ls12_c03307{letter-spacing:0.000000px;}
.ls2_c03307{letter-spacing:0.006048px;}
.lsc_c03307{letter-spacing:0.014256px;}
.ls5_c03307{letter-spacing:0.128304px;}
.lsa_c03307{letter-spacing:0.508464px;}
.ls11_c03307{letter-spacing:0.514080px;}
.lse_c03307{letter-spacing:0.536976px;}
.ls9_c03307{letter-spacing:0.579744px;}
.ls10_c03307{letter-spacing:0.594000px;}
.ls7_c03307{letter-spacing:0.598752px;}
.ls3_c03307{letter-spacing:0.613008px;}
.ls0_c03307{letter-spacing:0.717552px;}
.ls1_c03307{letter-spacing:0.722304px;}
.sc__c03307{text-shadow:none;}
.sc0_c03307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03307{-webkit-text-stroke:0px transparent;}
.sc0_c03307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03307{word-spacing:-15.126048px;}
.wsb_c03307{word-spacing:-12.474000px;}
.ws7_c03307{word-spacing:-12.459744px;}
.wsa_c03307{word-spacing:-12.416976px;}
.ws5_c03307{word-spacing:-11.637648px;}
.wse_c03307{word-spacing:-11.266992px;}
.ws1_c03307{word-spacing:-1.810512px;}
.ws12_c03307{word-spacing:-1.083456px;}
.wsf_c03307{word-spacing:-0.974160px;}
.ws17_c03307{word-spacing:-0.719712px;}
.ws14_c03307{word-spacing:-0.375408px;}
.ws11_c03307{word-spacing:-0.118800px;}
.ws15_c03307{word-spacing:-0.099792px;}
.ws16_c03307{word-spacing:-0.085536px;}
.ws10_c03307{word-spacing:0.000000px;}
.ws18_c03307{word-spacing:0.394416px;}
.ws13_c03307{word-spacing:0.432432px;}
.ws3_c03307{word-spacing:1.330560px;}
.wsc_c03307{word-spacing:33.300288px;}
.ws9_c03307{word-spacing:36.143712px;}
.ws2_c03307{word-spacing:37.759392px;}
.ws0_c03307{word-spacing:38.020752px;}
.ws4_c03307{word-spacing:39.218256px;}
.ws6_c03307{word-spacing:39.902544px;}
.ws8_c03307{word-spacing:42.026688px;}
._0_c03307{margin-left:-1.948320px;}
._2_c03307{width:1.482624px;}
._4_c03307{width:6.263136px;}
._1_c03307{width:50.252400px;}
._3_c03307{width:51.530688px;}
.fc0_c03307{color:rgb(0,0,0);}
.fs0_c03307{font-size:47.520000px;}
.fs1_c03307{font-size:60.480000px;}
.y0_c03307{bottom:0.000000px;}
.y19_c03307{bottom:146.998362px;}
.y1b_c03307{bottom:186.600234px;}
.y1a_c03307{bottom:196.320450px;}
.y18_c03307{bottom:275.878542px;}
.y17_c03307{bottom:356.878758px;}
.y15_c03307{bottom:406.559730px;}
.y11_c03307{bottom:424.560306px;}
.y16_c03307{bottom:458.759262px;}
.y14_c03307{bottom:491.879514px;}
.y13_c03307{bottom:509.880090px;}
.y10_c03307{bottom:543.000342px;}
.y12_c03307{bottom:559.559874px;}
.yf_c03307{bottom:577.560450px;}
.y1c_c03307{bottom:614.280450px;}
.yb_c03307{bottom:667.558326px;}
.yd_c03307{bottom:707.160234px;}
.yc_c03307{bottom:716.880450px;}
.ya_c03307{bottom:796.438506px;}
.y9_c03307{bottom:877.438722px;}
.y7_c03307{bottom:926.759730px;}
.y3_c03307{bottom:944.760306px;}
.y8_c03307{bottom:979.319226px;}
.y6_c03307{bottom:1012.439478px;}
.y5_c03307{bottom:1030.440054px;}
.y2_c03307{bottom:1063.560306px;}
.y4_c03307{bottom:1079.759874px;}
.y1_c03307{bottom:1097.760450px;}
.ye_c03307{bottom:1134.840450px;}
.h3_c03307{height:32.530781px;}
.h1_c03307{height:41.696016px;}
.h2_c03307{height:41.812031px;}
.h4_c03307{height:54.654737px;}
.h0_c03307{height:1263.000000px;}
.w1_c03307{width:892.500000px;}
.w0_c03307{width:892.830000px;}
.x0_c03307{left:0.000000px;}
.xd_c03307{left:117.000000px;}
.x8_c03307{left:440.999856px;}
.x4_c03307{left:445.680576px;}
.xb_c03307{left:451.080000px;}
.x7_c03307{left:455.399604px;}
.x5_c03307{left:461.880144px;}
.x1_c03307{left:463.320000px;}
.xa_c03307{left:483.480360px;}
.x9_c03307{left:492.119496px;}
.x6_c03307{left:493.200576px;}
.xc_c03307{left:506.880360px;}
.x3_c03307{left:511.919892px;}
.x2_c03307{left:526.679604px;}
@media print{
.v0_c03307{vertical-align:0.000000pt;}
.v1_c03307{vertical-align:1.279488pt;}
.lsb_c03307{letter-spacing:-0.705408pt;}
.ls14_c03307{letter-spacing:-0.671616pt;}
.ls13_c03307{letter-spacing:-0.544896pt;}
.ls8_c03307{letter-spacing:-0.511104pt;}
.lsf_c03307{letter-spacing:-0.244992pt;}
.lsd_c03307{letter-spacing:-0.232320pt;}
.ls6_c03307{letter-spacing:-0.215424pt;}
.ls4_c03307{letter-spacing:-0.105600pt;}
.ls12_c03307{letter-spacing:0.000000pt;}
.ls2_c03307{letter-spacing:0.005376pt;}
.lsc_c03307{letter-spacing:0.012672pt;}
.ls5_c03307{letter-spacing:0.114048pt;}
.lsa_c03307{letter-spacing:0.451968pt;}
.ls11_c03307{letter-spacing:0.456960pt;}
.lse_c03307{letter-spacing:0.477312pt;}
.ls9_c03307{letter-spacing:0.515328pt;}
.ls10_c03307{letter-spacing:0.528000pt;}
.ls7_c03307{letter-spacing:0.532224pt;}
.ls3_c03307{letter-spacing:0.544896pt;}
.ls0_c03307{letter-spacing:0.637824pt;}
.ls1_c03307{letter-spacing:0.642048pt;}
.wsd_c03307{word-spacing:-13.445376pt;}
.wsb_c03307{word-spacing:-11.088000pt;}
.ws7_c03307{word-spacing:-11.075328pt;}
.wsa_c03307{word-spacing:-11.037312pt;}
.ws5_c03307{word-spacing:-10.344576pt;}
.wse_c03307{word-spacing:-10.015104pt;}
.ws1_c03307{word-spacing:-1.609344pt;}
.ws12_c03307{word-spacing:-0.963072pt;}
.wsf_c03307{word-spacing:-0.865920pt;}
.ws17_c03307{word-spacing:-0.639744pt;}
.ws14_c03307{word-spacing:-0.333696pt;}
.ws11_c03307{word-spacing:-0.105600pt;}
.ws15_c03307{word-spacing:-0.088704pt;}
.ws16_c03307{word-spacing:-0.076032pt;}
.ws10_c03307{word-spacing:0.000000pt;}
.ws18_c03307{word-spacing:0.350592pt;}
.ws13_c03307{word-spacing:0.384384pt;}
.ws3_c03307{word-spacing:1.182720pt;}
.wsc_c03307{word-spacing:29.600256pt;}
.ws9_c03307{word-spacing:32.127744pt;}
.ws2_c03307{word-spacing:33.563904pt;}
.ws0_c03307{word-spacing:33.796224pt;}
.ws4_c03307{word-spacing:34.860672pt;}
.ws6_c03307{word-spacing:35.468928pt;}
.ws8_c03307{word-spacing:37.357056pt;}
._0_c03307{margin-left:-1.731840pt;}
._2_c03307{width:1.317888pt;}
._4_c03307{width:5.567232pt;}
._1_c03307{width:44.668800pt;}
._3_c03307{width:45.805056pt;}
.fs0_c03307{font-size:42.240000pt;}
.fs1_c03307{font-size:53.760000pt;}
.y0_c03307{bottom:0.000000pt;}
.y19_c03307{bottom:130.665211pt;}
.y1b_c03307{bottom:165.866875pt;}
.y1a_c03307{bottom:174.507067pt;}
.y18_c03307{bottom:245.225371pt;}
.y17_c03307{bottom:317.225563pt;}
.y15_c03307{bottom:361.386427pt;}
.y11_c03307{bottom:377.386939pt;}
.y16_c03307{bottom:407.786011pt;}
.y14_c03307{bottom:437.226235pt;}
.y13_c03307{bottom:453.226747pt;}
.y10_c03307{bottom:482.666971pt;}
.y12_c03307{bottom:497.386555pt;}
.yf_c03307{bottom:513.387067pt;}
.y1c_c03307{bottom:546.027067pt;}
.yb_c03307{bottom:593.385179pt;}
.yd_c03307{bottom:628.586875pt;}
.yc_c03307{bottom:637.227067pt;}
.ya_c03307{bottom:707.945339pt;}
.y9_c03307{bottom:779.945531pt;}
.y7_c03307{bottom:823.786427pt;}
.y3_c03307{bottom:839.786939pt;}
.y8_c03307{bottom:870.505979pt;}
.y6_c03307{bottom:899.946203pt;}
.y5_c03307{bottom:915.946715pt;}
.y2_c03307{bottom:945.386939pt;}
.y4_c03307{bottom:959.786555pt;}
.y1_c03307{bottom:975.787067pt;}
.ye_c03307{bottom:1008.747067pt;}
.h3_c03307{height:28.916250pt;}
.h1_c03307{height:37.063125pt;}
.h2_c03307{height:37.166250pt;}
.h4_c03307{height:48.581988pt;}
.h0_c03307{height:1122.666667pt;}
.w1_c03307{width:793.333333pt;}
.w0_c03307{width:793.626667pt;}
.x0_c03307{left:0.000000pt;}
.xd_c03307{left:104.000000pt;}
.x8_c03307{left:391.999872pt;}
.x4_c03307{left:396.160512pt;}
.xb_c03307{left:400.960000pt;}
.x7_c03307{left:404.799648pt;}
.x5_c03307{left:410.560128pt;}
.x1_c03307{left:411.840000pt;}
.xa_c03307{left:429.760320pt;}
.x9_c03307{left:437.439552pt;}
.x6_c03307{left:438.400512pt;}
.xc_c03307{left:450.560320pt;}
.x3_c03307{left:455.039904pt;}
.x2_c03307{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03308 {
    display:none;
  }
  .loading-indicator_c03308.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03308 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03308 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03308" -> "#page-container .classname_c03308")
 */
.pf_c03308 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03308 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03308.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03308 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03308 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03308 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03308 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03308 {overflow:visible;}
  }
}
.c_c03308 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03308 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03308:after { /* webkit #35443 */
  content: '';
}
.t_c03308:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03308 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03308 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03308 { /* info for Javascript */
  display:none;
}
.l_c03308 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03308 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03308 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03308:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03308 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03308.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03308.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03308 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03308{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03308;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03308{font-family:ff1_c03308;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03308;src:url('chunks/assets/font_829c4177bd222ce56a13d87f.woff2')format("woff");}.ff2_c03308{font-family:ff2_c03308;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03308;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03308{font-family:ff3_c03308;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03308{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03308{vertical-align:0.000000px;}
.v1_c03308{vertical-align:1.439424px;}
.lsc_c03308{letter-spacing:-0.793584px;}
.ls7_c03308{letter-spacing:-0.613008px;}
.ls9_c03308{letter-spacing:-0.574992px;}
.ls14_c03308{letter-spacing:-0.304128px;}
.ls10_c03308{letter-spacing:-0.275616px;}
.lse_c03308{letter-spacing:-0.261360px;}
.ls6_c03308{letter-spacing:-0.242352px;}
.ls4_c03308{letter-spacing:-0.118800px;}
.lsd_c03308{letter-spacing:-0.014256px;}
.ls13_c03308{letter-spacing:0.000000px;}
.ls1_c03308{letter-spacing:0.006048px;}
.ls5_c03308{letter-spacing:0.128304px;}
.lsb_c03308{letter-spacing:0.508464px;}
.ls12_c03308{letter-spacing:0.514080px;}
.lsf_c03308{letter-spacing:0.536976px;}
.lsa_c03308{letter-spacing:0.579744px;}
.ls11_c03308{letter-spacing:0.594000px;}
.ls8_c03308{letter-spacing:0.598752px;}
.ls2_c03308{letter-spacing:0.613008px;}
.ls3_c03308{letter-spacing:0.717552px;}
.ls0_c03308{letter-spacing:0.722304px;}
.sc__c03308{text-shadow:none;}
.sc0_c03308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03308{-webkit-text-stroke:0px transparent;}
.sc0_c03308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03308{word-spacing:-15.126048px;}
.wsa_c03308{word-spacing:-12.474000px;}
.ws6_c03308{word-spacing:-12.459744px;}
.ws4_c03308{word-spacing:-11.637648px;}
.ws2_c03308{word-spacing:-11.266992px;}
.ws10_c03308{word-spacing:-1.083456px;}
.wsd_c03308{word-spacing:-0.974160px;}
.ws15_c03308{word-spacing:-0.719712px;}
.ws12_c03308{word-spacing:-0.346896px;}
.wsf_c03308{word-spacing:-0.118800px;}
.ws13_c03308{word-spacing:-0.099792px;}
.ws14_c03308{word-spacing:-0.085536px;}
.ws16_c03308{word-spacing:-0.057024px;}
.wse_c03308{word-spacing:0.000000px;}
.ws11_c03308{word-spacing:0.432432px;}
.wsb_c03308{word-spacing:33.300288px;}
.ws9_c03308{word-spacing:34.836912px;}
.ws8_c03308{word-spacing:36.143712px;}
.ws1_c03308{word-spacing:37.759392px;}
.ws0_c03308{word-spacing:38.020752px;}
.ws3_c03308{word-spacing:39.218256px;}
.ws5_c03308{word-spacing:39.902544px;}
.ws7_c03308{word-spacing:42.026688px;}
._0_c03308{margin-left:-1.948320px;}
._2_c03308{width:1.482624px;}
._4_c03308{width:5.749920px;}
._1_c03308{width:50.252400px;}
._3_c03308{width:51.530688px;}
.fc0_c03308{color:rgb(0,0,0);}
.fs0_c03308{font-size:47.520000px;}
.fs1_c03308{font-size:60.480000px;}
.y0_c03308{bottom:0.000000px;}
.y19_c03308{bottom:146.998362px;}
.y1b_c03308{bottom:186.600234px;}
.y1a_c03308{bottom:196.320450px;}
.y18_c03308{bottom:275.878542px;}
.y17_c03308{bottom:356.878758px;}
.y15_c03308{bottom:406.559730px;}
.y11_c03308{bottom:424.560306px;}
.y16_c03308{bottom:458.759262px;}
.y14_c03308{bottom:491.879514px;}
.y13_c03308{bottom:509.880090px;}
.y10_c03308{bottom:543.000342px;}
.y12_c03308{bottom:559.559874px;}
.yf_c03308{bottom:577.560450px;}
.y1c_c03308{bottom:614.280450px;}
.yb_c03308{bottom:667.558326px;}
.yd_c03308{bottom:707.160234px;}
.yc_c03308{bottom:716.880450px;}
.ya_c03308{bottom:796.438506px;}
.y9_c03308{bottom:877.438722px;}
.y7_c03308{bottom:926.759730px;}
.y3_c03308{bottom:944.760306px;}
.y8_c03308{bottom:979.319226px;}
.y6_c03308{bottom:1012.439478px;}
.y5_c03308{bottom:1030.440054px;}
.y2_c03308{bottom:1063.560306px;}
.y4_c03308{bottom:1079.759874px;}
.y1_c03308{bottom:1097.760450px;}
.ye_c03308{bottom:1134.840450px;}
.h3_c03308{height:32.530781px;}
.h1_c03308{height:41.696016px;}
.h2_c03308{height:41.812031px;}
.h4_c03308{height:54.654737px;}
.h0_c03308{height:1263.000000px;}
.w1_c03308{width:892.500000px;}
.w0_c03308{width:892.830000px;}
.x0_c03308{left:0.000000px;}
.xd_c03308{left:117.000000px;}
.x8_c03308{left:440.999856px;}
.x4_c03308{left:445.680576px;}
.xb_c03308{left:451.080000px;}
.x7_c03308{left:455.399604px;}
.x5_c03308{left:461.880144px;}
.x1_c03308{left:463.320000px;}
.xa_c03308{left:483.480360px;}
.x9_c03308{left:492.119496px;}
.x6_c03308{left:493.200576px;}
.xc_c03308{left:506.880360px;}
.x3_c03308{left:511.919892px;}
.x2_c03308{left:526.679604px;}
@media print{
.v0_c03308{vertical-align:0.000000pt;}
.v1_c03308{vertical-align:1.279488pt;}
.lsc_c03308{letter-spacing:-0.705408pt;}
.ls7_c03308{letter-spacing:-0.544896pt;}
.ls9_c03308{letter-spacing:-0.511104pt;}
.ls14_c03308{letter-spacing:-0.270336pt;}
.ls10_c03308{letter-spacing:-0.244992pt;}
.lse_c03308{letter-spacing:-0.232320pt;}
.ls6_c03308{letter-spacing:-0.215424pt;}
.ls4_c03308{letter-spacing:-0.105600pt;}
.lsd_c03308{letter-spacing:-0.012672pt;}
.ls13_c03308{letter-spacing:0.000000pt;}
.ls1_c03308{letter-spacing:0.005376pt;}
.ls5_c03308{letter-spacing:0.114048pt;}
.lsb_c03308{letter-spacing:0.451968pt;}
.ls12_c03308{letter-spacing:0.456960pt;}
.lsf_c03308{letter-spacing:0.477312pt;}
.lsa_c03308{letter-spacing:0.515328pt;}
.ls11_c03308{letter-spacing:0.528000pt;}
.ls8_c03308{letter-spacing:0.532224pt;}
.ls2_c03308{letter-spacing:0.544896pt;}
.ls3_c03308{letter-spacing:0.637824pt;}
.ls0_c03308{letter-spacing:0.642048pt;}
.wsc_c03308{word-spacing:-13.445376pt;}
.wsa_c03308{word-spacing:-11.088000pt;}
.ws6_c03308{word-spacing:-11.075328pt;}
.ws4_c03308{word-spacing:-10.344576pt;}
.ws2_c03308{word-spacing:-10.015104pt;}
.ws10_c03308{word-spacing:-0.963072pt;}
.wsd_c03308{word-spacing:-0.865920pt;}
.ws15_c03308{word-spacing:-0.639744pt;}
.ws12_c03308{word-spacing:-0.308352pt;}
.wsf_c03308{word-spacing:-0.105600pt;}
.ws13_c03308{word-spacing:-0.088704pt;}
.ws14_c03308{word-spacing:-0.076032pt;}
.ws16_c03308{word-spacing:-0.050688pt;}
.wse_c03308{word-spacing:0.000000pt;}
.ws11_c03308{word-spacing:0.384384pt;}
.wsb_c03308{word-spacing:29.600256pt;}
.ws9_c03308{word-spacing:30.966144pt;}
.ws8_c03308{word-spacing:32.127744pt;}
.ws1_c03308{word-spacing:33.563904pt;}
.ws0_c03308{word-spacing:33.796224pt;}
.ws3_c03308{word-spacing:34.860672pt;}
.ws5_c03308{word-spacing:35.468928pt;}
.ws7_c03308{word-spacing:37.357056pt;}
._0_c03308{margin-left:-1.731840pt;}
._2_c03308{width:1.317888pt;}
._4_c03308{width:5.111040pt;}
._1_c03308{width:44.668800pt;}
._3_c03308{width:45.805056pt;}
.fs0_c03308{font-size:42.240000pt;}
.fs1_c03308{font-size:53.760000pt;}
.y0_c03308{bottom:0.000000pt;}
.y19_c03308{bottom:130.665211pt;}
.y1b_c03308{bottom:165.866875pt;}
.y1a_c03308{bottom:174.507067pt;}
.y18_c03308{bottom:245.225371pt;}
.y17_c03308{bottom:317.225563pt;}
.y15_c03308{bottom:361.386427pt;}
.y11_c03308{bottom:377.386939pt;}
.y16_c03308{bottom:407.786011pt;}
.y14_c03308{bottom:437.226235pt;}
.y13_c03308{bottom:453.226747pt;}
.y10_c03308{bottom:482.666971pt;}
.y12_c03308{bottom:497.386555pt;}
.yf_c03308{bottom:513.387067pt;}
.y1c_c03308{bottom:546.027067pt;}
.yb_c03308{bottom:593.385179pt;}
.yd_c03308{bottom:628.586875pt;}
.yc_c03308{bottom:637.227067pt;}
.ya_c03308{bottom:707.945339pt;}
.y9_c03308{bottom:779.945531pt;}
.y7_c03308{bottom:823.786427pt;}
.y3_c03308{bottom:839.786939pt;}
.y8_c03308{bottom:870.505979pt;}
.y6_c03308{bottom:899.946203pt;}
.y5_c03308{bottom:915.946715pt;}
.y2_c03308{bottom:945.386939pt;}
.y4_c03308{bottom:959.786555pt;}
.y1_c03308{bottom:975.787067pt;}
.ye_c03308{bottom:1008.747067pt;}
.h3_c03308{height:28.916250pt;}
.h1_c03308{height:37.063125pt;}
.h2_c03308{height:37.166250pt;}
.h4_c03308{height:48.581988pt;}
.h0_c03308{height:1122.666667pt;}
.w1_c03308{width:793.333333pt;}
.w0_c03308{width:793.626667pt;}
.x0_c03308{left:0.000000pt;}
.xd_c03308{left:104.000000pt;}
.x8_c03308{left:391.999872pt;}
.x4_c03308{left:396.160512pt;}
.xb_c03308{left:400.960000pt;}
.x7_c03308{left:404.799648pt;}
.x5_c03308{left:410.560128pt;}
.x1_c03308{left:411.840000pt;}
.xa_c03308{left:429.760320pt;}
.x9_c03308{left:437.439552pt;}
.x6_c03308{left:438.400512pt;}
.xc_c03308{left:450.560320pt;}
.x3_c03308{left:455.039904pt;}
.x2_c03308{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03309 {
    display:none;
  }
  .loading-indicator_c03309.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03309 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03309 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03309" -> "#page-container .classname_c03309")
 */
.pf_c03309 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03309 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03309.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03309 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03309 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03309 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03309 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03309 {overflow:visible;}
  }
}
.c_c03309 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03309 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03309:after { /* webkit #35443 */
  content: '';
}
.t_c03309:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03309 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03309 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03309 { /* info for Javascript */
  display:none;
}
.l_c03309 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03309 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03309 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03309:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03309 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03309.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03309.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03309 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03309{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03309;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03309{font-family:ff1_c03309;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03309;src:url('chunks/assets/font_25847bd53008116bfeb76e6c.woff2')format("woff");}.ff2_c03309{font-family:ff2_c03309;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03309;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03309{font-family:ff3_c03309;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03309{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03309{vertical-align:0.000000px;}
.v1_c03309{vertical-align:1.439424px;}
.lsc_c03309{letter-spacing:-0.793584px;}
.ls7_c03309{letter-spacing:-0.613008px;}
.ls9_c03309{letter-spacing:-0.574992px;}
.lsd_c03309{letter-spacing:-0.304128px;}
.ls10_c03309{letter-spacing:-0.275616px;}
.lse_c03309{letter-spacing:-0.261360px;}
.ls6_c03309{letter-spacing:-0.242352px;}
.ls4_c03309{letter-spacing:-0.118800px;}
.ls13_c03309{letter-spacing:0.000000px;}
.ls1_c03309{letter-spacing:0.006048px;}
.ls5_c03309{letter-spacing:0.128304px;}
.lsb_c03309{letter-spacing:0.508464px;}
.ls12_c03309{letter-spacing:0.514080px;}
.lsf_c03309{letter-spacing:0.536976px;}
.lsa_c03309{letter-spacing:0.579744px;}
.ls11_c03309{letter-spacing:0.594000px;}
.ls8_c03309{letter-spacing:0.598752px;}
.ls3_c03309{letter-spacing:0.613008px;}
.ls2_c03309{letter-spacing:0.717552px;}
.ls0_c03309{letter-spacing:0.722304px;}
.sc__c03309{text-shadow:none;}
.sc0_c03309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03309{-webkit-text-stroke:0px transparent;}
.sc0_c03309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03309{word-spacing:-15.126048px;}
.wsa_c03309{word-spacing:-12.474000px;}
.ws6_c03309{word-spacing:-12.459744px;}
.wse_c03309{word-spacing:-12.416976px;}
.ws4_c03309{word-spacing:-11.637648px;}
.ws2_c03309{word-spacing:-11.266992px;}
.ws12_c03309{word-spacing:-1.083456px;}
.ws18_c03309{word-spacing:-1.078704px;}
.wsf_c03309{word-spacing:-0.974160px;}
.ws17_c03309{word-spacing:-0.719712px;}
.ws11_c03309{word-spacing:-0.118800px;}
.ws15_c03309{word-spacing:-0.099792px;}
.ws16_c03309{word-spacing:-0.085536px;}
.ws14_c03309{word-spacing:-0.057024px;}
.ws10_c03309{word-spacing:0.000000px;}
.ws13_c03309{word-spacing:0.432432px;}
.wsb_c03309{word-spacing:33.300288px;}
.ws9_c03309{word-spacing:34.836912px;}
.ws8_c03309{word-spacing:36.143712px;}
.wsd_c03309{word-spacing:36.742464px;}
.ws1_c03309{word-spacing:37.759392px;}
.ws0_c03309{word-spacing:38.020752px;}
.ws3_c03309{word-spacing:39.218256px;}
.ws5_c03309{word-spacing:39.902544px;}
.ws7_c03309{word-spacing:42.026688px;}
._0_c03309{margin-left:-1.948320px;}
._2_c03309{width:1.482624px;}
._4_c03309{width:5.749920px;}
._1_c03309{width:50.252400px;}
._3_c03309{width:51.530688px;}
.fc0_c03309{color:rgb(0,0,0);}
.fs0_c03309{font-size:47.520000px;}
.fs1_c03309{font-size:60.480000px;}
.y0_c03309{bottom:0.000000px;}
.y19_c03309{bottom:146.998362px;}
.y1b_c03309{bottom:186.600234px;}
.y1a_c03309{bottom:196.320450px;}
.y18_c03309{bottom:275.878542px;}
.y17_c03309{bottom:356.878758px;}
.y15_c03309{bottom:406.559730px;}
.y11_c03309{bottom:424.560306px;}
.y16_c03309{bottom:458.759262px;}
.y14_c03309{bottom:491.879514px;}
.y13_c03309{bottom:509.880090px;}
.y10_c03309{bottom:543.000342px;}
.y12_c03309{bottom:559.559874px;}
.yf_c03309{bottom:577.560450px;}
.y1c_c03309{bottom:614.280450px;}
.yb_c03309{bottom:667.558326px;}
.yd_c03309{bottom:707.160234px;}
.yc_c03309{bottom:716.880450px;}
.ya_c03309{bottom:796.438506px;}
.y9_c03309{bottom:877.438722px;}
.y7_c03309{bottom:926.759730px;}
.y3_c03309{bottom:944.760306px;}
.y8_c03309{bottom:979.319226px;}
.y6_c03309{bottom:1012.439478px;}
.y5_c03309{bottom:1030.440054px;}
.y2_c03309{bottom:1063.560306px;}
.y4_c03309{bottom:1079.759874px;}
.y1_c03309{bottom:1097.760450px;}
.ye_c03309{bottom:1134.840450px;}
.h3_c03309{height:32.530781px;}
.h1_c03309{height:41.696016px;}
.h2_c03309{height:41.812031px;}
.h4_c03309{height:54.654737px;}
.h0_c03309{height:1263.000000px;}
.w1_c03309{width:892.500000px;}
.w0_c03309{width:892.830000px;}
.x0_c03309{left:0.000000px;}
.xd_c03309{left:117.000000px;}
.x8_c03309{left:440.999856px;}
.x4_c03309{left:445.680576px;}
.xb_c03309{left:451.080000px;}
.x7_c03309{left:455.399604px;}
.x5_c03309{left:461.880144px;}
.x1_c03309{left:463.320000px;}
.xa_c03309{left:483.480360px;}
.x9_c03309{left:492.119496px;}
.x6_c03309{left:493.200576px;}
.xc_c03309{left:506.880360px;}
.x3_c03309{left:511.919892px;}
.x2_c03309{left:526.679604px;}
@media print{
.v0_c03309{vertical-align:0.000000pt;}
.v1_c03309{vertical-align:1.279488pt;}
.lsc_c03309{letter-spacing:-0.705408pt;}
.ls7_c03309{letter-spacing:-0.544896pt;}
.ls9_c03309{letter-spacing:-0.511104pt;}
.lsd_c03309{letter-spacing:-0.270336pt;}
.ls10_c03309{letter-spacing:-0.244992pt;}
.lse_c03309{letter-spacing:-0.232320pt;}
.ls6_c03309{letter-spacing:-0.215424pt;}
.ls4_c03309{letter-spacing:-0.105600pt;}
.ls13_c03309{letter-spacing:0.000000pt;}
.ls1_c03309{letter-spacing:0.005376pt;}
.ls5_c03309{letter-spacing:0.114048pt;}
.lsb_c03309{letter-spacing:0.451968pt;}
.ls12_c03309{letter-spacing:0.456960pt;}
.lsf_c03309{letter-spacing:0.477312pt;}
.lsa_c03309{letter-spacing:0.515328pt;}
.ls11_c03309{letter-spacing:0.528000pt;}
.ls8_c03309{letter-spacing:0.532224pt;}
.ls3_c03309{letter-spacing:0.544896pt;}
.ls2_c03309{letter-spacing:0.637824pt;}
.ls0_c03309{letter-spacing:0.642048pt;}
.wsc_c03309{word-spacing:-13.445376pt;}
.wsa_c03309{word-spacing:-11.088000pt;}
.ws6_c03309{word-spacing:-11.075328pt;}
.wse_c03309{word-spacing:-11.037312pt;}
.ws4_c03309{word-spacing:-10.344576pt;}
.ws2_c03309{word-spacing:-10.015104pt;}
.ws12_c03309{word-spacing:-0.963072pt;}
.ws18_c03309{word-spacing:-0.958848pt;}
.wsf_c03309{word-spacing:-0.865920pt;}
.ws17_c03309{word-spacing:-0.639744pt;}
.ws11_c03309{word-spacing:-0.105600pt;}
.ws15_c03309{word-spacing:-0.088704pt;}
.ws16_c03309{word-spacing:-0.076032pt;}
.ws14_c03309{word-spacing:-0.050688pt;}
.ws10_c03309{word-spacing:0.000000pt;}
.ws13_c03309{word-spacing:0.384384pt;}
.wsb_c03309{word-spacing:29.600256pt;}
.ws9_c03309{word-spacing:30.966144pt;}
.ws8_c03309{word-spacing:32.127744pt;}
.wsd_c03309{word-spacing:32.659968pt;}
.ws1_c03309{word-spacing:33.563904pt;}
.ws0_c03309{word-spacing:33.796224pt;}
.ws3_c03309{word-spacing:34.860672pt;}
.ws5_c03309{word-spacing:35.468928pt;}
.ws7_c03309{word-spacing:37.357056pt;}
._0_c03309{margin-left:-1.731840pt;}
._2_c03309{width:1.317888pt;}
._4_c03309{width:5.111040pt;}
._1_c03309{width:44.668800pt;}
._3_c03309{width:45.805056pt;}
.fs0_c03309{font-size:42.240000pt;}
.fs1_c03309{font-size:53.760000pt;}
.y0_c03309{bottom:0.000000pt;}
.y19_c03309{bottom:130.665211pt;}
.y1b_c03309{bottom:165.866875pt;}
.y1a_c03309{bottom:174.507067pt;}
.y18_c03309{bottom:245.225371pt;}
.y17_c03309{bottom:317.225563pt;}
.y15_c03309{bottom:361.386427pt;}
.y11_c03309{bottom:377.386939pt;}
.y16_c03309{bottom:407.786011pt;}
.y14_c03309{bottom:437.226235pt;}
.y13_c03309{bottom:453.226747pt;}
.y10_c03309{bottom:482.666971pt;}
.y12_c03309{bottom:497.386555pt;}
.yf_c03309{bottom:513.387067pt;}
.y1c_c03309{bottom:546.027067pt;}
.yb_c03309{bottom:593.385179pt;}
.yd_c03309{bottom:628.586875pt;}
.yc_c03309{bottom:637.227067pt;}
.ya_c03309{bottom:707.945339pt;}
.y9_c03309{bottom:779.945531pt;}
.y7_c03309{bottom:823.786427pt;}
.y3_c03309{bottom:839.786939pt;}
.y8_c03309{bottom:870.505979pt;}
.y6_c03309{bottom:899.946203pt;}
.y5_c03309{bottom:915.946715pt;}
.y2_c03309{bottom:945.386939pt;}
.y4_c03309{bottom:959.786555pt;}
.y1_c03309{bottom:975.787067pt;}
.ye_c03309{bottom:1008.747067pt;}
.h3_c03309{height:28.916250pt;}
.h1_c03309{height:37.063125pt;}
.h2_c03309{height:37.166250pt;}
.h4_c03309{height:48.581988pt;}
.h0_c03309{height:1122.666667pt;}
.w1_c03309{width:793.333333pt;}
.w0_c03309{width:793.626667pt;}
.x0_c03309{left:0.000000pt;}
.xd_c03309{left:104.000000pt;}
.x8_c03309{left:391.999872pt;}
.x4_c03309{left:396.160512pt;}
.xb_c03309{left:400.960000pt;}
.x7_c03309{left:404.799648pt;}
.x5_c03309{left:410.560128pt;}
.x1_c03309{left:411.840000pt;}
.xa_c03309{left:429.760320pt;}
.x9_c03309{left:437.439552pt;}
.x6_c03309{left:438.400512pt;}
.xc_c03309{left:450.560320pt;}
.x3_c03309{left:455.039904pt;}
.x2_c03309{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03310 {
    display:none;
  }
  .loading-indicator_c03310.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03310 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03310 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03310" -> "#page-container .classname_c03310")
 */
.pf_c03310 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03310 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03310.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03310 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03310 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03310 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03310 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03310 {overflow:visible;}
  }
}
.c_c03310 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03310 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03310:after { /* webkit #35443 */
  content: '';
}
.t_c03310:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03310 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03310 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03310 { /* info for Javascript */
  display:none;
}
.l_c03310 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03310 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03310 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03310:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03310 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03310.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03310.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03310 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03310{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03310;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03310{font-family:ff1_c03310;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03310;src:url('chunks/assets/font_af9c31607e714e3b4073a21f.woff2')format("woff");}.ff2_c03310{font-family:ff2_c03310;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03310;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03310{font-family:ff3_c03310;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03310{vertical-align:0.000000px;}
.v1_c03310{vertical-align:1.439424px;}
.ls6_c03310{letter-spacing:-0.613008px;}
.ls8_c03310{letter-spacing:-0.574992px;}
.lse_c03310{letter-spacing:-0.275616px;}
.lsc_c03310{letter-spacing:-0.261360px;}
.ls5_c03310{letter-spacing:-0.242352px;}
.ls3_c03310{letter-spacing:-0.118800px;}
.ls11_c03310{letter-spacing:0.000000px;}
.ls1_c03310{letter-spacing:0.006048px;}
.ls4_c03310{letter-spacing:0.128304px;}
.lsa_c03310{letter-spacing:0.508464px;}
.ls10_c03310{letter-spacing:0.514080px;}
.lsd_c03310{letter-spacing:0.536976px;}
.ls9_c03310{letter-spacing:0.579744px;}
.lsf_c03310{letter-spacing:0.594000px;}
.ls7_c03310{letter-spacing:0.598752px;}
.ls2_c03310{letter-spacing:0.613008px;}
.ls0_c03310{letter-spacing:0.717552px;}
.lsb_c03310{letter-spacing:0.722304px;}
.sc__c03310{text-shadow:none;}
.sc0_c03310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03310{-webkit-text-stroke:0px transparent;}
.sc0_c03310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03310{word-spacing:-15.126048px;}
.wsa_c03310{word-spacing:-12.474000px;}
.ws8_c03310{word-spacing:-12.459744px;}
.ws9_c03310{word-spacing:-12.416976px;}
.ws4_c03310{word-spacing:-11.637648px;}
.ws2_c03310{word-spacing:-11.266992px;}
.ws11_c03310{word-spacing:-1.083456px;}
.ws10_c03310{word-spacing:-1.078704px;}
.wsd_c03310{word-spacing:-0.974160px;}
.ws14_c03310{word-spacing:-0.719712px;}
.wsf_c03310{word-spacing:-0.118800px;}
.ws12_c03310{word-spacing:-0.099792px;}
.ws13_c03310{word-spacing:-0.085536px;}
.wse_c03310{word-spacing:0.000000px;}
.wsb_c03310{word-spacing:33.300288px;}
.ws6_c03310{word-spacing:36.742464px;}
.ws1_c03310{word-spacing:37.759392px;}
.ws0_c03310{word-spacing:38.020752px;}
.ws3_c03310{word-spacing:39.218256px;}
.ws5_c03310{word-spacing:39.902544px;}
.ws7_c03310{word-spacing:42.026688px;}
._0_c03310{margin-left:-1.948320px;}
._2_c03310{width:1.482624px;}
._4_c03310{width:5.749920px;}
._1_c03310{width:50.252400px;}
._3_c03310{width:51.530688px;}
.fc0_c03310{color:rgb(0,0,0);}
.fs0_c03310{font-size:47.520000px;}
.fs1_c03310{font-size:60.480000px;}
.y0_c03310{bottom:0.000000px;}
.y19_c03310{bottom:146.998362px;}
.y1b_c03310{bottom:186.600234px;}
.y1a_c03310{bottom:196.320450px;}
.y18_c03310{bottom:275.878542px;}
.y17_c03310{bottom:356.878758px;}
.y15_c03310{bottom:406.559730px;}
.y11_c03310{bottom:424.560306px;}
.y16_c03310{bottom:458.759262px;}
.y14_c03310{bottom:491.879514px;}
.y13_c03310{bottom:509.880090px;}
.y10_c03310{bottom:543.000342px;}
.y12_c03310{bottom:559.559874px;}
.yf_c03310{bottom:577.560450px;}
.y1c_c03310{bottom:614.280450px;}
.yb_c03310{bottom:667.558326px;}
.yd_c03310{bottom:707.160234px;}
.yc_c03310{bottom:716.880450px;}
.ya_c03310{bottom:796.438506px;}
.y9_c03310{bottom:877.438722px;}
.y7_c03310{bottom:926.759730px;}
.y3_c03310{bottom:944.760306px;}
.y8_c03310{bottom:979.319226px;}
.y6_c03310{bottom:1012.439478px;}
.y5_c03310{bottom:1030.440054px;}
.y2_c03310{bottom:1063.560306px;}
.y4_c03310{bottom:1079.759874px;}
.y1_c03310{bottom:1097.760450px;}
.ye_c03310{bottom:1134.840450px;}
.h3_c03310{height:32.530781px;}
.h1_c03310{height:41.696016px;}
.h2_c03310{height:41.812031px;}
.h4_c03310{height:54.654737px;}
.h0_c03310{height:1263.000000px;}
.w1_c03310{width:892.500000px;}
.w0_c03310{width:892.830000px;}
.x0_c03310{left:0.000000px;}
.xd_c03310{left:117.000000px;}
.x8_c03310{left:440.999856px;}
.x4_c03310{left:445.680576px;}
.xb_c03310{left:451.080000px;}
.x7_c03310{left:455.399604px;}
.x5_c03310{left:461.880144px;}
.x1_c03310{left:463.320000px;}
.xa_c03310{left:483.480360px;}
.x9_c03310{left:492.119496px;}
.x6_c03310{left:493.200576px;}
.xc_c03310{left:506.880360px;}
.x3_c03310{left:511.919892px;}
.x2_c03310{left:526.679604px;}
@media print{
.v0_c03310{vertical-align:0.000000pt;}
.v1_c03310{vertical-align:1.279488pt;}
.ls6_c03310{letter-spacing:-0.544896pt;}
.ls8_c03310{letter-spacing:-0.511104pt;}
.lse_c03310{letter-spacing:-0.244992pt;}
.lsc_c03310{letter-spacing:-0.232320pt;}
.ls5_c03310{letter-spacing:-0.215424pt;}
.ls3_c03310{letter-spacing:-0.105600pt;}
.ls11_c03310{letter-spacing:0.000000pt;}
.ls1_c03310{letter-spacing:0.005376pt;}
.ls4_c03310{letter-spacing:0.114048pt;}
.lsa_c03310{letter-spacing:0.451968pt;}
.ls10_c03310{letter-spacing:0.456960pt;}
.lsd_c03310{letter-spacing:0.477312pt;}
.ls9_c03310{letter-spacing:0.515328pt;}
.lsf_c03310{letter-spacing:0.528000pt;}
.ls7_c03310{letter-spacing:0.532224pt;}
.ls2_c03310{letter-spacing:0.544896pt;}
.ls0_c03310{letter-spacing:0.637824pt;}
.lsb_c03310{letter-spacing:0.642048pt;}
.wsc_c03310{word-spacing:-13.445376pt;}
.wsa_c03310{word-spacing:-11.088000pt;}
.ws8_c03310{word-spacing:-11.075328pt;}
.ws9_c03310{word-spacing:-11.037312pt;}
.ws4_c03310{word-spacing:-10.344576pt;}
.ws2_c03310{word-spacing:-10.015104pt;}
.ws11_c03310{word-spacing:-0.963072pt;}
.ws10_c03310{word-spacing:-0.958848pt;}
.wsd_c03310{word-spacing:-0.865920pt;}
.ws14_c03310{word-spacing:-0.639744pt;}
.wsf_c03310{word-spacing:-0.105600pt;}
.ws12_c03310{word-spacing:-0.088704pt;}
.ws13_c03310{word-spacing:-0.076032pt;}
.wse_c03310{word-spacing:0.000000pt;}
.wsb_c03310{word-spacing:29.600256pt;}
.ws6_c03310{word-spacing:32.659968pt;}
.ws1_c03310{word-spacing:33.563904pt;}
.ws0_c03310{word-spacing:33.796224pt;}
.ws3_c03310{word-spacing:34.860672pt;}
.ws5_c03310{word-spacing:35.468928pt;}
.ws7_c03310{word-spacing:37.357056pt;}
._0_c03310{margin-left:-1.731840pt;}
._2_c03310{width:1.317888pt;}
._4_c03310{width:5.111040pt;}
._1_c03310{width:44.668800pt;}
._3_c03310{width:45.805056pt;}
.fs0_c03310{font-size:42.240000pt;}
.fs1_c03310{font-size:53.760000pt;}
.y0_c03310{bottom:0.000000pt;}
.y19_c03310{bottom:130.665211pt;}
.y1b_c03310{bottom:165.866875pt;}
.y1a_c03310{bottom:174.507067pt;}
.y18_c03310{bottom:245.225371pt;}
.y17_c03310{bottom:317.225563pt;}
.y15_c03310{bottom:361.386427pt;}
.y11_c03310{bottom:377.386939pt;}
.y16_c03310{bottom:407.786011pt;}
.y14_c03310{bottom:437.226235pt;}
.y13_c03310{bottom:453.226747pt;}
.y10_c03310{bottom:482.666971pt;}
.y12_c03310{bottom:497.386555pt;}
.yf_c03310{bottom:513.387067pt;}
.y1c_c03310{bottom:546.027067pt;}
.yb_c03310{bottom:593.385179pt;}
.yd_c03310{bottom:628.586875pt;}
.yc_c03310{bottom:637.227067pt;}
.ya_c03310{bottom:707.945339pt;}
.y9_c03310{bottom:779.945531pt;}
.y7_c03310{bottom:823.786427pt;}
.y3_c03310{bottom:839.786939pt;}
.y8_c03310{bottom:870.505979pt;}
.y6_c03310{bottom:899.946203pt;}
.y5_c03310{bottom:915.946715pt;}
.y2_c03310{bottom:945.386939pt;}
.y4_c03310{bottom:959.786555pt;}
.y1_c03310{bottom:975.787067pt;}
.ye_c03310{bottom:1008.747067pt;}
.h3_c03310{height:28.916250pt;}
.h1_c03310{height:37.063125pt;}
.h2_c03310{height:37.166250pt;}
.h4_c03310{height:48.581988pt;}
.h0_c03310{height:1122.666667pt;}
.w1_c03310{width:793.333333pt;}
.w0_c03310{width:793.626667pt;}
.x0_c03310{left:0.000000pt;}
.xd_c03310{left:104.000000pt;}
.x8_c03310{left:391.999872pt;}
.x4_c03310{left:396.160512pt;}
.xb_c03310{left:400.960000pt;}
.x7_c03310{left:404.799648pt;}
.x5_c03310{left:410.560128pt;}
.x1_c03310{left:411.840000pt;}
.xa_c03310{left:429.760320pt;}
.x9_c03310{left:437.439552pt;}
.x6_c03310{left:438.400512pt;}
.xc_c03310{left:450.560320pt;}
.x3_c03310{left:455.039904pt;}
.x2_c03310{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03311 {
    display:none;
  }
  .loading-indicator_c03311.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03311 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03311 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03311" -> "#page-container .classname_c03311")
 */
.pf_c03311 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03311 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03311.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03311 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03311 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03311 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03311 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03311 {overflow:visible;}
  }
}
.c_c03311 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03311 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03311:after { /* webkit #35443 */
  content: '';
}
.t_c03311:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03311 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03311 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03311 { /* info for Javascript */
  display:none;
}
.l_c03311 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03311 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03311 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03311:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03311 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03311.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03311.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03311 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03311{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03311;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03311{font-family:ff1_c03311;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03311;src:url('chunks/assets/font_46c5b62c2f46825b23e99a00.woff2')format("woff");}.ff2_c03311{font-family:ff2_c03311;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03311;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03311{font-family:ff3_c03311;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03311{vertical-align:0.000000px;}
.v1_c03311{vertical-align:1.439424px;}
.ls12_c03311{letter-spacing:-0.793584px;}
.ls13_c03311{letter-spacing:-0.736560px;}
.ls7_c03311{letter-spacing:-0.613008px;}
.ls9_c03311{letter-spacing:-0.574992px;}
.lse_c03311{letter-spacing:-0.275616px;}
.ls14_c03311{letter-spacing:-0.270864px;}
.lsc_c03311{letter-spacing:-0.261360px;}
.ls6_c03311{letter-spacing:-0.242352px;}
.ls4_c03311{letter-spacing:-0.118800px;}
.ls11_c03311{letter-spacing:0.000000px;}
.ls1_c03311{letter-spacing:0.006048px;}
.ls5_c03311{letter-spacing:0.128304px;}
.lsb_c03311{letter-spacing:0.508464px;}
.ls10_c03311{letter-spacing:0.514080px;}
.lsd_c03311{letter-spacing:0.536976px;}
.lsa_c03311{letter-spacing:0.579744px;}
.lsf_c03311{letter-spacing:0.594000px;}
.ls8_c03311{letter-spacing:0.598752px;}
.ls3_c03311{letter-spacing:0.613008px;}
.ls0_c03311{letter-spacing:0.717552px;}
.ls2_c03311{letter-spacing:0.722304px;}
.sc__c03311{text-shadow:none;}
.sc0_c03311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03311{-webkit-text-stroke:0px transparent;}
.sc0_c03311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03311{word-spacing:-15.126048px;}
.wsa_c03311{word-spacing:-12.474000px;}
.ws8_c03311{word-spacing:-12.459744px;}
.ws9_c03311{word-spacing:-12.416976px;}
.ws4_c03311{word-spacing:-11.637648px;}
.ws2_c03311{word-spacing:-11.266992px;}
.ws14_c03311{word-spacing:-1.083456px;}
.ws13_c03311{word-spacing:-1.078704px;}
.ws10_c03311{word-spacing:-0.974160px;}
.ws17_c03311{word-spacing:-0.719712px;}
.ws12_c03311{word-spacing:-0.118800px;}
.ws15_c03311{word-spacing:-0.099792px;}
.ws19_c03311{word-spacing:-0.090288px;}
.ws16_c03311{word-spacing:-0.085536px;}
.ws11_c03311{word-spacing:0.000000px;}
.ws18_c03311{word-spacing:0.432432px;}
.wsf_c03311{word-spacing:6.629040px;}
.wsb_c03311{word-spacing:33.300288px;}
.wse_c03311{word-spacing:34.836912px;}
.wsd_c03311{word-spacing:36.143712px;}
.ws6_c03311{word-spacing:36.742464px;}
.ws1_c03311{word-spacing:37.759392px;}
.ws0_c03311{word-spacing:38.020752px;}
.ws3_c03311{word-spacing:39.218256px;}
.ws5_c03311{word-spacing:39.902544px;}
.ws7_c03311{word-spacing:42.026688px;}
._0_c03311{margin-left:-1.948320px;}
._2_c03311{width:1.482624px;}
._4_c03311{width:5.749920px;}
._6_c03311{width:19.982160px;}
._7_c03311{width:23.451120px;}
._5_c03311{width:24.691392px;}
._1_c03311{width:50.252400px;}
._3_c03311{width:51.530688px;}
.fc0_c03311{color:rgb(0,0,0);}
.fs0_c03311{font-size:47.520000px;}
.fs1_c03311{font-size:60.480000px;}
.y0_c03311{bottom:0.000000px;}
.y1a_c03311{bottom:131.878686px;}
.y19_c03311{bottom:146.998362px;}
.y1c_c03311{bottom:186.600234px;}
.y1b_c03311{bottom:196.320450px;}
.y18_c03311{bottom:275.878542px;}
.y17_c03311{bottom:356.878758px;}
.y15_c03311{bottom:406.559730px;}
.y11_c03311{bottom:424.560306px;}
.y16_c03311{bottom:458.759262px;}
.y14_c03311{bottom:491.879514px;}
.y13_c03311{bottom:509.880090px;}
.y10_c03311{bottom:543.000342px;}
.y12_c03311{bottom:559.559874px;}
.yf_c03311{bottom:577.560450px;}
.y1d_c03311{bottom:614.280450px;}
.yb_c03311{bottom:667.558326px;}
.yd_c03311{bottom:707.160234px;}
.yc_c03311{bottom:716.880450px;}
.ya_c03311{bottom:796.438506px;}
.y9_c03311{bottom:877.438722px;}
.y7_c03311{bottom:926.759730px;}
.y3_c03311{bottom:944.760306px;}
.y8_c03311{bottom:979.319226px;}
.y6_c03311{bottom:1012.439478px;}
.y5_c03311{bottom:1030.440054px;}
.y2_c03311{bottom:1063.560306px;}
.y4_c03311{bottom:1079.759874px;}
.y1_c03311{bottom:1097.760450px;}
.ye_c03311{bottom:1134.840450px;}
.h3_c03311{height:32.530781px;}
.h1_c03311{height:41.696016px;}
.h2_c03311{height:41.812031px;}
.h4_c03311{height:54.654737px;}
.h0_c03311{height:1263.000000px;}
.w1_c03311{width:892.500000px;}
.w0_c03311{width:892.830000px;}
.x0_c03311{left:0.000000px;}
.xd_c03311{left:117.000000px;}
.x8_c03311{left:440.999856px;}
.x4_c03311{left:445.680576px;}
.xb_c03311{left:451.080000px;}
.x7_c03311{left:455.399604px;}
.x5_c03311{left:461.880144px;}
.x1_c03311{left:463.320000px;}
.xa_c03311{left:483.480360px;}
.x9_c03311{left:492.119496px;}
.x6_c03311{left:493.200576px;}
.xc_c03311{left:506.880360px;}
.x3_c03311{left:511.919892px;}
.x2_c03311{left:526.679604px;}
.xe_c03311{left:569.880036px;}
@media print{
.v0_c03311{vertical-align:0.000000pt;}
.v1_c03311{vertical-align:1.279488pt;}
.ls12_c03311{letter-spacing:-0.705408pt;}
.ls13_c03311{letter-spacing:-0.654720pt;}
.ls7_c03311{letter-spacing:-0.544896pt;}
.ls9_c03311{letter-spacing:-0.511104pt;}
.lse_c03311{letter-spacing:-0.244992pt;}
.ls14_c03311{letter-spacing:-0.240768pt;}
.lsc_c03311{letter-spacing:-0.232320pt;}
.ls6_c03311{letter-spacing:-0.215424pt;}
.ls4_c03311{letter-spacing:-0.105600pt;}
.ls11_c03311{letter-spacing:0.000000pt;}
.ls1_c03311{letter-spacing:0.005376pt;}
.ls5_c03311{letter-spacing:0.114048pt;}
.lsb_c03311{letter-spacing:0.451968pt;}
.ls10_c03311{letter-spacing:0.456960pt;}
.lsd_c03311{letter-spacing:0.477312pt;}
.lsa_c03311{letter-spacing:0.515328pt;}
.lsf_c03311{letter-spacing:0.528000pt;}
.ls8_c03311{letter-spacing:0.532224pt;}
.ls3_c03311{letter-spacing:0.544896pt;}
.ls0_c03311{letter-spacing:0.637824pt;}
.ls2_c03311{letter-spacing:0.642048pt;}
.wsc_c03311{word-spacing:-13.445376pt;}
.wsa_c03311{word-spacing:-11.088000pt;}
.ws8_c03311{word-spacing:-11.075328pt;}
.ws9_c03311{word-spacing:-11.037312pt;}
.ws4_c03311{word-spacing:-10.344576pt;}
.ws2_c03311{word-spacing:-10.015104pt;}
.ws14_c03311{word-spacing:-0.963072pt;}
.ws13_c03311{word-spacing:-0.958848pt;}
.ws10_c03311{word-spacing:-0.865920pt;}
.ws17_c03311{word-spacing:-0.639744pt;}
.ws12_c03311{word-spacing:-0.105600pt;}
.ws15_c03311{word-spacing:-0.088704pt;}
.ws19_c03311{word-spacing:-0.080256pt;}
.ws16_c03311{word-spacing:-0.076032pt;}
.ws11_c03311{word-spacing:0.000000pt;}
.ws18_c03311{word-spacing:0.384384pt;}
.wsf_c03311{word-spacing:5.892480pt;}
.wsb_c03311{word-spacing:29.600256pt;}
.wse_c03311{word-spacing:30.966144pt;}
.wsd_c03311{word-spacing:32.127744pt;}
.ws6_c03311{word-spacing:32.659968pt;}
.ws1_c03311{word-spacing:33.563904pt;}
.ws0_c03311{word-spacing:33.796224pt;}
.ws3_c03311{word-spacing:34.860672pt;}
.ws5_c03311{word-spacing:35.468928pt;}
.ws7_c03311{word-spacing:37.357056pt;}
._0_c03311{margin-left:-1.731840pt;}
._2_c03311{width:1.317888pt;}
._4_c03311{width:5.111040pt;}
._6_c03311{width:17.761920pt;}
._7_c03311{width:20.845440pt;}
._5_c03311{width:21.947904pt;}
._1_c03311{width:44.668800pt;}
._3_c03311{width:45.805056pt;}
.fs0_c03311{font-size:42.240000pt;}
.fs1_c03311{font-size:53.760000pt;}
.y0_c03311{bottom:0.000000pt;}
.y1a_c03311{bottom:117.225499pt;}
.y19_c03311{bottom:130.665211pt;}
.y1c_c03311{bottom:165.866875pt;}
.y1b_c03311{bottom:174.507067pt;}
.y18_c03311{bottom:245.225371pt;}
.y17_c03311{bottom:317.225563pt;}
.y15_c03311{bottom:361.386427pt;}
.y11_c03311{bottom:377.386939pt;}
.y16_c03311{bottom:407.786011pt;}
.y14_c03311{bottom:437.226235pt;}
.y13_c03311{bottom:453.226747pt;}
.y10_c03311{bottom:482.666971pt;}
.y12_c03311{bottom:497.386555pt;}
.yf_c03311{bottom:513.387067pt;}
.y1d_c03311{bottom:546.027067pt;}
.yb_c03311{bottom:593.385179pt;}
.yd_c03311{bottom:628.586875pt;}
.yc_c03311{bottom:637.227067pt;}
.ya_c03311{bottom:707.945339pt;}
.y9_c03311{bottom:779.945531pt;}
.y7_c03311{bottom:823.786427pt;}
.y3_c03311{bottom:839.786939pt;}
.y8_c03311{bottom:870.505979pt;}
.y6_c03311{bottom:899.946203pt;}
.y5_c03311{bottom:915.946715pt;}
.y2_c03311{bottom:945.386939pt;}
.y4_c03311{bottom:959.786555pt;}
.y1_c03311{bottom:975.787067pt;}
.ye_c03311{bottom:1008.747067pt;}
.h3_c03311{height:28.916250pt;}
.h1_c03311{height:37.063125pt;}
.h2_c03311{height:37.166250pt;}
.h4_c03311{height:48.581988pt;}
.h0_c03311{height:1122.666667pt;}
.w1_c03311{width:793.333333pt;}
.w0_c03311{width:793.626667pt;}
.x0_c03311{left:0.000000pt;}
.xd_c03311{left:104.000000pt;}
.x8_c03311{left:391.999872pt;}
.x4_c03311{left:396.160512pt;}
.xb_c03311{left:400.960000pt;}
.x7_c03311{left:404.799648pt;}
.x5_c03311{left:410.560128pt;}
.x1_c03311{left:411.840000pt;}
.xa_c03311{left:429.760320pt;}
.x9_c03311{left:437.439552pt;}
.x6_c03311{left:438.400512pt;}
.xc_c03311{left:450.560320pt;}
.x3_c03311{left:455.039904pt;}
.x2_c03311{left:468.159648pt;}
.xe_c03311{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03312 {
    display:none;
  }
  .loading-indicator_c03312.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03312 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03312 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03312" -> "#page-container .classname_c03312")
 */
.pf_c03312 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03312 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03312.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03312 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03312 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03312 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03312 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03312 {overflow:visible;}
  }
}
.c_c03312 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03312 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03312:after { /* webkit #35443 */
  content: '';
}
.t_c03312:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03312 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03312 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03312 { /* info for Javascript */
  display:none;
}
.l_c03312 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03312 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03312 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03312:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03312 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03312.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03312.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03312 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03312{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03312;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03312{font-family:ff1_c03312;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03312;src:url('chunks/assets/font_eaba1b454aef0f35c84b6754.woff2')format("woff");}.ff2_c03312{font-family:ff2_c03312;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03312;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03312{font-family:ff3_c03312;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03312{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03312{vertical-align:0.000000px;}
.v1_c03312{vertical-align:1.439424px;}
.lsb_c03312{letter-spacing:-0.793584px;}
.lsf_c03312{letter-spacing:-0.736560px;}
.ls6_c03312{letter-spacing:-0.613008px;}
.ls8_c03312{letter-spacing:-0.574992px;}
.lsc_c03312{letter-spacing:-0.304128px;}
.ls10_c03312{letter-spacing:-0.270864px;}
.lsd_c03312{letter-spacing:-0.261360px;}
.ls5_c03312{letter-spacing:-0.242352px;}
.ls3_c03312{letter-spacing:-0.118800px;}
.ls13_c03312{letter-spacing:0.000000px;}
.ls1_c03312{letter-spacing:0.006048px;}
.ls4_c03312{letter-spacing:0.128304px;}
.lsa_c03312{letter-spacing:0.508464px;}
.ls12_c03312{letter-spacing:0.514080px;}
.lse_c03312{letter-spacing:0.536976px;}
.ls9_c03312{letter-spacing:0.579744px;}
.ls11_c03312{letter-spacing:0.594000px;}
.ls7_c03312{letter-spacing:0.598752px;}
.ls2_c03312{letter-spacing:0.613008px;}
.ls0_c03312{letter-spacing:0.717552px;}
.sc__c03312{text-shadow:none;}
.sc0_c03312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03312{-webkit-text-stroke:0px transparent;}
.sc0_c03312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03312{word-spacing:-15.126048px;}
.wsb_c03312{word-spacing:-12.474000px;}
.ws6_c03312{word-spacing:-12.459744px;}
.ws4_c03312{word-spacing:-11.637648px;}
.ws2_c03312{word-spacing:-11.266992px;}
.ws11_c03312{word-spacing:-1.078704px;}
.wse_c03312{word-spacing:-0.974160px;}
.ws17_c03312{word-spacing:-0.719712px;}
.ws10_c03312{word-spacing:-0.118800px;}
.ws14_c03312{word-spacing:-0.099792px;}
.ws15_c03312{word-spacing:-0.090288px;}
.ws16_c03312{word-spacing:-0.085536px;}
.ws13_c03312{word-spacing:-0.057024px;}
.wsf_c03312{word-spacing:0.000000px;}
.ws12_c03312{word-spacing:0.432432px;}
.wsa_c03312{word-spacing:6.629040px;}
.wsc_c03312{word-spacing:33.300288px;}
.ws9_c03312{word-spacing:34.836912px;}
.ws8_c03312{word-spacing:36.143712px;}
.ws1_c03312{word-spacing:37.759392px;}
.ws0_c03312{word-spacing:38.020752px;}
.ws3_c03312{word-spacing:39.218256px;}
.ws5_c03312{word-spacing:39.902544px;}
.ws7_c03312{word-spacing:42.026688px;}
._0_c03312{margin-left:-1.948320px;}
._2_c03312{width:1.482624px;}
._4_c03312{width:5.749920px;}
._6_c03312{width:19.982160px;}
._7_c03312{width:23.451120px;}
._5_c03312{width:24.691392px;}
._1_c03312{width:50.252400px;}
._3_c03312{width:51.530688px;}
.fc0_c03312{color:rgb(0,0,0);}
.fs0_c03312{font-size:47.520000px;}
.fs1_c03312{font-size:60.480000px;}
.y0_c03312{bottom:0.000000px;}
.y1b_c03312{bottom:131.878686px;}
.y1a_c03312{bottom:146.998362px;}
.y1d_c03312{bottom:186.600234px;}
.y1c_c03312{bottom:196.320450px;}
.y19_c03312{bottom:275.878542px;}
.y18_c03312{bottom:356.878758px;}
.y16_c03312{bottom:406.559730px;}
.y12_c03312{bottom:424.560306px;}
.y17_c03312{bottom:458.759262px;}
.y15_c03312{bottom:491.879514px;}
.y14_c03312{bottom:509.880090px;}
.y11_c03312{bottom:543.000342px;}
.y13_c03312{bottom:559.559874px;}
.y10_c03312{bottom:577.560450px;}
.y1e_c03312{bottom:614.280450px;}
.yc_c03312{bottom:652.438650px;}
.yb_c03312{bottom:667.558326px;}
.ye_c03312{bottom:707.160234px;}
.yd_c03312{bottom:716.880450px;}
.ya_c03312{bottom:796.438506px;}
.y9_c03312{bottom:877.438722px;}
.y7_c03312{bottom:926.759730px;}
.y3_c03312{bottom:944.760306px;}
.y8_c03312{bottom:979.319226px;}
.y6_c03312{bottom:1012.439478px;}
.y5_c03312{bottom:1030.440054px;}
.y2_c03312{bottom:1063.560306px;}
.y4_c03312{bottom:1079.759874px;}
.y1_c03312{bottom:1097.760450px;}
.yf_c03312{bottom:1134.840450px;}
.h3_c03312{height:32.530781px;}
.h1_c03312{height:41.696016px;}
.h2_c03312{height:41.812031px;}
.h4_c03312{height:54.654737px;}
.h0_c03312{height:1263.000000px;}
.w1_c03312{width:892.500000px;}
.w0_c03312{width:892.830000px;}
.x0_c03312{left:0.000000px;}
.xe_c03312{left:117.000000px;}
.x8_c03312{left:440.999856px;}
.x4_c03312{left:445.680576px;}
.xc_c03312{left:451.080000px;}
.x7_c03312{left:455.399604px;}
.x5_c03312{left:461.880144px;}
.x1_c03312{left:463.320000px;}
.xa_c03312{left:483.480360px;}
.x9_c03312{left:492.119496px;}
.x6_c03312{left:493.200576px;}
.xd_c03312{left:506.880360px;}
.x3_c03312{left:511.919892px;}
.x2_c03312{left:526.679604px;}
.xb_c03312{left:569.880036px;}
@media print{
.v0_c03312{vertical-align:0.000000pt;}
.v1_c03312{vertical-align:1.279488pt;}
.lsb_c03312{letter-spacing:-0.705408pt;}
.lsf_c03312{letter-spacing:-0.654720pt;}
.ls6_c03312{letter-spacing:-0.544896pt;}
.ls8_c03312{letter-spacing:-0.511104pt;}
.lsc_c03312{letter-spacing:-0.270336pt;}
.ls10_c03312{letter-spacing:-0.240768pt;}
.lsd_c03312{letter-spacing:-0.232320pt;}
.ls5_c03312{letter-spacing:-0.215424pt;}
.ls3_c03312{letter-spacing:-0.105600pt;}
.ls13_c03312{letter-spacing:0.000000pt;}
.ls1_c03312{letter-spacing:0.005376pt;}
.ls4_c03312{letter-spacing:0.114048pt;}
.lsa_c03312{letter-spacing:0.451968pt;}
.ls12_c03312{letter-spacing:0.456960pt;}
.lse_c03312{letter-spacing:0.477312pt;}
.ls9_c03312{letter-spacing:0.515328pt;}
.ls11_c03312{letter-spacing:0.528000pt;}
.ls7_c03312{letter-spacing:0.532224pt;}
.ls2_c03312{letter-spacing:0.544896pt;}
.ls0_c03312{letter-spacing:0.637824pt;}
.wsd_c03312{word-spacing:-13.445376pt;}
.wsb_c03312{word-spacing:-11.088000pt;}
.ws6_c03312{word-spacing:-11.075328pt;}
.ws4_c03312{word-spacing:-10.344576pt;}
.ws2_c03312{word-spacing:-10.015104pt;}
.ws11_c03312{word-spacing:-0.958848pt;}
.wse_c03312{word-spacing:-0.865920pt;}
.ws17_c03312{word-spacing:-0.639744pt;}
.ws10_c03312{word-spacing:-0.105600pt;}
.ws14_c03312{word-spacing:-0.088704pt;}
.ws15_c03312{word-spacing:-0.080256pt;}
.ws16_c03312{word-spacing:-0.076032pt;}
.ws13_c03312{word-spacing:-0.050688pt;}
.wsf_c03312{word-spacing:0.000000pt;}
.ws12_c03312{word-spacing:0.384384pt;}
.wsa_c03312{word-spacing:5.892480pt;}
.wsc_c03312{word-spacing:29.600256pt;}
.ws9_c03312{word-spacing:30.966144pt;}
.ws8_c03312{word-spacing:32.127744pt;}
.ws1_c03312{word-spacing:33.563904pt;}
.ws0_c03312{word-spacing:33.796224pt;}
.ws3_c03312{word-spacing:34.860672pt;}
.ws5_c03312{word-spacing:35.468928pt;}
.ws7_c03312{word-spacing:37.357056pt;}
._0_c03312{margin-left:-1.731840pt;}
._2_c03312{width:1.317888pt;}
._4_c03312{width:5.111040pt;}
._6_c03312{width:17.761920pt;}
._7_c03312{width:20.845440pt;}
._5_c03312{width:21.947904pt;}
._1_c03312{width:44.668800pt;}
._3_c03312{width:45.805056pt;}
.fs0_c03312{font-size:42.240000pt;}
.fs1_c03312{font-size:53.760000pt;}
.y0_c03312{bottom:0.000000pt;}
.y1b_c03312{bottom:117.225499pt;}
.y1a_c03312{bottom:130.665211pt;}
.y1d_c03312{bottom:165.866875pt;}
.y1c_c03312{bottom:174.507067pt;}
.y19_c03312{bottom:245.225371pt;}
.y18_c03312{bottom:317.225563pt;}
.y16_c03312{bottom:361.386427pt;}
.y12_c03312{bottom:377.386939pt;}
.y17_c03312{bottom:407.786011pt;}
.y15_c03312{bottom:437.226235pt;}
.y14_c03312{bottom:453.226747pt;}
.y11_c03312{bottom:482.666971pt;}
.y13_c03312{bottom:497.386555pt;}
.y10_c03312{bottom:513.387067pt;}
.y1e_c03312{bottom:546.027067pt;}
.yc_c03312{bottom:579.945467pt;}
.yb_c03312{bottom:593.385179pt;}
.ye_c03312{bottom:628.586875pt;}
.yd_c03312{bottom:637.227067pt;}
.ya_c03312{bottom:707.945339pt;}
.y9_c03312{bottom:779.945531pt;}
.y7_c03312{bottom:823.786427pt;}
.y3_c03312{bottom:839.786939pt;}
.y8_c03312{bottom:870.505979pt;}
.y6_c03312{bottom:899.946203pt;}
.y5_c03312{bottom:915.946715pt;}
.y2_c03312{bottom:945.386939pt;}
.y4_c03312{bottom:959.786555pt;}
.y1_c03312{bottom:975.787067pt;}
.yf_c03312{bottom:1008.747067pt;}
.h3_c03312{height:28.916250pt;}
.h1_c03312{height:37.063125pt;}
.h2_c03312{height:37.166250pt;}
.h4_c03312{height:48.581988pt;}
.h0_c03312{height:1122.666667pt;}
.w1_c03312{width:793.333333pt;}
.w0_c03312{width:793.626667pt;}
.x0_c03312{left:0.000000pt;}
.xe_c03312{left:104.000000pt;}
.x8_c03312{left:391.999872pt;}
.x4_c03312{left:396.160512pt;}
.xc_c03312{left:400.960000pt;}
.x7_c03312{left:404.799648pt;}
.x5_c03312{left:410.560128pt;}
.x1_c03312{left:411.840000pt;}
.xa_c03312{left:429.760320pt;}
.x9_c03312{left:437.439552pt;}
.x6_c03312{left:438.400512pt;}
.xd_c03312{left:450.560320pt;}
.x3_c03312{left:455.039904pt;}
.x2_c03312{left:468.159648pt;}
.xb_c03312{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03313 {
    display:none;
  }
  .loading-indicator_c03313.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03313 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03313 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03313" -> "#page-container .classname_c03313")
 */
.pf_c03313 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03313 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03313.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03313 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03313 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03313 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03313 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03313 {overflow:visible;}
  }
}
.c_c03313 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03313 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03313:after { /* webkit #35443 */
  content: '';
}
.t_c03313:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03313 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03313 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03313 { /* info for Javascript */
  display:none;
}
.l_c03313 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03313 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03313 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03313:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03313 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03313.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03313.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03313 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03313{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03313;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03313{font-family:ff1_c03313;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03313;src:url('chunks/assets/font_67d888e0ba502403a9903b9f.woff2')format("woff");}.ff2_c03313{font-family:ff2_c03313;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03313;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03313{font-family:ff3_c03313;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03313{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03313{vertical-align:0.000000px;}
.v1_c03313{vertical-align:1.439424px;}
.ls7_c03313{letter-spacing:-0.613008px;}
.ls9_c03313{letter-spacing:-0.574992px;}
.lse_c03313{letter-spacing:-0.275616px;}
.lsc_c03313{letter-spacing:-0.261360px;}
.ls6_c03313{letter-spacing:-0.242352px;}
.ls4_c03313{letter-spacing:-0.118800px;}
.ls11_c03313{letter-spacing:0.000000px;}
.ls2_c03313{letter-spacing:0.006048px;}
.ls5_c03313{letter-spacing:0.128304px;}
.lsb_c03313{letter-spacing:0.508464px;}
.ls10_c03313{letter-spacing:0.514080px;}
.lsd_c03313{letter-spacing:0.536976px;}
.lsa_c03313{letter-spacing:0.579744px;}
.lsf_c03313{letter-spacing:0.594000px;}
.ls8_c03313{letter-spacing:0.598752px;}
.ls3_c03313{letter-spacing:0.613008px;}
.ls0_c03313{letter-spacing:0.717552px;}
.ls1_c03313{letter-spacing:0.722304px;}
.sc__c03313{text-shadow:none;}
.sc0_c03313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03313{-webkit-text-stroke:0px transparent;}
.sc0_c03313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03313{word-spacing:-15.126048px;}
.wsa_c03313{word-spacing:-12.474000px;}
.ws8_c03313{word-spacing:-12.459744px;}
.ws9_c03313{word-spacing:-12.416976px;}
.ws4_c03313{word-spacing:-11.637648px;}
.ws2_c03313{word-spacing:-11.266992px;}
.ws11_c03313{word-spacing:-1.083456px;}
.ws10_c03313{word-spacing:-1.078704px;}
.wsd_c03313{word-spacing:-0.974160px;}
.ws14_c03313{word-spacing:-0.719712px;}
.wsf_c03313{word-spacing:-0.118800px;}
.ws12_c03313{word-spacing:-0.099792px;}
.ws13_c03313{word-spacing:-0.085536px;}
.wse_c03313{word-spacing:0.000000px;}
.wsb_c03313{word-spacing:33.300288px;}
.ws6_c03313{word-spacing:36.742464px;}
.ws1_c03313{word-spacing:37.759392px;}
.ws0_c03313{word-spacing:38.020752px;}
.ws3_c03313{word-spacing:39.218256px;}
.ws5_c03313{word-spacing:39.902544px;}
.ws7_c03313{word-spacing:42.026688px;}
._0_c03313{margin-left:-1.948320px;}
._2_c03313{width:1.482624px;}
._4_c03313{width:5.749920px;}
._1_c03313{width:50.252400px;}
._3_c03313{width:51.530688px;}
.fc0_c03313{color:rgb(0,0,0);}
.fs0_c03313{font-size:47.520000px;}
.fs1_c03313{font-size:60.480000px;}
.y0_c03313{bottom:0.000000px;}
.y19_c03313{bottom:146.998362px;}
.y1b_c03313{bottom:186.600234px;}
.y1a_c03313{bottom:196.320450px;}
.y18_c03313{bottom:275.878542px;}
.y17_c03313{bottom:356.878758px;}
.y15_c03313{bottom:406.559730px;}
.y11_c03313{bottom:424.560306px;}
.y16_c03313{bottom:458.759262px;}
.y14_c03313{bottom:491.879514px;}
.y13_c03313{bottom:509.880090px;}
.y10_c03313{bottom:543.000342px;}
.y12_c03313{bottom:559.559874px;}
.yf_c03313{bottom:577.560450px;}
.y1c_c03313{bottom:614.280450px;}
.yb_c03313{bottom:667.558326px;}
.yd_c03313{bottom:707.160234px;}
.yc_c03313{bottom:716.880450px;}
.ya_c03313{bottom:796.438506px;}
.y9_c03313{bottom:877.438722px;}
.y7_c03313{bottom:926.759730px;}
.y3_c03313{bottom:944.760306px;}
.y8_c03313{bottom:979.319226px;}
.y6_c03313{bottom:1012.439478px;}
.y5_c03313{bottom:1030.440054px;}
.y2_c03313{bottom:1063.560306px;}
.y4_c03313{bottom:1079.759874px;}
.y1_c03313{bottom:1097.760450px;}
.ye_c03313{bottom:1134.840450px;}
.h3_c03313{height:32.530781px;}
.h1_c03313{height:41.696016px;}
.h2_c03313{height:41.812031px;}
.h4_c03313{height:54.654737px;}
.h0_c03313{height:1263.000000px;}
.w1_c03313{width:892.500000px;}
.w0_c03313{width:892.830000px;}
.x0_c03313{left:0.000000px;}
.xd_c03313{left:117.000000px;}
.x8_c03313{left:440.999856px;}
.x4_c03313{left:445.680576px;}
.xb_c03313{left:451.080000px;}
.x7_c03313{left:455.399604px;}
.x5_c03313{left:461.880144px;}
.x1_c03313{left:463.320000px;}
.xa_c03313{left:483.480360px;}
.x9_c03313{left:492.119496px;}
.x6_c03313{left:493.200576px;}
.xc_c03313{left:506.880360px;}
.x3_c03313{left:511.919892px;}
.x2_c03313{left:526.679604px;}
@media print{
.v0_c03313{vertical-align:0.000000pt;}
.v1_c03313{vertical-align:1.279488pt;}
.ls7_c03313{letter-spacing:-0.544896pt;}
.ls9_c03313{letter-spacing:-0.511104pt;}
.lse_c03313{letter-spacing:-0.244992pt;}
.lsc_c03313{letter-spacing:-0.232320pt;}
.ls6_c03313{letter-spacing:-0.215424pt;}
.ls4_c03313{letter-spacing:-0.105600pt;}
.ls11_c03313{letter-spacing:0.000000pt;}
.ls2_c03313{letter-spacing:0.005376pt;}
.ls5_c03313{letter-spacing:0.114048pt;}
.lsb_c03313{letter-spacing:0.451968pt;}
.ls10_c03313{letter-spacing:0.456960pt;}
.lsd_c03313{letter-spacing:0.477312pt;}
.lsa_c03313{letter-spacing:0.515328pt;}
.lsf_c03313{letter-spacing:0.528000pt;}
.ls8_c03313{letter-spacing:0.532224pt;}
.ls3_c03313{letter-spacing:0.544896pt;}
.ls0_c03313{letter-spacing:0.637824pt;}
.ls1_c03313{letter-spacing:0.642048pt;}
.wsc_c03313{word-spacing:-13.445376pt;}
.wsa_c03313{word-spacing:-11.088000pt;}
.ws8_c03313{word-spacing:-11.075328pt;}
.ws9_c03313{word-spacing:-11.037312pt;}
.ws4_c03313{word-spacing:-10.344576pt;}
.ws2_c03313{word-spacing:-10.015104pt;}
.ws11_c03313{word-spacing:-0.963072pt;}
.ws10_c03313{word-spacing:-0.958848pt;}
.wsd_c03313{word-spacing:-0.865920pt;}
.ws14_c03313{word-spacing:-0.639744pt;}
.wsf_c03313{word-spacing:-0.105600pt;}
.ws12_c03313{word-spacing:-0.088704pt;}
.ws13_c03313{word-spacing:-0.076032pt;}
.wse_c03313{word-spacing:0.000000pt;}
.wsb_c03313{word-spacing:29.600256pt;}
.ws6_c03313{word-spacing:32.659968pt;}
.ws1_c03313{word-spacing:33.563904pt;}
.ws0_c03313{word-spacing:33.796224pt;}
.ws3_c03313{word-spacing:34.860672pt;}
.ws5_c03313{word-spacing:35.468928pt;}
.ws7_c03313{word-spacing:37.357056pt;}
._0_c03313{margin-left:-1.731840pt;}
._2_c03313{width:1.317888pt;}
._4_c03313{width:5.111040pt;}
._1_c03313{width:44.668800pt;}
._3_c03313{width:45.805056pt;}
.fs0_c03313{font-size:42.240000pt;}
.fs1_c03313{font-size:53.760000pt;}
.y0_c03313{bottom:0.000000pt;}
.y19_c03313{bottom:130.665211pt;}
.y1b_c03313{bottom:165.866875pt;}
.y1a_c03313{bottom:174.507067pt;}
.y18_c03313{bottom:245.225371pt;}
.y17_c03313{bottom:317.225563pt;}
.y15_c03313{bottom:361.386427pt;}
.y11_c03313{bottom:377.386939pt;}
.y16_c03313{bottom:407.786011pt;}
.y14_c03313{bottom:437.226235pt;}
.y13_c03313{bottom:453.226747pt;}
.y10_c03313{bottom:482.666971pt;}
.y12_c03313{bottom:497.386555pt;}
.yf_c03313{bottom:513.387067pt;}
.y1c_c03313{bottom:546.027067pt;}
.yb_c03313{bottom:593.385179pt;}
.yd_c03313{bottom:628.586875pt;}
.yc_c03313{bottom:637.227067pt;}
.ya_c03313{bottom:707.945339pt;}
.y9_c03313{bottom:779.945531pt;}
.y7_c03313{bottom:823.786427pt;}
.y3_c03313{bottom:839.786939pt;}
.y8_c03313{bottom:870.505979pt;}
.y6_c03313{bottom:899.946203pt;}
.y5_c03313{bottom:915.946715pt;}
.y2_c03313{bottom:945.386939pt;}
.y4_c03313{bottom:959.786555pt;}
.y1_c03313{bottom:975.787067pt;}
.ye_c03313{bottom:1008.747067pt;}
.h3_c03313{height:28.916250pt;}
.h1_c03313{height:37.063125pt;}
.h2_c03313{height:37.166250pt;}
.h4_c03313{height:48.581988pt;}
.h0_c03313{height:1122.666667pt;}
.w1_c03313{width:793.333333pt;}
.w0_c03313{width:793.626667pt;}
.x0_c03313{left:0.000000pt;}
.xd_c03313{left:104.000000pt;}
.x8_c03313{left:391.999872pt;}
.x4_c03313{left:396.160512pt;}
.xb_c03313{left:400.960000pt;}
.x7_c03313{left:404.799648pt;}
.x5_c03313{left:410.560128pt;}
.x1_c03313{left:411.840000pt;}
.xa_c03313{left:429.760320pt;}
.x9_c03313{left:437.439552pt;}
.x6_c03313{left:438.400512pt;}
.xc_c03313{left:450.560320pt;}
.x3_c03313{left:455.039904pt;}
.x2_c03313{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03314 {
    display:none;
  }
  .loading-indicator_c03314.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03314 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03314 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03314" -> "#page-container .classname_c03314")
 */
.pf_c03314 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03314 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03314.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03314 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03314 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03314 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03314 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03314 {overflow:visible;}
  }
}
.c_c03314 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03314 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03314:after { /* webkit #35443 */
  content: '';
}
.t_c03314:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03314 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03314 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03314 { /* info for Javascript */
  display:none;
}
.l_c03314 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03314 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03314 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03314:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03314 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03314.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03314.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03314 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03314{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03314;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03314{font-family:ff1_c03314;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03314;src:url('chunks/assets/font_24ba272817aeb0a7201377c1.woff2')format("woff");}.ff2_c03314{font-family:ff2_c03314;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03314;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03314{font-family:ff3_c03314;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03314{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03314{vertical-align:0.000000px;}
.v1_c03314{vertical-align:1.439424px;}
.ls12_c03314{letter-spacing:-0.793584px;}
.ls13_c03314{letter-spacing:-0.755568px;}
.ls7_c03314{letter-spacing:-0.613008px;}
.ls9_c03314{letter-spacing:-0.574992px;}
.lse_c03314{letter-spacing:-0.275616px;}
.lsc_c03314{letter-spacing:-0.261360px;}
.ls6_c03314{letter-spacing:-0.242352px;}
.ls4_c03314{letter-spacing:-0.118800px;}
.ls11_c03314{letter-spacing:0.000000px;}
.ls2_c03314{letter-spacing:0.006048px;}
.ls5_c03314{letter-spacing:0.128304px;}
.lsb_c03314{letter-spacing:0.508464px;}
.ls10_c03314{letter-spacing:0.514080px;}
.lsd_c03314{letter-spacing:0.536976px;}
.lsa_c03314{letter-spacing:0.579744px;}
.lsf_c03314{letter-spacing:0.594000px;}
.ls8_c03314{letter-spacing:0.598752px;}
.ls3_c03314{letter-spacing:0.613008px;}
.ls0_c03314{letter-spacing:0.717552px;}
.ls1_c03314{letter-spacing:0.722304px;}
.sc__c03314{text-shadow:none;}
.sc0_c03314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03314{-webkit-text-stroke:0px transparent;}
.sc0_c03314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03314{word-spacing:-15.126048px;}
.wsa_c03314{word-spacing:-12.474000px;}
.ws8_c03314{word-spacing:-12.459744px;}
.ws9_c03314{word-spacing:-12.416976px;}
.ws4_c03314{word-spacing:-11.637648px;}
.ws2_c03314{word-spacing:-11.266992px;}
.ws12_c03314{word-spacing:-1.083456px;}
.ws11_c03314{word-spacing:-1.078704px;}
.wse_c03314{word-spacing:-0.974160px;}
.ws15_c03314{word-spacing:-0.719712px;}
.ws10_c03314{word-spacing:-0.118800px;}
.ws13_c03314{word-spacing:-0.099792px;}
.ws14_c03314{word-spacing:-0.085536px;}
.wsf_c03314{word-spacing:0.000000px;}
.ws17_c03314{word-spacing:0.394416px;}
.ws16_c03314{word-spacing:0.432432px;}
.wsb_c03314{word-spacing:33.300288px;}
.wsd_c03314{word-spacing:36.143712px;}
.ws6_c03314{word-spacing:36.742464px;}
.ws1_c03314{word-spacing:37.759392px;}
.ws0_c03314{word-spacing:38.020752px;}
.ws3_c03314{word-spacing:39.218256px;}
.ws5_c03314{word-spacing:39.902544px;}
.ws7_c03314{word-spacing:42.026688px;}
._0_c03314{margin-left:-1.948320px;}
._2_c03314{width:1.482624px;}
._4_c03314{width:5.749920px;}
._1_c03314{width:50.252400px;}
._3_c03314{width:51.530688px;}
.fc0_c03314{color:rgb(0,0,0);}
.fs0_c03314{font-size:47.520000px;}
.fs1_c03314{font-size:60.480000px;}
.y0_c03314{bottom:0.000000px;}
.y19_c03314{bottom:146.998362px;}
.y1b_c03314{bottom:186.600234px;}
.y1a_c03314{bottom:196.320450px;}
.y18_c03314{bottom:275.878542px;}
.y17_c03314{bottom:356.878758px;}
.y15_c03314{bottom:406.559730px;}
.y11_c03314{bottom:424.560306px;}
.y16_c03314{bottom:458.759262px;}
.y14_c03314{bottom:491.879514px;}
.y13_c03314{bottom:509.880090px;}
.y10_c03314{bottom:543.000342px;}
.y12_c03314{bottom:559.559874px;}
.yf_c03314{bottom:577.560450px;}
.y1c_c03314{bottom:614.280450px;}
.yb_c03314{bottom:667.558326px;}
.yd_c03314{bottom:707.160234px;}
.yc_c03314{bottom:716.880450px;}
.ya_c03314{bottom:796.438506px;}
.y9_c03314{bottom:877.438722px;}
.y7_c03314{bottom:926.759730px;}
.y3_c03314{bottom:944.760306px;}
.y8_c03314{bottom:979.319226px;}
.y6_c03314{bottom:1012.439478px;}
.y5_c03314{bottom:1030.440054px;}
.y2_c03314{bottom:1063.560306px;}
.y4_c03314{bottom:1079.759874px;}
.y1_c03314{bottom:1097.760450px;}
.ye_c03314{bottom:1134.840450px;}
.h3_c03314{height:32.530781px;}
.h1_c03314{height:41.696016px;}
.h2_c03314{height:41.812031px;}
.h4_c03314{height:54.654737px;}
.h0_c03314{height:1263.000000px;}
.w1_c03314{width:892.500000px;}
.w0_c03314{width:892.830000px;}
.x0_c03314{left:0.000000px;}
.xd_c03314{left:117.000000px;}
.x8_c03314{left:440.999856px;}
.x4_c03314{left:445.680576px;}
.xb_c03314{left:451.080000px;}
.x7_c03314{left:455.399604px;}
.x5_c03314{left:461.880144px;}
.x1_c03314{left:463.320000px;}
.xa_c03314{left:483.480360px;}
.x9_c03314{left:492.119496px;}
.x6_c03314{left:493.200576px;}
.xc_c03314{left:506.880360px;}
.x3_c03314{left:511.919892px;}
.x2_c03314{left:526.679604px;}
@media print{
.v0_c03314{vertical-align:0.000000pt;}
.v1_c03314{vertical-align:1.279488pt;}
.ls12_c03314{letter-spacing:-0.705408pt;}
.ls13_c03314{letter-spacing:-0.671616pt;}
.ls7_c03314{letter-spacing:-0.544896pt;}
.ls9_c03314{letter-spacing:-0.511104pt;}
.lse_c03314{letter-spacing:-0.244992pt;}
.lsc_c03314{letter-spacing:-0.232320pt;}
.ls6_c03314{letter-spacing:-0.215424pt;}
.ls4_c03314{letter-spacing:-0.105600pt;}
.ls11_c03314{letter-spacing:0.000000pt;}
.ls2_c03314{letter-spacing:0.005376pt;}
.ls5_c03314{letter-spacing:0.114048pt;}
.lsb_c03314{letter-spacing:0.451968pt;}
.ls10_c03314{letter-spacing:0.456960pt;}
.lsd_c03314{letter-spacing:0.477312pt;}
.lsa_c03314{letter-spacing:0.515328pt;}
.lsf_c03314{letter-spacing:0.528000pt;}
.ls8_c03314{letter-spacing:0.532224pt;}
.ls3_c03314{letter-spacing:0.544896pt;}
.ls0_c03314{letter-spacing:0.637824pt;}
.ls1_c03314{letter-spacing:0.642048pt;}
.wsc_c03314{word-spacing:-13.445376pt;}
.wsa_c03314{word-spacing:-11.088000pt;}
.ws8_c03314{word-spacing:-11.075328pt;}
.ws9_c03314{word-spacing:-11.037312pt;}
.ws4_c03314{word-spacing:-10.344576pt;}
.ws2_c03314{word-spacing:-10.015104pt;}
.ws12_c03314{word-spacing:-0.963072pt;}
.ws11_c03314{word-spacing:-0.958848pt;}
.wse_c03314{word-spacing:-0.865920pt;}
.ws15_c03314{word-spacing:-0.639744pt;}
.ws10_c03314{word-spacing:-0.105600pt;}
.ws13_c03314{word-spacing:-0.088704pt;}
.ws14_c03314{word-spacing:-0.076032pt;}
.wsf_c03314{word-spacing:0.000000pt;}
.ws17_c03314{word-spacing:0.350592pt;}
.ws16_c03314{word-spacing:0.384384pt;}
.wsb_c03314{word-spacing:29.600256pt;}
.wsd_c03314{word-spacing:32.127744pt;}
.ws6_c03314{word-spacing:32.659968pt;}
.ws1_c03314{word-spacing:33.563904pt;}
.ws0_c03314{word-spacing:33.796224pt;}
.ws3_c03314{word-spacing:34.860672pt;}
.ws5_c03314{word-spacing:35.468928pt;}
.ws7_c03314{word-spacing:37.357056pt;}
._0_c03314{margin-left:-1.731840pt;}
._2_c03314{width:1.317888pt;}
._4_c03314{width:5.111040pt;}
._1_c03314{width:44.668800pt;}
._3_c03314{width:45.805056pt;}
.fs0_c03314{font-size:42.240000pt;}
.fs1_c03314{font-size:53.760000pt;}
.y0_c03314{bottom:0.000000pt;}
.y19_c03314{bottom:130.665211pt;}
.y1b_c03314{bottom:165.866875pt;}
.y1a_c03314{bottom:174.507067pt;}
.y18_c03314{bottom:245.225371pt;}
.y17_c03314{bottom:317.225563pt;}
.y15_c03314{bottom:361.386427pt;}
.y11_c03314{bottom:377.386939pt;}
.y16_c03314{bottom:407.786011pt;}
.y14_c03314{bottom:437.226235pt;}
.y13_c03314{bottom:453.226747pt;}
.y10_c03314{bottom:482.666971pt;}
.y12_c03314{bottom:497.386555pt;}
.yf_c03314{bottom:513.387067pt;}
.y1c_c03314{bottom:546.027067pt;}
.yb_c03314{bottom:593.385179pt;}
.yd_c03314{bottom:628.586875pt;}
.yc_c03314{bottom:637.227067pt;}
.ya_c03314{bottom:707.945339pt;}
.y9_c03314{bottom:779.945531pt;}
.y7_c03314{bottom:823.786427pt;}
.y3_c03314{bottom:839.786939pt;}
.y8_c03314{bottom:870.505979pt;}
.y6_c03314{bottom:899.946203pt;}
.y5_c03314{bottom:915.946715pt;}
.y2_c03314{bottom:945.386939pt;}
.y4_c03314{bottom:959.786555pt;}
.y1_c03314{bottom:975.787067pt;}
.ye_c03314{bottom:1008.747067pt;}
.h3_c03314{height:28.916250pt;}
.h1_c03314{height:37.063125pt;}
.h2_c03314{height:37.166250pt;}
.h4_c03314{height:48.581988pt;}
.h0_c03314{height:1122.666667pt;}
.w1_c03314{width:793.333333pt;}
.w0_c03314{width:793.626667pt;}
.x0_c03314{left:0.000000pt;}
.xd_c03314{left:104.000000pt;}
.x8_c03314{left:391.999872pt;}
.x4_c03314{left:396.160512pt;}
.xb_c03314{left:400.960000pt;}
.x7_c03314{left:404.799648pt;}
.x5_c03314{left:410.560128pt;}
.x1_c03314{left:411.840000pt;}
.xa_c03314{left:429.760320pt;}
.x9_c03314{left:437.439552pt;}
.x6_c03314{left:438.400512pt;}
.xc_c03314{left:450.560320pt;}
.x3_c03314{left:455.039904pt;}
.x2_c03314{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03315 {
    display:none;
  }
  .loading-indicator_c03315.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03315 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03315 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03315" -> "#page-container .classname_c03315")
 */
.pf_c03315 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03315 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03315.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03315 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03315 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03315 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03315 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03315 {overflow:visible;}
  }
}
.c_c03315 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03315 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03315:after { /* webkit #35443 */
  content: '';
}
.t_c03315:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03315 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03315 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03315 { /* info for Javascript */
  display:none;
}
.l_c03315 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03315 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03315 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03315:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03315 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03315.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03315.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03315 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03315{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03315;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03315{font-family:ff1_c03315;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03315;src:url('chunks/assets/font_95b7d2051e2c9fde191ea32e.woff2')format("woff");}.ff2_c03315{font-family:ff2_c03315;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03315;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03315{font-family:ff3_c03315;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03315{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03315{vertical-align:0.000000px;}
.v1_c03315{vertical-align:1.439424px;}
.lsc_c03315{letter-spacing:-0.793584px;}
.lsd_c03315{letter-spacing:-0.755568px;}
.ls7_c03315{letter-spacing:-0.613008px;}
.ls9_c03315{letter-spacing:-0.574992px;}
.ls10_c03315{letter-spacing:-0.275616px;}
.lse_c03315{letter-spacing:-0.261360px;}
.ls6_c03315{letter-spacing:-0.242352px;}
.ls4_c03315{letter-spacing:-0.118800px;}
.ls13_c03315{letter-spacing:0.000000px;}
.ls1_c03315{letter-spacing:0.006048px;}
.ls5_c03315{letter-spacing:0.128304px;}
.lsb_c03315{letter-spacing:0.508464px;}
.ls12_c03315{letter-spacing:0.514080px;}
.lsf_c03315{letter-spacing:0.536976px;}
.lsa_c03315{letter-spacing:0.579744px;}
.ls11_c03315{letter-spacing:0.594000px;}
.ls8_c03315{letter-spacing:0.598752px;}
.ls3_c03315{letter-spacing:0.613008px;}
.ls0_c03315{letter-spacing:0.717552px;}
.ls2_c03315{letter-spacing:0.722304px;}
.sc__c03315{text-shadow:none;}
.sc0_c03315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03315{-webkit-text-stroke:0px transparent;}
.sc0_c03315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03315{word-spacing:-15.126048px;}
.wsa_c03315{word-spacing:-12.474000px;}
.ws6_c03315{word-spacing:-12.459744px;}
.ws9_c03315{word-spacing:-12.416976px;}
.ws4_c03315{word-spacing:-11.637648px;}
.ws2_c03315{word-spacing:-11.266992px;}
.ws17_c03315{word-spacing:-1.083456px;}
.ws11_c03315{word-spacing:-1.078704px;}
.wse_c03315{word-spacing:-0.974160px;}
.ws16_c03315{word-spacing:-0.719712px;}
.ws10_c03315{word-spacing:-0.118800px;}
.ws14_c03315{word-spacing:-0.099792px;}
.ws15_c03315{word-spacing:-0.085536px;}
.wsf_c03315{word-spacing:0.000000px;}
.ws13_c03315{word-spacing:0.394416px;}
.ws12_c03315{word-spacing:0.432432px;}
.wsb_c03315{word-spacing:33.300288px;}
.ws8_c03315{word-spacing:36.143712px;}
.wsd_c03315{word-spacing:36.742464px;}
.ws1_c03315{word-spacing:37.759392px;}
.ws0_c03315{word-spacing:38.020752px;}
.ws3_c03315{word-spacing:39.218256px;}
.ws5_c03315{word-spacing:39.902544px;}
.ws7_c03315{word-spacing:42.026688px;}
._0_c03315{margin-left:-1.948320px;}
._2_c03315{width:1.482624px;}
._4_c03315{width:5.749920px;}
._1_c03315{width:50.252400px;}
._3_c03315{width:51.530688px;}
.fc0_c03315{color:rgb(0,0,0);}
.fs0_c03315{font-size:47.520000px;}
.fs1_c03315{font-size:60.480000px;}
.y0_c03315{bottom:0.000000px;}
.y19_c03315{bottom:146.998362px;}
.y1b_c03315{bottom:186.600234px;}
.y1a_c03315{bottom:196.320450px;}
.y18_c03315{bottom:275.878542px;}
.y17_c03315{bottom:356.878758px;}
.y15_c03315{bottom:406.559730px;}
.y11_c03315{bottom:424.560306px;}
.y16_c03315{bottom:458.759262px;}
.y14_c03315{bottom:491.879514px;}
.y13_c03315{bottom:509.880090px;}
.y10_c03315{bottom:543.000342px;}
.y12_c03315{bottom:559.559874px;}
.yf_c03315{bottom:577.560450px;}
.y1c_c03315{bottom:614.280450px;}
.yb_c03315{bottom:667.558326px;}
.yd_c03315{bottom:707.160234px;}
.yc_c03315{bottom:716.880450px;}
.ya_c03315{bottom:796.438506px;}
.y9_c03315{bottom:877.438722px;}
.y7_c03315{bottom:926.759730px;}
.y3_c03315{bottom:944.760306px;}
.y8_c03315{bottom:979.319226px;}
.y6_c03315{bottom:1012.439478px;}
.y5_c03315{bottom:1030.440054px;}
.y2_c03315{bottom:1063.560306px;}
.y4_c03315{bottom:1079.759874px;}
.y1_c03315{bottom:1097.760450px;}
.ye_c03315{bottom:1134.840450px;}
.h3_c03315{height:32.530781px;}
.h1_c03315{height:41.696016px;}
.h2_c03315{height:41.812031px;}
.h4_c03315{height:54.654737px;}
.h0_c03315{height:1263.000000px;}
.w1_c03315{width:892.500000px;}
.w0_c03315{width:892.830000px;}
.x0_c03315{left:0.000000px;}
.xd_c03315{left:117.000000px;}
.x8_c03315{left:440.999856px;}
.x4_c03315{left:445.680576px;}
.xb_c03315{left:451.080000px;}
.x7_c03315{left:455.399604px;}
.x5_c03315{left:461.880144px;}
.x1_c03315{left:463.320000px;}
.xa_c03315{left:483.480360px;}
.x9_c03315{left:492.119496px;}
.x6_c03315{left:493.200576px;}
.xc_c03315{left:506.880360px;}
.x3_c03315{left:511.919892px;}
.x2_c03315{left:526.679604px;}
@media print{
.v0_c03315{vertical-align:0.000000pt;}
.v1_c03315{vertical-align:1.279488pt;}
.lsc_c03315{letter-spacing:-0.705408pt;}
.lsd_c03315{letter-spacing:-0.671616pt;}
.ls7_c03315{letter-spacing:-0.544896pt;}
.ls9_c03315{letter-spacing:-0.511104pt;}
.ls10_c03315{letter-spacing:-0.244992pt;}
.lse_c03315{letter-spacing:-0.232320pt;}
.ls6_c03315{letter-spacing:-0.215424pt;}
.ls4_c03315{letter-spacing:-0.105600pt;}
.ls13_c03315{letter-spacing:0.000000pt;}
.ls1_c03315{letter-spacing:0.005376pt;}
.ls5_c03315{letter-spacing:0.114048pt;}
.lsb_c03315{letter-spacing:0.451968pt;}
.ls12_c03315{letter-spacing:0.456960pt;}
.lsf_c03315{letter-spacing:0.477312pt;}
.lsa_c03315{letter-spacing:0.515328pt;}
.ls11_c03315{letter-spacing:0.528000pt;}
.ls8_c03315{letter-spacing:0.532224pt;}
.ls3_c03315{letter-spacing:0.544896pt;}
.ls0_c03315{letter-spacing:0.637824pt;}
.ls2_c03315{letter-spacing:0.642048pt;}
.wsc_c03315{word-spacing:-13.445376pt;}
.wsa_c03315{word-spacing:-11.088000pt;}
.ws6_c03315{word-spacing:-11.075328pt;}
.ws9_c03315{word-spacing:-11.037312pt;}
.ws4_c03315{word-spacing:-10.344576pt;}
.ws2_c03315{word-spacing:-10.015104pt;}
.ws17_c03315{word-spacing:-0.963072pt;}
.ws11_c03315{word-spacing:-0.958848pt;}
.wse_c03315{word-spacing:-0.865920pt;}
.ws16_c03315{word-spacing:-0.639744pt;}
.ws10_c03315{word-spacing:-0.105600pt;}
.ws14_c03315{word-spacing:-0.088704pt;}
.ws15_c03315{word-spacing:-0.076032pt;}
.wsf_c03315{word-spacing:0.000000pt;}
.ws13_c03315{word-spacing:0.350592pt;}
.ws12_c03315{word-spacing:0.384384pt;}
.wsb_c03315{word-spacing:29.600256pt;}
.ws8_c03315{word-spacing:32.127744pt;}
.wsd_c03315{word-spacing:32.659968pt;}
.ws1_c03315{word-spacing:33.563904pt;}
.ws0_c03315{word-spacing:33.796224pt;}
.ws3_c03315{word-spacing:34.860672pt;}
.ws5_c03315{word-spacing:35.468928pt;}
.ws7_c03315{word-spacing:37.357056pt;}
._0_c03315{margin-left:-1.731840pt;}
._2_c03315{width:1.317888pt;}
._4_c03315{width:5.111040pt;}
._1_c03315{width:44.668800pt;}
._3_c03315{width:45.805056pt;}
.fs0_c03315{font-size:42.240000pt;}
.fs1_c03315{font-size:53.760000pt;}
.y0_c03315{bottom:0.000000pt;}
.y19_c03315{bottom:130.665211pt;}
.y1b_c03315{bottom:165.866875pt;}
.y1a_c03315{bottom:174.507067pt;}
.y18_c03315{bottom:245.225371pt;}
.y17_c03315{bottom:317.225563pt;}
.y15_c03315{bottom:361.386427pt;}
.y11_c03315{bottom:377.386939pt;}
.y16_c03315{bottom:407.786011pt;}
.y14_c03315{bottom:437.226235pt;}
.y13_c03315{bottom:453.226747pt;}
.y10_c03315{bottom:482.666971pt;}
.y12_c03315{bottom:497.386555pt;}
.yf_c03315{bottom:513.387067pt;}
.y1c_c03315{bottom:546.027067pt;}
.yb_c03315{bottom:593.385179pt;}
.yd_c03315{bottom:628.586875pt;}
.yc_c03315{bottom:637.227067pt;}
.ya_c03315{bottom:707.945339pt;}
.y9_c03315{bottom:779.945531pt;}
.y7_c03315{bottom:823.786427pt;}
.y3_c03315{bottom:839.786939pt;}
.y8_c03315{bottom:870.505979pt;}
.y6_c03315{bottom:899.946203pt;}
.y5_c03315{bottom:915.946715pt;}
.y2_c03315{bottom:945.386939pt;}
.y4_c03315{bottom:959.786555pt;}
.y1_c03315{bottom:975.787067pt;}
.ye_c03315{bottom:1008.747067pt;}
.h3_c03315{height:28.916250pt;}
.h1_c03315{height:37.063125pt;}
.h2_c03315{height:37.166250pt;}
.h4_c03315{height:48.581988pt;}
.h0_c03315{height:1122.666667pt;}
.w1_c03315{width:793.333333pt;}
.w0_c03315{width:793.626667pt;}
.x0_c03315{left:0.000000pt;}
.xd_c03315{left:104.000000pt;}
.x8_c03315{left:391.999872pt;}
.x4_c03315{left:396.160512pt;}
.xb_c03315{left:400.960000pt;}
.x7_c03315{left:404.799648pt;}
.x5_c03315{left:410.560128pt;}
.x1_c03315{left:411.840000pt;}
.xa_c03315{left:429.760320pt;}
.x9_c03315{left:437.439552pt;}
.x6_c03315{left:438.400512pt;}
.xc_c03315{left:450.560320pt;}
.x3_c03315{left:455.039904pt;}
.x2_c03315{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03316 {
    display:none;
  }
  .loading-indicator_c03316.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03316 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03316 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03316" -> "#page-container .classname_c03316")
 */
.pf_c03316 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03316 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03316.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03316 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03316 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03316 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03316 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03316 {overflow:visible;}
  }
}
.c_c03316 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03316 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03316:after { /* webkit #35443 */
  content: '';
}
.t_c03316:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03316 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03316 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03316 { /* info for Javascript */
  display:none;
}
.l_c03316 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03316 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03316 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03316:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03316 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03316.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03316.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03316 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03316{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03316;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03316{font-family:ff1_c03316;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03316;src:url('chunks/assets/font_b093fa86833b610d3e0ba125.woff2')format("woff");}.ff2_c03316{font-family:ff2_c03316;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03316;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03316{font-family:ff3_c03316;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03316{vertical-align:0.000000px;}
.v1_c03316{vertical-align:1.439424px;}
.ls7_c03316{letter-spacing:-0.613008px;}
.ls9_c03316{letter-spacing:-0.574992px;}
.lse_c03316{letter-spacing:-0.275616px;}
.lsc_c03316{letter-spacing:-0.261360px;}
.ls6_c03316{letter-spacing:-0.242352px;}
.ls4_c03316{letter-spacing:-0.118800px;}
.ls11_c03316{letter-spacing:0.000000px;}
.ls2_c03316{letter-spacing:0.006048px;}
.ls5_c03316{letter-spacing:0.128304px;}
.lsb_c03316{letter-spacing:0.508464px;}
.ls10_c03316{letter-spacing:0.514080px;}
.lsd_c03316{letter-spacing:0.536976px;}
.lsa_c03316{letter-spacing:0.579744px;}
.lsf_c03316{letter-spacing:0.594000px;}
.ls8_c03316{letter-spacing:0.598752px;}
.ls3_c03316{letter-spacing:0.613008px;}
.ls0_c03316{letter-spacing:0.717552px;}
.ls1_c03316{letter-spacing:0.722304px;}
.sc__c03316{text-shadow:none;}
.sc0_c03316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03316{-webkit-text-stroke:0px transparent;}
.sc0_c03316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03316{word-spacing:-15.126048px;}
.wsa_c03316{word-spacing:-12.474000px;}
.ws8_c03316{word-spacing:-12.459744px;}
.ws9_c03316{word-spacing:-12.416976px;}
.ws4_c03316{word-spacing:-11.637648px;}
.ws2_c03316{word-spacing:-11.266992px;}
.ws11_c03316{word-spacing:-1.083456px;}
.ws10_c03316{word-spacing:-1.078704px;}
.wsd_c03316{word-spacing:-0.974160px;}
.ws14_c03316{word-spacing:-0.719712px;}
.wsf_c03316{word-spacing:-0.118800px;}
.ws12_c03316{word-spacing:-0.099792px;}
.ws13_c03316{word-spacing:-0.085536px;}
.wse_c03316{word-spacing:0.000000px;}
.wsb_c03316{word-spacing:33.300288px;}
.ws6_c03316{word-spacing:36.742464px;}
.ws1_c03316{word-spacing:37.759392px;}
.ws0_c03316{word-spacing:38.020752px;}
.ws3_c03316{word-spacing:39.218256px;}
.ws5_c03316{word-spacing:39.902544px;}
.ws7_c03316{word-spacing:42.026688px;}
._0_c03316{margin-left:-1.948320px;}
._2_c03316{width:1.482624px;}
._4_c03316{width:5.749920px;}
._1_c03316{width:50.252400px;}
._3_c03316{width:51.530688px;}
.fc0_c03316{color:rgb(0,0,0);}
.fs0_c03316{font-size:47.520000px;}
.fs1_c03316{font-size:60.480000px;}
.y0_c03316{bottom:0.000000px;}
.y19_c03316{bottom:146.998362px;}
.y1b_c03316{bottom:186.600234px;}
.y1a_c03316{bottom:196.320450px;}
.y18_c03316{bottom:275.878542px;}
.y17_c03316{bottom:356.878758px;}
.y15_c03316{bottom:406.559730px;}
.y11_c03316{bottom:424.560306px;}
.y16_c03316{bottom:458.759262px;}
.y14_c03316{bottom:491.879514px;}
.y13_c03316{bottom:509.880090px;}
.y10_c03316{bottom:543.000342px;}
.y12_c03316{bottom:559.559874px;}
.yf_c03316{bottom:577.560450px;}
.y1c_c03316{bottom:614.280450px;}
.yb_c03316{bottom:667.558326px;}
.yd_c03316{bottom:707.160234px;}
.yc_c03316{bottom:716.880450px;}
.ya_c03316{bottom:796.438506px;}
.y9_c03316{bottom:877.438722px;}
.y7_c03316{bottom:926.759730px;}
.y3_c03316{bottom:944.760306px;}
.y8_c03316{bottom:979.319226px;}
.y6_c03316{bottom:1012.439478px;}
.y5_c03316{bottom:1030.440054px;}
.y2_c03316{bottom:1063.560306px;}
.y4_c03316{bottom:1079.759874px;}
.y1_c03316{bottom:1097.760450px;}
.ye_c03316{bottom:1134.840450px;}
.h3_c03316{height:32.530781px;}
.h1_c03316{height:41.696016px;}
.h2_c03316{height:41.812031px;}
.h4_c03316{height:54.654737px;}
.h0_c03316{height:1263.000000px;}
.w1_c03316{width:892.500000px;}
.w0_c03316{width:892.830000px;}
.x0_c03316{left:0.000000px;}
.xd_c03316{left:117.000000px;}
.x8_c03316{left:440.999856px;}
.x4_c03316{left:445.680576px;}
.xb_c03316{left:451.080000px;}
.x7_c03316{left:455.399604px;}
.x5_c03316{left:461.880144px;}
.x1_c03316{left:463.320000px;}
.xa_c03316{left:483.480360px;}
.x9_c03316{left:492.119496px;}
.x6_c03316{left:493.200576px;}
.xc_c03316{left:506.880360px;}
.x3_c03316{left:511.919892px;}
.x2_c03316{left:526.679604px;}
@media print{
.v0_c03316{vertical-align:0.000000pt;}
.v1_c03316{vertical-align:1.279488pt;}
.ls7_c03316{letter-spacing:-0.544896pt;}
.ls9_c03316{letter-spacing:-0.511104pt;}
.lse_c03316{letter-spacing:-0.244992pt;}
.lsc_c03316{letter-spacing:-0.232320pt;}
.ls6_c03316{letter-spacing:-0.215424pt;}
.ls4_c03316{letter-spacing:-0.105600pt;}
.ls11_c03316{letter-spacing:0.000000pt;}
.ls2_c03316{letter-spacing:0.005376pt;}
.ls5_c03316{letter-spacing:0.114048pt;}
.lsb_c03316{letter-spacing:0.451968pt;}
.ls10_c03316{letter-spacing:0.456960pt;}
.lsd_c03316{letter-spacing:0.477312pt;}
.lsa_c03316{letter-spacing:0.515328pt;}
.lsf_c03316{letter-spacing:0.528000pt;}
.ls8_c03316{letter-spacing:0.532224pt;}
.ls3_c03316{letter-spacing:0.544896pt;}
.ls0_c03316{letter-spacing:0.637824pt;}
.ls1_c03316{letter-spacing:0.642048pt;}
.wsc_c03316{word-spacing:-13.445376pt;}
.wsa_c03316{word-spacing:-11.088000pt;}
.ws8_c03316{word-spacing:-11.075328pt;}
.ws9_c03316{word-spacing:-11.037312pt;}
.ws4_c03316{word-spacing:-10.344576pt;}
.ws2_c03316{word-spacing:-10.015104pt;}
.ws11_c03316{word-spacing:-0.963072pt;}
.ws10_c03316{word-spacing:-0.958848pt;}
.wsd_c03316{word-spacing:-0.865920pt;}
.ws14_c03316{word-spacing:-0.639744pt;}
.wsf_c03316{word-spacing:-0.105600pt;}
.ws12_c03316{word-spacing:-0.088704pt;}
.ws13_c03316{word-spacing:-0.076032pt;}
.wse_c03316{word-spacing:0.000000pt;}
.wsb_c03316{word-spacing:29.600256pt;}
.ws6_c03316{word-spacing:32.659968pt;}
.ws1_c03316{word-spacing:33.563904pt;}
.ws0_c03316{word-spacing:33.796224pt;}
.ws3_c03316{word-spacing:34.860672pt;}
.ws5_c03316{word-spacing:35.468928pt;}
.ws7_c03316{word-spacing:37.357056pt;}
._0_c03316{margin-left:-1.731840pt;}
._2_c03316{width:1.317888pt;}
._4_c03316{width:5.111040pt;}
._1_c03316{width:44.668800pt;}
._3_c03316{width:45.805056pt;}
.fs0_c03316{font-size:42.240000pt;}
.fs1_c03316{font-size:53.760000pt;}
.y0_c03316{bottom:0.000000pt;}
.y19_c03316{bottom:130.665211pt;}
.y1b_c03316{bottom:165.866875pt;}
.y1a_c03316{bottom:174.507067pt;}
.y18_c03316{bottom:245.225371pt;}
.y17_c03316{bottom:317.225563pt;}
.y15_c03316{bottom:361.386427pt;}
.y11_c03316{bottom:377.386939pt;}
.y16_c03316{bottom:407.786011pt;}
.y14_c03316{bottom:437.226235pt;}
.y13_c03316{bottom:453.226747pt;}
.y10_c03316{bottom:482.666971pt;}
.y12_c03316{bottom:497.386555pt;}
.yf_c03316{bottom:513.387067pt;}
.y1c_c03316{bottom:546.027067pt;}
.yb_c03316{bottom:593.385179pt;}
.yd_c03316{bottom:628.586875pt;}
.yc_c03316{bottom:637.227067pt;}
.ya_c03316{bottom:707.945339pt;}
.y9_c03316{bottom:779.945531pt;}
.y7_c03316{bottom:823.786427pt;}
.y3_c03316{bottom:839.786939pt;}
.y8_c03316{bottom:870.505979pt;}
.y6_c03316{bottom:899.946203pt;}
.y5_c03316{bottom:915.946715pt;}
.y2_c03316{bottom:945.386939pt;}
.y4_c03316{bottom:959.786555pt;}
.y1_c03316{bottom:975.787067pt;}
.ye_c03316{bottom:1008.747067pt;}
.h3_c03316{height:28.916250pt;}
.h1_c03316{height:37.063125pt;}
.h2_c03316{height:37.166250pt;}
.h4_c03316{height:48.581988pt;}
.h0_c03316{height:1122.666667pt;}
.w1_c03316{width:793.333333pt;}
.w0_c03316{width:793.626667pt;}
.x0_c03316{left:0.000000pt;}
.xd_c03316{left:104.000000pt;}
.x8_c03316{left:391.999872pt;}
.x4_c03316{left:396.160512pt;}
.xb_c03316{left:400.960000pt;}
.x7_c03316{left:404.799648pt;}
.x5_c03316{left:410.560128pt;}
.x1_c03316{left:411.840000pt;}
.xa_c03316{left:429.760320pt;}
.x9_c03316{left:437.439552pt;}
.x6_c03316{left:438.400512pt;}
.xc_c03316{left:450.560320pt;}
.x3_c03316{left:455.039904pt;}
.x2_c03316{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03317 {
    display:none;
  }
  .loading-indicator_c03317.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03317 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03317 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03317" -> "#page-container .classname_c03317")
 */
.pf_c03317 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03317 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03317.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03317 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03317 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03317 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03317 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03317 {overflow:visible;}
  }
}
.c_c03317 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03317 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03317:after { /* webkit #35443 */
  content: '';
}
.t_c03317:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03317 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03317 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03317 { /* info for Javascript */
  display:none;
}
.l_c03317 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03317 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03317 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03317:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03317 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03317.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03317.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03317 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03317{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03317;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03317{font-family:ff1_c03317;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03317;src:url('chunks/assets/font_2c1a1ddc6cef0f3549e34e7b.woff2')format("woff");}.ff2_c03317{font-family:ff2_c03317;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03317;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03317{font-family:ff3_c03317;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03317{vertical-align:0.000000px;}
.v1_c03317{vertical-align:1.439424px;}
.ls7_c03317{letter-spacing:-0.613008px;}
.ls9_c03317{letter-spacing:-0.574992px;}
.lse_c03317{letter-spacing:-0.275616px;}
.lsc_c03317{letter-spacing:-0.261360px;}
.ls6_c03317{letter-spacing:-0.242352px;}
.ls4_c03317{letter-spacing:-0.118800px;}
.ls11_c03317{letter-spacing:0.000000px;}
.ls1_c03317{letter-spacing:0.006048px;}
.ls5_c03317{letter-spacing:0.128304px;}
.lsb_c03317{letter-spacing:0.508464px;}
.ls10_c03317{letter-spacing:0.514080px;}
.lsd_c03317{letter-spacing:0.536976px;}
.lsa_c03317{letter-spacing:0.579744px;}
.lsf_c03317{letter-spacing:0.594000px;}
.ls8_c03317{letter-spacing:0.598752px;}
.ls3_c03317{letter-spacing:0.613008px;}
.ls0_c03317{letter-spacing:0.717552px;}
.ls2_c03317{letter-spacing:0.722304px;}
.sc__c03317{text-shadow:none;}
.sc0_c03317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03317{-webkit-text-stroke:0px transparent;}
.sc0_c03317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03317{word-spacing:-15.126048px;}
.wsa_c03317{word-spacing:-12.474000px;}
.ws8_c03317{word-spacing:-12.459744px;}
.ws9_c03317{word-spacing:-12.416976px;}
.ws4_c03317{word-spacing:-11.637648px;}
.ws2_c03317{word-spacing:-11.266992px;}
.ws11_c03317{word-spacing:-1.083456px;}
.ws10_c03317{word-spacing:-1.078704px;}
.wsd_c03317{word-spacing:-0.974160px;}
.ws14_c03317{word-spacing:-0.719712px;}
.wsf_c03317{word-spacing:-0.118800px;}
.ws12_c03317{word-spacing:-0.099792px;}
.ws13_c03317{word-spacing:-0.085536px;}
.wse_c03317{word-spacing:0.000000px;}
.wsb_c03317{word-spacing:33.300288px;}
.ws6_c03317{word-spacing:36.742464px;}
.ws1_c03317{word-spacing:37.759392px;}
.ws0_c03317{word-spacing:38.020752px;}
.ws3_c03317{word-spacing:39.218256px;}
.ws5_c03317{word-spacing:39.902544px;}
.ws7_c03317{word-spacing:42.026688px;}
._0_c03317{margin-left:-1.948320px;}
._2_c03317{width:1.482624px;}
._4_c03317{width:5.749920px;}
._1_c03317{width:50.252400px;}
._3_c03317{width:51.530688px;}
.fc0_c03317{color:rgb(0,0,0);}
.fs0_c03317{font-size:47.520000px;}
.fs1_c03317{font-size:60.480000px;}
.y0_c03317{bottom:0.000000px;}
.y19_c03317{bottom:146.998362px;}
.y1b_c03317{bottom:186.600234px;}
.y1a_c03317{bottom:196.320450px;}
.y18_c03317{bottom:275.878542px;}
.y17_c03317{bottom:356.878758px;}
.y15_c03317{bottom:406.559730px;}
.y11_c03317{bottom:424.560306px;}
.y16_c03317{bottom:458.759262px;}
.y14_c03317{bottom:491.879514px;}
.y13_c03317{bottom:509.880090px;}
.y10_c03317{bottom:543.000342px;}
.y12_c03317{bottom:559.559874px;}
.yf_c03317{bottom:577.560450px;}
.y1c_c03317{bottom:614.280450px;}
.yb_c03317{bottom:667.558326px;}
.yd_c03317{bottom:707.160234px;}
.yc_c03317{bottom:716.880450px;}
.ya_c03317{bottom:796.438506px;}
.y9_c03317{bottom:877.438722px;}
.y7_c03317{bottom:926.759730px;}
.y3_c03317{bottom:944.760306px;}
.y8_c03317{bottom:979.319226px;}
.y6_c03317{bottom:1012.439478px;}
.y5_c03317{bottom:1030.440054px;}
.y2_c03317{bottom:1063.560306px;}
.y4_c03317{bottom:1079.759874px;}
.y1_c03317{bottom:1097.760450px;}
.ye_c03317{bottom:1134.840450px;}
.h3_c03317{height:32.530781px;}
.h1_c03317{height:41.696016px;}
.h2_c03317{height:41.812031px;}
.h4_c03317{height:54.654737px;}
.h0_c03317{height:1263.000000px;}
.w1_c03317{width:892.500000px;}
.w0_c03317{width:892.830000px;}
.x0_c03317{left:0.000000px;}
.xd_c03317{left:117.000000px;}
.x8_c03317{left:440.999856px;}
.x4_c03317{left:445.680576px;}
.xb_c03317{left:451.080000px;}
.x7_c03317{left:455.399604px;}
.x5_c03317{left:461.880144px;}
.x1_c03317{left:463.320000px;}
.xa_c03317{left:483.480360px;}
.x9_c03317{left:492.119496px;}
.x6_c03317{left:493.200576px;}
.xc_c03317{left:506.880360px;}
.x3_c03317{left:511.919892px;}
.x2_c03317{left:526.679604px;}
@media print{
.v0_c03317{vertical-align:0.000000pt;}
.v1_c03317{vertical-align:1.279488pt;}
.ls7_c03317{letter-spacing:-0.544896pt;}
.ls9_c03317{letter-spacing:-0.511104pt;}
.lse_c03317{letter-spacing:-0.244992pt;}
.lsc_c03317{letter-spacing:-0.232320pt;}
.ls6_c03317{letter-spacing:-0.215424pt;}
.ls4_c03317{letter-spacing:-0.105600pt;}
.ls11_c03317{letter-spacing:0.000000pt;}
.ls1_c03317{letter-spacing:0.005376pt;}
.ls5_c03317{letter-spacing:0.114048pt;}
.lsb_c03317{letter-spacing:0.451968pt;}
.ls10_c03317{letter-spacing:0.456960pt;}
.lsd_c03317{letter-spacing:0.477312pt;}
.lsa_c03317{letter-spacing:0.515328pt;}
.lsf_c03317{letter-spacing:0.528000pt;}
.ls8_c03317{letter-spacing:0.532224pt;}
.ls3_c03317{letter-spacing:0.544896pt;}
.ls0_c03317{letter-spacing:0.637824pt;}
.ls2_c03317{letter-spacing:0.642048pt;}
.wsc_c03317{word-spacing:-13.445376pt;}
.wsa_c03317{word-spacing:-11.088000pt;}
.ws8_c03317{word-spacing:-11.075328pt;}
.ws9_c03317{word-spacing:-11.037312pt;}
.ws4_c03317{word-spacing:-10.344576pt;}
.ws2_c03317{word-spacing:-10.015104pt;}
.ws11_c03317{word-spacing:-0.963072pt;}
.ws10_c03317{word-spacing:-0.958848pt;}
.wsd_c03317{word-spacing:-0.865920pt;}
.ws14_c03317{word-spacing:-0.639744pt;}
.wsf_c03317{word-spacing:-0.105600pt;}
.ws12_c03317{word-spacing:-0.088704pt;}
.ws13_c03317{word-spacing:-0.076032pt;}
.wse_c03317{word-spacing:0.000000pt;}
.wsb_c03317{word-spacing:29.600256pt;}
.ws6_c03317{word-spacing:32.659968pt;}
.ws1_c03317{word-spacing:33.563904pt;}
.ws0_c03317{word-spacing:33.796224pt;}
.ws3_c03317{word-spacing:34.860672pt;}
.ws5_c03317{word-spacing:35.468928pt;}
.ws7_c03317{word-spacing:37.357056pt;}
._0_c03317{margin-left:-1.731840pt;}
._2_c03317{width:1.317888pt;}
._4_c03317{width:5.111040pt;}
._1_c03317{width:44.668800pt;}
._3_c03317{width:45.805056pt;}
.fs0_c03317{font-size:42.240000pt;}
.fs1_c03317{font-size:53.760000pt;}
.y0_c03317{bottom:0.000000pt;}
.y19_c03317{bottom:130.665211pt;}
.y1b_c03317{bottom:165.866875pt;}
.y1a_c03317{bottom:174.507067pt;}
.y18_c03317{bottom:245.225371pt;}
.y17_c03317{bottom:317.225563pt;}
.y15_c03317{bottom:361.386427pt;}
.y11_c03317{bottom:377.386939pt;}
.y16_c03317{bottom:407.786011pt;}
.y14_c03317{bottom:437.226235pt;}
.y13_c03317{bottom:453.226747pt;}
.y10_c03317{bottom:482.666971pt;}
.y12_c03317{bottom:497.386555pt;}
.yf_c03317{bottom:513.387067pt;}
.y1c_c03317{bottom:546.027067pt;}
.yb_c03317{bottom:593.385179pt;}
.yd_c03317{bottom:628.586875pt;}
.yc_c03317{bottom:637.227067pt;}
.ya_c03317{bottom:707.945339pt;}
.y9_c03317{bottom:779.945531pt;}
.y7_c03317{bottom:823.786427pt;}
.y3_c03317{bottom:839.786939pt;}
.y8_c03317{bottom:870.505979pt;}
.y6_c03317{bottom:899.946203pt;}
.y5_c03317{bottom:915.946715pt;}
.y2_c03317{bottom:945.386939pt;}
.y4_c03317{bottom:959.786555pt;}
.y1_c03317{bottom:975.787067pt;}
.ye_c03317{bottom:1008.747067pt;}
.h3_c03317{height:28.916250pt;}
.h1_c03317{height:37.063125pt;}
.h2_c03317{height:37.166250pt;}
.h4_c03317{height:48.581988pt;}
.h0_c03317{height:1122.666667pt;}
.w1_c03317{width:793.333333pt;}
.w0_c03317{width:793.626667pt;}
.x0_c03317{left:0.000000pt;}
.xd_c03317{left:104.000000pt;}
.x8_c03317{left:391.999872pt;}
.x4_c03317{left:396.160512pt;}
.xb_c03317{left:400.960000pt;}
.x7_c03317{left:404.799648pt;}
.x5_c03317{left:410.560128pt;}
.x1_c03317{left:411.840000pt;}
.xa_c03317{left:429.760320pt;}
.x9_c03317{left:437.439552pt;}
.x6_c03317{left:438.400512pt;}
.xc_c03317{left:450.560320pt;}
.x3_c03317{left:455.039904pt;}
.x2_c03317{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03318 {
    display:none;
  }
  .loading-indicator_c03318.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03318 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03318 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03318" -> "#page-container .classname_c03318")
 */
.pf_c03318 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03318 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03318.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03318 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03318 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03318 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03318 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03318 {overflow:visible;}
  }
}
.c_c03318 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03318 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03318:after { /* webkit #35443 */
  content: '';
}
.t_c03318:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03318 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03318 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03318 { /* info for Javascript */
  display:none;
}
.l_c03318 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03318 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03318 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03318:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03318 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03318.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03318.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03318 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03318{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03318;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03318{font-family:ff1_c03318;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03318;src:url('chunks/assets/font_3b2218f42db7156466e24362.woff2')format("woff");}.ff2_c03318{font-family:ff2_c03318;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03318;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03318{font-family:ff3_c03318;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03318{vertical-align:0.000000px;}
.v1_c03318{vertical-align:1.439424px;}
.ls7_c03318{letter-spacing:-0.613008px;}
.ls9_c03318{letter-spacing:-0.574992px;}
.lse_c03318{letter-spacing:-0.275616px;}
.lsc_c03318{letter-spacing:-0.261360px;}
.ls6_c03318{letter-spacing:-0.242352px;}
.ls4_c03318{letter-spacing:-0.118800px;}
.ls11_c03318{letter-spacing:0.000000px;}
.ls2_c03318{letter-spacing:0.006048px;}
.ls5_c03318{letter-spacing:0.128304px;}
.lsb_c03318{letter-spacing:0.508464px;}
.ls10_c03318{letter-spacing:0.514080px;}
.lsd_c03318{letter-spacing:0.536976px;}
.lsa_c03318{letter-spacing:0.579744px;}
.lsf_c03318{letter-spacing:0.594000px;}
.ls8_c03318{letter-spacing:0.598752px;}
.ls3_c03318{letter-spacing:0.613008px;}
.ls0_c03318{letter-spacing:0.717552px;}
.ls1_c03318{letter-spacing:0.722304px;}
.sc__c03318{text-shadow:none;}
.sc0_c03318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03318{-webkit-text-stroke:0px transparent;}
.sc0_c03318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03318{word-spacing:-15.126048px;}
.wsa_c03318{word-spacing:-12.474000px;}
.ws8_c03318{word-spacing:-12.459744px;}
.ws9_c03318{word-spacing:-12.416976px;}
.ws4_c03318{word-spacing:-11.637648px;}
.ws2_c03318{word-spacing:-11.266992px;}
.ws11_c03318{word-spacing:-1.083456px;}
.ws10_c03318{word-spacing:-1.078704px;}
.wsd_c03318{word-spacing:-0.974160px;}
.ws14_c03318{word-spacing:-0.719712px;}
.wsf_c03318{word-spacing:-0.118800px;}
.ws12_c03318{word-spacing:-0.099792px;}
.ws13_c03318{word-spacing:-0.085536px;}
.wse_c03318{word-spacing:0.000000px;}
.wsb_c03318{word-spacing:33.300288px;}
.ws6_c03318{word-spacing:36.742464px;}
.ws1_c03318{word-spacing:37.759392px;}
.ws0_c03318{word-spacing:38.020752px;}
.ws3_c03318{word-spacing:39.218256px;}
.ws5_c03318{word-spacing:39.902544px;}
.ws7_c03318{word-spacing:42.026688px;}
._0_c03318{margin-left:-1.948320px;}
._2_c03318{width:1.482624px;}
._4_c03318{width:5.749920px;}
._1_c03318{width:50.252400px;}
._3_c03318{width:51.530688px;}
.fc0_c03318{color:rgb(0,0,0);}
.fs0_c03318{font-size:47.520000px;}
.fs1_c03318{font-size:60.480000px;}
.y0_c03318{bottom:0.000000px;}
.y19_c03318{bottom:146.998362px;}
.y1b_c03318{bottom:186.600234px;}
.y1a_c03318{bottom:196.320450px;}
.y18_c03318{bottom:275.878542px;}
.y17_c03318{bottom:356.878758px;}
.y15_c03318{bottom:406.559730px;}
.y11_c03318{bottom:424.560306px;}
.y16_c03318{bottom:458.759262px;}
.y14_c03318{bottom:491.879514px;}
.y13_c03318{bottom:509.880090px;}
.y10_c03318{bottom:543.000342px;}
.y12_c03318{bottom:559.559874px;}
.yf_c03318{bottom:577.560450px;}
.y1c_c03318{bottom:614.280450px;}
.yb_c03318{bottom:667.558326px;}
.yd_c03318{bottom:707.160234px;}
.yc_c03318{bottom:716.880450px;}
.ya_c03318{bottom:796.438506px;}
.y9_c03318{bottom:877.438722px;}
.y7_c03318{bottom:926.759730px;}
.y3_c03318{bottom:944.760306px;}
.y8_c03318{bottom:979.319226px;}
.y6_c03318{bottom:1012.439478px;}
.y5_c03318{bottom:1030.440054px;}
.y2_c03318{bottom:1063.560306px;}
.y4_c03318{bottom:1079.759874px;}
.y1_c03318{bottom:1097.760450px;}
.ye_c03318{bottom:1134.840450px;}
.h3_c03318{height:32.530781px;}
.h1_c03318{height:41.696016px;}
.h2_c03318{height:41.812031px;}
.h4_c03318{height:54.654737px;}
.h0_c03318{height:1263.000000px;}
.w1_c03318{width:892.500000px;}
.w0_c03318{width:892.830000px;}
.x0_c03318{left:0.000000px;}
.xd_c03318{left:117.000000px;}
.x8_c03318{left:440.999856px;}
.x4_c03318{left:445.680576px;}
.xb_c03318{left:451.080000px;}
.x7_c03318{left:455.399604px;}
.x5_c03318{left:461.880144px;}
.x1_c03318{left:463.320000px;}
.xa_c03318{left:483.480360px;}
.x9_c03318{left:492.119496px;}
.x6_c03318{left:493.200576px;}
.xc_c03318{left:506.880360px;}
.x3_c03318{left:511.919892px;}
.x2_c03318{left:526.679604px;}
@media print{
.v0_c03318{vertical-align:0.000000pt;}
.v1_c03318{vertical-align:1.279488pt;}
.ls7_c03318{letter-spacing:-0.544896pt;}
.ls9_c03318{letter-spacing:-0.511104pt;}
.lse_c03318{letter-spacing:-0.244992pt;}
.lsc_c03318{letter-spacing:-0.232320pt;}
.ls6_c03318{letter-spacing:-0.215424pt;}
.ls4_c03318{letter-spacing:-0.105600pt;}
.ls11_c03318{letter-spacing:0.000000pt;}
.ls2_c03318{letter-spacing:0.005376pt;}
.ls5_c03318{letter-spacing:0.114048pt;}
.lsb_c03318{letter-spacing:0.451968pt;}
.ls10_c03318{letter-spacing:0.456960pt;}
.lsd_c03318{letter-spacing:0.477312pt;}
.lsa_c03318{letter-spacing:0.515328pt;}
.lsf_c03318{letter-spacing:0.528000pt;}
.ls8_c03318{letter-spacing:0.532224pt;}
.ls3_c03318{letter-spacing:0.544896pt;}
.ls0_c03318{letter-spacing:0.637824pt;}
.ls1_c03318{letter-spacing:0.642048pt;}
.wsc_c03318{word-spacing:-13.445376pt;}
.wsa_c03318{word-spacing:-11.088000pt;}
.ws8_c03318{word-spacing:-11.075328pt;}
.ws9_c03318{word-spacing:-11.037312pt;}
.ws4_c03318{word-spacing:-10.344576pt;}
.ws2_c03318{word-spacing:-10.015104pt;}
.ws11_c03318{word-spacing:-0.963072pt;}
.ws10_c03318{word-spacing:-0.958848pt;}
.wsd_c03318{word-spacing:-0.865920pt;}
.ws14_c03318{word-spacing:-0.639744pt;}
.wsf_c03318{word-spacing:-0.105600pt;}
.ws12_c03318{word-spacing:-0.088704pt;}
.ws13_c03318{word-spacing:-0.076032pt;}
.wse_c03318{word-spacing:0.000000pt;}
.wsb_c03318{word-spacing:29.600256pt;}
.ws6_c03318{word-spacing:32.659968pt;}
.ws1_c03318{word-spacing:33.563904pt;}
.ws0_c03318{word-spacing:33.796224pt;}
.ws3_c03318{word-spacing:34.860672pt;}
.ws5_c03318{word-spacing:35.468928pt;}
.ws7_c03318{word-spacing:37.357056pt;}
._0_c03318{margin-left:-1.731840pt;}
._2_c03318{width:1.317888pt;}
._4_c03318{width:5.111040pt;}
._1_c03318{width:44.668800pt;}
._3_c03318{width:45.805056pt;}
.fs0_c03318{font-size:42.240000pt;}
.fs1_c03318{font-size:53.760000pt;}
.y0_c03318{bottom:0.000000pt;}
.y19_c03318{bottom:130.665211pt;}
.y1b_c03318{bottom:165.866875pt;}
.y1a_c03318{bottom:174.507067pt;}
.y18_c03318{bottom:245.225371pt;}
.y17_c03318{bottom:317.225563pt;}
.y15_c03318{bottom:361.386427pt;}
.y11_c03318{bottom:377.386939pt;}
.y16_c03318{bottom:407.786011pt;}
.y14_c03318{bottom:437.226235pt;}
.y13_c03318{bottom:453.226747pt;}
.y10_c03318{bottom:482.666971pt;}
.y12_c03318{bottom:497.386555pt;}
.yf_c03318{bottom:513.387067pt;}
.y1c_c03318{bottom:546.027067pt;}
.yb_c03318{bottom:593.385179pt;}
.yd_c03318{bottom:628.586875pt;}
.yc_c03318{bottom:637.227067pt;}
.ya_c03318{bottom:707.945339pt;}
.y9_c03318{bottom:779.945531pt;}
.y7_c03318{bottom:823.786427pt;}
.y3_c03318{bottom:839.786939pt;}
.y8_c03318{bottom:870.505979pt;}
.y6_c03318{bottom:899.946203pt;}
.y5_c03318{bottom:915.946715pt;}
.y2_c03318{bottom:945.386939pt;}
.y4_c03318{bottom:959.786555pt;}
.y1_c03318{bottom:975.787067pt;}
.ye_c03318{bottom:1008.747067pt;}
.h3_c03318{height:28.916250pt;}
.h1_c03318{height:37.063125pt;}
.h2_c03318{height:37.166250pt;}
.h4_c03318{height:48.581988pt;}
.h0_c03318{height:1122.666667pt;}
.w1_c03318{width:793.333333pt;}
.w0_c03318{width:793.626667pt;}
.x0_c03318{left:0.000000pt;}
.xd_c03318{left:104.000000pt;}
.x8_c03318{left:391.999872pt;}
.x4_c03318{left:396.160512pt;}
.xb_c03318{left:400.960000pt;}
.x7_c03318{left:404.799648pt;}
.x5_c03318{left:410.560128pt;}
.x1_c03318{left:411.840000pt;}
.xa_c03318{left:429.760320pt;}
.x9_c03318{left:437.439552pt;}
.x6_c03318{left:438.400512pt;}
.xc_c03318{left:450.560320pt;}
.x3_c03318{left:455.039904pt;}
.x2_c03318{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03319 {
    display:none;
  }
  .loading-indicator_c03319.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03319 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03319 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03319" -> "#page-container .classname_c03319")
 */
.pf_c03319 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03319 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03319.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03319 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03319 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03319 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03319 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03319 {overflow:visible;}
  }
}
.c_c03319 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03319 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03319:after { /* webkit #35443 */
  content: '';
}
.t_c03319:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03319 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03319 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03319 { /* info for Javascript */
  display:none;
}
.l_c03319 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03319 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03319 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03319:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03319 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03319.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03319.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03319 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03319{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03319;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03319{font-family:ff1_c03319;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03319;src:url('chunks/assets/font_46a5807e9e4e0b8fd3b155e1.woff2')format("woff");}.ff2_c03319{font-family:ff2_c03319;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03319;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03319{font-family:ff3_c03319;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03319{vertical-align:0.000000px;}
.v1_c03319{vertical-align:1.439424px;}
.lsc_c03319{letter-spacing:-0.793584px;}
.lsf_c03319{letter-spacing:-0.736560px;}
.ls7_c03319{letter-spacing:-0.613008px;}
.ls9_c03319{letter-spacing:-0.574992px;}
.ls14_c03319{letter-spacing:-0.275616px;}
.ls10_c03319{letter-spacing:-0.270864px;}
.lsd_c03319{letter-spacing:-0.261360px;}
.ls6_c03319{letter-spacing:-0.242352px;}
.ls4_c03319{letter-spacing:-0.118800px;}
.ls13_c03319{letter-spacing:0.000000px;}
.ls1_c03319{letter-spacing:0.006048px;}
.ls5_c03319{letter-spacing:0.128304px;}
.lsb_c03319{letter-spacing:0.508464px;}
.ls12_c03319{letter-spacing:0.514080px;}
.lse_c03319{letter-spacing:0.536976px;}
.lsa_c03319{letter-spacing:0.579744px;}
.ls11_c03319{letter-spacing:0.594000px;}
.ls8_c03319{letter-spacing:0.598752px;}
.ls3_c03319{letter-spacing:0.613008px;}
.ls0_c03319{letter-spacing:0.717552px;}
.ls2_c03319{letter-spacing:0.722304px;}
.sc__c03319{text-shadow:none;}
.sc0_c03319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03319{-webkit-text-stroke:0px transparent;}
.sc0_c03319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03319{word-spacing:-15.126048px;}
.wsa_c03319{word-spacing:-12.474000px;}
.ws6_c03319{word-spacing:-12.459744px;}
.wse_c03319{word-spacing:-12.416976px;}
.ws4_c03319{word-spacing:-11.637648px;}
.ws2_c03319{word-spacing:-11.266992px;}
.ws18_c03319{word-spacing:-1.083456px;}
.ws12_c03319{word-spacing:-1.078704px;}
.wsf_c03319{word-spacing:-0.974160px;}
.ws17_c03319{word-spacing:-0.719712px;}
.ws11_c03319{word-spacing:-0.118800px;}
.ws14_c03319{word-spacing:-0.099792px;}
.ws15_c03319{word-spacing:-0.090288px;}
.ws16_c03319{word-spacing:-0.085536px;}
.ws10_c03319{word-spacing:0.000000px;}
.ws13_c03319{word-spacing:0.432432px;}
.ws9_c03319{word-spacing:6.629040px;}
.wsb_c03319{word-spacing:33.300288px;}
.ws8_c03319{word-spacing:34.836912px;}
.wsd_c03319{word-spacing:36.742464px;}
.ws1_c03319{word-spacing:37.759392px;}
.ws0_c03319{word-spacing:38.020752px;}
.ws3_c03319{word-spacing:39.218256px;}
.ws5_c03319{word-spacing:39.902544px;}
.ws7_c03319{word-spacing:42.026688px;}
._0_c03319{margin-left:-1.948320px;}
._2_c03319{width:1.482624px;}
._4_c03319{width:5.749920px;}
._6_c03319{width:19.982160px;}
._7_c03319{width:23.451120px;}
._5_c03319{width:24.691392px;}
._1_c03319{width:50.252400px;}
._3_c03319{width:51.530688px;}
.fc0_c03319{color:rgb(0,0,0);}
.fs0_c03319{font-size:47.520000px;}
.fs1_c03319{font-size:60.480000px;}
.y0_c03319{bottom:0.000000px;}
.y1a_c03319{bottom:146.998362px;}
.y1c_c03319{bottom:186.600234px;}
.y1b_c03319{bottom:196.320450px;}
.y19_c03319{bottom:275.878542px;}
.y18_c03319{bottom:356.878758px;}
.y16_c03319{bottom:406.559730px;}
.y12_c03319{bottom:424.560306px;}
.y17_c03319{bottom:458.759262px;}
.y15_c03319{bottom:491.879514px;}
.y14_c03319{bottom:509.880090px;}
.y11_c03319{bottom:543.000342px;}
.y13_c03319{bottom:559.559874px;}
.y10_c03319{bottom:577.560450px;}
.y1d_c03319{bottom:614.280450px;}
.yc_c03319{bottom:652.438650px;}
.yb_c03319{bottom:667.558326px;}
.ye_c03319{bottom:707.160234px;}
.yd_c03319{bottom:716.880450px;}
.ya_c03319{bottom:796.438506px;}
.y9_c03319{bottom:877.438722px;}
.y7_c03319{bottom:926.759730px;}
.y3_c03319{bottom:944.760306px;}
.y8_c03319{bottom:979.319226px;}
.y6_c03319{bottom:1012.439478px;}
.y5_c03319{bottom:1030.440054px;}
.y2_c03319{bottom:1063.560306px;}
.y4_c03319{bottom:1079.759874px;}
.y1_c03319{bottom:1097.760450px;}
.yf_c03319{bottom:1134.840450px;}
.h3_c03319{height:32.530781px;}
.h1_c03319{height:41.696016px;}
.h2_c03319{height:41.812031px;}
.h4_c03319{height:54.654737px;}
.h0_c03319{height:1263.000000px;}
.w1_c03319{width:892.500000px;}
.w0_c03319{width:892.830000px;}
.x0_c03319{left:0.000000px;}
.xe_c03319{left:117.000000px;}
.x8_c03319{left:440.999856px;}
.x4_c03319{left:445.680576px;}
.xc_c03319{left:451.080000px;}
.x7_c03319{left:455.399604px;}
.x5_c03319{left:461.880144px;}
.x1_c03319{left:463.320000px;}
.xa_c03319{left:483.480360px;}
.x9_c03319{left:492.119496px;}
.x6_c03319{left:493.200576px;}
.xd_c03319{left:506.880360px;}
.x3_c03319{left:511.919892px;}
.x2_c03319{left:526.679604px;}
.xb_c03319{left:569.880036px;}
@media print{
.v0_c03319{vertical-align:0.000000pt;}
.v1_c03319{vertical-align:1.279488pt;}
.lsc_c03319{letter-spacing:-0.705408pt;}
.lsf_c03319{letter-spacing:-0.654720pt;}
.ls7_c03319{letter-spacing:-0.544896pt;}
.ls9_c03319{letter-spacing:-0.511104pt;}
.ls14_c03319{letter-spacing:-0.244992pt;}
.ls10_c03319{letter-spacing:-0.240768pt;}
.lsd_c03319{letter-spacing:-0.232320pt;}
.ls6_c03319{letter-spacing:-0.215424pt;}
.ls4_c03319{letter-spacing:-0.105600pt;}
.ls13_c03319{letter-spacing:0.000000pt;}
.ls1_c03319{letter-spacing:0.005376pt;}
.ls5_c03319{letter-spacing:0.114048pt;}
.lsb_c03319{letter-spacing:0.451968pt;}
.ls12_c03319{letter-spacing:0.456960pt;}
.lse_c03319{letter-spacing:0.477312pt;}
.lsa_c03319{letter-spacing:0.515328pt;}
.ls11_c03319{letter-spacing:0.528000pt;}
.ls8_c03319{letter-spacing:0.532224pt;}
.ls3_c03319{letter-spacing:0.544896pt;}
.ls0_c03319{letter-spacing:0.637824pt;}
.ls2_c03319{letter-spacing:0.642048pt;}
.wsc_c03319{word-spacing:-13.445376pt;}
.wsa_c03319{word-spacing:-11.088000pt;}
.ws6_c03319{word-spacing:-11.075328pt;}
.wse_c03319{word-spacing:-11.037312pt;}
.ws4_c03319{word-spacing:-10.344576pt;}
.ws2_c03319{word-spacing:-10.015104pt;}
.ws18_c03319{word-spacing:-0.963072pt;}
.ws12_c03319{word-spacing:-0.958848pt;}
.wsf_c03319{word-spacing:-0.865920pt;}
.ws17_c03319{word-spacing:-0.639744pt;}
.ws11_c03319{word-spacing:-0.105600pt;}
.ws14_c03319{word-spacing:-0.088704pt;}
.ws15_c03319{word-spacing:-0.080256pt;}
.ws16_c03319{word-spacing:-0.076032pt;}
.ws10_c03319{word-spacing:0.000000pt;}
.ws13_c03319{word-spacing:0.384384pt;}
.ws9_c03319{word-spacing:5.892480pt;}
.wsb_c03319{word-spacing:29.600256pt;}
.ws8_c03319{word-spacing:30.966144pt;}
.wsd_c03319{word-spacing:32.659968pt;}
.ws1_c03319{word-spacing:33.563904pt;}
.ws0_c03319{word-spacing:33.796224pt;}
.ws3_c03319{word-spacing:34.860672pt;}
.ws5_c03319{word-spacing:35.468928pt;}
.ws7_c03319{word-spacing:37.357056pt;}
._0_c03319{margin-left:-1.731840pt;}
._2_c03319{width:1.317888pt;}
._4_c03319{width:5.111040pt;}
._6_c03319{width:17.761920pt;}
._7_c03319{width:20.845440pt;}
._5_c03319{width:21.947904pt;}
._1_c03319{width:44.668800pt;}
._3_c03319{width:45.805056pt;}
.fs0_c03319{font-size:42.240000pt;}
.fs1_c03319{font-size:53.760000pt;}
.y0_c03319{bottom:0.000000pt;}
.y1a_c03319{bottom:130.665211pt;}
.y1c_c03319{bottom:165.866875pt;}
.y1b_c03319{bottom:174.507067pt;}
.y19_c03319{bottom:245.225371pt;}
.y18_c03319{bottom:317.225563pt;}
.y16_c03319{bottom:361.386427pt;}
.y12_c03319{bottom:377.386939pt;}
.y17_c03319{bottom:407.786011pt;}
.y15_c03319{bottom:437.226235pt;}
.y14_c03319{bottom:453.226747pt;}
.y11_c03319{bottom:482.666971pt;}
.y13_c03319{bottom:497.386555pt;}
.y10_c03319{bottom:513.387067pt;}
.y1d_c03319{bottom:546.027067pt;}
.yc_c03319{bottom:579.945467pt;}
.yb_c03319{bottom:593.385179pt;}
.ye_c03319{bottom:628.586875pt;}
.yd_c03319{bottom:637.227067pt;}
.ya_c03319{bottom:707.945339pt;}
.y9_c03319{bottom:779.945531pt;}
.y7_c03319{bottom:823.786427pt;}
.y3_c03319{bottom:839.786939pt;}
.y8_c03319{bottom:870.505979pt;}
.y6_c03319{bottom:899.946203pt;}
.y5_c03319{bottom:915.946715pt;}
.y2_c03319{bottom:945.386939pt;}
.y4_c03319{bottom:959.786555pt;}
.y1_c03319{bottom:975.787067pt;}
.yf_c03319{bottom:1008.747067pt;}
.h3_c03319{height:28.916250pt;}
.h1_c03319{height:37.063125pt;}
.h2_c03319{height:37.166250pt;}
.h4_c03319{height:48.581988pt;}
.h0_c03319{height:1122.666667pt;}
.w1_c03319{width:793.333333pt;}
.w0_c03319{width:793.626667pt;}
.x0_c03319{left:0.000000pt;}
.xe_c03319{left:104.000000pt;}
.x8_c03319{left:391.999872pt;}
.x4_c03319{left:396.160512pt;}
.xc_c03319{left:400.960000pt;}
.x7_c03319{left:404.799648pt;}
.x5_c03319{left:410.560128pt;}
.x1_c03319{left:411.840000pt;}
.xa_c03319{left:429.760320pt;}
.x9_c03319{left:437.439552pt;}
.x6_c03319{left:438.400512pt;}
.xd_c03319{left:450.560320pt;}
.x3_c03319{left:455.039904pt;}
.x2_c03319{left:468.159648pt;}
.xb_c03319{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03320 {
    display:none;
  }
  .loading-indicator_c03320.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03320 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03320 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03320" -> "#page-container .classname_c03320")
 */
.pf_c03320 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03320 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03320.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03320 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03320 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03320 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03320 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03320 {overflow:visible;}
  }
}
.c_c03320 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03320 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03320:after { /* webkit #35443 */
  content: '';
}
.t_c03320:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03320 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03320 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03320 { /* info for Javascript */
  display:none;
}
.l_c03320 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03320 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03320 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03320:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03320 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03320.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03320.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03320 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03320{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03320;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03320{font-family:ff1_c03320;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03320;src:url('chunks/assets/font_04b2fac73202b9f8c6cbd233.woff2')format("woff");}.ff2_c03320{font-family:ff2_c03320;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03320;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03320{font-family:ff3_c03320;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03320{vertical-align:0.000000px;}
.v1_c03320{vertical-align:1.439424px;}
.ls7_c03320{letter-spacing:-0.613008px;}
.ls9_c03320{letter-spacing:-0.574992px;}
.lse_c03320{letter-spacing:-0.275616px;}
.lsc_c03320{letter-spacing:-0.261360px;}
.ls6_c03320{letter-spacing:-0.242352px;}
.ls4_c03320{letter-spacing:-0.118800px;}
.ls11_c03320{letter-spacing:0.000000px;}
.ls2_c03320{letter-spacing:0.006048px;}
.ls5_c03320{letter-spacing:0.128304px;}
.lsb_c03320{letter-spacing:0.508464px;}
.ls10_c03320{letter-spacing:0.514080px;}
.lsd_c03320{letter-spacing:0.536976px;}
.lsa_c03320{letter-spacing:0.579744px;}
.lsf_c03320{letter-spacing:0.594000px;}
.ls8_c03320{letter-spacing:0.598752px;}
.ls3_c03320{letter-spacing:0.613008px;}
.ls0_c03320{letter-spacing:0.717552px;}
.ls1_c03320{letter-spacing:0.722304px;}
.sc__c03320{text-shadow:none;}
.sc0_c03320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03320{-webkit-text-stroke:0px transparent;}
.sc0_c03320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03320{word-spacing:-15.126048px;}
.wsa_c03320{word-spacing:-12.474000px;}
.ws8_c03320{word-spacing:-12.459744px;}
.ws9_c03320{word-spacing:-12.416976px;}
.ws4_c03320{word-spacing:-11.637648px;}
.ws2_c03320{word-spacing:-11.266992px;}
.ws11_c03320{word-spacing:-1.083456px;}
.ws10_c03320{word-spacing:-1.078704px;}
.wsd_c03320{word-spacing:-0.974160px;}
.ws14_c03320{word-spacing:-0.719712px;}
.wsf_c03320{word-spacing:-0.118800px;}
.ws12_c03320{word-spacing:-0.099792px;}
.ws13_c03320{word-spacing:-0.085536px;}
.wse_c03320{word-spacing:0.000000px;}
.wsb_c03320{word-spacing:33.300288px;}
.ws6_c03320{word-spacing:36.742464px;}
.ws1_c03320{word-spacing:37.759392px;}
.ws0_c03320{word-spacing:38.020752px;}
.ws3_c03320{word-spacing:39.218256px;}
.ws5_c03320{word-spacing:39.902544px;}
.ws7_c03320{word-spacing:42.026688px;}
._0_c03320{margin-left:-1.948320px;}
._2_c03320{width:1.482624px;}
._4_c03320{width:5.749920px;}
._1_c03320{width:50.252400px;}
._3_c03320{width:51.530688px;}
.fc0_c03320{color:rgb(0,0,0);}
.fs0_c03320{font-size:47.520000px;}
.fs1_c03320{font-size:60.480000px;}
.y0_c03320{bottom:0.000000px;}
.y19_c03320{bottom:146.998362px;}
.y1b_c03320{bottom:186.600234px;}
.y1a_c03320{bottom:196.320450px;}
.y18_c03320{bottom:275.878542px;}
.y17_c03320{bottom:356.878758px;}
.y15_c03320{bottom:406.559730px;}
.y11_c03320{bottom:424.560306px;}
.y16_c03320{bottom:458.759262px;}
.y14_c03320{bottom:491.879514px;}
.y13_c03320{bottom:509.880090px;}
.y10_c03320{bottom:543.000342px;}
.y12_c03320{bottom:559.559874px;}
.yf_c03320{bottom:577.560450px;}
.y1c_c03320{bottom:614.280450px;}
.yb_c03320{bottom:667.558326px;}
.yd_c03320{bottom:707.160234px;}
.yc_c03320{bottom:716.880450px;}
.ya_c03320{bottom:796.438506px;}
.y9_c03320{bottom:877.438722px;}
.y7_c03320{bottom:926.759730px;}
.y3_c03320{bottom:944.760306px;}
.y8_c03320{bottom:979.319226px;}
.y6_c03320{bottom:1012.439478px;}
.y5_c03320{bottom:1030.440054px;}
.y2_c03320{bottom:1063.560306px;}
.y4_c03320{bottom:1079.759874px;}
.y1_c03320{bottom:1097.760450px;}
.ye_c03320{bottom:1134.840450px;}
.h3_c03320{height:32.530781px;}
.h1_c03320{height:41.696016px;}
.h2_c03320{height:41.812031px;}
.h4_c03320{height:54.654737px;}
.h0_c03320{height:1263.000000px;}
.w1_c03320{width:892.500000px;}
.w0_c03320{width:892.830000px;}
.x0_c03320{left:0.000000px;}
.xd_c03320{left:117.000000px;}
.x8_c03320{left:440.999856px;}
.x4_c03320{left:445.680576px;}
.xb_c03320{left:451.080000px;}
.x7_c03320{left:455.399604px;}
.x5_c03320{left:461.880144px;}
.x1_c03320{left:463.320000px;}
.xa_c03320{left:483.480360px;}
.x9_c03320{left:492.119496px;}
.x6_c03320{left:493.200576px;}
.xc_c03320{left:506.880360px;}
.x3_c03320{left:511.919892px;}
.x2_c03320{left:526.679604px;}
@media print{
.v0_c03320{vertical-align:0.000000pt;}
.v1_c03320{vertical-align:1.279488pt;}
.ls7_c03320{letter-spacing:-0.544896pt;}
.ls9_c03320{letter-spacing:-0.511104pt;}
.lse_c03320{letter-spacing:-0.244992pt;}
.lsc_c03320{letter-spacing:-0.232320pt;}
.ls6_c03320{letter-spacing:-0.215424pt;}
.ls4_c03320{letter-spacing:-0.105600pt;}
.ls11_c03320{letter-spacing:0.000000pt;}
.ls2_c03320{letter-spacing:0.005376pt;}
.ls5_c03320{letter-spacing:0.114048pt;}
.lsb_c03320{letter-spacing:0.451968pt;}
.ls10_c03320{letter-spacing:0.456960pt;}
.lsd_c03320{letter-spacing:0.477312pt;}
.lsa_c03320{letter-spacing:0.515328pt;}
.lsf_c03320{letter-spacing:0.528000pt;}
.ls8_c03320{letter-spacing:0.532224pt;}
.ls3_c03320{letter-spacing:0.544896pt;}
.ls0_c03320{letter-spacing:0.637824pt;}
.ls1_c03320{letter-spacing:0.642048pt;}
.wsc_c03320{word-spacing:-13.445376pt;}
.wsa_c03320{word-spacing:-11.088000pt;}
.ws8_c03320{word-spacing:-11.075328pt;}
.ws9_c03320{word-spacing:-11.037312pt;}
.ws4_c03320{word-spacing:-10.344576pt;}
.ws2_c03320{word-spacing:-10.015104pt;}
.ws11_c03320{word-spacing:-0.963072pt;}
.ws10_c03320{word-spacing:-0.958848pt;}
.wsd_c03320{word-spacing:-0.865920pt;}
.ws14_c03320{word-spacing:-0.639744pt;}
.wsf_c03320{word-spacing:-0.105600pt;}
.ws12_c03320{word-spacing:-0.088704pt;}
.ws13_c03320{word-spacing:-0.076032pt;}
.wse_c03320{word-spacing:0.000000pt;}
.wsb_c03320{word-spacing:29.600256pt;}
.ws6_c03320{word-spacing:32.659968pt;}
.ws1_c03320{word-spacing:33.563904pt;}
.ws0_c03320{word-spacing:33.796224pt;}
.ws3_c03320{word-spacing:34.860672pt;}
.ws5_c03320{word-spacing:35.468928pt;}
.ws7_c03320{word-spacing:37.357056pt;}
._0_c03320{margin-left:-1.731840pt;}
._2_c03320{width:1.317888pt;}
._4_c03320{width:5.111040pt;}
._1_c03320{width:44.668800pt;}
._3_c03320{width:45.805056pt;}
.fs0_c03320{font-size:42.240000pt;}
.fs1_c03320{font-size:53.760000pt;}
.y0_c03320{bottom:0.000000pt;}
.y19_c03320{bottom:130.665211pt;}
.y1b_c03320{bottom:165.866875pt;}
.y1a_c03320{bottom:174.507067pt;}
.y18_c03320{bottom:245.225371pt;}
.y17_c03320{bottom:317.225563pt;}
.y15_c03320{bottom:361.386427pt;}
.y11_c03320{bottom:377.386939pt;}
.y16_c03320{bottom:407.786011pt;}
.y14_c03320{bottom:437.226235pt;}
.y13_c03320{bottom:453.226747pt;}
.y10_c03320{bottom:482.666971pt;}
.y12_c03320{bottom:497.386555pt;}
.yf_c03320{bottom:513.387067pt;}
.y1c_c03320{bottom:546.027067pt;}
.yb_c03320{bottom:593.385179pt;}
.yd_c03320{bottom:628.586875pt;}
.yc_c03320{bottom:637.227067pt;}
.ya_c03320{bottom:707.945339pt;}
.y9_c03320{bottom:779.945531pt;}
.y7_c03320{bottom:823.786427pt;}
.y3_c03320{bottom:839.786939pt;}
.y8_c03320{bottom:870.505979pt;}
.y6_c03320{bottom:899.946203pt;}
.y5_c03320{bottom:915.946715pt;}
.y2_c03320{bottom:945.386939pt;}
.y4_c03320{bottom:959.786555pt;}
.y1_c03320{bottom:975.787067pt;}
.ye_c03320{bottom:1008.747067pt;}
.h3_c03320{height:28.916250pt;}
.h1_c03320{height:37.063125pt;}
.h2_c03320{height:37.166250pt;}
.h4_c03320{height:48.581988pt;}
.h0_c03320{height:1122.666667pt;}
.w1_c03320{width:793.333333pt;}
.w0_c03320{width:793.626667pt;}
.x0_c03320{left:0.000000pt;}
.xd_c03320{left:104.000000pt;}
.x8_c03320{left:391.999872pt;}
.x4_c03320{left:396.160512pt;}
.xb_c03320{left:400.960000pt;}
.x7_c03320{left:404.799648pt;}
.x5_c03320{left:410.560128pt;}
.x1_c03320{left:411.840000pt;}
.xa_c03320{left:429.760320pt;}
.x9_c03320{left:437.439552pt;}
.x6_c03320{left:438.400512pt;}
.xc_c03320{left:450.560320pt;}
.x3_c03320{left:455.039904pt;}
.x2_c03320{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03321 {
    display:none;
  }
  .loading-indicator_c03321.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03321 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03321 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03321" -> "#page-container .classname_c03321")
 */
.pf_c03321 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03321 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03321.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03321 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03321 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03321 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03321 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03321 {overflow:visible;}
  }
}
.c_c03321 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03321 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03321:after { /* webkit #35443 */
  content: '';
}
.t_c03321:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03321 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03321 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03321 { /* info for Javascript */
  display:none;
}
.l_c03321 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03321 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03321 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03321:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03321 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03321.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03321.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03321 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03321{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03321;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03321{font-family:ff1_c03321;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03321;src:url('chunks/assets/font_d83d8b0cd9ccf05472941dcf.woff2')format("woff");}.ff2_c03321{font-family:ff2_c03321;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03321;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03321{font-family:ff3_c03321;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03321{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03321{vertical-align:0.000000px;}
.v1_c03321{vertical-align:1.439424px;}
.ls7_c03321{letter-spacing:-0.613008px;}
.ls9_c03321{letter-spacing:-0.574992px;}
.lse_c03321{letter-spacing:-0.275616px;}
.lsc_c03321{letter-spacing:-0.261360px;}
.ls6_c03321{letter-spacing:-0.242352px;}
.ls4_c03321{letter-spacing:-0.118800px;}
.ls11_c03321{letter-spacing:0.000000px;}
.ls2_c03321{letter-spacing:0.006048px;}
.ls5_c03321{letter-spacing:0.128304px;}
.lsb_c03321{letter-spacing:0.508464px;}
.ls10_c03321{letter-spacing:0.514080px;}
.lsd_c03321{letter-spacing:0.536976px;}
.lsa_c03321{letter-spacing:0.579744px;}
.lsf_c03321{letter-spacing:0.594000px;}
.ls8_c03321{letter-spacing:0.598752px;}
.ls3_c03321{letter-spacing:0.613008px;}
.ls0_c03321{letter-spacing:0.717552px;}
.ls1_c03321{letter-spacing:0.722304px;}
.sc__c03321{text-shadow:none;}
.sc0_c03321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03321{-webkit-text-stroke:0px transparent;}
.sc0_c03321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03321{word-spacing:-15.126048px;}
.wsa_c03321{word-spacing:-12.474000px;}
.ws8_c03321{word-spacing:-12.459744px;}
.ws9_c03321{word-spacing:-12.416976px;}
.ws4_c03321{word-spacing:-11.637648px;}
.ws2_c03321{word-spacing:-11.266992px;}
.ws12_c03321{word-spacing:-1.083456px;}
.ws11_c03321{word-spacing:-1.078704px;}
.wse_c03321{word-spacing:-0.974160px;}
.ws15_c03321{word-spacing:-0.719712px;}
.ws10_c03321{word-spacing:-0.118800px;}
.ws13_c03321{word-spacing:-0.099792px;}
.ws14_c03321{word-spacing:-0.085536px;}
.wsf_c03321{word-spacing:0.000000px;}
.wsb_c03321{word-spacing:33.300288px;}
.wsd_c03321{word-spacing:36.143712px;}
.ws6_c03321{word-spacing:36.742464px;}
.ws1_c03321{word-spacing:37.759392px;}
.ws0_c03321{word-spacing:38.020752px;}
.ws3_c03321{word-spacing:39.218256px;}
.ws5_c03321{word-spacing:39.902544px;}
.ws7_c03321{word-spacing:42.026688px;}
._0_c03321{margin-left:-1.948320px;}
._2_c03321{width:1.482624px;}
._4_c03321{width:5.749920px;}
._1_c03321{width:50.252400px;}
._3_c03321{width:51.530688px;}
.fc0_c03321{color:rgb(0,0,0);}
.fs0_c03321{font-size:47.520000px;}
.fs1_c03321{font-size:60.480000px;}
.y0_c03321{bottom:0.000000px;}
.y19_c03321{bottom:146.998362px;}
.y1b_c03321{bottom:186.600234px;}
.y1a_c03321{bottom:196.320450px;}
.y18_c03321{bottom:275.878542px;}
.y17_c03321{bottom:356.878758px;}
.y15_c03321{bottom:406.559730px;}
.y11_c03321{bottom:424.560306px;}
.y16_c03321{bottom:458.759262px;}
.y14_c03321{bottom:491.879514px;}
.y13_c03321{bottom:509.880090px;}
.y10_c03321{bottom:543.000342px;}
.y12_c03321{bottom:559.559874px;}
.yf_c03321{bottom:577.560450px;}
.y1c_c03321{bottom:614.280450px;}
.yb_c03321{bottom:667.558326px;}
.yd_c03321{bottom:707.160234px;}
.yc_c03321{bottom:716.880450px;}
.ya_c03321{bottom:796.438506px;}
.y9_c03321{bottom:877.438722px;}
.y7_c03321{bottom:926.759730px;}
.y3_c03321{bottom:944.760306px;}
.y8_c03321{bottom:979.319226px;}
.y6_c03321{bottom:1012.439478px;}
.y5_c03321{bottom:1030.440054px;}
.y2_c03321{bottom:1063.560306px;}
.y4_c03321{bottom:1079.759874px;}
.y1_c03321{bottom:1097.760450px;}
.ye_c03321{bottom:1134.840450px;}
.h3_c03321{height:32.530781px;}
.h1_c03321{height:41.696016px;}
.h2_c03321{height:41.812031px;}
.h4_c03321{height:54.654737px;}
.h0_c03321{height:1263.000000px;}
.w1_c03321{width:892.500000px;}
.w0_c03321{width:892.830000px;}
.x0_c03321{left:0.000000px;}
.xd_c03321{left:117.000000px;}
.x8_c03321{left:440.999856px;}
.x4_c03321{left:445.680576px;}
.xb_c03321{left:451.080000px;}
.x7_c03321{left:455.399604px;}
.x5_c03321{left:461.880144px;}
.x1_c03321{left:463.320000px;}
.xa_c03321{left:483.480360px;}
.x9_c03321{left:492.119496px;}
.x6_c03321{left:493.200576px;}
.xc_c03321{left:506.880360px;}
.x3_c03321{left:511.919892px;}
.x2_c03321{left:526.679604px;}
@media print{
.v0_c03321{vertical-align:0.000000pt;}
.v1_c03321{vertical-align:1.279488pt;}
.ls7_c03321{letter-spacing:-0.544896pt;}
.ls9_c03321{letter-spacing:-0.511104pt;}
.lse_c03321{letter-spacing:-0.244992pt;}
.lsc_c03321{letter-spacing:-0.232320pt;}
.ls6_c03321{letter-spacing:-0.215424pt;}
.ls4_c03321{letter-spacing:-0.105600pt;}
.ls11_c03321{letter-spacing:0.000000pt;}
.ls2_c03321{letter-spacing:0.005376pt;}
.ls5_c03321{letter-spacing:0.114048pt;}
.lsb_c03321{letter-spacing:0.451968pt;}
.ls10_c03321{letter-spacing:0.456960pt;}
.lsd_c03321{letter-spacing:0.477312pt;}
.lsa_c03321{letter-spacing:0.515328pt;}
.lsf_c03321{letter-spacing:0.528000pt;}
.ls8_c03321{letter-spacing:0.532224pt;}
.ls3_c03321{letter-spacing:0.544896pt;}
.ls0_c03321{letter-spacing:0.637824pt;}
.ls1_c03321{letter-spacing:0.642048pt;}
.wsc_c03321{word-spacing:-13.445376pt;}
.wsa_c03321{word-spacing:-11.088000pt;}
.ws8_c03321{word-spacing:-11.075328pt;}
.ws9_c03321{word-spacing:-11.037312pt;}
.ws4_c03321{word-spacing:-10.344576pt;}
.ws2_c03321{word-spacing:-10.015104pt;}
.ws12_c03321{word-spacing:-0.963072pt;}
.ws11_c03321{word-spacing:-0.958848pt;}
.wse_c03321{word-spacing:-0.865920pt;}
.ws15_c03321{word-spacing:-0.639744pt;}
.ws10_c03321{word-spacing:-0.105600pt;}
.ws13_c03321{word-spacing:-0.088704pt;}
.ws14_c03321{word-spacing:-0.076032pt;}
.wsf_c03321{word-spacing:0.000000pt;}
.wsb_c03321{word-spacing:29.600256pt;}
.wsd_c03321{word-spacing:32.127744pt;}
.ws6_c03321{word-spacing:32.659968pt;}
.ws1_c03321{word-spacing:33.563904pt;}
.ws0_c03321{word-spacing:33.796224pt;}
.ws3_c03321{word-spacing:34.860672pt;}
.ws5_c03321{word-spacing:35.468928pt;}
.ws7_c03321{word-spacing:37.357056pt;}
._0_c03321{margin-left:-1.731840pt;}
._2_c03321{width:1.317888pt;}
._4_c03321{width:5.111040pt;}
._1_c03321{width:44.668800pt;}
._3_c03321{width:45.805056pt;}
.fs0_c03321{font-size:42.240000pt;}
.fs1_c03321{font-size:53.760000pt;}
.y0_c03321{bottom:0.000000pt;}
.y19_c03321{bottom:130.665211pt;}
.y1b_c03321{bottom:165.866875pt;}
.y1a_c03321{bottom:174.507067pt;}
.y18_c03321{bottom:245.225371pt;}
.y17_c03321{bottom:317.225563pt;}
.y15_c03321{bottom:361.386427pt;}
.y11_c03321{bottom:377.386939pt;}
.y16_c03321{bottom:407.786011pt;}
.y14_c03321{bottom:437.226235pt;}
.y13_c03321{bottom:453.226747pt;}
.y10_c03321{bottom:482.666971pt;}
.y12_c03321{bottom:497.386555pt;}
.yf_c03321{bottom:513.387067pt;}
.y1c_c03321{bottom:546.027067pt;}
.yb_c03321{bottom:593.385179pt;}
.yd_c03321{bottom:628.586875pt;}
.yc_c03321{bottom:637.227067pt;}
.ya_c03321{bottom:707.945339pt;}
.y9_c03321{bottom:779.945531pt;}
.y7_c03321{bottom:823.786427pt;}
.y3_c03321{bottom:839.786939pt;}
.y8_c03321{bottom:870.505979pt;}
.y6_c03321{bottom:899.946203pt;}
.y5_c03321{bottom:915.946715pt;}
.y2_c03321{bottom:945.386939pt;}
.y4_c03321{bottom:959.786555pt;}
.y1_c03321{bottom:975.787067pt;}
.ye_c03321{bottom:1008.747067pt;}
.h3_c03321{height:28.916250pt;}
.h1_c03321{height:37.063125pt;}
.h2_c03321{height:37.166250pt;}
.h4_c03321{height:48.581988pt;}
.h0_c03321{height:1122.666667pt;}
.w1_c03321{width:793.333333pt;}
.w0_c03321{width:793.626667pt;}
.x0_c03321{left:0.000000pt;}
.xd_c03321{left:104.000000pt;}
.x8_c03321{left:391.999872pt;}
.x4_c03321{left:396.160512pt;}
.xb_c03321{left:400.960000pt;}
.x7_c03321{left:404.799648pt;}
.x5_c03321{left:410.560128pt;}
.x1_c03321{left:411.840000pt;}
.xa_c03321{left:429.760320pt;}
.x9_c03321{left:437.439552pt;}
.x6_c03321{left:438.400512pt;}
.xc_c03321{left:450.560320pt;}
.x3_c03321{left:455.039904pt;}
.x2_c03321{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03322 {
    display:none;
  }
  .loading-indicator_c03322.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03322 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03322 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03322" -> "#page-container .classname_c03322")
 */
.pf_c03322 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03322 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03322.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03322 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03322 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03322 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03322 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03322 {overflow:visible;}
  }
}
.c_c03322 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03322 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03322:after { /* webkit #35443 */
  content: '';
}
.t_c03322:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03322 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03322 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03322 { /* info for Javascript */
  display:none;
}
.l_c03322 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03322 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03322 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03322:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03322 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03322.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03322.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03322 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03322{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03322;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03322{font-family:ff1_c03322;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03322;src:url('chunks/assets/font_93d1c1b374380aa59eab60a4.woff2')format("woff");}.ff2_c03322{font-family:ff2_c03322;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03322;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03322{font-family:ff3_c03322;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03322{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03322{vertical-align:0.000000px;}
.v1_c03322{vertical-align:1.439424px;}
.ls7_c03322{letter-spacing:-0.613008px;}
.ls9_c03322{letter-spacing:-0.574992px;}
.lse_c03322{letter-spacing:-0.275616px;}
.lsc_c03322{letter-spacing:-0.261360px;}
.ls6_c03322{letter-spacing:-0.242352px;}
.ls4_c03322{letter-spacing:-0.118800px;}
.ls11_c03322{letter-spacing:0.000000px;}
.ls2_c03322{letter-spacing:0.006048px;}
.ls5_c03322{letter-spacing:0.128304px;}
.lsb_c03322{letter-spacing:0.508464px;}
.ls10_c03322{letter-spacing:0.514080px;}
.lsd_c03322{letter-spacing:0.536976px;}
.lsa_c03322{letter-spacing:0.579744px;}
.lsf_c03322{letter-spacing:0.594000px;}
.ls8_c03322{letter-spacing:0.598752px;}
.ls3_c03322{letter-spacing:0.613008px;}
.ls0_c03322{letter-spacing:0.717552px;}
.ls1_c03322{letter-spacing:0.722304px;}
.sc__c03322{text-shadow:none;}
.sc0_c03322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03322{-webkit-text-stroke:0px transparent;}
.sc0_c03322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03322{word-spacing:-15.126048px;}
.wsa_c03322{word-spacing:-12.474000px;}
.ws8_c03322{word-spacing:-12.459744px;}
.ws9_c03322{word-spacing:-12.416976px;}
.ws4_c03322{word-spacing:-11.637648px;}
.ws2_c03322{word-spacing:-11.266992px;}
.ws11_c03322{word-spacing:-1.083456px;}
.ws10_c03322{word-spacing:-1.078704px;}
.wsd_c03322{word-spacing:-0.974160px;}
.ws14_c03322{word-spacing:-0.719712px;}
.wsf_c03322{word-spacing:-0.118800px;}
.ws12_c03322{word-spacing:-0.099792px;}
.ws13_c03322{word-spacing:-0.085536px;}
.wse_c03322{word-spacing:0.000000px;}
.wsb_c03322{word-spacing:33.300288px;}
.ws6_c03322{word-spacing:36.742464px;}
.ws1_c03322{word-spacing:37.759392px;}
.ws0_c03322{word-spacing:38.020752px;}
.ws3_c03322{word-spacing:39.218256px;}
.ws5_c03322{word-spacing:39.902544px;}
.ws7_c03322{word-spacing:42.026688px;}
._0_c03322{margin-left:-1.948320px;}
._2_c03322{width:1.482624px;}
._4_c03322{width:5.749920px;}
._1_c03322{width:50.252400px;}
._3_c03322{width:51.530688px;}
.fc0_c03322{color:rgb(0,0,0);}
.fs0_c03322{font-size:47.520000px;}
.fs1_c03322{font-size:60.480000px;}
.y0_c03322{bottom:0.000000px;}
.y19_c03322{bottom:146.998362px;}
.y1b_c03322{bottom:186.600234px;}
.y1a_c03322{bottom:196.320450px;}
.y18_c03322{bottom:275.878542px;}
.y17_c03322{bottom:356.878758px;}
.y15_c03322{bottom:406.559730px;}
.y11_c03322{bottom:424.560306px;}
.y16_c03322{bottom:458.759262px;}
.y14_c03322{bottom:491.879514px;}
.y13_c03322{bottom:509.880090px;}
.y10_c03322{bottom:543.000342px;}
.y12_c03322{bottom:559.559874px;}
.yf_c03322{bottom:577.560450px;}
.y1c_c03322{bottom:614.280450px;}
.yb_c03322{bottom:667.558326px;}
.yd_c03322{bottom:707.160234px;}
.yc_c03322{bottom:716.880450px;}
.ya_c03322{bottom:796.438506px;}
.y9_c03322{bottom:877.438722px;}
.y7_c03322{bottom:926.759730px;}
.y3_c03322{bottom:944.760306px;}
.y8_c03322{bottom:979.319226px;}
.y6_c03322{bottom:1012.439478px;}
.y5_c03322{bottom:1030.440054px;}
.y2_c03322{bottom:1063.560306px;}
.y4_c03322{bottom:1079.759874px;}
.y1_c03322{bottom:1097.760450px;}
.ye_c03322{bottom:1134.840450px;}
.h3_c03322{height:32.530781px;}
.h1_c03322{height:41.696016px;}
.h2_c03322{height:41.812031px;}
.h4_c03322{height:54.654737px;}
.h0_c03322{height:1263.000000px;}
.w1_c03322{width:892.500000px;}
.w0_c03322{width:892.830000px;}
.x0_c03322{left:0.000000px;}
.xd_c03322{left:117.000000px;}
.x8_c03322{left:440.999856px;}
.x4_c03322{left:445.680576px;}
.xb_c03322{left:451.080000px;}
.x7_c03322{left:455.399604px;}
.x5_c03322{left:461.880144px;}
.x1_c03322{left:463.320000px;}
.xa_c03322{left:483.480360px;}
.x9_c03322{left:492.119496px;}
.x6_c03322{left:493.200576px;}
.xc_c03322{left:506.880360px;}
.x3_c03322{left:511.919892px;}
.x2_c03322{left:526.679604px;}
@media print{
.v0_c03322{vertical-align:0.000000pt;}
.v1_c03322{vertical-align:1.279488pt;}
.ls7_c03322{letter-spacing:-0.544896pt;}
.ls9_c03322{letter-spacing:-0.511104pt;}
.lse_c03322{letter-spacing:-0.244992pt;}
.lsc_c03322{letter-spacing:-0.232320pt;}
.ls6_c03322{letter-spacing:-0.215424pt;}
.ls4_c03322{letter-spacing:-0.105600pt;}
.ls11_c03322{letter-spacing:0.000000pt;}
.ls2_c03322{letter-spacing:0.005376pt;}
.ls5_c03322{letter-spacing:0.114048pt;}
.lsb_c03322{letter-spacing:0.451968pt;}
.ls10_c03322{letter-spacing:0.456960pt;}
.lsd_c03322{letter-spacing:0.477312pt;}
.lsa_c03322{letter-spacing:0.515328pt;}
.lsf_c03322{letter-spacing:0.528000pt;}
.ls8_c03322{letter-spacing:0.532224pt;}
.ls3_c03322{letter-spacing:0.544896pt;}
.ls0_c03322{letter-spacing:0.637824pt;}
.ls1_c03322{letter-spacing:0.642048pt;}
.wsc_c03322{word-spacing:-13.445376pt;}
.wsa_c03322{word-spacing:-11.088000pt;}
.ws8_c03322{word-spacing:-11.075328pt;}
.ws9_c03322{word-spacing:-11.037312pt;}
.ws4_c03322{word-spacing:-10.344576pt;}
.ws2_c03322{word-spacing:-10.015104pt;}
.ws11_c03322{word-spacing:-0.963072pt;}
.ws10_c03322{word-spacing:-0.958848pt;}
.wsd_c03322{word-spacing:-0.865920pt;}
.ws14_c03322{word-spacing:-0.639744pt;}
.wsf_c03322{word-spacing:-0.105600pt;}
.ws12_c03322{word-spacing:-0.088704pt;}
.ws13_c03322{word-spacing:-0.076032pt;}
.wse_c03322{word-spacing:0.000000pt;}
.wsb_c03322{word-spacing:29.600256pt;}
.ws6_c03322{word-spacing:32.659968pt;}
.ws1_c03322{word-spacing:33.563904pt;}
.ws0_c03322{word-spacing:33.796224pt;}
.ws3_c03322{word-spacing:34.860672pt;}
.ws5_c03322{word-spacing:35.468928pt;}
.ws7_c03322{word-spacing:37.357056pt;}
._0_c03322{margin-left:-1.731840pt;}
._2_c03322{width:1.317888pt;}
._4_c03322{width:5.111040pt;}
._1_c03322{width:44.668800pt;}
._3_c03322{width:45.805056pt;}
.fs0_c03322{font-size:42.240000pt;}
.fs1_c03322{font-size:53.760000pt;}
.y0_c03322{bottom:0.000000pt;}
.y19_c03322{bottom:130.665211pt;}
.y1b_c03322{bottom:165.866875pt;}
.y1a_c03322{bottom:174.507067pt;}
.y18_c03322{bottom:245.225371pt;}
.y17_c03322{bottom:317.225563pt;}
.y15_c03322{bottom:361.386427pt;}
.y11_c03322{bottom:377.386939pt;}
.y16_c03322{bottom:407.786011pt;}
.y14_c03322{bottom:437.226235pt;}
.y13_c03322{bottom:453.226747pt;}
.y10_c03322{bottom:482.666971pt;}
.y12_c03322{bottom:497.386555pt;}
.yf_c03322{bottom:513.387067pt;}
.y1c_c03322{bottom:546.027067pt;}
.yb_c03322{bottom:593.385179pt;}
.yd_c03322{bottom:628.586875pt;}
.yc_c03322{bottom:637.227067pt;}
.ya_c03322{bottom:707.945339pt;}
.y9_c03322{bottom:779.945531pt;}
.y7_c03322{bottom:823.786427pt;}
.y3_c03322{bottom:839.786939pt;}
.y8_c03322{bottom:870.505979pt;}
.y6_c03322{bottom:899.946203pt;}
.y5_c03322{bottom:915.946715pt;}
.y2_c03322{bottom:945.386939pt;}
.y4_c03322{bottom:959.786555pt;}
.y1_c03322{bottom:975.787067pt;}
.ye_c03322{bottom:1008.747067pt;}
.h3_c03322{height:28.916250pt;}
.h1_c03322{height:37.063125pt;}
.h2_c03322{height:37.166250pt;}
.h4_c03322{height:48.581988pt;}
.h0_c03322{height:1122.666667pt;}
.w1_c03322{width:793.333333pt;}
.w0_c03322{width:793.626667pt;}
.x0_c03322{left:0.000000pt;}
.xd_c03322{left:104.000000pt;}
.x8_c03322{left:391.999872pt;}
.x4_c03322{left:396.160512pt;}
.xb_c03322{left:400.960000pt;}
.x7_c03322{left:404.799648pt;}
.x5_c03322{left:410.560128pt;}
.x1_c03322{left:411.840000pt;}
.xa_c03322{left:429.760320pt;}
.x9_c03322{left:437.439552pt;}
.x6_c03322{left:438.400512pt;}
.xc_c03322{left:450.560320pt;}
.x3_c03322{left:455.039904pt;}
.x2_c03322{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03323 {
    display:none;
  }
  .loading-indicator_c03323.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03323 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03323 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03323" -> "#page-container .classname_c03323")
 */
.pf_c03323 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03323 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03323.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03323 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03323 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03323 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03323 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03323 {overflow:visible;}
  }
}
.c_c03323 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03323 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03323:after { /* webkit #35443 */
  content: '';
}
.t_c03323:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03323 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03323 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03323 { /* info for Javascript */
  display:none;
}
.l_c03323 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03323 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03323 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03323:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03323 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03323.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03323.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03323 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03323{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03323;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03323{font-family:ff1_c03323;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03323;src:url('chunks/assets/font_46fae5a5f6853f74d1303758.woff2')format("woff");}.ff2_c03323{font-family:ff2_c03323;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03323;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03323{font-family:ff3_c03323;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03323{vertical-align:0.000000px;}
.v1_c03323{vertical-align:1.439424px;}
.ls7_c03323{letter-spacing:-0.613008px;}
.ls9_c03323{letter-spacing:-0.574992px;}
.lse_c03323{letter-spacing:-0.275616px;}
.lsc_c03323{letter-spacing:-0.261360px;}
.ls6_c03323{letter-spacing:-0.242352px;}
.ls4_c03323{letter-spacing:-0.118800px;}
.ls11_c03323{letter-spacing:0.000000px;}
.ls2_c03323{letter-spacing:0.006048px;}
.ls5_c03323{letter-spacing:0.128304px;}
.lsb_c03323{letter-spacing:0.508464px;}
.ls10_c03323{letter-spacing:0.514080px;}
.lsd_c03323{letter-spacing:0.536976px;}
.lsa_c03323{letter-spacing:0.579744px;}
.lsf_c03323{letter-spacing:0.594000px;}
.ls8_c03323{letter-spacing:0.598752px;}
.ls3_c03323{letter-spacing:0.613008px;}
.ls0_c03323{letter-spacing:0.717552px;}
.ls1_c03323{letter-spacing:0.722304px;}
.sc__c03323{text-shadow:none;}
.sc0_c03323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03323{-webkit-text-stroke:0px transparent;}
.sc0_c03323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03323{word-spacing:-15.126048px;}
.wsa_c03323{word-spacing:-12.474000px;}
.ws8_c03323{word-spacing:-12.459744px;}
.ws9_c03323{word-spacing:-12.416976px;}
.ws4_c03323{word-spacing:-11.637648px;}
.ws2_c03323{word-spacing:-11.266992px;}
.ws11_c03323{word-spacing:-1.083456px;}
.ws10_c03323{word-spacing:-1.078704px;}
.wsd_c03323{word-spacing:-0.974160px;}
.ws14_c03323{word-spacing:-0.719712px;}
.wsf_c03323{word-spacing:-0.118800px;}
.ws12_c03323{word-spacing:-0.099792px;}
.ws13_c03323{word-spacing:-0.085536px;}
.wse_c03323{word-spacing:0.000000px;}
.wsb_c03323{word-spacing:33.300288px;}
.ws6_c03323{word-spacing:36.742464px;}
.ws1_c03323{word-spacing:37.759392px;}
.ws0_c03323{word-spacing:38.020752px;}
.ws3_c03323{word-spacing:39.218256px;}
.ws5_c03323{word-spacing:39.902544px;}
.ws7_c03323{word-spacing:42.026688px;}
._0_c03323{margin-left:-1.948320px;}
._2_c03323{width:1.482624px;}
._4_c03323{width:5.749920px;}
._1_c03323{width:50.252400px;}
._3_c03323{width:51.530688px;}
.fc0_c03323{color:rgb(0,0,0);}
.fs0_c03323{font-size:47.520000px;}
.fs1_c03323{font-size:60.480000px;}
.y0_c03323{bottom:0.000000px;}
.y19_c03323{bottom:146.998362px;}
.y1b_c03323{bottom:186.600234px;}
.y1a_c03323{bottom:196.320450px;}
.y18_c03323{bottom:275.878542px;}
.y17_c03323{bottom:356.878758px;}
.y15_c03323{bottom:406.559730px;}
.y11_c03323{bottom:424.560306px;}
.y16_c03323{bottom:458.759262px;}
.y14_c03323{bottom:491.879514px;}
.y13_c03323{bottom:509.880090px;}
.y10_c03323{bottom:543.000342px;}
.y12_c03323{bottom:559.559874px;}
.yf_c03323{bottom:577.560450px;}
.y1c_c03323{bottom:614.280450px;}
.yb_c03323{bottom:667.558326px;}
.yd_c03323{bottom:707.160234px;}
.yc_c03323{bottom:716.880450px;}
.ya_c03323{bottom:796.438506px;}
.y9_c03323{bottom:877.438722px;}
.y7_c03323{bottom:926.759730px;}
.y3_c03323{bottom:944.760306px;}
.y8_c03323{bottom:979.319226px;}
.y6_c03323{bottom:1012.439478px;}
.y5_c03323{bottom:1030.440054px;}
.y2_c03323{bottom:1063.560306px;}
.y4_c03323{bottom:1079.759874px;}
.y1_c03323{bottom:1097.760450px;}
.ye_c03323{bottom:1134.840450px;}
.h3_c03323{height:32.530781px;}
.h1_c03323{height:41.696016px;}
.h2_c03323{height:41.812031px;}
.h4_c03323{height:54.654737px;}
.h0_c03323{height:1263.000000px;}
.w1_c03323{width:892.500000px;}
.w0_c03323{width:892.830000px;}
.x0_c03323{left:0.000000px;}
.xd_c03323{left:117.000000px;}
.x8_c03323{left:440.999856px;}
.x4_c03323{left:445.680576px;}
.xb_c03323{left:451.080000px;}
.x7_c03323{left:455.399604px;}
.x5_c03323{left:461.880144px;}
.x1_c03323{left:463.320000px;}
.xa_c03323{left:483.480360px;}
.x9_c03323{left:492.119496px;}
.x6_c03323{left:493.200576px;}
.xc_c03323{left:506.880360px;}
.x3_c03323{left:511.919892px;}
.x2_c03323{left:526.679604px;}
@media print{
.v0_c03323{vertical-align:0.000000pt;}
.v1_c03323{vertical-align:1.279488pt;}
.ls7_c03323{letter-spacing:-0.544896pt;}
.ls9_c03323{letter-spacing:-0.511104pt;}
.lse_c03323{letter-spacing:-0.244992pt;}
.lsc_c03323{letter-spacing:-0.232320pt;}
.ls6_c03323{letter-spacing:-0.215424pt;}
.ls4_c03323{letter-spacing:-0.105600pt;}
.ls11_c03323{letter-spacing:0.000000pt;}
.ls2_c03323{letter-spacing:0.005376pt;}
.ls5_c03323{letter-spacing:0.114048pt;}
.lsb_c03323{letter-spacing:0.451968pt;}
.ls10_c03323{letter-spacing:0.456960pt;}
.lsd_c03323{letter-spacing:0.477312pt;}
.lsa_c03323{letter-spacing:0.515328pt;}
.lsf_c03323{letter-spacing:0.528000pt;}
.ls8_c03323{letter-spacing:0.532224pt;}
.ls3_c03323{letter-spacing:0.544896pt;}
.ls0_c03323{letter-spacing:0.637824pt;}
.ls1_c03323{letter-spacing:0.642048pt;}
.wsc_c03323{word-spacing:-13.445376pt;}
.wsa_c03323{word-spacing:-11.088000pt;}
.ws8_c03323{word-spacing:-11.075328pt;}
.ws9_c03323{word-spacing:-11.037312pt;}
.ws4_c03323{word-spacing:-10.344576pt;}
.ws2_c03323{word-spacing:-10.015104pt;}
.ws11_c03323{word-spacing:-0.963072pt;}
.ws10_c03323{word-spacing:-0.958848pt;}
.wsd_c03323{word-spacing:-0.865920pt;}
.ws14_c03323{word-spacing:-0.639744pt;}
.wsf_c03323{word-spacing:-0.105600pt;}
.ws12_c03323{word-spacing:-0.088704pt;}
.ws13_c03323{word-spacing:-0.076032pt;}
.wse_c03323{word-spacing:0.000000pt;}
.wsb_c03323{word-spacing:29.600256pt;}
.ws6_c03323{word-spacing:32.659968pt;}
.ws1_c03323{word-spacing:33.563904pt;}
.ws0_c03323{word-spacing:33.796224pt;}
.ws3_c03323{word-spacing:34.860672pt;}
.ws5_c03323{word-spacing:35.468928pt;}
.ws7_c03323{word-spacing:37.357056pt;}
._0_c03323{margin-left:-1.731840pt;}
._2_c03323{width:1.317888pt;}
._4_c03323{width:5.111040pt;}
._1_c03323{width:44.668800pt;}
._3_c03323{width:45.805056pt;}
.fs0_c03323{font-size:42.240000pt;}
.fs1_c03323{font-size:53.760000pt;}
.y0_c03323{bottom:0.000000pt;}
.y19_c03323{bottom:130.665211pt;}
.y1b_c03323{bottom:165.866875pt;}
.y1a_c03323{bottom:174.507067pt;}
.y18_c03323{bottom:245.225371pt;}
.y17_c03323{bottom:317.225563pt;}
.y15_c03323{bottom:361.386427pt;}
.y11_c03323{bottom:377.386939pt;}
.y16_c03323{bottom:407.786011pt;}
.y14_c03323{bottom:437.226235pt;}
.y13_c03323{bottom:453.226747pt;}
.y10_c03323{bottom:482.666971pt;}
.y12_c03323{bottom:497.386555pt;}
.yf_c03323{bottom:513.387067pt;}
.y1c_c03323{bottom:546.027067pt;}
.yb_c03323{bottom:593.385179pt;}
.yd_c03323{bottom:628.586875pt;}
.yc_c03323{bottom:637.227067pt;}
.ya_c03323{bottom:707.945339pt;}
.y9_c03323{bottom:779.945531pt;}
.y7_c03323{bottom:823.786427pt;}
.y3_c03323{bottom:839.786939pt;}
.y8_c03323{bottom:870.505979pt;}
.y6_c03323{bottom:899.946203pt;}
.y5_c03323{bottom:915.946715pt;}
.y2_c03323{bottom:945.386939pt;}
.y4_c03323{bottom:959.786555pt;}
.y1_c03323{bottom:975.787067pt;}
.ye_c03323{bottom:1008.747067pt;}
.h3_c03323{height:28.916250pt;}
.h1_c03323{height:37.063125pt;}
.h2_c03323{height:37.166250pt;}
.h4_c03323{height:48.581988pt;}
.h0_c03323{height:1122.666667pt;}
.w1_c03323{width:793.333333pt;}
.w0_c03323{width:793.626667pt;}
.x0_c03323{left:0.000000pt;}
.xd_c03323{left:104.000000pt;}
.x8_c03323{left:391.999872pt;}
.x4_c03323{left:396.160512pt;}
.xb_c03323{left:400.960000pt;}
.x7_c03323{left:404.799648pt;}
.x5_c03323{left:410.560128pt;}
.x1_c03323{left:411.840000pt;}
.xa_c03323{left:429.760320pt;}
.x9_c03323{left:437.439552pt;}
.x6_c03323{left:438.400512pt;}
.xc_c03323{left:450.560320pt;}
.x3_c03323{left:455.039904pt;}
.x2_c03323{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03324 {
    display:none;
  }
  .loading-indicator_c03324.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03324 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03324 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03324" -> "#page-container .classname_c03324")
 */
.pf_c03324 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03324 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03324.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03324 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03324 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03324 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03324 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03324 {overflow:visible;}
  }
}
.c_c03324 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03324 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03324:after { /* webkit #35443 */
  content: '';
}
.t_c03324:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03324 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03324 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03324 { /* info for Javascript */
  display:none;
}
.l_c03324 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03324 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03324 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03324:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03324 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03324.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03324.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03324 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03324{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03324;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03324{font-family:ff1_c03324;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03324;src:url('chunks/assets/font_b00355b7cb5dcfdb0bd708a9.woff2')format("woff");}.ff2_c03324{font-family:ff2_c03324;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03324;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03324{font-family:ff3_c03324;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03324{vertical-align:0.000000px;}
.v1_c03324{vertical-align:1.439424px;}
.lsb_c03324{letter-spacing:-0.793584px;}
.lsc_c03324{letter-spacing:-0.755568px;}
.ls6_c03324{letter-spacing:-0.613008px;}
.ls8_c03324{letter-spacing:-0.574992px;}
.lsf_c03324{letter-spacing:-0.275616px;}
.lsd_c03324{letter-spacing:-0.261360px;}
.ls5_c03324{letter-spacing:-0.242352px;}
.ls3_c03324{letter-spacing:-0.118800px;}
.ls12_c03324{letter-spacing:0.000000px;}
.ls1_c03324{letter-spacing:0.006048px;}
.ls4_c03324{letter-spacing:0.128304px;}
.lsa_c03324{letter-spacing:0.508464px;}
.ls11_c03324{letter-spacing:0.514080px;}
.lse_c03324{letter-spacing:0.536976px;}
.ls9_c03324{letter-spacing:0.579744px;}
.ls10_c03324{letter-spacing:0.594000px;}
.ls7_c03324{letter-spacing:0.598752px;}
.ls2_c03324{letter-spacing:0.613008px;}
.ls0_c03324{letter-spacing:0.717552px;}
.sc__c03324{text-shadow:none;}
.sc0_c03324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03324{-webkit-text-stroke:0px transparent;}
.sc0_c03324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03324{word-spacing:-15.126048px;}
.wsa_c03324{word-spacing:-12.474000px;}
.ws6_c03324{word-spacing:-12.459744px;}
.ws9_c03324{word-spacing:-12.416976px;}
.ws4_c03324{word-spacing:-11.637648px;}
.ws2_c03324{word-spacing:-11.266992px;}
.ws10_c03324{word-spacing:-1.078704px;}
.wsd_c03324{word-spacing:-0.974160px;}
.ws15_c03324{word-spacing:-0.719712px;}
.wsf_c03324{word-spacing:-0.118800px;}
.ws13_c03324{word-spacing:-0.099792px;}
.ws14_c03324{word-spacing:-0.085536px;}
.wse_c03324{word-spacing:0.000000px;}
.ws12_c03324{word-spacing:0.394416px;}
.ws11_c03324{word-spacing:0.432432px;}
.wsb_c03324{word-spacing:33.300288px;}
.ws8_c03324{word-spacing:36.143712px;}
.ws1_c03324{word-spacing:37.759392px;}
.ws0_c03324{word-spacing:38.020752px;}
.ws3_c03324{word-spacing:39.218256px;}
.ws5_c03324{word-spacing:39.902544px;}
.ws7_c03324{word-spacing:42.026688px;}
._0_c03324{margin-left:-1.948320px;}
._2_c03324{width:1.482624px;}
._4_c03324{width:5.749920px;}
._1_c03324{width:50.252400px;}
._3_c03324{width:51.530688px;}
.fc0_c03324{color:rgb(0,0,0);}
.fs0_c03324{font-size:47.520000px;}
.fs1_c03324{font-size:60.480000px;}
.y0_c03324{bottom:0.000000px;}
.y19_c03324{bottom:146.998362px;}
.y1b_c03324{bottom:186.600234px;}
.y1a_c03324{bottom:196.320450px;}
.y18_c03324{bottom:275.878542px;}
.y17_c03324{bottom:356.878758px;}
.y15_c03324{bottom:406.559730px;}
.y11_c03324{bottom:424.560306px;}
.y16_c03324{bottom:458.759262px;}
.y14_c03324{bottom:491.879514px;}
.y13_c03324{bottom:509.880090px;}
.y10_c03324{bottom:543.000342px;}
.y12_c03324{bottom:559.559874px;}
.yf_c03324{bottom:577.560450px;}
.y1c_c03324{bottom:614.280450px;}
.yb_c03324{bottom:667.558326px;}
.yd_c03324{bottom:707.160234px;}
.yc_c03324{bottom:716.880450px;}
.ya_c03324{bottom:796.438506px;}
.y9_c03324{bottom:877.438722px;}
.y7_c03324{bottom:926.759730px;}
.y3_c03324{bottom:944.760306px;}
.y8_c03324{bottom:979.319226px;}
.y6_c03324{bottom:1012.439478px;}
.y5_c03324{bottom:1030.440054px;}
.y2_c03324{bottom:1063.560306px;}
.y4_c03324{bottom:1079.759874px;}
.y1_c03324{bottom:1097.760450px;}
.ye_c03324{bottom:1134.840450px;}
.h3_c03324{height:32.530781px;}
.h1_c03324{height:41.696016px;}
.h2_c03324{height:41.812031px;}
.h4_c03324{height:54.654737px;}
.h0_c03324{height:1263.000000px;}
.w1_c03324{width:892.500000px;}
.w0_c03324{width:892.830000px;}
.x0_c03324{left:0.000000px;}
.xd_c03324{left:117.000000px;}
.x8_c03324{left:440.999856px;}
.x4_c03324{left:445.680576px;}
.xb_c03324{left:451.080000px;}
.x7_c03324{left:455.399604px;}
.x5_c03324{left:461.880144px;}
.x1_c03324{left:463.320000px;}
.xa_c03324{left:483.480360px;}
.x9_c03324{left:492.119496px;}
.x6_c03324{left:493.200576px;}
.xc_c03324{left:506.880360px;}
.x3_c03324{left:511.919892px;}
.x2_c03324{left:526.679604px;}
@media print{
.v0_c03324{vertical-align:0.000000pt;}
.v1_c03324{vertical-align:1.279488pt;}
.lsb_c03324{letter-spacing:-0.705408pt;}
.lsc_c03324{letter-spacing:-0.671616pt;}
.ls6_c03324{letter-spacing:-0.544896pt;}
.ls8_c03324{letter-spacing:-0.511104pt;}
.lsf_c03324{letter-spacing:-0.244992pt;}
.lsd_c03324{letter-spacing:-0.232320pt;}
.ls5_c03324{letter-spacing:-0.215424pt;}
.ls3_c03324{letter-spacing:-0.105600pt;}
.ls12_c03324{letter-spacing:0.000000pt;}
.ls1_c03324{letter-spacing:0.005376pt;}
.ls4_c03324{letter-spacing:0.114048pt;}
.lsa_c03324{letter-spacing:0.451968pt;}
.ls11_c03324{letter-spacing:0.456960pt;}
.lse_c03324{letter-spacing:0.477312pt;}
.ls9_c03324{letter-spacing:0.515328pt;}
.ls10_c03324{letter-spacing:0.528000pt;}
.ls7_c03324{letter-spacing:0.532224pt;}
.ls2_c03324{letter-spacing:0.544896pt;}
.ls0_c03324{letter-spacing:0.637824pt;}
.wsc_c03324{word-spacing:-13.445376pt;}
.wsa_c03324{word-spacing:-11.088000pt;}
.ws6_c03324{word-spacing:-11.075328pt;}
.ws9_c03324{word-spacing:-11.037312pt;}
.ws4_c03324{word-spacing:-10.344576pt;}
.ws2_c03324{word-spacing:-10.015104pt;}
.ws10_c03324{word-spacing:-0.958848pt;}
.wsd_c03324{word-spacing:-0.865920pt;}
.ws15_c03324{word-spacing:-0.639744pt;}
.wsf_c03324{word-spacing:-0.105600pt;}
.ws13_c03324{word-spacing:-0.088704pt;}
.ws14_c03324{word-spacing:-0.076032pt;}
.wse_c03324{word-spacing:0.000000pt;}
.ws12_c03324{word-spacing:0.350592pt;}
.ws11_c03324{word-spacing:0.384384pt;}
.wsb_c03324{word-spacing:29.600256pt;}
.ws8_c03324{word-spacing:32.127744pt;}
.ws1_c03324{word-spacing:33.563904pt;}
.ws0_c03324{word-spacing:33.796224pt;}
.ws3_c03324{word-spacing:34.860672pt;}
.ws5_c03324{word-spacing:35.468928pt;}
.ws7_c03324{word-spacing:37.357056pt;}
._0_c03324{margin-left:-1.731840pt;}
._2_c03324{width:1.317888pt;}
._4_c03324{width:5.111040pt;}
._1_c03324{width:44.668800pt;}
._3_c03324{width:45.805056pt;}
.fs0_c03324{font-size:42.240000pt;}
.fs1_c03324{font-size:53.760000pt;}
.y0_c03324{bottom:0.000000pt;}
.y19_c03324{bottom:130.665211pt;}
.y1b_c03324{bottom:165.866875pt;}
.y1a_c03324{bottom:174.507067pt;}
.y18_c03324{bottom:245.225371pt;}
.y17_c03324{bottom:317.225563pt;}
.y15_c03324{bottom:361.386427pt;}
.y11_c03324{bottom:377.386939pt;}
.y16_c03324{bottom:407.786011pt;}
.y14_c03324{bottom:437.226235pt;}
.y13_c03324{bottom:453.226747pt;}
.y10_c03324{bottom:482.666971pt;}
.y12_c03324{bottom:497.386555pt;}
.yf_c03324{bottom:513.387067pt;}
.y1c_c03324{bottom:546.027067pt;}
.yb_c03324{bottom:593.385179pt;}
.yd_c03324{bottom:628.586875pt;}
.yc_c03324{bottom:637.227067pt;}
.ya_c03324{bottom:707.945339pt;}
.y9_c03324{bottom:779.945531pt;}
.y7_c03324{bottom:823.786427pt;}
.y3_c03324{bottom:839.786939pt;}
.y8_c03324{bottom:870.505979pt;}
.y6_c03324{bottom:899.946203pt;}
.y5_c03324{bottom:915.946715pt;}
.y2_c03324{bottom:945.386939pt;}
.y4_c03324{bottom:959.786555pt;}
.y1_c03324{bottom:975.787067pt;}
.ye_c03324{bottom:1008.747067pt;}
.h3_c03324{height:28.916250pt;}
.h1_c03324{height:37.063125pt;}
.h2_c03324{height:37.166250pt;}
.h4_c03324{height:48.581988pt;}
.h0_c03324{height:1122.666667pt;}
.w1_c03324{width:793.333333pt;}
.w0_c03324{width:793.626667pt;}
.x0_c03324{left:0.000000pt;}
.xd_c03324{left:104.000000pt;}
.x8_c03324{left:391.999872pt;}
.x4_c03324{left:396.160512pt;}
.xb_c03324{left:400.960000pt;}
.x7_c03324{left:404.799648pt;}
.x5_c03324{left:410.560128pt;}
.x1_c03324{left:411.840000pt;}
.xa_c03324{left:429.760320pt;}
.x9_c03324{left:437.439552pt;}
.x6_c03324{left:438.400512pt;}
.xc_c03324{left:450.560320pt;}
.x3_c03324{left:455.039904pt;}
.x2_c03324{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03325 {
    display:none;
  }
  .loading-indicator_c03325.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03325 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03325 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03325" -> "#page-container .classname_c03325")
 */
.pf_c03325 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03325 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03325.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03325 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03325 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03325 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03325 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03325 {overflow:visible;}
  }
}
.c_c03325 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03325 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03325:after { /* webkit #35443 */
  content: '';
}
.t_c03325:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03325 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03325 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03325 { /* info for Javascript */
  display:none;
}
.l_c03325 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03325 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03325 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03325:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03325 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03325.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03325.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03325 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03325{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03325;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03325{font-family:ff1_c03325;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03325;src:url('chunks/assets/font_6b35150eba81983d41bc4a40.woff2')format("woff");}.ff2_c03325{font-family:ff2_c03325;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03325;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03325{font-family:ff3_c03325;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03325{vertical-align:0.000000px;}
.v1_c03325{vertical-align:1.439424px;}
.lsb_c03325{letter-spacing:-0.793584px;}
.lsf_c03325{letter-spacing:-0.736560px;}
.ls6_c03325{letter-spacing:-0.613008px;}
.ls8_c03325{letter-spacing:-0.574992px;}
.lsc_c03325{letter-spacing:-0.304128px;}
.ls10_c03325{letter-spacing:-0.270864px;}
.lsd_c03325{letter-spacing:-0.261360px;}
.ls5_c03325{letter-spacing:-0.242352px;}
.ls3_c03325{letter-spacing:-0.118800px;}
.ls13_c03325{letter-spacing:0.000000px;}
.ls1_c03325{letter-spacing:0.006048px;}
.ls4_c03325{letter-spacing:0.128304px;}
.lsa_c03325{letter-spacing:0.508464px;}
.ls12_c03325{letter-spacing:0.514080px;}
.lse_c03325{letter-spacing:0.536976px;}
.ls9_c03325{letter-spacing:0.579744px;}
.ls11_c03325{letter-spacing:0.594000px;}
.ls7_c03325{letter-spacing:0.598752px;}
.ls2_c03325{letter-spacing:0.613008px;}
.ls0_c03325{letter-spacing:0.717552px;}
.sc__c03325{text-shadow:none;}
.sc0_c03325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03325{-webkit-text-stroke:0px transparent;}
.sc0_c03325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03325{word-spacing:-15.126048px;}
.wsb_c03325{word-spacing:-12.474000px;}
.ws6_c03325{word-spacing:-12.459744px;}
.ws4_c03325{word-spacing:-11.637648px;}
.ws2_c03325{word-spacing:-11.266992px;}
.ws11_c03325{word-spacing:-1.078704px;}
.wse_c03325{word-spacing:-0.974160px;}
.ws17_c03325{word-spacing:-0.719712px;}
.ws10_c03325{word-spacing:-0.118800px;}
.ws14_c03325{word-spacing:-0.099792px;}
.ws15_c03325{word-spacing:-0.090288px;}
.ws16_c03325{word-spacing:-0.085536px;}
.ws13_c03325{word-spacing:-0.057024px;}
.wsf_c03325{word-spacing:0.000000px;}
.ws12_c03325{word-spacing:0.432432px;}
.wsa_c03325{word-spacing:6.629040px;}
.wsc_c03325{word-spacing:33.300288px;}
.ws9_c03325{word-spacing:34.836912px;}
.ws8_c03325{word-spacing:36.143712px;}
.ws1_c03325{word-spacing:37.759392px;}
.ws0_c03325{word-spacing:38.020752px;}
.ws3_c03325{word-spacing:39.218256px;}
.ws5_c03325{word-spacing:39.902544px;}
.ws7_c03325{word-spacing:42.026688px;}
._0_c03325{margin-left:-1.948320px;}
._2_c03325{width:1.482624px;}
._4_c03325{width:5.749920px;}
._6_c03325{width:19.982160px;}
._7_c03325{width:23.451120px;}
._5_c03325{width:24.691392px;}
._1_c03325{width:50.252400px;}
._3_c03325{width:51.530688px;}
.fc0_c03325{color:rgb(0,0,0);}
.fs0_c03325{font-size:47.520000px;}
.fs1_c03325{font-size:60.480000px;}
.y0_c03325{bottom:0.000000px;}
.y1b_c03325{bottom:131.878686px;}
.y1a_c03325{bottom:146.998362px;}
.y1d_c03325{bottom:186.600234px;}
.y1c_c03325{bottom:196.320450px;}
.y19_c03325{bottom:275.878542px;}
.y18_c03325{bottom:356.878758px;}
.y16_c03325{bottom:406.559730px;}
.y12_c03325{bottom:424.560306px;}
.y17_c03325{bottom:458.759262px;}
.y15_c03325{bottom:491.879514px;}
.y14_c03325{bottom:509.880090px;}
.y11_c03325{bottom:543.000342px;}
.y13_c03325{bottom:559.559874px;}
.y10_c03325{bottom:577.560450px;}
.y1e_c03325{bottom:614.280450px;}
.yc_c03325{bottom:652.438650px;}
.yb_c03325{bottom:667.558326px;}
.ye_c03325{bottom:707.160234px;}
.yd_c03325{bottom:716.880450px;}
.ya_c03325{bottom:796.438506px;}
.y9_c03325{bottom:877.438722px;}
.y7_c03325{bottom:926.759730px;}
.y3_c03325{bottom:944.760306px;}
.y8_c03325{bottom:979.319226px;}
.y6_c03325{bottom:1012.439478px;}
.y5_c03325{bottom:1030.440054px;}
.y2_c03325{bottom:1063.560306px;}
.y4_c03325{bottom:1079.759874px;}
.y1_c03325{bottom:1097.760450px;}
.yf_c03325{bottom:1134.840450px;}
.h3_c03325{height:32.530781px;}
.h1_c03325{height:41.696016px;}
.h2_c03325{height:41.812031px;}
.h4_c03325{height:54.654737px;}
.h0_c03325{height:1263.000000px;}
.w1_c03325{width:892.500000px;}
.w0_c03325{width:892.830000px;}
.x0_c03325{left:0.000000px;}
.xe_c03325{left:117.000000px;}
.x8_c03325{left:440.999856px;}
.x4_c03325{left:445.680576px;}
.xc_c03325{left:451.080000px;}
.x7_c03325{left:455.399604px;}
.x5_c03325{left:461.880144px;}
.x1_c03325{left:463.320000px;}
.xa_c03325{left:483.480360px;}
.x9_c03325{left:492.119496px;}
.x6_c03325{left:493.200576px;}
.xd_c03325{left:506.880360px;}
.x3_c03325{left:511.919892px;}
.x2_c03325{left:526.679604px;}
.xb_c03325{left:569.880036px;}
@media print{
.v0_c03325{vertical-align:0.000000pt;}
.v1_c03325{vertical-align:1.279488pt;}
.lsb_c03325{letter-spacing:-0.705408pt;}
.lsf_c03325{letter-spacing:-0.654720pt;}
.ls6_c03325{letter-spacing:-0.544896pt;}
.ls8_c03325{letter-spacing:-0.511104pt;}
.lsc_c03325{letter-spacing:-0.270336pt;}
.ls10_c03325{letter-spacing:-0.240768pt;}
.lsd_c03325{letter-spacing:-0.232320pt;}
.ls5_c03325{letter-spacing:-0.215424pt;}
.ls3_c03325{letter-spacing:-0.105600pt;}
.ls13_c03325{letter-spacing:0.000000pt;}
.ls1_c03325{letter-spacing:0.005376pt;}
.ls4_c03325{letter-spacing:0.114048pt;}
.lsa_c03325{letter-spacing:0.451968pt;}
.ls12_c03325{letter-spacing:0.456960pt;}
.lse_c03325{letter-spacing:0.477312pt;}
.ls9_c03325{letter-spacing:0.515328pt;}
.ls11_c03325{letter-spacing:0.528000pt;}
.ls7_c03325{letter-spacing:0.532224pt;}
.ls2_c03325{letter-spacing:0.544896pt;}
.ls0_c03325{letter-spacing:0.637824pt;}
.wsd_c03325{word-spacing:-13.445376pt;}
.wsb_c03325{word-spacing:-11.088000pt;}
.ws6_c03325{word-spacing:-11.075328pt;}
.ws4_c03325{word-spacing:-10.344576pt;}
.ws2_c03325{word-spacing:-10.015104pt;}
.ws11_c03325{word-spacing:-0.958848pt;}
.wse_c03325{word-spacing:-0.865920pt;}
.ws17_c03325{word-spacing:-0.639744pt;}
.ws10_c03325{word-spacing:-0.105600pt;}
.ws14_c03325{word-spacing:-0.088704pt;}
.ws15_c03325{word-spacing:-0.080256pt;}
.ws16_c03325{word-spacing:-0.076032pt;}
.ws13_c03325{word-spacing:-0.050688pt;}
.wsf_c03325{word-spacing:0.000000pt;}
.ws12_c03325{word-spacing:0.384384pt;}
.wsa_c03325{word-spacing:5.892480pt;}
.wsc_c03325{word-spacing:29.600256pt;}
.ws9_c03325{word-spacing:30.966144pt;}
.ws8_c03325{word-spacing:32.127744pt;}
.ws1_c03325{word-spacing:33.563904pt;}
.ws0_c03325{word-spacing:33.796224pt;}
.ws3_c03325{word-spacing:34.860672pt;}
.ws5_c03325{word-spacing:35.468928pt;}
.ws7_c03325{word-spacing:37.357056pt;}
._0_c03325{margin-left:-1.731840pt;}
._2_c03325{width:1.317888pt;}
._4_c03325{width:5.111040pt;}
._6_c03325{width:17.761920pt;}
._7_c03325{width:20.845440pt;}
._5_c03325{width:21.947904pt;}
._1_c03325{width:44.668800pt;}
._3_c03325{width:45.805056pt;}
.fs0_c03325{font-size:42.240000pt;}
.fs1_c03325{font-size:53.760000pt;}
.y0_c03325{bottom:0.000000pt;}
.y1b_c03325{bottom:117.225499pt;}
.y1a_c03325{bottom:130.665211pt;}
.y1d_c03325{bottom:165.866875pt;}
.y1c_c03325{bottom:174.507067pt;}
.y19_c03325{bottom:245.225371pt;}
.y18_c03325{bottom:317.225563pt;}
.y16_c03325{bottom:361.386427pt;}
.y12_c03325{bottom:377.386939pt;}
.y17_c03325{bottom:407.786011pt;}
.y15_c03325{bottom:437.226235pt;}
.y14_c03325{bottom:453.226747pt;}
.y11_c03325{bottom:482.666971pt;}
.y13_c03325{bottom:497.386555pt;}
.y10_c03325{bottom:513.387067pt;}
.y1e_c03325{bottom:546.027067pt;}
.yc_c03325{bottom:579.945467pt;}
.yb_c03325{bottom:593.385179pt;}
.ye_c03325{bottom:628.586875pt;}
.yd_c03325{bottom:637.227067pt;}
.ya_c03325{bottom:707.945339pt;}
.y9_c03325{bottom:779.945531pt;}
.y7_c03325{bottom:823.786427pt;}
.y3_c03325{bottom:839.786939pt;}
.y8_c03325{bottom:870.505979pt;}
.y6_c03325{bottom:899.946203pt;}
.y5_c03325{bottom:915.946715pt;}
.y2_c03325{bottom:945.386939pt;}
.y4_c03325{bottom:959.786555pt;}
.y1_c03325{bottom:975.787067pt;}
.yf_c03325{bottom:1008.747067pt;}
.h3_c03325{height:28.916250pt;}
.h1_c03325{height:37.063125pt;}
.h2_c03325{height:37.166250pt;}
.h4_c03325{height:48.581988pt;}
.h0_c03325{height:1122.666667pt;}
.w1_c03325{width:793.333333pt;}
.w0_c03325{width:793.626667pt;}
.x0_c03325{left:0.000000pt;}
.xe_c03325{left:104.000000pt;}
.x8_c03325{left:391.999872pt;}
.x4_c03325{left:396.160512pt;}
.xc_c03325{left:400.960000pt;}
.x7_c03325{left:404.799648pt;}
.x5_c03325{left:410.560128pt;}
.x1_c03325{left:411.840000pt;}
.xa_c03325{left:429.760320pt;}
.x9_c03325{left:437.439552pt;}
.x6_c03325{left:438.400512pt;}
.xd_c03325{left:450.560320pt;}
.x3_c03325{left:455.039904pt;}
.x2_c03325{left:468.159648pt;}
.xb_c03325{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03326 {
    display:none;
  }
  .loading-indicator_c03326.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03326 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03326 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03326" -> "#page-container .classname_c03326")
 */
.pf_c03326 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03326 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03326.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03326 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03326 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03326 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03326 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03326 {overflow:visible;}
  }
}
.c_c03326 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03326 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03326:after { /* webkit #35443 */
  content: '';
}
.t_c03326:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03326 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03326 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03326 { /* info for Javascript */
  display:none;
}
.l_c03326 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03326 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03326 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03326:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03326 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03326.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03326.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03326 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03326{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03326;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03326{font-family:ff1_c03326;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03326;src:url('chunks/assets/font_bbcf554e6bcf50ea78e5da8d.woff2')format("woff");}.ff2_c03326{font-family:ff2_c03326;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03326;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03326{font-family:ff3_c03326;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03326{vertical-align:0.000000px;}
.v1_c03326{vertical-align:1.439424px;}
.lsc_c03326{letter-spacing:-0.793584px;}
.ls10_c03326{letter-spacing:-0.736560px;}
.ls7_c03326{letter-spacing:-0.613008px;}
.ls9_c03326{letter-spacing:-0.574992px;}
.lsd_c03326{letter-spacing:-0.304128px;}
.ls15_c03326{letter-spacing:-0.275616px;}
.ls11_c03326{letter-spacing:-0.270864px;}
.lse_c03326{letter-spacing:-0.261360px;}
.ls6_c03326{letter-spacing:-0.242352px;}
.ls4_c03326{letter-spacing:-0.118800px;}
.ls14_c03326{letter-spacing:0.000000px;}
.ls1_c03326{letter-spacing:0.006048px;}
.ls5_c03326{letter-spacing:0.128304px;}
.lsb_c03326{letter-spacing:0.508464px;}
.ls13_c03326{letter-spacing:0.514080px;}
.lsf_c03326{letter-spacing:0.536976px;}
.lsa_c03326{letter-spacing:0.579744px;}
.ls12_c03326{letter-spacing:0.594000px;}
.ls8_c03326{letter-spacing:0.598752px;}
.ls3_c03326{letter-spacing:0.613008px;}
.ls0_c03326{letter-spacing:0.717552px;}
.ls2_c03326{letter-spacing:0.722304px;}
.sc__c03326{text-shadow:none;}
.sc0_c03326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03326{-webkit-text-stroke:0px transparent;}
.sc0_c03326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03326{word-spacing:-15.126048px;}
.wsb_c03326{word-spacing:-12.474000px;}
.ws6_c03326{word-spacing:-12.459744px;}
.wsf_c03326{word-spacing:-12.416976px;}
.ws4_c03326{word-spacing:-11.637648px;}
.ws2_c03326{word-spacing:-11.266992px;}
.ws1a_c03326{word-spacing:-1.083456px;}
.ws13_c03326{word-spacing:-1.078704px;}
.ws10_c03326{word-spacing:-0.974160px;}
.ws19_c03326{word-spacing:-0.719712px;}
.ws12_c03326{word-spacing:-0.118800px;}
.ws16_c03326{word-spacing:-0.099792px;}
.ws17_c03326{word-spacing:-0.090288px;}
.ws18_c03326{word-spacing:-0.085536px;}
.ws15_c03326{word-spacing:-0.057024px;}
.ws11_c03326{word-spacing:0.000000px;}
.ws14_c03326{word-spacing:0.432432px;}
.wsa_c03326{word-spacing:6.629040px;}
.wsc_c03326{word-spacing:33.300288px;}
.ws9_c03326{word-spacing:34.836912px;}
.ws8_c03326{word-spacing:36.143712px;}
.wse_c03326{word-spacing:36.742464px;}
.ws1_c03326{word-spacing:37.759392px;}
.ws0_c03326{word-spacing:38.020752px;}
.ws3_c03326{word-spacing:39.218256px;}
.ws5_c03326{word-spacing:39.902544px;}
.ws7_c03326{word-spacing:42.026688px;}
._0_c03326{margin-left:-1.948320px;}
._2_c03326{width:1.482624px;}
._4_c03326{width:5.749920px;}
._6_c03326{width:19.982160px;}
._7_c03326{width:23.451120px;}
._5_c03326{width:24.691392px;}
._1_c03326{width:50.252400px;}
._3_c03326{width:51.530688px;}
.fc0_c03326{color:rgb(0,0,0);}
.fs0_c03326{font-size:47.520000px;}
.fs1_c03326{font-size:60.480000px;}
.y0_c03326{bottom:0.000000px;}
.y1a_c03326{bottom:146.998362px;}
.y1c_c03326{bottom:186.600234px;}
.y1b_c03326{bottom:196.320450px;}
.y19_c03326{bottom:275.878542px;}
.y18_c03326{bottom:356.878758px;}
.y16_c03326{bottom:406.559730px;}
.y12_c03326{bottom:424.560306px;}
.y17_c03326{bottom:458.759262px;}
.y15_c03326{bottom:491.879514px;}
.y14_c03326{bottom:509.880090px;}
.y11_c03326{bottom:543.000342px;}
.y13_c03326{bottom:559.559874px;}
.y10_c03326{bottom:577.560450px;}
.y1d_c03326{bottom:614.280450px;}
.yc_c03326{bottom:652.438650px;}
.yb_c03326{bottom:667.558326px;}
.ye_c03326{bottom:707.160234px;}
.yd_c03326{bottom:716.880450px;}
.ya_c03326{bottom:796.438506px;}
.y9_c03326{bottom:877.438722px;}
.y7_c03326{bottom:926.759730px;}
.y3_c03326{bottom:944.760306px;}
.y8_c03326{bottom:979.319226px;}
.y6_c03326{bottom:1012.439478px;}
.y5_c03326{bottom:1030.440054px;}
.y2_c03326{bottom:1063.560306px;}
.y4_c03326{bottom:1079.759874px;}
.y1_c03326{bottom:1097.760450px;}
.yf_c03326{bottom:1134.840450px;}
.h3_c03326{height:32.530781px;}
.h1_c03326{height:41.696016px;}
.h2_c03326{height:41.812031px;}
.h4_c03326{height:54.654737px;}
.h0_c03326{height:1263.000000px;}
.w1_c03326{width:892.500000px;}
.w0_c03326{width:892.830000px;}
.x0_c03326{left:0.000000px;}
.xe_c03326{left:117.000000px;}
.x8_c03326{left:440.999856px;}
.x4_c03326{left:445.680576px;}
.xc_c03326{left:451.080000px;}
.x7_c03326{left:455.399604px;}
.x5_c03326{left:461.880144px;}
.x1_c03326{left:463.320000px;}
.xa_c03326{left:483.480360px;}
.x9_c03326{left:492.119496px;}
.x6_c03326{left:493.200576px;}
.xd_c03326{left:506.880360px;}
.x3_c03326{left:511.919892px;}
.x2_c03326{left:526.679604px;}
.xb_c03326{left:569.880036px;}
@media print{
.v0_c03326{vertical-align:0.000000pt;}
.v1_c03326{vertical-align:1.279488pt;}
.lsc_c03326{letter-spacing:-0.705408pt;}
.ls10_c03326{letter-spacing:-0.654720pt;}
.ls7_c03326{letter-spacing:-0.544896pt;}
.ls9_c03326{letter-spacing:-0.511104pt;}
.lsd_c03326{letter-spacing:-0.270336pt;}
.ls15_c03326{letter-spacing:-0.244992pt;}
.ls11_c03326{letter-spacing:-0.240768pt;}
.lse_c03326{letter-spacing:-0.232320pt;}
.ls6_c03326{letter-spacing:-0.215424pt;}
.ls4_c03326{letter-spacing:-0.105600pt;}
.ls14_c03326{letter-spacing:0.000000pt;}
.ls1_c03326{letter-spacing:0.005376pt;}
.ls5_c03326{letter-spacing:0.114048pt;}
.lsb_c03326{letter-spacing:0.451968pt;}
.ls13_c03326{letter-spacing:0.456960pt;}
.lsf_c03326{letter-spacing:0.477312pt;}
.lsa_c03326{letter-spacing:0.515328pt;}
.ls12_c03326{letter-spacing:0.528000pt;}
.ls8_c03326{letter-spacing:0.532224pt;}
.ls3_c03326{letter-spacing:0.544896pt;}
.ls0_c03326{letter-spacing:0.637824pt;}
.ls2_c03326{letter-spacing:0.642048pt;}
.wsd_c03326{word-spacing:-13.445376pt;}
.wsb_c03326{word-spacing:-11.088000pt;}
.ws6_c03326{word-spacing:-11.075328pt;}
.wsf_c03326{word-spacing:-11.037312pt;}
.ws4_c03326{word-spacing:-10.344576pt;}
.ws2_c03326{word-spacing:-10.015104pt;}
.ws1a_c03326{word-spacing:-0.963072pt;}
.ws13_c03326{word-spacing:-0.958848pt;}
.ws10_c03326{word-spacing:-0.865920pt;}
.ws19_c03326{word-spacing:-0.639744pt;}
.ws12_c03326{word-spacing:-0.105600pt;}
.ws16_c03326{word-spacing:-0.088704pt;}
.ws17_c03326{word-spacing:-0.080256pt;}
.ws18_c03326{word-spacing:-0.076032pt;}
.ws15_c03326{word-spacing:-0.050688pt;}
.ws11_c03326{word-spacing:0.000000pt;}
.ws14_c03326{word-spacing:0.384384pt;}
.wsa_c03326{word-spacing:5.892480pt;}
.wsc_c03326{word-spacing:29.600256pt;}
.ws9_c03326{word-spacing:30.966144pt;}
.ws8_c03326{word-spacing:32.127744pt;}
.wse_c03326{word-spacing:32.659968pt;}
.ws1_c03326{word-spacing:33.563904pt;}
.ws0_c03326{word-spacing:33.796224pt;}
.ws3_c03326{word-spacing:34.860672pt;}
.ws5_c03326{word-spacing:35.468928pt;}
.ws7_c03326{word-spacing:37.357056pt;}
._0_c03326{margin-left:-1.731840pt;}
._2_c03326{width:1.317888pt;}
._4_c03326{width:5.111040pt;}
._6_c03326{width:17.761920pt;}
._7_c03326{width:20.845440pt;}
._5_c03326{width:21.947904pt;}
._1_c03326{width:44.668800pt;}
._3_c03326{width:45.805056pt;}
.fs0_c03326{font-size:42.240000pt;}
.fs1_c03326{font-size:53.760000pt;}
.y0_c03326{bottom:0.000000pt;}
.y1a_c03326{bottom:130.665211pt;}
.y1c_c03326{bottom:165.866875pt;}
.y1b_c03326{bottom:174.507067pt;}
.y19_c03326{bottom:245.225371pt;}
.y18_c03326{bottom:317.225563pt;}
.y16_c03326{bottom:361.386427pt;}
.y12_c03326{bottom:377.386939pt;}
.y17_c03326{bottom:407.786011pt;}
.y15_c03326{bottom:437.226235pt;}
.y14_c03326{bottom:453.226747pt;}
.y11_c03326{bottom:482.666971pt;}
.y13_c03326{bottom:497.386555pt;}
.y10_c03326{bottom:513.387067pt;}
.y1d_c03326{bottom:546.027067pt;}
.yc_c03326{bottom:579.945467pt;}
.yb_c03326{bottom:593.385179pt;}
.ye_c03326{bottom:628.586875pt;}
.yd_c03326{bottom:637.227067pt;}
.ya_c03326{bottom:707.945339pt;}
.y9_c03326{bottom:779.945531pt;}
.y7_c03326{bottom:823.786427pt;}
.y3_c03326{bottom:839.786939pt;}
.y8_c03326{bottom:870.505979pt;}
.y6_c03326{bottom:899.946203pt;}
.y5_c03326{bottom:915.946715pt;}
.y2_c03326{bottom:945.386939pt;}
.y4_c03326{bottom:959.786555pt;}
.y1_c03326{bottom:975.787067pt;}
.yf_c03326{bottom:1008.747067pt;}
.h3_c03326{height:28.916250pt;}
.h1_c03326{height:37.063125pt;}
.h2_c03326{height:37.166250pt;}
.h4_c03326{height:48.581988pt;}
.h0_c03326{height:1122.666667pt;}
.w1_c03326{width:793.333333pt;}
.w0_c03326{width:793.626667pt;}
.x0_c03326{left:0.000000pt;}
.xe_c03326{left:104.000000pt;}
.x8_c03326{left:391.999872pt;}
.x4_c03326{left:396.160512pt;}
.xc_c03326{left:400.960000pt;}
.x7_c03326{left:404.799648pt;}
.x5_c03326{left:410.560128pt;}
.x1_c03326{left:411.840000pt;}
.xa_c03326{left:429.760320pt;}
.x9_c03326{left:437.439552pt;}
.x6_c03326{left:438.400512pt;}
.xd_c03326{left:450.560320pt;}
.x3_c03326{left:455.039904pt;}
.x2_c03326{left:468.159648pt;}
.xb_c03326{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03327 {
    display:none;
  }
  .loading-indicator_c03327.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03327 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03327 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03327" -> "#page-container .classname_c03327")
 */
.pf_c03327 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03327 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03327.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03327 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03327 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03327 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03327 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03327 {overflow:visible;}
  }
}
.c_c03327 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03327 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03327:after { /* webkit #35443 */
  content: '';
}
.t_c03327:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03327 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03327 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03327 { /* info for Javascript */
  display:none;
}
.l_c03327 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03327 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03327 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03327:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03327 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03327.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03327.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03327 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03327{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03327;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03327{font-family:ff1_c03327;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03327;src:url('chunks/assets/font_ec41e5c23b3b31b5a8926173.woff2')format("woff");}.ff2_c03327{font-family:ff2_c03327;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03327;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03327{font-family:ff3_c03327;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03327{vertical-align:0.000000px;}
.v1_c03327{vertical-align:1.439424px;}
.ls12_c03327{letter-spacing:-0.793584px;}
.ls14_c03327{letter-spacing:-0.736560px;}
.ls7_c03327{letter-spacing:-0.613008px;}
.ls9_c03327{letter-spacing:-0.574992px;}
.ls13_c03327{letter-spacing:-0.304128px;}
.lse_c03327{letter-spacing:-0.275616px;}
.ls15_c03327{letter-spacing:-0.270864px;}
.lsc_c03327{letter-spacing:-0.261360px;}
.ls6_c03327{letter-spacing:-0.242352px;}
.ls4_c03327{letter-spacing:-0.118800px;}
.ls11_c03327{letter-spacing:0.000000px;}
.ls2_c03327{letter-spacing:0.006048px;}
.ls5_c03327{letter-spacing:0.128304px;}
.lsb_c03327{letter-spacing:0.508464px;}
.ls10_c03327{letter-spacing:0.514080px;}
.lsd_c03327{letter-spacing:0.536976px;}
.lsa_c03327{letter-spacing:0.579744px;}
.lsf_c03327{letter-spacing:0.594000px;}
.ls8_c03327{letter-spacing:0.598752px;}
.ls3_c03327{letter-spacing:0.613008px;}
.ls0_c03327{letter-spacing:0.717552px;}
.ls1_c03327{letter-spacing:0.722304px;}
.sc__c03327{text-shadow:none;}
.sc0_c03327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03327{-webkit-text-stroke:0px transparent;}
.sc0_c03327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03327{word-spacing:-15.126048px;}
.wsa_c03327{word-spacing:-12.474000px;}
.ws8_c03327{word-spacing:-12.459744px;}
.ws9_c03327{word-spacing:-12.416976px;}
.ws4_c03327{word-spacing:-11.637648px;}
.ws2_c03327{word-spacing:-11.266992px;}
.ws14_c03327{word-spacing:-1.083456px;}
.ws13_c03327{word-spacing:-1.078704px;}
.ws10_c03327{word-spacing:-0.974160px;}
.ws17_c03327{word-spacing:-0.719712px;}
.ws12_c03327{word-spacing:-0.118800px;}
.ws15_c03327{word-spacing:-0.099792px;}
.ws1a_c03327{word-spacing:-0.090288px;}
.ws16_c03327{word-spacing:-0.085536px;}
.ws19_c03327{word-spacing:-0.057024px;}
.ws11_c03327{word-spacing:0.000000px;}
.ws18_c03327{word-spacing:0.432432px;}
.wsf_c03327{word-spacing:6.629040px;}
.wsb_c03327{word-spacing:33.300288px;}
.wse_c03327{word-spacing:34.836912px;}
.wsd_c03327{word-spacing:36.143712px;}
.ws6_c03327{word-spacing:36.742464px;}
.ws1_c03327{word-spacing:37.759392px;}
.ws0_c03327{word-spacing:38.020752px;}
.ws3_c03327{word-spacing:39.218256px;}
.ws5_c03327{word-spacing:39.902544px;}
.ws7_c03327{word-spacing:42.026688px;}
._0_c03327{margin-left:-1.948320px;}
._2_c03327{width:1.482624px;}
._4_c03327{width:5.749920px;}
._6_c03327{width:19.982160px;}
._7_c03327{width:23.451120px;}
._5_c03327{width:24.691392px;}
._1_c03327{width:50.252400px;}
._3_c03327{width:51.530688px;}
.fc0_c03327{color:rgb(0,0,0);}
.fs0_c03327{font-size:47.520000px;}
.fs1_c03327{font-size:60.480000px;}
.y0_c03327{bottom:0.000000px;}
.y1a_c03327{bottom:131.878686px;}
.y19_c03327{bottom:146.998362px;}
.y1c_c03327{bottom:186.600234px;}
.y1b_c03327{bottom:196.320450px;}
.y18_c03327{bottom:275.878542px;}
.y17_c03327{bottom:356.878758px;}
.y15_c03327{bottom:406.559730px;}
.y11_c03327{bottom:424.560306px;}
.y16_c03327{bottom:458.759262px;}
.y14_c03327{bottom:491.879514px;}
.y13_c03327{bottom:509.880090px;}
.y10_c03327{bottom:543.000342px;}
.y12_c03327{bottom:559.559874px;}
.yf_c03327{bottom:577.560450px;}
.y1d_c03327{bottom:614.280450px;}
.yb_c03327{bottom:667.558326px;}
.yd_c03327{bottom:707.160234px;}
.yc_c03327{bottom:716.880450px;}
.ya_c03327{bottom:796.438506px;}
.y9_c03327{bottom:877.438722px;}
.y7_c03327{bottom:926.759730px;}
.y3_c03327{bottom:944.760306px;}
.y8_c03327{bottom:979.319226px;}
.y6_c03327{bottom:1012.439478px;}
.y5_c03327{bottom:1030.440054px;}
.y2_c03327{bottom:1063.560306px;}
.y4_c03327{bottom:1079.759874px;}
.y1_c03327{bottom:1097.760450px;}
.ye_c03327{bottom:1134.840450px;}
.h3_c03327{height:32.530781px;}
.h1_c03327{height:41.696016px;}
.h2_c03327{height:41.812031px;}
.h4_c03327{height:54.654737px;}
.h0_c03327{height:1263.000000px;}
.w1_c03327{width:892.500000px;}
.w0_c03327{width:892.830000px;}
.x0_c03327{left:0.000000px;}
.xd_c03327{left:117.000000px;}
.x8_c03327{left:440.999856px;}
.x4_c03327{left:445.680576px;}
.xb_c03327{left:451.080000px;}
.x7_c03327{left:455.399604px;}
.x5_c03327{left:461.880144px;}
.x1_c03327{left:463.320000px;}
.xa_c03327{left:483.480360px;}
.x9_c03327{left:492.119496px;}
.x6_c03327{left:493.200576px;}
.xc_c03327{left:506.880360px;}
.x3_c03327{left:511.919892px;}
.x2_c03327{left:526.679604px;}
.xe_c03327{left:569.880036px;}
@media print{
.v0_c03327{vertical-align:0.000000pt;}
.v1_c03327{vertical-align:1.279488pt;}
.ls12_c03327{letter-spacing:-0.705408pt;}
.ls14_c03327{letter-spacing:-0.654720pt;}
.ls7_c03327{letter-spacing:-0.544896pt;}
.ls9_c03327{letter-spacing:-0.511104pt;}
.ls13_c03327{letter-spacing:-0.270336pt;}
.lse_c03327{letter-spacing:-0.244992pt;}
.ls15_c03327{letter-spacing:-0.240768pt;}
.lsc_c03327{letter-spacing:-0.232320pt;}
.ls6_c03327{letter-spacing:-0.215424pt;}
.ls4_c03327{letter-spacing:-0.105600pt;}
.ls11_c03327{letter-spacing:0.000000pt;}
.ls2_c03327{letter-spacing:0.005376pt;}
.ls5_c03327{letter-spacing:0.114048pt;}
.lsb_c03327{letter-spacing:0.451968pt;}
.ls10_c03327{letter-spacing:0.456960pt;}
.lsd_c03327{letter-spacing:0.477312pt;}
.lsa_c03327{letter-spacing:0.515328pt;}
.lsf_c03327{letter-spacing:0.528000pt;}
.ls8_c03327{letter-spacing:0.532224pt;}
.ls3_c03327{letter-spacing:0.544896pt;}
.ls0_c03327{letter-spacing:0.637824pt;}
.ls1_c03327{letter-spacing:0.642048pt;}
.wsc_c03327{word-spacing:-13.445376pt;}
.wsa_c03327{word-spacing:-11.088000pt;}
.ws8_c03327{word-spacing:-11.075328pt;}
.ws9_c03327{word-spacing:-11.037312pt;}
.ws4_c03327{word-spacing:-10.344576pt;}
.ws2_c03327{word-spacing:-10.015104pt;}
.ws14_c03327{word-spacing:-0.963072pt;}
.ws13_c03327{word-spacing:-0.958848pt;}
.ws10_c03327{word-spacing:-0.865920pt;}
.ws17_c03327{word-spacing:-0.639744pt;}
.ws12_c03327{word-spacing:-0.105600pt;}
.ws15_c03327{word-spacing:-0.088704pt;}
.ws1a_c03327{word-spacing:-0.080256pt;}
.ws16_c03327{word-spacing:-0.076032pt;}
.ws19_c03327{word-spacing:-0.050688pt;}
.ws11_c03327{word-spacing:0.000000pt;}
.ws18_c03327{word-spacing:0.384384pt;}
.wsf_c03327{word-spacing:5.892480pt;}
.wsb_c03327{word-spacing:29.600256pt;}
.wse_c03327{word-spacing:30.966144pt;}
.wsd_c03327{word-spacing:32.127744pt;}
.ws6_c03327{word-spacing:32.659968pt;}
.ws1_c03327{word-spacing:33.563904pt;}
.ws0_c03327{word-spacing:33.796224pt;}
.ws3_c03327{word-spacing:34.860672pt;}
.ws5_c03327{word-spacing:35.468928pt;}
.ws7_c03327{word-spacing:37.357056pt;}
._0_c03327{margin-left:-1.731840pt;}
._2_c03327{width:1.317888pt;}
._4_c03327{width:5.111040pt;}
._6_c03327{width:17.761920pt;}
._7_c03327{width:20.845440pt;}
._5_c03327{width:21.947904pt;}
._1_c03327{width:44.668800pt;}
._3_c03327{width:45.805056pt;}
.fs0_c03327{font-size:42.240000pt;}
.fs1_c03327{font-size:53.760000pt;}
.y0_c03327{bottom:0.000000pt;}
.y1a_c03327{bottom:117.225499pt;}
.y19_c03327{bottom:130.665211pt;}
.y1c_c03327{bottom:165.866875pt;}
.y1b_c03327{bottom:174.507067pt;}
.y18_c03327{bottom:245.225371pt;}
.y17_c03327{bottom:317.225563pt;}
.y15_c03327{bottom:361.386427pt;}
.y11_c03327{bottom:377.386939pt;}
.y16_c03327{bottom:407.786011pt;}
.y14_c03327{bottom:437.226235pt;}
.y13_c03327{bottom:453.226747pt;}
.y10_c03327{bottom:482.666971pt;}
.y12_c03327{bottom:497.386555pt;}
.yf_c03327{bottom:513.387067pt;}
.y1d_c03327{bottom:546.027067pt;}
.yb_c03327{bottom:593.385179pt;}
.yd_c03327{bottom:628.586875pt;}
.yc_c03327{bottom:637.227067pt;}
.ya_c03327{bottom:707.945339pt;}
.y9_c03327{bottom:779.945531pt;}
.y7_c03327{bottom:823.786427pt;}
.y3_c03327{bottom:839.786939pt;}
.y8_c03327{bottom:870.505979pt;}
.y6_c03327{bottom:899.946203pt;}
.y5_c03327{bottom:915.946715pt;}
.y2_c03327{bottom:945.386939pt;}
.y4_c03327{bottom:959.786555pt;}
.y1_c03327{bottom:975.787067pt;}
.ye_c03327{bottom:1008.747067pt;}
.h3_c03327{height:28.916250pt;}
.h1_c03327{height:37.063125pt;}
.h2_c03327{height:37.166250pt;}
.h4_c03327{height:48.581988pt;}
.h0_c03327{height:1122.666667pt;}
.w1_c03327{width:793.333333pt;}
.w0_c03327{width:793.626667pt;}
.x0_c03327{left:0.000000pt;}
.xd_c03327{left:104.000000pt;}
.x8_c03327{left:391.999872pt;}
.x4_c03327{left:396.160512pt;}
.xb_c03327{left:400.960000pt;}
.x7_c03327{left:404.799648pt;}
.x5_c03327{left:410.560128pt;}
.x1_c03327{left:411.840000pt;}
.xa_c03327{left:429.760320pt;}
.x9_c03327{left:437.439552pt;}
.x6_c03327{left:438.400512pt;}
.xc_c03327{left:450.560320pt;}
.x3_c03327{left:455.039904pt;}
.x2_c03327{left:468.159648pt;}
.xe_c03327{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03328 {
    display:none;
  }
  .loading-indicator_c03328.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03328 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03328 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03328" -> "#page-container .classname_c03328")
 */
.pf_c03328 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03328 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03328.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03328 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03328 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03328 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03328 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03328 {overflow:visible;}
  }
}
.c_c03328 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03328 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03328:after { /* webkit #35443 */
  content: '';
}
.t_c03328:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03328 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03328 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03328 { /* info for Javascript */
  display:none;
}
.l_c03328 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03328 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03328 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03328:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03328 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03328.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03328.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03328 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03328{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03328;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03328{font-family:ff1_c03328;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03328;src:url('chunks/assets/font_1fd0e286e89c0738d3dccd17.woff2')format("woff");}.ff2_c03328{font-family:ff2_c03328;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03328;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03328{font-family:ff3_c03328;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03328{vertical-align:0.000000px;}
.v1_c03328{vertical-align:1.439424px;}
.lsc_c03328{letter-spacing:-0.793584px;}
.ls15_c03328{letter-spacing:-0.765072px;}
.ls7_c03328{letter-spacing:-0.613008px;}
.ls9_c03328{letter-spacing:-0.574992px;}
.ls14_c03328{letter-spacing:-0.342144px;}
.lsd_c03328{letter-spacing:-0.304128px;}
.ls10_c03328{letter-spacing:-0.275616px;}
.ls16_c03328{letter-spacing:-0.270864px;}
.lse_c03328{letter-spacing:-0.261360px;}
.ls6_c03328{letter-spacing:-0.242352px;}
.ls4_c03328{letter-spacing:-0.118800px;}
.ls13_c03328{letter-spacing:0.000000px;}
.ls1_c03328{letter-spacing:0.006048px;}
.ls5_c03328{letter-spacing:0.128304px;}
.lsb_c03328{letter-spacing:0.508464px;}
.ls12_c03328{letter-spacing:0.514080px;}
.lsf_c03328{letter-spacing:0.536976px;}
.lsa_c03328{letter-spacing:0.579744px;}
.ls11_c03328{letter-spacing:0.594000px;}
.ls8_c03328{letter-spacing:0.598752px;}
.ls2_c03328{letter-spacing:0.613008px;}
.ls3_c03328{letter-spacing:0.717552px;}
.ls0_c03328{letter-spacing:0.722304px;}
.sc__c03328{text-shadow:none;}
.sc0_c03328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03328{-webkit-text-stroke:0px transparent;}
.sc0_c03328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03328{word-spacing:-15.126048px;}
.wsa_c03328{word-spacing:-12.474000px;}
.ws6_c03328{word-spacing:-12.459744px;}
.ws4_c03328{word-spacing:-11.637648px;}
.ws2_c03328{word-spacing:-11.266992px;}
.ws11_c03328{word-spacing:-1.083456px;}
.wse_c03328{word-spacing:-0.974160px;}
.ws16_c03328{word-spacing:-0.719712px;}
.ws10_c03328{word-spacing:-0.118800px;}
.ws14_c03328{word-spacing:-0.099792px;}
.ws18_c03328{word-spacing:-0.090288px;}
.ws15_c03328{word-spacing:-0.085536px;}
.ws13_c03328{word-spacing:-0.057024px;}
.ws17_c03328{word-spacing:-0.019008px;}
.wsf_c03328{word-spacing:0.000000px;}
.ws12_c03328{word-spacing:0.432432px;}
.wsb_c03328{word-spacing:33.300288px;}
.ws9_c03328{word-spacing:34.836912px;}
.ws8_c03328{word-spacing:36.143712px;}
.ws1_c03328{word-spacing:37.759392px;}
.wsd_c03328{word-spacing:37.892448px;}
.ws0_c03328{word-spacing:38.020752px;}
.ws3_c03328{word-spacing:39.218256px;}
.ws5_c03328{word-spacing:39.902544px;}
.ws7_c03328{word-spacing:42.026688px;}
._0_c03328{margin-left:-1.948320px;}
._2_c03328{width:1.482624px;}
._4_c03328{width:5.749920px;}
._1_c03328{width:50.252400px;}
._3_c03328{width:51.530688px;}
._5_c03328{width:53.070336px;}
.fc0_c03328{color:rgb(0,0,0);}
.fs0_c03328{font-size:47.520000px;}
.fs1_c03328{font-size:60.480000px;}
.y0_c03328{bottom:0.000000px;}
.y1a_c03328{bottom:131.878686px;}
.y19_c03328{bottom:146.998362px;}
.y1c_c03328{bottom:186.600234px;}
.y1b_c03328{bottom:196.320450px;}
.y18_c03328{bottom:275.878542px;}
.y17_c03328{bottom:356.878758px;}
.y15_c03328{bottom:406.559730px;}
.y11_c03328{bottom:424.560306px;}
.y16_c03328{bottom:458.759262px;}
.y14_c03328{bottom:491.879514px;}
.y13_c03328{bottom:509.880090px;}
.y10_c03328{bottom:543.000342px;}
.y12_c03328{bottom:559.559874px;}
.yf_c03328{bottom:577.560450px;}
.y1d_c03328{bottom:614.280450px;}
.yb_c03328{bottom:667.558326px;}
.yd_c03328{bottom:707.160234px;}
.yc_c03328{bottom:716.880450px;}
.ya_c03328{bottom:796.438506px;}
.y9_c03328{bottom:877.438722px;}
.y7_c03328{bottom:926.759730px;}
.y3_c03328{bottom:944.760306px;}
.y8_c03328{bottom:979.319226px;}
.y6_c03328{bottom:1012.439478px;}
.y5_c03328{bottom:1030.440054px;}
.y2_c03328{bottom:1063.560306px;}
.y4_c03328{bottom:1079.759874px;}
.y1_c03328{bottom:1097.760450px;}
.ye_c03328{bottom:1134.840450px;}
.h3_c03328{height:32.530781px;}
.h1_c03328{height:41.696016px;}
.h2_c03328{height:41.812031px;}
.h4_c03328{height:54.654737px;}
.h0_c03328{height:1263.000000px;}
.w1_c03328{width:892.500000px;}
.w0_c03328{width:892.830000px;}
.x0_c03328{left:0.000000px;}
.xd_c03328{left:117.000000px;}
.x8_c03328{left:440.999856px;}
.x4_c03328{left:445.680576px;}
.xb_c03328{left:451.080000px;}
.x7_c03328{left:455.399604px;}
.x5_c03328{left:461.880144px;}
.x1_c03328{left:463.320000px;}
.xa_c03328{left:483.480360px;}
.x9_c03328{left:492.119496px;}
.x6_c03328{left:493.200576px;}
.xc_c03328{left:506.880360px;}
.x3_c03328{left:511.919892px;}
.x2_c03328{left:526.679604px;}
.xe_c03328{left:569.880036px;}
@media print{
.v0_c03328{vertical-align:0.000000pt;}
.v1_c03328{vertical-align:1.279488pt;}
.lsc_c03328{letter-spacing:-0.705408pt;}
.ls15_c03328{letter-spacing:-0.680064pt;}
.ls7_c03328{letter-spacing:-0.544896pt;}
.ls9_c03328{letter-spacing:-0.511104pt;}
.ls14_c03328{letter-spacing:-0.304128pt;}
.lsd_c03328{letter-spacing:-0.270336pt;}
.ls10_c03328{letter-spacing:-0.244992pt;}
.ls16_c03328{letter-spacing:-0.240768pt;}
.lse_c03328{letter-spacing:-0.232320pt;}
.ls6_c03328{letter-spacing:-0.215424pt;}
.ls4_c03328{letter-spacing:-0.105600pt;}
.ls13_c03328{letter-spacing:0.000000pt;}
.ls1_c03328{letter-spacing:0.005376pt;}
.ls5_c03328{letter-spacing:0.114048pt;}
.lsb_c03328{letter-spacing:0.451968pt;}
.ls12_c03328{letter-spacing:0.456960pt;}
.lsf_c03328{letter-spacing:0.477312pt;}
.lsa_c03328{letter-spacing:0.515328pt;}
.ls11_c03328{letter-spacing:0.528000pt;}
.ls8_c03328{letter-spacing:0.532224pt;}
.ls2_c03328{letter-spacing:0.544896pt;}
.ls3_c03328{letter-spacing:0.637824pt;}
.ls0_c03328{letter-spacing:0.642048pt;}
.wsc_c03328{word-spacing:-13.445376pt;}
.wsa_c03328{word-spacing:-11.088000pt;}
.ws6_c03328{word-spacing:-11.075328pt;}
.ws4_c03328{word-spacing:-10.344576pt;}
.ws2_c03328{word-spacing:-10.015104pt;}
.ws11_c03328{word-spacing:-0.963072pt;}
.wse_c03328{word-spacing:-0.865920pt;}
.ws16_c03328{word-spacing:-0.639744pt;}
.ws10_c03328{word-spacing:-0.105600pt;}
.ws14_c03328{word-spacing:-0.088704pt;}
.ws18_c03328{word-spacing:-0.080256pt;}
.ws15_c03328{word-spacing:-0.076032pt;}
.ws13_c03328{word-spacing:-0.050688pt;}
.ws17_c03328{word-spacing:-0.016896pt;}
.wsf_c03328{word-spacing:0.000000pt;}
.ws12_c03328{word-spacing:0.384384pt;}
.wsb_c03328{word-spacing:29.600256pt;}
.ws9_c03328{word-spacing:30.966144pt;}
.ws8_c03328{word-spacing:32.127744pt;}
.ws1_c03328{word-spacing:33.563904pt;}
.wsd_c03328{word-spacing:33.682176pt;}
.ws0_c03328{word-spacing:33.796224pt;}
.ws3_c03328{word-spacing:34.860672pt;}
.ws5_c03328{word-spacing:35.468928pt;}
.ws7_c03328{word-spacing:37.357056pt;}
._0_c03328{margin-left:-1.731840pt;}
._2_c03328{width:1.317888pt;}
._4_c03328{width:5.111040pt;}
._1_c03328{width:44.668800pt;}
._3_c03328{width:45.805056pt;}
._5_c03328{width:47.173632pt;}
.fs0_c03328{font-size:42.240000pt;}
.fs1_c03328{font-size:53.760000pt;}
.y0_c03328{bottom:0.000000pt;}
.y1a_c03328{bottom:117.225499pt;}
.y19_c03328{bottom:130.665211pt;}
.y1c_c03328{bottom:165.866875pt;}
.y1b_c03328{bottom:174.507067pt;}
.y18_c03328{bottom:245.225371pt;}
.y17_c03328{bottom:317.225563pt;}
.y15_c03328{bottom:361.386427pt;}
.y11_c03328{bottom:377.386939pt;}
.y16_c03328{bottom:407.786011pt;}
.y14_c03328{bottom:437.226235pt;}
.y13_c03328{bottom:453.226747pt;}
.y10_c03328{bottom:482.666971pt;}
.y12_c03328{bottom:497.386555pt;}
.yf_c03328{bottom:513.387067pt;}
.y1d_c03328{bottom:546.027067pt;}
.yb_c03328{bottom:593.385179pt;}
.yd_c03328{bottom:628.586875pt;}
.yc_c03328{bottom:637.227067pt;}
.ya_c03328{bottom:707.945339pt;}
.y9_c03328{bottom:779.945531pt;}
.y7_c03328{bottom:823.786427pt;}
.y3_c03328{bottom:839.786939pt;}
.y8_c03328{bottom:870.505979pt;}
.y6_c03328{bottom:899.946203pt;}
.y5_c03328{bottom:915.946715pt;}
.y2_c03328{bottom:945.386939pt;}
.y4_c03328{bottom:959.786555pt;}
.y1_c03328{bottom:975.787067pt;}
.ye_c03328{bottom:1008.747067pt;}
.h3_c03328{height:28.916250pt;}
.h1_c03328{height:37.063125pt;}
.h2_c03328{height:37.166250pt;}
.h4_c03328{height:48.581988pt;}
.h0_c03328{height:1122.666667pt;}
.w1_c03328{width:793.333333pt;}
.w0_c03328{width:793.626667pt;}
.x0_c03328{left:0.000000pt;}
.xd_c03328{left:104.000000pt;}
.x8_c03328{left:391.999872pt;}
.x4_c03328{left:396.160512pt;}
.xb_c03328{left:400.960000pt;}
.x7_c03328{left:404.799648pt;}
.x5_c03328{left:410.560128pt;}
.x1_c03328{left:411.840000pt;}
.xa_c03328{left:429.760320pt;}
.x9_c03328{left:437.439552pt;}
.x6_c03328{left:438.400512pt;}
.xc_c03328{left:450.560320pt;}
.x3_c03328{left:455.039904pt;}
.x2_c03328{left:468.159648pt;}
.xe_c03328{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03329 {
    display:none;
  }
  .loading-indicator_c03329.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03329 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03329 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03329" -> "#page-container .classname_c03329")
 */
.pf_c03329 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03329 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03329.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03329 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03329 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03329 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03329 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03329 {overflow:visible;}
  }
}
.c_c03329 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03329 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03329:after { /* webkit #35443 */
  content: '';
}
.t_c03329:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03329 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03329 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03329 { /* info for Javascript */
  display:none;
}
.l_c03329 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03329 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03329 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03329:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03329 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03329.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03329.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03329 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03329{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03329;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03329{font-family:ff1_c03329;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03329;src:url('chunks/assets/font_7721d1139888c0e687422626.woff2')format("woff");}.ff2_c03329{font-family:ff2_c03329;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03329;src:url('chunks/assets/font_23c1ceb8dcd6da7302265588.woff2')format("woff");}.ff3_c03329{font-family:ff3_c03329;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03329{vertical-align:0.000000px;}
.v1_c03329{vertical-align:1.439424px;}
.ls17_c03329{letter-spacing:-0.784080px;}
.ls13_c03329{letter-spacing:-0.755568px;}
.lsd_c03329{letter-spacing:-0.722304px;}
.ls12_c03329{letter-spacing:-0.703296px;}
.ls6_c03329{letter-spacing:-0.613008px;}
.ls8_c03329{letter-spacing:-0.574992px;}
.ls9_c03329{letter-spacing:-0.361152px;}
.ls10_c03329{letter-spacing:-0.275616px;}
.lse_c03329{letter-spacing:-0.261360px;}
.ls5_c03329{letter-spacing:-0.242352px;}
.ls3_c03329{letter-spacing:-0.118800px;}
.ls15_c03329{letter-spacing:0.000000px;}
.lsb_c03329{letter-spacing:0.004752px;}
.ls0_c03329{letter-spacing:0.006048px;}
.ls4_c03329{letter-spacing:0.128304px;}
.ls18_c03329{letter-spacing:0.242352px;}
.lsc_c03329{letter-spacing:0.508464px;}
.ls14_c03329{letter-spacing:0.514080px;}
.lsf_c03329{letter-spacing:0.536976px;}
.lsa_c03329{letter-spacing:0.579744px;}
.ls11_c03329{letter-spacing:0.594000px;}
.ls7_c03329{letter-spacing:0.598752px;}
.ls1_c03329{letter-spacing:0.613008px;}
.ls2_c03329{letter-spacing:0.717552px;}
.ls16_c03329{letter-spacing:0.722304px;}
.sc__c03329{text-shadow:none;}
.sc0_c03329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03329{-webkit-text-stroke:0px transparent;}
.sc0_c03329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03329{word-spacing:-15.126048px;}
.wsa_c03329{word-spacing:-12.474000px;}
.ws8_c03329{word-spacing:-12.459744px;}
.ws9_c03329{word-spacing:-12.416976px;}
.ws11_c03329{word-spacing:-12.388464px;}
.wsf_c03329{word-spacing:-11.637648px;}
.ws10_c03329{word-spacing:-11.305008px;}
.ws2_c03329{word-spacing:-11.266992px;}
.wsb_c03329{word-spacing:-11.176704px;}
.wse_c03329{word-spacing:-1.325808px;}
.ws13_c03329{word-spacing:-0.974160px;}
.ws1b_c03329{word-spacing:-0.719712px;}
.ws1d_c03329{word-spacing:-0.603504px;}
.ws16_c03329{word-spacing:-0.365904px;}
.ws15_c03329{word-spacing:-0.118800px;}
.ws18_c03329{word-spacing:-0.099792px;}
.ws19_c03329{word-spacing:-0.085536px;}
.ws14_c03329{word-spacing:0.000000px;}
.ws17_c03329{word-spacing:0.361152px;}
.ws1a_c03329{word-spacing:0.394416px;}
.ws1c_c03329{word-spacing:0.422928px;}
.ws4_c03329{word-spacing:4.951584px;}
.wsc_c03329{word-spacing:33.300288px;}
.ws12_c03329{word-spacing:36.143712px;}
.ws6_c03329{word-spacing:36.742464px;}
.ws1_c03329{word-spacing:37.759392px;}
.ws0_c03329{word-spacing:38.020752px;}
.ws3_c03329{word-spacing:39.218256px;}
.ws5_c03329{word-spacing:39.902544px;}
.ws7_c03329{word-spacing:42.026688px;}
._0_c03329{margin-left:-1.948320px;}
._2_c03329{width:1.482624px;}
._4_c03329{width:17.900784px;}
._1_c03329{width:50.252400px;}
._3_c03329{width:51.530688px;}
.fc0_c03329{color:rgb(0,0,0);}
.fs0_c03329{font-size:47.520000px;}
.fs1_c03329{font-size:60.480000px;}
.y0_c03329{bottom:0.000000px;}
.yf_c03329{bottom:34.560450px;}
.y1c_c03329{bottom:146.998362px;}
.y1e_c03329{bottom:186.600234px;}
.y1d_c03329{bottom:196.320450px;}
.y1b_c03329{bottom:275.878542px;}
.y1a_c03329{bottom:356.878758px;}
.y18_c03329{bottom:406.559730px;}
.y14_c03329{bottom:424.560306px;}
.y19_c03329{bottom:458.759262px;}
.y17_c03329{bottom:491.879514px;}
.y16_c03329{bottom:509.880090px;}
.y13_c03329{bottom:543.000342px;}
.y15_c03329{bottom:559.559874px;}
.y12_c03329{bottom:577.560450px;}
.y1f_c03329{bottom:614.280450px;}
.yb_c03329{bottom:667.558326px;}
.ye_c03329{bottom:680.880000px;}
.yd_c03329{bottom:707.160234px;}
.y10_c03329{bottom:715.440450px;}
.yc_c03329{bottom:716.880450px;}
.ya_c03329{bottom:796.438506px;}
.y9_c03329{bottom:877.438722px;}
.y7_c03329{bottom:926.759730px;}
.y3_c03329{bottom:944.760306px;}
.y8_c03329{bottom:979.319226px;}
.y6_c03329{bottom:1012.439478px;}
.y5_c03329{bottom:1030.440054px;}
.y2_c03329{bottom:1063.560306px;}
.y4_c03329{bottom:1079.759874px;}
.y1_c03329{bottom:1097.760450px;}
.y11_c03329{bottom:1134.840450px;}
.h3_c03329{height:32.530781px;}
.h1_c03329{height:41.696016px;}
.h2_c03329{height:41.812031px;}
.h4_c03329{height:47.160000px;}
.h5_c03329{height:54.654737px;}
.h0_c03329{height:1263.000000px;}
.w2_c03329{width:215.280000px;}
.w1_c03329{width:892.500000px;}
.w0_c03329{width:892.830000px;}
.x0_c03329{left:0.000000px;}
.xf_c03329{left:117.000000px;}
.x8_c03329{left:440.999856px;}
.x4_c03329{left:445.680576px;}
.xb_c03329{left:451.080000px;}
.x7_c03329{left:455.399604px;}
.x5_c03329{left:461.880144px;}
.x1_c03329{left:463.320000px;}
.xa_c03329{left:483.480360px;}
.x9_c03329{left:492.119496px;}
.x6_c03329{left:493.200576px;}
.xc_c03329{left:506.880360px;}
.x3_c03329{left:511.919892px;}
.x2_c03329{left:526.679604px;}
.xd_c03329{left:569.520000px;}
.xe_c03329{left:610.560000px;}
@media print{
.v0_c03329{vertical-align:0.000000pt;}
.v1_c03329{vertical-align:1.279488pt;}
.ls17_c03329{letter-spacing:-0.696960pt;}
.ls13_c03329{letter-spacing:-0.671616pt;}
.lsd_c03329{letter-spacing:-0.642048pt;}
.ls12_c03329{letter-spacing:-0.625152pt;}
.ls6_c03329{letter-spacing:-0.544896pt;}
.ls8_c03329{letter-spacing:-0.511104pt;}
.ls9_c03329{letter-spacing:-0.321024pt;}
.ls10_c03329{letter-spacing:-0.244992pt;}
.lse_c03329{letter-spacing:-0.232320pt;}
.ls5_c03329{letter-spacing:-0.215424pt;}
.ls3_c03329{letter-spacing:-0.105600pt;}
.ls15_c03329{letter-spacing:0.000000pt;}
.lsb_c03329{letter-spacing:0.004224pt;}
.ls0_c03329{letter-spacing:0.005376pt;}
.ls4_c03329{letter-spacing:0.114048pt;}
.ls18_c03329{letter-spacing:0.215424pt;}
.lsc_c03329{letter-spacing:0.451968pt;}
.ls14_c03329{letter-spacing:0.456960pt;}
.lsf_c03329{letter-spacing:0.477312pt;}
.lsa_c03329{letter-spacing:0.515328pt;}
.ls11_c03329{letter-spacing:0.528000pt;}
.ls7_c03329{letter-spacing:0.532224pt;}
.ls1_c03329{letter-spacing:0.544896pt;}
.ls2_c03329{letter-spacing:0.637824pt;}
.ls16_c03329{letter-spacing:0.642048pt;}
.wsd_c03329{word-spacing:-13.445376pt;}
.wsa_c03329{word-spacing:-11.088000pt;}
.ws8_c03329{word-spacing:-11.075328pt;}
.ws9_c03329{word-spacing:-11.037312pt;}
.ws11_c03329{word-spacing:-11.011968pt;}
.wsf_c03329{word-spacing:-10.344576pt;}
.ws10_c03329{word-spacing:-10.048896pt;}
.ws2_c03329{word-spacing:-10.015104pt;}
.wsb_c03329{word-spacing:-9.934848pt;}
.wse_c03329{word-spacing:-1.178496pt;}
.ws13_c03329{word-spacing:-0.865920pt;}
.ws1b_c03329{word-spacing:-0.639744pt;}
.ws1d_c03329{word-spacing:-0.536448pt;}
.ws16_c03329{word-spacing:-0.325248pt;}
.ws15_c03329{word-spacing:-0.105600pt;}
.ws18_c03329{word-spacing:-0.088704pt;}
.ws19_c03329{word-spacing:-0.076032pt;}
.ws14_c03329{word-spacing:0.000000pt;}
.ws17_c03329{word-spacing:0.321024pt;}
.ws1a_c03329{word-spacing:0.350592pt;}
.ws1c_c03329{word-spacing:0.375936pt;}
.ws4_c03329{word-spacing:4.401408pt;}
.wsc_c03329{word-spacing:29.600256pt;}
.ws12_c03329{word-spacing:32.127744pt;}
.ws6_c03329{word-spacing:32.659968pt;}
.ws1_c03329{word-spacing:33.563904pt;}
.ws0_c03329{word-spacing:33.796224pt;}
.ws3_c03329{word-spacing:34.860672pt;}
.ws5_c03329{word-spacing:35.468928pt;}
.ws7_c03329{word-spacing:37.357056pt;}
._0_c03329{margin-left:-1.731840pt;}
._2_c03329{width:1.317888pt;}
._4_c03329{width:15.911808pt;}
._1_c03329{width:44.668800pt;}
._3_c03329{width:45.805056pt;}
.fs0_c03329{font-size:42.240000pt;}
.fs1_c03329{font-size:53.760000pt;}
.y0_c03329{bottom:0.000000pt;}
.yf_c03329{bottom:30.720400pt;}
.y1c_c03329{bottom:130.665211pt;}
.y1e_c03329{bottom:165.866875pt;}
.y1d_c03329{bottom:174.507067pt;}
.y1b_c03329{bottom:245.225371pt;}
.y1a_c03329{bottom:317.225563pt;}
.y18_c03329{bottom:361.386427pt;}
.y14_c03329{bottom:377.386939pt;}
.y19_c03329{bottom:407.786011pt;}
.y17_c03329{bottom:437.226235pt;}
.y16_c03329{bottom:453.226747pt;}
.y13_c03329{bottom:482.666971pt;}
.y15_c03329{bottom:497.386555pt;}
.y12_c03329{bottom:513.387067pt;}
.y1f_c03329{bottom:546.027067pt;}
.yb_c03329{bottom:593.385179pt;}
.ye_c03329{bottom:605.226667pt;}
.yd_c03329{bottom:628.586875pt;}
.y10_c03329{bottom:635.947067pt;}
.yc_c03329{bottom:637.227067pt;}
.ya_c03329{bottom:707.945339pt;}
.y9_c03329{bottom:779.945531pt;}
.y7_c03329{bottom:823.786427pt;}
.y3_c03329{bottom:839.786939pt;}
.y8_c03329{bottom:870.505979pt;}
.y6_c03329{bottom:899.946203pt;}
.y5_c03329{bottom:915.946715pt;}
.y2_c03329{bottom:945.386939pt;}
.y4_c03329{bottom:959.786555pt;}
.y1_c03329{bottom:975.787067pt;}
.y11_c03329{bottom:1008.747067pt;}
.h3_c03329{height:28.916250pt;}
.h1_c03329{height:37.063125pt;}
.h2_c03329{height:37.166250pt;}
.h4_c03329{height:41.920000pt;}
.h5_c03329{height:48.581988pt;}
.h0_c03329{height:1122.666667pt;}
.w2_c03329{width:191.360000pt;}
.w1_c03329{width:793.333333pt;}
.w0_c03329{width:793.626667pt;}
.x0_c03329{left:0.000000pt;}
.xf_c03329{left:104.000000pt;}
.x8_c03329{left:391.999872pt;}
.x4_c03329{left:396.160512pt;}
.xb_c03329{left:400.960000pt;}
.x7_c03329{left:404.799648pt;}
.x5_c03329{left:410.560128pt;}
.x1_c03329{left:411.840000pt;}
.xa_c03329{left:429.760320pt;}
.x9_c03329{left:437.439552pt;}
.x6_c03329{left:438.400512pt;}
.xc_c03329{left:450.560320pt;}
.x3_c03329{left:455.039904pt;}
.x2_c03329{left:468.159648pt;}
.xd_c03329{left:506.240000pt;}
.xe_c03329{left:542.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03330 {
    display:none;
  }
  .loading-indicator_c03330.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03330 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03330 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03330" -> "#page-container .classname_c03330")
 */
.pf_c03330 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03330 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03330.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03330 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03330 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03330 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03330 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03330 {overflow:visible;}
  }
}
.c_c03330 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03330 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03330:after { /* webkit #35443 */
  content: '';
}
.t_c03330:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03330 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03330 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03330 { /* info for Javascript */
  display:none;
}
.l_c03330 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03330 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03330 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03330:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03330 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03330.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03330.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03330 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03330{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03330;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03330{font-family:ff1_c03330;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03330;src:url('chunks/assets/font_cee4ae4594810a1174171233.woff2')format("woff");}.ff2_c03330{font-family:ff2_c03330;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03330;src:url('chunks/assets/font_eb3e4558de7e92039462f005.woff2')format("woff");}.ff3_c03330{font-family:ff3_c03330;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03330{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03330{vertical-align:0.000000px;}
.v1_c03330{vertical-align:1.439424px;}
.ls15_c03330{letter-spacing:-0.845856px;}
.ls9_c03330{letter-spacing:-0.574992px;}
.lsf_c03330{letter-spacing:-0.308880px;}
.ls11_c03330{letter-spacing:-0.275616px;}
.lsd_c03330{letter-spacing:-0.261360px;}
.ls6_c03330{letter-spacing:-0.242352px;}
.ls4_c03330{letter-spacing:-0.118800px;}
.ls14_c03330{letter-spacing:0.000000px;}
.ls2_c03330{letter-spacing:0.006048px;}
.ls5_c03330{letter-spacing:0.128304px;}
.ls7_c03330{letter-spacing:0.185328px;}
.lse_c03330{letter-spacing:0.209088px;}
.lsc_c03330{letter-spacing:0.242352px;}
.lsb_c03330{letter-spacing:0.508464px;}
.ls13_c03330{letter-spacing:0.514080px;}
.ls10_c03330{letter-spacing:0.536976px;}
.lsa_c03330{letter-spacing:0.579744px;}
.ls12_c03330{letter-spacing:0.594000px;}
.ls8_c03330{letter-spacing:0.598752px;}
.ls3_c03330{letter-spacing:0.613008px;}
.ls16_c03330{letter-spacing:0.651024px;}
.ls0_c03330{letter-spacing:0.717552px;}
.ls1_c03330{letter-spacing:0.722304px;}
.sc__c03330{text-shadow:none;}
.sc0_c03330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03330{-webkit-text-stroke:0px transparent;}
.sc0_c03330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03330{word-spacing:-15.126048px;}
.ws7_c03330{word-spacing:-12.602304px;}
.wsa_c03330{word-spacing:-12.474000px;}
.ws5_c03330{word-spacing:-12.459744px;}
.ws9_c03330{word-spacing:-12.416976px;}
.wsd_c03330{word-spacing:-11.305008px;}
.ws15_c03330{word-spacing:-1.083456px;}
.ws14_c03330{word-spacing:-1.078704px;}
.ws1a_c03330{word-spacing:-1.012176px;}
.ws10_c03330{word-spacing:-0.974160px;}
.ws19_c03330{word-spacing:-0.719712px;}
.ws13_c03330{word-spacing:-0.546480px;}
.ws12_c03330{word-spacing:-0.118800px;}
.ws16_c03330{word-spacing:-0.099792px;}
.ws18_c03330{word-spacing:-0.085536px;}
.ws17_c03330{word-spacing:-0.052272px;}
.ws11_c03330{word-spacing:0.000000px;}
.ws3_c03330{word-spacing:6.605280px;}
.wsf_c03330{word-spacing:17.682192px;}
.wsb_c03330{word-spacing:33.300288px;}
.wse_c03330{word-spacing:34.836912px;}
.ws1_c03330{word-spacing:37.759392px;}
.ws0_c03330{word-spacing:38.020752px;}
.ws2_c03330{word-spacing:39.218256px;}
.ws4_c03330{word-spacing:39.902544px;}
.ws6_c03330{word-spacing:42.026688px;}
.ws8_c03330{word-spacing:56.463264px;}
._0_c03330{margin-left:-1.948320px;}
._2_c03330{width:1.482624px;}
._6_c03330{width:30.778704px;}
._8_c03330{width:34.328448px;}
._7_c03330{width:39.864528px;}
._1_c03330{width:50.252400px;}
._3_c03330{width:51.530688px;}
._5_c03330{width:72.843408px;}
._4_c03330{width:74.910528px;}
.fc0_c03330{color:rgb(0,0,0);}
.fs0_c03330{font-size:47.520000px;}
.fs1_c03330{font-size:60.480000px;}
.y0_c03330{bottom:0.000000px;}
.yb_c03330{bottom:66.240450px;}
.y1e_c03330{bottom:131.878686px;}
.y1d_c03330{bottom:146.998362px;}
.y20_c03330{bottom:186.600234px;}
.y1f_c03330{bottom:196.320450px;}
.y1c_c03330{bottom:275.878542px;}
.y1b_c03330{bottom:356.878758px;}
.y19_c03330{bottom:406.559730px;}
.y15_c03330{bottom:424.560306px;}
.y1a_c03330{bottom:458.759262px;}
.y18_c03330{bottom:491.879514px;}
.y17_c03330{bottom:509.880090px;}
.y14_c03330{bottom:543.000342px;}
.y16_c03330{bottom:559.559874px;}
.y13_c03330{bottom:577.560450px;}
.y21_c03330{bottom:614.280450px;}
.yf_c03330{bottom:667.560054px;}
.y11_c03330{bottom:707.160234px;}
.y10_c03330{bottom:716.880450px;}
.ye_c03330{bottom:781.320558px;}
.yd_c03330{bottom:796.440234px;}
.ya_c03330{bottom:811.200000px;}
.y9_c03330{bottom:877.438722px;}
.yc_c03330{bottom:877.440450px;}
.y7_c03330{bottom:926.759730px;}
.y3_c03330{bottom:944.760306px;}
.y8_c03330{bottom:979.319226px;}
.y6_c03330{bottom:1012.439478px;}
.y5_c03330{bottom:1030.440054px;}
.y2_c03330{bottom:1063.560306px;}
.y4_c03330{bottom:1079.759874px;}
.y1_c03330{bottom:1097.760450px;}
.y12_c03330{bottom:1134.840450px;}
.h3_c03330{height:32.530781px;}
.h1_c03330{height:41.696016px;}
.h2_c03330{height:41.812031px;}
.h5_c03330{height:54.654737px;}
.h4_c03330{height:78.840000px;}
.h0_c03330{height:1263.000000px;}
.w2_c03330{width:215.280000px;}
.w1_c03330{width:892.500000px;}
.w0_c03330{width:892.830000px;}
.x0_c03330{left:0.000000px;}
.xf_c03330{left:117.000000px;}
.x8_c03330{left:440.999856px;}
.x4_c03330{left:445.680576px;}
.xd_c03330{left:451.080000px;}
.x7_c03330{left:455.399604px;}
.x5_c03330{left:461.880144px;}
.x1_c03330{left:463.320000px;}
.xc_c03330{left:483.480324px;}
.x9_c03330{left:492.119496px;}
.x6_c03330{left:493.200576px;}
.xe_c03330{left:506.880360px;}
.x3_c03330{left:511.919892px;}
.x2_c03330{left:526.679604px;}
.xa_c03330{left:569.520000px;}
.xb_c03330{left:617.400000px;}
@media print{
.v0_c03330{vertical-align:0.000000pt;}
.v1_c03330{vertical-align:1.279488pt;}
.ls15_c03330{letter-spacing:-0.751872pt;}
.ls9_c03330{letter-spacing:-0.511104pt;}
.lsf_c03330{letter-spacing:-0.274560pt;}
.ls11_c03330{letter-spacing:-0.244992pt;}
.lsd_c03330{letter-spacing:-0.232320pt;}
.ls6_c03330{letter-spacing:-0.215424pt;}
.ls4_c03330{letter-spacing:-0.105600pt;}
.ls14_c03330{letter-spacing:0.000000pt;}
.ls2_c03330{letter-spacing:0.005376pt;}
.ls5_c03330{letter-spacing:0.114048pt;}
.ls7_c03330{letter-spacing:0.164736pt;}
.lse_c03330{letter-spacing:0.185856pt;}
.lsc_c03330{letter-spacing:0.215424pt;}
.lsb_c03330{letter-spacing:0.451968pt;}
.ls13_c03330{letter-spacing:0.456960pt;}
.ls10_c03330{letter-spacing:0.477312pt;}
.lsa_c03330{letter-spacing:0.515328pt;}
.ls12_c03330{letter-spacing:0.528000pt;}
.ls8_c03330{letter-spacing:0.532224pt;}
.ls3_c03330{letter-spacing:0.544896pt;}
.ls16_c03330{letter-spacing:0.578688pt;}
.ls0_c03330{letter-spacing:0.637824pt;}
.ls1_c03330{letter-spacing:0.642048pt;}
.wsc_c03330{word-spacing:-13.445376pt;}
.ws7_c03330{word-spacing:-11.202048pt;}
.wsa_c03330{word-spacing:-11.088000pt;}
.ws5_c03330{word-spacing:-11.075328pt;}
.ws9_c03330{word-spacing:-11.037312pt;}
.wsd_c03330{word-spacing:-10.048896pt;}
.ws15_c03330{word-spacing:-0.963072pt;}
.ws14_c03330{word-spacing:-0.958848pt;}
.ws1a_c03330{word-spacing:-0.899712pt;}
.ws10_c03330{word-spacing:-0.865920pt;}
.ws19_c03330{word-spacing:-0.639744pt;}
.ws13_c03330{word-spacing:-0.485760pt;}
.ws12_c03330{word-spacing:-0.105600pt;}
.ws16_c03330{word-spacing:-0.088704pt;}
.ws18_c03330{word-spacing:-0.076032pt;}
.ws17_c03330{word-spacing:-0.046464pt;}
.ws11_c03330{word-spacing:0.000000pt;}
.ws3_c03330{word-spacing:5.871360pt;}
.wsf_c03330{word-spacing:15.717504pt;}
.wsb_c03330{word-spacing:29.600256pt;}
.wse_c03330{word-spacing:30.966144pt;}
.ws1_c03330{word-spacing:33.563904pt;}
.ws0_c03330{word-spacing:33.796224pt;}
.ws2_c03330{word-spacing:34.860672pt;}
.ws4_c03330{word-spacing:35.468928pt;}
.ws6_c03330{word-spacing:37.357056pt;}
.ws8_c03330{word-spacing:50.189568pt;}
._0_c03330{margin-left:-1.731840pt;}
._2_c03330{width:1.317888pt;}
._6_c03330{width:27.358848pt;}
._8_c03330{width:30.514176pt;}
._7_c03330{width:35.435136pt;}
._1_c03330{width:44.668800pt;}
._3_c03330{width:45.805056pt;}
._5_c03330{width:64.749696pt;}
._4_c03330{width:66.587136pt;}
.fs0_c03330{font-size:42.240000pt;}
.fs1_c03330{font-size:53.760000pt;}
.y0_c03330{bottom:0.000000pt;}
.yb_c03330{bottom:58.880400pt;}
.y1e_c03330{bottom:117.225499pt;}
.y1d_c03330{bottom:130.665211pt;}
.y20_c03330{bottom:165.866875pt;}
.y1f_c03330{bottom:174.507067pt;}
.y1c_c03330{bottom:245.225371pt;}
.y1b_c03330{bottom:317.225563pt;}
.y19_c03330{bottom:361.386427pt;}
.y15_c03330{bottom:377.386939pt;}
.y1a_c03330{bottom:407.786011pt;}
.y18_c03330{bottom:437.226235pt;}
.y17_c03330{bottom:453.226747pt;}
.y14_c03330{bottom:482.666971pt;}
.y16_c03330{bottom:497.386555pt;}
.y13_c03330{bottom:513.387067pt;}
.y21_c03330{bottom:546.027067pt;}
.yf_c03330{bottom:593.386715pt;}
.y11_c03330{bottom:628.586875pt;}
.y10_c03330{bottom:637.227067pt;}
.ye_c03330{bottom:694.507163pt;}
.yd_c03330{bottom:707.946875pt;}
.ya_c03330{bottom:721.066667pt;}
.y9_c03330{bottom:779.945531pt;}
.yc_c03330{bottom:779.947067pt;}
.y7_c03330{bottom:823.786427pt;}
.y3_c03330{bottom:839.786939pt;}
.y8_c03330{bottom:870.505979pt;}
.y6_c03330{bottom:899.946203pt;}
.y5_c03330{bottom:915.946715pt;}
.y2_c03330{bottom:945.386939pt;}
.y4_c03330{bottom:959.786555pt;}
.y1_c03330{bottom:975.787067pt;}
.y12_c03330{bottom:1008.747067pt;}
.h3_c03330{height:28.916250pt;}
.h1_c03330{height:37.063125pt;}
.h2_c03330{height:37.166250pt;}
.h5_c03330{height:48.581988pt;}
.h4_c03330{height:70.080000pt;}
.h0_c03330{height:1122.666667pt;}
.w2_c03330{width:191.360000pt;}
.w1_c03330{width:793.333333pt;}
.w0_c03330{width:793.626667pt;}
.x0_c03330{left:0.000000pt;}
.xf_c03330{left:104.000000pt;}
.x8_c03330{left:391.999872pt;}
.x4_c03330{left:396.160512pt;}
.xd_c03330{left:400.960000pt;}
.x7_c03330{left:404.799648pt;}
.x5_c03330{left:410.560128pt;}
.x1_c03330{left:411.840000pt;}
.xc_c03330{left:429.760288pt;}
.x9_c03330{left:437.439552pt;}
.x6_c03330{left:438.400512pt;}
.xe_c03330{left:450.560320pt;}
.x3_c03330{left:455.039904pt;}
.x2_c03330{left:468.159648pt;}
.xa_c03330{left:506.240000pt;}
.xb_c03330{left:548.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03331 {
    display:none;
  }
  .loading-indicator_c03331.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03331 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03331 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03331" -> "#page-container .classname_c03331")
 */
.pf_c03331 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03331 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03331.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03331 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03331 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03331 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03331 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03331 {overflow:visible;}
  }
}
.c_c03331 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03331 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03331:after { /* webkit #35443 */
  content: '';
}
.t_c03331:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03331 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03331 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03331 { /* info for Javascript */
  display:none;
}
.l_c03331 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03331 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03331 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03331:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03331 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03331.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03331.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03331 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03331{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03331;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03331{font-family:ff1_c03331;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03331;src:url('chunks/assets/font_5d656b75353f64672d411511.woff2')format("woff");}.ff2_c03331{font-family:ff2_c03331;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03331;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03331{font-family:ff3_c03331;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03331{vertical-align:0.000000px;}
.v1_c03331{vertical-align:1.439424px;}
.ls12_c03331{letter-spacing:-0.855360px;}
.ls17_c03331{letter-spacing:-0.765072px;}
.lse_c03331{letter-spacing:-0.722304px;}
.ls9_c03331{letter-spacing:-0.574992px;}
.ls13_c03331{letter-spacing:-0.275616px;}
.lsd_c03331{letter-spacing:-0.261360px;}
.ls6_c03331{letter-spacing:-0.242352px;}
.ls4_c03331{letter-spacing:-0.118800px;}
.ls10_c03331{letter-spacing:-0.047520px;}
.ls16_c03331{letter-spacing:0.000000px;}
.ls1_c03331{letter-spacing:0.006048px;}
.ls5_c03331{letter-spacing:0.128304px;}
.ls7_c03331{letter-spacing:0.185328px;}
.lsc_c03331{letter-spacing:0.242352px;}
.lsb_c03331{letter-spacing:0.508464px;}
.ls15_c03331{letter-spacing:0.514080px;}
.ls11_c03331{letter-spacing:0.536976px;}
.lsa_c03331{letter-spacing:0.579744px;}
.ls14_c03331{letter-spacing:0.594000px;}
.ls8_c03331{letter-spacing:0.598752px;}
.ls3_c03331{letter-spacing:0.613008px;}
.ls2_c03331{letter-spacing:0.651024px;}
.ls0_c03331{letter-spacing:0.717552px;}
.lsf_c03331{letter-spacing:0.722304px;}
.sc__c03331{text-shadow:none;}
.sc0_c03331{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03331{-webkit-text-stroke:0px transparent;}
.sc0_c03331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03331{word-spacing:-15.126048px;}
.wsb_c03331{word-spacing:-12.474000px;}
.ws5_c03331{word-spacing:-12.459744px;}
.wsf_c03331{word-spacing:-12.388464px;}
.wse_c03331{word-spacing:-11.305008px;}
.ws14_c03331{word-spacing:-1.078704px;}
.ws1a_c03331{word-spacing:-1.012176px;}
.ws10_c03331{word-spacing:-0.974160px;}
.ws19_c03331{word-spacing:-0.719712px;}
.ws13_c03331{word-spacing:-0.546480px;}
.ws16_c03331{word-spacing:-0.313632px;}
.ws12_c03331{word-spacing:-0.118800px;}
.ws15_c03331{word-spacing:-0.099792px;}
.ws18_c03331{word-spacing:-0.085536px;}
.ws11_c03331{word-spacing:0.000000px;}
.ws1b_c03331{word-spacing:0.403920px;}
.ws17_c03331{word-spacing:0.494208px;}
.ws8_c03331{word-spacing:2.157408px;}
.ws3_c03331{word-spacing:6.605280px;}
.wsa_c03331{word-spacing:12.089088px;}
.wsc_c03331{word-spacing:33.300288px;}
.ws9_c03331{word-spacing:34.836912px;}
.ws1_c03331{word-spacing:37.759392px;}
.ws0_c03331{word-spacing:38.020752px;}
.ws2_c03331{word-spacing:39.218256px;}
.ws4_c03331{word-spacing:39.902544px;}
.ws6_c03331{word-spacing:42.026688px;}
.ws7_c03331{word-spacing:79.923888px;}
._0_c03331{margin-left:-1.948320px;}
._2_c03331{width:1.482624px;}
._7_c03331{width:12.321936px;}
._6_c03331{width:17.126208px;}
._8_c03331{width:28.074816px;}
._1_c03331{width:50.252400px;}
._3_c03331{width:51.530688px;}
._5_c03331{width:94.550544px;}
._4_c03331{width:99.364320px;}
.fc0_c03331{color:rgb(0,0,0);}
.fs0_c03331{font-size:47.520000px;}
.fs1_c03331{font-size:60.480000px;}
.y0_c03331{bottom:0.000000px;}
.y1c_c03331{bottom:146.998362px;}
.y1e_c03331{bottom:186.600234px;}
.y1d_c03331{bottom:196.320450px;}
.y1b_c03331{bottom:275.878542px;}
.y1a_c03331{bottom:356.878758px;}
.y18_c03331{bottom:406.559730px;}
.y14_c03331{bottom:424.560306px;}
.y19_c03331{bottom:458.759262px;}
.y17_c03331{bottom:491.879514px;}
.y16_c03331{bottom:509.880090px;}
.y13_c03331{bottom:543.000342px;}
.y15_c03331{bottom:559.559874px;}
.y12_c03331{bottom:577.560450px;}
.y1f_c03331{bottom:614.280450px;}
.ye_c03331{bottom:652.439838px;}
.yd_c03331{bottom:667.559514px;}
.y10_c03331{bottom:707.160234px;}
.yf_c03331{bottom:716.880450px;}
.yc_c03331{bottom:766.559118px;}
.yb_c03331{bottom:781.318830px;}
.ya_c03331{bottom:796.438506px;}
.y9_c03331{bottom:877.438722px;}
.y7_c03331{bottom:926.759730px;}
.y3_c03331{bottom:944.760306px;}
.y8_c03331{bottom:979.319226px;}
.y6_c03331{bottom:1012.439478px;}
.y5_c03331{bottom:1030.440054px;}
.y2_c03331{bottom:1063.560306px;}
.y4_c03331{bottom:1079.759874px;}
.y1_c03331{bottom:1097.760450px;}
.y11_c03331{bottom:1134.840450px;}
.h3_c03331{height:32.530781px;}
.h1_c03331{height:41.696016px;}
.h2_c03331{height:41.812031px;}
.h4_c03331{height:54.654737px;}
.h0_c03331{height:1263.000000px;}
.w1_c03331{width:892.500000px;}
.w0_c03331{width:892.830000px;}
.x0_c03331{left:0.000000px;}
.xe_c03331{left:117.000000px;}
.x8_c03331{left:440.999856px;}
.x4_c03331{left:445.680576px;}
.xc_c03331{left:451.080000px;}
.x7_c03331{left:455.399604px;}
.x5_c03331{left:461.880144px;}
.x1_c03331{left:463.320000px;}
.xb_c03331{left:483.480360px;}
.x9_c03331{left:492.119496px;}
.x6_c03331{left:493.200576px;}
.xd_c03331{left:506.880360px;}
.x3_c03331{left:511.919892px;}
.x2_c03331{left:526.679604px;}
.xa_c03331{left:569.880036px;}
@media print{
.v0_c03331{vertical-align:0.000000pt;}
.v1_c03331{vertical-align:1.279488pt;}
.ls12_c03331{letter-spacing:-0.760320pt;}
.ls17_c03331{letter-spacing:-0.680064pt;}
.lse_c03331{letter-spacing:-0.642048pt;}
.ls9_c03331{letter-spacing:-0.511104pt;}
.ls13_c03331{letter-spacing:-0.244992pt;}
.lsd_c03331{letter-spacing:-0.232320pt;}
.ls6_c03331{letter-spacing:-0.215424pt;}
.ls4_c03331{letter-spacing:-0.105600pt;}
.ls10_c03331{letter-spacing:-0.042240pt;}
.ls16_c03331{letter-spacing:0.000000pt;}
.ls1_c03331{letter-spacing:0.005376pt;}
.ls5_c03331{letter-spacing:0.114048pt;}
.ls7_c03331{letter-spacing:0.164736pt;}
.lsc_c03331{letter-spacing:0.215424pt;}
.lsb_c03331{letter-spacing:0.451968pt;}
.ls15_c03331{letter-spacing:0.456960pt;}
.ls11_c03331{letter-spacing:0.477312pt;}
.lsa_c03331{letter-spacing:0.515328pt;}
.ls14_c03331{letter-spacing:0.528000pt;}
.ls8_c03331{letter-spacing:0.532224pt;}
.ls3_c03331{letter-spacing:0.544896pt;}
.ls2_c03331{letter-spacing:0.578688pt;}
.ls0_c03331{letter-spacing:0.637824pt;}
.lsf_c03331{letter-spacing:0.642048pt;}
.wsd_c03331{word-spacing:-13.445376pt;}
.wsb_c03331{word-spacing:-11.088000pt;}
.ws5_c03331{word-spacing:-11.075328pt;}
.wsf_c03331{word-spacing:-11.011968pt;}
.wse_c03331{word-spacing:-10.048896pt;}
.ws14_c03331{word-spacing:-0.958848pt;}
.ws1a_c03331{word-spacing:-0.899712pt;}
.ws10_c03331{word-spacing:-0.865920pt;}
.ws19_c03331{word-spacing:-0.639744pt;}
.ws13_c03331{word-spacing:-0.485760pt;}
.ws16_c03331{word-spacing:-0.278784pt;}
.ws12_c03331{word-spacing:-0.105600pt;}
.ws15_c03331{word-spacing:-0.088704pt;}
.ws18_c03331{word-spacing:-0.076032pt;}
.ws11_c03331{word-spacing:0.000000pt;}
.ws1b_c03331{word-spacing:0.359040pt;}
.ws17_c03331{word-spacing:0.439296pt;}
.ws8_c03331{word-spacing:1.917696pt;}
.ws3_c03331{word-spacing:5.871360pt;}
.wsa_c03331{word-spacing:10.745856pt;}
.wsc_c03331{word-spacing:29.600256pt;}
.ws9_c03331{word-spacing:30.966144pt;}
.ws1_c03331{word-spacing:33.563904pt;}
.ws0_c03331{word-spacing:33.796224pt;}
.ws2_c03331{word-spacing:34.860672pt;}
.ws4_c03331{word-spacing:35.468928pt;}
.ws6_c03331{word-spacing:37.357056pt;}
.ws7_c03331{word-spacing:71.043456pt;}
._0_c03331{margin-left:-1.731840pt;}
._2_c03331{width:1.317888pt;}
._7_c03331{width:10.952832pt;}
._6_c03331{width:15.223296pt;}
._8_c03331{width:24.955392pt;}
._1_c03331{width:44.668800pt;}
._3_c03331{width:45.805056pt;}
._5_c03331{width:84.044928pt;}
._4_c03331{width:88.323840pt;}
.fs0_c03331{font-size:42.240000pt;}
.fs1_c03331{font-size:53.760000pt;}
.y0_c03331{bottom:0.000000pt;}
.y1c_c03331{bottom:130.665211pt;}
.y1e_c03331{bottom:165.866875pt;}
.y1d_c03331{bottom:174.507067pt;}
.y1b_c03331{bottom:245.225371pt;}
.y1a_c03331{bottom:317.225563pt;}
.y18_c03331{bottom:361.386427pt;}
.y14_c03331{bottom:377.386939pt;}
.y19_c03331{bottom:407.786011pt;}
.y17_c03331{bottom:437.226235pt;}
.y16_c03331{bottom:453.226747pt;}
.y13_c03331{bottom:482.666971pt;}
.y15_c03331{bottom:497.386555pt;}
.y12_c03331{bottom:513.387067pt;}
.y1f_c03331{bottom:546.027067pt;}
.ye_c03331{bottom:579.946523pt;}
.yd_c03331{bottom:593.386235pt;}
.y10_c03331{bottom:628.586875pt;}
.yf_c03331{bottom:637.227067pt;}
.yc_c03331{bottom:681.385883pt;}
.yb_c03331{bottom:694.505627pt;}
.ya_c03331{bottom:707.945339pt;}
.y9_c03331{bottom:779.945531pt;}
.y7_c03331{bottom:823.786427pt;}
.y3_c03331{bottom:839.786939pt;}
.y8_c03331{bottom:870.505979pt;}
.y6_c03331{bottom:899.946203pt;}
.y5_c03331{bottom:915.946715pt;}
.y2_c03331{bottom:945.386939pt;}
.y4_c03331{bottom:959.786555pt;}
.y1_c03331{bottom:975.787067pt;}
.y11_c03331{bottom:1008.747067pt;}
.h3_c03331{height:28.916250pt;}
.h1_c03331{height:37.063125pt;}
.h2_c03331{height:37.166250pt;}
.h4_c03331{height:48.581988pt;}
.h0_c03331{height:1122.666667pt;}
.w1_c03331{width:793.333333pt;}
.w0_c03331{width:793.626667pt;}
.x0_c03331{left:0.000000pt;}
.xe_c03331{left:104.000000pt;}
.x8_c03331{left:391.999872pt;}
.x4_c03331{left:396.160512pt;}
.xc_c03331{left:400.960000pt;}
.x7_c03331{left:404.799648pt;}
.x5_c03331{left:410.560128pt;}
.x1_c03331{left:411.840000pt;}
.xb_c03331{left:429.760320pt;}
.x9_c03331{left:437.439552pt;}
.x6_c03331{left:438.400512pt;}
.xd_c03331{left:450.560320pt;}
.x3_c03331{left:455.039904pt;}
.x2_c03331{left:468.159648pt;}
.xa_c03331{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03332 {
    display:none;
  }
  .loading-indicator_c03332.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03332 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03332 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03332" -> "#page-container .classname_c03332")
 */
.pf_c03332 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03332 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03332.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03332 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03332 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03332 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03332 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03332 {overflow:visible;}
  }
}
.c_c03332 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03332 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03332:after { /* webkit #35443 */
  content: '';
}
.t_c03332:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03332 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03332 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03332 { /* info for Javascript */
  display:none;
}
.l_c03332 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03332 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03332 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03332:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03332 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03332.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03332.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03332 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03332{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03332;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03332{font-family:ff1_c03332;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03332;src:url('chunks/assets/font_6dec3b5a4aae972931c48380.woff2')format("woff");}.ff2_c03332{font-family:ff2_c03332;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03332;src:url('chunks/assets/font_9e4a70bf2fd37615dd44c9f3.woff2')format("woff");}.ff3_c03332{font-family:ff3_c03332;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03332{vertical-align:0.000000px;}
.v1_c03332{vertical-align:1.439424px;}
.ls17_c03332{letter-spacing:-1.425600px;}
.ls18_c03332{letter-spacing:-0.860112px;}
.ls1a_c03332{letter-spacing:-0.817344px;}
.lsf_c03332{letter-spacing:-0.793584px;}
.ls19_c03332{letter-spacing:-0.722304px;}
.lsa_c03332{letter-spacing:-0.574992px;}
.ls10_c03332{letter-spacing:-0.275616px;}
.lsd_c03332{letter-spacing:-0.261360px;}
.ls7_c03332{letter-spacing:-0.242352px;}
.ls5_c03332{letter-spacing:-0.118800px;}
.ls13_c03332{letter-spacing:0.000000px;}
.ls1_c03332{letter-spacing:0.006048px;}
.ls14_c03332{letter-spacing:0.090288px;}
.ls6_c03332{letter-spacing:0.128304px;}
.ls8_c03332{letter-spacing:0.185328px;}
.ls15_c03332{letter-spacing:0.228096px;}
.lsc_c03332{letter-spacing:0.508464px;}
.ls12_c03332{letter-spacing:0.514080px;}
.lse_c03332{letter-spacing:0.536976px;}
.lsb_c03332{letter-spacing:0.579744px;}
.ls11_c03332{letter-spacing:0.594000px;}
.ls9_c03332{letter-spacing:0.598752px;}
.ls4_c03332{letter-spacing:0.613008px;}
.ls0_c03332{letter-spacing:0.651024px;}
.ls3_c03332{letter-spacing:0.679536px;}
.ls2_c03332{letter-spacing:0.717552px;}
.ls16_c03332{letter-spacing:0.722304px;}
.sc__c03332{text-shadow:none;}
.sc0_c03332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03332{-webkit-text-stroke:0px transparent;}
.sc0_c03332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c03332{word-spacing:-15.126048px;}
.ws8_c03332{word-spacing:-12.474000px;}
.ws5_c03332{word-spacing:-12.459744px;}
.ws6_c03332{word-spacing:-12.388464px;}
.ws4_c03332{word-spacing:-11.305008px;}
.wse_c03332{word-spacing:-10.454400px;}
.ws14_c03332{word-spacing:-2.732400px;}
.wsb_c03332{word-spacing:-1.810512px;}
.ws17_c03332{word-spacing:-1.012176px;}
.ws15_c03332{word-spacing:-0.974160px;}
.ws1d_c03332{word-spacing:-0.719712px;}
.ws1e_c03332{word-spacing:-0.589248px;}
.ws19_c03332{word-spacing:-0.546480px;}
.ws18_c03332{word-spacing:-0.118800px;}
.ws1a_c03332{word-spacing:-0.099792px;}
.ws1c_c03332{word-spacing:-0.085536px;}
.ws16_c03332{word-spacing:0.000000px;}
.ws1b_c03332{word-spacing:0.432432px;}
.ws1f_c03332{word-spacing:0.456192px;}
.ws13_c03332{word-spacing:3.027024px;}
.wsc_c03332{word-spacing:5.445792px;}
.ws3_c03332{word-spacing:6.605280px;}
.ws12_c03332{word-spacing:7.565184px;}
.ws11_c03332{word-spacing:8.045136px;}
.wsf_c03332{word-spacing:8.990784px;}
.wsd_c03332{word-spacing:9.356688px;}
.ws10_c03332{word-spacing:9.755856px;}
.ws9_c03332{word-spacing:33.300288px;}
.ws7_c03332{word-spacing:34.836912px;}
.ws1_c03332{word-spacing:37.759392px;}
.ws0_c03332{word-spacing:38.020752px;}
.ws2_c03332{word-spacing:39.218256px;}
._5_c03332{margin-left:-3.084048px;}
._0_c03332{margin-left:-1.948320px;}
._2_c03332{width:1.482624px;}
._4_c03332{width:18.765648px;}
._6_c03332{width:19.796832px;}
._7_c03332{width:22.738320px;}
._8_c03332{width:23.878800px;}
._1_c03332{width:50.252400px;}
._3_c03332{width:51.530688px;}
.fc0_c03332{color:rgb(0,0,0);}
.fs0_c03332{font-size:47.520000px;}
.fs1_c03332{font-size:60.480000px;}
.y0_c03332{bottom:0.000000px;}
.y19_c03332{bottom:65.880450px;}
.y1f_c03332{bottom:116.760702px;}
.y1e_c03332{bottom:131.880378px;}
.y1d_c03332{bottom:147.000054px;}
.y21_c03332{bottom:186.600234px;}
.y20_c03332{bottom:196.320450px;}
.y1c_c03332{bottom:260.760558px;}
.y1b_c03332{bottom:275.880234px;}
.y18_c03332{bottom:291.000000px;}
.y17_c03332{bottom:356.878758px;}
.y1a_c03332{bottom:356.880450px;}
.y15_c03332{bottom:406.559730px;}
.y11_c03332{bottom:424.560306px;}
.y16_c03332{bottom:458.759262px;}
.y14_c03332{bottom:491.879514px;}
.y13_c03332{bottom:509.880090px;}
.y10_c03332{bottom:543.000342px;}
.y12_c03332{bottom:559.559874px;}
.yf_c03332{bottom:577.560450px;}
.y22_c03332{bottom:614.280450px;}
.yb_c03332{bottom:667.558326px;}
.yd_c03332{bottom:707.160234px;}
.yc_c03332{bottom:716.880450px;}
.ya_c03332{bottom:796.438506px;}
.y9_c03332{bottom:877.438722px;}
.y7_c03332{bottom:926.759730px;}
.y3_c03332{bottom:944.760306px;}
.y8_c03332{bottom:979.319226px;}
.y6_c03332{bottom:1012.439478px;}
.y5_c03332{bottom:1030.440054px;}
.y2_c03332{bottom:1063.560306px;}
.y4_c03332{bottom:1079.759874px;}
.y1_c03332{bottom:1097.760450px;}
.ye_c03332{bottom:1134.840450px;}
.h3_c03332{height:32.530781px;}
.h1_c03332{height:41.696016px;}
.h2_c03332{height:41.812031px;}
.h4_c03332{height:54.654737px;}
.h5_c03332{height:78.480000px;}
.h0_c03332{height:1263.000000px;}
.w2_c03332{width:215.280000px;}
.w1_c03332{width:892.500000px;}
.w0_c03332{width:892.830000px;}
.x0_c03332{left:0.000000px;}
.xd_c03332{left:117.000000px;}
.x8_c03332{left:441.001044px;}
.x4_c03332{left:445.680576px;}
.xb_c03332{left:451.080000px;}
.x7_c03332{left:455.400792px;}
.x5_c03332{left:461.880144px;}
.x1_c03332{left:463.320000px;}
.xa_c03332{left:483.481548px;}
.x9_c03332{left:492.120684px;}
.x6_c03332{left:493.200576px;}
.xc_c03332{left:506.880360px;}
.x3_c03332{left:511.919892px;}
.x2_c03332{left:526.679604px;}
.xe_c03332{left:569.520000px;}
.xf_c03332{left:681.480000px;}
@media print{
.v0_c03332{vertical-align:0.000000pt;}
.v1_c03332{vertical-align:1.279488pt;}
.ls17_c03332{letter-spacing:-1.267200pt;}
.ls18_c03332{letter-spacing:-0.764544pt;}
.ls1a_c03332{letter-spacing:-0.726528pt;}
.lsf_c03332{letter-spacing:-0.705408pt;}
.ls19_c03332{letter-spacing:-0.642048pt;}
.lsa_c03332{letter-spacing:-0.511104pt;}
.ls10_c03332{letter-spacing:-0.244992pt;}
.lsd_c03332{letter-spacing:-0.232320pt;}
.ls7_c03332{letter-spacing:-0.215424pt;}
.ls5_c03332{letter-spacing:-0.105600pt;}
.ls13_c03332{letter-spacing:0.000000pt;}
.ls1_c03332{letter-spacing:0.005376pt;}
.ls14_c03332{letter-spacing:0.080256pt;}
.ls6_c03332{letter-spacing:0.114048pt;}
.ls8_c03332{letter-spacing:0.164736pt;}
.ls15_c03332{letter-spacing:0.202752pt;}
.lsc_c03332{letter-spacing:0.451968pt;}
.ls12_c03332{letter-spacing:0.456960pt;}
.lse_c03332{letter-spacing:0.477312pt;}
.lsb_c03332{letter-spacing:0.515328pt;}
.ls11_c03332{letter-spacing:0.528000pt;}
.ls9_c03332{letter-spacing:0.532224pt;}
.ls4_c03332{letter-spacing:0.544896pt;}
.ls0_c03332{letter-spacing:0.578688pt;}
.ls3_c03332{letter-spacing:0.604032pt;}
.ls2_c03332{letter-spacing:0.637824pt;}
.ls16_c03332{letter-spacing:0.642048pt;}
.wsa_c03332{word-spacing:-13.445376pt;}
.ws8_c03332{word-spacing:-11.088000pt;}
.ws5_c03332{word-spacing:-11.075328pt;}
.ws6_c03332{word-spacing:-11.011968pt;}
.ws4_c03332{word-spacing:-10.048896pt;}
.wse_c03332{word-spacing:-9.292800pt;}
.ws14_c03332{word-spacing:-2.428800pt;}
.wsb_c03332{word-spacing:-1.609344pt;}
.ws17_c03332{word-spacing:-0.899712pt;}
.ws15_c03332{word-spacing:-0.865920pt;}
.ws1d_c03332{word-spacing:-0.639744pt;}
.ws1e_c03332{word-spacing:-0.523776pt;}
.ws19_c03332{word-spacing:-0.485760pt;}
.ws18_c03332{word-spacing:-0.105600pt;}
.ws1a_c03332{word-spacing:-0.088704pt;}
.ws1c_c03332{word-spacing:-0.076032pt;}
.ws16_c03332{word-spacing:0.000000pt;}
.ws1b_c03332{word-spacing:0.384384pt;}
.ws1f_c03332{word-spacing:0.405504pt;}
.ws13_c03332{word-spacing:2.690688pt;}
.wsc_c03332{word-spacing:4.840704pt;}
.ws3_c03332{word-spacing:5.871360pt;}
.ws12_c03332{word-spacing:6.724608pt;}
.ws11_c03332{word-spacing:7.151232pt;}
.wsf_c03332{word-spacing:7.991808pt;}
.wsd_c03332{word-spacing:8.317056pt;}
.ws10_c03332{word-spacing:8.671872pt;}
.ws9_c03332{word-spacing:29.600256pt;}
.ws7_c03332{word-spacing:30.966144pt;}
.ws1_c03332{word-spacing:33.563904pt;}
.ws0_c03332{word-spacing:33.796224pt;}
.ws2_c03332{word-spacing:34.860672pt;}
._5_c03332{margin-left:-2.741376pt;}
._0_c03332{margin-left:-1.731840pt;}
._2_c03332{width:1.317888pt;}
._4_c03332{width:16.680576pt;}
._6_c03332{width:17.597184pt;}
._7_c03332{width:20.211840pt;}
._8_c03332{width:21.225600pt;}
._1_c03332{width:44.668800pt;}
._3_c03332{width:45.805056pt;}
.fs0_c03332{font-size:42.240000pt;}
.fs1_c03332{font-size:53.760000pt;}
.y0_c03332{bottom:0.000000pt;}
.y19_c03332{bottom:58.560400pt;}
.y1f_c03332{bottom:103.787291pt;}
.y1e_c03332{bottom:117.227003pt;}
.y1d_c03332{bottom:130.666715pt;}
.y21_c03332{bottom:165.866875pt;}
.y20_c03332{bottom:174.507067pt;}
.y1c_c03332{bottom:231.787163pt;}
.y1b_c03332{bottom:245.226875pt;}
.y18_c03332{bottom:258.666667pt;}
.y17_c03332{bottom:317.225563pt;}
.y1a_c03332{bottom:317.227067pt;}
.y15_c03332{bottom:361.386427pt;}
.y11_c03332{bottom:377.386939pt;}
.y16_c03332{bottom:407.786011pt;}
.y14_c03332{bottom:437.226235pt;}
.y13_c03332{bottom:453.226747pt;}
.y10_c03332{bottom:482.666971pt;}
.y12_c03332{bottom:497.386555pt;}
.yf_c03332{bottom:513.387067pt;}
.y22_c03332{bottom:546.027067pt;}
.yb_c03332{bottom:593.385179pt;}
.yd_c03332{bottom:628.586875pt;}
.yc_c03332{bottom:637.227067pt;}
.ya_c03332{bottom:707.945339pt;}
.y9_c03332{bottom:779.945531pt;}
.y7_c03332{bottom:823.786427pt;}
.y3_c03332{bottom:839.786939pt;}
.y8_c03332{bottom:870.505979pt;}
.y6_c03332{bottom:899.946203pt;}
.y5_c03332{bottom:915.946715pt;}
.y2_c03332{bottom:945.386939pt;}
.y4_c03332{bottom:959.786555pt;}
.y1_c03332{bottom:975.787067pt;}
.ye_c03332{bottom:1008.747067pt;}
.h3_c03332{height:28.916250pt;}
.h1_c03332{height:37.063125pt;}
.h2_c03332{height:37.166250pt;}
.h4_c03332{height:48.581988pt;}
.h5_c03332{height:69.760000pt;}
.h0_c03332{height:1122.666667pt;}
.w2_c03332{width:191.360000pt;}
.w1_c03332{width:793.333333pt;}
.w0_c03332{width:793.626667pt;}
.x0_c03332{left:0.000000pt;}
.xd_c03332{left:104.000000pt;}
.x8_c03332{left:392.000928pt;}
.x4_c03332{left:396.160512pt;}
.xb_c03332{left:400.960000pt;}
.x7_c03332{left:404.800704pt;}
.x5_c03332{left:410.560128pt;}
.x1_c03332{left:411.840000pt;}
.xa_c03332{left:429.761376pt;}
.x9_c03332{left:437.440608pt;}
.x6_c03332{left:438.400512pt;}
.xc_c03332{left:450.560320pt;}
.x3_c03332{left:455.039904pt;}
.x2_c03332{left:468.159648pt;}
.xe_c03332{left:506.240000pt;}
.xf_c03332{left:605.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03333 {
    display:none;
  }
  .loading-indicator_c03333.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03333 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03333 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03333" -> "#page-container .classname_c03333")
 */
.pf_c03333 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03333 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03333.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03333 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03333 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03333 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03333 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03333 {overflow:visible;}
  }
}
.c_c03333 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03333 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03333:after { /* webkit #35443 */
  content: '';
}
.t_c03333:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03333 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03333 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03333 { /* info for Javascript */
  display:none;
}
.l_c03333 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03333 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03333 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03333:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03333 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03333.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03333.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03333 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03333{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03333;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03333{font-family:ff1_c03333;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03333;src:url('chunks/assets/font_adb912b99a2fa922b7492da3.woff2')format("woff");}.ff2_c03333{font-family:ff2_c03333;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03333;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03333{font-family:ff3_c03333;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03333{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03333{vertical-align:0.000000px;}
.v1_c03333{vertical-align:1.439424px;}
.ls15_c03333{letter-spacing:-0.793584px;}
.ls9_c03333{letter-spacing:-0.703296px;}
.ls7_c03333{letter-spacing:-0.613008px;}
.lsa_c03333{letter-spacing:-0.574992px;}
.lsd_c03333{letter-spacing:-0.304128px;}
.ls10_c03333{letter-spacing:-0.275616px;}
.lse_c03333{letter-spacing:-0.261360px;}
.ls6_c03333{letter-spacing:-0.242352px;}
.ls14_c03333{letter-spacing:-0.185328px;}
.ls4_c03333{letter-spacing:-0.118800px;}
.ls16_c03333{letter-spacing:-0.080784px;}
.ls13_c03333{letter-spacing:0.000000px;}
.ls0_c03333{letter-spacing:0.006048px;}
.ls5_c03333{letter-spacing:0.128304px;}
.lsc_c03333{letter-spacing:0.508464px;}
.ls12_c03333{letter-spacing:0.514080px;}
.lsf_c03333{letter-spacing:0.536976px;}
.lsb_c03333{letter-spacing:0.579744px;}
.ls11_c03333{letter-spacing:0.594000px;}
.ls8_c03333{letter-spacing:0.598752px;}
.ls2_c03333{letter-spacing:0.613008px;}
.ls3_c03333{letter-spacing:0.717552px;}
.ls1_c03333{letter-spacing:0.722304px;}
.sc__c03333{text-shadow:none;}
.sc0_c03333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03333{-webkit-text-stroke:0px transparent;}
.sc0_c03333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03333{word-spacing:-15.126048px;}
.ws9_c03333{word-spacing:-12.474000px;}
.ws5_c03333{word-spacing:-12.459744px;}
.ws8_c03333{word-spacing:-12.416976px;}
.ws6_c03333{word-spacing:-12.388464px;}
.wsc_c03333{word-spacing:-11.637648px;}
.ws4_c03333{word-spacing:-11.305008px;}
.ws2_c03333{word-spacing:-11.266992px;}
.ws1a_c03333{word-spacing:-1.083456px;}
.ws12_c03333{word-spacing:-0.974160px;}
.ws19_c03333{word-spacing:-0.719712px;}
.ws14_c03333{word-spacing:-0.118800px;}
.ws17_c03333{word-spacing:-0.099792px;}
.ws18_c03333{word-spacing:-0.085536px;}
.ws16_c03333{word-spacing:-0.057024px;}
.ws13_c03333{word-spacing:0.000000px;}
.ws15_c03333{word-spacing:0.342144px;}
.ws1b_c03333{word-spacing:0.432432px;}
.ws10_c03333{word-spacing:16.722288px;}
.wsf_c03333{word-spacing:28.450224px;}
.wsa_c03333{word-spacing:33.300288px;}
.ws11_c03333{word-spacing:34.836912px;}
.ws7_c03333{word-spacing:36.143712px;}
.ws1_c03333{word-spacing:37.759392px;}
.ws0_c03333{word-spacing:38.020752px;}
.ws3_c03333{word-spacing:39.218256px;}
.wsd_c03333{word-spacing:39.902544px;}
.wse_c03333{word-spacing:42.026688px;}
._0_c03333{margin-left:-1.948320px;}
._2_c03333{width:1.482624px;}
._5_c03333{width:5.749920px;}
._4_c03333{width:16.346880px;}
._a_c03333{width:29.680992px;}
._b_c03333{width:30.997296px;}
._9_c03333{width:34.318944px;}
._8_c03333{width:36.115200px;}
._6_c03333{width:38.115792px;}
._7_c03333{width:42.036192px;}
._1_c03333{width:50.252400px;}
._3_c03333{width:51.530688px;}
.fc0_c03333{color:rgb(0,0,0);}
.fs0_c03333{font-size:47.520000px;}
.fs1_c03333{font-size:60.480000px;}
.y0_c03333{bottom:0.000000px;}
.y1b_c03333{bottom:146.998362px;}
.y1d_c03333{bottom:186.600234px;}
.y1c_c03333{bottom:196.320450px;}
.y1a_c03333{bottom:260.758866px;}
.y19_c03333{bottom:275.878542px;}
.y18_c03333{bottom:341.759082px;}
.y17_c03333{bottom:356.878758px;}
.y15_c03333{bottom:406.559730px;}
.y11_c03333{bottom:424.560306px;}
.y16_c03333{bottom:458.759262px;}
.y14_c03333{bottom:491.879514px;}
.y13_c03333{bottom:509.880090px;}
.y10_c03333{bottom:543.000342px;}
.y12_c03333{bottom:559.559874px;}
.yf_c03333{bottom:577.560450px;}
.y1e_c03333{bottom:614.280450px;}
.yb_c03333{bottom:667.558326px;}
.yd_c03333{bottom:707.160234px;}
.yc_c03333{bottom:716.880450px;}
.ya_c03333{bottom:796.438506px;}
.y9_c03333{bottom:877.438722px;}
.y7_c03333{bottom:926.759730px;}
.y3_c03333{bottom:944.760306px;}
.y8_c03333{bottom:979.319226px;}
.y6_c03333{bottom:1012.439478px;}
.y5_c03333{bottom:1030.440054px;}
.y2_c03333{bottom:1063.560306px;}
.y4_c03333{bottom:1079.759874px;}
.y1_c03333{bottom:1097.760450px;}
.ye_c03333{bottom:1134.840450px;}
.h3_c03333{height:32.530781px;}
.h1_c03333{height:41.696016px;}
.h2_c03333{height:41.812031px;}
.h4_c03333{height:54.654737px;}
.h0_c03333{height:1263.000000px;}
.w1_c03333{width:892.500000px;}
.w0_c03333{width:892.830000px;}
.x0_c03333{left:0.000000px;}
.xd_c03333{left:117.000000px;}
.x8_c03333{left:441.001044px;}
.x4_c03333{left:445.680576px;}
.xb_c03333{left:451.080000px;}
.x7_c03333{left:455.400792px;}
.x5_c03333{left:461.880144px;}
.x1_c03333{left:463.320000px;}
.xa_c03333{left:483.481548px;}
.x9_c03333{left:492.120684px;}
.x6_c03333{left:493.200576px;}
.xc_c03333{left:506.880360px;}
.x3_c03333{left:511.919892px;}
.x2_c03333{left:526.679604px;}
.xe_c03333{left:569.880036px;}
@media print{
.v0_c03333{vertical-align:0.000000pt;}
.v1_c03333{vertical-align:1.279488pt;}
.ls15_c03333{letter-spacing:-0.705408pt;}
.ls9_c03333{letter-spacing:-0.625152pt;}
.ls7_c03333{letter-spacing:-0.544896pt;}
.lsa_c03333{letter-spacing:-0.511104pt;}
.lsd_c03333{letter-spacing:-0.270336pt;}
.ls10_c03333{letter-spacing:-0.244992pt;}
.lse_c03333{letter-spacing:-0.232320pt;}
.ls6_c03333{letter-spacing:-0.215424pt;}
.ls14_c03333{letter-spacing:-0.164736pt;}
.ls4_c03333{letter-spacing:-0.105600pt;}
.ls16_c03333{letter-spacing:-0.071808pt;}
.ls13_c03333{letter-spacing:0.000000pt;}
.ls0_c03333{letter-spacing:0.005376pt;}
.ls5_c03333{letter-spacing:0.114048pt;}
.lsc_c03333{letter-spacing:0.451968pt;}
.ls12_c03333{letter-spacing:0.456960pt;}
.lsf_c03333{letter-spacing:0.477312pt;}
.lsb_c03333{letter-spacing:0.515328pt;}
.ls11_c03333{letter-spacing:0.528000pt;}
.ls8_c03333{letter-spacing:0.532224pt;}
.ls2_c03333{letter-spacing:0.544896pt;}
.ls3_c03333{letter-spacing:0.637824pt;}
.ls1_c03333{letter-spacing:0.642048pt;}
.wsb_c03333{word-spacing:-13.445376pt;}
.ws9_c03333{word-spacing:-11.088000pt;}
.ws5_c03333{word-spacing:-11.075328pt;}
.ws8_c03333{word-spacing:-11.037312pt;}
.ws6_c03333{word-spacing:-11.011968pt;}
.wsc_c03333{word-spacing:-10.344576pt;}
.ws4_c03333{word-spacing:-10.048896pt;}
.ws2_c03333{word-spacing:-10.015104pt;}
.ws1a_c03333{word-spacing:-0.963072pt;}
.ws12_c03333{word-spacing:-0.865920pt;}
.ws19_c03333{word-spacing:-0.639744pt;}
.ws14_c03333{word-spacing:-0.105600pt;}
.ws17_c03333{word-spacing:-0.088704pt;}
.ws18_c03333{word-spacing:-0.076032pt;}
.ws16_c03333{word-spacing:-0.050688pt;}
.ws13_c03333{word-spacing:0.000000pt;}
.ws15_c03333{word-spacing:0.304128pt;}
.ws1b_c03333{word-spacing:0.384384pt;}
.ws10_c03333{word-spacing:14.864256pt;}
.wsf_c03333{word-spacing:25.289088pt;}
.wsa_c03333{word-spacing:29.600256pt;}
.ws11_c03333{word-spacing:30.966144pt;}
.ws7_c03333{word-spacing:32.127744pt;}
.ws1_c03333{word-spacing:33.563904pt;}
.ws0_c03333{word-spacing:33.796224pt;}
.ws3_c03333{word-spacing:34.860672pt;}
.wsd_c03333{word-spacing:35.468928pt;}
.wse_c03333{word-spacing:37.357056pt;}
._0_c03333{margin-left:-1.731840pt;}
._2_c03333{width:1.317888pt;}
._5_c03333{width:5.111040pt;}
._4_c03333{width:14.530560pt;}
._a_c03333{width:26.383104pt;}
._b_c03333{width:27.553152pt;}
._9_c03333{width:30.505728pt;}
._8_c03333{width:32.102400pt;}
._6_c03333{width:33.880704pt;}
._7_c03333{width:37.365504pt;}
._1_c03333{width:44.668800pt;}
._3_c03333{width:45.805056pt;}
.fs0_c03333{font-size:42.240000pt;}
.fs1_c03333{font-size:53.760000pt;}
.y0_c03333{bottom:0.000000pt;}
.y1b_c03333{bottom:130.665211pt;}
.y1d_c03333{bottom:165.866875pt;}
.y1c_c03333{bottom:174.507067pt;}
.y1a_c03333{bottom:231.785659pt;}
.y19_c03333{bottom:245.225371pt;}
.y18_c03333{bottom:303.785851pt;}
.y17_c03333{bottom:317.225563pt;}
.y15_c03333{bottom:361.386427pt;}
.y11_c03333{bottom:377.386939pt;}
.y16_c03333{bottom:407.786011pt;}
.y14_c03333{bottom:437.226235pt;}
.y13_c03333{bottom:453.226747pt;}
.y10_c03333{bottom:482.666971pt;}
.y12_c03333{bottom:497.386555pt;}
.yf_c03333{bottom:513.387067pt;}
.y1e_c03333{bottom:546.027067pt;}
.yb_c03333{bottom:593.385179pt;}
.yd_c03333{bottom:628.586875pt;}
.yc_c03333{bottom:637.227067pt;}
.ya_c03333{bottom:707.945339pt;}
.y9_c03333{bottom:779.945531pt;}
.y7_c03333{bottom:823.786427pt;}
.y3_c03333{bottom:839.786939pt;}
.y8_c03333{bottom:870.505979pt;}
.y6_c03333{bottom:899.946203pt;}
.y5_c03333{bottom:915.946715pt;}
.y2_c03333{bottom:945.386939pt;}
.y4_c03333{bottom:959.786555pt;}
.y1_c03333{bottom:975.787067pt;}
.ye_c03333{bottom:1008.747067pt;}
.h3_c03333{height:28.916250pt;}
.h1_c03333{height:37.063125pt;}
.h2_c03333{height:37.166250pt;}
.h4_c03333{height:48.581988pt;}
.h0_c03333{height:1122.666667pt;}
.w1_c03333{width:793.333333pt;}
.w0_c03333{width:793.626667pt;}
.x0_c03333{left:0.000000pt;}
.xd_c03333{left:104.000000pt;}
.x8_c03333{left:392.000928pt;}
.x4_c03333{left:396.160512pt;}
.xb_c03333{left:400.960000pt;}
.x7_c03333{left:404.800704pt;}
.x5_c03333{left:410.560128pt;}
.x1_c03333{left:411.840000pt;}
.xa_c03333{left:429.761376pt;}
.x9_c03333{left:437.440608pt;}
.x6_c03333{left:438.400512pt;}
.xc_c03333{left:450.560320pt;}
.x3_c03333{left:455.039904pt;}
.x2_c03333{left:468.159648pt;}
.xe_c03333{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03334 {
    display:none;
  }
  .loading-indicator_c03334.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03334 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03334 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03334" -> "#page-container .classname_c03334")
 */
.pf_c03334 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03334 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03334.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03334 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03334 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03334 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03334 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03334 {overflow:visible;}
  }
}
.c_c03334 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03334 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03334:after { /* webkit #35443 */
  content: '';
}
.t_c03334:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03334 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03334 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03334 { /* info for Javascript */
  display:none;
}
.l_c03334 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03334 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03334 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03334:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03334 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03334.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03334.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03334 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03334{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03334;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03334{font-family:ff1_c03334;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03334;src:url('chunks/assets/font_35e4f8eafd83920ab769bcce.woff2')format("woff");}.ff2_c03334{font-family:ff2_c03334;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03334;src:url('chunks/assets/font_6c021084f1c70feeb7b401a9.woff2')format("woff");}.ff3_c03334{font-family:ff3_c03334;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03334{vertical-align:0.000000px;}
.v1_c03334{vertical-align:1.439424px;}
.ls12_c03334{letter-spacing:-0.793584px;}
.ls7_c03334{letter-spacing:-0.613008px;}
.ls9_c03334{letter-spacing:-0.574992px;}
.ls13_c03334{letter-spacing:-0.380160px;}
.lse_c03334{letter-spacing:-0.275616px;}
.lsc_c03334{letter-spacing:-0.261360px;}
.ls6_c03334{letter-spacing:-0.242352px;}
.ls4_c03334{letter-spacing:-0.118800px;}
.ls11_c03334{letter-spacing:0.000000px;}
.ls1_c03334{letter-spacing:0.006048px;}
.ls5_c03334{letter-spacing:0.128304px;}
.lsb_c03334{letter-spacing:0.508464px;}
.ls10_c03334{letter-spacing:0.514080px;}
.lsd_c03334{letter-spacing:0.536976px;}
.lsa_c03334{letter-spacing:0.579744px;}
.lsf_c03334{letter-spacing:0.594000px;}
.ls8_c03334{letter-spacing:0.598752px;}
.ls2_c03334{letter-spacing:0.613008px;}
.ls3_c03334{letter-spacing:0.717552px;}
.ls0_c03334{letter-spacing:0.722304px;}
.sc__c03334{text-shadow:none;}
.sc0_c03334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03334{-webkit-text-stroke:0px transparent;}
.sc0_c03334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03334{word-spacing:-15.126048px;}
.wsa_c03334{word-spacing:-12.474000px;}
.ws8_c03334{word-spacing:-12.459744px;}
.wsd_c03334{word-spacing:-12.416976px;}
.ws4_c03334{word-spacing:-11.637648px;}
.ws2_c03334{word-spacing:-11.266992px;}
.ws12_c03334{word-spacing:-1.083456px;}
.ws10_c03334{word-spacing:-1.078704px;}
.wse_c03334{word-spacing:-0.974160px;}
.ws15_c03334{word-spacing:-0.719712px;}
.ws11_c03334{word-spacing:-0.118800px;}
.ws13_c03334{word-spacing:-0.099792px;}
.ws14_c03334{word-spacing:-0.085536px;}
.wsf_c03334{word-spacing:0.000000px;}
.ws17_c03334{word-spacing:0.019008px;}
.ws16_c03334{word-spacing:0.432432px;}
.wsb_c03334{word-spacing:33.300288px;}
.ws9_c03334{word-spacing:34.836912px;}
.ws6_c03334{word-spacing:36.742464px;}
.ws1_c03334{word-spacing:37.759392px;}
.ws0_c03334{word-spacing:38.020752px;}
.ws3_c03334{word-spacing:39.218256px;}
.ws5_c03334{word-spacing:39.902544px;}
.ws7_c03334{word-spacing:42.026688px;}
._0_c03334{margin-left:-1.948320px;}
._2_c03334{width:1.335312px;}
._4_c03334{width:5.749920px;}
._1_c03334{width:50.252400px;}
._3_c03334{width:52.119936px;}
.fc0_c03334{color:rgb(0,0,0);}
.fs0_c03334{font-size:47.520000px;}
.fs1_c03334{font-size:60.480000px;}
.y0_c03334{bottom:0.000000px;}
.y19_c03334{bottom:146.998362px;}
.y1b_c03334{bottom:186.600234px;}
.y1a_c03334{bottom:196.320450px;}
.y18_c03334{bottom:275.878542px;}
.y17_c03334{bottom:356.878758px;}
.y15_c03334{bottom:406.559730px;}
.y11_c03334{bottom:424.560306px;}
.y16_c03334{bottom:458.759262px;}
.y14_c03334{bottom:491.879514px;}
.y13_c03334{bottom:509.880090px;}
.y10_c03334{bottom:543.000342px;}
.y12_c03334{bottom:559.559874px;}
.yf_c03334{bottom:577.560450px;}
.y1c_c03334{bottom:614.280450px;}
.yb_c03334{bottom:667.558326px;}
.yd_c03334{bottom:707.160234px;}
.yc_c03334{bottom:716.880450px;}
.ya_c03334{bottom:796.438506px;}
.y9_c03334{bottom:877.438722px;}
.y7_c03334{bottom:926.759730px;}
.y3_c03334{bottom:944.760306px;}
.y8_c03334{bottom:979.319226px;}
.y6_c03334{bottom:1012.439478px;}
.y5_c03334{bottom:1030.440054px;}
.y2_c03334{bottom:1063.560306px;}
.y4_c03334{bottom:1079.759874px;}
.y1_c03334{bottom:1097.760450px;}
.ye_c03334{bottom:1134.840450px;}
.h3_c03334{height:32.530781px;}
.h1_c03334{height:41.696016px;}
.h2_c03334{height:41.812031px;}
.h4_c03334{height:54.654737px;}
.h0_c03334{height:1263.000000px;}
.w1_c03334{width:892.500000px;}
.w0_c03334{width:892.830000px;}
.x0_c03334{left:0.000000px;}
.xd_c03334{left:117.000000px;}
.x8_c03334{left:440.999856px;}
.x4_c03334{left:445.680576px;}
.xb_c03334{left:451.080000px;}
.x7_c03334{left:455.399604px;}
.x5_c03334{left:461.880144px;}
.x1_c03334{left:463.320000px;}
.xa_c03334{left:483.480360px;}
.x9_c03334{left:492.119496px;}
.x6_c03334{left:493.200576px;}
.xc_c03334{left:506.880360px;}
.x3_c03334{left:511.919892px;}
.x2_c03334{left:526.679604px;}
@media print{
.v0_c03334{vertical-align:0.000000pt;}
.v1_c03334{vertical-align:1.279488pt;}
.ls12_c03334{letter-spacing:-0.705408pt;}
.ls7_c03334{letter-spacing:-0.544896pt;}
.ls9_c03334{letter-spacing:-0.511104pt;}
.ls13_c03334{letter-spacing:-0.337920pt;}
.lse_c03334{letter-spacing:-0.244992pt;}
.lsc_c03334{letter-spacing:-0.232320pt;}
.ls6_c03334{letter-spacing:-0.215424pt;}
.ls4_c03334{letter-spacing:-0.105600pt;}
.ls11_c03334{letter-spacing:0.000000pt;}
.ls1_c03334{letter-spacing:0.005376pt;}
.ls5_c03334{letter-spacing:0.114048pt;}
.lsb_c03334{letter-spacing:0.451968pt;}
.ls10_c03334{letter-spacing:0.456960pt;}
.lsd_c03334{letter-spacing:0.477312pt;}
.lsa_c03334{letter-spacing:0.515328pt;}
.lsf_c03334{letter-spacing:0.528000pt;}
.ls8_c03334{letter-spacing:0.532224pt;}
.ls2_c03334{letter-spacing:0.544896pt;}
.ls3_c03334{letter-spacing:0.637824pt;}
.ls0_c03334{letter-spacing:0.642048pt;}
.wsc_c03334{word-spacing:-13.445376pt;}
.wsa_c03334{word-spacing:-11.088000pt;}
.ws8_c03334{word-spacing:-11.075328pt;}
.wsd_c03334{word-spacing:-11.037312pt;}
.ws4_c03334{word-spacing:-10.344576pt;}
.ws2_c03334{word-spacing:-10.015104pt;}
.ws12_c03334{word-spacing:-0.963072pt;}
.ws10_c03334{word-spacing:-0.958848pt;}
.wse_c03334{word-spacing:-0.865920pt;}
.ws15_c03334{word-spacing:-0.639744pt;}
.ws11_c03334{word-spacing:-0.105600pt;}
.ws13_c03334{word-spacing:-0.088704pt;}
.ws14_c03334{word-spacing:-0.076032pt;}
.wsf_c03334{word-spacing:0.000000pt;}
.ws17_c03334{word-spacing:0.016896pt;}
.ws16_c03334{word-spacing:0.384384pt;}
.wsb_c03334{word-spacing:29.600256pt;}
.ws9_c03334{word-spacing:30.966144pt;}
.ws6_c03334{word-spacing:32.659968pt;}
.ws1_c03334{word-spacing:33.563904pt;}
.ws0_c03334{word-spacing:33.796224pt;}
.ws3_c03334{word-spacing:34.860672pt;}
.ws5_c03334{word-spacing:35.468928pt;}
.ws7_c03334{word-spacing:37.357056pt;}
._0_c03334{margin-left:-1.731840pt;}
._2_c03334{width:1.186944pt;}
._4_c03334{width:5.111040pt;}
._1_c03334{width:44.668800pt;}
._3_c03334{width:46.328832pt;}
.fs0_c03334{font-size:42.240000pt;}
.fs1_c03334{font-size:53.760000pt;}
.y0_c03334{bottom:0.000000pt;}
.y19_c03334{bottom:130.665211pt;}
.y1b_c03334{bottom:165.866875pt;}
.y1a_c03334{bottom:174.507067pt;}
.y18_c03334{bottom:245.225371pt;}
.y17_c03334{bottom:317.225563pt;}
.y15_c03334{bottom:361.386427pt;}
.y11_c03334{bottom:377.386939pt;}
.y16_c03334{bottom:407.786011pt;}
.y14_c03334{bottom:437.226235pt;}
.y13_c03334{bottom:453.226747pt;}
.y10_c03334{bottom:482.666971pt;}
.y12_c03334{bottom:497.386555pt;}
.yf_c03334{bottom:513.387067pt;}
.y1c_c03334{bottom:546.027067pt;}
.yb_c03334{bottom:593.385179pt;}
.yd_c03334{bottom:628.586875pt;}
.yc_c03334{bottom:637.227067pt;}
.ya_c03334{bottom:707.945339pt;}
.y9_c03334{bottom:779.945531pt;}
.y7_c03334{bottom:823.786427pt;}
.y3_c03334{bottom:839.786939pt;}
.y8_c03334{bottom:870.505979pt;}
.y6_c03334{bottom:899.946203pt;}
.y5_c03334{bottom:915.946715pt;}
.y2_c03334{bottom:945.386939pt;}
.y4_c03334{bottom:959.786555pt;}
.y1_c03334{bottom:975.787067pt;}
.ye_c03334{bottom:1008.747067pt;}
.h3_c03334{height:28.916250pt;}
.h1_c03334{height:37.063125pt;}
.h2_c03334{height:37.166250pt;}
.h4_c03334{height:48.581988pt;}
.h0_c03334{height:1122.666667pt;}
.w1_c03334{width:793.333333pt;}
.w0_c03334{width:793.626667pt;}
.x0_c03334{left:0.000000pt;}
.xd_c03334{left:104.000000pt;}
.x8_c03334{left:391.999872pt;}
.x4_c03334{left:396.160512pt;}
.xb_c03334{left:400.960000pt;}
.x7_c03334{left:404.799648pt;}
.x5_c03334{left:410.560128pt;}
.x1_c03334{left:411.840000pt;}
.xa_c03334{left:429.760320pt;}
.x9_c03334{left:437.439552pt;}
.x6_c03334{left:438.400512pt;}
.xc_c03334{left:450.560320pt;}
.x3_c03334{left:455.039904pt;}
.x2_c03334{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03335 {
    display:none;
  }
  .loading-indicator_c03335.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03335 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03335 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03335" -> "#page-container .classname_c03335")
 */
.pf_c03335 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03335 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03335.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03335 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03335 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03335 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03335 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03335 {overflow:visible;}
  }
}
.c_c03335 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03335 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03335:after { /* webkit #35443 */
  content: '';
}
.t_c03335:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03335 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03335 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03335 { /* info for Javascript */
  display:none;
}
.l_c03335 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03335 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03335 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03335:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03335 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03335.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03335.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03335 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03335{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03335;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03335{font-family:ff1_c03335;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03335;src:url('chunks/assets/font_4007da783b5ac9af7dda1c3f.woff2')format("woff");}.ff2_c03335{font-family:ff2_c03335;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03335;src:url('chunks/assets/font_4f87bc7641b1b15976fc4cd0.woff2')format("woff");}.ff3_c03335{font-family:ff3_c03335;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03335{vertical-align:0.000000px;}
.v1_c03335{vertical-align:1.439424px;}
.lsc_c03335{letter-spacing:-0.793584px;}
.ls14_c03335{letter-spacing:-0.736560px;}
.ls7_c03335{letter-spacing:-0.613008px;}
.ls9_c03335{letter-spacing:-0.574992px;}
.lse_c03335{letter-spacing:-0.380160px;}
.ls10_c03335{letter-spacing:-0.275616px;}
.ls15_c03335{letter-spacing:-0.270864px;}
.lsd_c03335{letter-spacing:-0.261360px;}
.ls6_c03335{letter-spacing:-0.242352px;}
.ls4_c03335{letter-spacing:-0.118800px;}
.ls13_c03335{letter-spacing:0.000000px;}
.ls1_c03335{letter-spacing:0.006048px;}
.ls5_c03335{letter-spacing:0.128304px;}
.lsb_c03335{letter-spacing:0.508464px;}
.ls12_c03335{letter-spacing:0.514080px;}
.lsf_c03335{letter-spacing:0.536976px;}
.lsa_c03335{letter-spacing:0.579744px;}
.ls11_c03335{letter-spacing:0.594000px;}
.ls8_c03335{letter-spacing:0.598752px;}
.ls3_c03335{letter-spacing:0.613008px;}
.ls2_c03335{letter-spacing:0.717552px;}
.ls0_c03335{letter-spacing:0.722304px;}
.sc__c03335{text-shadow:none;}
.sc0_c03335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03335{-webkit-text-stroke:0px transparent;}
.sc0_c03335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c03335{word-spacing:-15.126048px;}
.ws9_c03335{word-spacing:-12.474000px;}
.ws6_c03335{word-spacing:-12.459744px;}
.ws8_c03335{word-spacing:-12.416976px;}
.ws4_c03335{word-spacing:-11.637648px;}
.ws2_c03335{word-spacing:-11.266992px;}
.ws10_c03335{word-spacing:-1.083456px;}
.ws17_c03335{word-spacing:-1.078704px;}
.wse_c03335{word-spacing:-0.974160px;}
.ws16_c03335{word-spacing:-0.719712px;}
.ws11_c03335{word-spacing:-0.118800px;}
.ws13_c03335{word-spacing:-0.099792px;}
.ws18_c03335{word-spacing:-0.090288px;}
.ws15_c03335{word-spacing:-0.085536px;}
.wsf_c03335{word-spacing:0.000000px;}
.ws14_c03335{word-spacing:0.019008px;}
.ws12_c03335{word-spacing:0.432432px;}
.wsd_c03335{word-spacing:6.629040px;}
.wsa_c03335{word-spacing:33.300288px;}
.wsc_c03335{word-spacing:34.836912px;}
.ws1_c03335{word-spacing:37.759392px;}
.ws0_c03335{word-spacing:38.020752px;}
.ws3_c03335{word-spacing:39.218256px;}
.ws5_c03335{word-spacing:39.902544px;}
.ws7_c03335{word-spacing:42.026688px;}
._0_c03335{margin-left:-1.948320px;}
._2_c03335{width:1.482624px;}
._4_c03335{width:5.749920px;}
._6_c03335{width:19.982160px;}
._7_c03335{width:23.451120px;}
._5_c03335{width:24.691392px;}
._1_c03335{width:50.252400px;}
._3_c03335{width:51.530688px;}
.fc0_c03335{color:rgb(0,0,0);}
.fs0_c03335{font-size:47.520000px;}
.fs1_c03335{font-size:60.480000px;}
.y0_c03335{bottom:0.000000px;}
.y1a_c03335{bottom:131.878686px;}
.y19_c03335{bottom:146.998362px;}
.y1c_c03335{bottom:186.600234px;}
.y1b_c03335{bottom:196.320450px;}
.y18_c03335{bottom:275.878542px;}
.y17_c03335{bottom:356.878758px;}
.y15_c03335{bottom:406.559730px;}
.y11_c03335{bottom:424.560306px;}
.y16_c03335{bottom:458.759262px;}
.y14_c03335{bottom:491.879514px;}
.y13_c03335{bottom:509.880090px;}
.y10_c03335{bottom:543.000342px;}
.y12_c03335{bottom:559.559874px;}
.yf_c03335{bottom:577.560450px;}
.y1d_c03335{bottom:614.280450px;}
.yb_c03335{bottom:667.558326px;}
.yd_c03335{bottom:707.160234px;}
.yc_c03335{bottom:716.880450px;}
.ya_c03335{bottom:796.438506px;}
.y9_c03335{bottom:877.438722px;}
.y7_c03335{bottom:926.759730px;}
.y3_c03335{bottom:944.760306px;}
.y8_c03335{bottom:979.319226px;}
.y6_c03335{bottom:1012.439478px;}
.y5_c03335{bottom:1030.440054px;}
.y2_c03335{bottom:1063.560306px;}
.y4_c03335{bottom:1079.759874px;}
.y1_c03335{bottom:1097.760450px;}
.ye_c03335{bottom:1134.840450px;}
.h3_c03335{height:32.530781px;}
.h1_c03335{height:41.696016px;}
.h2_c03335{height:41.812031px;}
.h4_c03335{height:54.654737px;}
.h0_c03335{height:1263.000000px;}
.w1_c03335{width:892.500000px;}
.w0_c03335{width:892.830000px;}
.x0_c03335{left:0.000000px;}
.xd_c03335{left:117.000000px;}
.x8_c03335{left:440.999856px;}
.x4_c03335{left:445.680576px;}
.xb_c03335{left:451.080000px;}
.x7_c03335{left:455.399604px;}
.x5_c03335{left:461.880144px;}
.x1_c03335{left:463.320000px;}
.xa_c03335{left:483.480360px;}
.x9_c03335{left:492.119496px;}
.x6_c03335{left:493.200576px;}
.xc_c03335{left:506.880360px;}
.x3_c03335{left:511.919892px;}
.x2_c03335{left:526.679604px;}
.xe_c03335{left:569.880036px;}
@media print{
.v0_c03335{vertical-align:0.000000pt;}
.v1_c03335{vertical-align:1.279488pt;}
.lsc_c03335{letter-spacing:-0.705408pt;}
.ls14_c03335{letter-spacing:-0.654720pt;}
.ls7_c03335{letter-spacing:-0.544896pt;}
.ls9_c03335{letter-spacing:-0.511104pt;}
.lse_c03335{letter-spacing:-0.337920pt;}
.ls10_c03335{letter-spacing:-0.244992pt;}
.ls15_c03335{letter-spacing:-0.240768pt;}
.lsd_c03335{letter-spacing:-0.232320pt;}
.ls6_c03335{letter-spacing:-0.215424pt;}
.ls4_c03335{letter-spacing:-0.105600pt;}
.ls13_c03335{letter-spacing:0.000000pt;}
.ls1_c03335{letter-spacing:0.005376pt;}
.ls5_c03335{letter-spacing:0.114048pt;}
.lsb_c03335{letter-spacing:0.451968pt;}
.ls12_c03335{letter-spacing:0.456960pt;}
.lsf_c03335{letter-spacing:0.477312pt;}
.lsa_c03335{letter-spacing:0.515328pt;}
.ls11_c03335{letter-spacing:0.528000pt;}
.ls8_c03335{letter-spacing:0.532224pt;}
.ls3_c03335{letter-spacing:0.544896pt;}
.ls2_c03335{letter-spacing:0.637824pt;}
.ls0_c03335{letter-spacing:0.642048pt;}
.wsb_c03335{word-spacing:-13.445376pt;}
.ws9_c03335{word-spacing:-11.088000pt;}
.ws6_c03335{word-spacing:-11.075328pt;}
.ws8_c03335{word-spacing:-11.037312pt;}
.ws4_c03335{word-spacing:-10.344576pt;}
.ws2_c03335{word-spacing:-10.015104pt;}
.ws10_c03335{word-spacing:-0.963072pt;}
.ws17_c03335{word-spacing:-0.958848pt;}
.wse_c03335{word-spacing:-0.865920pt;}
.ws16_c03335{word-spacing:-0.639744pt;}
.ws11_c03335{word-spacing:-0.105600pt;}
.ws13_c03335{word-spacing:-0.088704pt;}
.ws18_c03335{word-spacing:-0.080256pt;}
.ws15_c03335{word-spacing:-0.076032pt;}
.wsf_c03335{word-spacing:0.000000pt;}
.ws14_c03335{word-spacing:0.016896pt;}
.ws12_c03335{word-spacing:0.384384pt;}
.wsd_c03335{word-spacing:5.892480pt;}
.wsa_c03335{word-spacing:29.600256pt;}
.wsc_c03335{word-spacing:30.966144pt;}
.ws1_c03335{word-spacing:33.563904pt;}
.ws0_c03335{word-spacing:33.796224pt;}
.ws3_c03335{word-spacing:34.860672pt;}
.ws5_c03335{word-spacing:35.468928pt;}
.ws7_c03335{word-spacing:37.357056pt;}
._0_c03335{margin-left:-1.731840pt;}
._2_c03335{width:1.317888pt;}
._4_c03335{width:5.111040pt;}
._6_c03335{width:17.761920pt;}
._7_c03335{width:20.845440pt;}
._5_c03335{width:21.947904pt;}
._1_c03335{width:44.668800pt;}
._3_c03335{width:45.805056pt;}
.fs0_c03335{font-size:42.240000pt;}
.fs1_c03335{font-size:53.760000pt;}
.y0_c03335{bottom:0.000000pt;}
.y1a_c03335{bottom:117.225499pt;}
.y19_c03335{bottom:130.665211pt;}
.y1c_c03335{bottom:165.866875pt;}
.y1b_c03335{bottom:174.507067pt;}
.y18_c03335{bottom:245.225371pt;}
.y17_c03335{bottom:317.225563pt;}
.y15_c03335{bottom:361.386427pt;}
.y11_c03335{bottom:377.386939pt;}
.y16_c03335{bottom:407.786011pt;}
.y14_c03335{bottom:437.226235pt;}
.y13_c03335{bottom:453.226747pt;}
.y10_c03335{bottom:482.666971pt;}
.y12_c03335{bottom:497.386555pt;}
.yf_c03335{bottom:513.387067pt;}
.y1d_c03335{bottom:546.027067pt;}
.yb_c03335{bottom:593.385179pt;}
.yd_c03335{bottom:628.586875pt;}
.yc_c03335{bottom:637.227067pt;}
.ya_c03335{bottom:707.945339pt;}
.y9_c03335{bottom:779.945531pt;}
.y7_c03335{bottom:823.786427pt;}
.y3_c03335{bottom:839.786939pt;}
.y8_c03335{bottom:870.505979pt;}
.y6_c03335{bottom:899.946203pt;}
.y5_c03335{bottom:915.946715pt;}
.y2_c03335{bottom:945.386939pt;}
.y4_c03335{bottom:959.786555pt;}
.y1_c03335{bottom:975.787067pt;}
.ye_c03335{bottom:1008.747067pt;}
.h3_c03335{height:28.916250pt;}
.h1_c03335{height:37.063125pt;}
.h2_c03335{height:37.166250pt;}
.h4_c03335{height:48.581988pt;}
.h0_c03335{height:1122.666667pt;}
.w1_c03335{width:793.333333pt;}
.w0_c03335{width:793.626667pt;}
.x0_c03335{left:0.000000pt;}
.xd_c03335{left:104.000000pt;}
.x8_c03335{left:391.999872pt;}
.x4_c03335{left:396.160512pt;}
.xb_c03335{left:400.960000pt;}
.x7_c03335{left:404.799648pt;}
.x5_c03335{left:410.560128pt;}
.x1_c03335{left:411.840000pt;}
.xa_c03335{left:429.760320pt;}
.x9_c03335{left:437.439552pt;}
.x6_c03335{left:438.400512pt;}
.xc_c03335{left:450.560320pt;}
.x3_c03335{left:455.039904pt;}
.x2_c03335{left:468.159648pt;}
.xe_c03335{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03336 {
    display:none;
  }
  .loading-indicator_c03336.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03336 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03336 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03336" -> "#page-container .classname_c03336")
 */
.pf_c03336 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03336 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03336.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03336 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03336 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03336 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03336 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03336 {overflow:visible;}
  }
}
.c_c03336 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03336 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03336:after { /* webkit #35443 */
  content: '';
}
.t_c03336:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03336 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03336 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03336 { /* info for Javascript */
  display:none;
}
.l_c03336 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03336 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03336 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03336:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03336 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03336.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03336.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03336 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03336{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03336;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03336{font-family:ff1_c03336;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03336;src:url('chunks/assets/font_e287eed9ba5bf54338aeedd0.woff2')format("woff");}.ff2_c03336{font-family:ff2_c03336;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03336;src:url('chunks/assets/font_288d5a24569fc3f6a43c9309.woff2')format("woff");}.ff3_c03336{font-family:ff3_c03336;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03336{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03336{vertical-align:0.000000px;}
.v1_c03336{vertical-align:1.439424px;}
.lsc_c03336{letter-spacing:-0.793584px;}
.lsf_c03336{letter-spacing:-0.736560px;}
.ls14_c03336{letter-spacing:-0.722304px;}
.ls7_c03336{letter-spacing:-0.613008px;}
.ls9_c03336{letter-spacing:-0.574992px;}
.ls15_c03336{letter-spacing:-0.275616px;}
.ls10_c03336{letter-spacing:-0.270864px;}
.lsd_c03336{letter-spacing:-0.261360px;}
.ls6_c03336{letter-spacing:-0.242352px;}
.ls4_c03336{letter-spacing:-0.118800px;}
.ls13_c03336{letter-spacing:0.000000px;}
.ls1_c03336{letter-spacing:0.006048px;}
.ls5_c03336{letter-spacing:0.128304px;}
.lsb_c03336{letter-spacing:0.508464px;}
.ls12_c03336{letter-spacing:0.514080px;}
.lse_c03336{letter-spacing:0.536976px;}
.lsa_c03336{letter-spacing:0.579744px;}
.ls11_c03336{letter-spacing:0.594000px;}
.ls8_c03336{letter-spacing:0.598752px;}
.ls3_c03336{letter-spacing:0.613008px;}
.ls2_c03336{letter-spacing:0.651024px;}
.ls0_c03336{letter-spacing:0.717552px;}
.sc__c03336{text-shadow:none;}
.sc0_c03336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03336{-webkit-text-stroke:0px transparent;}
.sc0_c03336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03336{word-spacing:-15.126048px;}
.wsa_c03336{word-spacing:-12.474000px;}
.ws6_c03336{word-spacing:-12.459744px;}
.wse_c03336{word-spacing:-12.416976px;}
.ws4_c03336{word-spacing:-11.637648px;}
.ws2_c03336{word-spacing:-11.266992px;}
.ws12_c03336{word-spacing:-1.078704px;}
.ws18_c03336{word-spacing:-1.012176px;}
.wsf_c03336{word-spacing:-0.974160px;}
.ws17_c03336{word-spacing:-0.719712px;}
.ws11_c03336{word-spacing:-0.118800px;}
.ws14_c03336{word-spacing:-0.099792px;}
.ws15_c03336{word-spacing:-0.090288px;}
.ws16_c03336{word-spacing:-0.085536px;}
.ws10_c03336{word-spacing:0.000000px;}
.ws19_c03336{word-spacing:0.361152px;}
.ws13_c03336{word-spacing:0.432432px;}
.ws9_c03336{word-spacing:6.629040px;}
.wsb_c03336{word-spacing:33.300288px;}
.ws8_c03336{word-spacing:34.836912px;}
.wsd_c03336{word-spacing:36.143712px;}
.ws1_c03336{word-spacing:37.759392px;}
.ws0_c03336{word-spacing:38.020752px;}
.ws3_c03336{word-spacing:39.218256px;}
.ws5_c03336{word-spacing:39.902544px;}
.ws7_c03336{word-spacing:42.026688px;}
._0_c03336{margin-left:-1.948320px;}
._2_c03336{width:1.482624px;}
._4_c03336{width:5.749920px;}
._6_c03336{width:19.982160px;}
._7_c03336{width:23.451120px;}
._5_c03336{width:24.691392px;}
._1_c03336{width:50.252400px;}
._3_c03336{width:51.530688px;}
.fc0_c03336{color:rgb(0,0,0);}
.fs0_c03336{font-size:47.520000px;}
.fs1_c03336{font-size:60.480000px;}
.y0_c03336{bottom:0.000000px;}
.y1a_c03336{bottom:146.998362px;}
.y1c_c03336{bottom:186.600234px;}
.y1b_c03336{bottom:196.320450px;}
.y19_c03336{bottom:275.878542px;}
.y18_c03336{bottom:356.878758px;}
.y16_c03336{bottom:406.559730px;}
.y12_c03336{bottom:424.560306px;}
.y17_c03336{bottom:458.759262px;}
.y15_c03336{bottom:491.879514px;}
.y14_c03336{bottom:509.880090px;}
.y11_c03336{bottom:543.000342px;}
.y13_c03336{bottom:559.559874px;}
.y10_c03336{bottom:577.560450px;}
.y1d_c03336{bottom:614.280450px;}
.yc_c03336{bottom:652.438650px;}
.yb_c03336{bottom:667.558326px;}
.ye_c03336{bottom:707.160234px;}
.yd_c03336{bottom:716.880450px;}
.ya_c03336{bottom:796.438506px;}
.y9_c03336{bottom:877.438722px;}
.y7_c03336{bottom:926.759730px;}
.y3_c03336{bottom:944.760306px;}
.y8_c03336{bottom:979.319226px;}
.y6_c03336{bottom:1012.439478px;}
.y5_c03336{bottom:1030.440054px;}
.y2_c03336{bottom:1063.560306px;}
.y4_c03336{bottom:1079.759874px;}
.y1_c03336{bottom:1097.760450px;}
.yf_c03336{bottom:1134.840450px;}
.h3_c03336{height:32.530781px;}
.h1_c03336{height:41.696016px;}
.h2_c03336{height:41.812031px;}
.h4_c03336{height:54.654737px;}
.h0_c03336{height:1263.000000px;}
.w1_c03336{width:892.500000px;}
.w0_c03336{width:892.830000px;}
.x0_c03336{left:0.000000px;}
.xe_c03336{left:117.000000px;}
.x8_c03336{left:440.999856px;}
.x4_c03336{left:445.680576px;}
.xc_c03336{left:451.080000px;}
.x7_c03336{left:455.399604px;}
.x5_c03336{left:461.880144px;}
.x1_c03336{left:463.320000px;}
.xa_c03336{left:483.480360px;}
.x9_c03336{left:492.119496px;}
.x6_c03336{left:493.200576px;}
.xd_c03336{left:506.880360px;}
.x3_c03336{left:511.919892px;}
.x2_c03336{left:526.679604px;}
.xb_c03336{left:569.880036px;}
@media print{
.v0_c03336{vertical-align:0.000000pt;}
.v1_c03336{vertical-align:1.279488pt;}
.lsc_c03336{letter-spacing:-0.705408pt;}
.lsf_c03336{letter-spacing:-0.654720pt;}
.ls14_c03336{letter-spacing:-0.642048pt;}
.ls7_c03336{letter-spacing:-0.544896pt;}
.ls9_c03336{letter-spacing:-0.511104pt;}
.ls15_c03336{letter-spacing:-0.244992pt;}
.ls10_c03336{letter-spacing:-0.240768pt;}
.lsd_c03336{letter-spacing:-0.232320pt;}
.ls6_c03336{letter-spacing:-0.215424pt;}
.ls4_c03336{letter-spacing:-0.105600pt;}
.ls13_c03336{letter-spacing:0.000000pt;}
.ls1_c03336{letter-spacing:0.005376pt;}
.ls5_c03336{letter-spacing:0.114048pt;}
.lsb_c03336{letter-spacing:0.451968pt;}
.ls12_c03336{letter-spacing:0.456960pt;}
.lse_c03336{letter-spacing:0.477312pt;}
.lsa_c03336{letter-spacing:0.515328pt;}
.ls11_c03336{letter-spacing:0.528000pt;}
.ls8_c03336{letter-spacing:0.532224pt;}
.ls3_c03336{letter-spacing:0.544896pt;}
.ls2_c03336{letter-spacing:0.578688pt;}
.ls0_c03336{letter-spacing:0.637824pt;}
.wsc_c03336{word-spacing:-13.445376pt;}
.wsa_c03336{word-spacing:-11.088000pt;}
.ws6_c03336{word-spacing:-11.075328pt;}
.wse_c03336{word-spacing:-11.037312pt;}
.ws4_c03336{word-spacing:-10.344576pt;}
.ws2_c03336{word-spacing:-10.015104pt;}
.ws12_c03336{word-spacing:-0.958848pt;}
.ws18_c03336{word-spacing:-0.899712pt;}
.wsf_c03336{word-spacing:-0.865920pt;}
.ws17_c03336{word-spacing:-0.639744pt;}
.ws11_c03336{word-spacing:-0.105600pt;}
.ws14_c03336{word-spacing:-0.088704pt;}
.ws15_c03336{word-spacing:-0.080256pt;}
.ws16_c03336{word-spacing:-0.076032pt;}
.ws10_c03336{word-spacing:0.000000pt;}
.ws19_c03336{word-spacing:0.321024pt;}
.ws13_c03336{word-spacing:0.384384pt;}
.ws9_c03336{word-spacing:5.892480pt;}
.wsb_c03336{word-spacing:29.600256pt;}
.ws8_c03336{word-spacing:30.966144pt;}
.wsd_c03336{word-spacing:32.127744pt;}
.ws1_c03336{word-spacing:33.563904pt;}
.ws0_c03336{word-spacing:33.796224pt;}
.ws3_c03336{word-spacing:34.860672pt;}
.ws5_c03336{word-spacing:35.468928pt;}
.ws7_c03336{word-spacing:37.357056pt;}
._0_c03336{margin-left:-1.731840pt;}
._2_c03336{width:1.317888pt;}
._4_c03336{width:5.111040pt;}
._6_c03336{width:17.761920pt;}
._7_c03336{width:20.845440pt;}
._5_c03336{width:21.947904pt;}
._1_c03336{width:44.668800pt;}
._3_c03336{width:45.805056pt;}
.fs0_c03336{font-size:42.240000pt;}
.fs1_c03336{font-size:53.760000pt;}
.y0_c03336{bottom:0.000000pt;}
.y1a_c03336{bottom:130.665211pt;}
.y1c_c03336{bottom:165.866875pt;}
.y1b_c03336{bottom:174.507067pt;}
.y19_c03336{bottom:245.225371pt;}
.y18_c03336{bottom:317.225563pt;}
.y16_c03336{bottom:361.386427pt;}
.y12_c03336{bottom:377.386939pt;}
.y17_c03336{bottom:407.786011pt;}
.y15_c03336{bottom:437.226235pt;}
.y14_c03336{bottom:453.226747pt;}
.y11_c03336{bottom:482.666971pt;}
.y13_c03336{bottom:497.386555pt;}
.y10_c03336{bottom:513.387067pt;}
.y1d_c03336{bottom:546.027067pt;}
.yc_c03336{bottom:579.945467pt;}
.yb_c03336{bottom:593.385179pt;}
.ye_c03336{bottom:628.586875pt;}
.yd_c03336{bottom:637.227067pt;}
.ya_c03336{bottom:707.945339pt;}
.y9_c03336{bottom:779.945531pt;}
.y7_c03336{bottom:823.786427pt;}
.y3_c03336{bottom:839.786939pt;}
.y8_c03336{bottom:870.505979pt;}
.y6_c03336{bottom:899.946203pt;}
.y5_c03336{bottom:915.946715pt;}
.y2_c03336{bottom:945.386939pt;}
.y4_c03336{bottom:959.786555pt;}
.y1_c03336{bottom:975.787067pt;}
.yf_c03336{bottom:1008.747067pt;}
.h3_c03336{height:28.916250pt;}
.h1_c03336{height:37.063125pt;}
.h2_c03336{height:37.166250pt;}
.h4_c03336{height:48.581988pt;}
.h0_c03336{height:1122.666667pt;}
.w1_c03336{width:793.333333pt;}
.w0_c03336{width:793.626667pt;}
.x0_c03336{left:0.000000pt;}
.xe_c03336{left:104.000000pt;}
.x8_c03336{left:391.999872pt;}
.x4_c03336{left:396.160512pt;}
.xc_c03336{left:400.960000pt;}
.x7_c03336{left:404.799648pt;}
.x5_c03336{left:410.560128pt;}
.x1_c03336{left:411.840000pt;}
.xa_c03336{left:429.760320pt;}
.x9_c03336{left:437.439552pt;}
.x6_c03336{left:438.400512pt;}
.xd_c03336{left:450.560320pt;}
.x3_c03336{left:455.039904pt;}
.x2_c03336{left:468.159648pt;}
.xb_c03336{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03337 {
    display:none;
  }
  .loading-indicator_c03337.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03337 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03337 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03337" -> "#page-container .classname_c03337")
 */
.pf_c03337 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03337 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03337.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03337 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03337 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03337 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03337 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03337 {overflow:visible;}
  }
}
.c_c03337 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03337 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03337:after { /* webkit #35443 */
  content: '';
}
.t_c03337:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03337 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03337 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03337 { /* info for Javascript */
  display:none;
}
.l_c03337 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03337 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03337 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03337:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03337 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03337.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03337.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03337 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03337{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03337;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03337{font-family:ff1_c03337;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03337;src:url('chunks/assets/font_4f85483b96b3920690384cf2.woff2')format("woff");}.ff2_c03337{font-family:ff2_c03337;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03337;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03337{font-family:ff3_c03337;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03337{vertical-align:0.000000px;}
.v1_c03337{vertical-align:1.439424px;}
.lsd_c03337{letter-spacing:-0.793584px;}
.lse_c03337{letter-spacing:-0.722304px;}
.ls8_c03337{letter-spacing:-0.613008px;}
.lsa_c03337{letter-spacing:-0.574992px;}
.ls11_c03337{letter-spacing:-0.275616px;}
.lsf_c03337{letter-spacing:-0.261360px;}
.ls7_c03337{letter-spacing:-0.242352px;}
.ls5_c03337{letter-spacing:-0.118800px;}
.ls14_c03337{letter-spacing:0.000000px;}
.ls2_c03337{letter-spacing:0.006048px;}
.ls6_c03337{letter-spacing:0.128304px;}
.lsc_c03337{letter-spacing:0.508464px;}
.ls13_c03337{letter-spacing:0.514080px;}
.ls10_c03337{letter-spacing:0.536976px;}
.lsb_c03337{letter-spacing:0.579744px;}
.ls12_c03337{letter-spacing:0.594000px;}
.ls9_c03337{letter-spacing:0.598752px;}
.ls4_c03337{letter-spacing:0.613008px;}
.ls0_c03337{letter-spacing:0.651024px;}
.ls1_c03337{letter-spacing:0.717552px;}
.ls3_c03337{letter-spacing:0.722304px;}
.sc__c03337{text-shadow:none;}
.sc0_c03337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03337{-webkit-text-stroke:0px transparent;}
.sc0_c03337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03337{word-spacing:-15.126048px;}
.wsa_c03337{word-spacing:-12.474000px;}
.ws6_c03337{word-spacing:-12.459744px;}
.ws9_c03337{word-spacing:-12.416976px;}
.ws4_c03337{word-spacing:-11.637648px;}
.ws2_c03337{word-spacing:-11.266992px;}
.ws18_c03337{word-spacing:-1.083456px;}
.ws12_c03337{word-spacing:-1.078704px;}
.ws10_c03337{word-spacing:-1.012176px;}
.wse_c03337{word-spacing:-0.974160px;}
.ws17_c03337{word-spacing:-0.719712px;}
.ws11_c03337{word-spacing:-0.118800px;}
.ws15_c03337{word-spacing:-0.099792px;}
.ws16_c03337{word-spacing:-0.085536px;}
.wsf_c03337{word-spacing:0.000000px;}
.ws14_c03337{word-spacing:0.361152px;}
.ws13_c03337{word-spacing:0.432432px;}
.wsb_c03337{word-spacing:33.300288px;}
.ws8_c03337{word-spacing:36.143712px;}
.wsd_c03337{word-spacing:36.742464px;}
.ws1_c03337{word-spacing:37.759392px;}
.ws0_c03337{word-spacing:38.020752px;}
.ws3_c03337{word-spacing:39.218256px;}
.ws5_c03337{word-spacing:39.902544px;}
.ws7_c03337{word-spacing:42.026688px;}
._0_c03337{margin-left:-1.948320px;}
._2_c03337{width:1.482624px;}
._4_c03337{width:5.749920px;}
._1_c03337{width:50.252400px;}
._3_c03337{width:51.530688px;}
.fc0_c03337{color:rgb(0,0,0);}
.fs0_c03337{font-size:47.520000px;}
.fs1_c03337{font-size:60.480000px;}
.y0_c03337{bottom:0.000000px;}
.y19_c03337{bottom:146.998362px;}
.y1b_c03337{bottom:186.600234px;}
.y1a_c03337{bottom:196.320450px;}
.y18_c03337{bottom:275.878542px;}
.y17_c03337{bottom:356.878758px;}
.y15_c03337{bottom:406.559730px;}
.y11_c03337{bottom:424.560306px;}
.y16_c03337{bottom:458.759262px;}
.y14_c03337{bottom:491.879514px;}
.y13_c03337{bottom:509.880090px;}
.y10_c03337{bottom:543.000342px;}
.y12_c03337{bottom:559.559874px;}
.yf_c03337{bottom:577.560450px;}
.y1c_c03337{bottom:614.280450px;}
.yb_c03337{bottom:667.558326px;}
.yd_c03337{bottom:707.160234px;}
.yc_c03337{bottom:716.880450px;}
.ya_c03337{bottom:796.438506px;}
.y9_c03337{bottom:877.438722px;}
.y7_c03337{bottom:926.759730px;}
.y3_c03337{bottom:944.760306px;}
.y8_c03337{bottom:979.319226px;}
.y6_c03337{bottom:1012.439478px;}
.y5_c03337{bottom:1030.440054px;}
.y2_c03337{bottom:1063.560306px;}
.y4_c03337{bottom:1079.759874px;}
.y1_c03337{bottom:1097.760450px;}
.ye_c03337{bottom:1134.840450px;}
.h3_c03337{height:32.530781px;}
.h1_c03337{height:41.696016px;}
.h2_c03337{height:41.812031px;}
.h4_c03337{height:54.654737px;}
.h0_c03337{height:1263.000000px;}
.w1_c03337{width:892.500000px;}
.w0_c03337{width:892.830000px;}
.x0_c03337{left:0.000000px;}
.xd_c03337{left:117.000000px;}
.x8_c03337{left:440.999856px;}
.x4_c03337{left:445.680576px;}
.xb_c03337{left:451.080000px;}
.x7_c03337{left:455.399604px;}
.x5_c03337{left:461.880144px;}
.x1_c03337{left:463.320000px;}
.xa_c03337{left:483.480360px;}
.x9_c03337{left:492.119496px;}
.x6_c03337{left:493.200576px;}
.xc_c03337{left:506.880360px;}
.x3_c03337{left:511.919892px;}
.x2_c03337{left:526.679604px;}
@media print{
.v0_c03337{vertical-align:0.000000pt;}
.v1_c03337{vertical-align:1.279488pt;}
.lsd_c03337{letter-spacing:-0.705408pt;}
.lse_c03337{letter-spacing:-0.642048pt;}
.ls8_c03337{letter-spacing:-0.544896pt;}
.lsa_c03337{letter-spacing:-0.511104pt;}
.ls11_c03337{letter-spacing:-0.244992pt;}
.lsf_c03337{letter-spacing:-0.232320pt;}
.ls7_c03337{letter-spacing:-0.215424pt;}
.ls5_c03337{letter-spacing:-0.105600pt;}
.ls14_c03337{letter-spacing:0.000000pt;}
.ls2_c03337{letter-spacing:0.005376pt;}
.ls6_c03337{letter-spacing:0.114048pt;}
.lsc_c03337{letter-spacing:0.451968pt;}
.ls13_c03337{letter-spacing:0.456960pt;}
.ls10_c03337{letter-spacing:0.477312pt;}
.lsb_c03337{letter-spacing:0.515328pt;}
.ls12_c03337{letter-spacing:0.528000pt;}
.ls9_c03337{letter-spacing:0.532224pt;}
.ls4_c03337{letter-spacing:0.544896pt;}
.ls0_c03337{letter-spacing:0.578688pt;}
.ls1_c03337{letter-spacing:0.637824pt;}
.ls3_c03337{letter-spacing:0.642048pt;}
.wsc_c03337{word-spacing:-13.445376pt;}
.wsa_c03337{word-spacing:-11.088000pt;}
.ws6_c03337{word-spacing:-11.075328pt;}
.ws9_c03337{word-spacing:-11.037312pt;}
.ws4_c03337{word-spacing:-10.344576pt;}
.ws2_c03337{word-spacing:-10.015104pt;}
.ws18_c03337{word-spacing:-0.963072pt;}
.ws12_c03337{word-spacing:-0.958848pt;}
.ws10_c03337{word-spacing:-0.899712pt;}
.wse_c03337{word-spacing:-0.865920pt;}
.ws17_c03337{word-spacing:-0.639744pt;}
.ws11_c03337{word-spacing:-0.105600pt;}
.ws15_c03337{word-spacing:-0.088704pt;}
.ws16_c03337{word-spacing:-0.076032pt;}
.wsf_c03337{word-spacing:0.000000pt;}
.ws14_c03337{word-spacing:0.321024pt;}
.ws13_c03337{word-spacing:0.384384pt;}
.wsb_c03337{word-spacing:29.600256pt;}
.ws8_c03337{word-spacing:32.127744pt;}
.wsd_c03337{word-spacing:32.659968pt;}
.ws1_c03337{word-spacing:33.563904pt;}
.ws0_c03337{word-spacing:33.796224pt;}
.ws3_c03337{word-spacing:34.860672pt;}
.ws5_c03337{word-spacing:35.468928pt;}
.ws7_c03337{word-spacing:37.357056pt;}
._0_c03337{margin-left:-1.731840pt;}
._2_c03337{width:1.317888pt;}
._4_c03337{width:5.111040pt;}
._1_c03337{width:44.668800pt;}
._3_c03337{width:45.805056pt;}
.fs0_c03337{font-size:42.240000pt;}
.fs1_c03337{font-size:53.760000pt;}
.y0_c03337{bottom:0.000000pt;}
.y19_c03337{bottom:130.665211pt;}
.y1b_c03337{bottom:165.866875pt;}
.y1a_c03337{bottom:174.507067pt;}
.y18_c03337{bottom:245.225371pt;}
.y17_c03337{bottom:317.225563pt;}
.y15_c03337{bottom:361.386427pt;}
.y11_c03337{bottom:377.386939pt;}
.y16_c03337{bottom:407.786011pt;}
.y14_c03337{bottom:437.226235pt;}
.y13_c03337{bottom:453.226747pt;}
.y10_c03337{bottom:482.666971pt;}
.y12_c03337{bottom:497.386555pt;}
.yf_c03337{bottom:513.387067pt;}
.y1c_c03337{bottom:546.027067pt;}
.yb_c03337{bottom:593.385179pt;}
.yd_c03337{bottom:628.586875pt;}
.yc_c03337{bottom:637.227067pt;}
.ya_c03337{bottom:707.945339pt;}
.y9_c03337{bottom:779.945531pt;}
.y7_c03337{bottom:823.786427pt;}
.y3_c03337{bottom:839.786939pt;}
.y8_c03337{bottom:870.505979pt;}
.y6_c03337{bottom:899.946203pt;}
.y5_c03337{bottom:915.946715pt;}
.y2_c03337{bottom:945.386939pt;}
.y4_c03337{bottom:959.786555pt;}
.y1_c03337{bottom:975.787067pt;}
.ye_c03337{bottom:1008.747067pt;}
.h3_c03337{height:28.916250pt;}
.h1_c03337{height:37.063125pt;}
.h2_c03337{height:37.166250pt;}
.h4_c03337{height:48.581988pt;}
.h0_c03337{height:1122.666667pt;}
.w1_c03337{width:793.333333pt;}
.w0_c03337{width:793.626667pt;}
.x0_c03337{left:0.000000pt;}
.xd_c03337{left:104.000000pt;}
.x8_c03337{left:391.999872pt;}
.x4_c03337{left:396.160512pt;}
.xb_c03337{left:400.960000pt;}
.x7_c03337{left:404.799648pt;}
.x5_c03337{left:410.560128pt;}
.x1_c03337{left:411.840000pt;}
.xa_c03337{left:429.760320pt;}
.x9_c03337{left:437.439552pt;}
.x6_c03337{left:438.400512pt;}
.xc_c03337{left:450.560320pt;}
.x3_c03337{left:455.039904pt;}
.x2_c03337{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03338 {
    display:none;
  }
  .loading-indicator_c03338.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03338 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03338 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03338" -> "#page-container .classname_c03338")
 */
.pf_c03338 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03338 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03338.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03338 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03338 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03338 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03338 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03338 {overflow:visible;}
  }
}
.c_c03338 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03338 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03338:after { /* webkit #35443 */
  content: '';
}
.t_c03338:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03338 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03338 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03338 { /* info for Javascript */
  display:none;
}
.l_c03338 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03338 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03338 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03338:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03338 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03338.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03338.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03338 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03338{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03338;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03338{font-family:ff1_c03338;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03338;src:url('chunks/assets/font_a78c699b8fd7a5c1c98ebe09.woff2')format("woff");}.ff2_c03338{font-family:ff2_c03338;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03338;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03338{font-family:ff3_c03338;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03338{vertical-align:0.000000px;}
.v1_c03338{vertical-align:1.439424px;}
.ls12_c03338{letter-spacing:-0.793584px;}
.ls7_c03338{letter-spacing:-0.613008px;}
.ls9_c03338{letter-spacing:-0.574992px;}
.lse_c03338{letter-spacing:-0.275616px;}
.lsc_c03338{letter-spacing:-0.261360px;}
.ls6_c03338{letter-spacing:-0.242352px;}
.ls4_c03338{letter-spacing:-0.118800px;}
.ls13_c03338{letter-spacing:-0.014256px;}
.ls11_c03338{letter-spacing:0.000000px;}
.ls2_c03338{letter-spacing:0.006048px;}
.ls5_c03338{letter-spacing:0.128304px;}
.lsb_c03338{letter-spacing:0.508464px;}
.ls10_c03338{letter-spacing:0.514080px;}
.lsd_c03338{letter-spacing:0.536976px;}
.lsa_c03338{letter-spacing:0.579744px;}
.lsf_c03338{letter-spacing:0.594000px;}
.ls8_c03338{letter-spacing:0.598752px;}
.ls3_c03338{letter-spacing:0.613008px;}
.ls0_c03338{letter-spacing:0.717552px;}
.ls1_c03338{letter-spacing:0.722304px;}
.sc__c03338{text-shadow:none;}
.sc0_c03338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03338{-webkit-text-stroke:0px transparent;}
.sc0_c03338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03338{word-spacing:-15.126048px;}
.wsa_c03338{word-spacing:-12.474000px;}
.ws8_c03338{word-spacing:-12.459744px;}
.ws9_c03338{word-spacing:-12.416976px;}
.ws4_c03338{word-spacing:-11.637648px;}
.ws2_c03338{word-spacing:-11.266992px;}
.ws12_c03338{word-spacing:-1.083456px;}
.ws11_c03338{word-spacing:-1.078704px;}
.wse_c03338{word-spacing:-0.974160px;}
.ws15_c03338{word-spacing:-0.719712px;}
.ws17_c03338{word-spacing:-0.346896px;}
.ws10_c03338{word-spacing:-0.118800px;}
.ws13_c03338{word-spacing:-0.099792px;}
.ws14_c03338{word-spacing:-0.085536px;}
.wsf_c03338{word-spacing:0.000000px;}
.ws16_c03338{word-spacing:0.432432px;}
.wsb_c03338{word-spacing:33.300288px;}
.wsd_c03338{word-spacing:36.143712px;}
.ws6_c03338{word-spacing:36.742464px;}
.ws1_c03338{word-spacing:37.759392px;}
.ws0_c03338{word-spacing:38.020752px;}
.ws3_c03338{word-spacing:39.218256px;}
.ws5_c03338{word-spacing:39.902544px;}
.ws7_c03338{word-spacing:42.026688px;}
._0_c03338{margin-left:-1.948320px;}
._2_c03338{width:1.482624px;}
._4_c03338{width:5.749920px;}
._1_c03338{width:50.252400px;}
._3_c03338{width:51.530688px;}
.fc0_c03338{color:rgb(0,0,0);}
.fs0_c03338{font-size:47.520000px;}
.fs1_c03338{font-size:60.480000px;}
.y0_c03338{bottom:0.000000px;}
.y19_c03338{bottom:146.998362px;}
.y1b_c03338{bottom:186.600234px;}
.y1a_c03338{bottom:196.320450px;}
.y18_c03338{bottom:275.878542px;}
.y17_c03338{bottom:356.878758px;}
.y15_c03338{bottom:406.559730px;}
.y11_c03338{bottom:424.560306px;}
.y16_c03338{bottom:458.759262px;}
.y14_c03338{bottom:491.879514px;}
.y13_c03338{bottom:509.880090px;}
.y10_c03338{bottom:543.000342px;}
.y12_c03338{bottom:559.559874px;}
.yf_c03338{bottom:577.560450px;}
.y1c_c03338{bottom:614.280450px;}
.yb_c03338{bottom:667.558326px;}
.yd_c03338{bottom:707.160234px;}
.yc_c03338{bottom:716.880450px;}
.ya_c03338{bottom:796.438506px;}
.y9_c03338{bottom:877.438722px;}
.y7_c03338{bottom:926.759730px;}
.y3_c03338{bottom:944.760306px;}
.y8_c03338{bottom:979.319226px;}
.y6_c03338{bottom:1012.439478px;}
.y5_c03338{bottom:1030.440054px;}
.y2_c03338{bottom:1063.560306px;}
.y4_c03338{bottom:1079.759874px;}
.y1_c03338{bottom:1097.760450px;}
.ye_c03338{bottom:1134.840450px;}
.h3_c03338{height:32.530781px;}
.h1_c03338{height:41.696016px;}
.h2_c03338{height:41.812031px;}
.h4_c03338{height:54.654737px;}
.h0_c03338{height:1263.000000px;}
.w1_c03338{width:892.500000px;}
.w0_c03338{width:892.830000px;}
.x0_c03338{left:0.000000px;}
.xd_c03338{left:117.000000px;}
.x8_c03338{left:440.999856px;}
.x4_c03338{left:445.680576px;}
.xb_c03338{left:451.080000px;}
.x7_c03338{left:455.399604px;}
.x5_c03338{left:461.880144px;}
.x1_c03338{left:463.320000px;}
.xa_c03338{left:483.480360px;}
.x9_c03338{left:492.119496px;}
.x6_c03338{left:493.200576px;}
.xc_c03338{left:506.880360px;}
.x3_c03338{left:511.919892px;}
.x2_c03338{left:526.679604px;}
@media print{
.v0_c03338{vertical-align:0.000000pt;}
.v1_c03338{vertical-align:1.279488pt;}
.ls12_c03338{letter-spacing:-0.705408pt;}
.ls7_c03338{letter-spacing:-0.544896pt;}
.ls9_c03338{letter-spacing:-0.511104pt;}
.lse_c03338{letter-spacing:-0.244992pt;}
.lsc_c03338{letter-spacing:-0.232320pt;}
.ls6_c03338{letter-spacing:-0.215424pt;}
.ls4_c03338{letter-spacing:-0.105600pt;}
.ls13_c03338{letter-spacing:-0.012672pt;}
.ls11_c03338{letter-spacing:0.000000pt;}
.ls2_c03338{letter-spacing:0.005376pt;}
.ls5_c03338{letter-spacing:0.114048pt;}
.lsb_c03338{letter-spacing:0.451968pt;}
.ls10_c03338{letter-spacing:0.456960pt;}
.lsd_c03338{letter-spacing:0.477312pt;}
.lsa_c03338{letter-spacing:0.515328pt;}
.lsf_c03338{letter-spacing:0.528000pt;}
.ls8_c03338{letter-spacing:0.532224pt;}
.ls3_c03338{letter-spacing:0.544896pt;}
.ls0_c03338{letter-spacing:0.637824pt;}
.ls1_c03338{letter-spacing:0.642048pt;}
.wsc_c03338{word-spacing:-13.445376pt;}
.wsa_c03338{word-spacing:-11.088000pt;}
.ws8_c03338{word-spacing:-11.075328pt;}
.ws9_c03338{word-spacing:-11.037312pt;}
.ws4_c03338{word-spacing:-10.344576pt;}
.ws2_c03338{word-spacing:-10.015104pt;}
.ws12_c03338{word-spacing:-0.963072pt;}
.ws11_c03338{word-spacing:-0.958848pt;}
.wse_c03338{word-spacing:-0.865920pt;}
.ws15_c03338{word-spacing:-0.639744pt;}
.ws17_c03338{word-spacing:-0.308352pt;}
.ws10_c03338{word-spacing:-0.105600pt;}
.ws13_c03338{word-spacing:-0.088704pt;}
.ws14_c03338{word-spacing:-0.076032pt;}
.wsf_c03338{word-spacing:0.000000pt;}
.ws16_c03338{word-spacing:0.384384pt;}
.wsb_c03338{word-spacing:29.600256pt;}
.wsd_c03338{word-spacing:32.127744pt;}
.ws6_c03338{word-spacing:32.659968pt;}
.ws1_c03338{word-spacing:33.563904pt;}
.ws0_c03338{word-spacing:33.796224pt;}
.ws3_c03338{word-spacing:34.860672pt;}
.ws5_c03338{word-spacing:35.468928pt;}
.ws7_c03338{word-spacing:37.357056pt;}
._0_c03338{margin-left:-1.731840pt;}
._2_c03338{width:1.317888pt;}
._4_c03338{width:5.111040pt;}
._1_c03338{width:44.668800pt;}
._3_c03338{width:45.805056pt;}
.fs0_c03338{font-size:42.240000pt;}
.fs1_c03338{font-size:53.760000pt;}
.y0_c03338{bottom:0.000000pt;}
.y19_c03338{bottom:130.665211pt;}
.y1b_c03338{bottom:165.866875pt;}
.y1a_c03338{bottom:174.507067pt;}
.y18_c03338{bottom:245.225371pt;}
.y17_c03338{bottom:317.225563pt;}
.y15_c03338{bottom:361.386427pt;}
.y11_c03338{bottom:377.386939pt;}
.y16_c03338{bottom:407.786011pt;}
.y14_c03338{bottom:437.226235pt;}
.y13_c03338{bottom:453.226747pt;}
.y10_c03338{bottom:482.666971pt;}
.y12_c03338{bottom:497.386555pt;}
.yf_c03338{bottom:513.387067pt;}
.y1c_c03338{bottom:546.027067pt;}
.yb_c03338{bottom:593.385179pt;}
.yd_c03338{bottom:628.586875pt;}
.yc_c03338{bottom:637.227067pt;}
.ya_c03338{bottom:707.945339pt;}
.y9_c03338{bottom:779.945531pt;}
.y7_c03338{bottom:823.786427pt;}
.y3_c03338{bottom:839.786939pt;}
.y8_c03338{bottom:870.505979pt;}
.y6_c03338{bottom:899.946203pt;}
.y5_c03338{bottom:915.946715pt;}
.y2_c03338{bottom:945.386939pt;}
.y4_c03338{bottom:959.786555pt;}
.y1_c03338{bottom:975.787067pt;}
.ye_c03338{bottom:1008.747067pt;}
.h3_c03338{height:28.916250pt;}
.h1_c03338{height:37.063125pt;}
.h2_c03338{height:37.166250pt;}
.h4_c03338{height:48.581988pt;}
.h0_c03338{height:1122.666667pt;}
.w1_c03338{width:793.333333pt;}
.w0_c03338{width:793.626667pt;}
.x0_c03338{left:0.000000pt;}
.xd_c03338{left:104.000000pt;}
.x8_c03338{left:391.999872pt;}
.x4_c03338{left:396.160512pt;}
.xb_c03338{left:400.960000pt;}
.x7_c03338{left:404.799648pt;}
.x5_c03338{left:410.560128pt;}
.x1_c03338{left:411.840000pt;}
.xa_c03338{left:429.760320pt;}
.x9_c03338{left:437.439552pt;}
.x6_c03338{left:438.400512pt;}
.xc_c03338{left:450.560320pt;}
.x3_c03338{left:455.039904pt;}
.x2_c03338{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03339 {
    display:none;
  }
  .loading-indicator_c03339.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03339 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03339 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03339" -> "#page-container .classname_c03339")
 */
.pf_c03339 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03339 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03339.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03339 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03339 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03339 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03339 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03339 {overflow:visible;}
  }
}
.c_c03339 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03339 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03339:after { /* webkit #35443 */
  content: '';
}
.t_c03339:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03339 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03339 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03339 { /* info for Javascript */
  display:none;
}
.l_c03339 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03339 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03339 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03339:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03339 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03339.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03339.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03339 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03339{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03339;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03339{font-family:ff1_c03339;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03339;src:url('chunks/assets/font_9ef48e24cd911befdf049b18.woff2')format("woff");}.ff2_c03339{font-family:ff2_c03339;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03339;src:url('chunks/assets/font_e3bd89aad746937b92fa8632.woff2')format("woff");}.ff3_c03339{font-family:ff3_c03339;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03339{vertical-align:0.000000px;}
.v1_c03339{vertical-align:1.439424px;}
.ls19_c03339{letter-spacing:-1.197504px;}
.lse_c03339{letter-spacing:-0.793584px;}
.ls16_c03339{letter-spacing:-0.769824px;}
.ls11_c03339{letter-spacing:-0.765072px;}
.lsc_c03339{letter-spacing:-0.722304px;}
.ls8_c03339{letter-spacing:-0.613008px;}
.lsa_c03339{letter-spacing:-0.574992px;}
.ls18_c03339{letter-spacing:-0.361152px;}
.ls12_c03339{letter-spacing:-0.275616px;}
.lsf_c03339{letter-spacing:-0.261360px;}
.ls7_c03339{letter-spacing:-0.242352px;}
.ls5_c03339{letter-spacing:-0.118800px;}
.ls15_c03339{letter-spacing:0.000000px;}
.ls1_c03339{letter-spacing:0.006048px;}
.ls6_c03339{letter-spacing:0.128304px;}
.lsd_c03339{letter-spacing:0.508464px;}
.ls14_c03339{letter-spacing:0.514080px;}
.ls10_c03339{letter-spacing:0.536976px;}
.lsb_c03339{letter-spacing:0.579744px;}
.ls13_c03339{letter-spacing:0.594000px;}
.ls9_c03339{letter-spacing:0.598752px;}
.ls17_c03339{letter-spacing:0.603504px;}
.ls3_c03339{letter-spacing:0.613008px;}
.ls2_c03339{letter-spacing:0.617760px;}
.ls4_c03339{letter-spacing:0.717552px;}
.ls0_c03339{letter-spacing:0.722304px;}
.sc__c03339{text-shadow:none;}
.sc0_c03339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03339{-webkit-text-stroke:0px transparent;}
.sc0_c03339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03339{word-spacing:-15.126048px;}
.wsf_c03339{word-spacing:-12.602304px;}
.ws13_c03339{word-spacing:-12.497760px;}
.wsb_c03339{word-spacing:-12.474000px;}
.wse_c03339{word-spacing:-12.459744px;}
.ws4_c03339{word-spacing:-11.637648px;}
.ws2_c03339{word-spacing:-11.266992px;}
.ws15_c03339{word-spacing:-10.682496px;}
.ws11_c03339{word-spacing:-2.062368px;}
.ws18_c03339{word-spacing:-1.083456px;}
.ws16_c03339{word-spacing:-0.974160px;}
.ws21_c03339{word-spacing:-0.964656px;}
.ws1d_c03339{word-spacing:-0.869616px;}
.ws1f_c03339{word-spacing:-0.719712px;}
.ws19_c03339{word-spacing:-0.118800px;}
.ws1c_c03339{word-spacing:-0.099792px;}
.ws1e_c03339{word-spacing:-0.085536px;}
.ws17_c03339{word-spacing:0.000000px;}
.ws1a_c03339{word-spacing:0.361152px;}
.ws20_c03339{word-spacing:0.408672px;}
.ws1b_c03339{word-spacing:0.432432px;}
.ws12_c03339{word-spacing:2.157408px;}
.ws14_c03339{word-spacing:2.884464px;}
.ws10_c03339{word-spacing:3.711312px;}
.wsc_c03339{word-spacing:33.300288px;}
.ws9_c03339{word-spacing:34.836912px;}
.ws8_c03339{word-spacing:36.143712px;}
.ws6_c03339{word-spacing:36.742464px;}
.ws1_c03339{word-spacing:37.759392px;}
.wsa_c03339{word-spacing:37.892448px;}
.ws0_c03339{word-spacing:38.020752px;}
.ws3_c03339{word-spacing:39.218256px;}
.ws5_c03339{word-spacing:39.902544px;}
.ws7_c03339{word-spacing:42.026688px;}
._0_c03339{margin-left:-1.948320px;}
._3_c03339{width:1.482624px;}
._5_c03339{width:5.749920px;}
._8_c03339{width:9.171360px;}
._2_c03339{width:10.292832px;}
._a_c03339{width:12.968208px;}
._9_c03339{width:17.463600px;}
._7_c03339{width:19.972656px;}
._1_c03339{width:50.252400px;}
._4_c03339{width:51.530688px;}
._6_c03339{width:53.070336px;}
.fc0_c03339{color:rgb(0,0,0);}
.fs0_c03339{font-size:47.520000px;}
.fs1_c03339{font-size:60.480000px;}
.y0_c03339{bottom:0.000000px;}
.y1f_c03339{bottom:50.760450px;}
.y1a_c03339{bottom:65.880450px;}
.y22_c03339{bottom:147.001134px;}
.y24_c03339{bottom:186.600234px;}
.y23_c03339{bottom:196.320450px;}
.y1e_c03339{bottom:210.000000px;}
.y21_c03339{bottom:246.000738px;}
.y20_c03339{bottom:260.760450px;}
.y1d_c03339{bottom:275.880234px;}
.y19_c03339{bottom:291.000000px;}
.y1c_c03339{bottom:341.760774px;}
.y18_c03339{bottom:356.878758px;}
.y1b_c03339{bottom:356.880450px;}
.y16_c03339{bottom:406.559730px;}
.y12_c03339{bottom:424.560306px;}
.y17_c03339{bottom:458.759262px;}
.y15_c03339{bottom:491.879514px;}
.y14_c03339{bottom:509.880090px;}
.y11_c03339{bottom:543.000342px;}
.y13_c03339{bottom:559.559874px;}
.y10_c03339{bottom:577.560450px;}
.y25_c03339{bottom:614.280450px;}
.yc_c03339{bottom:652.438650px;}
.yb_c03339{bottom:667.558326px;}
.ye_c03339{bottom:707.160234px;}
.yd_c03339{bottom:716.880450px;}
.ya_c03339{bottom:796.438506px;}
.y9_c03339{bottom:877.438722px;}
.y7_c03339{bottom:926.759730px;}
.y3_c03339{bottom:944.760306px;}
.y8_c03339{bottom:979.319226px;}
.y6_c03339{bottom:1012.439478px;}
.y5_c03339{bottom:1030.440054px;}
.y2_c03339{bottom:1063.560306px;}
.y4_c03339{bottom:1079.759874px;}
.y1_c03339{bottom:1097.760450px;}
.yf_c03339{bottom:1134.840450px;}
.h3_c03339{height:32.530781px;}
.h1_c03339{height:41.696016px;}
.h2_c03339{height:41.812031px;}
.h4_c03339{height:54.654737px;}
.h5_c03339{height:78.480000px;}
.h0_c03339{height:1263.000000px;}
.w2_c03339{width:215.280000px;}
.w1_c03339{width:892.500000px;}
.w0_c03339{width:892.830000px;}
.x0_c03339{left:0.000000px;}
.xe_c03339{left:117.000000px;}
.x8_c03339{left:440.999856px;}
.x4_c03339{left:445.680576px;}
.xc_c03339{left:451.080000px;}
.x7_c03339{left:455.399604px;}
.x5_c03339{left:461.880144px;}
.x1_c03339{left:463.320000px;}
.xa_c03339{left:483.480360px;}
.x9_c03339{left:492.119496px;}
.x6_c03339{left:493.200576px;}
.xd_c03339{left:506.880360px;}
.x3_c03339{left:511.919892px;}
.x2_c03339{left:526.679604px;}
.xb_c03339{left:569.880036px;}
.x10_c03339{left:633.240000px;}
.xf_c03339{left:635.400000px;}
@media print{
.v0_c03339{vertical-align:0.000000pt;}
.v1_c03339{vertical-align:1.279488pt;}
.ls19_c03339{letter-spacing:-1.064448pt;}
.lse_c03339{letter-spacing:-0.705408pt;}
.ls16_c03339{letter-spacing:-0.684288pt;}
.ls11_c03339{letter-spacing:-0.680064pt;}
.lsc_c03339{letter-spacing:-0.642048pt;}
.ls8_c03339{letter-spacing:-0.544896pt;}
.lsa_c03339{letter-spacing:-0.511104pt;}
.ls18_c03339{letter-spacing:-0.321024pt;}
.ls12_c03339{letter-spacing:-0.244992pt;}
.lsf_c03339{letter-spacing:-0.232320pt;}
.ls7_c03339{letter-spacing:-0.215424pt;}
.ls5_c03339{letter-spacing:-0.105600pt;}
.ls15_c03339{letter-spacing:0.000000pt;}
.ls1_c03339{letter-spacing:0.005376pt;}
.ls6_c03339{letter-spacing:0.114048pt;}
.lsd_c03339{letter-spacing:0.451968pt;}
.ls14_c03339{letter-spacing:0.456960pt;}
.ls10_c03339{letter-spacing:0.477312pt;}
.lsb_c03339{letter-spacing:0.515328pt;}
.ls13_c03339{letter-spacing:0.528000pt;}
.ls9_c03339{letter-spacing:0.532224pt;}
.ls17_c03339{letter-spacing:0.536448pt;}
.ls3_c03339{letter-spacing:0.544896pt;}
.ls2_c03339{letter-spacing:0.549120pt;}
.ls4_c03339{letter-spacing:0.637824pt;}
.ls0_c03339{letter-spacing:0.642048pt;}
.wsd_c03339{word-spacing:-13.445376pt;}
.wsf_c03339{word-spacing:-11.202048pt;}
.ws13_c03339{word-spacing:-11.109120pt;}
.wsb_c03339{word-spacing:-11.088000pt;}
.wse_c03339{word-spacing:-11.075328pt;}
.ws4_c03339{word-spacing:-10.344576pt;}
.ws2_c03339{word-spacing:-10.015104pt;}
.ws15_c03339{word-spacing:-9.495552pt;}
.ws11_c03339{word-spacing:-1.833216pt;}
.ws18_c03339{word-spacing:-0.963072pt;}
.ws16_c03339{word-spacing:-0.865920pt;}
.ws21_c03339{word-spacing:-0.857472pt;}
.ws1d_c03339{word-spacing:-0.772992pt;}
.ws1f_c03339{word-spacing:-0.639744pt;}
.ws19_c03339{word-spacing:-0.105600pt;}
.ws1c_c03339{word-spacing:-0.088704pt;}
.ws1e_c03339{word-spacing:-0.076032pt;}
.ws17_c03339{word-spacing:0.000000pt;}
.ws1a_c03339{word-spacing:0.321024pt;}
.ws20_c03339{word-spacing:0.363264pt;}
.ws1b_c03339{word-spacing:0.384384pt;}
.ws12_c03339{word-spacing:1.917696pt;}
.ws14_c03339{word-spacing:2.563968pt;}
.ws10_c03339{word-spacing:3.298944pt;}
.wsc_c03339{word-spacing:29.600256pt;}
.ws9_c03339{word-spacing:30.966144pt;}
.ws8_c03339{word-spacing:32.127744pt;}
.ws6_c03339{word-spacing:32.659968pt;}
.ws1_c03339{word-spacing:33.563904pt;}
.wsa_c03339{word-spacing:33.682176pt;}
.ws0_c03339{word-spacing:33.796224pt;}
.ws3_c03339{word-spacing:34.860672pt;}
.ws5_c03339{word-spacing:35.468928pt;}
.ws7_c03339{word-spacing:37.357056pt;}
._0_c03339{margin-left:-1.731840pt;}
._3_c03339{width:1.317888pt;}
._5_c03339{width:5.111040pt;}
._8_c03339{width:8.152320pt;}
._2_c03339{width:9.149184pt;}
._a_c03339{width:11.527296pt;}
._9_c03339{width:15.523200pt;}
._7_c03339{width:17.753472pt;}
._1_c03339{width:44.668800pt;}
._4_c03339{width:45.805056pt;}
._6_c03339{width:47.173632pt;}
.fs0_c03339{font-size:42.240000pt;}
.fs1_c03339{font-size:53.760000pt;}
.y0_c03339{bottom:0.000000pt;}
.y1f_c03339{bottom:45.120400pt;}
.y1a_c03339{bottom:58.560400pt;}
.y22_c03339{bottom:130.667675pt;}
.y24_c03339{bottom:165.866875pt;}
.y23_c03339{bottom:174.507067pt;}
.y1e_c03339{bottom:186.666667pt;}
.y21_c03339{bottom:218.667323pt;}
.y20_c03339{bottom:231.787067pt;}
.y1d_c03339{bottom:245.226875pt;}
.y19_c03339{bottom:258.666667pt;}
.y1c_c03339{bottom:303.787355pt;}
.y18_c03339{bottom:317.225563pt;}
.y1b_c03339{bottom:317.227067pt;}
.y16_c03339{bottom:361.386427pt;}
.y12_c03339{bottom:377.386939pt;}
.y17_c03339{bottom:407.786011pt;}
.y15_c03339{bottom:437.226235pt;}
.y14_c03339{bottom:453.226747pt;}
.y11_c03339{bottom:482.666971pt;}
.y13_c03339{bottom:497.386555pt;}
.y10_c03339{bottom:513.387067pt;}
.y25_c03339{bottom:546.027067pt;}
.yc_c03339{bottom:579.945467pt;}
.yb_c03339{bottom:593.385179pt;}
.ye_c03339{bottom:628.586875pt;}
.yd_c03339{bottom:637.227067pt;}
.ya_c03339{bottom:707.945339pt;}
.y9_c03339{bottom:779.945531pt;}
.y7_c03339{bottom:823.786427pt;}
.y3_c03339{bottom:839.786939pt;}
.y8_c03339{bottom:870.505979pt;}
.y6_c03339{bottom:899.946203pt;}
.y5_c03339{bottom:915.946715pt;}
.y2_c03339{bottom:945.386939pt;}
.y4_c03339{bottom:959.786555pt;}
.y1_c03339{bottom:975.787067pt;}
.yf_c03339{bottom:1008.747067pt;}
.h3_c03339{height:28.916250pt;}
.h1_c03339{height:37.063125pt;}
.h2_c03339{height:37.166250pt;}
.h4_c03339{height:48.581988pt;}
.h5_c03339{height:69.760000pt;}
.h0_c03339{height:1122.666667pt;}
.w2_c03339{width:191.360000pt;}
.w1_c03339{width:793.333333pt;}
.w0_c03339{width:793.626667pt;}
.x0_c03339{left:0.000000pt;}
.xe_c03339{left:104.000000pt;}
.x8_c03339{left:391.999872pt;}
.x4_c03339{left:396.160512pt;}
.xc_c03339{left:400.960000pt;}
.x7_c03339{left:404.799648pt;}
.x5_c03339{left:410.560128pt;}
.x1_c03339{left:411.840000pt;}
.xa_c03339{left:429.760320pt;}
.x9_c03339{left:437.439552pt;}
.x6_c03339{left:438.400512pt;}
.xd_c03339{left:450.560320pt;}
.x3_c03339{left:455.039904pt;}
.x2_c03339{left:468.159648pt;}
.xb_c03339{left:506.560032pt;}
.x10_c03339{left:562.880000pt;}
.xf_c03339{left:564.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03340 {
    display:none;
  }
  .loading-indicator_c03340.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03340 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03340 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03340" -> "#page-container .classname_c03340")
 */
.pf_c03340 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03340 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03340.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03340 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03340 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03340 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03340 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03340 {overflow:visible;}
  }
}
.c_c03340 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03340 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03340:after { /* webkit #35443 */
  content: '';
}
.t_c03340:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03340 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03340 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03340 { /* info for Javascript */
  display:none;
}
.l_c03340 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03340 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03340 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03340:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03340 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03340.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03340.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03340 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03340{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03340;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03340{font-family:ff1_c03340;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03340;src:url('chunks/assets/font_5052a7bf468ded15886d80fa.woff2')format("woff");}.ff2_c03340{font-family:ff2_c03340;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03340;src:url('chunks/assets/font_2ed3144d671f71ad60c31c2d.woff2')format("woff");}.ff3_c03340{font-family:ff3_c03340;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03340{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03340{vertical-align:0.000000px;}
.v1_c03340{vertical-align:1.439424px;}
.ls13_c03340{letter-spacing:-1.197504px;}
.lse_c03340{letter-spacing:-0.736560px;}
.ls7_c03340{letter-spacing:-0.613008px;}
.ls9_c03340{letter-spacing:-0.574992px;}
.ls15_c03340{letter-spacing:-0.361152px;}
.ls16_c03340{letter-spacing:-0.275616px;}
.lsf_c03340{letter-spacing:-0.270864px;}
.lsc_c03340{letter-spacing:-0.261360px;}
.ls6_c03340{letter-spacing:-0.242352px;}
.ls14_c03340{letter-spacing:-0.156816px;}
.ls4_c03340{letter-spacing:-0.118800px;}
.ls12_c03340{letter-spacing:0.000000px;}
.ls1_c03340{letter-spacing:0.006048px;}
.ls5_c03340{letter-spacing:0.128304px;}
.lsb_c03340{letter-spacing:0.508464px;}
.ls11_c03340{letter-spacing:0.514080px;}
.lsd_c03340{letter-spacing:0.536976px;}
.lsa_c03340{letter-spacing:0.579744px;}
.ls10_c03340{letter-spacing:0.594000px;}
.ls8_c03340{letter-spacing:0.598752px;}
.ls2_c03340{letter-spacing:0.613008px;}
.ls3_c03340{letter-spacing:0.717552px;}
.ls0_c03340{letter-spacing:0.722304px;}
.sc__c03340{text-shadow:none;}
.sc0_c03340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03340{-webkit-text-stroke:0px transparent;}
.sc0_c03340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03340{word-spacing:-15.126048px;}
.wsb_c03340{word-spacing:-12.474000px;}
.ws6_c03340{word-spacing:-12.459744px;}
.wsf_c03340{word-spacing:-12.416976px;}
.wse_c03340{word-spacing:-11.723184px;}
.ws4_c03340{word-spacing:-11.637648px;}
.ws2_c03340{word-spacing:-11.266992px;}
.ws13_c03340{word-spacing:-1.083456px;}
.ws10_c03340{word-spacing:-0.974160px;}
.ws17_c03340{word-spacing:-0.719712px;}
.ws12_c03340{word-spacing:-0.118800px;}
.ws14_c03340{word-spacing:-0.099792px;}
.ws15_c03340{word-spacing:-0.090288px;}
.ws16_c03340{word-spacing:-0.085536px;}
.ws11_c03340{word-spacing:0.000000px;}
.ws18_c03340{word-spacing:0.836352px;}
.wsa_c03340{word-spacing:6.629040px;}
.wsc_c03340{word-spacing:33.300288px;}
.ws9_c03340{word-spacing:34.836912px;}
.ws8_c03340{word-spacing:36.143712px;}
.ws1_c03340{word-spacing:37.759392px;}
.ws0_c03340{word-spacing:38.020752px;}
.ws3_c03340{word-spacing:39.218256px;}
.ws5_c03340{word-spacing:39.902544px;}
.ws7_c03340{word-spacing:42.026688px;}
._0_c03340{margin-left:-1.948320px;}
._2_c03340{width:1.482624px;}
._4_c03340{width:5.749920px;}
._6_c03340{width:19.982160px;}
._8_c03340{width:21.445776px;}
._7_c03340{width:23.451120px;}
._5_c03340{width:24.691392px;}
._1_c03340{width:50.252400px;}
._3_c03340{width:51.530688px;}
.fc0_c03340{color:rgb(0,0,0);}
.fs0_c03340{font-size:47.520000px;}
.fs1_c03340{font-size:60.480000px;}
.y0_c03340{bottom:0.000000px;}
.y1a_c03340{bottom:146.998362px;}
.y1c_c03340{bottom:186.600234px;}
.y1b_c03340{bottom:196.320450px;}
.y19_c03340{bottom:275.878542px;}
.y18_c03340{bottom:356.878758px;}
.y16_c03340{bottom:406.559730px;}
.y12_c03340{bottom:424.560306px;}
.y17_c03340{bottom:458.759262px;}
.y15_c03340{bottom:491.879514px;}
.y14_c03340{bottom:509.880090px;}
.y11_c03340{bottom:543.000342px;}
.y13_c03340{bottom:559.559874px;}
.y10_c03340{bottom:577.560450px;}
.y1d_c03340{bottom:614.280450px;}
.yc_c03340{bottom:652.438650px;}
.yb_c03340{bottom:667.558326px;}
.ye_c03340{bottom:707.160234px;}
.yd_c03340{bottom:716.880450px;}
.ya_c03340{bottom:796.438506px;}
.y9_c03340{bottom:877.438722px;}
.y7_c03340{bottom:926.759730px;}
.y3_c03340{bottom:944.760306px;}
.y8_c03340{bottom:979.319226px;}
.y6_c03340{bottom:1012.439478px;}
.y5_c03340{bottom:1030.440054px;}
.y2_c03340{bottom:1063.560306px;}
.y4_c03340{bottom:1079.759874px;}
.y1_c03340{bottom:1097.760450px;}
.yf_c03340{bottom:1134.840450px;}
.h3_c03340{height:32.530781px;}
.h1_c03340{height:41.696016px;}
.h2_c03340{height:41.812031px;}
.h4_c03340{height:54.654737px;}
.h0_c03340{height:1263.000000px;}
.w1_c03340{width:892.500000px;}
.w0_c03340{width:892.830000px;}
.x0_c03340{left:0.000000px;}
.xe_c03340{left:117.000000px;}
.x8_c03340{left:440.999856px;}
.x4_c03340{left:445.680576px;}
.xc_c03340{left:451.080000px;}
.x7_c03340{left:455.399604px;}
.x5_c03340{left:461.880144px;}
.x1_c03340{left:463.320000px;}
.xa_c03340{left:483.480360px;}
.x9_c03340{left:492.119496px;}
.x6_c03340{left:493.200576px;}
.xd_c03340{left:506.880360px;}
.x3_c03340{left:511.919892px;}
.x2_c03340{left:526.679604px;}
.xb_c03340{left:569.880036px;}
@media print{
.v0_c03340{vertical-align:0.000000pt;}
.v1_c03340{vertical-align:1.279488pt;}
.ls13_c03340{letter-spacing:-1.064448pt;}
.lse_c03340{letter-spacing:-0.654720pt;}
.ls7_c03340{letter-spacing:-0.544896pt;}
.ls9_c03340{letter-spacing:-0.511104pt;}
.ls15_c03340{letter-spacing:-0.321024pt;}
.ls16_c03340{letter-spacing:-0.244992pt;}
.lsf_c03340{letter-spacing:-0.240768pt;}
.lsc_c03340{letter-spacing:-0.232320pt;}
.ls6_c03340{letter-spacing:-0.215424pt;}
.ls14_c03340{letter-spacing:-0.139392pt;}
.ls4_c03340{letter-spacing:-0.105600pt;}
.ls12_c03340{letter-spacing:0.000000pt;}
.ls1_c03340{letter-spacing:0.005376pt;}
.ls5_c03340{letter-spacing:0.114048pt;}
.lsb_c03340{letter-spacing:0.451968pt;}
.ls11_c03340{letter-spacing:0.456960pt;}
.lsd_c03340{letter-spacing:0.477312pt;}
.lsa_c03340{letter-spacing:0.515328pt;}
.ls10_c03340{letter-spacing:0.528000pt;}
.ls8_c03340{letter-spacing:0.532224pt;}
.ls2_c03340{letter-spacing:0.544896pt;}
.ls3_c03340{letter-spacing:0.637824pt;}
.ls0_c03340{letter-spacing:0.642048pt;}
.wsd_c03340{word-spacing:-13.445376pt;}
.wsb_c03340{word-spacing:-11.088000pt;}
.ws6_c03340{word-spacing:-11.075328pt;}
.wsf_c03340{word-spacing:-11.037312pt;}
.wse_c03340{word-spacing:-10.420608pt;}
.ws4_c03340{word-spacing:-10.344576pt;}
.ws2_c03340{word-spacing:-10.015104pt;}
.ws13_c03340{word-spacing:-0.963072pt;}
.ws10_c03340{word-spacing:-0.865920pt;}
.ws17_c03340{word-spacing:-0.639744pt;}
.ws12_c03340{word-spacing:-0.105600pt;}
.ws14_c03340{word-spacing:-0.088704pt;}
.ws15_c03340{word-spacing:-0.080256pt;}
.ws16_c03340{word-spacing:-0.076032pt;}
.ws11_c03340{word-spacing:0.000000pt;}
.ws18_c03340{word-spacing:0.743424pt;}
.wsa_c03340{word-spacing:5.892480pt;}
.wsc_c03340{word-spacing:29.600256pt;}
.ws9_c03340{word-spacing:30.966144pt;}
.ws8_c03340{word-spacing:32.127744pt;}
.ws1_c03340{word-spacing:33.563904pt;}
.ws0_c03340{word-spacing:33.796224pt;}
.ws3_c03340{word-spacing:34.860672pt;}
.ws5_c03340{word-spacing:35.468928pt;}
.ws7_c03340{word-spacing:37.357056pt;}
._0_c03340{margin-left:-1.731840pt;}
._2_c03340{width:1.317888pt;}
._4_c03340{width:5.111040pt;}
._6_c03340{width:17.761920pt;}
._8_c03340{width:19.062912pt;}
._7_c03340{width:20.845440pt;}
._5_c03340{width:21.947904pt;}
._1_c03340{width:44.668800pt;}
._3_c03340{width:45.805056pt;}
.fs0_c03340{font-size:42.240000pt;}
.fs1_c03340{font-size:53.760000pt;}
.y0_c03340{bottom:0.000000pt;}
.y1a_c03340{bottom:130.665211pt;}
.y1c_c03340{bottom:165.866875pt;}
.y1b_c03340{bottom:174.507067pt;}
.y19_c03340{bottom:245.225371pt;}
.y18_c03340{bottom:317.225563pt;}
.y16_c03340{bottom:361.386427pt;}
.y12_c03340{bottom:377.386939pt;}
.y17_c03340{bottom:407.786011pt;}
.y15_c03340{bottom:437.226235pt;}
.y14_c03340{bottom:453.226747pt;}
.y11_c03340{bottom:482.666971pt;}
.y13_c03340{bottom:497.386555pt;}
.y10_c03340{bottom:513.387067pt;}
.y1d_c03340{bottom:546.027067pt;}
.yc_c03340{bottom:579.945467pt;}
.yb_c03340{bottom:593.385179pt;}
.ye_c03340{bottom:628.586875pt;}
.yd_c03340{bottom:637.227067pt;}
.ya_c03340{bottom:707.945339pt;}
.y9_c03340{bottom:779.945531pt;}
.y7_c03340{bottom:823.786427pt;}
.y3_c03340{bottom:839.786939pt;}
.y8_c03340{bottom:870.505979pt;}
.y6_c03340{bottom:899.946203pt;}
.y5_c03340{bottom:915.946715pt;}
.y2_c03340{bottom:945.386939pt;}
.y4_c03340{bottom:959.786555pt;}
.y1_c03340{bottom:975.787067pt;}
.yf_c03340{bottom:1008.747067pt;}
.h3_c03340{height:28.916250pt;}
.h1_c03340{height:37.063125pt;}
.h2_c03340{height:37.166250pt;}
.h4_c03340{height:48.581988pt;}
.h0_c03340{height:1122.666667pt;}
.w1_c03340{width:793.333333pt;}
.w0_c03340{width:793.626667pt;}
.x0_c03340{left:0.000000pt;}
.xe_c03340{left:104.000000pt;}
.x8_c03340{left:391.999872pt;}
.x4_c03340{left:396.160512pt;}
.xc_c03340{left:400.960000pt;}
.x7_c03340{left:404.799648pt;}
.x5_c03340{left:410.560128pt;}
.x1_c03340{left:411.840000pt;}
.xa_c03340{left:429.760320pt;}
.x9_c03340{left:437.439552pt;}
.x6_c03340{left:438.400512pt;}
.xd_c03340{left:450.560320pt;}
.x3_c03340{left:455.039904pt;}
.x2_c03340{left:468.159648pt;}
.xb_c03340{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03341 {
    display:none;
  }
  .loading-indicator_c03341.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03341 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03341 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03341" -> "#page-container .classname_c03341")
 */
.pf_c03341 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03341 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03341.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03341 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03341 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03341 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03341 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03341 {overflow:visible;}
  }
}
.c_c03341 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03341 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03341:after { /* webkit #35443 */
  content: '';
}
.t_c03341:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03341 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03341 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03341 { /* info for Javascript */
  display:none;
}
.l_c03341 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03341 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03341 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03341:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03341 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03341.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03341.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03341 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03341{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03341;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03341{font-family:ff1_c03341;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03341;src:url('chunks/assets/font_cb6c9f9230eb8a01b5a9738b.woff2')format("woff");}.ff2_c03341{font-family:ff2_c03341;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03341;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03341{font-family:ff3_c03341;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03341{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03341{vertical-align:0.000000px;}
.v1_c03341{vertical-align:1.439424px;}
.ls12_c03341{letter-spacing:-0.793584px;}
.ls7_c03341{letter-spacing:-0.613008px;}
.ls9_c03341{letter-spacing:-0.574992px;}
.ls13_c03341{letter-spacing:-0.304128px;}
.lse_c03341{letter-spacing:-0.275616px;}
.lsc_c03341{letter-spacing:-0.261360px;}
.ls6_c03341{letter-spacing:-0.242352px;}
.ls4_c03341{letter-spacing:-0.118800px;}
.ls11_c03341{letter-spacing:0.000000px;}
.ls1_c03341{letter-spacing:0.006048px;}
.ls5_c03341{letter-spacing:0.128304px;}
.lsb_c03341{letter-spacing:0.508464px;}
.ls10_c03341{letter-spacing:0.514080px;}
.lsd_c03341{letter-spacing:0.536976px;}
.lsa_c03341{letter-spacing:0.579744px;}
.lsf_c03341{letter-spacing:0.594000px;}
.ls8_c03341{letter-spacing:0.598752px;}
.ls2_c03341{letter-spacing:0.613008px;}
.ls3_c03341{letter-spacing:0.717552px;}
.ls0_c03341{letter-spacing:0.722304px;}
.sc__c03341{text-shadow:none;}
.sc0_c03341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03341{-webkit-text-stroke:0px transparent;}
.sc0_c03341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03341{word-spacing:-15.126048px;}
.wsa_c03341{word-spacing:-12.474000px;}
.ws8_c03341{word-spacing:-12.459744px;}
.ws4_c03341{word-spacing:-11.637648px;}
.ws2_c03341{word-spacing:-11.266992px;}
.ws11_c03341{word-spacing:-1.083456px;}
.wse_c03341{word-spacing:-0.974160px;}
.ws14_c03341{word-spacing:-0.719712px;}
.ws10_c03341{word-spacing:-0.118800px;}
.ws12_c03341{word-spacing:-0.099792px;}
.ws13_c03341{word-spacing:-0.085536px;}
.ws16_c03341{word-spacing:-0.057024px;}
.wsf_c03341{word-spacing:0.000000px;}
.ws15_c03341{word-spacing:0.432432px;}
.wsb_c03341{word-spacing:33.300288px;}
.ws9_c03341{word-spacing:34.836912px;}
.wsd_c03341{word-spacing:36.143712px;}
.ws6_c03341{word-spacing:36.742464px;}
.ws1_c03341{word-spacing:37.759392px;}
.ws0_c03341{word-spacing:38.020752px;}
.ws3_c03341{word-spacing:39.218256px;}
.ws5_c03341{word-spacing:39.902544px;}
.ws7_c03341{word-spacing:42.026688px;}
._0_c03341{margin-left:-1.948320px;}
._2_c03341{width:1.482624px;}
._4_c03341{width:5.749920px;}
._1_c03341{width:50.252400px;}
._3_c03341{width:51.530688px;}
.fc0_c03341{color:rgb(0,0,0);}
.fs0_c03341{font-size:47.520000px;}
.fs1_c03341{font-size:60.480000px;}
.y0_c03341{bottom:0.000000px;}
.y19_c03341{bottom:146.998362px;}
.y1b_c03341{bottom:186.600234px;}
.y1a_c03341{bottom:196.320450px;}
.y18_c03341{bottom:275.878542px;}
.y17_c03341{bottom:356.878758px;}
.y15_c03341{bottom:406.559730px;}
.y11_c03341{bottom:424.560306px;}
.y16_c03341{bottom:458.759262px;}
.y14_c03341{bottom:491.879514px;}
.y13_c03341{bottom:509.880090px;}
.y10_c03341{bottom:543.000342px;}
.y12_c03341{bottom:559.559874px;}
.yf_c03341{bottom:577.560450px;}
.y1c_c03341{bottom:614.280450px;}
.yb_c03341{bottom:667.558326px;}
.yd_c03341{bottom:707.160234px;}
.yc_c03341{bottom:716.880450px;}
.ya_c03341{bottom:796.438506px;}
.y9_c03341{bottom:877.438722px;}
.y7_c03341{bottom:926.759730px;}
.y3_c03341{bottom:944.760306px;}
.y8_c03341{bottom:979.319226px;}
.y6_c03341{bottom:1012.439478px;}
.y5_c03341{bottom:1030.440054px;}
.y2_c03341{bottom:1063.560306px;}
.y4_c03341{bottom:1079.759874px;}
.y1_c03341{bottom:1097.760450px;}
.ye_c03341{bottom:1134.840450px;}
.h3_c03341{height:32.530781px;}
.h1_c03341{height:41.696016px;}
.h2_c03341{height:41.812031px;}
.h4_c03341{height:54.654737px;}
.h0_c03341{height:1263.000000px;}
.w1_c03341{width:892.500000px;}
.w0_c03341{width:892.830000px;}
.x0_c03341{left:0.000000px;}
.xd_c03341{left:117.000000px;}
.x8_c03341{left:440.999856px;}
.x4_c03341{left:445.680576px;}
.xb_c03341{left:451.080000px;}
.x7_c03341{left:455.399604px;}
.x5_c03341{left:461.880144px;}
.x1_c03341{left:463.320000px;}
.xa_c03341{left:483.480360px;}
.x9_c03341{left:492.119496px;}
.x6_c03341{left:493.200576px;}
.xc_c03341{left:506.880360px;}
.x3_c03341{left:511.919892px;}
.x2_c03341{left:526.679604px;}
@media print{
.v0_c03341{vertical-align:0.000000pt;}
.v1_c03341{vertical-align:1.279488pt;}
.ls12_c03341{letter-spacing:-0.705408pt;}
.ls7_c03341{letter-spacing:-0.544896pt;}
.ls9_c03341{letter-spacing:-0.511104pt;}
.ls13_c03341{letter-spacing:-0.270336pt;}
.lse_c03341{letter-spacing:-0.244992pt;}
.lsc_c03341{letter-spacing:-0.232320pt;}
.ls6_c03341{letter-spacing:-0.215424pt;}
.ls4_c03341{letter-spacing:-0.105600pt;}
.ls11_c03341{letter-spacing:0.000000pt;}
.ls1_c03341{letter-spacing:0.005376pt;}
.ls5_c03341{letter-spacing:0.114048pt;}
.lsb_c03341{letter-spacing:0.451968pt;}
.ls10_c03341{letter-spacing:0.456960pt;}
.lsd_c03341{letter-spacing:0.477312pt;}
.lsa_c03341{letter-spacing:0.515328pt;}
.lsf_c03341{letter-spacing:0.528000pt;}
.ls8_c03341{letter-spacing:0.532224pt;}
.ls2_c03341{letter-spacing:0.544896pt;}
.ls3_c03341{letter-spacing:0.637824pt;}
.ls0_c03341{letter-spacing:0.642048pt;}
.wsc_c03341{word-spacing:-13.445376pt;}
.wsa_c03341{word-spacing:-11.088000pt;}
.ws8_c03341{word-spacing:-11.075328pt;}
.ws4_c03341{word-spacing:-10.344576pt;}
.ws2_c03341{word-spacing:-10.015104pt;}
.ws11_c03341{word-spacing:-0.963072pt;}
.wse_c03341{word-spacing:-0.865920pt;}
.ws14_c03341{word-spacing:-0.639744pt;}
.ws10_c03341{word-spacing:-0.105600pt;}
.ws12_c03341{word-spacing:-0.088704pt;}
.ws13_c03341{word-spacing:-0.076032pt;}
.ws16_c03341{word-spacing:-0.050688pt;}
.wsf_c03341{word-spacing:0.000000pt;}
.ws15_c03341{word-spacing:0.384384pt;}
.wsb_c03341{word-spacing:29.600256pt;}
.ws9_c03341{word-spacing:30.966144pt;}
.wsd_c03341{word-spacing:32.127744pt;}
.ws6_c03341{word-spacing:32.659968pt;}
.ws1_c03341{word-spacing:33.563904pt;}
.ws0_c03341{word-spacing:33.796224pt;}
.ws3_c03341{word-spacing:34.860672pt;}
.ws5_c03341{word-spacing:35.468928pt;}
.ws7_c03341{word-spacing:37.357056pt;}
._0_c03341{margin-left:-1.731840pt;}
._2_c03341{width:1.317888pt;}
._4_c03341{width:5.111040pt;}
._1_c03341{width:44.668800pt;}
._3_c03341{width:45.805056pt;}
.fs0_c03341{font-size:42.240000pt;}
.fs1_c03341{font-size:53.760000pt;}
.y0_c03341{bottom:0.000000pt;}
.y19_c03341{bottom:130.665211pt;}
.y1b_c03341{bottom:165.866875pt;}
.y1a_c03341{bottom:174.507067pt;}
.y18_c03341{bottom:245.225371pt;}
.y17_c03341{bottom:317.225563pt;}
.y15_c03341{bottom:361.386427pt;}
.y11_c03341{bottom:377.386939pt;}
.y16_c03341{bottom:407.786011pt;}
.y14_c03341{bottom:437.226235pt;}
.y13_c03341{bottom:453.226747pt;}
.y10_c03341{bottom:482.666971pt;}
.y12_c03341{bottom:497.386555pt;}
.yf_c03341{bottom:513.387067pt;}
.y1c_c03341{bottom:546.027067pt;}
.yb_c03341{bottom:593.385179pt;}
.yd_c03341{bottom:628.586875pt;}
.yc_c03341{bottom:637.227067pt;}
.ya_c03341{bottom:707.945339pt;}
.y9_c03341{bottom:779.945531pt;}
.y7_c03341{bottom:823.786427pt;}
.y3_c03341{bottom:839.786939pt;}
.y8_c03341{bottom:870.505979pt;}
.y6_c03341{bottom:899.946203pt;}
.y5_c03341{bottom:915.946715pt;}
.y2_c03341{bottom:945.386939pt;}
.y4_c03341{bottom:959.786555pt;}
.y1_c03341{bottom:975.787067pt;}
.ye_c03341{bottom:1008.747067pt;}
.h3_c03341{height:28.916250pt;}
.h1_c03341{height:37.063125pt;}
.h2_c03341{height:37.166250pt;}
.h4_c03341{height:48.581988pt;}
.h0_c03341{height:1122.666667pt;}
.w1_c03341{width:793.333333pt;}
.w0_c03341{width:793.626667pt;}
.x0_c03341{left:0.000000pt;}
.xd_c03341{left:104.000000pt;}
.x8_c03341{left:391.999872pt;}
.x4_c03341{left:396.160512pt;}
.xb_c03341{left:400.960000pt;}
.x7_c03341{left:404.799648pt;}
.x5_c03341{left:410.560128pt;}
.x1_c03341{left:411.840000pt;}
.xa_c03341{left:429.760320pt;}
.x9_c03341{left:437.439552pt;}
.x6_c03341{left:438.400512pt;}
.xc_c03341{left:450.560320pt;}
.x3_c03341{left:455.039904pt;}
.x2_c03341{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03342 {
    display:none;
  }
  .loading-indicator_c03342.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03342 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03342 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03342" -> "#page-container .classname_c03342")
 */
.pf_c03342 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03342 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03342.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03342 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03342 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03342 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03342 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03342 {overflow:visible;}
  }
}
.c_c03342 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03342 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03342:after { /* webkit #35443 */
  content: '';
}
.t_c03342:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03342 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03342 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03342 { /* info for Javascript */
  display:none;
}
.l_c03342 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03342 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03342 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03342:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03342 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03342.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03342.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03342 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03342{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03342;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03342{font-family:ff1_c03342;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03342;src:url('chunks/assets/font_f045717b3375055ff8d6e035.woff2')format("woff");}.ff2_c03342{font-family:ff2_c03342;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03342;src:url('chunks/assets/font_6398ece8f4193ac2d8a416dc.woff2')format("woff");}.ff3_c03342{font-family:ff3_c03342;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03342{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03342{vertical-align:0.000000px;}
.v1_c03342{vertical-align:1.439424px;}
.lse_c03342{letter-spacing:-0.765072px;}
.ls7_c03342{letter-spacing:-0.613008px;}
.ls9_c03342{letter-spacing:-0.574992px;}
.ls13_c03342{letter-spacing:-0.275616px;}
.lsf_c03342{letter-spacing:-0.270864px;}
.lsc_c03342{letter-spacing:-0.261360px;}
.ls6_c03342{letter-spacing:-0.242352px;}
.ls4_c03342{letter-spacing:-0.118800px;}
.ls12_c03342{letter-spacing:0.000000px;}
.ls1_c03342{letter-spacing:0.006048px;}
.ls5_c03342{letter-spacing:0.128304px;}
.lsb_c03342{letter-spacing:0.508464px;}
.ls11_c03342{letter-spacing:0.514080px;}
.lsd_c03342{letter-spacing:0.536976px;}
.lsa_c03342{letter-spacing:0.579744px;}
.ls10_c03342{letter-spacing:0.594000px;}
.ls8_c03342{letter-spacing:0.598752px;}
.ls2_c03342{letter-spacing:0.613008px;}
.ls3_c03342{letter-spacing:0.717552px;}
.ls0_c03342{letter-spacing:0.722304px;}
.sc__c03342{text-shadow:none;}
.sc0_c03342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03342{-webkit-text-stroke:0px transparent;}
.sc0_c03342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03342{word-spacing:-15.126048px;}
.wsa_c03342{word-spacing:-12.474000px;}
.ws6_c03342{word-spacing:-12.459744px;}
.ws4_c03342{word-spacing:-11.637648px;}
.ws2_c03342{word-spacing:-11.266992px;}
.ws11_c03342{word-spacing:-1.083456px;}
.ws16_c03342{word-spacing:-1.078704px;}
.wse_c03342{word-spacing:-0.974160px;}
.ws15_c03342{word-spacing:-0.719712px;}
.ws10_c03342{word-spacing:-0.118800px;}
.ws12_c03342{word-spacing:-0.099792px;}
.ws13_c03342{word-spacing:-0.090288px;}
.ws14_c03342{word-spacing:-0.085536px;}
.wsf_c03342{word-spacing:0.000000px;}
.wsb_c03342{word-spacing:33.300288px;}
.ws8_c03342{word-spacing:34.836912px;}
.wsd_c03342{word-spacing:36.742464px;}
.ws1_c03342{word-spacing:37.759392px;}
.ws9_c03342{word-spacing:37.892448px;}
.ws0_c03342{word-spacing:38.020752px;}
.ws3_c03342{word-spacing:39.218256px;}
.ws5_c03342{word-spacing:39.902544px;}
.ws7_c03342{word-spacing:42.026688px;}
._0_c03342{margin-left:-1.948320px;}
._2_c03342{width:1.482624px;}
._4_c03342{width:5.749920px;}
._1_c03342{width:50.252400px;}
._3_c03342{width:51.530688px;}
._5_c03342{width:53.070336px;}
.fc0_c03342{color:rgb(0,0,0);}
.fs0_c03342{font-size:47.520000px;}
.fs1_c03342{font-size:60.480000px;}
.y0_c03342{bottom:0.000000px;}
.y1a_c03342{bottom:146.998362px;}
.y1c_c03342{bottom:186.600234px;}
.y1b_c03342{bottom:196.320450px;}
.y19_c03342{bottom:275.878542px;}
.y18_c03342{bottom:356.878758px;}
.y16_c03342{bottom:406.559730px;}
.y12_c03342{bottom:424.560306px;}
.y17_c03342{bottom:458.759262px;}
.y15_c03342{bottom:491.879514px;}
.y14_c03342{bottom:509.880090px;}
.y11_c03342{bottom:543.000342px;}
.y13_c03342{bottom:559.559874px;}
.y10_c03342{bottom:577.560450px;}
.y1d_c03342{bottom:614.280450px;}
.yc_c03342{bottom:652.438650px;}
.yb_c03342{bottom:667.558326px;}
.ye_c03342{bottom:707.160234px;}
.yd_c03342{bottom:716.880450px;}
.ya_c03342{bottom:796.438506px;}
.y9_c03342{bottom:877.438722px;}
.y7_c03342{bottom:926.759730px;}
.y3_c03342{bottom:944.760306px;}
.y8_c03342{bottom:979.319226px;}
.y6_c03342{bottom:1012.439478px;}
.y5_c03342{bottom:1030.440054px;}
.y2_c03342{bottom:1063.560306px;}
.y4_c03342{bottom:1079.759874px;}
.y1_c03342{bottom:1097.760450px;}
.yf_c03342{bottom:1134.840450px;}
.h3_c03342{height:32.530781px;}
.h1_c03342{height:41.696016px;}
.h2_c03342{height:41.812031px;}
.h4_c03342{height:54.654737px;}
.h0_c03342{height:1263.000000px;}
.w1_c03342{width:892.500000px;}
.w0_c03342{width:892.830000px;}
.x0_c03342{left:0.000000px;}
.xe_c03342{left:117.000000px;}
.x8_c03342{left:440.999856px;}
.x4_c03342{left:445.680576px;}
.xc_c03342{left:451.080000px;}
.x7_c03342{left:455.399604px;}
.x5_c03342{left:461.880144px;}
.x1_c03342{left:463.320000px;}
.xa_c03342{left:483.480360px;}
.x9_c03342{left:492.119496px;}
.x6_c03342{left:493.200576px;}
.xd_c03342{left:506.880360px;}
.x3_c03342{left:511.919892px;}
.x2_c03342{left:526.679604px;}
.xb_c03342{left:569.880036px;}
@media print{
.v0_c03342{vertical-align:0.000000pt;}
.v1_c03342{vertical-align:1.279488pt;}
.lse_c03342{letter-spacing:-0.680064pt;}
.ls7_c03342{letter-spacing:-0.544896pt;}
.ls9_c03342{letter-spacing:-0.511104pt;}
.ls13_c03342{letter-spacing:-0.244992pt;}
.lsf_c03342{letter-spacing:-0.240768pt;}
.lsc_c03342{letter-spacing:-0.232320pt;}
.ls6_c03342{letter-spacing:-0.215424pt;}
.ls4_c03342{letter-spacing:-0.105600pt;}
.ls12_c03342{letter-spacing:0.000000pt;}
.ls1_c03342{letter-spacing:0.005376pt;}
.ls5_c03342{letter-spacing:0.114048pt;}
.lsb_c03342{letter-spacing:0.451968pt;}
.ls11_c03342{letter-spacing:0.456960pt;}
.lsd_c03342{letter-spacing:0.477312pt;}
.lsa_c03342{letter-spacing:0.515328pt;}
.ls10_c03342{letter-spacing:0.528000pt;}
.ls8_c03342{letter-spacing:0.532224pt;}
.ls2_c03342{letter-spacing:0.544896pt;}
.ls3_c03342{letter-spacing:0.637824pt;}
.ls0_c03342{letter-spacing:0.642048pt;}
.wsc_c03342{word-spacing:-13.445376pt;}
.wsa_c03342{word-spacing:-11.088000pt;}
.ws6_c03342{word-spacing:-11.075328pt;}
.ws4_c03342{word-spacing:-10.344576pt;}
.ws2_c03342{word-spacing:-10.015104pt;}
.ws11_c03342{word-spacing:-0.963072pt;}
.ws16_c03342{word-spacing:-0.958848pt;}
.wse_c03342{word-spacing:-0.865920pt;}
.ws15_c03342{word-spacing:-0.639744pt;}
.ws10_c03342{word-spacing:-0.105600pt;}
.ws12_c03342{word-spacing:-0.088704pt;}
.ws13_c03342{word-spacing:-0.080256pt;}
.ws14_c03342{word-spacing:-0.076032pt;}
.wsf_c03342{word-spacing:0.000000pt;}
.wsb_c03342{word-spacing:29.600256pt;}
.ws8_c03342{word-spacing:30.966144pt;}
.wsd_c03342{word-spacing:32.659968pt;}
.ws1_c03342{word-spacing:33.563904pt;}
.ws9_c03342{word-spacing:33.682176pt;}
.ws0_c03342{word-spacing:33.796224pt;}
.ws3_c03342{word-spacing:34.860672pt;}
.ws5_c03342{word-spacing:35.468928pt;}
.ws7_c03342{word-spacing:37.357056pt;}
._0_c03342{margin-left:-1.731840pt;}
._2_c03342{width:1.317888pt;}
._4_c03342{width:5.111040pt;}
._1_c03342{width:44.668800pt;}
._3_c03342{width:45.805056pt;}
._5_c03342{width:47.173632pt;}
.fs0_c03342{font-size:42.240000pt;}
.fs1_c03342{font-size:53.760000pt;}
.y0_c03342{bottom:0.000000pt;}
.y1a_c03342{bottom:130.665211pt;}
.y1c_c03342{bottom:165.866875pt;}
.y1b_c03342{bottom:174.507067pt;}
.y19_c03342{bottom:245.225371pt;}
.y18_c03342{bottom:317.225563pt;}
.y16_c03342{bottom:361.386427pt;}
.y12_c03342{bottom:377.386939pt;}
.y17_c03342{bottom:407.786011pt;}
.y15_c03342{bottom:437.226235pt;}
.y14_c03342{bottom:453.226747pt;}
.y11_c03342{bottom:482.666971pt;}
.y13_c03342{bottom:497.386555pt;}
.y10_c03342{bottom:513.387067pt;}
.y1d_c03342{bottom:546.027067pt;}
.yc_c03342{bottom:579.945467pt;}
.yb_c03342{bottom:593.385179pt;}
.ye_c03342{bottom:628.586875pt;}
.yd_c03342{bottom:637.227067pt;}
.ya_c03342{bottom:707.945339pt;}
.y9_c03342{bottom:779.945531pt;}
.y7_c03342{bottom:823.786427pt;}
.y3_c03342{bottom:839.786939pt;}
.y8_c03342{bottom:870.505979pt;}
.y6_c03342{bottom:899.946203pt;}
.y5_c03342{bottom:915.946715pt;}
.y2_c03342{bottom:945.386939pt;}
.y4_c03342{bottom:959.786555pt;}
.y1_c03342{bottom:975.787067pt;}
.yf_c03342{bottom:1008.747067pt;}
.h3_c03342{height:28.916250pt;}
.h1_c03342{height:37.063125pt;}
.h2_c03342{height:37.166250pt;}
.h4_c03342{height:48.581988pt;}
.h0_c03342{height:1122.666667pt;}
.w1_c03342{width:793.333333pt;}
.w0_c03342{width:793.626667pt;}
.x0_c03342{left:0.000000pt;}
.xe_c03342{left:104.000000pt;}
.x8_c03342{left:391.999872pt;}
.x4_c03342{left:396.160512pt;}
.xc_c03342{left:400.960000pt;}
.x7_c03342{left:404.799648pt;}
.x5_c03342{left:410.560128pt;}
.x1_c03342{left:411.840000pt;}
.xa_c03342{left:429.760320pt;}
.x9_c03342{left:437.439552pt;}
.x6_c03342{left:438.400512pt;}
.xd_c03342{left:450.560320pt;}
.x3_c03342{left:455.039904pt;}
.x2_c03342{left:468.159648pt;}
.xb_c03342{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03343 {
    display:none;
  }
  .loading-indicator_c03343.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03343 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03343 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03343" -> "#page-container .classname_c03343")
 */
.pf_c03343 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03343 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03343.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03343 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03343 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03343 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03343 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03343 {overflow:visible;}
  }
}
.c_c03343 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03343 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03343:after { /* webkit #35443 */
  content: '';
}
.t_c03343:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03343 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03343 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03343 { /* info for Javascript */
  display:none;
}
.l_c03343 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03343 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03343 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03343:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03343 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03343.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03343.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03343 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03343{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03343;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03343{font-family:ff1_c03343;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03343;src:url('chunks/assets/font_4bbf5340f58c83e3fa9b50e7.woff2')format("woff");}.ff2_c03343{font-family:ff2_c03343;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03343;src:url('chunks/assets/font_6398ece8f4193ac2d8a416dc.woff2')format("woff");}.ff3_c03343{font-family:ff3_c03343;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03343{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03343{vertical-align:0.000000px;}
.v1_c03343{vertical-align:1.439424px;}
.ls12_c03343{letter-spacing:-0.793584px;}
.ls14_c03343{letter-spacing:-0.736560px;}
.ls7_c03343{letter-spacing:-0.613008px;}
.ls9_c03343{letter-spacing:-0.574992px;}
.ls13_c03343{letter-spacing:-0.304128px;}
.lse_c03343{letter-spacing:-0.275616px;}
.ls15_c03343{letter-spacing:-0.270864px;}
.lsc_c03343{letter-spacing:-0.261360px;}
.ls6_c03343{letter-spacing:-0.242352px;}
.ls4_c03343{letter-spacing:-0.118800px;}
.ls11_c03343{letter-spacing:0.000000px;}
.ls1_c03343{letter-spacing:0.006048px;}
.ls5_c03343{letter-spacing:0.128304px;}
.lsb_c03343{letter-spacing:0.508464px;}
.ls10_c03343{letter-spacing:0.514080px;}
.lsd_c03343{letter-spacing:0.536976px;}
.lsa_c03343{letter-spacing:0.579744px;}
.lsf_c03343{letter-spacing:0.594000px;}
.ls8_c03343{letter-spacing:0.598752px;}
.ls2_c03343{letter-spacing:0.613008px;}
.ls3_c03343{letter-spacing:0.717552px;}
.ls0_c03343{letter-spacing:0.722304px;}
.sc__c03343{text-shadow:none;}
.sc0_c03343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03343{-webkit-text-stroke:0px transparent;}
.sc0_c03343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03343{word-spacing:-15.126048px;}
.wsb_c03343{word-spacing:-12.474000px;}
.ws9_c03343{word-spacing:-12.459744px;}
.ws5_c03343{word-spacing:-11.637648px;}
.ws3_c03343{word-spacing:-11.266992px;}
.ws1_c03343{word-spacing:-2.038608px;}
.ws13_c03343{word-spacing:-1.083456px;}
.ws10_c03343{word-spacing:-0.974160px;}
.ws16_c03343{word-spacing:-0.719712px;}
.ws12_c03343{word-spacing:-0.118800px;}
.ws14_c03343{word-spacing:-0.099792px;}
.ws19_c03343{word-spacing:-0.090288px;}
.ws15_c03343{word-spacing:-0.085536px;}
.ws18_c03343{word-spacing:-0.057024px;}
.ws11_c03343{word-spacing:0.000000px;}
.ws17_c03343{word-spacing:0.432432px;}
.wsf_c03343{word-spacing:6.629040px;}
.wsc_c03343{word-spacing:33.300288px;}
.wsa_c03343{word-spacing:34.836912px;}
.wse_c03343{word-spacing:36.143712px;}
.ws7_c03343{word-spacing:36.742464px;}
.ws2_c03343{word-spacing:37.759392px;}
.ws0_c03343{word-spacing:38.020752px;}
.ws4_c03343{word-spacing:39.218256px;}
.ws6_c03343{word-spacing:39.902544px;}
.ws8_c03343{word-spacing:42.026688px;}
._2_c03343{margin-left:-3.440448px;}
._0_c03343{margin-left:-1.948320px;}
._3_c03343{width:1.482624px;}
._5_c03343{width:5.749920px;}
._7_c03343{width:19.982160px;}
._8_c03343{width:23.451120px;}
._6_c03343{width:24.691392px;}
._1_c03343{width:50.252400px;}
._4_c03343{width:51.530688px;}
.fc0_c03343{color:rgb(0,0,0);}
.fs0_c03343{font-size:47.520000px;}
.fs1_c03343{font-size:60.480000px;}
.y0_c03343{bottom:0.000000px;}
.y1a_c03343{bottom:131.878686px;}
.y19_c03343{bottom:146.998362px;}
.y1c_c03343{bottom:186.600234px;}
.y1b_c03343{bottom:196.320450px;}
.y18_c03343{bottom:275.878542px;}
.y17_c03343{bottom:356.878758px;}
.y15_c03343{bottom:406.559730px;}
.y11_c03343{bottom:424.560306px;}
.y16_c03343{bottom:458.759262px;}
.y14_c03343{bottom:491.879514px;}
.y13_c03343{bottom:509.880090px;}
.y10_c03343{bottom:543.000342px;}
.y12_c03343{bottom:559.559874px;}
.yf_c03343{bottom:577.560450px;}
.y1d_c03343{bottom:614.280450px;}
.yb_c03343{bottom:667.558326px;}
.yd_c03343{bottom:707.160234px;}
.yc_c03343{bottom:716.880450px;}
.ya_c03343{bottom:796.438506px;}
.y9_c03343{bottom:877.438722px;}
.y7_c03343{bottom:926.759730px;}
.y3_c03343{bottom:944.760306px;}
.y8_c03343{bottom:979.319226px;}
.y6_c03343{bottom:1012.439478px;}
.y5_c03343{bottom:1030.440054px;}
.y2_c03343{bottom:1063.560306px;}
.y4_c03343{bottom:1079.759874px;}
.y1_c03343{bottom:1097.760450px;}
.ye_c03343{bottom:1134.840450px;}
.h3_c03343{height:32.530781px;}
.h1_c03343{height:41.696016px;}
.h2_c03343{height:41.812031px;}
.h4_c03343{height:54.654737px;}
.h0_c03343{height:1263.000000px;}
.w1_c03343{width:892.500000px;}
.w0_c03343{width:892.830000px;}
.x0_c03343{left:0.000000px;}
.xd_c03343{left:117.000000px;}
.x8_c03343{left:440.999856px;}
.x4_c03343{left:445.680576px;}
.xb_c03343{left:451.080000px;}
.x7_c03343{left:455.399604px;}
.x5_c03343{left:461.880144px;}
.x1_c03343{left:463.320000px;}
.xa_c03343{left:483.480360px;}
.x9_c03343{left:492.119496px;}
.x6_c03343{left:493.200576px;}
.xc_c03343{left:506.880360px;}
.x3_c03343{left:511.919892px;}
.x2_c03343{left:526.679604px;}
.xe_c03343{left:569.880036px;}
@media print{
.v0_c03343{vertical-align:0.000000pt;}
.v1_c03343{vertical-align:1.279488pt;}
.ls12_c03343{letter-spacing:-0.705408pt;}
.ls14_c03343{letter-spacing:-0.654720pt;}
.ls7_c03343{letter-spacing:-0.544896pt;}
.ls9_c03343{letter-spacing:-0.511104pt;}
.ls13_c03343{letter-spacing:-0.270336pt;}
.lse_c03343{letter-spacing:-0.244992pt;}
.ls15_c03343{letter-spacing:-0.240768pt;}
.lsc_c03343{letter-spacing:-0.232320pt;}
.ls6_c03343{letter-spacing:-0.215424pt;}
.ls4_c03343{letter-spacing:-0.105600pt;}
.ls11_c03343{letter-spacing:0.000000pt;}
.ls1_c03343{letter-spacing:0.005376pt;}
.ls5_c03343{letter-spacing:0.114048pt;}
.lsb_c03343{letter-spacing:0.451968pt;}
.ls10_c03343{letter-spacing:0.456960pt;}
.lsd_c03343{letter-spacing:0.477312pt;}
.lsa_c03343{letter-spacing:0.515328pt;}
.lsf_c03343{letter-spacing:0.528000pt;}
.ls8_c03343{letter-spacing:0.532224pt;}
.ls2_c03343{letter-spacing:0.544896pt;}
.ls3_c03343{letter-spacing:0.637824pt;}
.ls0_c03343{letter-spacing:0.642048pt;}
.wsd_c03343{word-spacing:-13.445376pt;}
.wsb_c03343{word-spacing:-11.088000pt;}
.ws9_c03343{word-spacing:-11.075328pt;}
.ws5_c03343{word-spacing:-10.344576pt;}
.ws3_c03343{word-spacing:-10.015104pt;}
.ws1_c03343{word-spacing:-1.812096pt;}
.ws13_c03343{word-spacing:-0.963072pt;}
.ws10_c03343{word-spacing:-0.865920pt;}
.ws16_c03343{word-spacing:-0.639744pt;}
.ws12_c03343{word-spacing:-0.105600pt;}
.ws14_c03343{word-spacing:-0.088704pt;}
.ws19_c03343{word-spacing:-0.080256pt;}
.ws15_c03343{word-spacing:-0.076032pt;}
.ws18_c03343{word-spacing:-0.050688pt;}
.ws11_c03343{word-spacing:0.000000pt;}
.ws17_c03343{word-spacing:0.384384pt;}
.wsf_c03343{word-spacing:5.892480pt;}
.wsc_c03343{word-spacing:29.600256pt;}
.wsa_c03343{word-spacing:30.966144pt;}
.wse_c03343{word-spacing:32.127744pt;}
.ws7_c03343{word-spacing:32.659968pt;}
.ws2_c03343{word-spacing:33.563904pt;}
.ws0_c03343{word-spacing:33.796224pt;}
.ws4_c03343{word-spacing:34.860672pt;}
.ws6_c03343{word-spacing:35.468928pt;}
.ws8_c03343{word-spacing:37.357056pt;}
._2_c03343{margin-left:-3.058176pt;}
._0_c03343{margin-left:-1.731840pt;}
._3_c03343{width:1.317888pt;}
._5_c03343{width:5.111040pt;}
._7_c03343{width:17.761920pt;}
._8_c03343{width:20.845440pt;}
._6_c03343{width:21.947904pt;}
._1_c03343{width:44.668800pt;}
._4_c03343{width:45.805056pt;}
.fs0_c03343{font-size:42.240000pt;}
.fs1_c03343{font-size:53.760000pt;}
.y0_c03343{bottom:0.000000pt;}
.y1a_c03343{bottom:117.225499pt;}
.y19_c03343{bottom:130.665211pt;}
.y1c_c03343{bottom:165.866875pt;}
.y1b_c03343{bottom:174.507067pt;}
.y18_c03343{bottom:245.225371pt;}
.y17_c03343{bottom:317.225563pt;}
.y15_c03343{bottom:361.386427pt;}
.y11_c03343{bottom:377.386939pt;}
.y16_c03343{bottom:407.786011pt;}
.y14_c03343{bottom:437.226235pt;}
.y13_c03343{bottom:453.226747pt;}
.y10_c03343{bottom:482.666971pt;}
.y12_c03343{bottom:497.386555pt;}
.yf_c03343{bottom:513.387067pt;}
.y1d_c03343{bottom:546.027067pt;}
.yb_c03343{bottom:593.385179pt;}
.yd_c03343{bottom:628.586875pt;}
.yc_c03343{bottom:637.227067pt;}
.ya_c03343{bottom:707.945339pt;}
.y9_c03343{bottom:779.945531pt;}
.y7_c03343{bottom:823.786427pt;}
.y3_c03343{bottom:839.786939pt;}
.y8_c03343{bottom:870.505979pt;}
.y6_c03343{bottom:899.946203pt;}
.y5_c03343{bottom:915.946715pt;}
.y2_c03343{bottom:945.386939pt;}
.y4_c03343{bottom:959.786555pt;}
.y1_c03343{bottom:975.787067pt;}
.ye_c03343{bottom:1008.747067pt;}
.h3_c03343{height:28.916250pt;}
.h1_c03343{height:37.063125pt;}
.h2_c03343{height:37.166250pt;}
.h4_c03343{height:48.581988pt;}
.h0_c03343{height:1122.666667pt;}
.w1_c03343{width:793.333333pt;}
.w0_c03343{width:793.626667pt;}
.x0_c03343{left:0.000000pt;}
.xd_c03343{left:104.000000pt;}
.x8_c03343{left:391.999872pt;}
.x4_c03343{left:396.160512pt;}
.xb_c03343{left:400.960000pt;}
.x7_c03343{left:404.799648pt;}
.x5_c03343{left:410.560128pt;}
.x1_c03343{left:411.840000pt;}
.xa_c03343{left:429.760320pt;}
.x9_c03343{left:437.439552pt;}
.x6_c03343{left:438.400512pt;}
.xc_c03343{left:450.560320pt;}
.x3_c03343{left:455.039904pt;}
.x2_c03343{left:468.159648pt;}
.xe_c03343{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03344 {
    display:none;
  }
  .loading-indicator_c03344.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03344 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03344 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03344" -> "#page-container .classname_c03344")
 */
.pf_c03344 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03344 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03344.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03344 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03344 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03344 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03344 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03344 {overflow:visible;}
  }
}
.c_c03344 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03344 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03344:after { /* webkit #35443 */
  content: '';
}
.t_c03344:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03344 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03344 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03344 { /* info for Javascript */
  display:none;
}
.l_c03344 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03344 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03344 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03344:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03344 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03344.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03344.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03344 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03344{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03344;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03344{font-family:ff1_c03344;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03344;src:url('chunks/assets/font_6514c53c1f735250764c8338.woff2')format("woff");}.ff2_c03344{font-family:ff2_c03344;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03344;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03344{font-family:ff3_c03344;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03344{vertical-align:0.000000px;}
.v1_c03344{vertical-align:1.439424px;}
.lsc_c03344{letter-spacing:-0.793584px;}
.ls10_c03344{letter-spacing:-0.736560px;}
.ls7_c03344{letter-spacing:-0.613008px;}
.ls9_c03344{letter-spacing:-0.574992px;}
.lsd_c03344{letter-spacing:-0.304128px;}
.ls15_c03344{letter-spacing:-0.275616px;}
.ls11_c03344{letter-spacing:-0.270864px;}
.lse_c03344{letter-spacing:-0.261360px;}
.ls6_c03344{letter-spacing:-0.242352px;}
.ls4_c03344{letter-spacing:-0.118800px;}
.ls14_c03344{letter-spacing:0.000000px;}
.ls1_c03344{letter-spacing:0.006048px;}
.ls5_c03344{letter-spacing:0.128304px;}
.lsb_c03344{letter-spacing:0.508464px;}
.ls13_c03344{letter-spacing:0.514080px;}
.lsf_c03344{letter-spacing:0.536976px;}
.lsa_c03344{letter-spacing:0.579744px;}
.ls12_c03344{letter-spacing:0.594000px;}
.ls8_c03344{letter-spacing:0.598752px;}
.ls3_c03344{letter-spacing:0.613008px;}
.ls2_c03344{letter-spacing:0.717552px;}
.ls0_c03344{letter-spacing:0.722304px;}
.sc__c03344{text-shadow:none;}
.sc0_c03344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03344{-webkit-text-stroke:0px transparent;}
.sc0_c03344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03344{word-spacing:-15.126048px;}
.wsb_c03344{word-spacing:-12.474000px;}
.ws6_c03344{word-spacing:-12.459744px;}
.wsf_c03344{word-spacing:-12.416976px;}
.ws4_c03344{word-spacing:-11.637648px;}
.ws2_c03344{word-spacing:-11.266992px;}
.ws13_c03344{word-spacing:-1.083456px;}
.ws1a_c03344{word-spacing:-1.078704px;}
.ws10_c03344{word-spacing:-0.974160px;}
.ws19_c03344{word-spacing:-0.719712px;}
.ws12_c03344{word-spacing:-0.118800px;}
.ws16_c03344{word-spacing:-0.099792px;}
.ws17_c03344{word-spacing:-0.090288px;}
.ws18_c03344{word-spacing:-0.085536px;}
.ws15_c03344{word-spacing:-0.057024px;}
.ws11_c03344{word-spacing:0.000000px;}
.ws14_c03344{word-spacing:0.432432px;}
.wsa_c03344{word-spacing:6.629040px;}
.wsc_c03344{word-spacing:33.300288px;}
.ws9_c03344{word-spacing:34.836912px;}
.ws8_c03344{word-spacing:36.143712px;}
.wse_c03344{word-spacing:36.742464px;}
.ws1_c03344{word-spacing:37.759392px;}
.ws0_c03344{word-spacing:38.020752px;}
.ws3_c03344{word-spacing:39.218256px;}
.ws5_c03344{word-spacing:39.902544px;}
.ws7_c03344{word-spacing:42.026688px;}
._0_c03344{margin-left:-1.948320px;}
._2_c03344{width:1.482624px;}
._4_c03344{width:5.749920px;}
._6_c03344{width:19.982160px;}
._7_c03344{width:23.451120px;}
._5_c03344{width:24.691392px;}
._1_c03344{width:50.252400px;}
._3_c03344{width:51.530688px;}
.fc0_c03344{color:rgb(0,0,0);}
.fs0_c03344{font-size:47.520000px;}
.fs1_c03344{font-size:60.480000px;}
.y0_c03344{bottom:0.000000px;}
.y1a_c03344{bottom:146.998362px;}
.y1c_c03344{bottom:186.600234px;}
.y1b_c03344{bottom:196.320450px;}
.y19_c03344{bottom:275.878542px;}
.y18_c03344{bottom:356.878758px;}
.y16_c03344{bottom:406.559730px;}
.y12_c03344{bottom:424.560306px;}
.y17_c03344{bottom:458.759262px;}
.y15_c03344{bottom:491.879514px;}
.y14_c03344{bottom:509.880090px;}
.y11_c03344{bottom:543.000342px;}
.y13_c03344{bottom:559.559874px;}
.y10_c03344{bottom:577.560450px;}
.y1d_c03344{bottom:614.280450px;}
.yc_c03344{bottom:652.438650px;}
.yb_c03344{bottom:667.558326px;}
.ye_c03344{bottom:707.160234px;}
.yd_c03344{bottom:716.880450px;}
.ya_c03344{bottom:796.438506px;}
.y9_c03344{bottom:877.438722px;}
.y7_c03344{bottom:926.759730px;}
.y3_c03344{bottom:944.760306px;}
.y8_c03344{bottom:979.319226px;}
.y6_c03344{bottom:1012.439478px;}
.y5_c03344{bottom:1030.440054px;}
.y2_c03344{bottom:1063.560306px;}
.y4_c03344{bottom:1079.759874px;}
.y1_c03344{bottom:1097.760450px;}
.yf_c03344{bottom:1134.840450px;}
.h3_c03344{height:32.530781px;}
.h1_c03344{height:41.696016px;}
.h2_c03344{height:41.812031px;}
.h4_c03344{height:54.654737px;}
.h0_c03344{height:1263.000000px;}
.w1_c03344{width:892.500000px;}
.w0_c03344{width:892.830000px;}
.x0_c03344{left:0.000000px;}
.xe_c03344{left:117.000000px;}
.x8_c03344{left:440.999856px;}
.x4_c03344{left:445.680576px;}
.xc_c03344{left:451.080000px;}
.x7_c03344{left:455.399604px;}
.x5_c03344{left:461.880144px;}
.x1_c03344{left:463.320000px;}
.xa_c03344{left:483.480360px;}
.x9_c03344{left:492.119496px;}
.x6_c03344{left:493.200576px;}
.xd_c03344{left:506.880360px;}
.x3_c03344{left:511.919892px;}
.x2_c03344{left:526.679604px;}
.xb_c03344{left:569.880036px;}
@media print{
.v0_c03344{vertical-align:0.000000pt;}
.v1_c03344{vertical-align:1.279488pt;}
.lsc_c03344{letter-spacing:-0.705408pt;}
.ls10_c03344{letter-spacing:-0.654720pt;}
.ls7_c03344{letter-spacing:-0.544896pt;}
.ls9_c03344{letter-spacing:-0.511104pt;}
.lsd_c03344{letter-spacing:-0.270336pt;}
.ls15_c03344{letter-spacing:-0.244992pt;}
.ls11_c03344{letter-spacing:-0.240768pt;}
.lse_c03344{letter-spacing:-0.232320pt;}
.ls6_c03344{letter-spacing:-0.215424pt;}
.ls4_c03344{letter-spacing:-0.105600pt;}
.ls14_c03344{letter-spacing:0.000000pt;}
.ls1_c03344{letter-spacing:0.005376pt;}
.ls5_c03344{letter-spacing:0.114048pt;}
.lsb_c03344{letter-spacing:0.451968pt;}
.ls13_c03344{letter-spacing:0.456960pt;}
.lsf_c03344{letter-spacing:0.477312pt;}
.lsa_c03344{letter-spacing:0.515328pt;}
.ls12_c03344{letter-spacing:0.528000pt;}
.ls8_c03344{letter-spacing:0.532224pt;}
.ls3_c03344{letter-spacing:0.544896pt;}
.ls2_c03344{letter-spacing:0.637824pt;}
.ls0_c03344{letter-spacing:0.642048pt;}
.wsd_c03344{word-spacing:-13.445376pt;}
.wsb_c03344{word-spacing:-11.088000pt;}
.ws6_c03344{word-spacing:-11.075328pt;}
.wsf_c03344{word-spacing:-11.037312pt;}
.ws4_c03344{word-spacing:-10.344576pt;}
.ws2_c03344{word-spacing:-10.015104pt;}
.ws13_c03344{word-spacing:-0.963072pt;}
.ws1a_c03344{word-spacing:-0.958848pt;}
.ws10_c03344{word-spacing:-0.865920pt;}
.ws19_c03344{word-spacing:-0.639744pt;}
.ws12_c03344{word-spacing:-0.105600pt;}
.ws16_c03344{word-spacing:-0.088704pt;}
.ws17_c03344{word-spacing:-0.080256pt;}
.ws18_c03344{word-spacing:-0.076032pt;}
.ws15_c03344{word-spacing:-0.050688pt;}
.ws11_c03344{word-spacing:0.000000pt;}
.ws14_c03344{word-spacing:0.384384pt;}
.wsa_c03344{word-spacing:5.892480pt;}
.wsc_c03344{word-spacing:29.600256pt;}
.ws9_c03344{word-spacing:30.966144pt;}
.ws8_c03344{word-spacing:32.127744pt;}
.wse_c03344{word-spacing:32.659968pt;}
.ws1_c03344{word-spacing:33.563904pt;}
.ws0_c03344{word-spacing:33.796224pt;}
.ws3_c03344{word-spacing:34.860672pt;}
.ws5_c03344{word-spacing:35.468928pt;}
.ws7_c03344{word-spacing:37.357056pt;}
._0_c03344{margin-left:-1.731840pt;}
._2_c03344{width:1.317888pt;}
._4_c03344{width:5.111040pt;}
._6_c03344{width:17.761920pt;}
._7_c03344{width:20.845440pt;}
._5_c03344{width:21.947904pt;}
._1_c03344{width:44.668800pt;}
._3_c03344{width:45.805056pt;}
.fs0_c03344{font-size:42.240000pt;}
.fs1_c03344{font-size:53.760000pt;}
.y0_c03344{bottom:0.000000pt;}
.y1a_c03344{bottom:130.665211pt;}
.y1c_c03344{bottom:165.866875pt;}
.y1b_c03344{bottom:174.507067pt;}
.y19_c03344{bottom:245.225371pt;}
.y18_c03344{bottom:317.225563pt;}
.y16_c03344{bottom:361.386427pt;}
.y12_c03344{bottom:377.386939pt;}
.y17_c03344{bottom:407.786011pt;}
.y15_c03344{bottom:437.226235pt;}
.y14_c03344{bottom:453.226747pt;}
.y11_c03344{bottom:482.666971pt;}
.y13_c03344{bottom:497.386555pt;}
.y10_c03344{bottom:513.387067pt;}
.y1d_c03344{bottom:546.027067pt;}
.yc_c03344{bottom:579.945467pt;}
.yb_c03344{bottom:593.385179pt;}
.ye_c03344{bottom:628.586875pt;}
.yd_c03344{bottom:637.227067pt;}
.ya_c03344{bottom:707.945339pt;}
.y9_c03344{bottom:779.945531pt;}
.y7_c03344{bottom:823.786427pt;}
.y3_c03344{bottom:839.786939pt;}
.y8_c03344{bottom:870.505979pt;}
.y6_c03344{bottom:899.946203pt;}
.y5_c03344{bottom:915.946715pt;}
.y2_c03344{bottom:945.386939pt;}
.y4_c03344{bottom:959.786555pt;}
.y1_c03344{bottom:975.787067pt;}
.yf_c03344{bottom:1008.747067pt;}
.h3_c03344{height:28.916250pt;}
.h1_c03344{height:37.063125pt;}
.h2_c03344{height:37.166250pt;}
.h4_c03344{height:48.581988pt;}
.h0_c03344{height:1122.666667pt;}
.w1_c03344{width:793.333333pt;}
.w0_c03344{width:793.626667pt;}
.x0_c03344{left:0.000000pt;}
.xe_c03344{left:104.000000pt;}
.x8_c03344{left:391.999872pt;}
.x4_c03344{left:396.160512pt;}
.xc_c03344{left:400.960000pt;}
.x7_c03344{left:404.799648pt;}
.x5_c03344{left:410.560128pt;}
.x1_c03344{left:411.840000pt;}
.xa_c03344{left:429.760320pt;}
.x9_c03344{left:437.439552pt;}
.x6_c03344{left:438.400512pt;}
.xd_c03344{left:450.560320pt;}
.x3_c03344{left:455.039904pt;}
.x2_c03344{left:468.159648pt;}
.xb_c03344{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03345 {
    display:none;
  }
  .loading-indicator_c03345.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03345 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03345 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03345" -> "#page-container .classname_c03345")
 */
.pf_c03345 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03345 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03345.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03345 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03345 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03345 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03345 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03345 {overflow:visible;}
  }
}
.c_c03345 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03345 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03345:after { /* webkit #35443 */
  content: '';
}
.t_c03345:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03345 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03345 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03345 { /* info for Javascript */
  display:none;
}
.l_c03345 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03345 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03345 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03345:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03345 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03345.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03345.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03345 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03345{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03345;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03345{font-family:ff1_c03345;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03345;src:url('chunks/assets/font_e426cb0793eeb8e203e9153e.woff2')format("woff");}.ff2_c03345{font-family:ff2_c03345;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03345;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03345{font-family:ff3_c03345;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03345{vertical-align:0.000000px;}
.v1_c03345{vertical-align:1.439424px;}
.ls12_c03345{letter-spacing:-0.793584px;}
.ls13_c03345{letter-spacing:-0.736560px;}
.ls7_c03345{letter-spacing:-0.613008px;}
.ls9_c03345{letter-spacing:-0.574992px;}
.lse_c03345{letter-spacing:-0.275616px;}
.ls14_c03345{letter-spacing:-0.270864px;}
.lsc_c03345{letter-spacing:-0.261360px;}
.ls6_c03345{letter-spacing:-0.242352px;}
.ls4_c03345{letter-spacing:-0.118800px;}
.ls11_c03345{letter-spacing:0.000000px;}
.ls2_c03345{letter-spacing:0.006048px;}
.ls5_c03345{letter-spacing:0.128304px;}
.lsb_c03345{letter-spacing:0.508464px;}
.ls10_c03345{letter-spacing:0.514080px;}
.lsd_c03345{letter-spacing:0.536976px;}
.lsa_c03345{letter-spacing:0.579744px;}
.lsf_c03345{letter-spacing:0.594000px;}
.ls8_c03345{letter-spacing:0.598752px;}
.ls3_c03345{letter-spacing:0.613008px;}
.ls0_c03345{letter-spacing:0.717552px;}
.ls1_c03345{letter-spacing:0.722304px;}
.sc__c03345{text-shadow:none;}
.sc0_c03345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03345{-webkit-text-stroke:0px transparent;}
.sc0_c03345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03345{word-spacing:-15.126048px;}
.wsa_c03345{word-spacing:-12.474000px;}
.ws8_c03345{word-spacing:-12.459744px;}
.ws9_c03345{word-spacing:-12.416976px;}
.ws4_c03345{word-spacing:-11.637648px;}
.ws2_c03345{word-spacing:-11.266992px;}
.ws13_c03345{word-spacing:-1.083456px;}
.ws12_c03345{word-spacing:-1.078704px;}
.wsf_c03345{word-spacing:-0.974160px;}
.ws16_c03345{word-spacing:-0.719712px;}
.ws11_c03345{word-spacing:-0.118800px;}
.ws14_c03345{word-spacing:-0.099792px;}
.ws18_c03345{word-spacing:-0.090288px;}
.ws15_c03345{word-spacing:-0.085536px;}
.ws10_c03345{word-spacing:0.000000px;}
.ws17_c03345{word-spacing:0.432432px;}
.wse_c03345{word-spacing:6.629040px;}
.wsb_c03345{word-spacing:33.300288px;}
.wsd_c03345{word-spacing:34.836912px;}
.ws6_c03345{word-spacing:36.742464px;}
.ws1_c03345{word-spacing:37.759392px;}
.ws0_c03345{word-spacing:38.020752px;}
.ws3_c03345{word-spacing:39.218256px;}
.ws5_c03345{word-spacing:39.902544px;}
.ws7_c03345{word-spacing:42.026688px;}
._0_c03345{margin-left:-1.948320px;}
._2_c03345{width:1.482624px;}
._4_c03345{width:5.749920px;}
._6_c03345{width:19.982160px;}
._7_c03345{width:23.451120px;}
._5_c03345{width:24.691392px;}
._1_c03345{width:50.252400px;}
._3_c03345{width:51.530688px;}
.fc0_c03345{color:rgb(0,0,0);}
.fs0_c03345{font-size:47.520000px;}
.fs1_c03345{font-size:60.480000px;}
.y0_c03345{bottom:0.000000px;}
.y1a_c03345{bottom:131.878686px;}
.y19_c03345{bottom:146.998362px;}
.y1c_c03345{bottom:186.600234px;}
.y1b_c03345{bottom:196.320450px;}
.y18_c03345{bottom:275.878542px;}
.y17_c03345{bottom:356.878758px;}
.y15_c03345{bottom:406.559730px;}
.y11_c03345{bottom:424.560306px;}
.y16_c03345{bottom:458.759262px;}
.y14_c03345{bottom:491.879514px;}
.y13_c03345{bottom:509.880090px;}
.y10_c03345{bottom:543.000342px;}
.y12_c03345{bottom:559.559874px;}
.yf_c03345{bottom:577.560450px;}
.y1d_c03345{bottom:614.280450px;}
.yb_c03345{bottom:667.558326px;}
.yd_c03345{bottom:707.160234px;}
.yc_c03345{bottom:716.880450px;}
.ya_c03345{bottom:796.438506px;}
.y9_c03345{bottom:877.438722px;}
.y7_c03345{bottom:926.759730px;}
.y3_c03345{bottom:944.760306px;}
.y8_c03345{bottom:979.319226px;}
.y6_c03345{bottom:1012.439478px;}
.y5_c03345{bottom:1030.440054px;}
.y2_c03345{bottom:1063.560306px;}
.y4_c03345{bottom:1079.759874px;}
.y1_c03345{bottom:1097.760450px;}
.ye_c03345{bottom:1134.840450px;}
.h3_c03345{height:32.530781px;}
.h1_c03345{height:41.696016px;}
.h2_c03345{height:41.812031px;}
.h4_c03345{height:54.654737px;}
.h0_c03345{height:1263.000000px;}
.w1_c03345{width:892.500000px;}
.w0_c03345{width:892.830000px;}
.x0_c03345{left:0.000000px;}
.xd_c03345{left:117.000000px;}
.x8_c03345{left:440.999856px;}
.x4_c03345{left:445.680576px;}
.xb_c03345{left:451.080000px;}
.x7_c03345{left:455.399604px;}
.x5_c03345{left:461.880144px;}
.x1_c03345{left:463.320000px;}
.xa_c03345{left:483.480360px;}
.x9_c03345{left:492.119496px;}
.x6_c03345{left:493.200576px;}
.xc_c03345{left:506.880360px;}
.x3_c03345{left:511.919892px;}
.x2_c03345{left:526.679604px;}
.xe_c03345{left:569.880036px;}
@media print{
.v0_c03345{vertical-align:0.000000pt;}
.v1_c03345{vertical-align:1.279488pt;}
.ls12_c03345{letter-spacing:-0.705408pt;}
.ls13_c03345{letter-spacing:-0.654720pt;}
.ls7_c03345{letter-spacing:-0.544896pt;}
.ls9_c03345{letter-spacing:-0.511104pt;}
.lse_c03345{letter-spacing:-0.244992pt;}
.ls14_c03345{letter-spacing:-0.240768pt;}
.lsc_c03345{letter-spacing:-0.232320pt;}
.ls6_c03345{letter-spacing:-0.215424pt;}
.ls4_c03345{letter-spacing:-0.105600pt;}
.ls11_c03345{letter-spacing:0.000000pt;}
.ls2_c03345{letter-spacing:0.005376pt;}
.ls5_c03345{letter-spacing:0.114048pt;}
.lsb_c03345{letter-spacing:0.451968pt;}
.ls10_c03345{letter-spacing:0.456960pt;}
.lsd_c03345{letter-spacing:0.477312pt;}
.lsa_c03345{letter-spacing:0.515328pt;}
.lsf_c03345{letter-spacing:0.528000pt;}
.ls8_c03345{letter-spacing:0.532224pt;}
.ls3_c03345{letter-spacing:0.544896pt;}
.ls0_c03345{letter-spacing:0.637824pt;}
.ls1_c03345{letter-spacing:0.642048pt;}
.wsc_c03345{word-spacing:-13.445376pt;}
.wsa_c03345{word-spacing:-11.088000pt;}
.ws8_c03345{word-spacing:-11.075328pt;}
.ws9_c03345{word-spacing:-11.037312pt;}
.ws4_c03345{word-spacing:-10.344576pt;}
.ws2_c03345{word-spacing:-10.015104pt;}
.ws13_c03345{word-spacing:-0.963072pt;}
.ws12_c03345{word-spacing:-0.958848pt;}
.wsf_c03345{word-spacing:-0.865920pt;}
.ws16_c03345{word-spacing:-0.639744pt;}
.ws11_c03345{word-spacing:-0.105600pt;}
.ws14_c03345{word-spacing:-0.088704pt;}
.ws18_c03345{word-spacing:-0.080256pt;}
.ws15_c03345{word-spacing:-0.076032pt;}
.ws10_c03345{word-spacing:0.000000pt;}
.ws17_c03345{word-spacing:0.384384pt;}
.wse_c03345{word-spacing:5.892480pt;}
.wsb_c03345{word-spacing:29.600256pt;}
.wsd_c03345{word-spacing:30.966144pt;}
.ws6_c03345{word-spacing:32.659968pt;}
.ws1_c03345{word-spacing:33.563904pt;}
.ws0_c03345{word-spacing:33.796224pt;}
.ws3_c03345{word-spacing:34.860672pt;}
.ws5_c03345{word-spacing:35.468928pt;}
.ws7_c03345{word-spacing:37.357056pt;}
._0_c03345{margin-left:-1.731840pt;}
._2_c03345{width:1.317888pt;}
._4_c03345{width:5.111040pt;}
._6_c03345{width:17.761920pt;}
._7_c03345{width:20.845440pt;}
._5_c03345{width:21.947904pt;}
._1_c03345{width:44.668800pt;}
._3_c03345{width:45.805056pt;}
.fs0_c03345{font-size:42.240000pt;}
.fs1_c03345{font-size:53.760000pt;}
.y0_c03345{bottom:0.000000pt;}
.y1a_c03345{bottom:117.225499pt;}
.y19_c03345{bottom:130.665211pt;}
.y1c_c03345{bottom:165.866875pt;}
.y1b_c03345{bottom:174.507067pt;}
.y18_c03345{bottom:245.225371pt;}
.y17_c03345{bottom:317.225563pt;}
.y15_c03345{bottom:361.386427pt;}
.y11_c03345{bottom:377.386939pt;}
.y16_c03345{bottom:407.786011pt;}
.y14_c03345{bottom:437.226235pt;}
.y13_c03345{bottom:453.226747pt;}
.y10_c03345{bottom:482.666971pt;}
.y12_c03345{bottom:497.386555pt;}
.yf_c03345{bottom:513.387067pt;}
.y1d_c03345{bottom:546.027067pt;}
.yb_c03345{bottom:593.385179pt;}
.yd_c03345{bottom:628.586875pt;}
.yc_c03345{bottom:637.227067pt;}
.ya_c03345{bottom:707.945339pt;}
.y9_c03345{bottom:779.945531pt;}
.y7_c03345{bottom:823.786427pt;}
.y3_c03345{bottom:839.786939pt;}
.y8_c03345{bottom:870.505979pt;}
.y6_c03345{bottom:899.946203pt;}
.y5_c03345{bottom:915.946715pt;}
.y2_c03345{bottom:945.386939pt;}
.y4_c03345{bottom:959.786555pt;}
.y1_c03345{bottom:975.787067pt;}
.ye_c03345{bottom:1008.747067pt;}
.h3_c03345{height:28.916250pt;}
.h1_c03345{height:37.063125pt;}
.h2_c03345{height:37.166250pt;}
.h4_c03345{height:48.581988pt;}
.h0_c03345{height:1122.666667pt;}
.w1_c03345{width:793.333333pt;}
.w0_c03345{width:793.626667pt;}
.x0_c03345{left:0.000000pt;}
.xd_c03345{left:104.000000pt;}
.x8_c03345{left:391.999872pt;}
.x4_c03345{left:396.160512pt;}
.xb_c03345{left:400.960000pt;}
.x7_c03345{left:404.799648pt;}
.x5_c03345{left:410.560128pt;}
.x1_c03345{left:411.840000pt;}
.xa_c03345{left:429.760320pt;}
.x9_c03345{left:437.439552pt;}
.x6_c03345{left:438.400512pt;}
.xc_c03345{left:450.560320pt;}
.x3_c03345{left:455.039904pt;}
.x2_c03345{left:468.159648pt;}
.xe_c03345{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03346 {
    display:none;
  }
  .loading-indicator_c03346.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03346 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03346 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03346" -> "#page-container .classname_c03346")
 */
.pf_c03346 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03346 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03346.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03346 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03346 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03346 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03346 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03346 {overflow:visible;}
  }
}
.c_c03346 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03346 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03346:after { /* webkit #35443 */
  content: '';
}
.t_c03346:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03346 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03346 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03346 { /* info for Javascript */
  display:none;
}
.l_c03346 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03346 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03346 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03346:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03346 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03346.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03346.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03346 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03346{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03346;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03346{font-family:ff1_c03346;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03346;src:url('chunks/assets/font_16c8fc96739500ddad7ac819.woff2')format("woff");}.ff2_c03346{font-family:ff2_c03346;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03346;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03346{font-family:ff3_c03346;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03346{vertical-align:0.000000px;}
.v1_c03346{vertical-align:1.439424px;}
.ls13_c03346{letter-spacing:-0.765072px;}
.lsc_c03346{letter-spacing:-0.755568px;}
.ls7_c03346{letter-spacing:-0.613008px;}
.ls9_c03346{letter-spacing:-0.574992px;}
.lsf_c03346{letter-spacing:-0.275616px;}
.ls14_c03346{letter-spacing:-0.270864px;}
.lsd_c03346{letter-spacing:-0.261360px;}
.ls6_c03346{letter-spacing:-0.242352px;}
.ls4_c03346{letter-spacing:-0.118800px;}
.ls12_c03346{letter-spacing:0.000000px;}
.ls1_c03346{letter-spacing:0.006048px;}
.ls5_c03346{letter-spacing:0.128304px;}
.lsb_c03346{letter-spacing:0.508464px;}
.ls11_c03346{letter-spacing:0.514080px;}
.lse_c03346{letter-spacing:0.536976px;}
.lsa_c03346{letter-spacing:0.579744px;}
.ls10_c03346{letter-spacing:0.594000px;}
.ls8_c03346{letter-spacing:0.598752px;}
.ls2_c03346{letter-spacing:0.613008px;}
.ls3_c03346{letter-spacing:0.717552px;}
.ls0_c03346{letter-spacing:0.722304px;}
.sc__c03346{text-shadow:none;}
.sc0_c03346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03346{-webkit-text-stroke:0px transparent;}
.sc0_c03346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03346{word-spacing:-15.126048px;}
.wsa_c03346{word-spacing:-12.474000px;}
.wsd_c03346{word-spacing:-12.459744px;}
.ws4_c03346{word-spacing:-11.637648px;}
.ws2_c03346{word-spacing:-11.266992px;}
.ws12_c03346{word-spacing:-1.083456px;}
.wsf_c03346{word-spacing:-0.974160px;}
.ws16_c03346{word-spacing:-0.719712px;}
.ws11_c03346{word-spacing:-0.118800px;}
.ws14_c03346{word-spacing:-0.099792px;}
.ws17_c03346{word-spacing:-0.090288px;}
.ws15_c03346{word-spacing:-0.085536px;}
.ws10_c03346{word-spacing:0.000000px;}
.ws13_c03346{word-spacing:0.394416px;}
.wsb_c03346{word-spacing:33.300288px;}
.ws9_c03346{word-spacing:34.836912px;}
.ws8_c03346{word-spacing:36.143712px;}
.ws6_c03346{word-spacing:36.742464px;}
.ws1_c03346{word-spacing:37.759392px;}
.wse_c03346{word-spacing:37.892448px;}
.ws0_c03346{word-spacing:38.020752px;}
.ws3_c03346{word-spacing:39.218256px;}
.ws5_c03346{word-spacing:39.902544px;}
.ws7_c03346{word-spacing:42.026688px;}
._0_c03346{margin-left:-1.948320px;}
._2_c03346{width:1.482624px;}
._4_c03346{width:5.749920px;}
._1_c03346{width:50.252400px;}
._3_c03346{width:51.530688px;}
._5_c03346{width:53.070336px;}
.fc0_c03346{color:rgb(0,0,0);}
.fs0_c03346{font-size:47.520000px;}
.fs1_c03346{font-size:60.480000px;}
.y0_c03346{bottom:0.000000px;}
.y1a_c03346{bottom:131.878686px;}
.y19_c03346{bottom:146.998362px;}
.y1c_c03346{bottom:186.600234px;}
.y1b_c03346{bottom:196.320450px;}
.y18_c03346{bottom:275.878542px;}
.y17_c03346{bottom:356.878758px;}
.y15_c03346{bottom:406.559730px;}
.y11_c03346{bottom:424.560306px;}
.y16_c03346{bottom:458.759262px;}
.y14_c03346{bottom:491.879514px;}
.y13_c03346{bottom:509.880090px;}
.y10_c03346{bottom:543.000342px;}
.y12_c03346{bottom:559.559874px;}
.yf_c03346{bottom:577.560450px;}
.y1d_c03346{bottom:614.280450px;}
.yb_c03346{bottom:667.558326px;}
.yd_c03346{bottom:707.160234px;}
.yc_c03346{bottom:716.880450px;}
.ya_c03346{bottom:796.438506px;}
.y9_c03346{bottom:877.438722px;}
.y7_c03346{bottom:926.759730px;}
.y3_c03346{bottom:944.760306px;}
.y8_c03346{bottom:979.319226px;}
.y6_c03346{bottom:1012.439478px;}
.y5_c03346{bottom:1030.440054px;}
.y2_c03346{bottom:1063.560306px;}
.y4_c03346{bottom:1079.759874px;}
.y1_c03346{bottom:1097.760450px;}
.ye_c03346{bottom:1134.840450px;}
.h3_c03346{height:32.530781px;}
.h1_c03346{height:41.696016px;}
.h2_c03346{height:41.812031px;}
.h4_c03346{height:54.654737px;}
.h0_c03346{height:1263.000000px;}
.w1_c03346{width:892.500000px;}
.w0_c03346{width:892.830000px;}
.x0_c03346{left:0.000000px;}
.xd_c03346{left:117.000000px;}
.x8_c03346{left:440.999856px;}
.x4_c03346{left:445.680576px;}
.xb_c03346{left:451.080000px;}
.x7_c03346{left:455.399604px;}
.x5_c03346{left:461.880144px;}
.x1_c03346{left:463.320000px;}
.xa_c03346{left:483.480360px;}
.x9_c03346{left:492.119496px;}
.x6_c03346{left:493.200576px;}
.xc_c03346{left:506.880360px;}
.x3_c03346{left:511.919892px;}
.x2_c03346{left:526.679604px;}
.xe_c03346{left:569.880036px;}
@media print{
.v0_c03346{vertical-align:0.000000pt;}
.v1_c03346{vertical-align:1.279488pt;}
.ls13_c03346{letter-spacing:-0.680064pt;}
.lsc_c03346{letter-spacing:-0.671616pt;}
.ls7_c03346{letter-spacing:-0.544896pt;}
.ls9_c03346{letter-spacing:-0.511104pt;}
.lsf_c03346{letter-spacing:-0.244992pt;}
.ls14_c03346{letter-spacing:-0.240768pt;}
.lsd_c03346{letter-spacing:-0.232320pt;}
.ls6_c03346{letter-spacing:-0.215424pt;}
.ls4_c03346{letter-spacing:-0.105600pt;}
.ls12_c03346{letter-spacing:0.000000pt;}
.ls1_c03346{letter-spacing:0.005376pt;}
.ls5_c03346{letter-spacing:0.114048pt;}
.lsb_c03346{letter-spacing:0.451968pt;}
.ls11_c03346{letter-spacing:0.456960pt;}
.lse_c03346{letter-spacing:0.477312pt;}
.lsa_c03346{letter-spacing:0.515328pt;}
.ls10_c03346{letter-spacing:0.528000pt;}
.ls8_c03346{letter-spacing:0.532224pt;}
.ls2_c03346{letter-spacing:0.544896pt;}
.ls3_c03346{letter-spacing:0.637824pt;}
.ls0_c03346{letter-spacing:0.642048pt;}
.wsc_c03346{word-spacing:-13.445376pt;}
.wsa_c03346{word-spacing:-11.088000pt;}
.wsd_c03346{word-spacing:-11.075328pt;}
.ws4_c03346{word-spacing:-10.344576pt;}
.ws2_c03346{word-spacing:-10.015104pt;}
.ws12_c03346{word-spacing:-0.963072pt;}
.wsf_c03346{word-spacing:-0.865920pt;}
.ws16_c03346{word-spacing:-0.639744pt;}
.ws11_c03346{word-spacing:-0.105600pt;}
.ws14_c03346{word-spacing:-0.088704pt;}
.ws17_c03346{word-spacing:-0.080256pt;}
.ws15_c03346{word-spacing:-0.076032pt;}
.ws10_c03346{word-spacing:0.000000pt;}
.ws13_c03346{word-spacing:0.350592pt;}
.wsb_c03346{word-spacing:29.600256pt;}
.ws9_c03346{word-spacing:30.966144pt;}
.ws8_c03346{word-spacing:32.127744pt;}
.ws6_c03346{word-spacing:32.659968pt;}
.ws1_c03346{word-spacing:33.563904pt;}
.wse_c03346{word-spacing:33.682176pt;}
.ws0_c03346{word-spacing:33.796224pt;}
.ws3_c03346{word-spacing:34.860672pt;}
.ws5_c03346{word-spacing:35.468928pt;}
.ws7_c03346{word-spacing:37.357056pt;}
._0_c03346{margin-left:-1.731840pt;}
._2_c03346{width:1.317888pt;}
._4_c03346{width:5.111040pt;}
._1_c03346{width:44.668800pt;}
._3_c03346{width:45.805056pt;}
._5_c03346{width:47.173632pt;}
.fs0_c03346{font-size:42.240000pt;}
.fs1_c03346{font-size:53.760000pt;}
.y0_c03346{bottom:0.000000pt;}
.y1a_c03346{bottom:117.225499pt;}
.y19_c03346{bottom:130.665211pt;}
.y1c_c03346{bottom:165.866875pt;}
.y1b_c03346{bottom:174.507067pt;}
.y18_c03346{bottom:245.225371pt;}
.y17_c03346{bottom:317.225563pt;}
.y15_c03346{bottom:361.386427pt;}
.y11_c03346{bottom:377.386939pt;}
.y16_c03346{bottom:407.786011pt;}
.y14_c03346{bottom:437.226235pt;}
.y13_c03346{bottom:453.226747pt;}
.y10_c03346{bottom:482.666971pt;}
.y12_c03346{bottom:497.386555pt;}
.yf_c03346{bottom:513.387067pt;}
.y1d_c03346{bottom:546.027067pt;}
.yb_c03346{bottom:593.385179pt;}
.yd_c03346{bottom:628.586875pt;}
.yc_c03346{bottom:637.227067pt;}
.ya_c03346{bottom:707.945339pt;}
.y9_c03346{bottom:779.945531pt;}
.y7_c03346{bottom:823.786427pt;}
.y3_c03346{bottom:839.786939pt;}
.y8_c03346{bottom:870.505979pt;}
.y6_c03346{bottom:899.946203pt;}
.y5_c03346{bottom:915.946715pt;}
.y2_c03346{bottom:945.386939pt;}
.y4_c03346{bottom:959.786555pt;}
.y1_c03346{bottom:975.787067pt;}
.ye_c03346{bottom:1008.747067pt;}
.h3_c03346{height:28.916250pt;}
.h1_c03346{height:37.063125pt;}
.h2_c03346{height:37.166250pt;}
.h4_c03346{height:48.581988pt;}
.h0_c03346{height:1122.666667pt;}
.w1_c03346{width:793.333333pt;}
.w0_c03346{width:793.626667pt;}
.x0_c03346{left:0.000000pt;}
.xd_c03346{left:104.000000pt;}
.x8_c03346{left:391.999872pt;}
.x4_c03346{left:396.160512pt;}
.xb_c03346{left:400.960000pt;}
.x7_c03346{left:404.799648pt;}
.x5_c03346{left:410.560128pt;}
.x1_c03346{left:411.840000pt;}
.xa_c03346{left:429.760320pt;}
.x9_c03346{left:437.439552pt;}
.x6_c03346{left:438.400512pt;}
.xc_c03346{left:450.560320pt;}
.x3_c03346{left:455.039904pt;}
.x2_c03346{left:468.159648pt;}
.xe_c03346{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03347 {
    display:none;
  }
  .loading-indicator_c03347.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03347 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03347 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03347" -> "#page-container .classname_c03347")
 */
.pf_c03347 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03347 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03347.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03347 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03347 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03347 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03347 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03347 {overflow:visible;}
  }
}
.c_c03347 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03347 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03347:after { /* webkit #35443 */
  content: '';
}
.t_c03347:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03347 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03347 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03347 { /* info for Javascript */
  display:none;
}
.l_c03347 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03347 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03347 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03347:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03347 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03347.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03347.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03347 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03347{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03347;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03347{font-family:ff1_c03347;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03347;src:url('chunks/assets/font_2dcddcb9dddcdcfafbafe194.woff2')format("woff");}.ff2_c03347{font-family:ff2_c03347;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03347;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03347{font-family:ff3_c03347;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03347{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03347{vertical-align:0.000000px;}
.v1_c03347{vertical-align:1.439424px;}
.lse_c03347{letter-spacing:-0.765072px;}
.ls7_c03347{letter-spacing:-0.613008px;}
.ls9_c03347{letter-spacing:-0.574992px;}
.lsf_c03347{letter-spacing:-0.270864px;}
.lsc_c03347{letter-spacing:-0.261360px;}
.ls6_c03347{letter-spacing:-0.242352px;}
.ls4_c03347{letter-spacing:-0.118800px;}
.ls12_c03347{letter-spacing:0.000000px;}
.ls1_c03347{letter-spacing:0.006048px;}
.ls5_c03347{letter-spacing:0.128304px;}
.lsb_c03347{letter-spacing:0.508464px;}
.ls11_c03347{letter-spacing:0.514080px;}
.lsd_c03347{letter-spacing:0.536976px;}
.lsa_c03347{letter-spacing:0.579744px;}
.ls10_c03347{letter-spacing:0.594000px;}
.ls8_c03347{letter-spacing:0.598752px;}
.ls2_c03347{letter-spacing:0.613008px;}
.ls3_c03347{letter-spacing:0.717552px;}
.ls0_c03347{letter-spacing:0.722304px;}
.sc__c03347{text-shadow:none;}
.sc0_c03347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03347{-webkit-text-stroke:0px transparent;}
.sc0_c03347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03347{word-spacing:-15.126048px;}
.wsa_c03347{word-spacing:-12.474000px;}
.ws6_c03347{word-spacing:-12.459744px;}
.ws4_c03347{word-spacing:-11.637648px;}
.ws2_c03347{word-spacing:-11.266992px;}
.ws10_c03347{word-spacing:-1.083456px;}
.wsd_c03347{word-spacing:-0.974160px;}
.ws14_c03347{word-spacing:-0.719712px;}
.wsf_c03347{word-spacing:-0.118800px;}
.ws11_c03347{word-spacing:-0.099792px;}
.ws12_c03347{word-spacing:-0.090288px;}
.ws13_c03347{word-spacing:-0.085536px;}
.wse_c03347{word-spacing:0.000000px;}
.wsb_c03347{word-spacing:33.300288px;}
.ws8_c03347{word-spacing:34.836912px;}
.ws1_c03347{word-spacing:37.759392px;}
.ws9_c03347{word-spacing:37.892448px;}
.ws0_c03347{word-spacing:38.020752px;}
.ws3_c03347{word-spacing:39.218256px;}
.ws5_c03347{word-spacing:39.902544px;}
.ws7_c03347{word-spacing:42.026688px;}
._0_c03347{margin-left:-1.948320px;}
._2_c03347{width:1.482624px;}
._4_c03347{width:5.749920px;}
._1_c03347{width:50.252400px;}
._3_c03347{width:51.530688px;}
._5_c03347{width:53.070336px;}
.fc0_c03347{color:rgb(0,0,0);}
.fs0_c03347{font-size:47.520000px;}
.fs1_c03347{font-size:60.480000px;}
.y0_c03347{bottom:0.000000px;}
.y1b_c03347{bottom:131.878686px;}
.y1a_c03347{bottom:146.998362px;}
.y1d_c03347{bottom:186.600234px;}
.y1c_c03347{bottom:196.320450px;}
.y19_c03347{bottom:275.878542px;}
.y18_c03347{bottom:356.878758px;}
.y16_c03347{bottom:406.559730px;}
.y12_c03347{bottom:424.560306px;}
.y17_c03347{bottom:458.759262px;}
.y15_c03347{bottom:491.879514px;}
.y14_c03347{bottom:509.880090px;}
.y11_c03347{bottom:543.000342px;}
.y13_c03347{bottom:559.559874px;}
.y10_c03347{bottom:577.560450px;}
.y1e_c03347{bottom:614.280450px;}
.yc_c03347{bottom:652.438650px;}
.yb_c03347{bottom:667.558326px;}
.ye_c03347{bottom:707.160234px;}
.yd_c03347{bottom:716.880450px;}
.ya_c03347{bottom:796.438506px;}
.y9_c03347{bottom:877.438722px;}
.y7_c03347{bottom:926.759730px;}
.y3_c03347{bottom:944.760306px;}
.y8_c03347{bottom:979.319226px;}
.y6_c03347{bottom:1012.439478px;}
.y5_c03347{bottom:1030.440054px;}
.y2_c03347{bottom:1063.560306px;}
.y4_c03347{bottom:1079.759874px;}
.y1_c03347{bottom:1097.760450px;}
.yf_c03347{bottom:1134.840450px;}
.h3_c03347{height:32.530781px;}
.h1_c03347{height:41.696016px;}
.h2_c03347{height:41.812031px;}
.h4_c03347{height:54.654737px;}
.h0_c03347{height:1263.000000px;}
.w1_c03347{width:892.500000px;}
.w0_c03347{width:892.830000px;}
.x0_c03347{left:0.000000px;}
.xe_c03347{left:117.000000px;}
.x8_c03347{left:440.999856px;}
.x4_c03347{left:445.680576px;}
.xc_c03347{left:451.080000px;}
.x7_c03347{left:455.399604px;}
.x5_c03347{left:461.880144px;}
.x1_c03347{left:463.320000px;}
.xa_c03347{left:483.480360px;}
.x9_c03347{left:492.119496px;}
.x6_c03347{left:493.200576px;}
.xd_c03347{left:506.880360px;}
.x3_c03347{left:511.919892px;}
.x2_c03347{left:526.679604px;}
.xb_c03347{left:569.880036px;}
@media print{
.v0_c03347{vertical-align:0.000000pt;}
.v1_c03347{vertical-align:1.279488pt;}
.lse_c03347{letter-spacing:-0.680064pt;}
.ls7_c03347{letter-spacing:-0.544896pt;}
.ls9_c03347{letter-spacing:-0.511104pt;}
.lsf_c03347{letter-spacing:-0.240768pt;}
.lsc_c03347{letter-spacing:-0.232320pt;}
.ls6_c03347{letter-spacing:-0.215424pt;}
.ls4_c03347{letter-spacing:-0.105600pt;}
.ls12_c03347{letter-spacing:0.000000pt;}
.ls1_c03347{letter-spacing:0.005376pt;}
.ls5_c03347{letter-spacing:0.114048pt;}
.lsb_c03347{letter-spacing:0.451968pt;}
.ls11_c03347{letter-spacing:0.456960pt;}
.lsd_c03347{letter-spacing:0.477312pt;}
.lsa_c03347{letter-spacing:0.515328pt;}
.ls10_c03347{letter-spacing:0.528000pt;}
.ls8_c03347{letter-spacing:0.532224pt;}
.ls2_c03347{letter-spacing:0.544896pt;}
.ls3_c03347{letter-spacing:0.637824pt;}
.ls0_c03347{letter-spacing:0.642048pt;}
.wsc_c03347{word-spacing:-13.445376pt;}
.wsa_c03347{word-spacing:-11.088000pt;}
.ws6_c03347{word-spacing:-11.075328pt;}
.ws4_c03347{word-spacing:-10.344576pt;}
.ws2_c03347{word-spacing:-10.015104pt;}
.ws10_c03347{word-spacing:-0.963072pt;}
.wsd_c03347{word-spacing:-0.865920pt;}
.ws14_c03347{word-spacing:-0.639744pt;}
.wsf_c03347{word-spacing:-0.105600pt;}
.ws11_c03347{word-spacing:-0.088704pt;}
.ws12_c03347{word-spacing:-0.080256pt;}
.ws13_c03347{word-spacing:-0.076032pt;}
.wse_c03347{word-spacing:0.000000pt;}
.wsb_c03347{word-spacing:29.600256pt;}
.ws8_c03347{word-spacing:30.966144pt;}
.ws1_c03347{word-spacing:33.563904pt;}
.ws9_c03347{word-spacing:33.682176pt;}
.ws0_c03347{word-spacing:33.796224pt;}
.ws3_c03347{word-spacing:34.860672pt;}
.ws5_c03347{word-spacing:35.468928pt;}
.ws7_c03347{word-spacing:37.357056pt;}
._0_c03347{margin-left:-1.731840pt;}
._2_c03347{width:1.317888pt;}
._4_c03347{width:5.111040pt;}
._1_c03347{width:44.668800pt;}
._3_c03347{width:45.805056pt;}
._5_c03347{width:47.173632pt;}
.fs0_c03347{font-size:42.240000pt;}
.fs1_c03347{font-size:53.760000pt;}
.y0_c03347{bottom:0.000000pt;}
.y1b_c03347{bottom:117.225499pt;}
.y1a_c03347{bottom:130.665211pt;}
.y1d_c03347{bottom:165.866875pt;}
.y1c_c03347{bottom:174.507067pt;}
.y19_c03347{bottom:245.225371pt;}
.y18_c03347{bottom:317.225563pt;}
.y16_c03347{bottom:361.386427pt;}
.y12_c03347{bottom:377.386939pt;}
.y17_c03347{bottom:407.786011pt;}
.y15_c03347{bottom:437.226235pt;}
.y14_c03347{bottom:453.226747pt;}
.y11_c03347{bottom:482.666971pt;}
.y13_c03347{bottom:497.386555pt;}
.y10_c03347{bottom:513.387067pt;}
.y1e_c03347{bottom:546.027067pt;}
.yc_c03347{bottom:579.945467pt;}
.yb_c03347{bottom:593.385179pt;}
.ye_c03347{bottom:628.586875pt;}
.yd_c03347{bottom:637.227067pt;}
.ya_c03347{bottom:707.945339pt;}
.y9_c03347{bottom:779.945531pt;}
.y7_c03347{bottom:823.786427pt;}
.y3_c03347{bottom:839.786939pt;}
.y8_c03347{bottom:870.505979pt;}
.y6_c03347{bottom:899.946203pt;}
.y5_c03347{bottom:915.946715pt;}
.y2_c03347{bottom:945.386939pt;}
.y4_c03347{bottom:959.786555pt;}
.y1_c03347{bottom:975.787067pt;}
.yf_c03347{bottom:1008.747067pt;}
.h3_c03347{height:28.916250pt;}
.h1_c03347{height:37.063125pt;}
.h2_c03347{height:37.166250pt;}
.h4_c03347{height:48.581988pt;}
.h0_c03347{height:1122.666667pt;}
.w1_c03347{width:793.333333pt;}
.w0_c03347{width:793.626667pt;}
.x0_c03347{left:0.000000pt;}
.xe_c03347{left:104.000000pt;}
.x8_c03347{left:391.999872pt;}
.x4_c03347{left:396.160512pt;}
.xc_c03347{left:400.960000pt;}
.x7_c03347{left:404.799648pt;}
.x5_c03347{left:410.560128pt;}
.x1_c03347{left:411.840000pt;}
.xa_c03347{left:429.760320pt;}
.x9_c03347{left:437.439552pt;}
.x6_c03347{left:438.400512pt;}
.xd_c03347{left:450.560320pt;}
.x3_c03347{left:455.039904pt;}
.x2_c03347{left:468.159648pt;}
.xb_c03347{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03348 {
    display:none;
  }
  .loading-indicator_c03348.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03348 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03348 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03348" -> "#page-container .classname_c03348")
 */
.pf_c03348 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03348 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03348.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03348 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03348 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03348 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03348 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03348 {overflow:visible;}
  }
}
.c_c03348 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03348 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03348:after { /* webkit #35443 */
  content: '';
}
.t_c03348:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03348 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03348 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03348 { /* info for Javascript */
  display:none;
}
.l_c03348 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03348 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03348 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03348:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03348 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03348.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03348.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03348 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03348{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03348;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03348{font-family:ff1_c03348;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03348;src:url('chunks/assets/font_1ecc156e8a73ed064c1b4a83.woff2')format("woff");}.ff2_c03348{font-family:ff2_c03348;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03348;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03348{font-family:ff3_c03348;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03348{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03348{vertical-align:0.000000px;}
.v1_c03348{vertical-align:1.439424px;}
.lse_c03348{letter-spacing:-0.736560px;}
.ls7_c03348{letter-spacing:-0.613008px;}
.ls9_c03348{letter-spacing:-0.574992px;}
.ls13_c03348{letter-spacing:-0.275616px;}
.lsf_c03348{letter-spacing:-0.270864px;}
.lsc_c03348{letter-spacing:-0.261360px;}
.ls6_c03348{letter-spacing:-0.242352px;}
.ls4_c03348{letter-spacing:-0.118800px;}
.ls12_c03348{letter-spacing:0.000000px;}
.ls1_c03348{letter-spacing:0.006048px;}
.ls5_c03348{letter-spacing:0.128304px;}
.lsb_c03348{letter-spacing:0.508464px;}
.ls11_c03348{letter-spacing:0.514080px;}
.lsd_c03348{letter-spacing:0.536976px;}
.lsa_c03348{letter-spacing:0.579744px;}
.ls10_c03348{letter-spacing:0.594000px;}
.ls8_c03348{letter-spacing:0.598752px;}
.ls3_c03348{letter-spacing:0.613008px;}
.ls2_c03348{letter-spacing:0.717552px;}
.ls0_c03348{letter-spacing:0.722304px;}
.sc__c03348{text-shadow:none;}
.sc0_c03348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03348{-webkit-text-stroke:0px transparent;}
.sc0_c03348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03348{word-spacing:-15.126048px;}
.wsa_c03348{word-spacing:-12.474000px;}
.ws6_c03348{word-spacing:-12.459744px;}
.wse_c03348{word-spacing:-12.416976px;}
.ws4_c03348{word-spacing:-11.637648px;}
.ws2_c03348{word-spacing:-11.266992px;}
.ws12_c03348{word-spacing:-1.083456px;}
.ws17_c03348{word-spacing:-1.078704px;}
.wsf_c03348{word-spacing:-0.974160px;}
.ws16_c03348{word-spacing:-0.719712px;}
.ws11_c03348{word-spacing:-0.118800px;}
.ws13_c03348{word-spacing:-0.099792px;}
.ws14_c03348{word-spacing:-0.090288px;}
.ws15_c03348{word-spacing:-0.085536px;}
.ws10_c03348{word-spacing:0.000000px;}
.ws9_c03348{word-spacing:6.629040px;}
.wsb_c03348{word-spacing:33.300288px;}
.ws8_c03348{word-spacing:34.836912px;}
.wsd_c03348{word-spacing:36.742464px;}
.ws1_c03348{word-spacing:37.759392px;}
.ws0_c03348{word-spacing:38.020752px;}
.ws3_c03348{word-spacing:39.218256px;}
.ws5_c03348{word-spacing:39.902544px;}
.ws7_c03348{word-spacing:42.026688px;}
._0_c03348{margin-left:-1.948320px;}
._2_c03348{width:1.482624px;}
._4_c03348{width:5.749920px;}
._6_c03348{width:19.982160px;}
._7_c03348{width:23.451120px;}
._5_c03348{width:24.691392px;}
._1_c03348{width:50.252400px;}
._3_c03348{width:51.530688px;}
.fc0_c03348{color:rgb(0,0,0);}
.fs0_c03348{font-size:47.520000px;}
.fs1_c03348{font-size:60.480000px;}
.y0_c03348{bottom:0.000000px;}
.y1a_c03348{bottom:146.998362px;}
.y1c_c03348{bottom:186.600234px;}
.y1b_c03348{bottom:196.320450px;}
.y19_c03348{bottom:275.878542px;}
.y18_c03348{bottom:356.878758px;}
.y16_c03348{bottom:406.559730px;}
.y12_c03348{bottom:424.560306px;}
.y17_c03348{bottom:458.759262px;}
.y15_c03348{bottom:491.879514px;}
.y14_c03348{bottom:509.880090px;}
.y11_c03348{bottom:543.000342px;}
.y13_c03348{bottom:559.559874px;}
.y10_c03348{bottom:577.560450px;}
.y1d_c03348{bottom:614.280450px;}
.yc_c03348{bottom:652.438650px;}
.yb_c03348{bottom:667.558326px;}
.ye_c03348{bottom:707.160234px;}
.yd_c03348{bottom:716.880450px;}
.ya_c03348{bottom:796.438506px;}
.y9_c03348{bottom:877.438722px;}
.y7_c03348{bottom:926.759730px;}
.y3_c03348{bottom:944.760306px;}
.y8_c03348{bottom:979.319226px;}
.y6_c03348{bottom:1012.439478px;}
.y5_c03348{bottom:1030.440054px;}
.y2_c03348{bottom:1063.560306px;}
.y4_c03348{bottom:1079.759874px;}
.y1_c03348{bottom:1097.760450px;}
.yf_c03348{bottom:1134.840450px;}
.h3_c03348{height:32.530781px;}
.h1_c03348{height:41.696016px;}
.h2_c03348{height:41.812031px;}
.h4_c03348{height:54.654737px;}
.h0_c03348{height:1263.000000px;}
.w1_c03348{width:892.500000px;}
.w0_c03348{width:892.830000px;}
.x0_c03348{left:0.000000px;}
.xe_c03348{left:117.000000px;}
.x8_c03348{left:440.999856px;}
.x4_c03348{left:445.680576px;}
.xc_c03348{left:451.080000px;}
.x7_c03348{left:455.399604px;}
.x5_c03348{left:461.880144px;}
.x1_c03348{left:463.320000px;}
.xa_c03348{left:483.480360px;}
.x9_c03348{left:492.119496px;}
.x6_c03348{left:493.200576px;}
.xd_c03348{left:506.880360px;}
.x3_c03348{left:511.919892px;}
.x2_c03348{left:526.679604px;}
.xb_c03348{left:569.880036px;}
@media print{
.v0_c03348{vertical-align:0.000000pt;}
.v1_c03348{vertical-align:1.279488pt;}
.lse_c03348{letter-spacing:-0.654720pt;}
.ls7_c03348{letter-spacing:-0.544896pt;}
.ls9_c03348{letter-spacing:-0.511104pt;}
.ls13_c03348{letter-spacing:-0.244992pt;}
.lsf_c03348{letter-spacing:-0.240768pt;}
.lsc_c03348{letter-spacing:-0.232320pt;}
.ls6_c03348{letter-spacing:-0.215424pt;}
.ls4_c03348{letter-spacing:-0.105600pt;}
.ls12_c03348{letter-spacing:0.000000pt;}
.ls1_c03348{letter-spacing:0.005376pt;}
.ls5_c03348{letter-spacing:0.114048pt;}
.lsb_c03348{letter-spacing:0.451968pt;}
.ls11_c03348{letter-spacing:0.456960pt;}
.lsd_c03348{letter-spacing:0.477312pt;}
.lsa_c03348{letter-spacing:0.515328pt;}
.ls10_c03348{letter-spacing:0.528000pt;}
.ls8_c03348{letter-spacing:0.532224pt;}
.ls3_c03348{letter-spacing:0.544896pt;}
.ls2_c03348{letter-spacing:0.637824pt;}
.ls0_c03348{letter-spacing:0.642048pt;}
.wsc_c03348{word-spacing:-13.445376pt;}
.wsa_c03348{word-spacing:-11.088000pt;}
.ws6_c03348{word-spacing:-11.075328pt;}
.wse_c03348{word-spacing:-11.037312pt;}
.ws4_c03348{word-spacing:-10.344576pt;}
.ws2_c03348{word-spacing:-10.015104pt;}
.ws12_c03348{word-spacing:-0.963072pt;}
.ws17_c03348{word-spacing:-0.958848pt;}
.wsf_c03348{word-spacing:-0.865920pt;}
.ws16_c03348{word-spacing:-0.639744pt;}
.ws11_c03348{word-spacing:-0.105600pt;}
.ws13_c03348{word-spacing:-0.088704pt;}
.ws14_c03348{word-spacing:-0.080256pt;}
.ws15_c03348{word-spacing:-0.076032pt;}
.ws10_c03348{word-spacing:0.000000pt;}
.ws9_c03348{word-spacing:5.892480pt;}
.wsb_c03348{word-spacing:29.600256pt;}
.ws8_c03348{word-spacing:30.966144pt;}
.wsd_c03348{word-spacing:32.659968pt;}
.ws1_c03348{word-spacing:33.563904pt;}
.ws0_c03348{word-spacing:33.796224pt;}
.ws3_c03348{word-spacing:34.860672pt;}
.ws5_c03348{word-spacing:35.468928pt;}
.ws7_c03348{word-spacing:37.357056pt;}
._0_c03348{margin-left:-1.731840pt;}
._2_c03348{width:1.317888pt;}
._4_c03348{width:5.111040pt;}
._6_c03348{width:17.761920pt;}
._7_c03348{width:20.845440pt;}
._5_c03348{width:21.947904pt;}
._1_c03348{width:44.668800pt;}
._3_c03348{width:45.805056pt;}
.fs0_c03348{font-size:42.240000pt;}
.fs1_c03348{font-size:53.760000pt;}
.y0_c03348{bottom:0.000000pt;}
.y1a_c03348{bottom:130.665211pt;}
.y1c_c03348{bottom:165.866875pt;}
.y1b_c03348{bottom:174.507067pt;}
.y19_c03348{bottom:245.225371pt;}
.y18_c03348{bottom:317.225563pt;}
.y16_c03348{bottom:361.386427pt;}
.y12_c03348{bottom:377.386939pt;}
.y17_c03348{bottom:407.786011pt;}
.y15_c03348{bottom:437.226235pt;}
.y14_c03348{bottom:453.226747pt;}
.y11_c03348{bottom:482.666971pt;}
.y13_c03348{bottom:497.386555pt;}
.y10_c03348{bottom:513.387067pt;}
.y1d_c03348{bottom:546.027067pt;}
.yc_c03348{bottom:579.945467pt;}
.yb_c03348{bottom:593.385179pt;}
.ye_c03348{bottom:628.586875pt;}
.yd_c03348{bottom:637.227067pt;}
.ya_c03348{bottom:707.945339pt;}
.y9_c03348{bottom:779.945531pt;}
.y7_c03348{bottom:823.786427pt;}
.y3_c03348{bottom:839.786939pt;}
.y8_c03348{bottom:870.505979pt;}
.y6_c03348{bottom:899.946203pt;}
.y5_c03348{bottom:915.946715pt;}
.y2_c03348{bottom:945.386939pt;}
.y4_c03348{bottom:959.786555pt;}
.y1_c03348{bottom:975.787067pt;}
.yf_c03348{bottom:1008.747067pt;}
.h3_c03348{height:28.916250pt;}
.h1_c03348{height:37.063125pt;}
.h2_c03348{height:37.166250pt;}
.h4_c03348{height:48.581988pt;}
.h0_c03348{height:1122.666667pt;}
.w1_c03348{width:793.333333pt;}
.w0_c03348{width:793.626667pt;}
.x0_c03348{left:0.000000pt;}
.xe_c03348{left:104.000000pt;}
.x8_c03348{left:391.999872pt;}
.x4_c03348{left:396.160512pt;}
.xc_c03348{left:400.960000pt;}
.x7_c03348{left:404.799648pt;}
.x5_c03348{left:410.560128pt;}
.x1_c03348{left:411.840000pt;}
.xa_c03348{left:429.760320pt;}
.x9_c03348{left:437.439552pt;}
.x6_c03348{left:438.400512pt;}
.xd_c03348{left:450.560320pt;}
.x3_c03348{left:455.039904pt;}
.x2_c03348{left:468.159648pt;}
.xb_c03348{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03349 {
    display:none;
  }
  .loading-indicator_c03349.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03349 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03349 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03349" -> "#page-container .classname_c03349")
 */
.pf_c03349 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03349 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03349.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03349 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03349 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03349 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03349 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03349 {overflow:visible;}
  }
}
.c_c03349 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03349 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03349:after { /* webkit #35443 */
  content: '';
}
.t_c03349:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03349 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03349 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03349 { /* info for Javascript */
  display:none;
}
.l_c03349 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03349 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03349 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03349:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03349 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03349.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03349.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03349 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03349{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03349;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03349{font-family:ff1_c03349;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03349;src:url('chunks/assets/font_38e1ed6e61acda0582a2c0ba.woff2')format("woff");}.ff2_c03349{font-family:ff2_c03349;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03349;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03349{font-family:ff3_c03349;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03349{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03349{vertical-align:0.000000px;}
.v1_c03349{vertical-align:1.439424px;}
.ls7_c03349{letter-spacing:-0.613008px;}
.ls9_c03349{letter-spacing:-0.574992px;}
.lse_c03349{letter-spacing:-0.275616px;}
.lsc_c03349{letter-spacing:-0.261360px;}
.ls6_c03349{letter-spacing:-0.242352px;}
.ls4_c03349{letter-spacing:-0.118800px;}
.ls11_c03349{letter-spacing:0.000000px;}
.ls2_c03349{letter-spacing:0.006048px;}
.ls5_c03349{letter-spacing:0.128304px;}
.lsb_c03349{letter-spacing:0.508464px;}
.ls10_c03349{letter-spacing:0.514080px;}
.lsd_c03349{letter-spacing:0.536976px;}
.lsa_c03349{letter-spacing:0.579744px;}
.lsf_c03349{letter-spacing:0.594000px;}
.ls8_c03349{letter-spacing:0.598752px;}
.ls3_c03349{letter-spacing:0.613008px;}
.ls0_c03349{letter-spacing:0.717552px;}
.ls1_c03349{letter-spacing:0.722304px;}
.sc__c03349{text-shadow:none;}
.sc0_c03349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03349{-webkit-text-stroke:0px transparent;}
.sc0_c03349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03349{word-spacing:-15.126048px;}
.wsa_c03349{word-spacing:-12.474000px;}
.ws8_c03349{word-spacing:-12.459744px;}
.ws9_c03349{word-spacing:-12.416976px;}
.ws4_c03349{word-spacing:-11.637648px;}
.ws2_c03349{word-spacing:-11.266992px;}
.ws11_c03349{word-spacing:-1.083456px;}
.ws10_c03349{word-spacing:-1.078704px;}
.wsd_c03349{word-spacing:-0.974160px;}
.ws14_c03349{word-spacing:-0.719712px;}
.wsf_c03349{word-spacing:-0.118800px;}
.ws12_c03349{word-spacing:-0.099792px;}
.ws13_c03349{word-spacing:-0.085536px;}
.wse_c03349{word-spacing:0.000000px;}
.wsb_c03349{word-spacing:33.300288px;}
.ws6_c03349{word-spacing:36.742464px;}
.ws1_c03349{word-spacing:37.759392px;}
.ws0_c03349{word-spacing:38.020752px;}
.ws3_c03349{word-spacing:39.218256px;}
.ws5_c03349{word-spacing:39.902544px;}
.ws7_c03349{word-spacing:42.026688px;}
._0_c03349{margin-left:-1.948320px;}
._2_c03349{width:1.482624px;}
._4_c03349{width:5.749920px;}
._1_c03349{width:50.252400px;}
._3_c03349{width:51.530688px;}
.fc0_c03349{color:rgb(0,0,0);}
.fs0_c03349{font-size:47.520000px;}
.fs1_c03349{font-size:60.480000px;}
.y0_c03349{bottom:0.000000px;}
.y19_c03349{bottom:146.998362px;}
.y1b_c03349{bottom:186.600234px;}
.y1a_c03349{bottom:196.320450px;}
.y18_c03349{bottom:275.878542px;}
.y17_c03349{bottom:356.878758px;}
.y15_c03349{bottom:406.559730px;}
.y11_c03349{bottom:424.560306px;}
.y16_c03349{bottom:458.759262px;}
.y14_c03349{bottom:491.879514px;}
.y13_c03349{bottom:509.880090px;}
.y10_c03349{bottom:543.000342px;}
.y12_c03349{bottom:559.559874px;}
.yf_c03349{bottom:577.560450px;}
.y1c_c03349{bottom:614.280450px;}
.yb_c03349{bottom:667.558326px;}
.yd_c03349{bottom:707.160234px;}
.yc_c03349{bottom:716.880450px;}
.ya_c03349{bottom:796.438506px;}
.y9_c03349{bottom:877.438722px;}
.y7_c03349{bottom:926.759730px;}
.y3_c03349{bottom:944.760306px;}
.y8_c03349{bottom:979.319226px;}
.y6_c03349{bottom:1012.439478px;}
.y5_c03349{bottom:1030.440054px;}
.y2_c03349{bottom:1063.560306px;}
.y4_c03349{bottom:1079.759874px;}
.y1_c03349{bottom:1097.760450px;}
.ye_c03349{bottom:1134.840450px;}
.h3_c03349{height:32.530781px;}
.h1_c03349{height:41.696016px;}
.h2_c03349{height:41.812031px;}
.h4_c03349{height:54.654737px;}
.h0_c03349{height:1263.000000px;}
.w1_c03349{width:892.500000px;}
.w0_c03349{width:892.830000px;}
.x0_c03349{left:0.000000px;}
.xd_c03349{left:117.000000px;}
.x8_c03349{left:440.999856px;}
.x4_c03349{left:445.680576px;}
.xb_c03349{left:451.080000px;}
.x7_c03349{left:455.399604px;}
.x5_c03349{left:461.880144px;}
.x1_c03349{left:463.320000px;}
.xa_c03349{left:483.480360px;}
.x9_c03349{left:492.119496px;}
.x6_c03349{left:493.200576px;}
.xc_c03349{left:506.880360px;}
.x3_c03349{left:511.919892px;}
.x2_c03349{left:526.679604px;}
@media print{
.v0_c03349{vertical-align:0.000000pt;}
.v1_c03349{vertical-align:1.279488pt;}
.ls7_c03349{letter-spacing:-0.544896pt;}
.ls9_c03349{letter-spacing:-0.511104pt;}
.lse_c03349{letter-spacing:-0.244992pt;}
.lsc_c03349{letter-spacing:-0.232320pt;}
.ls6_c03349{letter-spacing:-0.215424pt;}
.ls4_c03349{letter-spacing:-0.105600pt;}
.ls11_c03349{letter-spacing:0.000000pt;}
.ls2_c03349{letter-spacing:0.005376pt;}
.ls5_c03349{letter-spacing:0.114048pt;}
.lsb_c03349{letter-spacing:0.451968pt;}
.ls10_c03349{letter-spacing:0.456960pt;}
.lsd_c03349{letter-spacing:0.477312pt;}
.lsa_c03349{letter-spacing:0.515328pt;}
.lsf_c03349{letter-spacing:0.528000pt;}
.ls8_c03349{letter-spacing:0.532224pt;}
.ls3_c03349{letter-spacing:0.544896pt;}
.ls0_c03349{letter-spacing:0.637824pt;}
.ls1_c03349{letter-spacing:0.642048pt;}
.wsc_c03349{word-spacing:-13.445376pt;}
.wsa_c03349{word-spacing:-11.088000pt;}
.ws8_c03349{word-spacing:-11.075328pt;}
.ws9_c03349{word-spacing:-11.037312pt;}
.ws4_c03349{word-spacing:-10.344576pt;}
.ws2_c03349{word-spacing:-10.015104pt;}
.ws11_c03349{word-spacing:-0.963072pt;}
.ws10_c03349{word-spacing:-0.958848pt;}
.wsd_c03349{word-spacing:-0.865920pt;}
.ws14_c03349{word-spacing:-0.639744pt;}
.wsf_c03349{word-spacing:-0.105600pt;}
.ws12_c03349{word-spacing:-0.088704pt;}
.ws13_c03349{word-spacing:-0.076032pt;}
.wse_c03349{word-spacing:0.000000pt;}
.wsb_c03349{word-spacing:29.600256pt;}
.ws6_c03349{word-spacing:32.659968pt;}
.ws1_c03349{word-spacing:33.563904pt;}
.ws0_c03349{word-spacing:33.796224pt;}
.ws3_c03349{word-spacing:34.860672pt;}
.ws5_c03349{word-spacing:35.468928pt;}
.ws7_c03349{word-spacing:37.357056pt;}
._0_c03349{margin-left:-1.731840pt;}
._2_c03349{width:1.317888pt;}
._4_c03349{width:5.111040pt;}
._1_c03349{width:44.668800pt;}
._3_c03349{width:45.805056pt;}
.fs0_c03349{font-size:42.240000pt;}
.fs1_c03349{font-size:53.760000pt;}
.y0_c03349{bottom:0.000000pt;}
.y19_c03349{bottom:130.665211pt;}
.y1b_c03349{bottom:165.866875pt;}
.y1a_c03349{bottom:174.507067pt;}
.y18_c03349{bottom:245.225371pt;}
.y17_c03349{bottom:317.225563pt;}
.y15_c03349{bottom:361.386427pt;}
.y11_c03349{bottom:377.386939pt;}
.y16_c03349{bottom:407.786011pt;}
.y14_c03349{bottom:437.226235pt;}
.y13_c03349{bottom:453.226747pt;}
.y10_c03349{bottom:482.666971pt;}
.y12_c03349{bottom:497.386555pt;}
.yf_c03349{bottom:513.387067pt;}
.y1c_c03349{bottom:546.027067pt;}
.yb_c03349{bottom:593.385179pt;}
.yd_c03349{bottom:628.586875pt;}
.yc_c03349{bottom:637.227067pt;}
.ya_c03349{bottom:707.945339pt;}
.y9_c03349{bottom:779.945531pt;}
.y7_c03349{bottom:823.786427pt;}
.y3_c03349{bottom:839.786939pt;}
.y8_c03349{bottom:870.505979pt;}
.y6_c03349{bottom:899.946203pt;}
.y5_c03349{bottom:915.946715pt;}
.y2_c03349{bottom:945.386939pt;}
.y4_c03349{bottom:959.786555pt;}
.y1_c03349{bottom:975.787067pt;}
.ye_c03349{bottom:1008.747067pt;}
.h3_c03349{height:28.916250pt;}
.h1_c03349{height:37.063125pt;}
.h2_c03349{height:37.166250pt;}
.h4_c03349{height:48.581988pt;}
.h0_c03349{height:1122.666667pt;}
.w1_c03349{width:793.333333pt;}
.w0_c03349{width:793.626667pt;}
.x0_c03349{left:0.000000pt;}
.xd_c03349{left:104.000000pt;}
.x8_c03349{left:391.999872pt;}
.x4_c03349{left:396.160512pt;}
.xb_c03349{left:400.960000pt;}
.x7_c03349{left:404.799648pt;}
.x5_c03349{left:410.560128pt;}
.x1_c03349{left:411.840000pt;}
.xa_c03349{left:429.760320pt;}
.x9_c03349{left:437.439552pt;}
.x6_c03349{left:438.400512pt;}
.xc_c03349{left:450.560320pt;}
.x3_c03349{left:455.039904pt;}
.x2_c03349{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03350 {
    display:none;
  }
  .loading-indicator_c03350.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03350 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03350 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03350" -> "#page-container .classname_c03350")
 */
.pf_c03350 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03350 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03350.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03350 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03350 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03350 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03350 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03350 {overflow:visible;}
  }
}
.c_c03350 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03350 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03350:after { /* webkit #35443 */
  content: '';
}
.t_c03350:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03350 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03350 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03350 { /* info for Javascript */
  display:none;
}
.l_c03350 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03350 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03350 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03350:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03350 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03350.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03350.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03350 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03350{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03350;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03350{font-family:ff1_c03350;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03350;src:url('chunks/assets/font_38e1ed6e61acda0582a2c0ba.woff2')format("woff");}.ff2_c03350{font-family:ff2_c03350;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03350;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03350{font-family:ff3_c03350;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03350{vertical-align:0.000000px;}
.v1_c03350{vertical-align:1.439424px;}
.ls7_c03350{letter-spacing:-0.613008px;}
.ls9_c03350{letter-spacing:-0.574992px;}
.lse_c03350{letter-spacing:-0.275616px;}
.lsc_c03350{letter-spacing:-0.261360px;}
.ls6_c03350{letter-spacing:-0.242352px;}
.ls4_c03350{letter-spacing:-0.118800px;}
.ls11_c03350{letter-spacing:0.000000px;}
.ls2_c03350{letter-spacing:0.006048px;}
.ls5_c03350{letter-spacing:0.128304px;}
.lsb_c03350{letter-spacing:0.508464px;}
.ls10_c03350{letter-spacing:0.514080px;}
.lsd_c03350{letter-spacing:0.536976px;}
.lsa_c03350{letter-spacing:0.579744px;}
.lsf_c03350{letter-spacing:0.594000px;}
.ls8_c03350{letter-spacing:0.598752px;}
.ls3_c03350{letter-spacing:0.613008px;}
.ls0_c03350{letter-spacing:0.717552px;}
.ls1_c03350{letter-spacing:0.722304px;}
.sc__c03350{text-shadow:none;}
.sc0_c03350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03350{-webkit-text-stroke:0px transparent;}
.sc0_c03350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03350{word-spacing:-15.126048px;}
.wsa_c03350{word-spacing:-12.474000px;}
.ws8_c03350{word-spacing:-12.459744px;}
.ws9_c03350{word-spacing:-12.416976px;}
.ws4_c03350{word-spacing:-11.637648px;}
.ws2_c03350{word-spacing:-11.266992px;}
.ws11_c03350{word-spacing:-1.083456px;}
.ws10_c03350{word-spacing:-1.078704px;}
.wsd_c03350{word-spacing:-0.974160px;}
.ws14_c03350{word-spacing:-0.719712px;}
.wsf_c03350{word-spacing:-0.118800px;}
.ws12_c03350{word-spacing:-0.099792px;}
.ws13_c03350{word-spacing:-0.085536px;}
.wse_c03350{word-spacing:0.000000px;}
.wsb_c03350{word-spacing:33.300288px;}
.ws6_c03350{word-spacing:36.742464px;}
.ws1_c03350{word-spacing:37.759392px;}
.ws0_c03350{word-spacing:38.020752px;}
.ws3_c03350{word-spacing:39.218256px;}
.ws5_c03350{word-spacing:39.902544px;}
.ws7_c03350{word-spacing:42.026688px;}
._0_c03350{margin-left:-1.948320px;}
._2_c03350{width:1.482624px;}
._4_c03350{width:5.749920px;}
._1_c03350{width:50.252400px;}
._3_c03350{width:51.530688px;}
.fc0_c03350{color:rgb(0,0,0);}
.fs0_c03350{font-size:47.520000px;}
.fs1_c03350{font-size:60.480000px;}
.y0_c03350{bottom:0.000000px;}
.y19_c03350{bottom:146.998362px;}
.y1b_c03350{bottom:186.600234px;}
.y1a_c03350{bottom:196.320450px;}
.y18_c03350{bottom:275.878542px;}
.y17_c03350{bottom:356.878758px;}
.y15_c03350{bottom:406.559730px;}
.y11_c03350{bottom:424.560306px;}
.y16_c03350{bottom:458.759262px;}
.y14_c03350{bottom:491.879514px;}
.y13_c03350{bottom:509.880090px;}
.y10_c03350{bottom:543.000342px;}
.y12_c03350{bottom:559.559874px;}
.yf_c03350{bottom:577.560450px;}
.y1c_c03350{bottom:614.280450px;}
.yb_c03350{bottom:667.558326px;}
.yd_c03350{bottom:707.160234px;}
.yc_c03350{bottom:716.880450px;}
.ya_c03350{bottom:796.438506px;}
.y9_c03350{bottom:877.438722px;}
.y7_c03350{bottom:926.759730px;}
.y3_c03350{bottom:944.760306px;}
.y8_c03350{bottom:979.319226px;}
.y6_c03350{bottom:1012.439478px;}
.y5_c03350{bottom:1030.440054px;}
.y2_c03350{bottom:1063.560306px;}
.y4_c03350{bottom:1079.759874px;}
.y1_c03350{bottom:1097.760450px;}
.ye_c03350{bottom:1134.840450px;}
.h3_c03350{height:32.530781px;}
.h1_c03350{height:41.696016px;}
.h2_c03350{height:41.812031px;}
.h4_c03350{height:54.654737px;}
.h0_c03350{height:1263.000000px;}
.w1_c03350{width:892.500000px;}
.w0_c03350{width:892.830000px;}
.x0_c03350{left:0.000000px;}
.xd_c03350{left:117.000000px;}
.x8_c03350{left:440.999856px;}
.x4_c03350{left:445.680576px;}
.xb_c03350{left:451.080000px;}
.x7_c03350{left:455.399604px;}
.x5_c03350{left:461.880144px;}
.x1_c03350{left:463.320000px;}
.xa_c03350{left:483.480360px;}
.x9_c03350{left:492.119496px;}
.x6_c03350{left:493.200576px;}
.xc_c03350{left:506.880360px;}
.x3_c03350{left:511.919892px;}
.x2_c03350{left:526.679604px;}
@media print{
.v0_c03350{vertical-align:0.000000pt;}
.v1_c03350{vertical-align:1.279488pt;}
.ls7_c03350{letter-spacing:-0.544896pt;}
.ls9_c03350{letter-spacing:-0.511104pt;}
.lse_c03350{letter-spacing:-0.244992pt;}
.lsc_c03350{letter-spacing:-0.232320pt;}
.ls6_c03350{letter-spacing:-0.215424pt;}
.ls4_c03350{letter-spacing:-0.105600pt;}
.ls11_c03350{letter-spacing:0.000000pt;}
.ls2_c03350{letter-spacing:0.005376pt;}
.ls5_c03350{letter-spacing:0.114048pt;}
.lsb_c03350{letter-spacing:0.451968pt;}
.ls10_c03350{letter-spacing:0.456960pt;}
.lsd_c03350{letter-spacing:0.477312pt;}
.lsa_c03350{letter-spacing:0.515328pt;}
.lsf_c03350{letter-spacing:0.528000pt;}
.ls8_c03350{letter-spacing:0.532224pt;}
.ls3_c03350{letter-spacing:0.544896pt;}
.ls0_c03350{letter-spacing:0.637824pt;}
.ls1_c03350{letter-spacing:0.642048pt;}
.wsc_c03350{word-spacing:-13.445376pt;}
.wsa_c03350{word-spacing:-11.088000pt;}
.ws8_c03350{word-spacing:-11.075328pt;}
.ws9_c03350{word-spacing:-11.037312pt;}
.ws4_c03350{word-spacing:-10.344576pt;}
.ws2_c03350{word-spacing:-10.015104pt;}
.ws11_c03350{word-spacing:-0.963072pt;}
.ws10_c03350{word-spacing:-0.958848pt;}
.wsd_c03350{word-spacing:-0.865920pt;}
.ws14_c03350{word-spacing:-0.639744pt;}
.wsf_c03350{word-spacing:-0.105600pt;}
.ws12_c03350{word-spacing:-0.088704pt;}
.ws13_c03350{word-spacing:-0.076032pt;}
.wse_c03350{word-spacing:0.000000pt;}
.wsb_c03350{word-spacing:29.600256pt;}
.ws6_c03350{word-spacing:32.659968pt;}
.ws1_c03350{word-spacing:33.563904pt;}
.ws0_c03350{word-spacing:33.796224pt;}
.ws3_c03350{word-spacing:34.860672pt;}
.ws5_c03350{word-spacing:35.468928pt;}
.ws7_c03350{word-spacing:37.357056pt;}
._0_c03350{margin-left:-1.731840pt;}
._2_c03350{width:1.317888pt;}
._4_c03350{width:5.111040pt;}
._1_c03350{width:44.668800pt;}
._3_c03350{width:45.805056pt;}
.fs0_c03350{font-size:42.240000pt;}
.fs1_c03350{font-size:53.760000pt;}
.y0_c03350{bottom:0.000000pt;}
.y19_c03350{bottom:130.665211pt;}
.y1b_c03350{bottom:165.866875pt;}
.y1a_c03350{bottom:174.507067pt;}
.y18_c03350{bottom:245.225371pt;}
.y17_c03350{bottom:317.225563pt;}
.y15_c03350{bottom:361.386427pt;}
.y11_c03350{bottom:377.386939pt;}
.y16_c03350{bottom:407.786011pt;}
.y14_c03350{bottom:437.226235pt;}
.y13_c03350{bottom:453.226747pt;}
.y10_c03350{bottom:482.666971pt;}
.y12_c03350{bottom:497.386555pt;}
.yf_c03350{bottom:513.387067pt;}
.y1c_c03350{bottom:546.027067pt;}
.yb_c03350{bottom:593.385179pt;}
.yd_c03350{bottom:628.586875pt;}
.yc_c03350{bottom:637.227067pt;}
.ya_c03350{bottom:707.945339pt;}
.y9_c03350{bottom:779.945531pt;}
.y7_c03350{bottom:823.786427pt;}
.y3_c03350{bottom:839.786939pt;}
.y8_c03350{bottom:870.505979pt;}
.y6_c03350{bottom:899.946203pt;}
.y5_c03350{bottom:915.946715pt;}
.y2_c03350{bottom:945.386939pt;}
.y4_c03350{bottom:959.786555pt;}
.y1_c03350{bottom:975.787067pt;}
.ye_c03350{bottom:1008.747067pt;}
.h3_c03350{height:28.916250pt;}
.h1_c03350{height:37.063125pt;}
.h2_c03350{height:37.166250pt;}
.h4_c03350{height:48.581988pt;}
.h0_c03350{height:1122.666667pt;}
.w1_c03350{width:793.333333pt;}
.w0_c03350{width:793.626667pt;}
.x0_c03350{left:0.000000pt;}
.xd_c03350{left:104.000000pt;}
.x8_c03350{left:391.999872pt;}
.x4_c03350{left:396.160512pt;}
.xb_c03350{left:400.960000pt;}
.x7_c03350{left:404.799648pt;}
.x5_c03350{left:410.560128pt;}
.x1_c03350{left:411.840000pt;}
.xa_c03350{left:429.760320pt;}
.x9_c03350{left:437.439552pt;}
.x6_c03350{left:438.400512pt;}
.xc_c03350{left:450.560320pt;}
.x3_c03350{left:455.039904pt;}
.x2_c03350{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03351 {
    display:none;
  }
  .loading-indicator_c03351.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03351 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03351 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03351" -> "#page-container .classname_c03351")
 */
.pf_c03351 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03351 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03351.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03351 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03351 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03351 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03351 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03351 {overflow:visible;}
  }
}
.c_c03351 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03351 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03351:after { /* webkit #35443 */
  content: '';
}
.t_c03351:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03351 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03351 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03351 { /* info for Javascript */
  display:none;
}
.l_c03351 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03351 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03351 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03351:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03351 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03351.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03351.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03351 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03351{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03351;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03351{font-family:ff1_c03351;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03351;src:url('chunks/assets/font_293c7c6b60a5a66a8948e86a.woff2')format("woff");}.ff2_c03351{font-family:ff2_c03351;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03351;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03351{font-family:ff3_c03351;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03351{vertical-align:0.000000px;}
.v1_c03351{vertical-align:1.439424px;}
.lse_c03351{letter-spacing:-0.736560px;}
.ls7_c03351{letter-spacing:-0.613008px;}
.ls9_c03351{letter-spacing:-0.574992px;}
.ls13_c03351{letter-spacing:-0.275616px;}
.lsf_c03351{letter-spacing:-0.270864px;}
.lsc_c03351{letter-spacing:-0.261360px;}
.ls6_c03351{letter-spacing:-0.242352px;}
.ls4_c03351{letter-spacing:-0.118800px;}
.ls12_c03351{letter-spacing:0.000000px;}
.ls1_c03351{letter-spacing:0.006048px;}
.ls5_c03351{letter-spacing:0.128304px;}
.lsb_c03351{letter-spacing:0.508464px;}
.ls11_c03351{letter-spacing:0.514080px;}
.lsd_c03351{letter-spacing:0.536976px;}
.lsa_c03351{letter-spacing:0.579744px;}
.ls10_c03351{letter-spacing:0.594000px;}
.ls8_c03351{letter-spacing:0.598752px;}
.ls3_c03351{letter-spacing:0.613008px;}
.ls2_c03351{letter-spacing:0.717552px;}
.ls0_c03351{letter-spacing:0.722304px;}
.sc__c03351{text-shadow:none;}
.sc0_c03351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03351{-webkit-text-stroke:0px transparent;}
.sc0_c03351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03351{word-spacing:-15.126048px;}
.wsa_c03351{word-spacing:-12.474000px;}
.ws6_c03351{word-spacing:-12.459744px;}
.wse_c03351{word-spacing:-12.416976px;}
.ws4_c03351{word-spacing:-11.637648px;}
.ws2_c03351{word-spacing:-11.266992px;}
.ws12_c03351{word-spacing:-1.083456px;}
.ws17_c03351{word-spacing:-1.078704px;}
.wsf_c03351{word-spacing:-0.974160px;}
.ws16_c03351{word-spacing:-0.719712px;}
.ws11_c03351{word-spacing:-0.118800px;}
.ws13_c03351{word-spacing:-0.099792px;}
.ws14_c03351{word-spacing:-0.090288px;}
.ws15_c03351{word-spacing:-0.085536px;}
.ws10_c03351{word-spacing:0.000000px;}
.ws9_c03351{word-spacing:6.629040px;}
.wsb_c03351{word-spacing:33.300288px;}
.ws8_c03351{word-spacing:34.836912px;}
.wsd_c03351{word-spacing:36.742464px;}
.ws1_c03351{word-spacing:37.759392px;}
.ws0_c03351{word-spacing:38.020752px;}
.ws3_c03351{word-spacing:39.218256px;}
.ws5_c03351{word-spacing:39.902544px;}
.ws7_c03351{word-spacing:42.026688px;}
._0_c03351{margin-left:-1.948320px;}
._2_c03351{width:1.482624px;}
._4_c03351{width:5.749920px;}
._6_c03351{width:19.982160px;}
._7_c03351{width:23.451120px;}
._5_c03351{width:24.691392px;}
._1_c03351{width:50.252400px;}
._3_c03351{width:51.530688px;}
.fc0_c03351{color:rgb(0,0,0);}
.fs0_c03351{font-size:47.520000px;}
.fs1_c03351{font-size:60.480000px;}
.y0_c03351{bottom:0.000000px;}
.y1a_c03351{bottom:146.998362px;}
.y1c_c03351{bottom:186.600234px;}
.y1b_c03351{bottom:196.320450px;}
.y19_c03351{bottom:275.878542px;}
.y18_c03351{bottom:356.878758px;}
.y16_c03351{bottom:406.559730px;}
.y12_c03351{bottom:424.560306px;}
.y17_c03351{bottom:458.759262px;}
.y15_c03351{bottom:491.879514px;}
.y14_c03351{bottom:509.880090px;}
.y11_c03351{bottom:543.000342px;}
.y13_c03351{bottom:559.559874px;}
.y10_c03351{bottom:577.560450px;}
.y1d_c03351{bottom:614.280450px;}
.yc_c03351{bottom:652.438650px;}
.yb_c03351{bottom:667.558326px;}
.ye_c03351{bottom:707.160234px;}
.yd_c03351{bottom:716.880450px;}
.ya_c03351{bottom:796.438506px;}
.y9_c03351{bottom:877.438722px;}
.y7_c03351{bottom:926.759730px;}
.y3_c03351{bottom:944.760306px;}
.y8_c03351{bottom:979.319226px;}
.y6_c03351{bottom:1012.439478px;}
.y5_c03351{bottom:1030.440054px;}
.y2_c03351{bottom:1063.560306px;}
.y4_c03351{bottom:1079.759874px;}
.y1_c03351{bottom:1097.760450px;}
.yf_c03351{bottom:1134.840450px;}
.h3_c03351{height:32.530781px;}
.h1_c03351{height:41.696016px;}
.h2_c03351{height:41.812031px;}
.h4_c03351{height:54.654737px;}
.h0_c03351{height:1263.000000px;}
.w1_c03351{width:892.500000px;}
.w0_c03351{width:892.830000px;}
.x0_c03351{left:0.000000px;}
.xe_c03351{left:117.000000px;}
.x8_c03351{left:440.999856px;}
.x4_c03351{left:445.680576px;}
.xc_c03351{left:451.080000px;}
.x7_c03351{left:455.399604px;}
.x5_c03351{left:461.880144px;}
.x1_c03351{left:463.320000px;}
.xa_c03351{left:483.480360px;}
.x9_c03351{left:492.119496px;}
.x6_c03351{left:493.200576px;}
.xd_c03351{left:506.880360px;}
.x3_c03351{left:511.919892px;}
.x2_c03351{left:526.679604px;}
.xb_c03351{left:569.880036px;}
@media print{
.v0_c03351{vertical-align:0.000000pt;}
.v1_c03351{vertical-align:1.279488pt;}
.lse_c03351{letter-spacing:-0.654720pt;}
.ls7_c03351{letter-spacing:-0.544896pt;}
.ls9_c03351{letter-spacing:-0.511104pt;}
.ls13_c03351{letter-spacing:-0.244992pt;}
.lsf_c03351{letter-spacing:-0.240768pt;}
.lsc_c03351{letter-spacing:-0.232320pt;}
.ls6_c03351{letter-spacing:-0.215424pt;}
.ls4_c03351{letter-spacing:-0.105600pt;}
.ls12_c03351{letter-spacing:0.000000pt;}
.ls1_c03351{letter-spacing:0.005376pt;}
.ls5_c03351{letter-spacing:0.114048pt;}
.lsb_c03351{letter-spacing:0.451968pt;}
.ls11_c03351{letter-spacing:0.456960pt;}
.lsd_c03351{letter-spacing:0.477312pt;}
.lsa_c03351{letter-spacing:0.515328pt;}
.ls10_c03351{letter-spacing:0.528000pt;}
.ls8_c03351{letter-spacing:0.532224pt;}
.ls3_c03351{letter-spacing:0.544896pt;}
.ls2_c03351{letter-spacing:0.637824pt;}
.ls0_c03351{letter-spacing:0.642048pt;}
.wsc_c03351{word-spacing:-13.445376pt;}
.wsa_c03351{word-spacing:-11.088000pt;}
.ws6_c03351{word-spacing:-11.075328pt;}
.wse_c03351{word-spacing:-11.037312pt;}
.ws4_c03351{word-spacing:-10.344576pt;}
.ws2_c03351{word-spacing:-10.015104pt;}
.ws12_c03351{word-spacing:-0.963072pt;}
.ws17_c03351{word-spacing:-0.958848pt;}
.wsf_c03351{word-spacing:-0.865920pt;}
.ws16_c03351{word-spacing:-0.639744pt;}
.ws11_c03351{word-spacing:-0.105600pt;}
.ws13_c03351{word-spacing:-0.088704pt;}
.ws14_c03351{word-spacing:-0.080256pt;}
.ws15_c03351{word-spacing:-0.076032pt;}
.ws10_c03351{word-spacing:0.000000pt;}
.ws9_c03351{word-spacing:5.892480pt;}
.wsb_c03351{word-spacing:29.600256pt;}
.ws8_c03351{word-spacing:30.966144pt;}
.wsd_c03351{word-spacing:32.659968pt;}
.ws1_c03351{word-spacing:33.563904pt;}
.ws0_c03351{word-spacing:33.796224pt;}
.ws3_c03351{word-spacing:34.860672pt;}
.ws5_c03351{word-spacing:35.468928pt;}
.ws7_c03351{word-spacing:37.357056pt;}
._0_c03351{margin-left:-1.731840pt;}
._2_c03351{width:1.317888pt;}
._4_c03351{width:5.111040pt;}
._6_c03351{width:17.761920pt;}
._7_c03351{width:20.845440pt;}
._5_c03351{width:21.947904pt;}
._1_c03351{width:44.668800pt;}
._3_c03351{width:45.805056pt;}
.fs0_c03351{font-size:42.240000pt;}
.fs1_c03351{font-size:53.760000pt;}
.y0_c03351{bottom:0.000000pt;}
.y1a_c03351{bottom:130.665211pt;}
.y1c_c03351{bottom:165.866875pt;}
.y1b_c03351{bottom:174.507067pt;}
.y19_c03351{bottom:245.225371pt;}
.y18_c03351{bottom:317.225563pt;}
.y16_c03351{bottom:361.386427pt;}
.y12_c03351{bottom:377.386939pt;}
.y17_c03351{bottom:407.786011pt;}
.y15_c03351{bottom:437.226235pt;}
.y14_c03351{bottom:453.226747pt;}
.y11_c03351{bottom:482.666971pt;}
.y13_c03351{bottom:497.386555pt;}
.y10_c03351{bottom:513.387067pt;}
.y1d_c03351{bottom:546.027067pt;}
.yc_c03351{bottom:579.945467pt;}
.yb_c03351{bottom:593.385179pt;}
.ye_c03351{bottom:628.586875pt;}
.yd_c03351{bottom:637.227067pt;}
.ya_c03351{bottom:707.945339pt;}
.y9_c03351{bottom:779.945531pt;}
.y7_c03351{bottom:823.786427pt;}
.y3_c03351{bottom:839.786939pt;}
.y8_c03351{bottom:870.505979pt;}
.y6_c03351{bottom:899.946203pt;}
.y5_c03351{bottom:915.946715pt;}
.y2_c03351{bottom:945.386939pt;}
.y4_c03351{bottom:959.786555pt;}
.y1_c03351{bottom:975.787067pt;}
.yf_c03351{bottom:1008.747067pt;}
.h3_c03351{height:28.916250pt;}
.h1_c03351{height:37.063125pt;}
.h2_c03351{height:37.166250pt;}
.h4_c03351{height:48.581988pt;}
.h0_c03351{height:1122.666667pt;}
.w1_c03351{width:793.333333pt;}
.w0_c03351{width:793.626667pt;}
.x0_c03351{left:0.000000pt;}
.xe_c03351{left:104.000000pt;}
.x8_c03351{left:391.999872pt;}
.x4_c03351{left:396.160512pt;}
.xc_c03351{left:400.960000pt;}
.x7_c03351{left:404.799648pt;}
.x5_c03351{left:410.560128pt;}
.x1_c03351{left:411.840000pt;}
.xa_c03351{left:429.760320pt;}
.x9_c03351{left:437.439552pt;}
.x6_c03351{left:438.400512pt;}
.xd_c03351{left:450.560320pt;}
.x3_c03351{left:455.039904pt;}
.x2_c03351{left:468.159648pt;}
.xb_c03351{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03352 {
    display:none;
  }
  .loading-indicator_c03352.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03352 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03352 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03352" -> "#page-container .classname_c03352")
 */
.pf_c03352 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03352 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03352.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03352 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03352 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03352 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03352 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03352 {overflow:visible;}
  }
}
.c_c03352 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03352 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03352:after { /* webkit #35443 */
  content: '';
}
.t_c03352:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03352 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03352 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03352 { /* info for Javascript */
  display:none;
}
.l_c03352 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03352 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03352 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03352:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03352 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03352.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03352.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03352 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03352{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03352;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03352{font-family:ff1_c03352;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03352;src:url('chunks/assets/font_fab156fc3e9b1f5b46b3f4f2.woff2')format("woff");}.ff2_c03352{font-family:ff2_c03352;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03352;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03352{font-family:ff3_c03352;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03352{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03352{vertical-align:0.000000px;}
.v1_c03352{vertical-align:1.439424px;}
.ls7_c03352{letter-spacing:-0.613008px;}
.ls9_c03352{letter-spacing:-0.574992px;}
.lsf_c03352{letter-spacing:-0.275616px;}
.lsd_c03352{letter-spacing:-0.261360px;}
.ls6_c03352{letter-spacing:-0.242352px;}
.ls13_c03352{letter-spacing:-0.218592px;}
.lsc_c03352{letter-spacing:-0.185328px;}
.ls4_c03352{letter-spacing:-0.118800px;}
.ls12_c03352{letter-spacing:0.000000px;}
.ls1_c03352{letter-spacing:0.006048px;}
.ls5_c03352{letter-spacing:0.128304px;}
.lsb_c03352{letter-spacing:0.508464px;}
.ls11_c03352{letter-spacing:0.514080px;}
.lse_c03352{letter-spacing:0.536976px;}
.lsa_c03352{letter-spacing:0.579744px;}
.ls10_c03352{letter-spacing:0.594000px;}
.ls8_c03352{letter-spacing:0.598752px;}
.ls2_c03352{letter-spacing:0.613008px;}
.ls3_c03352{letter-spacing:0.717552px;}
.ls0_c03352{letter-spacing:0.722304px;}
.sc__c03352{text-shadow:none;}
.sc0_c03352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03352{-webkit-text-stroke:0px transparent;}
.sc0_c03352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03352{word-spacing:-15.126048px;}
.wsa_c03352{word-spacing:-12.474000px;}
.ws9_c03352{word-spacing:-12.416976px;}
.ws4_c03352{word-spacing:-11.637648px;}
.ws2_c03352{word-spacing:-11.266992px;}
.ws10_c03352{word-spacing:-1.083456px;}
.wsd_c03352{word-spacing:-0.974160px;}
.ws14_c03352{word-spacing:-0.719712px;}
.ws11_c03352{word-spacing:-0.175824px;}
.ws15_c03352{word-spacing:-0.142560px;}
.wsf_c03352{word-spacing:-0.118800px;}
.ws12_c03352{word-spacing:-0.099792px;}
.ws13_c03352{word-spacing:-0.085536px;}
.wse_c03352{word-spacing:0.000000px;}
.wsb_c03352{word-spacing:33.300288px;}
.ws8_c03352{word-spacing:36.143712px;}
.ws6_c03352{word-spacing:36.742464px;}
.ws1_c03352{word-spacing:37.759392px;}
.ws0_c03352{word-spacing:38.020752px;}
.ws3_c03352{word-spacing:39.218256px;}
.ws5_c03352{word-spacing:39.902544px;}
.ws7_c03352{word-spacing:42.026688px;}
._0_c03352{margin-left:-1.948320px;}
._2_c03352{width:1.482624px;}
._4_c03352{width:5.749920px;}
._1_c03352{width:50.252400px;}
._3_c03352{width:51.530688px;}
.fc0_c03352{color:rgb(0,0,0);}
.fs0_c03352{font-size:47.520000px;}
.fs1_c03352{font-size:60.480000px;}
.y0_c03352{bottom:0.000000px;}
.y19_c03352{bottom:146.998362px;}
.y1b_c03352{bottom:186.600234px;}
.y1a_c03352{bottom:196.320450px;}
.y18_c03352{bottom:275.878542px;}
.y17_c03352{bottom:356.878758px;}
.y15_c03352{bottom:406.559730px;}
.y11_c03352{bottom:424.560306px;}
.y16_c03352{bottom:458.759262px;}
.y14_c03352{bottom:491.879514px;}
.y13_c03352{bottom:509.880090px;}
.y10_c03352{bottom:543.000342px;}
.y12_c03352{bottom:559.559874px;}
.yf_c03352{bottom:577.560450px;}
.y1c_c03352{bottom:614.280450px;}
.yb_c03352{bottom:667.558326px;}
.yd_c03352{bottom:707.160234px;}
.yc_c03352{bottom:716.880450px;}
.ya_c03352{bottom:796.438506px;}
.y9_c03352{bottom:877.438722px;}
.y7_c03352{bottom:926.759730px;}
.y3_c03352{bottom:944.760306px;}
.y8_c03352{bottom:979.319226px;}
.y6_c03352{bottom:1012.439478px;}
.y5_c03352{bottom:1030.440054px;}
.y2_c03352{bottom:1063.560306px;}
.y4_c03352{bottom:1079.759874px;}
.y1_c03352{bottom:1097.760450px;}
.ye_c03352{bottom:1134.840450px;}
.h3_c03352{height:32.530781px;}
.h1_c03352{height:41.696016px;}
.h2_c03352{height:41.812031px;}
.h4_c03352{height:54.654737px;}
.h0_c03352{height:1263.000000px;}
.w1_c03352{width:892.500000px;}
.w0_c03352{width:892.830000px;}
.x0_c03352{left:0.000000px;}
.xd_c03352{left:117.000000px;}
.x8_c03352{left:440.999856px;}
.x4_c03352{left:445.680576px;}
.xb_c03352{left:451.080000px;}
.x7_c03352{left:455.399604px;}
.x5_c03352{left:461.880144px;}
.x1_c03352{left:463.320000px;}
.xa_c03352{left:483.480360px;}
.x9_c03352{left:492.119496px;}
.x6_c03352{left:493.200576px;}
.xc_c03352{left:506.880360px;}
.x3_c03352{left:511.919892px;}
.x2_c03352{left:526.679604px;}
@media print{
.v0_c03352{vertical-align:0.000000pt;}
.v1_c03352{vertical-align:1.279488pt;}
.ls7_c03352{letter-spacing:-0.544896pt;}
.ls9_c03352{letter-spacing:-0.511104pt;}
.lsf_c03352{letter-spacing:-0.244992pt;}
.lsd_c03352{letter-spacing:-0.232320pt;}
.ls6_c03352{letter-spacing:-0.215424pt;}
.ls13_c03352{letter-spacing:-0.194304pt;}
.lsc_c03352{letter-spacing:-0.164736pt;}
.ls4_c03352{letter-spacing:-0.105600pt;}
.ls12_c03352{letter-spacing:0.000000pt;}
.ls1_c03352{letter-spacing:0.005376pt;}
.ls5_c03352{letter-spacing:0.114048pt;}
.lsb_c03352{letter-spacing:0.451968pt;}
.ls11_c03352{letter-spacing:0.456960pt;}
.lse_c03352{letter-spacing:0.477312pt;}
.lsa_c03352{letter-spacing:0.515328pt;}
.ls10_c03352{letter-spacing:0.528000pt;}
.ls8_c03352{letter-spacing:0.532224pt;}
.ls2_c03352{letter-spacing:0.544896pt;}
.ls3_c03352{letter-spacing:0.637824pt;}
.ls0_c03352{letter-spacing:0.642048pt;}
.wsc_c03352{word-spacing:-13.445376pt;}
.wsa_c03352{word-spacing:-11.088000pt;}
.ws9_c03352{word-spacing:-11.037312pt;}
.ws4_c03352{word-spacing:-10.344576pt;}
.ws2_c03352{word-spacing:-10.015104pt;}
.ws10_c03352{word-spacing:-0.963072pt;}
.wsd_c03352{word-spacing:-0.865920pt;}
.ws14_c03352{word-spacing:-0.639744pt;}
.ws11_c03352{word-spacing:-0.156288pt;}
.ws15_c03352{word-spacing:-0.126720pt;}
.wsf_c03352{word-spacing:-0.105600pt;}
.ws12_c03352{word-spacing:-0.088704pt;}
.ws13_c03352{word-spacing:-0.076032pt;}
.wse_c03352{word-spacing:0.000000pt;}
.wsb_c03352{word-spacing:29.600256pt;}
.ws8_c03352{word-spacing:32.127744pt;}
.ws6_c03352{word-spacing:32.659968pt;}
.ws1_c03352{word-spacing:33.563904pt;}
.ws0_c03352{word-spacing:33.796224pt;}
.ws3_c03352{word-spacing:34.860672pt;}
.ws5_c03352{word-spacing:35.468928pt;}
.ws7_c03352{word-spacing:37.357056pt;}
._0_c03352{margin-left:-1.731840pt;}
._2_c03352{width:1.317888pt;}
._4_c03352{width:5.111040pt;}
._1_c03352{width:44.668800pt;}
._3_c03352{width:45.805056pt;}
.fs0_c03352{font-size:42.240000pt;}
.fs1_c03352{font-size:53.760000pt;}
.y0_c03352{bottom:0.000000pt;}
.y19_c03352{bottom:130.665211pt;}
.y1b_c03352{bottom:165.866875pt;}
.y1a_c03352{bottom:174.507067pt;}
.y18_c03352{bottom:245.225371pt;}
.y17_c03352{bottom:317.225563pt;}
.y15_c03352{bottom:361.386427pt;}
.y11_c03352{bottom:377.386939pt;}
.y16_c03352{bottom:407.786011pt;}
.y14_c03352{bottom:437.226235pt;}
.y13_c03352{bottom:453.226747pt;}
.y10_c03352{bottom:482.666971pt;}
.y12_c03352{bottom:497.386555pt;}
.yf_c03352{bottom:513.387067pt;}
.y1c_c03352{bottom:546.027067pt;}
.yb_c03352{bottom:593.385179pt;}
.yd_c03352{bottom:628.586875pt;}
.yc_c03352{bottom:637.227067pt;}
.ya_c03352{bottom:707.945339pt;}
.y9_c03352{bottom:779.945531pt;}
.y7_c03352{bottom:823.786427pt;}
.y3_c03352{bottom:839.786939pt;}
.y8_c03352{bottom:870.505979pt;}
.y6_c03352{bottom:899.946203pt;}
.y5_c03352{bottom:915.946715pt;}
.y2_c03352{bottom:945.386939pt;}
.y4_c03352{bottom:959.786555pt;}
.y1_c03352{bottom:975.787067pt;}
.ye_c03352{bottom:1008.747067pt;}
.h3_c03352{height:28.916250pt;}
.h1_c03352{height:37.063125pt;}
.h2_c03352{height:37.166250pt;}
.h4_c03352{height:48.581988pt;}
.h0_c03352{height:1122.666667pt;}
.w1_c03352{width:793.333333pt;}
.w0_c03352{width:793.626667pt;}
.x0_c03352{left:0.000000pt;}
.xd_c03352{left:104.000000pt;}
.x8_c03352{left:391.999872pt;}
.x4_c03352{left:396.160512pt;}
.xb_c03352{left:400.960000pt;}
.x7_c03352{left:404.799648pt;}
.x5_c03352{left:410.560128pt;}
.x1_c03352{left:411.840000pt;}
.xa_c03352{left:429.760320pt;}
.x9_c03352{left:437.439552pt;}
.x6_c03352{left:438.400512pt;}
.xc_c03352{left:450.560320pt;}
.x3_c03352{left:455.039904pt;}
.x2_c03352{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03353 {
    display:none;
  }
  .loading-indicator_c03353.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03353 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03353 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03353" -> "#page-container .classname_c03353")
 */
.pf_c03353 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03353 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03353.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03353 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03353 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03353 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03353 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03353 {overflow:visible;}
  }
}
.c_c03353 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03353 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03353:after { /* webkit #35443 */
  content: '';
}
.t_c03353:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03353 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03353 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03353 { /* info for Javascript */
  display:none;
}
.l_c03353 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03353 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03353 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03353:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03353 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03353.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03353.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03353 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03353{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03353;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03353{font-family:ff1_c03353;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03353;src:url('chunks/assets/font_f4c21a777d80561db0fe4dbd.woff2')format("woff");}.ff2_c03353{font-family:ff2_c03353;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03353;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03353{font-family:ff3_c03353;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03353{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03353{vertical-align:0.000000px;}
.v1_c03353{vertical-align:1.439424px;}
.lsc_c03353{letter-spacing:-0.793584px;}
.ls15_c03353{letter-spacing:-0.755568px;}
.ls10_c03353{letter-spacing:-0.736560px;}
.ls7_c03353{letter-spacing:-0.613008px;}
.ls9_c03353{letter-spacing:-0.574992px;}
.lsd_c03353{letter-spacing:-0.304128px;}
.ls16_c03353{letter-spacing:-0.275616px;}
.ls11_c03353{letter-spacing:-0.270864px;}
.lse_c03353{letter-spacing:-0.261360px;}
.ls6_c03353{letter-spacing:-0.242352px;}
.ls4_c03353{letter-spacing:-0.118800px;}
.ls14_c03353{letter-spacing:0.000000px;}
.ls1_c03353{letter-spacing:0.006048px;}
.ls5_c03353{letter-spacing:0.128304px;}
.lsb_c03353{letter-spacing:0.508464px;}
.ls13_c03353{letter-spacing:0.514080px;}
.lsf_c03353{letter-spacing:0.536976px;}
.lsa_c03353{letter-spacing:0.579744px;}
.ls12_c03353{letter-spacing:0.594000px;}
.ls8_c03353{letter-spacing:0.598752px;}
.ls2_c03353{letter-spacing:0.613008px;}
.ls3_c03353{letter-spacing:0.717552px;}
.ls0_c03353{letter-spacing:0.722304px;}
.sc__c03353{text-shadow:none;}
.sc0_c03353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03353{-webkit-text-stroke:0px transparent;}
.sc0_c03353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03353{word-spacing:-15.126048px;}
.wsb_c03353{word-spacing:-12.474000px;}
.ws6_c03353{word-spacing:-12.459744px;}
.wse_c03353{word-spacing:-12.416976px;}
.ws4_c03353{word-spacing:-11.637648px;}
.ws2_c03353{word-spacing:-11.266992px;}
.ws12_c03353{word-spacing:-1.083456px;}
.wsf_c03353{word-spacing:-0.974160px;}
.ws18_c03353{word-spacing:-0.719712px;}
.ws11_c03353{word-spacing:-0.118800px;}
.ws15_c03353{word-spacing:-0.099792px;}
.ws16_c03353{word-spacing:-0.090288px;}
.ws17_c03353{word-spacing:-0.085536px;}
.ws14_c03353{word-spacing:-0.057024px;}
.ws10_c03353{word-spacing:0.000000px;}
.ws19_c03353{word-spacing:0.394416px;}
.ws13_c03353{word-spacing:0.432432px;}
.wsa_c03353{word-spacing:6.629040px;}
.wsc_c03353{word-spacing:33.300288px;}
.ws9_c03353{word-spacing:34.836912px;}
.ws8_c03353{word-spacing:36.143712px;}
.ws1_c03353{word-spacing:37.759392px;}
.ws0_c03353{word-spacing:38.020752px;}
.ws3_c03353{word-spacing:39.218256px;}
.ws5_c03353{word-spacing:39.902544px;}
.ws7_c03353{word-spacing:42.026688px;}
._0_c03353{margin-left:-1.948320px;}
._2_c03353{width:1.482624px;}
._4_c03353{width:5.749920px;}
._6_c03353{width:19.982160px;}
._7_c03353{width:23.451120px;}
._5_c03353{width:24.691392px;}
._1_c03353{width:50.252400px;}
._3_c03353{width:51.530688px;}
.fc0_c03353{color:rgb(0,0,0);}
.fs0_c03353{font-size:47.520000px;}
.fs1_c03353{font-size:60.480000px;}
.y0_c03353{bottom:0.000000px;}
.y1a_c03353{bottom:146.998362px;}
.y1c_c03353{bottom:186.600234px;}
.y1b_c03353{bottom:196.320450px;}
.y19_c03353{bottom:275.878542px;}
.y18_c03353{bottom:356.878758px;}
.y16_c03353{bottom:406.559730px;}
.y12_c03353{bottom:424.560306px;}
.y17_c03353{bottom:458.759262px;}
.y15_c03353{bottom:491.879514px;}
.y14_c03353{bottom:509.880090px;}
.y11_c03353{bottom:543.000342px;}
.y13_c03353{bottom:559.559874px;}
.y10_c03353{bottom:577.560450px;}
.y1d_c03353{bottom:614.280450px;}
.yc_c03353{bottom:652.438650px;}
.yb_c03353{bottom:667.558326px;}
.ye_c03353{bottom:707.160234px;}
.yd_c03353{bottom:716.880450px;}
.ya_c03353{bottom:796.438506px;}
.y9_c03353{bottom:877.438722px;}
.y7_c03353{bottom:926.759730px;}
.y3_c03353{bottom:944.760306px;}
.y8_c03353{bottom:979.319226px;}
.y6_c03353{bottom:1012.439478px;}
.y5_c03353{bottom:1030.440054px;}
.y2_c03353{bottom:1063.560306px;}
.y4_c03353{bottom:1079.759874px;}
.y1_c03353{bottom:1097.760450px;}
.yf_c03353{bottom:1134.840450px;}
.h3_c03353{height:32.530781px;}
.h1_c03353{height:41.696016px;}
.h2_c03353{height:41.812031px;}
.h4_c03353{height:54.654737px;}
.h0_c03353{height:1263.000000px;}
.w1_c03353{width:892.500000px;}
.w0_c03353{width:892.830000px;}
.x0_c03353{left:0.000000px;}
.xe_c03353{left:117.000000px;}
.x8_c03353{left:440.999856px;}
.x4_c03353{left:445.680576px;}
.xc_c03353{left:451.080000px;}
.x7_c03353{left:455.399604px;}
.x5_c03353{left:461.880144px;}
.x1_c03353{left:463.320000px;}
.xa_c03353{left:483.480360px;}
.x9_c03353{left:492.119496px;}
.x6_c03353{left:493.200576px;}
.xd_c03353{left:506.880360px;}
.x3_c03353{left:511.919892px;}
.x2_c03353{left:526.679604px;}
.xb_c03353{left:569.880036px;}
@media print{
.v0_c03353{vertical-align:0.000000pt;}
.v1_c03353{vertical-align:1.279488pt;}
.lsc_c03353{letter-spacing:-0.705408pt;}
.ls15_c03353{letter-spacing:-0.671616pt;}
.ls10_c03353{letter-spacing:-0.654720pt;}
.ls7_c03353{letter-spacing:-0.544896pt;}
.ls9_c03353{letter-spacing:-0.511104pt;}
.lsd_c03353{letter-spacing:-0.270336pt;}
.ls16_c03353{letter-spacing:-0.244992pt;}
.ls11_c03353{letter-spacing:-0.240768pt;}
.lse_c03353{letter-spacing:-0.232320pt;}
.ls6_c03353{letter-spacing:-0.215424pt;}
.ls4_c03353{letter-spacing:-0.105600pt;}
.ls14_c03353{letter-spacing:0.000000pt;}
.ls1_c03353{letter-spacing:0.005376pt;}
.ls5_c03353{letter-spacing:0.114048pt;}
.lsb_c03353{letter-spacing:0.451968pt;}
.ls13_c03353{letter-spacing:0.456960pt;}
.lsf_c03353{letter-spacing:0.477312pt;}
.lsa_c03353{letter-spacing:0.515328pt;}
.ls12_c03353{letter-spacing:0.528000pt;}
.ls8_c03353{letter-spacing:0.532224pt;}
.ls2_c03353{letter-spacing:0.544896pt;}
.ls3_c03353{letter-spacing:0.637824pt;}
.ls0_c03353{letter-spacing:0.642048pt;}
.wsd_c03353{word-spacing:-13.445376pt;}
.wsb_c03353{word-spacing:-11.088000pt;}
.ws6_c03353{word-spacing:-11.075328pt;}
.wse_c03353{word-spacing:-11.037312pt;}
.ws4_c03353{word-spacing:-10.344576pt;}
.ws2_c03353{word-spacing:-10.015104pt;}
.ws12_c03353{word-spacing:-0.963072pt;}
.wsf_c03353{word-spacing:-0.865920pt;}
.ws18_c03353{word-spacing:-0.639744pt;}
.ws11_c03353{word-spacing:-0.105600pt;}
.ws15_c03353{word-spacing:-0.088704pt;}
.ws16_c03353{word-spacing:-0.080256pt;}
.ws17_c03353{word-spacing:-0.076032pt;}
.ws14_c03353{word-spacing:-0.050688pt;}
.ws10_c03353{word-spacing:0.000000pt;}
.ws19_c03353{word-spacing:0.350592pt;}
.ws13_c03353{word-spacing:0.384384pt;}
.wsa_c03353{word-spacing:5.892480pt;}
.wsc_c03353{word-spacing:29.600256pt;}
.ws9_c03353{word-spacing:30.966144pt;}
.ws8_c03353{word-spacing:32.127744pt;}
.ws1_c03353{word-spacing:33.563904pt;}
.ws0_c03353{word-spacing:33.796224pt;}
.ws3_c03353{word-spacing:34.860672pt;}
.ws5_c03353{word-spacing:35.468928pt;}
.ws7_c03353{word-spacing:37.357056pt;}
._0_c03353{margin-left:-1.731840pt;}
._2_c03353{width:1.317888pt;}
._4_c03353{width:5.111040pt;}
._6_c03353{width:17.761920pt;}
._7_c03353{width:20.845440pt;}
._5_c03353{width:21.947904pt;}
._1_c03353{width:44.668800pt;}
._3_c03353{width:45.805056pt;}
.fs0_c03353{font-size:42.240000pt;}
.fs1_c03353{font-size:53.760000pt;}
.y0_c03353{bottom:0.000000pt;}
.y1a_c03353{bottom:130.665211pt;}
.y1c_c03353{bottom:165.866875pt;}
.y1b_c03353{bottom:174.507067pt;}
.y19_c03353{bottom:245.225371pt;}
.y18_c03353{bottom:317.225563pt;}
.y16_c03353{bottom:361.386427pt;}
.y12_c03353{bottom:377.386939pt;}
.y17_c03353{bottom:407.786011pt;}
.y15_c03353{bottom:437.226235pt;}
.y14_c03353{bottom:453.226747pt;}
.y11_c03353{bottom:482.666971pt;}
.y13_c03353{bottom:497.386555pt;}
.y10_c03353{bottom:513.387067pt;}
.y1d_c03353{bottom:546.027067pt;}
.yc_c03353{bottom:579.945467pt;}
.yb_c03353{bottom:593.385179pt;}
.ye_c03353{bottom:628.586875pt;}
.yd_c03353{bottom:637.227067pt;}
.ya_c03353{bottom:707.945339pt;}
.y9_c03353{bottom:779.945531pt;}
.y7_c03353{bottom:823.786427pt;}
.y3_c03353{bottom:839.786939pt;}
.y8_c03353{bottom:870.505979pt;}
.y6_c03353{bottom:899.946203pt;}
.y5_c03353{bottom:915.946715pt;}
.y2_c03353{bottom:945.386939pt;}
.y4_c03353{bottom:959.786555pt;}
.y1_c03353{bottom:975.787067pt;}
.yf_c03353{bottom:1008.747067pt;}
.h3_c03353{height:28.916250pt;}
.h1_c03353{height:37.063125pt;}
.h2_c03353{height:37.166250pt;}
.h4_c03353{height:48.581988pt;}
.h0_c03353{height:1122.666667pt;}
.w1_c03353{width:793.333333pt;}
.w0_c03353{width:793.626667pt;}
.x0_c03353{left:0.000000pt;}
.xe_c03353{left:104.000000pt;}
.x8_c03353{left:391.999872pt;}
.x4_c03353{left:396.160512pt;}
.xc_c03353{left:400.960000pt;}
.x7_c03353{left:404.799648pt;}
.x5_c03353{left:410.560128pt;}
.x1_c03353{left:411.840000pt;}
.xa_c03353{left:429.760320pt;}
.x9_c03353{left:437.439552pt;}
.x6_c03353{left:438.400512pt;}
.xd_c03353{left:450.560320pt;}
.x3_c03353{left:455.039904pt;}
.x2_c03353{left:468.159648pt;}
.xb_c03353{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03354 {
    display:none;
  }
  .loading-indicator_c03354.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03354 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03354 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03354" -> "#page-container .classname_c03354")
 */
.pf_c03354 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03354 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03354.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03354 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03354 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03354 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03354 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03354 {overflow:visible;}
  }
}
.c_c03354 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03354 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03354:after { /* webkit #35443 */
  content: '';
}
.t_c03354:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03354 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03354 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03354 { /* info for Javascript */
  display:none;
}
.l_c03354 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03354 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03354 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03354:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03354 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03354.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03354.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03354 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03354{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03354;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03354{font-family:ff1_c03354;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03354;src:url('chunks/assets/font_804e2c97d24ae49168ed4f00.woff2')format("woff");}.ff2_c03354{font-family:ff2_c03354;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03354;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03354{font-family:ff3_c03354;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03354{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03354{vertical-align:0.000000px;}
.v1_c03354{vertical-align:1.439424px;}
.ls7_c03354{letter-spacing:-0.613008px;}
.ls9_c03354{letter-spacing:-0.574992px;}
.lse_c03354{letter-spacing:-0.275616px;}
.lsc_c03354{letter-spacing:-0.261360px;}
.ls6_c03354{letter-spacing:-0.242352px;}
.ls4_c03354{letter-spacing:-0.118800px;}
.ls12_c03354{letter-spacing:-0.014256px;}
.ls11_c03354{letter-spacing:0.000000px;}
.ls1_c03354{letter-spacing:0.006048px;}
.ls5_c03354{letter-spacing:0.128304px;}
.lsb_c03354{letter-spacing:0.508464px;}
.ls10_c03354{letter-spacing:0.514080px;}
.lsd_c03354{letter-spacing:0.536976px;}
.lsa_c03354{letter-spacing:0.579744px;}
.lsf_c03354{letter-spacing:0.594000px;}
.ls8_c03354{letter-spacing:0.598752px;}
.ls2_c03354{letter-spacing:0.613008px;}
.ls3_c03354{letter-spacing:0.717552px;}
.ls0_c03354{letter-spacing:0.722304px;}
.sc__c03354{text-shadow:none;}
.sc0_c03354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03354{-webkit-text-stroke:0px transparent;}
.sc0_c03354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03354{word-spacing:-15.126048px;}
.wsa_c03354{word-spacing:-12.474000px;}
.ws8_c03354{word-spacing:-12.459744px;}
.ws9_c03354{word-spacing:-12.416976px;}
.ws4_c03354{word-spacing:-11.637648px;}
.ws2_c03354{word-spacing:-11.266992px;}
.ws11_c03354{word-spacing:-1.083456px;}
.wse_c03354{word-spacing:-0.974160px;}
.ws14_c03354{word-spacing:-0.719712px;}
.ws15_c03354{word-spacing:-0.346896px;}
.ws10_c03354{word-spacing:-0.118800px;}
.ws12_c03354{word-spacing:-0.099792px;}
.ws13_c03354{word-spacing:-0.085536px;}
.wsf_c03354{word-spacing:0.000000px;}
.wsb_c03354{word-spacing:33.300288px;}
.wsd_c03354{word-spacing:36.143712px;}
.ws6_c03354{word-spacing:36.742464px;}
.ws1_c03354{word-spacing:37.759392px;}
.ws0_c03354{word-spacing:38.020752px;}
.ws3_c03354{word-spacing:39.218256px;}
.ws5_c03354{word-spacing:39.902544px;}
.ws7_c03354{word-spacing:42.026688px;}
._0_c03354{margin-left:-1.948320px;}
._2_c03354{width:1.482624px;}
._4_c03354{width:5.749920px;}
._1_c03354{width:50.252400px;}
._3_c03354{width:51.530688px;}
.fc0_c03354{color:rgb(0,0,0);}
.fs0_c03354{font-size:47.520000px;}
.fs1_c03354{font-size:60.480000px;}
.y0_c03354{bottom:0.000000px;}
.y19_c03354{bottom:146.998362px;}
.y1b_c03354{bottom:186.600234px;}
.y1a_c03354{bottom:196.320450px;}
.y18_c03354{bottom:275.878542px;}
.y17_c03354{bottom:356.878758px;}
.y15_c03354{bottom:406.559730px;}
.y11_c03354{bottom:424.560306px;}
.y16_c03354{bottom:458.759262px;}
.y14_c03354{bottom:491.879514px;}
.y13_c03354{bottom:509.880090px;}
.y10_c03354{bottom:543.000342px;}
.y12_c03354{bottom:559.559874px;}
.yf_c03354{bottom:577.560450px;}
.y1c_c03354{bottom:614.280450px;}
.yb_c03354{bottom:667.558326px;}
.yd_c03354{bottom:707.160234px;}
.yc_c03354{bottom:716.880450px;}
.ya_c03354{bottom:796.438506px;}
.y9_c03354{bottom:877.438722px;}
.y7_c03354{bottom:926.759730px;}
.y3_c03354{bottom:944.760306px;}
.y8_c03354{bottom:979.319226px;}
.y6_c03354{bottom:1012.439478px;}
.y5_c03354{bottom:1030.440054px;}
.y2_c03354{bottom:1063.560306px;}
.y4_c03354{bottom:1079.759874px;}
.y1_c03354{bottom:1097.760450px;}
.ye_c03354{bottom:1134.840450px;}
.h3_c03354{height:32.530781px;}
.h1_c03354{height:41.696016px;}
.h2_c03354{height:41.812031px;}
.h4_c03354{height:54.654737px;}
.h0_c03354{height:1263.000000px;}
.w1_c03354{width:892.500000px;}
.w0_c03354{width:892.830000px;}
.x0_c03354{left:0.000000px;}
.xd_c03354{left:117.000000px;}
.x8_c03354{left:440.999856px;}
.x4_c03354{left:445.680576px;}
.xb_c03354{left:451.080000px;}
.x7_c03354{left:455.399604px;}
.x5_c03354{left:461.880144px;}
.x1_c03354{left:463.320000px;}
.xa_c03354{left:483.480360px;}
.x9_c03354{left:492.119496px;}
.x6_c03354{left:493.200576px;}
.xc_c03354{left:506.880360px;}
.x3_c03354{left:511.919892px;}
.x2_c03354{left:526.679604px;}
@media print{
.v0_c03354{vertical-align:0.000000pt;}
.v1_c03354{vertical-align:1.279488pt;}
.ls7_c03354{letter-spacing:-0.544896pt;}
.ls9_c03354{letter-spacing:-0.511104pt;}
.lse_c03354{letter-spacing:-0.244992pt;}
.lsc_c03354{letter-spacing:-0.232320pt;}
.ls6_c03354{letter-spacing:-0.215424pt;}
.ls4_c03354{letter-spacing:-0.105600pt;}
.ls12_c03354{letter-spacing:-0.012672pt;}
.ls11_c03354{letter-spacing:0.000000pt;}
.ls1_c03354{letter-spacing:0.005376pt;}
.ls5_c03354{letter-spacing:0.114048pt;}
.lsb_c03354{letter-spacing:0.451968pt;}
.ls10_c03354{letter-spacing:0.456960pt;}
.lsd_c03354{letter-spacing:0.477312pt;}
.lsa_c03354{letter-spacing:0.515328pt;}
.lsf_c03354{letter-spacing:0.528000pt;}
.ls8_c03354{letter-spacing:0.532224pt;}
.ls2_c03354{letter-spacing:0.544896pt;}
.ls3_c03354{letter-spacing:0.637824pt;}
.ls0_c03354{letter-spacing:0.642048pt;}
.wsc_c03354{word-spacing:-13.445376pt;}
.wsa_c03354{word-spacing:-11.088000pt;}
.ws8_c03354{word-spacing:-11.075328pt;}
.ws9_c03354{word-spacing:-11.037312pt;}
.ws4_c03354{word-spacing:-10.344576pt;}
.ws2_c03354{word-spacing:-10.015104pt;}
.ws11_c03354{word-spacing:-0.963072pt;}
.wse_c03354{word-spacing:-0.865920pt;}
.ws14_c03354{word-spacing:-0.639744pt;}
.ws15_c03354{word-spacing:-0.308352pt;}
.ws10_c03354{word-spacing:-0.105600pt;}
.ws12_c03354{word-spacing:-0.088704pt;}
.ws13_c03354{word-spacing:-0.076032pt;}
.wsf_c03354{word-spacing:0.000000pt;}
.wsb_c03354{word-spacing:29.600256pt;}
.wsd_c03354{word-spacing:32.127744pt;}
.ws6_c03354{word-spacing:32.659968pt;}
.ws1_c03354{word-spacing:33.563904pt;}
.ws0_c03354{word-spacing:33.796224pt;}
.ws3_c03354{word-spacing:34.860672pt;}
.ws5_c03354{word-spacing:35.468928pt;}
.ws7_c03354{word-spacing:37.357056pt;}
._0_c03354{margin-left:-1.731840pt;}
._2_c03354{width:1.317888pt;}
._4_c03354{width:5.111040pt;}
._1_c03354{width:44.668800pt;}
._3_c03354{width:45.805056pt;}
.fs0_c03354{font-size:42.240000pt;}
.fs1_c03354{font-size:53.760000pt;}
.y0_c03354{bottom:0.000000pt;}
.y19_c03354{bottom:130.665211pt;}
.y1b_c03354{bottom:165.866875pt;}
.y1a_c03354{bottom:174.507067pt;}
.y18_c03354{bottom:245.225371pt;}
.y17_c03354{bottom:317.225563pt;}
.y15_c03354{bottom:361.386427pt;}
.y11_c03354{bottom:377.386939pt;}
.y16_c03354{bottom:407.786011pt;}
.y14_c03354{bottom:437.226235pt;}
.y13_c03354{bottom:453.226747pt;}
.y10_c03354{bottom:482.666971pt;}
.y12_c03354{bottom:497.386555pt;}
.yf_c03354{bottom:513.387067pt;}
.y1c_c03354{bottom:546.027067pt;}
.yb_c03354{bottom:593.385179pt;}
.yd_c03354{bottom:628.586875pt;}
.yc_c03354{bottom:637.227067pt;}
.ya_c03354{bottom:707.945339pt;}
.y9_c03354{bottom:779.945531pt;}
.y7_c03354{bottom:823.786427pt;}
.y3_c03354{bottom:839.786939pt;}
.y8_c03354{bottom:870.505979pt;}
.y6_c03354{bottom:899.946203pt;}
.y5_c03354{bottom:915.946715pt;}
.y2_c03354{bottom:945.386939pt;}
.y4_c03354{bottom:959.786555pt;}
.y1_c03354{bottom:975.787067pt;}
.ye_c03354{bottom:1008.747067pt;}
.h3_c03354{height:28.916250pt;}
.h1_c03354{height:37.063125pt;}
.h2_c03354{height:37.166250pt;}
.h4_c03354{height:48.581988pt;}
.h0_c03354{height:1122.666667pt;}
.w1_c03354{width:793.333333pt;}
.w0_c03354{width:793.626667pt;}
.x0_c03354{left:0.000000pt;}
.xd_c03354{left:104.000000pt;}
.x8_c03354{left:391.999872pt;}
.x4_c03354{left:396.160512pt;}
.xb_c03354{left:400.960000pt;}
.x7_c03354{left:404.799648pt;}
.x5_c03354{left:410.560128pt;}
.x1_c03354{left:411.840000pt;}
.xa_c03354{left:429.760320pt;}
.x9_c03354{left:437.439552pt;}
.x6_c03354{left:438.400512pt;}
.xc_c03354{left:450.560320pt;}
.x3_c03354{left:455.039904pt;}
.x2_c03354{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03355 {
    display:none;
  }
  .loading-indicator_c03355.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03355 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03355 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03355" -> "#page-container .classname_c03355")
 */
.pf_c03355 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03355 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03355.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03355 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03355 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03355 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03355 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03355 {overflow:visible;}
  }
}
.c_c03355 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03355 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03355:after { /* webkit #35443 */
  content: '';
}
.t_c03355:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03355 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03355 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03355 { /* info for Javascript */
  display:none;
}
.l_c03355 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03355 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03355 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03355:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03355 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03355.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03355.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03355 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03355{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03355;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03355{font-family:ff1_c03355;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03355;src:url('chunks/assets/font_1f97f139e067b1fb0b31a449.woff2')format("woff");}.ff2_c03355{font-family:ff2_c03355;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03355;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03355{font-family:ff3_c03355;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03355{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03355{vertical-align:0.000000px;}
.v1_c03355{vertical-align:1.439424px;}
.ls13_c03355{letter-spacing:-0.793584px;}
.ls14_c03355{letter-spacing:-0.736560px;}
.ls7_c03355{letter-spacing:-0.613008px;}
.ls9_c03355{letter-spacing:-0.574992px;}
.lsf_c03355{letter-spacing:-0.275616px;}
.ls15_c03355{letter-spacing:-0.270864px;}
.lsd_c03355{letter-spacing:-0.261360px;}
.ls6_c03355{letter-spacing:-0.242352px;}
.lsc_c03355{letter-spacing:-0.194832px;}
.ls4_c03355{letter-spacing:-0.118800px;}
.ls12_c03355{letter-spacing:0.000000px;}
.ls1_c03355{letter-spacing:0.006048px;}
.ls5_c03355{letter-spacing:0.128304px;}
.lsb_c03355{letter-spacing:0.508464px;}
.ls11_c03355{letter-spacing:0.514080px;}
.lse_c03355{letter-spacing:0.536976px;}
.lsa_c03355{letter-spacing:0.579744px;}
.ls10_c03355{letter-spacing:0.594000px;}
.ls8_c03355{letter-spacing:0.598752px;}
.ls2_c03355{letter-spacing:0.613008px;}
.ls3_c03355{letter-spacing:0.717552px;}
.ls0_c03355{letter-spacing:0.722304px;}
.sc__c03355{text-shadow:none;}
.sc0_c03355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03355{-webkit-text-stroke:0px transparent;}
.sc0_c03355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03355{word-spacing:-15.126048px;}
.wsd_c03355{word-spacing:-12.602304px;}
.wsa_c03355{word-spacing:-12.474000px;}
.wse_c03355{word-spacing:-12.459744px;}
.ws4_c03355{word-spacing:-11.637648px;}
.ws2_c03355{word-spacing:-11.266992px;}
.ws13_c03355{word-spacing:-1.083456px;}
.ws10_c03355{word-spacing:-0.974160px;}
.ws17_c03355{word-spacing:-0.719712px;}
.ws14_c03355{word-spacing:-0.166320px;}
.ws12_c03355{word-spacing:-0.118800px;}
.ws15_c03355{word-spacing:-0.099792px;}
.ws19_c03355{word-spacing:-0.090288px;}
.ws16_c03355{word-spacing:-0.085536px;}
.ws11_c03355{word-spacing:0.000000px;}
.ws18_c03355{word-spacing:0.432432px;}
.wsf_c03355{word-spacing:6.629040px;}
.wsb_c03355{word-spacing:33.300288px;}
.ws9_c03355{word-spacing:34.836912px;}
.ws8_c03355{word-spacing:36.143712px;}
.ws6_c03355{word-spacing:36.742464px;}
.ws1_c03355{word-spacing:37.759392px;}
.ws0_c03355{word-spacing:38.020752px;}
.ws3_c03355{word-spacing:39.218256px;}
.ws5_c03355{word-spacing:39.902544px;}
.ws7_c03355{word-spacing:42.026688px;}
._0_c03355{margin-left:-1.948320px;}
._2_c03355{width:1.482624px;}
._4_c03355{width:5.749920px;}
._6_c03355{width:19.982160px;}
._7_c03355{width:23.451120px;}
._5_c03355{width:24.691392px;}
._1_c03355{width:50.252400px;}
._3_c03355{width:51.530688px;}
.fc0_c03355{color:rgb(0,0,0);}
.fs0_c03355{font-size:47.520000px;}
.fs1_c03355{font-size:60.480000px;}
.y0_c03355{bottom:0.000000px;}
.y1a_c03355{bottom:131.878686px;}
.y19_c03355{bottom:146.998362px;}
.y1c_c03355{bottom:186.600234px;}
.y1b_c03355{bottom:196.320450px;}
.y18_c03355{bottom:275.878542px;}
.y17_c03355{bottom:356.878758px;}
.y15_c03355{bottom:406.559730px;}
.y11_c03355{bottom:424.560306px;}
.y16_c03355{bottom:458.759262px;}
.y14_c03355{bottom:491.879514px;}
.y13_c03355{bottom:509.880090px;}
.y10_c03355{bottom:543.000342px;}
.y12_c03355{bottom:559.559874px;}
.yf_c03355{bottom:577.560450px;}
.y1d_c03355{bottom:614.280450px;}
.yb_c03355{bottom:667.558326px;}
.yd_c03355{bottom:707.160234px;}
.yc_c03355{bottom:716.880450px;}
.ya_c03355{bottom:796.438506px;}
.y9_c03355{bottom:877.438722px;}
.y7_c03355{bottom:926.759730px;}
.y3_c03355{bottom:944.760306px;}
.y8_c03355{bottom:979.319226px;}
.y6_c03355{bottom:1012.439478px;}
.y5_c03355{bottom:1030.440054px;}
.y2_c03355{bottom:1063.560306px;}
.y4_c03355{bottom:1079.759874px;}
.y1_c03355{bottom:1097.760450px;}
.ye_c03355{bottom:1134.840450px;}
.h3_c03355{height:32.530781px;}
.h1_c03355{height:41.696016px;}
.h2_c03355{height:41.812031px;}
.h4_c03355{height:54.654737px;}
.h0_c03355{height:1263.000000px;}
.w1_c03355{width:892.500000px;}
.w0_c03355{width:892.830000px;}
.x0_c03355{left:0.000000px;}
.xd_c03355{left:117.000000px;}
.x8_c03355{left:440.999856px;}
.x4_c03355{left:445.680576px;}
.xb_c03355{left:451.080000px;}
.x7_c03355{left:455.399604px;}
.x5_c03355{left:461.880144px;}
.x1_c03355{left:463.320000px;}
.xa_c03355{left:483.480360px;}
.x9_c03355{left:492.119496px;}
.x6_c03355{left:493.200576px;}
.xc_c03355{left:506.880360px;}
.x3_c03355{left:511.919892px;}
.x2_c03355{left:526.679604px;}
.xe_c03355{left:569.880036px;}
@media print{
.v0_c03355{vertical-align:0.000000pt;}
.v1_c03355{vertical-align:1.279488pt;}
.ls13_c03355{letter-spacing:-0.705408pt;}
.ls14_c03355{letter-spacing:-0.654720pt;}
.ls7_c03355{letter-spacing:-0.544896pt;}
.ls9_c03355{letter-spacing:-0.511104pt;}
.lsf_c03355{letter-spacing:-0.244992pt;}
.ls15_c03355{letter-spacing:-0.240768pt;}
.lsd_c03355{letter-spacing:-0.232320pt;}
.ls6_c03355{letter-spacing:-0.215424pt;}
.lsc_c03355{letter-spacing:-0.173184pt;}
.ls4_c03355{letter-spacing:-0.105600pt;}
.ls12_c03355{letter-spacing:0.000000pt;}
.ls1_c03355{letter-spacing:0.005376pt;}
.ls5_c03355{letter-spacing:0.114048pt;}
.lsb_c03355{letter-spacing:0.451968pt;}
.ls11_c03355{letter-spacing:0.456960pt;}
.lse_c03355{letter-spacing:0.477312pt;}
.lsa_c03355{letter-spacing:0.515328pt;}
.ls10_c03355{letter-spacing:0.528000pt;}
.ls8_c03355{letter-spacing:0.532224pt;}
.ls2_c03355{letter-spacing:0.544896pt;}
.ls3_c03355{letter-spacing:0.637824pt;}
.ls0_c03355{letter-spacing:0.642048pt;}
.wsc_c03355{word-spacing:-13.445376pt;}
.wsd_c03355{word-spacing:-11.202048pt;}
.wsa_c03355{word-spacing:-11.088000pt;}
.wse_c03355{word-spacing:-11.075328pt;}
.ws4_c03355{word-spacing:-10.344576pt;}
.ws2_c03355{word-spacing:-10.015104pt;}
.ws13_c03355{word-spacing:-0.963072pt;}
.ws10_c03355{word-spacing:-0.865920pt;}
.ws17_c03355{word-spacing:-0.639744pt;}
.ws14_c03355{word-spacing:-0.147840pt;}
.ws12_c03355{word-spacing:-0.105600pt;}
.ws15_c03355{word-spacing:-0.088704pt;}
.ws19_c03355{word-spacing:-0.080256pt;}
.ws16_c03355{word-spacing:-0.076032pt;}
.ws11_c03355{word-spacing:0.000000pt;}
.ws18_c03355{word-spacing:0.384384pt;}
.wsf_c03355{word-spacing:5.892480pt;}
.wsb_c03355{word-spacing:29.600256pt;}
.ws9_c03355{word-spacing:30.966144pt;}
.ws8_c03355{word-spacing:32.127744pt;}
.ws6_c03355{word-spacing:32.659968pt;}
.ws1_c03355{word-spacing:33.563904pt;}
.ws0_c03355{word-spacing:33.796224pt;}
.ws3_c03355{word-spacing:34.860672pt;}
.ws5_c03355{word-spacing:35.468928pt;}
.ws7_c03355{word-spacing:37.357056pt;}
._0_c03355{margin-left:-1.731840pt;}
._2_c03355{width:1.317888pt;}
._4_c03355{width:5.111040pt;}
._6_c03355{width:17.761920pt;}
._7_c03355{width:20.845440pt;}
._5_c03355{width:21.947904pt;}
._1_c03355{width:44.668800pt;}
._3_c03355{width:45.805056pt;}
.fs0_c03355{font-size:42.240000pt;}
.fs1_c03355{font-size:53.760000pt;}
.y0_c03355{bottom:0.000000pt;}
.y1a_c03355{bottom:117.225499pt;}
.y19_c03355{bottom:130.665211pt;}
.y1c_c03355{bottom:165.866875pt;}
.y1b_c03355{bottom:174.507067pt;}
.y18_c03355{bottom:245.225371pt;}
.y17_c03355{bottom:317.225563pt;}
.y15_c03355{bottom:361.386427pt;}
.y11_c03355{bottom:377.386939pt;}
.y16_c03355{bottom:407.786011pt;}
.y14_c03355{bottom:437.226235pt;}
.y13_c03355{bottom:453.226747pt;}
.y10_c03355{bottom:482.666971pt;}
.y12_c03355{bottom:497.386555pt;}
.yf_c03355{bottom:513.387067pt;}
.y1d_c03355{bottom:546.027067pt;}
.yb_c03355{bottom:593.385179pt;}
.yd_c03355{bottom:628.586875pt;}
.yc_c03355{bottom:637.227067pt;}
.ya_c03355{bottom:707.945339pt;}
.y9_c03355{bottom:779.945531pt;}
.y7_c03355{bottom:823.786427pt;}
.y3_c03355{bottom:839.786939pt;}
.y8_c03355{bottom:870.505979pt;}
.y6_c03355{bottom:899.946203pt;}
.y5_c03355{bottom:915.946715pt;}
.y2_c03355{bottom:945.386939pt;}
.y4_c03355{bottom:959.786555pt;}
.y1_c03355{bottom:975.787067pt;}
.ye_c03355{bottom:1008.747067pt;}
.h3_c03355{height:28.916250pt;}
.h1_c03355{height:37.063125pt;}
.h2_c03355{height:37.166250pt;}
.h4_c03355{height:48.581988pt;}
.h0_c03355{height:1122.666667pt;}
.w1_c03355{width:793.333333pt;}
.w0_c03355{width:793.626667pt;}
.x0_c03355{left:0.000000pt;}
.xd_c03355{left:104.000000pt;}
.x8_c03355{left:391.999872pt;}
.x4_c03355{left:396.160512pt;}
.xb_c03355{left:400.960000pt;}
.x7_c03355{left:404.799648pt;}
.x5_c03355{left:410.560128pt;}
.x1_c03355{left:411.840000pt;}
.xa_c03355{left:429.760320pt;}
.x9_c03355{left:437.439552pt;}
.x6_c03355{left:438.400512pt;}
.xc_c03355{left:450.560320pt;}
.x3_c03355{left:455.039904pt;}
.x2_c03355{left:468.159648pt;}
.xe_c03355{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03356 {
    display:none;
  }
  .loading-indicator_c03356.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03356 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03356 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03356" -> "#page-container .classname_c03356")
 */
.pf_c03356 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03356 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03356 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03356 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03356 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03356 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03356 {overflow:visible;}
  }
}
.c_c03356 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03356 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03356:after { /* webkit #35443 */
  content: '';
}
.t_c03356:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03356 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03356 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03356 { /* info for Javascript */
  display:none;
}
.l_c03356 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03356 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03356 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03356:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03356 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03356.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03356 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03356{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03356;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03356{font-family:ff1_c03356;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03356;src:url('chunks/assets/font_2eeecb3fb9e565a718893cd3.woff2')format("woff");}.ff2_c03356{font-family:ff2_c03356;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03356;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03356{font-family:ff3_c03356;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03356{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03356{vertical-align:0.000000px;}
.v1_c03356{vertical-align:1.439424px;}
.ls7_c03356{letter-spacing:-0.613008px;}
.ls9_c03356{letter-spacing:-0.574992px;}
.lse_c03356{letter-spacing:-0.275616px;}
.lsc_c03356{letter-spacing:-0.261360px;}
.ls6_c03356{letter-spacing:-0.242352px;}
.ls4_c03356{letter-spacing:-0.118800px;}
.ls11_c03356{letter-spacing:0.000000px;}
.ls1_c03356{letter-spacing:0.006048px;}
.ls5_c03356{letter-spacing:0.128304px;}
.lsb_c03356{letter-spacing:0.508464px;}
.ls10_c03356{letter-spacing:0.514080px;}
.lsd_c03356{letter-spacing:0.536976px;}
.lsa_c03356{letter-spacing:0.579744px;}
.lsf_c03356{letter-spacing:0.594000px;}
.ls8_c03356{letter-spacing:0.598752px;}
.ls2_c03356{letter-spacing:0.613008px;}
.ls3_c03356{letter-spacing:0.717552px;}
.ls0_c03356{letter-spacing:0.722304px;}
.sc__c03356{text-shadow:none;}
.sc0_c03356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03356{-webkit-text-stroke:0px transparent;}
.sc0_c03356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03356{word-spacing:-15.126048px;}
.wsa_c03356{word-spacing:-12.474000px;}
.ws8_c03356{word-spacing:-12.459744px;}
.wsd_c03356{word-spacing:-12.416976px;}
.ws4_c03356{word-spacing:-11.637648px;}
.ws2_c03356{word-spacing:-11.266992px;}
.ws11_c03356{word-spacing:-1.083456px;}
.wse_c03356{word-spacing:-0.974160px;}
.ws14_c03356{word-spacing:-0.719712px;}
.ws10_c03356{word-spacing:-0.118800px;}
.ws12_c03356{word-spacing:-0.099792px;}
.ws13_c03356{word-spacing:-0.085536px;}
.wsf_c03356{word-spacing:0.000000px;}
.wsb_c03356{word-spacing:33.300288px;}
.ws9_c03356{word-spacing:34.836912px;}
.ws6_c03356{word-spacing:36.742464px;}
.ws1_c03356{word-spacing:37.759392px;}
.ws0_c03356{word-spacing:38.020752px;}
.ws3_c03356{word-spacing:39.218256px;}
.ws5_c03356{word-spacing:39.902544px;}
.ws7_c03356{word-spacing:42.026688px;}
._0_c03356{margin-left:-1.948320px;}
._2_c03356{width:1.482624px;}
._4_c03356{width:5.749920px;}
._1_c03356{width:50.252400px;}
._3_c03356{width:51.530688px;}
.fc0_c03356{color:rgb(0,0,0);}
.fs0_c03356{font-size:47.520000px;}
.fs1_c03356{font-size:60.480000px;}
.y0_c03356{bottom:0.000000px;}
.y19_c03356{bottom:146.998362px;}
.y1b_c03356{bottom:186.600234px;}
.y1a_c03356{bottom:196.320450px;}
.y18_c03356{bottom:275.878542px;}
.y17_c03356{bottom:356.878758px;}
.y15_c03356{bottom:406.559730px;}
.y11_c03356{bottom:424.560306px;}
.y16_c03356{bottom:458.759262px;}
.y14_c03356{bottom:491.879514px;}
.y13_c03356{bottom:509.880090px;}
.y10_c03356{bottom:543.000342px;}
.y12_c03356{bottom:559.559874px;}
.yf_c03356{bottom:577.560450px;}
.y1c_c03356{bottom:614.280450px;}
.yb_c03356{bottom:667.558326px;}
.yd_c03356{bottom:707.160234px;}
.yc_c03356{bottom:716.880450px;}
.ya_c03356{bottom:796.438506px;}
.y9_c03356{bottom:877.438722px;}
.y7_c03356{bottom:926.759730px;}
.y3_c03356{bottom:944.760306px;}
.y8_c03356{bottom:979.319226px;}
.y6_c03356{bottom:1012.439478px;}
.y5_c03356{bottom:1030.440054px;}
.y2_c03356{bottom:1063.560306px;}
.y4_c03356{bottom:1079.759874px;}
.y1_c03356{bottom:1097.760450px;}
.ye_c03356{bottom:1134.840450px;}
.h3_c03356{height:32.530781px;}
.h1_c03356{height:41.696016px;}
.h2_c03356{height:41.812031px;}
.h4_c03356{height:54.654737px;}
.h0_c03356{height:1263.000000px;}
.w1_c03356{width:892.500000px;}
.w0_c03356{width:892.830000px;}
.x0_c03356{left:0.000000px;}
.xd_c03356{left:117.000000px;}
.x8_c03356{left:440.999856px;}
.x4_c03356{left:445.680576px;}
.xb_c03356{left:451.080000px;}
.x7_c03356{left:455.399604px;}
.x5_c03356{left:461.880144px;}
.x1_c03356{left:463.320000px;}
.xa_c03356{left:483.480360px;}
.x9_c03356{left:492.119496px;}
.x6_c03356{left:493.200576px;}
.xc_c03356{left:506.880360px;}
.x3_c03356{left:511.919892px;}
.x2_c03356{left:526.679604px;}
@media print{
.v0_c03356{vertical-align:0.000000pt;}
.v1_c03356{vertical-align:1.279488pt;}
.ls7_c03356{letter-spacing:-0.544896pt;}
.ls9_c03356{letter-spacing:-0.511104pt;}
.lse_c03356{letter-spacing:-0.244992pt;}
.lsc_c03356{letter-spacing:-0.232320pt;}
.ls6_c03356{letter-spacing:-0.215424pt;}
.ls4_c03356{letter-spacing:-0.105600pt;}
.ls11_c03356{letter-spacing:0.000000pt;}
.ls1_c03356{letter-spacing:0.005376pt;}
.ls5_c03356{letter-spacing:0.114048pt;}
.lsb_c03356{letter-spacing:0.451968pt;}
.ls10_c03356{letter-spacing:0.456960pt;}
.lsd_c03356{letter-spacing:0.477312pt;}
.lsa_c03356{letter-spacing:0.515328pt;}
.lsf_c03356{letter-spacing:0.528000pt;}
.ls8_c03356{letter-spacing:0.532224pt;}
.ls2_c03356{letter-spacing:0.544896pt;}
.ls3_c03356{letter-spacing:0.637824pt;}
.ls0_c03356{letter-spacing:0.642048pt;}
.wsc_c03356{word-spacing:-13.445376pt;}
.wsa_c03356{word-spacing:-11.088000pt;}
.ws8_c03356{word-spacing:-11.075328pt;}
.wsd_c03356{word-spacing:-11.037312pt;}
.ws4_c03356{word-spacing:-10.344576pt;}
.ws2_c03356{word-spacing:-10.015104pt;}
.ws11_c03356{word-spacing:-0.963072pt;}
.wse_c03356{word-spacing:-0.865920pt;}
.ws14_c03356{word-spacing:-0.639744pt;}
.ws10_c03356{word-spacing:-0.105600pt;}
.ws12_c03356{word-spacing:-0.088704pt;}
.ws13_c03356{word-spacing:-0.076032pt;}
.wsf_c03356{word-spacing:0.000000pt;}
.wsb_c03356{word-spacing:29.600256pt;}
.ws9_c03356{word-spacing:30.966144pt;}
.ws6_c03356{word-spacing:32.659968pt;}
.ws1_c03356{word-spacing:33.563904pt;}
.ws0_c03356{word-spacing:33.796224pt;}
.ws3_c03356{word-spacing:34.860672pt;}
.ws5_c03356{word-spacing:35.468928pt;}
.ws7_c03356{word-spacing:37.357056pt;}
._0_c03356{margin-left:-1.731840pt;}
._2_c03356{width:1.317888pt;}
._4_c03356{width:5.111040pt;}
._1_c03356{width:44.668800pt;}
._3_c03356{width:45.805056pt;}
.fs0_c03356{font-size:42.240000pt;}
.fs1_c03356{font-size:53.760000pt;}
.y0_c03356{bottom:0.000000pt;}
.y19_c03356{bottom:130.665211pt;}
.y1b_c03356{bottom:165.866875pt;}
.y1a_c03356{bottom:174.507067pt;}
.y18_c03356{bottom:245.225371pt;}
.y17_c03356{bottom:317.225563pt;}
.y15_c03356{bottom:361.386427pt;}
.y11_c03356{bottom:377.386939pt;}
.y16_c03356{bottom:407.786011pt;}
.y14_c03356{bottom:437.226235pt;}
.y13_c03356{bottom:453.226747pt;}
.y10_c03356{bottom:482.666971pt;}
.y12_c03356{bottom:497.386555pt;}
.yf_c03356{bottom:513.387067pt;}
.y1c_c03356{bottom:546.027067pt;}
.yb_c03356{bottom:593.385179pt;}
.yd_c03356{bottom:628.586875pt;}
.yc_c03356{bottom:637.227067pt;}
.ya_c03356{bottom:707.945339pt;}
.y9_c03356{bottom:779.945531pt;}
.y7_c03356{bottom:823.786427pt;}
.y3_c03356{bottom:839.786939pt;}
.y8_c03356{bottom:870.505979pt;}
.y6_c03356{bottom:899.946203pt;}
.y5_c03356{bottom:915.946715pt;}
.y2_c03356{bottom:945.386939pt;}
.y4_c03356{bottom:959.786555pt;}
.y1_c03356{bottom:975.787067pt;}
.ye_c03356{bottom:1008.747067pt;}
.h3_c03356{height:28.916250pt;}
.h1_c03356{height:37.063125pt;}
.h2_c03356{height:37.166250pt;}
.h4_c03356{height:48.581988pt;}
.h0_c03356{height:1122.666667pt;}
.w1_c03356{width:793.333333pt;}
.w0_c03356{width:793.626667pt;}
.x0_c03356{left:0.000000pt;}
.xd_c03356{left:104.000000pt;}
.x8_c03356{left:391.999872pt;}
.x4_c03356{left:396.160512pt;}
.xb_c03356{left:400.960000pt;}
.x7_c03356{left:404.799648pt;}
.x5_c03356{left:410.560128pt;}
.x1_c03356{left:411.840000pt;}
.xa_c03356{left:429.760320pt;}
.x9_c03356{left:437.439552pt;}
.x6_c03356{left:438.400512pt;}
.xc_c03356{left:450.560320pt;}
.x3_c03356{left:455.039904pt;}
.x2_c03356{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03357 {
    display:none;
  }
  .loading-indicator_c03357.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03357 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03357 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03357" -> "#page-container .classname_c03357")
 */
.pf_c03357 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03357 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03357 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03357 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03357 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03357 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03357 {overflow:visible;}
  }
}
.c_c03357 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03357 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03357:after { /* webkit #35443 */
  content: '';
}
.t_c03357:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03357 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03357 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03357 { /* info for Javascript */
  display:none;
}
.l_c03357 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03357 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03357 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03357:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03357 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03357.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03357 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03357{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03357;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03357{font-family:ff1_c03357;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03357;src:url('chunks/assets/font_93d1c1b374380aa59eab60a4.woff2')format("woff");}.ff2_c03357{font-family:ff2_c03357;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03357;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03357{font-family:ff3_c03357;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03357{vertical-align:0.000000px;}
.v1_c03357{vertical-align:1.439424px;}
.ls7_c03357{letter-spacing:-0.613008px;}
.ls9_c03357{letter-spacing:-0.574992px;}
.lse_c03357{letter-spacing:-0.275616px;}
.lsc_c03357{letter-spacing:-0.261360px;}
.ls6_c03357{letter-spacing:-0.242352px;}
.ls4_c03357{letter-spacing:-0.118800px;}
.ls11_c03357{letter-spacing:0.000000px;}
.ls2_c03357{letter-spacing:0.006048px;}
.ls5_c03357{letter-spacing:0.128304px;}
.lsb_c03357{letter-spacing:0.508464px;}
.ls10_c03357{letter-spacing:0.514080px;}
.lsd_c03357{letter-spacing:0.536976px;}
.lsa_c03357{letter-spacing:0.579744px;}
.lsf_c03357{letter-spacing:0.594000px;}
.ls8_c03357{letter-spacing:0.598752px;}
.ls3_c03357{letter-spacing:0.613008px;}
.ls0_c03357{letter-spacing:0.717552px;}
.ls1_c03357{letter-spacing:0.722304px;}
.sc__c03357{text-shadow:none;}
.sc0_c03357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03357{-webkit-text-stroke:0px transparent;}
.sc0_c03357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03357{word-spacing:-15.126048px;}
.wsa_c03357{word-spacing:-12.474000px;}
.ws8_c03357{word-spacing:-12.459744px;}
.ws9_c03357{word-spacing:-12.416976px;}
.ws4_c03357{word-spacing:-11.637648px;}
.ws2_c03357{word-spacing:-11.266992px;}
.ws11_c03357{word-spacing:-1.083456px;}
.ws10_c03357{word-spacing:-1.078704px;}
.wsd_c03357{word-spacing:-0.974160px;}
.ws14_c03357{word-spacing:-0.719712px;}
.wsf_c03357{word-spacing:-0.118800px;}
.ws12_c03357{word-spacing:-0.099792px;}
.ws13_c03357{word-spacing:-0.085536px;}
.wse_c03357{word-spacing:0.000000px;}
.wsb_c03357{word-spacing:33.300288px;}
.ws6_c03357{word-spacing:36.742464px;}
.ws1_c03357{word-spacing:37.759392px;}
.ws0_c03357{word-spacing:38.020752px;}
.ws3_c03357{word-spacing:39.218256px;}
.ws5_c03357{word-spacing:39.902544px;}
.ws7_c03357{word-spacing:42.026688px;}
._0_c03357{margin-left:-1.948320px;}
._2_c03357{width:1.482624px;}
._4_c03357{width:5.749920px;}
._1_c03357{width:50.252400px;}
._3_c03357{width:51.530688px;}
.fc0_c03357{color:rgb(0,0,0);}
.fs0_c03357{font-size:47.520000px;}
.fs1_c03357{font-size:60.480000px;}
.y0_c03357{bottom:0.000000px;}
.y19_c03357{bottom:146.998362px;}
.y1b_c03357{bottom:186.600234px;}
.y1a_c03357{bottom:196.320450px;}
.y18_c03357{bottom:275.878542px;}
.y17_c03357{bottom:356.878758px;}
.y15_c03357{bottom:406.559730px;}
.y11_c03357{bottom:424.560306px;}
.y16_c03357{bottom:458.759262px;}
.y14_c03357{bottom:491.879514px;}
.y13_c03357{bottom:509.880090px;}
.y10_c03357{bottom:543.000342px;}
.y12_c03357{bottom:559.559874px;}
.yf_c03357{bottom:577.560450px;}
.y1c_c03357{bottom:614.280450px;}
.yb_c03357{bottom:667.558326px;}
.yd_c03357{bottom:707.160234px;}
.yc_c03357{bottom:716.880450px;}
.ya_c03357{bottom:796.438506px;}
.y9_c03357{bottom:877.438722px;}
.y7_c03357{bottom:926.759730px;}
.y3_c03357{bottom:944.760306px;}
.y8_c03357{bottom:979.319226px;}
.y6_c03357{bottom:1012.439478px;}
.y5_c03357{bottom:1030.440054px;}
.y2_c03357{bottom:1063.560306px;}
.y4_c03357{bottom:1079.759874px;}
.y1_c03357{bottom:1097.760450px;}
.ye_c03357{bottom:1134.840450px;}
.h3_c03357{height:32.530781px;}
.h1_c03357{height:41.696016px;}
.h2_c03357{height:41.812031px;}
.h4_c03357{height:54.654737px;}
.h0_c03357{height:1263.000000px;}
.w1_c03357{width:892.500000px;}
.w0_c03357{width:892.830000px;}
.x0_c03357{left:0.000000px;}
.xd_c03357{left:117.000000px;}
.x8_c03357{left:440.999856px;}
.x4_c03357{left:445.680576px;}
.xb_c03357{left:451.080000px;}
.x7_c03357{left:455.399604px;}
.x5_c03357{left:461.880144px;}
.x1_c03357{left:463.320000px;}
.xa_c03357{left:483.480360px;}
.x9_c03357{left:492.119496px;}
.x6_c03357{left:493.200576px;}
.xc_c03357{left:506.880360px;}
.x3_c03357{left:511.919892px;}
.x2_c03357{left:526.679604px;}
@media print{
.v0_c03357{vertical-align:0.000000pt;}
.v1_c03357{vertical-align:1.279488pt;}
.ls7_c03357{letter-spacing:-0.544896pt;}
.ls9_c03357{letter-spacing:-0.511104pt;}
.lse_c03357{letter-spacing:-0.244992pt;}
.lsc_c03357{letter-spacing:-0.232320pt;}
.ls6_c03357{letter-spacing:-0.215424pt;}
.ls4_c03357{letter-spacing:-0.105600pt;}
.ls11_c03357{letter-spacing:0.000000pt;}
.ls2_c03357{letter-spacing:0.005376pt;}
.ls5_c03357{letter-spacing:0.114048pt;}
.lsb_c03357{letter-spacing:0.451968pt;}
.ls10_c03357{letter-spacing:0.456960pt;}
.lsd_c03357{letter-spacing:0.477312pt;}
.lsa_c03357{letter-spacing:0.515328pt;}
.lsf_c03357{letter-spacing:0.528000pt;}
.ls8_c03357{letter-spacing:0.532224pt;}
.ls3_c03357{letter-spacing:0.544896pt;}
.ls0_c03357{letter-spacing:0.637824pt;}
.ls1_c03357{letter-spacing:0.642048pt;}
.wsc_c03357{word-spacing:-13.445376pt;}
.wsa_c03357{word-spacing:-11.088000pt;}
.ws8_c03357{word-spacing:-11.075328pt;}
.ws9_c03357{word-spacing:-11.037312pt;}
.ws4_c03357{word-spacing:-10.344576pt;}
.ws2_c03357{word-spacing:-10.015104pt;}
.ws11_c03357{word-spacing:-0.963072pt;}
.ws10_c03357{word-spacing:-0.958848pt;}
.wsd_c03357{word-spacing:-0.865920pt;}
.ws14_c03357{word-spacing:-0.639744pt;}
.wsf_c03357{word-spacing:-0.105600pt;}
.ws12_c03357{word-spacing:-0.088704pt;}
.ws13_c03357{word-spacing:-0.076032pt;}
.wse_c03357{word-spacing:0.000000pt;}
.wsb_c03357{word-spacing:29.600256pt;}
.ws6_c03357{word-spacing:32.659968pt;}
.ws1_c03357{word-spacing:33.563904pt;}
.ws0_c03357{word-spacing:33.796224pt;}
.ws3_c03357{word-spacing:34.860672pt;}
.ws5_c03357{word-spacing:35.468928pt;}
.ws7_c03357{word-spacing:37.357056pt;}
._0_c03357{margin-left:-1.731840pt;}
._2_c03357{width:1.317888pt;}
._4_c03357{width:5.111040pt;}
._1_c03357{width:44.668800pt;}
._3_c03357{width:45.805056pt;}
.fs0_c03357{font-size:42.240000pt;}
.fs1_c03357{font-size:53.760000pt;}
.y0_c03357{bottom:0.000000pt;}
.y19_c03357{bottom:130.665211pt;}
.y1b_c03357{bottom:165.866875pt;}
.y1a_c03357{bottom:174.507067pt;}
.y18_c03357{bottom:245.225371pt;}
.y17_c03357{bottom:317.225563pt;}
.y15_c03357{bottom:361.386427pt;}
.y11_c03357{bottom:377.386939pt;}
.y16_c03357{bottom:407.786011pt;}
.y14_c03357{bottom:437.226235pt;}
.y13_c03357{bottom:453.226747pt;}
.y10_c03357{bottom:482.666971pt;}
.y12_c03357{bottom:497.386555pt;}
.yf_c03357{bottom:513.387067pt;}
.y1c_c03357{bottom:546.027067pt;}
.yb_c03357{bottom:593.385179pt;}
.yd_c03357{bottom:628.586875pt;}
.yc_c03357{bottom:637.227067pt;}
.ya_c03357{bottom:707.945339pt;}
.y9_c03357{bottom:779.945531pt;}
.y7_c03357{bottom:823.786427pt;}
.y3_c03357{bottom:839.786939pt;}
.y8_c03357{bottom:870.505979pt;}
.y6_c03357{bottom:899.946203pt;}
.y5_c03357{bottom:915.946715pt;}
.y2_c03357{bottom:945.386939pt;}
.y4_c03357{bottom:959.786555pt;}
.y1_c03357{bottom:975.787067pt;}
.ye_c03357{bottom:1008.747067pt;}
.h3_c03357{height:28.916250pt;}
.h1_c03357{height:37.063125pt;}
.h2_c03357{height:37.166250pt;}
.h4_c03357{height:48.581988pt;}
.h0_c03357{height:1122.666667pt;}
.w1_c03357{width:793.333333pt;}
.w0_c03357{width:793.626667pt;}
.x0_c03357{left:0.000000pt;}
.xd_c03357{left:104.000000pt;}
.x8_c03357{left:391.999872pt;}
.x4_c03357{left:396.160512pt;}
.xb_c03357{left:400.960000pt;}
.x7_c03357{left:404.799648pt;}
.x5_c03357{left:410.560128pt;}
.x1_c03357{left:411.840000pt;}
.xa_c03357{left:429.760320pt;}
.x9_c03357{left:437.439552pt;}
.x6_c03357{left:438.400512pt;}
.xc_c03357{left:450.560320pt;}
.x3_c03357{left:455.039904pt;}
.x2_c03357{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03358 {
    display:none;
  }
  .loading-indicator_c03358.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03358 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03358 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03358" -> "#page-container .classname_c03358")
 */
.pf_c03358 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03358 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03358 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03358 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03358 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03358 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03358 {overflow:visible;}
  }
}
.c_c03358 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03358 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03358:after { /* webkit #35443 */
  content: '';
}
.t_c03358:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03358 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03358 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03358 { /* info for Javascript */
  display:none;
}
.l_c03358 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03358 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03358 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03358:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03358 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03358.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03358 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03358{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03358;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03358{font-family:ff1_c03358;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03358;src:url('chunks/assets/font_540695d2060f30ef8e10cfa2.woff2')format("woff");}.ff2_c03358{font-family:ff2_c03358;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03358;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03358{font-family:ff3_c03358;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03358{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03358{vertical-align:0.000000px;}
.v1_c03358{vertical-align:1.439424px;}
.ls12_c03358{letter-spacing:-0.755568px;}
.ls13_c03358{letter-spacing:-0.736560px;}
.ls7_c03358{letter-spacing:-0.613008px;}
.ls9_c03358{letter-spacing:-0.574992px;}
.lse_c03358{letter-spacing:-0.275616px;}
.ls14_c03358{letter-spacing:-0.270864px;}
.lsc_c03358{letter-spacing:-0.261360px;}
.ls6_c03358{letter-spacing:-0.242352px;}
.ls4_c03358{letter-spacing:-0.118800px;}
.ls11_c03358{letter-spacing:0.000000px;}
.ls2_c03358{letter-spacing:0.006048px;}
.ls5_c03358{letter-spacing:0.128304px;}
.lsb_c03358{letter-spacing:0.508464px;}
.ls10_c03358{letter-spacing:0.514080px;}
.lsd_c03358{letter-spacing:0.536976px;}
.lsa_c03358{letter-spacing:0.579744px;}
.lsf_c03358{letter-spacing:0.594000px;}
.ls8_c03358{letter-spacing:0.598752px;}
.ls3_c03358{letter-spacing:0.613008px;}
.ls0_c03358{letter-spacing:0.717552px;}
.ls1_c03358{letter-spacing:0.722304px;}
.sc__c03358{text-shadow:none;}
.sc0_c03358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03358{-webkit-text-stroke:0px transparent;}
.sc0_c03358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03358{word-spacing:-15.126048px;}
.wsa_c03358{word-spacing:-12.474000px;}
.ws8_c03358{word-spacing:-12.459744px;}
.ws9_c03358{word-spacing:-12.416976px;}
.ws4_c03358{word-spacing:-11.637648px;}
.ws2_c03358{word-spacing:-11.266992px;}
.ws14_c03358{word-spacing:-1.083456px;}
.ws13_c03358{word-spacing:-1.078704px;}
.ws10_c03358{word-spacing:-0.974160px;}
.ws17_c03358{word-spacing:-0.719712px;}
.ws12_c03358{word-spacing:-0.118800px;}
.ws15_c03358{word-spacing:-0.099792px;}
.ws19_c03358{word-spacing:-0.090288px;}
.ws16_c03358{word-spacing:-0.085536px;}
.ws11_c03358{word-spacing:0.000000px;}
.ws18_c03358{word-spacing:0.394416px;}
.wsf_c03358{word-spacing:6.629040px;}
.wsb_c03358{word-spacing:33.300288px;}
.wse_c03358{word-spacing:34.836912px;}
.wsd_c03358{word-spacing:36.143712px;}
.ws6_c03358{word-spacing:36.742464px;}
.ws1_c03358{word-spacing:37.759392px;}
.ws0_c03358{word-spacing:38.020752px;}
.ws3_c03358{word-spacing:39.218256px;}
.ws5_c03358{word-spacing:39.902544px;}
.ws7_c03358{word-spacing:42.026688px;}
._0_c03358{margin-left:-1.948320px;}
._2_c03358{width:1.482624px;}
._4_c03358{width:5.749920px;}
._6_c03358{width:19.982160px;}
._7_c03358{width:23.451120px;}
._5_c03358{width:24.691392px;}
._1_c03358{width:50.252400px;}
._3_c03358{width:51.530688px;}
.fc0_c03358{color:rgb(0,0,0);}
.fs0_c03358{font-size:47.520000px;}
.fs1_c03358{font-size:60.480000px;}
.y0_c03358{bottom:0.000000px;}
.y1a_c03358{bottom:131.878686px;}
.y19_c03358{bottom:146.998362px;}
.y1c_c03358{bottom:186.600234px;}
.y1b_c03358{bottom:196.320450px;}
.y18_c03358{bottom:275.878542px;}
.y17_c03358{bottom:356.878758px;}
.y15_c03358{bottom:406.559730px;}
.y11_c03358{bottom:424.560306px;}
.y16_c03358{bottom:458.759262px;}
.y14_c03358{bottom:491.879514px;}
.y13_c03358{bottom:509.880090px;}
.y10_c03358{bottom:543.000342px;}
.y12_c03358{bottom:559.559874px;}
.yf_c03358{bottom:577.560450px;}
.y1d_c03358{bottom:614.280450px;}
.yb_c03358{bottom:667.558326px;}
.yd_c03358{bottom:707.160234px;}
.yc_c03358{bottom:716.880450px;}
.ya_c03358{bottom:796.438506px;}
.y9_c03358{bottom:877.438722px;}
.y7_c03358{bottom:926.759730px;}
.y3_c03358{bottom:944.760306px;}
.y8_c03358{bottom:979.319226px;}
.y6_c03358{bottom:1012.439478px;}
.y5_c03358{bottom:1030.440054px;}
.y2_c03358{bottom:1063.560306px;}
.y4_c03358{bottom:1079.759874px;}
.y1_c03358{bottom:1097.760450px;}
.ye_c03358{bottom:1134.840450px;}
.h3_c03358{height:32.530781px;}
.h1_c03358{height:41.696016px;}
.h2_c03358{height:41.812031px;}
.h4_c03358{height:54.654737px;}
.h0_c03358{height:1263.000000px;}
.w1_c03358{width:892.500000px;}
.w0_c03358{width:892.830000px;}
.x0_c03358{left:0.000000px;}
.xd_c03358{left:117.000000px;}
.x8_c03358{left:440.999856px;}
.x4_c03358{left:445.680576px;}
.xb_c03358{left:451.080000px;}
.x7_c03358{left:455.399604px;}
.x5_c03358{left:461.880144px;}
.x1_c03358{left:463.320000px;}
.xa_c03358{left:483.480360px;}
.x9_c03358{left:492.119496px;}
.x6_c03358{left:493.200576px;}
.xc_c03358{left:506.880360px;}
.x3_c03358{left:511.919892px;}
.x2_c03358{left:526.679604px;}
.xe_c03358{left:569.880036px;}
@media print{
.v0_c03358{vertical-align:0.000000pt;}
.v1_c03358{vertical-align:1.279488pt;}
.ls12_c03358{letter-spacing:-0.671616pt;}
.ls13_c03358{letter-spacing:-0.654720pt;}
.ls7_c03358{letter-spacing:-0.544896pt;}
.ls9_c03358{letter-spacing:-0.511104pt;}
.lse_c03358{letter-spacing:-0.244992pt;}
.ls14_c03358{letter-spacing:-0.240768pt;}
.lsc_c03358{letter-spacing:-0.232320pt;}
.ls6_c03358{letter-spacing:-0.215424pt;}
.ls4_c03358{letter-spacing:-0.105600pt;}
.ls11_c03358{letter-spacing:0.000000pt;}
.ls2_c03358{letter-spacing:0.005376pt;}
.ls5_c03358{letter-spacing:0.114048pt;}
.lsb_c03358{letter-spacing:0.451968pt;}
.ls10_c03358{letter-spacing:0.456960pt;}
.lsd_c03358{letter-spacing:0.477312pt;}
.lsa_c03358{letter-spacing:0.515328pt;}
.lsf_c03358{letter-spacing:0.528000pt;}
.ls8_c03358{letter-spacing:0.532224pt;}
.ls3_c03358{letter-spacing:0.544896pt;}
.ls0_c03358{letter-spacing:0.637824pt;}
.ls1_c03358{letter-spacing:0.642048pt;}
.wsc_c03358{word-spacing:-13.445376pt;}
.wsa_c03358{word-spacing:-11.088000pt;}
.ws8_c03358{word-spacing:-11.075328pt;}
.ws9_c03358{word-spacing:-11.037312pt;}
.ws4_c03358{word-spacing:-10.344576pt;}
.ws2_c03358{word-spacing:-10.015104pt;}
.ws14_c03358{word-spacing:-0.963072pt;}
.ws13_c03358{word-spacing:-0.958848pt;}
.ws10_c03358{word-spacing:-0.865920pt;}
.ws17_c03358{word-spacing:-0.639744pt;}
.ws12_c03358{word-spacing:-0.105600pt;}
.ws15_c03358{word-spacing:-0.088704pt;}
.ws19_c03358{word-spacing:-0.080256pt;}
.ws16_c03358{word-spacing:-0.076032pt;}
.ws11_c03358{word-spacing:0.000000pt;}
.ws18_c03358{word-spacing:0.350592pt;}
.wsf_c03358{word-spacing:5.892480pt;}
.wsb_c03358{word-spacing:29.600256pt;}
.wse_c03358{word-spacing:30.966144pt;}
.wsd_c03358{word-spacing:32.127744pt;}
.ws6_c03358{word-spacing:32.659968pt;}
.ws1_c03358{word-spacing:33.563904pt;}
.ws0_c03358{word-spacing:33.796224pt;}
.ws3_c03358{word-spacing:34.860672pt;}
.ws5_c03358{word-spacing:35.468928pt;}
.ws7_c03358{word-spacing:37.357056pt;}
._0_c03358{margin-left:-1.731840pt;}
._2_c03358{width:1.317888pt;}
._4_c03358{width:5.111040pt;}
._6_c03358{width:17.761920pt;}
._7_c03358{width:20.845440pt;}
._5_c03358{width:21.947904pt;}
._1_c03358{width:44.668800pt;}
._3_c03358{width:45.805056pt;}
.fs0_c03358{font-size:42.240000pt;}
.fs1_c03358{font-size:53.760000pt;}
.y0_c03358{bottom:0.000000pt;}
.y1a_c03358{bottom:117.225499pt;}
.y19_c03358{bottom:130.665211pt;}
.y1c_c03358{bottom:165.866875pt;}
.y1b_c03358{bottom:174.507067pt;}
.y18_c03358{bottom:245.225371pt;}
.y17_c03358{bottom:317.225563pt;}
.y15_c03358{bottom:361.386427pt;}
.y11_c03358{bottom:377.386939pt;}
.y16_c03358{bottom:407.786011pt;}
.y14_c03358{bottom:437.226235pt;}
.y13_c03358{bottom:453.226747pt;}
.y10_c03358{bottom:482.666971pt;}
.y12_c03358{bottom:497.386555pt;}
.yf_c03358{bottom:513.387067pt;}
.y1d_c03358{bottom:546.027067pt;}
.yb_c03358{bottom:593.385179pt;}
.yd_c03358{bottom:628.586875pt;}
.yc_c03358{bottom:637.227067pt;}
.ya_c03358{bottom:707.945339pt;}
.y9_c03358{bottom:779.945531pt;}
.y7_c03358{bottom:823.786427pt;}
.y3_c03358{bottom:839.786939pt;}
.y8_c03358{bottom:870.505979pt;}
.y6_c03358{bottom:899.946203pt;}
.y5_c03358{bottom:915.946715pt;}
.y2_c03358{bottom:945.386939pt;}
.y4_c03358{bottom:959.786555pt;}
.y1_c03358{bottom:975.787067pt;}
.ye_c03358{bottom:1008.747067pt;}
.h3_c03358{height:28.916250pt;}
.h1_c03358{height:37.063125pt;}
.h2_c03358{height:37.166250pt;}
.h4_c03358{height:48.581988pt;}
.h0_c03358{height:1122.666667pt;}
.w1_c03358{width:793.333333pt;}
.w0_c03358{width:793.626667pt;}
.x0_c03358{left:0.000000pt;}
.xd_c03358{left:104.000000pt;}
.x8_c03358{left:391.999872pt;}
.x4_c03358{left:396.160512pt;}
.xb_c03358{left:400.960000pt;}
.x7_c03358{left:404.799648pt;}
.x5_c03358{left:410.560128pt;}
.x1_c03358{left:411.840000pt;}
.xa_c03358{left:429.760320pt;}
.x9_c03358{left:437.439552pt;}
.x6_c03358{left:438.400512pt;}
.xc_c03358{left:450.560320pt;}
.x3_c03358{left:455.039904pt;}
.x2_c03358{left:468.159648pt;}
.xe_c03358{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03359 {
    display:none;
  }
  .loading-indicator_c03359.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03359 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03359 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03359" -> "#page-container .classname_c03359")
 */
.pf_c03359 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03359 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03359 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03359 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03359 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03359 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03359 {overflow:visible;}
  }
}
.c_c03359 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03359 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03359:after { /* webkit #35443 */
  content: '';
}
.t_c03359:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03359 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03359 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03359 { /* info for Javascript */
  display:none;
}
.l_c03359 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03359 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03359 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03359:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03359 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03359.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03359 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03359{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03359;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03359{font-family:ff1_c03359;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03359;src:url('chunks/assets/font_54f32f856dca02a94e4db6c2.woff2')format("woff");}.ff2_c03359{font-family:ff2_c03359;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03359;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03359{font-family:ff3_c03359;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03359{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03359{vertical-align:0.000000px;}
.v1_c03359{vertical-align:1.439424px;}
.ls12_c03359{letter-spacing:-0.793584px;}
.ls13_c03359{letter-spacing:-0.736560px;}
.ls7_c03359{letter-spacing:-0.613008px;}
.ls9_c03359{letter-spacing:-0.574992px;}
.lse_c03359{letter-spacing:-0.275616px;}
.ls14_c03359{letter-spacing:-0.270864px;}
.lsc_c03359{letter-spacing:-0.261360px;}
.ls6_c03359{letter-spacing:-0.242352px;}
.ls4_c03359{letter-spacing:-0.118800px;}
.ls11_c03359{letter-spacing:0.000000px;}
.ls2_c03359{letter-spacing:0.006048px;}
.ls5_c03359{letter-spacing:0.128304px;}
.lsb_c03359{letter-spacing:0.508464px;}
.ls10_c03359{letter-spacing:0.514080px;}
.lsd_c03359{letter-spacing:0.536976px;}
.lsa_c03359{letter-spacing:0.579744px;}
.lsf_c03359{letter-spacing:0.594000px;}
.ls8_c03359{letter-spacing:0.598752px;}
.ls3_c03359{letter-spacing:0.613008px;}
.ls0_c03359{letter-spacing:0.717552px;}
.ls1_c03359{letter-spacing:0.722304px;}
.sc__c03359{text-shadow:none;}
.sc0_c03359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03359{-webkit-text-stroke:0px transparent;}
.sc0_c03359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03359{word-spacing:-15.126048px;}
.wsa_c03359{word-spacing:-12.474000px;}
.ws8_c03359{word-spacing:-12.459744px;}
.ws9_c03359{word-spacing:-12.416976px;}
.ws4_c03359{word-spacing:-11.637648px;}
.ws2_c03359{word-spacing:-11.266992px;}
.ws13_c03359{word-spacing:-1.083456px;}
.ws12_c03359{word-spacing:-1.078704px;}
.wsf_c03359{word-spacing:-0.974160px;}
.ws16_c03359{word-spacing:-0.719712px;}
.ws11_c03359{word-spacing:-0.118800px;}
.ws14_c03359{word-spacing:-0.099792px;}
.ws18_c03359{word-spacing:-0.090288px;}
.ws15_c03359{word-spacing:-0.085536px;}
.ws10_c03359{word-spacing:0.000000px;}
.ws17_c03359{word-spacing:0.432432px;}
.wse_c03359{word-spacing:6.629040px;}
.wsb_c03359{word-spacing:33.300288px;}
.wsd_c03359{word-spacing:34.836912px;}
.ws6_c03359{word-spacing:36.742464px;}
.ws1_c03359{word-spacing:37.759392px;}
.ws0_c03359{word-spacing:38.020752px;}
.ws3_c03359{word-spacing:39.218256px;}
.ws5_c03359{word-spacing:39.902544px;}
.ws7_c03359{word-spacing:42.026688px;}
._0_c03359{margin-left:-1.948320px;}
._2_c03359{width:1.482624px;}
._4_c03359{width:5.749920px;}
._6_c03359{width:19.982160px;}
._7_c03359{width:23.451120px;}
._5_c03359{width:24.691392px;}
._1_c03359{width:50.252400px;}
._3_c03359{width:51.530688px;}
.fc0_c03359{color:rgb(0,0,0);}
.fs0_c03359{font-size:47.520000px;}
.fs1_c03359{font-size:60.480000px;}
.y0_c03359{bottom:0.000000px;}
.y1a_c03359{bottom:131.878686px;}
.y19_c03359{bottom:146.998362px;}
.y1c_c03359{bottom:186.600234px;}
.y1b_c03359{bottom:196.320450px;}
.y18_c03359{bottom:275.878542px;}
.y17_c03359{bottom:356.878758px;}
.y15_c03359{bottom:406.559730px;}
.y11_c03359{bottom:424.560306px;}
.y16_c03359{bottom:458.759262px;}
.y14_c03359{bottom:491.879514px;}
.y13_c03359{bottom:509.880090px;}
.y10_c03359{bottom:543.000342px;}
.y12_c03359{bottom:559.559874px;}
.yf_c03359{bottom:577.560450px;}
.y1d_c03359{bottom:614.280450px;}
.yb_c03359{bottom:667.558326px;}
.yd_c03359{bottom:707.160234px;}
.yc_c03359{bottom:716.880450px;}
.ya_c03359{bottom:796.438506px;}
.y9_c03359{bottom:877.438722px;}
.y7_c03359{bottom:926.759730px;}
.y3_c03359{bottom:944.760306px;}
.y8_c03359{bottom:979.319226px;}
.y6_c03359{bottom:1012.439478px;}
.y5_c03359{bottom:1030.440054px;}
.y2_c03359{bottom:1063.560306px;}
.y4_c03359{bottom:1079.759874px;}
.y1_c03359{bottom:1097.760450px;}
.ye_c03359{bottom:1134.840450px;}
.h3_c03359{height:32.530781px;}
.h1_c03359{height:41.696016px;}
.h2_c03359{height:41.812031px;}
.h4_c03359{height:54.654737px;}
.h0_c03359{height:1263.000000px;}
.w1_c03359{width:892.500000px;}
.w0_c03359{width:892.830000px;}
.x0_c03359{left:0.000000px;}
.xd_c03359{left:117.000000px;}
.x8_c03359{left:440.999856px;}
.x4_c03359{left:445.680576px;}
.xb_c03359{left:451.080000px;}
.x7_c03359{left:455.399604px;}
.x5_c03359{left:461.880144px;}
.x1_c03359{left:463.320000px;}
.xa_c03359{left:483.480360px;}
.x9_c03359{left:492.119496px;}
.x6_c03359{left:493.200576px;}
.xc_c03359{left:506.880360px;}
.x3_c03359{left:511.919892px;}
.x2_c03359{left:526.679604px;}
.xe_c03359{left:569.880036px;}
@media print{
.v0_c03359{vertical-align:0.000000pt;}
.v1_c03359{vertical-align:1.279488pt;}
.ls12_c03359{letter-spacing:-0.705408pt;}
.ls13_c03359{letter-spacing:-0.654720pt;}
.ls7_c03359{letter-spacing:-0.544896pt;}
.ls9_c03359{letter-spacing:-0.511104pt;}
.lse_c03359{letter-spacing:-0.244992pt;}
.ls14_c03359{letter-spacing:-0.240768pt;}
.lsc_c03359{letter-spacing:-0.232320pt;}
.ls6_c03359{letter-spacing:-0.215424pt;}
.ls4_c03359{letter-spacing:-0.105600pt;}
.ls11_c03359{letter-spacing:0.000000pt;}
.ls2_c03359{letter-spacing:0.005376pt;}
.ls5_c03359{letter-spacing:0.114048pt;}
.lsb_c03359{letter-spacing:0.451968pt;}
.ls10_c03359{letter-spacing:0.456960pt;}
.lsd_c03359{letter-spacing:0.477312pt;}
.lsa_c03359{letter-spacing:0.515328pt;}
.lsf_c03359{letter-spacing:0.528000pt;}
.ls8_c03359{letter-spacing:0.532224pt;}
.ls3_c03359{letter-spacing:0.544896pt;}
.ls0_c03359{letter-spacing:0.637824pt;}
.ls1_c03359{letter-spacing:0.642048pt;}
.wsc_c03359{word-spacing:-13.445376pt;}
.wsa_c03359{word-spacing:-11.088000pt;}
.ws8_c03359{word-spacing:-11.075328pt;}
.ws9_c03359{word-spacing:-11.037312pt;}
.ws4_c03359{word-spacing:-10.344576pt;}
.ws2_c03359{word-spacing:-10.015104pt;}
.ws13_c03359{word-spacing:-0.963072pt;}
.ws12_c03359{word-spacing:-0.958848pt;}
.wsf_c03359{word-spacing:-0.865920pt;}
.ws16_c03359{word-spacing:-0.639744pt;}
.ws11_c03359{word-spacing:-0.105600pt;}
.ws14_c03359{word-spacing:-0.088704pt;}
.ws18_c03359{word-spacing:-0.080256pt;}
.ws15_c03359{word-spacing:-0.076032pt;}
.ws10_c03359{word-spacing:0.000000pt;}
.ws17_c03359{word-spacing:0.384384pt;}
.wse_c03359{word-spacing:5.892480pt;}
.wsb_c03359{word-spacing:29.600256pt;}
.wsd_c03359{word-spacing:30.966144pt;}
.ws6_c03359{word-spacing:32.659968pt;}
.ws1_c03359{word-spacing:33.563904pt;}
.ws0_c03359{word-spacing:33.796224pt;}
.ws3_c03359{word-spacing:34.860672pt;}
.ws5_c03359{word-spacing:35.468928pt;}
.ws7_c03359{word-spacing:37.357056pt;}
._0_c03359{margin-left:-1.731840pt;}
._2_c03359{width:1.317888pt;}
._4_c03359{width:5.111040pt;}
._6_c03359{width:17.761920pt;}
._7_c03359{width:20.845440pt;}
._5_c03359{width:21.947904pt;}
._1_c03359{width:44.668800pt;}
._3_c03359{width:45.805056pt;}
.fs0_c03359{font-size:42.240000pt;}
.fs1_c03359{font-size:53.760000pt;}
.y0_c03359{bottom:0.000000pt;}
.y1a_c03359{bottom:117.225499pt;}
.y19_c03359{bottom:130.665211pt;}
.y1c_c03359{bottom:165.866875pt;}
.y1b_c03359{bottom:174.507067pt;}
.y18_c03359{bottom:245.225371pt;}
.y17_c03359{bottom:317.225563pt;}
.y15_c03359{bottom:361.386427pt;}
.y11_c03359{bottom:377.386939pt;}
.y16_c03359{bottom:407.786011pt;}
.y14_c03359{bottom:437.226235pt;}
.y13_c03359{bottom:453.226747pt;}
.y10_c03359{bottom:482.666971pt;}
.y12_c03359{bottom:497.386555pt;}
.yf_c03359{bottom:513.387067pt;}
.y1d_c03359{bottom:546.027067pt;}
.yb_c03359{bottom:593.385179pt;}
.yd_c03359{bottom:628.586875pt;}
.yc_c03359{bottom:637.227067pt;}
.ya_c03359{bottom:707.945339pt;}
.y9_c03359{bottom:779.945531pt;}
.y7_c03359{bottom:823.786427pt;}
.y3_c03359{bottom:839.786939pt;}
.y8_c03359{bottom:870.505979pt;}
.y6_c03359{bottom:899.946203pt;}
.y5_c03359{bottom:915.946715pt;}
.y2_c03359{bottom:945.386939pt;}
.y4_c03359{bottom:959.786555pt;}
.y1_c03359{bottom:975.787067pt;}
.ye_c03359{bottom:1008.747067pt;}
.h3_c03359{height:28.916250pt;}
.h1_c03359{height:37.063125pt;}
.h2_c03359{height:37.166250pt;}
.h4_c03359{height:48.581988pt;}
.h0_c03359{height:1122.666667pt;}
.w1_c03359{width:793.333333pt;}
.w0_c03359{width:793.626667pt;}
.x0_c03359{left:0.000000pt;}
.xd_c03359{left:104.000000pt;}
.x8_c03359{left:391.999872pt;}
.x4_c03359{left:396.160512pt;}
.xb_c03359{left:400.960000pt;}
.x7_c03359{left:404.799648pt;}
.x5_c03359{left:410.560128pt;}
.x1_c03359{left:411.840000pt;}
.xa_c03359{left:429.760320pt;}
.x9_c03359{left:437.439552pt;}
.x6_c03359{left:438.400512pt;}
.xc_c03359{left:450.560320pt;}
.x3_c03359{left:455.039904pt;}
.x2_c03359{left:468.159648pt;}
.xe_c03359{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03360 {
    display:none;
  }
  .loading-indicator_c03360.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03360 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03360 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03360" -> "#page-container .classname_c03360")
 */
.pf_c03360 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03360 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03360 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03360 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03360 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03360 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03360 {overflow:visible;}
  }
}
.c_c03360 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03360 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03360:after { /* webkit #35443 */
  content: '';
}
.t_c03360:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03360 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03360 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03360 { /* info for Javascript */
  display:none;
}
.l_c03360 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03360 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03360 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03360:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03360 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03360.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03360 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03360{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03360;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03360{font-family:ff1_c03360;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03360;src:url('chunks/assets/font_1f41b984a9ece161513ad2e2.woff2')format("woff");}.ff2_c03360{font-family:ff2_c03360;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03360;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03360{font-family:ff3_c03360;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03360{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03360{vertical-align:0.000000px;}
.v1_c03360{vertical-align:1.439424px;}
.ls7_c03360{letter-spacing:-0.613008px;}
.ls9_c03360{letter-spacing:-0.574992px;}
.lse_c03360{letter-spacing:-0.275616px;}
.lsc_c03360{letter-spacing:-0.261360px;}
.ls6_c03360{letter-spacing:-0.242352px;}
.ls4_c03360{letter-spacing:-0.118800px;}
.ls11_c03360{letter-spacing:0.000000px;}
.ls1_c03360{letter-spacing:0.006048px;}
.ls5_c03360{letter-spacing:0.128304px;}
.lsb_c03360{letter-spacing:0.508464px;}
.ls10_c03360{letter-spacing:0.514080px;}
.lsd_c03360{letter-spacing:0.536976px;}
.lsa_c03360{letter-spacing:0.579744px;}
.lsf_c03360{letter-spacing:0.594000px;}
.ls8_c03360{letter-spacing:0.598752px;}
.ls2_c03360{letter-spacing:0.613008px;}
.ls3_c03360{letter-spacing:0.717552px;}
.ls0_c03360{letter-spacing:0.722304px;}
.sc__c03360{text-shadow:none;}
.sc0_c03360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03360{-webkit-text-stroke:0px transparent;}
.sc0_c03360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03360{word-spacing:-15.126048px;}
.wsa_c03360{word-spacing:-12.474000px;}
.ws8_c03360{word-spacing:-12.459744px;}
.ws9_c03360{word-spacing:-12.416976px;}
.ws4_c03360{word-spacing:-11.637648px;}
.ws2_c03360{word-spacing:-11.266992px;}
.ws10_c03360{word-spacing:-1.083456px;}
.wsd_c03360{word-spacing:-0.974160px;}
.ws13_c03360{word-spacing:-0.719712px;}
.wsf_c03360{word-spacing:-0.118800px;}
.ws11_c03360{word-spacing:-0.099792px;}
.ws12_c03360{word-spacing:-0.085536px;}
.wse_c03360{word-spacing:0.000000px;}
.wsb_c03360{word-spacing:33.300288px;}
.ws6_c03360{word-spacing:36.742464px;}
.ws1_c03360{word-spacing:37.759392px;}
.ws0_c03360{word-spacing:38.020752px;}
.ws3_c03360{word-spacing:39.218256px;}
.ws5_c03360{word-spacing:39.902544px;}
.ws7_c03360{word-spacing:42.026688px;}
._0_c03360{margin-left:-1.948320px;}
._2_c03360{width:1.482624px;}
._4_c03360{width:5.749920px;}
._1_c03360{width:50.252400px;}
._3_c03360{width:51.530688px;}
.fc0_c03360{color:rgb(0,0,0);}
.fs0_c03360{font-size:47.520000px;}
.fs1_c03360{font-size:60.480000px;}
.y0_c03360{bottom:0.000000px;}
.y19_c03360{bottom:146.998362px;}
.y1b_c03360{bottom:186.600234px;}
.y1a_c03360{bottom:196.320450px;}
.y18_c03360{bottom:275.878542px;}
.y17_c03360{bottom:356.878758px;}
.y15_c03360{bottom:406.559730px;}
.y11_c03360{bottom:424.560306px;}
.y16_c03360{bottom:458.759262px;}
.y14_c03360{bottom:491.879514px;}
.y13_c03360{bottom:509.880090px;}
.y10_c03360{bottom:543.000342px;}
.y12_c03360{bottom:559.559874px;}
.yf_c03360{bottom:577.560450px;}
.y1c_c03360{bottom:614.280450px;}
.yb_c03360{bottom:667.558326px;}
.yd_c03360{bottom:707.160234px;}
.yc_c03360{bottom:716.880450px;}
.ya_c03360{bottom:796.438506px;}
.y9_c03360{bottom:877.438722px;}
.y7_c03360{bottom:926.759730px;}
.y3_c03360{bottom:944.760306px;}
.y8_c03360{bottom:979.319226px;}
.y6_c03360{bottom:1012.439478px;}
.y5_c03360{bottom:1030.440054px;}
.y2_c03360{bottom:1063.560306px;}
.y4_c03360{bottom:1079.759874px;}
.y1_c03360{bottom:1097.760450px;}
.ye_c03360{bottom:1134.840450px;}
.h3_c03360{height:32.530781px;}
.h1_c03360{height:41.696016px;}
.h2_c03360{height:41.812031px;}
.h4_c03360{height:54.654737px;}
.h0_c03360{height:1263.000000px;}
.w1_c03360{width:892.500000px;}
.w0_c03360{width:892.830000px;}
.x0_c03360{left:0.000000px;}
.xd_c03360{left:117.000000px;}
.x8_c03360{left:440.999856px;}
.x4_c03360{left:445.680576px;}
.xb_c03360{left:451.080000px;}
.x7_c03360{left:455.399604px;}
.x5_c03360{left:461.880144px;}
.x1_c03360{left:463.320000px;}
.xa_c03360{left:483.480360px;}
.x9_c03360{left:492.119496px;}
.x6_c03360{left:493.200576px;}
.xc_c03360{left:506.880360px;}
.x3_c03360{left:511.919892px;}
.x2_c03360{left:526.679604px;}
@media print{
.v0_c03360{vertical-align:0.000000pt;}
.v1_c03360{vertical-align:1.279488pt;}
.ls7_c03360{letter-spacing:-0.544896pt;}
.ls9_c03360{letter-spacing:-0.511104pt;}
.lse_c03360{letter-spacing:-0.244992pt;}
.lsc_c03360{letter-spacing:-0.232320pt;}
.ls6_c03360{letter-spacing:-0.215424pt;}
.ls4_c03360{letter-spacing:-0.105600pt;}
.ls11_c03360{letter-spacing:0.000000pt;}
.ls1_c03360{letter-spacing:0.005376pt;}
.ls5_c03360{letter-spacing:0.114048pt;}
.lsb_c03360{letter-spacing:0.451968pt;}
.ls10_c03360{letter-spacing:0.456960pt;}
.lsd_c03360{letter-spacing:0.477312pt;}
.lsa_c03360{letter-spacing:0.515328pt;}
.lsf_c03360{letter-spacing:0.528000pt;}
.ls8_c03360{letter-spacing:0.532224pt;}
.ls2_c03360{letter-spacing:0.544896pt;}
.ls3_c03360{letter-spacing:0.637824pt;}
.ls0_c03360{letter-spacing:0.642048pt;}
.wsc_c03360{word-spacing:-13.445376pt;}
.wsa_c03360{word-spacing:-11.088000pt;}
.ws8_c03360{word-spacing:-11.075328pt;}
.ws9_c03360{word-spacing:-11.037312pt;}
.ws4_c03360{word-spacing:-10.344576pt;}
.ws2_c03360{word-spacing:-10.015104pt;}
.ws10_c03360{word-spacing:-0.963072pt;}
.wsd_c03360{word-spacing:-0.865920pt;}
.ws13_c03360{word-spacing:-0.639744pt;}
.wsf_c03360{word-spacing:-0.105600pt;}
.ws11_c03360{word-spacing:-0.088704pt;}
.ws12_c03360{word-spacing:-0.076032pt;}
.wse_c03360{word-spacing:0.000000pt;}
.wsb_c03360{word-spacing:29.600256pt;}
.ws6_c03360{word-spacing:32.659968pt;}
.ws1_c03360{word-spacing:33.563904pt;}
.ws0_c03360{word-spacing:33.796224pt;}
.ws3_c03360{word-spacing:34.860672pt;}
.ws5_c03360{word-spacing:35.468928pt;}
.ws7_c03360{word-spacing:37.357056pt;}
._0_c03360{margin-left:-1.731840pt;}
._2_c03360{width:1.317888pt;}
._4_c03360{width:5.111040pt;}
._1_c03360{width:44.668800pt;}
._3_c03360{width:45.805056pt;}
.fs0_c03360{font-size:42.240000pt;}
.fs1_c03360{font-size:53.760000pt;}
.y0_c03360{bottom:0.000000pt;}
.y19_c03360{bottom:130.665211pt;}
.y1b_c03360{bottom:165.866875pt;}
.y1a_c03360{bottom:174.507067pt;}
.y18_c03360{bottom:245.225371pt;}
.y17_c03360{bottom:317.225563pt;}
.y15_c03360{bottom:361.386427pt;}
.y11_c03360{bottom:377.386939pt;}
.y16_c03360{bottom:407.786011pt;}
.y14_c03360{bottom:437.226235pt;}
.y13_c03360{bottom:453.226747pt;}
.y10_c03360{bottom:482.666971pt;}
.y12_c03360{bottom:497.386555pt;}
.yf_c03360{bottom:513.387067pt;}
.y1c_c03360{bottom:546.027067pt;}
.yb_c03360{bottom:593.385179pt;}
.yd_c03360{bottom:628.586875pt;}
.yc_c03360{bottom:637.227067pt;}
.ya_c03360{bottom:707.945339pt;}
.y9_c03360{bottom:779.945531pt;}
.y7_c03360{bottom:823.786427pt;}
.y3_c03360{bottom:839.786939pt;}
.y8_c03360{bottom:870.505979pt;}
.y6_c03360{bottom:899.946203pt;}
.y5_c03360{bottom:915.946715pt;}
.y2_c03360{bottom:945.386939pt;}
.y4_c03360{bottom:959.786555pt;}
.y1_c03360{bottom:975.787067pt;}
.ye_c03360{bottom:1008.747067pt;}
.h3_c03360{height:28.916250pt;}
.h1_c03360{height:37.063125pt;}
.h2_c03360{height:37.166250pt;}
.h4_c03360{height:48.581988pt;}
.h0_c03360{height:1122.666667pt;}
.w1_c03360{width:793.333333pt;}
.w0_c03360{width:793.626667pt;}
.x0_c03360{left:0.000000pt;}
.xd_c03360{left:104.000000pt;}
.x8_c03360{left:391.999872pt;}
.x4_c03360{left:396.160512pt;}
.xb_c03360{left:400.960000pt;}
.x7_c03360{left:404.799648pt;}
.x5_c03360{left:410.560128pt;}
.x1_c03360{left:411.840000pt;}
.xa_c03360{left:429.760320pt;}
.x9_c03360{left:437.439552pt;}
.x6_c03360{left:438.400512pt;}
.xc_c03360{left:450.560320pt;}
.x3_c03360{left:455.039904pt;}
.x2_c03360{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03361 {
    display:none;
  }
  .loading-indicator_c03361.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03361 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03361 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03361" -> "#page-container .classname_c03361")
 */
.pf_c03361 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03361 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03361.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03361 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03361 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03361 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03361 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03361 {overflow:visible;}
  }
}
.c_c03361 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03361 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03361:after { /* webkit #35443 */
  content: '';
}
.t_c03361:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03361 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03361 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03361 { /* info for Javascript */
  display:none;
}
.l_c03361 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03361 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03361 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03361:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03361 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03361.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03361.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03361 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03361{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03361;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03361{font-family:ff1_c03361;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03361;src:url('chunks/assets/font_94a629f4ea865c1fc1da102f.woff2')format("woff");}.ff2_c03361{font-family:ff2_c03361;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03361;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03361{font-family:ff3_c03361;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03361{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03361{vertical-align:0.000000px;}
.v1_c03361{vertical-align:1.439424px;}
.ls7_c03361{letter-spacing:-0.613008px;}
.ls9_c03361{letter-spacing:-0.574992px;}
.lse_c03361{letter-spacing:-0.275616px;}
.lsc_c03361{letter-spacing:-0.261360px;}
.ls6_c03361{letter-spacing:-0.242352px;}
.ls4_c03361{letter-spacing:-0.118800px;}
.ls11_c03361{letter-spacing:0.000000px;}
.ls1_c03361{letter-spacing:0.006048px;}
.ls5_c03361{letter-spacing:0.128304px;}
.lsb_c03361{letter-spacing:0.508464px;}
.ls10_c03361{letter-spacing:0.514080px;}
.lsd_c03361{letter-spacing:0.536976px;}
.lsa_c03361{letter-spacing:0.579744px;}
.lsf_c03361{letter-spacing:0.594000px;}
.ls8_c03361{letter-spacing:0.598752px;}
.ls2_c03361{letter-spacing:0.613008px;}
.ls3_c03361{letter-spacing:0.717552px;}
.ls0_c03361{letter-spacing:0.722304px;}
.sc__c03361{text-shadow:none;}
.sc0_c03361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03361{-webkit-text-stroke:0px transparent;}
.sc0_c03361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03361{word-spacing:-15.126048px;}
.wsa_c03361{word-spacing:-12.474000px;}
.ws8_c03361{word-spacing:-12.459744px;}
.ws9_c03361{word-spacing:-12.416976px;}
.ws4_c03361{word-spacing:-11.637648px;}
.ws2_c03361{word-spacing:-11.266992px;}
.ws10_c03361{word-spacing:-1.083456px;}
.wsd_c03361{word-spacing:-0.974160px;}
.ws13_c03361{word-spacing:-0.719712px;}
.wsf_c03361{word-spacing:-0.118800px;}
.ws11_c03361{word-spacing:-0.099792px;}
.ws12_c03361{word-spacing:-0.085536px;}
.wse_c03361{word-spacing:0.000000px;}
.wsb_c03361{word-spacing:33.300288px;}
.ws6_c03361{word-spacing:36.742464px;}
.ws1_c03361{word-spacing:37.759392px;}
.ws0_c03361{word-spacing:38.020752px;}
.ws3_c03361{word-spacing:39.218256px;}
.ws5_c03361{word-spacing:39.902544px;}
.ws7_c03361{word-spacing:42.026688px;}
._0_c03361{margin-left:-1.948320px;}
._2_c03361{width:1.482624px;}
._4_c03361{width:5.749920px;}
._1_c03361{width:50.252400px;}
._3_c03361{width:51.530688px;}
.fc0_c03361{color:rgb(0,0,0);}
.fs0_c03361{font-size:47.520000px;}
.fs1_c03361{font-size:60.480000px;}
.y0_c03361{bottom:0.000000px;}
.y19_c03361{bottom:146.998362px;}
.y1b_c03361{bottom:186.600234px;}
.y1a_c03361{bottom:196.320450px;}
.y18_c03361{bottom:275.878542px;}
.y17_c03361{bottom:356.878758px;}
.y15_c03361{bottom:406.559730px;}
.y11_c03361{bottom:424.560306px;}
.y16_c03361{bottom:458.759262px;}
.y14_c03361{bottom:491.879514px;}
.y13_c03361{bottom:509.880090px;}
.y10_c03361{bottom:543.000342px;}
.y12_c03361{bottom:559.559874px;}
.yf_c03361{bottom:577.560450px;}
.y1c_c03361{bottom:614.280450px;}
.yb_c03361{bottom:667.558326px;}
.yd_c03361{bottom:707.160234px;}
.yc_c03361{bottom:716.880450px;}
.ya_c03361{bottom:796.438506px;}
.y9_c03361{bottom:877.438722px;}
.y7_c03361{bottom:926.759730px;}
.y3_c03361{bottom:944.760306px;}
.y8_c03361{bottom:979.319226px;}
.y6_c03361{bottom:1012.439478px;}
.y5_c03361{bottom:1030.440054px;}
.y2_c03361{bottom:1063.560306px;}
.y4_c03361{bottom:1079.759874px;}
.y1_c03361{bottom:1097.760450px;}
.ye_c03361{bottom:1134.840450px;}
.h3_c03361{height:32.530781px;}
.h1_c03361{height:41.696016px;}
.h2_c03361{height:41.812031px;}
.h4_c03361{height:54.654737px;}
.h0_c03361{height:1263.000000px;}
.w1_c03361{width:892.500000px;}
.w0_c03361{width:892.830000px;}
.x0_c03361{left:0.000000px;}
.xd_c03361{left:117.000000px;}
.x8_c03361{left:440.999856px;}
.x4_c03361{left:445.680576px;}
.xb_c03361{left:451.080000px;}
.x7_c03361{left:455.399604px;}
.x5_c03361{left:461.880144px;}
.x1_c03361{left:463.320000px;}
.xa_c03361{left:483.480360px;}
.x9_c03361{left:492.119496px;}
.x6_c03361{left:493.200576px;}
.xc_c03361{left:506.880360px;}
.x3_c03361{left:511.919892px;}
.x2_c03361{left:526.679604px;}
@media print{
.v0_c03361{vertical-align:0.000000pt;}
.v1_c03361{vertical-align:1.279488pt;}
.ls7_c03361{letter-spacing:-0.544896pt;}
.ls9_c03361{letter-spacing:-0.511104pt;}
.lse_c03361{letter-spacing:-0.244992pt;}
.lsc_c03361{letter-spacing:-0.232320pt;}
.ls6_c03361{letter-spacing:-0.215424pt;}
.ls4_c03361{letter-spacing:-0.105600pt;}
.ls11_c03361{letter-spacing:0.000000pt;}
.ls1_c03361{letter-spacing:0.005376pt;}
.ls5_c03361{letter-spacing:0.114048pt;}
.lsb_c03361{letter-spacing:0.451968pt;}
.ls10_c03361{letter-spacing:0.456960pt;}
.lsd_c03361{letter-spacing:0.477312pt;}
.lsa_c03361{letter-spacing:0.515328pt;}
.lsf_c03361{letter-spacing:0.528000pt;}
.ls8_c03361{letter-spacing:0.532224pt;}
.ls2_c03361{letter-spacing:0.544896pt;}
.ls3_c03361{letter-spacing:0.637824pt;}
.ls0_c03361{letter-spacing:0.642048pt;}
.wsc_c03361{word-spacing:-13.445376pt;}
.wsa_c03361{word-spacing:-11.088000pt;}
.ws8_c03361{word-spacing:-11.075328pt;}
.ws9_c03361{word-spacing:-11.037312pt;}
.ws4_c03361{word-spacing:-10.344576pt;}
.ws2_c03361{word-spacing:-10.015104pt;}
.ws10_c03361{word-spacing:-0.963072pt;}
.wsd_c03361{word-spacing:-0.865920pt;}
.ws13_c03361{word-spacing:-0.639744pt;}
.wsf_c03361{word-spacing:-0.105600pt;}
.ws11_c03361{word-spacing:-0.088704pt;}
.ws12_c03361{word-spacing:-0.076032pt;}
.wse_c03361{word-spacing:0.000000pt;}
.wsb_c03361{word-spacing:29.600256pt;}
.ws6_c03361{word-spacing:32.659968pt;}
.ws1_c03361{word-spacing:33.563904pt;}
.ws0_c03361{word-spacing:33.796224pt;}
.ws3_c03361{word-spacing:34.860672pt;}
.ws5_c03361{word-spacing:35.468928pt;}
.ws7_c03361{word-spacing:37.357056pt;}
._0_c03361{margin-left:-1.731840pt;}
._2_c03361{width:1.317888pt;}
._4_c03361{width:5.111040pt;}
._1_c03361{width:44.668800pt;}
._3_c03361{width:45.805056pt;}
.fs0_c03361{font-size:42.240000pt;}
.fs1_c03361{font-size:53.760000pt;}
.y0_c03361{bottom:0.000000pt;}
.y19_c03361{bottom:130.665211pt;}
.y1b_c03361{bottom:165.866875pt;}
.y1a_c03361{bottom:174.507067pt;}
.y18_c03361{bottom:245.225371pt;}
.y17_c03361{bottom:317.225563pt;}
.y15_c03361{bottom:361.386427pt;}
.y11_c03361{bottom:377.386939pt;}
.y16_c03361{bottom:407.786011pt;}
.y14_c03361{bottom:437.226235pt;}
.y13_c03361{bottom:453.226747pt;}
.y10_c03361{bottom:482.666971pt;}
.y12_c03361{bottom:497.386555pt;}
.yf_c03361{bottom:513.387067pt;}
.y1c_c03361{bottom:546.027067pt;}
.yb_c03361{bottom:593.385179pt;}
.yd_c03361{bottom:628.586875pt;}
.yc_c03361{bottom:637.227067pt;}
.ya_c03361{bottom:707.945339pt;}
.y9_c03361{bottom:779.945531pt;}
.y7_c03361{bottom:823.786427pt;}
.y3_c03361{bottom:839.786939pt;}
.y8_c03361{bottom:870.505979pt;}
.y6_c03361{bottom:899.946203pt;}
.y5_c03361{bottom:915.946715pt;}
.y2_c03361{bottom:945.386939pt;}
.y4_c03361{bottom:959.786555pt;}
.y1_c03361{bottom:975.787067pt;}
.ye_c03361{bottom:1008.747067pt;}
.h3_c03361{height:28.916250pt;}
.h1_c03361{height:37.063125pt;}
.h2_c03361{height:37.166250pt;}
.h4_c03361{height:48.581988pt;}
.h0_c03361{height:1122.666667pt;}
.w1_c03361{width:793.333333pt;}
.w0_c03361{width:793.626667pt;}
.x0_c03361{left:0.000000pt;}
.xd_c03361{left:104.000000pt;}
.x8_c03361{left:391.999872pt;}
.x4_c03361{left:396.160512pt;}
.xb_c03361{left:400.960000pt;}
.x7_c03361{left:404.799648pt;}
.x5_c03361{left:410.560128pt;}
.x1_c03361{left:411.840000pt;}
.xa_c03361{left:429.760320pt;}
.x9_c03361{left:437.439552pt;}
.x6_c03361{left:438.400512pt;}
.xc_c03361{left:450.560320pt;}
.x3_c03361{left:455.039904pt;}
.x2_c03361{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03362 {
    display:none;
  }
  .loading-indicator_c03362.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03362 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03362 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03362" -> "#page-container .classname_c03362")
 */
.pf_c03362 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03362 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03362.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03362 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03362 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03362 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03362 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03362 {overflow:visible;}
  }
}
.c_c03362 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03362 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03362:after { /* webkit #35443 */
  content: '';
}
.t_c03362:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03362 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03362 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03362 { /* info for Javascript */
  display:none;
}
.l_c03362 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03362 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03362 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03362:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03362 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03362.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03362.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03362 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03362{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03362;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03362{font-family:ff1_c03362;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03362;src:url('chunks/assets/font_1ecc156e8a73ed064c1b4a83.woff2')format("woff");}.ff2_c03362{font-family:ff2_c03362;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03362;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03362{font-family:ff3_c03362;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03362{vertical-align:0.000000px;}
.v1_c03362{vertical-align:1.439424px;}
.lse_c03362{letter-spacing:-0.736560px;}
.ls7_c03362{letter-spacing:-0.613008px;}
.ls9_c03362{letter-spacing:-0.574992px;}
.lsf_c03362{letter-spacing:-0.270864px;}
.lsc_c03362{letter-spacing:-0.261360px;}
.ls6_c03362{letter-spacing:-0.242352px;}
.ls4_c03362{letter-spacing:-0.118800px;}
.ls12_c03362{letter-spacing:0.000000px;}
.ls1_c03362{letter-spacing:0.006048px;}
.ls5_c03362{letter-spacing:0.128304px;}
.lsb_c03362{letter-spacing:0.508464px;}
.ls11_c03362{letter-spacing:0.514080px;}
.lsd_c03362{letter-spacing:0.536976px;}
.lsa_c03362{letter-spacing:0.579744px;}
.ls10_c03362{letter-spacing:0.594000px;}
.ls8_c03362{letter-spacing:0.598752px;}
.ls2_c03362{letter-spacing:0.613008px;}
.ls3_c03362{letter-spacing:0.717552px;}
.ls0_c03362{letter-spacing:0.722304px;}
.sc__c03362{text-shadow:none;}
.sc0_c03362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03362{-webkit-text-stroke:0px transparent;}
.sc0_c03362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03362{word-spacing:-15.126048px;}
.wsa_c03362{word-spacing:-12.474000px;}
.ws6_c03362{word-spacing:-12.459744px;}
.ws4_c03362{word-spacing:-11.637648px;}
.ws2_c03362{word-spacing:-11.266992px;}
.ws10_c03362{word-spacing:-1.083456px;}
.wsd_c03362{word-spacing:-0.974160px;}
.ws14_c03362{word-spacing:-0.719712px;}
.wsf_c03362{word-spacing:-0.118800px;}
.ws11_c03362{word-spacing:-0.099792px;}
.ws12_c03362{word-spacing:-0.090288px;}
.ws13_c03362{word-spacing:-0.085536px;}
.wse_c03362{word-spacing:0.000000px;}
.ws9_c03362{word-spacing:6.629040px;}
.wsb_c03362{word-spacing:33.300288px;}
.ws8_c03362{word-spacing:34.836912px;}
.ws1_c03362{word-spacing:37.759392px;}
.ws0_c03362{word-spacing:38.020752px;}
.ws3_c03362{word-spacing:39.218256px;}
.ws5_c03362{word-spacing:39.902544px;}
.ws7_c03362{word-spacing:42.026688px;}
._0_c03362{margin-left:-1.948320px;}
._2_c03362{width:1.482624px;}
._4_c03362{width:5.749920px;}
._6_c03362{width:19.982160px;}
._7_c03362{width:23.451120px;}
._5_c03362{width:24.691392px;}
._1_c03362{width:50.252400px;}
._3_c03362{width:51.530688px;}
.fc0_c03362{color:rgb(0,0,0);}
.fs0_c03362{font-size:47.520000px;}
.fs1_c03362{font-size:60.480000px;}
.y0_c03362{bottom:0.000000px;}
.y1b_c03362{bottom:131.878686px;}
.y1a_c03362{bottom:146.998362px;}
.y1d_c03362{bottom:186.600234px;}
.y1c_c03362{bottom:196.320450px;}
.y19_c03362{bottom:275.878542px;}
.y18_c03362{bottom:356.878758px;}
.y16_c03362{bottom:406.559730px;}
.y12_c03362{bottom:424.560306px;}
.y17_c03362{bottom:458.759262px;}
.y15_c03362{bottom:491.879514px;}
.y14_c03362{bottom:509.880090px;}
.y11_c03362{bottom:543.000342px;}
.y13_c03362{bottom:559.559874px;}
.y10_c03362{bottom:577.560450px;}
.y1e_c03362{bottom:614.280450px;}
.yc_c03362{bottom:652.438650px;}
.yb_c03362{bottom:667.558326px;}
.ye_c03362{bottom:707.160234px;}
.yd_c03362{bottom:716.880450px;}
.ya_c03362{bottom:796.438506px;}
.y9_c03362{bottom:877.438722px;}
.y7_c03362{bottom:926.759730px;}
.y3_c03362{bottom:944.760306px;}
.y8_c03362{bottom:979.319226px;}
.y6_c03362{bottom:1012.439478px;}
.y5_c03362{bottom:1030.440054px;}
.y2_c03362{bottom:1063.560306px;}
.y4_c03362{bottom:1079.759874px;}
.y1_c03362{bottom:1097.760450px;}
.yf_c03362{bottom:1134.840450px;}
.h3_c03362{height:32.530781px;}
.h1_c03362{height:41.696016px;}
.h2_c03362{height:41.812031px;}
.h4_c03362{height:54.654737px;}
.h0_c03362{height:1263.000000px;}
.w1_c03362{width:892.500000px;}
.w0_c03362{width:892.830000px;}
.x0_c03362{left:0.000000px;}
.xe_c03362{left:117.000000px;}
.x8_c03362{left:440.999856px;}
.x4_c03362{left:445.680576px;}
.xc_c03362{left:451.080000px;}
.x7_c03362{left:455.399604px;}
.x5_c03362{left:461.880144px;}
.x1_c03362{left:463.320000px;}
.xa_c03362{left:483.480360px;}
.x9_c03362{left:492.119496px;}
.x6_c03362{left:493.200576px;}
.xd_c03362{left:506.880360px;}
.x3_c03362{left:511.919892px;}
.x2_c03362{left:526.679604px;}
.xb_c03362{left:569.880036px;}
@media print{
.v0_c03362{vertical-align:0.000000pt;}
.v1_c03362{vertical-align:1.279488pt;}
.lse_c03362{letter-spacing:-0.654720pt;}
.ls7_c03362{letter-spacing:-0.544896pt;}
.ls9_c03362{letter-spacing:-0.511104pt;}
.lsf_c03362{letter-spacing:-0.240768pt;}
.lsc_c03362{letter-spacing:-0.232320pt;}
.ls6_c03362{letter-spacing:-0.215424pt;}
.ls4_c03362{letter-spacing:-0.105600pt;}
.ls12_c03362{letter-spacing:0.000000pt;}
.ls1_c03362{letter-spacing:0.005376pt;}
.ls5_c03362{letter-spacing:0.114048pt;}
.lsb_c03362{letter-spacing:0.451968pt;}
.ls11_c03362{letter-spacing:0.456960pt;}
.lsd_c03362{letter-spacing:0.477312pt;}
.lsa_c03362{letter-spacing:0.515328pt;}
.ls10_c03362{letter-spacing:0.528000pt;}
.ls8_c03362{letter-spacing:0.532224pt;}
.ls2_c03362{letter-spacing:0.544896pt;}
.ls3_c03362{letter-spacing:0.637824pt;}
.ls0_c03362{letter-spacing:0.642048pt;}
.wsc_c03362{word-spacing:-13.445376pt;}
.wsa_c03362{word-spacing:-11.088000pt;}
.ws6_c03362{word-spacing:-11.075328pt;}
.ws4_c03362{word-spacing:-10.344576pt;}
.ws2_c03362{word-spacing:-10.015104pt;}
.ws10_c03362{word-spacing:-0.963072pt;}
.wsd_c03362{word-spacing:-0.865920pt;}
.ws14_c03362{word-spacing:-0.639744pt;}
.wsf_c03362{word-spacing:-0.105600pt;}
.ws11_c03362{word-spacing:-0.088704pt;}
.ws12_c03362{word-spacing:-0.080256pt;}
.ws13_c03362{word-spacing:-0.076032pt;}
.wse_c03362{word-spacing:0.000000pt;}
.ws9_c03362{word-spacing:5.892480pt;}
.wsb_c03362{word-spacing:29.600256pt;}
.ws8_c03362{word-spacing:30.966144pt;}
.ws1_c03362{word-spacing:33.563904pt;}
.ws0_c03362{word-spacing:33.796224pt;}
.ws3_c03362{word-spacing:34.860672pt;}
.ws5_c03362{word-spacing:35.468928pt;}
.ws7_c03362{word-spacing:37.357056pt;}
._0_c03362{margin-left:-1.731840pt;}
._2_c03362{width:1.317888pt;}
._4_c03362{width:5.111040pt;}
._6_c03362{width:17.761920pt;}
._7_c03362{width:20.845440pt;}
._5_c03362{width:21.947904pt;}
._1_c03362{width:44.668800pt;}
._3_c03362{width:45.805056pt;}
.fs0_c03362{font-size:42.240000pt;}
.fs1_c03362{font-size:53.760000pt;}
.y0_c03362{bottom:0.000000pt;}
.y1b_c03362{bottom:117.225499pt;}
.y1a_c03362{bottom:130.665211pt;}
.y1d_c03362{bottom:165.866875pt;}
.y1c_c03362{bottom:174.507067pt;}
.y19_c03362{bottom:245.225371pt;}
.y18_c03362{bottom:317.225563pt;}
.y16_c03362{bottom:361.386427pt;}
.y12_c03362{bottom:377.386939pt;}
.y17_c03362{bottom:407.786011pt;}
.y15_c03362{bottom:437.226235pt;}
.y14_c03362{bottom:453.226747pt;}
.y11_c03362{bottom:482.666971pt;}
.y13_c03362{bottom:497.386555pt;}
.y10_c03362{bottom:513.387067pt;}
.y1e_c03362{bottom:546.027067pt;}
.yc_c03362{bottom:579.945467pt;}
.yb_c03362{bottom:593.385179pt;}
.ye_c03362{bottom:628.586875pt;}
.yd_c03362{bottom:637.227067pt;}
.ya_c03362{bottom:707.945339pt;}
.y9_c03362{bottom:779.945531pt;}
.y7_c03362{bottom:823.786427pt;}
.y3_c03362{bottom:839.786939pt;}
.y8_c03362{bottom:870.505979pt;}
.y6_c03362{bottom:899.946203pt;}
.y5_c03362{bottom:915.946715pt;}
.y2_c03362{bottom:945.386939pt;}
.y4_c03362{bottom:959.786555pt;}
.y1_c03362{bottom:975.787067pt;}
.yf_c03362{bottom:1008.747067pt;}
.h3_c03362{height:28.916250pt;}
.h1_c03362{height:37.063125pt;}
.h2_c03362{height:37.166250pt;}
.h4_c03362{height:48.581988pt;}
.h0_c03362{height:1122.666667pt;}
.w1_c03362{width:793.333333pt;}
.w0_c03362{width:793.626667pt;}
.x0_c03362{left:0.000000pt;}
.xe_c03362{left:104.000000pt;}
.x8_c03362{left:391.999872pt;}
.x4_c03362{left:396.160512pt;}
.xc_c03362{left:400.960000pt;}
.x7_c03362{left:404.799648pt;}
.x5_c03362{left:410.560128pt;}
.x1_c03362{left:411.840000pt;}
.xa_c03362{left:429.760320pt;}
.x9_c03362{left:437.439552pt;}
.x6_c03362{left:438.400512pt;}
.xd_c03362{left:450.560320pt;}
.x3_c03362{left:455.039904pt;}
.x2_c03362{left:468.159648pt;}
.xb_c03362{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03363 {
    display:none;
  }
  .loading-indicator_c03363.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03363 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03363 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03363" -> "#page-container .classname_c03363")
 */
.pf_c03363 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03363 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03363.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03363 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03363 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03363 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03363 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03363 {overflow:visible;}
  }
}
.c_c03363 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03363 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03363:after { /* webkit #35443 */
  content: '';
}
.t_c03363:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03363 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03363 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03363 { /* info for Javascript */
  display:none;
}
.l_c03363 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03363 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03363 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03363:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03363 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03363.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03363.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03363 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03363{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03363;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03363{font-family:ff1_c03363;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03363;src:url('chunks/assets/font_2c31540680d9705562189787.woff2')format("woff");}.ff2_c03363{font-family:ff2_c03363;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03363;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03363{font-family:ff3_c03363;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03363{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03363{vertical-align:0.000000px;}
.v1_c03363{vertical-align:1.439424px;}
.ls10_c03363{letter-spacing:-0.736560px;}
.ls7_c03363{letter-spacing:-0.613008px;}
.ls9_c03363{letter-spacing:-0.574992px;}
.lsc_c03363{letter-spacing:-0.522720px;}
.ls15_c03363{letter-spacing:-0.494208px;}
.ls11_c03363{letter-spacing:-0.270864px;}
.lsd_c03363{letter-spacing:-0.261360px;}
.ls6_c03363{letter-spacing:-0.242352px;}
.ls4_c03363{letter-spacing:-0.118800px;}
.lse_c03363{letter-spacing:-0.047520px;}
.ls14_c03363{letter-spacing:0.000000px;}
.ls1_c03363{letter-spacing:0.006048px;}
.ls5_c03363{letter-spacing:0.128304px;}
.lsb_c03363{letter-spacing:0.508464px;}
.ls13_c03363{letter-spacing:0.514080px;}
.lsf_c03363{letter-spacing:0.536976px;}
.lsa_c03363{letter-spacing:0.579744px;}
.ls12_c03363{letter-spacing:0.594000px;}
.ls8_c03363{letter-spacing:0.598752px;}
.ls2_c03363{letter-spacing:0.613008px;}
.ls3_c03363{letter-spacing:0.717552px;}
.ls0_c03363{letter-spacing:0.722304px;}
.sc__c03363{text-shadow:none;}
.sc0_c03363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03363{-webkit-text-stroke:0px transparent;}
.sc0_c03363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c03363{word-spacing:-15.126048px;}
.wsb_c03363{word-spacing:-12.474000px;}
.ws6_c03363{word-spacing:-12.459744px;}
.ws4_c03363{word-spacing:-11.637648px;}
.ws2_c03363{word-spacing:-11.266992px;}
.ws11_c03363{word-spacing:-1.083456px;}
.wse_c03363{word-spacing:-0.974160px;}
.ws17_c03363{word-spacing:-0.719712px;}
.ws14_c03363{word-spacing:-0.313632px;}
.ws10_c03363{word-spacing:-0.118800px;}
.ws13_c03363{word-spacing:-0.099792px;}
.ws15_c03363{word-spacing:-0.090288px;}
.ws16_c03363{word-spacing:-0.085536px;}
.wsf_c03363{word-spacing:0.000000px;}
.ws18_c03363{word-spacing:0.133056px;}
.ws12_c03363{word-spacing:0.161568px;}
.wsa_c03363{word-spacing:6.629040px;}
.wsc_c03363{word-spacing:33.300288px;}
.ws9_c03363{word-spacing:34.836912px;}
.ws8_c03363{word-spacing:36.143712px;}
.ws1_c03363{word-spacing:37.759392px;}
.ws0_c03363{word-spacing:38.020752px;}
.ws3_c03363{word-spacing:39.218256px;}
.ws5_c03363{word-spacing:39.902544px;}
.ws7_c03363{word-spacing:42.026688px;}
._0_c03363{margin-left:-1.948320px;}
._2_c03363{width:1.482624px;}
._4_c03363{width:5.749920px;}
._6_c03363{width:19.982160px;}
._7_c03363{width:23.451120px;}
._5_c03363{width:24.691392px;}
._1_c03363{width:50.252400px;}
._3_c03363{width:51.530688px;}
.fc0_c03363{color:rgb(0,0,0);}
.fs0_c03363{font-size:47.520000px;}
.fs1_c03363{font-size:60.480000px;}
.y0_c03363{bottom:0.000000px;}
.y1b_c03363{bottom:131.878686px;}
.y1a_c03363{bottom:146.998362px;}
.y1d_c03363{bottom:186.600234px;}
.y1c_c03363{bottom:196.320450px;}
.y19_c03363{bottom:275.878542px;}
.y18_c03363{bottom:356.878758px;}
.y16_c03363{bottom:406.559730px;}
.y12_c03363{bottom:424.560306px;}
.y17_c03363{bottom:458.759262px;}
.y15_c03363{bottom:491.879514px;}
.y14_c03363{bottom:509.880090px;}
.y11_c03363{bottom:543.000342px;}
.y13_c03363{bottom:559.559874px;}
.y10_c03363{bottom:577.560450px;}
.y1e_c03363{bottom:614.280450px;}
.yc_c03363{bottom:652.438650px;}
.yb_c03363{bottom:667.558326px;}
.ye_c03363{bottom:707.160234px;}
.yd_c03363{bottom:716.880450px;}
.ya_c03363{bottom:796.438506px;}
.y9_c03363{bottom:877.438722px;}
.y7_c03363{bottom:926.759730px;}
.y3_c03363{bottom:944.760306px;}
.y8_c03363{bottom:979.319226px;}
.y6_c03363{bottom:1012.439478px;}
.y5_c03363{bottom:1030.440054px;}
.y2_c03363{bottom:1063.560306px;}
.y4_c03363{bottom:1079.759874px;}
.y1_c03363{bottom:1097.760450px;}
.yf_c03363{bottom:1134.840450px;}
.h3_c03363{height:32.530781px;}
.h1_c03363{height:41.696016px;}
.h2_c03363{height:41.812031px;}
.h4_c03363{height:54.654737px;}
.h0_c03363{height:1263.000000px;}
.w1_c03363{width:892.500000px;}
.w0_c03363{width:892.830000px;}
.x0_c03363{left:0.000000px;}
.xe_c03363{left:117.000000px;}
.x8_c03363{left:440.999856px;}
.x4_c03363{left:445.680576px;}
.xc_c03363{left:451.080000px;}
.x7_c03363{left:455.399604px;}
.x5_c03363{left:461.880144px;}
.x1_c03363{left:463.320000px;}
.xa_c03363{left:483.480360px;}
.x9_c03363{left:492.119496px;}
.x6_c03363{left:493.200576px;}
.xd_c03363{left:506.880360px;}
.x3_c03363{left:511.919892px;}
.x2_c03363{left:526.679604px;}
.xb_c03363{left:569.880036px;}
@media print{
.v0_c03363{vertical-align:0.000000pt;}
.v1_c03363{vertical-align:1.279488pt;}
.ls10_c03363{letter-spacing:-0.654720pt;}
.ls7_c03363{letter-spacing:-0.544896pt;}
.ls9_c03363{letter-spacing:-0.511104pt;}
.lsc_c03363{letter-spacing:-0.464640pt;}
.ls15_c03363{letter-spacing:-0.439296pt;}
.ls11_c03363{letter-spacing:-0.240768pt;}
.lsd_c03363{letter-spacing:-0.232320pt;}
.ls6_c03363{letter-spacing:-0.215424pt;}
.ls4_c03363{letter-spacing:-0.105600pt;}
.lse_c03363{letter-spacing:-0.042240pt;}
.ls14_c03363{letter-spacing:0.000000pt;}
.ls1_c03363{letter-spacing:0.005376pt;}
.ls5_c03363{letter-spacing:0.114048pt;}
.lsb_c03363{letter-spacing:0.451968pt;}
.ls13_c03363{letter-spacing:0.456960pt;}
.lsf_c03363{letter-spacing:0.477312pt;}
.lsa_c03363{letter-spacing:0.515328pt;}
.ls12_c03363{letter-spacing:0.528000pt;}
.ls8_c03363{letter-spacing:0.532224pt;}
.ls2_c03363{letter-spacing:0.544896pt;}
.ls3_c03363{letter-spacing:0.637824pt;}
.ls0_c03363{letter-spacing:0.642048pt;}
.wsd_c03363{word-spacing:-13.445376pt;}
.wsb_c03363{word-spacing:-11.088000pt;}
.ws6_c03363{word-spacing:-11.075328pt;}
.ws4_c03363{word-spacing:-10.344576pt;}
.ws2_c03363{word-spacing:-10.015104pt;}
.ws11_c03363{word-spacing:-0.963072pt;}
.wse_c03363{word-spacing:-0.865920pt;}
.ws17_c03363{word-spacing:-0.639744pt;}
.ws14_c03363{word-spacing:-0.278784pt;}
.ws10_c03363{word-spacing:-0.105600pt;}
.ws13_c03363{word-spacing:-0.088704pt;}
.ws15_c03363{word-spacing:-0.080256pt;}
.ws16_c03363{word-spacing:-0.076032pt;}
.wsf_c03363{word-spacing:0.000000pt;}
.ws18_c03363{word-spacing:0.118272pt;}
.ws12_c03363{word-spacing:0.143616pt;}
.wsa_c03363{word-spacing:5.892480pt;}
.wsc_c03363{word-spacing:29.600256pt;}
.ws9_c03363{word-spacing:30.966144pt;}
.ws8_c03363{word-spacing:32.127744pt;}
.ws1_c03363{word-spacing:33.563904pt;}
.ws0_c03363{word-spacing:33.796224pt;}
.ws3_c03363{word-spacing:34.860672pt;}
.ws5_c03363{word-spacing:35.468928pt;}
.ws7_c03363{word-spacing:37.357056pt;}
._0_c03363{margin-left:-1.731840pt;}
._2_c03363{width:1.317888pt;}
._4_c03363{width:5.111040pt;}
._6_c03363{width:17.761920pt;}
._7_c03363{width:20.845440pt;}
._5_c03363{width:21.947904pt;}
._1_c03363{width:44.668800pt;}
._3_c03363{width:45.805056pt;}
.fs0_c03363{font-size:42.240000pt;}
.fs1_c03363{font-size:53.760000pt;}
.y0_c03363{bottom:0.000000pt;}
.y1b_c03363{bottom:117.225499pt;}
.y1a_c03363{bottom:130.665211pt;}
.y1d_c03363{bottom:165.866875pt;}
.y1c_c03363{bottom:174.507067pt;}
.y19_c03363{bottom:245.225371pt;}
.y18_c03363{bottom:317.225563pt;}
.y16_c03363{bottom:361.386427pt;}
.y12_c03363{bottom:377.386939pt;}
.y17_c03363{bottom:407.786011pt;}
.y15_c03363{bottom:437.226235pt;}
.y14_c03363{bottom:453.226747pt;}
.y11_c03363{bottom:482.666971pt;}
.y13_c03363{bottom:497.386555pt;}
.y10_c03363{bottom:513.387067pt;}
.y1e_c03363{bottom:546.027067pt;}
.yc_c03363{bottom:579.945467pt;}
.yb_c03363{bottom:593.385179pt;}
.ye_c03363{bottom:628.586875pt;}
.yd_c03363{bottom:637.227067pt;}
.ya_c03363{bottom:707.945339pt;}
.y9_c03363{bottom:779.945531pt;}
.y7_c03363{bottom:823.786427pt;}
.y3_c03363{bottom:839.786939pt;}
.y8_c03363{bottom:870.505979pt;}
.y6_c03363{bottom:899.946203pt;}
.y5_c03363{bottom:915.946715pt;}
.y2_c03363{bottom:945.386939pt;}
.y4_c03363{bottom:959.786555pt;}
.y1_c03363{bottom:975.787067pt;}
.yf_c03363{bottom:1008.747067pt;}
.h3_c03363{height:28.916250pt;}
.h1_c03363{height:37.063125pt;}
.h2_c03363{height:37.166250pt;}
.h4_c03363{height:48.581988pt;}
.h0_c03363{height:1122.666667pt;}
.w1_c03363{width:793.333333pt;}
.w0_c03363{width:793.626667pt;}
.x0_c03363{left:0.000000pt;}
.xe_c03363{left:104.000000pt;}
.x8_c03363{left:391.999872pt;}
.x4_c03363{left:396.160512pt;}
.xc_c03363{left:400.960000pt;}
.x7_c03363{left:404.799648pt;}
.x5_c03363{left:410.560128pt;}
.x1_c03363{left:411.840000pt;}
.xa_c03363{left:429.760320pt;}
.x9_c03363{left:437.439552pt;}
.x6_c03363{left:438.400512pt;}
.xd_c03363{left:450.560320pt;}
.x3_c03363{left:455.039904pt;}
.x2_c03363{left:468.159648pt;}
.xb_c03363{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03364 {
    display:none;
  }
  .loading-indicator_c03364.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03364 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03364 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03364" -> "#page-container .classname_c03364")
 */
.pf_c03364 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03364 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03364.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03364 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03364 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03364 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03364 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03364 {overflow:visible;}
  }
}
.c_c03364 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03364 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03364:after { /* webkit #35443 */
  content: '';
}
.t_c03364:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03364 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03364 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03364 { /* info for Javascript */
  display:none;
}
.l_c03364 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03364 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03364 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03364:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03364 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03364.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03364.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03364 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03364{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03364;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03364{font-family:ff1_c03364;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03364;src:url('chunks/assets/font_4f70a0f42cf98cf2958cc456.woff2')format("woff");}.ff2_c03364{font-family:ff2_c03364;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03364;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03364{font-family:ff3_c03364;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03364{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03364{vertical-align:0.000000px;}
.v1_c03364{vertical-align:1.439424px;}
.ls8_c03364{letter-spacing:-0.613008px;}
.lsa_c03364{letter-spacing:-0.574992px;}
.lsd_c03364{letter-spacing:-0.494208px;}
.ls11_c03364{letter-spacing:-0.275616px;}
.lse_c03364{letter-spacing:-0.261360px;}
.ls7_c03364{letter-spacing:-0.242352px;}
.ls5_c03364{letter-spacing:-0.118800px;}
.lsf_c03364{letter-spacing:-0.047520px;}
.ls14_c03364{letter-spacing:0.000000px;}
.ls1_c03364{letter-spacing:0.006048px;}
.ls6_c03364{letter-spacing:0.128304px;}
.ls15_c03364{letter-spacing:0.242352px;}
.lsc_c03364{letter-spacing:0.508464px;}
.ls13_c03364{letter-spacing:0.514080px;}
.ls10_c03364{letter-spacing:0.536976px;}
.lsb_c03364{letter-spacing:0.579744px;}
.ls12_c03364{letter-spacing:0.594000px;}
.ls9_c03364{letter-spacing:0.598752px;}
.ls3_c03364{letter-spacing:0.613008px;}
.ls2_c03364{letter-spacing:0.651024px;}
.ls4_c03364{letter-spacing:0.717552px;}
.ls0_c03364{letter-spacing:0.722304px;}
.sc__c03364{text-shadow:none;}
.sc0_c03364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03364{-webkit-text-stroke:0px transparent;}
.sc0_c03364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03364{word-spacing:-15.126048px;}
.wsa_c03364{word-spacing:-12.474000px;}
.ws6_c03364{word-spacing:-12.459744px;}
.ws9_c03364{word-spacing:-12.416976px;}
.ws4_c03364{word-spacing:-11.637648px;}
.ws2_c03364{word-spacing:-11.266992px;}
.ws12_c03364{word-spacing:-1.083456px;}
.ws18_c03364{word-spacing:-1.012176px;}
.wsf_c03364{word-spacing:-0.974160px;}
.ws17_c03364{word-spacing:-0.719712px;}
.ws15_c03364{word-spacing:-0.313632px;}
.ws11_c03364{word-spacing:-0.118800px;}
.ws14_c03364{word-spacing:-0.099792px;}
.ws16_c03364{word-spacing:-0.085536px;}
.ws10_c03364{word-spacing:0.000000px;}
.ws13_c03364{word-spacing:0.133056px;}
.wsb_c03364{word-spacing:33.300288px;}
.wse_c03364{word-spacing:34.836912px;}
.ws8_c03364{word-spacing:36.143712px;}
.wsd_c03364{word-spacing:36.742464px;}
.ws1_c03364{word-spacing:37.759392px;}
.ws0_c03364{word-spacing:38.020752px;}
.ws3_c03364{word-spacing:39.218256px;}
.ws5_c03364{word-spacing:39.902544px;}
.ws7_c03364{word-spacing:42.026688px;}
._0_c03364{margin-left:-1.948320px;}
._2_c03364{width:1.482624px;}
._4_c03364{width:5.749920px;}
._1_c03364{width:50.252400px;}
._3_c03364{width:51.530688px;}
.fc0_c03364{color:rgb(0,0,0);}
.fs0_c03364{font-size:47.520000px;}
.fs1_c03364{font-size:60.480000px;}
.y0_c03364{bottom:0.000000px;}
.y19_c03364{bottom:146.998362px;}
.y1b_c03364{bottom:186.600234px;}
.y1a_c03364{bottom:196.320450px;}
.y18_c03364{bottom:275.878542px;}
.y17_c03364{bottom:356.878758px;}
.y15_c03364{bottom:406.559730px;}
.y11_c03364{bottom:424.560306px;}
.y16_c03364{bottom:458.759262px;}
.y14_c03364{bottom:491.879514px;}
.y13_c03364{bottom:509.880090px;}
.y10_c03364{bottom:543.000342px;}
.y12_c03364{bottom:559.559874px;}
.yf_c03364{bottom:577.560450px;}
.y1c_c03364{bottom:614.280450px;}
.yb_c03364{bottom:667.558326px;}
.yd_c03364{bottom:707.160234px;}
.yc_c03364{bottom:716.880450px;}
.ya_c03364{bottom:796.438506px;}
.y9_c03364{bottom:877.438722px;}
.y7_c03364{bottom:926.759730px;}
.y3_c03364{bottom:944.760306px;}
.y8_c03364{bottom:979.319226px;}
.y6_c03364{bottom:1012.439478px;}
.y5_c03364{bottom:1030.440054px;}
.y2_c03364{bottom:1063.560306px;}
.y4_c03364{bottom:1079.759874px;}
.y1_c03364{bottom:1097.760450px;}
.ye_c03364{bottom:1134.840450px;}
.h3_c03364{height:32.530781px;}
.h1_c03364{height:41.696016px;}
.h2_c03364{height:41.812031px;}
.h4_c03364{height:54.654737px;}
.h0_c03364{height:1263.000000px;}
.w1_c03364{width:892.500000px;}
.w0_c03364{width:892.830000px;}
.x0_c03364{left:0.000000px;}
.xd_c03364{left:117.000000px;}
.x8_c03364{left:440.999856px;}
.x4_c03364{left:445.680576px;}
.xb_c03364{left:451.080000px;}
.x7_c03364{left:455.399604px;}
.x5_c03364{left:461.880144px;}
.x1_c03364{left:463.320000px;}
.xa_c03364{left:483.480360px;}
.x9_c03364{left:492.119496px;}
.x6_c03364{left:493.200576px;}
.xc_c03364{left:506.880360px;}
.x3_c03364{left:511.919892px;}
.x2_c03364{left:526.679604px;}
@media print{
.v0_c03364{vertical-align:0.000000pt;}
.v1_c03364{vertical-align:1.279488pt;}
.ls8_c03364{letter-spacing:-0.544896pt;}
.lsa_c03364{letter-spacing:-0.511104pt;}
.lsd_c03364{letter-spacing:-0.439296pt;}
.ls11_c03364{letter-spacing:-0.244992pt;}
.lse_c03364{letter-spacing:-0.232320pt;}
.ls7_c03364{letter-spacing:-0.215424pt;}
.ls5_c03364{letter-spacing:-0.105600pt;}
.lsf_c03364{letter-spacing:-0.042240pt;}
.ls14_c03364{letter-spacing:0.000000pt;}
.ls1_c03364{letter-spacing:0.005376pt;}
.ls6_c03364{letter-spacing:0.114048pt;}
.ls15_c03364{letter-spacing:0.215424pt;}
.lsc_c03364{letter-spacing:0.451968pt;}
.ls13_c03364{letter-spacing:0.456960pt;}
.ls10_c03364{letter-spacing:0.477312pt;}
.lsb_c03364{letter-spacing:0.515328pt;}
.ls12_c03364{letter-spacing:0.528000pt;}
.ls9_c03364{letter-spacing:0.532224pt;}
.ls3_c03364{letter-spacing:0.544896pt;}
.ls2_c03364{letter-spacing:0.578688pt;}
.ls4_c03364{letter-spacing:0.637824pt;}
.ls0_c03364{letter-spacing:0.642048pt;}
.wsc_c03364{word-spacing:-13.445376pt;}
.wsa_c03364{word-spacing:-11.088000pt;}
.ws6_c03364{word-spacing:-11.075328pt;}
.ws9_c03364{word-spacing:-11.037312pt;}
.ws4_c03364{word-spacing:-10.344576pt;}
.ws2_c03364{word-spacing:-10.015104pt;}
.ws12_c03364{word-spacing:-0.963072pt;}
.ws18_c03364{word-spacing:-0.899712pt;}
.wsf_c03364{word-spacing:-0.865920pt;}
.ws17_c03364{word-spacing:-0.639744pt;}
.ws15_c03364{word-spacing:-0.278784pt;}
.ws11_c03364{word-spacing:-0.105600pt;}
.ws14_c03364{word-spacing:-0.088704pt;}
.ws16_c03364{word-spacing:-0.076032pt;}
.ws10_c03364{word-spacing:0.000000pt;}
.ws13_c03364{word-spacing:0.118272pt;}
.wsb_c03364{word-spacing:29.600256pt;}
.wse_c03364{word-spacing:30.966144pt;}
.ws8_c03364{word-spacing:32.127744pt;}
.wsd_c03364{word-spacing:32.659968pt;}
.ws1_c03364{word-spacing:33.563904pt;}
.ws0_c03364{word-spacing:33.796224pt;}
.ws3_c03364{word-spacing:34.860672pt;}
.ws5_c03364{word-spacing:35.468928pt;}
.ws7_c03364{word-spacing:37.357056pt;}
._0_c03364{margin-left:-1.731840pt;}
._2_c03364{width:1.317888pt;}
._4_c03364{width:5.111040pt;}
._1_c03364{width:44.668800pt;}
._3_c03364{width:45.805056pt;}
.fs0_c03364{font-size:42.240000pt;}
.fs1_c03364{font-size:53.760000pt;}
.y0_c03364{bottom:0.000000pt;}
.y19_c03364{bottom:130.665211pt;}
.y1b_c03364{bottom:165.866875pt;}
.y1a_c03364{bottom:174.507067pt;}
.y18_c03364{bottom:245.225371pt;}
.y17_c03364{bottom:317.225563pt;}
.y15_c03364{bottom:361.386427pt;}
.y11_c03364{bottom:377.386939pt;}
.y16_c03364{bottom:407.786011pt;}
.y14_c03364{bottom:437.226235pt;}
.y13_c03364{bottom:453.226747pt;}
.y10_c03364{bottom:482.666971pt;}
.y12_c03364{bottom:497.386555pt;}
.yf_c03364{bottom:513.387067pt;}
.y1c_c03364{bottom:546.027067pt;}
.yb_c03364{bottom:593.385179pt;}
.yd_c03364{bottom:628.586875pt;}
.yc_c03364{bottom:637.227067pt;}
.ya_c03364{bottom:707.945339pt;}
.y9_c03364{bottom:779.945531pt;}
.y7_c03364{bottom:823.786427pt;}
.y3_c03364{bottom:839.786939pt;}
.y8_c03364{bottom:870.505979pt;}
.y6_c03364{bottom:899.946203pt;}
.y5_c03364{bottom:915.946715pt;}
.y2_c03364{bottom:945.386939pt;}
.y4_c03364{bottom:959.786555pt;}
.y1_c03364{bottom:975.787067pt;}
.ye_c03364{bottom:1008.747067pt;}
.h3_c03364{height:28.916250pt;}
.h1_c03364{height:37.063125pt;}
.h2_c03364{height:37.166250pt;}
.h4_c03364{height:48.581988pt;}
.h0_c03364{height:1122.666667pt;}
.w1_c03364{width:793.333333pt;}
.w0_c03364{width:793.626667pt;}
.x0_c03364{left:0.000000pt;}
.xd_c03364{left:104.000000pt;}
.x8_c03364{left:391.999872pt;}
.x4_c03364{left:396.160512pt;}
.xb_c03364{left:400.960000pt;}
.x7_c03364{left:404.799648pt;}
.x5_c03364{left:410.560128pt;}
.x1_c03364{left:411.840000pt;}
.xa_c03364{left:429.760320pt;}
.x9_c03364{left:437.439552pt;}
.x6_c03364{left:438.400512pt;}
.xc_c03364{left:450.560320pt;}
.x3_c03364{left:455.039904pt;}
.x2_c03364{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03365 {
    display:none;
  }
  .loading-indicator_c03365.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03365 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03365 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03365" -> "#page-container .classname_c03365")
 */
.pf_c03365 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03365 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03365.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03365 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03365 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03365 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03365 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03365 {overflow:visible;}
  }
}
.c_c03365 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03365 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03365:after { /* webkit #35443 */
  content: '';
}
.t_c03365:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03365 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03365 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03365 { /* info for Javascript */
  display:none;
}
.l_c03365 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03365 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03365 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03365:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03365 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03365.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03365.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03365 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03365{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03365;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03365{font-family:ff1_c03365;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03365;src:url('chunks/assets/font_f045717b3375055ff8d6e035.woff2')format("woff");}.ff2_c03365{font-family:ff2_c03365;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03365;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03365{font-family:ff3_c03365;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03365{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03365{vertical-align:0.000000px;}
.v1_c03365{vertical-align:1.439424px;}
.lse_c03365{letter-spacing:-0.765072px;}
.ls7_c03365{letter-spacing:-0.613008px;}
.ls9_c03365{letter-spacing:-0.574992px;}
.ls13_c03365{letter-spacing:-0.275616px;}
.lsf_c03365{letter-spacing:-0.270864px;}
.lsc_c03365{letter-spacing:-0.261360px;}
.ls6_c03365{letter-spacing:-0.242352px;}
.ls4_c03365{letter-spacing:-0.118800px;}
.ls12_c03365{letter-spacing:0.000000px;}
.ls1_c03365{letter-spacing:0.006048px;}
.ls5_c03365{letter-spacing:0.128304px;}
.lsb_c03365{letter-spacing:0.508464px;}
.ls11_c03365{letter-spacing:0.514080px;}
.lsd_c03365{letter-spacing:0.536976px;}
.lsa_c03365{letter-spacing:0.579744px;}
.ls10_c03365{letter-spacing:0.594000px;}
.ls8_c03365{letter-spacing:0.598752px;}
.ls2_c03365{letter-spacing:0.613008px;}
.ls3_c03365{letter-spacing:0.717552px;}
.ls0_c03365{letter-spacing:0.722304px;}
.sc__c03365{text-shadow:none;}
.sc0_c03365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03365{-webkit-text-stroke:0px transparent;}
.sc0_c03365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03365{word-spacing:-15.126048px;}
.wsa_c03365{word-spacing:-12.474000px;}
.ws6_c03365{word-spacing:-12.459744px;}
.ws4_c03365{word-spacing:-11.637648px;}
.ws2_c03365{word-spacing:-11.266992px;}
.ws11_c03365{word-spacing:-1.083456px;}
.wse_c03365{word-spacing:-0.974160px;}
.ws15_c03365{word-spacing:-0.719712px;}
.ws10_c03365{word-spacing:-0.118800px;}
.ws12_c03365{word-spacing:-0.099792px;}
.ws13_c03365{word-spacing:-0.090288px;}
.ws14_c03365{word-spacing:-0.085536px;}
.wsf_c03365{word-spacing:0.000000px;}
.wsb_c03365{word-spacing:33.300288px;}
.ws8_c03365{word-spacing:34.836912px;}
.wsd_c03365{word-spacing:36.742464px;}
.ws1_c03365{word-spacing:37.759392px;}
.ws9_c03365{word-spacing:37.892448px;}
.ws0_c03365{word-spacing:38.020752px;}
.ws3_c03365{word-spacing:39.218256px;}
.ws5_c03365{word-spacing:39.902544px;}
.ws7_c03365{word-spacing:42.026688px;}
._0_c03365{margin-left:-1.948320px;}
._2_c03365{width:1.482624px;}
._4_c03365{width:5.749920px;}
._1_c03365{width:50.252400px;}
._3_c03365{width:51.530688px;}
._5_c03365{width:53.070336px;}
.fc0_c03365{color:rgb(0,0,0);}
.fs0_c03365{font-size:47.520000px;}
.fs1_c03365{font-size:60.480000px;}
.y0_c03365{bottom:0.000000px;}
.y1a_c03365{bottom:146.998362px;}
.y1c_c03365{bottom:186.600234px;}
.y1b_c03365{bottom:196.320450px;}
.y19_c03365{bottom:275.878542px;}
.y18_c03365{bottom:356.878758px;}
.y16_c03365{bottom:406.559730px;}
.y12_c03365{bottom:424.560306px;}
.y17_c03365{bottom:458.759262px;}
.y15_c03365{bottom:491.879514px;}
.y14_c03365{bottom:509.880090px;}
.y11_c03365{bottom:543.000342px;}
.y13_c03365{bottom:559.559874px;}
.y10_c03365{bottom:577.560450px;}
.y1d_c03365{bottom:614.280450px;}
.yc_c03365{bottom:652.438650px;}
.yb_c03365{bottom:667.558326px;}
.ye_c03365{bottom:707.160234px;}
.yd_c03365{bottom:716.880450px;}
.ya_c03365{bottom:796.438506px;}
.y9_c03365{bottom:877.438722px;}
.y7_c03365{bottom:926.759730px;}
.y3_c03365{bottom:944.760306px;}
.y8_c03365{bottom:979.319226px;}
.y6_c03365{bottom:1012.439478px;}
.y5_c03365{bottom:1030.440054px;}
.y2_c03365{bottom:1063.560306px;}
.y4_c03365{bottom:1079.759874px;}
.y1_c03365{bottom:1097.760450px;}
.yf_c03365{bottom:1134.840450px;}
.h3_c03365{height:32.530781px;}
.h1_c03365{height:41.696016px;}
.h2_c03365{height:41.812031px;}
.h4_c03365{height:54.654737px;}
.h0_c03365{height:1263.000000px;}
.w1_c03365{width:892.500000px;}
.w0_c03365{width:892.830000px;}
.x0_c03365{left:0.000000px;}
.xe_c03365{left:117.000000px;}
.x8_c03365{left:440.999856px;}
.x4_c03365{left:445.680576px;}
.xc_c03365{left:451.080000px;}
.x7_c03365{left:455.399604px;}
.x5_c03365{left:461.880144px;}
.x1_c03365{left:463.320000px;}
.xa_c03365{left:483.480360px;}
.x9_c03365{left:492.119496px;}
.x6_c03365{left:493.200576px;}
.xd_c03365{left:506.880360px;}
.x3_c03365{left:511.919892px;}
.x2_c03365{left:526.679604px;}
.xb_c03365{left:569.880036px;}
@media print{
.v0_c03365{vertical-align:0.000000pt;}
.v1_c03365{vertical-align:1.279488pt;}
.lse_c03365{letter-spacing:-0.680064pt;}
.ls7_c03365{letter-spacing:-0.544896pt;}
.ls9_c03365{letter-spacing:-0.511104pt;}
.ls13_c03365{letter-spacing:-0.244992pt;}
.lsf_c03365{letter-spacing:-0.240768pt;}
.lsc_c03365{letter-spacing:-0.232320pt;}
.ls6_c03365{letter-spacing:-0.215424pt;}
.ls4_c03365{letter-spacing:-0.105600pt;}
.ls12_c03365{letter-spacing:0.000000pt;}
.ls1_c03365{letter-spacing:0.005376pt;}
.ls5_c03365{letter-spacing:0.114048pt;}
.lsb_c03365{letter-spacing:0.451968pt;}
.ls11_c03365{letter-spacing:0.456960pt;}
.lsd_c03365{letter-spacing:0.477312pt;}
.lsa_c03365{letter-spacing:0.515328pt;}
.ls10_c03365{letter-spacing:0.528000pt;}
.ls8_c03365{letter-spacing:0.532224pt;}
.ls2_c03365{letter-spacing:0.544896pt;}
.ls3_c03365{letter-spacing:0.637824pt;}
.ls0_c03365{letter-spacing:0.642048pt;}
.wsc_c03365{word-spacing:-13.445376pt;}
.wsa_c03365{word-spacing:-11.088000pt;}
.ws6_c03365{word-spacing:-11.075328pt;}
.ws4_c03365{word-spacing:-10.344576pt;}
.ws2_c03365{word-spacing:-10.015104pt;}
.ws11_c03365{word-spacing:-0.963072pt;}
.wse_c03365{word-spacing:-0.865920pt;}
.ws15_c03365{word-spacing:-0.639744pt;}
.ws10_c03365{word-spacing:-0.105600pt;}
.ws12_c03365{word-spacing:-0.088704pt;}
.ws13_c03365{word-spacing:-0.080256pt;}
.ws14_c03365{word-spacing:-0.076032pt;}
.wsf_c03365{word-spacing:0.000000pt;}
.wsb_c03365{word-spacing:29.600256pt;}
.ws8_c03365{word-spacing:30.966144pt;}
.wsd_c03365{word-spacing:32.659968pt;}
.ws1_c03365{word-spacing:33.563904pt;}
.ws9_c03365{word-spacing:33.682176pt;}
.ws0_c03365{word-spacing:33.796224pt;}
.ws3_c03365{word-spacing:34.860672pt;}
.ws5_c03365{word-spacing:35.468928pt;}
.ws7_c03365{word-spacing:37.357056pt;}
._0_c03365{margin-left:-1.731840pt;}
._2_c03365{width:1.317888pt;}
._4_c03365{width:5.111040pt;}
._1_c03365{width:44.668800pt;}
._3_c03365{width:45.805056pt;}
._5_c03365{width:47.173632pt;}
.fs0_c03365{font-size:42.240000pt;}
.fs1_c03365{font-size:53.760000pt;}
.y0_c03365{bottom:0.000000pt;}
.y1a_c03365{bottom:130.665211pt;}
.y1c_c03365{bottom:165.866875pt;}
.y1b_c03365{bottom:174.507067pt;}
.y19_c03365{bottom:245.225371pt;}
.y18_c03365{bottom:317.225563pt;}
.y16_c03365{bottom:361.386427pt;}
.y12_c03365{bottom:377.386939pt;}
.y17_c03365{bottom:407.786011pt;}
.y15_c03365{bottom:437.226235pt;}
.y14_c03365{bottom:453.226747pt;}
.y11_c03365{bottom:482.666971pt;}
.y13_c03365{bottom:497.386555pt;}
.y10_c03365{bottom:513.387067pt;}
.y1d_c03365{bottom:546.027067pt;}
.yc_c03365{bottom:579.945467pt;}
.yb_c03365{bottom:593.385179pt;}
.ye_c03365{bottom:628.586875pt;}
.yd_c03365{bottom:637.227067pt;}
.ya_c03365{bottom:707.945339pt;}
.y9_c03365{bottom:779.945531pt;}
.y7_c03365{bottom:823.786427pt;}
.y3_c03365{bottom:839.786939pt;}
.y8_c03365{bottom:870.505979pt;}
.y6_c03365{bottom:899.946203pt;}
.y5_c03365{bottom:915.946715pt;}
.y2_c03365{bottom:945.386939pt;}
.y4_c03365{bottom:959.786555pt;}
.y1_c03365{bottom:975.787067pt;}
.yf_c03365{bottom:1008.747067pt;}
.h3_c03365{height:28.916250pt;}
.h1_c03365{height:37.063125pt;}
.h2_c03365{height:37.166250pt;}
.h4_c03365{height:48.581988pt;}
.h0_c03365{height:1122.666667pt;}
.w1_c03365{width:793.333333pt;}
.w0_c03365{width:793.626667pt;}
.x0_c03365{left:0.000000pt;}
.xe_c03365{left:104.000000pt;}
.x8_c03365{left:391.999872pt;}
.x4_c03365{left:396.160512pt;}
.xc_c03365{left:400.960000pt;}
.x7_c03365{left:404.799648pt;}
.x5_c03365{left:410.560128pt;}
.x1_c03365{left:411.840000pt;}
.xa_c03365{left:429.760320pt;}
.x9_c03365{left:437.439552pt;}
.x6_c03365{left:438.400512pt;}
.xd_c03365{left:450.560320pt;}
.x3_c03365{left:455.039904pt;}
.x2_c03365{left:468.159648pt;}
.xb_c03365{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03366 {
    display:none;
  }
  .loading-indicator_c03366.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03366 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03366 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03366" -> "#page-container .classname_c03366")
 */
.pf_c03366 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03366 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03366.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03366 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03366 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03366 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03366 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03366 {overflow:visible;}
  }
}
.c_c03366 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03366 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03366:after { /* webkit #35443 */
  content: '';
}
.t_c03366:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03366 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03366 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03366 { /* info for Javascript */
  display:none;
}
.l_c03366 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03366 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03366 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03366:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03366 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03366.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03366.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03366 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03366{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03366;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03366{font-family:ff1_c03366;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03366;src:url('chunks/assets/font_757717f6fb3db0d737a4687f.woff2')format("woff");}.ff2_c03366{font-family:ff2_c03366;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03366;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03366{font-family:ff3_c03366;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03366{vertical-align:0.000000px;}
.v1_c03366{vertical-align:1.439424px;}
.ls12_c03366{letter-spacing:-0.755568px;}
.ls7_c03366{letter-spacing:-0.613008px;}
.ls9_c03366{letter-spacing:-0.574992px;}
.lse_c03366{letter-spacing:-0.275616px;}
.lsc_c03366{letter-spacing:-0.261360px;}
.ls6_c03366{letter-spacing:-0.242352px;}
.ls4_c03366{letter-spacing:-0.118800px;}
.ls11_c03366{letter-spacing:0.000000px;}
.ls1_c03366{letter-spacing:0.006048px;}
.ls5_c03366{letter-spacing:0.128304px;}
.lsb_c03366{letter-spacing:0.508464px;}
.ls10_c03366{letter-spacing:0.514080px;}
.lsd_c03366{letter-spacing:0.536976px;}
.lsa_c03366{letter-spacing:0.579744px;}
.lsf_c03366{letter-spacing:0.594000px;}
.ls8_c03366{letter-spacing:0.598752px;}
.ls2_c03366{letter-spacing:0.613008px;}
.ls3_c03366{letter-spacing:0.717552px;}
.ls0_c03366{letter-spacing:0.722304px;}
.sc__c03366{text-shadow:none;}
.sc0_c03366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03366{-webkit-text-stroke:0px transparent;}
.sc0_c03366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03366{word-spacing:-15.126048px;}
.wsa_c03366{word-spacing:-12.474000px;}
.ws8_c03366{word-spacing:-12.459744px;}
.ws4_c03366{word-spacing:-11.637648px;}
.ws2_c03366{word-spacing:-11.266992px;}
.ws11_c03366{word-spacing:-1.083456px;}
.wse_c03366{word-spacing:-0.974160px;}
.ws14_c03366{word-spacing:-0.719712px;}
.ws10_c03366{word-spacing:-0.118800px;}
.ws12_c03366{word-spacing:-0.099792px;}
.ws13_c03366{word-spacing:-0.085536px;}
.wsf_c03366{word-spacing:0.000000px;}
.ws15_c03366{word-spacing:0.394416px;}
.wsb_c03366{word-spacing:33.300288px;}
.ws9_c03366{word-spacing:34.836912px;}
.wsd_c03366{word-spacing:36.143712px;}
.ws6_c03366{word-spacing:36.742464px;}
.ws1_c03366{word-spacing:37.759392px;}
.ws0_c03366{word-spacing:38.020752px;}
.ws3_c03366{word-spacing:39.218256px;}
.ws5_c03366{word-spacing:39.902544px;}
.ws7_c03366{word-spacing:42.026688px;}
._0_c03366{margin-left:-1.948320px;}
._2_c03366{width:1.482624px;}
._4_c03366{width:5.749920px;}
._1_c03366{width:50.252400px;}
._3_c03366{width:51.530688px;}
.fc0_c03366{color:rgb(0,0,0);}
.fs0_c03366{font-size:47.520000px;}
.fs1_c03366{font-size:60.480000px;}
.y0_c03366{bottom:0.000000px;}
.y19_c03366{bottom:146.998362px;}
.y1b_c03366{bottom:186.600234px;}
.y1a_c03366{bottom:196.320450px;}
.y18_c03366{bottom:275.878542px;}
.y17_c03366{bottom:356.878758px;}
.y15_c03366{bottom:406.559730px;}
.y11_c03366{bottom:424.560306px;}
.y16_c03366{bottom:458.759262px;}
.y14_c03366{bottom:491.879514px;}
.y13_c03366{bottom:509.880090px;}
.y10_c03366{bottom:543.000342px;}
.y12_c03366{bottom:559.559874px;}
.yf_c03366{bottom:577.560450px;}
.y1c_c03366{bottom:614.280450px;}
.yb_c03366{bottom:667.558326px;}
.yd_c03366{bottom:707.160234px;}
.yc_c03366{bottom:716.880450px;}
.ya_c03366{bottom:796.438506px;}
.y9_c03366{bottom:877.438722px;}
.y7_c03366{bottom:926.759730px;}
.y3_c03366{bottom:944.760306px;}
.y8_c03366{bottom:979.319226px;}
.y6_c03366{bottom:1012.439478px;}
.y5_c03366{bottom:1030.440054px;}
.y2_c03366{bottom:1063.560306px;}
.y4_c03366{bottom:1079.759874px;}
.y1_c03366{bottom:1097.760450px;}
.ye_c03366{bottom:1134.840450px;}
.h3_c03366{height:32.530781px;}
.h1_c03366{height:41.696016px;}
.h2_c03366{height:41.812031px;}
.h4_c03366{height:54.654737px;}
.h0_c03366{height:1263.000000px;}
.w1_c03366{width:892.500000px;}
.w0_c03366{width:892.830000px;}
.x0_c03366{left:0.000000px;}
.xd_c03366{left:117.000000px;}
.x8_c03366{left:440.999856px;}
.x4_c03366{left:445.680576px;}
.xb_c03366{left:451.080000px;}
.x7_c03366{left:455.399604px;}
.x5_c03366{left:461.880144px;}
.x1_c03366{left:463.320000px;}
.xa_c03366{left:483.480360px;}
.x9_c03366{left:492.119496px;}
.x6_c03366{left:493.200576px;}
.xc_c03366{left:506.880360px;}
.x3_c03366{left:511.919892px;}
.x2_c03366{left:526.679604px;}
@media print{
.v0_c03366{vertical-align:0.000000pt;}
.v1_c03366{vertical-align:1.279488pt;}
.ls12_c03366{letter-spacing:-0.671616pt;}
.ls7_c03366{letter-spacing:-0.544896pt;}
.ls9_c03366{letter-spacing:-0.511104pt;}
.lse_c03366{letter-spacing:-0.244992pt;}
.lsc_c03366{letter-spacing:-0.232320pt;}
.ls6_c03366{letter-spacing:-0.215424pt;}
.ls4_c03366{letter-spacing:-0.105600pt;}
.ls11_c03366{letter-spacing:0.000000pt;}
.ls1_c03366{letter-spacing:0.005376pt;}
.ls5_c03366{letter-spacing:0.114048pt;}
.lsb_c03366{letter-spacing:0.451968pt;}
.ls10_c03366{letter-spacing:0.456960pt;}
.lsd_c03366{letter-spacing:0.477312pt;}
.lsa_c03366{letter-spacing:0.515328pt;}
.lsf_c03366{letter-spacing:0.528000pt;}
.ls8_c03366{letter-spacing:0.532224pt;}
.ls2_c03366{letter-spacing:0.544896pt;}
.ls3_c03366{letter-spacing:0.637824pt;}
.ls0_c03366{letter-spacing:0.642048pt;}
.wsc_c03366{word-spacing:-13.445376pt;}
.wsa_c03366{word-spacing:-11.088000pt;}
.ws8_c03366{word-spacing:-11.075328pt;}
.ws4_c03366{word-spacing:-10.344576pt;}
.ws2_c03366{word-spacing:-10.015104pt;}
.ws11_c03366{word-spacing:-0.963072pt;}
.wse_c03366{word-spacing:-0.865920pt;}
.ws14_c03366{word-spacing:-0.639744pt;}
.ws10_c03366{word-spacing:-0.105600pt;}
.ws12_c03366{word-spacing:-0.088704pt;}
.ws13_c03366{word-spacing:-0.076032pt;}
.wsf_c03366{word-spacing:0.000000pt;}
.ws15_c03366{word-spacing:0.350592pt;}
.wsb_c03366{word-spacing:29.600256pt;}
.ws9_c03366{word-spacing:30.966144pt;}
.wsd_c03366{word-spacing:32.127744pt;}
.ws6_c03366{word-spacing:32.659968pt;}
.ws1_c03366{word-spacing:33.563904pt;}
.ws0_c03366{word-spacing:33.796224pt;}
.ws3_c03366{word-spacing:34.860672pt;}
.ws5_c03366{word-spacing:35.468928pt;}
.ws7_c03366{word-spacing:37.357056pt;}
._0_c03366{margin-left:-1.731840pt;}
._2_c03366{width:1.317888pt;}
._4_c03366{width:5.111040pt;}
._1_c03366{width:44.668800pt;}
._3_c03366{width:45.805056pt;}
.fs0_c03366{font-size:42.240000pt;}
.fs1_c03366{font-size:53.760000pt;}
.y0_c03366{bottom:0.000000pt;}
.y19_c03366{bottom:130.665211pt;}
.y1b_c03366{bottom:165.866875pt;}
.y1a_c03366{bottom:174.507067pt;}
.y18_c03366{bottom:245.225371pt;}
.y17_c03366{bottom:317.225563pt;}
.y15_c03366{bottom:361.386427pt;}
.y11_c03366{bottom:377.386939pt;}
.y16_c03366{bottom:407.786011pt;}
.y14_c03366{bottom:437.226235pt;}
.y13_c03366{bottom:453.226747pt;}
.y10_c03366{bottom:482.666971pt;}
.y12_c03366{bottom:497.386555pt;}
.yf_c03366{bottom:513.387067pt;}
.y1c_c03366{bottom:546.027067pt;}
.yb_c03366{bottom:593.385179pt;}
.yd_c03366{bottom:628.586875pt;}
.yc_c03366{bottom:637.227067pt;}
.ya_c03366{bottom:707.945339pt;}
.y9_c03366{bottom:779.945531pt;}
.y7_c03366{bottom:823.786427pt;}
.y3_c03366{bottom:839.786939pt;}
.y8_c03366{bottom:870.505979pt;}
.y6_c03366{bottom:899.946203pt;}
.y5_c03366{bottom:915.946715pt;}
.y2_c03366{bottom:945.386939pt;}
.y4_c03366{bottom:959.786555pt;}
.y1_c03366{bottom:975.787067pt;}
.ye_c03366{bottom:1008.747067pt;}
.h3_c03366{height:28.916250pt;}
.h1_c03366{height:37.063125pt;}
.h2_c03366{height:37.166250pt;}
.h4_c03366{height:48.581988pt;}
.h0_c03366{height:1122.666667pt;}
.w1_c03366{width:793.333333pt;}
.w0_c03366{width:793.626667pt;}
.x0_c03366{left:0.000000pt;}
.xd_c03366{left:104.000000pt;}
.x8_c03366{left:391.999872pt;}
.x4_c03366{left:396.160512pt;}
.xb_c03366{left:400.960000pt;}
.x7_c03366{left:404.799648pt;}
.x5_c03366{left:410.560128pt;}
.x1_c03366{left:411.840000pt;}
.xa_c03366{left:429.760320pt;}
.x9_c03366{left:437.439552pt;}
.x6_c03366{left:438.400512pt;}
.xc_c03366{left:450.560320pt;}
.x3_c03366{left:455.039904pt;}
.x2_c03366{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03367 {
    display:none;
  }
  .loading-indicator_c03367.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03367 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03367 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03367" -> "#page-container .classname_c03367")
 */
.pf_c03367 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03367 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03367.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03367 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03367 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03367 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03367 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03367 {overflow:visible;}
  }
}
.c_c03367 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03367 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03367:after { /* webkit #35443 */
  content: '';
}
.t_c03367:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03367 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03367 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03367 { /* info for Javascript */
  display:none;
}
.l_c03367 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03367 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03367 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03367:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03367 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03367.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03367.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03367 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03367{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03367;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03367{font-family:ff1_c03367;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03367;src:url('chunks/assets/font_2bb3db12e9ffc1a4620c41d3.woff2')format("woff");}.ff2_c03367{font-family:ff2_c03367;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03367;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03367{font-family:ff3_c03367;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03367{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03367{vertical-align:0.000000px;}
.v1_c03367{vertical-align:1.439424px;}
.lse_c03367{letter-spacing:-0.736560px;}
.ls7_c03367{letter-spacing:-0.613008px;}
.ls9_c03367{letter-spacing:-0.574992px;}
.ls13_c03367{letter-spacing:-0.275616px;}
.lsf_c03367{letter-spacing:-0.270864px;}
.lsc_c03367{letter-spacing:-0.261360px;}
.ls6_c03367{letter-spacing:-0.242352px;}
.ls4_c03367{letter-spacing:-0.118800px;}
.ls12_c03367{letter-spacing:0.000000px;}
.ls1_c03367{letter-spacing:0.006048px;}
.ls5_c03367{letter-spacing:0.128304px;}
.lsb_c03367{letter-spacing:0.508464px;}
.ls11_c03367{letter-spacing:0.514080px;}
.lsd_c03367{letter-spacing:0.536976px;}
.lsa_c03367{letter-spacing:0.579744px;}
.ls10_c03367{letter-spacing:0.594000px;}
.ls8_c03367{letter-spacing:0.598752px;}
.ls3_c03367{letter-spacing:0.613008px;}
.ls2_c03367{letter-spacing:0.717552px;}
.ls0_c03367{letter-spacing:0.722304px;}
.sc__c03367{text-shadow:none;}
.sc0_c03367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03367{-webkit-text-stroke:0px transparent;}
.sc0_c03367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03367{word-spacing:-15.126048px;}
.wsa_c03367{word-spacing:-12.474000px;}
.ws6_c03367{word-spacing:-12.459744px;}
.wse_c03367{word-spacing:-12.416976px;}
.ws4_c03367{word-spacing:-11.637648px;}
.ws2_c03367{word-spacing:-11.266992px;}
.ws12_c03367{word-spacing:-1.083456px;}
.ws17_c03367{word-spacing:-1.078704px;}
.wsf_c03367{word-spacing:-0.974160px;}
.ws16_c03367{word-spacing:-0.719712px;}
.ws11_c03367{word-spacing:-0.118800px;}
.ws13_c03367{word-spacing:-0.099792px;}
.ws14_c03367{word-spacing:-0.090288px;}
.ws15_c03367{word-spacing:-0.085536px;}
.ws10_c03367{word-spacing:0.000000px;}
.ws9_c03367{word-spacing:6.629040px;}
.wsb_c03367{word-spacing:33.300288px;}
.ws8_c03367{word-spacing:34.836912px;}
.wsd_c03367{word-spacing:36.742464px;}
.ws1_c03367{word-spacing:37.759392px;}
.ws0_c03367{word-spacing:38.020752px;}
.ws3_c03367{word-spacing:39.218256px;}
.ws5_c03367{word-spacing:39.902544px;}
.ws7_c03367{word-spacing:42.026688px;}
._0_c03367{margin-left:-1.948320px;}
._2_c03367{width:1.482624px;}
._4_c03367{width:5.749920px;}
._6_c03367{width:19.982160px;}
._7_c03367{width:23.451120px;}
._5_c03367{width:24.691392px;}
._1_c03367{width:50.252400px;}
._3_c03367{width:51.530688px;}
.fc0_c03367{color:rgb(0,0,0);}
.fs0_c03367{font-size:47.520000px;}
.fs1_c03367{font-size:60.480000px;}
.y0_c03367{bottom:0.000000px;}
.y1a_c03367{bottom:146.998362px;}
.y1c_c03367{bottom:186.600234px;}
.y1b_c03367{bottom:196.320450px;}
.y19_c03367{bottom:275.878542px;}
.y18_c03367{bottom:356.878758px;}
.y16_c03367{bottom:406.559730px;}
.y12_c03367{bottom:424.560306px;}
.y17_c03367{bottom:458.759262px;}
.y15_c03367{bottom:491.879514px;}
.y14_c03367{bottom:509.880090px;}
.y11_c03367{bottom:543.000342px;}
.y13_c03367{bottom:559.559874px;}
.y10_c03367{bottom:577.560450px;}
.y1d_c03367{bottom:614.280450px;}
.yc_c03367{bottom:652.438650px;}
.yb_c03367{bottom:667.558326px;}
.ye_c03367{bottom:707.160234px;}
.yd_c03367{bottom:716.880450px;}
.ya_c03367{bottom:796.438506px;}
.y9_c03367{bottom:877.438722px;}
.y7_c03367{bottom:926.759730px;}
.y3_c03367{bottom:944.760306px;}
.y8_c03367{bottom:979.319226px;}
.y6_c03367{bottom:1012.439478px;}
.y5_c03367{bottom:1030.440054px;}
.y2_c03367{bottom:1063.560306px;}
.y4_c03367{bottom:1079.759874px;}
.y1_c03367{bottom:1097.760450px;}
.yf_c03367{bottom:1134.840450px;}
.h3_c03367{height:32.530781px;}
.h1_c03367{height:41.696016px;}
.h2_c03367{height:41.812031px;}
.h4_c03367{height:54.654737px;}
.h0_c03367{height:1263.000000px;}
.w1_c03367{width:892.500000px;}
.w0_c03367{width:892.830000px;}
.x0_c03367{left:0.000000px;}
.xe_c03367{left:117.000000px;}
.x8_c03367{left:440.999856px;}
.x4_c03367{left:445.680576px;}
.xc_c03367{left:451.080000px;}
.x7_c03367{left:455.399604px;}
.x5_c03367{left:461.880144px;}
.x1_c03367{left:463.320000px;}
.xa_c03367{left:483.480360px;}
.x9_c03367{left:492.119496px;}
.x6_c03367{left:493.200576px;}
.xd_c03367{left:506.880360px;}
.x3_c03367{left:511.919892px;}
.x2_c03367{left:526.679604px;}
.xb_c03367{left:569.880036px;}
@media print{
.v0_c03367{vertical-align:0.000000pt;}
.v1_c03367{vertical-align:1.279488pt;}
.lse_c03367{letter-spacing:-0.654720pt;}
.ls7_c03367{letter-spacing:-0.544896pt;}
.ls9_c03367{letter-spacing:-0.511104pt;}
.ls13_c03367{letter-spacing:-0.244992pt;}
.lsf_c03367{letter-spacing:-0.240768pt;}
.lsc_c03367{letter-spacing:-0.232320pt;}
.ls6_c03367{letter-spacing:-0.215424pt;}
.ls4_c03367{letter-spacing:-0.105600pt;}
.ls12_c03367{letter-spacing:0.000000pt;}
.ls1_c03367{letter-spacing:0.005376pt;}
.ls5_c03367{letter-spacing:0.114048pt;}
.lsb_c03367{letter-spacing:0.451968pt;}
.ls11_c03367{letter-spacing:0.456960pt;}
.lsd_c03367{letter-spacing:0.477312pt;}
.lsa_c03367{letter-spacing:0.515328pt;}
.ls10_c03367{letter-spacing:0.528000pt;}
.ls8_c03367{letter-spacing:0.532224pt;}
.ls3_c03367{letter-spacing:0.544896pt;}
.ls2_c03367{letter-spacing:0.637824pt;}
.ls0_c03367{letter-spacing:0.642048pt;}
.wsc_c03367{word-spacing:-13.445376pt;}
.wsa_c03367{word-spacing:-11.088000pt;}
.ws6_c03367{word-spacing:-11.075328pt;}
.wse_c03367{word-spacing:-11.037312pt;}
.ws4_c03367{word-spacing:-10.344576pt;}
.ws2_c03367{word-spacing:-10.015104pt;}
.ws12_c03367{word-spacing:-0.963072pt;}
.ws17_c03367{word-spacing:-0.958848pt;}
.wsf_c03367{word-spacing:-0.865920pt;}
.ws16_c03367{word-spacing:-0.639744pt;}
.ws11_c03367{word-spacing:-0.105600pt;}
.ws13_c03367{word-spacing:-0.088704pt;}
.ws14_c03367{word-spacing:-0.080256pt;}
.ws15_c03367{word-spacing:-0.076032pt;}
.ws10_c03367{word-spacing:0.000000pt;}
.ws9_c03367{word-spacing:5.892480pt;}
.wsb_c03367{word-spacing:29.600256pt;}
.ws8_c03367{word-spacing:30.966144pt;}
.wsd_c03367{word-spacing:32.659968pt;}
.ws1_c03367{word-spacing:33.563904pt;}
.ws0_c03367{word-spacing:33.796224pt;}
.ws3_c03367{word-spacing:34.860672pt;}
.ws5_c03367{word-spacing:35.468928pt;}
.ws7_c03367{word-spacing:37.357056pt;}
._0_c03367{margin-left:-1.731840pt;}
._2_c03367{width:1.317888pt;}
._4_c03367{width:5.111040pt;}
._6_c03367{width:17.761920pt;}
._7_c03367{width:20.845440pt;}
._5_c03367{width:21.947904pt;}
._1_c03367{width:44.668800pt;}
._3_c03367{width:45.805056pt;}
.fs0_c03367{font-size:42.240000pt;}
.fs1_c03367{font-size:53.760000pt;}
.y0_c03367{bottom:0.000000pt;}
.y1a_c03367{bottom:130.665211pt;}
.y1c_c03367{bottom:165.866875pt;}
.y1b_c03367{bottom:174.507067pt;}
.y19_c03367{bottom:245.225371pt;}
.y18_c03367{bottom:317.225563pt;}
.y16_c03367{bottom:361.386427pt;}
.y12_c03367{bottom:377.386939pt;}
.y17_c03367{bottom:407.786011pt;}
.y15_c03367{bottom:437.226235pt;}
.y14_c03367{bottom:453.226747pt;}
.y11_c03367{bottom:482.666971pt;}
.y13_c03367{bottom:497.386555pt;}
.y10_c03367{bottom:513.387067pt;}
.y1d_c03367{bottom:546.027067pt;}
.yc_c03367{bottom:579.945467pt;}
.yb_c03367{bottom:593.385179pt;}
.ye_c03367{bottom:628.586875pt;}
.yd_c03367{bottom:637.227067pt;}
.ya_c03367{bottom:707.945339pt;}
.y9_c03367{bottom:779.945531pt;}
.y7_c03367{bottom:823.786427pt;}
.y3_c03367{bottom:839.786939pt;}
.y8_c03367{bottom:870.505979pt;}
.y6_c03367{bottom:899.946203pt;}
.y5_c03367{bottom:915.946715pt;}
.y2_c03367{bottom:945.386939pt;}
.y4_c03367{bottom:959.786555pt;}
.y1_c03367{bottom:975.787067pt;}
.yf_c03367{bottom:1008.747067pt;}
.h3_c03367{height:28.916250pt;}
.h1_c03367{height:37.063125pt;}
.h2_c03367{height:37.166250pt;}
.h4_c03367{height:48.581988pt;}
.h0_c03367{height:1122.666667pt;}
.w1_c03367{width:793.333333pt;}
.w0_c03367{width:793.626667pt;}
.x0_c03367{left:0.000000pt;}
.xe_c03367{left:104.000000pt;}
.x8_c03367{left:391.999872pt;}
.x4_c03367{left:396.160512pt;}
.xc_c03367{left:400.960000pt;}
.x7_c03367{left:404.799648pt;}
.x5_c03367{left:410.560128pt;}
.x1_c03367{left:411.840000pt;}
.xa_c03367{left:429.760320pt;}
.x9_c03367{left:437.439552pt;}
.x6_c03367{left:438.400512pt;}
.xd_c03367{left:450.560320pt;}
.x3_c03367{left:455.039904pt;}
.x2_c03367{left:468.159648pt;}
.xb_c03367{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03368 {
    display:none;
  }
  .loading-indicator_c03368.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03368 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03368 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03368" -> "#page-container .classname_c03368")
 */
.pf_c03368 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03368 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03368.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03368 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03368 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03368 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03368 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03368 {overflow:visible;}
  }
}
.c_c03368 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03368 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03368:after { /* webkit #35443 */
  content: '';
}
.t_c03368:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03368 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03368 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03368 { /* info for Javascript */
  display:none;
}
.l_c03368 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03368 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03368 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03368:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03368 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03368.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03368.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03368 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03368{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03368;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03368{font-family:ff1_c03368;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03368;src:url('chunks/assets/font_38e1ed6e61acda0582a2c0ba.woff2')format("woff");}.ff2_c03368{font-family:ff2_c03368;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03368;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03368{font-family:ff3_c03368;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03368{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03368{vertical-align:0.000000px;}
.v1_c03368{vertical-align:1.439424px;}
.ls7_c03368{letter-spacing:-0.613008px;}
.ls9_c03368{letter-spacing:-0.574992px;}
.lse_c03368{letter-spacing:-0.275616px;}
.lsc_c03368{letter-spacing:-0.261360px;}
.ls6_c03368{letter-spacing:-0.242352px;}
.ls4_c03368{letter-spacing:-0.118800px;}
.ls11_c03368{letter-spacing:0.000000px;}
.ls1_c03368{letter-spacing:0.006048px;}
.ls5_c03368{letter-spacing:0.128304px;}
.lsb_c03368{letter-spacing:0.508464px;}
.ls10_c03368{letter-spacing:0.514080px;}
.lsd_c03368{letter-spacing:0.536976px;}
.lsa_c03368{letter-spacing:0.579744px;}
.lsf_c03368{letter-spacing:0.594000px;}
.ls8_c03368{letter-spacing:0.598752px;}
.ls3_c03368{letter-spacing:0.613008px;}
.ls2_c03368{letter-spacing:0.717552px;}
.ls0_c03368{letter-spacing:0.722304px;}
.sc__c03368{text-shadow:none;}
.sc0_c03368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03368{-webkit-text-stroke:0px transparent;}
.sc0_c03368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03368{word-spacing:-15.126048px;}
.wsa_c03368{word-spacing:-12.474000px;}
.ws8_c03368{word-spacing:-12.459744px;}
.ws9_c03368{word-spacing:-12.416976px;}
.ws4_c03368{word-spacing:-11.637648px;}
.ws2_c03368{word-spacing:-11.266992px;}
.ws10_c03368{word-spacing:-1.083456px;}
.ws14_c03368{word-spacing:-1.078704px;}
.wsd_c03368{word-spacing:-0.974160px;}
.ws13_c03368{word-spacing:-0.719712px;}
.wsf_c03368{word-spacing:-0.118800px;}
.ws11_c03368{word-spacing:-0.099792px;}
.ws12_c03368{word-spacing:-0.085536px;}
.wse_c03368{word-spacing:0.000000px;}
.wsb_c03368{word-spacing:33.300288px;}
.ws6_c03368{word-spacing:36.742464px;}
.ws1_c03368{word-spacing:37.759392px;}
.ws0_c03368{word-spacing:38.020752px;}
.ws3_c03368{word-spacing:39.218256px;}
.ws5_c03368{word-spacing:39.902544px;}
.ws7_c03368{word-spacing:42.026688px;}
._0_c03368{margin-left:-1.948320px;}
._2_c03368{width:1.482624px;}
._4_c03368{width:5.749920px;}
._1_c03368{width:50.252400px;}
._3_c03368{width:51.530688px;}
.fc0_c03368{color:rgb(0,0,0);}
.fs0_c03368{font-size:47.520000px;}
.fs1_c03368{font-size:60.480000px;}
.y0_c03368{bottom:0.000000px;}
.y19_c03368{bottom:146.998362px;}
.y1b_c03368{bottom:186.600234px;}
.y1a_c03368{bottom:196.320450px;}
.y18_c03368{bottom:275.878542px;}
.y17_c03368{bottom:356.878758px;}
.y15_c03368{bottom:406.559730px;}
.y11_c03368{bottom:424.560306px;}
.y16_c03368{bottom:458.759262px;}
.y14_c03368{bottom:491.879514px;}
.y13_c03368{bottom:509.880090px;}
.y10_c03368{bottom:543.000342px;}
.y12_c03368{bottom:559.559874px;}
.yf_c03368{bottom:577.560450px;}
.y1c_c03368{bottom:614.280450px;}
.yb_c03368{bottom:667.558326px;}
.yd_c03368{bottom:707.160234px;}
.yc_c03368{bottom:716.880450px;}
.ya_c03368{bottom:796.438506px;}
.y9_c03368{bottom:877.438722px;}
.y7_c03368{bottom:926.759730px;}
.y3_c03368{bottom:944.760306px;}
.y8_c03368{bottom:979.319226px;}
.y6_c03368{bottom:1012.439478px;}
.y5_c03368{bottom:1030.440054px;}
.y2_c03368{bottom:1063.560306px;}
.y4_c03368{bottom:1079.759874px;}
.y1_c03368{bottom:1097.760450px;}
.ye_c03368{bottom:1134.840450px;}
.h3_c03368{height:32.530781px;}
.h1_c03368{height:41.696016px;}
.h2_c03368{height:41.812031px;}
.h4_c03368{height:54.654737px;}
.h0_c03368{height:1263.000000px;}
.w1_c03368{width:892.500000px;}
.w0_c03368{width:892.830000px;}
.x0_c03368{left:0.000000px;}
.xd_c03368{left:117.000000px;}
.x8_c03368{left:440.999856px;}
.x4_c03368{left:445.680576px;}
.xb_c03368{left:451.080000px;}
.x7_c03368{left:455.399604px;}
.x5_c03368{left:461.880144px;}
.x1_c03368{left:463.320000px;}
.xa_c03368{left:483.480360px;}
.x9_c03368{left:492.119496px;}
.x6_c03368{left:493.200576px;}
.xc_c03368{left:506.880360px;}
.x3_c03368{left:511.919892px;}
.x2_c03368{left:526.679604px;}
@media print{
.v0_c03368{vertical-align:0.000000pt;}
.v1_c03368{vertical-align:1.279488pt;}
.ls7_c03368{letter-spacing:-0.544896pt;}
.ls9_c03368{letter-spacing:-0.511104pt;}
.lse_c03368{letter-spacing:-0.244992pt;}
.lsc_c03368{letter-spacing:-0.232320pt;}
.ls6_c03368{letter-spacing:-0.215424pt;}
.ls4_c03368{letter-spacing:-0.105600pt;}
.ls11_c03368{letter-spacing:0.000000pt;}
.ls1_c03368{letter-spacing:0.005376pt;}
.ls5_c03368{letter-spacing:0.114048pt;}
.lsb_c03368{letter-spacing:0.451968pt;}
.ls10_c03368{letter-spacing:0.456960pt;}
.lsd_c03368{letter-spacing:0.477312pt;}
.lsa_c03368{letter-spacing:0.515328pt;}
.lsf_c03368{letter-spacing:0.528000pt;}
.ls8_c03368{letter-spacing:0.532224pt;}
.ls3_c03368{letter-spacing:0.544896pt;}
.ls2_c03368{letter-spacing:0.637824pt;}
.ls0_c03368{letter-spacing:0.642048pt;}
.wsc_c03368{word-spacing:-13.445376pt;}
.wsa_c03368{word-spacing:-11.088000pt;}
.ws8_c03368{word-spacing:-11.075328pt;}
.ws9_c03368{word-spacing:-11.037312pt;}
.ws4_c03368{word-spacing:-10.344576pt;}
.ws2_c03368{word-spacing:-10.015104pt;}
.ws10_c03368{word-spacing:-0.963072pt;}
.ws14_c03368{word-spacing:-0.958848pt;}
.wsd_c03368{word-spacing:-0.865920pt;}
.ws13_c03368{word-spacing:-0.639744pt;}
.wsf_c03368{word-spacing:-0.105600pt;}
.ws11_c03368{word-spacing:-0.088704pt;}
.ws12_c03368{word-spacing:-0.076032pt;}
.wse_c03368{word-spacing:0.000000pt;}
.wsb_c03368{word-spacing:29.600256pt;}
.ws6_c03368{word-spacing:32.659968pt;}
.ws1_c03368{word-spacing:33.563904pt;}
.ws0_c03368{word-spacing:33.796224pt;}
.ws3_c03368{word-spacing:34.860672pt;}
.ws5_c03368{word-spacing:35.468928pt;}
.ws7_c03368{word-spacing:37.357056pt;}
._0_c03368{margin-left:-1.731840pt;}
._2_c03368{width:1.317888pt;}
._4_c03368{width:5.111040pt;}
._1_c03368{width:44.668800pt;}
._3_c03368{width:45.805056pt;}
.fs0_c03368{font-size:42.240000pt;}
.fs1_c03368{font-size:53.760000pt;}
.y0_c03368{bottom:0.000000pt;}
.y19_c03368{bottom:130.665211pt;}
.y1b_c03368{bottom:165.866875pt;}
.y1a_c03368{bottom:174.507067pt;}
.y18_c03368{bottom:245.225371pt;}
.y17_c03368{bottom:317.225563pt;}
.y15_c03368{bottom:361.386427pt;}
.y11_c03368{bottom:377.386939pt;}
.y16_c03368{bottom:407.786011pt;}
.y14_c03368{bottom:437.226235pt;}
.y13_c03368{bottom:453.226747pt;}
.y10_c03368{bottom:482.666971pt;}
.y12_c03368{bottom:497.386555pt;}
.yf_c03368{bottom:513.387067pt;}
.y1c_c03368{bottom:546.027067pt;}
.yb_c03368{bottom:593.385179pt;}
.yd_c03368{bottom:628.586875pt;}
.yc_c03368{bottom:637.227067pt;}
.ya_c03368{bottom:707.945339pt;}
.y9_c03368{bottom:779.945531pt;}
.y7_c03368{bottom:823.786427pt;}
.y3_c03368{bottom:839.786939pt;}
.y8_c03368{bottom:870.505979pt;}
.y6_c03368{bottom:899.946203pt;}
.y5_c03368{bottom:915.946715pt;}
.y2_c03368{bottom:945.386939pt;}
.y4_c03368{bottom:959.786555pt;}
.y1_c03368{bottom:975.787067pt;}
.ye_c03368{bottom:1008.747067pt;}
.h3_c03368{height:28.916250pt;}
.h1_c03368{height:37.063125pt;}
.h2_c03368{height:37.166250pt;}
.h4_c03368{height:48.581988pt;}
.h0_c03368{height:1122.666667pt;}
.w1_c03368{width:793.333333pt;}
.w0_c03368{width:793.626667pt;}
.x0_c03368{left:0.000000pt;}
.xd_c03368{left:104.000000pt;}
.x8_c03368{left:391.999872pt;}
.x4_c03368{left:396.160512pt;}
.xb_c03368{left:400.960000pt;}
.x7_c03368{left:404.799648pt;}
.x5_c03368{left:410.560128pt;}
.x1_c03368{left:411.840000pt;}
.xa_c03368{left:429.760320pt;}
.x9_c03368{left:437.439552pt;}
.x6_c03368{left:438.400512pt;}
.xc_c03368{left:450.560320pt;}
.x3_c03368{left:455.039904pt;}
.x2_c03368{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03369 {
    display:none;
  }
  .loading-indicator_c03369.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03369 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03369 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03369" -> "#page-container .classname_c03369")
 */
.pf_c03369 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03369 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03369.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03369 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03369 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03369 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03369 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03369 {overflow:visible;}
  }
}
.c_c03369 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03369 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03369:after { /* webkit #35443 */
  content: '';
}
.t_c03369:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03369 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03369 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03369 { /* info for Javascript */
  display:none;
}
.l_c03369 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03369 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03369 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03369:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03369 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03369.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03369.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03369 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03369{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03369;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03369{font-family:ff1_c03369;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03369;src:url('chunks/assets/font_1f41b984a9ece161513ad2e2.woff2')format("woff");}.ff2_c03369{font-family:ff2_c03369;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03369;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03369{font-family:ff3_c03369;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03369{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03369{vertical-align:0.000000px;}
.v1_c03369{vertical-align:1.439424px;}
.ls7_c03369{letter-spacing:-0.613008px;}
.ls9_c03369{letter-spacing:-0.574992px;}
.lse_c03369{letter-spacing:-0.275616px;}
.lsc_c03369{letter-spacing:-0.261360px;}
.ls6_c03369{letter-spacing:-0.242352px;}
.ls4_c03369{letter-spacing:-0.118800px;}
.ls11_c03369{letter-spacing:0.000000px;}
.ls2_c03369{letter-spacing:0.006048px;}
.ls5_c03369{letter-spacing:0.128304px;}
.lsb_c03369{letter-spacing:0.508464px;}
.ls10_c03369{letter-spacing:0.514080px;}
.lsd_c03369{letter-spacing:0.536976px;}
.lsa_c03369{letter-spacing:0.579744px;}
.lsf_c03369{letter-spacing:0.594000px;}
.ls8_c03369{letter-spacing:0.598752px;}
.ls3_c03369{letter-spacing:0.613008px;}
.ls0_c03369{letter-spacing:0.717552px;}
.ls1_c03369{letter-spacing:0.722304px;}
.sc__c03369{text-shadow:none;}
.sc0_c03369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03369{-webkit-text-stroke:0px transparent;}
.sc0_c03369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03369{word-spacing:-15.126048px;}
.wsa_c03369{word-spacing:-12.474000px;}
.ws8_c03369{word-spacing:-12.459744px;}
.ws9_c03369{word-spacing:-12.416976px;}
.ws4_c03369{word-spacing:-11.637648px;}
.ws2_c03369{word-spacing:-11.266992px;}
.ws11_c03369{word-spacing:-1.083456px;}
.ws10_c03369{word-spacing:-1.078704px;}
.wsd_c03369{word-spacing:-0.974160px;}
.ws14_c03369{word-spacing:-0.719712px;}
.wsf_c03369{word-spacing:-0.118800px;}
.ws12_c03369{word-spacing:-0.099792px;}
.ws13_c03369{word-spacing:-0.085536px;}
.wse_c03369{word-spacing:0.000000px;}
.wsb_c03369{word-spacing:33.300288px;}
.ws6_c03369{word-spacing:36.742464px;}
.ws1_c03369{word-spacing:37.759392px;}
.ws0_c03369{word-spacing:38.020752px;}
.ws3_c03369{word-spacing:39.218256px;}
.ws5_c03369{word-spacing:39.902544px;}
.ws7_c03369{word-spacing:42.026688px;}
._0_c03369{margin-left:-1.948320px;}
._2_c03369{width:1.482624px;}
._4_c03369{width:5.749920px;}
._1_c03369{width:50.252400px;}
._3_c03369{width:51.530688px;}
.fc0_c03369{color:rgb(0,0,0);}
.fs0_c03369{font-size:47.520000px;}
.fs1_c03369{font-size:60.480000px;}
.y0_c03369{bottom:0.000000px;}
.y19_c03369{bottom:146.998362px;}
.y1b_c03369{bottom:186.600234px;}
.y1a_c03369{bottom:196.320450px;}
.y18_c03369{bottom:275.878542px;}
.y17_c03369{bottom:356.878758px;}
.y15_c03369{bottom:406.559730px;}
.y11_c03369{bottom:424.560306px;}
.y16_c03369{bottom:458.759262px;}
.y14_c03369{bottom:491.879514px;}
.y13_c03369{bottom:509.880090px;}
.y10_c03369{bottom:543.000342px;}
.y12_c03369{bottom:559.559874px;}
.yf_c03369{bottom:577.560450px;}
.y1c_c03369{bottom:614.280450px;}
.yb_c03369{bottom:667.558326px;}
.yd_c03369{bottom:707.160234px;}
.yc_c03369{bottom:716.880450px;}
.ya_c03369{bottom:796.438506px;}
.y9_c03369{bottom:877.438722px;}
.y7_c03369{bottom:926.759730px;}
.y3_c03369{bottom:944.760306px;}
.y8_c03369{bottom:979.319226px;}
.y6_c03369{bottom:1012.439478px;}
.y5_c03369{bottom:1030.440054px;}
.y2_c03369{bottom:1063.560306px;}
.y4_c03369{bottom:1079.759874px;}
.y1_c03369{bottom:1097.760450px;}
.ye_c03369{bottom:1134.840450px;}
.h3_c03369{height:32.530781px;}
.h1_c03369{height:41.696016px;}
.h2_c03369{height:41.812031px;}
.h4_c03369{height:54.654737px;}
.h0_c03369{height:1263.000000px;}
.w1_c03369{width:892.500000px;}
.w0_c03369{width:892.830000px;}
.x0_c03369{left:0.000000px;}
.xd_c03369{left:117.000000px;}
.x8_c03369{left:440.999856px;}
.x4_c03369{left:445.680576px;}
.xb_c03369{left:451.080000px;}
.x7_c03369{left:455.399604px;}
.x5_c03369{left:461.880144px;}
.x1_c03369{left:463.320000px;}
.xa_c03369{left:483.480360px;}
.x9_c03369{left:492.119496px;}
.x6_c03369{left:493.200576px;}
.xc_c03369{left:506.880360px;}
.x3_c03369{left:511.919892px;}
.x2_c03369{left:526.679604px;}
@media print{
.v0_c03369{vertical-align:0.000000pt;}
.v1_c03369{vertical-align:1.279488pt;}
.ls7_c03369{letter-spacing:-0.544896pt;}
.ls9_c03369{letter-spacing:-0.511104pt;}
.lse_c03369{letter-spacing:-0.244992pt;}
.lsc_c03369{letter-spacing:-0.232320pt;}
.ls6_c03369{letter-spacing:-0.215424pt;}
.ls4_c03369{letter-spacing:-0.105600pt;}
.ls11_c03369{letter-spacing:0.000000pt;}
.ls2_c03369{letter-spacing:0.005376pt;}
.ls5_c03369{letter-spacing:0.114048pt;}
.lsb_c03369{letter-spacing:0.451968pt;}
.ls10_c03369{letter-spacing:0.456960pt;}
.lsd_c03369{letter-spacing:0.477312pt;}
.lsa_c03369{letter-spacing:0.515328pt;}
.lsf_c03369{letter-spacing:0.528000pt;}
.ls8_c03369{letter-spacing:0.532224pt;}
.ls3_c03369{letter-spacing:0.544896pt;}
.ls0_c03369{letter-spacing:0.637824pt;}
.ls1_c03369{letter-spacing:0.642048pt;}
.wsc_c03369{word-spacing:-13.445376pt;}
.wsa_c03369{word-spacing:-11.088000pt;}
.ws8_c03369{word-spacing:-11.075328pt;}
.ws9_c03369{word-spacing:-11.037312pt;}
.ws4_c03369{word-spacing:-10.344576pt;}
.ws2_c03369{word-spacing:-10.015104pt;}
.ws11_c03369{word-spacing:-0.963072pt;}
.ws10_c03369{word-spacing:-0.958848pt;}
.wsd_c03369{word-spacing:-0.865920pt;}
.ws14_c03369{word-spacing:-0.639744pt;}
.wsf_c03369{word-spacing:-0.105600pt;}
.ws12_c03369{word-spacing:-0.088704pt;}
.ws13_c03369{word-spacing:-0.076032pt;}
.wse_c03369{word-spacing:0.000000pt;}
.wsb_c03369{word-spacing:29.600256pt;}
.ws6_c03369{word-spacing:32.659968pt;}
.ws1_c03369{word-spacing:33.563904pt;}
.ws0_c03369{word-spacing:33.796224pt;}
.ws3_c03369{word-spacing:34.860672pt;}
.ws5_c03369{word-spacing:35.468928pt;}
.ws7_c03369{word-spacing:37.357056pt;}
._0_c03369{margin-left:-1.731840pt;}
._2_c03369{width:1.317888pt;}
._4_c03369{width:5.111040pt;}
._1_c03369{width:44.668800pt;}
._3_c03369{width:45.805056pt;}
.fs0_c03369{font-size:42.240000pt;}
.fs1_c03369{font-size:53.760000pt;}
.y0_c03369{bottom:0.000000pt;}
.y19_c03369{bottom:130.665211pt;}
.y1b_c03369{bottom:165.866875pt;}
.y1a_c03369{bottom:174.507067pt;}
.y18_c03369{bottom:245.225371pt;}
.y17_c03369{bottom:317.225563pt;}
.y15_c03369{bottom:361.386427pt;}
.y11_c03369{bottom:377.386939pt;}
.y16_c03369{bottom:407.786011pt;}
.y14_c03369{bottom:437.226235pt;}
.y13_c03369{bottom:453.226747pt;}
.y10_c03369{bottom:482.666971pt;}
.y12_c03369{bottom:497.386555pt;}
.yf_c03369{bottom:513.387067pt;}
.y1c_c03369{bottom:546.027067pt;}
.yb_c03369{bottom:593.385179pt;}
.yd_c03369{bottom:628.586875pt;}
.yc_c03369{bottom:637.227067pt;}
.ya_c03369{bottom:707.945339pt;}
.y9_c03369{bottom:779.945531pt;}
.y7_c03369{bottom:823.786427pt;}
.y3_c03369{bottom:839.786939pt;}
.y8_c03369{bottom:870.505979pt;}
.y6_c03369{bottom:899.946203pt;}
.y5_c03369{bottom:915.946715pt;}
.y2_c03369{bottom:945.386939pt;}
.y4_c03369{bottom:959.786555pt;}
.y1_c03369{bottom:975.787067pt;}
.ye_c03369{bottom:1008.747067pt;}
.h3_c03369{height:28.916250pt;}
.h1_c03369{height:37.063125pt;}
.h2_c03369{height:37.166250pt;}
.h4_c03369{height:48.581988pt;}
.h0_c03369{height:1122.666667pt;}
.w1_c03369{width:793.333333pt;}
.w0_c03369{width:793.626667pt;}
.x0_c03369{left:0.000000pt;}
.xd_c03369{left:104.000000pt;}
.x8_c03369{left:391.999872pt;}
.x4_c03369{left:396.160512pt;}
.xb_c03369{left:400.960000pt;}
.x7_c03369{left:404.799648pt;}
.x5_c03369{left:410.560128pt;}
.x1_c03369{left:411.840000pt;}
.xa_c03369{left:429.760320pt;}
.x9_c03369{left:437.439552pt;}
.x6_c03369{left:438.400512pt;}
.xc_c03369{left:450.560320pt;}
.x3_c03369{left:455.039904pt;}
.x2_c03369{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03370 {
    display:none;
  }
  .loading-indicator_c03370.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03370 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03370 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03370" -> "#page-container .classname_c03370")
 */
.pf_c03370 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03370 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03370.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03370 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03370 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03370 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03370 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03370 {overflow:visible;}
  }
}
.c_c03370 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03370 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03370:after { /* webkit #35443 */
  content: '';
}
.t_c03370:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03370 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03370 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03370 { /* info for Javascript */
  display:none;
}
.l_c03370 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03370 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03370 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03370:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03370 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03370.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03370.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03370 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03370{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03370;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03370{font-family:ff1_c03370;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03370;src:url('chunks/assets/font_61da377899cb2b1d9961f0db.woff2')format("woff");}.ff2_c03370{font-family:ff2_c03370;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03370;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03370{font-family:ff3_c03370;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03370{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03370{vertical-align:0.000000px;}
.v1_c03370{vertical-align:1.439424px;}
.ls12_c03370{letter-spacing:-0.760320px;}
.ls7_c03370{letter-spacing:-0.613008px;}
.ls9_c03370{letter-spacing:-0.574992px;}
.lse_c03370{letter-spacing:-0.275616px;}
.ls13_c03370{letter-spacing:-0.270864px;}
.lsc_c03370{letter-spacing:-0.261360px;}
.ls6_c03370{letter-spacing:-0.242352px;}
.ls4_c03370{letter-spacing:-0.118800px;}
.ls11_c03370{letter-spacing:0.000000px;}
.ls1_c03370{letter-spacing:0.006048px;}
.ls5_c03370{letter-spacing:0.128304px;}
.lsb_c03370{letter-spacing:0.508464px;}
.ls10_c03370{letter-spacing:0.514080px;}
.lsd_c03370{letter-spacing:0.536976px;}
.lsa_c03370{letter-spacing:0.579744px;}
.lsf_c03370{letter-spacing:0.594000px;}
.ls8_c03370{letter-spacing:0.598752px;}
.ls2_c03370{letter-spacing:0.613008px;}
.ls3_c03370{letter-spacing:0.717552px;}
.ls0_c03370{letter-spacing:0.722304px;}
.sc__c03370{text-shadow:none;}
.sc0_c03370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03370{-webkit-text-stroke:0px transparent;}
.sc0_c03370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03370{word-spacing:-15.126048px;}
.wsa_c03370{word-spacing:-12.474000px;}
.ws8_c03370{word-spacing:-12.459744px;}
.ws9_c03370{word-spacing:-12.416976px;}
.ws4_c03370{word-spacing:-11.637648px;}
.ws2_c03370{word-spacing:-11.266992px;}
.ws12_c03370{word-spacing:-1.083456px;}
.wsf_c03370{word-spacing:-0.974160px;}
.ws15_c03370{word-spacing:-0.719712px;}
.ws11_c03370{word-spacing:-0.118800px;}
.ws13_c03370{word-spacing:-0.099792px;}
.ws16_c03370{word-spacing:-0.090288px;}
.ws14_c03370{word-spacing:-0.085536px;}
.ws10_c03370{word-spacing:0.000000px;}
.wsb_c03370{word-spacing:33.300288px;}
.wsd_c03370{word-spacing:34.836912px;}
.ws6_c03370{word-spacing:36.742464px;}
.ws1_c03370{word-spacing:37.759392px;}
.ws0_c03370{word-spacing:38.020752px;}
.ws3_c03370{word-spacing:39.218256px;}
.wse_c03370{word-spacing:39.322800px;}
.ws5_c03370{word-spacing:39.902544px;}
.ws7_c03370{word-spacing:42.026688px;}
._0_c03370{margin-left:-1.948320px;}
._2_c03370{width:1.482624px;}
._4_c03370{width:5.749920px;}
._1_c03370{width:50.252400px;}
._3_c03370{width:51.530688px;}
._5_c03370{width:55.612656px;}
._6_c03370{width:56.952720px;}
.fc0_c03370{color:rgb(0,0,0);}
.fs0_c03370{font-size:47.520000px;}
.fs1_c03370{font-size:60.480000px;}
.y0_c03370{bottom:0.000000px;}
.y1a_c03370{bottom:131.878686px;}
.y19_c03370{bottom:146.998362px;}
.y1c_c03370{bottom:186.600234px;}
.y1b_c03370{bottom:196.320450px;}
.y18_c03370{bottom:275.878542px;}
.y17_c03370{bottom:356.878758px;}
.y15_c03370{bottom:406.559730px;}
.y11_c03370{bottom:424.560306px;}
.y16_c03370{bottom:458.759262px;}
.y14_c03370{bottom:491.879514px;}
.y13_c03370{bottom:509.880090px;}
.y10_c03370{bottom:543.000342px;}
.y12_c03370{bottom:559.559874px;}
.yf_c03370{bottom:577.560450px;}
.y1d_c03370{bottom:614.280450px;}
.yb_c03370{bottom:667.558326px;}
.yd_c03370{bottom:707.160234px;}
.yc_c03370{bottom:716.880450px;}
.ya_c03370{bottom:796.438506px;}
.y9_c03370{bottom:877.438722px;}
.y7_c03370{bottom:926.759730px;}
.y3_c03370{bottom:944.760306px;}
.y8_c03370{bottom:979.319226px;}
.y6_c03370{bottom:1012.439478px;}
.y5_c03370{bottom:1030.440054px;}
.y2_c03370{bottom:1063.560306px;}
.y4_c03370{bottom:1079.759874px;}
.y1_c03370{bottom:1097.760450px;}
.ye_c03370{bottom:1134.840450px;}
.h3_c03370{height:32.530781px;}
.h1_c03370{height:41.696016px;}
.h2_c03370{height:41.812031px;}
.h4_c03370{height:54.654737px;}
.h0_c03370{height:1263.000000px;}
.w1_c03370{width:892.500000px;}
.w0_c03370{width:892.830000px;}
.x0_c03370{left:0.000000px;}
.xd_c03370{left:117.000000px;}
.x8_c03370{left:440.999856px;}
.x4_c03370{left:445.680576px;}
.xb_c03370{left:451.080000px;}
.x7_c03370{left:455.399604px;}
.x5_c03370{left:461.880144px;}
.x1_c03370{left:463.320000px;}
.xa_c03370{left:483.480360px;}
.x9_c03370{left:492.119496px;}
.x6_c03370{left:493.200576px;}
.xc_c03370{left:506.880360px;}
.x3_c03370{left:511.919892px;}
.x2_c03370{left:526.679604px;}
.xe_c03370{left:569.880036px;}
@media print{
.v0_c03370{vertical-align:0.000000pt;}
.v1_c03370{vertical-align:1.279488pt;}
.ls12_c03370{letter-spacing:-0.675840pt;}
.ls7_c03370{letter-spacing:-0.544896pt;}
.ls9_c03370{letter-spacing:-0.511104pt;}
.lse_c03370{letter-spacing:-0.244992pt;}
.ls13_c03370{letter-spacing:-0.240768pt;}
.lsc_c03370{letter-spacing:-0.232320pt;}
.ls6_c03370{letter-spacing:-0.215424pt;}
.ls4_c03370{letter-spacing:-0.105600pt;}
.ls11_c03370{letter-spacing:0.000000pt;}
.ls1_c03370{letter-spacing:0.005376pt;}
.ls5_c03370{letter-spacing:0.114048pt;}
.lsb_c03370{letter-spacing:0.451968pt;}
.ls10_c03370{letter-spacing:0.456960pt;}
.lsd_c03370{letter-spacing:0.477312pt;}
.lsa_c03370{letter-spacing:0.515328pt;}
.lsf_c03370{letter-spacing:0.528000pt;}
.ls8_c03370{letter-spacing:0.532224pt;}
.ls2_c03370{letter-spacing:0.544896pt;}
.ls3_c03370{letter-spacing:0.637824pt;}
.ls0_c03370{letter-spacing:0.642048pt;}
.wsc_c03370{word-spacing:-13.445376pt;}
.wsa_c03370{word-spacing:-11.088000pt;}
.ws8_c03370{word-spacing:-11.075328pt;}
.ws9_c03370{word-spacing:-11.037312pt;}
.ws4_c03370{word-spacing:-10.344576pt;}
.ws2_c03370{word-spacing:-10.015104pt;}
.ws12_c03370{word-spacing:-0.963072pt;}
.wsf_c03370{word-spacing:-0.865920pt;}
.ws15_c03370{word-spacing:-0.639744pt;}
.ws11_c03370{word-spacing:-0.105600pt;}
.ws13_c03370{word-spacing:-0.088704pt;}
.ws16_c03370{word-spacing:-0.080256pt;}
.ws14_c03370{word-spacing:-0.076032pt;}
.ws10_c03370{word-spacing:0.000000pt;}
.wsb_c03370{word-spacing:29.600256pt;}
.wsd_c03370{word-spacing:30.966144pt;}
.ws6_c03370{word-spacing:32.659968pt;}
.ws1_c03370{word-spacing:33.563904pt;}
.ws0_c03370{word-spacing:33.796224pt;}
.ws3_c03370{word-spacing:34.860672pt;}
.wse_c03370{word-spacing:34.953600pt;}
.ws5_c03370{word-spacing:35.468928pt;}
.ws7_c03370{word-spacing:37.357056pt;}
._0_c03370{margin-left:-1.731840pt;}
._2_c03370{width:1.317888pt;}
._4_c03370{width:5.111040pt;}
._1_c03370{width:44.668800pt;}
._3_c03370{width:45.805056pt;}
._5_c03370{width:49.433472pt;}
._6_c03370{width:50.624640pt;}
.fs0_c03370{font-size:42.240000pt;}
.fs1_c03370{font-size:53.760000pt;}
.y0_c03370{bottom:0.000000pt;}
.y1a_c03370{bottom:117.225499pt;}
.y19_c03370{bottom:130.665211pt;}
.y1c_c03370{bottom:165.866875pt;}
.y1b_c03370{bottom:174.507067pt;}
.y18_c03370{bottom:245.225371pt;}
.y17_c03370{bottom:317.225563pt;}
.y15_c03370{bottom:361.386427pt;}
.y11_c03370{bottom:377.386939pt;}
.y16_c03370{bottom:407.786011pt;}
.y14_c03370{bottom:437.226235pt;}
.y13_c03370{bottom:453.226747pt;}
.y10_c03370{bottom:482.666971pt;}
.y12_c03370{bottom:497.386555pt;}
.yf_c03370{bottom:513.387067pt;}
.y1d_c03370{bottom:546.027067pt;}
.yb_c03370{bottom:593.385179pt;}
.yd_c03370{bottom:628.586875pt;}
.yc_c03370{bottom:637.227067pt;}
.ya_c03370{bottom:707.945339pt;}
.y9_c03370{bottom:779.945531pt;}
.y7_c03370{bottom:823.786427pt;}
.y3_c03370{bottom:839.786939pt;}
.y8_c03370{bottom:870.505979pt;}
.y6_c03370{bottom:899.946203pt;}
.y5_c03370{bottom:915.946715pt;}
.y2_c03370{bottom:945.386939pt;}
.y4_c03370{bottom:959.786555pt;}
.y1_c03370{bottom:975.787067pt;}
.ye_c03370{bottom:1008.747067pt;}
.h3_c03370{height:28.916250pt;}
.h1_c03370{height:37.063125pt;}
.h2_c03370{height:37.166250pt;}
.h4_c03370{height:48.581988pt;}
.h0_c03370{height:1122.666667pt;}
.w1_c03370{width:793.333333pt;}
.w0_c03370{width:793.626667pt;}
.x0_c03370{left:0.000000pt;}
.xd_c03370{left:104.000000pt;}
.x8_c03370{left:391.999872pt;}
.x4_c03370{left:396.160512pt;}
.xb_c03370{left:400.960000pt;}
.x7_c03370{left:404.799648pt;}
.x5_c03370{left:410.560128pt;}
.x1_c03370{left:411.840000pt;}
.xa_c03370{left:429.760320pt;}
.x9_c03370{left:437.439552pt;}
.x6_c03370{left:438.400512pt;}
.xc_c03370{left:450.560320pt;}
.x3_c03370{left:455.039904pt;}
.x2_c03370{left:468.159648pt;}
.xe_c03370{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03371 {
    display:none;
  }
  .loading-indicator_c03371.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03371 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03371 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03371" -> "#page-container .classname_c03371")
 */
.pf_c03371 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03371 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03371.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03371 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03371 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03371 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03371 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03371 {overflow:visible;}
  }
}
.c_c03371 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03371 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03371:after { /* webkit #35443 */
  content: '';
}
.t_c03371:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03371 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03371 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03371 { /* info for Javascript */
  display:none;
}
.l_c03371 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03371 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03371 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03371:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03371 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03371.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03371.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03371 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03371{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03371;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03371{font-family:ff1_c03371;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03371;src:url('chunks/assets/font_813d11ebe87c8f847cb6ccc1.woff2')format("woff");}.ff2_c03371{font-family:ff2_c03371;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03371;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03371{font-family:ff3_c03371;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03371{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03371{vertical-align:0.000000px;}
.v1_c03371{vertical-align:1.439424px;}
.lse_c03371{letter-spacing:-0.760320px;}
.ls7_c03371{letter-spacing:-0.613008px;}
.ls9_c03371{letter-spacing:-0.574992px;}
.ls13_c03371{letter-spacing:-0.275616px;}
.lsf_c03371{letter-spacing:-0.270864px;}
.lsc_c03371{letter-spacing:-0.261360px;}
.ls6_c03371{letter-spacing:-0.242352px;}
.ls4_c03371{letter-spacing:-0.118800px;}
.ls12_c03371{letter-spacing:0.000000px;}
.ls1_c03371{letter-spacing:0.006048px;}
.ls5_c03371{letter-spacing:0.128304px;}
.lsb_c03371{letter-spacing:0.508464px;}
.ls11_c03371{letter-spacing:0.514080px;}
.lsd_c03371{letter-spacing:0.536976px;}
.lsa_c03371{letter-spacing:0.579744px;}
.ls10_c03371{letter-spacing:0.594000px;}
.ls8_c03371{letter-spacing:0.598752px;}
.ls2_c03371{letter-spacing:0.613008px;}
.ls3_c03371{letter-spacing:0.717552px;}
.ls0_c03371{letter-spacing:0.722304px;}
.sc__c03371{text-shadow:none;}
.sc0_c03371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03371{-webkit-text-stroke:0px transparent;}
.sc0_c03371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03371{word-spacing:-15.126048px;}
.wsa_c03371{word-spacing:-12.474000px;}
.ws6_c03371{word-spacing:-12.459744px;}
.ws4_c03371{word-spacing:-11.637648px;}
.ws2_c03371{word-spacing:-11.266992px;}
.ws11_c03371{word-spacing:-1.083456px;}
.wse_c03371{word-spacing:-0.974160px;}
.ws15_c03371{word-spacing:-0.719712px;}
.ws10_c03371{word-spacing:-0.118800px;}
.ws12_c03371{word-spacing:-0.099792px;}
.ws13_c03371{word-spacing:-0.090288px;}
.ws14_c03371{word-spacing:-0.085536px;}
.wsf_c03371{word-spacing:0.000000px;}
.wsb_c03371{word-spacing:33.300288px;}
.ws8_c03371{word-spacing:34.836912px;}
.wsd_c03371{word-spacing:36.742464px;}
.ws1_c03371{word-spacing:37.759392px;}
.ws0_c03371{word-spacing:38.020752px;}
.ws3_c03371{word-spacing:39.218256px;}
.ws9_c03371{word-spacing:39.322800px;}
.ws5_c03371{word-spacing:39.902544px;}
.ws7_c03371{word-spacing:42.026688px;}
._0_c03371{margin-left:-1.948320px;}
._2_c03371{width:1.482624px;}
._4_c03371{width:5.749920px;}
._1_c03371{width:50.252400px;}
._3_c03371{width:51.530688px;}
._5_c03371{width:55.612656px;}
._6_c03371{width:56.952720px;}
.fc0_c03371{color:rgb(0,0,0);}
.fs0_c03371{font-size:47.520000px;}
.fs1_c03371{font-size:60.480000px;}
.y0_c03371{bottom:0.000000px;}
.y1a_c03371{bottom:146.998362px;}
.y1c_c03371{bottom:186.600234px;}
.y1b_c03371{bottom:196.320450px;}
.y19_c03371{bottom:275.878542px;}
.y18_c03371{bottom:356.878758px;}
.y16_c03371{bottom:406.559730px;}
.y12_c03371{bottom:424.560306px;}
.y17_c03371{bottom:458.759262px;}
.y15_c03371{bottom:491.879514px;}
.y14_c03371{bottom:509.880090px;}
.y11_c03371{bottom:543.000342px;}
.y13_c03371{bottom:559.559874px;}
.y10_c03371{bottom:577.560450px;}
.y1d_c03371{bottom:614.280450px;}
.yc_c03371{bottom:652.438650px;}
.yb_c03371{bottom:667.558326px;}
.ye_c03371{bottom:707.160234px;}
.yd_c03371{bottom:716.880450px;}
.ya_c03371{bottom:796.438506px;}
.y9_c03371{bottom:877.438722px;}
.y7_c03371{bottom:926.759730px;}
.y3_c03371{bottom:944.760306px;}
.y8_c03371{bottom:979.319226px;}
.y6_c03371{bottom:1012.439478px;}
.y5_c03371{bottom:1030.440054px;}
.y2_c03371{bottom:1063.560306px;}
.y4_c03371{bottom:1079.759874px;}
.y1_c03371{bottom:1097.760450px;}
.yf_c03371{bottom:1134.840450px;}
.h3_c03371{height:32.530781px;}
.h1_c03371{height:41.696016px;}
.h2_c03371{height:41.812031px;}
.h4_c03371{height:54.654737px;}
.h0_c03371{height:1263.000000px;}
.w1_c03371{width:892.500000px;}
.w0_c03371{width:892.830000px;}
.x0_c03371{left:0.000000px;}
.xe_c03371{left:117.000000px;}
.x8_c03371{left:440.999856px;}
.x4_c03371{left:445.680576px;}
.xc_c03371{left:451.080000px;}
.x7_c03371{left:455.399604px;}
.x5_c03371{left:461.880144px;}
.x1_c03371{left:463.320000px;}
.xa_c03371{left:483.480360px;}
.x9_c03371{left:492.119496px;}
.x6_c03371{left:493.200576px;}
.xd_c03371{left:506.880360px;}
.x3_c03371{left:511.919892px;}
.x2_c03371{left:526.679604px;}
.xb_c03371{left:569.880036px;}
@media print{
.v0_c03371{vertical-align:0.000000pt;}
.v1_c03371{vertical-align:1.279488pt;}
.lse_c03371{letter-spacing:-0.675840pt;}
.ls7_c03371{letter-spacing:-0.544896pt;}
.ls9_c03371{letter-spacing:-0.511104pt;}
.ls13_c03371{letter-spacing:-0.244992pt;}
.lsf_c03371{letter-spacing:-0.240768pt;}
.lsc_c03371{letter-spacing:-0.232320pt;}
.ls6_c03371{letter-spacing:-0.215424pt;}
.ls4_c03371{letter-spacing:-0.105600pt;}
.ls12_c03371{letter-spacing:0.000000pt;}
.ls1_c03371{letter-spacing:0.005376pt;}
.ls5_c03371{letter-spacing:0.114048pt;}
.lsb_c03371{letter-spacing:0.451968pt;}
.ls11_c03371{letter-spacing:0.456960pt;}
.lsd_c03371{letter-spacing:0.477312pt;}
.lsa_c03371{letter-spacing:0.515328pt;}
.ls10_c03371{letter-spacing:0.528000pt;}
.ls8_c03371{letter-spacing:0.532224pt;}
.ls2_c03371{letter-spacing:0.544896pt;}
.ls3_c03371{letter-spacing:0.637824pt;}
.ls0_c03371{letter-spacing:0.642048pt;}
.wsc_c03371{word-spacing:-13.445376pt;}
.wsa_c03371{word-spacing:-11.088000pt;}
.ws6_c03371{word-spacing:-11.075328pt;}
.ws4_c03371{word-spacing:-10.344576pt;}
.ws2_c03371{word-spacing:-10.015104pt;}
.ws11_c03371{word-spacing:-0.963072pt;}
.wse_c03371{word-spacing:-0.865920pt;}
.ws15_c03371{word-spacing:-0.639744pt;}
.ws10_c03371{word-spacing:-0.105600pt;}
.ws12_c03371{word-spacing:-0.088704pt;}
.ws13_c03371{word-spacing:-0.080256pt;}
.ws14_c03371{word-spacing:-0.076032pt;}
.wsf_c03371{word-spacing:0.000000pt;}
.wsb_c03371{word-spacing:29.600256pt;}
.ws8_c03371{word-spacing:30.966144pt;}
.wsd_c03371{word-spacing:32.659968pt;}
.ws1_c03371{word-spacing:33.563904pt;}
.ws0_c03371{word-spacing:33.796224pt;}
.ws3_c03371{word-spacing:34.860672pt;}
.ws9_c03371{word-spacing:34.953600pt;}
.ws5_c03371{word-spacing:35.468928pt;}
.ws7_c03371{word-spacing:37.357056pt;}
._0_c03371{margin-left:-1.731840pt;}
._2_c03371{width:1.317888pt;}
._4_c03371{width:5.111040pt;}
._1_c03371{width:44.668800pt;}
._3_c03371{width:45.805056pt;}
._5_c03371{width:49.433472pt;}
._6_c03371{width:50.624640pt;}
.fs0_c03371{font-size:42.240000pt;}
.fs1_c03371{font-size:53.760000pt;}
.y0_c03371{bottom:0.000000pt;}
.y1a_c03371{bottom:130.665211pt;}
.y1c_c03371{bottom:165.866875pt;}
.y1b_c03371{bottom:174.507067pt;}
.y19_c03371{bottom:245.225371pt;}
.y18_c03371{bottom:317.225563pt;}
.y16_c03371{bottom:361.386427pt;}
.y12_c03371{bottom:377.386939pt;}
.y17_c03371{bottom:407.786011pt;}
.y15_c03371{bottom:437.226235pt;}
.y14_c03371{bottom:453.226747pt;}
.y11_c03371{bottom:482.666971pt;}
.y13_c03371{bottom:497.386555pt;}
.y10_c03371{bottom:513.387067pt;}
.y1d_c03371{bottom:546.027067pt;}
.yc_c03371{bottom:579.945467pt;}
.yb_c03371{bottom:593.385179pt;}
.ye_c03371{bottom:628.586875pt;}
.yd_c03371{bottom:637.227067pt;}
.ya_c03371{bottom:707.945339pt;}
.y9_c03371{bottom:779.945531pt;}
.y7_c03371{bottom:823.786427pt;}
.y3_c03371{bottom:839.786939pt;}
.y8_c03371{bottom:870.505979pt;}
.y6_c03371{bottom:899.946203pt;}
.y5_c03371{bottom:915.946715pt;}
.y2_c03371{bottom:945.386939pt;}
.y4_c03371{bottom:959.786555pt;}
.y1_c03371{bottom:975.787067pt;}
.yf_c03371{bottom:1008.747067pt;}
.h3_c03371{height:28.916250pt;}
.h1_c03371{height:37.063125pt;}
.h2_c03371{height:37.166250pt;}
.h4_c03371{height:48.581988pt;}
.h0_c03371{height:1122.666667pt;}
.w1_c03371{width:793.333333pt;}
.w0_c03371{width:793.626667pt;}
.x0_c03371{left:0.000000pt;}
.xe_c03371{left:104.000000pt;}
.x8_c03371{left:391.999872pt;}
.x4_c03371{left:396.160512pt;}
.xc_c03371{left:400.960000pt;}
.x7_c03371{left:404.799648pt;}
.x5_c03371{left:410.560128pt;}
.x1_c03371{left:411.840000pt;}
.xa_c03371{left:429.760320pt;}
.x9_c03371{left:437.439552pt;}
.x6_c03371{left:438.400512pt;}
.xd_c03371{left:450.560320pt;}
.x3_c03371{left:455.039904pt;}
.x2_c03371{left:468.159648pt;}
.xb_c03371{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03372 {
    display:none;
  }
  .loading-indicator_c03372.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03372 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03372 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03372" -> "#page-container .classname_c03372")
 */
.pf_c03372 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03372 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03372.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03372 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03372 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03372 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03372 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03372 {overflow:visible;}
  }
}
.c_c03372 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03372 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03372:after { /* webkit #35443 */
  content: '';
}
.t_c03372:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03372 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03372 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03372 { /* info for Javascript */
  display:none;
}
.l_c03372 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03372 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03372 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03372:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03372 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03372.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03372.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03372 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03372{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03372;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03372{font-family:ff1_c03372;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03372;src:url('chunks/assets/font_1ecc156e8a73ed064c1b4a83.woff2')format("woff");}.ff2_c03372{font-family:ff2_c03372;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03372;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03372{font-family:ff3_c03372;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03372{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03372{vertical-align:0.000000px;}
.v1_c03372{vertical-align:1.439424px;}
.lse_c03372{letter-spacing:-0.736560px;}
.ls7_c03372{letter-spacing:-0.613008px;}
.ls9_c03372{letter-spacing:-0.574992px;}
.lsf_c03372{letter-spacing:-0.270864px;}
.lsc_c03372{letter-spacing:-0.261360px;}
.ls6_c03372{letter-spacing:-0.242352px;}
.ls4_c03372{letter-spacing:-0.118800px;}
.ls12_c03372{letter-spacing:0.000000px;}
.ls1_c03372{letter-spacing:0.006048px;}
.ls5_c03372{letter-spacing:0.128304px;}
.lsb_c03372{letter-spacing:0.508464px;}
.ls11_c03372{letter-spacing:0.514080px;}
.lsd_c03372{letter-spacing:0.536976px;}
.lsa_c03372{letter-spacing:0.579744px;}
.ls10_c03372{letter-spacing:0.594000px;}
.ls8_c03372{letter-spacing:0.598752px;}
.ls2_c03372{letter-spacing:0.613008px;}
.ls3_c03372{letter-spacing:0.717552px;}
.ls0_c03372{letter-spacing:0.722304px;}
.sc__c03372{text-shadow:none;}
.sc0_c03372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03372{-webkit-text-stroke:0px transparent;}
.sc0_c03372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03372{word-spacing:-15.126048px;}
.wsa_c03372{word-spacing:-12.474000px;}
.ws6_c03372{word-spacing:-12.459744px;}
.ws4_c03372{word-spacing:-11.637648px;}
.ws2_c03372{word-spacing:-11.266992px;}
.ws10_c03372{word-spacing:-1.083456px;}
.wsd_c03372{word-spacing:-0.974160px;}
.ws14_c03372{word-spacing:-0.719712px;}
.wsf_c03372{word-spacing:-0.118800px;}
.ws11_c03372{word-spacing:-0.099792px;}
.ws12_c03372{word-spacing:-0.090288px;}
.ws13_c03372{word-spacing:-0.085536px;}
.wse_c03372{word-spacing:0.000000px;}
.ws9_c03372{word-spacing:6.629040px;}
.wsb_c03372{word-spacing:33.300288px;}
.ws8_c03372{word-spacing:34.836912px;}
.ws1_c03372{word-spacing:37.759392px;}
.ws0_c03372{word-spacing:38.020752px;}
.ws3_c03372{word-spacing:39.218256px;}
.ws5_c03372{word-spacing:39.902544px;}
.ws7_c03372{word-spacing:42.026688px;}
._0_c03372{margin-left:-1.948320px;}
._2_c03372{width:1.482624px;}
._4_c03372{width:5.749920px;}
._6_c03372{width:19.982160px;}
._7_c03372{width:23.451120px;}
._5_c03372{width:24.691392px;}
._1_c03372{width:50.252400px;}
._3_c03372{width:51.530688px;}
.fc0_c03372{color:rgb(0,0,0);}
.fs0_c03372{font-size:47.520000px;}
.fs1_c03372{font-size:60.480000px;}
.y0_c03372{bottom:0.000000px;}
.y1b_c03372{bottom:131.878686px;}
.y1a_c03372{bottom:146.998362px;}
.y1d_c03372{bottom:186.600234px;}
.y1c_c03372{bottom:196.320450px;}
.y19_c03372{bottom:275.878542px;}
.y18_c03372{bottom:356.878758px;}
.y16_c03372{bottom:406.559730px;}
.y12_c03372{bottom:424.560306px;}
.y17_c03372{bottom:458.759262px;}
.y15_c03372{bottom:491.879514px;}
.y14_c03372{bottom:509.880090px;}
.y11_c03372{bottom:543.000342px;}
.y13_c03372{bottom:559.559874px;}
.y10_c03372{bottom:577.560450px;}
.y1e_c03372{bottom:614.280450px;}
.yc_c03372{bottom:652.438650px;}
.yb_c03372{bottom:667.558326px;}
.ye_c03372{bottom:707.160234px;}
.yd_c03372{bottom:716.880450px;}
.ya_c03372{bottom:796.438506px;}
.y9_c03372{bottom:877.438722px;}
.y7_c03372{bottom:926.759730px;}
.y3_c03372{bottom:944.760306px;}
.y8_c03372{bottom:979.319226px;}
.y6_c03372{bottom:1012.439478px;}
.y5_c03372{bottom:1030.440054px;}
.y2_c03372{bottom:1063.560306px;}
.y4_c03372{bottom:1079.759874px;}
.y1_c03372{bottom:1097.760450px;}
.yf_c03372{bottom:1134.840450px;}
.h3_c03372{height:32.530781px;}
.h1_c03372{height:41.696016px;}
.h2_c03372{height:41.812031px;}
.h4_c03372{height:54.654737px;}
.h0_c03372{height:1263.000000px;}
.w1_c03372{width:892.500000px;}
.w0_c03372{width:892.830000px;}
.x0_c03372{left:0.000000px;}
.xe_c03372{left:117.000000px;}
.x8_c03372{left:440.999856px;}
.x4_c03372{left:445.680576px;}
.xc_c03372{left:451.080000px;}
.x7_c03372{left:455.399604px;}
.x5_c03372{left:461.880144px;}
.x1_c03372{left:463.320000px;}
.xa_c03372{left:483.480360px;}
.x9_c03372{left:492.119496px;}
.x6_c03372{left:493.200576px;}
.xd_c03372{left:506.880360px;}
.x3_c03372{left:511.919892px;}
.x2_c03372{left:526.679604px;}
.xb_c03372{left:569.880036px;}
@media print{
.v0_c03372{vertical-align:0.000000pt;}
.v1_c03372{vertical-align:1.279488pt;}
.lse_c03372{letter-spacing:-0.654720pt;}
.ls7_c03372{letter-spacing:-0.544896pt;}
.ls9_c03372{letter-spacing:-0.511104pt;}
.lsf_c03372{letter-spacing:-0.240768pt;}
.lsc_c03372{letter-spacing:-0.232320pt;}
.ls6_c03372{letter-spacing:-0.215424pt;}
.ls4_c03372{letter-spacing:-0.105600pt;}
.ls12_c03372{letter-spacing:0.000000pt;}
.ls1_c03372{letter-spacing:0.005376pt;}
.ls5_c03372{letter-spacing:0.114048pt;}
.lsb_c03372{letter-spacing:0.451968pt;}
.ls11_c03372{letter-spacing:0.456960pt;}
.lsd_c03372{letter-spacing:0.477312pt;}
.lsa_c03372{letter-spacing:0.515328pt;}
.ls10_c03372{letter-spacing:0.528000pt;}
.ls8_c03372{letter-spacing:0.532224pt;}
.ls2_c03372{letter-spacing:0.544896pt;}
.ls3_c03372{letter-spacing:0.637824pt;}
.ls0_c03372{letter-spacing:0.642048pt;}
.wsc_c03372{word-spacing:-13.445376pt;}
.wsa_c03372{word-spacing:-11.088000pt;}
.ws6_c03372{word-spacing:-11.075328pt;}
.ws4_c03372{word-spacing:-10.344576pt;}
.ws2_c03372{word-spacing:-10.015104pt;}
.ws10_c03372{word-spacing:-0.963072pt;}
.wsd_c03372{word-spacing:-0.865920pt;}
.ws14_c03372{word-spacing:-0.639744pt;}
.wsf_c03372{word-spacing:-0.105600pt;}
.ws11_c03372{word-spacing:-0.088704pt;}
.ws12_c03372{word-spacing:-0.080256pt;}
.ws13_c03372{word-spacing:-0.076032pt;}
.wse_c03372{word-spacing:0.000000pt;}
.ws9_c03372{word-spacing:5.892480pt;}
.wsb_c03372{word-spacing:29.600256pt;}
.ws8_c03372{word-spacing:30.966144pt;}
.ws1_c03372{word-spacing:33.563904pt;}
.ws0_c03372{word-spacing:33.796224pt;}
.ws3_c03372{word-spacing:34.860672pt;}
.ws5_c03372{word-spacing:35.468928pt;}
.ws7_c03372{word-spacing:37.357056pt;}
._0_c03372{margin-left:-1.731840pt;}
._2_c03372{width:1.317888pt;}
._4_c03372{width:5.111040pt;}
._6_c03372{width:17.761920pt;}
._7_c03372{width:20.845440pt;}
._5_c03372{width:21.947904pt;}
._1_c03372{width:44.668800pt;}
._3_c03372{width:45.805056pt;}
.fs0_c03372{font-size:42.240000pt;}
.fs1_c03372{font-size:53.760000pt;}
.y0_c03372{bottom:0.000000pt;}
.y1b_c03372{bottom:117.225499pt;}
.y1a_c03372{bottom:130.665211pt;}
.y1d_c03372{bottom:165.866875pt;}
.y1c_c03372{bottom:174.507067pt;}
.y19_c03372{bottom:245.225371pt;}
.y18_c03372{bottom:317.225563pt;}
.y16_c03372{bottom:361.386427pt;}
.y12_c03372{bottom:377.386939pt;}
.y17_c03372{bottom:407.786011pt;}
.y15_c03372{bottom:437.226235pt;}
.y14_c03372{bottom:453.226747pt;}
.y11_c03372{bottom:482.666971pt;}
.y13_c03372{bottom:497.386555pt;}
.y10_c03372{bottom:513.387067pt;}
.y1e_c03372{bottom:546.027067pt;}
.yc_c03372{bottom:579.945467pt;}
.yb_c03372{bottom:593.385179pt;}
.ye_c03372{bottom:628.586875pt;}
.yd_c03372{bottom:637.227067pt;}
.ya_c03372{bottom:707.945339pt;}
.y9_c03372{bottom:779.945531pt;}
.y7_c03372{bottom:823.786427pt;}
.y3_c03372{bottom:839.786939pt;}
.y8_c03372{bottom:870.505979pt;}
.y6_c03372{bottom:899.946203pt;}
.y5_c03372{bottom:915.946715pt;}
.y2_c03372{bottom:945.386939pt;}
.y4_c03372{bottom:959.786555pt;}
.y1_c03372{bottom:975.787067pt;}
.yf_c03372{bottom:1008.747067pt;}
.h3_c03372{height:28.916250pt;}
.h1_c03372{height:37.063125pt;}
.h2_c03372{height:37.166250pt;}
.h4_c03372{height:48.581988pt;}
.h0_c03372{height:1122.666667pt;}
.w1_c03372{width:793.333333pt;}
.w0_c03372{width:793.626667pt;}
.x0_c03372{left:0.000000pt;}
.xe_c03372{left:104.000000pt;}
.x8_c03372{left:391.999872pt;}
.x4_c03372{left:396.160512pt;}
.xc_c03372{left:400.960000pt;}
.x7_c03372{left:404.799648pt;}
.x5_c03372{left:410.560128pt;}
.x1_c03372{left:411.840000pt;}
.xa_c03372{left:429.760320pt;}
.x9_c03372{left:437.439552pt;}
.x6_c03372{left:438.400512pt;}
.xd_c03372{left:450.560320pt;}
.x3_c03372{left:455.039904pt;}
.x2_c03372{left:468.159648pt;}
.xb_c03372{left:506.560032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03373 {
    display:none;
  }
  .loading-indicator_c03373.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03373 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03373 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03373" -> "#page-container .classname_c03373")
 */
.pf_c03373 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03373 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03373.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03373 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03373 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03373 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03373 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03373 {overflow:visible;}
  }
}
.c_c03373 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03373 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03373:after { /* webkit #35443 */
  content: '';
}
.t_c03373:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03373 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03373 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03373 { /* info for Javascript */
  display:none;
}
.l_c03373 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03373 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03373 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03373:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03373 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03373.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03373.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03373 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03373{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03373;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03373{font-family:ff1_c03373;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03373;src:url('chunks/assets/font_c8dcc808b8926ff8d2889cd5.woff2')format("woff");}.ff2_c03373{font-family:ff2_c03373;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03373;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03373{font-family:ff3_c03373;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03373{vertical-align:0.000000px;}
.v1_c03373{vertical-align:1.439424px;}
.ls7_c03373{letter-spacing:-0.613008px;}
.ls9_c03373{letter-spacing:-0.574992px;}
.lse_c03373{letter-spacing:-0.275616px;}
.lsc_c03373{letter-spacing:-0.261360px;}
.ls6_c03373{letter-spacing:-0.242352px;}
.ls4_c03373{letter-spacing:-0.118800px;}
.ls11_c03373{letter-spacing:0.000000px;}
.ls1_c03373{letter-spacing:0.006048px;}
.ls5_c03373{letter-spacing:0.128304px;}
.lsb_c03373{letter-spacing:0.508464px;}
.ls10_c03373{letter-spacing:0.514080px;}
.lsd_c03373{letter-spacing:0.536976px;}
.lsa_c03373{letter-spacing:0.579744px;}
.lsf_c03373{letter-spacing:0.594000px;}
.ls8_c03373{letter-spacing:0.598752px;}
.ls2_c03373{letter-spacing:0.613008px;}
.ls3_c03373{letter-spacing:0.717552px;}
.ls0_c03373{letter-spacing:0.722304px;}
.sc__c03373{text-shadow:none;}
.sc0_c03373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03373{-webkit-text-stroke:0px transparent;}
.sc0_c03373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03373{word-spacing:-15.126048px;}
.wsa_c03373{word-spacing:-12.474000px;}
.ws8_c03373{word-spacing:-12.459744px;}
.ws9_c03373{word-spacing:-12.416976px;}
.ws4_c03373{word-spacing:-11.637648px;}
.ws2_c03373{word-spacing:-11.266992px;}
.ws10_c03373{word-spacing:-1.083456px;}
.wsd_c03373{word-spacing:-0.974160px;}
.ws13_c03373{word-spacing:-0.719712px;}
.wsf_c03373{word-spacing:-0.118800px;}
.ws11_c03373{word-spacing:-0.099792px;}
.ws12_c03373{word-spacing:-0.085536px;}
.wse_c03373{word-spacing:0.000000px;}
.wsb_c03373{word-spacing:33.300288px;}
.ws6_c03373{word-spacing:36.742464px;}
.ws1_c03373{word-spacing:37.759392px;}
.ws0_c03373{word-spacing:38.020752px;}
.ws3_c03373{word-spacing:39.218256px;}
.ws5_c03373{word-spacing:39.902544px;}
.ws7_c03373{word-spacing:42.026688px;}
._0_c03373{margin-left:-1.948320px;}
._2_c03373{width:1.482624px;}
._4_c03373{width:5.749920px;}
._1_c03373{width:50.252400px;}
._3_c03373{width:51.530688px;}
.fc0_c03373{color:rgb(0,0,0);}
.fs0_c03373{font-size:47.520000px;}
.fs1_c03373{font-size:60.480000px;}
.y0_c03373{bottom:0.000000px;}
.y19_c03373{bottom:146.998362px;}
.y1b_c03373{bottom:186.600234px;}
.y1a_c03373{bottom:196.320450px;}
.y18_c03373{bottom:275.878542px;}
.y17_c03373{bottom:356.878758px;}
.y15_c03373{bottom:406.559730px;}
.y11_c03373{bottom:424.560306px;}
.y16_c03373{bottom:458.759262px;}
.y14_c03373{bottom:491.879514px;}
.y13_c03373{bottom:509.880090px;}
.y10_c03373{bottom:543.000342px;}
.y12_c03373{bottom:559.559874px;}
.yf_c03373{bottom:577.560450px;}
.y1c_c03373{bottom:614.280450px;}
.yb_c03373{bottom:667.558326px;}
.yd_c03373{bottom:707.160234px;}
.yc_c03373{bottom:716.880450px;}
.ya_c03373{bottom:796.438506px;}
.y9_c03373{bottom:877.438722px;}
.y7_c03373{bottom:926.759730px;}
.y3_c03373{bottom:944.760306px;}
.y8_c03373{bottom:979.319226px;}
.y6_c03373{bottom:1012.439478px;}
.y5_c03373{bottom:1030.440054px;}
.y2_c03373{bottom:1063.560306px;}
.y4_c03373{bottom:1079.759874px;}
.y1_c03373{bottom:1097.760450px;}
.ye_c03373{bottom:1134.840450px;}
.h3_c03373{height:32.530781px;}
.h1_c03373{height:41.696016px;}
.h2_c03373{height:41.812031px;}
.h4_c03373{height:54.654737px;}
.h0_c03373{height:1263.000000px;}
.w1_c03373{width:892.500000px;}
.w0_c03373{width:892.830000px;}
.x0_c03373{left:0.000000px;}
.xd_c03373{left:117.000000px;}
.x8_c03373{left:440.999856px;}
.x4_c03373{left:445.680576px;}
.xb_c03373{left:451.080000px;}
.x7_c03373{left:455.399604px;}
.x5_c03373{left:461.880144px;}
.x1_c03373{left:463.320000px;}
.xa_c03373{left:483.480360px;}
.x9_c03373{left:492.119496px;}
.x6_c03373{left:493.200576px;}
.xc_c03373{left:506.880360px;}
.x3_c03373{left:511.919892px;}
.x2_c03373{left:526.679604px;}
@media print{
.v0_c03373{vertical-align:0.000000pt;}
.v1_c03373{vertical-align:1.279488pt;}
.ls7_c03373{letter-spacing:-0.544896pt;}
.ls9_c03373{letter-spacing:-0.511104pt;}
.lse_c03373{letter-spacing:-0.244992pt;}
.lsc_c03373{letter-spacing:-0.232320pt;}
.ls6_c03373{letter-spacing:-0.215424pt;}
.ls4_c03373{letter-spacing:-0.105600pt;}
.ls11_c03373{letter-spacing:0.000000pt;}
.ls1_c03373{letter-spacing:0.005376pt;}
.ls5_c03373{letter-spacing:0.114048pt;}
.lsb_c03373{letter-spacing:0.451968pt;}
.ls10_c03373{letter-spacing:0.456960pt;}
.lsd_c03373{letter-spacing:0.477312pt;}
.lsa_c03373{letter-spacing:0.515328pt;}
.lsf_c03373{letter-spacing:0.528000pt;}
.ls8_c03373{letter-spacing:0.532224pt;}
.ls2_c03373{letter-spacing:0.544896pt;}
.ls3_c03373{letter-spacing:0.637824pt;}
.ls0_c03373{letter-spacing:0.642048pt;}
.wsc_c03373{word-spacing:-13.445376pt;}
.wsa_c03373{word-spacing:-11.088000pt;}
.ws8_c03373{word-spacing:-11.075328pt;}
.ws9_c03373{word-spacing:-11.037312pt;}
.ws4_c03373{word-spacing:-10.344576pt;}
.ws2_c03373{word-spacing:-10.015104pt;}
.ws10_c03373{word-spacing:-0.963072pt;}
.wsd_c03373{word-spacing:-0.865920pt;}
.ws13_c03373{word-spacing:-0.639744pt;}
.wsf_c03373{word-spacing:-0.105600pt;}
.ws11_c03373{word-spacing:-0.088704pt;}
.ws12_c03373{word-spacing:-0.076032pt;}
.wse_c03373{word-spacing:0.000000pt;}
.wsb_c03373{word-spacing:29.600256pt;}
.ws6_c03373{word-spacing:32.659968pt;}
.ws1_c03373{word-spacing:33.563904pt;}
.ws0_c03373{word-spacing:33.796224pt;}
.ws3_c03373{word-spacing:34.860672pt;}
.ws5_c03373{word-spacing:35.468928pt;}
.ws7_c03373{word-spacing:37.357056pt;}
._0_c03373{margin-left:-1.731840pt;}
._2_c03373{width:1.317888pt;}
._4_c03373{width:5.111040pt;}
._1_c03373{width:44.668800pt;}
._3_c03373{width:45.805056pt;}
.fs0_c03373{font-size:42.240000pt;}
.fs1_c03373{font-size:53.760000pt;}
.y0_c03373{bottom:0.000000pt;}
.y19_c03373{bottom:130.665211pt;}
.y1b_c03373{bottom:165.866875pt;}
.y1a_c03373{bottom:174.507067pt;}
.y18_c03373{bottom:245.225371pt;}
.y17_c03373{bottom:317.225563pt;}
.y15_c03373{bottom:361.386427pt;}
.y11_c03373{bottom:377.386939pt;}
.y16_c03373{bottom:407.786011pt;}
.y14_c03373{bottom:437.226235pt;}
.y13_c03373{bottom:453.226747pt;}
.y10_c03373{bottom:482.666971pt;}
.y12_c03373{bottom:497.386555pt;}
.yf_c03373{bottom:513.387067pt;}
.y1c_c03373{bottom:546.027067pt;}
.yb_c03373{bottom:593.385179pt;}
.yd_c03373{bottom:628.586875pt;}
.yc_c03373{bottom:637.227067pt;}
.ya_c03373{bottom:707.945339pt;}
.y9_c03373{bottom:779.945531pt;}
.y7_c03373{bottom:823.786427pt;}
.y3_c03373{bottom:839.786939pt;}
.y8_c03373{bottom:870.505979pt;}
.y6_c03373{bottom:899.946203pt;}
.y5_c03373{bottom:915.946715pt;}
.y2_c03373{bottom:945.386939pt;}
.y4_c03373{bottom:959.786555pt;}
.y1_c03373{bottom:975.787067pt;}
.ye_c03373{bottom:1008.747067pt;}
.h3_c03373{height:28.916250pt;}
.h1_c03373{height:37.063125pt;}
.h2_c03373{height:37.166250pt;}
.h4_c03373{height:48.581988pt;}
.h0_c03373{height:1122.666667pt;}
.w1_c03373{width:793.333333pt;}
.w0_c03373{width:793.626667pt;}
.x0_c03373{left:0.000000pt;}
.xd_c03373{left:104.000000pt;}
.x8_c03373{left:391.999872pt;}
.x4_c03373{left:396.160512pt;}
.xb_c03373{left:400.960000pt;}
.x7_c03373{left:404.799648pt;}
.x5_c03373{left:410.560128pt;}
.x1_c03373{left:411.840000pt;}
.xa_c03373{left:429.760320pt;}
.x9_c03373{left:437.439552pt;}
.x6_c03373{left:438.400512pt;}
.xc_c03373{left:450.560320pt;}
.x3_c03373{left:455.039904pt;}
.x2_c03373{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03374 {
    display:none;
  }
  .loading-indicator_c03374.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03374 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03374 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03374" -> "#page-container .classname_c03374")
 */
.pf_c03374 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03374 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03374.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03374 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03374 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03374 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03374 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03374 {overflow:visible;}
  }
}
.c_c03374 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03374 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03374:after { /* webkit #35443 */
  content: '';
}
.t_c03374:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03374 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03374 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03374 { /* info for Javascript */
  display:none;
}
.l_c03374 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03374 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03374 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03374:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03374 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03374.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03374.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03374 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03374{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03374;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03374{font-family:ff1_c03374;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03374;src:url('chunks/assets/font_44404fe8fa322fdc01d4e0b9.woff2')format("woff");}.ff2_c03374{font-family:ff2_c03374;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03374;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03374{font-family:ff3_c03374;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03374{vertical-align:0.000000px;}
.v1_c03374{vertical-align:1.439424px;}
.ls7_c03374{letter-spacing:-0.613008px;}
.ls9_c03374{letter-spacing:-0.574992px;}
.lse_c03374{letter-spacing:-0.275616px;}
.lsc_c03374{letter-spacing:-0.261360px;}
.ls6_c03374{letter-spacing:-0.242352px;}
.ls4_c03374{letter-spacing:-0.118800px;}
.ls11_c03374{letter-spacing:0.000000px;}
.ls1_c03374{letter-spacing:0.006048px;}
.ls5_c03374{letter-spacing:0.128304px;}
.lsb_c03374{letter-spacing:0.508464px;}
.ls10_c03374{letter-spacing:0.514080px;}
.lsd_c03374{letter-spacing:0.536976px;}
.lsa_c03374{letter-spacing:0.579744px;}
.lsf_c03374{letter-spacing:0.594000px;}
.ls8_c03374{letter-spacing:0.598752px;}
.ls2_c03374{letter-spacing:0.613008px;}
.ls3_c03374{letter-spacing:0.717552px;}
.ls0_c03374{letter-spacing:0.722304px;}
.sc__c03374{text-shadow:none;}
.sc0_c03374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03374{-webkit-text-stroke:0px transparent;}
.sc0_c03374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03374{word-spacing:-15.126048px;}
.wsa_c03374{word-spacing:-12.474000px;}
.ws8_c03374{word-spacing:-12.459744px;}
.ws9_c03374{word-spacing:-12.416976px;}
.ws4_c03374{word-spacing:-11.637648px;}
.ws2_c03374{word-spacing:-11.266992px;}
.ws11_c03374{word-spacing:-1.083456px;}
.wse_c03374{word-spacing:-0.974160px;}
.ws14_c03374{word-spacing:-0.719712px;}
.ws10_c03374{word-spacing:-0.118800px;}
.ws12_c03374{word-spacing:-0.099792px;}
.ws13_c03374{word-spacing:-0.085536px;}
.wsf_c03374{word-spacing:0.000000px;}
.wsb_c03374{word-spacing:33.300288px;}
.wsd_c03374{word-spacing:34.836912px;}
.ws6_c03374{word-spacing:36.742464px;}
.ws1_c03374{word-spacing:37.759392px;}
.ws0_c03374{word-spacing:38.020752px;}
.ws3_c03374{word-spacing:39.218256px;}
.ws5_c03374{word-spacing:39.902544px;}
.ws7_c03374{word-spacing:42.026688px;}
._0_c03374{margin-left:-1.948320px;}
._2_c03374{width:1.482624px;}
._4_c03374{width:5.749920px;}
._1_c03374{width:50.252400px;}
._3_c03374{width:51.530688px;}
.fc0_c03374{color:rgb(0,0,0);}
.fs0_c03374{font-size:47.520000px;}
.fs1_c03374{font-size:60.480000px;}
.y0_c03374{bottom:0.000000px;}
.y19_c03374{bottom:146.998362px;}
.y1b_c03374{bottom:186.600234px;}
.y1a_c03374{bottom:196.320450px;}
.y18_c03374{bottom:275.878542px;}
.y17_c03374{bottom:356.878758px;}
.y15_c03374{bottom:406.559730px;}
.y11_c03374{bottom:424.560306px;}
.y16_c03374{bottom:458.759262px;}
.y14_c03374{bottom:491.879514px;}
.y13_c03374{bottom:509.880090px;}
.y10_c03374{bottom:543.000342px;}
.y12_c03374{bottom:559.559874px;}
.yf_c03374{bottom:577.560450px;}
.y1c_c03374{bottom:614.280450px;}
.yb_c03374{bottom:667.558326px;}
.yd_c03374{bottom:707.160234px;}
.yc_c03374{bottom:716.880450px;}
.ya_c03374{bottom:796.438506px;}
.y9_c03374{bottom:877.438722px;}
.y7_c03374{bottom:926.759730px;}
.y3_c03374{bottom:944.760306px;}
.y8_c03374{bottom:979.319226px;}
.y6_c03374{bottom:1012.439478px;}
.y5_c03374{bottom:1030.440054px;}
.y2_c03374{bottom:1063.560306px;}
.y4_c03374{bottom:1079.759874px;}
.y1_c03374{bottom:1097.760450px;}
.ye_c03374{bottom:1134.840450px;}
.h3_c03374{height:32.530781px;}
.h1_c03374{height:41.696016px;}
.h2_c03374{height:41.812031px;}
.h4_c03374{height:54.654737px;}
.h0_c03374{height:1263.000000px;}
.w1_c03374{width:892.500000px;}
.w0_c03374{width:892.830000px;}
.x0_c03374{left:0.000000px;}
.xd_c03374{left:117.000000px;}
.x8_c03374{left:440.999856px;}
.x4_c03374{left:445.680576px;}
.xb_c03374{left:451.080000px;}
.x7_c03374{left:455.399604px;}
.x5_c03374{left:461.880144px;}
.x1_c03374{left:463.320000px;}
.xa_c03374{left:483.480360px;}
.x9_c03374{left:492.119496px;}
.x6_c03374{left:493.200576px;}
.xc_c03374{left:506.880360px;}
.x3_c03374{left:511.919892px;}
.x2_c03374{left:526.679604px;}
@media print{
.v0_c03374{vertical-align:0.000000pt;}
.v1_c03374{vertical-align:1.279488pt;}
.ls7_c03374{letter-spacing:-0.544896pt;}
.ls9_c03374{letter-spacing:-0.511104pt;}
.lse_c03374{letter-spacing:-0.244992pt;}
.lsc_c03374{letter-spacing:-0.232320pt;}
.ls6_c03374{letter-spacing:-0.215424pt;}
.ls4_c03374{letter-spacing:-0.105600pt;}
.ls11_c03374{letter-spacing:0.000000pt;}
.ls1_c03374{letter-spacing:0.005376pt;}
.ls5_c03374{letter-spacing:0.114048pt;}
.lsb_c03374{letter-spacing:0.451968pt;}
.ls10_c03374{letter-spacing:0.456960pt;}
.lsd_c03374{letter-spacing:0.477312pt;}
.lsa_c03374{letter-spacing:0.515328pt;}
.lsf_c03374{letter-spacing:0.528000pt;}
.ls8_c03374{letter-spacing:0.532224pt;}
.ls2_c03374{letter-spacing:0.544896pt;}
.ls3_c03374{letter-spacing:0.637824pt;}
.ls0_c03374{letter-spacing:0.642048pt;}
.wsc_c03374{word-spacing:-13.445376pt;}
.wsa_c03374{word-spacing:-11.088000pt;}
.ws8_c03374{word-spacing:-11.075328pt;}
.ws9_c03374{word-spacing:-11.037312pt;}
.ws4_c03374{word-spacing:-10.344576pt;}
.ws2_c03374{word-spacing:-10.015104pt;}
.ws11_c03374{word-spacing:-0.963072pt;}
.wse_c03374{word-spacing:-0.865920pt;}
.ws14_c03374{word-spacing:-0.639744pt;}
.ws10_c03374{word-spacing:-0.105600pt;}
.ws12_c03374{word-spacing:-0.088704pt;}
.ws13_c03374{word-spacing:-0.076032pt;}
.wsf_c03374{word-spacing:0.000000pt;}
.wsb_c03374{word-spacing:29.600256pt;}
.wsd_c03374{word-spacing:30.966144pt;}
.ws6_c03374{word-spacing:32.659968pt;}
.ws1_c03374{word-spacing:33.563904pt;}
.ws0_c03374{word-spacing:33.796224pt;}
.ws3_c03374{word-spacing:34.860672pt;}
.ws5_c03374{word-spacing:35.468928pt;}
.ws7_c03374{word-spacing:37.357056pt;}
._0_c03374{margin-left:-1.731840pt;}
._2_c03374{width:1.317888pt;}
._4_c03374{width:5.111040pt;}
._1_c03374{width:44.668800pt;}
._3_c03374{width:45.805056pt;}
.fs0_c03374{font-size:42.240000pt;}
.fs1_c03374{font-size:53.760000pt;}
.y0_c03374{bottom:0.000000pt;}
.y19_c03374{bottom:130.665211pt;}
.y1b_c03374{bottom:165.866875pt;}
.y1a_c03374{bottom:174.507067pt;}
.y18_c03374{bottom:245.225371pt;}
.y17_c03374{bottom:317.225563pt;}
.y15_c03374{bottom:361.386427pt;}
.y11_c03374{bottom:377.386939pt;}
.y16_c03374{bottom:407.786011pt;}
.y14_c03374{bottom:437.226235pt;}
.y13_c03374{bottom:453.226747pt;}
.y10_c03374{bottom:482.666971pt;}
.y12_c03374{bottom:497.386555pt;}
.yf_c03374{bottom:513.387067pt;}
.y1c_c03374{bottom:546.027067pt;}
.yb_c03374{bottom:593.385179pt;}
.yd_c03374{bottom:628.586875pt;}
.yc_c03374{bottom:637.227067pt;}
.ya_c03374{bottom:707.945339pt;}
.y9_c03374{bottom:779.945531pt;}
.y7_c03374{bottom:823.786427pt;}
.y3_c03374{bottom:839.786939pt;}
.y8_c03374{bottom:870.505979pt;}
.y6_c03374{bottom:899.946203pt;}
.y5_c03374{bottom:915.946715pt;}
.y2_c03374{bottom:945.386939pt;}
.y4_c03374{bottom:959.786555pt;}
.y1_c03374{bottom:975.787067pt;}
.ye_c03374{bottom:1008.747067pt;}
.h3_c03374{height:28.916250pt;}
.h1_c03374{height:37.063125pt;}
.h2_c03374{height:37.166250pt;}
.h4_c03374{height:48.581988pt;}
.h0_c03374{height:1122.666667pt;}
.w1_c03374{width:793.333333pt;}
.w0_c03374{width:793.626667pt;}
.x0_c03374{left:0.000000pt;}
.xd_c03374{left:104.000000pt;}
.x8_c03374{left:391.999872pt;}
.x4_c03374{left:396.160512pt;}
.xb_c03374{left:400.960000pt;}
.x7_c03374{left:404.799648pt;}
.x5_c03374{left:410.560128pt;}
.x1_c03374{left:411.840000pt;}
.xa_c03374{left:429.760320pt;}
.x9_c03374{left:437.439552pt;}
.x6_c03374{left:438.400512pt;}
.xc_c03374{left:450.560320pt;}
.x3_c03374{left:455.039904pt;}
.x2_c03374{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03375 {
    display:none;
  }
  .loading-indicator_c03375.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03375 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03375 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03375" -> "#page-container .classname_c03375")
 */
.pf_c03375 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03375 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03375.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03375 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03375 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03375 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03375 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03375 {overflow:visible;}
  }
}
.c_c03375 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03375 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03375:after { /* webkit #35443 */
  content: '';
}
.t_c03375:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03375 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03375 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03375 { /* info for Javascript */
  display:none;
}
.l_c03375 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03375 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03375 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03375:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03375 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03375.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03375.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03375 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03375{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03375;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03375{font-family:ff1_c03375;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03375;src:url('chunks/assets/font_44404fe8fa322fdc01d4e0b9.woff2')format("woff");}.ff2_c03375{font-family:ff2_c03375;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03375;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03375{font-family:ff3_c03375;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03375{vertical-align:0.000000px;}
.v1_c03375{vertical-align:1.439424px;}
.ls7_c03375{letter-spacing:-0.613008px;}
.ls9_c03375{letter-spacing:-0.574992px;}
.lse_c03375{letter-spacing:-0.275616px;}
.lsc_c03375{letter-spacing:-0.261360px;}
.ls6_c03375{letter-spacing:-0.242352px;}
.ls4_c03375{letter-spacing:-0.118800px;}
.ls11_c03375{letter-spacing:0.000000px;}
.ls1_c03375{letter-spacing:0.006048px;}
.ls5_c03375{letter-spacing:0.128304px;}
.lsb_c03375{letter-spacing:0.508464px;}
.ls10_c03375{letter-spacing:0.514080px;}
.lsd_c03375{letter-spacing:0.536976px;}
.lsa_c03375{letter-spacing:0.579744px;}
.lsf_c03375{letter-spacing:0.594000px;}
.ls8_c03375{letter-spacing:0.598752px;}
.ls2_c03375{letter-spacing:0.613008px;}
.ls3_c03375{letter-spacing:0.717552px;}
.ls0_c03375{letter-spacing:0.722304px;}
.sc__c03375{text-shadow:none;}
.sc0_c03375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03375{-webkit-text-stroke:0px transparent;}
.sc0_c03375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03375{word-spacing:-15.126048px;}
.wsa_c03375{word-spacing:-12.474000px;}
.ws8_c03375{word-spacing:-12.459744px;}
.ws4_c03375{word-spacing:-11.637648px;}
.ws2_c03375{word-spacing:-11.266992px;}
.ws10_c03375{word-spacing:-1.083456px;}
.wsd_c03375{word-spacing:-0.974160px;}
.ws13_c03375{word-spacing:-0.719712px;}
.wsf_c03375{word-spacing:-0.118800px;}
.ws11_c03375{word-spacing:-0.099792px;}
.ws12_c03375{word-spacing:-0.085536px;}
.wse_c03375{word-spacing:0.000000px;}
.wsb_c03375{word-spacing:33.300288px;}
.ws9_c03375{word-spacing:34.836912px;}
.ws6_c03375{word-spacing:36.742464px;}
.ws1_c03375{word-spacing:37.759392px;}
.ws0_c03375{word-spacing:38.020752px;}
.ws3_c03375{word-spacing:39.218256px;}
.ws5_c03375{word-spacing:39.902544px;}
.ws7_c03375{word-spacing:42.026688px;}
._0_c03375{margin-left:-1.948320px;}
._2_c03375{width:1.482624px;}
._4_c03375{width:5.749920px;}
._1_c03375{width:50.252400px;}
._3_c03375{width:51.530688px;}
.fc0_c03375{color:rgb(0,0,0);}
.fs0_c03375{font-size:47.520000px;}
.fs1_c03375{font-size:60.480000px;}
.y0_c03375{bottom:0.000000px;}
.y19_c03375{bottom:146.998362px;}
.y1b_c03375{bottom:186.600234px;}
.y1a_c03375{bottom:196.320450px;}
.y18_c03375{bottom:275.878542px;}
.y17_c03375{bottom:356.878758px;}
.y15_c03375{bottom:406.559730px;}
.y11_c03375{bottom:424.560306px;}
.y16_c03375{bottom:458.759262px;}
.y14_c03375{bottom:491.879514px;}
.y13_c03375{bottom:509.880090px;}
.y10_c03375{bottom:543.000342px;}
.y12_c03375{bottom:559.559874px;}
.yf_c03375{bottom:577.560450px;}
.y1c_c03375{bottom:614.280450px;}
.yb_c03375{bottom:667.558326px;}
.yd_c03375{bottom:707.160234px;}
.yc_c03375{bottom:716.880450px;}
.ya_c03375{bottom:796.438506px;}
.y9_c03375{bottom:877.438722px;}
.y7_c03375{bottom:926.759730px;}
.y3_c03375{bottom:944.760306px;}
.y8_c03375{bottom:979.319226px;}
.y6_c03375{bottom:1012.439478px;}
.y5_c03375{bottom:1030.440054px;}
.y2_c03375{bottom:1063.560306px;}
.y4_c03375{bottom:1079.759874px;}
.y1_c03375{bottom:1097.760450px;}
.ye_c03375{bottom:1134.840450px;}
.h3_c03375{height:32.530781px;}
.h1_c03375{height:41.696016px;}
.h2_c03375{height:41.812031px;}
.h4_c03375{height:54.654737px;}
.h0_c03375{height:1263.000000px;}
.w1_c03375{width:892.500000px;}
.w0_c03375{width:892.830000px;}
.x0_c03375{left:0.000000px;}
.xd_c03375{left:117.000000px;}
.x8_c03375{left:440.999856px;}
.x4_c03375{left:445.680576px;}
.xb_c03375{left:451.080000px;}
.x7_c03375{left:455.399604px;}
.x5_c03375{left:461.880144px;}
.x1_c03375{left:463.320000px;}
.xa_c03375{left:483.480360px;}
.x9_c03375{left:492.119496px;}
.x6_c03375{left:493.200576px;}
.xc_c03375{left:506.880360px;}
.x3_c03375{left:511.919892px;}
.x2_c03375{left:526.679604px;}
@media print{
.v0_c03375{vertical-align:0.000000pt;}
.v1_c03375{vertical-align:1.279488pt;}
.ls7_c03375{letter-spacing:-0.544896pt;}
.ls9_c03375{letter-spacing:-0.511104pt;}
.lse_c03375{letter-spacing:-0.244992pt;}
.lsc_c03375{letter-spacing:-0.232320pt;}
.ls6_c03375{letter-spacing:-0.215424pt;}
.ls4_c03375{letter-spacing:-0.105600pt;}
.ls11_c03375{letter-spacing:0.000000pt;}
.ls1_c03375{letter-spacing:0.005376pt;}
.ls5_c03375{letter-spacing:0.114048pt;}
.lsb_c03375{letter-spacing:0.451968pt;}
.ls10_c03375{letter-spacing:0.456960pt;}
.lsd_c03375{letter-spacing:0.477312pt;}
.lsa_c03375{letter-spacing:0.515328pt;}
.lsf_c03375{letter-spacing:0.528000pt;}
.ls8_c03375{letter-spacing:0.532224pt;}
.ls2_c03375{letter-spacing:0.544896pt;}
.ls3_c03375{letter-spacing:0.637824pt;}
.ls0_c03375{letter-spacing:0.642048pt;}
.wsc_c03375{word-spacing:-13.445376pt;}
.wsa_c03375{word-spacing:-11.088000pt;}
.ws8_c03375{word-spacing:-11.075328pt;}
.ws4_c03375{word-spacing:-10.344576pt;}
.ws2_c03375{word-spacing:-10.015104pt;}
.ws10_c03375{word-spacing:-0.963072pt;}
.wsd_c03375{word-spacing:-0.865920pt;}
.ws13_c03375{word-spacing:-0.639744pt;}
.wsf_c03375{word-spacing:-0.105600pt;}
.ws11_c03375{word-spacing:-0.088704pt;}
.ws12_c03375{word-spacing:-0.076032pt;}
.wse_c03375{word-spacing:0.000000pt;}
.wsb_c03375{word-spacing:29.600256pt;}
.ws9_c03375{word-spacing:30.966144pt;}
.ws6_c03375{word-spacing:32.659968pt;}
.ws1_c03375{word-spacing:33.563904pt;}
.ws0_c03375{word-spacing:33.796224pt;}
.ws3_c03375{word-spacing:34.860672pt;}
.ws5_c03375{word-spacing:35.468928pt;}
.ws7_c03375{word-spacing:37.357056pt;}
._0_c03375{margin-left:-1.731840pt;}
._2_c03375{width:1.317888pt;}
._4_c03375{width:5.111040pt;}
._1_c03375{width:44.668800pt;}
._3_c03375{width:45.805056pt;}
.fs0_c03375{font-size:42.240000pt;}
.fs1_c03375{font-size:53.760000pt;}
.y0_c03375{bottom:0.000000pt;}
.y19_c03375{bottom:130.665211pt;}
.y1b_c03375{bottom:165.866875pt;}
.y1a_c03375{bottom:174.507067pt;}
.y18_c03375{bottom:245.225371pt;}
.y17_c03375{bottom:317.225563pt;}
.y15_c03375{bottom:361.386427pt;}
.y11_c03375{bottom:377.386939pt;}
.y16_c03375{bottom:407.786011pt;}
.y14_c03375{bottom:437.226235pt;}
.y13_c03375{bottom:453.226747pt;}
.y10_c03375{bottom:482.666971pt;}
.y12_c03375{bottom:497.386555pt;}
.yf_c03375{bottom:513.387067pt;}
.y1c_c03375{bottom:546.027067pt;}
.yb_c03375{bottom:593.385179pt;}
.yd_c03375{bottom:628.586875pt;}
.yc_c03375{bottom:637.227067pt;}
.ya_c03375{bottom:707.945339pt;}
.y9_c03375{bottom:779.945531pt;}
.y7_c03375{bottom:823.786427pt;}
.y3_c03375{bottom:839.786939pt;}
.y8_c03375{bottom:870.505979pt;}
.y6_c03375{bottom:899.946203pt;}
.y5_c03375{bottom:915.946715pt;}
.y2_c03375{bottom:945.386939pt;}
.y4_c03375{bottom:959.786555pt;}
.y1_c03375{bottom:975.787067pt;}
.ye_c03375{bottom:1008.747067pt;}
.h3_c03375{height:28.916250pt;}
.h1_c03375{height:37.063125pt;}
.h2_c03375{height:37.166250pt;}
.h4_c03375{height:48.581988pt;}
.h0_c03375{height:1122.666667pt;}
.w1_c03375{width:793.333333pt;}
.w0_c03375{width:793.626667pt;}
.x0_c03375{left:0.000000pt;}
.xd_c03375{left:104.000000pt;}
.x8_c03375{left:391.999872pt;}
.x4_c03375{left:396.160512pt;}
.xb_c03375{left:400.960000pt;}
.x7_c03375{left:404.799648pt;}
.x5_c03375{left:410.560128pt;}
.x1_c03375{left:411.840000pt;}
.xa_c03375{left:429.760320pt;}
.x9_c03375{left:437.439552pt;}
.x6_c03375{left:438.400512pt;}
.xc_c03375{left:450.560320pt;}
.x3_c03375{left:455.039904pt;}
.x2_c03375{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03376 {
    display:none;
  }
  .loading-indicator_c03376.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03376 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03376 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03376" -> "#page-container .classname_c03376")
 */
.pf_c03376 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03376 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03376.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03376 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03376 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03376 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03376 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03376 {overflow:visible;}
  }
}
.c_c03376 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03376 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03376:after { /* webkit #35443 */
  content: '';
}
.t_c03376:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03376 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03376 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03376 { /* info for Javascript */
  display:none;
}
.l_c03376 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03376 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03376 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03376:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03376 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03376.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03376.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03376 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03376{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03376;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03376{font-family:ff1_c03376;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03376;src:url('chunks/assets/font_0d0cdcd6977277389d0d2a80.woff2')format("woff");}.ff2_c03376{font-family:ff2_c03376;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03376;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03376{font-family:ff3_c03376;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03376{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03376{vertical-align:0.000000px;}
.v1_c03376{vertical-align:1.439424px;}
.ls7_c03376{letter-spacing:-0.613008px;}
.ls9_c03376{letter-spacing:-0.574992px;}
.lse_c03376{letter-spacing:-0.275616px;}
.lsc_c03376{letter-spacing:-0.261360px;}
.ls6_c03376{letter-spacing:-0.242352px;}
.ls4_c03376{letter-spacing:-0.118800px;}
.ls11_c03376{letter-spacing:0.000000px;}
.ls1_c03376{letter-spacing:0.006048px;}
.ls5_c03376{letter-spacing:0.128304px;}
.lsb_c03376{letter-spacing:0.508464px;}
.ls10_c03376{letter-spacing:0.514080px;}
.lsd_c03376{letter-spacing:0.536976px;}
.lsa_c03376{letter-spacing:0.579744px;}
.lsf_c03376{letter-spacing:0.594000px;}
.ls8_c03376{letter-spacing:0.598752px;}
.ls2_c03376{letter-spacing:0.613008px;}
.ls3_c03376{letter-spacing:0.717552px;}
.ls0_c03376{letter-spacing:0.722304px;}
.sc__c03376{text-shadow:none;}
.sc0_c03376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03376{-webkit-text-stroke:0px transparent;}
.sc0_c03376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03376{word-spacing:-15.126048px;}
.wsa_c03376{word-spacing:-12.474000px;}
.ws8_c03376{word-spacing:-12.459744px;}
.wsd_c03376{word-spacing:-12.416976px;}
.ws4_c03376{word-spacing:-11.637648px;}
.ws2_c03376{word-spacing:-11.266992px;}
.ws11_c03376{word-spacing:-1.083456px;}
.wse_c03376{word-spacing:-0.974160px;}
.ws14_c03376{word-spacing:-0.719712px;}
.ws10_c03376{word-spacing:-0.118800px;}
.ws12_c03376{word-spacing:-0.099792px;}
.ws13_c03376{word-spacing:-0.085536px;}
.wsf_c03376{word-spacing:0.000000px;}
.wsb_c03376{word-spacing:33.300288px;}
.ws9_c03376{word-spacing:34.836912px;}
.ws6_c03376{word-spacing:36.742464px;}
.ws1_c03376{word-spacing:37.759392px;}
.ws0_c03376{word-spacing:38.020752px;}
.ws3_c03376{word-spacing:39.218256px;}
.ws5_c03376{word-spacing:39.902544px;}
.ws7_c03376{word-spacing:42.026688px;}
._0_c03376{margin-left:-1.948320px;}
._2_c03376{width:1.482624px;}
._4_c03376{width:5.749920px;}
._1_c03376{width:50.252400px;}
._3_c03376{width:51.530688px;}
.fc0_c03376{color:rgb(0,0,0);}
.fs0_c03376{font-size:47.520000px;}
.fs1_c03376{font-size:60.480000px;}
.y0_c03376{bottom:0.000000px;}
.y19_c03376{bottom:146.998362px;}
.y1b_c03376{bottom:186.600234px;}
.y1a_c03376{bottom:196.320450px;}
.y18_c03376{bottom:275.878542px;}
.y17_c03376{bottom:356.878758px;}
.y15_c03376{bottom:406.559730px;}
.y11_c03376{bottom:424.560306px;}
.y16_c03376{bottom:458.759262px;}
.y14_c03376{bottom:491.879514px;}
.y13_c03376{bottom:509.880090px;}
.y10_c03376{bottom:543.000342px;}
.y12_c03376{bottom:559.559874px;}
.yf_c03376{bottom:577.560450px;}
.y1c_c03376{bottom:614.280450px;}
.yb_c03376{bottom:667.558326px;}
.yd_c03376{bottom:707.160234px;}
.yc_c03376{bottom:716.880450px;}
.ya_c03376{bottom:796.438506px;}
.y9_c03376{bottom:877.438722px;}
.y7_c03376{bottom:926.759730px;}
.y3_c03376{bottom:944.760306px;}
.y8_c03376{bottom:979.319226px;}
.y6_c03376{bottom:1012.439478px;}
.y5_c03376{bottom:1030.440054px;}
.y2_c03376{bottom:1063.560306px;}
.y4_c03376{bottom:1079.759874px;}
.y1_c03376{bottom:1097.760450px;}
.ye_c03376{bottom:1134.840450px;}
.h3_c03376{height:32.530781px;}
.h1_c03376{height:41.696016px;}
.h2_c03376{height:41.812031px;}
.h4_c03376{height:54.654737px;}
.h0_c03376{height:1263.000000px;}
.w1_c03376{width:892.500000px;}
.w0_c03376{width:892.830000px;}
.x0_c03376{left:0.000000px;}
.xd_c03376{left:117.000000px;}
.x8_c03376{left:440.999856px;}
.x4_c03376{left:445.680576px;}
.xb_c03376{left:451.080000px;}
.x7_c03376{left:455.399604px;}
.x5_c03376{left:461.880144px;}
.x1_c03376{left:463.320000px;}
.xa_c03376{left:483.480360px;}
.x9_c03376{left:492.119496px;}
.x6_c03376{left:493.200576px;}
.xc_c03376{left:506.880360px;}
.x3_c03376{left:511.919892px;}
.x2_c03376{left:526.679604px;}
@media print{
.v0_c03376{vertical-align:0.000000pt;}
.v1_c03376{vertical-align:1.279488pt;}
.ls7_c03376{letter-spacing:-0.544896pt;}
.ls9_c03376{letter-spacing:-0.511104pt;}
.lse_c03376{letter-spacing:-0.244992pt;}
.lsc_c03376{letter-spacing:-0.232320pt;}
.ls6_c03376{letter-spacing:-0.215424pt;}
.ls4_c03376{letter-spacing:-0.105600pt;}
.ls11_c03376{letter-spacing:0.000000pt;}
.ls1_c03376{letter-spacing:0.005376pt;}
.ls5_c03376{letter-spacing:0.114048pt;}
.lsb_c03376{letter-spacing:0.451968pt;}
.ls10_c03376{letter-spacing:0.456960pt;}
.lsd_c03376{letter-spacing:0.477312pt;}
.lsa_c03376{letter-spacing:0.515328pt;}
.lsf_c03376{letter-spacing:0.528000pt;}
.ls8_c03376{letter-spacing:0.532224pt;}
.ls2_c03376{letter-spacing:0.544896pt;}
.ls3_c03376{letter-spacing:0.637824pt;}
.ls0_c03376{letter-spacing:0.642048pt;}
.wsc_c03376{word-spacing:-13.445376pt;}
.wsa_c03376{word-spacing:-11.088000pt;}
.ws8_c03376{word-spacing:-11.075328pt;}
.wsd_c03376{word-spacing:-11.037312pt;}
.ws4_c03376{word-spacing:-10.344576pt;}
.ws2_c03376{word-spacing:-10.015104pt;}
.ws11_c03376{word-spacing:-0.963072pt;}
.wse_c03376{word-spacing:-0.865920pt;}
.ws14_c03376{word-spacing:-0.639744pt;}
.ws10_c03376{word-spacing:-0.105600pt;}
.ws12_c03376{word-spacing:-0.088704pt;}
.ws13_c03376{word-spacing:-0.076032pt;}
.wsf_c03376{word-spacing:0.000000pt;}
.wsb_c03376{word-spacing:29.600256pt;}
.ws9_c03376{word-spacing:30.966144pt;}
.ws6_c03376{word-spacing:32.659968pt;}
.ws1_c03376{word-spacing:33.563904pt;}
.ws0_c03376{word-spacing:33.796224pt;}
.ws3_c03376{word-spacing:34.860672pt;}
.ws5_c03376{word-spacing:35.468928pt;}
.ws7_c03376{word-spacing:37.357056pt;}
._0_c03376{margin-left:-1.731840pt;}
._2_c03376{width:1.317888pt;}
._4_c03376{width:5.111040pt;}
._1_c03376{width:44.668800pt;}
._3_c03376{width:45.805056pt;}
.fs0_c03376{font-size:42.240000pt;}
.fs1_c03376{font-size:53.760000pt;}
.y0_c03376{bottom:0.000000pt;}
.y19_c03376{bottom:130.665211pt;}
.y1b_c03376{bottom:165.866875pt;}
.y1a_c03376{bottom:174.507067pt;}
.y18_c03376{bottom:245.225371pt;}
.y17_c03376{bottom:317.225563pt;}
.y15_c03376{bottom:361.386427pt;}
.y11_c03376{bottom:377.386939pt;}
.y16_c03376{bottom:407.786011pt;}
.y14_c03376{bottom:437.226235pt;}
.y13_c03376{bottom:453.226747pt;}
.y10_c03376{bottom:482.666971pt;}
.y12_c03376{bottom:497.386555pt;}
.yf_c03376{bottom:513.387067pt;}
.y1c_c03376{bottom:546.027067pt;}
.yb_c03376{bottom:593.385179pt;}
.yd_c03376{bottom:628.586875pt;}
.yc_c03376{bottom:637.227067pt;}
.ya_c03376{bottom:707.945339pt;}
.y9_c03376{bottom:779.945531pt;}
.y7_c03376{bottom:823.786427pt;}
.y3_c03376{bottom:839.786939pt;}
.y8_c03376{bottom:870.505979pt;}
.y6_c03376{bottom:899.946203pt;}
.y5_c03376{bottom:915.946715pt;}
.y2_c03376{bottom:945.386939pt;}
.y4_c03376{bottom:959.786555pt;}
.y1_c03376{bottom:975.787067pt;}
.ye_c03376{bottom:1008.747067pt;}
.h3_c03376{height:28.916250pt;}
.h1_c03376{height:37.063125pt;}
.h2_c03376{height:37.166250pt;}
.h4_c03376{height:48.581988pt;}
.h0_c03376{height:1122.666667pt;}
.w1_c03376{width:793.333333pt;}
.w0_c03376{width:793.626667pt;}
.x0_c03376{left:0.000000pt;}
.xd_c03376{left:104.000000pt;}
.x8_c03376{left:391.999872pt;}
.x4_c03376{left:396.160512pt;}
.xb_c03376{left:400.960000pt;}
.x7_c03376{left:404.799648pt;}
.x5_c03376{left:410.560128pt;}
.x1_c03376{left:411.840000pt;}
.xa_c03376{left:429.760320pt;}
.x9_c03376{left:437.439552pt;}
.x6_c03376{left:438.400512pt;}
.xc_c03376{left:450.560320pt;}
.x3_c03376{left:455.039904pt;}
.x2_c03376{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03377 {
    display:none;
  }
  .loading-indicator_c03377.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03377 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03377 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03377" -> "#page-container .classname_c03377")
 */
.pf_c03377 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03377 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03377 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03377 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03377 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03377 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03377 {overflow:visible;}
  }
}
.c_c03377 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03377 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03377:after { /* webkit #35443 */
  content: '';
}
.t_c03377:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03377 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03377 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03377 { /* info for Javascript */
  display:none;
}
.l_c03377 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03377 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03377 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03377:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03377 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03377.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03377 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03377{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03377;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03377{font-family:ff1_c03377;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03377;src:url('chunks/assets/font_1e11ac857ca9cb43672b5b35.woff2')format("woff");}.ff2_c03377{font-family:ff2_c03377;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03377;src:url('chunks/assets/font_ece64b61da3455bc6380cd53.woff2')format("woff");}.ff3_c03377{font-family:ff3_c03377;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03377{vertical-align:0.000000px;}
.v1_c03377{vertical-align:1.439424px;}
.ls7_c03377{letter-spacing:-0.613008px;}
.ls9_c03377{letter-spacing:-0.574992px;}
.lse_c03377{letter-spacing:-0.275616px;}
.lsc_c03377{letter-spacing:-0.261360px;}
.ls6_c03377{letter-spacing:-0.242352px;}
.ls4_c03377{letter-spacing:-0.118800px;}
.ls11_c03377{letter-spacing:0.000000px;}
.ls1_c03377{letter-spacing:0.006048px;}
.ls5_c03377{letter-spacing:0.128304px;}
.lsb_c03377{letter-spacing:0.508464px;}
.ls10_c03377{letter-spacing:0.514080px;}
.lsd_c03377{letter-spacing:0.536976px;}
.lsa_c03377{letter-spacing:0.579744px;}
.lsf_c03377{letter-spacing:0.594000px;}
.ls8_c03377{letter-spacing:0.598752px;}
.ls2_c03377{letter-spacing:0.613008px;}
.ls3_c03377{letter-spacing:0.717552px;}
.ls0_c03377{letter-spacing:0.722304px;}
.sc__c03377{text-shadow:none;}
.sc0_c03377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03377{-webkit-text-stroke:0px transparent;}
.sc0_c03377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c03377{word-spacing:-15.126048px;}
.wsa_c03377{word-spacing:-12.474000px;}
.ws8_c03377{word-spacing:-12.459744px;}
.ws9_c03377{word-spacing:-12.416976px;}
.ws4_c03377{word-spacing:-11.637648px;}
.ws2_c03377{word-spacing:-11.266992px;}
.ws10_c03377{word-spacing:-1.083456px;}
.wsd_c03377{word-spacing:-0.974160px;}
.ws13_c03377{word-spacing:-0.719712px;}
.wsf_c03377{word-spacing:-0.118800px;}
.ws11_c03377{word-spacing:-0.099792px;}
.ws12_c03377{word-spacing:-0.085536px;}
.wse_c03377{word-spacing:0.000000px;}
.wsb_c03377{word-spacing:33.300288px;}
.ws6_c03377{word-spacing:36.742464px;}
.ws1_c03377{word-spacing:37.759392px;}
.ws0_c03377{word-spacing:38.020752px;}
.ws3_c03377{word-spacing:39.218256px;}
.ws5_c03377{word-spacing:39.902544px;}
.ws7_c03377{word-spacing:42.026688px;}
._0_c03377{margin-left:-1.948320px;}
._2_c03377{width:1.482624px;}
._4_c03377{width:5.749920px;}
._1_c03377{width:50.252400px;}
._3_c03377{width:51.530688px;}
.fc0_c03377{color:rgb(0,0,0);}
.fs0_c03377{font-size:47.520000px;}
.fs1_c03377{font-size:60.480000px;}
.y0_c03377{bottom:0.000000px;}
.y19_c03377{bottom:146.998362px;}
.y1b_c03377{bottom:186.600234px;}
.y1a_c03377{bottom:196.320450px;}
.y18_c03377{bottom:275.878542px;}
.y17_c03377{bottom:356.878758px;}
.y15_c03377{bottom:406.559730px;}
.y11_c03377{bottom:424.560306px;}
.y16_c03377{bottom:458.759262px;}
.y14_c03377{bottom:491.879514px;}
.y13_c03377{bottom:509.880090px;}
.y10_c03377{bottom:543.000342px;}
.y12_c03377{bottom:559.559874px;}
.yf_c03377{bottom:577.560450px;}
.y1c_c03377{bottom:614.280450px;}
.yb_c03377{bottom:667.558326px;}
.yd_c03377{bottom:707.160234px;}
.yc_c03377{bottom:716.880450px;}
.ya_c03377{bottom:796.438506px;}
.y9_c03377{bottom:877.438722px;}
.y7_c03377{bottom:926.759730px;}
.y3_c03377{bottom:944.760306px;}
.y8_c03377{bottom:979.319226px;}
.y6_c03377{bottom:1012.439478px;}
.y5_c03377{bottom:1030.440054px;}
.y2_c03377{bottom:1063.560306px;}
.y4_c03377{bottom:1079.759874px;}
.y1_c03377{bottom:1097.760450px;}
.ye_c03377{bottom:1134.840450px;}
.h3_c03377{height:32.530781px;}
.h1_c03377{height:41.696016px;}
.h2_c03377{height:41.812031px;}
.h4_c03377{height:54.654737px;}
.h0_c03377{height:1263.000000px;}
.w1_c03377{width:892.500000px;}
.w0_c03377{width:892.830000px;}
.x0_c03377{left:0.000000px;}
.xd_c03377{left:117.000000px;}
.x8_c03377{left:440.999856px;}
.x4_c03377{left:445.680576px;}
.xb_c03377{left:451.080000px;}
.x7_c03377{left:455.399604px;}
.x5_c03377{left:461.880144px;}
.x1_c03377{left:463.320000px;}
.xa_c03377{left:483.480360px;}
.x9_c03377{left:492.119496px;}
.x6_c03377{left:493.200576px;}
.xc_c03377{left:506.880360px;}
.x3_c03377{left:511.919892px;}
.x2_c03377{left:526.679604px;}
@media print{
.v0_c03377{vertical-align:0.000000pt;}
.v1_c03377{vertical-align:1.279488pt;}
.ls7_c03377{letter-spacing:-0.544896pt;}
.ls9_c03377{letter-spacing:-0.511104pt;}
.lse_c03377{letter-spacing:-0.244992pt;}
.lsc_c03377{letter-spacing:-0.232320pt;}
.ls6_c03377{letter-spacing:-0.215424pt;}
.ls4_c03377{letter-spacing:-0.105600pt;}
.ls11_c03377{letter-spacing:0.000000pt;}
.ls1_c03377{letter-spacing:0.005376pt;}
.ls5_c03377{letter-spacing:0.114048pt;}
.lsb_c03377{letter-spacing:0.451968pt;}
.ls10_c03377{letter-spacing:0.456960pt;}
.lsd_c03377{letter-spacing:0.477312pt;}
.lsa_c03377{letter-spacing:0.515328pt;}
.lsf_c03377{letter-spacing:0.528000pt;}
.ls8_c03377{letter-spacing:0.532224pt;}
.ls2_c03377{letter-spacing:0.544896pt;}
.ls3_c03377{letter-spacing:0.637824pt;}
.ls0_c03377{letter-spacing:0.642048pt;}
.wsc_c03377{word-spacing:-13.445376pt;}
.wsa_c03377{word-spacing:-11.088000pt;}
.ws8_c03377{word-spacing:-11.075328pt;}
.ws9_c03377{word-spacing:-11.037312pt;}
.ws4_c03377{word-spacing:-10.344576pt;}
.ws2_c03377{word-spacing:-10.015104pt;}
.ws10_c03377{word-spacing:-0.963072pt;}
.wsd_c03377{word-spacing:-0.865920pt;}
.ws13_c03377{word-spacing:-0.639744pt;}
.wsf_c03377{word-spacing:-0.105600pt;}
.ws11_c03377{word-spacing:-0.088704pt;}
.ws12_c03377{word-spacing:-0.076032pt;}
.wse_c03377{word-spacing:0.000000pt;}
.wsb_c03377{word-spacing:29.600256pt;}
.ws6_c03377{word-spacing:32.659968pt;}
.ws1_c03377{word-spacing:33.563904pt;}
.ws0_c03377{word-spacing:33.796224pt;}
.ws3_c03377{word-spacing:34.860672pt;}
.ws5_c03377{word-spacing:35.468928pt;}
.ws7_c03377{word-spacing:37.357056pt;}
._0_c03377{margin-left:-1.731840pt;}
._2_c03377{width:1.317888pt;}
._4_c03377{width:5.111040pt;}
._1_c03377{width:44.668800pt;}
._3_c03377{width:45.805056pt;}
.fs0_c03377{font-size:42.240000pt;}
.fs1_c03377{font-size:53.760000pt;}
.y0_c03377{bottom:0.000000pt;}
.y19_c03377{bottom:130.665211pt;}
.y1b_c03377{bottom:165.866875pt;}
.y1a_c03377{bottom:174.507067pt;}
.y18_c03377{bottom:245.225371pt;}
.y17_c03377{bottom:317.225563pt;}
.y15_c03377{bottom:361.386427pt;}
.y11_c03377{bottom:377.386939pt;}
.y16_c03377{bottom:407.786011pt;}
.y14_c03377{bottom:437.226235pt;}
.y13_c03377{bottom:453.226747pt;}
.y10_c03377{bottom:482.666971pt;}
.y12_c03377{bottom:497.386555pt;}
.yf_c03377{bottom:513.387067pt;}
.y1c_c03377{bottom:546.027067pt;}
.yb_c03377{bottom:593.385179pt;}
.yd_c03377{bottom:628.586875pt;}
.yc_c03377{bottom:637.227067pt;}
.ya_c03377{bottom:707.945339pt;}
.y9_c03377{bottom:779.945531pt;}
.y7_c03377{bottom:823.786427pt;}
.y3_c03377{bottom:839.786939pt;}
.y8_c03377{bottom:870.505979pt;}
.y6_c03377{bottom:899.946203pt;}
.y5_c03377{bottom:915.946715pt;}
.y2_c03377{bottom:945.386939pt;}
.y4_c03377{bottom:959.786555pt;}
.y1_c03377{bottom:975.787067pt;}
.ye_c03377{bottom:1008.747067pt;}
.h3_c03377{height:28.916250pt;}
.h1_c03377{height:37.063125pt;}
.h2_c03377{height:37.166250pt;}
.h4_c03377{height:48.581988pt;}
.h0_c03377{height:1122.666667pt;}
.w1_c03377{width:793.333333pt;}
.w0_c03377{width:793.626667pt;}
.x0_c03377{left:0.000000pt;}
.xd_c03377{left:104.000000pt;}
.x8_c03377{left:391.999872pt;}
.x4_c03377{left:396.160512pt;}
.xb_c03377{left:400.960000pt;}
.x7_c03377{left:404.799648pt;}
.x5_c03377{left:410.560128pt;}
.x1_c03377{left:411.840000pt;}
.xa_c03377{left:429.760320pt;}
.x9_c03377{left:437.439552pt;}
.x6_c03377{left:438.400512pt;}
.xc_c03377{left:450.560320pt;}
.x3_c03377{left:455.039904pt;}
.x2_c03377{left:468.159648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03378 {
    display:none;
  }
  .loading-indicator_c03378.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03378 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03378 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03378" -> "#page-container .classname_c03378")
 */
.pf_c03378 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03378 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03378.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03378 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03378 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03378 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03378 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03378 {overflow:visible;}
  }
}
.c_c03378 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03378 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03378:after { /* webkit #35443 */
  content: '';
}
.t_c03378:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03378 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03378 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03378 { /* info for Javascript */
  display:none;
}
.l_c03378 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03378 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03378 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03378:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03378 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03378.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03378.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03378 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03378{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03378;src:url('chunks/assets/font_e33de243a6e17a4935171690.woff2')format("woff");}.ff1_c03378{font-family:ff1_c03378;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c03378;src:url('chunks/assets/font_e1f59651be69aed6927b5c1c.woff2')format("woff");}.ff2_c03378{font-family:ff2_c03378;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c03378;src:url('chunks/assets/font_5d70044a31a77017c24c4355.woff2')format("woff");}.ff3_c03378{font-family:ff3_c03378;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03378{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03378{vertical-align:0.000000px;}
.v1_c03378{vertical-align:1.439424px;}
.ls10_c03378{letter-spacing:-0.722304px;}
.ls9_c03378{letter-spacing:-0.574992px;}
.ls11_c03378{letter-spacing:-0.275616px;}
.lse_c03378{letter-spacing:-0.261360px;}
.ls7_c03378{letter-spacing:-0.242352px;}
.ls5_c03378{letter-spacing:-0.237600px;}
.lsd_c03378{letter-spacing:-0.228096px;}
.ls4_c03378{letter-spacing:-0.118800px;}
.ls14_c03378{letter-spacing:0.000000px;}
.ls2_c03378{letter-spacing:0.006048px;}
.lsc_c03378{letter-spacing:0.014256px;}
.ls15_c03378{letter-spacing:0.090288px;}
.ls6_c03378{letter-spacing:0.128304px;}
.lsb_c03378{letter-spacing:0.508464px;}
.ls13_c03378{letter-spacing:0.514080px;}
.lsf_c03378{letter-spacing:0.536976px;}
.lsa_c03378{letter-spacing:0.579744px;}
.ls12_c03378{letter-spacing:0.594000px;}
.ls8_c03378{letter-spacing:0.598752px;}
.ls3_c03378{letter-spacing:0.613008px;}
.ls0_c03378{letter-spacing:0.689040px;}
.ls1_c03378{letter-spacing:0.717552px;}
.sc__c03378{text-shadow:none;}
.sc0_c03378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03378{-webkit-text-stroke:0px transparent;}
.sc0_c03378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c03378{word-spacing:-15.126048px;}
.ws2_c03378{word-spacing:-12.569040px;}
.wsd_c03378{word-spacing:-12.474000px;}
.ws13_c03378{word-spacing:-12.459744px;}
.ws14_c03378{word-spacing:-12.416976px;}
.ws10_c03378{word-spacing:-12.388464px;}
.ws0_c03378{word-spacing:-11.761200px;}
.ws1_c03378{word-spacing:-11.642400px;}
.ws6_c03378{word-spacing:-11.637648px;}
.ws12_c03378{word-spacing:-11.305008px;}
.ws18_c03378{word-spacing:-1.078704px;}
.ws15_c03378{word-spacing:-0.974160px;}
.ws1e_c03378{word-spacing:-0.719712px;}
.ws19_c03378{word-spacing:-0.375408px;}
.ws1a_c03378{word-spacing:-0.133056px;}
.ws17_c03378{word-spacing:-0.118800px;}
.ws1b_c03378{word-spacing:-0.099792px;}
.ws1d_c03378{word-spacing:-0.085536px;}
.ws16_c03378{word-spacing:0.000000px;}
.ws1c_c03378{word-spacing:0.361152px;}
.ws4_c03378{word-spacing:1.330560px;}
.ws11_c03378{word-spacing:5.445792px;}
.wse_c03378{word-spacing:33.300288px;}
.wsc_c03378{word-spacing:34.176384px;}
.wsb_c03378{word-spacing:34.836912px;}
.wsa_c03378{word-spacing:36.143712px;}
.ws8_c03378{word-spacing:36.742464px;}
.ws3_c03378{word-spacing:37.759392px;}
.ws5_c03378{word-spacing:39.218256px;}
.ws7_c03378{word-spacing:39.902544px;}
.ws9_c03378{word-spacing:42.026688px;}
._0_c03378{margin-left:-1.948320px;}
._2_c03378{width:1.439856px;}
._4_c03378{width:6.263136px;}
._5_c03378{width:47.144592px;}
._1_c03378{width:50.252400px;}
._3_c03378{width:51.701760px;}
.fc0_c03378{color:rgb(0,0,0);}
.fs0_c03378{font-size:47.520000px;}
.fs1_c03378{font-size:60.480000px;}
.y0_c03378{bottom:0.000000px;}
.y16_c03378{bottom:18.000450px;}
.y4_c03378{bottom:18.360450px;}
.y20_c03378{bottom:146.998470px;}
.y22_c03378{bottom:186.600234px;}
.y21_c03378{bottom:196.320450px;}
.y1f_c03378{bottom:275.878650px;}
.y1e_c03378{bottom:356.878866px;}
.y1c_c03378{bottom:406.559838px;}
.y18_c03378{bottom:424.560414px;}
.y1d_c03378{bottom:458.759370px;}
.y1b_c03378{bottom:491.879622px;}
.y1a_c03378{bottom:509.880198px;}
.y15_c03378{bottom:525.000000px;}
.y14_c03378{bottom:543.000342px;}
.y17_c03378{bottom:543.000450px;}
.y19_c03378{bottom:559.559982px;}
.y13_c03378{bottom:577.560450px;}
.y23_c03378{bottom:614.280450px;}
.yf_c03378{bottom:652.438794px;}
.ye_c03378{bottom:667.558470px;}
.y11_c03378{bottom:707.160234px;}
.y10_c03378{bottom:716.880450px;}
.yd_c03378{bottom:796.438650px;}
.yc_c03378{bottom:877.438866px;}
.ya_c03378{bottom:926.759874px;}
.y6_c03378{bottom:944.760450px;}
.yb_c03378{bottom:979.319370px;}
.y9_c03378{bottom:1012.439622px;}
.y8_c03378{bottom:1030.440198px;}
.y3_c03378{bottom:1045.200000px;}
.y2_c03378{bottom:1063.560306px;}
.y5_c03378{bottom:1063.560450px;}
.y7_c03378{bottom:1079.760018px;}
.y1_c03378{bottom:1097.760450px;}
.y12_c03378{bottom:1134.840450px;}
.h6_c03378{height:29.160000px;}
.h3_c03378{height:29.520000px;}
.h2_c03378{height:32.530781px;}
.h1_c03378{height:41.696016px;}
.h4_c03378{height:41.812031px;}
.h5_c03378{height:54.654737px;}
.h0_c03378{height:1263.000000px;}
.w2_c03378{width:215.280000px;}
.w1_c03378{width:892.500000px;}
.w0_c03378{width:892.830000px;}
.x0_c03378{left:0.000000px;}
.xf_c03378{left:117.000000px;}
.xa_c03378{left:440.999640px;}
.x6_c03378{left:445.680360px;}
.xd_c03378{left:451.080000px;}
.x9_c03378{left:455.399388px;}
.x7_c03378{left:461.879928px;}
.x1_c03378{left:463.320000px;}
.xc_c03378{left:483.480144px;}
.xb_c03378{left:492.119280px;}
.x8_c03378{left:493.200360px;}
.xe_c03378{left:506.880360px;}
.x5_c03378{left:511.919676px;}
.x2_c03378{left:526.679604px;}
.x3_c03378{left:569.520000px;}
.x4_c03378{left:615.600000px;}
@media print{
.v0_c03378{vertical-align:0.000000pt;}
.v1_c03378{vertical-align:1.279488pt;}
.ls10_c03378{letter-spacing:-0.642048pt;}
.ls9_c03378{letter-spacing:-0.511104pt;}
.ls11_c03378{letter-spacing:-0.244992pt;}
.lse_c03378{letter-spacing:-0.232320pt;}
.ls7_c03378{letter-spacing:-0.215424pt;}
.ls5_c03378{letter-spacing:-0.211200pt;}
.lsd_c03378{letter-spacing:-0.202752pt;}
.ls4_c03378{letter-spacing:-0.105600pt;}
.ls14_c03378{letter-spacing:0.000000pt;}
.ls2_c03378{letter-spacing:0.005376pt;}
.lsc_c03378{letter-spacing:0.012672pt;}
.ls15_c03378{letter-spacing:0.080256pt;}
.ls6_c03378{letter-spacing:0.114048pt;}
.lsb_c03378{letter-spacing:0.451968pt;}
.ls13_c03378{letter-spacing:0.456960pt;}
.lsf_c03378{letter-spacing:0.477312pt;}
.lsa_c03378{letter-spacing:0.515328pt;}
.ls12_c03378{letter-spacing:0.528000pt;}
.ls8_c03378{letter-spacing:0.532224pt;}
.ls3_c03378{letter-spacing:0.544896pt;}
.ls0_c03378{letter-spacing:0.612480pt;}
.ls1_c03378{letter-spacing:0.637824pt;}
.wsf_c03378{word-spacing:-13.445376pt;}
.ws2_c03378{word-spacing:-11.172480pt;}
.wsd_c03378{word-spacing:-11.088000pt;}
.ws13_c03378{word-spacing:-11.075328pt;}
.ws14_c03378{word-spacing:-11.037312pt;}
.ws10_c03378{word-spacing:-11.011968pt;}
.ws0_c03378{word-spacing:-10.454400pt;}
.ws1_c03378{word-spacing:-10.348800pt;}
.ws6_c03378{word-spacing:-10.344576pt;}
.ws12_c03378{word-spacing:-10.048896pt;}
.ws18_c03378{word-spacing:-0.958848pt;}
.ws15_c03378{word-spacing:-0.865920pt;}
.ws1e_c03378{word-spacing:-0.639744pt;}
.ws19_c03378{word-spacing:-0.333696pt;}
.ws1a_c03378{word-spacing:-0.118272pt;}
.ws17_c03378{word-spacing:-0.105600pt;}
.ws1b_c03378{word-spacing:-0.088704pt;}
.ws1d_c03378{word-spacing:-0.076032pt;}
.ws16_c03378{word-spacing:0.000000pt;}
.ws1c_c03378{word-spacing:0.321024pt;}
.ws4_c03378{word-spacing:1.182720pt;}
.ws11_c03378{word-spacing:4.840704pt;}
.wse_c03378{word-spacing:29.600256pt;}
.wsc_c03378{word-spacing:30.379008pt;}
.wsb_c03378{word-spacing:30.966144pt;}
.wsa_c03378{word-spacing:32.127744pt;}
.ws8_c03378{word-spacing:32.659968pt;}
.ws3_c03378{word-spacing:33.563904pt;}
.ws5_c03378{word-spacing:34.860672pt;}
.ws7_c03378{word-spacing:35.468928pt;}
.ws9_c03378{word-spacing:37.357056pt;}
._0_c03378{margin-left:-1.731840pt;}
._2_c03378{width:1.279872pt;}
._4_c03378{width:5.567232pt;}
._5_c03378{width:41.906304pt;}
._1_c03378{width:44.668800pt;}
._3_c03378{width:45.957120pt;}
.fs0_c03378{font-size:42.240000pt;}
.fs1_c03378{font-size:53.760000pt;}
.y0_c03378{bottom:0.000000pt;}
.y16_c03378{bottom:16.000400pt;}
.y4_c03378{bottom:16.320400pt;}
.y20_c03378{bottom:130.665307pt;}
.y22_c03378{bottom:165.866875pt;}
.y21_c03378{bottom:174.507067pt;}
.y1f_c03378{bottom:245.225467pt;}
.y1e_c03378{bottom:317.225659pt;}
.y1c_c03378{bottom:361.386523pt;}
.y18_c03378{bottom:377.387035pt;}
.y1d_c03378{bottom:407.786107pt;}
.y1b_c03378{bottom:437.226331pt;}
.y1a_c03378{bottom:453.226843pt;}
.y15_c03378{bottom:466.666667pt;}
.y14_c03378{bottom:482.666971pt;}
.y17_c03378{bottom:482.667067pt;}
.y19_c03378{bottom:497.386651pt;}
.y13_c03378{bottom:513.387067pt;}
.y23_c03378{bottom:546.027067pt;}
.yf_c03378{bottom:579.945595pt;}
.ye_c03378{bottom:593.385307pt;}
.y11_c03378{bottom:628.586875pt;}
.y10_c03378{bottom:637.227067pt;}
.yd_c03378{bottom:707.945467pt;}
.yc_c03378{bottom:779.945659pt;}
.ya_c03378{bottom:823.786555pt;}
.y6_c03378{bottom:839.787067pt;}
.yb_c03378{bottom:870.506107pt;}
.y9_c03378{bottom:899.946331pt;}
.y8_c03378{bottom:915.946843pt;}
.y3_c03378{bottom:929.066667pt;}
.y2_c03378{bottom:945.386939pt;}
.y5_c03378{bottom:945.387067pt;}
.y7_c03378{bottom:959.786683pt;}
.y1_c03378{bottom:975.787067pt;}
.y12_c03378{bottom:1008.747067pt;}
.h6_c03378{height:25.920000pt;}
.h3_c03378{height:26.240000pt;}
.h2_c03378{height:28.916250pt;}
.h1_c03378{height:37.063125pt;}
.h4_c03378{height:37.166250pt;}
.h5_c03378{height:48.581988pt;}
.h0_c03378{height:1122.666667pt;}
.w2_c03378{width:191.360000pt;}
.w1_c03378{width:793.333333pt;}
.w0_c03378{width:793.626667pt;}
.x0_c03378{left:0.000000pt;}
.xf_c03378{left:104.000000pt;}
.xa_c03378{left:391.999680pt;}
.x6_c03378{left:396.160320pt;}
.xd_c03378{left:400.960000pt;}
.x9_c03378{left:404.799456pt;}
.x7_c03378{left:410.559936pt;}
.x1_c03378{left:411.840000pt;}
.xc_c03378{left:429.760128pt;}
.xb_c03378{left:437.439360pt;}
.x8_c03378{left:438.400320pt;}
.xe_c03378{left:450.560320pt;}
.x5_c03378{left:455.039712pt;}
.x2_c03378{left:468.159648pt;}
.x3_c03378{left:506.240000pt;}
.x4_c03378{left:547.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c03379 {
    display:none;
  }
  .loading-indicator_c03379.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c03379 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c03379 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c03379" -> "#page-container .classname_c03379")
 */
.pf_c03379 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c03379 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c03379.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c03379 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c03379 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c03379 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c03379 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c03379 {overflow:visible;}
  }
}
.c_c03379 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c03379 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c03379:after { /* webkit #35443 */
  content: '';
}
.t_c03379:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c03379 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c03379 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c03379 { /* info for Javascript */
  display:none;
}
.l_c03379 { /* annotation links */
}
/* transparent color - WebKit */
.d_c03379 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c03379 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c03379:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c03379 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c03379.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c03379.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c03379 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c03379{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c03379;src:url('chunks/assets/font_3fe9bbbf2e5656fa4d330ecf.woff2')format("woff");}.ff1_c03379{font-family:ff1_c03379;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c03379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c03379{vertical-align:0.000000px;}
.ls0_c03379{letter-spacing:0.000000px;}
.sc__c03379{text-shadow:none;}
.sc0_c03379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c03379{-webkit-text-stroke:0px transparent;}
.sc0_c03379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c03379{word-spacing:0.000000px;}
.fc0_c03379{color:rgb(0,0,0);}
.fs0_c03379{font-size:77.988000px;}
.y0_c03379{bottom:0.000000px;}
.y1_c03379{bottom:1135.337550px;}
.h1_c03379{height:58.491000px;}
.h0_c03379{height:1263.000000px;}
.w1_c03379{width:892.500000px;}
.w0_c03379{width:892.830000px;}
.x0_c03379{left:0.000000px;}
.x1_c03379{left:127.947600px;}
@media print{
.v0_c03379{vertical-align:0.000000pt;}
.ls0_c03379{letter-spacing:0.000000pt;}
.ws0_c03379{word-spacing:0.000000pt;}
.fs0_c03379{font-size:69.322667pt;}
.y0_c03379{bottom:0.000000pt;}
.y1_c03379{bottom:1009.188933pt;}
.h1_c03379{height:51.992000pt;}
.h0_c03379{height:1122.666667pt;}
.w1_c03379{width:793.333333pt;}
.w0_c03379{width:793.626667pt;}
.x0_c03379{left:0.000000pt;}
.x1_c03379{left:113.731200pt;}
}




    .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; }
  